diff --git a/autobahn/autobahn.ipynb b/autobahn/autobahn.ipynb new file mode 100644 index 0000000..21004a6 --- /dev/null +++ b/autobahn/autobahn.ipynb @@ -0,0 +1,198 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "id": "49d54764", + "metadata": {}, + "outputs": [], + "source": [ + "import requests\n", + "import json\n", + "import time\n", + "\n", + "API_URL = \"https://verkehr.autobahn.de/o/autobahn/\"" + ] + }, + { + "cell_type": "markdown", + "id": "76963637", + "metadata": {}, + "source": [ + "### Alle Straßennamen erhalten" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "8638c916", + "metadata": {}, + "outputs": [], + "source": [ + "response = requests.get(API_URL)\n", + "\n", + "with open(\"data/autobahn.json\", mode=\"w+\", encoding=\"utf8\") as autobahn_file:\n", + " roads = json.loads(response.text)\n", + " autobahn_file.write(json.dumps(roads))" + ] + }, + { + "cell_type": "markdown", + "id": "b67e0048", + "metadata": {}, + "source": [ + "### Alle Baustellen erhalten" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "74e428ce", + "metadata": {}, + "outputs": [], + "source": [ + "total_roadworks = {}\n", + "\n", + "for i, road in enumerate(roads[\"roads\"]):\n", + " response = requests.get(f\"{API_URL}/{road}/services/roadworks\")\n", + " roadworks = json.loads(response.text)\n", + " total_roadworks[road] = roadworks\n", + " print(f\"{i}/{len(roads[\"roads\"])} Autobahnen\")\n", + " time.sleep(5)\n", + "\n", + "with open(\"data/roadworks.json\", mode=\"w+\", encoding=\"utf8\") as roadwork_file:\n", + " roadwork_file.write(json.dumps(total_roadworks))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "5462f028", + "metadata": {}, + "outputs": [], + "source": [ + "roads[\"roads\"][88]" + ] + }, + { + "cell_type": "markdown", + "id": "7ea3d8bc", + "metadata": {}, + "source": [ + "### Alle Rastplätze erhalten" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "eecd5da0", + "metadata": {}, + "outputs": [], + "source": [ + "total_parking_lorries = {}\n", + "\n", + "for i, road in enumerate(roads[\"roads\"]):\n", + " response = requests.get(f\"{API_URL}/{road}/services/parking_lorry\")\n", + " if response.status_code != 200:\n", + " continue\n", + " try:\n", + " parking_lorry = json.loads(response.text)\n", + " total_parking_lorries[road] = parking_lorry\n", + " print(f\"{i}/{len(roads[\"roads\"])} Autobahnen\")\n", + " except json.JSONDecodeError as e:\n", + " print(f\"{i} Error {str(e)} occured\")\n", + " time.sleep(3)\n", + "\n", + "with open(\"data/parkinglorries.json\", mode=\"w+\", encoding=\"utf8\") as parkinglorries_file:\n", + " parkinglorries_file.write(json.dumps(total_parking_lorries))" + ] + }, + { + "cell_type": "markdown", + "id": "ff2efc9f", + "metadata": {}, + "source": [ + "### Alle Ladestationen erhalten" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4a34ff23", + "metadata": {}, + "outputs": [], + "source": [ + "total_charging_stations = {}\n", + "\n", + "for i, road in enumerate(roads[\"roads\"]):\n", + " response = requests.get(f\"{API_URL}/{road}/services/electric_charging_station\")\n", + " if response.status_code != 200:\n", + " continue\n", + " try:\n", + " charging_station = json.loads(response.text)\n", + " total_charging_stations[road] = charging_station\n", + " print(f\"{i}/{len(roads[\"roads\"])} Autobahnen\")\n", + " except json.JSONDecodeError as e:\n", + " print(f\"{i} Error {str(e)} occured\")\n", + " time.sleep(3)\n", + "\n", + "with open(\"data/chargingstations.json\", mode=\"w+\", encoding=\"utf8\") as chargingstations_file:\n", + " chargingstations_file.write(json.dumps(total_charging_stations))" + ] + }, + { + "cell_type": "markdown", + "id": "6db81957", + "metadata": {}, + "source": [ + "### Alle Webcams" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "224db1fa", + "metadata": {}, + "outputs": [], + "source": [ + "total_webcams = {}\n", + "\n", + "for i, road in enumerate(roads[\"roads\"]):\n", + " response = requests.get(f\"{API_URL}/{road}/services/webcam\")\n", + " if response.status_code != 200:\n", + " continue\n", + " try:\n", + " webcam = json.loads(response.text)\n", + " total_webcams[road] = webcam\n", + " print(f\"{i}/{len(roads[\"roads\"])} Autobahnen\")\n", + " except json.JSONDecodeError as e:\n", + " print(f\"{i} Error {str(e)} occured\")\n", + " time.sleep(3)\n", + "\n", + "with open(\"data/webcams.json\", mode=\"w+\", encoding=\"utf8\") as webcam_file:\n", + " webcam_file.write(json.dumps(total_webcams))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "venv (3.14.4)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.14.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/autobahn/data/autobahn.json b/autobahn/data/autobahn.json new file mode 100644 index 0000000..8ced39c --- /dev/null +++ b/autobahn/data/autobahn.json @@ -0,0 +1,113 @@ +{ + "roads": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "A10", + "A11", + "A12", + "A13", + "A14", + "A15", + "A17", + "A19", + "A20", + "A21", + "A23", + "A24", + "A25", + "A26", + "A27", + "A28", + "A29", + "A30", + "A31", + "A33", + "A36", + "A37", + "A38", + "A39", + "A40", + "A42", + "A43", + "A44", + "A45", + "A46", + "A48", + "A49", + "A52", + "A57", + "A59", + "A60", + "A60 ", + "A61", + "A62", + "A63", + "A64", + "A65", + "A66", + "A67", + "A70", + "A71", + "A72", + "A73", + "A81", + "A92", + "A93", + "A94", + "A95", + "A96", + "A98", + "A99", + "A100", + "A103", + "A111", + "A113", + "A115", + "A117", + "A143", + "A210", + "A215", + "A226", + "A255", + "A261", + "A270", + "A281", + "A320", + "A352", + "A369", + "A445", + "A448", + "A480", + "A485", + "A516", + "A524", + "A542", + "A553", + "A555", + "A559", + "A560", + "A562", + "A565", + "A620", + "A623", + "A640", + "A643", + "A64a", + "A650", + "A659", + "A661", + "A671", + "A831", + "A861", + "A864", + "A995", + "A99a" + ] +} \ No newline at end of file diff --git a/autobahn/data/chargingstations.json b/autobahn/data/chargingstations.json new file mode 100644 index 0000000..db35fad --- /dev/null +++ b/autobahn/data/chargingstations.json @@ -0,0 +1,14666 @@ +{ + "A1": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQzMDY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.22812,51.157855,7.22812,51.157855", + "point": "7.22812,51.157855", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Wuppertal | Remscheid Ost", + "coordinate": { + "lat": "51.157855", + "long": "7.22812" + }, + "description": [ + "Wuppertal | Remscheid Ost", + "42859 Wermelskirchen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY0NDU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.230556,51.158333,7.230556,51.158333", + "point": "7.230556,51.158333", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Wuppertal | Rastst\u00e4tte Remscheid Ost", + "coordinate": { + "lat": "51.158333", + "long": "7.230556" + }, + "description": [ + "A1 | Wuppertal | Rastst\u00e4tte Remscheid Ost", + "42859 Remscheid", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU1MDk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.59406,51.468376,7.59406,51.468376", + "point": "7.59406,51.468376", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Wuppertal | Rastst\u00e4tte Lichtendorf Nord", + "coordinate": { + "lat": "51.468376", + "long": "7.59406" + }, + "description": [ + "A1 | Wuppertal | Rastst\u00e4tte Lichtendorf Nord", + "44289 Dortmund", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU5NTg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.499223,51.411647,7.499223,51.411647", + "point": "7.499223,51.411647", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Wuppertal | Rastst\u00e4tte Lennhof West", + "coordinate": { + "lat": "51.411647", + "long": "7.499223" + }, + "description": [ + "A1 | Wuppertal | Rastst\u00e4tte Lennhof West", + "58099 Hagen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU1MTA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.595449,51.468811,7.595449,51.468811", + "point": "7.595449,51.468811", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Wuppertal | Lichtendorf Nord", + "coordinate": { + "lat": "51.468811", + "long": "7.595449" + }, + "description": [ + "A1 | Wuppertal | Lichtendorf Nord", + "44289 Dortmund", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY5NTY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.8803255,50.0684783,6.8803255,50.0684783", + "point": "6.8803255,50.0684783", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Trier | Rastst\u00e4tte Eifel West", + "coordinate": { + "lat": "50.0684783", + "long": "6.8803255" + }, + "description": [ + "A1 | Trier | Rastst\u00e4tte Eifel West", + "54533 Nieder\u00f6ffingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY5NTg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.880212,50.068492,6.880212,50.068492", + "point": "6.880212,50.068492", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Trier | Eifel West", + "coordinate": { + "lat": "50.068492", + "long": "6.880212" + }, + "description": [ + "A1 | Trier | Eifel West", + "54533 Nieder\u00f6fflingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczMzI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.896882,49.690177,6.896882,49.690177", + "point": "6.896882,49.690177", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Saarbr\u00fccken | Rastst\u00e4tte Hochwald West", + "coordinate": { + "lat": "49.690177", + "long": "6.896882" + }, + "description": [ + "A1 | Saarbr\u00fccken | Rastst\u00e4tte Hochwald West", + "54421 Reinsfeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4NDM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.041832,52.312502,7.041832,52.312502", + "point": "7.041832,52.312502", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Osnabr\u00fcck | Rastst\u00e4tte Bentheimer Wald S\u00fcd", + "coordinate": { + "lat": "52.312502", + "long": "7.041832" + }, + "description": [ + "A1 | Osnabr\u00fcck | Rastst\u00e4tte Bentheimer Wald S\u00fcd", + "48455 Bad Bentheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ5NjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.594438,51.467206,7.594438,51.467206", + "point": "7.594438,51.467206", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | M\u00fcnster | Lichtendorf S\u00fcd", + "coordinate": { + "lat": "51.467206", + "long": "7.594438" + }, + "description": [ + "A1 | M\u00fcnster | Lichtendorf S\u00fcd", + "58239 Schwerte", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkzMjI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.324738,53.694396,10.324738,53.694396", + "point": "10.324738,53.694396", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | L\u00fcbeck | Rastst\u00e4tte Buddikate Ost", + "coordinate": { + "lat": "53.694396", + "long": "10.324738" + }, + "description": [ + "A1 | L\u00fcbeck | Rastst\u00e4tte Buddikate Ost", + "22965 Todendorf", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg5MTM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.75624,54.07115,10.75624,54.07115", + "point": "10.75624,54.07115", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | L\u00fcbeck | Neust\u00e4dter Bucht West", + "coordinate": { + "lat": "54.07115", + "long": "10.75624" + }, + "description": [ + "A1 | L\u00fcbeck | Neust\u00e4dter Bucht West", + "23730 Neustadt in Holstein", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkzMjA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.322275,53.692409,10.322275,53.692409", + "point": "10.322275,53.692409", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | L\u00fcbeck | Buddikate Ost", + "coordinate": { + "lat": "53.692409", + "long": "10.322275" + }, + "description": [ + "A1 | L\u00fcbeck | Buddikate Ost", + "22965 Todendorf", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY1MzI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.245308,51.265614,7.245308,51.265614", + "point": "7.245308,51.265614", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | K\u00f6ln | Rastst\u00e4tte Ehrenberg West (2)", + "coordinate": { + "lat": "51.265614", + "long": "7.245308" + }, + "description": [ + "A1 | K\u00f6ln | Rastst\u00e4tte Ehrenberg West (2)", + "42389 Wuppertal", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY1MzE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.245148,51.265608,7.245148,51.265608", + "point": "7.245148,51.265608", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | K\u00f6ln | Rastst\u00e4tte Ehrenberg West (1)", + "coordinate": { + "lat": "51.265608", + "long": "7.245148" + }, + "description": [ + "A1 | K\u00f6ln | Rastst\u00e4tte Ehrenberg West (1)", + "42389 Wuppertal", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg5MTI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.756057,54.068004,10.756057,54.068004", + "point": "10.756057,54.068004", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Heiligenhafen | Neust\u00e4dter Bucht Ost", + "coordinate": { + "lat": "54.068004", + "long": "10.756057" + }, + "description": [ + "A1 | Heiligenhafen | Neust\u00e4dter Bucht Ost", + "23730 Neustadt in Holstein", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkzMzI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.478865,53.81885,10.478865,53.81885", + "point": "10.478865,53.81885", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Hamburg | Trave West", + "coordinate": { + "lat": "53.81885", + "long": "10.478865" + }, + "description": [ + "A1 | Hamburg | Trave West", + "23858 Reinfeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI2OTg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.177057,53.088003,9.177057,53.088003", + "point": "9.177057,53.088003", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Hamburg | Rastst\u00e4tte Grundbergsee S\u00fcd", + "coordinate": { + "lat": "53.088003", + "long": "9.177057" + }, + "description": [ + "A1 | Hamburg | Rastst\u00e4tte Grundbergsee S\u00fcd", + "27376 Sottrum", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkzMjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.320428,53.692558,10.320428,53.692558", + "point": "10.320428,53.692558", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Hamburg | Rastst\u00e4tte Buddikate West", + "coordinate": { + "lat": "53.692558", + "long": "10.320428" + }, + "description": [ + "A1 | Hamburg | Rastst\u00e4tte Buddikate West", + "22965 Todendorf", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI3MTU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.53517,53.299087,9.53517,53.299087", + "point": "9.53517,53.299087", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Hamburg | Ostetal S\u00fcd", + "coordinate": { + "lat": "53.299087", + "long": "9.53517" + }, + "description": [ + "A1 | Hamburg | Ostetal S\u00fcd", + "27419 Tiste", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkzMjE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.321402,53.693508,10.321402,53.693508", + "point": "10.321402,53.693508", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Hamburg | Buddikate West", + "coordinate": { + "lat": "53.693508", + "long": "10.321402" + }, + "description": [ + "A1 | Hamburg | Buddikate West", + "22965 Todendorf", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY5NTU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.881029,50.070167,6.881029,50.070167", + "point": "6.881029,50.070167", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Dreieck Vulkaneifel | Rastst\u00e4tte Eifel Ost", + "coordinate": { + "lat": "50.070167", + "long": "6.881029" + }, + "description": [ + "A1 | Dreieck Vulkaneifel | Rastst\u00e4tte Eifel Ost", + "54533 Nieder\u00f6ffingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY5NTc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.880905,50.070186,6.880905,50.070186", + "point": "6.880905,50.070186", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Dreieck Vulkaneifel | Eifel Ost", + "coordinate": { + "lat": "50.070186", + "long": "6.880905" + }, + "description": [ + "A1 | Dreieck Vulkaneifel | Eifel Ost", + "54533 Nieder\u00f6fflingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczMzQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.8996,49.6907,6.8996,49.6907", + "point": "6.8996,49.6907", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Dreieck Moseltal | Rastst\u00e4tte Hochwald Ost (2)", + "coordinate": { + "lat": "49.6907", + "long": "6.8996" + }, + "description": [ + "A1 | Dreieck Moseltal | Rastst\u00e4tte Hochwald Ost (2)", + "54421 Reinsfeld", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczMzM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.896757,49.690444,6.896757,49.690444", + "point": "6.896757,49.690444", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Dreieck Moseltal | Rastst\u00e4tte Hochwald Ost (1)", + "coordinate": { + "lat": "49.690444", + "long": "6.896757" + }, + "description": [ + "A1 | Dreieck Moseltal | Rastst\u00e4tte Hochwald Ost (1)", + "54421 Reinsfeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI2OTk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.176298,53.090847,9.176298,53.090847", + "point": "9.176298,53.090847", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A1 | Bremen | Rastst\u00e4tte Grundbergsee Nord", + "coordinate": { + "lat": "53.090847", + "long": "9.176298" + }, + "description": [ + "A1 | Bremen | Rastst\u00e4tte Grundbergsee Nord", + "27376 Sottrum", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A2": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fODI5NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.310008,52.250824,12.310008,52.250824", + "point": "12.310008,52.250824", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Potsdam | Buckautal S\u00fcd", + "coordinate": { + "lat": "52.250824", + "long": "12.310008" + }, + "description": [ + "A2 | Potsdam | Buckautal S\u00fcd", + "14793 Ziesar", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg0NTU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.078349,52.21576,11.078349,52.21576", + "point": "11.078349,52.21576", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Magdeburg | Marienborn S\u00fcd", + "coordinate": { + "lat": "52.21576", + "long": "11.078349" + }, + "description": [ + "A2 | Magdeburg | Marienborn S\u00fcd", + "39365 Sommersdorf", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fODI5Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.307421,52.252078,12.307421,52.252078", + "point": "12.307421,52.252078", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Magdeburg | Buckautal Nord", + "coordinate": { + "lat": "52.252078", + "long": "12.307421" + }, + "description": [ + "A2 | Magdeburg | Buckautal Nord", + "14793 Ziesar", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIzODE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.354579,52.340378,10.354579,52.340378", + "point": "10.354579,52.340378", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Hannover | Rastst\u00e4tte Zweidorfer Holz Nord", + "coordinate": { + "lat": "52.340378", + "long": "10.354579" + }, + "description": [ + "A2 | Hannover | Rastst\u00e4tte Zweidorfer Holz Nord", + "38176 Wendeburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTUzMzI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.63373,52.01653,8.63373,52.01653", + "point": "8.63373,52.01653", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Hannover | Rastst\u00e4tte Lipperland S\u00fcd", + "coordinate": { + "lat": "52.01653", + "long": "8.63373" + }, + "description": [ + "A2 | Hannover | Rastst\u00e4tte Lipperland S\u00fcd", + "33719 Bielefeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI2MjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.996509,52.388699,9.996509,52.388699", + "point": "9.996509,52.388699", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Hannover | Rastst\u00e4tte Lehrter See Nord", + "coordinate": { + "lat": "52.388699", + "long": "9.996509" + }, + "description": [ + "A2 | Hannover | Rastst\u00e4tte Lehrter See Nord", + "31275 Lehrte", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI3NjI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.23278,52.226935,9.23278,52.226935", + "point": "9.23278,52.226935", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Hannover | Rastst\u00e4tte Auetal S\u00fcd", + "coordinate": { + "lat": "52.226935", + "long": "9.23278" + }, + "description": [ + "A2 | Hannover | Rastst\u00e4tte Auetal S\u00fcd", + "31749 Auetal", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI3Njc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.232202,52.226613,9.232202,52.226613", + "point": "9.232202,52.226613", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Hannover | Auetal S\u00fcd", + "coordinate": { + "lat": "52.226613", + "long": "9.232202" + }, + "description": [ + "A2 | Hannover | Auetal S\u00fcd", + "31749 Auetal", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTM3NDE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.665289,52.071952,8.665289,52.071952", + "point": "8.665289,52.071952", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Dortmund | Rastst\u00e4tte Lipperland Nord", + "coordinate": { + "lat": "52.071952", + "long": "8.665289" + }, + "description": [ + "A2 | Dortmund | Rastst\u00e4tte Lipperland Nord", + "32107 Bad Salzuflen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTMzNDE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.369598,51.866322,8.369598,51.866322", + "point": "8.369598,51.866322", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Dortmund | Rastst\u00e4tte G\u00fctersloh Nord", + "coordinate": { + "lat": "51.866322", + "long": "8.369598" + }, + "description": [ + "A2 | Dortmund | Rastst\u00e4tte G\u00fctersloh Nord", + "33334 G\u00fcthersloh", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU0Mzk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.88743,51.539838,6.88743,51.539838", + "point": "6.88743,51.539838", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Dortmund | Rastst\u00e4tte Bottrop S\u00fcd", + "coordinate": { + "lat": "51.539838", + "long": "6.88743" + }, + "description": [ + "A2 | Dortmund | Rastst\u00e4tte Bottrop S\u00fcd", + "46242 Bottrop", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIzODI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.359787,52.33838,10.359787,52.33838", + "point": "10.359787,52.33838", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Braunschweig | Rastst\u00e4tte Zweidorfer Holz S\u00fcd", + "coordinate": { + "lat": "52.33838", + "long": "10.359787" + }, + "description": [ + "A2 | Braunschweig | Rastst\u00e4tte Zweidorfer Holz S\u00fcd", + "38176 Wendeburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI2MjQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.998724,52.386537,9.998724,52.386537", + "point": "9.998724,52.386537", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Braunschweig | Rastst\u00e4tte Lehrter See S\u00fcd", + "coordinate": { + "lat": "52.386537", + "long": "9.998724" + }, + "description": [ + "A2 | Braunschweig | Rastst\u00e4tte Lehrter See S\u00fcd", + "31275 Lehrte", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTUxNDg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.072179,51.790705,8.072179,51.790705", + "point": "8.072179,51.790705", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Bielefeld | Rastst\u00e4tte Vellern (2)", + "coordinate": { + "lat": "51.790705", + "long": "8.072179" + }, + "description": [ + "A2 | Bielefeld | Rastst\u00e4tte Vellern (2)", + "59269 Beckum", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTUxNDc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.074054,51.79108,8.074054,51.79108", + "point": "8.074054,51.79108", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Bielefeld | Rastst\u00e4tte Vellern (1)", + "coordinate": { + "lat": "51.79108", + "long": "8.074054" + }, + "description": [ + "A2 | Bielefeld | Rastst\u00e4tte Vellern (1)", + "59269 Beckum", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU5ODQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.872821,51.629715,7.872821,51.629715", + "point": "7.872821,51.629715", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Bielefeld | Rastst\u00e4tte Rhynern S\u00fcd", + "coordinate": { + "lat": "51.629715", + "long": "7.872821" + }, + "description": [ + "A2 | Bielefeld | Rastst\u00e4tte Rhynern S\u00fcd", + "59069 Hamm", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTUzMjQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.5321,51.9298,8.5321,51.9298", + "point": "8.5321,51.9298", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Bielefeld | Rastst\u00e4tte Obergassel", + "coordinate": { + "lat": "51.9298", + "long": "8.5321" + }, + "description": [ + "A2 | Bielefeld | Rastst\u00e4tte Obergassel", + "33689 Bielefeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTMzNDI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.37,51.865,8.37,51.865", + "point": "8.37,51.865", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Bielefeld | Rastst\u00e4tte G\u00fctersloh S\u00fcd", + "coordinate": { + "lat": "51.865", + "long": "8.37" + }, + "description": [ + "A2 | Bielefeld | Rastst\u00e4tte G\u00fctersloh S\u00fcd", + "33334 G\u00fcthersloh", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI1ODE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.55072,52.422367,9.55072,52.422367", + "point": "9.55072,52.422367", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Bielefeld | Rastst\u00e4tte Garbsen Nord", + "coordinate": { + "lat": "52.422367", + "long": "9.55072" + }, + "description": [ + "A2 | Bielefeld | Rastst\u00e4tte Garbsen Nord", + "30823 Garbsen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI3NjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.221553,52.223838,9.221553,52.223838", + "point": "9.221553,52.223838", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Bielefeld | Rastst\u00e4tte Auetal Nord", + "coordinate": { + "lat": "52.223838", + "long": "9.221553" + }, + "description": [ + "A2 | Bielefeld | Rastst\u00e4tte Auetal Nord", + "31749 Auetal", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI3NjY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.222077,52.223649,9.222077,52.223649", + "point": "9.222077,52.223649", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | Bielefeld | Auetal Nord", + "coordinate": { + "lat": "52.223649", + "long": "9.222077" + }, + "description": [ + "A2 | Bielefeld | Auetal Nord", + "31749 Auetal", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI1Nzc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.83229,52.41916,9.83229,52.41916", + "point": "9.83229,52.41916", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | AS Hannover-Lahe | Rendsburger Stra\u00dfe 1", + "coordinate": { + "lat": "52.41916", + "long": "9.83229" + }, + "description": [ + "A2 | AS Hannover-Lahe | Rendsburger Stra\u00dfe 1", + "30659 Hannover", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg3NDM=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "9.296646,54.219657,9.296646,54.219657", + "point": "9.296646,54.219657", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A2 | AS Hannover-Lahe | Rendsburger Str. 51", + "coordinate": { + "lat": "54.219657", + "long": "9.296646" + }, + "description": [ + "A2 | AS Hannover-Lahe | Rendsburger Str. 51", + "25782 Tellingstedt", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI2MDU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.83591,52.42354,9.83591,52.42354", + "point": "9.83591,52.42354", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A2 | AS Hannover-Lahe | Opelstra\u00dfe 3-5 (2)", + "coordinate": { + "lat": "52.42354", + "long": "9.83591" + }, + "description": [ + "A2 | AS Hannover-Lahe | Opelstra\u00dfe 3-5 (2)", + "30916 Altwarmb\u00fcchen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI2MDQ=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "9.83591,52.42354,9.83591,52.42354", + "point": "9.83591,52.42354", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A2 | AS Hannover-Lahe | Opelstra\u00dfe 3-5 (1)", + "coordinate": { + "lat": "52.42354", + "long": "9.83591" + }, + "description": [ + "A2 | AS Hannover-Lahe | Opelstra\u00dfe 3-5 (1)", + "30916 Altwarmb\u00fcchen", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A3": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTM5MjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.891473,51.326157,6.891473,51.326157", + "point": "6.891473,51.326157", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Duisburg | Rastst\u00e4tte H\u00f6sel Ost", + "coordinate": { + "lat": "51.326157", + "long": "6.891473" + }, + "description": [ + "Duisburg | Rastst\u00e4tte H\u00f6sel Ost", + "40883 Ratingen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAxODc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.907371,50.055212,8.907371,50.055212", + "point": "8.907371,50.055212", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | W\u00fcrzburg | Weiskirchen S\u00fcd", + "coordinate": { + "lat": "50.055212", + "long": "8.907371" + }, + "description": [ + "A3 | W\u00fcrzburg | Weiskirchen S\u00fcd", + "63110 Rodgau", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAxNjg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.906421,50.055416,8.906421,50.055416", + "point": "8.906421,50.055416", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | W\u00fcrzburg | Rastst\u00e4tte Weiskirchen S\u00fcd", + "coordinate": { + "lat": "50.055416", + "long": "8.906421" + }, + "description": [ + "A3 | W\u00fcrzburg | Rastst\u00e4tte Weiskirchen S\u00fcd", + "63110 Rodgau", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTcxMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.244809,49.781101,10.244809,49.781101", + "point": "10.244809,49.781101", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | W\u00fcrzburg | Rastst\u00e4tte Haidt Nord", + "coordinate": { + "lat": "49.781101", + "long": "10.244809" + }, + "description": [ + "A3 | W\u00fcrzburg | Rastst\u00e4tte Haidt Nord", + "97355 Kleinlangheim", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTcxMg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.244797,49.780852,10.244797,49.780852", + "point": "10.244797,49.780852", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | W\u00fcrzburg | Haidt Nord", + "coordinate": { + "lat": "49.780852", + "long": "10.244797" + }, + "description": [ + "A3 | W\u00fcrzburg | Haidt Nord", + "97355 Kleinlangheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMzM5MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.930265,49.580101,10.930265,49.580101", + "point": "10.930265,49.580101", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | W\u00fcrzburg | Aurach Nord", + "coordinate": { + "lat": "49.580101", + "long": "10.930265" + }, + "description": [ + "A3 | W\u00fcrzburg | Aurach Nord", + "91056 Erlangen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczNzc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.67526,50.522865,7.67526,50.522865", + "point": "7.67526,50.522865", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Wiesbaden | Rastst\u00e4tte Sessenhausen West", + "coordinate": { + "lat": "50.522865", + "long": "7.67526" + }, + "description": [ + "A3 | Wiesbaden | Rastst\u00e4tte Sessenhausen West", + "56422 Sessenhausen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczNzM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.873155,50.454372,7.873155,50.454372", + "point": "7.873155,50.454372", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Wiesbaden | Rastst\u00e4tte Heiligenroth West", + "coordinate": { + "lat": "50.454372", + "long": "7.873155" + }, + "description": [ + "A3 | Wiesbaden | Rastst\u00e4tte Heiligenroth West", + "56412 Heiligenroth", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTUyNDE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.747577,51.636509,6.747577,51.636509", + "point": "6.747577,51.636509", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Richtung Niederlande | Rastst\u00e4tte H\u00fcnxe Ost (2)", + "coordinate": { + "lat": "51.636509", + "long": "6.747577" + }, + "description": [ + "A3 | Richtung Niederlande | Rastst\u00e4tte H\u00fcnxe Ost (2)", + "46569 H\u00fcnxe", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTUyMzg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.746968,51.636934,6.746968,51.636934", + "point": "6.746968,51.636934", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Richtung Niederlande | Rastst\u00e4tte H\u00fcnxe Ost (1)", + "coordinate": { + "lat": "51.636934", + "long": "6.746968" + }, + "description": [ + "A3 | Richtung Niederlande | Rastst\u00e4tte H\u00fcnxe Ost (1)", + "46569 H\u00fcnxe", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDM2Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.36671,48.58854,13.36671,48.58854", + "point": "13.36671,48.58854", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Regensburg | Rastst\u00e4tte Donautal Ost", + "coordinate": { + "lat": "48.58854", + "long": "13.36671" + }, + "description": [ + "A3 | Regensburg | Rastst\u00e4tte Donautal Ost", + "94036 Passau", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjIxNQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.60003,49.272286,11.60003,49.272286", + "point": "11.60003,49.272286", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Regensburg | Jura West", + "coordinate": { + "lat": "49.272286", + "long": "11.60003" + }, + "description": [ + "A3 | Regensburg | Jura West", + "92355 Velburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDM3Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.366,48.588,13.366,48.588", + "point": "13.366,48.588", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Regensburg | Donautal Ost", + "coordinate": { + "lat": "48.588", + "long": "13.366" + }, + "description": [ + "A3 | Regensburg | Donautal Ost", + "94036 Passau", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNzAzOQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.70785,48.931488,12.70785,48.931488", + "point": "12.70785,48.931488", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Regensburg | Bayerischer Wald Nord", + "coordinate": { + "lat": "48.931488", + "long": "12.70785" + }, + "description": [ + "A3 | Regensburg | Bayerischer Wald Nord", + "94336 Hunderdorf", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDM2Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.365255,48.589296,13.365255,48.589296", + "point": "13.365255,48.589296", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Passau | Rastst\u00e4tte Donautal West", + "coordinate": { + "lat": "48.589296", + "long": "13.365255" + }, + "description": [ + "A3 | Passau | Rastst\u00e4tte Donautal West", + "94036 Passau", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDM3OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.366,48.59,13.366,48.59", + "point": "13.366,48.59", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Passau | Donautal West", + "coordinate": { + "lat": "48.59", + "long": "13.366" + }, + "description": [ + "A3 | Passau | Donautal West", + "94036 Passau", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNzA0MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.705783,48.931372,12.705783,48.931372", + "point": "12.705783,48.931372", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Passau | Bayerischer Wald S\u00fcd", + "coordinate": { + "lat": "48.931372", + "long": "12.705783" + }, + "description": [ + "A3 | Passau | Bayerischer Wald S\u00fcd", + "94336 Hunderdorf", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjIxNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.602249,49.270847,11.602249,49.270847", + "point": "11.602249,49.270847", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | N\u00fcrnberg | Jura Ost", + "coordinate": { + "lat": "49.270847", + "long": "11.602249" + }, + "description": [ + "A3 | N\u00fcrnberg | Jura Ost", + "92355 Velburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTcxMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.246493,49.779352,10.246493,49.779352", + "point": "10.246493,49.779352", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | N\u00fcrnberg | Haidt S\u00fcd", + "coordinate": { + "lat": "49.779352", + "long": "10.246493" + }, + "description": [ + "A3 | N\u00fcrnberg | Haidt S\u00fcd", + "97355 Kleinlangheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMzM5MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.927852,49.580281,10.927852,49.580281", + "point": "10.927852,49.580281", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | N\u00fcrnberg | Aurach S\u00fcd", + "coordinate": { + "lat": "49.580281", + "long": "10.927852" + }, + "description": [ + "A3 | N\u00fcrnberg | Aurach S\u00fcd", + "91056 Erlangen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ0NzY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.220042,50.809373,7.220042,50.809373", + "point": "7.220042,50.809373", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | K\u00f6ln | Rastst\u00e4tte Siegburg Ost", + "coordinate": { + "lat": "50.809373", + "long": "7.220042" + }, + "description": [ + "A3 | K\u00f6ln | Rastst\u00e4tte Siegburg Ost", + "53721 Siegburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY0OTI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.961858,51.157821,6.961858,51.157821", + "point": "6.961858,51.157821", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | K\u00f6ln | Rastst\u00e4tte Ohligser Heide West", + "coordinate": { + "lat": "51.157821", + "long": "6.961858" + }, + "description": [ + "A3 | K\u00f6ln | Rastst\u00e4tte Ohligser Heide West", + "42967 Solingen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczNzQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.928153,50.423135,7.928153,50.423135", + "point": "7.928153,50.423135", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | K\u00f6ln | Rastst\u00e4tte Nentershausen Ost", + "coordinate": { + "lat": "50.423135", + "long": "7.928153" + }, + "description": [ + "A3 | K\u00f6ln | Rastst\u00e4tte Nentershausen Ost", + "56412 Nentershausen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2, DC CHAdeMO", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczNjQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.850348,50.447712,7.850348,50.447712", + "point": "7.850348,50.447712", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | K\u00f6ln | Rastst\u00e4tte Montabaur Ost", + "coordinate": { + "lat": "50.447712", + "long": "7.850348" + }, + "description": [ + "A3 | K\u00f6ln | Rastst\u00e4tte Montabaur Ost", + "56410 Montabaur", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTk1Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.077496,50.396011,8.077496,50.396011", + "point": "8.077496,50.396011", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | K\u00f6ln | Rastst\u00e4tte Limburg Ost", + "coordinate": { + "lat": "50.396011", + "long": "8.077496" + }, + "description": [ + "A3 | K\u00f6ln | Rastst\u00e4tte Limburg Ost", + "65549 Limburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczNjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.67514,50.522947,7.67514,50.522947", + "point": "7.67514,50.522947", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | K\u00f6ln | Rastst\u00e4tte Landsberg an der Warthe (2)", + "coordinate": { + "lat": "50.522947", + "long": "7.67514" + }, + "description": [ + "A3 | K\u00f6ln | Rastst\u00e4tte Landsberg an der Warthe (2)", + "56244 Sessenhausen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczNjI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.695711,50.521421,7.695711,50.521421", + "point": "7.695711,50.521421", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | K\u00f6ln | Rastst\u00e4tte Landsberg an der Warthe (1)", + "coordinate": { + "lat": "50.521421", + "long": "7.695711" + }, + "description": [ + "A3 | K\u00f6ln | Rastst\u00e4tte Landsberg an der Warthe (1)", + "56244 Sessenhausen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY0NzQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.962202,51.157481,6.962202,51.157481", + "point": "6.962202,51.157481", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | K\u00f6ln | Ohligser Heide West", + "coordinate": { + "lat": "51.157481", + "long": "6.962202" + }, + "description": [ + "A3 | K\u00f6ln | Ohligser Heide West", + "42697 Solingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTQzMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.353607,50.095807,8.353607,50.095807", + "point": "8.353607,50.095807", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | K\u00f6ln | Medenbach Ost", + "coordinate": { + "lat": "50.095807", + "long": "8.353607" + }, + "description": [ + "A3 | K\u00f6ln | Medenbach Ost", + "65207 Wiesbaden", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAxNjc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.909382,50.055744,8.909382,50.055744", + "point": "8.909382,50.055744", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Frankfurt am Main | Weiskirchen Nord", + "coordinate": { + "lat": "50.055744", + "long": "8.909382" + }, + "description": [ + "A3 | Frankfurt am Main | Weiskirchen Nord", + "63110 Rodgau", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDc5OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.394346,49.898302,9.394346,49.898302", + "point": "9.394346,49.898302", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Frankfurt am Main | Spessart Nord", + "coordinate": { + "lat": "49.898302", + "long": "9.394346" + }, + "description": [ + "A3 | Frankfurt am Main | Spessart Nord", + "63879 Weibersbrunn", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDc5Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.394154,49.898294,9.394154,49.898294", + "point": "9.394154,49.898294", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Frankfurt am Main | Rastst\u00e4tte Spessart Nord", + "coordinate": { + "lat": "49.898294", + "long": "9.394154" + }, + "description": [ + "A3 | Frankfurt am Main | Rastst\u00e4tte Spessart Nord", + "63879 Weibersbrunn", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQzNDA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.15189,50.898194,7.15189,50.898194", + "point": "7.15189,50.898194", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Frankfurt am Main | Rastst\u00e4tte K\u00f6nigsforst West", + "coordinate": { + "lat": "50.898194", + "long": "7.15189" + }, + "description": [ + "A3 | Frankfurt am Main | Rastst\u00e4tte K\u00f6nigsforst West", + "51503 R\u00f6srath", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTQzNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.351742,50.096305,8.351742,50.096305", + "point": "8.351742,50.096305", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Frankfurt am Main | Medenbach West", + "coordinate": { + "lat": "50.096305", + "long": "8.351742" + }, + "description": [ + "A3 | Frankfurt am Main | Medenbach West", + "65207 Wiesbaden", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxNjg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.432143,50.600003,7.432143,50.600003", + "point": "7.432143,50.600003", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Frankfurt am Main | Fernthal West", + "coordinate": { + "lat": "50.600003", + "long": "7.432143" + }, + "description": [ + "A3 | Frankfurt am Main | Fernthal West", + "53577 Neustadt/Wied", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTkzNg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.234861,50.300794,8.234861,50.300794", + "point": "8.234861,50.300794", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Frankfurt am Main | Bad Camberg West", + "coordinate": { + "lat": "50.300794", + "long": "8.234861" + }, + "description": [ + "A3 | Frankfurt am Main | Bad Camberg West", + "65520 Bad Camberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY0OTE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.963889,51.1575,6.963889,51.1575", + "point": "6.963889,51.1575", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Duisburg |Rastst\u00e4tte Ohligser Heide Ost", + "coordinate": { + "lat": "51.1575", + "long": "6.963889" + }, + "description": [ + "A3 | Duisburg |Rastst\u00e4tte Ohligser Heide Ost", + "42967 Solingen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQzMzk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.152222,50.899444,7.152222,50.899444", + "point": "7.152222,50.899444", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Duisburg | Rastst\u00e4tte K\u00f6nigsforst Ost", + "coordinate": { + "lat": "50.899444", + "long": "7.152222" + }, + "description": [ + "A3 | Duisburg | Rastst\u00e4tte K\u00f6nigsforst Ost", + "51503 R\u00f6srath", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTUyNDA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.744913,51.635293,6.744913,51.635293", + "point": "6.744913,51.635293", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Duisburg | Rastst\u00e4tte H\u00fcnxe West (2)", + "coordinate": { + "lat": "51.635293", + "long": "6.744913" + }, + "description": [ + "A3 | Duisburg | Rastst\u00e4tte H\u00fcnxe West (2)", + "46569 H\u00fcnxe", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTUyMzk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.744846,51.635664,6.744846,51.635664", + "point": "6.744846,51.635664", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Duisburg | Rastst\u00e4tte H\u00fcnxe West (1)", + "coordinate": { + "lat": "51.635664", + "long": "6.744846" + }, + "description": [ + "A3 | Duisburg | Rastst\u00e4tte H\u00fcnxe West (1)", + "46569 H\u00fcnxe", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY0NzM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.963942,51.157162,6.963942,51.157162", + "point": "6.963942,51.157162", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Duisburg | Ohligser Heide Ost", + "coordinate": { + "lat": "51.157162", + "long": "6.963942" + }, + "description": [ + "A3 | Duisburg | Ohligser Heide Ost", + "42697 Solingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxNzA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.584985,50.548215,7.584985,50.548215", + "point": "7.584985,50.548215", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A3 | Bonn | Rastst\u00e4tte Urbacher Wald Ost", + "coordinate": { + "lat": "50.548215", + "long": "7.584985" + }, + "description": [ + "A3 | Bonn | Rastst\u00e4tte Urbacher Wald Ost", + "56307 Dernbach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAxNzI=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "8.897487,50.055283,8.897487,50.055283", + "point": "8.897487,50.055283", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A3 | AS Hanau | Liebigstra\u00dfe 7", + "coordinate": { + "lat": "50.055283", + "long": "8.897487" + }, + "description": [ + "A3 | AS Hanau | Liebigstra\u00dfe 7", + "63110 Rodgau", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A4": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQyNzA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.778011,50.928338,6.778011,50.928338", + "point": "6.778011,50.928338", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | K\u00f6ln | Rastst\u00e4tte Frechen S\u00fcd", + "coordinate": { + "lat": "50.928338", + "long": "6.778011" + }, + "description": [ + "K\u00f6ln | Rastst\u00e4tte Frechen S\u00fcd", + "50226 Frechen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQzMzA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.320669,50.951804,7.320669,50.951804", + "point": "7.320669,50.951804", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Siegen | Rastst\u00e4tte Aggertal S\u00fcd", + "coordinate": { + "lat": "50.951804", + "long": "7.320669" + }, + "description": [ + "A4 | Siegen | Rastst\u00e4tte Aggertal S\u00fcd", + "51491 Overath", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQzMzI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.320656,50.951946,7.320656,50.951946", + "point": "7.320656,50.951946", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Siegen | Aggertal S\u00fcd", + "coordinate": { + "lat": "50.951946", + "long": "7.320656" + }, + "description": [ + "A4 | Siegen | Aggertal S\u00fcd", + "51491 Overath", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQzMjk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.3217962,50.951687,7.3217962,50.951687", + "point": "7.3217962,50.951687", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | K\u00f6ln | Rastst\u00e4tte Aggertal Nord", + "coordinate": { + "lat": "50.951687", + "long": "7.3217962" + }, + "description": [ + "A4 | K\u00f6ln | Rastst\u00e4tte Aggertal Nord", + "51491 Overath", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQzMzE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.3180289,50.9516664,7.3180289,50.9516664", + "point": "7.3180289,50.9516664", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | K\u00f6ln | Aggertal Nord", + "coordinate": { + "lat": "50.9516664", + "long": "7.3180289" + }, + "description": [ + "A4 | K\u00f6ln | Aggertal Nord", + "51491 Overath", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ4MTU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.215741,50.816865,6.215741,50.816865", + "point": "6.215741,50.816865", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | K\u00f6ln | Aachener Land S\u00fcd", + "coordinate": { + "lat": "50.816865", + "long": "6.215741" + }, + "description": [ + "A4 | K\u00f6ln | Aachener Land S\u00fcd", + "52249 Eschweiler", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk3NDM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.808342,50.877326,11.808342,50.877326", + "point": "11.808342,50.877326", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Erfurt | Teufelstal Nord", + "coordinate": { + "lat": "50.877326", + "long": "11.808342" + }, + "description": [ + "A4 | Erfurt | Teufelstal Nord", + "07646 Bollberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk1OTU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.30796,50.86087,12.30796,50.86087", + "point": "12.30796,50.86087", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Erfurt | Rastst\u00e4tte Altenburger Land Nord", + "coordinate": { + "lat": "50.86087", + "long": "12.30796" + }, + "description": [ + "A4 | Erfurt | Rastst\u00e4tte Altenburger Land Nord", + "04626 Schm\u00f6lln", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk1OTc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.307977,50.860662,12.307977,50.860662", + "point": "12.307977,50.860662", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Erfurt | Altenburger Land Nord", + "coordinate": { + "lat": "50.860662", + "long": "12.307977" + }, + "description": [ + "A4 | Erfurt | Altenburger Land Nord", + "04626 Schm\u00f6lln", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk4NjI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.195412,50.949944,11.195412,50.949944", + "point": "11.195412,50.949944", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Eisenach | Rastst\u00e4tte Eichelborn Nord", + "coordinate": { + "lat": "50.949944", + "long": "11.195412" + }, + "description": [ + "A4 | Eisenach | Rastst\u00e4tte Eichelborn Nord", + "99198 M\u00f6nchenholzhausen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk2NDI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.589792,50.911392,10.589792,50.911392", + "point": "10.589792,50.911392", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Eisenach | H\u00f6rselgau Nord", + "coordinate": { + "lat": "50.911392", + "long": "10.589792" + }, + "description": [ + "A4 | Eisenach | H\u00f6rselgau Nord", + "99880 H\u00f6rsel", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc4ODM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "14.331987,51.199484,14.331987,51.199484", + "point": "14.331987,51.199484", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Dresden | Oberlausitz Nord", + "coordinate": { + "lat": "51.199484", + "long": "14.331987" + }, + "description": [ + "A4 | Dresden | Oberlausitz Nord", + "02625 Bautzen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTgwODA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.570146,51.063326,13.570146,51.063326", + "point": "13.570146,51.063326", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Dresden | Dresdener Tor S\u00fcd", + "coordinate": { + "lat": "51.063326", + "long": "13.570146" + }, + "description": [ + "A4 | Dresden | Dresdener Tor S\u00fcd", + "01723 Wilsdruff", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk3NDQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.809307,50.875901,11.809307,50.875901", + "point": "11.809307,50.875901", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Chemnitz | Teufelstal S\u00fcd", + "coordinate": { + "lat": "50.875901", + "long": "11.809307" + }, + "description": [ + "A4 | Chemnitz | Teufelstal S\u00fcd", + "07646 Bollberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk4NjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.196774,50.948001,11.196774,50.948001", + "point": "11.196774,50.948001", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Chemnitz | Rastst\u00e4tte Eichelborn S\u00fcd", + "coordinate": { + "lat": "50.948001", + "long": "11.196774" + }, + "description": [ + "A4 | Chemnitz | Rastst\u00e4tte Eichelborn S\u00fcd", + "99198 M\u00f6nchenholzhausen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk1OTQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.313048,50.856608,12.313048,50.856608", + "point": "12.313048,50.856608", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Chemnitz | Rastst\u00e4tte Altenburger Land S\u00fcd", + "coordinate": { + "lat": "50.856608", + "long": "12.313048" + }, + "description": [ + "A4 | Chemnitz | Rastst\u00e4tte Altenburger Land S\u00fcd", + "04626 Schm\u00f6lln", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTgwODE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.570146,51.063326,13.570146,51.063326", + "point": "13.570146,51.063326", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Chemnitz | Dresdener Tor Nord", + "coordinate": { + "lat": "51.063326", + "long": "13.570146" + }, + "description": [ + "A4 | Chemnitz | Dresdener Tor Nord", + "01723 Wilsdruff", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTgxMDM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.938842,50.892978,12.938842,50.892978", + "point": "12.938842,50.892978", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Chemnitz | Auerswalder Blick Nord", + "coordinate": { + "lat": "50.892978", + "long": "12.938842" + }, + "description": [ + "A4 | Chemnitz | Auerswalder Blick Nord", + "09244 Lichtenau", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk1OTg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.3132,50.85675,12.3132,50.85675", + "point": "12.3132,50.85675", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Chemnitz | Altenburger Land S\u00fcd", + "coordinate": { + "lat": "50.85675", + "long": "12.3132" + }, + "description": [ + "A4 | Chemnitz | Altenburger Land S\u00fcd", + "04626 Schm\u00f6lln", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc4ODQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "14.328689,51.198549,14.328689,51.198549", + "point": "14.328689,51.198549", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Bautzen | Oberlausitz S\u00fcd", + "coordinate": { + "lat": "51.198549", + "long": "14.328689" + }, + "description": [ + "A4 | Bautzen | Oberlausitz S\u00fcd", + "02625 Bautzen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ4MTQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.215,50.818,6.215,50.818", + "point": "6.215,50.818", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A4 | Aachen | Aachener Land Nord", + "coordinate": { + "lat": "50.818", + "long": "6.215" + }, + "description": [ + "A4 | Aachen | Aachener Land Nord", + "52249 Eschweiler", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A5": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMzgw", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.721949,47.970762,7.721949,47.970762", + "point": "7.721949,47.970762", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Freiburg | Breisgau Ost", + "coordinate": { + "lat": "47.970762", + "long": "7.721949" + }, + "description": [ + "Freiburg | Breisgau Ost", + "79227 Schallstadt", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "42 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTQ0OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.603219,49.689416,8.603219,49.689416", + "point": "8.603219,49.689416", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Darmstadt | Bergstra\u00dfe Ost", + "coordinate": { + "lat": "49.689416", + "long": "8.603219" + }, + "description": [ + "Darmstadt | Bergstra\u00dfe Ost", + "64625 Bensheim", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTMyNA==", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "7.60305,47.58989,7.60305,47.58989", + "point": "7.60305,47.58989", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A5 | Weil am Rhein | Hardstra\u00dfe 4", + "coordinate": { + "lat": "47.58989", + "long": "7.60305" + }, + "description": [ + "A5 | Weil am Rhein | Hardstra\u00dfe 4", + "79576 Weil am Rhein", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2, AC Schuko", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTMyMA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.60372,47.594401,7.60372,47.594401", + "point": "7.60372,47.594401", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Weil am Rhein | Basel Weil", + "coordinate": { + "lat": "47.594401", + "long": "7.60372" + }, + "description": [ + "A5 | Weil am Rhein | Basel Weil", + "79576 Weil am Rhein", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcwMg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.7915649,48.308982,7.7915649,48.308982", + "point": "7.7915649,48.308982", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Offenburg | Rastst\u00e4tte Mahlberg Ost", + "coordinate": { + "lat": "48.308982", + "long": "7.7915649" + }, + "description": [ + "A5 | Offenburg | Rastst\u00e4tte Mahlberg Ost", + "77972 Mahlberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcwNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.791519,48.308819,7.791519,48.308819", + "point": "7.791519,48.308819", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Offenburg | Mahlberg Ost", + "coordinate": { + "lat": "48.308819", + "long": "7.791519" + }, + "description": [ + "A5 | Offenburg | Mahlberg Ost", + "77972 Mahlberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjY3NQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.181381,48.808931,8.181381,48.808931", + "point": "8.181381,48.808931", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Offenburg | Baden-Baden West", + "coordinate": { + "lat": "48.808931", + "long": "8.181381" + }, + "description": [ + "A5 | Offenburg | Baden-Baden West", + "76532 Baden-Baden", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIxMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.567019,49.1609927,8.567019,49.1609927", + "point": "8.567019,49.1609927", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Karlsruhe | Rastst\u00e4tte Bruchsal West (2)", + "coordinate": { + "lat": "49.1609927", + "long": "8.567019" + }, + "description": [ + "A5 | Karlsruhe | Rastst\u00e4tte Bruchsal West (2)", + "76694 Forst", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIwOA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.567015,49.160998,8.567015,49.160998", + "point": "8.567015,49.160998", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Karlsruhe | Rastst\u00e4tte Bruchsal West (1)", + "coordinate": { + "lat": "49.160998", + "long": "8.567015" + }, + "description": [ + "A5 | Karlsruhe | Rastst\u00e4tte Bruchsal West (1)", + "76694 Forst", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg0Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.1317,48.753498,8.1317,48.753498", + "point": "8.1317,48.753498", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Karlsruhe | B\u00fchl Ost (2)", + "coordinate": { + "lat": "48.753498", + "long": "8.1317" + }, + "description": [ + "A5 | Karlsruhe | B\u00fchl Ost (2)", + "77815 B\u00fchl", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg0NQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.131493,48.753434,8.131493,48.753434", + "point": "8.131493,48.753434", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Karlsruhe | B\u00fchl Ost (1)", + "coordinate": { + "lat": "48.753434", + "long": "8.131493" + }, + "description": [ + "A5 | Karlsruhe | B\u00fchl Ost (1)", + "77815 B\u00fchl", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIxMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.567226,49.16125,8.567226,49.16125", + "point": "8.567226,49.16125", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Karlsruhe | Bruchsal West", + "coordinate": { + "lat": "49.16125", + "long": "8.567226" + }, + "description": [ + "A5 | Karlsruhe | Bruchsal West", + "76694 Forst", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIxMA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.570962,49.162909,8.570962,49.162909", + "point": "8.570962,49.162909", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Heidelberg | Rastst\u00e4tte Bruchsal Ost (2)", + "coordinate": { + "lat": "49.162909", + "long": "8.570962" + }, + "description": [ + "A5 | Heidelberg | Rastst\u00e4tte Bruchsal Ost (2)", + "76694 Forst", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIwOQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.570877,49.162905,8.570877,49.162905", + "point": "8.570877,49.162905", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Heidelberg | Rastst\u00e4tte Bruchsal Ost (1)", + "coordinate": { + "lat": "49.162905", + "long": "8.570877" + }, + "description": [ + "A5 | Heidelberg | Rastst\u00e4tte Bruchsal Ost (1)", + "76694 Forst", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIxMg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.570788,49.162694,8.570788,49.162694", + "point": "8.570788,49.162694", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Heidelberg | Bruchsal Ost", + "coordinate": { + "lat": "49.162694", + "long": "8.570788" + }, + "description": [ + "A5 | Heidelberg | Bruchsal Ost", + "76694 Forst", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTU1Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.591679,49.746893,8.591679,49.746893", + "point": "8.591679,49.746893", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Heidelberg | Alsbach West", + "coordinate": { + "lat": "49.746893", + "long": "8.591679" + }, + "description": [ + "A5 | Heidelberg | Alsbach West", + "64665 Alsbach", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "42 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTY2Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.896404,50.622672,8.896404,50.622672", + "point": "8.896404,50.622672", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Hattenbacher Dreieck | Reinhardshain S\u00fcd", + "coordinate": { + "lat": "50.622672", + "long": "8.896404" + }, + "description": [ + "A5 | Hattenbacher Dreieck | Reinhardshain S\u00fcd", + "35305 Gr\u00fcnberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA0Njg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.69456,50.35566,8.69456,50.35566", + "point": "8.69456,50.35566", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Gie\u00dfen | Wetterau Ost", + "coordinate": { + "lat": "50.35566", + "long": "8.69456" + }, + "description": [ + "A5 | Gie\u00dfen | Wetterau Ost", + "61239 Ober-M\u00f6rlen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAzNTE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.357694,50.759834,9.357694,50.759834", + "point": "9.357694,50.759834", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Gie\u00dfen | Rastst\u00e4tte Berfa Nord", + "coordinate": { + "lat": "50.759834", + "long": "9.357694" + }, + "description": [ + "A5 | Gie\u00dfen | Rastst\u00e4tte Berfa Nord", + "36304 Alsfeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTc3NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.473105,50.793156,9.473105,50.793156", + "point": "9.473105,50.793156", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Gie\u00dfen | Rasthaus Rimberg", + "coordinate": { + "lat": "50.793156", + "long": "9.473105" + }, + "description": [ + "A5 | Gie\u00dfen | Rasthaus Rimberg", + "36287 Breitenbach am Herzberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "50 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY2Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.9559225,48.563031,7.9559225,48.563031", + "point": "7.9559225,48.563031", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Freiburg | Rastst\u00e4tte Renchtal West (2)", + "coordinate": { + "lat": "48.563031", + "long": "7.9559225" + }, + "description": [ + "A5 | Freiburg | Rastst\u00e4tte Renchtal West (2)", + "77767 Appenweier", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY2NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.955847,48.563052,7.955847,48.563052", + "point": "7.955847,48.563052", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Freiburg | Rastst\u00e4tte Renchtal West (1)", + "coordinate": { + "lat": "48.563052", + "long": "7.955847" + }, + "description": [ + "A5 | Freiburg | Rastst\u00e4tte Renchtal West (1)", + "77767 Appenweier", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcwMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.788862,48.309678,7.788862,48.309678", + "point": "7.788862,48.309678", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Freiburg | Rastst\u00e4tte Mahlberg West", + "coordinate": { + "lat": "48.309678", + "long": "7.788862" + }, + "description": [ + "A5 | Freiburg | Rastst\u00e4tte Mahlberg West", + "77972 Mahlberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcwNQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.788855,48.309517,7.788855,48.309517", + "point": "7.788855,48.309517", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Freiburg | Mahlberg West", + "coordinate": { + "lat": "48.309517", + "long": "7.788855" + }, + "description": [ + "A5 | Freiburg | Mahlberg West", + "77972 Mahlberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA0Njk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.69412,50.35754,8.69412,50.35754", + "point": "8.69412,50.35754", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Frankfurt am Main | Wetterau West", + "coordinate": { + "lat": "50.35754", + "long": "8.69412" + }, + "description": [ + "A5 | Frankfurt am Main | Wetterau West", + "61239 Ober-M\u00f6rlen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTY2MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.894967,50.623593,8.894967,50.623593", + "point": "8.894967,50.623593", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Frankfurt am Main | Reinhardshain Nord (2)", + "coordinate": { + "lat": "50.623593", + "long": "8.894967" + }, + "description": [ + "A5 | Frankfurt am Main | Reinhardshain Nord (2)", + "35305 Gr\u00fcnberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTY1OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.894967,50.623593,8.894967,50.623593", + "point": "8.894967,50.623593", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Frankfurt am Main | Reinhardshain Nord (1)", + "coordinate": { + "lat": "50.623593", + "long": "8.894967" + }, + "description": [ + "A5 | Frankfurt am Main | Reinhardshain Nord (1)", + "35305 Gr\u00fcnberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTY4Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.75529,50.520453,8.75529,50.520453", + "point": "8.75529,50.520453", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Frankfurt am Main | Limes West", + "coordinate": { + "lat": "50.520453", + "long": "8.75529" + }, + "description": [ + "A5 | Frankfurt am Main | Limes West", + "35415 Pohlheim", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "50 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTUyMA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.610717,49.946113,8.610717,49.946113", + "point": "8.610717,49.946113", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Frankfurt am Main | Gr\u00e4fenhausen Ost", + "coordinate": { + "lat": "49.946113", + "long": "8.610717" + }, + "description": [ + "A5 | Frankfurt am Main | Gr\u00e4fenhausen Ost", + "64331 Weiterstadt", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjE4MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.632238,49.350934,8.632238,49.350934", + "point": "8.632238,49.350934", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Darmstadt | Rastst\u00e4tte Hardtwald Ost", + "coordinate": { + "lat": "49.350934", + "long": "8.632238" + }, + "description": [ + "A5 | Darmstadt | Rastst\u00e4tte Hardtwald Ost", + "69207 Sandhausen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTQ0MA==", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "8.606043,49.687297,8.606043,49.687297", + "point": "8.606043,49.687297", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A5 | Darmstadt | Rastst\u00e4tte Bergstra\u00dfe Ost", + "coordinate": { + "lat": "49.687297", + "long": "8.606043" + }, + "description": [ + "A5 | Darmstadt | Rastst\u00e4tte Bergstra\u00dfe Ost", + "64625 Bensheim", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "4 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTUyMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.609489,49.94694,8.609489,49.94694", + "point": "8.609489,49.94694", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Darmstadt | Gr\u00e4fenhausen West", + "coordinate": { + "lat": "49.94694", + "long": "8.609489" + }, + "description": [ + "A5 | Darmstadt | Gr\u00e4fenhausen West", + "64331 Weiterstadt", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjY5NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.810907,48.050002,7.810907,48.050002", + "point": "7.810907,48.050002", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Basel | Schauinsland West", + "coordinate": { + "lat": "48.050002", + "long": "7.810907" + }, + "description": [ + "A5 | Basel | Schauinsland West", + "79108 Freiburg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "42 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTMwMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.551272,47.737703,7.551272,47.737703", + "point": "7.551272,47.737703", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Basel | Bad Bellingen West", + "coordinate": { + "lat": "47.737703", + "long": "7.551272" + }, + "description": [ + "A5 | Basel | Bad Bellingen West", + "79415 Bad Bellingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY2Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.9591637,48.5628685,7.9591637,48.5628685", + "point": "7.9591637,48.5628685", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Baden-Baden | Rastst\u00e4tte Renchtal Ost (2)", + "coordinate": { + "lat": "48.5628685", + "long": "7.9591637" + }, + "description": [ + "A5 | Baden-Baden | Rastst\u00e4tte Renchtal Ost (2)", + "77767 Appenweier", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY2NQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.958827,48.562448,7.958827,48.562448", + "point": "7.958827,48.562448", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | Baden-Baden | Rastst\u00e4tte Renchtal Ost (1)", + "coordinate": { + "lat": "48.562448", + "long": "7.958827" + }, + "description": [ + "A5 | Baden-Baden | Rastst\u00e4tte Renchtal Ost (1)", + "77767 Appenweier", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTUyMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.608342,49.902832,8.608342,49.902832", + "point": "8.608342,49.902832", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | AS Weiterstadt | Rudolf-Diesel-Stra\u00dfe 26a", + "coordinate": { + "lat": "49.902832", + "long": "8.608342" + }, + "description": [ + "A5 | AS Weiterstadt | Rudolf-Diesel-Stra\u00dfe 26a", + "64331 Weiterstadt", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTUyNA==", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "8.607509,49.901342,8.607509,49.901342", + "point": "8.607509,49.901342", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A5 | AS Weiterstadt | Rudolf-Diesel-Stra\u00dfe 26", + "coordinate": { + "lat": "49.901342", + "long": "8.607509" + }, + "description": [ + "A5 | AS Weiterstadt | Rudolf-Diesel-Stra\u00dfe 26", + "64331 Weiterstadt", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMzk3", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.592565,47.909055,7.592565,47.909055", + "point": "7.592565,47.909055", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | AS Hertheim/Heitersheim | Autohof Bremgarten", + "coordinate": { + "lat": "47.909055", + "long": "7.592565" + }, + "description": [ + "A5 | AS Hertheim/Heitersheim | Autohof Bremgarten", + "79258 Hartheim-Bremgarten", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo, DC CHAdeMO", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAzNTI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.24163,50.734167,9.24163,50.734167", + "point": "9.24163,50.734167", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A5 | AS Asfeld-West | Autohof Pfefferh\u00f6he", + "coordinate": { + "lat": "50.734167", + "long": "9.24163" + }, + "description": [ + "A5 | AS Asfeld-West | Autohof Pfefferh\u00f6he", + "36304 Alsfeld", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "175 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "175 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo, DC CHAdeMO", + "175 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A6": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcwODM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.376096,49.375756,7.376096,49.375756", + "point": "7.376096,49.375756", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Saarbr\u00fccken | Rastst\u00e4tte Waldmohr", + "coordinate": { + "lat": "49.375756", + "long": "7.376096" + }, + "description": [ + "A6 | Saarbr\u00fccken | Rastst\u00e4tte Waldmohr", + "66914 Waldmohr", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDY3Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.687921,49.422812,11.687921,49.422812", + "point": "11.687921,49.422812", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Prag | Rastst\u00e4tte Oberpf\u00e4lzer Alb S\u00fcd", + "coordinate": { + "lat": "49.422812", + "long": "11.687921" + }, + "description": [ + "A6 | Prag | Rastst\u00e4tte Oberpf\u00e4lzer Alb S\u00fcd", + "92278 Illschwang", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDY3OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.690394,49.424386,11.690394,49.424386", + "point": "11.690394,49.424386", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | N\u00fcrnberg | Rast\u00e4tte Oberpf\u00e4lzer Alb Nord", + "coordinate": { + "lat": "49.424386", + "long": "11.690394" + }, + "description": [ + "A6 | N\u00fcrnberg | Rast\u00e4tte Oberpf\u00e4lzer Alb Nord", + "92278 Illschwang", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA2OQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.639696,49.205379,9.639696,49.205379", + "point": "9.639696,49.205379", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | N\u00fcrnberg | Rastst\u00e4tte Hohenlohe S\u00fcd", + "coordinate": { + "lat": "49.205379", + "long": "9.639696" + }, + "description": [ + "A6 | N\u00fcrnberg | Rastst\u00e4tte Hohenlohe S\u00fcd", + "74632 Neuenstein", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDcyMg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.355909,49.240933,10.355909,49.240933", + "point": "10.355909,49.240933", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | N\u00fcrnberg | Rastst\u00e4tte Frankenh\u00f6he S\u00fcd", + "coordinate": { + "lat": "49.240933", + "long": "10.355909" + }, + "description": [ + "A6 | N\u00fcrnberg | Rastst\u00e4tte Frankenh\u00f6he S\u00fcd", + "91589 Aurach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjgyOQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.97202,49.30744,10.97202,49.30744", + "point": "10.97202,49.30744", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | N\u00fcrnberg | Kammersteiner Land S\u00fcd", + "coordinate": { + "lat": "49.30744", + "long": "10.97202" + }, + "description": [ + "A6 | N\u00fcrnberg | Kammersteiner Land S\u00fcd", + "91126 Schwabach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA2NQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.640193,49.205248,9.640193,49.205248", + "point": "9.640193,49.205248", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | N\u00fcrnberg | Hohenlohne S\u00fcd", + "coordinate": { + "lat": "49.205248", + "long": "9.640193" + }, + "description": [ + "A6 | N\u00fcrnberg | Hohenlohne S\u00fcd", + "74632 Neuenstein", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDcyNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.356121,49.241155,10.356121,49.241155", + "point": "10.356121,49.241155", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | N\u00fcrnberg | Frankenh\u00f6he S\u00fcd", + "coordinate": { + "lat": "49.241155", + "long": "10.356121" + }, + "description": [ + "A6 | N\u00fcrnberg | Frankenh\u00f6he S\u00fcd", + "91589 Aurach", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjE0Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.575853,49.316991,8.575853,49.316991", + "point": "8.575853,49.316991", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Mannheim | Rastst\u00e4tte Am Hockenheimring Ost", + "coordinate": { + "lat": "49.316991", + "long": "8.575853" + }, + "description": [ + "A6 | Mannheim | Rastst\u00e4tte Am Hockenheimring Ost", + "68766 Hockenheim", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY4NzQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.072672,49.527511,8.072672,49.527511", + "point": "8.072672,49.527511", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Kaiserslautern | Rastst\u00e4tte Pfalz/Wattenheim Nord", + "coordinate": { + "lat": "49.527511", + "long": "8.072672" + }, + "description": [ + "A6 | Kaiserslautern | Rastst\u00e4tte Pfalz/Wattenheim Nord", + "671319 Wattenheim", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc1MTY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.312829,49.347098,7.312829,49.347098", + "point": "7.312829,49.347098", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Kaiserslautern | Rastst\u00e4tte Homburg Saar S\u00fcd", + "coordinate": { + "lat": "49.347098", + "long": "7.312829" + }, + "description": [ + "A6 | Kaiserslautern | Rastst\u00e4tte Homburg Saar S\u00fcd", + "66424 Homburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY4OTY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.072551,49.527482,8.072551,49.527482", + "point": "8.072551,49.527482", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Kaiserslautern | Pfalz/Wattenheim Nord", + "coordinate": { + "lat": "49.527482", + "long": "8.072551" + }, + "description": [ + "A6 | Kaiserslautern | Pfalz/Wattenheim Nord", + "67319 Wattenheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc0MjQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.967183,49.207538,6.967183,49.207538", + "point": "6.967183,49.207538", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Homburg | Rastst\u00e4tte Goldene Bremm S\u00fcd", + "coordinate": { + "lat": "49.207538", + "long": "6.967183" + }, + "description": [ + "A6 | Homburg | Rastst\u00e4tte Goldene Bremm S\u00fcd", + "66117 Saarbr\u00fccken", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjIyMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.87991141,49.24097239,8.87991141,49.24097239", + "point": "8.87991141,49.24097239", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heilbronn | Rastst\u00e4tte Kraichgau-S\u00fcd (3)", + "coordinate": { + "lat": "49.24097239", + "long": "8.87991141" + }, + "description": [ + "A6 | Heilbronn | Rastst\u00e4tte Kraichgau-S\u00fcd (3)", + "74889 Sinsheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjIyMg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.87991141,49.24097239,8.87991141,49.24097239", + "point": "8.87991141,49.24097239", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heilbronn | Rastst\u00e4tte Kraichgau-S\u00fcd (2)", + "coordinate": { + "lat": "49.24097239", + "long": "8.87991141" + }, + "description": [ + "A6 | Heilbronn | Rastst\u00e4tte Kraichgau-S\u00fcd (2)", + "74889 Sinsheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjIyMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.87991141,49.24097239,8.87991141,49.24097239", + "point": "8.87991141,49.24097239", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heilbronn | Rastst\u00e4tte Kraichgau-S\u00fcd (1)", + "coordinate": { + "lat": "49.24097239", + "long": "8.87991141" + }, + "description": [ + "A6 | Heilbronn | Rastst\u00e4tte Kraichgau-S\u00fcd (1)", + "74889 Sinsheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA2OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.639273,49.207007,9.639273,49.207007", + "point": "9.639273,49.207007", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heilbronn | Rastst\u00e4tte Hohenlohe Nord", + "coordinate": { + "lat": "49.207007", + "long": "9.639273" + }, + "description": [ + "A6 | Heilbronn | Rastst\u00e4tte Hohenlohe Nord", + "74632 Neuenstein", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjE0Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.567804,49.320815,8.567804,49.320815", + "point": "8.567804,49.320815", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heilbronn | Rastst\u00e4tte Am Hockenheimring West", + "coordinate": { + "lat": "49.320815", + "long": "8.567804" + }, + "description": [ + "A6 | Heilbronn | Rastst\u00e4tte Am Hockenheimring West", + "68766 Hockenheim", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjIyMA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.879562,49.240926,8.879562,49.240926", + "point": "8.879562,49.240926", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heilbronn | Kraichgau-S\u00fcd (1)", + "coordinate": { + "lat": "49.240926", + "long": "8.879562" + }, + "description": [ + "A6 | Heilbronn | Kraichgau-S\u00fcd (1)", + "74889 Sinsheim", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjgzMA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.9715,49.30853,10.9715,49.30853", + "point": "10.9715,49.30853", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heilbronn | Kammersteiner Land Nord", + "coordinate": { + "lat": "49.30853", + "long": "10.9715" + }, + "description": [ + "A6 | Heilbronn | Kammersteiner Land Nord", + "91126 Schwabach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA2Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.639063,49.207091,9.639063,49.207091", + "point": "9.639063,49.207091", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heilbronn | Hohenlohne Nord", + "coordinate": { + "lat": "49.207091", + "long": "9.639063" + }, + "description": [ + "A6 | Heilbronn | Hohenlohne Nord", + "74632 Neuenstein", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDcyMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.35321,49.24282,10.35321,49.24282", + "point": "10.35321,49.24282", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heidelberg | Rastst\u00e4tte Frankenh\u00f6he Nord", + "coordinate": { + "lat": "49.24282", + "long": "10.35321" + }, + "description": [ + "A6 | Heidelberg | Rastst\u00e4tte Frankenh\u00f6he Nord", + "91589 Aurach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDcyMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.352944,49.242629,10.352944,49.242629", + "point": "10.352944,49.242629", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | Heidelberg | Frankenh\u00f6he Nord", + "coordinate": { + "lat": "49.242629", + "long": "10.352944" + }, + "description": [ + "A6 | Heidelberg | Frankenh\u00f6he Nord", + "91589 Aurach", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjIyNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.878005,49.247248,8.878005,49.247248", + "point": "8.878005,49.247248", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | AS Sinsheim | Strombergstra\u00dfe 5", + "coordinate": { + "lat": "49.247248", + "long": "8.878005" + }, + "description": [ + "A6 | AS Sinsheim | Strombergstra\u00dfe 5", + "74889 Sinsheim", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTk3", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "9.261854,49.168127,9.261854,49.168127", + "point": "9.261854,49.168127", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A6 | AK Weinsberg | K\u00e4ppeles\u00e4cker 10", + "coordinate": { + "lat": "49.168127", + "long": "9.261854" + }, + "description": [ + "A6 | AK Weinsberg | K\u00e4ppeles\u00e4cker 10", + "74235 Erlenbach", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A7": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkyMzE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.933177,54.01338,9.933177,54.01338", + "point": "9.933177,54.01338", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Brokenlande Ost", + "coordinate": { + "lat": "54.01338", + "long": "9.933177" + }, + "description": [ + "Brokenlande Ost", + "24623 Brokenlande", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "42 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNzI2Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.016529,49.944645,10.016529,49.944645", + "point": "10.016529,49.944645", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | W\u00fcrzburg | Riedener Wald West", + "coordinate": { + "lat": "49.944645", + "long": "10.016529" + }, + "description": [ + "A7 | W\u00fcrzburg | Riedener Wald West", + "97262 Hausen bei W\u00fcrzburg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNzI2Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.020356,49.944266,10.020356,49.944266", + "point": "10.020356,49.944266", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | W\u00fcrzburg | Rastst\u00e4tte Riedener Wald West", + "coordinate": { + "lat": "49.944266", + "long": "10.020356" + }, + "description": [ + "A7 | W\u00fcrzburg | Rastst\u00e4tte Riedener Wald West", + "97267 Hausen bei W\u00fcrzburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDczNQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.213617,49.485178,10.213617,49.485178", + "point": "10.213617,49.485178", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | W\u00fcrzburg | Ohrenbach Ost (2)", + "coordinate": { + "lat": "49.485178", + "long": "10.213617" + }, + "description": [ + "A7 | W\u00fcrzburg | Ohrenbach Ost (2)", + "91620 Ohrenbach", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDczNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.213617,49.485178,10.213617,49.485178", + "point": "10.213617,49.485178", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | W\u00fcrzburg | Ohrenbach Ost (1)", + "coordinate": { + "lat": "49.485178", + "long": "10.213617" + }, + "description": [ + "A7 | W\u00fcrzburg | Ohrenbach Ost (1)", + "91620 Ohrenbach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTE0", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.175751,48.58409,10.175751,48.58409", + "point": "10.175751,48.58409", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Ulm | Rastst\u00e4tte Lonetal West", + "coordinate": { + "lat": "48.58409", + "long": "10.175751" + }, + "description": [ + "A7 | Ulm | Rastst\u00e4tte Lonetal West", + "89537 Giengen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTI2", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.175605,48.583937,10.175605,48.583937", + "point": "10.175605,48.583937", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Ulm | Lonetal West (2)", + "coordinate": { + "lat": "48.583937", + "long": "10.175605" + }, + "description": [ + "A7 | Ulm | Lonetal West (2)", + "89537 Giengen an der Brenz", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTE2", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.1757226,48.5839663,10.1757226,48.5839663", + "point": "10.1757226,48.5839663", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Ulm | Lonetal West (1)", + "coordinate": { + "lat": "48.5839663", + "long": "10.1757226" + }, + "description": [ + "A7 | Ulm | Lonetal West (1)", + "89537 Giengen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.112164,48.1247,10.112164,48.1247", + "point": "10.112164,48.1247", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Ulm | Illertal Ost (2)", + "coordinate": { + "lat": "48.1247", + "long": "10.112164" + }, + "description": [ + "A7 | Ulm | Illertal Ost (2)", + "88451 Dettingen/Iller", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo, DC CHAdeMO", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE1", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.109536,48.12546,10.109536,48.12546", + "point": "10.109536,48.12546", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Ulm | Illertal Ost (1)", + "coordinate": { + "lat": "48.12546", + "long": "10.109536" + }, + "description": [ + "A7 | Ulm | Illertal Ost (1)", + "88451 Dettingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTY0OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.735454,50.41985,9.735454,50.41985", + "point": "9.735454,50.41985", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Schweinfurt | Uttrichshausen West", + "coordinate": { + "lat": "50.41985", + "long": "9.735454" + }, + "description": [ + "A7 | Schweinfurt | Uttrichshausen West", + "36148 Kalbach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNzI2MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.020716,49.943996,10.020716,49.943996", + "point": "10.020716,49.943996", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Schweinfurt | Riedener Wald Ost", + "coordinate": { + "lat": "49.943996", + "long": "10.020716" + }, + "description": [ + "A7 | Schweinfurt | Riedener Wald Ost", + "97262 Hausen bei W\u00fcrzburg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNzI2MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.01645,49.94551,10.01645,49.94551", + "point": "10.01645,49.94551", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Schweinfurt | Rastst\u00e4tte Riedener Wald Ost", + "coordinate": { + "lat": "49.94551", + "long": "10.01645" + }, + "description": [ + "A7 | Schweinfurt | Rastst\u00e4tte Riedener Wald Ost", + "97262 Hausen bei W\u00fcrzburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc3MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.196179,48.984913,10.196179,48.984913", + "point": "10.196179,48.984913", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Rothenburg | Rastst\u00e4tte Ellwanger Berge Ost", + "coordinate": { + "lat": "48.984913", + "long": "10.196179" + }, + "description": [ + "A7 | Rothenburg | Rastst\u00e4tte Ellwanger Berge Ost", + "73479 Ellwangen/Jagst Deutschland", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDczNg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.211154,49.484956,10.211154,49.484956", + "point": "10.211154,49.484956", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Rothenburg | Ohrenbach West", + "coordinate": { + "lat": "49.484956", + "long": "10.211154" + }, + "description": [ + "A7 | Rothenburg | Ohrenbach West", + "91620 Ohrenbach", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc1NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.196173,48.98484,10.196173,48.98484", + "point": "10.196173,48.98484", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Rothenburg | Ellwanger Berge Ost", + "coordinate": { + "lat": "48.98484", + "long": "10.196173" + }, + "description": [ + "A7 | Rothenburg | Ellwanger Berge Ost", + "73479 Ellwangen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg5ODc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.939533,53.716893,9.939533,53.716893", + "point": "9.939533,53.716893", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Rendsburg | Holmmoor Ost", + "coordinate": { + "lat": "53.716893", + "long": "9.939533" + }, + "description": [ + "A7 | Rendsburg | Holmmoor Ost", + "25451 Quickborn", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkxNTg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.328791,54.80343,9.328791,54.80343", + "point": "9.328791,54.80343", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Rendsburg | Ellund West (2)", + "coordinate": { + "lat": "54.80343", + "long": "9.328791" + }, + "description": [ + "A7 | Rendsburg | Ellund West (2)", + "24983 Handewitt", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkxNTc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.328616,54.804014,9.328616,54.804014", + "point": "9.328616,54.804014", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Rendsburg | Ellund West (1)", + "coordinate": { + "lat": "54.804014", + "long": "9.328616" + }, + "description": [ + "A7 | Rendsburg | Ellund West (1)", + "24983 Handewitt", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjQxMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.282955,47.847447,10.282955,47.847447", + "point": "10.282955,47.847447", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Memmingen | Rastst\u00e4tte Allg\u00e4uer Tor Ost", + "coordinate": { + "lat": "47.847447", + "long": "10.282955" + }, + "description": [ + "A7 | Memmingen | Rastst\u00e4tte Allg\u00e4uer Tor Ost", + "87463 Dietmannsried", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE3", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.10901657,48.125522,10.10901657,48.125522", + "point": "10.10901657,48.125522", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Memmingen | Illertal West (2)", + "coordinate": { + "lat": "48.125522", + "long": "10.10901657" + }, + "description": [ + "A7 | Memmingen | Illertal West (2)", + "88451 Dettingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE2", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.10901657,48.125522,10.10901657,48.125522", + "point": "10.10901657,48.125522", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Memmingen | Illertal West (1)", + "coordinate": { + "lat": "48.125522", + "long": "10.10901657" + }, + "description": [ + "A7 | Memmingen | Illertal West (1)", + "88451 Dettingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjQxNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.280836,47.848205,10.280836,47.848205", + "point": "10.280836,47.848205", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Kempten | Rastst\u00e4tte Allg\u00e4uer Tor West", + "coordinate": { + "lat": "47.848205", + "long": "10.280836" + }, + "description": [ + "A7 | Kempten | Rastst\u00e4tte Allg\u00e4uer Tor West", + "87463 Dietmannsried", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAzMzE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.48934,51.035729,9.48934,51.035729", + "point": "9.48934,51.035729", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Kassel | Rastst\u00e4tte Hasselberg Ost", + "coordinate": { + "lat": "51.035729", + "long": "9.48934" + }, + "description": [ + "A7 | Kassel | Rastst\u00e4tte Hasselberg Ost", + "34598 Kn\u00fcllwald", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4MjA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.8769071,51.4948472,9.8769071,51.4948472", + "point": "9.8769071,51.4948472", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Kassel | G\u00f6ttingen West", + "coordinate": { + "lat": "51.4948472", + "long": "9.8769071" + }, + "description": [ + "A7 | Kassel | G\u00f6ttingen West", + "37124 Rosdorf", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4MTk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.876287,51.494879,9.876287,51.494879", + "point": "9.876287,51.494879", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Kassel | Rastst\u00e4tte G\u00f6ttingen West", + "coordinate": { + "lat": "51.494879", + "long": "9.876287" + }, + "description": [ + "A7 | Kassel | Rastst\u00e4tte G\u00f6ttingen West", + "37124 Rosdorf", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4ODY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.042978,53.330732,10.042978,53.330732", + "point": "10.042978,53.330732", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hannover | Rastst\u00e4tte Seevetal West", + "coordinate": { + "lat": "53.330732", + "long": "10.042978" + }, + "description": [ + "A7 | Hannover | Rastst\u00e4tte Seevetal West", + "21220 Seevetal", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4ODU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.042978,53.330732,10.042978,53.330732", + "point": "10.042978,53.330732", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hannover | Rastst\u00e4tte Hasselh\u00f6he West", + "coordinate": { + "lat": "53.330732", + "long": "10.042978" + }, + "description": [ + "A7 | Hannover | Rastst\u00e4tte Hasselh\u00f6he West", + "21220 Seevetal", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE5NDg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.981663,53.109317,9.981663,53.109317", + "point": "9.981663,53.109317", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hannover | L\u00fcneburger Heide West", + "coordinate": { + "lat": "53.109317", + "long": "9.981663" + }, + "description": [ + "A7 | Hannover | L\u00fcneburger Heide West", + "29646 Bispingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE5NDY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.981458644,53.10934148,9.981458644,53.10934148", + "point": "9.981458644,53.10934148", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hannover | Brunautal West", + "coordinate": { + "lat": "53.10934148", + "long": "9.981458644" + }, + "description": [ + "A7 | Hannover | Brunautal West", + "29646 Bispingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4ODg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.039243,53.348271,10.039243,53.348271", + "point": "10.039243,53.348271", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | Rastst\u00e4tte Seevetal Ost", + "coordinate": { + "lat": "53.348271", + "long": "10.039243" + }, + "description": [ + "A7 | Hamburg | Rastst\u00e4tte Seevetal Ost", + "21221 Seevetal", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI1NDk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.865546,52.333124,9.865546,52.333124", + "point": "9.865546,52.333124", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | Rastst\u00e4tte Hannover-W\u00fclferode Ost", + "coordinate": { + "lat": "52.333124", + "long": "9.865546" + }, + "description": [ + "A7 | Hamburg | Rastst\u00e4tte Hannover-W\u00fclferode Ost", + "30539 Hannover", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE5NDQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.983996,53.109298,9.983996,53.109298", + "point": "9.983996,53.109298", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | Rastst\u00e4tte Brunautal Ost", + "coordinate": { + "lat": "53.109298", + "long": "9.983996" + }, + "description": [ + "A7 | Hamburg | Rastst\u00e4tte Brunautal Ost", + "29646 Bispingen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk0NDM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.929655,54.092742,9.929655,54.092742", + "point": "9.929655,54.092742", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | Rastst\u00e4tte Aalbek West", + "coordinate": { + "lat": "54.092742", + "long": "9.929655" + }, + "description": [ + "A7 | Hamburg | Rastst\u00e4tte Aalbek West", + "24537 Neum\u00fcnster", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE5NDc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.984058,53.110044,9.984058,53.110044", + "point": "9.984058,53.110044", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | L\u00fcneburger Heide Ost", + "coordinate": { + "lat": "53.110044", + "long": "9.984058" + }, + "description": [ + "A7 | Hamburg | L\u00fcneburger Heide Ost", + "29646 Bispingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkxMDk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.669951,54.36398,9.669951,54.36398", + "point": "9.669951,54.36398", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | H\u00fcttener Berge West", + "coordinate": { + "lat": "54.36398", + "long": "9.669951" + }, + "description": [ + "A7 | Hamburg | H\u00fcttener Berge West", + "24791 Alt Duvenstedt", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg5ODg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.937914,53.717401,9.937914,53.717401", + "point": "9.937914,53.717401", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | Holmmoor West", + "coordinate": { + "lat": "53.717401", + "long": "9.937914" + }, + "description": [ + "A7 | Hamburg | Holmmoor West", + "25451 Quickborn", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI1NTE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.865709,52.333217,9.865709,52.333217", + "point": "9.865709,52.333217", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | Hannover-W\u00fclferode Ost", + "coordinate": { + "lat": "52.333217", + "long": "9.865709" + }, + "description": [ + "A7 | Hamburg | Hannover-W\u00fclferode Ost", + "30539 Hannover", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE5NDU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.984049486,53.10931994,9.984049486,53.10931994", + "point": "9.984049486,53.10931994", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | Brunautal Ost", + "coordinate": { + "lat": "53.10931994", + "long": "9.984049486" + }, + "description": [ + "A7 | Hamburg | Brunautal Ost", + "29646 Bispingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk0NDc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.93064,54.092897,9.93064,54.092897", + "point": "9.93064,54.092897", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | Aalbek West (2)", + "coordinate": { + "lat": "54.092897", + "long": "9.93064" + }, + "description": [ + "A7 | Hamburg | Aalbek West (2)", + "24537 Neum\u00fcnster", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk0NDI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.93064,54.092897,9.93064,54.092897", + "point": "9.93064,54.092897", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Hamburg | Aalbek West (1)", + "coordinate": { + "lat": "54.092897", + "long": "9.93064" + }, + "description": [ + "A7 | Hamburg | Aalbek West (1)", + "24537 Neum\u00fcnster", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI1NTI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.8655848,52.338367,9.8655848,52.338367", + "point": "9.8655848,52.338367", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | G\u00f6ttingen | Rastst\u00e4tte W\u00fclferode West", + "coordinate": { + "lat": "52.338367", + "long": "9.8655848" + }, + "description": [ + "A7 | G\u00f6ttingen | Rastst\u00e4tte W\u00fclferode West", + "30539 Hannover", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI1NTA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.863824,52.338811,9.863824,52.338811", + "point": "9.863824,52.338811", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | G\u00f6ttingen | Rastst\u00e4tte Hannover-W\u00fclferode West", + "coordinate": { + "lat": "52.338811", + "long": "9.863824" + }, + "description": [ + "A7 | G\u00f6ttingen | Rastst\u00e4tte Hannover-W\u00fclferode West", + "30539 Hannover", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTY1MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.65982,50.71319,9.65982,50.71319", + "point": "9.65982,50.71319", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Fulda | Gro\u00dfenmoor West", + "coordinate": { + "lat": "50.71319", + "long": "9.65982" + }, + "description": [ + "A7 | Fulda | Gro\u00dfenmoor West", + "36151 Burghaun", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkxMDg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.67189,54.364451,9.67189,54.364451", + "point": "9.67189,54.364451", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Flensburg | H\u00fcttener Berge Ost", + "coordinate": { + "lat": "54.364451", + "long": "9.67189" + }, + "description": [ + "A7 | Flensburg | H\u00fcttener Berge Ost", + "24791 Alt Duvenstedt", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkyMzM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.933268,54.014218,9.933268,54.014218", + "point": "9.933268,54.014218", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Flensburg | Brokenlande Ost (2)", + "coordinate": { + "lat": "54.014218", + "long": "9.933268" + }, + "description": [ + "A7 | Flensburg | Brokenlande Ost (2)", + "24623 Gro\u00dfenaspe", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkyMzI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.932732,54.012357,9.932732,54.012357", + "point": "9.932732,54.012357", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Flensburg | Brokenlande Ost (1)", + "coordinate": { + "lat": "54.012357", + "long": "9.932732" + }, + "description": [ + "A7 | Flensburg | Brokenlande Ost (1)", + "24623 Gro\u00dfenaspe", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTY1MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.66262,50.71289,9.66262,50.71289", + "point": "9.66262,50.71289", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Bad Hersfeld | Gro\u00dfenmoor Ost", + "coordinate": { + "lat": "50.71289", + "long": "9.66262" + }, + "description": [ + "A7 | Bad Hersfeld | Gro\u00dfenmoor Ost", + "36151 Burghaun", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTE1", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.17879,48.584106,10.17879,48.584106", + "point": "10.17879,48.584106", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Aalen | Rastst\u00e4tte Lonetal Ost", + "coordinate": { + "lat": "48.584106", + "long": "10.17879" + }, + "description": [ + "A7 | Aalen | Rastst\u00e4tte Lonetal Ost", + "89537 Giengen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTI1", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.179082,48.584359,10.179082,48.584359", + "point": "10.179082,48.584359", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Aalen | Lonetal Ost (2)", + "coordinate": { + "lat": "48.584359", + "long": "10.179082" + }, + "description": [ + "A7 | Aalen | Lonetal Ost (2)", + "89537 Giengen an der Brenz", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTE3", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.178753,48.5840794,10.178753,48.5840794", + "point": "10.178753,48.5840794", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Aalen | Lonetal Ost (1)", + "coordinate": { + "lat": "48.5840794", + "long": "10.178753" + }, + "description": [ + "A7 | Aalen | Lonetal Ost (1)", + "89537 Giengen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc1NQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.193441,48.98317,10.193441,48.98317", + "point": "10.193441,48.98317", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Aalen | Ellwanger Berge West", + "coordinate": { + "lat": "48.98317", + "long": "10.193441" + }, + "description": [ + "A7 | Aalen | Ellwanger Berge West", + "73479 Ellwangen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc3MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.196179,48.984913,10.196179,48.984913", + "point": "10.196179,48.984913", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | Aalen | Rastst\u00e4tte Ellwanger Berge West", + "coordinate": { + "lat": "48.984913", + "long": "10.196179" + }, + "description": [ + "A7 | Aalen | Rastst\u00e4tte Ellwanger Berge West", + "73479 Ellwangen/Jagst Deutschland", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMzU0MA==", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "10.32592,47.762174,10.32592,47.762174", + "point": "10.32592,47.762174", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A7 | AS Kempten-Leubas | Daimlerstra\u00dfe 60", + "coordinate": { + "lat": "47.762174", + "long": "10.32592" + }, + "description": [ + "A7 | AS Kempten-Leubas | Daimlerstra\u00dfe 60", + "87437 Kempten", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2, AC Kupplung Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2, AC Kupplung Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjMzNg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.12637973,48.21939382,10.12637973,48.21939382", + "point": "10.12637973,48.21939382", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | AS Illertissen | Park and Ride Illertissen", + "coordinate": { + "lat": "48.21939382", + "long": "10.12637973" + }, + "description": [ + "A7 | AS Illertissen | Park and Ride Illertissen", + "89257 Illertissen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "75 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW", + "", + "Ladepunkt 3:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE5NDk=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "9.982066154,53.10422809,9.982066154,53.10422809", + "point": "9.982066154,53.10422809", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A7 | AS Bispingen | Horstfeldweg 9", + "coordinate": { + "lat": "53.10422809", + "long": "9.982066154" + }, + "description": [ + "A7 | AS Bispingen | Horstfeldweg 9", + "29646 Bispingen", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 3:", + "AC Steckdose Typ 2", + "11 kW", + "", + "Ladepunkt 4:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTg2NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.527385,51.272142,9.527385,51.272142", + "point": "9.527385,51.272142", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | AK Kassel-Mitte | Autohof Lohfelden (2)", + "coordinate": { + "lat": "51.272142", + "long": "9.527385" + }, + "description": [ + "A7 | AK Kassel-Mitte | Autohof Lohfelden (2)", + "34253 Lohfelden", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTg2Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.527385,51.272142,9.527385,51.272142", + "point": "9.527385,51.272142", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A7 | AK Kassel-Mitte | Autohof Lohfelden (1)", + "coordinate": { + "lat": "51.272142", + "long": "9.527385" + }, + "description": [ + "A7 | AK Kassel-Mitte | Autohof Lohfelden (1)", + "34253 Lohfelden", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "30 kW", + "", + "Ladepunkt 3:", + "DC CHAdeMO", + "30 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A8": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTkxOTk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.03324,48.741558,9.03324,48.741558", + "point": "9.03324,48.741558", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Ulm | Rastst\u00e4tte Sindelfinger Wald S\u00fcd (4)", + "coordinate": { + "lat": "48.741558", + "long": "9.03324" + }, + "description": [ + "A8 | Ulm | Rastst\u00e4tte Sindelfinger Wald S\u00fcd (4)", + "23795 Bad Segeberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc0", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.033108,48.741374,9.033108,48.741374", + "point": "9.033108,48.741374", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Ulm | Rastst\u00e4tte Sindelfinger Wald S\u00fcd (3)", + "coordinate": { + "lat": "48.741374", + "long": "9.033108" + }, + "description": [ + "A8 | Ulm | Rastst\u00e4tte Sindelfinger Wald S\u00fcd (3)", + "71069 Sindelfingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcz", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.033108,48.741374,9.033108,48.741374", + "point": "9.033108,48.741374", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Ulm | Rastst\u00e4tte Sindelfinger Wald S\u00fcd (2)", + "coordinate": { + "lat": "48.741374", + "long": "9.033108" + }, + "description": [ + "A8 | Ulm | Rastst\u00e4tte Sindelfinger Wald S\u00fcd (2)", + "71069 Sindelfingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcy", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.03325,48.741553,9.03325,48.741553", + "point": "9.03325,48.741553", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Ulm | Rastst\u00e4tte Sindelfinger Wald S\u00fcd (1)", + "coordinate": { + "lat": "48.741553", + "long": "9.03325" + }, + "description": [ + "A8 | Ulm | Rastst\u00e4tte Sindelfinger Wald S\u00fcd (1)", + "71069 Sindelfingen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fODk4", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.632882,48.605276,9.632882,48.605276", + "point": "9.632882,48.605276", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Ulm | Rastst\u00e4tte Gruibingen S\u00fcd (2)", + "coordinate": { + "lat": "48.605276", + "long": "9.632882" + }, + "description": [ + "A8 | Ulm | Rastst\u00e4tte Gruibingen S\u00fcd (2)", + "73344 Gruibingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fODk3", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.632882,48.605276,9.632882,48.605276", + "point": "9.632882,48.605276", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Ulm | Rastst\u00e4tte Gruibingen S\u00fcd (1)", + "coordinate": { + "lat": "48.605276", + "long": "9.632882" + }, + "description": [ + "A8 | Ulm | Rastst\u00e4tte Gruibingen S\u00fcd (1)", + "73344 Gruibingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTU3Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.427337,48.413146,10.427337,48.413146", + "point": "10.427337,48.413146", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Ulm | Rastst\u00e4tte Burgauer See Nord", + "coordinate": { + "lat": "48.413146", + "long": "10.427337" + }, + "description": [ + "A8 | Ulm | Rastst\u00e4tte Burgauer See Nord", + "89311 Burgau", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fODk2", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.632872,48.605956,9.632872,48.605956", + "point": "9.632872,48.605956", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Ulm | Grubingen S\u00fcd", + "coordinate": { + "lat": "48.605956", + "long": "9.632872" + }, + "description": [ + "A8 | Ulm | Grubingen S\u00fcd", + "73344 Grubingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "42 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMzMwNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.912778,48.412051,10.912778,48.412051", + "point": "10.912778,48.412051", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Ulm | Augsburg Ost", + "coordinate": { + "lat": "48.412051", + "long": "10.912778" + }, + "description": [ + "A8 | Ulm | Augsburg Ost", + "86169 Augsburg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjc3NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.176123,47.801931,12.176123,47.801931", + "point": "12.176123,47.801931", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Salzburg | Samerberg S\u00fcd (2)", + "coordinate": { + "lat": "47.801931", + "long": "12.176123" + }, + "description": [ + "A8 | Salzburg | Samerberg S\u00fcd (2)", + "83101 Rohrdorf", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjc3Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.176123,47.801931,12.176123,47.801931", + "point": "12.176123,47.801931", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Salzburg | Samerberg S\u00fcd (1)", + "coordinate": { + "lat": "47.801931", + "long": "12.176123" + }, + "description": [ + "A8 | Salzburg | Samerberg S\u00fcd (1)", + "83101 Rohrdorf", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjA1OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.675939,47.997239,11.675939,47.997239", + "point": "11.675939,47.997239", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Salzburg | Rastst\u00e4tte Hofoldinger Forst S\u00fcd", + "coordinate": { + "lat": "47.997239", + "long": "11.675939" + }, + "description": [ + "A8 | Salzburg | Rastst\u00e4tte Hofoldinger Forst S\u00fcd", + "85649 Brunnthal", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDk0Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.902907,47.766446,12.902907,47.766446", + "point": "12.902907,47.766446", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Salzburg | Rastst\u00e4tte Bad Reichenhall S\u00fcd", + "coordinate": { + "lat": "47.766446", + "long": "12.902907" + }, + "description": [ + "A8 | Salzburg | Rastst\u00e4tte Bad Reichenhall S\u00fcd", + "83451 Piding", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTkyNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.717,47.907,11.717,47.907", + "point": "11.717,47.907", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Salzburg | Holzkirchen S\u00fcd", + "coordinate": { + "lat": "47.907", + "long": "11.717" + }, + "description": [ + "A8 | Salzburg | Holzkirchen S\u00fcd", + "83607 Holzkirchen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNzg0", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.303797,48.693875,9.303797,48.693875", + "point": "9.303797,48.693875", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Pforzheim | Rastst\u00e4tte Denkendorf", + "coordinate": { + "lat": "48.693875", + "long": "9.303797" + }, + "description": [ + "A8 | Pforzheim | Rastst\u00e4tte Denkendorf", + "73770 Denkendorf", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTYyOQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.773864,50.406471,11.773864,50.406471", + "point": "11.773864,50.406471", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | N\u00fcrnberg | Frankenwald West", + "coordinate": { + "lat": "50.406471", + "long": "11.773864" + }, + "description": [ + "A8 | N\u00fcrnberg | Frankenwald West", + "95180 Berg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjc3Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.177744,47.80295,12.177744,47.80295", + "point": "12.177744,47.80295", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | M\u00fcnchen | Samerberg Nord", + "coordinate": { + "lat": "47.80295", + "long": "12.177744" + }, + "description": [ + "A8 | M\u00fcnchen | Samerberg Nord", + "83101 Rohrdorf", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTkxNg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.730052,47.892974,11.730052,47.892974", + "point": "11.730052,47.892974", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | M\u00fcnchen | Rastst\u00e4tte Holzkirchen Nord", + "coordinate": { + "lat": "47.892974", + "long": "11.730052" + }, + "description": [ + "A8 | M\u00fcnchen | Rastst\u00e4tte Holzkirchen Nord", + "83607 Holzkirchen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjgwMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.402795,47.834148,12.402795,47.834148", + "point": "12.402795,47.834148", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | M\u00fcnchen | Rastst\u00e4tte Chiemsee Nord", + "coordinate": { + "lat": "47.834148", + "long": "12.402795" + }, + "description": [ + "A8 | M\u00fcnchen | Rastst\u00e4tte Chiemsee Nord", + "83233 Bernau am Chiemsee", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTkyMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.731666,47.891644,11.731666,47.891644", + "point": "11.731666,47.891644", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | M\u00fcnchen | Holzkirchen Nord", + "coordinate": { + "lat": "47.891644", + "long": "11.731666" + }, + "description": [ + "A8 | M\u00fcnchen | Holzkirchen Nord", + "83607 Holzkirchen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjk5OQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.26494,48.10157,11.26494,48.10157", + "point": "11.26494,48.10157", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | M\u00fcchen | Pippinger Flur", + "coordinate": { + "lat": "48.10157", + "long": "11.26494" + }, + "description": [ + "A8 | M\u00fcchen | Pippinger Flur", + "81247 M\u00fcnchen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTYyOA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.773828,50.40409,11.773828,50.40409", + "point": "11.773828,50.40409", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Leipzig | Frankenwald Ost", + "coordinate": { + "lat": "50.40409", + "long": "11.773828" + }, + "description": [ + "A8 | Leipzig | Frankenwald Ost", + "95180 Berg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTcy", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.773745,48.908062,8.773745,48.908062", + "point": "8.773745,48.908062", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Karlsruhe | Rastst\u00e4tte Niefern Ost", + "coordinate": { + "lat": "48.908062", + "long": "8.773745" + }, + "description": [ + "A8 | Karlsruhe | Rastst\u00e4tte Niefern Ost", + "75223 Niefern-\u00d6schelbronn", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTcz", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.77373,48.907993,8.77373,48.907993", + "point": "8.77373,48.907993", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Karlsruhe | Niefern Ost", + "coordinate": { + "lat": "48.907993", + "long": "8.77373" + }, + "description": [ + "A8 | Karlsruhe | Niefern Ost", + "75223 Niefern-\u00d6schelbronn", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTU5MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.213344,48.437548,10.213344,48.437548", + "point": "10.213344,48.437548", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | Augsburg | Rastst\u00e4tte Leipheim S\u00fcd", + "coordinate": { + "lat": "48.437548", + "long": "10.213344" + }, + "description": [ + "A8 | Augsburg | Rastst\u00e4tte Leipheim S\u00fcd", + "89340 Leipheim", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDk0NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.904307,47.764203,12.904307,47.764203", + "point": "12.904307,47.764203", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A8 | AS Bad Reichenhall | Gemeinde Piding", + "coordinate": { + "lat": "47.764203", + "long": "12.904307" + }, + "description": [ + "A8 | AS Bad Reichenhall | Gemeinde Piding", + "83451 Piding", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A9": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDkwNQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.509981,49.748459,11.509981,49.748459", + "point": "11.509981,49.748459", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | N\u00fcrnberg | Rastst\u00e4tte Fr\u00e4nkische Schweiz-Pegnitz West", + "coordinate": { + "lat": "49.748459", + "long": "11.509981" + }, + "description": [ + "A9 | N\u00fcrnberg | Rastst\u00e4tte Fr\u00e4nkische Schweiz-Pegnitz West", + "91257 Pegnitz", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTIwNQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.472234,48.836599,11.472234,48.836599", + "point": "11.472234,48.836599", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | N\u00fcrnberg | K\u00f6schinger Forst Ost [3)", + "coordinate": { + "lat": "48.836599", + "long": "11.472234" + }, + "description": [ + "A9 | N\u00fcrnberg | K\u00f6schinger Forst Ost [3)", + "85120 Hepberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTIwMg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.472141,48.836329,11.472141,48.836329", + "point": "11.472141,48.836329", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | N\u00fcrnberg | K\u00f6schinger Forst Ost (2)", + "coordinate": { + "lat": "48.836329", + "long": "11.472141" + }, + "description": [ + "A9 | N\u00fcrnberg | K\u00f6schinger Forst Ost (2)", + "85120 Hepberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTIwMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.47115,48.837281,11.47115,48.837281", + "point": "11.47115,48.837281", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | N\u00fcrnberg | K\u00f6schinger Forst Ost (1)", + "coordinate": { + "lat": "48.837281", + "long": "11.47115" + }, + "description": [ + "A9 | N\u00fcrnberg | K\u00f6schinger Forst Ost (1)", + "85120 Hepberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "42 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjYwNw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.588237,48.555711,11.588237,48.555711", + "point": "11.588237,48.555711", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | M\u00fcnchen | Rastst\u00e4tte In der Holledau West", + "coordinate": { + "lat": "48.555711", + "long": "11.588237" + }, + "description": [ + "A9 | M\u00fcnchen | Rastst\u00e4tte In der Holledau West", + "85301 Schweitenkirchen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTM4NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.608006,48.337886,11.608006,48.337886", + "point": "11.608006,48.337886", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | M\u00fcnchen | Rastst\u00e4tte F\u00fcrholzen West (2)", + "coordinate": { + "lat": "48.337886", + "long": "11.608006" + }, + "description": [ + "A9 | M\u00fcnchen | Rastst\u00e4tte F\u00fcrholzen West (2)", + "85376 Neufahrn bei Freising", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "163 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTM4Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.608006,48.337786,11.608006,48.337786", + "point": "11.608006,48.337786", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | M\u00fcnchen | Rastst\u00e4tte F\u00fcrholzen West (1)", + "coordinate": { + "lat": "48.337786", + "long": "11.608006" + }, + "description": [ + "A9 | M\u00fcnchen | Rastst\u00e4tte F\u00fcrholzen West (1)", + "85376 Neufahrn bei Freising", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTIwMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.46881,48.838129,11.46881,48.838129", + "point": "11.46881,48.838129", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | M\u00fcnchen | K\u00f6schinger Forst West", + "coordinate": { + "lat": "48.838129", + "long": "11.46881" + }, + "description": [ + "A9 | M\u00fcnchen | K\u00f6schinger Forst West", + "85120 Hepberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg0Nzc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.957702,51.105401,11.957702,51.105401", + "point": "11.957702,51.105401", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Leipzig | Osterfeld Ost", + "coordinate": { + "lat": "51.105401", + "long": "11.957702" + }, + "description": [ + "A9 | Leipzig | Osterfeld Ost", + "06667 Wei\u00dfenfels", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg0MjI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.183984,51.605481,12.183984,51.605481", + "point": "12.183984,51.605481", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Leipzig | K\u00f6ckern West", + "coordinate": { + "lat": "51.605481", + "long": "12.183984" + }, + "description": [ + "A9 | Leipzig | K\u00f6ckern West", + "06794 K\u00f6ckern", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk3Nzk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.79556,50.4278,11.79556,50.4278", + "point": "11.79556,50.4278", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Leipzig | Hirschberg", + "coordinate": { + "lat": "50.4278", + "long": "11.79556" + }, + "description": [ + "A9 | Leipzig | Hirschberg", + "07927 Hirschberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fODI5OQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.751164,52.132549,12.751164,52.132549", + "point": "12.751164,52.132549", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Leipzig | Fl\u00e4ming West", + "coordinate": { + "lat": "52.132549", + "long": "12.751164" + }, + "description": [ + "A9 | Leipzig | Fl\u00e4ming West", + "14823 M\u00fchlenflie\u00df", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjg1MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.337409,49.045639,11.337409,49.045639", + "point": "11.337409,49.045639", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Ingolstadt | Rastst\u00e4tte Greding West (2)", + "coordinate": { + "lat": "49.045639", + "long": "11.337409" + }, + "description": [ + "A9 | Ingolstadt | Rastst\u00e4tte Greding West (2)", + "91171 Greding", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjg1Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.337633,49.045591,11.337633,49.045591", + "point": "11.337633,49.045591", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Ingolstadt | Rastst\u00e4tte Greding West (1)", + "coordinate": { + "lat": "49.045591", + "long": "11.337633" + }, + "description": [ + "A9 | Ingolstadt | Rastst\u00e4tte Greding West (1)", + "91171 Greding", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjM2MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.2021,49.35572,11.2021,49.35572", + "point": "11.2021,49.35572", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Ingolstadt | N\u00fcrnberg-Feucht West", + "coordinate": { + "lat": "49.35572", + "long": "11.2021" + }, + "description": [ + "A9 | Ingolstadt | N\u00fcrnberg-Feucht West", + "90537 Feucht", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg0MjE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.185403,51.606076,12.185403,51.606076", + "point": "12.185403,51.606076", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Berlin | K\u00f6ckern Ost", + "coordinate": { + "lat": "51.606076", + "long": "12.185403" + }, + "description": [ + "A9 | Berlin | K\u00f6ckern Ost", + "06794 K\u00f6ckern", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fODMwMA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.753397,52.132662,12.753397,52.132662", + "point": "12.753397,52.132662", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Berlin | Fl\u00e4ming Ost", + "coordinate": { + "lat": "52.132662", + "long": "12.753397" + }, + "description": [ + "A9 | Berlin | Fl\u00e4ming Ost", + "14823 M\u00fchlenflie\u00df", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk3NDE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.846659,50.874927,11.846659,50.874927", + "point": "11.846659,50.874927", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Bayreuth | Rastst\u00e4tte Hermsdorfer Kreuz West", + "coordinate": { + "lat": "50.874927", + "long": "11.846659" + }, + "description": [ + "A9 | Bayreuth | Rastst\u00e4tte Hermsdorfer Kreuz West", + "07629 Schleifreisen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg0NzY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.954837,51.105341,11.954837,51.105341", + "point": "11.954837,51.105341", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Bayreuth | Osterfeld West", + "coordinate": { + "lat": "51.105341", + "long": "11.954837" + }, + "description": [ + "A9 | Bayreuth | Osterfeld West", + "06667 Wei\u00dfenfels", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjM1OQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.2044,49.35691,11.2044,49.35691", + "point": "11.2044,49.35691", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A9 | Bayreuth | N\u00fcrnberg-Feucht Ost", + "coordinate": { + "lat": "49.35691", + "long": "11.2044" + }, + "description": [ + "A9 | Bayreuth | N\u00fcrnberg-Feucht Ost", + "90537 Feucht", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A10": { + "electric_charging_station": [] + }, + "A11": { + "electric_charging_station": [] + }, + "A12": { + "electric_charging_station": [] + }, + "A13": { + "electric_charging_station": [] + }, + "A14": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg2MzE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.822067,51.655803,11.822067,51.655803", + "point": "11.822067,51.655803", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A14 | Magdeburg | Pl\u00f6tzetal Ost", + "coordinate": { + "lat": "51.655803", + "long": "11.822067" + }, + "description": [ + "A14 | Magdeburg | Pl\u00f6tzetal Ost", + "06420 K\u00f6nnern", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg2MzI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.818083,51.656181,11.818083,51.656181", + "point": "11.818083,51.656181", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A14 | Leipzig | Pl\u00f6tzetal West", + "coordinate": { + "lat": "51.656181", + "long": "11.818083" + }, + "description": [ + "A14 | Leipzig | Pl\u00f6tzetal West", + "06420 K\u00f6nnern", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTgwMjk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.707893,51.261952,12.707893,51.261952", + "point": "12.707893,51.261952", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A14 | Leipzig | Muldental Nord", + "coordinate": { + "lat": "51.261952", + "long": "12.707893" + }, + "description": [ + "A14 | Leipzig | Muldental Nord", + "04668 Grimma", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTgwODc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.23736,51.09103,13.23736,51.09103", + "point": "13.23736,51.09103", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A14 | Leipzig | Hansens Holz", + "coordinate": { + "lat": "51.09103", + "long": "13.23736" + }, + "description": [ + "A14 | Leipzig | Hansens Holz", + "04720 D\u00f6beln", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTgwMzA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.7058,51.260674,12.7058,51.260674", + "point": "12.7058,51.260674", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A14 | Dresden | Muldental S\u00fcd", + "coordinate": { + "lat": "51.260674", + "long": "12.7058" + }, + "description": [ + "A14 | Dresden | Muldental S\u00fcd", + "04668 Grimma", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A15": { + "electric_charging_station": [] + }, + "A17": { + "electric_charging_station": [] + }, + "A19": { + "electric_charging_station": [] + }, + "A20": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA2Mjc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.333611,53.855833,13.333611,53.855833", + "point": "13.333611,53.855833", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A20 | Neubrandenburg | Rastst\u00e4tte Demminer Land", + "coordinate": { + "lat": "53.855833", + "long": "13.333611" + }, + "description": [ + "A20 | Neubrandenburg | Rastst\u00e4tte Demminer Land", + "17129 Daberkow", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA2Mjg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.333344,53.855673,13.333344,53.855673", + "point": "13.333344,53.855673", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A20 | Neubrandenburg | Demminer Land", + "coordinate": { + "lat": "53.855673", + "long": "13.333344" + }, + "description": [ + "A20 | Neubrandenburg | Demminer Land", + "17129 V\u00f6lschow", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A21": { + "electric_charging_station": [] + }, + "A23": { + "electric_charging_station": [] + }, + "A24": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fODI0Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.468818,53.115306,12.468818,53.115306", + "point": "12.468818,53.115306", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A24 | Hamburg | Prignitz Ost", + "coordinate": { + "lat": "53.115306", + "long": "12.468818" + }, + "description": [ + "A24 | Hamburg | Prignitz Ost", + "16909 Wittstock/Dosse", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg3ODU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.806497,53.520922,10.806497,53.520922", + "point": "10.806497,53.520922", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A24 | Hamburg | Gudow Nord", + "coordinate": { + "lat": "53.520922", + "long": "10.806497" + }, + "description": [ + "A24 | Hamburg | Gudow Nord", + "23899 Gudow", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fODI0OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.466601,53.115138,12.466601,53.115138", + "point": "12.466601,53.115138", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A24 | Berlin | Prignitz West", + "coordinate": { + "lat": "53.115138", + "long": "12.466601" + }, + "description": [ + "A24 | Berlin | Prignitz West", + "16909 Wittstock/Dosse", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA1Mzg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.845572,53.508901,10.845572,53.508901", + "point": "10.845572,53.508901", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A24 | AS 9a Gallin | Am Heisterbusch 12", + "coordinate": { + "lat": "53.508901", + "long": "10.845572" + }, + "description": [ + "A24 | AS 9a Gallin | Am Heisterbusch 12", + "19246 Valluhn", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, AC CEE 3 polig", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTA1Mzk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.851724,53.51115,10.851724,53.51115", + "point": "10.851724,53.51115", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A24 | AD Wittstock/Dosse | Schaalsee S\u00fcd", + "coordinate": { + "lat": "53.51115", + "long": "10.851724" + }, + "description": [ + "A24 | AD Wittstock/Dosse | Schaalsee S\u00fcd", + "19246 Zarrentin", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg3ODY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.804038,53.520471,10.804038,53.520471", + "point": "10.804038,53.520471", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A24 | AD Wittstock/Dosse | Gudow S\u00fcd", + "coordinate": { + "lat": "53.520471", + "long": "10.804038" + }, + "description": [ + "A24 | AD Wittstock/Dosse | Gudow S\u00fcd", + "23899 Gudow", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A25": { + "electric_charging_station": [] + }, + "A26": { + "electric_charging_station": [] + }, + "A27": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI4OTc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.18083012,52.99870602,9.18083012,52.99870602", + "point": "9.18083012,52.99870602", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A27 | Walsrode | Rastst\u00e4tte Goldbach S\u00fcd", + "coordinate": { + "lat": "52.99870602", + "long": "9.18083012" + }, + "description": [ + "A27 | Walsrode | Rastst\u00e4tte Goldbach S\u00fcd", + "27299 Langenwedel", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI5MDA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.181213,52.998531,9.181213,52.998531", + "point": "9.181213,52.998531", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A27 | Walsrode | Goldbach S\u00fcd", + "coordinate": { + "lat": "52.998531", + "long": "9.181213" + }, + "description": [ + "A27 | Walsrode | Goldbach S\u00fcd", + "27299 Langwedel", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI4OTg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.179497,53.000779,9.179497,53.000779", + "point": "9.179497,53.000779", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A27 | Bremen | Rastst\u00e4tte Goldbach Nord", + "coordinate": { + "lat": "53.000779", + "long": "9.179497" + }, + "description": [ + "A27 | Bremen | Rastst\u00e4tte Goldbach Nord", + "27299 Langwedel", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI4OTk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.179514,53.000606,9.179514,53.000606", + "point": "9.179514,53.000606", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A27 | Bremen | Goldbach Nord", + "coordinate": { + "lat": "53.000606", + "long": "9.179514" + }, + "description": [ + "A27 | Bremen | Goldbach Nord", + "27299 Langwedel", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A28": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIyNDg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.500203,53.055839,8.500203,53.055839", + "point": "8.500203,53.055839", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A28 | Oldenburg | Rast\u00e4tte Hasbruch Nord (1)", + "coordinate": { + "lat": "53.055839", + "long": "8.500203" + }, + "description": [ + "A28 | Oldenburg | Rast\u00e4tte Hasbruch Nord (1)", + "27777 Ganderkesee", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIyNTM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.5012833,53.0557945,8.5012833,53.0557945", + "point": "8.5012833,53.0557945", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A28 | Oldenburg | Rastst\u00e4tte Hasbruch Nord (2)", + "coordinate": { + "lat": "53.0557945", + "long": "8.5012833" + }, + "description": [ + "A28 | Oldenburg | Rastst\u00e4tte Hasbruch Nord (2)", + "27777 Ganderkesee", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIyNDk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.502735,53.054472,8.502735,53.054472", + "point": "8.502735,53.054472", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A28 | Bremen | Rast\u00e4tte Hasbruch S\u00fcd (1)", + "coordinate": { + "lat": "53.054472", + "long": "8.502735" + }, + "description": [ + "A28 | Bremen | Rast\u00e4tte Hasbruch S\u00fcd (1)", + "27777 Ganderkesee", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIyNTQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.5015597,53.0543856,8.5015597,53.0543856", + "point": "8.5015597,53.0543856", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A28 | Bremen | Rastst\u00e4tte Hasbruch S\u00fcd (2)", + "coordinate": { + "lat": "53.0543856", + "long": "8.5015597" + }, + "description": [ + "A28 | Bremen | Rastst\u00e4tte Hasbruch S\u00fcd (2)", + "27778 Ganderkesee", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A29": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIyNDE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.220073,53.044883,8.220073,53.044883", + "point": "8.220073,53.044883", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A29 | Wilhelmshaven | Rastst\u00e4tte Huntetal Ost (2)", + "coordinate": { + "lat": "53.044883", + "long": "8.220073" + }, + "description": [ + "A29 | Wilhelmshaven | Rastst\u00e4tte Huntetal Ost (2)", + "26204 Wardenburg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIyMzU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.22121,53.041741,8.22121,53.041741", + "point": "8.22121,53.041741", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A29 | Wilhelmshaven | Rastst\u00e4tte Huntetal Ost (1)", + "coordinate": { + "lat": "53.041741", + "long": "8.22121" + }, + "description": [ + "A29 | Wilhelmshaven | Rastst\u00e4tte Huntetal Ost (1)", + "26203 Wardenburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIyNDA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.22121386,53.041733,8.22121386,53.041733", + "point": "8.22121386,53.041733", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A29 | Cloppenburg | Rastst\u00e4tte Huntetal West (2)", + "coordinate": { + "lat": "53.041733", + "long": "8.22121386" + }, + "description": [ + "A29 | Cloppenburg | Rastst\u00e4tte Huntetal West (2)", + "26203 Wardenburg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIyMzY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.220136,53.044915,8.220136,53.044915", + "point": "8.220136,53.044915", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A29 | Cloppenburg | Rastst\u00e4tte Huntetal West (1)", + "coordinate": { + "lat": "53.044915", + "long": "8.220136" + }, + "description": [ + "A29 | Cloppenburg | Rastst\u00e4tte Huntetal West (1)", + "26203 Wardenburg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A30": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIzMTY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.3854,52.197118,8.3854,52.197118", + "point": "8.3854,52.197118", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A30 | Osnabr\u00fcck | Rastst\u00e4tte Gr\u00f6negau Nord", + "coordinate": { + "lat": "52.197118", + "long": "8.3854" + }, + "description": [ + "A30 | Osnabr\u00fcck | Rastst\u00e4tte Gr\u00f6negau Nord", + "49328 Melle", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIzMTc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.386625903,52.19724327,8.386625903,52.19724327", + "point": "8.386625903,52.19724327", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A30 | Osnabr\u00fcck | Gr\u00f6negau Nord", + "coordinate": { + "lat": "52.19724327", + "long": "8.386625903" + }, + "description": [ + "A30 | Osnabr\u00fcck | Gr\u00f6negau Nord", + "49328 Melle", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ5MTg=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "7.84863,52.26178,7.84863,52.26178", + "point": "7.84863,52.26178", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A30 | Niederlande | Brockbachtal Nord", + "coordinate": { + "lat": "52.26178", + "long": "7.84863" + }, + "description": [ + "A30 | Niederlande | Brockbachtal Nord", + "49492 Westerkappeln", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "20 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTIzMTU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.386,52.196168,8.386,52.196168", + "point": "8.386,52.196168", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A30 | Bad Oeynhausen | Rastst\u00e4tte Gr\u00f6negau S\u00fcd", + "coordinate": { + "lat": "52.196168", + "long": "8.386" + }, + "description": [ + "A30 | Bad Oeynhausen | Rastst\u00e4tte Gr\u00f6negau S\u00fcd", + "49328 Melle", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ5MTk=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "7.849282,52.260647,7.849282,52.260647", + "point": "7.849282,52.260647", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A30 | Bad Oeynhausen | Brockbachtal S\u00fcd", + "coordinate": { + "lat": "52.260647", + "long": "7.849282" + }, + "description": [ + "A30 | Bad Oeynhausen | Brockbachtal S\u00fcd", + "49492 Westerkappeln", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "20 kW", + "", + "Ladepunkt 3:", + "DC CHAdeMO", + "20 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A31": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4NjY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.1965148,52.5278763,7.1965148,52.5278763", + "point": "7.1965148,52.5278763", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A31 | Essen | Rastst\u00e4tte Ems-Vechte-West (2)", + "coordinate": { + "lat": "52.5278763", + "long": "7.1965148" + }, + "description": [ + "A31 | Essen | Rastst\u00e4tte Ems-Vechte-West (2)", + "49836 Wietmarschen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4NjI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.196484,52.527993,7.196484,52.527993", + "point": "7.196484,52.527993", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A31 | Essen | Rastst\u00e4tte Ems-Vechte-West (1)", + "coordinate": { + "lat": "52.527993", + "long": "7.196484" + }, + "description": [ + "A31 | Essen | Rastst\u00e4tte Ems-Vechte-West (1)", + "49835 Wietmarschen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4NjU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.199853,52.52832,7.199853,52.52832", + "point": "7.199853,52.52832", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A31 | Emden | Rastst\u00e4tte Ems-Vechte-Ost (2)", + "coordinate": { + "lat": "52.52832", + "long": "7.199853" + }, + "description": [ + "A31 | Emden | Rastst\u00e4tte Ems-Vechte-Ost (2)", + "49835 Wietmarschen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTE4NjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.199853,52.52832,7.199853,52.52832", + "point": "7.199853,52.52832", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A31 | Emden | Rastst\u00e4tte Ems-Vechte-Ost (1)", + "coordinate": { + "lat": "52.52832", + "long": "7.199853" + }, + "description": [ + "A31 | Emden | Rastst\u00e4tte Ems-Vechte-Ost (1)", + "49835 Wietmarschen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A33": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQxMDA=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "8.691001,51.762147,8.691001,51.762147", + "point": "8.691001,51.762147", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A33 | AS Paderborn-Schlo\u00df Neuhaus | Hermann-L\u00f6ns-Stra\u00dfe 165", + "coordinate": { + "lat": "51.762147", + "long": "8.691001" + }, + "description": [ + "A33 | AS Paderborn-Schlo\u00df Neuhaus | Hermann-L\u00f6ns-Stra\u00dfe 165", + "33104 Paderborn", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A36": { + "electric_charging_station": [] + }, + "A37": { + "electric_charging_station": [] + }, + "A38": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg1NzY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.423635,51.432761,11.423635,51.432761", + "point": "11.423635,51.432761", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A38 | Leipzig | Rohnetal S\u00fcd", + "coordinate": { + "lat": "51.432761", + "long": "11.423635" + }, + "description": [ + "A38 | Leipzig | Rohnetal S\u00fcd", + "06542 Sangershausen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTg1NzU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.424959,51.43497,11.424959,51.43497", + "point": "11.424959,51.43497", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A38 | G\u00f6ttingen | Rohnetal Nord", + "coordinate": { + "lat": "51.43497", + "long": "11.424959" + }, + "description": [ + "A38 | G\u00f6ttingen | Rohnetal Nord", + "06542 Sangershausen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk2MTc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.416988,51.403997,10.416988,51.403997", + "point": "10.416988,51.403997", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A38 | G\u00f6ttingen | Rastst\u00e4tte Eichsfeld Nord", + "coordinate": { + "lat": "51.403997", + "long": "10.416988" + }, + "description": [ + "A38 | G\u00f6ttingen | Rastst\u00e4tte Eichsfeld Nord", + "37339 Kirchworbis", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A39": { + "electric_charging_station": [] + }, + "A40": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTUzNjY=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "7.337912,51.494884,7.337912,51.494884", + "point": "7.337912,51.494884", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A40 | Dortmund | Rastst\u00e4tte Beverbach", + "coordinate": { + "lat": "51.494884", + "long": "7.337912" + }, + "description": [ + "A40 | Dortmund | Rastst\u00e4tte Beverbach", + "44892 Bochum", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU1Mjc=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "7.333333,51.499444,7.333333,51.499444", + "point": "7.333333,51.499444", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A40 | AS Dortmund-L\u00fctgendortmund | Werner Stra\u00dfe 10", + "coordinate": { + "lat": "51.499444", + "long": "7.333333" + }, + "description": [ + "A40 | AS Dortmund-L\u00fctgendortmund | Werner Stra\u00dfe 10", + "44388 Dortmund", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A42": { + "electric_charging_station": [] + }, + "A43": { + "electric_charging_station": [] + }, + "A44": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ2NDE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.485109,51.595156,8.485109,51.595156", + "point": "8.485109,51.595156", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | Kassel | Rastst\u00e4tte Hellweg S\u00fcd", + "coordinate": { + "lat": "51.595156", + "long": "8.485109" + }, + "description": [ + "Kassel | Rastst\u00e4tte Hellweg S\u00fcd", + "59590 Geseke", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTMxOTg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.3385009,50.9291834,6.3385009,50.9291834", + "point": "6.3385009,50.9291834", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | M\u00f6nchengladbach | Rastst\u00e4tte Ruraue Ost (2)", + "coordinate": { + "lat": "50.9291834", + "long": "6.3385009" + }, + "description": [ + "A44 | M\u00f6nchengladbach | Rastst\u00e4tte Ruraue Ost (2)", + "52428 J\u00fclich", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTMxOTc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.340237,50.931384,6.340237,50.931384", + "point": "6.340237,50.931384", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | M\u00f6nchengladbach | Rastst\u00e4tte Ruraue Ost (1)", + "coordinate": { + "lat": "50.931384", + "long": "6.340237" + }, + "description": [ + "A44 | M\u00f6nchengladbach | Rastst\u00e4tte Ruraue Ost (1)", + "52428 J\u00fclich", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ1OTc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.133465,51.547166,8.133465,51.547166", + "point": "8.133465,51.547166", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | Kassel | Rastst\u00e4tte Soester B\u00f6rde S\u00fcd (2)", + "coordinate": { + "lat": "51.547166", + "long": "8.133465" + }, + "description": [ + "A44 | Kassel | Rastst\u00e4tte Soester B\u00f6rde S\u00fcd (2)", + "59494 Soest", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ1OTU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.133495,51.547181,8.133495,51.547181", + "point": "8.133495,51.547181", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | Kassel | Rastst\u00e4tte Soester B\u00f6rde S\u00fcd (1)", + "coordinate": { + "lat": "51.547181", + "long": "8.133495" + }, + "description": [ + "A44 | Kassel | Rastst\u00e4tte Soester B\u00f6rde S\u00fcd (1)", + "59494 Soest", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTg3NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.23633,51.38168,9.23633,51.38168", + "point": "9.23633,51.38168", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | Kassel | B\u00fchleck S\u00fcd", + "coordinate": { + "lat": "51.38168", + "long": "9.23633" + }, + "description": [ + "A44 | Kassel | B\u00fchleck S\u00fcd", + "34289 Zierenberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "50 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ1OTg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.132187,51.548307,8.132187,51.548307", + "point": "8.132187,51.548307", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | Dortmund | Rastst\u00e4tte Soester B\u00f6rde Nord (2)", + "coordinate": { + "lat": "51.548307", + "long": "8.132187" + }, + "description": [ + "A44 | Dortmund | Rastst\u00e4tte Soester B\u00f6rde Nord (2)", + "59494 Soest", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ1OTY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.132224,51.548396,8.132224,51.548396", + "point": "8.132224,51.548396", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | Dortmund | Rastst\u00e4tte Soester B\u00f6rde Nord (1)", + "coordinate": { + "lat": "51.548396", + "long": "8.132224" + }, + "description": [ + "A44 | Dortmund | Rastst\u00e4tte Soester B\u00f6rde Nord (1)", + "59494 Soest", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTg3NQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.24886,51.38209,9.24886,51.38209", + "point": "9.24886,51.38209", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | Dortmund | B\u00fchleck Nord", + "coordinate": { + "lat": "51.38209", + "long": "9.24886" + }, + "description": [ + "A44 | Dortmund | B\u00fchleck Nord", + "34289 Zierenberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "50 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAzNzY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.987148,51.498695,8.987148,51.498695", + "point": "8.987148,51.498695", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A44 | Dortmund | Am Biggenkopf Nord", + "coordinate": { + "lat": "51.498695", + "long": "8.987148" + }, + "description": [ + "A44 | Dortmund | Am Biggenkopf Nord", + "34474 Diemelstadt", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "50 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A45": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTM4MzE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.569145,51.2881034,7.569145,51.2881034", + "point": "7.569145,51.2881034", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Siegen | R\u00f6lvederm\u00fchle West", + "coordinate": { + "lat": "51.2881034", + "long": "7.569145" + }, + "description": [ + "Siegen | R\u00f6lvederm\u00fchle West", + "58579 Schalksm\u00fchle", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ1NjU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.9354274,50.8798318,7.9354274,50.8798318", + "point": "7.9354274,50.8798318", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Wetzlar | Rastst\u00e4tte Siegerland West (2)", + "coordinate": { + "lat": "50.8798318", + "long": "7.9354274" + }, + "description": [ + "A45 | Wetzlar | Rastst\u00e4tte Siegerland West (2)", + "57258 Freudenberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ1NjI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.935568,50.879829,7.935568,50.879829", + "point": "7.935568,50.879829", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Wetzlar | Rastst\u00e4tte Siegerland West (1)", + "coordinate": { + "lat": "50.879829", + "long": "7.935568" + }, + "description": [ + "A45 | Wetzlar | Rastst\u00e4tte Siegerland West (1)", + "57258 Freudenberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAwNTE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.994441,50.250586,8.994441,50.250586", + "point": "8.994441,50.250586", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Siegen | Rastst\u00e4tte Langen-Bergheim Ost (2)", + "coordinate": { + "lat": "50.250586", + "long": "8.994441" + }, + "description": [ + "A45 | Siegen | Rastst\u00e4tte Langen-Bergheim Ost (2)", + "63546 Hammersbach", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAwNTA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.994512,50.250654,8.994512,50.250654", + "point": "8.994512,50.250654", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Siegen | Rastst\u00e4tte Langen-Bergheim Ost (1)", + "coordinate": { + "lat": "50.250654", + "long": "8.994512" + }, + "description": [ + "A45 | Siegen | Rastst\u00e4tte Langen-Bergheim Ost (1)", + "63546 Hammersbach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTkxMg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.363304,50.620259,8.363304,50.620259", + "point": "8.363304,50.620259", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Hanau | Rastst\u00e4tte Katzenfurt S\u00fcd", + "coordinate": { + "lat": "50.620259", + "long": "8.363304" + }, + "description": [ + "A45 | Hanau | Rastst\u00e4tte Katzenfurt S\u00fcd", + "35630 Ehringshausen-Katzenfurt", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTkxMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.3624,50.620866,8.3624,50.620866", + "point": "8.3624,50.620866", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Hanau | Katzenfurt S\u00fcd", + "coordinate": { + "lat": "50.620866", + "long": "8.3624" + }, + "description": [ + "A45 | Hanau | Katzenfurt S\u00fcd", + "35630 Ehringshausen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTM4MjA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.670398,51.222877,7.670398,51.222877", + "point": "7.670398,51.222877", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Hagen | Rastst\u00e4tte Sauerland Ost", + "coordinate": { + "lat": "51.222877", + "long": "7.670398" + }, + "description": [ + "A45 | Hagen | Rastst\u00e4tte Sauerland Ost", + "58513 L\u00fcdenscheid", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ1NjQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.945751,50.877603,7.945751,50.877603", + "point": "7.945751,50.877603", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Dortmund | Rastst\u00e4tte Siegerland Ost (2)", + "coordinate": { + "lat": "50.877603", + "long": "7.945751" + }, + "description": [ + "A45 | Dortmund | Rastst\u00e4tte Siegerland Ost (2)", + "57258 Freudenberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQ1NjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.945521,50.877611,7.945521,50.877611", + "point": "7.945521,50.877611", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Dortmund | Rastst\u00e4tte Siegerland Ost (1)", + "coordinate": { + "lat": "50.877611", + "long": "7.945521" + }, + "description": [ + "A45 | Dortmund | Rastst\u00e4tte Siegerland Ost (1)", + "57258 Freudenberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTM4MzA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.5718,51.288867,7.5718,51.288867", + "point": "7.5718,51.288867", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Dortmund | Rastst\u00e4tte Kaltenborn", + "coordinate": { + "lat": "51.288867", + "long": "7.5718" + }, + "description": [ + "A45 | Dortmund | Rastst\u00e4tte Kaltenborn", + "58579 Schalksm\u00fchle", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTkyMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.2957774,50.68846,8.2957774,50.68846", + "point": "8.2957774,50.68846", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Dortmund | Rastst\u00e4tte Dollenberg Ost (2)", + "coordinate": { + "lat": "50.68846", + "long": "8.2957774" + }, + "description": [ + "A45 | Dortmund | Rastst\u00e4tte Dollenberg Ost (2)", + "35745 Herborn", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTkyMA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.2958,50.688404,8.2958,50.688404", + "point": "8.2958,50.688404", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Dortmund | Rastst\u00e4tte Dollenberg Ost (1)", + "coordinate": { + "lat": "50.688404", + "long": "8.2958" + }, + "description": [ + "A45 | Dortmund | Rastst\u00e4tte Dollenberg Ost (1)", + "35745 Herborn", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTkyMg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.295883,50.688908,8.295883,50.688908", + "point": "8.295883,50.688908", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Dortmund | Dollenberg Ost", + "coordinate": { + "lat": "50.688908", + "long": "8.295883" + }, + "description": [ + "A45 | Dortmund | Dollenberg Ost", + "35745 Herborn", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAwNDk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.993647,50.248719,8.993647,50.248719", + "point": "8.993647,50.248719", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Aschaffenburg | Rastst\u00e4tte Langen-Bergheim West (2)", + "coordinate": { + "lat": "50.248719", + "long": "8.993647" + }, + "description": [ + "A45 | Aschaffenburg | Rastst\u00e4tte Langen-Bergheim West (2)", + "63546 Hammersbach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAwNDc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.9939698,50.2484048,8.9939698,50.2484048", + "point": "8.9939698,50.2484048", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | Aschaffenburg | Rastst\u00e4tte Langen-Bergheim West (1)", + "coordinate": { + "lat": "50.2484048", + "long": "8.9939698" + }, + "description": [ + "A45 | Aschaffenburg | Rastst\u00e4tte Langen-Bergheim West (1)", + "63546 Hammerbach", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTQwNzE=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "7.837923,51.003138,7.837923,51.003138", + "point": "7.837923,51.003138", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A45 | AS Kreuz Olpe-S\u00fcd | Im Langen Feld 8", + "coordinate": { + "lat": "51.003138", + "long": "7.837923" + }, + "description": [ + "A45 | AS Kreuz Olpe-S\u00fcd | Im Langen Feld 8", + "57462 Olpe", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDc2Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.047158,50.04758,9.047158,50.04758", + "point": "9.047158,50.04758", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A45 | AS Karlstein | Industriegebiet S\u00fcd A45", + "coordinate": { + "lat": "50.04758", + "long": "9.047158" + }, + "description": [ + "A45 | AS Karlstein | Industriegebiet S\u00fcd A45", + "63755 Alzenau-H\u00f6rstein", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A46": { + "electric_charging_station": [] + }, + "A48": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxNTM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.227234,50.26562,7.227234,50.26562", + "point": "7.227234,50.26562", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A48 | Koblenz | Rastst\u00e4tte Elztal S\u00fcd", + "coordinate": { + "lat": "50.26562", + "long": "7.227234" + }, + "description": [ + "A48 | Koblenz | Rastst\u00e4tte Elztal S\u00fcd", + "56729 Kehrig", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxNTQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.227277,50.265723,7.227277,50.265723", + "point": "7.227277,50.265723", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A48 | Koblenz | Elztal S\u00fcd", + "coordinate": { + "lat": "50.265723", + "long": "7.227277" + }, + "description": [ + "A48 | Koblenz | Elztal S\u00fcd", + "56729 Kehrig", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxNTI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.22483,50.266989,7.22483,50.266989", + "point": "7.22483,50.266989", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A48 | Dreieck Vulkaneifel | Rastst\u00e4tte Elztal Nord", + "coordinate": { + "lat": "50.266989", + "long": "7.22483" + }, + "description": [ + "A48 | Dreieck Vulkaneifel | Rastst\u00e4tte Elztal Nord", + "56729 Kehrig", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxNTU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.224541,50.266921,7.224541,50.266921", + "point": "7.224541,50.266921", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A48 | Dreieck Vulkaneifel | Elztal Nord", + "coordinate": { + "lat": "50.266921", + "long": "7.224541" + }, + "description": [ + "A48 | Dreieck Vulkaneifel | Elztal Nord", + "56729 Kehrig", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTczNTk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.6474353,50.4391063,7.6474353,50.4391063", + "point": "7.6474353,50.4391063", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A48 | Dernbach | Rastst\u00e4tte Grenzau S\u00fcd", + "coordinate": { + "lat": "50.4391063", + "long": "7.6474353" + }, + "description": [ + "A48 | Dernbach | Rastst\u00e4tte Grenzau S\u00fcd", + "56203 H\u00f6hr-Grenzhausen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A49": { + "electric_charging_station": [] + }, + "A52": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTM5MjI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.804531,51.290358,6.804531,51.290358", + "point": "6.804531,51.290358", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A52 | Essen | Rastst\u00e4tte Ratingen Hohenstein (4)", + "coordinate": { + "lat": "51.290358", + "long": "6.804531" + }, + "description": [ + "A52 | Essen | Rastst\u00e4tte Ratingen Hohenstein (4)", + "40880 Ratingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW", + "", + "Ladepunkt 3:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTM5MjE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.804531,51.290358,6.804531,51.290358", + "point": "6.804531,51.290358", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A52 | Essen | Rastst\u00e4tte Ratingen Hohenstein (3)", + "coordinate": { + "lat": "51.290358", + "long": "6.804531" + }, + "description": [ + "A52 | Essen | Rastst\u00e4tte Ratingen Hohenstein (3)", + "40880 Ratingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTM5MjA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.804531,51.290358,6.804531,51.290358", + "point": "6.804531,51.290358", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A52 | Essen | Rastst\u00e4tte Ratingen Hohenstein (2)", + "coordinate": { + "lat": "51.290358", + "long": "6.804531" + }, + "description": [ + "A52 | Essen | Rastst\u00e4tte Ratingen Hohenstein (2)", + "40880 Ratingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTM5MTk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.804531,51.290358,6.804531,51.290358", + "point": "6.804531,51.290358", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A52 | Essen | Rastst\u00e4tte Ratingen Hohenstein (1)", + "coordinate": { + "lat": "51.290358", + "long": "6.804531" + }, + "description": [ + "A52 | Essen | Rastst\u00e4tte Ratingen Hohenstein (1)", + "40880 Ratingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A57": { + "electric_charging_station": [] + }, + "A59": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTYyMDE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.07561,50.89996,7.07561,50.89996", + "point": "7.07561,50.89996", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A59 | AS K-Gremberghoven | Friedrich-Neumann-Str. 1", + "coordinate": { + "lat": "50.89996", + "long": "7.07561" + }, + "description": [ + "A59 | AS K-Gremberghoven | Friedrich-Neumann-Str. 1", + "51145 K\u00f6ln", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2, AC Kupplung Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2, DC Kupplung Combo", + "50 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A60": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcwOTQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.1079752,50.0019038,8.1079752,50.0019038", + "point": "8.1079752,50.0019038", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A60 | Gensingen | Rastst\u00e4tte Heidenfahrt Nord (2)", + "coordinate": { + "lat": "50.0019038", + "long": "8.1079752" + }, + "description": [ + "A60 | Gensingen | Rastst\u00e4tte Heidenfahrt Nord (2)", + "55262 Heidesheim am Rhein", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcwOTM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.1079588,50.0017078,8.1079588,50.0017078", + "point": "8.1079588,50.0017078", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A60 | Gensingen | Rastst\u00e4tte Heidenfahrt Nord (1)", + "coordinate": { + "lat": "50.0017078", + "long": "8.1079588" + }, + "description": [ + "A60 | Gensingen | Rastst\u00e4tte Heidenfahrt Nord (1)", + "55262 Heidesheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A60 ": { + "electric_charging_station": [] + }, + "A61": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxMzI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.4978851,50.3174236,7.4978851,50.3174236", + "point": "7.4978851,50.3174236", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Mannheim | Rastst\u00e4tte Moseltal West (2)", + "coordinate": { + "lat": "50.3174236", + "long": "7.4978851" + }, + "description": [ + "A61 | Mannheim | Rastst\u00e4tte Moseltal West (2)", + "56333 Winningen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxMzA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.497926,50.317435,7.497926,50.317435", + "point": "7.497926,50.317435", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Mannheim | Rastst\u00e4tte Moseltal West (1)", + "coordinate": { + "lat": "50.317435", + "long": "7.497926" + }, + "description": [ + "A61 | Mannheim | Rastst\u00e4tte Moseltal West (1)", + "56333 Winningen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxMjk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.50968,50.26666,7.50968,50.26666", + "point": "7.50968,50.26666", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Mannheim | Rastst\u00e4tte Mosel West", + "coordinate": { + "lat": "50.26666", + "long": "7.50968" + }, + "description": [ + "A61 | Mannheim | Rastst\u00e4tte Mosel West", + "56332 Dieblich", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY5MDg=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.765679,49.963435,7.765679,49.963435", + "point": "7.765679,49.963435", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Mannheim | Rastst\u00e4tte Hunsr\u00fcck West (2)", + "coordinate": { + "lat": "49.963435", + "long": "7.765679" + }, + "description": [ + "A61 | Mannheim | Rastst\u00e4tte Hunsr\u00fcck West (2)", + "55442 Daxweiler", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY5MDc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.765878,49.963249,7.765878,49.963249", + "point": "7.765878,49.963249", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Mannheim | Rastst\u00e4tte Hunsr\u00fcck West (1)", + "coordinate": { + "lat": "49.963249", + "long": "7.765878" + }, + "description": [ + "A61 | Mannheim | Rastst\u00e4tte Hunsr\u00fcck West (1)", + "55442 Daxweiler", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY3OTQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.2935441,49.6469951,8.2935441,49.6469951", + "point": "8.2935441,49.6469951", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Koblenz | Rastst\u00e4tte Wonnegau Ost (2)", + "coordinate": { + "lat": "49.6469951", + "long": "8.2935441" + }, + "description": [ + "A61 | Koblenz | Rastst\u00e4tte Wonnegau Ost (2)", + "67551 Worms", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY3OTA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.2935173,49.649472,8.2935173,49.649472", + "point": "8.2935173,49.649472", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Koblenz | Rastst\u00e4tte Wonnegau Ost (1)", + "coordinate": { + "lat": "49.649472", + "long": "8.2935173" + }, + "description": [ + "A61 | Koblenz | Rastst\u00e4tte Wonnegau Ost (1)", + "67547 Worms", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY4MjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.223972,50.441464,7.223972,50.441464", + "point": "7.223972,50.441464", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Koblenz | Rastst\u00e4tte Brohltal West (2)", + "coordinate": { + "lat": "50.441464", + "long": "7.223972" + }, + "description": [ + "A61 | Koblenz | Rastst\u00e4tte Brohltal West (2)", + "56651 Niederzissen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY4MjI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.223972,50.441464,7.223972,50.441464", + "point": "7.223972,50.441464", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Koblenz | Rastst\u00e4tte Brohltal West (1)", + "coordinate": { + "lat": "50.441464", + "long": "7.223972" + }, + "description": [ + "A61 | Koblenz | Rastst\u00e4tte Brohltal West (1)", + "56651 Niederzissen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY3OTU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.290242,49.6446461,8.290242,49.6446461", + "point": "8.290242,49.6446461", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Hockenheim | Rastst\u00e4tte Wonnegau West (2)", + "coordinate": { + "lat": "49.6446461", + "long": "8.290242" + }, + "description": [ + "A61 | Hockenheim | Rastst\u00e4tte Wonnegau West (2)", + "67551 Worms", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY3ODk=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.2902018,49.6445062,8.2902018,49.6445062", + "point": "8.2902018,49.6445062", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Hockenheim | Rastst\u00e4tte Wonnegau West (1)", + "coordinate": { + "lat": "49.6445062", + "long": "8.2902018" + }, + "description": [ + "A61 | Hockenheim | Rastst\u00e4tte Wonnegau West (1)", + "67547 Worms", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxMzM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.498833,50.316578,7.498833,50.316578", + "point": "7.498833,50.316578", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Bonn | Rastst\u00e4tte Moseltal Ost (2)", + "coordinate": { + "lat": "50.316578", + "long": "7.498833" + }, + "description": [ + "A61 | Bonn | Rastst\u00e4tte Moseltal Ost (2)", + "56333 Winningen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcxMzE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.498801,50.316183,7.498801,50.316183", + "point": "7.498801,50.316183", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Bonn | Rastst\u00e4tte Moseltal Ost (1)", + "coordinate": { + "lat": "50.316183", + "long": "7.498801" + }, + "description": [ + "A61 | Bonn | Rastst\u00e4tte Moseltal Ost (1)", + "56333 Winningen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY4MjE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.225629,50.440471,7.225629,50.440471", + "point": "7.225629,50.440471", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Bonn | Rastst\u00e4tte Brohltal Ost (2)", + "coordinate": { + "lat": "50.440471", + "long": "7.225629" + }, + "description": [ + "A61 | Bonn | Rastst\u00e4tte Brohltal Ost (2)", + "56651 Niederzissen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTY4MjA=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.225629,50.440471,7.225629,50.440471", + "point": "7.225629,50.440471", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A61 | Bonn | Rastst\u00e4tte Brohltal Ost (1)", + "coordinate": { + "lat": "50.440471", + "long": "7.225629" + }, + "description": [ + "A61 | Bonn | Rastst\u00e4tte Brohltal Ost (1)", + "56651 Niederzissen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A62": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcwODE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "7.444556,49.470917,7.444556,49.470917", + "point": "7.444556,49.470917", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A62 | AS Glan-M\u00fcnchweiler | Bahnhofstra\u00dfe", + "coordinate": { + "lat": "49.470917", + "long": "7.444556" + }, + "description": [ + "A62 | AS Glan-M\u00fcnchweiler | Bahnhofstra\u00dfe", + "66907 Glan-M\u00fcnchweiler", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A63": { + "electric_charging_station": [] + }, + "A64": { + "electric_charging_station": [] + }, + "A65": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcyNjc=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.1539431,49.270411,8.1539431,49.270411", + "point": "8.1539431,49.270411", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A65 | Mannheim | Rastst\u00e4tte Pf\u00e4lzer Weinstrasse Ost", + "coordinate": { + "lat": "49.270411", + "long": "8.1539431" + }, + "description": [ + "A65 | Mannheim | Rastst\u00e4tte Pf\u00e4lzer Weinstrasse Ost", + "67483 Edesheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcyNjY=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.1516398,49.2698426,8.1516398,49.2698426", + "point": "8.1516398,49.2698426", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A65 | Karlsruhe | Rastst\u00e4tte Pf\u00e4lzer Weinstrasse West (2)", + "coordinate": { + "lat": "49.2698426", + "long": "8.1516398" + }, + "description": [ + "A65 | Karlsruhe | Rastst\u00e4tte Pf\u00e4lzer Weinstrasse West (2)", + "67483 Edesheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTcyNjU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.151669,49.26979,8.151669,49.26979", + "point": "8.151669,49.26979", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A65 | Karlsruhe | Rastst\u00e4tte Pf\u00e4lzer Weinstrasse West (1)", + "coordinate": { + "lat": "49.26979", + "long": "8.151669" + }, + "description": [ + "A65 | Karlsruhe | Rastst\u00e4tte Pf\u00e4lzer Weinstrasse West (1)", + "67483 Edesheim", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A66": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTk3OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.53075,50.388136,9.53075,50.388136", + "point": "9.53075,50.388136", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A66 | Frankfurt am Main | Rastplatz Distelrasen Nord (2)", + "coordinate": { + "lat": "50.388136", + "long": "9.53075" + }, + "description": [ + "A66 | Frankfurt am Main | Rastplatz Distelrasen Nord (2)", + "36381 Schl\u00fcchtern", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "50 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTk3Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.530635,50.3885835,9.530635,50.3885835", + "point": "9.530635,50.3885835", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A66 | Frankfurt am Main | Rastplatz Distelrasen Nord (1)", + "coordinate": { + "lat": "50.3885835", + "long": "9.530635" + }, + "description": [ + "A66 | Frankfurt am Main | Rastplatz Distelrasen Nord (1)", + "36381 Schl\u00fcchtern", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAwNjY=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "9.205040932,50.19298375,9.205040932,50.19298375", + "point": "9.205040932,50.19298375", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A66 | AS Gelnhausen-Ost | An der Wann 1", + "coordinate": { + "lat": "50.19298375", + "long": "9.205040932" + }, + "description": [ + "A66 | AS Gelnhausen-Ost | An der Wann 1", + "63589 Linsengericht - Altenha\u00dflau", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A67": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTUxNA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.576894,49.812467,8.576894,49.812467", + "point": "8.576894,49.812467", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A67 | Mannheim | Rastst\u00e4tte Pfungstadt West (2)", + "coordinate": { + "lat": "49.812467", + "long": "8.576894" + }, + "description": [ + "A67 | Mannheim | Rastst\u00e4tte Pfungstadt West (2)", + "64319 Pfungstadt", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTUxMg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.576894,49.812467,8.576894,49.812467", + "point": "8.576894,49.812467", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A67 | Mannheim | Rastst\u00e4tte Pfungstadt West (1)", + "coordinate": { + "lat": "49.812467", + "long": "8.576894" + }, + "description": [ + "A67 | Mannheim | Rastst\u00e4tte Pfungstadt West (1)", + "64319 Pfungstadt", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTQ2MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.551827,49.64325,8.551827,49.64325", + "point": "8.551827,49.64325", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A67 | Mannheim | Rastst\u00e4tte Lorsch West", + "coordinate": { + "lat": "49.64325", + "long": "8.551827" + }, + "description": [ + "A67 | Mannheim | Rastst\u00e4tte Lorsch West", + "64653 Lorsch", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTcyNw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.543906,49.892636,8.543906,49.892636", + "point": "8.543906,49.892636", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A67 | Mannheim | Rastst\u00e4tte B\u00fcttelborn S\u00fcd (2)", + "coordinate": { + "lat": "49.892636", + "long": "8.543906" + }, + "description": [ + "A67 | Mannheim | Rastst\u00e4tte B\u00fcttelborn S\u00fcd (2)", + "64572 B\u00fcttelborn", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTcyNg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.543816,49.892556,8.543816,49.892556", + "point": "8.543816,49.892556", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A67 | Mannheim | Rastst\u00e4tte B\u00fcttelborn S\u00fcd (1)", + "coordinate": { + "lat": "49.892556", + "long": "8.543816" + }, + "description": [ + "A67 | Mannheim | Rastst\u00e4tte B\u00fcttelborn S\u00fcd (1)", + "64572 B\u00fcttelborn", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTUxMw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.5791129,49.8120551,8.5791129,49.8120551", + "point": "8.5791129,49.8120551", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A67 | Darmstadt | Rastst\u00e4tte Pfungstadt Ost (2)", + "coordinate": { + "lat": "49.8120551", + "long": "8.5791129" + }, + "description": [ + "A67 | Darmstadt | Rastst\u00e4tte Pfungstadt Ost (2)", + "64319 Pfungstadt", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTUxMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.57926,49.812029,8.57926,49.812029", + "point": "8.57926,49.812029", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A67 | Darmstadt | Rastst\u00e4tte Pfungstadt Ost (1)", + "coordinate": { + "lat": "49.812029", + "long": "8.57926" + }, + "description": [ + "A67 | Darmstadt | Rastst\u00e4tte Pfungstadt Ost (1)", + "64319 Pfungstadt", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTQ2Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.554091,49.644301,8.554091,49.644301", + "point": "8.554091,49.644301", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A67 | Darmstadt | Rastst\u00e4tte Lorsch Ost", + "coordinate": { + "lat": "49.644301", + "long": "8.554091" + }, + "description": [ + "A67 | Darmstadt | Rastst\u00e4tte Lorsch Ost", + "64653 Lorsch", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A70": { + "electric_charging_station": [] + }, + "A71": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk2ODQ=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.841634,50.726454,10.841634,50.726454", + "point": "10.841634,50.726454", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A71 | Schweinfurt | Th\u00fcringer Wald Nord (3)", + "coordinate": { + "lat": "50.726454", + "long": "10.841634" + }, + "description": [ + "A71 | Schweinfurt | Th\u00fcringer Wald Nord (3)", + "98716 Geraberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk2ODM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.844166,50.726326,10.844166,50.726326", + "point": "10.844166,50.726326", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A71 | Schweinfurt | Th\u00fcringer Wald Nord (2)", + "coordinate": { + "lat": "50.726326", + "long": "10.844166" + }, + "description": [ + "A71 | Schweinfurt | Th\u00fcringer Wald Nord (2)", + "98716 Geraberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 2:", + "AC Kupplung Typ 2", + "42 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk2ODI=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.842106,50.726512,10.842106,50.726512", + "point": "10.842106,50.726512", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A71 | Schweinfurt | Th\u00fcringer Wald Nord (1)", + "coordinate": { + "lat": "50.726512", + "long": "10.842106" + }, + "description": [ + "A71 | Schweinfurt | Th\u00fcringer Wald Nord (1)", + "98716 Geraberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk2ODU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.847168,50.724708,10.847168,50.724708", + "point": "10.847168,50.724708", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A71 | Erfurt | Th\u00fcringer Wald S\u00fcd (2)", + "coordinate": { + "lat": "50.724708", + "long": "10.847168" + }, + "description": [ + "A71 | Erfurt | Th\u00fcringer Wald S\u00fcd (2)", + "98716 Geraberg", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk2ODE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.847253,50.725106,10.847253,50.725106", + "point": "10.847253,50.725106", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A71 | Erfurt | Th\u00fcringer Wald S\u00fcd (1)", + "coordinate": { + "lat": "50.725106", + "long": "10.847253" + }, + "description": [ + "A71 | Erfurt | Th\u00fcringer Wald S\u00fcd (1)", + "98716 Geraberg", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjczNw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.3509457,50.4211797,10.3509457,50.4211797", + "point": "10.3509457,50.4211797", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A71 | Erfurt | Rastst\u00e4tte Mellrichst\u00e4dter H\u00f6he Ost", + "coordinate": { + "lat": "50.4211797", + "long": "10.3509457" + }, + "description": [ + "A71 | Erfurt | Rastst\u00e4tte Mellrichst\u00e4dter H\u00f6he Ost", + "97638 Mellrichstadt - Rosenrieth", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A72": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTgyMjE=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.184971,50.466745,12.184971,50.466745", + "point": "12.184971,50.466745", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A72 | Hof | Vogtland Nord", + "coordinate": { + "lat": "50.466745", + "long": "12.184971" + }, + "description": [ + "A72 | Hof | Vogtland Nord", + "08527 Plauen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTgyMjU=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.129586,50.433618,12.129586,50.433618", + "point": "12.129586,50.433618", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A72 | Chemnitz | Vogtland S\u00fcd", + "coordinate": { + "lat": "50.433618", + "long": "12.129586" + }, + "description": [ + "A72 | Chemnitz | Vogtland S\u00fcd", + "08606 Oelsnitz", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A73": { + "electric_charging_station": [] + }, + "A81": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk3", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.903146,48.614545,8.903146,48.614545", + "point": "8.903146,48.614545", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Z\u00fcrich | Rastst\u00e4tte Sch\u00f6nbuch West", + "coordinate": { + "lat": "48.614545", + "long": "8.903146" + }, + "description": [ + "Z\u00fcrich | Rastst\u00e4tte Sch\u00f6nbuch West", + "71154 Nufringen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTk4", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.908525,48.616422,8.908525,48.616422", + "point": "8.908525,48.616422", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Stuttgart | Rastst\u00e4tte Sch\u00f6nbuch Ost", + "coordinate": { + "lat": "48.616422", + "long": "8.908525" + }, + "description": [ + "Stuttgart | Rastst\u00e4tte Sch\u00f6nbuch Ost", + "71154 Nufringen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAyMA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.266223,49.045334,9.266223,49.045334", + "point": "9.266223,49.045334", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | W\u00fcrzburg | Wunnenstein Ost", + "coordinate": { + "lat": "49.045334", + "long": "9.266223" + }, + "description": [ + "A81 | W\u00fcrzburg | Wunnenstein Ost", + "74360 Ilsfeld", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAxOA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.266087,49.045116,9.266087,49.045116", + "point": "9.266087,49.045116", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | W\u00fcrzburg | Rastst\u00e4tte Wunnenstein Ost (2)", + "coordinate": { + "lat": "49.045116", + "long": "9.266087" + }, + "description": [ + "A81 | W\u00fcrzburg | Rastst\u00e4tte Wunnenstein Ost (2)", + "74360 Ilsfeld", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAxNw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.265882,49.045633,9.265882,49.045633", + "point": "9.265882,49.045633", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | W\u00fcrzburg | Rastst\u00e4tte Wunnenstein Ost (1)", + "coordinate": { + "lat": "49.045633", + "long": "9.265882" + }, + "description": [ + "A81 | W\u00fcrzburg | Rastst\u00e4tte Wunnenstein Ost (1)", + "74360 Ilsfeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU1Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.7309266,49.6216138,9.7309266,49.6216138", + "point": "9.7309266,49.6216138", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | W\u00fcrzburg | Rastst\u00e4tte Ob der Tauber Ost (2)", + "coordinate": { + "lat": "49.6216138", + "long": "9.7309266" + }, + "description": [ + "A81 | W\u00fcrzburg | Rastst\u00e4tte Ob der Tauber Ost (2)", + "97947 Gr\u00fcnsfeld", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "150 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU1MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.730665,49.621761,9.730665,49.621761", + "point": "9.730665,49.621761", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | W\u00fcrzburg | Rastst\u00e4tte Ob der Tauber Ost (1)", + "coordinate": { + "lat": "49.621761", + "long": "9.730665" + }, + "description": [ + "A81 | W\u00fcrzburg | Rastst\u00e4tte Ob der Tauber Ost (1)", + "97947 Gr\u00fcnsfeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAwOA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.4158214,49.3229097,9.4158214,49.3229097", + "point": "9.4158214,49.3229097", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | W\u00fcrzburg | Rastst\u00e4tte Jagsttal Ost (2)", + "coordinate": { + "lat": "49.3229097", + "long": "9.4158214" + }, + "description": [ + "A81 | W\u00fcrzburg | Rastst\u00e4tte Jagsttal Ost (2)", + "74259 Widdern", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAwNQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.415751,49.323082,9.415751,49.323082", + "point": "9.415751,49.323082", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | W\u00fcrzburg | Rastst\u00e4tte Jagsttal Ost (1)", + "coordinate": { + "lat": "49.323082", + "long": "9.415751" + }, + "description": [ + "A81 | W\u00fcrzburg | Rastst\u00e4tte Jagsttal Ost (1)", + "74259 Widdern", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU1Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.7281813,49.6267028,9.7281813,49.6267028", + "point": "9.7281813,49.6267028", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Stuttgart | Rastst\u00e4tte Ob der Tauber West (2)", + "coordinate": { + "lat": "49.6267028", + "long": "9.7281813" + }, + "description": [ + "A81 | Stuttgart | Rastst\u00e4tte Ob der Tauber West (2)", + "97947 Gr\u00fcnsfeld", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTU1MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.728162,49.626722,9.728162,49.626722", + "point": "9.728162,49.626722", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Stuttgart | Rastst\u00e4tte Ob der Tauber West (1)", + "coordinate": { + "lat": "49.626722", + "long": "9.728162" + }, + "description": [ + "A81 | Stuttgart | Rastst\u00e4tte Ob der Tauber West (1)", + "97947 Gr\u00fcnsfeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjI2OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.62735,48.20629,8.62735,48.20629", + "point": "8.62735,48.20629", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Stuttgart | Rastst\u00e4tte Neckarburg Ost", + "coordinate": { + "lat": "48.20629", + "long": "8.62735" + }, + "description": [ + "A81 | Stuttgart | Rastst\u00e4tte Neckarburg Ost", + "78661 Dietingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjI2NQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.62751,48.206284,8.62751,48.206284", + "point": "8.62751,48.206284", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Stuttgart | Rastst\u00e4tte Neckarburg Ost", + "coordinate": { + "lat": "48.206284", + "long": "8.62751" + }, + "description": [ + "A81 | Stuttgart | Rastst\u00e4tte Neckarburg Ost", + "78661 Dietingen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAwNw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.412135,49.323989,9.412135,49.323989", + "point": "9.412135,49.323989", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Stuttgart | Rastst\u00e4tte Jagsttal West (2)", + "coordinate": { + "lat": "49.323989", + "long": "9.412135" + }, + "description": [ + "A81 | Stuttgart | Rastst\u00e4tte Jagsttal West (2)", + "74259 Widdern", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAwNg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.412272,49.324102,9.412272,49.324102", + "point": "9.412272,49.324102", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Stuttgart | Rastst\u00e4tte Jagsttal West (1)", + "coordinate": { + "lat": "49.324102", + "long": "9.412272" + }, + "description": [ + "A81 | Stuttgart | Rastst\u00e4tte Jagsttal West (1)", + "74259 Widdern", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjI2OQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.627155,48.206218,8.627155,48.206218", + "point": "8.627155,48.206218", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Stuttgart | Neckarburg Ost", + "coordinate": { + "lat": "48.206218", + "long": "8.627155" + }, + "description": [ + "A81 | Stuttgart | Neckarburg Ost", + "78661 Dietingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjI2Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.620832,48.205928,8.620832,48.205928", + "point": "8.620832,48.205928", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Richtung Schweiz | Rastst\u00e4tte Neckarburg West", + "coordinate": { + "lat": "48.205928", + "long": "8.620832" + }, + "description": [ + "A81 | Richtung Schweiz | Rastst\u00e4tte Neckarburg West", + "78661 Dietingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjI2Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.620757,48.205725,8.620757,48.205725", + "point": "8.620757,48.205725", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Richtung Schweiz | Rastst\u00e4tte Neckarburg West", + "coordinate": { + "lat": "48.205725", + "long": "8.620757" + }, + "description": [ + "A81 | Richtung Schweiz | Rastst\u00e4tte Neckarburg West", + "78661 Dietingen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI1Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.785676,47.860927,8.785676,47.860927", + "point": "8.785676,47.860927", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Richtung Schweiz | Rastst\u00e4tte Hegau West (3)", + "coordinate": { + "lat": "47.860927", + "long": "8.785676" + }, + "description": [ + "A81 | Richtung Schweiz | Rastst\u00e4tte Hegau West (3)", + "78234 Engen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI1MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.78613944,47.86143273,8.78613944,47.86143273", + "point": "8.78613944,47.86143273", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Richtung Schweiz | Rastst\u00e4tte Hegau West (2)", + "coordinate": { + "lat": "47.86143273", + "long": "8.78613944" + }, + "description": [ + "A81 | Richtung Schweiz | Rastst\u00e4tte Hegau West (2)", + "78234 Engen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTI1MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.786138,47.861429,8.786138,47.861429", + "point": "8.786138,47.861429", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Richtung Schweiz | Rastst\u00e4tte Hegau West (1)", + "coordinate": { + "lat": "47.861429", + "long": "8.786138" + }, + "description": [ + "A81 | Richtung Schweiz | Rastst\u00e4tte Hegau West (1)", + "78234 Engen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMjI3MA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.621045,48.20593,8.621045,48.20593", + "point": "8.621045,48.20593", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Richtung Schweiz | Neckarburg West", + "coordinate": { + "lat": "48.20593", + "long": "8.621045" + }, + "description": [ + "A81 | Richtung Schweiz | Neckarburg West", + "78661 Dietingen", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAyMQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.261639,49.044276,9.261639,49.044276", + "point": "9.261639,49.044276", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Ludwigsburg | Wunnenstein West", + "coordinate": { + "lat": "49.044276", + "long": "9.261639" + }, + "description": [ + "A81 | Ludwigsburg | Wunnenstein West", + "74360 Ilsfeld", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAxOQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.2620105,49.0443708,9.2620105,49.0443708", + "point": "9.2620105,49.0443708", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Ludwigsburg | Rastst\u00e4tte Wunnenstein West (2)", + "coordinate": { + "lat": "49.0443708", + "long": "9.2620105" + }, + "description": [ + "A81 | Ludwigsburg | Rastst\u00e4tte Wunnenstein West (2)", + "74360 Ilsfeld", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "150 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "75 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTAxNg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "9.261927,49.043998,9.261927,49.043998", + "point": "9.261927,49.043998", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A81 | Ludwigsburg | Rastst\u00e4tte Wunnenstein West (1)", + "coordinate": { + "lat": "49.043998", + "long": "9.261927" + }, + "description": [ + "A81 | Ludwigsburg | Rastst\u00e4tte Wunnenstein West (1)", + "74360 Ilsfeld", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A92": { + "electric_charging_station": [] + }, + "A93": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNzIxOA==", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "12.11321028,50.0288611,12.11321028,50.0288611", + "point": "12.11321028,50.0288611", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A93 | AS Wunsiedel | Industrieallee 6", + "coordinate": { + "lat": "50.0288611", + "long": "12.11321028" + }, + "description": [ + "AS Wunsiedel | Industrieallee 6", + "95615 Marktredwitz", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjc2Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.202241,47.610851,12.202241,47.610851", + "point": "12.202241,47.610851", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A93 | Rosenheim | Rastst\u00e4tte Inntal Ost", + "coordinate": { + "lat": "47.610851", + "long": "12.202241" + }, + "description": [ + "A93 | Rosenheim | Rastst\u00e4tte Inntal Ost", + "83088 Kiefersfelden", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjc2Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.200201,47.612497,12.200201,47.612497", + "point": "12.200201,47.612497", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A93 | Richtung \u00d6sterreich | Rastst\u00e4tte Inntal West", + "coordinate": { + "lat": "47.612497", + "long": "12.200201" + }, + "description": [ + "A93 | Richtung \u00d6sterreich | Rastst\u00e4tte Inntal West", + "83088 Kiefersfelden", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjI5NQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.172418,49.839264,12.172418,49.839264", + "point": "12.172418,49.839264", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A93 | Regensburg | Waldnaabtal West", + "coordinate": { + "lat": "49.839264", + "long": "12.172418" + }, + "description": [ + "A93 | Regensburg | Waldnaabtal West", + "92670 Windischeschenbach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "50 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjI5Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.171929,49.839729,12.171929,49.839729", + "point": "12.171929,49.839729", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A93 | Regensburg | Rastst\u00e4tte Waldnaabtal West", + "coordinate": { + "lat": "49.839729", + "long": "12.171929" + }, + "description": [ + "A93 | Regensburg | Rastst\u00e4tte Waldnaabtal West", + "92670 Windischeschenbach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjY2NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.09351,48.9601,12.09351,48.9601", + "point": "12.09351,48.9601", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A93 | Regensburg | Rastst\u00e4tte Pentling Ost", + "coordinate": { + "lat": "48.9601", + "long": "12.09351" + }, + "description": [ + "A93 | Regensburg | Rastst\u00e4tte Pentling Ost", + "93080 Pentling", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjI5Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.173281,49.83727,12.173281,49.83727", + "point": "12.173281,49.83727", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A93 | Hof | Waldnaabtal Ost", + "coordinate": { + "lat": "49.83727", + "long": "12.173281" + }, + "description": [ + "A93 | Hof | Waldnaabtal Ost", + "92670 Windischeschenbach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "50 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "43 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjI5NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "12.173278,49.837245,12.173278,49.837245", + "point": "12.173278,49.837245", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A93 | Hof | Rastst\u00e4tte Waldnaabtal Ost", + "coordinate": { + "lat": "49.837245", + "long": "12.173278" + }, + "description": [ + "A93 | Hof | Rastst\u00e4tte Waldnaabtal Ost", + "92670 Windischeschenbach", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A94": { + "electric_charging_station": [] + }, + "A95": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNDg2Mw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.402944,47.926837,11.402944,47.926837", + "point": "11.402944,47.926837", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A95 | M\u00fcnchen | Rastst\u00e4tte H\u00f6henrain Ost", + "coordinate": { + "lat": "47.926837", + "long": "11.402944" + }, + "description": [ + "A95 | M\u00fcnchen | Rastst\u00e4tte H\u00f6henrain Ost", + "82335 Berg (Starnberger See)", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A96": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTc2NA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.84785,48.058316,10.84785,48.058316", + "point": "10.84785,48.058316", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A96 | M\u00fcnchen | Rastst\u00e4tte Lechwiesen S\u00fcd", + "coordinate": { + "lat": "48.058316", + "long": "10.84785" + }, + "description": [ + "A96 | M\u00fcnchen | Rastst\u00e4tte Lechwiesen S\u00fcd", + "86899 Landsberg am Lech", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTc2Ng==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.847411,48.05813,10.847411,48.05813", + "point": "10.847411,48.05813", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A96 | M\u00fcnchen | Lechwiesen S\u00fcd", + "coordinate": { + "lat": "48.05813", + "long": "10.847411" + }, + "description": [ + "A96 | M\u00fcnchen | Lechwiesen S\u00fcd", + "86899 Landsberg am Lech", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTc2NQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "10.846766,48.05958,10.846766,48.05958", + "point": "10.846766,48.05958", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A96 | Lindau | Lechwiesen Nord", + "coordinate": { + "lat": "48.05958", + "long": "10.846766" + }, + "description": [ + "A96 | Lindau | Lechwiesen Nord", + "86899 Landsberg am Lech", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "350 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "350 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A98": { + "electric_charging_station": [] + }, + "A99": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTE2OQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.75956,48.12312,11.75956,48.12312", + "point": "11.75956,48.12312", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A99 | Ismaning | Vaterstetten Ost", + "coordinate": { + "lat": "48.12312", + "long": "11.75956" + }, + "description": [ + "A99 | Ismaning | Vaterstetten Ost", + "85622 Feldkirchen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTE2OA==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.75783,48.12424,11.75783,48.12424", + "point": "11.75783,48.12424", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A99 | Hohenbrunn | Vaterstetten West", + "coordinate": { + "lat": "48.12424", + "long": "11.75783" + }, + "description": [ + "A99 | Hohenbrunn | Vaterstetten West", + "85622 Feldkirchen", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNjA1Nw==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "11.721535,48.073771,11.721535,48.073771", + "point": "11.721535,48.073771", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A99 | AS Hohenbrunn | Glonner Stra\u00dfe 50", + "coordinate": { + "lat": "48.073771", + "long": "11.721535" + }, + "description": [ + "A99 | AS Hohenbrunn | Glonner Stra\u00dfe 50", + "85640 Putzbrunn", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A100": { + "electric_charging_station": [] + }, + "A103": { + "electric_charging_station": [] + }, + "A111": { + "electric_charging_station": [] + }, + "A113": { + "electric_charging_station": [] + }, + "A115": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNzk1Mg==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "13.191749,52.434341,13.191749,52.434341", + "point": "13.191749,52.434341", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A115 | Nuthetal | Grunewald West", + "coordinate": { + "lat": "52.434341", + "long": "13.191749" + }, + "description": [ + "A115 | Nuthetal | Grunewald West", + "14129 Berlin", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A117": { + "electric_charging_station": [] + }, + "A143": { + "electric_charging_station": [] + }, + "A210": { + "electric_charging_station": [] + }, + "A215": { + "electric_charging_station": [] + }, + "A226": { + "electric_charging_station": [] + }, + "A255": { + "electric_charging_station": [] + }, + "A261": { + "electric_charging_station": [] + }, + "A270": { + "electric_charging_station": [] + }, + "A281": { + "electric_charging_station": [] + }, + "A320": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc0MjM=", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "6.966453,49.209508,6.966453,49.209508", + "point": "6.966453,49.209508", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A6 | A320 Frankreich | Rastst\u00e4tte Goldene Bremm Nord", + "coordinate": { + "lat": "49.209508", + "long": "6.966453" + }, + "description": [ + "A6 | A320 Frankreich | Rastst\u00e4tte Goldene Bremm Nord", + "66117 Saarbr\u00fccken", + "", + "Ladepunkt 1:", + "AC Kupplung Typ 2", + "43 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo, DC CHAdeMO", + "50 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "300 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo, DC CHAdeMO", + "300 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A352": { + "electric_charging_station": [] + }, + "A369": { + "electric_charging_station": [] + }, + "A445": { + "electric_charging_station": [] + }, + "A448": { + "electric_charging_station": [] + }, + "A480": { + "electric_charging_station": [] + }, + "A485": { + "electric_charging_station": [] + }, + "A516": { + "electric_charging_station": [] + }, + "A524": { + "electric_charging_station": [] + }, + "A542": { + "electric_charging_station": [] + }, + "A553": { + "electric_charging_station": [] + }, + "A555": { + "electric_charging_station": [] + }, + "A559": { + "electric_charging_station": [] + }, + "A560": { + "electric_charging_station": [] + }, + "A562": { + "electric_charging_station": [] + }, + "A565": { + "electric_charging_station": [] + }, + "A620": { + "electric_charging_station": [] + }, + "A623": { + "electric_charging_station": [] + }, + "A640": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fMTc0OTc=", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "6.783526,49.269777,6.783526,49.269777", + "point": "6.783526,49.269777", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A640 | AS Wadgassen | Lindenstra\u00dfe", + "coordinate": { + "lat": "49.269777", + "long": "6.783526" + }, + "description": [ + "A640 | AS Wadgassen | Lindenstra\u00dfe", + "66787 Wadgassen", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A643": { + "electric_charging_station": [] + }, + "A64a": { + "electric_charging_station": [] + }, + "A650": { + "electric_charging_station": [] + }, + "A659": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fOTQ4MQ==", + "icon": "charging_plug_strong", + "isBlocked": "false", + "future": false, + "extent": "8.567865,49.525847,8.567865,49.525847", + "point": "8.567865,49.525847", + "display_type": "STRONG_ELECTRIC_CHARGING_STATION", + "subtitle": "Schnellladeeinrichtung", + "title": "A659 | AS Kreuz Viernheimer | Robert-Schumann-Stra\u00dfe 8a", + "coordinate": { + "lat": "49.525847", + "long": "8.567865" + }, + "description": [ + "A659 | AS Kreuz Viernheimer | Robert-Schumann-Stra\u00dfe 8a", + "68519 Viernheim", + "", + "Ladepunkt 1:", + "DC Kupplung Combo", + "80 kW", + "", + "Ladepunkt 2:", + "DC Kupplung Combo", + "320 kW", + "", + "Ladepunkt 3:", + "DC Kupplung Combo", + "80 kW", + "", + "Ladepunkt 4:", + "DC Kupplung Combo", + "320 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A661": { + "electric_charging_station": [] + }, + "A671": { + "electric_charging_station": [] + }, + "A831": { + "electric_charging_station": [] + }, + "A861": { + "electric_charging_station": [] + }, + "A864": { + "electric_charging_station": [] + }, + "A995": { + "electric_charging_station": [ + { + "identifier": "RUxFQ1RSSUNfQ0hBUkdJTkdfU1RBVElPTl9fNTk5OQ==", + "icon": "charging_plug", + "isBlocked": "false", + "future": false, + "extent": "11.615506,48.029544,11.615506,48.029544", + "point": "11.615506,48.029544", + "display_type": "ELECTRIC_CHARGING_STATION", + "subtitle": "Normalladeeinrichtung", + "title": "A995 | AS Oberhaching | Karwendelstra\u00dfe 7", + "coordinate": { + "lat": "48.029544", + "long": "11.615506" + }, + "description": [ + "A995 | AS Oberhaching | Karwendelstra\u00dfe 7", + "82024 Taufkirchen", + "", + "Ladepunkt 1:", + "AC Steckdose Typ 2", + "22 kW", + "", + "Ladepunkt 2:", + "AC Steckdose Typ 2", + "22 kW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A99a": { + "electric_charging_station": [] + } +} \ No newline at end of file diff --git a/autobahn/data/parkinglorries.json b/autobahn/data/parkinglorries.json new file mode 100644 index 0000000..73497a4 --- /dev/null +++ b/autobahn/data/parkinglorries.json @@ -0,0 +1,79632 @@ +{ + "A1": { + "parking_lorry": [ + { + "identifier": "DE-SL-000008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.968945999997056,49.30983599999335,6.968945999997056,49.30983599999335", + "point": "6.968945999997056,49.30983599999335", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Neuhaus O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.968945999997056", + "lat": "49.30983599999335" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.968945999997056,49.30983599999335" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.968335999997053,49.31074199999335,6.968335999997053,49.31074199999335", + "point": "6.968335999997053,49.31074199999335", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Neuhaus W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.968335999997053", + "lat": "49.31074199999335" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.968335999997053,49.31074199999335" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.973513999997128,49.43646099999342,6.973513999997128,49.43646099999342", + "point": "6.973513999997128,49.43646099999342", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Schellenbach W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.973513999997128", + "lat": "49.43646099999342" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.973513999997128,49.43646099999342" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.97693299999716,49.4653819999935,6.97693299999716,49.4653819999935", + "point": "6.97693299999716,49.4653819999935", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Schaumberg Kreuz W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.97693299999716", + "lat": "49.4653819999935" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.97693299999716,49.4653819999935" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.991882999997273,49.50521699999376,6.991882999997273,49.50521699999376", + "point": "6.991882999997273,49.50521699999376", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Sombach M\u00fchle West", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.991882999997273", + "lat": "49.50521699999376" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.991882999997273,49.50521699999376" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.9773739999971625,49.4661299999935,6.9773739999971625,49.4661299999935", + "point": "6.9773739999971625,49.4661299999935", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Schaumberg Kreuz O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.9773739999971625", + "lat": "49.4661299999935" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.9773739999971625,49.4661299999935" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.993233999997282,49.5051579999938,6.993233999997282,49.5051579999938", + "point": "6.993233999997282,49.5051579999938", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Sombach M\u00fchle O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.993233999997282", + "lat": "49.5051579999938" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.993233999997282,49.5051579999938" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.970805999997148,49.56583299999337,6.970805999997148,49.56583299999337", + "point": "6.970805999997148,49.56583299999337", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Kastel West", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.970805999997148", + "lat": "49.56583299999337" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.970805999997148,49.56583299999337" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.9898129999972705,49.54531599999372,6.9898129999972705,49.54531599999372", + "point": "6.9898129999972705,49.54531599999372", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Peterberg Ost", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.9898129999972705", + "lat": "49.54531599999372" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.9898129999972705,49.54531599999372" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-RP-000016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.923154999996832,49.640333999992365,6.923154999996832,49.640333999992365", + "point": "6.923154999996832,49.640333999992365", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Katzenberg", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.923154999996832", + "lat": "49.640333999992365" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 2" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.923154999996832,49.640333999992365" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.923896999996838,49.63969899999239,6.923896999996838,49.63969899999239", + "point": "6.923896999996838,49.63969899999239", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Steinerwald", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.923896999996838", + "lat": "49.63969899999239" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.923896999996838,49.63969899999239" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000014", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.897347999996654,49.690169999991774,6.897347999996654,49.690169999991774", + "point": "6.897347999996654,49.690169999991774", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Hochwald West", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.897347999996654", + "lat": "49.690169999991774" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.897347999996654,49.690169999991774" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.898912999996669,49.69058899999181,6.898912999996669,49.69058899999181", + "point": "6.898912999996669,49.69058899999181", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Hochwald Ost", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.898912999996669", + "lat": "49.69058899999181" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.898912999996669,49.69058899999181" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.813621999996005,49.78363299998961,6.813621999996005,49.78363299998961", + "point": "6.813621999996005,49.78363299998961", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Rioler Wald", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.813621999996005", + "lat": "49.78363299998961" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.813621999996005,49.78363299998961" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.8193419999960545,49.78496699998977,6.8193419999960545,49.78496699998977", + "point": "6.8193419999960545,49.78496699998977", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Mehringer H\u00f6he", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.8193419999960545", + "lat": "49.78496699998977" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.8193419999960545,49.78496699998977" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.830684999996193,49.87444899999006,6.830684999996193,49.87444899999006", + "point": "6.830684999996193,49.87444899999006", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Hetzerath", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.830684999996193", + "lat": "49.87444899999006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.830684999996193,49.87444899999006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.830568999996192,49.873498999990076,6.830568999996192,49.873498999990076", + "point": "6.830568999996192,49.873498999990076", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Rivenich", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.830568999996192", + "lat": "49.873498999990076" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.830568999996192,49.873498999990076" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.856415999996423,49.92057499999075,6.856415999996423,49.92057499999075", + "point": "6.856415999996423,49.92057499999075", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Salmrohr", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.856415999996423", + "lat": "49.92057499999075" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.856415999996423,49.92057499999075" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.857790999996434,49.92029199999078,6.857790999996434,49.92029199999078", + "point": "6.857790999996434,49.92029199999078", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Pohlbach", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.857790999996434", + "lat": "49.92029199999078" + }, + "description": [ + "PKW Stellpl\u00e4tze: 43", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.857790999996434,49.92029199999078" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.926284999996977,49.994624999992396,6.926284999996977,49.994624999992396", + "point": "6.926284999996977,49.994624999992396", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "L\u00fcxem", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.926284999996977", + "lat": "49.994624999992396" + }, + "description": [ + "PKW Stellpl\u00e4tze: 43", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.926284999996977,49.994624999992396" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.915601999996913,50.03122999999216,6.915601999996913,50.03122999999216", + "point": "6.915601999996913,50.03122999999216", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Flu\u00dfbach", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.915601999996913", + "lat": "50.03122999999216" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.915601999996913,50.03122999999216" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.880558999996669,50.06864999999135,6.880558999996669,50.06864999999135", + "point": "6.880558999996669,50.06864999999135", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Eifel West", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.880558999996669", + "lat": "50.06864999999135" + }, + "description": [ + "PKW Stellpl\u00e4tze: 98", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.880558999996669,50.06864999999135" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.8804009999966675,50.07005199999132,6.8804009999966675,50.07005199999132", + "point": "6.8804009999966675,50.07005199999132", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Eifel Ost", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.8804009999966675", + "lat": "50.07005199999132" + }, + "description": [ + "PKW Stellpl\u00e4tze: 89", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.8804009999966675,50.07005199999132" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.881745999996711,50.15489499999136,6.881745999996711,50.15489499999136", + "point": "6.881745999996711,50.15489499999136", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Schalkenmehren", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.881745999996711", + "lat": "50.15489499999136" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.881745999996711,50.15489499999136" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.869594999996614,50.14030499999107,6.869594999996614,50.14030499999107", + "point": "6.869594999996614,50.14030499999107", + "startLcPosition": "49", + "display_type": "PARKING", + "subtitle": "Udler", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.869594999996614", + "lat": "50.14030499999107" + }, + "description": [ + "PKW Stellpl\u00e4tze: 11", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.869594999996614,50.14030499999107" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000053", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.674234999995108,50.488424999984844,6.674234999995108,50.488424999984844", + "point": "6.674234999995108,50.488424999984844", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Engelgau", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.674234999995108", + "lat": "50.488424999984844" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.674234999995108,50.488424999984844" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000052", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.674768999995115,50.48959299998486,6.674768999995115,50.48959299998486", + "point": "6.674768999995115,50.48959299998486", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Engelgau", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.674768999995115", + "lat": "50.48959299998486" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.674768999995115,50.48959299998486" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000051", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.710018999995515,50.60845399998617,6.710018999995515,50.60845399998617", + "point": "6.710018999995515,50.60845399998617", + "startLcPosition": "59", + "display_type": "PARKING", + "subtitle": "Gr\u00fcner Winkel (West)", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.710018999995515", + "lat": "50.60845399998617" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 58" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.710018999995515,50.60845399998617" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.7112019999955255,50.608111999986214,6.7112019999955255,50.608111999986214", + "point": "6.7112019999955255,50.608111999986214", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Gr\u00fcner Winkel (Ost)", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.7112019999955255", + "lat": "50.608111999986214" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 54" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.7112019999955255,50.608111999986214" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000049", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.799865999996334,50.7418079999891,6.799865999996334,50.7418079999891", + "point": "6.799865999996334,50.7418079999891", + "startLcPosition": "61", + "display_type": "PARKING", + "subtitle": "Oberste Heide", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.799865999996334", + "lat": "50.7418079999891" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.799865999996334,50.7418079999891" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000048", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.8011409999963455,50.741680999989136,6.8011409999963455,50.741680999989136", + "point": "6.8011409999963455,50.741680999989136", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Oberste Heide", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.8011409999963455", + "lat": "50.741680999989136" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.8011409999963455,50.741680999989136" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000047", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.804702999996424,50.857683999989234,6.804702999996424,50.857683999989234", + "point": "6.804702999996424,50.857683999989234", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Ville West", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "6.804702999996424", + "lat": "50.857683999989234" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 55" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.804702999996424,50.857683999989234" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000046", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.806172999996437,50.85768699998929,6.806172999996437,50.85768699998929", + "point": "6.806172999996437,50.85768699998929", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Ville Ost", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "6.806172999996437", + "lat": "50.85768699998929" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.806172999996437,50.85768699998929" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000045", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.227285999998763,51.15851199999702,7.227285999998763,51.15851199999702", + "point": "7.227285999998763,51.15851199999702", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Remscheid West", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.227285999998763", + "lat": "51.15851199999702" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.227285999998763,51.15851199999702" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000044", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.22890699999877,51.15797099999701,7.22890699999877,51.15797099999701", + "point": "7.22890699999877,51.15797099999701", + "startLcPosition": "82", + "display_type": "PARKING", + "subtitle": "Remscheid Ost", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.22890699999877", + "lat": "51.15797099999701" + }, + "description": [ + "PKW Stellpl\u00e4tze: 156", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.22890699999877,51.15797099999701" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000043", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.244722999998836,51.265340999997164,7.244722999998836,51.265340999997164", + "point": "7.244722999998836,51.265340999997164", + "startLcPosition": "86", + "display_type": "PARKING", + "subtitle": "Ehrenberg", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.244722999998836", + "lat": "51.265340999997164" + }, + "description": [ + "PKW Stellpl\u00e4tze: 51", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.244722999998836,51.265340999997164" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000042", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.248835999998849,51.26579299999722,7.248835999998849,51.26579299999722", + "point": "7.248835999998849,51.26579299999722", + "startLcPosition": "88", + "display_type": "PARKING", + "subtitle": "Kucksiepen", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.248835999998849", + "lat": "51.26579299999722" + }, + "description": [ + "PKW Stellpl\u00e4tze: 55", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.248835999998849,51.26579299999722" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.309657999999039,51.32692099999773,7.309657999999039,51.32692099999773", + "point": "7.309657999999039,51.32692099999773", + "startLcPosition": "90", + "display_type": "PARKING", + "subtitle": "Bruchm\u00fchle", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.309657999999039", + "lat": "51.32692099999773" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.309657999999039,51.32692099999773" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.315642999999056,51.32849099999779,7.315642999999056,51.32849099999779", + "point": "7.315642999999056,51.32849099999779", + "startLcPosition": "92", + "display_type": "PARKING", + "subtitle": "Klosterholz", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.315642999999056", + "lat": "51.32849099999779" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.315642999999056,51.32849099999779" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000039", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.413711999999303,51.37208899999846,7.413711999999303,51.37208899999846", + "point": "7.413711999999303,51.37208899999846", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "Eichenkamp", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.413711999999303", + "lat": "51.37208899999846" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.413711999999303,51.37208899999846" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000038", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.421347999999319,51.373963999998495,7.421347999999319,51.373963999998495", + "point": "7.421347999999319,51.373963999998495", + "startLcPosition": "96", + "display_type": "PARKING", + "subtitle": "Funckenhausen", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.421347999999319", + "lat": "51.373963999998495" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.421347999999319,51.373963999998495" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000037", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.499417999999473,51.41157799999889,7.499417999999473,51.41157799999889", + "point": "7.499417999999473,51.41157799999889", + "startLcPosition": "98", + "display_type": "PARKING", + "subtitle": "Lennhof W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.499417999999473", + "lat": "51.41157799999889" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.499417999999473,51.41157799999889" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000036", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.594483999999621,51.46824699999924,7.594483999999621,51.46824699999924", + "point": "7.594483999999621,51.46824699999924", + "startLcPosition": "101", + "display_type": "PARKING", + "subtitle": "Lichtendorf Nord", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.594483999999621", + "lat": "51.46824699999924" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.594483999999621,51.46824699999924" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000035", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.596170999999625,51.467763999999256,7.596170999999625,51.467763999999256", + "point": "7.596170999999625,51.467763999999256", + "startLcPosition": "102", + "display_type": "PARKING", + "subtitle": "Lichtendorf S\u00fcd", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.596170999999625", + "lat": "51.467763999999256" + }, + "description": [ + "PKW Stellpl\u00e4tze: 90", + "LKW Stellpl\u00e4tze: 57" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.596170999999625,51.467763999999256" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000034", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.689006999999738,51.619429999999504,7.689006999999738,51.619429999999504", + "point": "7.689006999999738,51.619429999999504", + "startLcPosition": "106", + "display_type": "PARKING", + "subtitle": "Overberger Busch", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.689006999999738", + "lat": "51.619429999999504" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.689006999999738,51.619429999999504" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000033", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.689998999999739,51.61976799999951,7.689998999999739,51.61976799999951", + "point": "7.689998999999739,51.61976799999951", + "startLcPosition": "108", + "display_type": "PARKING", + "subtitle": "Haus Reck (Ost)", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.689998999999739", + "lat": "51.61976799999951" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.689998999999739,51.61976799999951" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.6796979999997275,51.67368999999948,7.6796979999997275,51.67368999999948", + "point": "7.6796979999997275,51.67368999999948", + "startLcPosition": "110", + "display_type": "PARKING", + "subtitle": "Fuchseggen (West)", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.6796979999997275", + "lat": "51.67368999999948" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.6796979999997275,51.67368999999948" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.680540999999731,51.67495999999947,7.680540999999731,51.67495999999947", + "point": "7.680540999999731,51.67495999999947", + "startLcPosition": "111", + "display_type": "PARKING", + "subtitle": "An der Landwehr", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.680540999999731", + "lat": "51.67495999999947" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.680540999999731,51.67495999999947" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000028", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.646824999999696,51.74915399999941,7.646824999999696,51.74915399999941", + "point": "7.646824999999696,51.74915399999941", + "startLcPosition": "113", + "display_type": "PARKING", + "subtitle": "Westerwinkel", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.646824999999696", + "lat": "51.74915399999941" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.646824999999696,51.74915399999941" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000029", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.647970999999698,51.749455999999405,7.647970999999698,51.749455999999405", + "point": "7.647970999999698,51.749455999999405", + "startLcPosition": "114", + "display_type": "PARKING", + "subtitle": "Hasenk\u00e4mpe", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.647970999999698", + "lat": "51.749455999999405" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.647970999999698,51.749455999999405" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000026", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.639066999999689,51.77376199999938,7.639066999999689,51.77376199999938", + "point": "7.639066999999689,51.77376199999938", + "startLcPosition": "115", + "display_type": "PARKING", + "subtitle": "Eichengrund", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.639066999999689", + "lat": "51.77376199999938" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.639066999999689,51.77376199999938" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000027", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.64055799999969,51.77406799999939,7.64055799999969,51.77406799999939", + "point": "7.64055799999969,51.77406799999939", + "startLcPosition": "117", + "display_type": "PARKING", + "subtitle": "Im Mersch", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.64055799999969", + "lat": "51.77406799999939" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.64055799999969,51.77406799999939" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.551362999999583,51.9415139999991,7.551362999999583,51.9415139999991", + "point": "7.551362999999583,51.9415139999991", + "startLcPosition": "124", + "display_type": "PARKING", + "subtitle": "M\u00fcnsterland Ost", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.551362999999583", + "lat": "51.9415139999991" + }, + "description": [ + "PKW Stellpl\u00e4tze: 109", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.551362999999583,51.9415139999991" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.548183999999578,51.945318999999074,7.548183999999578,51.945318999999074", + "point": "7.548183999999578,51.945318999999074", + "startLcPosition": "124", + "display_type": "PARKING", + "subtitle": "M\u00fcnsterland West", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.548183999999578", + "lat": "51.945318999999074" + }, + "description": [ + "PKW Stellpl\u00e4tze: 102", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.548183999999578,51.945318999999074" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000019", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.601945999999655,52.03240199999926,7.601945999999655,52.03240199999926", + "point": "7.601945999999655,52.03240199999926", + "startLcPosition": "127", + "display_type": "PARKING", + "subtitle": "Sandrup (West)", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.601945999999655", + "lat": "52.03240199999926" + }, + "description": [ + "PKW Stellpl\u00e4tze: 70", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.601945999999655,52.03240199999926" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.620643999999677,52.060097999999336,7.620643999999677,52.060097999999336", + "point": "7.620643999999677,52.060097999999336", + "startLcPosition": "128", + "display_type": "PARKING", + "subtitle": "Gimbter Heide", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.620643999999677", + "lat": "52.060097999999336" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.620643999999677,52.060097999999336" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000018", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.603591999999656,52.031918999999284,7.603591999999656,52.031918999999284", + "point": "7.603591999999656,52.031918999999284", + "startLcPosition": "128", + "display_type": "PARKING", + "subtitle": "Plugger Heide (Ost)", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.603591999999656", + "lat": "52.031918999999284" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.603591999999656,52.031918999999284" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.627733999999686,52.06689999999935,7.627733999999686,52.06689999999935", + "point": "7.627733999999686,52.06689999999935", + "startLcPosition": "130", + "display_type": "PARKING", + "subtitle": "Klaterberg", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.627733999999686", + "lat": "52.06689999999935" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.627733999999686,52.06689999999935" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.65708499999972,52.09252999999941,7.65708499999972,52.09252999999941", + "point": "7.65708499999972,52.09252999999941", + "startLcPosition": "130", + "display_type": "PARKING", + "subtitle": "Maestruper Brook (West)", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.65708499999972", + "lat": "52.09252999999941" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.65708499999972,52.09252999999941" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000014", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.6765859999997375,52.09995699999948,7.6765859999997375,52.09995699999948", + "point": "7.6765859999997375,52.09995699999948", + "startLcPosition": "133", + "display_type": "PARKING", + "subtitle": "Kroner Heide (Ost)", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.6765859999997375", + "lat": "52.09995699999948" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.6765859999997375,52.09995699999948" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.724665999999784,52.13787599999957,7.724665999999784,52.13787599999957", + "point": "7.724665999999784,52.13787599999957", + "startLcPosition": "134", + "display_type": "PARKING", + "subtitle": "Aabach", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.724665999999784", + "lat": "52.13787599999957" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.724665999999784,52.13787599999957" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.721348999999781,52.13251699999957,7.721348999999781,52.13251699999957", + "point": "7.721348999999781,52.13251699999957", + "startLcPosition": "135", + "display_type": "PARKING", + "subtitle": "M\u00fchlenbach", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.721348999999781", + "lat": "52.13251699999957" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.721348999999781,52.13251699999957" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.761024999999813,52.17000999999965,7.761024999999813,52.17000999999965", + "point": "7.761024999999813,52.17000999999965", + "startLcPosition": "137", + "display_type": "PARKING", + "subtitle": "Buddenkuhle (West)", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.761024999999813", + "lat": "52.17000999999965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.761024999999813,52.17000999999965" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.781127999999828,52.17991399999967,7.781127999999828,52.17991399999967", + "point": "7.781127999999828,52.17991399999967", + "startLcPosition": "138", + "display_type": "PARKING", + "subtitle": "Settel (Ost)", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.781127999999828", + "lat": "52.17991399999967" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.781127999999828,52.17991399999967" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.800088999999841,52.196650999999704,7.800088999999841,52.196650999999704", + "point": "7.800088999999841,52.196650999999704", + "startLcPosition": "140", + "display_type": "PARKING", + "subtitle": "Wechte", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.800088999999841", + "lat": "52.196650999999704" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.800088999999841,52.196650999999704" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.79907199999984,52.1949179999997,7.79907199999984,52.1949179999997", + "point": "7.79907199999984,52.1949179999997", + "startLcPosition": "140", + "display_type": "PARKING", + "subtitle": "Sonnenh\u00fcgel", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.79907199999984", + "lat": "52.1949179999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.79907199999984,52.1949179999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.832926999999862,52.20899799999975,7.832926999999862,52.20899799999975", + "point": "7.832926999999862,52.20899799999975", + "startLcPosition": "142", + "display_type": "PARKING", + "subtitle": "Exterheide", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.832926999999862", + "lat": "52.20899799999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.832926999999862,52.20899799999975" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.833633999999862,52.20824799999975,7.833633999999862,52.20824799999975", + "point": "7.833633999999862,52.20824799999975", + "startLcPosition": "143", + "display_type": "PARKING", + "subtitle": "Bashake", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.833633999999862", + "lat": "52.20824799999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.833633999999862,52.20824799999975" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.877943999999887,52.23177299999982,7.877943999999887,52.23177299999982", + "point": "7.877943999999887,52.23177299999982", + "startLcPosition": "143", + "display_type": "PARKING", + "subtitle": "Tecklenburger Land West", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.877943999999887", + "lat": "52.23177299999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 102", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.877943999999887,52.23177299999982" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.8988709999998985,52.243908999999825,7.8988709999998985,52.243908999999825", + "point": "7.8988709999998985,52.243908999999825", + "startLcPosition": "144", + "display_type": "PARKING", + "subtitle": "Habichtswald", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.8988709999998985", + "lat": "52.243908999999825" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.8988709999998985,52.243908999999825" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.881322999999889,52.23341399999981,7.881322999999889,52.23341399999981", + "point": "7.881322999999889,52.23341399999981", + "startLcPosition": "145", + "display_type": "PARKING", + "subtitle": "Tecklenburger Land Ost", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.881322999999889", + "lat": "52.23341399999981" + }, + "description": [ + "PKW Stellpl\u00e4tze: 64", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.881322999999889,52.23341399999981" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.901818999999898,52.244238999999816,7.901818999999898,52.244238999999816", + "point": "7.901818999999898,52.244238999999816", + "startLcPosition": "146", + "display_type": "PARKING", + "subtitle": "Petersberg", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.901818999999898", + "lat": "52.244238999999816" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.901818999999898,52.244238999999816" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-361301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.958454999999924,52.31967599999989,7.958454999999924,52.31967599999989", + "point": "7.958454999999924,52.31967599999989", + "startLcPosition": "149", + "display_type": "PARKING", + "subtitle": "Hasetal W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "7.958454999999924", + "lat": "52.31967599999989" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 44" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.958454999999924,52.31967599999989" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-361302", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.959762999999924,52.31874299999987,7.959762999999924,52.31874299999987", + "point": "7.959762999999924,52.31874299999987", + "startLcPosition": "149", + "display_type": "PARKING", + "subtitle": "Hasetal O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "7.959762999999924", + "lat": "52.31874299999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.959762999999924,52.31874299999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-351404", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.053019999999954,52.46981799999992,8.053019999999954,52.46981799999992", + "point": "8.053019999999954,52.46981799999992", + "startLcPosition": "153", + "display_type": "PARKING", + "subtitle": "NI 42 W bei km 203,3", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.053019999999954", + "lat": "52.46981799999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.053019999999954,52.46981799999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-351402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.030175999999948,52.42220199999993,8.030175999999948,52.42220199999993", + "point": "8.030175999999948,52.42220199999993", + "startLcPosition": "153", + "display_type": "PARKING", + "subtitle": "Ahrensfeld West", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.030175999999948", + "lat": "52.42220199999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.030175999999948,52.42220199999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-351403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.032025999999949,52.41398899999992,8.032025999999949,52.41398899999992", + "point": "8.032025999999949,52.41398899999992", + "startLcPosition": "153", + "display_type": "PARKING", + "subtitle": "Ahrensfeld Ost", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.032025999999949", + "lat": "52.41398899999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.032025999999949,52.41398899999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-351401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.052379999999951,52.467689999999926,8.052379999999951,52.467689999999926", + "point": "8.052379999999951,52.467689999999926", + "startLcPosition": "154", + "display_type": "PARKING", + "subtitle": "NI 43 O bei km 203,5", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.052379999999951", + "lat": "52.467689999999926" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.052379999999951,52.467689999999926" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-341404", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.093619999999964,52.511050999999945,8.093619999999964,52.511050999999945", + "point": "8.093619999999964,52.511050999999945", + "startLcPosition": "154", + "display_type": "PARKING", + "subtitle": "NI 40 W bei km 197,8", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.093619999999964", + "lat": "52.511050999999945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.093619999999964,52.511050999999945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-341405", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.092609999999961,52.509257999999946,8.092609999999961,52.509257999999946", + "point": "8.092609999999961,52.509257999999946", + "startLcPosition": "155", + "display_type": "PARKING", + "subtitle": "NI 41 O bei km 198,2", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.092609999999961", + "lat": "52.509257999999946" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.092609999999961,52.509257999999946" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-341401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.113599999999966,52.53660999999997,8.113599999999966,52.53660999999997", + "point": "8.113599999999966,52.53660999999997", + "startLcPosition": "155", + "display_type": "PARKING", + "subtitle": "Dammer Berge O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.113599999999966", + "lat": "52.53660999999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 123", + "LKW Stellpl\u00e4tze: 84" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.113599999999966,52.53660999999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Hotel", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-341406", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.111811999999967,52.541274999999956,8.111811999999967,52.541274999999956", + "point": "8.111811999999967,52.541274999999956", + "startLcPosition": "155", + "display_type": "PARKING", + "subtitle": "Dammer Berge W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.111811999999967", + "lat": "52.541274999999956" + }, + "description": [ + "PKW Stellpl\u00e4tze: 137", + "LKW Stellpl\u00e4tze: 85" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.111811999999967,52.541274999999956" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-341403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.110529999999967,52.57466899999995,8.110529999999967,52.57466899999995", + "point": "8.110529999999967,52.57466899999995", + "startLcPosition": "156", + "display_type": "PARKING", + "subtitle": "NI 39 O bei km 190,5", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.110529999999967", + "lat": "52.57466899999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.110529999999967,52.57466899999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-341402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.10926999999997,52.57762099999995,8.10926999999997,52.57762099999995", + "point": "8.10926999999997,52.57762099999995", + "startLcPosition": "156", + "display_type": "PARKING", + "subtitle": "NI 38 W bei km 190,1", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.10926999999997", + "lat": "52.57762099999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.10926999999997,52.57762099999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-331403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.125879999999968,52.61286199999996,8.125879999999968,52.61286199999996", + "point": "8.125879999999968,52.61286199999996", + "startLcPosition": "158", + "display_type": "PARKING", + "subtitle": "Langwege Ost (n\u00f6rdl. Holdorf)", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.125879999999968", + "lat": "52.61286199999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.125879999999968,52.61286199999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-331402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.12668999999997,52.61477999999996,8.12668999999997,52.61477999999996", + "point": "8.12668999999997,52.61477999999996", + "startLcPosition": "158", + "display_type": "PARKING", + "subtitle": "Langwege West (n\u00f6rdl. Holdorf)", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.12668999999997", + "lat": "52.61477999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.12668999999997,52.61477999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-331401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.149009999999974,52.63682199999996,8.149009999999974,52.63682199999996", + "point": "8.149009999999974,52.63682199999996", + "startLcPosition": "160", + "display_type": "PARKING", + "subtitle": "NI 35 O bei km 183,0", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.149009999999974", + "lat": "52.63682199999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.149009999999974,52.63682199999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-321503", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.173479999999977,52.709491999999976,8.173479999999977,52.709491999999976", + "point": "8.173479999999977,52.709491999999976", + "startLcPosition": "161", + "display_type": "PARKING", + "subtitle": "Bakumer Wiesen O (NI 33 O)", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.173479999999977", + "lat": "52.709491999999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.173479999999977,52.709491999999976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-321502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.172229999999978,52.714450999999954,8.172229999999978,52.714450999999954", + "point": "8.172229999999978,52.714450999999954", + "startLcPosition": "161", + "display_type": "PARKING", + "subtitle": "Bakumer Wiesen", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.172229999999978", + "lat": "52.714450999999954" + }, + "description": [ + "PKW Stellpl\u00e4tze: 43", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.172229999999978,52.714450999999954" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-321501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.19871999999998,52.78139899999998,8.19871999999998,52.78139899999998", + "point": "8.19871999999998,52.78139899999998", + "startLcPosition": "163", + "display_type": "PARKING", + "subtitle": "NI 30 O Cappeln Hagelage", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.19871999999998", + "lat": "52.78139899999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.19871999999998,52.78139899999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-321504", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.199489999999981,52.78519799999998,8.199489999999981,52.78519799999998", + "point": "8.199489999999981,52.78519799999998", + "startLcPosition": "164", + "display_type": "PARKING", + "subtitle": "NI 29 W Cappeln Hagelage", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.199489999999981", + "lat": "52.78519799999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.199489999999981,52.78519799999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-311502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.219769999999983,52.84204099999997,8.219769999999983,52.84204099999997", + "point": "8.219769999999983,52.84204099999997", + "startLcPosition": "166", + "display_type": "PARKING", + "subtitle": "Garterfeld N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.219769999999983", + "lat": "52.84204099999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.219769999999983,52.84204099999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-311503", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.215639999999983,52.829120999999965,8.215639999999983,52.829120999999965", + "point": "8.215639999999983,52.829120999999965", + "startLcPosition": "167", + "display_type": "PARKING", + "subtitle": "Drantumer M\u00fchle S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.215639999999983", + "lat": "52.829120999999965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 3", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.215639999999983,52.829120999999965" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-311504", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.282641999999987,52.88615399999999,8.282641999999987,52.88615399999999", + "point": "8.282641999999987,52.88615399999999", + "startLcPosition": "170", + "display_type": "PARKING", + "subtitle": "Engelmannsb\u00e4ke Nord", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.282641999999987", + "lat": "52.88615399999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.282641999999987,52.88615399999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-311501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.27754499999999,52.88316399999997,8.27754499999999,52.88316399999997", + "point": "8.27754499999999,52.88316399999997", + "startLcPosition": "171", + "display_type": "PARKING", + "subtitle": "Engelmannsb\u00e4ke S\u00fcd", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.27754499999999", + "lat": "52.88316399999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.27754499999999,52.88316399999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.380439999999995,52.91204100000001,8.380439999999995,52.91204100000001", + "point": "8.380439999999995,52.91204100000001", + "startLcPosition": "172", + "display_type": "PARKING", + "subtitle": "NI 23 bei km 145,5 Nord", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.380439999999995", + "lat": "52.91204100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.380439999999995,52.91204100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301604", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.422994999999997,52.91502800000001,8.422994999999997,52.91502800000001", + "point": "8.422994999999997,52.91502800000001", + "startLcPosition": "172", + "display_type": "PARKING", + "subtitle": "Wildeshausen N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.422994999999997", + "lat": "52.91502800000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 88", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.422994999999997,52.91502800000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301603", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.363549999999998,52.90813799999998,8.363549999999998,52.90813799999998", + "point": "8.363549999999998,52.90813799999998", + "startLcPosition": "173", + "display_type": "PARKING", + "subtitle": "NI 24 S\u00fcd bei km 146,7", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.363549999999998", + "lat": "52.90813799999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.363549999999998,52.90813799999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.426543000000002,52.91386099999999,8.426543000000002,52.91386099999999", + "point": "8.426543000000002,52.91386099999999", + "startLcPosition": "174", + "display_type": "PARKING", + "subtitle": "Wildeshausen S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.426543000000002", + "lat": "52.91386099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 87", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.426543000000002,52.91386099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301704", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.506715000000002,52.93695999999999,8.506715000000002,52.93695999999999", + "point": "8.506715000000002,52.93695999999999", + "startLcPosition": "174", + "display_type": "PARKING", + "subtitle": "NI 21 N bei km 136,1", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.506715000000002", + "lat": "52.93695999999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.506715000000002,52.93695999999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301705", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.505379999999999,52.935169,8.505379999999999,52.935169", + "point": "8.505379999999999,52.935169", + "startLcPosition": "175", + "display_type": "PARKING", + "subtitle": "NI 22 S\u00fcd bei km 136,4", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.505379999999999", + "lat": "52.935169" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.505379999999999,52.935169" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-005229", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.554095,52.954492999999985,8.554095,52.954492999999985", + "point": "8.554095,52.954492999999985", + "startLcPosition": "175", + "display_type": "PARKING", + "subtitle": "Delmetal Nord", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.554095", + "lat": "52.954492999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.554095,52.954492999999985" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-301701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.60085,52.966648000000006,8.60085,52.966648000000006", + "point": "8.60085,52.966648000000006", + "startLcPosition": "176", + "display_type": "PARKING", + "subtitle": "Ni18 Nord bei km 129,0 ", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.60085", + "lat": "52.966648000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.60085,52.966648000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301703", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.535989999999998,52.947548,8.535989999999998,52.947548", + "point": "8.535989999999998,52.947548", + "startLcPosition": "176", + "display_type": "PARKING", + "subtitle": "Delmetal S (NI 20 S)", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.535989999999998", + "lat": "52.947548" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.535989999999998,52.947548" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301801", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.666029,52.99787500000001,8.666029,52.99787500000001", + "point": "8.666029,52.99787500000001", + "startLcPosition": "177", + "display_type": "PARKING", + "subtitle": "NI 16 N bei km 123,4", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.666029", + "lat": "52.99787500000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 51" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.666029,52.99787500000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.593649999999998,52.963451000000006,8.593649999999998,52.963451000000006", + "point": "8.593649999999998,52.963451000000006", + "startLcPosition": "177", + "display_type": "PARKING", + "subtitle": "NI 19 S\u00fcd bei km 129,6", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.593649999999998", + "lat": "52.963451000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 11", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.593649999999998,52.963451000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301706", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.656168,52.992583,8.656168,52.992583", + "point": "8.656168,52.992583", + "startLcPosition": "178", + "display_type": "PARKING", + "subtitle": "NI 17 S\u00fcd bei km 124,2", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.656168", + "lat": "52.992583" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.656168,52.992583" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HB-000003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.841262,53.024255,8.841262,53.024255", + "point": "8.841262,53.024255", + "startLcPosition": "182", + "display_type": "PARKING", + "subtitle": "Ahlken", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.841262", + "lat": "53.024255" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.841262,53.024255" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HB-000004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.827308,53.02311300000001,8.827308,53.02311300000001", + "point": "8.827308,53.02311300000001", + "startLcPosition": "183", + "display_type": "PARKING", + "subtitle": "Krummh\u00f6rens Kuhlen", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "8.827308", + "lat": "53.02311300000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.827308,53.02311300000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HB-000001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.94152,53.027942,8.94152,53.027942", + "point": "8.94152,53.027942", + "startLcPosition": "185", + "display_type": "PARKING", + "subtitle": "Mahndorfer Marsch", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "8.94152", + "lat": "53.027942" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.94152,53.027942" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-292003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.01387,53.052071000000005,9.01387,53.052071000000005", + "point": "9.01387,53.052071000000005", + "startLcPosition": "188", + "display_type": "PARKING", + "subtitle": "Th\u00fcnen N (NI 15 N)", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "9.01387", + "lat": "53.052071000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.01387,53.052071000000005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-292006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.02342,53.05186099999999,9.02342,53.05186099999999", + "point": "9.02342,53.05186099999999", + "startLcPosition": "191", + "display_type": "PARKING", + "subtitle": "Th\u00fcnen S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "9.02342", + "lat": "53.05186099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.02342,53.05186099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-292104", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.176666,53.090228,9.176666,53.090228", + "point": "9.176666,53.090228", + "startLcPosition": "193", + "display_type": "PARKING", + "subtitle": "Grundbergsee N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "9.176666", + "lat": "53.090228" + }, + "description": [ + "PKW Stellpl\u00e4tze: 161", + "LKW Stellpl\u00e4tze: 59" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.176666,53.090228" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-292101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.177642,53.088759,9.177642,53.088759", + "point": "9.177642,53.088759", + "startLcPosition": "194", + "display_type": "PARKING", + "subtitle": "Grundbergsee S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "9.177642", + "lat": "53.088759" + }, + "description": [ + "PKW Stellpl\u00e4tze: 97", + "LKW Stellpl\u00e4tze: 95" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.177642,53.088759" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-272102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.296064,53.20173,9.296064,53.20173", + "point": "9.296064,53.20173", + "startLcPosition": "198", + "display_type": "PARKING", + "subtitle": "Glindebusch N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "9.296064", + "lat": "53.20173" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.296064,53.20173" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-272101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.297143,53.200614,9.297143,53.200614", + "point": "9.297143,53.200614", + "startLcPosition": "198", + "display_type": "PARKING", + "subtitle": "Glindbusch S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "9.297143", + "lat": "53.200614" + }, + "description": [ + "PKW Stellpl\u00e4tze: 56", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.297143,53.200614" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-272201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.42786,53.25538400000001,9.42786,53.25538400000001", + "point": "9.42786,53.25538400000001", + "startLcPosition": "199", + "display_type": "PARKING", + "subtitle": "Hatzte N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "9.42786", + "lat": "53.25538400000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.42786,53.25538400000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-272202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.430298,53.25517899999999,9.430298,53.25517899999999", + "point": "9.430298,53.25517899999999", + "startLcPosition": "201", + "display_type": "PARKING", + "subtitle": "Hatzte S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "9.430298", + "lat": "53.25517899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 56", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.430298,53.25517899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262305", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.533484000000003,53.30020199999999,9.533484000000003,53.30020199999999", + "point": "9.533484000000003,53.30020199999999", + "startLcPosition": "202", + "display_type": "PARKING", + "subtitle": "Ostetal N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "9.533484000000003", + "lat": "53.30020199999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 76", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.533484000000003,53.30020199999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.535047000000004,53.29928099999999,9.535047000000004,53.29928099999999", + "point": "9.535047000000004,53.29928099999999", + "startLcPosition": "203", + "display_type": "PARKING", + "subtitle": "Ostetal S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "9.535047000000004", + "lat": "53.29928099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 65", + "LKW Stellpl\u00e4tze: 66" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.535047000000004,53.29928099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262302", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.656280000000008,53.342874,9.656280000000008,53.342874", + "point": "9.656280000000008,53.342874", + "startLcPosition": "205", + "display_type": "PARKING", + "subtitle": "Stellheide S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "9.656280000000008", + "lat": "53.342874" + }, + "description": [ + "PKW Stellpl\u00e4tze: 60", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.656280000000008,53.342874" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.672029000000009,53.34866799999999,9.672029000000009,53.34866799999999", + "point": "9.672029000000009,53.34866799999999", + "startLcPosition": "205", + "display_type": "PARKING", + "subtitle": "Stellheide N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "9.672029000000009", + "lat": "53.34866799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.672029000000009,53.34866799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.73632600000001,53.366571,9.73632600000001,53.366571", + "point": "9.73632600000001,53.366571", + "startLcPosition": "207", + "display_type": "PARKING", + "subtitle": "Hollenstedt N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "9.73632600000001", + "lat": "53.366571" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.73632600000001,53.366571" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.73764100000001,53.365383999999985,9.73764100000001,53.365383999999985", + "point": "9.73764100000001,53.365383999999985", + "startLcPosition": "208", + "display_type": "PARKING", + "subtitle": "Aarbachkate S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "9.73764100000001", + "lat": "53.365383999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.73764100000001,53.365383999999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.951500000000042,53.377917999999944,9.951500000000042,53.377917999999944", + "point": "9.951500000000042,53.377917999999944", + "startLcPosition": "212", + "display_type": "PARKING", + "subtitle": "Sunderblick N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "9.951500000000042", + "lat": "53.377917999999944" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.951500000000042,53.377917999999944" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262504", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.959640000000046,53.378180999999934,9.959640000000046,53.378180999999934", + "point": "9.959640000000046,53.378180999999934", + "startLcPosition": "213", + "display_type": "PARKING", + "subtitle": "Hittfeld S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "9.959640000000046", + "lat": "53.378180999999934" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.959640000000046,53.378180999999934" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HH-000005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.024803000000064,53.48440499999988,10.024803000000064,53.48440499999988", + "point": "10.024803000000064,53.48440499999988", + "startLcPosition": "221", + "display_type": "PARKING", + "subtitle": "HH-Stillhorn W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "10.024803000000064", + "lat": "53.48440499999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 54", + "LKW Stellpl\u00e4tze: 47" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.024803000000064,53.48440499999988" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-HH-000004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.026519000000063,53.48380799999988,10.026519000000063,53.48380799999988", + "point": "10.026519000000063,53.48380799999988", + "startLcPosition": "222", + "display_type": "PARKING", + "subtitle": "HH-Stillhorn O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "10.026519000000063", + "lat": "53.48380799999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.026519000000063,53.48380799999988" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SH-001201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.248005000000164,53.62946999999963,10.248005000000164,53.62946999999963", + "point": "10.248005000000164,53.62946999999963", + "startLcPosition": "231", + "display_type": "PARKING", + "subtitle": "Ellerbrook", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "10.248005000000164", + "lat": "53.62946999999963" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.248005000000164,53.62946999999963" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.321078000000215,53.693122999999495,10.321078000000215,53.693122999999495", + "point": "10.321078000000215,53.693122999999495", + "startLcPosition": "234", + "display_type": "PARKING", + "subtitle": "Buddikate W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "10.321078000000215", + "lat": "53.693122999999495" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.321078000000215,53.693122999999495" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.260858000000173,53.636750999999606,10.260858000000173,53.636750999999606", + "point": "10.260858000000173,53.636750999999606", + "startLcPosition": "234", + "display_type": "PARKING", + "subtitle": "Ohlendiek", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "10.260858000000173", + "lat": "53.636750999999606" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.260858000000173,53.636750999999606" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.323388000000218,53.69359099999947,10.323388000000218,53.69359099999947", + "point": "10.323388000000218,53.69359099999947", + "startLcPosition": "236", + "display_type": "PARKING", + "subtitle": "Buddikate O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "10.323388000000218", + "lat": "53.69359099999947" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.323388000000218,53.69359099999947" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.454643000000344,53.80454699999908,10.454643000000344,53.80454699999908", + "point": "10.454643000000344,53.80454699999908", + "startLcPosition": "241", + "display_type": "PARKING", + "subtitle": "Melmsh\u00f6he", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "10.454643000000344", + "lat": "53.80454699999908" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.454643000000344,53.80454699999908" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001203", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.480169000000373,53.81894899999897,10.480169000000373,53.81894899999897", + "point": "10.480169000000373,53.81894899999897", + "startLcPosition": "241", + "display_type": "PARKING", + "subtitle": "Trave W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "10.480169000000373", + "lat": "53.81894899999897" + }, + "description": [ + "PKW Stellpl\u00e4tze: 56", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.480169000000373,53.81894899999897" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001204", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.729238000000777,53.93084599999742,10.729238000000777,53.93084599999742", + "point": "10.729238000000777,53.93084599999742", + "startLcPosition": "249", + "display_type": "PARKING", + "subtitle": "Sereetzer Feld W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "10.729238000000777", + "lat": "53.93084599999742" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.729238000000777,53.93084599999742" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001104", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.732364000000782,53.93221599999739,10.732364000000782,53.93221599999739", + "point": "10.732364000000782,53.93221599999739", + "startLcPosition": "251", + "display_type": "PARKING", + "subtitle": "Sereetzer Feld O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "10.732364000000782", + "lat": "53.93221599999739" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.732364000000782,53.93221599999739" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.756699000000822,54.06874999999717,10.756699000000822,54.06874999999717", + "point": "10.756699000000822,54.06874999999717", + "startLcPosition": "255", + "display_type": "PARKING", + "subtitle": "Neust\u00e4dter Bucht O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "10.756699000000822", + "lat": "54.06874999999717" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.756699000000822,54.06874999999717" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001205", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.755669000000818,54.07059799999718,10.755669000000818,54.07059799999718", + "point": "10.755669000000818,54.07059799999718", + "startLcPosition": "255", + "display_type": "PARKING", + "subtitle": "Neust\u00e4dter Bucht W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "10.755669000000818", + "lat": "54.07059799999718" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.755669000000818,54.07059799999718" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001206", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.855019000001047,54.15512099999609,10.855019000001047,54.15512099999609", + "point": "10.855019000001047,54.15512099999609", + "startLcPosition": "257", + "display_type": "PARKING", + "subtitle": "Hasselburger M\u00fchle W", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "10.855019000001047", + "lat": "54.15512099999609" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.855019000001047,54.15512099999609" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001106", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.855735000001046,54.15446899999608,10.855735000001046,54.15446899999608", + "point": "10.855735000001046,54.15446899999608", + "startLcPosition": "258", + "display_type": "PARKING", + "subtitle": "Hasselburger M\u00fchle O", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "10.855735000001046", + "lat": "54.15446899999608" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.855735000001046,54.15446899999608" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001107", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.891838000001131,54.2404069999956,10.891838000001131,54.2404069999956", + "point": "10.891838000001131,54.2404069999956", + "startLcPosition": "261", + "display_type": "PARKING", + "subtitle": "Damlos", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "10.891838000001131", + "lat": "54.2404069999956" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.891838000001131,54.2404069999956" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001207", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.982374000001366,54.3626719999942,10.982374000001366,54.3626719999942", + "point": "10.982374000001366,54.3626719999942", + "startLcPosition": "267", + "display_type": "PARKING", + "subtitle": "Ostseeblick N", + "title": "A1 | Saarbr\u00fccken", + "coordinate": { + "long": "10.982374000001366", + "lat": "54.3626719999942" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.982374000001366,54.3626719999942" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001108", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.982168000001364,54.36218199999419,10.982168000001364,54.36218199999419", + "point": "10.982168000001364,54.36218199999419", + "startLcPosition": "268", + "display_type": "PARKING", + "subtitle": "Ostseeblick S", + "title": "A1 | Puttgarden", + "coordinate": { + "long": "10.982168000001364", + "lat": "54.36218199999419" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.982168000001364,54.36218199999419" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A2": { + "parking_lorry": [ + { + "identifier": "DE-NW-000089", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.884395999997243,51.54086799999135,6.884395999997243,51.54086799999135", + "point": "6.884395999997243,51.54086799999135", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Schwarze Heide (Nord)", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "6.884395999997243", + "lat": "51.54086799999135" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.884395999997243,51.54086799999135" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000088", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.886748999997257,51.54003999999139,6.886748999997257,51.54003999999139", + "point": "6.886748999997257,51.54003999999139", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Bottrop S\u00fcd", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "6.886748999997257", + "lat": "51.54003999999139" + }, + "description": [ + "PKW Stellpl\u00e4tze: 61", + "LKW Stellpl\u00e4tze: 44" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.886748999997257,51.54003999999139" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000087", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.029777999998032,51.55718999999435,7.029777999998032,51.55718999999435", + "point": "7.029777999998032,51.55718999999435", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Allenstein (S\u00fcd)", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "7.029777999998032", + "lat": "51.55718999999435" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.029777999998032,51.55718999999435" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000085", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.100453999998351,51.57096099999545,7.100453999998351,51.57096099999545", + "point": "7.100453999998351,51.57096099999545", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Resser Mark Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "7.100453999998351", + "lat": "51.57096099999545" + }, + "description": [ + "PKW Stellpl\u00e4tze: 124", + "LKW Stellpl\u00e4tze: 96" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.100453999998351,51.57096099999545" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000086", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.100374999998349,51.56995399999546,7.100374999998349,51.56995399999546", + "point": "7.100374999998349,51.56995399999546", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Resser Mark S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "7.100374999998349", + "lat": "51.56995399999546" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.100374999998349,51.56995399999546" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000083", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.178112999998653,51.581572999996474,7.178112999998653,51.581572999996474", + "point": "7.178112999998653,51.581572999996474", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Hohenhorst", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "7.178112999998653", + "lat": "51.581572999996474" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.178112999998653,51.581572999996474" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000084", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.179253999998658,51.58030099999647,7.179253999998658,51.58030099999647", + "point": "7.179253999998658,51.58030099999647", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Stuckenbusch", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "7.179253999998658", + "lat": "51.58030099999647" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.179253999998658,51.58030099999647" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000082", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.334315999999134,51.59960899999792,7.334315999999134,51.59960899999792", + "point": "7.334315999999134,51.59960899999792", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Ickern", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "7.334315999999134", + "lat": "51.59960899999792" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.334315999999134,51.59960899999792" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000081", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.431307999999354,51.58226299999854,7.431307999999354,51.58226299999854", + "point": "7.431307999999354,51.58226299999854", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Kleine Herrenthey", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "7.431307999999354", + "lat": "51.58226299999854" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.431307999999354,51.58226299999854" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000080", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.587437999999617,51.58956499999922,7.587437999999617,51.58956499999922", + "point": "7.587437999999617,51.58956499999922", + "startLcPosition": "25", + "display_type": "PARKING", + "subtitle": "Paschheide", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "7.587437999999617", + "lat": "51.58956499999922" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.587437999999617,51.58956499999922" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000079", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.73555399999978,51.606388999999595,7.73555399999978,51.606388999999595", + "point": "7.73555399999978,51.606388999999595", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Kolberg", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "7.73555399999978", + "lat": "51.606388999999595" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.73555399999978,51.606388999999595" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000077", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.8738639999998785,51.630308999999784,7.8738639999998785,51.630308999999784", + "point": "7.8738639999998785,51.630308999999784", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Rhynern S\u00fcd", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "7.8738639999998785", + "lat": "51.630308999999784" + }, + "description": [ + "PKW Stellpl\u00e4tze: 102", + "LKW Stellpl\u00e4tze: 83" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.8738639999998785,51.630308999999784" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000078", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.873201999999877,51.631748999999814,7.873201999999877,51.631748999999814", + "point": "7.873201999999877,51.631748999999814", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Rhynern Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "7.873201999999877", + "lat": "51.631748999999814" + }, + "description": [ + "PKW Stellpl\u00e4tze: 140", + "LKW Stellpl\u00e4tze: 100" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.873201999999877,51.631748999999814" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000076", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.935890999999907,51.67098499999986,7.935890999999907,51.67098499999986", + "point": "7.935890999999907,51.67098499999986", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Im Gro\u00dfen Klei", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "7.935890999999907", + "lat": "51.67098499999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.935890999999907,51.67098499999986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000074", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.979268999999926,51.723840999999894,7.979268999999926,51.723840999999894", + "point": "7.979268999999926,51.723840999999894", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Brunsberg", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "7.979268999999926", + "lat": "51.723840999999894" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.979268999999926,51.723840999999894" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000073", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.981131999999926,51.723857999999886,7.981131999999926,51.723857999999886", + "point": "7.981131999999926,51.723857999999886", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Stettin", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "7.981131999999926", + "lat": "51.723857999999886" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.981131999999926,51.723857999999886" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000071", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.073598999999955,51.79215399999994,8.073598999999955,51.79215399999994", + "point": "8.073598999999955,51.79215399999994", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Vellern", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "8.073598999999955", + "lat": "51.79215399999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.073598999999955,51.79215399999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000072", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.074787999999955,51.791521999999944,8.074787999999955,51.791521999999944", + "point": "8.074787999999955,51.791521999999944", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Vellern S\u00fcd", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "8.074787999999955", + "lat": "51.791521999999944" + }, + "description": [ + "PKW Stellpl\u00e4tze: 122", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.074787999999955,51.791521999999944" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000069", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.199930999999978,51.82642499999997,8.199930999999978,51.82642499999997", + "point": "8.199930999999978,51.82642499999997", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Marburg", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "8.199930999999978", + "lat": "51.82642499999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.199930999999978,51.82642499999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000070", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.200146999999978,51.82593899999998,8.200146999999978,51.82593899999998", + "point": "8.200146999999978,51.82593899999998", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "Am Berge", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "8.200146999999978", + "lat": "51.82593899999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.200146999999978,51.82593899999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000067", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.369126999999994,51.86606799999999,8.369126999999994,51.86606799999999", + "point": "8.369126999999994,51.86606799999999", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "G\u00fctersloh Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "8.369126999999994", + "lat": "51.86606799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 55", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.369126999999994,51.86606799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000066", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.370254999999995,51.865318999999985,8.370254999999995,51.865318999999985", + "point": "8.370254999999995,51.865318999999985", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "G\u00fctersloh S\u00fcd", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "8.370254999999995", + "lat": "51.865318999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 53", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.370254999999995,51.865318999999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000065", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.452702999999998,51.893232000000005,8.452702999999998,51.893232000000005", + "point": "8.452702999999998,51.893232000000005", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "S\u00fcrenheide", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "8.452702999999998", + "lat": "51.893232000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.452702999999998,51.893232000000005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000064", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.456329999999998,51.895895,8.456329999999998,51.895895", + "point": "8.456329999999998,51.895895", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Heideplatz", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "8.456329999999998", + "lat": "51.895895" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.456329999999998,51.895895" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000063", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.529508999999997,51.927791,8.529508999999997,51.927791", + "point": "8.529508999999997,51.927791", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Niedergassel", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "8.529508999999997", + "lat": "51.927791" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.529508999999997,51.927791" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000062", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.531933999999998,51.929291000000006,8.531933999999998,51.929291000000006", + "point": "8.531933999999998,51.929291000000006", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Obergassel", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "8.531933999999998", + "lat": "51.929291000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.531933999999998,51.929291000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.633352,52.019462000000004,8.633352,52.019462000000004", + "point": "8.633352,52.019462000000004", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Br\u00f6nninghausen", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "8.633352", + "lat": "52.019462000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.633352,52.019462000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000061", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.63481,52.018095999999986,8.63481,52.018095999999986", + "point": "8.63481,52.018095999999986", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Lipperland S\u00fcd", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "8.63481", + "lat": "52.018095999999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 158", + "LKW Stellpl\u00e4tze: 109" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.63481,52.018095999999986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000059", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.664697,52.07206,8.664697,52.07206", + "point": "8.664697,52.07206", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Lipperland Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "8.664697", + "lat": "52.07206" + }, + "description": [ + "PKW Stellpl\u00e4tze: 149", + "LKW Stellpl\u00e4tze: 96" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.664697,52.07206" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000058", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.719765,52.102575999999985,8.719765,52.102575999999985", + "point": "8.719765,52.102575999999985", + "startLcPosition": "59", + "display_type": "PARKING", + "subtitle": "Herford Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "8.719765", + "lat": "52.102575999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.719765,52.102575999999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000057", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.720686,52.10213199999999,8.720686,52.10213199999999", + "point": "8.720686,52.10213199999999", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Herford S\u00fcd", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "8.720686", + "lat": "52.10213199999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.720686,52.10213199999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000055", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.930938,52.211167999999994,8.930938,52.211167999999994", + "point": "8.930938,52.211167999999994", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "L\u00f6wenburg", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "8.930938", + "lat": "52.211167999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.930938,52.211167999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007344", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.934010000000002,52.211001999999986,8.934010000000002,52.211001999999986", + "point": "8.934010000000002,52.211001999999986", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Fuchsgrund (S\u00fcd)", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "8.934010000000002", + "lat": "52.211001999999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.934010000000002,52.211001999999986" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-372001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.055618,52.21902,9.055618,52.21902", + "point": "9.055618,52.21902", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Papenbrink N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "9.055618", + "lat": "52.21902" + }, + "description": [ + "PKW Stellpl\u00e4tze: 11", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.055618,52.21902" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-372002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.054136,52.217653,9.054136,52.217653", + "point": "9.054136,52.217653", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Papenbrink S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "9.054136", + "lat": "52.217653" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.054136,52.217653" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-372101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.222244,52.223363,9.222244,52.223363", + "point": "9.222244,52.223363", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "Auetal N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "9.222244", + "lat": "52.223363" + }, + "description": [ + "PKW Stellpl\u00e4tze: 111", + "LKW Stellpl\u00e4tze: 91" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.222244,52.223363" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-372104", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.16833,52.21577100000001,9.16833,52.21577100000001", + "point": "9.16833,52.21577100000001", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Bernser Kirchweg S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "9.16833", + "lat": "52.21577100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.16833,52.21577100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-372105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.307398,52.25798499999999,9.307398,52.25798499999999", + "point": "9.307398,52.25798499999999", + "startLcPosition": "73", + "display_type": "PARKING", + "subtitle": "Schafstrift N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "9.307398", + "lat": "52.25798499999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.307398,52.25798499999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-372102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.23209,52.226501000000006,9.23209,52.226501000000006", + "point": "9.23209,52.226501000000006", + "startLcPosition": "73", + "display_type": "PARKING", + "subtitle": "Auetal S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "9.23209", + "lat": "52.226501000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 147", + "LKW Stellpl\u00e4tze: 120" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.23209,52.226501000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-372103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.314116,52.262019,9.314116,52.262019", + "point": "9.314116,52.262019", + "startLcPosition": "75", + "display_type": "PARKING", + "subtitle": "Schafstrift S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "9.314116", + "lat": "52.262019" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.314116,52.262019" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-362201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.420964000000001,52.34807600000001,9.420964000000001,52.34807600000001", + "point": "9.420964000000001,52.34807600000001", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "B\u00fcckethaler Knick N (Bad Nenndorf N)", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "9.420964000000001", + "lat": "52.34807600000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 71", + "LKW Stellpl\u00e4tze: 175" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.420964000000001,52.34807600000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-362202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.422876,52.34591500000001,9.422876,52.34591500000001", + "point": "9.422876,52.34591500000001", + "startLcPosition": "78", + "display_type": "PARKING", + "subtitle": "B\u00fcckethaler Knick S (Bad Nenndorf S)", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "9.422876", + "lat": "52.34591500000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 79", + "LKW Stellpl\u00e4tze: 62" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.422876,52.34591500000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-005252", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.553318000000003,52.422056999999995,9.553318000000003,52.422056999999995", + "point": "9.553318000000003,52.422056999999995", + "startLcPosition": "80", + "display_type": "PARKING", + "subtitle": "Garbsen N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "9.553318000000003", + "lat": "52.422056999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 110", + "LKW Stellpl\u00e4tze: 120" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.553318000000003,52.422056999999995" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-352301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.565118000000004,52.421417999999996,9.565118000000004,52.421417999999996", + "point": "9.565118000000004,52.421417999999996", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "Garbsen S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "9.565118000000004", + "lat": "52.421417999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.565118000000004,52.421417999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-352401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.696235000000009,52.43097299999999,9.696235000000009,52.43097299999999", + "point": "9.696235000000009,52.43097299999999", + "startLcPosition": "87", + "display_type": "PARKING", + "subtitle": "Godshorn N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "9.696235000000009", + "lat": "52.43097299999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.696235000000009,52.43097299999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-352402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.755352000000016,52.426622999999985,9.755352000000016,52.426622999999985", + "point": "9.755352000000016,52.426622999999985", + "startLcPosition": "89", + "display_type": "PARKING", + "subtitle": "Vahrenheide S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "9.755352000000016", + "lat": "52.426622999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.755352000000016,52.426622999999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-352403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.823702000000026,52.42667599999998,9.823702000000026,52.42667599999998", + "point": "9.823702000000026,52.42667599999998", + "startLcPosition": "91", + "display_type": "PARKING", + "subtitle": "Varrelheide N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "9.823702000000026", + "lat": "52.42667599999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.823702000000026,52.42667599999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-352404", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.819886000000023,52.42657099999998,9.819886000000023,52.42657099999998", + "point": "9.819886000000023,52.42657099999998", + "startLcPosition": "91", + "display_type": "PARKING", + "subtitle": "Varrelheide S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "9.819886000000023", + "lat": "52.42657099999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.819886000000023,52.42657099999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-005250", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.997048000000062,52.3883979999999,9.997048000000062,52.3883979999999", + "point": "9.997048000000062,52.3883979999999", + "startLcPosition": "95", + "display_type": "PARKING", + "subtitle": "Lehrter See N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "9.997048000000062", + "lat": "52.3883979999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 118", + "LKW Stellpl\u00e4tze: 204" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.997048000000062,52.3883979999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-005355", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.999511000000064,52.386553999999904,9.999511000000064,52.386553999999904", + "point": "9.999511000000064,52.386553999999904", + "startLcPosition": "97", + "display_type": "PARKING", + "subtitle": "Lehrter See S\u00fcd", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "9.999511000000064", + "lat": "52.386553999999904" + }, + "description": [ + "PKW Stellpl\u00e4tze: 71", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.999511000000064,52.386553999999904" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-362603", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.165003000000139,52.36059099999975,10.165003000000139,52.36059099999975", + "point": "10.165003000000139,52.36059099999975", + "startLcPosition": "100", + "display_type": "PARKING", + "subtitle": "R\u00f6hrse N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "10.165003000000139", + "lat": "52.36059099999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 61" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.165003000000139,52.36059099999975" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-362602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.155308000000128,52.35988199999976,10.155308000000128,52.35988199999976", + "point": "10.155308000000128,52.35988199999976", + "startLcPosition": "101", + "display_type": "PARKING", + "subtitle": "R\u00f6hrse S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "10.155308000000128", + "lat": "52.35988199999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 62" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.155308000000128,52.35988199999976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-362802", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.355050000000286,52.3406189999994,10.355050000000286,52.3406189999994", + "point": "10.355050000000286,52.3406189999994", + "startLcPosition": "104", + "display_type": "PARKING", + "subtitle": "Zweidorfer Holz N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "10.355050000000286", + "lat": "52.3406189999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 88", + "LKW Stellpl\u00e4tze: 69" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.355050000000286,52.3406189999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-362801", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.360508000000292,52.33884599999937,10.360508000000292,52.33884599999937", + "point": "10.360508000000292,52.33884599999937", + "startLcPosition": "105", + "display_type": "PARKING", + "subtitle": "Zweidorfer Holz S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "10.360508000000292", + "lat": "52.33884599999937" + }, + "description": [ + "PKW Stellpl\u00e4tze: 129", + "LKW Stellpl\u00e4tze: 101" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.360508000000292,52.33884599999937" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-362901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.653812000000771,52.31010799999801,10.653812000000771,52.31010799999801", + "point": "10.653812000000771,52.31010799999801", + "startLcPosition": "111", + "display_type": "PARKING", + "subtitle": "Essehof N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "10.653812000000771", + "lat": "52.31010799999801" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.653812000000771,52.31010799999801" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-363001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.700518000000883,52.30729599999767,10.700518000000883,52.30729599999767", + "point": "10.700518000000883,52.30729599999767", + "startLcPosition": "112", + "display_type": "PARKING", + "subtitle": "Essehof S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "10.700518000000883", + "lat": "52.30729599999767" + }, + "description": [ + "PKW Stellpl\u00e4tze: 68", + "LKW Stellpl\u00e4tze: 49" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.700518000000883,52.30729599999767" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-363101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.843638000001304,52.306441999996196,10.843638000001304,52.306441999996196", + "point": "10.843638000001304,52.306441999996196", + "startLcPosition": "115", + "display_type": "PARKING", + "subtitle": "Uhry N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "10.843638000001304", + "lat": "52.306441999996196" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.843638000001304,52.306441999996196" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-363102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.842321000001302,52.304818999996215,10.842321000001302,52.304818999996215", + "point": "10.842321000001302,52.304818999996215", + "startLcPosition": "116", + "display_type": "PARKING", + "subtitle": "Uhry S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "10.842321000001302", + "lat": "52.304818999996215" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 70" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.842321000001302,52.304818999996215" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-373202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.023770000002047,52.233001999993355,11.023770000002047,52.233001999993355", + "point": "11.023770000002047,52.233001999993355", + "startLcPosition": "121", + "display_type": "PARKING", + "subtitle": "Helmstedt S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "11.023770000002047", + "lat": "52.233001999993355" + }, + "description": [ + "PKW Stellpl\u00e4tze: 71", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.023770000002047,52.233001999993355" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-373201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.0551490000022,52.22106799999271,11.0551490000022,52.22106799999271", + "point": "11.0551490000022,52.22106799999271", + "startLcPosition": "122", + "display_type": "PARKING", + "subtitle": "Lappwald N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "11.0551490000022", + "lat": "52.22106799999271" + }, + "description": [ + "PKW Stellpl\u00e4tze: 139", + "LKW Stellpl\u00e4tze: 110" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.0551490000022,52.22106799999271" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-373204", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.053709000002193,52.22027399999275,11.053709000002193,52.22027399999275", + "point": "11.053709000002193,52.22027399999275", + "startLcPosition": "123", + "display_type": "PARKING", + "subtitle": "Waldkater", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "11.053709000002193", + "lat": "52.22027399999275" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.053709000002193,52.22027399999275" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-373203", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.048800000002169,52.22190099999285,11.048800000002169,52.22190099999285", + "point": "11.048800000002169,52.22190099999285", + "startLcPosition": "123", + "display_type": "PARKING", + "subtitle": "RA A2 km 129 S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "11.048800000002169", + "lat": "52.22190099999285" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.048800000002169,52.22190099999285" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-002050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.080230000002329,52.215568999992165,11.080230000002329,52.215568999992165", + "point": "11.080230000002329,52.215568999992165", + "startLcPosition": "125", + "display_type": "PARKING", + "subtitle": "Marienborn ", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "11.080230000002329", + "lat": "52.215568999992165" + }, + "description": [ + "PKW Stellpl\u00e4tze: 115", + "LKW Stellpl\u00e4tze: 136" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.080230000002329,52.215568999992165" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-002041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.245480000003292,52.199782999987626,11.245480000003292,52.199782999987626", + "point": "11.245480000003292,52.199782999987626", + "startLcPosition": "126", + "display_type": "PARKING", + "subtitle": "Lorkberg Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "11.245480000003292", + "lat": "52.199782999987626" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.245480000003292,52.199782999987626" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-002040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.2465630000033,52.19847599998757,11.2465630000033,52.19847599998757", + "point": "11.2465630000033,52.19847599998757", + "startLcPosition": "128", + "display_type": "PARKING", + "subtitle": "Lorkberg Sued", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "11.2465630000033", + "lat": "52.19847599998757" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.2465630000033,52.19847599998757" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-002031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.452319000004781,52.18525599997903,11.452319000004781,52.18525599997903", + "point": "11.452319000004781,52.18525599997903", + "startLcPosition": "129", + "display_type": "PARKING", + "subtitle": "B\u00f6rde Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "11.452319000004781", + "lat": "52.18525599997903" + }, + "description": [ + "PKW Stellpl\u00e4tze: 126", + "LKW Stellpl\u00e4tze: 117" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.452319000004781,52.18525599997903" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-002030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.452171000004778,52.18339999997903,11.452171000004778,52.18339999997903", + "point": "11.452171000004778,52.18339999997903", + "startLcPosition": "131", + "display_type": "PARKING", + "subtitle": "B\u00f6rde Sued", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "11.452171000004778", + "lat": "52.18339999997903" + }, + "description": [ + "PKW Stellpl\u00e4tze: 60", + "LKW Stellpl\u00e4tze: 65" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.452171000004778,52.18339999997903" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-002021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.754016000007152,52.22822199995795,11.754016000007152,52.22822199995795", + "point": "11.754016000007152,52.22822199995795", + "startLcPosition": "136", + "display_type": "PARKING", + "subtitle": "Kr\u00e4henberge Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "11.754016000007152", + "lat": "52.22822199995795" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.754016000007152,52.22822199995795" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-002020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.754681000007155,52.22695499995789,11.754681000007155,52.22695499995789", + "point": "11.754681000007155,52.22695499995789", + "startLcPosition": "138", + "display_type": "PARKING", + "subtitle": "Kr\u00e4henberge Sued", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "11.754681000007155", + "lat": "52.22695499995789" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.754681000007155,52.22695499995789" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-001211", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.985801000008543,52.23615199993176,11.985801000008543,52.23615199993176", + "point": "11.985801000008543,52.23615199993176", + "startLcPosition": "140", + "display_type": "PARKING", + "subtitle": "Ihlegrund Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "11.985801000008543", + "lat": "52.23615199993176" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 49" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.985801000008543,52.23615199993176" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-001212", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.96764400000847,52.23507799993422,11.96764400000847,52.23507799993422", + "point": "11.96764400000847,52.23507799993422", + "startLcPosition": "141", + "display_type": "PARKING", + "subtitle": "Ihlegrund Sued", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "11.96764400000847", + "lat": "52.23507799993422" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 49" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.96764400000847,52.23507799993422" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-002010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.147838000008637,52.24494999990636,12.147838000008637,52.24494999990636", + "point": "12.147838000008637,52.24494999990636", + "startLcPosition": "142", + "display_type": "PARKING", + "subtitle": "W\u00fcstenforst Nord", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "12.147838000008637", + "lat": "52.24494999990636" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.147838000008637,52.24494999990636" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-002011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.142861000008658,52.24312599990723,12.142861000008658,52.24312599990723", + "point": "12.142861000008658,52.24312599990723", + "startLcPosition": "143", + "display_type": "PARKING", + "subtitle": "W\u00fcstenforst Sued", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "12.142861000008658", + "lat": "52.24312599990723" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.142861000008658,52.24312599990723" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-373901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.307746000007342,52.25190799987397,12.307746000007342,52.25190799987397", + "point": "12.307746000007342,52.25190799987397", + "startLcPosition": "144", + "display_type": "PARKING", + "subtitle": "Buckautal N", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "12.307746000007342", + "lat": "52.25190799987397" + }, + "description": [ + "PKW Stellpl\u00e4tze: 103", + "LKW Stellpl\u00e4tze: 65" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.307746000007342,52.25190799987397" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-373902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.309836000007316,52.250983999873526,12.309836000007316,52.250983999873526", + "point": "12.309836000007316,52.250983999873526", + "startLcPosition": "146", + "display_type": "PARKING", + "subtitle": "Buckautal S", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "12.309836000007316", + "lat": "52.250983999873526" + }, + "description": [ + "PKW Stellpl\u00e4tze: 103", + "LKW Stellpl\u00e4tze: 65" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.309836000007316,52.250983999873526" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.515211000001482,52.3419929998186,12.515211000001482,52.3419929998186", + "point": "12.515211000001482,52.3419929998186", + "startLcPosition": "147", + "display_type": "PARKING", + "subtitle": "Wendgr\u00e4ben", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "12.515211000001482", + "lat": "52.3419929998186" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 52" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.515211000001482,52.3419929998186" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364104", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.516849000001422,52.341358999818105,12.516849000001422,52.341358999818105", + "point": "12.516849000001422,52.341358999818105", + "startLcPosition": "148", + "display_type": "PARKING", + "subtitle": "Temnitz", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "12.516849000001422", + "lat": "52.341358999818105" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.516849000001422,52.341358999818105" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.642374999995045,52.339921999775605,12.642374999995045,52.339921999775605", + "point": "12.642374999995045,52.339921999775605", + "startLcPosition": "149", + "display_type": "PARKING", + "subtitle": "Rietzer See", + "title": "A2 | Kreuz Oberhausen (A 3/A 516)", + "coordinate": { + "long": "12.642374999995045", + "lat": "52.339921999775605" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.642374999995045,52.339921999775605" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.645403999994869,52.33815099977449,12.645403999994869,52.33815099977449", + "point": "12.645403999994869,52.33815099977449", + "startLcPosition": "152", + "display_type": "PARKING", + "subtitle": "Grebser Heide", + "title": "A2 | Berlin (A10)", + "coordinate": { + "long": "12.645403999994869", + "lat": "52.33815099977449" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.645403999994869,52.33815099977449" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A3": { + "parking_lorry": [ + { + "identifier": "DE-BY-000131", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.416121999971182,48.41522899931397,13.416121999971182,48.41522899931397", + "point": "13.416121999971182,48.41522899931397", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Vorstauraum Suben", + "title": "A3 | Linz", + "coordinate": { + "long": "13.416121999971182", + "lat": "48.41522899931397" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 65" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.416121999971182,48.41522899931397" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000130", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.375228999979031,48.4548329993506,13.375228999979031,48.4548329993506", + "point": "13.375228999979031,48.4548329993506", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Rottal W", + "title": "A3 | Linz", + "coordinate": { + "long": "13.375228999979031", + "lat": "48.4548329993506" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.375228999979031,48.4548329993506" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000129", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.375341999978767,48.46145099935042,13.375341999978767,48.46145099935042", + "point": "13.375341999978767,48.46145099935042", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Rottal O", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.375341999978767", + "lat": "48.46145099935042" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.375341999978767,48.46145099935042" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000127", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.389302999972086,48.55845199933683,13.389302999972086,48.55845199933683", + "point": "13.389302999972086,48.55845199933683", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Hammerbach", + "title": "A3 | Linz", + "coordinate": { + "long": "13.389302999972086", + "lat": "48.55845199933683" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.389302999972086,48.55845199933683" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000128", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.39835399997043,48.546095999328735,13.39835399997043,48.546095999328735", + "point": "13.39835399997043,48.546095999328735", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Brentermais ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.39835399997043", + "lat": "48.546095999328735" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.39835399997043,48.546095999328735" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000126", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.365275999976355,48.58951199935785,13.365275999976355,48.58951199935785", + "point": "13.365275999976355,48.58951199935785", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Donautal W", + "title": "A3 | Linz", + "coordinate": { + "long": "13.365275999976355", + "lat": "48.58951199935785" + }, + "description": [ + "PKW Stellpl\u00e4tze: 80", + "LKW Stellpl\u00e4tze: 66" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.365275999976355,48.58951199935785" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000125", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.366574999976107,48.588523999356724,13.366574999976107,48.588523999356724", + "point": "13.366574999976107,48.588523999356724", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Donautal O", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.366574999976107", + "lat": "48.588523999356724" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.366574999976107,48.588523999356724" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "tollTerminal.notAvailable", + "style": "not-available" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000124", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.350647999978401,48.62066899937029,13.350647999978401,48.62066899937029", + "point": "13.350647999978401,48.62066899937029", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Eichet ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.350647999978401", + "lat": "48.62066899937029" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.350647999978401,48.62066899937029" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000123", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.299104999988026,48.63566699941341,13.299104999988026,48.63566699941341", + "point": "13.299104999988026,48.63566699941341", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "J\u00e4gerh\u00f6lzl ", + "title": "A3 | Linz", + "coordinate": { + "long": "13.299104999988026", + "lat": "48.63566699941341" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.299104999988026,48.63566699941341" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000122", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.294808999988685,48.639444999416874,13.294808999988685,48.639444999416874", + "point": "13.294808999988685,48.639444999416874", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Stierwaid", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.294808999988685", + "lat": "48.639444999416874" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.294808999988685,48.639444999416874" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000120", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.236153999997322,48.67563099946254,13.236153999997322,48.67563099946254", + "point": "13.236153999997322,48.67563099946254", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Schaufelholz ", + "title": "A3 | Linz", + "coordinate": { + "long": "13.236153999997322", + "lat": "48.67563099946254" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.236153999997322,48.67563099946254" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000121", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.243059999996262,48.67553999945729,13.243059999996262,48.67553999945729", + "point": "13.243059999996262,48.67553999945729", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Gei\u00dfberg ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.243059999996262", + "lat": "48.67553999945729" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.243059999996262,48.67553999945729" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000119", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.154813000007087,48.720221999521,13.154813000007087,48.720221999521", + "point": "13.154813000007087,48.720221999521", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Scherbach ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.154813000007087", + "lat": "48.720221999521" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.154813000007087,48.720221999521" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000118", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.111908000011315,48.74082499954965,13.111908000011315,48.74082499954965", + "point": "13.111908000011315,48.74082499954965", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Ro\u00dfr\u00fcckholz ", + "title": "A3 | Linz", + "coordinate": { + "long": "13.111908000011315", + "lat": "48.74082499954965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.111908000011315,48.74082499954965" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000117", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.106698000011782,48.74358299955306,13.106698000011782,48.74358299955306", + "point": "13.106698000011782,48.74358299955306", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Birket ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.106698000011782", + "lat": "48.74358299955306" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.106698000011782,48.74358299955306" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008568", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.06726300001517,48.75788199957802,13.06726300001517,48.75788199957802", + "point": "13.06726300001517,48.75788199957802", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Ohetal Nord", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.06726300001517", + "lat": "48.75788199957802" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.06726300001517,48.75788199957802" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008569", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.065870000015309,48.757105999578876,13.065870000015309,48.757105999578876", + "point": "13.065870000015309,48.757105999578876", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Ohetal S\u00fcd", + "title": "A3 | Linz", + "coordinate": { + "long": "13.065870000015309", + "lat": "48.757105999578876" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.065870000015309,48.757105999578876" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000114", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.010395000019031,48.78798199961191,13.010395000019031,48.78798199961191", + "point": "13.010395000019031,48.78798199961191", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Griesweiher", + "title": "A3 | Linz", + "coordinate": { + "long": "13.010395000019031", + "lat": "48.78798199961191" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.010395000019031,48.78798199961191" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000112", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.980710000020718,48.80312999962868,12.980710000020718,48.80312999962868", + "point": "12.980710000020718,48.80312999962868", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Isarm\u00fcndung ", + "title": "A3 | Linz", + "coordinate": { + "long": "12.980710000020718", + "lat": "48.80312999962868" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.980710000020718,48.80312999962868" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000113", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.010852000018993,48.78842899961163,13.010852000018993,48.78842899961163", + "point": "13.010852000018993,48.78842899961163", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Konsee ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "13.010852000018993", + "lat": "48.78842899961163" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.010852000018993,48.78842899961163" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000110", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.857680000025663,48.86014899969197,12.857680000025663,48.86014899969197", + "point": "12.857680000025663,48.86014899969197", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Kronawitt S", + "title": "A3 | Arnheim", + "coordinate": { + "long": "12.857680000025663", + "lat": "48.86014899969197" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.857680000025663,48.86014899969197" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000111", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.856780000025706,48.85946999969242,12.856780000025706,48.85946999969242", + "point": "12.856780000025706,48.85946999969242", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Geigenb\u00fchl Nord", + "title": "A3 | Linz", + "coordinate": { + "long": "12.856780000025706", + "lat": "48.85946999969242" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.856780000025706,48.85946999969242" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000108", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.706375000028036,48.931065999757294,12.706375000028036,48.931065999757294", + "point": "12.706375000028036,48.931065999757294", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Bayerischer Wald S", + "title": "A3 | Linz", + "coordinate": { + "long": "12.706375000028036", + "lat": "48.931065999757294" + }, + "description": [ + "PKW Stellpl\u00e4tze: 97", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.706375000028036,48.931065999757294" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000107", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.706934000028024,48.93216699975707,12.706934000028024,48.93216699975707", + "point": "12.706934000028024,48.93216699975707", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Bayerischer Wald N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "12.706934000028024", + "lat": "48.93216699975707" + }, + "description": [ + "PKW Stellpl\u00e4tze: 169", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.706934000028024,48.93216699975707" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.419432000026388,48.992497999850045,12.419432000026388,48.992497999850045", + "point": "12.419432000026388,48.992497999850045", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "Wiesenttal S", + "title": "A3 | Linz", + "coordinate": { + "long": "12.419432000026388", + "lat": "48.992497999850045" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.419432000026388,48.992497999850045" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000106", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.420681000026399,48.99330099984971,12.420681000026399,48.99330099984971", + "point": "12.420681000026399,48.99330099984971", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Wellenbach N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "12.420681000026399", + "lat": "48.99330099984971" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.420681000026399,48.99330099984971" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.046971000018896,49.00134699992484,12.046971000018896,49.00134699992484", + "point": "12.046971000018896,49.00134699992484", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Sparlberg N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "12.046971000018896", + "lat": "49.00134699992484" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.046971000018896,49.00134699992484" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000100", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.994297000017697,49.00888599993228,11.994297000017697,49.00888599993228", + "point": "11.994297000017697,49.00888599993228", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Erlgrund N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.994297000017697", + "lat": "49.00888599993228" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.994297000017697,49.00888599993228" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000099", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.992820000017668,49.008818999932494,11.992820000017668,49.008818999932494", + "point": "11.992820000017668,49.008818999932494", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Erlgrund S", + "title": "A3 | Linz", + "coordinate": { + "long": "11.992820000017668", + "lat": "49.008818999932494" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.992820000017668,49.008818999932494" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000098", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.945240000016556,49.03249399993864,11.945240000016556,49.03249399993864", + "point": "11.945240000016556,49.03249399993864", + "startLcPosition": "51", + "display_type": "PARKING", + "subtitle": "Pollenried N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.945240000016556", + "lat": "49.03249399993864" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.945240000016556,49.03249399993864" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000095", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.869232000014708,49.12896999994748,11.869232000014708,49.12896999994748", + "point": "11.869232000014708,49.12896999994748", + "startLcPosition": "53", + "display_type": "PARKING", + "subtitle": "Lindaholz S\u00fcd", + "title": "A3 | Linz", + "coordinate": { + "long": "11.869232000014708", + "lat": "49.12896999994748" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.869232000014708,49.12896999994748" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000096", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.87288400001481,49.11732699994708,11.87288400001481,49.11732699994708", + "point": "11.87288400001481,49.11732699994708", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Hofschlag N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.87288400001481", + "lat": "49.11732699994708" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.87288400001481,49.11732699994708" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000094", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.83148400001386,49.16655799995145,11.83148400001386,49.16655799995145", + "point": "11.83148400001386,49.16655799995145", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Buchhausen S", + "title": "A3 | Linz", + "coordinate": { + "long": "11.83148400001386", + "lat": "49.16655799995145" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.83148400001386,49.16655799995145" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000093", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.828665000013803,49.16822299995172,11.828665000013803,49.16822299995172", + "point": "11.828665000013803,49.16822299995172", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Buchhausen N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.828665000013803", + "lat": "49.16822299995172" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.828665000013803,49.16822299995172" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008558", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.749760000012257,49.17647499995926,11.749760000012257,49.17647499995926", + "point": "11.749760000012257,49.17647499995926", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "H\u00fcttberg", + "title": "A3 | Linz", + "coordinate": { + "long": "11.749760000012257", + "lat": "49.17647499995926" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.749760000012257,49.17647499995926" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008559", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.74962400001225,49.177612999959265,11.74962400001225,49.177612999959265", + "point": "11.74962400001225,49.177612999959265", + "startLcPosition": "58", + "display_type": "PARKING", + "subtitle": "H\u00f6ll", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.74962400001225", + "lat": "49.177612999959265" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.74962400001225,49.177612999959265" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000091", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.687800000011105,49.18574899996445,11.687800000011105,49.18574899996445", + "point": "11.687800000011105,49.18574899996445", + "startLcPosition": "61", + "display_type": "PARKING", + "subtitle": "Spitzig Berg", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.687800000011105", + "lat": "49.18574899996445" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.687800000011105,49.18574899996445" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000088", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.645550000010312,49.222400999967654,11.645550000010312,49.222400999967654", + "point": "11.645550000010312,49.222400999967654", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Malerholz (wird aufgelassen)", + "title": "A3 | Linz", + "coordinate": { + "long": "11.645550000010312", + "lat": "49.222400999967654" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.645550000010312,49.222400999967654" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000089", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.652550000010448,49.20939999996715,11.652550000010448,49.20939999996715", + "point": "11.652550000010448,49.20939999996715", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Kalkhofen (wird aufgelassen) ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.652550000010448", + "lat": "49.20939999996715" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.652550000010448,49.20939999996715" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000087", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.61125000000969,49.255298999970066,11.61125000000969,49.255298999970066", + "point": "11.61125000000969,49.255298999970066", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Deusmauerermoor ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.61125000000969", + "lat": "49.255298999970066" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.61125000000969,49.255298999970066" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000086", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.600201000009491,49.2716879999708,11.600201000009491,49.2716879999708", + "point": "11.600201000009491,49.2716879999708", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Jura W", + "title": "A3 | Linz", + "coordinate": { + "long": "11.600201000009491", + "lat": "49.2716879999708" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 105" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.600201000009491,49.2716879999708" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000085", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.602177000009522,49.27138799997068,11.602177000009522,49.27138799997068", + "point": "11.602177000009522,49.27138799997068", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Jura O", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.602177000009522", + "lat": "49.27138799997068" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 74" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.602177000009522,49.27138799997068" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000082", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.494250000007828,49.31370199997725,11.494250000007828,49.31370199997725", + "point": "11.494250000007828,49.31370199997725", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Wolfstein (wird aufgelassen)", + "title": "A3 | Linz", + "coordinate": { + "long": "11.494250000007828", + "lat": "49.31370199997725" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.494250000007828,49.31370199997725" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000083", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.511500000008075,49.31430099997629,11.511500000008075,49.31430099997629", + "point": "11.511500000008075,49.31430099997629", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "R\u00f6dlberg (wird aufgelassen)", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.511500000008075", + "lat": "49.31430099997629" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.511500000008075,49.31430099997629" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000080", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.43600000000699,49.354049999980234,11.43600000000699,49.354049999980234", + "point": "11.43600000000699,49.354049999980234", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "Eichen\u00e4cker", + "title": "A3 | Linz", + "coordinate": { + "long": "11.43600000000699", + "lat": "49.354049999980234" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.43600000000699,49.354049999980234" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000078", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.33030000000566,49.38330099998484,11.33030000000566,49.38330099998484", + "point": "11.33030000000566,49.38330099998484", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Vogelherd (wird aufgelassen)", + "title": "A3 | Linz", + "coordinate": { + "long": "11.33030000000566", + "lat": "49.38330099998484" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.33030000000566,49.38330099998484" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000079", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.408750000006624,49.36650099998152,11.408750000006624,49.36650099998152", + "point": "11.408750000006624,49.36650099998152", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Klosterblick", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.408750000006624", + "lat": "49.36650099998152" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.408750000006624,49.36650099998152" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000076", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.269259000004963,49.435569999987045,11.269259000004963,49.435569999987045", + "point": "11.269259000004963,49.435569999987045", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "Ludergraben West", + "title": "A3 | Linz", + "coordinate": { + "long": "11.269259000004963", + "lat": "49.435569999987045" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.269259000004963,49.435569999987045" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000077", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.270960000004981,49.436051999987,11.270960000004981,49.436051999987", + "point": "11.270960000004981,49.436051999987", + "startLcPosition": "78", + "display_type": "PARKING", + "subtitle": "Ludergraben Ost (bisher Fuchsm\u00fchle)", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.270960000004981", + "lat": "49.436051999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.270960000004981,49.436051999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000074", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.066670000003132,49.52579899999259,11.066670000003132,49.52579899999259", + "point": "11.066670000003132,49.52579899999259", + "startLcPosition": "82", + "display_type": "PARKING", + "subtitle": "Wei\u00dfer Graben S", + "title": "A3 | Linz", + "coordinate": { + "long": "11.066670000003132", + "lat": "49.52579899999259" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.066670000003132,49.52579899999259" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000075", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.067050000003135,49.52682899999259,11.067050000003135,49.52682899999259", + "point": "11.067050000003135,49.52682899999259", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "Wei\u00dfer Graben N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "11.067050000003135", + "lat": "49.52682899999259" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.067050000003135,49.52682899999259" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000072", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.926532000002206,49.58143499999514,10.926532000002206,49.58143499999514", + "point": "10.926532000002206,49.58143499999514", + "startLcPosition": "87", + "display_type": "PARKING", + "subtitle": "Aurach S", + "title": "A3 | Linz", + "coordinate": { + "long": "10.926532000002206", + "lat": "49.58143499999514" + }, + "description": [ + "PKW Stellpl\u00e4tze: 82", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.926532000002206,49.58143499999514" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000071", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.929751000002224,49.58097599999509,10.929751000002224,49.58097599999509", + "point": "10.929751000002224,49.58097599999509", + "startLcPosition": "87", + "display_type": "PARKING", + "subtitle": "Aurach N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.929751000002224", + "lat": "49.58097599999509" + }, + "description": [ + "PKW Stellpl\u00e4tze: 110", + "LKW Stellpl\u00e4tze: 84" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.929751000002224,49.58097599999509" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000069", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.920250000002161,49.62070099999522,10.920250000002161,49.62070099999522", + "point": "10.920250000002161,49.62070099999522", + "startLcPosition": "88", + "display_type": "PARKING", + "subtitle": "Lachgraben", + "title": "A3 | Linz", + "coordinate": { + "long": "10.920250000002161", + "lat": "49.62070099999522" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.920250000002161,49.62070099999522" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000070", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.928300000002213,49.605948999995114,10.928300000002213,49.605948999995114", + "point": "10.928300000002213,49.605948999995114", + "startLcPosition": "89", + "display_type": "PARKING", + "subtitle": "Kleinauweiher", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.928300000002213", + "lat": "49.605948999995114" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.928300000002213,49.605948999995114" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000067", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.895051000002018,49.657180999995596,10.895051000002018,49.657180999995596", + "point": "10.895051000002018,49.657180999995596", + "startLcPosition": "91", + "display_type": "PARKING", + "subtitle": "Geierbusch", + "title": "A3 | Linz", + "coordinate": { + "long": "10.895051000002018", + "lat": "49.657180999995596" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.895051000002018,49.657180999995596" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000068", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.907850000002087,49.6453509999954,10.907850000002087,49.6453509999954", + "point": "10.907850000002087,49.6453509999954", + "startLcPosition": "92", + "display_type": "PARKING", + "subtitle": "R\u00f6hrh\u00f6lzer", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.907850000002087", + "lat": "49.6453509999954" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.907850000002087,49.6453509999954" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000065", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.879400000001935,49.668651999995795,10.879400000001935,49.668651999995795", + "point": "10.879400000001935,49.668651999995795", + "startLcPosition": "92", + "display_type": "PARKING", + "subtitle": "Brandweiher West", + "title": "A3 | Linz", + "coordinate": { + "long": "10.879400000001935", + "lat": "49.668651999995795" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.879400000001935,49.668651999995795" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000064", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.866865000001871,49.679318999995964,10.866865000001871,49.679318999995964", + "point": "10.866865000001871,49.679318999995964", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "Seeleite W", + "title": "A3 | Linz", + "coordinate": { + "long": "10.866865000001871", + "lat": "49.679318999995964" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.866865000001871,49.679318999995964" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000066", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.882672000001952,49.667672999995766,10.882672000001952,49.667672999995766", + "point": "10.882672000001952,49.667672999995766", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "Brandweiher Ost", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.882672000001952", + "lat": "49.667672999995766" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.882672000001952,49.667672999995766" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000061", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.843800000001753,49.712150999996254,10.843800000001753,49.712150999996254", + "point": "10.843800000001753,49.712150999996254", + "startLcPosition": "96", + "display_type": "PARKING", + "subtitle": "Steinknuck", + "title": "A3 | Linz", + "coordinate": { + "long": "10.843800000001753", + "lat": "49.712150999996254" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.843800000001753,49.712150999996254" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000059", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.807250000001583,49.73500099999668,10.807250000001583,49.73500099999668", + "point": "10.807250000001583,49.73500099999668", + "startLcPosition": "99", + "display_type": "PARKING", + "subtitle": "Limbacher Leiten", + "title": "A3 | Linz", + "coordinate": { + "long": "10.807250000001583", + "lat": "49.73500099999668" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.807250000001583,49.73500099999668" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.831150000001692,49.72109999999642,10.831150000001692,49.72109999999642", + "point": "10.831150000001692,49.72109999999642", + "startLcPosition": "99", + "display_type": "PARKING", + "subtitle": "V\u00f6gelsacker", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.831150000001692", + "lat": "49.72109999999642" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.831150000001692,49.72109999999642" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000057", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.780400000001471,49.737800999996956,10.780400000001471,49.737800999996956", + "point": "10.780400000001471,49.737800999996956", + "startLcPosition": "101", + "display_type": "PARKING", + "subtitle": "Flurholz", + "title": "A3 | Linz", + "coordinate": { + "long": "10.780400000001471", + "lat": "49.737800999996956" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.780400000001471,49.737800999996956" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000058", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.78281000000148,49.73849099999694,10.78281000000148,49.73849099999694", + "point": "10.78281000000148,49.73849099999694", + "startLcPosition": "102", + "display_type": "PARKING", + "subtitle": "Gl\u00f6cklein", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.78281000000148", + "lat": "49.73849099999694" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.78281000000148,49.73849099999694" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000054", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.683200000001111,49.730700999997836,10.683200000001111,49.730700999997836", + "point": "10.683200000001111,49.730700999997836", + "startLcPosition": "103", + "display_type": "PARKING", + "subtitle": "Schwarze F\u00f6hre", + "title": "A3 | Linz", + "coordinate": { + "long": "10.683200000001111", + "lat": "49.730700999997836" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.683200000001111,49.730700999997836" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000056", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.724032000001253,49.73078499999748,10.724032000001253,49.73078499999748", + "point": "10.724032000001253,49.73078499999748", + "startLcPosition": "103", + "display_type": "PARKING", + "subtitle": "Steigerwald S", + "title": "A3 | Linz", + "coordinate": { + "long": "10.724032000001253", + "lat": "49.73078499999748" + }, + "description": [ + "PKW Stellpl\u00e4tze: 130", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.724032000001253,49.73078499999748" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000055", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.72853700000127,49.73214399999745,10.72853700000127,49.73214399999745", + "point": "10.72853700000127,49.73214399999745", + "startLcPosition": "103", + "display_type": "PARKING", + "subtitle": "Steigerwald N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.72853700000127", + "lat": "49.73214399999745" + }, + "description": [ + "PKW Stellpl\u00e4tze: 74", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.72853700000127,49.73214399999745" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000053", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.675400000001087,49.73139999999788,10.675400000001087,49.73139999999788", + "point": "10.675400000001087,49.73139999999788", + "startLcPosition": "106", + "display_type": "PARKING", + "subtitle": "Elsendorf", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.675400000001087", + "lat": "49.73139999999788" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.675400000001087,49.73139999999788" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000051", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.580200000000808,49.7588999999985,10.580200000000808,49.7588999999985", + "point": "10.580200000000808,49.7588999999985", + "startLcPosition": "106", + "display_type": "PARKING", + "subtitle": "Heuchelheim S", + "title": "A3 | Linz", + "coordinate": { + "long": "10.580200000000808", + "lat": "49.7588999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.580200000000808,49.7588999999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000049", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.541400000000712,49.762649999998715,10.541400000000712,49.762649999998715", + "point": "10.541400000000712,49.762649999998715", + "startLcPosition": "108", + "display_type": "PARKING", + "subtitle": "\u00c4ppeleinsholz", + "title": "A3 | Linz", + "coordinate": { + "long": "10.541400000000712", + "lat": "49.762649999998715" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.541400000000712,49.762649999998715" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.55650000000075,49.76150099999864,10.55650000000075,49.76150099999864", + "point": "10.55650000000075,49.76150099999864", + "startLcPosition": "109", + "display_type": "PARKING", + "subtitle": "Mannlehen", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.55650000000075", + "lat": "49.76150099999864" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.55650000000075,49.76150099999864" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000048", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.521650000000667,49.76435099999881,10.521650000000667,49.76435099999881", + "point": "10.521650000000667,49.76435099999881", + "startLcPosition": "111", + "display_type": "PARKING", + "subtitle": "Wasserberndorf", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.521650000000667", + "lat": "49.76435099999881" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.521650000000667,49.76435099999881" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008548", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.432730000000491,49.785344999999154,10.432730000000491,49.785344999999154", + "point": "10.432730000000491,49.785344999999154", + "startLcPosition": "113", + "display_type": "PARKING", + "subtitle": "Obersambacher Wald S\u00fcd", + "title": "A3 | Linz", + "coordinate": { + "long": "10.432730000000491", + "lat": "49.785344999999154" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.432730000000491,49.785344999999154" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000043", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.395400000000432,49.77629899999929,10.395400000000432,49.77629899999929", + "point": "10.395400000000432,49.77629899999929", + "startLcPosition": "114", + "display_type": "PARKING", + "subtitle": "Friedrichsberg", + "title": "A3 | Linz", + "coordinate": { + "long": "10.395400000000432", + "lat": "49.77629899999929" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.395400000000432,49.77629899999929" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000045", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.433050000000494,49.78580099999917,10.433050000000494,49.78580099999917", + "point": "10.433050000000494,49.78580099999917", + "startLcPosition": "114", + "display_type": "PARKING", + "subtitle": "Obersambacher Wald Nord", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.433050000000494", + "lat": "49.78580099999917" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.433050000000494,49.78580099999917" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000044", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.393300000000432,49.77654999999928,10.393300000000432,49.77654999999928", + "point": "10.393300000000432,49.77654999999928", + "startLcPosition": "115", + "display_type": "PARKING", + "subtitle": "Wildpark", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.393300000000432", + "lat": "49.77654999999928" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.393300000000432,49.77654999999928" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.320850000000327,49.77354799999949,10.320850000000327,49.77354799999949", + "point": "10.320850000000327,49.77354799999949", + "startLcPosition": "116", + "display_type": "PARKING", + "subtitle": "Steigerwald-Blick", + "title": "A3 | Linz", + "coordinate": { + "long": "10.320850000000327", + "lat": "49.77354799999949" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.320850000000327,49.77354799999949" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000038", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.245889000000245,49.77961499999964,10.245889000000245,49.77961499999964", + "point": "10.245889000000245,49.77961499999964", + "startLcPosition": "118", + "display_type": "PARKING", + "subtitle": "Haidt S", + "title": "A3 | Linz", + "coordinate": { + "long": "10.245889000000245", + "lat": "49.77961499999964" + }, + "description": [ + "PKW Stellpl\u00e4tze: 63", + "LKW Stellpl\u00e4tze: 65" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.245889000000245,49.77961499999964" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.309800000000314,49.77619899999952,10.309800000000314,49.77619899999952", + "point": "10.309800000000314,49.77619899999952", + "startLcPosition": "119", + "display_type": "PARKING", + "subtitle": "Feuerbach", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.309800000000314", + "lat": "49.77619899999952" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.309800000000314,49.77619899999952" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000039", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.245248000000242,49.780625999999636,10.245248000000242,49.780625999999636", + "point": "10.245248000000242,49.780625999999636", + "startLcPosition": "120", + "display_type": "PARKING", + "subtitle": "Haidt N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.245248000000242", + "lat": "49.780625999999636" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 66" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.245248000000242,49.780625999999636" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft/Kiosk", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000037", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.181550000000188,49.78905099999974,10.181550000000188,49.78905099999974", + "point": "10.181550000000188,49.78905099999974", + "startLcPosition": "122", + "display_type": "PARKING", + "subtitle": "Hunnenh\u00fcgel", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.181550000000188", + "lat": "49.78905099999974" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.181550000000188,49.78905099999974" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000034", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.0395900000001,49.74953099999989,10.0395900000001,49.74953099999989", + "point": "10.0395900000001,49.74953099999989", + "startLcPosition": "123", + "display_type": "PARKING", + "subtitle": "Sandgraben (S\u00fcd)", + "title": "A3 | Linz", + "coordinate": { + "long": "10.0395900000001", + "lat": "49.74953099999989" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.0395900000001,49.74953099999989" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000035", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.055550000000107,49.76077999999986,10.055550000000107,49.76077999999986", + "point": "10.055550000000107,49.76077999999986", + "startLcPosition": "124", + "display_type": "PARKING", + "subtitle": "Sandgraben (Nord)", + "title": "A3 | Arnheim", + "coordinate": { + "long": "10.055550000000107", + "lat": "49.76077999999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.055550000000107,49.76077999999986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.962953000000068,49.75189699999993,9.962953000000068,49.75189699999993", + "point": "9.962953000000068,49.75189699999993", + "startLcPosition": "125", + "display_type": "PARKING", + "subtitle": "W\u00fcrzburg S\u00fcd", + "title": "A3 | Linz", + "coordinate": { + "long": "9.962953000000068", + "lat": "49.75189699999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 130", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.962953000000068,49.75189699999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000033", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.96113000000007,49.754981999999934,9.96113000000007,49.754981999999934", + "point": "9.96113000000007,49.754981999999934", + "startLcPosition": "127", + "display_type": "PARKING", + "subtitle": "W\u00fcrzburg N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "9.96113000000007", + "lat": "49.754981999999934" + }, + "description": [ + "PKW Stellpl\u00e4tze: 142", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.96113000000007,49.754981999999934" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.716129000000015,49.77349299999999,9.716129000000015,49.77349299999999", + "point": "9.716129000000015,49.77349299999999", + "startLcPosition": "131", + "display_type": "PARKING", + "subtitle": "Fronberg (S\u00fcd)", + "title": "A3 | Linz", + "coordinate": { + "long": "9.716129000000015", + "lat": "49.77349299999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.716129000000015,49.77349299999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.715447000000013,49.774691999999995,9.715447000000013,49.774691999999995", + "point": "9.715447000000013,49.774691999999995", + "startLcPosition": "132", + "display_type": "PARKING", + "subtitle": "Fronberg (Nord)", + "title": "A3 | Arnheim", + "coordinate": { + "long": "9.715447000000013", + "lat": "49.774691999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 81", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.715447000000013,49.774691999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000019", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.514740000000003,49.836138,9.514740000000003,49.836138", + "point": "9.514740000000003,49.836138", + "startLcPosition": "135", + "display_type": "PARKING", + "subtitle": "Kohlsberg S\u00fcd (bisher B\u00e4renroth)", + "title": "A3 | Linz", + "coordinate": { + "long": "9.514740000000003", + "lat": "49.836138" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.514740000000003,49.836138" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000014", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.394278000000002,49.895929,9.394278000000002,49.895929", + "point": "9.394278000000002,49.895929", + "startLcPosition": "135", + "display_type": "PARKING", + "subtitle": "Spessart S", + "title": "A3 | Linz", + "coordinate": { + "long": "9.394278000000002", + "lat": "49.895929" + }, + "description": [ + "PKW Stellpl\u00e4tze: 174", + "LKW Stellpl\u00e4tze: 134" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.394278000000002,49.895929" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.515673000000001,49.83788899999999,9.515673000000001,49.83788899999999", + "point": "9.515673000000001,49.83788899999999", + "startLcPosition": "136", + "display_type": "PARKING", + "subtitle": "Kohlsberg Nord (bisher B\u00e4renroth)", + "title": "A3 | Arnheim", + "coordinate": { + "long": "9.515673000000001", + "lat": "49.83788899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 58", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.515673000000001,49.83788899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.394361,49.897584,9.394361,49.897584", + "point": "9.394361,49.897584", + "startLcPosition": "137", + "display_type": "PARKING", + "subtitle": "Spessart N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "9.394361", + "lat": "49.897584" + }, + "description": [ + "PKW Stellpl\u00e4tze: 139", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.394361,49.897584" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.265351,49.980515000000004,9.265351,49.980515000000004", + "point": "9.265351,49.980515000000004", + "startLcPosition": "138", + "display_type": "PARKING", + "subtitle": "R\u00f6thenwald (bisher Lerchenrain S)", + "title": "A3 | Linz", + "coordinate": { + "long": "9.265351", + "lat": "49.980515000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.265351,49.980515000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.2454,49.99862000000001,9.2454,49.99862000000001", + "point": "9.2454,49.99862000000001", + "startLcPosition": "142", + "display_type": "PARKING", + "subtitle": "Birkenhain (bisher Schafwiese N)", + "title": "A3 | Arnheim", + "coordinate": { + "long": "9.2454", + "lat": "49.99862000000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 45", + "LKW Stellpl\u00e4tze: 44" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.2454,49.99862000000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.101738,49.990808,9.101738,49.990808", + "point": "9.101738,49.990808", + "startLcPosition": "147", + "display_type": "PARKING", + "subtitle": "Strietwald S", + "title": "A3 | Linz", + "coordinate": { + "long": "9.101738", + "lat": "49.990808" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.101738,49.990808" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.118244,49.995161,9.118244,49.995161", + "point": "9.118244,49.995161", + "startLcPosition": "148", + "display_type": "PARKING", + "subtitle": "Strietwald N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "9.118244", + "lat": "49.995161" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.118244,49.995161" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.991597,50.00269900000001,8.991597,50.00269900000001", + "point": "8.991597,50.00269900000001", + "startLcPosition": "152", + "display_type": "PARKING", + "subtitle": "Mainhausen W", + "title": "A3 | Linz", + "coordinate": { + "long": "8.991597", + "lat": "50.00269900000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.991597,50.00269900000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.991509,50.003713,8.991509,50.003713", + "point": "8.991509,50.003713", + "startLcPosition": "153", + "display_type": "PARKING", + "subtitle": "Mainhausen O", + "title": "A3 | Arnheim", + "coordinate": { + "long": "8.991509", + "lat": "50.003713" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.991509,50.003713" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300014", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.908237,50.055005,8.908237,50.055005", + "point": "8.908237,50.055005", + "startLcPosition": "153", + "display_type": "PARKING", + "subtitle": "Weiskirchen S", + "title": "A3 | Linz", + "coordinate": { + "long": "8.908237", + "lat": "50.055005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 94", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.908237,50.055005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.908833,50.05604600000001,8.908833,50.05604600000001", + "point": "8.908833,50.05604600000001", + "startLcPosition": "154", + "display_type": "PARKING", + "subtitle": "Weiskirchen N", + "title": "A3 | Arnheim", + "coordinate": { + "long": "8.908833", + "lat": "50.05604600000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 94", + "LKW Stellpl\u00e4tze: 78" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.908833,50.05604600000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.763613,50.06604600000001,8.763613,50.06604600000001", + "point": "8.763613,50.06604600000001", + "startLcPosition": "157", + "display_type": "PARKING", + "subtitle": "Hainbach W", + "title": "A3 | Linz", + "coordinate": { + "long": "8.763613", + "lat": "50.06604600000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.763613,50.06604600000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.764032,50.066976,8.764032,50.066976", + "point": "8.764032,50.066976", + "startLcPosition": "157", + "display_type": "PARKING", + "subtitle": "Hainbach O", + "title": "A3 | Arnheim", + "coordinate": { + "long": "8.764032", + "lat": "50.066976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.764032,50.066976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.634554999999999,50.05428400000002,8.634554999999999,50.05428400000002", + "point": "8.634554999999999,50.05428400000002", + "startLcPosition": "161", + "display_type": "PARKING", + "subtitle": "Stadtwald W", + "title": "A3 | Linz", + "coordinate": { + "long": "8.634554999999999", + "lat": "50.05428400000002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.634554999999999,50.05428400000002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.410982999999996,50.042410999999994,8.410982999999996,50.042410999999994", + "point": "8.410982999999996,50.042410999999994", + "startLcPosition": "166", + "display_type": "PARKING", + "subtitle": "Johannispfad", + "title": "A3 | Linz", + "coordinate": { + "long": "8.410982999999996", + "lat": "50.042410999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.410982999999996,50.042410999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.411410999999992,50.04334200000001,8.411410999999992,50.04334200000001", + "point": "8.411410999999992,50.04334200000001", + "startLcPosition": "167", + "display_type": "PARKING", + "subtitle": "Oberbach", + "title": "A3 | Arnheim", + "coordinate": { + "long": "8.411410999999992", + "lat": "50.04334200000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.411410999999992,50.04334200000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.352408999999993,50.095237000000004,8.352408999999993,50.095237000000004", + "point": "8.352408999999993,50.095237000000004", + "startLcPosition": "169", + "display_type": "PARKING", + "subtitle": "Medenbach W", + "title": "A3 | Linz", + "coordinate": { + "long": "8.352408999999993", + "lat": "50.095237000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 63", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.352408999999993,50.095237000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.352709999999993,50.097173999999995,8.352709999999993,50.097173999999995", + "point": "8.352709999999993,50.097173999999995", + "startLcPosition": "171", + "display_type": "PARKING", + "subtitle": "Medenbach O", + "title": "A3 | Arnheim", + "coordinate": { + "long": "8.352709999999993", + "lat": "50.097173999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 108", + "LKW Stellpl\u00e4tze: 63" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.352709999999993,50.097173999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.297006999999988,50.16373199999999,8.297006999999988,50.16373199999999", + "point": "8.297006999999988,50.16373199999999", + "startLcPosition": "171", + "display_type": "PARKING", + "subtitle": "Thei\u00dftal W", + "title": "A3 | Linz", + "coordinate": { + "long": "8.297006999999988", + "lat": "50.16373199999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 65", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.297006999999988,50.16373199999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.292986999999986,50.16939999999998,8.292986999999986,50.16939999999998", + "point": "8.292986999999986,50.16939999999998", + "startLcPosition": "173", + "display_type": "PARKING", + "subtitle": "Thei\u00dftal O", + "title": "A3 | Arnheim", + "coordinate": { + "long": "8.292986999999986", + "lat": "50.16939999999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 68", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.292986999999986,50.16939999999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.235081999999979,50.30008099999998,8.235081999999979,50.30008099999998", + "point": "8.235081999999979,50.30008099999998", + "startLcPosition": "174", + "display_type": "PARKING", + "subtitle": "Bad Camberg W", + "title": "A3 | Linz", + "coordinate": { + "long": "8.235081999999979", + "lat": "50.30008099999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 103", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.235081999999979,50.30008099999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.23650099999998,50.30125599999998,8.23650099999998,50.30125599999998", + "point": "8.23650099999998,50.30125599999998", + "startLcPosition": "176", + "display_type": "PARKING", + "subtitle": "Bad Camberg O", + "title": "A3 | Arnheim", + "coordinate": { + "long": "8.23650099999998", + "lat": "50.30125599999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 45", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.23650099999998,50.30125599999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-300001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.077605999999948,50.395312999999945,8.077605999999948,50.395312999999945", + "point": "8.077605999999948,50.395312999999945", + "startLcPosition": "178", + "display_type": "PARKING", + "subtitle": "Limburg O", + "title": "A3 | Arnheim", + "coordinate": { + "long": "8.077605999999948", + "lat": "50.395312999999945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.077605999999948,50.395312999999945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000028", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.873173999999861,50.454617999999805,7.873173999999861,50.454617999999805", + "point": "7.873173999999861,50.454617999999805", + "startLcPosition": "180", + "display_type": "PARKING", + "subtitle": "Heiligenroth ", + "title": "A3 | Linz", + "coordinate": { + "long": "7.873173999999861", + "lat": "50.454617999999805" + }, + "description": [ + "PKW Stellpl\u00e4tze: 81", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.873173999999861,50.454617999999805" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000029", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.928198999999892,50.42289199999985,7.928198999999892,50.42289199999985", + "point": "7.928198999999892,50.42289199999985", + "startLcPosition": "181", + "display_type": "PARKING", + "subtitle": "Nentershausen ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.928198999999892", + "lat": "50.42289199999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.928198999999892,50.42289199999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000027", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.850273999999848,50.44771699999977,7.850273999999848,50.44771699999977", + "point": "7.850273999999848,50.44771699999977", + "startLcPosition": "183", + "display_type": "PARKING", + "subtitle": "Montabaur ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.850273999999848", + "lat": "50.44771699999977" + }, + "description": [ + "PKW Stellpl\u00e4tze: 111", + "LKW Stellpl\u00e4tze: 69" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.850273999999848,50.44771699999977" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.733170999999752,50.4966539999996,7.733170999999752,50.4966539999996", + "point": "7.733170999999752,50.4966539999996", + "startLcPosition": "185", + "display_type": "PARKING", + "subtitle": "Welschehahn", + "title": "A3 | Linz", + "coordinate": { + "long": "7.733170999999752", + "lat": "50.4966539999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 2" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.733170999999752,50.4966539999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000023", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.67430699999969,50.52307299999947,7.67430699999969,50.52307299999947", + "point": "7.67430699999969,50.52307299999947", + "startLcPosition": "187", + "display_type": "PARKING", + "subtitle": "Sessenhausen ", + "title": "A3 | Linz", + "coordinate": { + "long": "7.67430699999969", + "lat": "50.52307299999947" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.67430699999969,50.52307299999947" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000024", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.694187999999713,50.52152599999951,7.694187999999713,50.52152599999951", + "point": "7.694187999999713,50.52152599999951", + "startLcPosition": "188", + "display_type": "PARKING", + "subtitle": "Landsberg a. d. Warthe ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.694187999999713", + "lat": "50.52152599999951" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.694187999999713,50.52152599999951" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.572292999999552,50.55517099999917,7.572292999999552,50.55517099999917", + "point": "7.572292999999552,50.55517099999917", + "startLcPosition": "190", + "display_type": "PARKING", + "subtitle": "M\u00e4rker Wald", + "title": "A3 | Linz", + "coordinate": { + "long": "7.572292999999552", + "lat": "50.55517099999917" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.572292999999552,50.55517099999917" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.58520199999957,50.54802999999922,7.58520199999957,50.54802999999922", + "point": "7.58520199999957,50.54802999999922", + "startLcPosition": "191", + "display_type": "PARKING", + "subtitle": "Urbacher Wald ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.58520199999957", + "lat": "50.54802999999922" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 44" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.58520199999957,50.54802999999922" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000019", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.434485999999291,50.59871399999857,7.434485999999291,50.59871399999857", + "point": "7.434485999999291,50.59871399999857", + "startLcPosition": "193", + "display_type": "PARKING", + "subtitle": "Fernthal ", + "title": "A3 | Linz", + "coordinate": { + "long": "7.434485999999291", + "lat": "50.59871399999857" + }, + "description": [ + "PKW Stellpl\u00e4tze: 172", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.434485999999291,50.59871399999857" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Hotel/Motel", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.479195999999387,50.5815639999988,7.479195999999387,50.5815639999988", + "point": "7.479195999999387,50.5815639999988", + "startLcPosition": "194", + "display_type": "PARKING", + "subtitle": "Epgert ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.479195999999387", + "lat": "50.5815639999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.479195999999387,50.5815639999988" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000018", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.418666999999255,50.61549299999849,7.418666999999255,50.61549299999849", + "point": "7.418666999999255,50.61549299999849", + "startLcPosition": "195", + "display_type": "PARKING", + "subtitle": "Pfaffenbach", + "title": "A3 | Linz", + "coordinate": { + "long": "7.418666999999255", + "lat": "50.61549299999849" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.418666999999255,50.61549299999849" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.358349999999105,50.63713799999811,7.358349999999105,50.63713799999811", + "point": "7.358349999999105,50.63713799999811", + "startLcPosition": "198", + "display_type": "PARKING", + "subtitle": "Hambitz", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.358349999999105", + "lat": "50.63713799999811" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.358349999999105,50.63713799999811" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000106", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.295585999998926,50.67432499999763,7.295585999998926,50.67432499999763", + "point": "7.295585999998926,50.67432499999763", + "startLcPosition": "199", + "display_type": "PARKING", + "subtitle": "Logebachtal (West)", + "title": "A3 | Linz", + "coordinate": { + "long": "7.295585999998926", + "lat": "50.67432499999763" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.295585999998926,50.67432499999763" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.296314999998929,50.67509899999765,7.296314999998929,50.67509899999765", + "point": "7.296314999998929,50.67509899999765", + "startLcPosition": "200", + "display_type": "PARKING", + "subtitle": "Logebachtal (Ost)", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.296314999998929", + "lat": "50.67509899999765" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.296314999998929,50.67509899999765" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000098", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.220107999998688,50.80678399999694,7.220107999998688,50.80678399999694", + "point": "7.220107999998688,50.80678399999694", + "startLcPosition": "201", + "display_type": "PARKING", + "subtitle": "Siegburg West", + "title": "A3 | Linz", + "coordinate": { + "long": "7.220107999998688", + "lat": "50.80678399999694" + }, + "description": [ + "PKW Stellpl\u00e4tze: 121", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.220107999998688,50.80678399999694" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000097", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.219980999998689,50.80895399999693,7.219980999998689,50.80895399999693", + "point": "7.219980999998689,50.80895399999693", + "startLcPosition": "203", + "display_type": "PARKING", + "subtitle": "Siegburg Ost", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.219980999998689", + "lat": "50.80895399999693" + }, + "description": [ + "PKW Stellpl\u00e4tze: 78", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.219980999998689,50.80895399999693" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007351", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.212412999998668,50.86035299999686,7.212412999998668,50.86035299999686", + "point": "7.212412999998668,50.86035299999686", + "startLcPosition": "205", + "display_type": "PARKING", + "subtitle": "S\u00fclztal ", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.212412999998668", + "lat": "50.86035299999686" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 43" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.212412999998668,50.86035299999686" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000093", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.152939999998443,50.89790199999617,7.152939999998443,50.89790199999617", + "point": "7.152939999998443,50.89790199999617", + "startLcPosition": "207", + "display_type": "PARKING", + "subtitle": "K\u00f6nigsforst West", + "title": "A3 | Linz", + "coordinate": { + "long": "7.152939999998443", + "lat": "50.89790199999617" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.152939999998443,50.89790199999617" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000092", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.151876999998438,50.899275999996156,7.151876999998438,50.899275999996156", + "point": "7.151876999998438,50.899275999996156", + "startLcPosition": "208", + "display_type": "PARKING", + "subtitle": "K\u00f6nigsforst Ost", + "title": "A3 | Arnheim", + "coordinate": { + "long": "7.151876999998438", + "lat": "50.899275999996156" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.151876999998438,50.899275999996156" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000123", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.987802999997697,51.08533299999358,6.987802999997697,51.08533299999358", + "point": "6.987802999997697,51.08533299999358", + "startLcPosition": "216", + "display_type": "PARKING", + "subtitle": "Reusrather Heide", + "title": "A3 | Linz", + "coordinate": { + "long": "6.987802999997697", + "lat": "51.08533299999358" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.987802999997697,51.08533299999358" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000122", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.989185999997703,51.085683999993634,6.989185999997703,51.085683999993634", + "point": "6.989185999997703,51.085683999993634", + "startLcPosition": "217", + "display_type": "PARKING", + "subtitle": "Reusrather Heide", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.989185999997703", + "lat": "51.085683999993634" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.989185999997703,51.085683999993634" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000121", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.96166199999757,51.15820199999308,6.96166199999757,51.15820199999308", + "point": "6.96166199999757,51.15820199999308", + "startLcPosition": "220", + "display_type": "PARKING", + "subtitle": "Ohligser Heide West", + "title": "A3 | Linz", + "coordinate": { + "long": "6.96166199999757", + "lat": "51.15820199999308" + }, + "description": [ + "PKW Stellpl\u00e4tze: 68", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.96166199999757,51.15820199999308" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000120", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.963881999997583,51.15774999999313,6.963881999997583,51.15774999999313", + "point": "6.963881999997583,51.15774999999313", + "startLcPosition": "220", + "display_type": "PARKING", + "subtitle": "Ohligser Heide Ost", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.963881999997583", + "lat": "51.15774999999313" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.963881999997583,51.15774999999313" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007356", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.909184999997287,51.23697699999195,6.909184999997287,51.23697699999195", + "point": "6.909184999997287,51.23697699999195", + "startLcPosition": "221", + "display_type": "PARKING", + "subtitle": "Stindertal", + "title": "A3 | Linz", + "coordinate": { + "long": "6.909184999997287", + "lat": "51.23697699999195" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.909184999997287,51.23697699999195" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-007355", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.9110629999972994,51.23735699999199,6.9110629999972994,51.23735699999199", + "point": "6.9110629999972994,51.23735699999199", + "startLcPosition": "223", + "display_type": "PARKING", + "subtitle": "Stinderhof", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.9110629999972994", + "lat": "51.23735699999199" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.9110629999972994,51.23735699999199" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000117", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.890769999997206,51.326474999991525,6.890769999997206,51.326474999991525", + "point": "6.890769999997206,51.326474999991525", + "startLcPosition": "225", + "display_type": "PARKING", + "subtitle": "H\u00f6sel Ost", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.890769999997206", + "lat": "51.326474999991525" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 43" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.890769999997206,51.326474999991525" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Hotel", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000116", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.827122999996809,51.36594099998985,6.827122999996809,51.36594099998985", + "point": "6.827122999996809,51.36594099998985", + "startLcPosition": "226", + "display_type": "PARKING", + "subtitle": "Entenfang", + "title": "A3 | Linz", + "coordinate": { + "long": "6.827122999996809", + "lat": "51.36594099998985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.827122999996809,51.36594099998985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000115", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.827382999996811,51.36725399998986,6.827382999996811,51.36725399998986", + "point": "6.827382999996811,51.36725399998986", + "startLcPosition": "228", + "display_type": "PARKING", + "subtitle": "Stockweg", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.827382999996811", + "lat": "51.36725399998986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 6", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.827382999996811,51.36725399998986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000114", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.795307999996687,51.57794999998893,6.795307999996687,51.57794999998893", + "point": "6.795307999996687,51.57794999998893", + "startLcPosition": "236", + "display_type": "PARKING", + "subtitle": "Sippenwies", + "title": "A3 | Linz", + "coordinate": { + "long": "6.795307999996687", + "lat": "51.57794999998893" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.795307999996687,51.57794999998893" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000113", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.77781899999658,51.60914399998839,6.77781899999658,51.60914399998839", + "point": "6.77781899999658,51.60914399998839", + "startLcPosition": "239", + "display_type": "PARKING", + "subtitle": "Bergschlag", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.77781899999658", + "lat": "51.60914399998839" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.77781899999658,51.60914399998839" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000112", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.745266999996362,51.63562899998733,6.745266999996362,51.63562899998733", + "point": "6.745266999996362,51.63562899998733", + "startLcPosition": "239", + "display_type": "PARKING", + "subtitle": "H\u00fcnxe West", + "title": "A3 | Linz", + "coordinate": { + "long": "6.745266999996362", + "lat": "51.63562899998733" + }, + "description": [ + "PKW Stellpl\u00e4tze: 72", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.745266999996362,51.63562899998733" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000111", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.746900999996374,51.63663299998738,6.746900999996374,51.63663299998738", + "point": "6.746900999996374,51.63663299998738", + "startLcPosition": "240", + "display_type": "PARKING", + "subtitle": "H\u00fcnxe Ost", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.746900999996374", + "lat": "51.63663299998738" + }, + "description": [ + "PKW Stellpl\u00e4tze: 94", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.746900999996374,51.63663299998738" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000110", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.707548999996106,51.677536999985996,6.707548999996106,51.677536999985996", + "point": "6.707548999996106,51.677536999985996", + "startLcPosition": "241", + "display_type": "PARKING", + "subtitle": "Loher Feld", + "title": "A3 | Linz", + "coordinate": { + "long": "6.707548999996106", + "lat": "51.677536999985996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.707548999996106,51.677536999985996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000108", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.6407669999956065,51.70501399998337,6.6407669999956065,51.70501399998337", + "point": "6.6407669999956065,51.70501399998337", + "startLcPosition": "244", + "display_type": "PARKING", + "subtitle": "Wispelt", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.6407669999956065", + "lat": "51.70501399998337" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.6407669999956065,51.70501399998337" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000107", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.615905999995417,51.7234119999823,6.615905999995417,51.7234119999823", + "point": "6.615905999995417,51.7234119999823", + "startLcPosition": "245", + "display_type": "PARKING", + "subtitle": "Kranekamp", + "title": "A3 | Linz", + "coordinate": { + "long": "6.615905999995417", + "lat": "51.7234119999823" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.615905999995417,51.7234119999823" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000104", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.566997999995032,51.75382399998,6.566997999995032,51.75382399998", + "point": "6.566997999995032,51.75382399998", + "startLcPosition": "247", + "display_type": "PARKING", + "subtitle": "Lichtholz", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.566997999995032", + "lat": "51.75382399998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.566997999995032,51.75382399998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.550348999994898,51.76266199997918,6.550348999994898,51.76266199997918", + "point": "6.550348999994898,51.76266199997918", + "startLcPosition": "247", + "display_type": "PARKING", + "subtitle": "Elsholt", + "title": "A3 | Linz", + "coordinate": { + "long": "6.550348999994898", + "lat": "51.76266199997918" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.550348999994898,51.76266199997918" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.514951999994605,51.778443999977284,6.514951999994605,51.778443999977284", + "point": "6.514951999994605,51.778443999977284", + "startLcPosition": "248", + "display_type": "PARKING", + "subtitle": "Wittenhorst", + "title": "A3 | Linz", + "coordinate": { + "long": "6.514951999994605", + "lat": "51.778443999977284" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.514951999994605,51.778443999977284" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000100", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.463469999994175,51.809298999974324,6.463469999994175,51.809298999974324", + "point": "6.463469999994175,51.809298999974324", + "startLcPosition": "250", + "display_type": "PARKING", + "subtitle": "Kattenhorst", + "title": "A3 | Linz", + "coordinate": { + "long": "6.463469999994175", + "lat": "51.809298999974324" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.463469999994175,51.809298999974324" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.507219999994541,51.782096999976865,6.507219999994541,51.782096999976865", + "point": "6.507219999994541,51.782096999976865", + "startLcPosition": "251", + "display_type": "PARKING", + "subtitle": "Helderloh", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.507219999994541", + "lat": "51.782096999976865" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.507219999994541,51.782096999976865" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000099", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.427105999993859,51.82091799997204,6.427105999993859,51.82091799997204", + "point": "6.427105999993859,51.82091799997204", + "startLcPosition": "253", + "display_type": "PARKING", + "subtitle": "K\u00e4lberweide", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.427105999993859", + "lat": "51.82091799997204" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.427105999993859,51.82091799997204" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000096", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.381737999993452,51.82733999996895,6.381737999993452,51.82733999996895", + "point": "6.381737999993452,51.82733999996895", + "startLcPosition": "253", + "display_type": "PARKING", + "subtitle": "Millingen", + "title": "A3 | Linz", + "coordinate": { + "long": "6.381737999993452", + "lat": "51.82733999996895" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.381737999993452,51.82733999996895" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000095", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.344188999993125,51.84210099996618,6.344188999993125,51.84210099996618", + "point": "6.344188999993125,51.84210099996618", + "startLcPosition": "255", + "display_type": "PARKING", + "subtitle": "Hetter", + "title": "A3 | Arnheim", + "coordinate": { + "long": "6.344188999993125", + "lat": "51.84210099996618" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.344188999993125,51.84210099996618" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000094", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.307798999992797,51.8458819999633,6.307798999992797,51.8458819999633", + "point": "6.307798999992797,51.8458819999633", + "startLcPosition": "256", + "display_type": "PARKING", + "subtitle": "L\u00f6wenberger Landwehr", + "title": "A3 | Linz", + "coordinate": { + "long": "6.307798999992797", + "lat": "51.8458819999633" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.307798999992797,51.8458819999633" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000091", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.195428999991839,51.87399399995312,6.195428999991839,51.87399399995312", + "point": "6.195428999991839,51.87399399995312", + "startLcPosition": "258", + "display_type": "PARKING", + "subtitle": "Hohe Heide", + "title": "A3 | Linz", + "coordinate": { + "long": "6.195428999991839", + "lat": "51.87399399995312" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.195428999991839,51.87399399995312" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000090", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.165201999991632,51.89777299995001,6.165201999991632,51.89777299995001", + "point": "6.165201999991632,51.89777299995001", + "startLcPosition": "261", + "display_type": "PARKING", + "subtitle": "Knauheide", + "title": "A3 | Linz", + "coordinate": { + "long": "6.165201999991632", + "lat": "51.89777299995001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 75", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.165201999991632,51.89777299995001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A4": { + "parking_lorry": [ + { + "identifier": "DE-NW-000149", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.025049999987769,50.81755899993357,6.025049999987769,50.81755899993357", + "point": "6.025049999987769,50.81755899993357", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Vetschau (S\u00fcd)", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "6.025049999987769", + "lat": "50.81755899993357" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.025049999987769,50.81755899993357" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007365", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.138966999989134,50.80332699994742,6.138966999989134,50.80332699994742", + "point": "6.138966999989134,50.80332699994742", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Toresberg (S\u00fcd)", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "6.138966999989134", + "lat": "50.80332699994742" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.138966999989134,50.80332699994742" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000151", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.214147999990121,50.81834199995517,6.214147999990121,50.81834199995517", + "point": "6.214147999990121,50.81834199995517", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Aachener Land Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "6.214147999990121", + "lat": "50.81834199995517" + }, + "description": [ + "PKW Stellpl\u00e4tze: 100", + "LKW Stellpl\u00e4tze: 92" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.214147999990121,50.81834199995517" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000152", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.216435999990147,50.81693699995538,6.216435999990147,50.81693699995538", + "point": "6.216435999990147,50.81693699995538", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Aachener Land S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "6.216435999990147", + "lat": "50.81693699995538" + }, + "description": [ + "PKW Stellpl\u00e4tze: 133", + "LKW Stellpl\u00e4tze: 82" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.216435999990147,50.81693699995538" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000153", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.4229899999927165,50.835792999971886,6.4229899999927165,50.835792999971886", + "point": "6.4229899999927165,50.835792999971886", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Rur-Scholle (Nord)", + "title": "A4 | Aachen", + "coordinate": { + "long": "6.4229899999927165", + "lat": "50.835792999971886" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.4229899999927165,50.835792999971886" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000154", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.423108999992716,50.8349109999719,6.423108999992716,50.8349109999719", + "point": "6.423108999992716,50.8349109999719", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Rur-Scholle (S\u00fcd)", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "6.423108999992716", + "lat": "50.8349109999719" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.423108999992716,50.8349109999719" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000155", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.774173999996225,50.92920099998829,6.774173999996225,50.92920099998829", + "point": "6.774173999996225,50.92920099998829", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Frechen Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "6.774173999996225", + "lat": "50.92920099998829" + }, + "description": [ + "PKW Stellpl\u00e4tze: 57", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.774173999996225,50.92920099998829" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000156", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.778488999996259,50.92846599998844,6.778488999996259,50.92846599998844", + "point": "6.778488999996259,50.92846599998844", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Frechen S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "6.778488999996259", + "lat": "50.92846599998844" + }, + "description": [ + "PKW Stellpl\u00e4tze: 70", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.778488999996259,50.92846599998844" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000158", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.113232999998284,50.946745999995656,7.113232999998284,50.946745999995656", + "point": "7.113232999998284,50.946745999995656", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Lustheide", + "title": "A4 | Aachen", + "coordinate": { + "long": "7.113232999998284", + "lat": "50.946745999995656" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.113232999998284,50.946745999995656" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000159", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.113734999998285,50.94616299999566,7.113734999998285,50.94616299999566", + "point": "7.113734999998285,50.94616299999566", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Lustheide", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "7.113734999998285", + "lat": "50.94616299999566" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.113734999998285,50.94616299999566" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000160", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.197099999998626,50.952963999996676,7.197099999998626,50.952963999996676", + "point": "7.197099999998626,50.952963999996676", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "R\u00f6ttgesberg", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "7.197099999998626", + "lat": "50.952963999996676" + }, + "description": [ + "PKW Stellpl\u00e4tze: 43", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.197099999998626,50.952963999996676" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000161", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.200004999998635,50.95200299999673,7.200004999998635,50.95200299999673", + "point": "7.200004999998635,50.95200299999673", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "R\u00f6ttgesberg", + "title": "A4 | Aachen", + "coordinate": { + "long": "7.200004999998635", + "lat": "50.95200299999673" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.200004999998635,50.95200299999673" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000162", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.318385999999026,50.95226299999782,7.318385999999026,50.95226299999782", + "point": "7.318385999999026,50.95226299999782", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Aggertal Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "7.318385999999026", + "lat": "50.95226299999782" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.318385999999026,50.95226299999782" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000163", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.3200949999990295,50.95126899999782,7.3200949999990295,50.95126899999782", + "point": "7.3200949999990295,50.95126899999782", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Aggertal S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "7.3200949999990295", + "lat": "50.95126899999782" + }, + "description": [ + "PKW Stellpl\u00e4tze: 48", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.3200949999990295,50.95126899999782" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000164", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.363657999999149,50.96761299999814,7.363657999999149,50.96761299999814", + "point": "7.363657999999149,50.96761299999814", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Erlenhof", + "title": "A4 | Aachen", + "coordinate": { + "long": "7.363657999999149", + "lat": "50.96761299999814" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.363657999999149,50.96761299999814" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000165", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.359651999999138,50.96561199999811,7.359651999999138,50.96561199999811", + "point": "7.359651999999138,50.96561199999811", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Erlenhof", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "7.359651999999138", + "lat": "50.96561199999811" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.359651999999138,50.96561199999811" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000166", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.448358999999349,50.978497999998645,7.448358999999349,50.978497999998645", + "point": "7.448358999999349,50.978497999998645", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Bellingroth", + "title": "A4 | Aachen", + "coordinate": { + "long": "7.448358999999349", + "lat": "50.978497999998645" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.448358999999349,50.978497999998645" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000167", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.442905999999335,50.98007899999863,7.442905999999335,50.98007899999863", + "point": "7.442905999999335,50.98007899999863", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Bellingroth", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "7.442905999999335", + "lat": "50.98007899999863" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.442905999999335,50.98007899999863" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000168", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.503374999999455,50.9762309999989,7.503374999999455,50.9762309999989", + "point": "7.503374999999455,50.9762309999989", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "H\u00f6meler Feld", + "title": "A4 | Aachen", + "coordinate": { + "long": "7.503374999999455", + "lat": "50.9762309999989" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.503374999999455,50.9762309999989" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000169", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.550098999999534,50.971465999999104,7.550098999999534,50.971465999999104", + "point": "7.550098999999534,50.971465999999104", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "Morkep\u00fctz (Nord)", + "title": "A4 | Aachen", + "coordinate": { + "long": "7.550098999999534", + "lat": "50.971465999999104" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.550098999999534,50.971465999999104" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000170", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.552428999999539,50.97059399999911,7.552428999999539,50.97059399999911", + "point": "7.552428999999539,50.97059399999911", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Morkep\u00fctz (S\u00fcd)", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "7.552428999999539", + "lat": "50.97059399999911" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.552428999999539,50.97059399999911" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000171", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.692340999999723,50.965913999999515,7.692340999999723,50.965913999999515", + "point": "7.692340999999723,50.965913999999515", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Hasbacher H\u00f6he (Nord)", + "title": "A4 | Aachen", + "coordinate": { + "long": "7.692340999999723", + "lat": "50.965913999999515" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.692340999999723,50.965913999999515" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000172", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.69067399999972,50.96496499999951,7.69067399999972,50.96496499999951", + "point": "7.69067399999972,50.96496499999951", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Hasbacher H\u00f6he (S\u00fcd)", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "7.69067399999972", + "lat": "50.96496499999951" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.69067399999972,50.96496499999951" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-400003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.87842400000004,50.90609199999995,9.87842400000004,50.90609199999995", + "point": "9.87842400000004,50.90609199999995", + "startLcPosition": "53", + "display_type": "PARKING", + "subtitle": "Seulingswald W", + "title": "A4 | Aachen", + "coordinate": { + "long": "9.87842400000004", + "lat": "50.90609199999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.87842400000004,50.90609199999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-400004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.881120000000037,50.90769399999995,9.881120000000037,50.90769399999995", + "point": "9.881120000000037,50.90769399999995", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Nadel\u00f6hr O", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "9.881120000000037", + "lat": "50.90769399999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.881120000000037,50.90769399999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-400002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.174503000000161,51.00894599999974,10.174503000000161,51.00894599999974", + "point": "10.174503000000161,51.00894599999974", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Burgberg", + "title": "A4 | Aachen", + "coordinate": { + "long": "10.174503000000161", + "lat": "51.00894599999974" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.174503000000161,51.00894599999974" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004211", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.252403000000223,51.007978999999615,10.252403000000223,51.007978999999615", + "point": "10.252403000000223,51.007978999999615", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "TR Eisenach", + "title": "A4 | 0", + "coordinate": { + "long": "10.252403000000223", + "lat": "51.007978999999615" + }, + "description": [ + "PKW Stellpl\u00e4tze: 233", + "LKW Stellpl\u00e4tze: 146" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.252403000000223,51.007978999999615" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-HE-400001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.183371000000166,51.00611399999973,10.183371000000166,51.00611399999973", + "point": "10.183371000000166,51.00611399999973", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "Werratal", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "10.183371000000166", + "lat": "51.00611399999973" + }, + "description": [ + "PKW Stellpl\u00e4tze: 135", + "LKW Stellpl\u00e4tze: 80" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.183371000000166,51.00611399999973" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.439191000000445,50.99265399999914,10.439191000000445,50.99265399999914", + "point": "10.439191000000445,50.99265399999914", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "PWC Hainich S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "10.439191000000445", + "lat": "50.99265399999914" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.439191000000445,50.99265399999914" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.445750000000459,50.9925879999991,10.445750000000459,50.9925879999991", + "point": "10.445750000000459,50.9925879999991", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "PWC Hainich Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "10.445750000000459", + "lat": "50.9925879999991" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.445750000000459,50.9925879999991" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004181", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.587467000000736,50.91289099999845,10.587467000000736,50.91289099999845", + "point": "10.587467000000736,50.91289099999845", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "TR H\u00f6rselgau", + "title": "A4 | Aachen", + "coordinate": { + "long": "10.587467000000736", + "lat": "50.91289099999845" + }, + "description": [ + "PKW Stellpl\u00e4tze: 168", + "LKW Stellpl\u00e4tze: 92" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.587467000000736,50.91289099999845" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-TH-004162", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.80960900000141,50.87788699999662,10.80960900000141,50.87788699999662", + "point": "10.80960900000141,50.87788699999662", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "PWC Drei Gleichen", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "10.80960900000141", + "lat": "50.87788699999662" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.80960900000141,50.87788699999662" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004131", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.072748000002711,50.91115699999237,11.072748000002711,50.91115699999237", + "point": "11.072748000002711,50.91115699999237", + "startLcPosition": "78", + "display_type": "PARKING", + "subtitle": "PWC Willroder Forst Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "11.072748000002711", + "lat": "50.91115699999237" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.072748000002711,50.91115699999237" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004132", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.072405000002707,50.91017499999238,11.072405000002707,50.91017499999238", + "point": "11.072405000002707,50.91017499999238", + "startLcPosition": "78", + "display_type": "PARKING", + "subtitle": "PWC Willroder Forst S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "11.072405000002707", + "lat": "50.91017499999238" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.072405000002707,50.91017499999238" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004121", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.195484000003535,50.94981799998924,11.195484000003535,50.94981799998924", + "point": "11.195484000003535,50.94981799998924", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "TR Eichelborn Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "11.195484000003535", + "lat": "50.94981799998924" + }, + "description": [ + "PKW Stellpl\u00e4tze: 93", + "LKW Stellpl\u00e4tze: 70" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.195484000003535,50.94981799998924" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004122", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.196690000003544,50.94819399998919,11.196690000003544,50.94819399998919", + "point": "11.196690000003544,50.94819399998919", + "startLcPosition": "82", + "display_type": "PARKING", + "subtitle": "TR Eichelborn S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "11.196690000003544", + "lat": "50.94819399998919" + }, + "description": [ + "PKW Stellpl\u00e4tze: 131", + "LKW Stellpl\u00e4tze: 90" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.196690000003544,50.94819399998919" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004111", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.354976000004873,50.93799199998361,11.354976000004873,50.93799199998361", + "point": "11.354976000004873,50.93799199998361", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "PWC Habichtsfang Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "11.354976000004873", + "lat": "50.93799199998361" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.354976000004873,50.93799199998361" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004112", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.355680000004877,50.93724199998356,11.355680000004877,50.93724199998356", + "point": "11.355680000004877,50.93724199998356", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "PWC Habichtsfang S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "11.355680000004877", + "lat": "50.93724199998356" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.355680000004877,50.93724199998356" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004071", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.666358000008294,50.8779229999655,11.666358000008294,50.8779229999655", + "point": "11.666358000008294,50.8779229999655", + "startLcPosition": "91", + "display_type": "PARKING", + "subtitle": "Rodablick Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "11.666358000008294", + "lat": "50.8779229999655" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.666358000008294,50.8779229999655" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004051", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.808934000010062,50.87686899995287,11.808934000010062,50.87686899995287", + "point": "11.808934000010062,50.87686899995287", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "RA Teufelstal Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "11.808934000010062", + "lat": "50.87686899995287" + }, + "description": [ + "PKW Stellpl\u00e4tze: 64", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.808934000010062,50.87686899995287" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004072", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.711111000008847,50.8743669999619,11.711111000008847,50.8743669999619", + "point": "11.711111000008847,50.8743669999619", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "Rodablick S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "11.711111000008847", + "lat": "50.8743669999619" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.711111000008847,50.8743669999619" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-004052", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.809163000010065,50.87606799995284,11.809163000010065,50.87606799995284", + "point": "11.809163000010065,50.87606799995284", + "startLcPosition": "94", + "display_type": "PARKING", + "subtitle": "RA Teufelstal S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "11.809163000010065", + "lat": "50.87606799995284" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.809163000010065,50.87606799995284" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-001121", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.948707000011735,50.889993999936955,11.948707000011735,50.889993999936955", + "point": "11.948707000011735,50.889993999936955", + "startLcPosition": "97", + "display_type": "PARKING", + "subtitle": "PWC T\u00fcmmelsberg Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "11.948707000011735", + "lat": "50.889993999936955" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.948707000011735,50.889993999936955" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-TH-001122", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.948618000011738,50.88902699993697,11.948618000011738,50.88902699993697", + "point": "11.948618000011738,50.88902699993697", + "startLcPosition": "97", + "display_type": "PARKING", + "subtitle": "PWC T\u00fcmmelsberg S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "11.948618000011738", + "lat": "50.88902699993697" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.948618000011738,50.88902699993697" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-TH-001159", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.307280000014417,50.86056099987464,12.307280000014417,50.86056099987464", + "point": "12.307280000014417,50.86056099987464", + "startLcPosition": "102", + "display_type": "PARKING", + "subtitle": "TR Altenburger Land Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "12.307280000014417", + "lat": "50.86056099987464" + }, + "description": [ + "PKW Stellpl\u00e4tze: 67", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.307280000014417,50.86056099987464" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-TH-004012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.314025000014434,50.85676599987313,12.314025000014434,50.85676599987313", + "point": "12.314025000014434,50.85676599987313", + "startLcPosition": "104", + "display_type": "PARKING", + "subtitle": "TR Altenburger Land S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "12.314025000014434", + "lat": "50.85676599987313" + }, + "description": [ + "PKW Stellpl\u00e4tze: 70", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.314025000014434,50.85676599987313" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.507441000012884,50.84079799982181,12.507441000012884,50.84079799982181", + "point": "12.507441000012884,50.84079799982181", + "startLcPosition": "108", + "display_type": "PARKING", + "subtitle": "Am Angerberg Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "12.507441000012884", + "lat": "50.84079799982181" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.507441000012884,50.84079799982181" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000038", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.62855400000988,50.82456499978168,12.62855400000988,50.82456499978168", + "point": "12.62855400000988,50.82456499978168", + "startLcPosition": "109", + "display_type": "PARKING", + "subtitle": "Oberwald", + "title": "A4 | Aachen", + "coordinate": { + "long": "12.62855400000988", + "lat": "50.82456499978168" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.62855400000988,50.82456499978168" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.509510000012853,50.83987499982119,12.509510000012853,50.83987499982119", + "point": "12.509510000012853,50.83987499982119", + "startLcPosition": "109", + "display_type": "PARKING", + "subtitle": "Am Angerberg S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "12.509510000012853", + "lat": "50.83987499982119" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.509510000012853,50.83987499982119" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000054", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.764379000003496,50.82171599972797,12.764379000003496,50.82171599972797", + "point": "12.764379000003496,50.82171599972797", + "startLcPosition": "114", + "display_type": "PARKING", + "subtitle": "Rabensteiner Wald", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "12.764379000003496", + "lat": "50.82171599972797" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.764379000003496,50.82171599972797" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.939848999987523,50.89261099964256,12.939848999987523,50.89261099964256", + "point": "12.939848999987523,50.89261099964256", + "startLcPosition": "117", + "display_type": "PARKING", + "subtitle": "Auerswalder Blick Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "12.939848999987523", + "lat": "50.89261099964256" + }, + "description": [ + "PKW Stellpl\u00e4tze: 146", + "LKW Stellpl\u00e4tze: 94" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.939848999987523,50.89261099964256" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000023", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.947842999986575,50.894738999638186,12.947842999986575,50.894738999638186", + "point": "12.947842999986575,50.894738999638186", + "startLcPosition": "119", + "display_type": "PARKING", + "subtitle": "Auerswalder Blick S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "12.947842999986575", + "lat": "50.894738999638186" + }, + "description": [ + "PKW Stellpl\u00e4tze: 108", + "LKW Stellpl\u00e4tze: 77" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.947842999986575,50.894738999638186" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000055", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.0725609999678,50.96107899956404,13.0725609999678,50.96107899956404", + "point": "13.0725609999678,50.96107899956404", + "startLcPosition": "120", + "display_type": "PARKING", + "subtitle": "Rossauer Wald Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "13.0725609999678", + "lat": "50.96107899956404" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.0725609999678,50.96107899956404" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000056", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.078928999966635,50.96534299955993,13.078928999966635,50.96534299955993", + "point": "13.078928999966635,50.96534299955993", + "startLcPosition": "122", + "display_type": "PARKING", + "subtitle": "Rossauer Wald S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "13.078928999966635", + "lat": "50.96534299955993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.078928999966635,50.96534299955993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.325474999905405,51.03925399937473,13.325474999905405,51.03925399937473", + "point": "13.325474999905405,51.03925399937473", + "startLcPosition": "125", + "display_type": "PARKING", + "subtitle": "Am Steinberg Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "13.325474999905405", + "lat": "51.03925399937473" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.325474999905405,51.03925399937473" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000018", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.32637799990514,51.03836299937395,13.32637799990514,51.03836299937395", + "point": "13.32637799990514,51.03836299937395", + "startLcPosition": "126", + "display_type": "PARKING", + "subtitle": "Am Steinberg S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "13.32637799990514", + "lat": "51.03836299937395" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.32637799990514,51.03836299937395" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000028", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.571170999798538,51.062674999130195,13.571170999798538,51.062674999130195", + "point": "13.571170999798538,51.062674999130195", + "startLcPosition": "127", + "display_type": "PARKING", + "subtitle": "Dresdner Tor Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "13.571170999798538", + "lat": "51.062674999130195" + }, + "description": [ + "PKW Stellpl\u00e4tze: 140", + "LKW Stellpl\u00e4tze: 137" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.571170999798538,51.062674999130195" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000029", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.57200199979816,51.060800999129235,13.57200199979816,51.060800999129235", + "point": "13.57200199979816,51.060800999129235", + "startLcPosition": "129", + "display_type": "PARKING", + "subtitle": "Dresdner Tor S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "13.57200199979816", + "lat": "51.060800999129235" + }, + "description": [ + "PKW Stellpl\u00e4tze: 88", + "LKW Stellpl\u00e4tze: 156" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.57200199979816,51.060800999129235" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.840743999591062,51.171851998775,13.840743999591062,51.171851998775", + "point": "13.840743999591062,51.171851998775", + "startLcPosition": "137", + "display_type": "PARKING", + "subtitle": "Am Eichelberg N", + "title": "A4 | Aachen", + "coordinate": { + "long": "13.840743999591062", + "lat": "51.171851998775" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.840743999591062,51.171851998775" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.841044999590833,51.17098099877453,13.841044999590833,51.17098099877453", + "point": "13.841044999590833,51.17098099877453", + "startLcPosition": "138", + "display_type": "PARKING", + "subtitle": "Am Eichelberg S", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "13.841044999590833", + "lat": "51.17098099877453" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.841044999590833,51.17098099877453" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000051", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.060525999329172,51.16780299840402,14.060525999329172,51.16780299840402", + "point": "14.060525999329172,51.16780299840402", + "startLcPosition": "141", + "display_type": "PARKING", + "subtitle": "R\u00f6dertal S", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "14.060525999329172", + "lat": "51.16780299840402" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.060525999329172,51.16780299840402" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000052", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.064285999323536,51.16966199839694,14.064285999323536,51.16966199839694", + "point": "14.064285999323536,51.16966199839694", + "startLcPosition": "141", + "display_type": "PARKING", + "subtitle": "R\u00f6dertal N", + "title": "A4 | Aachen", + "coordinate": { + "long": "14.064285999323536", + "lat": "51.16966199839694" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.064285999323536,51.16966199839694" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000049", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.331520998824361,51.199708997822846,14.331520998824361,51.199708997822846", + "point": "14.331520998824361,51.199708997822846", + "startLcPosition": "144", + "display_type": "PARKING", + "subtitle": "Oberlausitz N", + "title": "A4 | Aachen", + "coordinate": { + "long": "14.331520998824361", + "lat": "51.199708997822846" + }, + "description": [ + "PKW Stellpl\u00e4tze: 68", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.331520998824361,51.199708997822846" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.329135998830026,51.19847299782864,14.329135998830026,51.19847299782864", + "point": "14.329135998830026,51.19847299782864", + "startLcPosition": "145", + "display_type": "PARKING", + "subtitle": "Oberlausitz S", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "14.329135998830026", + "lat": "51.19847299782864" + }, + "description": [ + "PKW Stellpl\u00e4tze: 76", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.329135998830026,51.19847299782864" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.555841998197783,51.21127999721887,14.555841998197783,51.21127999721887", + "point": "14.555841998197783,51.21127999721887", + "startLcPosition": "147", + "display_type": "PARKING", + "subtitle": "L\u00f6bauer Wasser N", + "title": "A4 | Aachen", + "coordinate": { + "long": "14.555841998197783", + "lat": "51.21127999721887" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.555841998197783,51.21127999721887" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.55633799819628,51.21054799721741,14.55633799819628,51.21054799721741", + "point": "14.55633799819628,51.21054799721741", + "startLcPosition": "149", + "display_type": "PARKING", + "subtitle": "L\u00f6bauer Wasser S", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "14.55633799819628", + "lat": "51.21054799721741" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.55633799819628,51.21054799721741" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-001101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.683846997729603,51.20746899681664,14.683846997729603,51.20746899681664", + "point": "14.683846997729603,51.20746899681664", + "startLcPosition": "149", + "display_type": "PARKING", + "subtitle": "Am Wacheberg Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "14.683846997729603", + "lat": "51.20746899681664" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.683846997729603,51.20746899681664" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000019", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.684631997726589,51.20678399681402,14.684631997726589,51.20678399681402", + "point": "14.684631997726589,51.20678399681402", + "startLcPosition": "150", + "display_type": "PARKING", + "subtitle": "Am Wacheberg S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "14.684631997726589", + "lat": "51.20678399681402" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.684631997726589,51.20678399681402" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000065", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.871153996853305,51.219891996142415,14.871153996853305,51.219891996142415", + "point": "14.871153996853305,51.219891996142415", + "startLcPosition": "152", + "display_type": "PARKING", + "subtitle": "Wiesaer Forst N", + "title": "A4 | Aachen", + "coordinate": { + "long": "14.871153996853305", + "lat": "51.219891996142415" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.871153996853305,51.219891996142415" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000066", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.871856996849788,51.2190879961397,14.871856996849788,51.2190879961397", + "point": "14.871856996849788,51.2190879961397", + "startLcPosition": "153", + "display_type": "PARKING", + "subtitle": "Wiesaer Forst S", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "14.871856996849788", + "lat": "51.2190879961397" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.871856996849788,51.2190879961397" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.984956996203854,51.18729399567928,14.984956996203854,51.18729399567928", + "point": "14.984956996203854,51.18729399567928", + "startLcPosition": "156", + "display_type": "PARKING", + "subtitle": "An der Nei\u00dfe S\u00fcd", + "title": "A4 | G\u00f6rlitz", + "coordinate": { + "long": "14.984956996203854", + "lat": "51.18729399567928" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 72" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.984956996203854,51.18729399567928" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000039", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.993831996148103,51.1863509956413,14.993831996148103,51.1863509956413", + "point": "14.993831996148103,51.1863509956413", + "startLcPosition": "156", + "display_type": "PARKING", + "subtitle": "An der Nei\u00dfe Nord", + "title": "A4 | Aachen", + "coordinate": { + "long": "14.993831996148103", + "lat": "51.1863509956413" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 65" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.993831996148103,51.1863509956413" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A5": { + "parking_lorry": [ + { + "identifier": "DE-BW-005680", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.604160999999479,47.598483999999324,7.604160999999479,47.598483999999324", + "point": "7.604160999999479,47.598483999999324", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Weil am Rhein O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.604160999999479", + "lat": "47.598483999999324" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 54" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.604160999999479,47.598483999999324" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005675", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.592189999999457,47.61251099999928,7.592189999999457,47.61251099999928", + "point": "7.592189999999457,47.61251099999928", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Krebsbach", + "title": "A5 | Basel", + "coordinate": { + "long": "7.592189999999457", + "lat": "47.61251099999928" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.592189999999457,47.61251099999928" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-004530", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.525414999999317,47.70675599999903,7.525414999999317,47.70675599999903", + "point": "7.525414999999317,47.70675599999903", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Rheinaue", + "title": "A5 | Basel", + "coordinate": { + "long": "7.525414999999317", + "lat": "47.70675599999903" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.525414999999317,47.70675599999903" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005165", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.525572999999317,47.70762199999905,7.525572999999317,47.70762199999905", + "point": "7.525572999999317,47.70762199999905", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Fischergrund", + "title": "A5 | 0", + "coordinate": { + "long": "7.525572999999317", + "lat": "47.70762199999905" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.525572999999317,47.70762199999905" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005160", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.551899999999379,47.73735099999913,7.551899999999379,47.73735099999913", + "point": "7.551899999999379,47.73735099999913", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Bad Bellingen", + "title": "A5 | Basel", + "coordinate": { + "long": "7.551899999999379", + "lat": "47.73735099999913" + }, + "description": [ + "PKW Stellpl\u00e4tze: 75", + "LKW Stellpl\u00e4tze: 69" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.551899999999379,47.73735099999913" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005665", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.5512799999993785,47.74579999999914,7.5512799999993785,47.74579999999914", + "point": "7.5512799999993785,47.74579999999914", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Galgenloch", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.5512799999993785", + "lat": "47.74579999999914" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.5512799999993785,47.74579999999914" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005155", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.537545999999349,47.78877899999909,7.537545999999349,47.78877899999909", + "point": "7.537545999999349,47.78877899999909", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Blauenblick", + "title": "A5 | Basel", + "coordinate": { + "long": "7.537545999999349", + "lat": "47.78877899999909" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.537545999999349,47.78877899999909" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005660", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.538719999999352,47.789939999999106,7.538719999999352,47.789939999999106", + "point": "7.538719999999352,47.789939999999106", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Weidengrien", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.538719999999352", + "lat": "47.789939999999106" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.538719999999352,47.789939999999106" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005150", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.5624779999994045,47.83008699999918,7.5624779999994045,47.83008699999918", + "point": "7.5624779999994045,47.83008699999918", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Neuenburg-West", + "title": "A5 | Basel", + "coordinate": { + "long": "7.5624779999994045", + "lat": "47.83008699999918" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.5624779999994045,47.83008699999918" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005145", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.568799999999421,47.873099999999205,7.568799999999421,47.873099999999205", + "point": "7.568799999999421,47.873099999999205", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Streitkopf", + "title": "A5 | Basel", + "coordinate": { + "long": "7.568799999999421", + "lat": "47.873099999999205" + }, + "description": [ + "PKW Stellpl\u00e4tze: 4", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.568799999999421,47.873099999999205" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005655", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.5637579999994085,47.83005899999919,7.5637579999994085,47.83005899999919", + "point": "7.5637579999994085,47.83005899999919", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Neuenburg-Ost", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.5637579999994085", + "lat": "47.83005899999919" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.5637579999994085,47.83005899999919" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005650", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.570359999999424,47.87445799999921,7.570359999999424,47.87445799999921", + "point": "7.570359999999424,47.87445799999921", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "K\u00f6pfle", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.570359999999424", + "lat": "47.87445799999921" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.570359999999424,47.87445799999921" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005140", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.596139999999477,47.921477999999276,7.596139999999477,47.921477999999276", + "point": "7.596139999999477,47.921477999999276", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Sandbuck", + "title": "A5 | Basel", + "coordinate": { + "long": "7.596139999999477", + "lat": "47.921477999999276" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.596139999999477,47.921477999999276" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005645", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.598129999999482,47.922610999999286,7.598129999999482,47.922610999999286", + "point": "7.598129999999482,47.922610999999286", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Neustock", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.598129999999482", + "lat": "47.922610999999286" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.598129999999482,47.922610999999286" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005135", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.638889999999553,47.94560999999941,7.638889999999553,47.94560999999941", + "point": "7.638889999999553,47.94560999999941", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Hardt", + "title": "A5 | Basel", + "coordinate": { + "long": "7.638889999999553", + "lat": "47.94560999999941" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.638889999999553,47.94560999999941" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005640", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.653705999999579,47.948634999999435,7.653705999999579,47.948634999999435", + "point": "7.653705999999579,47.948634999999435", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Seltenbach", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.653705999999579", + "lat": "47.948634999999435" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.653705999999579,47.948634999999435" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005635", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.7215559999996755,47.970410999999594,7.7215559999996755,47.970410999999594", + "point": "7.7215559999996755,47.970410999999594", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Breisgau O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.7215559999996755", + "lat": "47.970410999999594" + }, + "description": [ + "PKW Stellpl\u00e4tze: 147", + "LKW Stellpl\u00e4tze: 54" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.7215559999996755,47.970410999999594" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005130", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.744292999999706,47.98853099999964,7.744292999999706,47.98853099999964", + "point": "7.744292999999706,47.98853099999964", + "startLcPosition": "25", + "display_type": "PARKING", + "subtitle": "Moos", + "title": "A5 | Basel", + "coordinate": { + "long": "7.744292999999706", + "lat": "47.98853099999964" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.744292999999706,47.98853099999964" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005630", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.746331999999708,47.989365999999634,7.746331999999708,47.989365999999634", + "point": "7.746331999999708,47.989365999999634", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Schlatthof", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.746331999999708", + "lat": "47.989365999999634" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.746331999999708,47.989365999999634" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005125", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.810576999999777,48.04985799999974,7.810576999999777,48.04985799999974", + "point": "7.810576999999777,48.04985799999974", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Schauinsland W", + "title": "A5 | Basel", + "coordinate": { + "long": "7.810576999999777", + "lat": "48.04985799999974" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.810576999999777,48.04985799999974" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005120", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.799359999999766,48.08533099999972,7.799359999999766,48.08533099999972", + "point": "7.799359999999766,48.08533099999972", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Glotter", + "title": "A5 | Basel", + "coordinate": { + "long": "7.799359999999766", + "lat": "48.08533099999972" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.799359999999766,48.08533099999972" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005625", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.795409999999764,48.0937499999997,7.795409999999764,48.0937499999997", + "point": "7.795409999999764,48.0937499999997", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "H\u00f6lzle", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.795409999999764", + "lat": "48.0937499999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.795409999999764,48.0937499999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005115", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.784689999999754,48.120990999999684,7.784689999999754,48.120990999999684", + "point": "7.784689999999754,48.120990999999684", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Berschig", + "title": "A5 | Basel", + "coordinate": { + "long": "7.784689999999754", + "lat": "48.120990999999684" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.784689999999754,48.120990999999684" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005110", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.751874999999717,48.16955899999964,7.751874999999717,48.16955899999964", + "point": "7.751874999999717,48.16955899999964", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Elz", + "title": "A5 | Basel", + "coordinate": { + "long": "7.751874999999717", + "lat": "48.16955899999964" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.751874999999717,48.16955899999964" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.745289999999711,48.20091999999964,7.745289999999711,48.20091999999964", + "point": "7.745289999999711,48.20091999999964", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Kreuzfeld", + "title": "A5 | Basel", + "coordinate": { + "long": "7.745289999999711", + "lat": "48.20091999999964" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.745289999999711,48.20091999999964" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005620", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.778599999999747,48.13299899999968,7.778599999999747,48.13299899999968", + "point": "7.778599999999747,48.13299899999968", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Ferner", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.778599999999747", + "lat": "48.13299899999968" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.778599999999747,48.13299899999968" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005610", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.746219999999713,48.19947099999963,7.746219999999713,48.19947099999963", + "point": "7.746219999999713,48.19947099999963", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Erlenspitz", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.746219999999713", + "lat": "48.19947099999963" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.746219999999713,48.19947099999963" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005615", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.752059999999718,48.17110099999965,7.752059999999718,48.17110099999965", + "point": "7.752059999999718,48.17110099999965", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Ziegelei", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.752059999999718", + "lat": "48.17110099999965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.752059999999718,48.17110099999965" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005605", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.791287999999763,48.308468999999704,7.791287999999763,48.308468999999704", + "point": "7.791287999999763,48.308468999999704", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Mahlberg O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.791287999999763", + "lat": "48.308468999999704" + }, + "description": [ + "PKW Stellpl\u00e4tze: 68", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.791287999999763,48.308468999999704" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005100", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.789465999999762,48.30946499999971,7.789465999999762,48.30946499999971", + "point": "7.789465999999762,48.30946499999971", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Mahlberg W", + "title": "A5 | Basel", + "coordinate": { + "long": "7.789465999999762", + "lat": "48.30946499999971" + }, + "description": [ + "PKW Stellpl\u00e4tze: 90", + "LKW Stellpl\u00e4tze: 64" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.789465999999762,48.30946499999971" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005095", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.801390999999773,48.36622899999972,7.801390999999773,48.36622899999972", + "point": "7.801390999999773,48.36622899999972", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "K\u00fcrzell", + "title": "A5 | Basel", + "coordinate": { + "long": "7.801390999999773", + "lat": "48.36622899999972" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.801390999999773,48.36622899999972" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005600", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.789409999999762,48.3354989999997,7.789409999999762,48.3354989999997", + "point": "7.789409999999762,48.3354989999997", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Limbruck", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.789409999999762", + "lat": "48.3354989999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.789409999999762,48.3354989999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005595", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.803581999999776,48.367266999999714,7.803581999999776,48.367266999999714", + "point": "7.803581999999776,48.367266999999714", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Gerstenmatt", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.803581999999776", + "lat": "48.367266999999714" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.803581999999776,48.367266999999714" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005090", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.855461999999821,48.402960999999785,7.855461999999821,48.402960999999785", + "point": "7.855461999999821,48.402960999999785", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Unditz", + "title": "A5 | Basel", + "coordinate": { + "long": "7.855461999999821", + "lat": "48.402960999999785" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.855461999999821,48.402960999999785" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005085", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.884755999999844,48.42437499999981,7.884755999999844,48.42437499999981", + "point": "7.884755999999844,48.42437499999981", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "H\u00f6fen", + "title": "A5 | Basel", + "coordinate": { + "long": "7.884755999999844", + "lat": "48.42437499999981" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.884755999999844,48.42437499999981" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005590", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.856152999999822,48.40227099999979,7.856152999999822,48.40227099999979", + "point": "7.856152999999822,48.40227099999979", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Schutter", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.856152999999822", + "lat": "48.40227099999979" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.856152999999822,48.40227099999979" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005585", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.886672999999846,48.425432999999806,7.886672999999846,48.425432999999806", + "point": "7.886672999999846,48.425432999999806", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Korb", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.886672999999846", + "lat": "48.425432999999806" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.886672999999846,48.425432999999806" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005080", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.903176999999857,48.49915099999981,7.903176999999857,48.49915099999981", + "point": "7.903176999999857,48.49915099999981", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Gottswald", + "title": "A5 | Basel", + "coordinate": { + "long": "7.903176999999857", + "lat": "48.49915099999981" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.903176999999857,48.49915099999981" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005075", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.955923999999889,48.56302699999988,7.955923999999889,48.56302699999988", + "point": "7.955923999999889,48.56302699999988", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "Renchtal W", + "title": "A5 | Basel", + "coordinate": { + "long": "7.955923999999889", + "lat": "48.56302699999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 96", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.955923999999889,48.56302699999988" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005580", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.905023999999859,48.49952099999984,7.905023999999859,48.49952099999984", + "point": "7.905023999999859,48.49952099999984", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "Waldmatten", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.905023999999859", + "lat": "48.49952099999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.905023999999859,48.49952099999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005575", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.957566999999891,48.56268799999987,7.957566999999891,48.56268799999987", + "point": "7.957566999999891,48.56268799999987", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "Renchtal O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "7.957566999999891", + "lat": "48.56268799999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 74", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.957566999999891,48.56268799999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005070", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.036263999999926,48.658727999999925,8.036263999999926,48.658727999999925", + "point": "8.036263999999926,48.658727999999925", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Feldmatt", + "title": "A5 | Basel", + "coordinate": { + "long": "8.036263999999926", + "lat": "48.658727999999925" + }, + "description": [ + "PKW Stellpl\u00e4tze: 51", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.036263999999926,48.658727999999925" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005570", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.055374999999936,48.67405899999993,8.055374999999936,48.67405899999993", + "point": "8.055374999999936,48.67405899999993", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Brachfeld", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.055374999999936", + "lat": "48.67405899999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.055374999999936,48.67405899999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005065", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.114482999999952,48.73860299999995,8.114482999999952,48.73860299999995", + "point": "8.114482999999952,48.73860299999995", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Oberfeld", + "title": "A5 | Basel", + "coordinate": { + "long": "8.114482999999952", + "lat": "48.73860299999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.114482999999952,48.73860299999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005565", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.132055999999958,48.75424999999996,8.132055999999958,48.75424999999996", + "point": "8.132055999999958,48.75424999999996", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "B\u00fchl O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.132055999999958", + "lat": "48.75424999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 125", + "LKW Stellpl\u00e4tze: 130" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.132055999999958,48.75424999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.182028999999968,48.80979099999997,8.182028999999968,48.80979099999997", + "point": "8.182028999999968,48.80979099999997", + "startLcPosition": "51", + "display_type": "PARKING", + "subtitle": "Baden-Baden W", + "title": "A5 | Basel", + "coordinate": { + "long": "8.182028999999968", + "lat": "48.80979099999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 166", + "LKW Stellpl\u00e4tze: 138" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.182028999999968,48.80979099999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005055", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.288923999999986,48.88904399999998,8.288923999999986,48.88904399999998", + "point": "8.288923999999986,48.88904399999998", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Silbergrund", + "title": "A5 | Basel", + "coordinate": { + "long": "8.288923999999986", + "lat": "48.88904399999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.288923999999986,48.88904399999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005560", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.289129999999986,48.88843899999998,8.289129999999986,48.88843899999998", + "point": "8.289129999999986,48.88843899999998", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Schleifweg", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.289129999999986", + "lat": "48.88843899999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.289129999999986,48.88843899999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.507364000000003,49.069152,8.507364000000003,49.069152", + "point": "8.507364000000003,49.069152", + "startLcPosition": "61", + "display_type": "PARKING", + "subtitle": "Kreuzlach", + "title": "A5 | Basel", + "coordinate": { + "long": "8.507364000000003", + "lat": "49.069152" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.507364000000003,49.069152" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005555", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.487299999999996,49.039051,8.487299999999996,49.039051", + "point": "8.487299999999996,49.039051", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "RA A5 km 619,3 O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.487299999999996", + "lat": "49.039051" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.487299999999996,49.039051" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005045", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.541279999999999,49.103568999999986,8.541279999999999,49.103568999999986", + "point": "8.541279999999999,49.103568999999986", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "RA A5 km 611 W", + "title": "A5 | Basel", + "coordinate": { + "long": "8.541279999999999", + "lat": "49.103568999999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.541279999999999,49.103568999999986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005545", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.542559999999998,49.103759999999994,8.542559999999998,49.103759999999994", + "point": "8.542559999999998,49.103759999999994", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "RA A5 km 611 O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.542559999999998", + "lat": "49.103759999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.542559999999998,49.103759999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005550", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.510067999999997,49.071418000000016,8.510067999999997,49.071418000000016", + "point": "8.510067999999997,49.071418000000016", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "H\u00f6fenschlag", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.510067999999997", + "lat": "49.071418000000016" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.510067999999997,49.071418000000016" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005035", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.591035,49.19840500000001,8.591035,49.19840500000001", + "point": "8.591035,49.19840500000001", + "startLcPosition": "65", + "display_type": "PARKING", + "subtitle": "RA A5 km 599,7 Ri. Weil am Rhein", + "title": "A5 | Basel", + "coordinate": { + "long": "8.591035", + "lat": "49.19840500000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.591035,49.19840500000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.567837999999998,49.16189899999998,8.567837999999998,49.16189899999998", + "point": "8.567837999999998,49.16189899999998", + "startLcPosition": "65", + "display_type": "PARKING", + "subtitle": "Bruchsal-West", + "title": "A5 | Basel", + "coordinate": { + "long": "8.567837999999998", + "lat": "49.16189899999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 147", + "LKW Stellpl\u00e4tze: 53" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.567837999999998,49.16189899999998" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.601701999999998,49.257238,8.601701999999998,49.257238", + "point": "8.601701999999998,49.257238", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "M\u00f6nchberg", + "title": "A5 | Basel", + "coordinate": { + "long": "8.601701999999998", + "lat": "49.257238" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.601701999999998,49.257238" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005535", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.592107,49.198758000000005,8.592107,49.198758000000005", + "point": "8.592107,49.198758000000005", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "RA A5 km 599,8 Ost", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.592107", + "lat": "49.198758000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.592107,49.198758000000005" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005540", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.569822999999998,49.161533999999996,8.569822999999998,49.161533999999996", + "point": "8.569822999999998,49.161533999999996", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Bruchsal O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.569822999999998", + "lat": "49.161533999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 153", + "LKW Stellpl\u00e4tze: 55" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.569822999999998,49.161533999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005530", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.603404999999999,49.257454,8.603404999999999,49.257454", + "point": "8.603404999999999,49.257454", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "Lu\u00dfhardt", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.603404999999999", + "lat": "49.257454" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.603404999999999,49.257454" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.62914,49.323029,8.62914,49.323029", + "point": "8.62914,49.323029", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "Bandholz", + "title": "A5 | Basel", + "coordinate": { + "long": "8.62914", + "lat": "49.323029" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.62914,49.323029" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005525", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.63033,49.32341,8.63033,49.32341", + "point": "8.63033,49.32341", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Sternbuckel", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.63033", + "lat": "49.32341" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.63033,49.32341" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.630576,49.35027500000001,8.630576,49.35027500000001", + "point": "8.630576,49.35027500000001", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Hardtwald O", + "title": "A5 | Basel", + "coordinate": { + "long": "8.630576", + "lat": "49.35027500000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.630576,49.35027500000001" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005520", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.632029,49.34978799999999,8.632029,49.34978799999999", + "point": "8.632029,49.34978799999999", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Hardtwald O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.632029", + "lat": "49.34978799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 74", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.632029,49.34978799999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-005015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.6435,49.466911,8.6435,49.466911", + "point": "8.6435,49.466911", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "RA A5 km 569 Ri. Weil am Rhein", + "title": "A5 | Basel", + "coordinate": { + "long": "8.6435", + "lat": "49.466911" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.6435,49.466911" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005515", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.64555,49.463921000000006,8.64555,49.463921000000006", + "point": "8.64555,49.463921000000006", + "startLcPosition": "75", + "display_type": "PARKING", + "subtitle": "RA A5 km 569,4 Ri. Hattenbacher Dreieck", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.64555", + "lat": "49.463921000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.64555,49.463921000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.63267,49.531461000000014,8.63267,49.531461000000014", + "point": "8.63267,49.531461000000014", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "Fliegwiese", + "title": "A5 | Basel", + "coordinate": { + "long": "8.63267", + "lat": "49.531461000000014" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.63267,49.531461000000014" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005510", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.634092,49.531189,8.634092,49.531189", + "point": "8.634092,49.531189", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "Wachenburg", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.634092", + "lat": "49.531189" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 47" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.634092,49.531189" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.634069999999998,49.58383200000001,8.634069999999998,49.58383200000001", + "point": "8.634069999999998,49.58383200000001", + "startLcPosition": "79", + "display_type": "PARKING", + "subtitle": "RA A5 km 555,8 Ri. Weil am Rhein", + "title": "A5 | Basel", + "coordinate": { + "long": "8.634069999999998", + "lat": "49.58383200000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.634069999999998,49.58383200000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500038", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.619753,49.621284,8.619753,49.621284", + "point": "8.619753,49.621284", + "startLcPosition": "80", + "display_type": "PARKING", + "subtitle": "Fuchsbuckel", + "title": "A5 | Basel", + "coordinate": { + "long": "8.619753", + "lat": "49.621284" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.619753,49.621284" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-005505", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.62959,49.60897800000001,8.62959,49.60897800000001", + "point": "8.62959,49.60897800000001", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "RA A5 km 553 Ri. Hattenbacher Dreieck", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.62959", + "lat": "49.60897800000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.62959,49.60897800000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500037", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.605807,49.66321800000001,8.605807,49.66321800000001", + "point": "8.605807,49.66321800000001", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "K\u00e4lberpfad", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.605807", + "lat": "49.66321800000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.605807,49.66321800000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500034", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.602150999999997,49.697261,8.602150999999997,49.697261", + "point": "8.602150999999997,49.697261", + "startLcPosition": "86", + "display_type": "PARKING", + "subtitle": "Scheidweg", + "title": "A5 | Basel", + "coordinate": { + "long": "8.602150999999997", + "lat": "49.697261" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.602150999999997,49.697261" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500035", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.603829999999999,49.690315,8.603829999999999,49.690315", + "point": "8.603829999999999,49.690315", + "startLcPosition": "86", + "display_type": "PARKING", + "subtitle": "Bergstra\u00dfe O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.603829999999999", + "lat": "49.690315" + }, + "description": [ + "PKW Stellpl\u00e4tze: 88", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.603829999999999,49.690315" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500033", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.592465999999998,49.73270600000001,8.592465999999998,49.73270600000001", + "point": "8.592465999999998,49.73270600000001", + "startLcPosition": "88", + "display_type": "PARKING", + "subtitle": "Nachtweide", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.592465999999998", + "lat": "49.73270600000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.592465999999998,49.73270600000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.591466999999998,49.74638100000001,8.591466999999998,49.74638100000001", + "point": "8.591466999999998,49.74638100000001", + "startLcPosition": "89", + "display_type": "PARKING", + "subtitle": "Alsbach W", + "title": "A5 | Basel", + "coordinate": { + "long": "8.591466999999998", + "lat": "49.74638100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 56", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.591466999999998,49.74638100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.604333,49.767658999999995,8.604333,49.767658999999995", + "point": "8.604333,49.767658999999995", + "startLcPosition": "91", + "display_type": "PARKING", + "subtitle": "Erlensee", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.604333", + "lat": "49.767658999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.604333,49.767658999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.618114999999998,49.790684000000006,8.618114999999998,49.790684000000006", + "point": "8.618114999999998,49.790684000000006", + "startLcPosition": "92", + "display_type": "PARKING", + "subtitle": "Rolandsh\u00f6he", + "title": "A5 | Basel", + "coordinate": { + "long": "8.618114999999998", + "lat": "49.790684000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.618114999999998,49.790684000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500029", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.607072,49.907429000000015,8.607072,49.907429000000015", + "point": "8.607072,49.907429000000015", + "startLcPosition": "97", + "display_type": "PARKING", + "subtitle": "Br\u00fchlgraben", + "title": "A5 | Basel", + "coordinate": { + "long": "8.607072", + "lat": "49.907429000000015" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.607072,49.907429000000015" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500028", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.608429,49.90733699999999,8.608429,49.90733699999999", + "point": "8.608429,49.90733699999999", + "startLcPosition": "98", + "display_type": "PARKING", + "subtitle": "T\u00e4ubchesh\u00f6hle", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.608429", + "lat": "49.90733699999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.608429,49.90733699999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500026", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.609247999999997,49.946657,8.609247999999997,49.946657", + "point": "8.609247999999997,49.946657", + "startLcPosition": "99", + "display_type": "PARKING", + "subtitle": "Gr\u00e4fenhausen W", + "title": "A5 | Basel", + "coordinate": { + "long": "8.609247999999997", + "lat": "49.946657" + }, + "description": [ + "PKW Stellpl\u00e4tze: 64", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.609247999999997,49.946657" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500027", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.610898,49.946294,8.610898,49.946294", + "point": "8.610898,49.946294", + "startLcPosition": "99", + "display_type": "PARKING", + "subtitle": "Gr\u00e4fenhausen O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.610898", + "lat": "49.946294" + }, + "description": [ + "PKW Stellpl\u00e4tze: 73", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.610898,49.946294" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500024", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.604043,49.974381,8.604043,49.974381", + "point": "8.604043,49.974381", + "startLcPosition": "100", + "display_type": "PARKING", + "subtitle": "Bornbruch Ost", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.604043", + "lat": "49.974381" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.604043,49.974381" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500023", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.596085,50.001841000000006,8.596085,50.001841000000006", + "point": "8.596085,50.001841000000006", + "startLcPosition": "102", + "display_type": "PARKING", + "subtitle": "Steingrund", + "title": "A5 | Basel", + "coordinate": { + "long": "8.596085", + "lat": "50.001841000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 55", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.596085,50.001841000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.597611999999998,50.002171,8.597611999999998,50.002171", + "point": "8.597611999999998,50.002171", + "startLcPosition": "103", + "display_type": "PARKING", + "subtitle": "Kaiserstein", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.597611999999998", + "lat": "50.002171" + }, + "description": [ + "PKW Stellpl\u00e4tze: 60", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.597611999999998,50.002171" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.600238,50.15501000000001,8.600238,50.15501000000001", + "point": "8.600238,50.15501000000001", + "startLcPosition": "111", + "display_type": "PARKING", + "subtitle": "Taunusblick", + "title": "A5 | Basel", + "coordinate": { + "long": "8.600238", + "lat": "50.15501000000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 74", + "LKW Stellpl\u00e4tze: 133" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.600238,50.15501000000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.662298,50.25345899999999,8.662298,50.25345899999999", + "point": "8.662298,50.25345899999999", + "startLcPosition": "114", + "display_type": "PARKING", + "subtitle": "Spie\u00dfwald", + "title": "A5 | Basel", + "coordinate": { + "long": "8.662298", + "lat": "50.25345899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.662298,50.25345899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500018", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.693187,50.356556,8.693187,50.356556", + "point": "8.693187,50.356556", + "startLcPosition": "115", + "display_type": "PARKING", + "subtitle": "Wetterau W", + "title": "A5 | Basel", + "coordinate": { + "long": "8.693187", + "lat": "50.356556" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.693187,50.356556" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500019", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.664186,50.25123900000001,8.664186,50.25123900000001", + "point": "8.664186,50.25123900000001", + "startLcPosition": "115", + "display_type": "PARKING", + "subtitle": "Sch\u00e4ferborn", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.664186", + "lat": "50.25123900000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 45", + "LKW Stellpl\u00e4tze: 100" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.664186,50.25123900000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.695179,50.356454,8.695179,50.356454", + "point": "8.695179,50.356454", + "startLcPosition": "117", + "display_type": "PARKING", + "subtitle": "Wetterau O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.695179", + "lat": "50.356454" + }, + "description": [ + "PKW Stellpl\u00e4tze: 80", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.695179,50.356454" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.755568,50.520449,8.755568,50.520449", + "point": "8.755568,50.520449", + "startLcPosition": "120", + "display_type": "PARKING", + "subtitle": "Limes W", + "title": "A5 | Basel", + "coordinate": { + "long": "8.755568", + "lat": "50.520449" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.755568,50.520449" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.75734,50.520824,8.75734,50.520824", + "point": "8.75734,50.520824", + "startLcPosition": "122", + "display_type": "PARKING", + "subtitle": "Limes O", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.75734", + "lat": "50.520824" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.75734,50.520824" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500014", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.894782,50.62336200000001,8.894782,50.62336200000001", + "point": "8.894782,50.62336200000001", + "startLcPosition": "125", + "display_type": "PARKING", + "subtitle": "Reinhardshain N", + "title": "A5 | Basel", + "coordinate": { + "long": "8.894782", + "lat": "50.62336200000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 84", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.894782,50.62336200000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.896298,50.622699,8.896298,50.622699", + "point": "8.896298,50.622699", + "startLcPosition": "127", + "display_type": "PARKING", + "subtitle": "Reinhardshain S", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.896298", + "lat": "50.622699" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.896298,50.622699" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.963576,50.64056300000001,8.963576,50.64056300000001", + "point": "8.963576,50.64056300000001", + "startLcPosition": "127", + "display_type": "PARKING", + "subtitle": "Finkenwald", + "title": "A5 | Basel", + "coordinate": { + "long": "8.963576", + "lat": "50.64056300000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.963576,50.64056300000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.965544,50.639627,8.965544,50.639627", + "point": "8.965544,50.639627", + "startLcPosition": "129", + "display_type": "PARKING", + "subtitle": "Hegberg", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "8.965544", + "lat": "50.639627" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.965544,50.639627" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.106701,50.713803999999996,9.106701,50.713803999999996", + "point": "9.106701,50.713803999999996", + "startLcPosition": "131", + "display_type": "PARKING", + "subtitle": "Krachgarten", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "9.106701", + "lat": "50.713803999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.106701,50.713803999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.112071,50.715836,9.112071,50.715836", + "point": "9.112071,50.715836", + "startLcPosition": "131", + "display_type": "PARKING", + "subtitle": "Dottenberg", + "title": "A5 | Basel", + "coordinate": { + "long": "9.112071", + "lat": "50.715836" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.112071,50.715836" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.351708000000002,50.757037,9.351708000000002,50.757037", + "point": "9.351708000000002,50.757037", + "startLcPosition": "136", + "display_type": "PARKING", + "subtitle": "Eifa", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "9.351708000000002", + "lat": "50.757037" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.351708000000002,50.757037" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.358649000000002,50.75999300000001,9.358649000000002,50.75999300000001", + "point": "9.358649000000002,50.75999300000001", + "startLcPosition": "136", + "display_type": "PARKING", + "subtitle": "Berfa N", + "title": "A5 | Basel", + "coordinate": { + "long": "9.358649000000002", + "lat": "50.75999300000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.358649000000002,50.75999300000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.444302,50.790253,9.444302,50.790253", + "point": "9.444302,50.790253", + "startLcPosition": "137", + "display_type": "PARKING", + "subtitle": "Frohnkreuz", + "title": "A5 | Basel", + "coordinate": { + "long": "9.444302", + "lat": "50.790253" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.444302,50.790253" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.473596000000002,50.79298,9.473596000000002,50.79298", + "point": "9.473596000000002,50.79298", + "startLcPosition": "138", + "display_type": "PARKING", + "subtitle": "Rimberg W", + "title": "A5 | Basel", + "coordinate": { + "long": "9.473596000000002", + "lat": "50.79298" + }, + "description": [ + "PKW Stellpl\u00e4tze: 76", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.473596000000002,50.79298" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-500001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.499300000000002,50.80115500000001,9.499300000000002,50.80115500000001", + "point": "9.499300000000002,50.80115500000001", + "startLcPosition": "141", + "display_type": "PARKING", + "subtitle": "Barnholz", + "title": "A5 | Hattenbacher Dreieck (A7)", + "coordinate": { + "long": "9.499300000000002", + "lat": "50.80115500000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.499300000000002,50.80115500000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A6": { + "parking_lorry": [ + { + "identifier": "DE-SL-000016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.965392999996999,49.20860799999329,6.965392999996999,49.20860799999329", + "point": "6.965392999996999,49.20860799999329", + "startLcPosition": "0", + "display_type": "PARKING", + "subtitle": "Goldene Bremm N", + "title": "A6 | Metz", + "coordinate": { + "long": "6.965392999996999", + "lat": "49.20860799999329" + }, + "description": [ + "PKW Stellpl\u00e4tze: 96", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.965392999996999,49.20860799999329" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "restaurant.notAvailable/Kleinrastst\u00e4tte", + "style": "not-available" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.9677779999970175,49.20831799999334,6.9677779999970175,49.20831799999334", + "point": "6.9677779999970175,49.20831799999334", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Goldene Bremm S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "6.9677779999970175", + "lat": "49.20831799999334" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.9677779999970175,49.20831799999334" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "kiosk.notAvailable/Gesch\u00e4ft", + "style": "not-available" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000516", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.075279999997724,49.2205339999952,7.075279999997724,49.2205339999952", + "point": "7.075279999997724,49.2205339999952", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Bischmisheim ", + "title": "A6 | Metz", + "coordinate": { + "long": "7.075279999997724", + "lat": "49.2205339999952" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.075279999997724,49.2205339999952" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.1528309999981525,49.27323299999624,7.1528309999981525,49.27323299999624", + "point": "7.1528309999981525,49.27323299999624", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Am Kahlenberg N", + "title": "A6 | Metz", + "coordinate": { + "long": "7.1528309999981525", + "lat": "49.27323299999624" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.1528309999981525,49.27323299999624" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.158758999998181,49.272298999996295,7.158758999998181,49.272298999996295", + "point": "7.158758999998181,49.272298999996295", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Am Kahlenberg S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "7.158758999998181", + "lat": "49.272298999996295" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.158758999998181,49.272298999996295" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000071", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.374644999999035,49.37283499999826,7.374644999999035,49.37283499999826", + "point": "7.374644999999035,49.37283499999826", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Waldmohr N", + "title": "A6 | Metz", + "coordinate": { + "long": "7.374644999999035", + "lat": "49.37283499999826" + }, + "description": [ + "PKW Stellpl\u00e4tze: 75", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.374644999999035,49.37283499999826" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Hotel/Motel", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.31212499999883,49.347028999997804,7.31212499999883,49.347028999997804", + "point": "7.31212499999883,49.347028999997804", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Homburg-Saar ", + "title": "A6 | Pilsen", + "coordinate": { + "long": "7.31212499999883", + "lat": "49.347028999997804" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.31212499999883,49.347028999997804" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-RP-000069", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.42681999999918,49.38389599999855,7.42681999999918,49.38389599999855", + "point": "7.42681999999918,49.38389599999855", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Am Glan", + "title": "A6 | Metz", + "coordinate": { + "long": "7.42681999999918", + "lat": "49.38389599999855" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.42681999999918,49.38389599999855" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000070", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.421184999999167,49.38084599999853,7.421184999999167,49.38084599999853", + "point": "7.421184999999167,49.38084599999853", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Reissberg", + "title": "A6 | Pilsen", + "coordinate": { + "long": "7.421184999999167", + "lat": "49.38084599999853" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.421184999999167,49.38084599999853" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000068", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.46198599999927,49.39800299999874,7.46198599999927,49.39800299999874", + "point": "7.46198599999927,49.39800299999874", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Schwarzbachwiesen", + "title": "A6 | Metz", + "coordinate": { + "long": "7.46198599999927", + "lat": "49.39800299999874" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.46198599999927,49.39800299999874" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000067", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.471915999999295,49.40049099999879,7.471915999999295,49.40049099999879", + "point": "7.471915999999295,49.40049099999879", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Harzofen", + "title": "A6 | Pilsen", + "coordinate": { + "long": "7.471915999999295", + "lat": "49.40049099999879" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.471915999999295,49.40049099999879" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000065", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.612107999999567,49.42405599999931,7.612107999999567,49.42405599999931", + "point": "7.612107999999567,49.42405599999931", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "H\u00f6llenplacken", + "title": "A6 | Pilsen", + "coordinate": { + "long": "7.612107999999567", + "lat": "49.42405599999931" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.612107999999567,49.42405599999931" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000063", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.847041999999832,49.457505999999775,7.847041999999832,49.457505999999775", + "point": "7.847041999999832,49.457505999999775", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Langen Berg", + "title": "A6 | Metz", + "coordinate": { + "long": "7.847041999999832", + "lat": "49.457505999999775" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.847041999999832,49.457505999999775" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000064", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.845787999999829,49.45653299999979,7.845787999999829,49.45653299999979", + "point": "7.845787999999829,49.45653299999979", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Quaiders Berg", + "title": "A6 | Pilsen", + "coordinate": { + "long": "7.845787999999829", + "lat": "49.45653299999979" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.845787999999829,49.45653299999979" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000062", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.913988999999874,49.477719999999834,7.913988999999874,49.477719999999834", + "point": "7.913988999999874,49.477719999999834", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Am Tunnel", + "title": "A6 | Metz", + "coordinate": { + "long": "7.913988999999874", + "lat": "49.477719999999834" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.913988999999874,49.477719999999834" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000061", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.953977999999896,49.49017899999987,7.953977999999896,49.49017899999987", + "point": "7.953977999999896,49.49017899999987", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Drehertal", + "title": "A6 | Metz", + "coordinate": { + "long": "7.953977999999896", + "lat": "49.49017899999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.953977999999896,49.49017899999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.025782999999931,49.51485899999992,8.025782999999931,49.51485899999992", + "point": "8.025782999999931,49.51485899999992", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "T\u00fcrkberg", + "title": "A6 | Metz", + "coordinate": { + "long": "8.025782999999931", + "lat": "49.51485899999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.025782999999931,49.51485899999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000059", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.02804699999993,49.51502199999992,8.02804699999993,49.51502199999992", + "point": "8.02804699999993,49.51502199999992", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Entenpfuhl", + "title": "A6 | Pilsen", + "coordinate": { + "long": "8.02804699999993", + "lat": "49.51502199999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.02804699999993,49.51502199999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000058", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.070840999999946,49.527316999999925,8.070840999999946,49.527316999999925", + "point": "8.070840999999946,49.527316999999925", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Pfalz ", + "title": "A6 | Metz", + "coordinate": { + "long": "8.070840999999946", + "lat": "49.527316999999925" + }, + "description": [ + "PKW Stellpl\u00e4tze: 86", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.070840999999946,49.527316999999925" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000057", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.124483999999958,49.54180499999996,8.124483999999958,49.54180499999996", + "point": "8.124483999999958,49.54180499999996", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Am Binsenplatz", + "title": "A6 | Pilsen", + "coordinate": { + "long": "8.124483999999958", + "lat": "49.54180499999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.124483999999958,49.54180499999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000055", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.253876999999983,49.55233799999997,8.253876999999983,49.55233799999997", + "point": "8.253876999999983,49.55233799999997", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Dirmsteiner Pfad", + "title": "A6 | Metz", + "coordinate": { + "long": "8.253876999999983", + "lat": "49.55233799999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.253876999999983,49.55233799999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-600001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.533274999999998,49.556244,8.533274999999998,49.556244", + "point": "8.533274999999998,49.556244", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Rennschlag", + "title": "A6 | Metz", + "coordinate": { + "long": "8.533274999999998", + "lat": "49.556244" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.533274999999998,49.556244" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.559853,49.507996,8.559853,49.507996", + "point": "8.559853,49.507996", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Linsenb\u00fchl", + "title": "A6 | Pilsen", + "coordinate": { + "long": "8.559853", + "lat": "49.507996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.559853,49.507996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006505", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.545149999999998,49.37196,8.545149999999998,49.37196", + "point": "8.545149999999998,49.37196", + "startLcPosition": "51", + "display_type": "PARKING", + "subtitle": "RA A6 km 576,7 Ri. Saarbr\u00fccken", + "title": "A6 | Metz", + "coordinate": { + "long": "8.545149999999998", + "lat": "49.37196" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.545149999999998,49.37196" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.543609999999997,49.379459,8.543609999999997,49.379459", + "point": "8.543609999999997,49.379459", + "startLcPosition": "52", + "display_type": "PARKING", + "subtitle": "RA A6 km 575,7 Ri. Waidhaus", + "title": "A6 | Pilsen", + "coordinate": { + "long": "8.543609999999997", + "lat": "49.379459" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.543609999999997,49.379459" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006515", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.600679999999999,49.293048999999996,8.600679999999999,49.293048999999996", + "point": "8.600679999999999,49.293048999999996", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Gei\u00dfheck", + "title": "A6 | Metz", + "coordinate": { + "long": "8.600679999999999", + "lat": "49.293048999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.600679999999999,49.293048999999996" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-006510", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.576655999999998,49.316096000000016,8.576655999999998,49.316096000000016", + "point": "8.576655999999998,49.316096000000016", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Am Hockenheimring O", + "title": "A6 | Metz", + "coordinate": { + "long": "8.576655999999998", + "lat": "49.316096000000016" + }, + "description": [ + "PKW Stellpl\u00e4tze: 86", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.576655999999998,49.316096000000016" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.593710000000002,49.298271000000014,8.593710000000002,49.298271000000014", + "point": "8.593710000000002,49.298271000000014", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "RA A6 km 585,5 Ri. Waidhaus", + "title": "A6 | Pilsen", + "coordinate": { + "long": "8.593710000000002", + "lat": "49.298271000000014" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.593710000000002,49.298271000000014" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.568302999999998,49.3209,8.568302999999998,49.3209", + "point": "8.568302999999998,49.3209", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Am Hockenheimring W", + "title": "A6 | Pilsen", + "coordinate": { + "long": "8.568302999999998", + "lat": "49.3209" + }, + "description": [ + "PKW Stellpl\u00e4tze: 112", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.568302999999998,49.3209" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006520", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.645434,49.273758999999984,8.645434,49.273758999999984", + "point": "8.645434,49.273758999999984", + "startLcPosition": "56", + "display_type": "PARKING", + "subtitle": "Bucheneck", + "title": "A6 | Metz", + "coordinate": { + "long": "8.645434", + "lat": "49.273758999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.645434,49.273758999999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.647818,49.272539,8.647818,49.272539", + "point": "8.647818,49.272539", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Wei\u00dfer Stock", + "title": "A6 | Pilsen", + "coordinate": { + "long": "8.647818", + "lat": "49.272539" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.647818,49.272539" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006540", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.881592,49.243344,8.881592,49.243344", + "point": "8.881592,49.243344", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Kraichgau N", + "title": "A6 | Metz", + "coordinate": { + "long": "8.881592", + "lat": "49.243344" + }, + "description": [ + "PKW Stellpl\u00e4tze: 111", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.881592,49.243344" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.878465,49.241418,8.878465,49.241418", + "point": "8.878465,49.241418", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Kraichgau S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "8.878465", + "lat": "49.241418" + }, + "description": [ + "PKW Stellpl\u00e4tze: 149", + "LKW Stellpl\u00e4tze: 288" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.878465,49.241418" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006545", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.975475,49.222224000000004,8.975475,49.222224000000004", + "point": "8.975475,49.222224000000004", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Bauernwald Nord", + "title": "A6 | Metz", + "coordinate": { + "long": "8.975475", + "lat": "49.222224000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 11", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.975475,49.222224000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006045", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.971337,49.221681999999994,8.971337,49.221681999999994", + "point": "8.971337,49.221681999999994", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Bauernwald S\u00fcd", + "title": "A6 | Pilsen", + "coordinate": { + "long": "8.971337", + "lat": "49.221681999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.971337,49.221681999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006550", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.099957,49.196941,9.099957,49.196941", + "point": "9.099957,49.196941", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "Eichh\u00e4user Hof", + "title": "A6 | Metz", + "coordinate": { + "long": "9.099957", + "lat": "49.196941" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.099957,49.196941" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.106112,49.193297999999984,9.106112,49.193297999999984", + "point": "9.106112,49.193297999999984", + "startLcPosition": "65", + "display_type": "PARKING", + "subtitle": "Wart", + "title": "A6 | Pilsen", + "coordinate": { + "long": "9.106112", + "lat": "49.193297999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.106112,49.193297999999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006055", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.253687,49.16882100000001,9.253687,49.16882100000001", + "point": "9.253687,49.16882100000001", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Sulmtal S\u00fcd", + "title": "A6 | Pilsen", + "coordinate": { + "long": "9.253687", + "lat": "49.16882100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.253687,49.16882100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006555", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.258732,49.168444,9.258732,49.168444", + "point": "9.258732,49.168444", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Sulmtal Nord", + "title": "A6 | Metz", + "coordinate": { + "long": "9.258732", + "lat": "49.168444" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 43" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.258732,49.168444" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006560", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.340299,49.161732,9.340299,49.161732", + "point": "9.340299,49.161732", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Wimmental", + "title": "A6 | Metz", + "coordinate": { + "long": "9.340299", + "lat": "49.161732" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.340299,49.161732" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006565", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.400759000000003,49.176359,9.400759000000003,49.176359", + "point": "9.400759000000003,49.176359", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Galgenberg", + "title": "A6 | Metz", + "coordinate": { + "long": "9.400759000000003", + "lat": "49.176359" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.400759000000003,49.176359" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006065", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.369988,49.162411000000006,9.369988,49.162411000000006", + "point": "9.369988,49.162411000000006", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "Gagernberg", + "title": "A6 | Pilsen", + "coordinate": { + "long": "9.369988", + "lat": "49.162411000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.369988,49.162411000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.316175,49.15690899999999,9.316175,49.15690899999999", + "point": "9.316175,49.15690899999999", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "Rosenberg", + "title": "A6 | Pilsen", + "coordinate": { + "long": "9.316175", + "lat": "49.15690899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.316175,49.15690899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006570", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.471505000000004,49.20418500000002,9.471505000000004,49.20418500000002", + "point": "9.471505000000004,49.20418500000002", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "\u00d6hringen", + "title": "A6 | Metz", + "coordinate": { + "long": "9.471505000000004", + "lat": "49.20418500000002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.471505000000004,49.20418500000002" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-006070", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.429881,49.19446799999999,9.429881,49.19446799999999", + "point": "9.429881,49.19446799999999", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Sommerhalden", + "title": "A6 | Pilsen", + "coordinate": { + "long": "9.429881", + "lat": "49.19446799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.429881,49.19446799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006575", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.532430000000005,49.211640999999986,9.532430000000005,49.211640999999986", + "point": "9.532430000000005,49.211640999999986", + "startLcPosition": "72", + "display_type": "PARKING", + "subtitle": "Weinsbach Nord", + "title": "A6 | Metz", + "coordinate": { + "long": "9.532430000000005", + "lat": "49.211640999999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.532430000000005,49.211640999999986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006075", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.535965000000003,49.211290999999996,9.535965000000003,49.211290999999996", + "point": "9.535965000000003,49.211290999999996", + "startLcPosition": "73", + "display_type": "PARKING", + "subtitle": "Weinsbach S\u00fcd", + "title": "A6 | Pilsen", + "coordinate": { + "long": "9.535965000000003", + "lat": "49.211290999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.535965000000003,49.211290999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006080", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.638167000000008,49.205892999999996,9.638167000000008,49.205892999999996", + "point": "9.638167000000008,49.205892999999996", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Hohenlohe S\u00fcd", + "title": "A6 | Pilsen", + "coordinate": { + "long": "9.638167000000008", + "lat": "49.205892999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 129", + "LKW Stellpl\u00e4tze: 120" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.638167000000008,49.205892999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006580", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.64088300000001,49.20645499999999,9.64088300000001,49.20645499999999", + "point": "9.64088300000001,49.20645499999999", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Hohenlohe Nord", + "title": "A6 | Metz", + "coordinate": { + "long": "9.64088300000001", + "lat": "49.20645499999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 120", + "LKW Stellpl\u00e4tze: 108" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.64088300000001,49.20645499999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006585", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.796946000000027,49.17636599999998,9.796946000000027,49.17636599999998", + "point": "9.796946000000027,49.17636599999998", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "Kochertalbr\u00fccke Nord", + "title": "A6 | Metz", + "coordinate": { + "long": "9.796946000000027", + "lat": "49.17636599999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.796946000000027,49.17636599999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006085", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.794775000000024,49.17458199999998,9.794775000000024,49.17458199999998", + "point": "9.794775000000024,49.17458199999998", + "startLcPosition": "78", + "display_type": "PARKING", + "subtitle": "Kochertalbr\u00fccke S\u00fcd", + "title": "A6 | Pilsen", + "coordinate": { + "long": "9.794775000000024", + "lat": "49.17458199999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.794775000000024,49.17458199999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006590", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.995774000000084,49.17421199999989,9.995774000000084,49.17421199999989", + "point": "9.995774000000084,49.17421199999989", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Reu\u00dfenberg Nord", + "title": "A6 | Metz", + "coordinate": { + "long": "9.995774000000084", + "lat": "49.17421199999989" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.995774000000084,49.17421199999989" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006090", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.995411000000084,49.17317899999991,9.995411000000084,49.17317899999991", + "point": "9.995411000000084,49.17317899999991", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Reu\u00dfenberg S\u00fcd", + "title": "A6 | Pilsen", + "coordinate": { + "long": "9.995411000000084", + "lat": "49.17317899999991" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.995411000000084,49.17317899999991" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006595", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.10778200000014,49.190129999999826,10.10778200000014,49.190129999999826", + "point": "10.10778200000014,49.190129999999826", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "Bronnholzheim Nord", + "title": "A6 | Metz", + "coordinate": { + "long": "10.10778200000014", + "lat": "49.190129999999826" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.10778200000014,49.190129999999826" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-006095", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.108457000000142,49.189402999999814,10.108457000000142,49.189402999999814", + "point": "10.108457000000142,49.189402999999814", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "Bronnholzheim S\u00fcd", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.108457000000142", + "lat": "49.189402999999814" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.108457000000142,49.189402999999814" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000133", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.144950000000167,49.20759999999978,10.144950000000167,49.20759999999978", + "point": "10.144950000000167,49.20759999999978", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "Schleehardt", + "title": "A6 | Metz", + "coordinate": { + "long": "10.144950000000167", + "lat": "49.20759999999978" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.144950000000167,49.20759999999978" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000132", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.145500000000167,49.206649999999776,10.145500000000167,49.206649999999776", + "point": "10.145500000000167,49.206649999999776", + "startLcPosition": "85", + "display_type": "PARKING", + "subtitle": "Ochsenberg", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.145500000000167", + "lat": "49.206649999999776" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.145500000000167,49.206649999999776" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000135", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.200034000000212,49.20573599999971,10.200034000000212,49.20573599999971", + "point": "10.200034000000212,49.20573599999971", + "startLcPosition": "87", + "display_type": "PARKING", + "subtitle": "Rothensteig N", + "title": "A6 | Metz", + "coordinate": { + "long": "10.200034000000212", + "lat": "49.20573599999971" + }, + "description": [ + "PKW Stellpl\u00e4tze: 43", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.200034000000212,49.20573599999971" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000134", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.198290000000211,49.20422199999972,10.198290000000211,49.20422199999972", + "point": "10.198290000000211,49.20422199999972", + "startLcPosition": "87", + "display_type": "PARKING", + "subtitle": "Rothensteig S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.198290000000211", + "lat": "49.20422199999972" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.198290000000211,49.20422199999972" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000137", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.354549000000393,49.2425179999994,10.354549000000393,49.2425179999994", + "point": "10.354549000000393,49.2425179999994", + "startLcPosition": "89", + "display_type": "PARKING", + "subtitle": "Frankenh\u00f6he N", + "title": "A6 | Metz", + "coordinate": { + "long": "10.354549000000393", + "lat": "49.2425179999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 57", + "LKW Stellpl\u00e4tze: 70" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.354549000000393,49.2425179999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000136", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.35474300000039,49.241282999999406,10.35474300000039,49.241282999999406", + "point": "10.35474300000039,49.241282999999406", + "startLcPosition": "90", + "display_type": "PARKING", + "subtitle": "Frankenh\u00f6he S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.35474300000039", + "lat": "49.241282999999406" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 71" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.35474300000039,49.241282999999406" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000138", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.382600000000432,49.24349999999933,10.382600000000432,49.24349999999933", + "point": "10.382600000000432,49.24349999999933", + "startLcPosition": "92", + "display_type": "PARKING", + "subtitle": "Hasenzagel", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.382600000000432", + "lat": "49.24349999999933" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.382600000000432,49.24349999999933" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000141", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.48130000000061,49.25210199999899,10.48130000000061,49.25210199999899", + "point": "10.48130000000061,49.25210199999899", + "startLcPosition": "94", + "display_type": "PARKING", + "subtitle": "B\u00fcrger-Wald", + "title": "A6 | Metz", + "coordinate": { + "long": "10.48130000000061", + "lat": "49.25210199999899" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.48130000000061,49.25210199999899" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000140", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.477300000000602,49.250197999999,10.477300000000602,49.250197999999", + "point": "10.477300000000602,49.250197999999", + "startLcPosition": "95", + "display_type": "PARKING", + "subtitle": "Bei den Eichen", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.477300000000602", + "lat": "49.250197999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.477300000000602,49.250197999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000144", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.547251000000763,49.26035299999869,10.547251000000763,49.26035299999869", + "point": "10.547251000000763,49.26035299999869", + "startLcPosition": "96", + "display_type": "PARKING", + "subtitle": "Silberbach N", + "title": "A6 | Metz", + "coordinate": { + "long": "10.547251000000763", + "lat": "49.26035299999869" + }, + "description": [ + "PKW Stellpl\u00e4tze: 70", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.547251000000763,49.26035299999869" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000143", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.546457000000759,49.25894199999869,10.546457000000759,49.25894199999869", + "point": "10.546457000000759,49.25894199999869", + "startLcPosition": "97", + "display_type": "PARKING", + "subtitle": "Silberbach S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.546457000000759", + "lat": "49.25894199999869" + }, + "description": [ + "PKW Stellpl\u00e4tze: 76", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.546457000000759,49.25894199999869" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000147", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.662200000001093,49.256999999997994,10.662200000001093,49.256999999997994", + "point": "10.662200000001093,49.256999999997994", + "startLcPosition": "101", + "display_type": "PARKING", + "subtitle": "Kohnweiher", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.662200000001093", + "lat": "49.256999999997994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.662200000001093,49.256999999997994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000149", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.69147800000119,49.265341999997766,10.69147800000119,49.265341999997766", + "point": "10.69147800000119,49.265341999997766", + "startLcPosition": "101", + "display_type": "PARKING", + "subtitle": "Geisberg N", + "title": "A6 | Metz", + "coordinate": { + "long": "10.69147800000119", + "lat": "49.265341999997766" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.69147800000119,49.265341999997766" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000150", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.692122000001195,49.26441099999777,10.692122000001195,49.26441099999777", + "point": "10.692122000001195,49.26441099999777", + "startLcPosition": "102", + "display_type": "PARKING", + "subtitle": "Geisberg S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.692122000001195", + "lat": "49.26441099999777" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.692122000001195,49.26441099999777" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000152", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.780800000001534,49.30609899999697,10.780800000001534,49.30609899999697", + "point": "10.780800000001534,49.30609899999697", + "startLcPosition": "104", + "display_type": "PARKING", + "subtitle": "Klosterwald", + "title": "A6 | Metz", + "coordinate": { + "long": "10.780800000001534", + "lat": "49.30609899999697" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.780800000001534,49.30609899999697" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000154", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.825312000001736,49.30990999999649,10.825312000001736,49.30990999999649", + "point": "10.825312000001736,49.30990999999649", + "startLcPosition": "106", + "display_type": "PARKING", + "subtitle": "Auergr\u00fcndel N", + "title": "A6 | Metz", + "coordinate": { + "long": "10.825312000001736", + "lat": "49.30990999999649" + }, + "description": [ + "PKW Stellpl\u00e4tze: 65", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.825312000001736,49.30990999999649" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000153", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.82644300000174,49.30848899999649,10.82644300000174,49.30848899999649", + "point": "10.82644300000174,49.30848899999649", + "startLcPosition": "107", + "display_type": "PARKING", + "subtitle": "Auergr\u00fcndel S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.82644300000174", + "lat": "49.30848899999649" + }, + "description": [ + "PKW Stellpl\u00e4tze: 67", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.82644300000174,49.30848899999649" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000156", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.911050000002183,49.30870099999538,10.911050000002183,49.30870099999538", + "point": "10.911050000002183,49.30870099999538", + "startLcPosition": "108", + "display_type": "PARKING", + "subtitle": "Hochstra\u00dfe (gesperrt)", + "title": "A6 | Metz", + "coordinate": { + "long": "10.911050000002183", + "lat": "49.30870099999538" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.911050000002183,49.30870099999538" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000155", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.911850000002184,49.307548999995376,10.911850000002184,49.307548999995376", + "point": "10.911850000002184,49.307548999995376", + "startLcPosition": "109", + "display_type": "PARKING", + "subtitle": "Dechenwald", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.911850000002184", + "lat": "49.307548999995376" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.911850000002184,49.307548999995376" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000157", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.969811000002533,49.30809699999447,10.969811000002533,49.30809699999447", + "point": "10.969811000002533,49.30809699999447", + "startLcPosition": "110", + "display_type": "PARKING", + "subtitle": "Kammersteiner Land N", + "title": "A6 | Metz", + "coordinate": { + "long": "10.969811000002533", + "lat": "49.30809699999447" + }, + "description": [ + "PKW Stellpl\u00e4tze: 80", + "LKW Stellpl\u00e4tze: 63" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.969811000002533,49.30809699999447" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000158", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.967431000002518,49.306181999994514,10.967431000002518,49.306181999994514", + "point": "10.967431000002518,49.306181999994514", + "startLcPosition": "110", + "display_type": "PARKING", + "subtitle": "Kammersteiner Land S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "10.967431000002518", + "lat": "49.306181999994514" + }, + "description": [ + "PKW Stellpl\u00e4tze: 80", + "LKW Stellpl\u00e4tze: 72" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.967431000002518,49.306181999994514" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000161", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.317700000005503,49.40784799998533,11.317700000005503,49.40784799998533", + "point": "11.317700000005503,49.40784799998533", + "startLcPosition": "118", + "display_type": "PARKING", + "subtitle": "R\u00f6thenbach (geschlossen)", + "title": "A6 | Metz", + "coordinate": { + "long": "11.317700000005503", + "lat": "49.40784799998533" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.317700000005503,49.40784799998533" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000160", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.315900000005483,49.40700199998539,11.315900000005483,49.40700199998539", + "point": "11.315900000005483,49.40700199998539", + "startLcPosition": "119", + "display_type": "PARKING", + "subtitle": "Lochgraben", + "title": "A6 | Pilsen", + "coordinate": { + "long": "11.315900000005483", + "lat": "49.40700199998539" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.315900000005483,49.40700199998539" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008579", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.38442800000629,49.400372999982615,11.38442800000629,49.400372999982615", + "point": "11.38442800000629,49.400372999982615", + "startLcPosition": "120", + "display_type": "PARKING", + "subtitle": "Unterrieden (geschlossen)", + "title": "A6 | Metz", + "coordinate": { + "long": "11.38442800000629", + "lat": "49.400372999982615" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.38442800000629,49.400372999982615" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008582", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.448028000007096,49.418432999979636,11.448028000007096,49.418432999979636", + "point": "11.448028000007096,49.418432999979636", + "startLcPosition": "123", + "display_type": "PARKING", + "subtitle": "Haide (geschlossen)", + "title": "A6 | Metz", + "coordinate": { + "long": "11.448028000007096", + "lat": "49.418432999979636" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.448028000007096,49.418432999979636" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008580", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.401219000006495,49.41030199998185,11.401219000006495,49.41030199998185", + "point": "11.401219000006495,49.41030199998185", + "startLcPosition": "123", + "display_type": "PARKING", + "subtitle": "Rehberg (geschlossen)", + "title": "A6 | Pilsen", + "coordinate": { + "long": "11.401219000006495", + "lat": "49.41030199998185" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.401219000006495,49.41030199998185" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000166", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.485183000007597,49.419542999977715,11.485183000007597,49.419542999977715", + "point": "11.485183000007597,49.419542999977715", + "startLcPosition": "124", + "display_type": "PARKING", + "subtitle": "Zankschlag N", + "title": "A6 | Metz", + "coordinate": { + "long": "11.485183000007597", + "lat": "49.419542999977715" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.485183000007597,49.419542999977715" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008581", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.447306000007083,49.41776199997967,11.447306000007083,49.41776199997967", + "point": "11.447306000007083,49.41776199997967", + "startLcPosition": "124", + "display_type": "PARKING", + "subtitle": "H\u00f6lle (geschlossen)", + "title": "A6 | Pilsen", + "coordinate": { + "long": "11.447306000007083", + "lat": "49.41776199997967" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.447306000007083,49.41776199997967" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000167", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.489950000007665,49.41834999997744,11.489950000007665,49.41834999997744", + "point": "11.489950000007665,49.41834999997744", + "startLcPosition": "126", + "display_type": "PARKING", + "subtitle": "Zankschlag S ", + "title": "A6 | Pilsen", + "coordinate": { + "long": "11.489950000007665", + "lat": "49.41834999997744" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.489950000007665,49.41834999997744" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008585", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.590605000009166,49.40870699997139,11.590605000009166,49.40870699997139", + "point": "11.590605000009166,49.40870699997139", + "startLcPosition": "127", + "display_type": "PARKING", + "subtitle": "Poppberg (geschlossen)", + "title": "A6 | Metz", + "coordinate": { + "long": "11.590605000009166", + "lat": "49.40870699997139" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.590605000009166,49.40870699997139" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008584", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.564304000008756,49.4131099999731,11.564304000008756,49.4131099999731", + "point": "11.564304000008756,49.4131099999731", + "startLcPosition": "128", + "display_type": "PARKING", + "subtitle": "Rehwinkel (geschlossen)", + "title": "A6 | Pilsen", + "coordinate": { + "long": "11.564304000008756", + "lat": "49.4131099999731" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.564304000008756,49.4131099999731" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008587", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.627696000009742,49.42198299996886,11.627696000009742,49.42198299996886", + "point": "11.627696000009742,49.42198299996886", + "startLcPosition": "129", + "display_type": "PARKING", + "subtitle": "Am Hoch (geschlossen)", + "title": "A6 | Metz", + "coordinate": { + "long": "11.627696000009742", + "lat": "49.42198299996886" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.627696000009742,49.42198299996886" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008586", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.62674600000973,49.42048799996893,11.62674600000973,49.42048799996893", + "point": "11.62674600000973,49.42048799996893", + "startLcPosition": "130", + "display_type": "PARKING", + "subtitle": "Hochstra\u00dfe (geschlossen)", + "title": "A6 | Pilsen", + "coordinate": { + "long": "11.62674600000973", + "lat": "49.42048799996893" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.62674600000973,49.42048799996893" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008588", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.742659000011711,49.41339499995975,11.742659000011711,49.41339499995975", + "point": "11.742659000011711,49.41339499995975", + "startLcPosition": "132", + "display_type": "PARKING", + "subtitle": "Brunnberg (geschlossen)", + "title": "A6 | Metz", + "coordinate": { + "long": "11.742659000011711", + "lat": "49.41339499995975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.742659000011711,49.41339499995975" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000173", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.690904000010793,49.424494999964075,11.690904000010793,49.424494999964075", + "point": "11.690904000010793,49.424494999964075", + "startLcPosition": "132", + "display_type": "PARKING", + "subtitle": "Oberpf\u00e4lzer Alb N", + "title": "A6 | Metz", + "coordinate": { + "long": "11.690904000010793", + "lat": "49.424494999964075" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 52" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.690904000010793,49.424494999964075" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000174", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.68740800001073,49.423271999964356,11.68740800001073,49.423271999964356", + "point": "11.68740800001073,49.423271999964356", + "startLcPosition": "132", + "display_type": "PARKING", + "subtitle": "Oberpf\u00e4lzer Alb S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "11.68740800001073", + "lat": "49.423271999964356" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 55" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.68740800001073,49.423271999964356" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000177", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.859778000013916,49.3972349999483,11.859778000013916,49.3972349999483", + "point": "11.859778000013916,49.3972349999483", + "startLcPosition": "134", + "display_type": "PARKING", + "subtitle": "Laubenschlag N", + "title": "A6 | Metz", + "coordinate": { + "long": "11.859778000013916", + "lat": "49.3972349999483" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.859778000013916,49.3972349999483" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000176", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.859386000013911,49.39603899994834,11.859386000013911,49.39603899994834", + "point": "11.859386000013911,49.39603899994834", + "startLcPosition": "135", + "display_type": "PARKING", + "subtitle": "Laubenschlag S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "11.859386000013911", + "lat": "49.39603899994834" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.859386000013911,49.39603899994834" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000179", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.085749000018177,49.445696999918425,12.085749000018177,49.445696999918425", + "point": "12.085749000018177,49.445696999918425", + "startLcPosition": "139", + "display_type": "PARKING", + "subtitle": "Stockerholz N", + "title": "A6 | Metz", + "coordinate": { + "long": "12.085749000018177", + "lat": "49.445696999918425" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.085749000018177,49.445696999918425" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000178", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.086435000018195,49.4447889999183,12.086435000018195,49.4447889999183", + "point": "12.086435000018195,49.4447889999183", + "startLcPosition": "140", + "display_type": "PARKING", + "subtitle": "Stockerholz S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "12.086435000018195", + "lat": "49.4447889999183" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.086435000018195,49.4447889999183" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000180", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.240768000020394,49.566444999890386,12.240768000020394,49.566444999890386", + "point": "12.240768000020394,49.566444999890386", + "startLcPosition": "142", + "display_type": "PARKING", + "subtitle": "Wittschauer H\u00f6he N", + "title": "A6 | Metz", + "coordinate": { + "long": "12.240768000020394", + "lat": "49.566444999890386" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.240768000020394,49.566444999890386" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000181", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.24007100002039,49.56555899989053,12.24007100002039,49.56555899989053", + "point": "12.24007100002039,49.56555899989053", + "startLcPosition": "143", + "display_type": "PARKING", + "subtitle": "Wittschauer H\u00f6he S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "12.24007100002039", + "lat": "49.56555899989053" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.24007100002039,49.56555899989053" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000183", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.452699000022216,49.631156999839696,12.452699000022216,49.631156999839696", + "point": "12.452699000022216,49.631156999839696", + "startLcPosition": "148", + "display_type": "PARKING", + "subtitle": "Ulrichsberg S", + "title": "A6 | Pilsen", + "coordinate": { + "long": "12.452699000022216", + "lat": "49.631156999839696" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.452699000022216,49.631156999839696" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000182", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.451995000022203,49.63232299983988,12.451995000022203,49.63232299983988", + "point": "12.451995000022203,49.63232299983988", + "startLcPosition": "148", + "display_type": "PARKING", + "subtitle": "Ulrichsberg N", + "title": "A6 | Metz", + "coordinate": { + "long": "12.451995000022203", + "lat": "49.63232299983988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.451995000022203,49.63232299983988" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A7": { + "parking_lorry": [ + { + "identifier": "DE-BY-000265", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.420273000000567,47.662159999999226,10.420273000000567,47.662159999999226", + "point": "10.420273000000567,47.662159999999226", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Rottachtal-Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.420273000000567", + "lat": "47.662159999999226" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.420273000000567,47.662159999999226" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000264", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.41649200000056,47.66393599999926,10.41649200000056,47.66393599999926", + "point": "10.41649200000056,47.66393599999926", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Rottachtal-West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.41649200000056", + "lat": "47.66393599999926" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.41649200000056,47.66393599999926" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000263", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.366355000000466,47.7022449999994,10.366355000000466,47.7022449999994", + "point": "10.366355000000466,47.7022449999994", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Vorwald West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.366355000000466", + "lat": "47.7022449999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.366355000000466,47.7022449999994" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000262", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.367343000000465,47.70406799999939,10.367343000000465,47.70406799999939", + "point": "10.367343000000465,47.70406799999939", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Vorwald Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.367343000000465", + "lat": "47.70406799999939" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.367343000000465,47.70406799999939" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000261", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.326813000000397,47.7634259999995,10.326813000000397,47.7634259999995", + "point": "10.326813000000397,47.7634259999995", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Leubastal O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.326813000000397", + "lat": "47.7634259999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.326813000000397,47.7634259999995" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000260", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.325226000000397,47.76539299999949,10.325226000000397,47.76539299999949", + "point": "10.325226000000397,47.76539299999949", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Leubastal W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.325226000000397", + "lat": "47.76539299999949" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.325226000000397,47.76539299999949" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000259", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.30940200000037,47.80389199999952,10.30940200000037,47.80389199999952", + "point": "10.30940200000037,47.80389199999952", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Seebach W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.30940200000037", + "lat": "47.80389199999952" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.30940200000037,47.80389199999952" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000258", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.28097500000033,47.84872599999959,10.28097500000033,47.84872599999959", + "point": "10.28097500000033,47.84872599999959", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Allg\u00e4uer Tor W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.28097500000033", + "lat": "47.84872599999959" + }, + "description": [ + "PKW Stellpl\u00e4tze: 79", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.28097500000033,47.84872599999959" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000257", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.282939000000335,47.84709699999958,10.282939000000335,47.84709699999958", + "point": "10.282939000000335,47.84709699999958", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Allg\u00e4uer Tor O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.282939000000335", + "lat": "47.84709699999958" + }, + "description": [ + "PKW Stellpl\u00e4tze: 75", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.282939000000335,47.84709699999958" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000254", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.15113200000019,47.98393899999978,10.15113200000019,47.98393899999978", + "point": "10.15113200000019,47.98393899999978", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Buxachtal W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.15113200000019", + "lat": "47.98393899999978" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.15113200000019,47.98393899999978" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000253", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.15214200000019,47.98406899999977,10.15214200000019,47.98406899999977", + "point": "10.15214200000019,47.98406899999977", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Buxachtal O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.15214200000019", + "lat": "47.98406899999977" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.15214200000019,47.98406899999977" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000252", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.138445000000182,48.0128759999998,10.138445000000182,48.0128759999998", + "point": "10.138445000000182,48.0128759999998", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Aum\u00fchle W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.138445000000182", + "lat": "48.0128759999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.138445000000182,48.0128759999998" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000250", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.13652000000018,48.08358899999979,10.13652000000018,48.08358899999979", + "point": "10.13652000000018,48.08358899999979", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Br\u00fchl W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.13652000000018", + "lat": "48.08358899999979" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.13652000000018,48.08358899999979" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000249", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.137318000000176,48.083848999999795,10.137318000000176,48.083848999999795", + "point": "10.137318000000176,48.083848999999795", + "startLcPosition": "25", + "display_type": "PARKING", + "subtitle": "Br\u00fchl O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.137318000000176", + "lat": "48.083848999999795" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.137318000000176,48.083848999999795" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-004459", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.112752000000157,48.12351899999982,10.112752000000157,48.12351899999982", + "point": "10.112752000000157,48.12351899999982", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Illertal O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.112752000000157", + "lat": "48.12351899999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 111", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.112752000000157,48.12351899999982" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-004458", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.109221000000156,48.12677299999982,10.109221000000156,48.12677299999982", + "point": "10.109221000000156,48.12677299999982", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Illertal W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.109221000000156", + "lat": "48.12677299999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 100", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.109221000000156,48.12677299999982" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000248", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.128685000000171,48.158062999999814,10.128685000000171,48.158062999999814", + "point": "10.128685000000171,48.158062999999814", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Badhauser Wald W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.128685000000171", + "lat": "48.158062999999814" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.128685000000171,48.158062999999814" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000246", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.11987900000016,48.23967999999981,10.11987900000016,48.23967999999981", + "point": "10.11987900000016,48.23967999999981", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Tannengarten-West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.11987900000016", + "lat": "48.23967999999981" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.11987900000016,48.23967999999981" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000247", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.127684000000169,48.180923999999806,10.127684000000169,48.180923999999806", + "point": "10.127684000000169,48.180923999999806", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Badhauser Wald O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.127684000000169", + "lat": "48.180923999999806" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.127684000000169,48.180923999999806" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000244", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.114302000000158,48.26809299999982,10.114302000000158,48.26809299999982", + "point": "10.114302000000158,48.26809299999982", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Reudelsberger Forst W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.114302000000158", + "lat": "48.26809299999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.114302000000158,48.26809299999982" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000243", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.115207000000161,48.267615999999826,10.115207000000161,48.267615999999826", + "point": "10.115207000000161,48.267615999999826", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Reudelsberger Forst O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.115207000000161", + "lat": "48.267615999999826" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.115207000000161,48.267615999999826" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000245", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.120363000000161,48.24088899999982,10.120363000000161,48.24088899999982", + "point": "10.120363000000161,48.24088899999982", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Tannengarten-Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.120363000000161", + "lat": "48.24088899999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.120363000000161,48.24088899999982" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000241", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.096674000000148,48.30979699999985,10.096674000000148,48.30979699999985", + "point": "10.096674000000148,48.30979699999985", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Buchenberg ", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.096674000000148", + "lat": "48.30979699999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.096674000000148,48.30979699999985" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000242", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.108123000000154,48.30075599999982,10.108123000000154,48.30075599999982", + "point": "10.108123000000154,48.30075599999982", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Winterhalde ", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.108123000000154", + "lat": "48.30075599999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.108123000000154,48.30075599999982" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000240", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.080646000000133,48.360191999999856,10.080646000000133,48.360191999999856", + "point": "10.080646000000133,48.360191999999856", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Buchwald-West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.080646000000133", + "lat": "48.360191999999856" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.080646000000133,48.360191999999856" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000239", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.082199000000134,48.36019599999985,10.082199000000134,48.36019599999985", + "point": "10.082199000000134,48.36019599999985", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Buchwald-Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.082199000000134", + "lat": "48.36019599999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 8", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.082199000000134,48.36019599999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000237", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.086527000000137,48.387350999999846,10.086527000000137,48.387350999999846", + "point": "10.086527000000137,48.387350999999846", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Hahnenberg Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.086527000000137", + "lat": "48.387350999999846" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.086527000000137,48.387350999999846" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000238", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.085814000000136,48.38795699999985,10.085814000000136,48.38795699999985", + "point": "10.085814000000136,48.38795699999985", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Hahnenberg W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.085814000000136", + "lat": "48.38795699999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.085814000000136,48.38795699999985" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000236", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.100880000000146,48.42900699999983,10.100880000000146,48.42900699999983", + "point": "10.100880000000146,48.42900699999983", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Leibisee O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.100880000000146", + "lat": "48.42900699999983" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.100880000000146,48.42900699999983" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000235", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.106083000000153,48.43505899999982,10.106083000000153,48.43505899999982", + "point": "10.106083000000153,48.43505899999982", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Leibisee W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.106083000000153", + "lat": "48.43505899999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.106083000000153,48.43505899999982" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-007525", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.083740000000136,48.52294999999986,10.083740000000136,48.52294999999986", + "point": "10.083740000000136,48.52294999999986", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Sankt Jakob", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.083740000000136", + "lat": "48.52294999999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.083740000000136,48.52294999999986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-007025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.082484000000134,48.52327499999984,10.082484000000134,48.52327499999984", + "point": "10.082484000000134,48.52327499999984", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Vor dem Donauried", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.082484000000134", + "lat": "48.52327499999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.082484000000134,48.52327499999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-007020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.176650000000205,48.58462999999974,10.176650000000205,48.58462999999974", + "point": "10.176650000000205,48.58462999999974", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Lonetal West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.176650000000205", + "lat": "48.58462999999974" + }, + "description": [ + "PKW Stellpl\u00e4tze: 81", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.176650000000205,48.58462999999974" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-007520", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.177791000000203,48.58354999999974,10.177791000000203,48.58354999999974", + "point": "10.177791000000203,48.58354999999974", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Lonetal Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.177791000000203", + "lat": "48.58354999999974" + }, + "description": [ + "PKW Stellpl\u00e4tze: 81", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.177791000000203,48.58354999999974" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-007015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.195927000000216,48.739909999999725,10.195927000000216,48.739909999999725", + "point": "10.195927000000216,48.739909999999725", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Heidenheimer Kohlplatten", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.195927000000216", + "lat": "48.739909999999725" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.195927000000216,48.739909999999725" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-007515", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.19706300000022,48.74111499999971,10.19706300000022,48.74111499999971", + "point": "10.19706300000022,48.74111499999971", + "startLcPosition": "52", + "display_type": "PARKING", + "subtitle": "H\u00e4rtsfeld", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.19706300000022", + "lat": "48.74111499999971" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.19706300000022,48.74111499999971" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-007010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.193664000000211,48.98376199999972,10.193664000000211,48.98376199999972", + "point": "10.193664000000211,48.98376199999972", + "startLcPosition": "56", + "display_type": "PARKING", + "subtitle": "Ellwanger Berge West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.193664000000211", + "lat": "48.98376199999972" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.193664000000211,48.98376199999972" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-007510", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.195998000000213,48.98425799999972,10.195998000000213,48.98425799999972", + "point": "10.195998000000213,48.98425799999972", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Ellwanger Berge Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.195998000000213", + "lat": "48.98425799999972" + }, + "description": [ + "PKW Stellpl\u00e4tze: 85", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.195998000000213,48.98425799999972" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000233", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.231776000000245,49.114985999999675,10.231776000000245,49.114985999999675", + "point": "10.231776000000245,49.114985999999675", + "startLcPosition": "58", + "display_type": "PARKING", + "subtitle": "M\u00fchlbuck West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.231776000000245", + "lat": "49.114985999999675" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.231776000000245,49.114985999999675" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000234", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.233053000000247,49.11278899999965,10.233053000000247,49.11278899999965", + "point": "10.233053000000247,49.11278899999965", + "startLcPosition": "59", + "display_type": "PARKING", + "subtitle": "M\u00fchlbuck Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.233053000000247", + "lat": "49.11278899999965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.233053000000247,49.11278899999965" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000230", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.218540000000228,49.246601999999676,10.218540000000228,49.246601999999676", + "point": "10.218540000000228,49.246601999999676", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Kurzmandl W", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.218540000000228", + "lat": "49.246601999999676" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.218540000000228,49.246601999999676" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000231", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.22092300000023,49.246448999999686,10.22092300000023,49.246448999999686", + "point": "10.22092300000023,49.246448999999686", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Kurzmandl O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.22092300000023", + "lat": "49.246448999999686" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.22092300000023,49.246448999999686" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000228", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.218061000000226,49.358409999999694,10.218061000000226,49.358409999999694", + "point": "10.218061000000226,49.358409999999694", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Kreuzfeld O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.218061000000226", + "lat": "49.358409999999694" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.218061000000226,49.358409999999694" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000227", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.215339000000224,49.358634999999694,10.215339000000224,49.358634999999694", + "point": "10.215339000000224,49.358634999999694", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Kreuzfeld W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.215339000000224", + "lat": "49.358634999999694" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.215339000000224,49.358634999999694" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000225", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.210640000000216,49.4848549999997,10.210640000000216,49.4848549999997", + "point": "10.210640000000216,49.4848549999997", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Ohrenbach W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.210640000000216", + "lat": "49.4848549999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 82", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.210640000000216,49.4848549999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000226", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.21359400000022,49.48561699999969,10.21359400000022,49.48561699999969", + "point": "10.21359400000022,49.48561699999969", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Ohrenbach O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.21359400000022", + "lat": "49.48561699999969" + }, + "description": [ + "PKW Stellpl\u00e4tze: 120", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.21359400000022,49.48561699999969" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000222", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.175032000000183,49.62638199999975,10.175032000000183,49.62638199999975", + "point": "10.175032000000183,49.62638199999975", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "Fuchsloch W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.175032000000183", + "lat": "49.62638199999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.175032000000183,49.62638199999975" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000223", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.176833000000187,49.625421999999745,10.176833000000187,49.625421999999745", + "point": "10.176833000000187,49.625421999999745", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "Fuchsloch O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.176833000000187", + "lat": "49.625421999999745" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.176833000000187,49.625421999999745" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000220", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.104500000000133,49.70494799999983,10.104500000000133,49.70494799999983", + "point": "10.104500000000133,49.70494799999983", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Wolfsgraben W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.104500000000133", + "lat": "49.70494799999983" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.104500000000133,49.70494799999983" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000221", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.107950000000137,49.70159899999983,10.107950000000137,49.70159899999983", + "point": "10.107950000000137,49.70159899999983", + "startLcPosition": "72", + "display_type": "PARKING", + "subtitle": "Wolfsgraben O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.107950000000137", + "lat": "49.70159899999983" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.107950000000137,49.70159899999983" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000219", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.049250000000102,49.80009799999986,10.049250000000102,49.80009799999986", + "point": "10.049250000000102,49.80009799999986", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Hasen\u00e4cker", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.049250000000102", + "lat": "49.80009799999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.049250000000102,49.80009799999986" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000216", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.026450000000091,49.8396989999999,10.026450000000091,49.8396989999999", + "point": "10.026450000000091,49.8396989999999", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "Huthstadt W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.026450000000091", + "lat": "49.8396989999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.026450000000091,49.8396989999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000218", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.043900000000098,49.815799999999875,10.043900000000098,49.815799999999875", + "point": "10.043900000000098,49.815799999999875", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "664 O (Masuren)", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.043900000000098", + "lat": "49.815799999999875" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.043900000000098,49.815799999999875" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000217", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.039850000000095,49.83095199999987,10.039850000000095,49.83095199999987", + "point": "10.039850000000095,49.83095199999987", + "startLcPosition": "78", + "display_type": "PARKING", + "subtitle": "Kapellenholz", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.039850000000095", + "lat": "49.83095199999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.039850000000095,49.83095199999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000214", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.995300000000078,49.8823009999999,9.995300000000078,49.8823009999999", + "point": "9.995300000000078,49.8823009999999", + "startLcPosition": "80", + "display_type": "PARKING", + "subtitle": "Breitenellern W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.995300000000078", + "lat": "49.8823009999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.995300000000078,49.8823009999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000215", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.993550000000079,49.86329999999991,9.993550000000079,49.86329999999991", + "point": "9.993550000000079,49.86329999999991", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Hirtentannen", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.993550000000079", + "lat": "49.86329999999991" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.993550000000079,49.86329999999991" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008596", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.001971000000081,49.9001019999999,10.001971000000081,49.9001019999999", + "point": "10.001971000000081,49.9001019999999", + "startLcPosition": "82", + "display_type": "PARKING", + "subtitle": "Hohenroth (geschlossen)", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.001971000000081", + "lat": "49.9001019999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.001971000000081,49.9001019999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008594", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.998664000000078,49.9298009999999,9.998664000000078,49.9298009999999", + "point": "9.998664000000078,49.9298009999999", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "Lindig W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.998664000000078", + "lat": "49.9298009999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.998664000000078,49.9298009999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000211", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.998600000000078,49.926848999999905,9.998600000000078,49.926848999999905", + "point": "9.998600000000078,49.926848999999905", + "startLcPosition": "85", + "display_type": "PARKING", + "subtitle": "Jobsttaler Hof", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.998600000000078", + "lat": "49.926848999999905" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.998600000000078,49.926848999999905" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000209", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.016793000000087,49.94477299999989,10.016793000000087,49.94477299999989", + "point": "10.016793000000087,49.94477299999989", + "startLcPosition": "85", + "display_type": "PARKING", + "subtitle": "Riedener Wald W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.016793000000087", + "lat": "49.94477299999989" + }, + "description": [ + "PKW Stellpl\u00e4tze: 179", + "LKW Stellpl\u00e4tze: 90" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.016793000000087,49.94477299999989" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000206", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.032200000000092,49.96654899999988,10.032200000000092,49.96654899999988", + "point": "10.032200000000092,49.96654899999988", + "startLcPosition": "87", + "display_type": "PARKING", + "subtitle": "Wernbr\u00fccke West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.032200000000092", + "lat": "49.96654899999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.032200000000092,49.96654899999988" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000208", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.020962000000091,49.94416199999988,10.020962000000091,49.94416199999988", + "point": "10.020962000000091,49.94416199999988", + "startLcPosition": "87", + "display_type": "PARKING", + "subtitle": "Riedener Wald O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.020962000000091", + "lat": "49.94416199999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 160", + "LKW Stellpl\u00e4tze: 63" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.020962000000091,49.94416199999988" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000207", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.033650000000094,49.967799999999876,10.033650000000094,49.967799999999876", + "point": "10.033650000000094,49.967799999999876", + "startLcPosition": "88", + "display_type": "PARKING", + "subtitle": "H\u00fchnerw\u00e4ldchen", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.033650000000094", + "lat": "49.967799999999876" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.033650000000094,49.967799999999876" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000204", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.06885000000011,50.01295099999986,10.06885000000011,50.01295099999986", + "point": "10.06885000000011,50.01295099999986", + "startLcPosition": "92", + "display_type": "PARKING", + "subtitle": "Eckartshausen", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.06885000000011", + "lat": "50.01295099999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.06885000000011,50.01295099999986" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000203", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.059100000000106,50.04890099999987,10.059100000000106,50.04890099999987", + "point": "10.059100000000106,50.04890099999987", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "Brebersdorf O", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.059100000000106", + "lat": "50.04890099999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.059100000000106,50.04890099999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.02120000000009,50.0736009999999,10.02120000000009,50.0736009999999", + "point": "10.02120000000009,50.0736009999999", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "Lerchenberg W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.02120000000009", + "lat": "50.0736009999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.02120000000009,50.0736009999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000200", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.989050000000073,50.082900999999914,9.989050000000073,50.082900999999914", + "point": "9.989050000000073,50.082900999999914", + "startLcPosition": "95", + "display_type": "PARKING", + "subtitle": "Dollwiese W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.989050000000073", + "lat": "50.082900999999914" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.989050000000073,50.082900999999914" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.010650000000085,50.07775099999989,10.010650000000085,50.07775099999989", + "point": "10.010650000000085,50.07775099999989", + "startLcPosition": "96", + "display_type": "PARKING", + "subtitle": "Schwemmelsbach", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.010650000000085", + "lat": "50.07775099999989" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.010650000000085,50.07775099999989" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000199", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.979150000000072,50.09839999999991,9.979150000000072,50.09839999999991", + "point": "9.979150000000072,50.09839999999991", + "startLcPosition": "98", + "display_type": "PARKING", + "subtitle": "Heinersberg", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.979150000000072", + "lat": "50.09839999999991" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.979150000000072,50.09839999999991" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000196", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.929550000000054,50.20740099999994,9.929550000000054,50.20740099999994", + "point": "9.929550000000054,50.20740099999994", + "startLcPosition": "102", + "display_type": "PARKING", + "subtitle": "Brotpfad W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.929550000000054", + "lat": "50.20740099999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.929550000000054,50.20740099999994" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000197", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.962700000000064,50.15554799999993,9.962700000000064,50.15554799999993", + "point": "9.962700000000064,50.15554799999993", + "startLcPosition": "102", + "display_type": "PARKING", + "subtitle": "Elfershausen O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.962700000000064", + "lat": "50.15554799999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.962700000000064,50.15554799999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000194", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.893150000000043,50.227698999999944,9.893150000000043,50.227698999999944", + "point": "9.893150000000043,50.227698999999944", + "startLcPosition": "104", + "display_type": "PARKING", + "subtitle": "Bornhag", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.893150000000043", + "lat": "50.227698999999944" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.893150000000043,50.227698999999944" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000195", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.916550000000052,50.21419899999993,9.916550000000052,50.21419899999993", + "point": "9.916550000000052,50.21419899999993", + "startLcPosition": "105", + "display_type": "PARKING", + "subtitle": "Seifertsholz", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.916550000000052", + "lat": "50.21419899999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.916550000000052,50.21419899999993" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-HE-700004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.521405000000003,51.26825000000001,9.521405000000003,51.26825000000001", + "point": "9.521405000000003,51.26825000000001", + "startLcPosition": "106", + "display_type": "PARKING", + "subtitle": "Kassel O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.521405000000003", + "lat": "51.26825000000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 237", + "LKW Stellpl\u00e4tze: 181" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.521405000000003,51.26825000000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000193", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.875992000000041,50.23801099999996,9.875992000000041,50.23801099999996", + "point": "9.875992000000041,50.23801099999996", + "startLcPosition": "106", + "display_type": "PARKING", + "subtitle": "Veitsbrunn W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.875992000000041", + "lat": "50.23801099999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.875992000000041,50.23801099999996" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000192", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.880974000000041,50.26482499999996,9.880974000000041,50.26482499999996", + "point": "9.880974000000041,50.26482499999996", + "startLcPosition": "108", + "display_type": "PARKING", + "subtitle": "Rh\u00f6n W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.880974000000041", + "lat": "50.26482499999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 130", + "LKW Stellpl\u00e4tze: 58" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.880974000000041,50.26482499999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000191", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.882067000000042,50.26819899999996,9.882067000000042,50.26819899999996", + "point": "9.882067000000042,50.26819899999996", + "startLcPosition": "109", + "display_type": "PARKING", + "subtitle": "Rh\u00f6n O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.882067000000042", + "lat": "50.26819899999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 139", + "LKW Stellpl\u00e4tze: 96" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.882067000000042,50.26819899999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000190", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.858650000000038,50.28399999999995,9.858650000000038,50.28399999999995", + "point": "9.858650000000038,50.28399999999995", + "startLcPosition": "110", + "display_type": "PARKING", + "subtitle": "Schildeck", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.858650000000038", + "lat": "50.28399999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.858650000000038,50.28399999999995" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000186", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.778650000000022,50.32915099999998,9.778650000000022,50.32915099999998", + "point": "9.778650000000022,50.32915099999998", + "startLcPosition": "112", + "display_type": "PARKING", + "subtitle": "Volkersberg", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.778650000000022", + "lat": "50.32915099999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.778650000000022,50.32915099999998" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000187", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.781750000000024,50.328399999999974,9.781750000000024,50.328399999999974", + "point": "9.781750000000024,50.328399999999974", + "startLcPosition": "113", + "display_type": "PARKING", + "subtitle": "Rehhecke", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.781750000000024", + "lat": "50.328399999999974" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.781750000000024,50.328399999999974" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008589", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.757786000000019,50.344788999999984,9.757786000000019,50.344788999999984", + "point": "9.757786000000019,50.344788999999984", + "startLcPosition": "114", + "display_type": "PARKING", + "subtitle": "Rh\u00f6nblick W (geschlossen)", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.757786000000019", + "lat": "50.344788999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.757786000000019,50.344788999999984" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-HE-003216", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.733790000000017,50.384278999999985,9.733790000000017,50.384278999999985", + "point": "9.733790000000017,50.384278999999985", + "startLcPosition": "117", + "display_type": "PARKING", + "subtitle": "Am Forsthaus", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.733790000000017", + "lat": "50.384278999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.733790000000017,50.384278999999985" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000184", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.75230000000002,50.34744999999999,9.75230000000002,50.34744999999999", + "point": "9.75230000000002,50.34744999999999", + "startLcPosition": "117", + "display_type": "PARKING", + "subtitle": "Speicherz", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.75230000000002", + "lat": "50.34744999999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.75230000000002,50.34744999999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-HE-700037", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.734381000000019,50.41843599999998,9.734381000000019,50.41843599999998", + "point": "9.734381000000019,50.41843599999998", + "startLcPosition": "118", + "display_type": "PARKING", + "subtitle": "Uttrichshausen W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.734381000000019", + "lat": "50.41843599999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 63", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.734381000000019,50.41843599999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700034", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.732244000000014,50.45159399999999,9.732244000000014,50.45159399999999", + "point": "9.732244000000014,50.45159399999999", + "startLcPosition": "120", + "display_type": "PARKING", + "subtitle": "Steinborntal", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.732244000000014", + "lat": "50.45159399999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.732244000000014,50.45159399999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700036", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.736949000000017,50.41894099999998,9.736949000000017,50.41894099999998", + "point": "9.736949000000017,50.41894099999998", + "startLcPosition": "120", + "display_type": "PARKING", + "subtitle": "Uttrichshausen O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.736949000000017", + "lat": "50.41894099999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 110", + "LKW Stellpl\u00e4tze: 90" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.736949000000017,50.41894099999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-003215", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.744936000000017,50.436914999999985,9.744936000000017,50.436914999999985", + "point": "9.744936000000017,50.436914999999985", + "startLcPosition": "121", + "display_type": "PARKING", + "subtitle": "Lohm\u00fchle", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.744936000000017", + "lat": "50.436914999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.744936000000017,50.436914999999985" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-HE-700033", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.721538000000015,50.46214199999997,9.721538000000015,50.46214199999997", + "point": "9.721538000000015,50.46214199999997", + "startLcPosition": "122", + "display_type": "PARKING", + "subtitle": "Riederberg", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.721538000000015", + "lat": "50.46214199999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.721538000000015,50.46214199999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.712299000000014,50.472848999999975,9.712299000000014,50.472848999999975", + "point": "9.712299000000014,50.472848999999975", + "startLcPosition": "123", + "display_type": "PARKING", + "subtitle": "Steinhauk", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.712299000000014", + "lat": "50.472848999999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.712299000000014,50.472848999999975" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.738828000000016,50.509371999999985,9.738828000000016,50.509371999999985", + "point": "9.738828000000016,50.509371999999985", + "startLcPosition": "125", + "display_type": "PARKING", + "subtitle": "Pilgerzell", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.738828000000016", + "lat": "50.509371999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.738828000000016,50.509371999999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.730199000000015,50.54505299999999,9.730199000000015,50.54505299999999", + "point": "9.730199000000015,50.54505299999999", + "startLcPosition": "126", + "display_type": "PARKING", + "subtitle": "R\u00f6ther Tannen", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.730199000000015", + "lat": "50.54505299999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.730199000000015,50.54505299999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700029", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.730901000000014,50.558344999999996,9.730901000000014,50.558344999999996", + "point": "9.730901000000014,50.558344999999996", + "startLcPosition": "129", + "display_type": "PARKING", + "subtitle": "Petersberg", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.730901000000014", + "lat": "50.558344999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 43", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.730901000000014,50.558344999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-003212", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.696660000000014,50.58850099999999,9.696660000000014,50.58850099999999", + "point": "9.696660000000014,50.58850099999999", + "startLcPosition": "131", + "display_type": "PARKING", + "subtitle": "Gei\u00dfhecke", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.696660000000014", + "lat": "50.58850099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.696660000000014,50.58850099999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-HE-700025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.680559000000011,50.60684099999999,9.680559000000011,50.60684099999999", + "point": "9.680559000000011,50.60684099999999", + "startLcPosition": "131", + "display_type": "PARKING", + "subtitle": "Hummelskopf", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.680559000000011", + "lat": "50.60684099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.680559000000011,50.60684099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700023", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.681117000000015,50.650635999999984,9.681117000000015,50.650635999999984", + "point": "9.681117000000015,50.650635999999984", + "startLcPosition": "134", + "display_type": "PARKING", + "subtitle": "Fuchsberg", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.681117000000015", + "lat": "50.650635999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.681117000000015,50.650635999999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700024", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.677928000000009,50.624657999999975,9.677928000000009,50.624657999999975", + "point": "9.677928000000009,50.624657999999975", + "startLcPosition": "134", + "display_type": "PARKING", + "subtitle": "Rotkopf", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.677928000000009", + "lat": "50.624657999999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.677928000000009,50.624657999999975" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.68263900000001,50.68464799999999,9.68263900000001,50.68464799999999", + "point": "9.68263900000001,50.68464799999999", + "startLcPosition": "136", + "display_type": "PARKING", + "subtitle": "G\u00fcnterswald", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.68263900000001", + "lat": "50.68464799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.68263900000001,50.68464799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.683599000000012,50.68464799999998,9.683599000000012,50.68464799999998", + "point": "9.683599000000012,50.68464799999998", + "startLcPosition": "137", + "display_type": "PARKING", + "subtitle": "Mahlertshof", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.683599000000012", + "lat": "50.68464799999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.683599000000012,50.68464799999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.66178600000001,50.711759,9.66178600000001,50.711759", + "point": "9.66178600000001,50.711759", + "startLcPosition": "137", + "display_type": "PARKING", + "subtitle": "Gro\u00dfenmoor W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.66178600000001", + "lat": "50.711759" + }, + "description": [ + "PKW Stellpl\u00e4tze: 93", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.66178600000001,50.711759" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700018", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.629496000000008,50.748376999999984,9.629496000000008,50.748376999999984", + "point": "9.629496000000008,50.748376999999984", + "startLcPosition": "138", + "display_type": "PARKING", + "subtitle": "Dornbusch", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.629496000000008", + "lat": "50.748376999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.629496000000008,50.748376999999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700019", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.661454000000008,50.713923,9.661454000000008,50.713923", + "point": "9.661454000000008,50.713923", + "startLcPosition": "139", + "display_type": "PARKING", + "subtitle": "Gro\u00dfenmoor O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.661454000000008", + "lat": "50.713923" + }, + "description": [ + "PKW Stellpl\u00e4tze: 86", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.661454000000008,50.713923" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.600705000000005,50.76118499999998,9.600705000000005,50.76118499999998", + "point": "9.600705000000005,50.76118499999998", + "startLcPosition": "141", + "display_type": "PARKING", + "subtitle": "Richtgraben", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.600705000000005", + "lat": "50.76118499999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.600705000000005,50.76118499999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.556546000000004,50.78352900000001,9.556546000000004,50.78352900000001", + "point": "9.556546000000004,50.78352900000001", + "startLcPosition": "142", + "display_type": "PARKING", + "subtitle": "Strampen", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.556546000000004", + "lat": "50.78352900000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.556546000000004,50.78352900000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.549437000000003,50.790153999999994,9.549437000000003,50.790153999999994", + "point": "9.549437000000003,50.790153999999994", + "startLcPosition": "144", + "display_type": "PARKING", + "subtitle": "Ottersbach", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.549437000000003", + "lat": "50.790153999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.549437000000003,50.790153999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.576290000000004,50.83066399999999,9.576290000000004,50.83066399999999", + "point": "9.576290000000004,50.83066399999999", + "startLcPosition": "146", + "display_type": "PARKING", + "subtitle": "Kirchheim O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.576290000000004", + "lat": "50.83066399999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.576290000000004,50.83066399999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.540561000000004,50.939539999999994,9.540561000000004,50.939539999999994", + "point": "9.540561000000004,50.939539999999994", + "startLcPosition": "149", + "display_type": "PARKING", + "subtitle": "Pommer", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.540561000000004", + "lat": "50.939539999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.540561000000004,50.939539999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.530850000000003,50.945192999999996,9.530850000000003,50.945192999999996", + "point": "9.530850000000003,50.945192999999996", + "startLcPosition": "151", + "display_type": "PARKING", + "subtitle": "Fuchsrain", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.530850000000003", + "lat": "50.945192999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.530850000000003,50.945192999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.486730000000001,51.035908,9.486730000000001,51.035908", + "point": "9.486730000000001,51.035908", + "startLcPosition": "151", + "display_type": "PARKING", + "subtitle": "Hasselberg W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.486730000000001", + "lat": "51.035908" + }, + "description": [ + "PKW Stellpl\u00e4tze: 92", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.486730000000001,51.035908" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.488825000000002,51.03538100000001,9.488825000000002,51.03538100000001", + "point": "9.488825000000002,51.03538100000001", + "startLcPosition": "152", + "display_type": "PARKING", + "subtitle": "Hasselberg O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.488825000000002", + "lat": "51.03538100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 98", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.488825000000002,51.03538100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.471978,51.176883000000004,9.471978,51.176883000000004", + "point": "9.471978,51.176883000000004", + "startLcPosition": "155", + "display_type": "PARKING", + "subtitle": "Markwald", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.471978", + "lat": "51.176883000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.471978,51.176883000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.474417000000004,51.180789999999995,9.474417000000004,51.180789999999995", + "point": "9.474417000000004,51.180789999999995", + "startLcPosition": "157", + "display_type": "PARKING", + "subtitle": "Quillerwald", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.474417000000004", + "lat": "51.180789999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.474417000000004,51.180789999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-700001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.564388000000003,51.32026799999999,9.564388000000003,51.32026799999999", + "point": "9.564388000000003,51.32026799999999", + "startLcPosition": "162", + "display_type": "PARKING", + "subtitle": "Herkulesblick", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.564388000000003", + "lat": "51.32026799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.564388000000003,51.32026799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-462301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.606644000000006,51.349356,9.606644000000006,51.349356", + "point": "9.606644000000006,51.349356", + "startLcPosition": "164", + "display_type": "PARKING", + "subtitle": "Staufenberg O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.606644000000006", + "lat": "51.349356" + }, + "description": [ + "PKW Stellpl\u00e4tze: 51", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.606644000000006,51.349356" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-462402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.669324000000008,51.39662499999999,9.669324000000008,51.39662499999999", + "point": "9.669324000000008,51.39662499999999", + "startLcPosition": "165", + "display_type": "PARKING", + "subtitle": "Humboldtblick W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.669324000000008", + "lat": "51.39662499999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.669324000000008,51.39662499999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-462403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.780185000000019,51.39579999999999,9.780185000000019,51.39579999999999", + "point": "9.780185000000019,51.39579999999999", + "startLcPosition": "169", + "display_type": "PARKING", + "subtitle": "Hackelberg W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.780185000000019", + "lat": "51.39579999999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.780185000000019,51.39579999999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-462401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.77729800000002,51.394658999999976,9.77729800000002,51.394658999999976", + "point": "9.77729800000002,51.394658999999976", + "startLcPosition": "169", + "display_type": "PARKING", + "subtitle": "Hedem\u00fcnden O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.77729800000002", + "lat": "51.394658999999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.77729800000002,51.394658999999976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-452502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.876115000000034,51.49380099999995,9.876115000000034,51.49380099999995", + "point": "9.876115000000034,51.49380099999995", + "startLcPosition": "172", + "display_type": "PARKING", + "subtitle": "G\u00f6ttingen W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.876115000000034", + "lat": "51.49380099999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.876115000000034,51.49380099999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-452501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.877499000000036,51.48904799999995,9.877499000000036,51.48904799999995", + "point": "9.877499000000036,51.48904799999995", + "startLcPosition": "172", + "display_type": "PARKING", + "subtitle": "G\u00f6ttingen O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.877499000000036", + "lat": "51.48904799999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 108", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.877499000000036,51.48904799999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-432502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.90505200000004,51.605796999999946,9.90505200000004,51.605796999999946", + "point": "9.90505200000004,51.605796999999946", + "startLcPosition": "175", + "display_type": "PARKING", + "subtitle": "Leineholz West", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.90505200000004", + "lat": "51.605796999999946" + }, + "description": [ + "PKW Stellpl\u00e4tze: 62", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.90505200000004,51.605796999999946" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-432501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.90640700000004,51.60300199999995,9.90640700000004,51.60300199999995", + "point": "9.90640700000004,51.60300199999995", + "startLcPosition": "176", + "display_type": "PARKING", + "subtitle": "Leineholz Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.90640700000004", + "lat": "51.60300199999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 56", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.90640700000004,51.60300199999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-422501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.94074900000005,51.71572599999992,9.94074900000005,51.71572599999992", + "point": "9.94074900000005,51.71572599999992", + "startLcPosition": "178", + "display_type": "PARKING", + "subtitle": "Schlochau W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.94074900000005", + "lat": "51.71572599999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 64", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.94074900000005,51.71572599999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-422601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.031721000000077,51.779829999999876,10.031721000000077,51.779829999999876", + "point": "10.031721000000077,51.779829999999876", + "startLcPosition": "180", + "display_type": "PARKING", + "subtitle": "Am Bierberg West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.031721000000077", + "lat": "51.779829999999876" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.031721000000077,51.779829999999876" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-422502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.94355500000005,51.717216999999934,9.94355500000005,51.717216999999934", + "point": "9.94355500000005,51.717216999999934", + "startLcPosition": "180", + "display_type": "PARKING", + "subtitle": "Schlochau O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.94355500000005", + "lat": "51.717216999999934" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.94355500000005,51.717216999999934" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-422602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.03485000000008,51.781211999999876,10.03485000000008,51.781211999999876", + "point": "10.03485000000008,51.781211999999876", + "startLcPosition": "182", + "display_type": "PARKING", + "subtitle": "Am Bierberg Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.03485000000008", + "lat": "51.781211999999876" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.03485000000008,51.781211999999876" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-412603", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.123947000000117,51.85627699999979,10.123947000000117,51.85627699999979", + "point": "10.123947000000117,51.85627699999979", + "startLcPosition": "184", + "display_type": "PARKING", + "subtitle": "Schwalenberg West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.123947000000117", + "lat": "51.85627699999979" + }, + "description": [ + "PKW Stellpl\u00e4tze: 45", + "LKW Stellpl\u00e4tze: 76" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.123947000000117,51.85627699999979" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-412601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.126013000000121,51.85605999999979,10.126013000000121,51.85605999999979", + "point": "10.126013000000121,51.85605999999979", + "startLcPosition": "184", + "display_type": "PARKING", + "subtitle": "Schwalenberg Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.126013000000121", + "lat": "51.85605999999979" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 109" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.126013000000121,51.85605999999979" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-402604", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.141580000000127,51.927909999999784,10.141580000000127,51.927909999999784", + "point": "10.141580000000127,51.927909999999784", + "startLcPosition": "185", + "display_type": "PARKING", + "subtitle": "Harz W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.141580000000127", + "lat": "51.927909999999784" + }, + "description": [ + "PKW Stellpl\u00e4tze: 151", + "LKW Stellpl\u00e4tze: 63" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.141580000000127,51.927909999999784" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-402603", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.14417000000013,51.926539999999775,10.14417000000013,51.926539999999775", + "point": "10.14417000000013,51.926539999999775", + "startLcPosition": "186", + "display_type": "PARKING", + "subtitle": "Harz O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.14417000000013", + "lat": "51.926539999999775" + }, + "description": [ + "PKW Stellpl\u00e4tze: 172", + "LKW Stellpl\u00e4tze: 64" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.14417000000013,51.926539999999775" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-005332", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.150365000000132,51.97724299999977,10.150365000000132,51.97724299999977", + "point": "10.150365000000132,51.97724299999977", + "startLcPosition": "188", + "display_type": "PARKING", + "subtitle": "Ambergau West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.150365000000132", + "lat": "51.97724299999977" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.150365000000132,51.97724299999977" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-005331", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.151856000000134,51.977640999999764,10.151856000000134,51.977640999999764", + "point": "10.151856000000134,51.977640999999764", + "startLcPosition": "189", + "display_type": "PARKING", + "subtitle": "Ambergau Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.151856000000134", + "lat": "51.977640999999764" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.151856000000134,51.977640999999764" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-005329", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.190954000000154,52.05820799999972,10.190954000000154,52.05820799999972", + "point": "10.190954000000154,52.05820799999972", + "startLcPosition": "191", + "display_type": "PARKING", + "subtitle": "J\u00e4gerturm West", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.190954000000154", + "lat": "52.05820799999972" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.190954000000154,52.05820799999972" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-005328", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.192814000000158,52.05909799999972,10.192814000000158,52.05909799999972", + "point": "10.192814000000158,52.05909799999972", + "startLcPosition": "192", + "display_type": "PARKING", + "subtitle": "J\u00e4gerturm Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.192814000000158", + "lat": "52.05909799999972" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 59" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.192814000000158,52.05909799999972" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-382601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.051571000000083,52.12624399999987,10.051571000000083,52.12624399999987", + "point": "10.051571000000083,52.12624399999987", + "startLcPosition": "195", + "display_type": "PARKING", + "subtitle": "Hildesheimer B\u00f6rde W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.051571000000083", + "lat": "52.12624399999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 55", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.051571000000083,52.12624399999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-382603", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.050424000000083,52.12800399999987,10.050424000000083,52.12800399999987", + "point": "10.050424000000083,52.12800399999987", + "startLcPosition": "196", + "display_type": "PARKING", + "subtitle": "Hildesheimer B\u00f6rde O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.050424000000083", + "lat": "52.12800399999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.050424000000083,52.12800399999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-372502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.929530000000044,52.23874999999994,9.929530000000044,52.23874999999994", + "point": "9.929530000000044,52.23874999999994", + "startLcPosition": "198", + "display_type": "PARKING", + "subtitle": "An der Alpe West", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.929530000000044", + "lat": "52.23874999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.929530000000044,52.23874999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-372501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.930310000000045,52.238910999999945,9.930310000000045,52.238910999999945", + "point": "9.930310000000045,52.238910999999945", + "startLcPosition": "199", + "display_type": "PARKING", + "subtitle": "An der Alpe Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.930310000000045", + "lat": "52.238910999999945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.930310000000045,52.238910999999945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-362501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.86550500000003,52.33352499999996,9.86550500000003,52.33352499999996", + "point": "9.86550500000003,52.33352499999996", + "startLcPosition": "201", + "display_type": "PARKING", + "subtitle": "H-W\u00fclferode O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.86550500000003", + "lat": "52.33352499999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 75", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.86550500000003,52.33352499999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-362502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.86380000000003,52.33773599999996,9.86380000000003,52.33773599999996", + "point": "9.86380000000003,52.33773599999996", + "startLcPosition": "201", + "display_type": "PARKING", + "subtitle": "H-W\u00fclferode W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.86380000000003", + "lat": "52.33773599999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 80", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.86380000000003,52.33773599999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-352502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.897723000000035,52.41022899999995,9.897723000000035,52.41022899999995", + "point": "9.897723000000035,52.41022899999995", + "startLcPosition": "205", + "display_type": "PARKING", + "subtitle": "Altwarmb\u00fcchener Moor O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.897723000000035", + "lat": "52.41022899999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.897723000000035,52.41022899999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-342402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.824370000000025,52.50328899999996,9.824370000000025,52.50328899999996", + "point": "9.824370000000025,52.50328899999996", + "startLcPosition": "208", + "display_type": "PARKING", + "subtitle": "Seckbruch W (Gro\u00dfburgwedel W)", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.824370000000025", + "lat": "52.50328899999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.824370000000025,52.50328899999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-342403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.825498000000024,52.50595899999997,9.825498000000024,52.50595899999997", + "point": "9.825498000000024,52.50595899999997", + "startLcPosition": "209", + "display_type": "PARKING", + "subtitle": "Springhorst O (Gro\u00dfburgwedel O)", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.825498000000024", + "lat": "52.50595899999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 76", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.825498000000024,52.50595899999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-342406", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.774285000000019,52.57575199999998,9.774285000000019,52.57575199999998", + "point": "9.774285000000019,52.57575199999998", + "startLcPosition": "212", + "display_type": "PARKING", + "subtitle": "Osterriehe W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.774285000000019", + "lat": "52.57575199999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.774285000000019,52.57575199999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-342401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.776842000000018,52.57606399999999,9.776842000000018,52.57606399999999", + "point": "9.776842000000018,52.57606399999999", + "startLcPosition": "213", + "display_type": "PARKING", + "subtitle": "Up'n Bummelskampe O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.776842000000018", + "lat": "52.57606399999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.776842000000018,52.57606399999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-332404", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.68547100000001,52.695398999999995,9.68547100000001,52.695398999999995", + "point": "9.68547100000001,52.695398999999995", + "startLcPosition": "217", + "display_type": "PARKING", + "subtitle": "Allertal W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.68547100000001", + "lat": "52.695398999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 102", + "LKW Stellpl\u00e4tze: 70" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.68547100000001,52.695398999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-332401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.688118000000008,52.695485,9.688118000000008,52.695485", + "point": "9.688118000000008,52.695485", + "startLcPosition": "218", + "display_type": "PARKING", + "subtitle": "Allertal O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.688118000000008", + "lat": "52.695485" + }, + "description": [ + "PKW Stellpl\u00e4tze: 95", + "LKW Stellpl\u00e4tze: 49" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.688118000000008,52.695485" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-312402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.679460000000011,52.810658999999994,9.679460000000011,52.810658999999994", + "point": "9.679460000000011,52.810658999999994", + "startLcPosition": "221", + "display_type": "PARKING", + "subtitle": "Wolfsgrund W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.679460000000011", + "lat": "52.810658999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.679460000000011,52.810658999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-312403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.680392000000008,52.81017099999998,9.680392000000008,52.81017099999998", + "point": "9.680392000000008,52.81017099999998", + "startLcPosition": "221", + "display_type": "PARKING", + "subtitle": "Wolfsgrund O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.680392000000008", + "lat": "52.81017099999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.680392000000008,52.81017099999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-312404", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.757141000000015,52.88477499999998,9.757141000000015,52.88477499999998", + "point": "9.757141000000015,52.88477499999998", + "startLcPosition": "223", + "display_type": "PARKING", + "subtitle": "Steinbach W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.757141000000015", + "lat": "52.88477499999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.757141000000015,52.88477499999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-302401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.79001000000002,52.904967999999975,9.79001000000002,52.904967999999975", + "point": "9.79001000000002,52.904967999999975", + "startLcPosition": "226", + "display_type": "PARKING", + "subtitle": "Dorfmark O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.79001000000002", + "lat": "52.904967999999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.79001000000002,52.904967999999975" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-302504", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.894517000000034,52.96174899999995,9.894517000000034,52.96174899999995", + "point": "9.894517000000034,52.96174899999995", + "startLcPosition": "228", + "display_type": "PARKING", + "subtitle": "Vorm Wietzenbruch W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.894517000000034", + "lat": "52.96174899999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.894517000000034,52.96174899999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-005314", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.901836000000035,52.962938999999935,9.901836000000035,52.962938999999935", + "point": "9.901836000000035,52.962938999999935", + "startLcPosition": "229", + "display_type": "PARKING", + "subtitle": "Abelbeck Kuhbusch O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.901836000000035", + "lat": "52.962938999999935" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 66" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.901836000000035,52.962938999999935" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-292502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.947110000000045,53.03321799999992,9.947110000000045,53.03321799999992", + "point": "9.947110000000045,53.03321799999992", + "startLcPosition": "231", + "display_type": "PARKING", + "subtitle": "Am St\u00fchbeckshorn O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.947110000000045", + "lat": "53.03321799999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.947110000000045,53.03321799999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-292501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.949470000000044,53.048419999999915,9.949470000000044,53.048419999999915", + "point": "9.949470000000044,53.048419999999915", + "startLcPosition": "232", + "display_type": "PARKING", + "subtitle": "Timmerloh W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.949470000000044", + "lat": "53.048419999999915" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.949470000000044,53.048419999999915" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-282601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.981701000000053,53.111091999999914,9.981701000000053,53.111091999999914", + "point": "9.981701000000053,53.111091999999914", + "startLcPosition": "236", + "display_type": "PARKING", + "subtitle": "L\u00fcneburger Heide West", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.981701000000053", + "lat": "53.111091999999914" + }, + "description": [ + "PKW Stellpl\u00e4tze: 108", + "LKW Stellpl\u00e4tze: 120" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.981701000000053,53.111091999999914" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-282603", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.985059000000053,53.110374999999905,9.985059000000053,53.110374999999905", + "point": "9.985059000000053,53.110374999999905", + "startLcPosition": "237", + "display_type": "PARKING", + "subtitle": "L\u00fcneburger Heide Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.985059000000053", + "lat": "53.110374999999905" + }, + "description": [ + "PKW Stellpl\u00e4tze: 96", + "LKW Stellpl\u00e4tze: 74" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.985059000000053,53.110374999999905" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-282501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.997775000000058,53.1367649999999,9.997775000000058,53.1367649999999", + "point": "9.997775000000058,53.1367649999999", + "startLcPosition": "238", + "display_type": "PARKING", + "subtitle": "Vorm Naturschutzpark W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.997775000000058", + "lat": "53.1367649999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.997775000000058,53.1367649999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-282602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.023583000000066,53.14806799999988,10.023583000000066,53.14806799999988", + "point": "10.023583000000066,53.14806799999988", + "startLcPosition": "238", + "display_type": "PARKING", + "subtitle": "Auegrund W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.023583000000066", + "lat": "53.14806799999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.023583000000066,53.14806799999988" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-272603", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.075363000000081,53.22672099999984,10.075363000000081,53.22672099999984", + "point": "10.075363000000081,53.22672099999984", + "startLcPosition": "241", + "display_type": "PARKING", + "subtitle": "Garlstorfer Wald W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.075363000000081", + "lat": "53.22672099999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.075363000000081,53.22672099999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-272602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.077834000000081,53.23138699999984,10.077834000000081,53.23138699999984", + "point": "10.077834000000081,53.23138699999984", + "startLcPosition": "244", + "display_type": "PARKING", + "subtitle": "Schaapskaben O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.077834000000081", + "lat": "53.23138699999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 63", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.077834000000081,53.23138699999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-272601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.088024000000088,53.253243999999846,10.088024000000088,53.253243999999846", + "point": "10.088024000000088,53.253243999999846", + "startLcPosition": "245", + "display_type": "PARKING", + "subtitle": "Utspann O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.088024000000088", + "lat": "53.253243999999846" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.088024000000088,53.253243999999846" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-272604", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.077657000000084,53.29156499999984,10.077657000000084,53.29156499999984", + "point": "10.077657000000084,53.29156499999984", + "startLcPosition": "247", + "display_type": "PARKING", + "subtitle": "Eichberg O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.077657000000084", + "lat": "53.29156499999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.077657000000084,53.29156499999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.04276100000007,53.33129399999987,10.04276100000007,53.33129399999987", + "point": "10.04276100000007,53.33129399999987", + "startLcPosition": "247", + "display_type": "PARKING", + "subtitle": "Hasselh\u00f6he W", + "title": "A7 | Reutte", + "coordinate": { + "long": "10.04276100000007", + "lat": "53.33129399999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 60" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.04276100000007,53.33129399999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.03904900000007,53.34779599999988,10.03904900000007,53.34779599999988", + "point": "10.03904900000007,53.34779599999988", + "startLcPosition": "250", + "display_type": "PARKING", + "subtitle": "Seevetal O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "10.03904900000007", + "lat": "53.34779599999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.03904900000007,53.34779599999988" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-HH-000009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.963727000000047,53.42410999999992,9.963727000000047,53.42410999999992", + "point": "9.963727000000047,53.42410999999992", + "startLcPosition": "255", + "display_type": "PARKING", + "subtitle": "Harburger Berge W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.963727000000047", + "lat": "53.42410999999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.963727000000047,53.42410999999992" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-HH-000008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.966342000000045,53.424058999999914,9.966342000000045,53.424058999999914", + "point": "9.966342000000045,53.424058999999914", + "startLcPosition": "255", + "display_type": "PARKING", + "subtitle": "Harburger Berge O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.966342000000045", + "lat": "53.424058999999914" + }, + "description": [ + "PKW Stellpl\u00e4tze: 54", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.966342000000045,53.424058999999914" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SH-007201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.939760000000039,53.67137699999992,9.939760000000039,53.67137699999992", + "point": "9.939760000000039,53.67137699999992", + "startLcPosition": "272", + "display_type": "PARKING", + "subtitle": "B\u00f6nningstedt-West", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.939760000000039", + "lat": "53.67137699999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.939760000000039,53.67137699999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.939852000000041,53.66830899999993,9.939852000000041,53.66830899999993", + "point": "9.939852000000041,53.66830899999993", + "startLcPosition": "273", + "display_type": "PARKING", + "subtitle": "B\u00f6nningstedt-Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.939852000000041", + "lat": "53.66830899999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.939852000000041,53.66830899999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.93770800000004,53.71707699999993,9.93770800000004,53.71707699999993", + "point": "9.93770800000004,53.71707699999993", + "startLcPosition": "273", + "display_type": "PARKING", + "subtitle": "Holmmoor W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.93770800000004", + "lat": "53.71707699999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 79", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.93770800000004,53.71707699999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.940039000000038,53.717721999999945,9.940039000000038,53.717721999999945", + "point": "9.940039000000038,53.717721999999945", + "startLcPosition": "275", + "display_type": "PARKING", + "subtitle": "Holmmoor O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.940039000000038", + "lat": "53.717721999999945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 108", + "LKW Stellpl\u00e4tze: 93" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.940039000000038,53.717721999999945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007203", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.922333000000034,53.82095699999994,9.922333000000034,53.82095699999994", + "point": "9.922333000000034,53.82095699999994", + "startLcPosition": "276", + "display_type": "PARKING", + "subtitle": "Moorkaten W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.922333000000034", + "lat": "53.82095699999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 67", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.922333000000034,53.82095699999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.923944000000036,53.821946999999945,9.923944000000036,53.821946999999945", + "point": "9.923944000000036,53.821946999999945", + "startLcPosition": "278", + "display_type": "PARKING", + "subtitle": "Moorkaten O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.923944000000036", + "lat": "53.821946999999945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 57" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.923944000000036,53.821946999999945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007104", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.94081200000004,53.92343199999993,9.94081200000004,53.92343199999993", + "point": "9.94081200000004,53.92343199999993", + "startLcPosition": "280", + "display_type": "PARKING", + "subtitle": "Sielsbrook", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.94081200000004", + "lat": "53.92343199999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 70", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.94081200000004,53.92343199999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007204", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.94644100000004,53.94178299999992,9.94644100000004,53.94178299999992", + "point": "9.94644100000004,53.94178299999992", + "startLcPosition": "280", + "display_type": "PARKING", + "subtitle": "Bim\u00f6hlen", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.94644100000004", + "lat": "53.94178299999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 67", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.94644100000004,53.94178299999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.933520000000035,54.01421599999993,9.933520000000035,54.01421599999993", + "point": "9.933520000000035,54.01421599999993", + "startLcPosition": "284", + "display_type": "PARKING", + "subtitle": "Brokenlande O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.933520000000035", + "lat": "54.01421599999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 67", + "LKW Stellpl\u00e4tze: 94" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.933520000000035,54.01421599999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007205", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.929389000000038,54.09226799999993,9.929389000000038,54.09226799999993", + "point": "9.929389000000038,54.09226799999993", + "startLcPosition": "285", + "display_type": "PARKING", + "subtitle": "Aalbek W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.929389000000038", + "lat": "54.09226799999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 118", + "LKW Stellpl\u00e4tze: 95" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.929389000000038,54.09226799999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007106", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.932334000000036,54.18867999999993,9.932334000000036,54.18867999999993", + "point": "9.932334000000036,54.18867999999993", + "startLcPosition": "291", + "display_type": "PARKING", + "subtitle": "D\u00e4tgen", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.932334000000036", + "lat": "54.18867999999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.932334000000036,54.18867999999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007206", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.776140000000012,54.27520499999997,9.776140000000012,54.27520499999997", + "point": "9.776140000000012,54.27520499999997", + "startLcPosition": "292", + "display_type": "PARKING", + "subtitle": "Ohe West", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.776140000000012", + "lat": "54.27520499999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.776140000000012,54.27520499999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007107", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.771243000000014,54.28293199999999,9.771243000000014,54.28293199999999", + "point": "9.771243000000014,54.28293199999999", + "startLcPosition": "294", + "display_type": "PARKING", + "subtitle": "Ohe Ost", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.771243000000014", + "lat": "54.28293199999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.771243000000014,54.28293199999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007208", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.671262000000008,54.36378299999999,9.671262000000008,54.36378299999999", + "point": "9.671262000000008,54.36378299999999", + "startLcPosition": "298", + "display_type": "PARKING", + "subtitle": "H\u00fcttener Berge W", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.671262000000008", + "lat": "54.36378299999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 48", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.671262000000008,54.36378299999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007109", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.671487000000008,54.365461999999994,9.671487000000008,54.365461999999994", + "point": "9.671487000000008,54.365461999999994", + "startLcPosition": "300", + "display_type": "PARKING", + "subtitle": "H\u00fcttener Berge O", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.671487000000008", + "lat": "54.365461999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 77", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.671487000000008,54.365461999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-001072", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.589031000000004,54.444468,9.589031000000004,54.444468", + "point": "9.589031000000004,54.444468", + "startLcPosition": "302", + "display_type": "PARKING", + "subtitle": "Lottorf", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.589031000000004", + "lat": "54.444468" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.589031000000004,54.444468" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SH-007210", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.503231000000001,54.50472100000001,9.503231000000001,54.50472100000001", + "point": "9.503231000000001,54.50472100000001", + "startLcPosition": "303", + "display_type": "PARKING", + "subtitle": "H\u00fcsby", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.503231000000001", + "lat": "54.50472100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.503231000000001,54.50472100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007211", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.442502000000001,54.616597999999996,9.442502000000001,54.616597999999996", + "point": "9.442502000000001,54.616597999999996", + "startLcPosition": "306", + "display_type": "PARKING", + "subtitle": "Jalmer Moor", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.442502000000001", + "lat": "54.616597999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.442502000000001,54.616597999999996" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SH-007111", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.473274000000002,54.538377999999994,9.473274000000002,54.538377999999994", + "point": "9.473274000000002,54.538377999999994", + "startLcPosition": "306", + "display_type": "PARKING", + "subtitle": "Arenholz", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.473274000000002", + "lat": "54.538377999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.473274000000002,54.538377999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007112", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.439802,54.635382,9.439802,54.635382", + "point": "9.439802,54.635382", + "startLcPosition": "308", + "display_type": "PARKING", + "subtitle": "Jalm", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.439802", + "lat": "54.635382" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.439802,54.635382" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SH-007113", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.377259,54.748423,9.377259,54.748423", + "point": "9.377259,54.748423", + "startLcPosition": "312", + "display_type": "PARKING", + "subtitle": "Altholzkrug", + "title": "A7 | Appenrade", + "coordinate": { + "long": "9.377259", + "lat": "54.748423" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.377259,54.748423" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-007212", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.328386,54.80414699999999,9.328386,54.80414699999999", + "point": "9.328386,54.80414699999999", + "startLcPosition": "313", + "display_type": "PARKING", + "subtitle": "Ellund West", + "title": "A7 | Reutte", + "coordinate": { + "long": "9.328386", + "lat": "54.80414699999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.328386,54.80414699999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A8": { + "parking_lorry": [ + { + "identifier": "DE-SL-000031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.373375999990359,49.4838479999689,6.373375999990359,49.4838479999689", + "point": "6.373375999990359,49.4838479999689", + "startLcPosition": "0", + "display_type": "PARKING", + "subtitle": "RA Moseltal N", + "title": "A8 | Salzburg", + "coordinate": { + "long": "6.373375999990359", + "lat": "49.4838479999689" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.373375999990359,49.4838479999689" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.374471999990377,49.483701999968986,6.374471999990377,49.483701999968986", + "point": "6.374471999990377,49.483701999968986", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "RA Moseltal S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "6.374471999990377", + "lat": "49.483701999968986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.374471999990377,49.483701999968986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000520", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.568502999993156,49.453584999980414,6.568502999993156,49.453584999980414", + "point": "6.568502999993156,49.453584999980414", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Weiler ", + "title": "A8 | Salzburg", + "coordinate": { + "long": "6.568502999993156", + "lat": "49.453584999980414" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.568502999993156,49.453584999980414" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000028", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.671406999994361,49.3883759999849,6.671406999994361,49.3883759999849", + "point": "6.671406999994361,49.3883759999849", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Niedm\u00fcndung Nord", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "6.671406999994361", + "lat": "49.3883759999849" + }, + "description": [ + "PKW Stellpl\u00e4tze: 4", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.671406999994361,49.3883759999849" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000029", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.670986999994355,49.3879689999849,6.670986999994355,49.3879689999849", + "point": "6.670986999994355,49.3879689999849", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Niedm\u00fcndung S\u00fcd", + "title": "A8 | Salzburg", + "coordinate": { + "long": "6.670986999994355", + "lat": "49.3879689999849" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.670986999994355,49.3879689999849" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000026", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.98921699999721,49.35237699999374,6.98921699999721,49.35237699999374", + "point": "6.98921699999721,49.35237699999374", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Kutzhof Nord", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "6.98921699999721", + "lat": "49.35237699999374" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.98921699999721,49.35237699999374" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000027", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.994611999997247,49.35044399999384,6.994611999997247,49.35044399999384", + "point": "6.994611999997247,49.35044399999384", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Kutzhof S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "6.994611999997247", + "lat": "49.35044399999384" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.994611999997247,49.35044399999384" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.2274619999985035,49.32671699999706,7.2274619999985035,49.32671699999706", + "point": "7.2274619999985035,49.32671699999706", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "RA Kohlhof", + "title": "A8 | Salzburg", + "coordinate": { + "long": "7.2274619999985035", + "lat": "49.32671699999706" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.2274619999985035,49.32671699999706" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000024", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.287629999998738,49.29972999999761,7.287629999998738,49.29972999999761", + "point": "7.287629999998738,49.29972999999761", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Taubental", + "title": "A8 | Salzburg", + "coordinate": { + "long": "7.287629999998738", + "lat": "49.29972999999761" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.287629999998738,49.29972999999761" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-RP-000164", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.49724699999934,49.21543999999889,7.49724699999934,49.21543999999889", + "point": "7.49724699999934,49.21543999999889", + "startLcPosition": "40", + "display_type": "PARKING", + "subtitle": "Kornberg Nord (Walshausen)", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "7.49724699999934", + "lat": "49.21543999999889" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.49724699999934,49.21543999999889" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000165", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.496940999999338,49.21492199999891,7.496940999999338,49.21492199999891", + "point": "7.496940999999338,49.21492199999891", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "Kornberg S\u00fcd (Walshausen)", + "title": "A8 | Salzburg", + "coordinate": { + "long": "7.496940999999338", + "lat": "49.21492199999891" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.496940999999338,49.21492199999891" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008065", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.482019999999999,48.95669899999999,8.482019999999999,48.95669899999999", + "point": "8.482019999999999,48.95669899999999", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Birkenw\u00e4ldle", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "8.482019999999999", + "lat": "48.95669899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.482019999999999,48.95669899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008580", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.61952,48.912707,8.61952,48.912707", + "point": "8.61952,48.912707", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "RA A8 km 251,1 Ri. Salzburg", + "title": "A8 | Salzburg", + "coordinate": { + "long": "8.61952", + "lat": "48.912707" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.61952,48.912707" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008585", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.505647999999997,48.941418,8.505647999999997,48.941418", + "point": "8.505647999999997,48.941418", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Steinig", + "title": "A8 | Salzburg", + "coordinate": { + "long": "8.505647999999997", + "lat": "48.941418" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.505647999999997,48.941418" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.689791,48.90973,8.689791,48.90973", + "point": "8.689791,48.90973", + "startLcPosition": "49", + "display_type": "PARKING", + "subtitle": "K\u00e4mpfelbach", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "8.689791", + "lat": "48.90973" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.689791,48.90973" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-008575", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.690185,48.908595000000005,8.690185,48.908595000000005", + "point": "8.690185,48.908595000000005", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Am K\u00e4mpfelbach", + "title": "A8 | Salzburg", + "coordinate": { + "long": "8.690185", + "lat": "48.908595000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 127", + "LKW Stellpl\u00e4tze: 64" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.690185,48.908595000000005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008055", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.773517,48.907948000000005,8.773517,48.907948000000005", + "point": "8.773517,48.907948000000005", + "startLcPosition": "52", + "display_type": "PARKING", + "subtitle": "Pforzheim N", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "8.773517", + "lat": "48.907948000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 97", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.773517,48.907948000000005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008570", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.773238,48.906780000000005,8.773238,48.906780000000005", + "point": "8.773238,48.906780000000005", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "RA A8 km 238,4 Ri. Salzburg", + "title": "A8 | Salzburg", + "coordinate": { + "long": "8.773238", + "lat": "48.906780000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.773238,48.906780000000005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.888713,48.82408599999999,8.888713,48.82408599999999", + "point": "8.888713,48.82408599999999", + "startLcPosition": "56", + "display_type": "PARKING", + "subtitle": "H\u00f6llberg", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "8.888713", + "lat": "48.82408599999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.888713,48.82408599999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008565", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.888243,48.823165,8.888243,48.823165", + "point": "8.888243,48.823165", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Heckeng\u00e4u", + "title": "A8 | Salzburg", + "coordinate": { + "long": "8.888243", + "lat": "48.823165" + }, + "description": [ + "PKW Stellpl\u00e4tze: 51", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.888243,48.823165" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008045", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.046052,48.73390500000001,9.046052,48.73390500000001", + "point": "9.046052,48.73390500000001", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Sommerhofen", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "9.046052", + "lat": "48.73390500000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.046052,48.73390500000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008560", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.034285,48.74148800000001,9.034285,48.74148800000001", + "point": "9.034285,48.74148800000001", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Sindelfinger Wald", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.034285", + "lat": "48.74148800000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 126", + "LKW Stellpl\u00e4tze: 51" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.034285,48.74148800000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.302803,48.693722000000015,9.302803,48.693722000000015", + "point": "9.302803,48.693722000000015", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "Denkendorf", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "9.302803", + "lat": "48.693722000000015" + }, + "description": [ + "PKW Stellpl\u00e4tze: 103", + "LKW Stellpl\u00e4tze: 95" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.302803,48.693722000000015" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008555", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.39696,48.652729,9.39696,48.652729", + "point": "9.39696,48.652729", + "startLcPosition": "73", + "display_type": "PARKING", + "subtitle": "Im R\u00fcbholz", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.39696", + "lat": "48.652729" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 51" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.39696,48.652729" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008035", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.537495000000002,48.632295000000006,9.537495000000002,48.632295000000006", + "point": "9.537495000000002,48.632295000000006", + "startLcPosition": "75", + "display_type": "PARKING", + "subtitle": "Urweltfunde", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "9.537495000000002", + "lat": "48.632295000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.537495000000002,48.632295000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008550", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.538403000000004,48.63125699999999,9.538403000000004,48.63125699999999", + "point": "9.538403000000004,48.63125699999999", + "startLcPosition": "78", + "display_type": "PARKING", + "subtitle": "Vor dem Aichelberg", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.538403000000004", + "lat": "48.63125699999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.538403000000004,48.63125699999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.631482000000009,48.608256999999995,9.631482000000009,48.608256999999995", + "point": "9.631482000000009,48.608256999999995", + "startLcPosition": "79", + "display_type": "PARKING", + "subtitle": "Am Kornberg", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "9.631482000000009", + "lat": "48.608256999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.631482000000009,48.608256999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008545", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.631765000000009,48.606517999999994,9.631765000000009,48.606517999999994", + "point": "9.631765000000009,48.606517999999994", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Gruibingen", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.631765000000009", + "lat": "48.606517999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 135", + "LKW Stellpl\u00e4tze: 112" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.631765000000009,48.606517999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.65646000000001,48.55339099999999,9.65646000000001,48.55339099999999", + "point": "9.65646000000001,48.55339099999999", + "startLcPosition": "82", + "display_type": "PARKING", + "subtitle": "Drackensteiner Hang Albabstieg", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "9.65646000000001", + "lat": "48.55339099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.65646000000001,48.55339099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-004469", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.65087100000001,48.57163599999999,9.65087100000001,48.57163599999999", + "point": "9.65087100000001,48.57163599999999", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "Eselsteige Albaufstieg", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.65087100000001", + "lat": "48.57163599999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.65087100000001,48.57163599999999" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-004468", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.63543400000001,48.565495,9.63543400000001,48.565495", + "point": "9.63543400000001,48.565495", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "Sch\u00f6ntalblick Albaufstieg", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.63543400000001", + "lat": "48.565495" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.63543400000001,48.565495" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-004466", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.63229000000001,48.552947999999994,9.63229000000001,48.552947999999994", + "point": "9.63229000000001,48.552947999999994", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "L\u00e4mmerbuckel Albaufstieg", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.63229000000001", + "lat": "48.552947999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.63229000000001,48.552947999999994" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-004470", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.662805000000011,48.577485,9.662805000000011,48.577485", + "point": "9.662805000000011,48.577485", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "M\u00fchlhausen Albaufstieg", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.662805000000011", + "lat": "48.577485" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.662805000000011,48.577485" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-004467", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.630232000000008,48.559601999999984,9.630232000000008,48.559601999999984", + "point": "9.630232000000008,48.559601999999984", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "Malakoff Albaufstieg", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.630232000000008", + "lat": "48.559601999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.630232000000008,48.559601999999984" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-004465", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.642220000000009,48.546600999999995,9.642220000000009,48.546600999999995", + "point": "9.642220000000009,48.546600999999995", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "Heidental", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.642220000000009", + "lat": "48.546600999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.642220000000009,48.546600999999995" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-008020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.66452000000001,48.53350100000001,9.66452000000001,48.53350100000001", + "point": "9.66452000000001,48.53350100000001", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "Hohenstadt", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "9.66452000000001", + "lat": "48.53350100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.66452000000001,48.53350100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.720062000000016,48.52770799999998,9.720062000000016,48.52770799999998", + "point": "9.720062000000016,48.52770799999998", + "startLcPosition": "85", + "display_type": "PARKING", + "subtitle": "Widderstall", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "9.720062000000016", + "lat": "48.52770799999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.720062000000016,48.52770799999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008510", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.717281000000018,48.527308999999995,9.717281000000018,48.527308999999995", + "point": "9.717281000000018,48.527308999999995", + "startLcPosition": "86", + "display_type": "PARKING", + "subtitle": "Albh\u00f6he", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.717281000000018", + "lat": "48.527308999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.717281000000018,48.527308999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-008010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.807363000000032,48.52089699999998,9.807363000000032,48.52089699999998", + "point": "9.807363000000032,48.52089699999998", + "startLcPosition": "88", + "display_type": "PARKING", + "subtitle": "Aichen N", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "9.807363000000032", + "lat": "48.52089699999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 97", + "LKW Stellpl\u00e4tze: 79" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.807363000000032,48.52089699999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-004461", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.833657000000036,48.51068299999997,9.833657000000036,48.51068299999997", + "point": "9.833657000000036,48.51068299999997", + "startLcPosition": "89", + "display_type": "PARKING", + "subtitle": "Scharenstetten", + "title": "A8 | Salzburg", + "coordinate": { + "long": "9.833657000000036", + "lat": "48.51068299999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.833657000000036,48.51068299999997" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-008005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.84600000000004,48.49568199999997,9.84600000000004,48.49568199999997", + "point": "9.84600000000004,48.49568199999997", + "startLcPosition": "90", + "display_type": "PARKING", + "subtitle": "Kemmental", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "9.84600000000004", + "lat": "48.49568199999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.84600000000004,48.49568199999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008747", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.054722000000117,48.453451999999864,10.054722000000117,48.453451999999864", + "point": "10.054722000000117,48.453451999999864", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "Elchingen Nord", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "10.054722000000117", + "lat": "48.453451999999864" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.054722000000117,48.453451999999864" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008749", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.055197000000119,48.45303599999986,10.055197000000119,48.45303599999986", + "point": "10.055197000000119,48.45303599999986", + "startLcPosition": "94", + "display_type": "PARKING", + "subtitle": "Elchingen S\u00fcd", + "title": "A8 | Salzburg", + "coordinate": { + "long": "10.055197000000119", + "lat": "48.45303599999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.055197000000119,48.45303599999986" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000340", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.213732000000244,48.43746399999969,10.213732000000244,48.43746399999969", + "point": "10.213732000000244,48.43746399999969", + "startLcPosition": "98", + "display_type": "PARKING", + "subtitle": "Leipheim S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "10.213732000000244", + "lat": "48.43746399999969" + }, + "description": [ + "PKW Stellpl\u00e4tze: 145", + "LKW Stellpl\u00e4tze: 88" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.213732000000244,48.43746399999969" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000337", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.427605000000547,48.4133259999992,10.427605000000547,48.4133259999992", + "point": "10.427605000000547,48.4133259999992", + "startLcPosition": "100", + "display_type": "PARKING", + "subtitle": "Burgauer See N", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "10.427605000000547", + "lat": "48.4133259999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 115", + "LKW Stellpl\u00e4tze: 57" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.427605000000547,48.4133259999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008641", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.465692000000624,48.41236899999907,10.465692000000624,48.41236899999907", + "point": "10.465692000000624,48.41236899999907", + "startLcPosition": "104", + "display_type": "PARKING", + "subtitle": "Scheppacher Flur", + "title": "A8 | Salzburg", + "coordinate": { + "long": "10.465692000000624", + "lat": "48.41236899999907" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.465692000000624,48.41236899999907" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000332", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.648419000001134,48.41231999999813,10.648419000001134,48.41231999999813", + "point": "10.648419000001134,48.41231999999813", + "startLcPosition": "107", + "display_type": "PARKING", + "subtitle": "Streitheimer Forst N", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "10.648419000001134", + "lat": "48.41231999999813" + }, + "description": [ + "PKW Stellpl\u00e4tze: 48", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.648419000001134,48.41231999999813" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008636", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.639905000001106,48.40962199999817,10.639905000001106,48.40962199999817", + "point": "10.639905000001106,48.40962199999817", + "startLcPosition": "108", + "display_type": "PARKING", + "subtitle": "Streitheimer Forst S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "10.639905000001106", + "lat": "48.40962199999817" + }, + "description": [ + "PKW Stellpl\u00e4tze: 48", + "LKW Stellpl\u00e4tze: 47" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.639905000001106,48.40962199999817" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000331", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.81010200000181,48.41902799999672,10.81010200000181,48.41902799999672", + "point": "10.81010200000181,48.41902799999672", + "startLcPosition": "111", + "display_type": "PARKING", + "subtitle": "Edenbergen S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "10.81010200000181", + "lat": "48.41902799999672" + }, + "description": [ + "PKW Stellpl\u00e4tze: 67", + "LKW Stellpl\u00e4tze: 43" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.81010200000181,48.41902799999672" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000330", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.91277400000239,48.41185099999543,10.91277400000239,48.41185099999543", + "point": "10.91277400000239,48.41185099999543", + "startLcPosition": "112", + "display_type": "PARKING", + "subtitle": "Augsburg O", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "10.91277400000239", + "lat": "48.41185099999543" + }, + "description": [ + "PKW Stellpl\u00e4tze: 133", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.91277400000239,48.41185099999543" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000329", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.986956000002893,48.40074899999424,10.986956000002893,48.40074899999424", + "point": "10.986956000002893,48.40074899999424", + "startLcPosition": "117", + "display_type": "PARKING", + "subtitle": "Kirchholz (S)", + "title": "A8 | Salzburg", + "coordinate": { + "long": "10.986956000002893", + "lat": "48.40074899999424" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.986956000002893,48.40074899999424" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000326", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.15136300000431,48.34306399999076,11.15136300000431,48.34306399999076", + "point": "11.15136300000431,48.34306399999076", + "startLcPosition": "118", + "display_type": "PARKING", + "subtitle": "Adelzhauser Berg Nord", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "11.15136300000431", + "lat": "48.34306399999076" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.15136300000431,48.34306399999076" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000327", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.1502320000043,48.342141999990794,11.1502320000043,48.342141999990794", + "point": "11.1502320000043,48.342141999990794", + "startLcPosition": "119", + "display_type": "PARKING", + "subtitle": "Adelzhauser Berg S\u00fcd", + "title": "A8 | Salzburg", + "coordinate": { + "long": "11.1502320000043", + "lat": "48.342141999990794" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.1502320000043,48.342141999990794" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000324", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.30045500000603,48.25918799998623,11.30045500000603,48.25918799998623", + "point": "11.30045500000603,48.25918799998623", + "startLcPosition": "121", + "display_type": "PARKING", + "subtitle": "Fuchsberg O", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "11.30045500000603", + "lat": "48.25918799998623" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.30045500000603,48.25918799998623" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000325", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.301074000006041,48.256860999986195,11.301074000006041,48.256860999986195", + "point": "11.301074000006041,48.256860999986195", + "startLcPosition": "123", + "display_type": "PARKING", + "subtitle": "Fuchsberg W", + "title": "A8 | Salzburg", + "coordinate": { + "long": "11.301074000006041", + "lat": "48.256860999986195" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.301074000006041,48.256860999986195" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000323", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.448154000008213,48.17021099998002,11.448154000008213,48.17021099998002", + "point": "11.448154000008213,48.17021099998002", + "startLcPosition": "127", + "display_type": "PARKING", + "subtitle": "Pippinger Flur", + "title": "A8 | Salzburg", + "coordinate": { + "long": "11.448154000008213", + "lat": "48.17021099998002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.448154000008213,48.17021099998002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000321", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.677325000012724,47.997233999965985,11.677325000012724,47.997233999965985", + "point": "11.677325000012724,47.997233999965985", + "startLcPosition": "136", + "display_type": "PARKING", + "subtitle": "Brunnthal O", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "11.677325000012724", + "lat": "47.997233999965985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.677325000012724,47.997233999965985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000322", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.675688000012688,47.9977149999661,11.675688000012688,47.9977149999661", + "point": "11.675688000012688,47.9977149999661", + "startLcPosition": "137", + "display_type": "PARKING", + "subtitle": "Hofoldinger Forst W", + "title": "A8 | Salzburg", + "coordinate": { + "long": "11.675688000012688", + "lat": "47.9977149999661" + }, + "description": [ + "PKW Stellpl\u00e4tze: 60", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.675688000012688,47.9977149999661" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000320", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.694928000013183,47.952385999964626,11.694928000013183,47.952385999964626", + "point": "11.694928000013183,47.952385999964626", + "startLcPosition": "138", + "display_type": "PARKING", + "subtitle": "Aying O", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "11.694928000013183", + "lat": "47.952385999964626" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.694928000013183,47.952385999964626" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000319", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.700145000013315,47.94217699996424,11.700145000013315,47.94217699996424", + "point": "11.700145000013315,47.94217699996424", + "startLcPosition": "141", + "display_type": "PARKING", + "subtitle": "Otterfing W", + "title": "A8 | Salzburg", + "coordinate": { + "long": "11.700145000013315", + "lat": "47.94217699996424" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.700145000013315,47.94217699996424" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000317", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.73039700001409,47.89266899996181,11.73039700001409,47.89266899996181", + "point": "11.73039700001409,47.89266899996181", + "startLcPosition": "142", + "display_type": "PARKING", + "subtitle": "Holzkirchen N", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "11.73039700001409", + "lat": "47.89266899996181" + }, + "description": [ + "PKW Stellpl\u00e4tze: 71", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.73039700001409,47.89266899996181" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000318", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.717632000013772,47.90579099996286,11.717632000013772,47.90579099996286", + "point": "11.717632000013772,47.90579099996286", + "startLcPosition": "142", + "display_type": "PARKING", + "subtitle": "Holzkirchen S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "11.717632000013772", + "lat": "47.90579099996286" + }, + "description": [ + "PKW Stellpl\u00e4tze: 73", + "LKW Stellpl\u00e4tze: 61" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.717632000013772,47.90579099996286" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000316", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.85672700001731,47.85750899994995,11.85672700001731,47.85750899994995", + "point": "11.85672700001731,47.85750899994995", + "startLcPosition": "144", + "display_type": "PARKING", + "subtitle": "Seehamer See - Ost O", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "11.85672700001731", + "lat": "47.85750899994995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.85672700001731,47.85750899994995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000315", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.866237000017593,47.84663599994896,11.866237000017593,47.84663599994896", + "point": "11.866237000017593,47.84663599994896", + "startLcPosition": "147", + "display_type": "PARKING", + "subtitle": "Seehamer See - West W", + "title": "A8 | Salzburg", + "coordinate": { + "long": "11.866237000017593", + "lat": "47.84663599994896" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.866237000017593,47.84663599994896" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000314", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.905881000018717,47.8293069999446,11.905881000018717,47.8293069999446", + "point": "11.905881000018717,47.8293069999446", + "startLcPosition": "148", + "display_type": "PARKING", + "subtitle": "Irschenberg S", + "title": "A8 | Salzburg / Luxemburg", + "coordinate": { + "long": "11.905881000018717", + "lat": "47.8293069999446" + }, + "description": [ + "PKW Stellpl\u00e4tze: 105", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.905881000018717,47.8293069999446" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Hotel", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000313", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.919934000019113,47.825615999942976,11.919934000019113,47.825615999942976", + "point": "11.919934000019113,47.825615999942976", + "startLcPosition": "150", + "display_type": "PARKING", + "subtitle": "Wilparting S\u00fcd", + "title": "A8 | Salzburg", + "coordinate": { + "long": "11.919934000019113", + "lat": "47.825615999942976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.919934000019113,47.825615999942976" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000311", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.997803000021369,47.82193999993326,11.997803000021369,47.82193999993326", + "point": "11.997803000021369,47.82193999993326", + "startLcPosition": "151", + "display_type": "PARKING", + "subtitle": "Im Moos N", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "11.997803000021369", + "lat": "47.82193999993326" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.997803000021369,47.82193999993326" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000312", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.979608000020836,47.821415999935645,11.979608000020836,47.821415999935645", + "point": "11.979608000020836,47.821415999935645", + "startLcPosition": "152", + "display_type": "PARKING", + "subtitle": "Eulenauer Filz S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "11.979608000020836", + "lat": "47.821415999935645" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.979608000020836,47.821415999935645" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000309", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.176735000026977,47.80166799990557,12.176735000026977,47.80166799990557", + "point": "12.176735000026977,47.80166799990557", + "startLcPosition": "160", + "display_type": "PARKING", + "subtitle": "Samerberg S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "12.176735000026977", + "lat": "47.80166799990557" + }, + "description": [ + "PKW Stellpl\u00e4tze: 99", + "LKW Stellpl\u00e4tze: 60" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.176735000026977,47.80166799990557" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000308", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.177753000027003,47.803217999905385,12.177753000027003,47.803217999905385", + "point": "12.177753000027003,47.803217999905385", + "startLcPosition": "160", + "display_type": "PARKING", + "subtitle": "Samerberg N", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "12.177753000027003", + "lat": "47.803217999905385" + }, + "description": [ + "PKW Stellpl\u00e4tze: 98", + "LKW Stellpl\u00e4tze: 69" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.177753000027003,47.803217999905385" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft/Kiosk", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000300", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.425969000034607,47.83355999985145,12.425969000034607,47.83355999985145", + "point": "12.425969000034607,47.83355999985145", + "startLcPosition": "171", + "display_type": "PARKING", + "subtitle": "Am Chiemsee S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "12.425969000034607", + "lat": "47.83355999985145" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.425969000034607,47.83355999985145" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000298", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.590684000038943,47.829073999803235,12.590684000038943,47.829073999803235", + "point": "12.590684000038943,47.829073999803235", + "startLcPosition": "173", + "display_type": "PARKING", + "subtitle": "Hochfelln-Nord N", + "title": "A8 | Luxemburg", + "coordinate": { + "long": "12.590684000038943", + "lat": "47.829073999803235" + }, + "description": [ + "PKW Stellpl\u00e4tze: 120", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.590684000038943,47.829073999803235" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000299", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.590155000038944,47.82774499980341,12.590155000038944,47.82774499980341", + "point": "12.590155000038944,47.82774499980341", + "startLcPosition": "174", + "display_type": "PARKING", + "subtitle": "Hochfelln-S\u00fcd S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "12.590155000038944", + "lat": "47.82774499980341" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.590155000038944,47.82774499980341" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000297", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.902630000041992,47.76688399967645,12.902630000041992,47.76688399967645", + "point": "12.902630000041992,47.76688399967645", + "startLcPosition": "186", + "display_type": "PARKING", + "subtitle": "Bad Reichenhall S", + "title": "A8 | Salzburg", + "coordinate": { + "long": "12.902630000041992", + "lat": "47.76688399967645" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.902630000041992,47.76688399967645" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008617", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.93467200004145,47.767901999660225,12.93467200004145,47.767901999660225", + "point": "12.93467200004145,47.767901999660225", + "startLcPosition": "187", + "display_type": "PARKING", + "subtitle": "Schwarzbach S\u00fcd", + "title": "A8 | Salzburg", + "coordinate": { + "long": "12.93467200004145", + "lat": "47.767901999660225" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.93467200004145,47.767901999660225" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A9": { + "parking_lorry": [ + { + "identifier": "DE-BY-000391", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.641627000011571,48.27600399996843,11.641627000011571,48.27600399996843", + "point": "11.641627000011571,48.27600399996843", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Brunngras W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.641627000011571", + "lat": "48.27600399996843" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.641627000011571,48.27600399996843" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000390", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.643071000011599,48.27658399996834,11.643071000011599,48.27658399996834", + "point": "11.643071000011599,48.27658399996834", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Echinger Gfild O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.643071000011599", + "lat": "48.27658399996834" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.643071000011599,48.27658399996834" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000388", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.608196000010835,48.33557499997072,11.608196000010835,48.33557499997072", + "point": "11.608196000010835,48.33557499997072", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "F\u00fcrholzen W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.608196000010835", + "lat": "48.33557499997072" + }, + "description": [ + "PKW Stellpl\u00e4tze: 183", + "LKW Stellpl\u00e4tze: 110" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.608196000010835,48.33557499997072" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000389", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.610251000010871,48.33774599997057,11.610251000010871,48.33774599997057", + "point": "11.610251000010871,48.33774599997057", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "F\u00fcrholzen O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.610251000010871", + "lat": "48.33774599997057" + }, + "description": [ + "PKW Stellpl\u00e4tze: 179", + "LKW Stellpl\u00e4tze: 135" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.610251000010871,48.33774599997057" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000386", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.598424000010583,48.38846299997135,11.598424000010583,48.38846299997135", + "point": "11.598424000010583,48.38846299997135", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Aster Moos O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.598424000010583", + "lat": "48.38846299997135" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.598424000010583,48.38846299997135" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000385", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.587925000010292,48.464359999972,11.587925000010292,48.464359999972", + "point": "11.587925000010292,48.464359999972", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Paunzhauser Feld W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.587925000010292", + "lat": "48.464359999972" + }, + "description": [ + "PKW Stellpl\u00e4tze: 5", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.587925000010292,48.464359999972" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000384", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.58916100001032,48.46466799997192,11.58916100001032,48.46466799997192", + "point": "11.58916100001032,48.46466799997192", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Eichfeld O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.58916100001032", + "lat": "48.46466799997192" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.58916100001032,48.46466799997192" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008662", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.582131000010122,48.51768899997235,11.582131000010122,48.51768899997235", + "point": "11.582131000010122,48.51768899997235", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "RA A9 km 489,5 W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.582131000010122", + "lat": "48.51768899997235" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.582131000010122,48.51768899997235" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000380", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.541155000009297,48.61135899997483,11.541155000009297,48.61135899997483", + "point": "11.541155000009297,48.61135899997483", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Rohrbach- Ottersried W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.541155000009297", + "lat": "48.61135899997483" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.541155000009297,48.61135899997483" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000379", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.54251000000932,48.61164399997475,11.54251000000932,48.61164399997475", + "point": "11.54251000000932,48.61164399997475", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Rohrbach- Ottersried O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.54251000000932", + "lat": "48.61164399997475" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.54251000000932,48.61164399997475" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000378", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.500386000008556,48.68085999997713,11.500386000008556,48.68085999997713", + "point": "11.500386000008556,48.68085999997713", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Baarer Weiher W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.500386000008556", + "lat": "48.68085999997713" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.500386000008556,48.68085999997713" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000377", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.501833000008576,48.68129499997704,11.501833000008576,48.68129499997704", + "point": "11.501833000008576,48.68129499997704", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Baarer Weiher O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.501833000008576", + "lat": "48.68129499997704" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.501833000008576,48.68129499997704" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000376", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.472600000007972,48.83673999997855,11.472600000007972,48.83673999997855", + "point": "11.472600000007972,48.83673999997855", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "K\u00f6schinger Forst O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.472600000007972", + "lat": "48.83673999997855" + }, + "description": [ + "PKW Stellpl\u00e4tze: 147", + "LKW Stellpl\u00e4tze: 128" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.472600000007972,48.83673999997855" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000375", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.468318000007907,48.83760399997876,11.468318000007907,48.83760399997876", + "point": "11.468318000007907,48.83760399997876", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "K\u00f6schinger Forst W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.468318000007907", + "lat": "48.83760399997876" + }, + "description": [ + "PKW Stellpl\u00e4tze: 78", + "LKW Stellpl\u00e4tze: 115" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.468318000007907,48.83760399997876" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000373", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.429694000007249,48.95108399998066,11.429694000007249,48.95108399998066", + "point": "11.429694000007249,48.95108399998066", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Gelbelsee W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.429694000007249", + "lat": "48.95108399998066" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.429694000007249,48.95108399998066" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000374", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.431790000007277,48.95245899998054,11.431790000007277,48.95245899998054", + "point": "11.431790000007277,48.95245899998054", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Gelbelsee O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.431790000007277", + "lat": "48.95245899998054" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.431790000007277,48.95245899998054" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008661", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.354684000006214,49.00649499998396,11.354684000006214,49.00649499998396", + "point": "11.354684000006214,49.00649499998396", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Hirschbrunn W (geschlossen)", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.354684000006214", + "lat": "49.00649499998396" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.354684000006214,49.00649499998396" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000371", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.354105000006184,49.041309999983966,11.354105000006184,49.041309999983966", + "point": "11.354105000006184,49.041309999983966", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Greding O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.354105000006184", + "lat": "49.041309999983966" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.354105000006184,49.041309999983966" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000370", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.339201000005994,49.04475699998456,11.339201000005994,49.04475699998456", + "point": "11.339201000005994,49.04475699998456", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Greding W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.339201000005994", + "lat": "49.04475699998456" + }, + "description": [ + "PKW Stellpl\u00e4tze: 108", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.339201000005994,49.04475699998456" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000368", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.270374000005152,49.130343999987076,11.270374000005152,49.130343999987076", + "point": "11.270374000005152,49.130343999987076", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Offenbau W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.270374000005152", + "lat": "49.130343999987076" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.270374000005152,49.130343999987076" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000369", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.272840000005178,49.13080899998701,11.272840000005178,49.13080899998701", + "point": "11.272840000005178,49.13080899998701", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Offenbau O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.272840000005178", + "lat": "49.13080899998701" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.272840000005178,49.13080899998701" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000365", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.224359000004624,49.22028799998855,11.224359000004624,49.22028799998855", + "point": "11.224359000004624,49.22028799998855", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "G\u00f6ggelsbuch W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.224359000004624", + "lat": "49.22028799998855" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.224359000004624,49.22028799998855" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000366", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.226559000004643,49.2215919999885,11.226559000004643,49.2215919999885", + "point": "11.226559000004643,49.2215919999885", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "G\u00f6ggelsbuch O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.226559000004643", + "lat": "49.2215919999885" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.226559000004643,49.2215919999885" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000363", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.204489000004363,49.356917999989136,11.204489000004363,49.356917999989136", + "point": "11.204489000004363,49.356917999989136", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "N\u00fcrnberg-Feucht O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.204489000004363", + "lat": "49.356917999989136" + }, + "description": [ + "PKW Stellpl\u00e4tze: 133", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.204489000004363,49.356917999989136" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000364", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.20199300000434,49.35762899998921,11.20199300000434,49.35762899998921", + "point": "11.20199300000434,49.35762899998921", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "N\u00fcrnberg-Feucht W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.20199300000434", + "lat": "49.35762899998921" + }, + "description": [ + "PKW Stellpl\u00e4tze: 123", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.20199300000434,49.35762899998921" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000362", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.206846000004353,49.42192999998907,11.206846000004353,49.42192999998907", + "point": "11.206846000004353,49.42192999998907", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Brunn O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.206846000004353", + "lat": "49.42192999998907" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.206846000004353,49.42192999998907" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000361", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.205470000004338,49.42315399998909,11.205470000004338,49.42315399998909", + "point": "11.205470000004338,49.42315399998909", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Brunn W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.205470000004338", + "lat": "49.42315399998909" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.205470000004338,49.42315399998909" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000359", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.320928000005448,49.54902099998517,11.320928000005448,49.54902099998517", + "point": "11.320928000005448,49.54902099998517", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Wolfsh\u00f6he W", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.320928000005448", + "lat": "49.54902099998517" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.320928000005448,49.54902099998517" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000360", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.322947000005472,49.5499999999851,11.322947000005472,49.5499999999851", + "point": "11.322947000005472,49.5499999999851", + "startLcPosition": "52", + "display_type": "PARKING", + "subtitle": "Wolfsh\u00f6he O", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.322947000005472", + "lat": "49.5499999999851" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.322947000005472,49.5499999999851" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000356", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.44042300000679,49.650142999979934,11.44042300000679,49.650142999979934", + "point": "11.44042300000679,49.650142999979934", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Sperbes W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.44042300000679", + "lat": "49.650142999979934" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.44042300000679,49.650142999979934" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000357", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.436138000006741,49.64660999998016,11.436138000006741,49.64660999998016", + "point": "11.436138000006741,49.64660999998016", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Sperbes O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.436138000006741", + "lat": "49.64660999998016" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.436138000006741,49.64660999998016" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000355", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.510168000007614,49.749049999976215,11.510168000007614,49.749049999976215", + "point": "11.510168000007614,49.749049999976215", + "startLcPosition": "59", + "display_type": "PARKING", + "subtitle": "Fr\u00e4nkische Schweiz-Pegnitz W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.510168000007614", + "lat": "49.749049999976215" + }, + "description": [ + "PKW Stellpl\u00e4tze: 110", + "LKW Stellpl\u00e4tze: 98" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.510168000007614,49.749049999976215" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000353", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.598854000008691,49.893505999970685,11.598854000008691,49.893505999970685", + "point": "11.598854000008691,49.893505999970685", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Sophienberg W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.598854000008691", + "lat": "49.893505999970685" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.598854000008691,49.893505999970685" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000354", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.514230000007668,49.748930999976,11.514230000007668,49.748930999976", + "point": "11.514230000007668,49.748930999976", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Fr\u00e4nkische Schweiz-Pegnitz O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.514230000007668", + "lat": "49.748930999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 110", + "LKW Stellpl\u00e4tze: 96" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.514230000007668,49.748930999976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000352", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.60084100000872,49.89420999997055,11.60084100000872,49.89420999997055", + "point": "11.60084100000872,49.89420999997055", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Sophienberg O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.60084100000872", + "lat": "49.89420999997055" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.60084100000872,49.89420999997055" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000349", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.702924000009927,50.10552999996282,11.702924000009927,50.10552999996282", + "point": "11.702924000009927,50.10552999996282", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "Streitau W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.702924000009927", + "lat": "50.10552999996282" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.702924000009927,50.10552999996282" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000348", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.704355000009947,50.10518999996269,11.704355000009947,50.10518999996269", + "point": "11.704355000009947,50.10518999996269", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Streitau O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.704355000009947", + "lat": "50.10518999996269" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.704355000009947,50.10518999996269" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000346", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.803950000011096,50.30347799995358,11.803950000011096,50.30347799995358", + "point": "11.803950000011096,50.30347799995358", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Lipperts W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.803950000011096", + "lat": "50.30347799995358" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.803950000011096,50.30347799995358" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000345", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.80643500001113,50.304153999953336,11.80643500001113,50.304153999953336", + "point": "11.80643500001113,50.304153999953336", + "startLcPosition": "76", + "display_type": "PARKING", + "subtitle": "Lipperts O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.80643500001113", + "lat": "50.304153999953336" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.80643500001113,50.304153999953336" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000342", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.773473000010455,50.40631899995649,11.773473000010455,50.40631899995649", + "point": "11.773473000010455,50.40631899995649", + "startLcPosition": "79", + "display_type": "PARKING", + "subtitle": "Frankenwald W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.773473000010455", + "lat": "50.40631899995649" + }, + "description": [ + "PKW Stellpl\u00e4tze: 151", + "LKW Stellpl\u00e4tze: 65" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.773473000010455,50.40631899995649" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000341", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.774844000010477,50.40536199995635,11.774844000010477,50.40536199995635", + "point": "11.774844000010477,50.40536199995635", + "startLcPosition": "79", + "display_type": "PARKING", + "subtitle": "Frankenwald O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.774844000010477", + "lat": "50.40536199995635" + }, + "description": [ + "PKW Stellpl\u00e4tze: 174", + "LKW Stellpl\u00e4tze: 49" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.774844000010477,50.40536199995635" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-009041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.777162000010195,50.58251799995607,11.777162000010195,50.58251799995607", + "point": "11.777162000010195,50.58251799995607", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "PWC Himmelsteiche West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.777162000010195", + "lat": "50.58251799995607" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.777162000010195,50.58251799995607" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-009042", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.778867000010216,50.58221299995592,11.778867000010216,50.58221299995592", + "point": "11.778867000010216,50.58221299995592", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "PWC Himmelsteiche Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.778867000010216", + "lat": "50.58221299995592" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.778867000010216,50.58221299995592" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-009032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.871204000011094,50.75786199994631,11.871204000011094,50.75786199994631", + "point": "11.871204000011094,50.75786199994631", + "startLcPosition": "86", + "display_type": "PARKING", + "subtitle": "PWC Rodaborn West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.871204000011094", + "lat": "50.75786199994631" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.871204000011094,50.75786199994631" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-009031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.873986000011127,50.75878999994599,11.873986000011127,50.75878999994599", + "point": "11.873986000011127,50.75878999994599", + "startLcPosition": "88", + "display_type": "PARKING", + "subtitle": "PWC Rodaborn Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.873986000011127", + "lat": "50.75878999994599" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.873986000011127,50.75878999994599" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-009021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.848698000010572,50.870270999948744,11.848698000010572,50.870270999948744", + "point": "11.848698000010572,50.870270999948744", + "startLcPosition": "89", + "display_type": "PARKING", + "subtitle": "TR Hermsdorfer Kreuz West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.848698000010572", + "lat": "50.870270999948744" + }, + "description": [ + "PKW Stellpl\u00e4tze: 197", + "LKW Stellpl\u00e4tze: 89" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.848698000010572,50.870270999948744" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Motel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-009022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.850361000010592,50.87098999994856,11.850361000010592,50.87098999994856", + "point": "11.850361000010592,50.87098999994856", + "startLcPosition": "90", + "display_type": "PARKING", + "subtitle": "TR Hermsdorfer Kreuz Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.850361000010592", + "lat": "50.87098999994856" + }, + "description": [ + "PKW Stellpl\u00e4tze: 78", + "LKW Stellpl\u00e4tze: 71" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.850361000010592,50.87098999994856" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-009011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.849936000010397,50.960534999948585,11.849936000010397,50.960534999948585", + "point": "11.849936000010397,50.960534999948585", + "startLcPosition": "92", + "display_type": "PARKING", + "subtitle": "PWC Kuhberg West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.849936000010397", + "lat": "50.960534999948585" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.849936000010397,50.960534999948585" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-001144", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.84638000001036,50.95814399994895,11.84638000001036,50.95814399994895", + "point": "11.84638000001036,50.95814399994895", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "PWC Kuhberg Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.84638000001036", + "lat": "50.95814399994895" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.84638000001036,50.95814399994895" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-009081", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.953331000011234,51.10606299993628,11.953331000011234,51.10606299993628", + "point": "11.953331000011234,51.10606299993628", + "startLcPosition": "97", + "display_type": "PARKING", + "subtitle": "Osterfeld West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "11.953331000011234", + "lat": "51.10606299993628" + }, + "description": [ + "PKW Stellpl\u00e4tze: 175", + "LKW Stellpl\u00e4tze: 170" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.953331000011234,51.10606299993628" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009080", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.957541000011274,51.105927999935744,11.957541000011274,51.105927999935744", + "point": "11.957541000011274,51.105927999935744", + "startLcPosition": "98", + "display_type": "PARKING", + "subtitle": "Osterfeld Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "11.957541000011274", + "lat": "51.105927999935744" + }, + "description": [ + "PKW Stellpl\u00e4tze: 97", + "LKW Stellpl\u00e4tze: 125" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.957541000011274,51.105927999935744" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009071", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.030075000011669,51.20993999992567,12.030075000011669,51.20993999992567", + "point": "12.030075000011669,51.20993999992567", + "startLcPosition": "99", + "display_type": "PARKING", + "subtitle": "P\u00f6rstental West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.030075000011669", + "lat": "51.20993999992567" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.030075000011669,51.20993999992567" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009070", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.031533000011686,51.20895699992544,12.031533000011686,51.20895699992544", + "point": "12.031533000011686,51.20895699992544", + "startLcPosition": "100", + "display_type": "PARKING", + "subtitle": "P\u00f6rstental O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.031533000011686", + "lat": "51.20895699992544" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.031533000011686,51.20895699992544" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009061", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.169557000012105,51.324814999902614,12.169557000012105,51.324814999902614", + "point": "12.169557000012105,51.324814999902614", + "startLcPosition": "101", + "display_type": "PARKING", + "subtitle": "Bachfurt West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.169557000012105", + "lat": "51.324814999902614" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.169557000012105,51.324814999902614" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.171974000012115,51.32395299990215,12.171974000012115,51.32395299990215", + "point": "12.171974000012115,51.32395299990215", + "startLcPosition": "102", + "display_type": "PARKING", + "subtitle": "Bachfurt Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.171974000012115", + "lat": "51.32395299990215" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.171974000012115,51.32395299990215" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009051", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.20442700001148,51.49157999989593,12.20442700001148,51.49157999989593", + "point": "12.20442700001148,51.49157999989593", + "startLcPosition": "106", + "display_type": "PARKING", + "subtitle": "Kapellenberg West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.20442700001148", + "lat": "51.49157999989593" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.20442700001148,51.49157999989593" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.205817000011477,51.49256299989566,12.205817000011477,51.49256299989566", + "point": "12.205817000011477,51.49256299989566", + "startLcPosition": "108", + "display_type": "PARKING", + "subtitle": "Kapellenberg Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.205817000011477", + "lat": "51.49256299989566" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.205817000011477,51.49256299989566" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.18409600001101,51.60754599989979,12.18409600001101,51.60754599989979", + "point": "12.18409600001101,51.60754599989979", + "startLcPosition": "109", + "display_type": "PARKING", + "subtitle": "K\u00f6ckern West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.18409600001101", + "lat": "51.60754599989979" + }, + "description": [ + "PKW Stellpl\u00e4tze: 125", + "LKW Stellpl\u00e4tze: 68" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.18409600001101,51.60754599989979" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.187227000011003,51.60899499989921,12.187227000011003,51.60899499989921", + "point": "12.187227000011003,51.60899499989921", + "startLcPosition": "110", + "display_type": "PARKING", + "subtitle": "K\u00f6ckern Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.187227000011003", + "lat": "51.60899499989921" + }, + "description": [ + "PKW Stellpl\u00e4tze: 121", + "LKW Stellpl\u00e4tze: 66" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.187227000011003,51.60899499989921" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.214483000010489,51.72492099989389,12.214483000010489,51.72492099989389", + "point": "12.214483000010489,51.72492099989389", + "startLcPosition": "112", + "display_type": "PARKING", + "subtitle": "Mosigkauer Heide West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.214483000010489", + "lat": "51.72492099989389" + }, + "description": [ + "PKW Stellpl\u00e4tze: 58", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.214483000010489,51.72492099989389" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.21668600001048,51.72463199989346,12.21668600001048,51.72463199989346", + "point": "12.21668600001048,51.72463199989346", + "startLcPosition": "113", + "display_type": "PARKING", + "subtitle": "Mosigkauer Heide Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.21668600001048", + "lat": "51.72463199989346" + }, + "description": [ + "PKW Stellpl\u00e4tze: 57", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.21668600001048,51.72463199989346" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.372291000008405,51.86828099985856,12.372291000008405,51.86828099985856", + "point": "12.372291000008405,51.86828099985856", + "startLcPosition": "116", + "display_type": "PARKING", + "subtitle": "Kliekener Aue West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.372291000008405", + "lat": "51.86828099985856" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.372291000008405,51.86828099985856" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.372644000008403,51.86745599985847,12.372644000008403,51.86745599985847", + "point": "12.372644000008403,51.86745599985847", + "startLcPosition": "117", + "display_type": "PARKING", + "subtitle": "Kliekener Aue Ost ", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.372644000008403", + "lat": "51.86745599985847" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.372644000008403,51.86745599985847" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.486715000005123,51.97139299982726,12.486715000005123,51.97139299982726", + "point": "12.486715000005123,51.97139299982726", + "startLcPosition": "119", + "display_type": "PARKING", + "subtitle": "Rosselquelle West", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.486715000005123", + "lat": "51.97139299982726" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.486715000005123,51.97139299982726" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-009010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.487117000005117,51.97046599982715,12.487117000005117,51.97046599982715", + "point": "12.487117000005117,51.97046599982715", + "startLcPosition": "120", + "display_type": "PARKING", + "subtitle": "Rosselquelle Ost", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.487117000005117", + "lat": "51.97046599982715" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.487117000005117,51.97046599982715" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-394101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.629486999998504,52.04391199978033,12.629486999998504,52.04391199978033", + "point": "12.629486999998504,52.04391199978033", + "startLcPosition": "121", + "display_type": "PARKING", + "subtitle": "Hagen", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.629486999998504", + "lat": "52.04391199978033" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.629486999998504,52.04391199978033" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-394102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.62105699999904,52.03547399978336,12.62105699999904,52.03547399978336", + "point": "12.62105699999904,52.03547399978336", + "startLcPosition": "122", + "display_type": "PARKING", + "subtitle": "Rabenstein", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.62105699999904", + "lat": "52.03547399978336" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.62105699999904,52.03547399978336" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-384201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.751816999989085,52.13312999973209,12.751816999989085,52.13312999973209", + "point": "12.751816999989085,52.13312999973209", + "startLcPosition": "125", + "display_type": "PARKING", + "subtitle": "Fl\u00e4ming W", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.751816999989085", + "lat": "52.13312999973209" + }, + "description": [ + "PKW Stellpl\u00e4tze: 95", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.751816999989085,52.13312999973209" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-384202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.752871999989004,52.13217799973166,12.752871999989004,52.13217799973166", + "point": "12.752871999989004,52.13217799973166", + "startLcPosition": "125", + "display_type": "PARKING", + "subtitle": "Fl\u00e4ming O", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.752871999989004", + "lat": "52.13217799973166" + }, + "description": [ + "PKW Stellpl\u00e4tze: 115", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.752871999989004,52.13217799973166" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-374301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.884128999974264,52.20214999967033,12.884128999974264,52.20214999967033", + "point": "12.884128999974264,52.20214999967033", + "startLcPosition": "127", + "display_type": "PARKING", + "subtitle": "Borker Heide", + "title": "A9 | M\u00fcnchen", + "coordinate": { + "long": "12.884128999974264", + "lat": "52.20214999967033" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.884128999974264,52.20214999967033" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-374302", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.884644999974215,52.20075299967007,12.884644999974215,52.20075299967007", + "point": "12.884644999974215,52.20075299967007", + "startLcPosition": "128", + "display_type": "PARKING", + "subtitle": "Zauche", + "title": "A9 | Berlin (A10)", + "coordinate": { + "long": "12.884644999974215", + "lat": "52.20075299967007" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.884644999974215,52.20075299967007" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A10": { + "parking_lorry": [ + { + "identifier": "DE-BB-002406", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.510848999767191,52.617919999194136,13.510848999767191,52.617919999194136", + "point": "13.510848999767191,52.617919999194136", + "startLcPosition": "0", + "display_type": "PARKING", + "subtitle": "Kappgraben S\u00fcd", + "title": "A10 | Frankfurt (O.) / Prenzlau [Innenseite]", + "coordinate": { + "long": "13.510848999767191", + "lat": "52.617919999194136" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.510848999767191,52.617919999194136" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-344801", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.692112999642358,52.54374699898036,13.692112999642358,52.54374699898036", + "point": "13.692112999642358,52.54374699898036", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Seeberg O", + "title": "A10 | Prenzlau/HH [Innenseite]", + "coordinate": { + "long": "13.692112999642358", + "lat": "52.54374699898036" + }, + "description": [ + "PKW Stellpl\u00e4tze: 80", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.692112999642358,52.54374699898036" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-344802", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.690829999643485,52.54268999898201,13.690829999643485,52.54268999898201", + "point": "13.690829999643485,52.54268999898201", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Seeberg W", + "title": "A10 | Frankfurt/Oder [Au\u00dfenseite]", + "coordinate": { + "long": "13.690829999643485", + "lat": "52.54268999898201" + }, + "description": [ + "PKW Stellpl\u00e4tze: 68", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.690829999643485,52.54268999898201" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-354802", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.799334999548257,52.455930998833104,13.799334999548257,52.455930998833104", + "point": "13.799334999548257,52.455930998833104", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Kalkberge", + "title": "A10 | Prenzlau/Hamburg [Au\u00dfenseite]", + "coordinate": { + "long": "13.799334999548257", + "lat": "52.455930998833104" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.799334999548257,52.455930998833104" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-354801", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.79615099955263,52.4372499988377,13.79615099955263,52.4372499988377", + "point": "13.79615099955263,52.4372499988377", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Kranichberge", + "title": "A10 | Dresden / Frankfurt (O.) [Innenseite]", + "coordinate": { + "long": "13.79615099955263", + "lat": "52.4372499988377" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.79615099955263,52.4372499988377" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364802", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.705629999642733,52.322344998962485,13.705629999642733,52.322344998962485", + "point": "13.705629999642733,52.322344998962485", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Lankensee", + "title": "A10 | Frankfurt (O.) [Innenseite]", + "coordinate": { + "long": "13.705629999642733", + "lat": "52.322344998962485" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.705629999642733,52.322344998962485" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364801", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.705663999642663,52.32325999896245,13.705663999642663,52.32325999896245", + "point": "13.705663999642663,52.32325999896245", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Ukleysee", + "title": "A10 | Magdeburg / Dresden [Au\u00dfenseite]", + "coordinate": { + "long": "13.705663999642663", + "lat": "52.32325999896245" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.705663999642663,52.32325999896245" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.495728999787575,52.31597199920985,13.495728999787575,52.31597199920985", + "point": "13.495728999787575,52.31597199920985", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Am Fichtenplan S", + "title": "A10 | Berlin-Zentrum [Au\u00dfenseite]", + "coordinate": { + "long": "13.495728999787575", + "lat": "52.31597199920985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 51", + "LKW Stellpl\u00e4tze: 85" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.495728999787575,52.31597199920985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.496686999786965,52.31802199920885,13.496686999786965,52.31802199920885", + "point": "13.496686999786965,52.31802199920885", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Am Fichtenplan N", + "title": "A10 | Potsdam [Innenseite]", + "coordinate": { + "long": "13.496686999786965", + "lat": "52.31802199920885" + }, + "description": [ + "PKW Stellpl\u00e4tze: 55", + "LKW Stellpl\u00e4tze: 75" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.496686999786965,52.31802199920885" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364603", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.369241999849303,52.3083559993337,13.369241999849303,52.3083559993337", + "point": "13.369241999849303,52.3083559993337", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "J\u00fcnsdorfer Heide", + "title": "A10 | Magdeburg / Leipzig [Innenseite]", + "coordinate": { + "long": "13.369241999849303", + "lat": "52.3083559993337" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.369241999849303,52.3083559993337" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.195740999910438,52.30129499947698,13.195740999910438,52.30129499947698", + "point": "13.195740999910438,52.30129499947698", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Schieferberg", + "title": "A10 | Prenzlau / Frankfurt (O.) [Au\u00dfenseite]", + "coordinate": { + "long": "13.195740999910438", + "lat": "52.30129499947698" + }, + "description": [ + "PKW Stellpl\u00e4tze: 57", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.195740999910438,52.30129499947698" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.183679999913885,52.29958199948592,13.183679999913885,52.29958199948592", + "point": "13.183679999913885,52.29958199948592", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Siethener Elsbruch", + "title": "A10 | Magdeburg / Leipzig [Innenseite]", + "coordinate": { + "long": "13.183679999913885", + "lat": "52.29958199948592" + }, + "description": [ + "PKW Stellpl\u00e4tze: 53", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.183679999913885,52.29958199948592" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364504", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.017380999952001,52.301615999596635,13.017380999952001,52.301615999596635", + "point": "13.017380999952001,52.301615999596635", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Michendorf S", + "title": "A10 | Frankfurt (O.) [Au\u00dfenseite]", + "coordinate": { + "long": "13.017380999952001", + "lat": "52.301615999596635" + }, + "description": [ + "PKW Stellpl\u00e4tze: 178", + "LKW Stellpl\u00e4tze: 161" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.017380999952001,52.301615999596635" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364503", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.019506999951583,52.30296899959536,13.019506999951583,52.30296899959536", + "point": "13.019506999951583,52.30296899959536", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Michendorf N", + "title": "A10 | Magdeburg / Leipzig [Innenseite]", + "coordinate": { + "long": "13.019506999951583", + "lat": "52.30296899959536" + }, + "description": [ + "PKW Stellpl\u00e4tze: 72", + "LKW Stellpl\u00e4tze: 90" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.019506999951583,52.30296899959536" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364302", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.852174999976588,52.320538999686235,12.852174999976588,52.320538999686235", + "point": "12.852174999976588,52.320538999686235", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Schwielowsee", + "title": "A10 | Frankfurt (O.) / M\u00fcnchen [Au\u00dfenseite]", + "coordinate": { + "long": "12.852174999976588", + "lat": "52.320538999686235" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.852174999976588,52.320538999686235" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364303", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.858979999975785,52.319159999682896,12.858979999975785,52.319159999682896", + "point": "12.858979999975785,52.319159999682896", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "Caputh", + "title": "A10 | Magdeburg / Hamburg [Innenseite]", + "coordinate": { + "long": "12.858979999975785", + "lat": "52.319159999682896" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.858979999975785,52.319159999682896" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-354301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.924288999965546,52.42068699964944,12.924288999965546,52.42068699964944", + "point": "12.924288999965546,52.42068699964944", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "RA A10 km 121,09 Ri. S\u00fcd", + "title": "A10 | Hamburg [Innenseite]", + "coordinate": { + "long": "12.924288999965546", + "lat": "52.42068699964944" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.924288999965546,52.42068699964944" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-344302", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.966271999957167,52.53237699962644,12.966271999957167,52.53237699962644", + "point": "12.966271999957167,52.53237699962644", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "RA A10 km 134,315 Ri. West", + "title": "A10 | Magdeburg / Leipzig [Au\u00dfenseite]", + "coordinate": { + "long": "12.966271999957167", + "lat": "52.53237699962644" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.966271999957167,52.53237699962644" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-344301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.96559499995744,52.52227199962683,12.96559499995744,52.52227199962683", + "point": "12.96559499995744,52.52227199962683", + "startLcPosition": "40", + "display_type": "PARKING", + "subtitle": "RA A10 km 133,179 Ri. S\u00fcd", + "title": "A10 | Hamburg [Innenseite]", + "coordinate": { + "long": "12.96559499995744", + "lat": "52.52227199962683" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.96559499995744,52.52227199962683" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-334301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.985800999952154,52.63113499961538,12.985800999952154,52.63113499961538", + "point": "12.985800999952154,52.63113499961538", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "RA A10 km 145,604 Ri. S\u00fcd", + "title": "A10 | Hamburg [Innenseite]", + "coordinate": { + "long": "12.985800999952154", + "lat": "52.63113499961538" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.985800999952154,52.63113499961538" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-334402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.004602999948087,52.66607399960441,13.004602999948087,52.66607399960441", + "point": "13.004602999948087,52.66607399960441", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "Wolfslake W", + "title": "A10 | Leipzig / Magdeburg [Au\u00dfenseite]", + "coordinate": { + "long": "13.004602999948087", + "lat": "52.66607399960441" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.004602999948087,52.66607399960441" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-334401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.009480999946817,52.68553899960154,13.009480999946817,52.68553899960154", + "point": "13.009480999946817,52.68553899960154", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Wolfslake O", + "title": "A10 | Hamburg [Innenseite]", + "coordinate": { + "long": "13.009480999946817", + "lat": "52.68553899960154" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.009480999946817,52.68553899960154" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-002402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.06610099993472,52.7051159995667,13.06610099993472,52.7051159995667", + "point": "13.06610099993472,52.7051159995667", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Ziethener Luch", + "title": "A10 | Dreieck Havelland [Au\u00dfenseite]", + "coordinate": { + "long": "13.06610099993472", + "lat": "52.7051159995667" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.06610099993472,52.7051159995667" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-002398", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.065671999934834,52.703847999566975,13.065671999934834,52.703847999566975", + "point": "13.065671999934834,52.703847999566975", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Kr\u00e4mer Forst", + "title": "A10 | Kreuz Oranienburg [Innenseite]", + "coordinate": { + "long": "13.065671999934834", + "lat": "52.703847999566975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.065671999934834,52.703847999566975" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-334502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.316434999859386,52.69147599938068,13.316434999859386,52.69147599938068", + "point": "13.316434999859386,52.69147599938068", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "RA A10 km 176,006 Ri. West", + "title": "A10 | Hamburg [Au\u00dfenseite]", + "coordinate": { + "long": "13.316434999859386", + "lat": "52.69147599938068" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.316434999859386,52.69147599938068" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-334501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.32123299985754,52.68944899937656,13.32123299985754,52.68944899937656", + "point": "13.32123299985754,52.68944899937656", + "startLcPosition": "49", + "display_type": "PARKING", + "subtitle": "RA A10 km 176,383 Ri. S\u00fcd", + "title": "A10 | Frankfurt (O.) / Prenzlau [Innenseite]", + "coordinate": { + "long": "13.32123299985754", + "lat": "52.68944899937656" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.32123299985754,52.68944899937656" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-334602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.394244999826398,52.6767219993109,13.394244999826398,52.6767219993109", + "point": "13.394244999826398,52.6767219993109", + "startLcPosition": "49", + "display_type": "PARKING", + "subtitle": "RA A10 km 181,59 Ri. West", + "title": "A10 | Hamburg [Au\u00dfenseite]", + "coordinate": { + "long": "13.394244999826398", + "lat": "52.6767219993109" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.394244999826398,52.6767219993109" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-002404", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.511083999767013,52.618874999193885,13.511083999767013,52.618874999193885", + "point": "13.511083999767013,52.618874999193885", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Kappgraben Nord", + "title": "A10 | Hamburg [Au\u00dfenseite]", + "coordinate": { + "long": "13.511083999767013", + "lat": "52.618874999193885" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.511083999767013,52.618874999193885" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-334601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.390457999828136,52.67748499931444,13.390457999828136,52.67748499931444", + "point": "13.390457999828136,52.67748499931444", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "RA A10 km 181,309 Ri. S\u00fcd", + "title": "A10 | Frankfurt (O.) [Innenseite]", + "coordinate": { + "long": "13.390457999828136", + "lat": "52.67748499931444" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.390457999828136,52.67748499931444" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A11": { + "parking_lorry": [ + { + "identifier": "DE-BB-324702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.546220999741694,52.711813999155815,13.546220999741694,52.711813999155815", + "point": "13.546220999741694,52.711813999155815", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Probstheide", + "title": "A11 | Berlin (A10)", + "coordinate": { + "long": "13.546220999741694", + "lat": "52.711813999155815" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.546220999741694,52.711813999155815" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-324701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.548673999740183,52.71039799915309,13.548673999740183,52.71039799915309", + "point": "13.548673999740183,52.71039799915309", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Ladeburger Heide", + "title": "A11 | Stettin", + "coordinate": { + "long": "13.548673999740183", + "lat": "52.71039799915309" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.548673999740183,52.71039799915309" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-314802", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.700967999617134,52.88246999896963,13.700967999617134,52.88246999896963", + "point": "13.700967999617134,52.88246999896963", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Buckowsee W", + "title": "A11 | Berlin (A10)", + "coordinate": { + "long": "13.700967999617134", + "lat": "52.88246999896963" + }, + "description": [ + "PKW Stellpl\u00e4tze: 77", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.700967999617134,52.88246999896963" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-314803", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.705407999613142,52.88387299896382,13.705407999613142,52.88387299896382", + "point": "13.705407999613142,52.88387299896382", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Buckowsee O", + "title": "A11 | Stettin", + "coordinate": { + "long": "13.705407999613142", + "lat": "52.88387299896382" + }, + "description": [ + "PKW Stellpl\u00e4tze: 76", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.705407999613142,52.88387299896382" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-294902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.849839999452719,53.091984998760005,13.849839999452719,53.091984998760005", + "point": "13.849839999452719,53.091984998760005", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Suckower Forst", + "title": "A11 | Berlin (A10)", + "coordinate": { + "long": "13.849839999452719", + "lat": "53.091984998760005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.849839999452719,53.091984998760005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-294901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.851204999451106,53.09201999875791,13.851204999451106,53.09201999875791", + "point": "13.851204999451106,53.09201999875791", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Wilmersdorfer Forst", + "title": "A11 | Stettin", + "coordinate": { + "long": "13.851204999451106", + "lat": "53.09201999875791" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.851204999451106,53.09201999875791" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-274902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.957314999303973,53.2112349985877,13.957314999303973,53.2112349985877", + "point": "13.957314999303973,53.2112349985877", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Rathsburgseen Nord", + "title": "A11 | Berlin (A10)", + "coordinate": { + "long": "13.957314999303973", + "lat": "53.2112349985877" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.957314999303973,53.2112349985877" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-274901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.967446999288846,53.21639999857045,13.967446999288846,53.21639999857045", + "point": "13.967446999288846,53.21639999857045", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Rathsburgseen S\u00fcd", + "title": "A11 | Stettin", + "coordinate": { + "long": "13.967446999288846", + "lat": "53.21639999857045" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.967446999288846,53.21639999857045" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-002408", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.060630999135146,53.27646699840359,14.060630999135146,53.27646699840359", + "point": "14.060630999135146,53.27646699840359", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Randowbruch Nord", + "title": "A11 | Berlin (A10)", + "coordinate": { + "long": "14.060630999135146", + "lat": "53.27646699840359" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.060630999135146,53.27646699840359" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-002410", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.054611999145823,53.27288299841482,14.054611999145823,53.27288299841482", + "point": "14.054611999145823,53.27288299841482", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Randowbruch S\u00fcd", + "title": "A11 | Stettin", + "coordinate": { + "long": "14.054611999145823", + "lat": "53.27288299841482" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.054611999145823,53.27288299841482" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A12": { + "parking_lorry": [ + { + "identifier": "DE-BB-364905", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.952329999380003,52.31203799859294,13.952329999380003,52.31203799859294", + "point": "13.952329999380003,52.31203799859294", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Briesenluch", + "title": "A12 | Berlin (A10)", + "coordinate": { + "long": "13.952329999380003", + "lat": "52.31203799859294" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.952329999380003,52.31203799859294" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364906", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.952900999379326,52.31098999859198,13.952900999379326,52.31098999859198", + "point": "13.952900999379326,52.31098999859198", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Lebbiner Heide", + "title": "A12 | Frankfurt (Oder)", + "coordinate": { + "long": "13.952900999379326", + "lat": "52.31098999859198" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.952900999379326,52.31098999859198" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-365102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.223169998918276,52.33721899806808,14.223169998918276,52.33721899806808", + "point": "14.223169998918276,52.33721899806808", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Berliner Urstromtal", + "title": "A12 | Berlin (A10)", + "coordinate": { + "long": "14.223169998918276", + "lat": "52.33721899806808" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.223169998918276,52.33721899806808" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-365101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.220349998924329,52.33642999807429,14.220349998924329,52.33642999807429", + "point": "14.220349998924329,52.33642999807429", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Kersdorfer See", + "title": "A12 | Frankfurt (Oder)", + "coordinate": { + "long": "14.220349998924329", + "lat": "52.33642999807429" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.220349998924329,52.33642999807429" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-365202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.386660998523407,52.32121799767954,14.386660998523407,52.32121799767954", + "point": "14.386660998523407,52.32121799767954", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Biegener Hellen Nord", + "title": "A12 | Berlin (A10)", + "coordinate": { + "long": "14.386660998523407", + "lat": "52.32121799767954" + }, + "description": [ + "PKW Stellpl\u00e4tze: 58", + "LKW Stellpl\u00e4tze: 59" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.386660998523407,52.32121799767954" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-365201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.386820998523092,52.32031299767914,14.386820998523092,52.32031299767914", + "point": "14.386820998523092,52.32031299767914", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Biegener Hellen S", + "title": "A12 | Frankfurt (Oder)", + "coordinate": { + "long": "14.386820998523092", + "lat": "52.32031299767914" + }, + "description": [ + "PKW Stellpl\u00e4tze: 86", + "LKW Stellpl\u00e4tze: 52" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.386820998523092,52.32031299767914" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A13": { + "parking_lorry": [ + { + "identifier": "DE-SN-001093", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.740099999678161,51.19462799891913,13.740099999678161,51.19462799891913", + "point": "13.740099999678161,51.19462799891913", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Finkenberg W", + "title": "A13 | Dresden", + "coordinate": { + "long": "13.740099999678161", + "lat": "51.19462799891913" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.740099999678161,51.19462799891913" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-001092", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.741196999677276,51.194778998917634,13.741196999677276,51.194778998917634", + "point": "13.741196999677276,51.194778998917634", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Finkenberg O", + "title": "A13 | Berlin (A10/A113)", + "coordinate": { + "long": "13.741196999677276", + "lat": "51.194778998917634" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.741196999677276,51.194778998917634" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000068", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.72858599968083,51.30497099893413,13.72858599968083,51.30497099893413", + "point": "13.72858599968083,51.30497099893413", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Wiesenholz W", + "title": "A13 | Dresden", + "coordinate": { + "long": "13.72858599968083", + "lat": "51.30497099893413" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.72858599968083,51.30497099893413" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000067", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.729963999679729,51.30521799893229,13.729963999679729,51.30521799893229", + "point": "13.729963999679729,51.30521799893229", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Wiesenholz O", + "title": "A13 | Berlin (A10/A113)", + "coordinate": { + "long": "13.729963999679729", + "lat": "51.30521799893229" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.729963999679729,51.30521799893229" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-444902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.85261999955944,51.45803799875539,13.85261999955944,51.45803799875539", + "point": "13.85261999955944,51.45803799875539", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Ruhlander Heide", + "title": "A13 | Berlin (A10/A113)", + "coordinate": { + "long": "13.85261999955944", + "lat": "51.45803799875539" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.85261999955944,51.45803799875539" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-444901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.85229999955967,51.45935099875589,13.85229999955967,51.45935099875589", + "point": "13.85229999955967,51.45935099875589", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Elsteraue", + "title": "A13 | Dresden", + "coordinate": { + "long": "13.85229999955967", + "lat": "51.45935099875589" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.85229999955967,51.45935099875589" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-444903", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.928889999467344,51.568641998633616,13.928889999467344,51.568641998633616", + "point": "13.928889999467344,51.568641998633616", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Freienhufener Eck W", + "title": "A13 | Dresden", + "coordinate": { + "long": "13.928889999467344", + "lat": "51.568641998633616" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 60" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.928889999467344,51.568641998633616" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-444904", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.92074999947765,51.55931099864707,13.92074999947765,51.55931099864707", + "point": "13.92074999947765,51.55931099864707", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Freienhufener Eck O", + "title": "A13 | Berlin (A10/A113)", + "coordinate": { + "long": "13.92074999947765", + "lat": "51.55931099864707" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 60" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.92074999947765,51.55931099864707" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-414903", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.893379999490024,51.81557799869041,13.893379999490024,51.81557799869041", + "point": "13.893379999490024,51.81557799869041", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Lichtenauer Seen", + "title": "A13 | Dresden", + "coordinate": { + "long": "13.893379999490024", + "lat": "51.81557799869041" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.893379999490024,51.81557799869041" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-424902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.901788999489188,51.69659699867729,13.901788999489188,51.69659699867729", + "point": "13.901788999489188,51.69659699867729", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "RA A13 km 80,777 Ri. Sch\u00f6nefelder Kreuz", + "title": "A13 | Berlin (A10/A113)", + "coordinate": { + "long": "13.901788999489188", + "lat": "51.69659699867729" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 2" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.901788999489188,51.69659699867729" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-414901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.838069999544983,51.88861099877605,13.838069999544983,51.88861099877605", + "point": "13.838069999544983,51.88861099877605", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "R\u00fcblingsheide W", + "title": "A13 | Dresden", + "coordinate": { + "long": "13.838069999544983", + "lat": "51.88861099877605" + }, + "description": [ + "PKW Stellpl\u00e4tze: 150", + "LKW Stellpl\u00e4tze: 54" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.838069999544983,51.88861099877605" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-404804", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.795985999585408,51.911848998838124,13.795985999585408,51.911848998838124", + "point": "13.795985999585408,51.911848998838124", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Berstetal O", + "title": "A13 | Berlin (A10/A113)", + "coordinate": { + "long": "13.795985999585408", + "lat": "51.911848998838124" + }, + "description": [ + "PKW Stellpl\u00e4tze: 60", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.795985999585408,51.911848998838124" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-404802", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.724829999644587,51.99409899893711,13.724829999644587,51.99409899893711", + "point": "13.724829999644587,51.99409899893711", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Am Bugkgraben", + "title": "A13 | Dresden", + "coordinate": { + "long": "13.724829999644587", + "lat": "51.99409899893711" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.724829999644587,51.99409899893711" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-404801", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.726049999643525,51.99467099893547,13.726049999643525,51.99467099893547", + "point": "13.726049999643525,51.99467099893547", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Krausnicker Berge", + "title": "A13 | Berlin (A10/A113)", + "coordinate": { + "long": "13.726049999643525", + "lat": "51.99467099893547" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.726049999643525,51.99467099893547" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-374702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.60753999972309,52.20825999908504,13.60753999972309,52.20825999908504", + "point": "13.60753999972309,52.20825999908504", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Am Kahlberg W", + "title": "A13 | Dresden", + "coordinate": { + "long": "13.60753999972309", + "lat": "52.20825999908504" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.60753999972309,52.20825999908504" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-374701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.608139999722615,52.20954899908431,13.608139999722615,52.20954899908431", + "point": "13.608139999722615,52.20954899908431", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "Am Kahlberg O", + "title": "A13 | Berlin (A10/A113)", + "coordinate": { + "long": "13.608139999722615", + "lat": "52.20954899908431" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.608139999722615,52.20954899908431" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A14": { + "parking_lorry": [ + { + "identifier": "DE-MV-140010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.609120000004253,53.790458999969765,11.609120000004253,53.790458999969765", + "point": "11.609120000004253,53.790458999969765", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Pr\u00f6bbower See O", + "title": "A14 | Wismar", + "coordinate": { + "long": "11.609120000004253", + "lat": "53.790458999969765" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.609120000004253,53.790458999969765" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-140009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.605272000004232,53.79238899997002,11.605272000004232,53.79238899997002", + "point": "11.605272000004232,53.79238899997002", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Pr\u00f6bbower See W", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "11.605272000004232", + "lat": "53.79238899997002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.605272000004232,53.79238899997002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-140006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.469143000003811,53.53395599997823,11.469143000003811,53.53395599997823", + "point": "11.469143000003811,53.53395599997823", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Plater Berg O", + "title": "A14 | Wismar", + "coordinate": { + "long": "11.469143000003811", + "lat": "53.53395599997823" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.469143000003811,53.53395599997823" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-140005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.468909000003805,53.53822699997826,11.468909000003805,53.53822699997826", + "point": "11.468909000003805,53.53822699997826", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Plater Berg W", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "11.468909000003805", + "lat": "53.53822699997826" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.468909000003805,53.53822699997826" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-001346", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.527373000004253,53.38340499997495,11.527373000004253,53.38340499997495", + "point": "11.527373000004253,53.38340499997495", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Ludwigsluster Kanal Ost", + "title": "A14 | Wismar", + "coordinate": { + "long": "11.527373000004253", + "lat": "53.38340499997495" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.527373000004253,53.38340499997495" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-001344", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.523919000004232,53.382758999975145,11.523919000004232,53.382758999975145", + "point": "11.523919000004232,53.382758999975145", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Ludwigsluster Kanal West", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "11.523919000004232", + "lat": "53.382758999975145" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.523919000004232,53.382758999975145" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-001348", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.59033800000476,53.22768499997094,11.59033800000476,53.22768499997094", + "point": "11.59033800000476,53.22768499997094", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Meynbach Ost", + "title": "A14 | Wismar", + "coordinate": { + "long": "11.59033800000476", + "lat": "53.22768499997094" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.59033800000476,53.22768499997094" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-001350", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.588572000004747,53.22650999997105,11.588572000004747,53.22650999997105", + "point": "11.588572000004747,53.22650999997105", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Meynbach West", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "11.588572000004747", + "lat": "53.22650999997105" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.588572000004747,53.22650999997105" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-014091", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.587427000006006,52.06048999997107,11.587427000006006,52.06048999997107", + "point": "11.587427000006006,52.06048999997107", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "S\u00fclzegrund Ost", + "title": "A14 | Wismar", + "coordinate": { + "long": "11.587427000006006", + "lat": "52.06048999997107" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.587427000006006,52.06048999997107" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014090", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.587353000006006,52.059472999971064,11.587353000006006,52.059472999971064", + "point": "11.587353000006006,52.059472999971064", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "S\u00fclzegrund West", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "11.587353000006006", + "lat": "52.059472999971064" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.587353000006006,52.059472999971064" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014071", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.693290000007076,51.942437999963225,11.693290000007076,51.942437999963225", + "point": "11.693290000007076,51.942437999963225", + "startLcPosition": "25", + "display_type": "PARKING", + "subtitle": "Dreih\u00f6henberg Ost", + "title": "A14 | Wismar", + "coordinate": { + "long": "11.693290000007076", + "lat": "51.942437999963225" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.693290000007076,51.942437999963225" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014070", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.691929000007066,51.94206099996332,11.691929000007066,51.94206099996332", + "point": "11.691929000007066,51.94206099996332", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Dreih\u00f6henberg West", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "11.691929000007066", + "lat": "51.94206099996332" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.691929000007066,51.94206099996332" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.675304000007072,51.827909999964675,11.675304000007072,51.827909999964675", + "point": "11.675304000007072,51.827909999964675", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Alter Postweg West", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "11.675304000007072", + "lat": "51.827909999964675" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.675304000007072,51.827909999964675" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014061", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.677316000007092,51.82723199996451,11.677316000007092,51.82723199996451", + "point": "11.677316000007092,51.82723199996451", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Alter Postweg Ost", + "title": "A14 | Wismar", + "coordinate": { + "long": "11.677316000007092", + "lat": "51.82723199996451" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.677316000007092,51.82723199996451" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014051", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.720027000007663,51.70985599996099,11.720027000007663,51.70985599996099", + "point": "11.720027000007663,51.70985599996099", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Saaleaue Ost", + "title": "A14 | Wismar", + "coordinate": { + "long": "11.720027000007663", + "lat": "51.70985599996099" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.720027000007663,51.70985599996099" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.717988000007644,51.71037399996117,11.717988000007644,51.71037399996117", + "point": "11.717988000007644,51.71037399996117", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Saaleaue West", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "11.717988000007644", + "lat": "51.71037399996117" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.717988000007644,51.71037399996117" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.820979000008709,51.65680199995149,11.820979000008709,51.65680199995149", + "point": "11.820979000008709,51.65680199995149", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Pl\u00f6tzetal Ost", + "title": "A14 | Wismar", + "coordinate": { + "long": "11.820979000008709", + "lat": "51.65680199995149" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 61" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.820979000008709,51.65680199995149" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.819066000008695,51.65538299995168,11.819066000008695,51.65538299995168", + "point": "11.819066000008695,51.65538299995168", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Pl\u00f6tzetal West", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "11.819066000008695", + "lat": "51.65538299995168" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 58" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.819066000008695,51.65538299995168" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.004685000010468,51.55787399992922,12.004685000010468,51.55787399992922", + "point": "12.004685000010468,51.55787399992922", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Petersberg Ost", + "title": "A14 | Wismar", + "coordinate": { + "long": "12.004685000010468", + "lat": "51.55787399992922" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.004685000010468,51.55787399992922" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-014021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.00330700001046,51.557458999929416,12.00330700001046,51.557458999929416", + "point": "12.00330700001046,51.557458999929416", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Petersberg West", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "12.00330700001046", + "lat": "51.557458999929416" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.00330700001046,51.557458999929416" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-001247", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.110972000011405,51.45582399991287,12.110972000011405,51.45582399991287", + "point": "12.110972000011405,51.45582399991287", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "Kabelsketal Nord", + "title": "A14 | Wismar", + "coordinate": { + "long": "12.110972000011405", + "lat": "51.45582399991287" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.110972000011405,51.45582399991287" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-014010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.108898000011395,51.4555439999132,12.108898000011395,51.4555439999132", + "point": "12.108898000011395,51.4555439999132", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "Kabelsketal West", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "12.108898000011395", + "lat": "51.4555439999132" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.108898000011395,51.4555439999132" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000027", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.339978000011325,51.41366399986667,12.339978000011325,51.41366399986667", + "point": "12.339978000011325,51.41366399986667", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Birkenwald S\u00fcd", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "12.339978000011325", + "lat": "51.41366399986667" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.339978000011325,51.41366399986667" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000026", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.35906100001116,51.41196699986204,12.35906100001116,51.41196699986204", + "point": "12.35906100001116,51.41196699986204", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Birkenwald Nord", + "title": "A14 | Wismar", + "coordinate": { + "long": "12.35906100001116", + "lat": "51.41196699986204" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.35906100001116,51.41196699986204" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-001098", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.707022000001862,51.26186899975123,12.707022000001862,51.26186899975123", + "point": "12.707022000001862,51.26186899975123", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Muldental Nord", + "title": "A14 | Wismar", + "coordinate": { + "long": "12.707022000001862", + "lat": "51.26186899975123" + }, + "description": [ + "PKW Stellpl\u00e4tze: 70", + "LKW Stellpl\u00e4tze: 60" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.707022000001862,51.26186899975123" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000035", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.706253000001922,51.26022399975154,12.706253000001922,51.26022399975154", + "point": "12.706253000001922,51.26022399975154", + "startLcPosition": "58", + "display_type": "PARKING", + "subtitle": "Muldental S\u00fcd", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "12.706253000001922", + "lat": "51.26022399975154" + }, + "description": [ + "PKW Stellpl\u00e4tze: 69", + "LKW Stellpl\u00e4tze: 75" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.706253000001922,51.26022399975154" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000058", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.009556999973322,51.18914299960235,13.009556999973322,51.18914299960235", + "point": "13.009556999973322,51.18914299960235", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "M\u00fchlenberg Nord", + "title": "A14 | Wismar", + "coordinate": { + "long": "13.009556999973322", + "lat": "51.18914299960235" + }, + "description": [ + "PKW Stellpl\u00e4tze: 11", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.009556999973322,51.18914299960235" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000059", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.008865999973441,51.18817799960276,13.008865999973441,51.18817799960276", + "point": "13.008865999973441,51.18817799960276", + "startLcPosition": "61", + "display_type": "PARKING", + "subtitle": "M\u00fchlenberg S\u00fcd", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "13.008865999973441", + "lat": "51.18817799960276" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.008865999973441,51.18817799960276" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.23323299993074,51.09022599945016,13.23323299993074,51.09022599945016", + "point": "13.23323299993074,51.09022599945016", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "Hansens Holz S\u00fcd", + "title": "A14 | Dresden (A4)", + "coordinate": { + "long": "13.23323299993074", + "lat": "51.09022599945016" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.23323299993074,51.09022599945016" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.236998999929742,51.09071099944723,13.236998999929742,51.09071099944723", + "point": "13.236998999929742,51.09071099944723", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "Hansens Holz Nord", + "title": "A14 | Wismar", + "coordinate": { + "long": "13.236998999929742", + "lat": "51.09071099944723" + }, + "description": [ + "PKW Stellpl\u00e4tze: 56", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.236998999929742,51.09071099944723" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + } + ] + }, + "A15": { + "parking_lorry": [ + { + "identifier": "DE-BB-414902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.996679999359563,51.82839999851677,13.996679999359563,51.82839999851677", + "point": "13.996679999359563,51.82839999851677", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Leipe", + "title": "A15 | Dreieck Spreewald (A13)", + "coordinate": { + "long": "13.996679999359563", + "lat": "51.82839999851677" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.996679999359563,51.82839999851677" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-414905", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.995969999360605,51.827609998518035,13.995969999360605,51.827609998518035", + "point": "13.995969999360605,51.827609998518035", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Belten", + "title": "A15 | Breslau", + "coordinate": { + "long": "13.995969999360605", + "lat": "51.827609998518035" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.995969999360605,51.827609998518035" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-425003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.126479999166705,51.75540899827234,14.126479999166705,51.75540899827234", + "point": "14.126479999166705,51.75540899827234", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Dubje", + "title": "A15 | Dreieck Spreewald (A13)", + "coordinate": { + "long": "14.126479999166705", + "lat": "51.75540899827234" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.126479999166705,51.75540899827234" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-425004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.125874999167825,51.754584998273536,14.125874999167825,51.754584998273536", + "point": "14.125874999167825,51.754584998273536", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Eichower Flie\u00df", + "title": "A15 | Breslau", + "coordinate": { + "long": "14.125874999167825", + "lat": "51.754584998273536" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.125874999167825,51.754584998273536" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-435401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "14.66710999768811,51.69313099686601,14.66710999768811,51.69313099686601", + "point": "14.66710999768811,51.69313099686601", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "RA A15 km 57,135 Ri. Breslau", + "title": "A15 | Breslau", + "coordinate": { + "long": "14.66710999768811", + "lat": "51.69313099686601" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 14.66710999768811,51.69313099686601" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A17": { + "parking_lorry": [ + { + "identifier": "DE-SN-000015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.745156999685602,51.00280099891337,13.745156999685602,51.00280099891337", + "point": "13.745156999685602,51.00280099891337", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Am N\u00f6thnitzgrund Ost", + "title": "A17 | Dresden", + "coordinate": { + "long": "13.745156999685602", + "lat": "51.00280099891337" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.745156999685602,51.00280099891337" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.744243999686375,51.001913998914624,13.744243999686375,51.001913998914624", + "point": "13.744243999686375,51.001913998914624", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Am N\u00f6thnitzgrund West", + "title": "A17 | Prag", + "coordinate": { + "long": "13.744243999686375", + "lat": "51.001913998914624" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.744243999686375,51.001913998914624" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.888520999568877,50.82185699870383,13.888520999568877,50.82185699870383", + "point": "13.888520999568877,50.82185699870383", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Am Heidenholz Ost", + "title": "A17 | Dresden", + "coordinate": { + "long": "13.888520999568877", + "lat": "50.82185699870383" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.888520999568877,50.82185699870383" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.886644999570798,50.821648998706785,13.886644999570798,50.821648998706785", + "point": "13.886644999570798,50.821648998706785", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Am Heidenholz West", + "title": "A17 | Prag", + "coordinate": { + "long": "13.886644999570798", + "lat": "50.821648998706785" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.886644999570798,50.821648998706785" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A19": { + "parking_lorry": [ + { + "identifier": "DE-MV-190001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.471672999996827,53.29862799983209,12.471672999996827,53.29862799983209", + "point": "12.471672999996827,53.29862799983209", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Eldetal West", + "title": "A19 | Dreieck Wittstock (Dosse) A 24", + "coordinate": { + "long": "12.471672999996827", + "lat": "53.29862799983209" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.471672999996827,53.29862799983209" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.472106999996834,53.29437999983198,12.472106999996834,53.29437999983198", + "point": "12.472106999996834,53.29437999983198", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Eldetal Ost", + "title": "A19 | Rostock", + "coordinate": { + "long": "12.472106999996834", + "lat": "53.29437999983198" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.472106999996834,53.29437999983198" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.455180999997049,53.380176999836905,12.455180999997049,53.380176999836905", + "point": "12.455180999997049,53.380176999836905", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Leizen West", + "title": "A19 | Dreieck Wittstock (Dosse) A 24", + "coordinate": { + "long": "12.455180999997049", + "lat": "53.380176999836905" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.455180999997049,53.380176999836905" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.453254999997107,53.38430399983744,12.453254999997107,53.38430399983744", + "point": "12.453254999997107,53.38430399983744", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Leizen Ost", + "title": "A19 | Rostock", + "coordinate": { + "long": "12.453254999997107", + "lat": "53.38430399983744" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.453254999997107,53.38430399983744" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-001322", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.366183999999187,53.60179499986068,12.366183999999187,53.60179499986068", + "point": "12.366183999999187,53.60179499986068", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Kiether Berg W", + "title": "A19 | Dreieck Wittstock (Dosse) A 24", + "coordinate": { + "long": "12.366183999999187", + "lat": "53.60179499986068" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.366183999999187,53.60179499986068" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-190012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.37543299999875,53.6256559998584,12.37543299999875,53.6256559998584", + "point": "12.37543299999875,53.6256559998584", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Linstow West", + "title": "A19 | Dreieck Wittstock (Dosse) A 24", + "coordinate": { + "long": "12.37543299999875", + "lat": "53.6256559998584" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.37543299999875,53.6256559998584" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-001321", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.368329999999121,53.600903999860144,12.368329999999121,53.600903999860144", + "point": "12.368329999999121,53.600903999860144", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Kiether Berg O", + "title": "A19 | Rostock", + "coordinate": { + "long": "12.368329999999121", + "lat": "53.600903999860144" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.368329999999121,53.600903999860144" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-190013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.376065999998714,53.62902099985825,12.376065999998714,53.62902099985825", + "point": "12.376065999998714,53.62902099985825", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Linstow Ost", + "title": "A19 | Rostock", + "coordinate": { + "long": "12.376065999998714", + "lat": "53.62902099985825" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.376065999998714,53.62902099985825" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190024", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.355657999998966,53.71447799986337,12.355657999998966,53.71447799986337", + "point": "12.355657999998966,53.71447799986337", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Bansower Forst West", + "title": "A19 | Dreieck Wittstock (Dosse) A 24", + "coordinate": { + "long": "12.355657999998966", + "lat": "53.71447799986337" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.355657999998966,53.71447799986337" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190023", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.358614999998885,53.711087999862656,12.358614999998885,53.711087999862656", + "point": "12.358614999998885,53.711087999862656", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Bansower Forst Ost", + "title": "A19 | Rostock", + "coordinate": { + "long": "12.358614999998885", + "lat": "53.711087999862656" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.358614999998885,53.711087999862656" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.29157400000028,53.84025099987839,12.29157400000028,53.84025099987839", + "point": "12.29157400000028,53.84025099987839", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Recknitz Niederung O", + "title": "A19 | Rostock", + "coordinate": { + "long": "12.29157400000028", + "lat": "53.84025099987839" + }, + "description": [ + "PKW Stellpl\u00e4tze: 86", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.29157400000028,53.84025099987839" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.28751300000039,53.83975199987929,12.28751300000039,53.83975199987929", + "point": "12.28751300000039,53.83975199987929", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Recknitz Niederung W", + "title": "A19 | Dreieck Wittstock (Dosse) A 24", + "coordinate": { + "long": "12.28751300000039", + "lat": "53.83975199987929" + }, + "description": [ + "PKW Stellpl\u00e4tze: 86", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.28751300000039,53.83975199987929" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "playground.notAvailable", + "style": "not-available" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190018", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.246324000001122,53.90347899988811,12.246324000001122,53.90347899988811", + "point": "12.246324000001122,53.90347899988811", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Kritzkow", + "title": "A19 | Dreieck Wittstock (Dosse) A 24", + "coordinate": { + "long": "12.246324000001122", + "lat": "53.90347899988811" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.246324000001122,53.90347899988811" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.198272000001863,53.96751099989774,12.198272000001863,53.96751099989774", + "point": "12.198272000001863,53.96751099989774", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Zarnow Ost", + "title": "A19 | Rostock", + "coordinate": { + "long": "12.198272000001863", + "lat": "53.96751099989774" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.198272000001863,53.96751099989774" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-190021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.196844000001885,53.96991099989802,12.196844000001885,53.96991099989802", + "point": "12.196844000001885,53.96991099989802", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Zarnow West", + "title": "A19 | Dreieck Wittstock (Dosse) A 24", + "coordinate": { + "long": "12.196844000001885", + "lat": "53.96991099989802" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.196844000001885,53.96991099989802" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + } + ] + }, + "A20": { + "parking_lorry": [ + { + "identifier": "DE-SH-020203", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.386806000000268,53.9189969999993,10.386806000000268,53.9189969999993", + "point": "10.386806000000268,53.9189969999993", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Kronberg N", + "title": "A20 | Bremen", + "coordinate": { + "long": "10.386806000000268", + "lat": "53.9189969999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.386806000000268,53.9189969999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-020104", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.386876000000267,53.917901999999316,10.386876000000267,53.917901999999316", + "point": "10.386876000000267,53.917901999999316", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Kronberg S", + "title": "A20 | Stettin", + "coordinate": { + "long": "10.386876000000267", + "lat": "53.917901999999316" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.386876000000267,53.917901999999316" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-020105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.67322200000068,53.80229999999789,10.67322200000068,53.80229999999789", + "point": "10.67322200000068,53.80229999999789", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Karkfeld Ost", + "title": "A20 | Stettin", + "coordinate": { + "long": "10.67322200000068", + "lat": "53.80229999999789" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.67322200000068,53.80229999999789" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-020204", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.67106200000067,53.80235199999789,10.67106200000067,53.80235199999789", + "point": "10.67106200000067,53.80235199999789", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Karkfeld West", + "title": "A20 | Bremen", + "coordinate": { + "long": "10.67106200000067", + "lat": "53.80235199999789" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.67106200000067,53.80235199999789" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.878478000001166,53.81606599999577,10.878478000001166,53.81606599999577", + "point": "10.878478000001166,53.81606599999577", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Sch\u00f6nberger Land N", + "title": "A20 | Bremen", + "coordinate": { + "long": "10.878478000001166", + "lat": "53.81606599999577" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.878478000001166,53.81606599999577" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.878133000001164,53.814468999995775,10.878133000001164,53.814468999995775", + "point": "10.878133000001164,53.814468999995775", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Sch\u00f6nberger Land S", + "title": "A20 | Stettin", + "coordinate": { + "long": "10.878133000001164", + "lat": "53.814468999995775" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.878133000001164,53.814468999995775" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.252021000002555,53.826401999987475,11.252021000002555,53.826401999987475", + "point": "11.252021000002555,53.826401999987475", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Bretth\u00e4ger Wisch S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "11.252021000002555", + "lat": "53.826401999987475" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.252021000002555,53.826401999987475" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.252555000002557,53.82777799998747,11.252555000002557,53.82777799998747", + "point": "11.252555000002557,53.82777799998747", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Bretth\u00e4ger Wisch Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "11.252555000002557", + "lat": "53.82777799998747" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.252555000002557,53.82777799998747" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.376736000003122,53.85214399998271,11.376736000003122,53.85214399998271", + "point": "11.376736000003122,53.85214399998271", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "M\u00f6lenbarg Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "11.376736000003122", + "lat": "53.85214399998271" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.376736000003122,53.85214399998271" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.380285000003141,53.85311099998257,11.380285000003141,53.85311099998257", + "point": "11.380285000003141,53.85311099998257", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "M\u00f6lenbarg S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "11.380285000003141", + "lat": "53.85311099998257" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.380285000003141,53.85311099998257" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.641251000004292,53.87220799996748,11.641251000004292,53.87220799996748", + "point": "11.641251000004292,53.87220799996748", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Selliner See Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "11.641251000004292", + "lat": "53.87220799996748" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.641251000004292,53.87220799996748" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.642089000004297,53.87096399996742,11.642089000004297,53.87096399996742", + "point": "11.642089000004297,53.87096399996742", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Selliner See S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "11.642089000004297", + "lat": "53.87096399996742" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.642089000004297,53.87096399996742" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.757202000004586,53.90877799995795,11.757202000004586,53.90877799995795", + "point": "11.757202000004586,53.90877799995795", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Fuchsberg S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "11.757202000004586", + "lat": "53.90877799995795" + }, + "description": [ + "PKW Stellpl\u00e4tze: 56", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.757202000004586,53.90877799995795" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.758098000004582,53.91090599995786,11.758098000004582,53.91090599995786", + "point": "11.758098000004582,53.91090599995786", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Fuchsberg Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "11.758098000004582", + "lat": "53.91090599995786" + }, + "description": [ + "PKW Stellpl\u00e4tze: 52", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.758098000004582,53.91090599995786" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft/Kiosk", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.943596000004353,53.9948489999378,11.943596000004353,53.9948489999378", + "point": "11.943596000004353,53.9948489999378", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Quellental Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "11.943596000004353", + "lat": "53.9948489999378" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.943596000004353,53.9948489999378" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-200012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.944389000004351,53.9934429999377,11.944389000004351,53.9934429999377", + "point": "11.944389000004351,53.9934429999377", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Quellental S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "11.944389000004351", + "lat": "53.9934429999377" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.944389000004351,53.9934429999377" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200014", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.167383000002218,54.021016999903566,12.167383000002218,54.021016999903566", + "point": "12.167383000002218,54.021016999903566", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Warnowtal Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "12.167383000002218", + "lat": "54.021016999903566" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.167383000002218,54.021016999903566" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-200013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.162623000002302,54.019232999904425,12.162623000002302,54.019232999904425", + "point": "12.162623000002302,54.019232999904425", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Warnowtal S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "12.162623000002302", + "lat": "54.019232999904425" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.162623000002302,54.019232999904425" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.369408999996853,54.03938899986035,12.369408999996853,54.03938899986035", + "point": "12.369408999996853,54.03938899986035", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Speckmoor Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "12.369408999996853", + "lat": "54.03938899986035" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.369408999996853,54.03938899986035" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-200016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.368522999996895,54.037822999860566,12.368522999996895,54.037822999860566", + "point": "12.368522999996895,54.037822999860566", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Speckmoor S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "12.368522999996895", + "lat": "54.037822999860566" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.368522999996895,54.037822999860566" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.628888999981253,54.05419999978228,12.628888999981253,54.05419999978228", + "point": "12.628888999981253,54.05419999978228", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "Lindholz Nord", + "title": "A20 | 0", + "coordinate": { + "long": "12.628888999981253", + "lat": "54.05419999978228" + }, + "description": [ + "PKW Stellpl\u00e4tze: 54", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.628888999981253,54.05419999978228" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200019", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.862402999952636,54.078115999683824,12.862402999952636,54.078115999683824", + "point": "12.862402999952636,54.078115999683824", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Trebeltal S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "12.862402999952636", + "lat": "54.078115999683824" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.862402999952636,54.078115999683824" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.874381999950673,54.07714299967791,12.874381999950673,54.07714299967791", + "point": "12.874381999950673,54.07714299967791", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Trebeltal Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "12.874381999950673", + "lat": "54.07714299967791" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.874381999950673,54.07714299967791" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-200021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.154080999883973,54.079738999511314,13.154080999883973,54.079738999511314", + "point": "13.154080999883973,54.079738999511314", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Riedbruch Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "13.154080999883973", + "lat": "54.079738999511314" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.154080999883973,54.079738999511314" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.153670999884124,54.07885399951159,13.153670999884124,54.07885399951159", + "point": "13.153670999884124,54.07885399951159", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "Riedbruch S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "13.153670999884124", + "lat": "54.07885399951159" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.153670999884124,54.07885399951159" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200023", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.318668999822306,53.99819199938311,13.318668999822306,53.99819199938311", + "point": "13.318668999822306,53.99819199938311", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "Peenetal Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "13.318668999822306", + "lat": "53.99819199938311" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.318668999822306,53.99819199938311" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-200024", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.316285999823418,53.99724099938515,13.316285999823418,53.99724099938515", + "point": "13.316285999823418,53.99724099938515", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "Peenetal S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "13.316285999823418", + "lat": "53.99724099938515" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.316285999823418,53.99724099938515" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.33425099981899,53.85639199936895,13.33425099981899,53.85639199936895", + "point": "13.33425099981899,53.85639199936895", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Demminer Land W", + "title": "A20 | 0", + "coordinate": { + "long": "13.33425099981899", + "lat": "53.85639199936895" + }, + "description": [ + "PKW Stellpl\u00e4tze: 97", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.33425099981899,53.85639199936895" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "motorwayRestaurantSmall.notAvailable", + "style": "not-available" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200027", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.366809999810254,53.62075299933896,13.366809999810254,53.62075299933896", + "point": "13.366809999810254,53.62075299933896", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Vier Tore Stadt West", + "title": "A20 | Stettin", + "coordinate": { + "long": "13.366809999810254", + "lat": "53.62075299933896" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.366809999810254,53.62075299933896" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200028", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.36843199980947,53.62063199933749,13.36843199980947,53.62063199933749", + "point": "13.36843199980947,53.62063199933749", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Vier Tore Stadt Ost", + "title": "A20 | Bremen", + "coordinate": { + "long": "13.36843199980947", + "lat": "53.62063199933749" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.36843199980947,53.62063199933749" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-200029", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.594276999672957,53.55029999910439,13.594276999672957,53.55029999910439", + "point": "13.594276999672957,53.55029999910439", + "startLcPosition": "52", + "display_type": "PARKING", + "subtitle": "Brohmer Berge Nord", + "title": "A20 | 0", + "coordinate": { + "long": "13.594276999672957", + "lat": "53.55029999910439" + }, + "description": [ + "PKW Stellpl\u00e4tze: 84", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.594276999672957,53.55029999910439" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-200031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.779623999505763,53.52051999886581,13.779623999505763,53.52051999886581", + "point": "13.779623999505763,53.52051999886581", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Ravensm\u00fchle Nord", + "title": "A20 | Bremen", + "coordinate": { + "long": "13.779623999505763", + "lat": "53.52051999886581" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.779623999505763,53.52051999886581" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-200032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.777387999508182,53.520121998868966,13.777387999508182,53.520121998868966", + "point": "13.777387999508182,53.520121998868966", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Ravensm\u00fchle S\u00fcd", + "title": "A20 | Stettin", + "coordinate": { + "long": "13.777387999508182", + "lat": "53.520121998868966" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.777387999508182,53.520121998868966" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-264902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.99388399923499,53.3943669985259,13.99388399923499,53.3943669985259", + "point": "13.99388399923499,53.3943669985259", + "startLcPosition": "58", + "display_type": "PARKING", + "subtitle": "Klockow", + "title": "A20 | Bremen", + "coordinate": { + "long": "13.99388399923499", + "lat": "53.3943669985259" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.99388399923499,53.3943669985259" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-264901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.992516999237129,53.39424899852828,13.992516999237129,53.39424899852828", + "point": "13.992516999237129,53.39424899852828", + "startLcPosition": "59", + "display_type": "PARKING", + "subtitle": "Klockow", + "title": "A20 | Stettin", + "coordinate": { + "long": "13.992516999237129", + "lat": "53.39424899852828" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.992516999237129,53.39424899852828" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A21": { + "parking_lorry": [ + { + "identifier": "DE-SH-021201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.322820000000217,53.73540699999947,10.322820000000217,53.73540699999947", + "point": "10.322820000000217,53.73540699999947", + "startLcPosition": "0", + "display_type": "PARKING", + "subtitle": "Rehbrook W", + "title": "A21 | Hamburg", + "coordinate": { + "long": "10.322820000000217", + "lat": "53.73540699999947" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.322820000000217,53.73540699999947" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-021101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.32393000000022,53.73545399999947,10.32393000000022,53.73545399999947", + "point": "10.32393000000022,53.73545399999947", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Rehbrook Ost", + "title": "A21 | Kiel", + "coordinate": { + "long": "10.32393000000022", + "lat": "53.73545399999947" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.32393000000022,53.73545399999947" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-021202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.292246000000192,53.89021199999954,10.292246000000192,53.89021199999954", + "point": "10.292246000000192,53.89021199999954", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Bebenseer Moor", + "title": "A21 | Hamburg", + "coordinate": { + "long": "10.292246000000192", + "lat": "53.89021199999954" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.292246000000192,53.89021199999954" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-021102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.292442000000191,53.890836999999536,10.292442000000191,53.890836999999536", + "point": "10.292442000000191,53.890836999999536", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Schwisseler Kamp", + "title": "A21 | Kiel", + "coordinate": { + "long": "10.292442000000191", + "lat": "53.890836999999536" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.292442000000191,53.890836999999536" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-021103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.263251000000167,53.95940299999961,10.263251000000167,53.95940299999961", + "point": "10.263251000000167,53.95940299999961", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Schackendorf O", + "title": "A21 | Kiel", + "coordinate": { + "long": "10.263251000000167", + "lat": "53.95940299999961" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.263251000000167,53.95940299999961" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-021203", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.261075000000169,53.959629999999606,10.261075000000169,53.959629999999606", + "point": "10.261075000000169,53.959629999999606", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Schackendorf W", + "title": "A21 | Hamburg", + "coordinate": { + "long": "10.261075000000169", + "lat": "53.959629999999606" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.261075000000169,53.959629999999606" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-021204", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.211640000000132,54.139656999999694,10.211640000000132,54.139656999999694", + "point": "10.211640000000132,54.139656999999694", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Depenauer Moor", + "title": "A21 | Hamburg", + "coordinate": { + "long": "10.211640000000132", + "lat": "54.139656999999694" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.211640000000132,54.139656999999694" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A23": { + "parking_lorry": [ + { + "identifier": "DE-SH-023101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.774240000000017,53.702902999999985,9.774240000000017,53.702902999999985", + "point": "9.774240000000017,53.702902999999985", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Forst Rantzau", + "title": "A23 | Heide", + "coordinate": { + "long": "9.774240000000017", + "lat": "53.702902999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.774240000000017,53.702902999999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-023201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.769479000000016,53.70657899999998,9.769479000000016,53.70657899999998", + "point": "9.769479000000016,53.70657899999998", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Forst Rantzau", + "title": "A23 | Hamburg", + "coordinate": { + "long": "9.769479000000016", + "lat": "53.70657899999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.769479000000016,53.70657899999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-023202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.632457000000006,53.82836599999999,9.632457000000006,53.82836599999999", + "point": "9.632457000000006,53.82836599999999", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Steinburg", + "title": "A23 | Hamburg", + "coordinate": { + "long": "9.632457000000006", + "lat": "53.82836599999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.632457000000006,53.82836599999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-023102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.632616000000006,53.82954599999999,9.632616000000006,53.82954599999999", + "point": "9.632616000000006,53.82954599999999", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Steinburg", + "title": "A23 | Heide", + "coordinate": { + "long": "9.632616000000006", + "lat": "53.82954599999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.632616000000006,53.82954599999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-023203", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.477227000000001,54.006581,9.477227000000001,54.006581", + "point": "9.477227000000001,54.006581", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Kaaksburg", + "title": "A23 | Hamburg", + "coordinate": { + "long": "9.477227000000001", + "lat": "54.006581" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.477227000000001,54.006581" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-023103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.47776,54.007202,9.47776,54.007202", + "point": "9.47776,54.007202", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Kaaksburg", + "title": "A23 | Heide", + "coordinate": { + "long": "9.47776", + "lat": "54.007202" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.47776,54.007202" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-023205", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.248291,54.13879000000002,9.248291,54.13879000000002", + "point": "9.248291,54.13879000000002", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Dithmarscher Geest -West", + "title": "A23 | Hamburg", + "coordinate": { + "long": "9.248291", + "lat": "54.13879000000002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.248291,54.13879000000002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-023105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.251517,54.137326,9.251517,54.137326", + "point": "9.251517,54.137326", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Dithmarscher Geest -Ost", + "title": "A23 | Heide", + "coordinate": { + "long": "9.251517", + "lat": "54.137326" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.251517,54.137326" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A24": { + "parking_lorry": [ + { + "identifier": "DE-SH-024201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.302258000000204,53.56864999999952,10.302258000000204,53.56864999999952", + "point": "10.302258000000204,53.56864999999952", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Hahnenkoppel N", + "title": "A24 | Hamburg", + "coordinate": { + "long": "10.302258000000204", + "lat": "53.56864999999952" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.302258000000204,53.56864999999952" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-024101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.303021000000204,53.56787399999952,10.303021000000204,53.56787399999952", + "point": "10.303021000000204,53.56787399999952", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Hahnenkoppel S", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "10.303021000000204", + "lat": "53.56787399999952" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.303021000000204,53.56787399999952" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-024202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.617195000000594,53.553738999998274,10.617195000000594,53.553738999998274", + "point": "10.617195000000594,53.553738999998274", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Tramm", + "title": "A24 | Hamburg", + "coordinate": { + "long": "10.617195000000594", + "lat": "53.553738999998274" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.617195000000594,53.553738999998274" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-024102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.628568000000612,53.5513029999982,10.628568000000612,53.5513029999982", + "point": "10.628568000000612,53.5513029999982", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Roseburg", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "10.628568000000612", + "lat": "53.5513029999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.628568000000612,53.5513029999982" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-024203", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.808131000001017,53.520372999996624,10.808131000001017,53.520372999996624", + "point": "10.808131000001017,53.520372999996624", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Gudow N", + "title": "A24 | Hamburg", + "coordinate": { + "long": "10.808131000001017", + "lat": "53.520372999996624" + }, + "description": [ + "PKW Stellpl\u00e4tze: 95", + "LKW Stellpl\u00e4tze: 72" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.808131000001017,53.520372999996624" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-024103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.80630700000101,53.520114999996636,10.80630700000101,53.520114999996636", + "point": "10.80630700000101,53.520114999996636", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Gudow S", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "10.80630700000101", + "lat": "53.520114999996636" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 49" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.80630700000101,53.520114999996636" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-240001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.852951000001138,53.51104399999609,10.852951000001138,53.51104399999609", + "point": "10.852951000001138,53.51104399999609", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Schaalsee S", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "10.852951000001138", + "lat": "53.51104399999609" + }, + "description": [ + "PKW Stellpl\u00e4tze: 85", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.852951000001138,53.51104399999609" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft/Kiosk", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-240018", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.125861000002127,53.49471399999111,11.125861000002127,53.49471399999111", + "point": "11.125861000002127,53.49471399999111", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Wittenburger Land S\u00fcd", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "11.125861000002127", + "lat": "53.49471399999111" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.125861000002127,53.49471399999111" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-240017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.128515000002137,53.49599499999105,11.128515000002137,53.49599499999105", + "point": "11.128515000002137,53.49599499999105", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Wittenburger Land Nord", + "title": "A24 | Hamburg", + "coordinate": { + "long": "11.128515000002137", + "lat": "53.49599499999105" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.128515000002137,53.49599499999105" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-240008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.343828000003194,53.46331899998406,11.343828000003194,53.46331899998406", + "point": "11.343828000003194,53.46331899998406", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Schremheide Nord", + "title": "A24 | Hamburg", + "coordinate": { + "long": "11.343828000003194", + "lat": "53.46331899998406" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.343828000003194,53.46331899998406" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-240007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.341879000003182,53.46246299998413,11.341879000003182,53.46246299998413", + "point": "11.341879000003182,53.46246299998413", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Schremheide S\u00fcd", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "11.341879000003182", + "lat": "53.46246299998413" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.341879000003182,53.46246299998413" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-MV-240014", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.652462000004926,53.37077199996654,11.652462000004926,53.37077199996654", + "point": "11.652462000004926,53.37077199996654", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Blievenstorf N", + "title": "A24 | Hamburg", + "coordinate": { + "long": "11.652462000004926", + "lat": "53.37077199996654" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.652462000004926,53.37077199996654" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-240013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.651732000004925,53.3701449999666,11.651732000004925,53.3701449999666", + "point": "11.651732000004925,53.3701449999666", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Blievenstorf S", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "11.651732000004925", + "lat": "53.3701449999666" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.651732000004925,53.3701449999666" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-240015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.72980400000528,53.36817199996024,11.72980400000528,53.36817199996024", + "point": "11.72980400000528,53.36817199996024", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Stolpe Nord", + "title": "A24 | Hamburg", + "coordinate": { + "long": "11.72980400000528", + "lat": "53.36817199996024" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 44" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.72980400000528,53.36817199996024" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-MV-240016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.72911800000528,53.36672099996029,11.72911800000528,53.36672099996029", + "point": "11.72911800000528,53.36672099996029", + "startLcPosition": "25", + "display_type": "PARKING", + "subtitle": "Stolpe S", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "11.72911800000528", + "lat": "53.36672099996029" + }, + "description": [ + "PKW Stellpl\u00e4tze: 106", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.72911800000528,53.36672099996029" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft/Kiosk", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-273802", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.073270000005563,53.2853439999191,12.073270000005563,53.2853439999191", + "point": "12.073270000005563,53.2853439999191", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "RA A24 km 141,779 Ri. Hamburg", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.073270000005563", + "lat": "53.2853439999191" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.073270000005563,53.2853439999191" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-273801", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.072715000005566,53.28491899991918,12.072715000005566,53.28491899991918", + "point": "12.072715000005566,53.28491899991918", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "RA A24 km 141,775 Ri. Dreieck Havelland", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.072715000005566", + "lat": "53.28491899991918" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.072715000005566,53.28491899991918" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-273803", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.143669000005096,53.264270999907325,12.143669000005096,53.264270999907325", + "point": "12.143669000005096,53.264270999907325", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Dorngrund", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.143669000005096", + "lat": "53.264270999907325" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.143669000005096,53.264270999907325" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-273804", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.143702000005096,53.26343399990732,12.143702000005096,53.26343399990732", + "point": "12.143702000005096,53.26343399990732", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Dorngrund", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.143702000005096", + "lat": "53.26343399990732" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.143702000005096,53.26343399990732" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-283901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.275298000003476,53.19745699988147,12.275298000003476,53.19745699988147", + "point": "12.275298000003476,53.19745699988147", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Blesenberg, km 158,7 li RF", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.275298000003476", + "lat": "53.19745699988147" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.275298000003476,53.19745699988147" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-283902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.275790000003473,53.19630999988136,12.275790000003473,53.19630999988136", + "point": "12.275790000003473,53.19630999988136", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Kiebitzberg, km 157,7 re RF", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.275790000003473", + "lat": "53.19630999988136" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.275790000003473,53.19630999988136" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-284002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.467030999998196,53.11527499983329,12.467030999998196,53.11527499983329", + "point": "12.467030999998196,53.11527499983329", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Prignitz West", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.467030999998196", + "lat": "53.11527499983329" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.467030999998196,53.11527499983329" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-284001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.469081999998114,53.11499699983271,12.469081999998114,53.11499699983271", + "point": "12.469081999998114,53.11499699983271", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Prignitz Ost", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.469081999998114", + "lat": "53.11499699983271" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.469081999998114,53.11499699983271" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-294103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.589240999992638,53.0094229997948,12.589240999992638,53.0094229997948", + "point": "12.589240999992638,53.0094229997948", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "RA A24 km 190,5", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.589240999992638", + "lat": "53.0094229997948" + }, + "description": [ + "PKW Stellpl\u00e4tze: 4", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.589240999992638,53.0094229997948" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-294102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.550478999994644,53.044445999807735,12.550478999994644,53.044445999807735", + "point": "12.550478999994644,53.044445999807735", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "RA A24 km 185,408 Ri. Hamburg", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.550478999994644", + "lat": "53.044445999807735" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.550478999994644,53.044445999807735" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-294104", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.6091829999915,52.992026999787846,12.6091829999915,52.992026999787846", + "point": "12.6091829999915,52.992026999787846", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "RA A24 km 192,5", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.6091829999915", + "lat": "52.992026999787846" + }, + "description": [ + "PKW Stellpl\u00e4tze: 4", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.6091829999915,52.992026999787846" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-294101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.551462999994598,53.04304499980742,12.551462999994598,53.04304499980742", + "point": "12.551462999994598,53.04304499980742", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "RA A24 km 185,551 Ri. Dreieck Havelland", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.551462999994598", + "lat": "53.04304499980742" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.551462999994598,53.04304499980742" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-304101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.66128099998812,52.95173399976881,12.66128099998812,52.95173399976881", + "point": "12.66128099998812,52.95173399976881", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Walsleben O", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.66128099998812", + "lat": "52.95173399976881" + }, + "description": [ + "PKW Stellpl\u00e4tze: 94", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.66128099998812,52.95173399976881" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-304102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.659174999988286,52.95105699976961,12.659174999988286,52.95105699976961", + "point": "12.659174999988286,52.95105699976961", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Walsleben W", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.659174999988286", + "lat": "52.95105699976961" + }, + "description": [ + "PKW Stellpl\u00e4tze: 75", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.659174999988286,52.95105699976961" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-304202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.75365999998058,52.88764399973157,12.75365999998058,52.88764399973157", + "point": "12.75365999998058,52.88764399973157", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Ruppiner See, km 207,95 li. RF", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.75365999998058", + "lat": "52.88764399973157" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.75365999998058,52.88764399973157" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-304201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.75273399998067,52.88770999973197,12.75273399998067,52.88770999973197", + "point": "12.75273399998067,52.88770999973197", + "startLcPosition": "40", + "display_type": "PARKING", + "subtitle": "Am Rhinluch, km 207,8 re RF", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.75273399998067", + "lat": "52.88770999973197" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.75273399998067,52.88770999973197" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-324202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.821137999974583,52.766660999701266,12.821137999974583,52.766660999701266", + "point": "12.821137999974583,52.766660999701266", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "RA A24 km 222,362 Ri. Hamburg", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.821137999974583", + "lat": "52.766660999701266" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.821137999974583,52.766660999701266" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-324201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.81702599997505,52.76852599970319,12.81702599997505,52.76852599970319", + "point": "12.81702599997505,52.76852599970319", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "RA A24 km 222,045 Ri. Dreieck Havelland", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.81702599997505", + "lat": "52.76852599970319" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.81702599997505,52.76852599970319" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-324301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.8543179999706,52.75490899968539,12.8543179999706,52.75490899968539", + "point": "12.8543179999706,52.75490899968539", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "Linumer Bruch N", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.8543179999706", + "lat": "52.75490899968539" + }, + "description": [ + "PKW Stellpl\u00e4tze: 131", + "LKW Stellpl\u00e4tze: 49" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.8543179999706,52.75490899968539" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-324304", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.937415999958908,52.72721999964254,12.937415999958908,52.72721999964254", + "point": "12.937415999958908,52.72721999964254", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "RA A24 km 231,526 Ri. Hamburg", + "title": "A24 | Hamburg", + "coordinate": { + "long": "12.937415999958908", + "lat": "52.72721999964254" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.937415999958908,52.72721999964254" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-324303", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.93333899995954,52.72859599964475,12.93333899995954,52.72859599964475", + "point": "12.93333899995954,52.72859599964475", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "RA A24 km 231,194 Ri. Dreieck Havelland", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.93333899995954", + "lat": "52.72859599964475" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.93333899995954,52.72859599964475" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-324302", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.853824999970694,52.75293599968563,12.853824999970694,52.75293599968563", + "point": "12.853824999970694,52.75293599968563", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Linumer Bruch S", + "title": "A24 | Berlin (A10)", + "coordinate": { + "long": "12.853824999970694", + "lat": "52.75293599968563" + }, + "description": [ + "PKW Stellpl\u00e4tze: 126", + "LKW Stellpl\u00e4tze: 49" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.853824999970694,52.75293599968563" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A25": { + "parking_lorry": [] + }, + "A26": { + "parking_lorry": [] + }, + "A27": { + "parking_lorry": [ + { + "identifier": "DE-NI-312303", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.608950000000005,52.82437099999999,9.608950000000005,52.82437099999999", + "point": "9.608950000000005,52.82437099999999", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "D\u00fcshorn S", + "title": "A27 | Walsrode", + "coordinate": { + "long": "9.608950000000005", + "lat": "52.82437099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 7", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.608950000000005,52.82437099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-322301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.652737000000005,52.79663399999999,9.652737000000005,52.79663399999999", + "point": "9.652737000000005,52.79663399999999", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Krelinger Heide N (NI 33 N)", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "9.652737000000005", + "lat": "52.79663399999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.652737000000005,52.79663399999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-312202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.452918,52.886461999999995,9.452918,52.886461999999995", + "point": "9.452918,52.886461999999995", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Hamwiede S\u00fcd", + "title": "A27 | Walsrode", + "coordinate": { + "long": "9.452918", + "lat": "52.886461999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.452918,52.886461999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-312201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.474207000000002,52.882857,9.474207000000002,52.882857", + "point": "9.474207000000002,52.882857", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Hamwiede N", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "9.474207000000002", + "lat": "52.882857" + }, + "description": [ + "PKW Stellpl\u00e4tze: 55", + "LKW Stellpl\u00e4tze: 51" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.474207000000002,52.882857" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-292103", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.181296,52.998310999999994,9.181296,52.998310999999994", + "point": "9.181296,52.998310999999994", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Goldbach S (Langwedel-Daverden S)", + "title": "A27 | Walsrode", + "coordinate": { + "long": "9.181296", + "lat": "52.998310999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 83" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.181296,52.998310999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-292102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.181362,53.00037300000001,9.181362,53.00037300000001", + "point": "9.181362,53.00037300000001", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Goldbach N (Langwedel-Daverden N)", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "9.181362", + "lat": "53.00037300000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 80", + "LKW Stellpl\u00e4tze: 92" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.181362,53.00037300000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-292004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.103378,53.014600000000016,9.103378,53.014600000000016", + "point": "9.103378,53.014600000000016", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Badener Holz N", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "9.103378", + "lat": "53.014600000000016" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.103378,53.014600000000016" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HB-000006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.89232,53.09149,8.89232,53.09149", + "point": "8.89232,53.09149", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Mittelk\u00e4mpe", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "8.89232", + "lat": "53.09149" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.89232,53.09149" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HB-000005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.894621,53.09108800000001,8.894621,53.09108800000001", + "point": "8.894621,53.09108800000001", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Achterk\u00e4mpe", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "8.894621", + "lat": "53.09108800000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.894621,53.09108800000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HB-000008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.78448,53.12161199999999,8.78448,53.12161199999999", + "point": "8.78448,53.12161199999999", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Osterwiesen", + "title": "A27 | Walsrode", + "coordinate": { + "long": "8.78448", + "lat": "53.12161199999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.78448,53.12161199999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HB-000007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.790526,53.121172,8.790526,53.121172", + "point": "8.790526,53.121172", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Fahrwiesen", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "8.790526", + "lat": "53.121172" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.790526,53.121172" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-HB-000009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.65923,53.210623999999996,8.65923,53.210623999999996", + "point": "8.65923,53.210623999999996", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Habichthorst Rifa Nord O", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "8.65923", + "lat": "53.210623999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.65923,53.210623999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HB-000010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.656776,53.21115699999999,8.656776,53.21115699999999", + "point": "8.656776,53.21115699999999", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Habichthorst Rifa S\u00fcd W", + "title": "A27 | Walsrode", + "coordinate": { + "long": "8.656776", + "lat": "53.21115699999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.656776,53.21115699999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-261701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.58491,53.35932900000002,8.58491,53.35932900000002", + "point": "8.58491,53.35932900000002", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Binnermoor/Hagen W", + "title": "A27 | Walsrode", + "coordinate": { + "long": "8.58491", + "lat": "53.35932900000002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.58491,53.35932900000002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-261702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.60692,53.34166,8.60692,53.34166", + "point": "8.60692,53.34166", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Harmonie O", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "8.60692", + "lat": "53.34166" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.60692,53.34166" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-251701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.61627,53.47796999999999,8.61627,53.47796999999999", + "point": "8.61627,53.47796999999999", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Nesse / West W", + "title": "A27 | Walsrode", + "coordinate": { + "long": "8.61627", + "lat": "53.47796999999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.61627,53.47796999999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-251702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.617279,53.47763,8.617279,53.47763", + "point": "8.617279,53.47763", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Nesse / Ost O", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "8.617279", + "lat": "53.47763" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.617279,53.47763" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-231701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.65829,53.608802,8.65829,53.608802", + "point": "8.65829,53.608802", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "B\u00fctteler Holz West (alt Debstedt / West)", + "title": "A27 | Walsrode", + "coordinate": { + "long": "8.65829", + "lat": "53.608802" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.65829,53.608802" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-231702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.658958,53.60750999999999,8.658958,53.60750999999999", + "point": "8.658958,53.60750999999999", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "B\u00fctteler Holz Ost (alt:Debstedt / Ost)", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "8.658958", + "lat": "53.60750999999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.658958,53.60750999999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-221701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.66139,53.72642100000001,8.66139,53.72642100000001", + "point": "8.66139,53.72642100000001", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Midlum W", + "title": "A27 | Walsrode", + "coordinate": { + "long": "8.66139", + "lat": "53.72642100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.66139,53.72642100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-221702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.663991,53.71037799999999,8.663991,53.71037799999999", + "point": "8.663991,53.71037799999999", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Krempel O", + "title": "A27 | Cuxhaven", + "coordinate": { + "long": "8.663991", + "lat": "53.71037799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.663991,53.71037799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A28": { + "parking_lorry": [ + { + "identifier": "DE-NI-271101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.586415999999682,53.258882999999216,7.586415999999682,53.258882999999216", + "point": "7.586415999999682,53.258882999999216", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Brinkum (Filsum) N", + "title": "A28 | Leer", + "coordinate": { + "long": "7.586415999999682", + "lat": "53.258882999999216" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.586415999999682,53.258882999999216" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-271102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.578188999999672,53.258960999999196,7.578188999999672,53.258960999999196", + "point": "7.578188999999672,53.258960999999196", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Nortmoor (Filsum) S", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "7.578188999999672", + "lat": "53.258960999999196" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.578188999999672,53.258960999999196" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-271201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.810623999999867,53.27621399999971,7.810623999999867,53.27621399999971", + "point": "7.810623999999867,53.27621399999971", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Uplengen Nord (S\u00fcdgeorgsfehn) N", + "title": "A28 | Leer", + "coordinate": { + "long": "7.810623999999867", + "lat": "53.27621399999971" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.810623999999867,53.27621399999971" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-271202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.8015319999998605,53.2729959999997,7.8015319999998605,53.2729959999997", + "point": "7.8015319999998605,53.2729959999997", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Uplengen S\u00fcd (S\u00fcdgeorgsfehn) S", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "7.8015319999998605", + "lat": "53.2729959999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.8015319999998605,53.2729959999997" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-271401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.008880999999947,53.247990999999914,8.008880999999947,53.247990999999914", + "point": "8.008880999999947,53.247990999999914", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Garnhold N (NI 139 N)", + "title": "A28 | Leer", + "coordinate": { + "long": "8.008880999999947", + "lat": "53.247990999999914" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.008880999999947,53.247990999999914" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-271404", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.006248999999945,53.247583999999904,8.006248999999945,53.247583999999904", + "point": "8.006248999999945,53.247583999999904", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Garnhold S (NI 138 S)", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "8.006248999999945", + "lat": "53.247583999999904" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.006248999999945,53.247583999999904" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-271405", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.066409999999959,53.20935099999992,8.066409999999959,53.20935099999992", + "point": "8.066409999999959,53.20935099999992", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Helle S (NI 140 S)", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "8.066409999999959", + "lat": "53.20935099999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.066409999999959,53.20935099999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-271406", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.070419999999961,53.20901899999992,8.070419999999961,53.20901899999992", + "point": "8.070419999999961,53.20901899999992", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Helle N (NI 148 N)", + "title": "A28 | Leer", + "coordinate": { + "long": "8.070419999999961", + "lat": "53.20901899999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 9", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.070419999999961,53.20901899999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-281402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.12172999999997,53.166913999999956,8.12172999999997,53.166913999999956", + "point": "8.12172999999997,53.166913999999956", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Wechloy S", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "8.12172999999997", + "lat": "53.166913999999956" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.12172999999997,53.166913999999956" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-281401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.131810999999972,53.16252999999997,8.131810999999972,53.16252999999997", + "point": "8.131810999999972,53.16252999999997", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Wechloy N", + "title": "A28 | Leer", + "coordinate": { + "long": "8.131810999999972", + "lat": "53.16252999999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.131810999999972,53.16252999999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291503", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.330982999999993,53.07087499999999,8.330982999999993,53.07087499999999", + "point": "8.330982999999993,53.07087499999999", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Hemmelsberg N (NI 144 N)", + "title": "A28 | Leer", + "coordinate": { + "long": "8.330982999999993", + "lat": "53.07087499999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.330982999999993,53.07087499999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.319013999999992,53.07754399999999,8.319013999999992,53.07754399999999", + "point": "8.319013999999992,53.07754399999999", + "startLcPosition": "25", + "display_type": "PARKING", + "subtitle": "Hemmelsberg S (NI 143 S)", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "8.319013999999992", + "lat": "53.07754399999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.319013999999992,53.07754399999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.412009999999997,53.058209000000005,8.412009999999997,53.058209000000005", + "point": "8.412009999999997,53.058209000000005", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Hurrel N (NI 146 N)", + "title": "A28 | Leer", + "coordinate": { + "long": "8.412009999999997", + "lat": "53.058209000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.412009999999997,53.058209000000005" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-291602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.391689999999997,53.058128,8.391689999999997,53.058128", + "point": "8.391689999999997,53.058128", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Hurrel S (NI 145 S)", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "8.391689999999997", + "lat": "53.058128" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.391689999999997,53.058128" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291704", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.502279999999999,53.05556099999999,8.502279999999999,53.05556099999999", + "point": "8.502279999999999,53.05556099999999", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Hasbruch N", + "title": "A28 | Leer", + "coordinate": { + "long": "8.502279999999999", + "lat": "53.05556099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.502279999999999,53.05556099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.500589999999999,53.05472199999999,8.500589999999999,53.05472199999999", + "point": "8.500589999999999,53.05472199999999", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Hasbruch S", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "8.500589999999999", + "lat": "53.05472199999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.500589999999999,53.05472199999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.59868,53.034859,8.59868,53.034859", + "point": "8.59868,53.034859", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Deichhorst S (NI 149 S)", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "8.59868", + "lat": "53.034859" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.59868,53.034859" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291703", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.60108,53.034988,8.60108,53.034988", + "point": "8.60108,53.034988", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Deichhorst N (NI 147 N)", + "title": "A28 | Leer", + "coordinate": { + "long": "8.60108", + "lat": "53.034988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.60108,53.034988" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291804", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.68814,53.020851,8.68814,53.020851", + "point": "8.68814,53.020851", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "An der Heide", + "title": "A28 | Delmenhorst", + "coordinate": { + "long": "8.68814", + "lat": "53.020851" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.68814,53.020851" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A29": { + "parking_lorry": [ + { + "identifier": "DE-NI-301502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.166093999999976,52.91507399999997,8.166093999999976,52.91507399999997", + "point": "8.166093999999976,52.91507399999997", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Ahlhorn W", + "title": "A29 | Dreieck Ahlhorner Heide (A1)", + "coordinate": { + "long": "8.166093999999976", + "lat": "52.91507399999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.166093999999976,52.91507399999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-301501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.166269999999976,52.91240999999996,8.166269999999976,52.91240999999996", + "point": "8.166269999999976,52.91240999999996", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Ahlhorn O", + "title": "A29 | Wilhelmshaven", + "coordinate": { + "long": "8.166269999999976", + "lat": "52.91240999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.166269999999976,52.91240999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291504", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.220655999999986,53.04545199999997,8.220655999999986,53.04545199999997", + "point": "8.220655999999986,53.04545199999997", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Huntetal W", + "title": "A29 | Dreieck Ahlhorner Heide (A1)", + "coordinate": { + "long": "8.220655999999986", + "lat": "53.04545199999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.220655999999986,53.04545199999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-291501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.220864999999984,53.041193999999976,8.220864999999984,53.041193999999976", + "point": "8.220864999999984,53.041193999999976", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Huntetal O", + "title": "A29 | Wilhelmshaven", + "coordinate": { + "long": "8.220864999999984", + "lat": "53.041193999999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.220864999999984,53.041193999999976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-281502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.263509999999988,53.182433999999986,8.263509999999988,53.182433999999986", + "point": "8.263509999999988,53.182433999999986", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Bornhorster Wiesen O (NI 153 O)", + "title": "A29 | Wilhelmshaven", + "coordinate": { + "long": "8.263509999999988", + "lat": "53.182433999999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.263509999999988,53.182433999999986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-281501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.260258999999987,53.18360099999999,8.260258999999987,53.18360099999999", + "point": "8.260258999999987,53.18360099999999", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Bornhorster Wiesen West", + "title": "A29 | Dreieck Ahlhorner Heide (A1)", + "coordinate": { + "long": "8.260258999999987", + "lat": "53.18360099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.260258999999987,53.18360099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-271402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.146303999999976,53.295527999999955,8.146303999999976,53.295527999999955", + "point": "8.146303999999976,53.295527999999955", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Bekhauser B\u00fcsche W", + "title": "A29 | Dreieck Ahlhorner Heide (A1)", + "coordinate": { + "long": "8.146303999999976", + "lat": "53.295527999999955" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.146303999999976,53.295527999999955" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-271403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.147096999999976,53.29691599999997,8.147096999999976,53.29691599999997", + "point": "8.147096999999976,53.29691599999997", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Bekhauser B\u00fcsche O", + "title": "A29 | Wilhelmshaven", + "coordinate": { + "long": "8.147096999999976", + "lat": "53.29691599999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.147096999999976,53.29691599999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-261402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.115703999999969,53.38568199999994,8.115703999999969,53.38568199999994", + "point": "8.115703999999969,53.38568199999994", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Vareler Wald W", + "title": "A29 | Dreieck Ahlhorner Heide (A1)", + "coordinate": { + "long": "8.115703999999969", + "lat": "53.38568199999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.115703999999969,53.38568199999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-261401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.112579999999967,53.390300999999965,8.112579999999967,53.390300999999965", + "point": "8.112579999999967,53.390300999999965", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Vareler Wald O", + "title": "A29 | Wilhelmshaven", + "coordinate": { + "long": "8.112579999999967", + "lat": "53.390300999999965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.112579999999967,53.390300999999965" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A30": { + "parking_lorry": [ + { + "identifier": "DE-NI-360803", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.043679999998271,52.31333199999458,7.043679999998271,52.31333199999458", + "point": "7.043679999998271,52.31333199999458", + "display_type": "PARKING", + "subtitle": "Bentheimer Wald S", + "title": "A30 | Bad Oeynhausen", + "coordinate": { + "long": "7.043679999998271", + "lat": "52.31333199999458" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 73" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.043679999998271,52.31333199999458" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-360801", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.105629999998521,52.33615099999553,7.105629999998521,52.33615099999553", + "point": "7.105629999998521,52.33615099999553", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Waldseite N", + "title": "A30 | Hengelo", + "coordinate": { + "long": "7.105629999998521", + "lat": "52.33615099999553" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 86" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.105629999998521,52.33615099999553" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-360802", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.10574999999852,52.335559999995546,7.10574999999852,52.335559999995546", + "point": "7.10574999999852,52.335559999995546", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Waldseite S", + "title": "A30 | Bad Oeynhausen", + "coordinate": { + "long": "7.10574999999852", + "lat": "52.335559999995546" + }, + "description": [ + "PKW Stellpl\u00e4tze: 43", + "LKW Stellpl\u00e4tze: 95" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.10574999999852,52.335559999995546" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-361002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.397939999999344,52.34181999999836,7.397939999999344,52.34181999999836", + "point": "7.397939999999344,52.34181999999836", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Emstal S", + "title": "A30 | Bad Oeynhausen", + "coordinate": { + "long": "7.397939999999344", + "lat": "52.34181999999836" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.397939999999344,52.34181999999836" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-361001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.408489999999364,52.33840199999842,7.408489999999364,52.33840199999842", + "point": "7.408489999999364,52.33840199999842", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Emstal N", + "title": "A30 | Hengelo", + "coordinate": { + "long": "7.408489999999364", + "lat": "52.33840199999842" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.408489999999364,52.33840199999842" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000128", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.847361999999871,52.261473999999765,7.847361999999871,52.261473999999765", + "point": "7.847361999999871,52.261473999999765", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Brockbachtal Nord", + "title": "A30 | Hengelo", + "coordinate": { + "long": "7.847361999999871", + "lat": "52.261473999999765" + }, + "description": [ + "PKW Stellpl\u00e4tze: 67", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.847361999999871,52.261473999999765" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000127", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.848373999999873,52.26038899999976,7.848373999999873,52.26038899999976", + "point": "7.848373999999873,52.26038899999976", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Brockbachtal S\u00fcd", + "title": "A30 | Bad Oeynhausen", + "coordinate": { + "long": "7.848373999999873", + "lat": "52.26038899999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 58", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.848373999999873,52.26038899999976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-371501", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.20087999999998,52.22510199999997,8.20087999999998,52.22510199999997", + "point": "8.20087999999998,52.22510199999997", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Rottkamp Nord", + "title": "A30 | Hengelo", + "coordinate": { + "long": "8.20087999999998", + "lat": "52.22510199999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.20087999999998,52.22510199999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-371502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.200279999999978,52.224360999999966,8.200279999999978,52.224360999999966", + "point": "8.200279999999978,52.224360999999966", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Rottkamp S\u00fcd", + "title": "A30 | Bad Oeynhausen", + "coordinate": { + "long": "8.200279999999978", + "lat": "52.224360999999966" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.200279999999978,52.224360999999966" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-381601", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.384309999999992,52.196200999999995,8.384309999999992,52.196200999999995", + "point": "8.384309999999992,52.196200999999995", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Gr\u00f6negau S", + "title": "A30 | Bad Oeynhausen", + "coordinate": { + "long": "8.384309999999992", + "lat": "52.196200999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 54", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.384309999999992,52.196200999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-381602", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.388179999999997,52.19713999999998,8.388179999999997,52.19713999999998", + "point": "8.388179999999997,52.19713999999998", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Gr\u00f6negau N", + "title": "A30 | Hengelo", + "coordinate": { + "long": "8.388179999999997", + "lat": "52.19713999999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 53" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.388179999999997,52.19713999999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A31": { + "parking_lorry": [ + { + "identifier": "DE-NW-000130", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.919413999997496,51.68338099999217,6.919413999997496,51.68338099999217", + "point": "6.919413999997496,51.68338099999217", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "L\u00fcningskamp", + "title": "A31 | Bottrop", + "coordinate": { + "long": "6.919413999997496", + "lat": "51.68338099999217" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.919413999997496,51.68338099999217" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000131", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.921107999997508,51.6835119999922,6.921107999997508,51.6835119999922", + "point": "6.921107999997508,51.6835119999922", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Holsterhausen", + "title": "A31 | Emden", + "coordinate": { + "long": "6.921107999997508", + "lat": "51.6835119999922" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.921107999997508,51.6835119999922" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000132", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.967199999997784,51.78330699999319,6.967199999997784,51.78330699999319", + "point": "6.967199999997784,51.78330699999319", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Im Elwen", + "title": "A31 | Bottrop", + "coordinate": { + "long": "6.967199999997784", + "lat": "51.78330699999319" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.967199999997784,51.78330699999319" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000133", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.969105999997794,51.78330199999322,6.969105999997794,51.78330199999322", + "point": "6.969105999997794,51.78330199999322", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Kalter Bach", + "title": "A31 | Emden", + "coordinate": { + "long": "6.969105999997794", + "lat": "51.78330199999322" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.969105999997794,51.78330199999322" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000134", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.021254999998075,51.890989999994204,7.021254999998075,51.890989999994204", + "point": "7.021254999998075,51.890989999994204", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Hochmoor (TR Hochmoor Ost)", + "title": "A31 | Emden", + "coordinate": { + "long": "7.021254999998075", + "lat": "51.890989999994204" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 58" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.021254999998075,51.890989999994204" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000135", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.023208999998085,51.89852299999421,7.023208999998085,51.89852299999421", + "point": "7.023208999998085,51.89852299999421", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Brooksbach (TR Hochmoor West)", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.023208999998085", + "lat": "51.89852299999421" + }, + "description": [ + "PKW Stellpl\u00e4tze: 67", + "LKW Stellpl\u00e4tze: 88" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.023208999998085,51.89852299999421" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000136", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.051404999998235,52.0027129999947,7.051404999998235,52.0027129999947", + "point": "7.051404999998235,52.0027129999947", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Holtwicker Mark", + "title": "A31 | Emden", + "coordinate": { + "long": "7.051404999998235", + "lat": "52.0027129999947" + }, + "description": [ + "PKW Stellpl\u00e4tze: 2", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.051404999998235,52.0027129999947" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000137", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.0511139999982335,52.00565099999471,7.0511139999982335,52.00565099999471", + "point": "7.0511139999982335,52.00565099999471", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "B\u00fcrener Esch", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.0511139999982335", + "lat": "52.00565099999471" + }, + "description": [ + "PKW Stellpl\u00e4tze: 2", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.0511139999982335,52.00565099999471" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000138", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.084977999998395,52.09921699999523,7.084977999998395,52.09921699999523", + "point": "7.084977999998395,52.09921699999523", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Ahler Mark", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.084977999998395", + "lat": "52.09921699999523" + }, + "description": [ + "PKW Stellpl\u00e4tze: 2", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.084977999998395,52.09921699999523" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000139", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.086419999998401,52.10374499999525,7.086419999998401,52.10374499999525", + "point": "7.086419999998401,52.10374499999525", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Averbeck", + "title": "A31 | Emden", + "coordinate": { + "long": "7.086419999998401", + "lat": "52.10374499999525" + }, + "description": [ + "PKW Stellpl\u00e4tze: 2", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.086419999998401,52.10374499999525" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000140", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.138459999998619,52.22482599999597,7.138459999998619,52.22482599999597", + "point": "7.138459999998619,52.22482599999597", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Wester Mark", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.138459999998619", + "lat": "52.22482599999597" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.138459999998619,52.22482599999597" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000141", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.1396469999986225,52.224353999995984,7.1396469999986225,52.224353999995984", + "point": "7.1396469999986225,52.224353999995984", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Lau Brechte", + "title": "A31 | Emden", + "coordinate": { + "long": "7.1396469999986225", + "lat": "52.224353999995984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.1396469999986225,52.224353999995984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-370902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.198049999998826,52.28100999999669,7.198049999998826,52.28100999999669", + "point": "7.198049999998826,52.28100999999669", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Gut Friedrichstal(Suddendorf W)", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.198049999998826", + "lat": "52.28100999999669" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.198049999998826,52.28100999999669" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-370901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.219829999998894,52.285838999996905,7.219829999998894,52.285838999996905", + "point": "7.219829999998894,52.285838999996905", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Forsthaus O (Suddendorf O)", + "title": "A31 | Emden", + "coordinate": { + "long": "7.219829999998894", + "lat": "52.285838999996905" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.219829999998894,52.285838999996905" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-360902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.245639999998984,52.39318099999717,7.245639999998984,52.39318099999717", + "point": "7.245639999998984,52.39318099999717", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Bergeler Feld West", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.245639999998984", + "lat": "52.39318099999717" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.245639999998984,52.39318099999717" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-360901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.246479999998986,52.39049199999718,7.246479999998986,52.39049199999718", + "point": "7.246479999998986,52.39049199999718", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Bergeler Feld Ost", + "title": "A31 | Emden", + "coordinate": { + "long": "7.246479999998986", + "lat": "52.39049199999718" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.246479999998986,52.39049199999718" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-340901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.1990699999988665,52.527289999996675,7.1990699999988665,52.527289999996675", + "point": "7.1990699999988665,52.527289999996675", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Ems-Vechte O", + "title": "A31 | Emden", + "coordinate": { + "long": "7.1990699999988665", + "lat": "52.527289999996675" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.1990699999988665,52.527289999996675" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-340902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.197209999998861,52.52897999999667,7.197209999998861,52.52897999999667", + "point": "7.197209999998861,52.52897999999667", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Ems-Vechte W", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.197209999998861", + "lat": "52.52897999999667" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.197209999998861,52.52897999999667" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-330901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.190419999998855,52.6352499999966,7.190419999998855,52.6352499999966", + "point": "7.190419999998855,52.6352499999966", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Heseper Moor W", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.190419999998855", + "lat": "52.6352499999966" + }, + "description": [ + "PKW Stellpl\u00e4tze: 67", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.190419999998855,52.6352499999966" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-330902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.191569999998857,52.63528099999661,7.191569999998857,52.63528099999661", + "point": "7.191569999998857,52.63528099999661", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Heseper Moor O", + "title": "A31 | Emden", + "coordinate": { + "long": "7.191569999998857", + "lat": "52.63528099999661" + }, + "description": [ + "PKW Stellpl\u00e4tze: 70", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.191569999998857,52.63528099999661" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-320901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.169019999998812,52.788058999996345,7.169019999998812,52.788058999996345", + "point": "7.169019999998812,52.788058999996345", + "startLcPosition": "40", + "display_type": "PARKING", + "subtitle": "Dankern O", + "title": "A31 | Emden", + "coordinate": { + "long": "7.169019999998812", + "lat": "52.788058999996345" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.169019999998812,52.788058999996345" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-320902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.173479999998828,52.796760999996415,7.173479999998828,52.796760999996415", + "point": "7.173479999998828,52.796760999996415", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Hebel W", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.173479999998828", + "lat": "52.796760999996415" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.173479999998828,52.796760999996415" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-300901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.254529999999071,52.92287799999725,7.254529999999071,52.92287799999725", + "point": "7.254529999999071,52.92287799999725", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Walchum O", + "title": "A31 | Emden", + "coordinate": { + "long": "7.254529999999071", + "lat": "52.92287799999725" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.254529999999071,52.92287799999725" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-300902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.25260999999907,52.940650999997246,7.25260999999907,52.940650999997246", + "point": "7.25260999999907,52.940650999997246", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Walchum W", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.25260999999907", + "lat": "52.940650999997246" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.25260999999907,52.940650999997246" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-290902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.239502999999052,53.08688899999713,7.239502999999052,53.08688899999713", + "point": "7.239502999999052,53.08688899999713", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Olle Rheen W", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.239502999999052", + "lat": "53.08688899999713" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.239502999999052,53.08688899999713" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-290901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.241795999999059,53.085981999997145,7.241795999999059,53.085981999997145", + "point": "7.241795999999059,53.085981999997145", + "startLcPosition": "49", + "display_type": "PARKING", + "subtitle": "Olle Rheen O", + "title": "A31 | Emden", + "coordinate": { + "long": "7.241795999999059", + "lat": "53.085981999997145" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.241795999999059,53.085981999997145" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-271001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.37109299999936,53.2226369999982,7.37109299999936,53.2226369999982", + "point": "7.37109299999936,53.2226369999982", + "startLcPosition": "52", + "display_type": "PARKING", + "subtitle": "Rheiderland W", + "title": "A31 | Bottrop", + "coordinate": { + "long": "7.37109299999936", + "lat": "53.2226369999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.37109299999936,53.2226369999982" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-271002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.37145999999936,53.2216789999982,7.37145999999936,53.2216789999982", + "point": "7.37145999999936,53.2216789999982", + "startLcPosition": "53", + "display_type": "PARKING", + "subtitle": "Rheiderland O", + "title": "A31 | Emden", + "coordinate": { + "long": "7.37145999999936", + "lat": "53.2216789999982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.37145999999936,53.2216789999982" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A33": { + "parking_lorry": [ + { + "identifier": "DE-NW-000142", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.724744,51.627123000000005,8.724744,51.627123000000005", + "point": "8.724744,51.627123000000005", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Letzter Heller West", + "title": "A33 | Kreuz W\u00fcnnenberg-Haaren (A 44)", + "coordinate": { + "long": "8.724744", + "lat": "51.627123000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.724744,51.627123000000005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000143", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.72475,51.62950000000001,8.72475,51.62950000000001", + "point": "8.72475,51.62950000000001", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Letzter Heller Ost", + "title": "A33 | Osnabr\u00fcck", + "coordinate": { + "long": "8.72475", + "lat": "51.62950000000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.72475,51.62950000000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000145", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.692827,51.758078,8.692827,51.758078", + "point": "8.692827,51.758078", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Lippesee", + "title": "A33 | Kreuz W\u00fcnnenberg-Haaren (A 44)", + "coordinate": { + "long": "8.692827", + "lat": "51.758078" + }, + "description": [ + "PKW Stellpl\u00e4tze: 2", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.692827,51.758078" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000146", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.693909,51.758103000000006,8.693909,51.758103000000006", + "point": "8.693909,51.758103000000006", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Lippesee", + "title": "A33 | Osnabr\u00fcck", + "coordinate": { + "long": "8.693909", + "lat": "51.758103000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 2", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.693909,51.758103000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000147", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.683584,51.838422000000016,8.683584,51.838422000000016", + "point": "8.683584,51.838422000000016", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "H\u00f6velsenne (West)", + "title": "A33 | Kreuz W\u00fcnnenberg-Haaren (A 44)", + "coordinate": { + "long": "8.683584", + "lat": "51.838422000000016" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 58" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.683584,51.838422000000016" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000148", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.685614,51.838352,8.685614,51.838352", + "point": "8.685614,51.838352", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "H\u00f6velsenne (Ost)", + "title": "A33 | Osnabr\u00fcck", + "coordinate": { + "long": "8.685614", + "lat": "51.838352" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.685614,51.838352" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-381401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.154816999999973,52.17054799999996,8.154816999999973,52.17054799999996", + "point": "8.154816999999973,52.17054799999996", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Teutoburger Wald West", + "title": "A33 | Kreuz W\u00fcnnenberg-Haaren (A 44)", + "coordinate": { + "long": "8.154816999999973", + "lat": "52.17054799999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.154816999999973,52.17054799999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-381402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.156329999999974,52.17109999999998,8.156329999999974,52.17109999999998", + "point": "8.156329999999974,52.17109999999998", + "startLcPosition": "25", + "display_type": "PARKING", + "subtitle": "Teutoburger Wald Ost", + "title": "A33 | Osnabr\u00fcck", + "coordinate": { + "long": "8.156329999999974", + "lat": "52.17109999999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.156329999999974,52.17109999999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A36": { + "parking_lorry": [ + { + "identifier": "DE-NI-392902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.508176000000505,52.04812899999885,10.508176000000505,52.04812899999885", + "point": "10.508176000000505,52.04812899999885", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Werla W", + "title": "A36 | Bad Harzburg", + "coordinate": { + "long": "10.508176000000505", + "lat": "52.04812899999885" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.508176000000505,52.04812899999885" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-392901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.514837000000517,52.03872499999883,10.514837000000517,52.03872499999883", + "point": "10.514837000000517,52.03872499999883", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Ziegenberg O", + "title": "A36 | Kreuz Braunschweig-S\u00fcd (A 39)", + "coordinate": { + "long": "10.514837000000517", + "lat": "52.03872499999883" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.514837000000517,52.03872499999883" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-001249", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.662261000000829,51.918796999997944,10.662261000000829,51.918796999997944", + "point": "10.662261000000829,51.918796999997944", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Brockenblick Ost", + "title": "A36 | Braunschweig", + "coordinate": { + "long": "10.662261000000829", + "lat": "51.918796999997944" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.662261000000829,51.918796999997944" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-001251", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.659553000000821,51.919666999997965,10.659553000000821,51.919666999997965", + "point": "10.659553000000821,51.919666999997965", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "BAB 36 PWC Brockenblick (West) RFB Halle (BAB14)", + "title": "A36 | Bernburg", + "coordinate": { + "long": "10.659553000000821", + "lat": "51.919666999997965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.659553000000821,51.919666999997965" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-001257", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.88514100000154,51.84035099999564,10.88514100000154,51.84035099999564", + "point": "10.88514100000154,51.84035099999564", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Regensteinblick (Nord)", + "title": "A36 | Braunschweig", + "coordinate": { + "long": "10.88514100000154", + "lat": "51.84035099999564" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.88514100000154,51.84035099999564" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-001259", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.885270000001539,51.83924899999567,10.885270000001539,51.83924899999567", + "point": "10.885270000001539,51.83924899999567", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Regensteinblick S\u00fcd", + "title": "A36 | Bernburg", + "coordinate": { + "long": "10.885270000001539", + "lat": "51.83924899999567" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.885270000001539,51.83924899999567" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-001255", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.487551000005421,51.77972099997716,11.487551000005421,51.77972099997716", + "point": "11.487551000005421,51.77972099997716", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Hasenwinkel (S\u00fcd)", + "title": "A36 | Bernburg", + "coordinate": { + "long": "11.487551000005421", + "lat": "51.77972099997716" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.487551000005421,51.77972099997716" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-ST-001253", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.48759500000542,51.780661999977156,11.48759500000542,51.780661999977156", + "point": "11.48759500000542,51.780661999977156", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Hasenwinkel (Nord)", + "title": "A36 | Braunschweig", + "coordinate": { + "long": "11.48759500000542", + "lat": "51.780661999977156" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.48759500000542,51.780661999977156" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A37": { + "parking_lorry": [] + }, + "A38": { + "parking_lorry": [ + { + "identifier": "DE-TH-038012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.175304000000157,51.40996699999974,10.175304000000157,51.40996699999974", + "point": "10.175304000000157,51.40996699999974", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "PWC Leinetal Nord", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "10.175304000000157", + "lat": "51.40996699999974" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.175304000000157,51.40996699999974" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-038011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.18075200000016,51.408287999999736,10.18075200000016,51.408287999999736", + "point": "10.18075200000016,51.408287999999736", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "PWC Leinetal S\u00fcd", + "title": "A38 | Leipzig", + "coordinate": { + "long": "10.18075200000016", + "lat": "51.408287999999736" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.18075200000016,51.408287999999736" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-038022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.415808000000395,51.40427699999921,10.415808000000395,51.40427699999921", + "point": "10.415808000000395,51.40427699999921", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "TR Eichsfeld Nord", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "10.415808000000395", + "lat": "51.40427699999921" + }, + "description": [ + "PKW Stellpl\u00e4tze: 97", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.415808000000395,51.40427699999921" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-038021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.415664000000394,51.40277799999921,10.415664000000394,51.40277799999921", + "point": "10.415664000000394,51.40277799999921", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "TR Eichsfeld S\u00fcd", + "title": "A38 | Leipzig", + "coordinate": { + "long": "10.415664000000394", + "lat": "51.40277799999921" + }, + "description": [ + "PKW Stellpl\u00e4tze: 57", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.415664000000394,51.40277799999921" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-038032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.623396000000778,51.434726999998226,10.623396000000778,51.434726999998226", + "point": "10.623396000000778,51.434726999998226", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "PWC Galgenberg Nord", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "10.623396000000778", + "lat": "51.434726999998226" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.623396000000778,51.434726999998226" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-038031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.622489000000776,51.43389399999823,10.622489000000776,51.43389399999823", + "point": "10.622489000000776,51.43389399999823", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "PWC Galgenberg S\u00fcd", + "title": "A38 | Leipzig", + "coordinate": { + "long": "10.622489000000776", + "lat": "51.43389399999823" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.622489000000776,51.43389399999823" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-038042", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.779848000001216,51.47257799999693,10.779848000001216,51.47257799999693", + "point": "10.779848000001216,51.47257799999693", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "PWC Kesselberg Nord", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "10.779848000001216", + "lat": "51.47257799999693" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 52" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.779848000001216,51.47257799999693" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-038041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.778745000001216,51.47183899999693,10.778745000001216,51.47183899999693", + "point": "10.778745000001216,51.47183899999693", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "PWC Kesselberg S\u00fcd", + "title": "A38 | Leipzig", + "coordinate": { + "long": "10.778745000001216", + "lat": "51.47183899999693" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.778745000001216,51.47183899999693" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.044758000002371,51.468154999992954,11.044758000002371,51.468154999992954", + "point": "11.044758000002371,51.468154999992954", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Goldene Aue Nord", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "11.044758000002371", + "lat": "51.468154999992954" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.044758000002371,51.468154999992954" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.045413000002375,51.46729099999295,11.045413000002375,51.46729099999295", + "point": "11.045413000002375,51.46729099999295", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Goldene Aue Sued", + "title": "A38 | Leipzig", + "coordinate": { + "long": "11.045413000002375", + "lat": "51.46729099999295" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.045413000002375,51.46729099999295" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.228343000003541,51.452745999988196,11.228343000003541,51.452745999988196", + "point": "11.228343000003541,51.452745999988196", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Helmetal Nord", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "11.228343000003541", + "lat": "51.452745999988196" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.228343000003541,51.452745999988196" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.227910000003536,51.4516779999882,11.227910000003536,51.4516779999882", + "point": "11.227910000003536,51.4516779999882", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Helmetal Sued", + "title": "A38 | Leipzig", + "coordinate": { + "long": "11.227910000003536", + "lat": "51.4516779999882" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.227910000003536,51.4516779999882" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.424929000005148,51.43498599998042,11.424929000005148,51.43498599998042", + "point": "11.424929000005148,51.43498599998042", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Rohnetal Nord", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "11.424929000005148", + "lat": "51.43498599998042" + }, + "description": [ + "PKW Stellpl\u00e4tze: 87", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.424929000005148,51.43498599998042" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.42485500000515,51.43317099998042,11.42485500000515,51.43317099998042", + "point": "11.42485500000515,51.43317099998042", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Rohnetal Sued", + "title": "A38 | Leipzig", + "coordinate": { + "long": "11.42485500000515", + "lat": "51.43317099998042" + }, + "description": [ + "PKW Stellpl\u00e4tze: 61", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.42485500000515,51.43317099998042" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.719639000008135,51.40146699996106,11.719639000008135,51.40146699996106", + "point": "11.719639000008135,51.40146699996106", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Querfurter Platte (N)", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "11.719639000008135", + "lat": "51.40146699996106" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.719639000008135,51.40146699996106" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.726358000008208,51.39946599996049,11.726358000008208,51.39946599996049", + "point": "11.726358000008208,51.39946599996049", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Querfurter Platte (S)", + "title": "A38 | Leipzig", + "coordinate": { + "long": "11.726358000008208", + "lat": "51.39946599996049" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.726358000008208,51.39946599996049" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.922275000010325,51.34753699994013,11.922275000010325,51.34753699994013", + "point": "11.922275000010325,51.34753699994013", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Geiseltal Nord", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "11.922275000010325", + "lat": "51.34753699994013" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.922275000010325,51.34753699994013" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038051", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.921416000010318,51.34666399994022,11.921416000010318,51.34666399994022", + "point": "11.921416000010318,51.34666399994022", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Geiseltal Sued", + "title": "A38 | Leipzig", + "coordinate": { + "long": "11.921416000010318", + "lat": "51.34666399994022" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.921416000010318,51.34666399994022" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.000267000011277,51.25716599992992,12.000267000011277,51.25716599992992", + "point": "12.000267000011277,51.25716599992992", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Saaletal Nord", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "12.000267000011277", + "lat": "51.25716599992992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.000267000011277,51.25716599992992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-038061", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.999653000011271,51.25625899993,11.999653000011271,51.25625899993", + "point": "11.999653000011271,51.25625899993", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Saaletal Sued", + "title": "A38 | Leipzig", + "coordinate": { + "long": "11.999653000011271", + "lat": "51.25625899993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.999653000011271,51.25625899993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.217410000012544,51.24336999989349,12.217410000012544,51.24336999989349", + "point": "12.217410000012544,51.24336999989349", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "Fuchsaue West", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "12.217410000012544", + "lat": "51.24336999989349" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.217410000012544,51.24336999989349" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000033", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.21863000001255,51.24262999989325,12.21863000001255,51.24262999989325", + "point": "12.21863000001255,51.24262999989325", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "Fuchsaue Ost", + "title": "A38 | Leipzig", + "coordinate": { + "long": "12.21863000001255", + "lat": "51.24262999989325" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.21863000001255,51.24262999989325" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000043", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.491198000009959,51.27715699982628,12.491198000009959,51.27715699982628", + "point": "12.491198000009959,51.27715699982628", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Am P\u00f6sgraben West", + "title": "A38 | G\u00f6ttingen", + "coordinate": { + "long": "12.491198000009959", + "lat": "51.27715699982628" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.491198000009959,51.27715699982628" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000044", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.492337000009945,51.27589999982594,12.492337000009945,51.27589999982594", + "point": "12.492337000009945,51.27589999982594", + "startLcPosition": "49", + "display_type": "PARKING", + "subtitle": "Am P\u00f6sgraben Ost", + "title": "A38 | Leipzig", + "coordinate": { + "long": "12.492337000009945", + "lat": "51.27589999982594" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.492337000009945,51.27589999982594" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A39": { + "parking_lorry": [ + { + "identifier": "DE-NI-005298", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.39810700000034,52.191016999999285,10.39810700000034,52.191016999999285", + "point": "10.39810700000034,52.191016999999285", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Salzgitterh\u00fcttenblick Nord", + "title": "A39 | Salzgitter", + "coordinate": { + "long": "10.39810700000034", + "lat": "52.191016999999285" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 47" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.39810700000034,52.191016999999285" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-005299", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.39754700000034,52.18921399999927,10.39754700000034,52.18921399999927", + "point": "10.39754700000034,52.18921399999927", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Salzgitterh\u00fcttenblick S\u00fcd", + "title": "A39 | Hamburg", + "coordinate": { + "long": "10.39754700000034", + "lat": "52.18921399999927" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 47" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.39754700000034,52.18921399999927" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-372901", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.629008000000722,52.25153399999818,10.629008000000722,52.25153399999818", + "point": "10.629008000000722,52.25153399999818", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Herzogsberge Nord", + "title": "A39 | Salzgitter", + "coordinate": { + "long": "10.629008000000722", + "lat": "52.25153399999818" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.629008000000722,52.25153399999818" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-372902", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.631731000000727,52.25019199999817,10.631731000000727,52.25019199999817", + "point": "10.631731000000727,52.25019199999817", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Herzogsberge S\u00fcd", + "title": "A39 | Hamburg", + "coordinate": { + "long": "10.631731000000727", + "lat": "52.25019199999817" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.631731000000727,52.25019199999817" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262704", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.268829000000185,53.330830999999584,10.268829000000185,53.330830999999584", + "point": "10.268829000000185,53.330830999999584", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Busschewald S", + "title": "A39 | Salzgitter", + "coordinate": { + "long": "10.268829000000185", + "lat": "53.330830999999584" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.268829000000185,53.330830999999584" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-262703", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.268947000000185,53.331976999999604,10.268947000000185,53.331976999999604", + "point": "10.268947000000185,53.331976999999604", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Roddau N", + "title": "A39 | Salzgitter", + "coordinate": { + "long": "10.268947000000185", + "lat": "53.331976999999604" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.268947000000185,53.331976999999604" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.170258000000123,53.34491099999975,10.170258000000123,53.34491099999975", + "point": "10.170258000000123,53.34491099999975", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Luhewiesen (Scharmbeck) S", + "title": "A39 | Salzgitter", + "coordinate": { + "long": "10.170258000000123", + "lat": "53.34491099999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.170258000000123,53.34491099999975" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NI-262702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.170879000000122,53.34585799999976,10.170879000000122,53.34585799999976", + "point": "10.170879000000122,53.34585799999976", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Grevelau (Scharmbeck) N", + "title": "A39 | Hamburg", + "coordinate": { + "long": "10.170879000000122", + "lat": "53.34585799999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.170879000000122,53.34585799999976" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A40": { + "parking_lorry": [ + { + "identifier": "DE-NW-000176", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.316569999992231,51.38865099996408,6.316569999992231,51.38865099996408", + "point": "6.316569999992231,51.38865099996408", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Tomm Heide (S\u00fcd)", + "title": "A40 | Kreuz Dortmund-West (A45)", + "coordinate": { + "long": "6.316569999992231", + "lat": "51.38865099996408" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.316569999992231,51.38865099996408" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000177", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.320274999992272,51.389251999964365,6.320274999992272,51.389251999964365", + "point": "6.320274999992272,51.389251999964365", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Tomm Heide (Nord)", + "title": "A40 | Venlo", + "coordinate": { + "long": "6.320274999992272", + "lat": "51.389251999964365" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.320274999992272,51.389251999964365" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000181", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.498829999994132,51.42384399997643,6.498829999994132,51.42384399997643", + "point": "6.498829999994132,51.42384399997643", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Neufelder Heide (Nord)", + "title": "A40 | Venlo", + "coordinate": { + "long": "6.498829999994132", + "lat": "51.42384399997643" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 44" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.498829999994132,51.42384399997643" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000180", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.50090599999415,51.423397999976544,6.50090599999415,51.423397999976544", + "point": "6.50090599999415,51.423397999976544", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Neufelder Heide (S\u00fcd)", + "title": "A40 | Kreuz Dortmund-West (A45)", + "coordinate": { + "long": "6.50090599999415", + "lat": "51.423397999976544" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.50090599999415,51.423397999976544" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000174", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.152487999998541,51.47602199999616,7.152487999998541,51.47602199999616", + "point": "7.152487999998541,51.47602199999616", + "startLcPosition": "38", + "display_type": "PARKING", + "subtitle": "Ruhrschnellweg Nord", + "title": "A40 | Venlo", + "coordinate": { + "long": "7.152487999998541", + "lat": "51.47602199999616" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.152487999998541,51.47602199999616" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000179", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.3403129999991386,51.49399799999797,7.3403129999991386,51.49399799999797", + "point": "7.3403129999991386,51.49399799999797", + "startLcPosition": "52", + "display_type": "PARKING", + "subtitle": "TR Beverbach", + "title": "A40 | Kreuz Dortmund-West (A45)", + "coordinate": { + "long": "7.3403129999991386", + "lat": "51.49399799999797" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.3403129999991386,51.49399799999797" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "almofont almo-charging_station", + "description": "Elektr. Ladestation", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + } + ] + }, + "A42": { + "parking_lorry": [ + { + "identifier": "DE-NW-000183", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.2739419999989625,51.55911499999743,7.2739419999989625,51.55911499999743", + "point": "7.2739419999989625,51.55911499999743", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Lusebrink (Nord)", + "title": "A42 | Kamp Lintfort", + "coordinate": { + "long": "7.2739419999989625", + "lat": "51.55911499999743" + }, + "description": [ + "PKW Stellpl\u00e4tze: 53", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.2739419999989625,51.55911499999743" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000184", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.275105999998966,51.55820199999745,7.275105999998966,51.55820199999745", + "point": "7.275105999998966,51.55820199999745", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Holthauser Bruch (S\u00fcd)", + "title": "A42 | Dortmund", + "coordinate": { + "long": "7.275105999998966", + "lat": "51.55820199999745" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.275105999998966,51.55820199999745" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A43": { + "parking_lorry": [ + { + "identifier": "DE-NW-000185", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.270593999998927,51.34043899999742,7.270593999998927,51.34043899999742", + "point": "7.270593999998927,51.34043899999742", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Scherenberg", + "title": "A43 | Wuppertal", + "coordinate": { + "long": "7.270593999998927", + "lat": "51.34043899999742" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.270593999998927,51.34043899999742" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000186", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.275540999998942,51.349555999997456,7.275540999998942,51.349555999997456", + "point": "7.275540999998942,51.349555999997456", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Hagelsiepen", + "title": "A43 | M\u00fcnster", + "coordinate": { + "long": "7.275540999998942", + "lat": "51.349555999997456" + }, + "description": [ + "PKW Stellpl\u00e4tze: 2", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.275540999998942,51.349555999997456" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000187", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.267716999998922,51.37330299999738,7.267716999998922,51.37330299999738", + "point": "7.267716999998922,51.37330299999738", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Auf der Heide", + "title": "A43 | Wuppertal", + "coordinate": { + "long": "7.267716999998922", + "lat": "51.37330299999738" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.267716999998922,51.37330299999738" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000189", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.169630999998632,51.63866099999635,7.169630999998632,51.63866099999635", + "point": "7.169630999998632,51.63866099999635", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Speckhorn (West)", + "title": "A43 | Wuppertal", + "coordinate": { + "long": "7.169630999998632", + "lat": "51.63866099999635" + }, + "description": [ + "PKW Stellpl\u00e4tze: 45", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.169630999998632,51.63866099999635" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000188", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.1711329999986395,51.63852099999637,7.1711329999986395,51.63852099999637", + "point": "7.1711329999986395,51.63852099999637", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Speckhorn (Ost)", + "title": "A43 | M\u00fcnster", + "coordinate": { + "long": "7.1711329999986395", + "lat": "51.63852099999637" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.1711329999986395,51.63852099999637" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000191", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.152358999998575,51.68586399999615,7.152358999998575,51.68586399999615", + "point": "7.152358999998575,51.68586399999615", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Brinkfortsheide", + "title": "A43 | Wuppertal", + "coordinate": { + "long": "7.152358999998575", + "lat": "51.68586399999615" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.152358999998575,51.68586399999615" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000190", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.15653399999859,51.68171599999621,7.15653399999859,51.68171599999621", + "point": "7.15653399999859,51.68171599999621", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Brinkfortsheide", + "title": "A43 | M\u00fcnster", + "coordinate": { + "long": "7.15653399999859", + "lat": "51.68171599999621" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.15653399999859,51.68171599999621" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000193", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.175196999998672,51.77162199999642,7.175196999998672,51.77162199999642", + "point": "7.175196999998672,51.77162199999642", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Hohe Mark West", + "title": "A43 | Wuppertal", + "coordinate": { + "long": "7.175196999998672", + "lat": "51.77162199999642" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.175196999998672,51.77162199999642" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000192", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.17680699999868,51.771419999996446,7.17680699999868,51.771419999996446", + "point": "7.17680699999868,51.771419999996446", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Hohe Mark Ost", + "title": "A43 | M\u00fcnster", + "coordinate": { + "long": "7.17680699999868", + "lat": "51.771419999996446" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.17680699999868,51.771419999996446" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000194", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.323764999999133,51.86911299999784,7.323764999999133,51.86911299999784", + "point": "7.323764999999133,51.86911299999784", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "R\u00f6dder (Ost)", + "title": "A43 | M\u00fcnster", + "coordinate": { + "long": "7.323764999999133", + "lat": "51.86911299999784" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.323764999999133,51.86911299999784" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000195", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.348678999999195,51.881099999998035,7.348678999999195,51.881099999998035", + "point": "7.348678999999195,51.881099999998035", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Karthaus (West)", + "title": "A43 | Wuppertal", + "coordinate": { + "long": "7.348678999999195", + "lat": "51.881099999998035" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.348678999999195,51.881099999998035" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A44": { + "parking_lorry": [ + { + "identifier": "DE-NW-000197", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.120451999988714,50.71893199994539,6.120451999988714,50.71893199994539", + "point": "6.120451999988714,50.71893199994539", + "display_type": "PARKING", + "subtitle": "Lichtenbusch (Nord)", + "title": "A44 | Aachen", + "coordinate": { + "long": "6.120451999988714", + "lat": "50.71893199994539" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.120451999988714,50.71893199994539" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000199", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.172396999989488,50.767950999951005,6.172396999989488,50.767950999951005", + "point": "6.172396999989488,50.767950999951005", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "K\u00f6nigsberg", + "title": "A44 | Aachen", + "coordinate": { + "long": "6.172396999989488", + "lat": "50.767950999951005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.172396999989488,50.767950999951005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000200", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.173050999989497,50.76760599995107,6.173050999989497,50.76760599995107", + "point": "6.173050999989497,50.76760599995107", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "K\u00f6nigsberg", + "title": "A44 | Aachen", + "coordinate": { + "long": "6.173050999989497", + "lat": "50.76760599995107" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.173050999989497,50.76760599995107" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.174624999989552,50.78495099995123,6.174624999989552,50.78495099995123", + "point": "6.174624999989552,50.78495099995123", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Am Tunnel", + "title": "A44 | Aachen", + "coordinate": { + "long": "6.174624999989552", + "lat": "50.78495099995123" + }, + "description": [ + "PKW Stellpl\u00e4tze: 8", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.174624999989552,50.78495099995123" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000202", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.176589999989574,50.78317199995145,6.176589999989574,50.78317199995145", + "point": "6.176589999989574,50.78317199995145", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Am Tunnel", + "title": "A44 | Aachen", + "coordinate": { + "long": "6.176589999989574", + "lat": "50.78317199995145" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.176589999989574,50.78317199995145" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000203", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.3381089999918325,50.93011199996584,6.3381089999918325,50.93011199996584", + "point": "6.3381089999918325,50.93011199996584", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Ruraue West", + "title": "A44 | Aachen", + "coordinate": { + "long": "6.3381089999918325", + "lat": "50.93011199996584" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 51" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.3381089999918325,50.93011199996584" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000204", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.339802999991856,50.93113099996597,6.339802999991856,50.93113099996597", + "point": "6.339802999991856,50.93113099996597", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Ruraue Ost", + "title": "A44 | Eisenach", + "coordinate": { + "long": "6.339802999991856", + "lat": "50.93113099996597" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 53" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.339802999991856,50.93113099996597" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000205", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.427032999992969,51.017706999972134,6.427032999992969,51.017706999972134", + "point": "6.427032999992969,51.017706999972134", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "In der B\u00f6ck", + "title": "A44 | Aachen", + "coordinate": { + "long": "6.427032999992969", + "lat": "51.017706999972134" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.427032999992969,51.017706999972134" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000206", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.428391999992982,51.0171479999722,6.428391999992982,51.0171479999722", + "point": "6.428391999992982,51.0171479999722", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Im K\u00f6nigstal", + "title": "A44 | Eisenach", + "coordinate": { + "long": "6.428391999992982", + "lat": "51.0171479999722" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.428391999992982,51.0171479999722" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000213", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.582987999994808,51.286201999980804,6.582987999994808,51.286201999980804", + "point": "6.582987999994808,51.286201999980804", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Hoxh\u00f6fe (Nord)", + "title": "A44 | Aachen", + "coordinate": { + "long": "6.582987999994808", + "lat": "51.286201999980804" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.582987999994808,51.286201999980804" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000214", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.582738999994806,51.2852029999808,6.582738999994806,51.2852029999808", + "point": "6.582738999994806,51.2852029999808", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Hoxh\u00f6fe (S\u00fcd)", + "title": "A44 | Eisenach", + "coordinate": { + "long": "6.582738999994806", + "lat": "51.2852029999808" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 54" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.582738999994806,51.2852029999808" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000235", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.737033999999782,51.5290909999996,7.737033999999782,51.5290909999996", + "point": "7.737033999999782,51.5290909999996", + "startLcPosition": "56", + "display_type": "PARKING", + "subtitle": "L\u00fcner Grund (Nord)", + "title": "A44 | Aachen", + "coordinate": { + "long": "7.737033999999782", + "lat": "51.5290909999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 8", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.737033999999782,51.5290909999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000234", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.73707099999978,51.5284669999996,7.73707099999978,51.5284669999996", + "point": "7.73707099999978,51.5284669999996", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "M\u00fchlhauser Tal (S\u00fcd)", + "title": "A44 | Eisenach", + "coordinate": { + "long": "7.73707099999978", + "lat": "51.5284669999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.73707099999978,51.5284669999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000233", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.791760999999823,51.52526599999969,7.791760999999823,51.52526599999969", + "point": "7.791760999999823,51.52526599999969", + "startLcPosition": "58", + "display_type": "PARKING", + "subtitle": "Gr\u00fcntal (Nord)", + "title": "A44 | Aachen", + "coordinate": { + "long": "7.791760999999823", + "lat": "51.52526599999969" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.791760999999823,51.52526599999969" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000232", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.792562999999824,51.524682999999705,7.792562999999824,51.524682999999705", + "point": "7.792562999999824,51.524682999999705", + "startLcPosition": "59", + "display_type": "PARKING", + "subtitle": "Buchenhain (S\u00fcd)", + "title": "A44 | Eisenach", + "coordinate": { + "long": "7.792562999999824", + "lat": "51.524682999999705" + }, + "description": [ + "PKW Stellpl\u00e4tze: 9", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.792562999999824,51.524682999999705" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000230", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.862335999999869,51.53333999999978,7.862335999999869,51.53333999999978", + "point": "7.862335999999869,51.53333999999978", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Am Haarstrang Nord", + "title": "A44 | Aachen", + "coordinate": { + "long": "7.862335999999869", + "lat": "51.53333999999978" + }, + "description": [ + "PKW Stellpl\u00e4tze: 45", + "LKW Stellpl\u00e4tze: 105" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.862335999999869,51.53333999999978" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000231", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.862296999999869,51.532471999999785,7.862296999999869,51.532471999999785", + "point": "7.862296999999869,51.532471999999785", + "startLcPosition": "61", + "display_type": "PARKING", + "subtitle": "Am Haarstrang S\u00fcd", + "title": "A44 | Eisenach", + "coordinate": { + "long": "7.862296999999869", + "lat": "51.532471999999785" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.862296999999869,51.532471999999785" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000228", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.018831999999938,51.54174899999991,8.018831999999938,51.54174899999991", + "point": "8.018831999999938,51.54174899999991", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Ost\u00f6nnergrund (Nord)", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.018831999999938", + "lat": "51.54174899999991" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.018831999999938,51.54174899999991" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000226", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.13284999999997,51.54838799999996,8.13284999999997,51.54838799999996", + "point": "8.13284999999997,51.54838799999996", + "startLcPosition": "65", + "display_type": "PARKING", + "subtitle": "Soester B\u00f6rde Nord", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.13284999999997", + "lat": "51.54838799999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.13284999999997,51.54838799999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000229", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.01969699999994,51.5408879999999,8.01969699999994,51.5408879999999", + "point": "8.01969699999994,51.5408879999999", + "startLcPosition": "65", + "display_type": "PARKING", + "subtitle": "R\u00f6llingsergraben (S\u00fcd)", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.01969699999994", + "lat": "51.5408879999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.01969699999994,51.5408879999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000227", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.133712999999968,51.54758999999996,8.133712999999968,51.54758999999996", + "point": "8.133712999999968,51.54758999999996", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Soester B\u00f6rde S\u00fcd", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.133712999999968", + "lat": "51.54758999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.133712999999968,51.54758999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000225", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.203362999999978,51.56901299999998,8.203362999999978,51.56901299999998", + "point": "8.203362999999978,51.56901299999998", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Am Flugplatz", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.203362999999978", + "lat": "51.56901299999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.203362999999978,51.56901299999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000224", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.20413899999998,51.568464999999975,8.20413899999998,51.568464999999975", + "point": "8.20413899999998,51.568464999999975", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "Lohner Klei", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.20413899999998", + "lat": "51.568464999999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.20413899999998,51.568464999999975" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000223", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.278474999999988,51.582429999999995,8.278474999999988,51.582429999999995", + "point": "8.278474999999988,51.582429999999995", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "V\u00f6llinghauserflur", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.278474999999988", + "lat": "51.582429999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.278474999999988,51.582429999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000222", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.279031999999988,51.58191999999998,8.279031999999988,51.58191999999998", + "point": "8.279031999999988,51.58191999999998", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Klieverm\u00fchle", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.279031999999988", + "lat": "51.58191999999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.279031999999988,51.58191999999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000220", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.372823999999994,51.586844000000006,8.372823999999994,51.586844000000006", + "point": "8.372823999999994,51.586844000000006", + "startLcPosition": "73", + "display_type": "PARKING", + "subtitle": "Berge", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.372823999999994", + "lat": "51.586844000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.372823999999994,51.586844000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000221", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.351254999999991,51.58471899999999,8.351254999999991,51.58471899999999", + "point": "8.351254999999991,51.58471899999999", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Berge", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.351254999999991", + "lat": "51.58471899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.351254999999991,51.58471899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000218", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.486605999999998,51.595432,8.486605999999998,51.595432", + "point": "8.486605999999998,51.595432", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Hellweg Nord", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.486605999999998", + "lat": "51.595432" + }, + "description": [ + "PKW Stellpl\u00e4tze: 100", + "LKW Stellpl\u00e4tze: 111" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.486605999999998,51.595432" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007380", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.488193000000003,51.593207,8.488193000000003,51.593207", + "point": "8.488193000000003,51.593207", + "startLcPosition": "75", + "display_type": "PARKING", + "subtitle": "Hellweg S\u00fcd", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.488193000000003", + "lat": "51.593207" + }, + "description": [ + "PKW Stellpl\u00e4tze: 140", + "LKW Stellpl\u00e4tze: 112" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.488193000000003,51.593207" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000216", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.530957999999998,51.59760200000001,8.530957999999998,51.59760200000001", + "point": "8.530957999999998,51.59760200000001", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "Steinhausen", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.530957999999998", + "lat": "51.59760200000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.530957999999998,51.59760200000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000215", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.570426999999999,51.596659,8.570426999999999,51.596659", + "point": "8.570426999999999,51.596659", + "startLcPosition": "78", + "display_type": "PARKING", + "subtitle": "Steinhausen", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.570426999999999", + "lat": "51.596659" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.570426999999999,51.596659" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000212", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.647634,51.588953,8.647634,51.588953", + "point": "8.647634,51.588953", + "startLcPosition": "79", + "display_type": "PARKING", + "subtitle": "Wewelsburg", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.647634", + "lat": "51.588953" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.647634,51.588953" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000211", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.647659,51.58830000000001,8.647659,51.58830000000001", + "point": "8.647659,51.58830000000001", + "startLcPosition": "80", + "display_type": "PARKING", + "subtitle": "Wewelsburg", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.647659", + "lat": "51.58830000000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.647659,51.58830000000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000209", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.800198,51.55456400000001,8.800198,51.55456400000001", + "point": "8.800198,51.55456400000001", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Sintfeld (Nord)", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.800198", + "lat": "51.55456400000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.800198,51.55456400000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000210", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.799536,51.553733,8.799536,51.553733", + "point": "8.799536,51.553733", + "startLcPosition": "82", + "display_type": "PARKING", + "subtitle": "Sintfeld (S\u00fcd)", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.799536", + "lat": "51.553733" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.799536,51.553733" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000207", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.87192,51.53754000000001,8.87192,51.53754000000001", + "point": "8.87192,51.53754000000001", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "Blankenrode", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.87192", + "lat": "51.53754000000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.87192,51.53754000000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007419", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.986194,51.499202000000004,8.986194,51.499202000000004", + "point": "8.986194,51.499202000000004", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "Am Biggenkopf Nord", + "title": "A44 | Aachen", + "coordinate": { + "long": "8.986194", + "lat": "51.499202000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.986194,51.499202000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000208", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.871801,51.536747,8.871801,51.536747", + "point": "8.871801,51.536747", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "Blankenrode S", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.871801", + "lat": "51.536747" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.871801,51.536747" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007417", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.984948,51.49844699999999,8.984948,51.49844699999999", + "point": "8.984948,51.49844699999999", + "startLcPosition": "85", + "display_type": "PARKING", + "subtitle": "Am Biggenkopf S\u00fcd", + "title": "A44 | Eisenach", + "coordinate": { + "long": "8.984948", + "lat": "51.49844699999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.984948,51.49844699999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.032579,51.48466899999999,9.032579,51.48466899999999", + "point": "9.032579,51.48466899999999", + "startLcPosition": "86", + "display_type": "PARKING", + "subtitle": "Am Quast N", + "title": "A44 | Aachen", + "coordinate": { + "long": "9.032579", + "lat": "51.48466899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.032579,51.48466899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.142751,51.443673000000004,9.142751,51.443673000000004", + "point": "9.142751,51.443673000000004", + "startLcPosition": "90", + "display_type": "PARKING", + "subtitle": "Unter den Buchen N", + "title": "A44 | Aachen", + "coordinate": { + "long": "9.142751", + "lat": "51.443673000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.142751,51.443673000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440016", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.124232,51.457798000000004,9.124232,51.457798000000004", + "point": "9.124232,51.457798000000004", + "startLcPosition": "91", + "display_type": "PARKING", + "subtitle": "Hoppenberg", + "title": "A44 | Eisenach", + "coordinate": { + "long": "9.124232", + "lat": "51.457798000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.124232,51.457798000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.161396,51.416155,9.161396,51.416155", + "point": "9.161396,51.416155", + "startLcPosition": "92", + "display_type": "PARKING", + "subtitle": "Schoren N", + "title": "A44 | Aachen", + "coordinate": { + "long": "9.161396", + "lat": "51.416155" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.161396,51.416155" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-003239", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.159946,51.415805,9.159946,51.415805", + "point": "9.159946,51.415805", + "startLcPosition": "93", + "display_type": "PARKING", + "subtitle": "Am roten Ufer S\u00fcd", + "title": "A44 | Eisenach", + "coordinate": { + "long": "9.159946", + "lat": "51.415805" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.159946,51.415805" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.248164,51.38206699999999,9.248164,51.38206699999999", + "point": "9.248164,51.38206699999999", + "startLcPosition": "95", + "display_type": "PARKING", + "subtitle": "B\u00fchleck N", + "title": "A44 | Aachen", + "coordinate": { + "long": "9.248164", + "lat": "51.38206699999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 92", + "LKW Stellpl\u00e4tze: 67" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.248164,51.38206699999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.238517,51.38150400000001,9.238517,51.38150400000001", + "point": "9.238517,51.38150400000001", + "startLcPosition": "95", + "display_type": "PARKING", + "subtitle": "B\u00fchleck S", + "title": "A44 | Eisenach", + "coordinate": { + "long": "9.238517", + "lat": "51.38150400000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 70", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.238517,51.38150400000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.283688,51.342392000000004,9.283688,51.342392000000004", + "point": "9.283688,51.342392000000004", + "startLcPosition": "96", + "display_type": "PARKING", + "subtitle": "Rohrberg N", + "title": "A44 | Aachen", + "coordinate": { + "long": "9.283688", + "lat": "51.342392000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.283688,51.342392000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.278534,51.355469,9.278534,51.355469", + "point": "9.278534,51.355469", + "startLcPosition": "96", + "display_type": "PARKING", + "subtitle": "B\u00e4renberg S", + "title": "A44 | Eisenach", + "coordinate": { + "long": "9.278534", + "lat": "51.355469" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.278534,51.355469" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.29404,51.311583000000006,9.29404,51.311583000000006", + "point": "9.29404,51.311583000000006", + "startLcPosition": "99", + "display_type": "PARKING", + "subtitle": "Hundsberg S", + "title": "A44 | Eisenach", + "coordinate": { + "long": "9.29404", + "lat": "51.311583000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.29404,51.311583000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.295197,51.311854000000004,9.295197,51.311854000000004", + "point": "9.295197,51.311854000000004", + "startLcPosition": "99", + "display_type": "PARKING", + "subtitle": "Roterain N", + "title": "A44 | Aachen", + "coordinate": { + "long": "9.295197", + "lat": "51.311854000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.295197,51.311854000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.369195000000001,51.28499599999999,9.369195000000001,51.28499599999999", + "point": "9.369195000000001,51.28499599999999", + "startLcPosition": "100", + "display_type": "PARKING", + "subtitle": "Hirzstein N", + "title": "A44 | Aachen", + "coordinate": { + "long": "9.369195000000001", + "lat": "51.28499599999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.369195000000001,51.28499599999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.369272000000002,51.28405200000002,9.369272000000002,51.28405200000002", + "point": "9.369272000000002,51.28405200000002", + "startLcPosition": "102", + "display_type": "PARKING", + "subtitle": "Firnsbachtal S", + "title": "A44 | Eisenach", + "coordinate": { + "long": "9.369272000000002", + "lat": "51.28405200000002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.369272000000002,51.28405200000002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.416964000000002,51.272212,9.416964000000002,51.272212", + "point": "9.416964000000002,51.272212", + "startLcPosition": "104", + "display_type": "PARKING", + "subtitle": "Brasselberg N", + "title": "A44 | Aachen", + "coordinate": { + "long": "9.416964000000002", + "lat": "51.272212" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.416964000000002,51.272212" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-440003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.416356,51.271656,9.416356,51.271656", + "point": "9.416356,51.271656", + "startLcPosition": "105", + "display_type": "PARKING", + "subtitle": "Baunsberg S", + "title": "A44 | Eisenach", + "coordinate": { + "long": "9.416356", + "lat": "51.271656" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.416356,51.271656" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A45": { + "parking_lorry": [ + { + "identifier": "DE-NW-000249", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.6367019999996675,51.24425699999937,7.6367019999996675,51.24425699999937", + "point": "7.6367019999996675,51.24425699999937", + "display_type": "PARKING", + "subtitle": "Dickenwalze", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.6367019999996675", + "lat": "51.24425699999937" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.6367019999996675,51.24425699999937" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000250", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.636388999999667,51.245075999999365,7.636388999999667,51.245075999999365", + "point": "7.636388999999667,51.245075999999365", + "display_type": "PARKING", + "subtitle": "Hunscheid (Ost)", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.636388999999667", + "lat": "51.245075999999365" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.636388999999667,51.245075999999365" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000243", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.525147999999513,51.337543999999,7.525147999999513,51.337543999999", + "point": "7.525147999999513,51.337543999999", + "display_type": "PARKING", + "subtitle": "Waterh\u00f6vel", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.525147999999513", + "lat": "51.337543999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.525147999999513,51.337543999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000244", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.53627199999953,51.322508999999044,7.53627199999953,51.322508999999044", + "point": "7.53627199999953,51.322508999999044", + "display_type": "PARKING", + "subtitle": "Brunsbecke", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.53627199999953", + "lat": "51.322508999999044" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.53627199999953,51.322508999999044" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007433", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.600552999999621,51.26873699999927,7.600552999999621,51.26873699999927", + "point": "7.600552999999621,51.26873699999927", + "display_type": "PARKING", + "subtitle": "Sterbecker Siepen", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.600552999999621", + "lat": "51.26873699999927" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.600552999999621,51.26873699999927" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000247", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.6011789999996235,51.27112899999927,7.6011789999996235,51.27112899999927", + "point": "7.6011789999996235,51.27112899999927", + "display_type": "PARKING", + "subtitle": "Rehweg", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.6011789999996235", + "lat": "51.27112899999927" + }, + "description": [ + "PKW Stellpl\u00e4tze: 1", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.6011789999996235,51.27112899999927" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000245", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.5689969999995785,51.288285999999154,7.5689969999995785,51.288285999999154", + "point": "7.5689969999995785,51.288285999999154", + "display_type": "PARKING", + "subtitle": "R\u00f6lveder M\u00fchle", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.5689969999995785", + "lat": "51.288285999999154" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.5689969999995785,51.288285999999154" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000246", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.571946999999581,51.28887499999918,7.571946999999581,51.28887499999918", + "point": "7.571946999999581,51.28887499999918", + "display_type": "PARKING", + "subtitle": "Kaltenborn", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.571946999999581", + "lat": "51.28887499999918" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.571946999999581,51.28887499999918" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450029", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.004105,50.198313,9.004105,50.198313", + "point": "9.004105,50.198313", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Auf der Pfingstweide", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "9.004105", + "lat": "50.198313" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.004105,50.198313" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450027", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.993265,50.248056,8.993265,50.248056", + "point": "8.993265,50.248056", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Langen-Bergheim W", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.993265", + "lat": "50.248056" + }, + "description": [ + "PKW Stellpl\u00e4tze: 90", + "LKW Stellpl\u00e4tze: 76" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.993265,50.248056" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.005704,50.19866900000001,9.005704,50.19866900000001", + "point": "9.005704,50.19866900000001", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Auf der Pfingstweide", + "title": "A45 | Dortmund", + "coordinate": { + "long": "9.005704", + "lat": "50.19866900000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.005704,50.19866900000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450028", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.995375,50.25116200000001,8.995375,50.25116200000001", + "point": "8.995375,50.25116200000001", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Langen-Bergheim O", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.995375", + "lat": "50.25116200000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 74", + "LKW Stellpl\u00e4tze: 81" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.995375,50.25116200000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450026", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.925497,50.342628,8.925497,50.342628", + "point": "8.925497,50.342628", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Hohe Berg", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.925497", + "lat": "50.342628" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.925497,50.342628" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.929494000000002,50.346908000000006,8.929494000000002,50.346908000000006", + "point": "8.929494000000002,50.346908000000006", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Auf der Nachtweide", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.929494000000002", + "lat": "50.346908000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.929494000000002,50.346908000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450023", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.795713,50.44054700000002,8.795713,50.44054700000002", + "point": "8.795713,50.44054700000002", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Stauferburg West", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.795713", + "lat": "50.44054700000002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.795713,50.44054700000002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450024", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.798151,50.440647000000006,8.798151,50.440647000000006", + "point": "8.798151,50.440647000000006", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Stauferburg Ost", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.798151", + "lat": "50.440647000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.798151,50.440647000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.697117,50.482941000000004,8.697117,50.482941000000004", + "point": "8.697117,50.482941000000004", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Pfahlgraben", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.697117", + "lat": "50.482941000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.697117,50.482941000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.678167,50.508243,8.678167,50.508243", + "point": "8.678167,50.508243", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Hardt", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.678167", + "lat": "50.508243" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.678167,50.508243" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.618592,50.52716,8.618592,50.52716", + "point": "8.618592,50.52716", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Pfaffenpfad", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.618592", + "lat": "50.52716" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.618592,50.52716" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450018", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.520618999999998,50.59177199999999,8.520618999999998,50.59177199999999", + "point": "8.520618999999998,50.59177199999999", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Vogelsang", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.520618999999998", + "lat": "50.59177199999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.520618999999998,50.59177199999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450017", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.517787999999998,50.59174800000001,8.517787999999998,50.59174800000001", + "point": "8.517787999999998,50.59174800000001", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Kochsgrund", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.517787999999998", + "lat": "50.59174800000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.517787999999998,50.59174800000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.362964999999994,50.62077599999999,8.362964999999994,50.62077599999999", + "point": "8.362964999999994,50.62077599999999", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Katzenfurt W", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.362964999999994", + "lat": "50.62077599999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.362964999999994,50.62077599999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.32440099999999,50.64437399999999,8.32440099999999,50.64437399999999", + "point": "8.32440099999999,50.64437399999999", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "Am Ebersbach", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.32440099999999", + "lat": "50.64437399999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.32440099999999,50.64437399999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450014", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.34869999999999,50.625595999999994,8.34869999999999,50.625595999999994", + "point": "8.34869999999999,50.625595999999994", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "Volkersbach", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.34869999999999", + "lat": "50.625595999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.34869999999999,50.625595999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.323947999999989,50.64821799999999,8.323947999999989,50.64821799999999", + "point": "8.323947999999989,50.64821799999999", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Hohenrain", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.323947999999989", + "lat": "50.64821799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.323947999999989,50.64821799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.289405999999987,50.66790799999998,8.289405999999987,50.66790799999998", + "point": "8.289405999999987,50.66790799999998", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Am Rehberg", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.289405999999987", + "lat": "50.66790799999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.289405999999987,50.66790799999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.295271999999988,50.68817499999998,8.295271999999988,50.68817499999998", + "point": "8.295271999999988,50.68817499999998", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Dollenberg O", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.295271999999988", + "lat": "50.68817499999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.295271999999988,50.68817499999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.287299999999986,50.708807,8.287299999999986,50.708807", + "point": "8.287299999999986,50.708807", + "startLcPosition": "40", + "display_type": "PARKING", + "subtitle": "Hirschkopf", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.287299999999986", + "lat": "50.708807" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.287299999999986,50.708807" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.288237999999987,50.708196999999984,8.288237999999987,50.708196999999984", + "point": "8.288237999999987,50.708196999999984", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Burgerhain", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.288237999999987", + "lat": "50.708196999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.288237999999987,50.708196999999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.234862999999981,50.74464399999998,8.234862999999981,50.74464399999998", + "point": "8.234862999999981,50.74464399999998", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Schlierberg", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.234862999999981", + "lat": "50.74464399999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.234862999999981,50.74464399999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.179968999999973,50.75603399999998,8.179968999999973,50.75603399999998", + "point": "8.179968999999973,50.75603399999998", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Scheidskopf", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.179968999999973", + "lat": "50.75603399999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.179968999999973,50.75603399999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.23298999999998,50.74625599999998,8.23298999999998,50.74625599999998", + "point": "8.23298999999998,50.74625599999998", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Auf dem Bon", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.23298999999998", + "lat": "50.74625599999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.23298999999998,50.74625599999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-450003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.170654999999972,50.76019199999998,8.170654999999972,50.76019199999998", + "point": "8.170654999999972,50.76019199999998", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Am Borbelholz", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.170654999999972", + "lat": "50.76019199999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.170654999999972,50.76019199999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000279", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.105928999999957,50.78789099999995,8.105928999999957,50.78789099999995", + "point": "8.105928999999957,50.78789099999995", + "startLcPosition": "51", + "display_type": "PARKING", + "subtitle": "Landeskroner Weiher", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.105928999999957", + "lat": "50.78789099999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.105928999999957,50.78789099999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000278", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.096295999999956,50.79879899999994,8.096295999999956,50.79879899999994", + "point": "8.096295999999956,50.79879899999994", + "startLcPosition": "51", + "display_type": "PARKING", + "subtitle": "Am Wildenberg", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.096295999999956", + "lat": "50.79879899999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.096295999999956,50.79879899999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000275", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.056497999999944,50.82667299999993,8.056497999999944,50.82667299999993", + "point": "8.056497999999944,50.82667299999993", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "R\u00e4lsbach", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.056497999999944", + "lat": "50.82667299999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.056497999999944,50.82667299999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000276", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.07725799999995,50.820877999999944,8.07725799999995,50.820877999999944", + "point": "8.07725799999995,50.820877999999944", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Wolfsbach", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.07725799999995", + "lat": "50.820877999999944" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.07725799999995,50.820877999999944" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000274", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.017268999999933,50.835742999999916,8.017268999999933,50.835742999999916", + "point": "8.017268999999933,50.835742999999916", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Eisenhardt", + "title": "A45 | Dortmund", + "coordinate": { + "long": "8.017268999999933", + "lat": "50.835742999999916" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.017268999999933,50.835742999999916" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000273", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.014277999999932,50.83555199999989,8.014277999999932,50.83555199999989", + "point": "8.014277999999932,50.83555199999989", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "In der Hubach", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "8.014277999999932", + "lat": "50.83555199999989" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.014277999999932,50.83555199999989" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000271", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.9352109999999,50.88067599999987,7.9352109999999,50.88067599999987", + "point": "7.9352109999999,50.88067599999987", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Siegerland West", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.9352109999999", + "lat": "50.88067599999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 63", + "LKW Stellpl\u00e4tze: 58" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.9352109999999,50.88067599999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000272", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.946504999999907,50.87736899999986,7.946504999999907,50.87736899999986", + "point": "7.946504999999907,50.87736899999986", + "startLcPosition": "61", + "display_type": "PARKING", + "subtitle": "Siegerland Ost", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.946504999999907", + "lat": "50.87736899999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 62" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.946504999999907,50.87736899999986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000269", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.926863999999898,50.89161999999985,7.926863999999898,50.89161999999985", + "point": "7.926863999999898,50.89161999999985", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Am Lindenberg", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.926863999999898", + "lat": "50.89161999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.926863999999898,50.89161999999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000270", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.927213999999896,50.89222299999985,7.927213999999896,50.89222299999985", + "point": "7.927213999999896,50.89222299999985", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "Krautseifen", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.927213999999896", + "lat": "50.89222299999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.927213999999896,50.89222299999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000268", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.882551999999874,50.933545999999815,7.882551999999874,50.933545999999815", + "point": "7.882551999999874,50.933545999999815", + "startLcPosition": "65", + "display_type": "PARKING", + "subtitle": "L\u00f6ffelberg", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.882551999999874", + "lat": "50.933545999999815" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.882551999999874,50.933545999999815" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000267", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.87653699999987,50.944478999999795,7.87653699999987,50.944478999999795", + "point": "7.87653699999987,50.944478999999795", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Unterm Hipperich", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.87653699999987", + "lat": "50.944478999999795" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.87653699999987,50.944478999999795" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000266", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.86140899999986,50.94975199999979,7.86140899999986,50.94975199999979", + "point": "7.86140899999986,50.94975199999979", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Gro\u00dfmicke", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.86140899999986", + "lat": "50.94975199999979" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.86140899999986,50.94975199999979" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007388", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.846077999999853,50.96316999999976,7.846077999999853,50.96316999999976", + "point": "7.846077999999853,50.96316999999976", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Br\u00fcner H\u00f6he (Ost)", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.846077999999853", + "lat": "50.96316999999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.846077999999853,50.96316999999976" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000264", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.835161999999846,51.002912999999765,7.835161999999846,51.002912999999765", + "point": "7.835161999999846,51.002912999999765", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "Springe", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.835161999999846", + "lat": "51.002912999999765" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.835161999999846,51.002912999999765" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000263", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.833555999999844,51.005726999999744,7.833555999999844,51.005726999999744", + "point": "7.833555999999844,51.005726999999744", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Mark", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.833555999999844", + "lat": "51.005726999999744" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.833555999999844,51.005726999999744" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000261", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.796528999999818,51.04535899999969,7.796528999999818,51.04535899999969", + "point": "7.796528999999818,51.04535899999969", + "startLcPosition": "73", + "display_type": "PARKING", + "subtitle": "Kattenscho\u00df", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.796528999999818", + "lat": "51.04535899999969" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.796528999999818,51.04535899999969" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000262", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.799289999999822,51.043915999999705,7.799289999999822,51.043915999999705", + "point": "7.799289999999822,51.043915999999705", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Weidebruch", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.799289999999822", + "lat": "51.043915999999705" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.799289999999822,51.043915999999705" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000260", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.69682899999973,51.07455599999953,7.69682899999973,51.07455599999953", + "point": "7.69682899999973,51.07455599999953", + "startLcPosition": "76", + "display_type": "PARKING", + "subtitle": "Brachtsiepen (West)", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.69682899999973", + "lat": "51.07455599999953" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.69682899999973,51.07455599999953" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000259", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.69687799999973,51.07849299999952,7.69687799999973,51.07849299999952", + "point": "7.69687799999973,51.07849299999952", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "Neuenschmiede (Ost)", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.69687799999973", + "lat": "51.07849299999952" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.69687799999973,51.07849299999952" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000258", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.665419999999698,51.118908999999455,7.665419999999698,51.118908999999455", + "point": "7.665419999999698,51.118908999999455", + "startLcPosition": "79", + "display_type": "PARKING", + "subtitle": "Duwelsiepen", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.665419999999698", + "lat": "51.118908999999455" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 29" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.665419999999698,51.118908999999455" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000255", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.665450999999701,51.15314299999945,7.665450999999701,51.15314299999945", + "point": "7.665450999999701,51.15314299999945", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Baberg", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.665450999999701", + "lat": "51.15314299999945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.665450999999701,51.15314299999945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000256", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.668796999999702,51.15291899999944,7.668796999999702,51.15291899999944", + "point": "7.668796999999702,51.15291899999944", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Dr\u00f6genp\u00fctt", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.668796999999702", + "lat": "51.15291899999944" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.668796999999702,51.15291899999944" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000257", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.668706999999701,51.122769999999456,7.668706999999701,51.122769999999456", + "point": "7.668706999999701,51.122769999999456", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Rothenstein", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.668706999999701", + "lat": "51.122769999999456" + }, + "description": [ + "PKW Stellpl\u00e4tze: 1", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.668706999999701,51.122769999999456" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000253", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.657668999999693,51.189936999999425,7.657668999999693,51.189936999999425", + "point": "7.657668999999693,51.189936999999425", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "Brenscheid", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.657668999999693", + "lat": "51.189936999999425" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.657668999999693,51.189936999999425" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000254", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.659237999999691,51.18967799999943,7.659237999999691,51.18967799999943", + "point": "7.659237999999691,51.18967799999943", + "startLcPosition": "85", + "display_type": "PARKING", + "subtitle": "Schwiendahl", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.659237999999691", + "lat": "51.18967799999943" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.659237999999691,51.18967799999943" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000251", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.667643999999703,51.22225999999945,7.667643999999703,51.22225999999945", + "point": "7.667643999999703,51.22225999999945", + "startLcPosition": "85", + "display_type": "PARKING", + "subtitle": "Sauerland West", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.667643999999703", + "lat": "51.22225999999945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 88", + "LKW Stellpl\u00e4tze: 68" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.667643999999703,51.22225999999945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007383", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.669722999999706,51.22289099999946,7.669722999999706,51.22289099999946", + "point": "7.669722999999706,51.22289099999946", + "startLcPosition": "87", + "display_type": "PARKING", + "subtitle": "Sauerland Ost", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.669722999999706", + "lat": "51.22289099999946" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 63" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.669722999999706,51.22289099999946" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-000240", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.441424999999366,51.4426229999986,7.441424999999366,51.4426229999986", + "point": "7.441424999999366,51.4426229999986", + "startLcPosition": "104", + "display_type": "PARKING", + "subtitle": "Johannes Erbstollen", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.441424999999366", + "lat": "51.4426229999986" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.441424999999366,51.4426229999986" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000241", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.442019999999366,51.443230999998605,7.442019999999366,51.443230999998605", + "point": "7.442019999999366,51.443230999998605", + "startLcPosition": "104", + "display_type": "PARKING", + "subtitle": "Fl\u00f6z Mausegatt", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.442019999999366", + "lat": "51.443230999998605" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.442019999999366,51.443230999998605" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000238", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.368554999999213,51.53635699999818,7.368554999999213,51.53635699999818", + "point": "7.368554999999213,51.53635699999818", + "startLcPosition": "110", + "display_type": "PARKING", + "subtitle": "Kirchlinde (West)", + "title": "A45 | Aschaffenburg", + "coordinate": { + "long": "7.368554999999213", + "lat": "51.53635699999818" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.368554999999213,51.53635699999818" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000239", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.369943999999217,51.53699199999818,7.369943999999217,51.53699199999818", + "point": "7.369943999999217,51.53699199999818", + "startLcPosition": "111", + "display_type": "PARKING", + "subtitle": "Westerfilde (Ost)", + "title": "A45 | Dortmund", + "coordinate": { + "long": "7.369943999999217", + "lat": "51.53699199999818" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.369943999999217,51.53699199999818" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A46": { + "parking_lorry": [ + { + "identifier": "DE-NW-000284", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.361181999992328,51.09951299996755,6.361181999992328,51.09951299996755", + "point": "6.361181999992328,51.09951299996755", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Herrather-Linde (Nord)", + "title": "A46 | Heinsberg", + "coordinate": { + "long": "6.361181999992328", + "lat": "51.09951299996755" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.361181999992328,51.09951299996755" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000283", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.361958999992335,51.0986999999676,6.361958999992335,51.0986999999676", + "point": "6.361958999992335,51.0986999999676", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Herrather-Linde (S\u00fcd)", + "title": "A46 | Brilon", + "coordinate": { + "long": "6.361958999992335", + "lat": "51.0986999999676" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.361958999992335,51.0986999999676" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000286", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.600974999994852,51.125040999981664,6.600974999994852,51.125040999981664", + "point": "6.600974999994852,51.125040999981664", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Vierwinden S\u00fcd", + "title": "A46 | Brilon", + "coordinate": { + "long": "6.600974999994852", + "lat": "51.125040999981664" + }, + "description": [ + "PKW Stellpl\u00e4tze: 51", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.600974999994852,51.125040999981664" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000285", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.603632999994881,51.129673999981776,6.603632999994881,51.129673999981776", + "point": "6.603632999994881,51.129673999981776", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Vierwinden Nord", + "title": "A46 | Heinsberg", + "coordinate": { + "long": "6.603632999994881", + "lat": "51.129673999981776" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.603632999994881,51.129673999981776" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000291", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.016738999997882,51.20621599999413,7.016738999997882,51.20621599999413", + "point": "7.016738999997882,51.20621599999413", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Stropm\u00fctze", + "title": "A46 | Heinsberg", + "coordinate": { + "long": "7.016738999997882", + "lat": "51.20621599999413" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.016738999997882,51.20621599999413" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000290", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.017973999997887,51.205622999994155,7.017973999997887,51.205622999994155", + "point": "7.017973999997887,51.205622999994155", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "H\u00f6fgen", + "title": "A46 | Brilon", + "coordinate": { + "long": "7.017973999997887", + "lat": "51.205622999994155" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.017973999997887,51.205622999994155" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000293", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.213469999998735,51.29638299999686,7.213469999998735,51.29638299999686", + "point": "7.213469999998735,51.29638299999686", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "Sternenberg Nord [Gesperrt]", + "title": "A46 | Heinsberg", + "coordinate": { + "long": "7.213469999998735", + "lat": "51.29638299999686" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.213469999998735,51.29638299999686", + " ", + "Gesperrt bis vorrausichtlich Mai 2026" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000292", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.214409999998739,51.29589499999686,7.214409999998739,51.29589499999686", + "point": "7.214409999998739,51.29589499999686", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Sternenberg S\u00fcd [Gesperrt]", + "title": "A46 | Brilon", + "coordinate": { + "long": "7.214409999998739", + "lat": "51.29589499999686" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.214409999998739,51.29589499999686", + " ", + "Gesperrt bis vorrausichtlich Mai 2026" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000294", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.233817999998806,51.30627899999706,7.233817999998806,51.30627899999706", + "point": "7.233817999998806,51.30627899999706", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Holtkamp", + "title": "A46 | Heinsberg", + "coordinate": { + "long": "7.233817999998806", + "lat": "51.30627899999706" + }, + "description": [ + "PKW Stellpl\u00e4tze: 5", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.233817999998806,51.30627899999706" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000280", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.592658999999616,51.36874099999925,7.592658999999616,51.36874099999925", + "point": "7.592658999999616,51.36874099999925", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Pennacker", + "title": "A46 | Brilon", + "coordinate": { + "long": "7.592658999999616", + "lat": "51.36874099999925" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.592658999999616,51.36874099999925" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000281", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.640553999999675,51.37556399999939,7.640553999999675,51.37556399999939", + "point": "7.640553999999675,51.37556399999939", + "startLcPosition": "56", + "display_type": "PARKING", + "subtitle": "Heimberg", + "title": "A46 | Heinsberg", + "coordinate": { + "long": "7.640553999999675", + "lat": "51.37556399999939" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.640553999999675,51.37556399999939" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000282", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.644869999999681,51.37537499999937,7.644869999999681,51.37537499999937", + "point": "7.644869999999681,51.37537499999937", + "startLcPosition": "59", + "display_type": "PARKING", + "subtitle": "Leckerhorst", + "title": "A46 | Brilon", + "coordinate": { + "long": "7.644869999999681", + "lat": "51.37537499999937" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.644869999999681,51.37537499999937" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000287", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.031915999999942,51.43262499999992,8.031915999999942,51.43262499999992", + "point": "8.031915999999942,51.43262499999992", + "startLcPosition": "65", + "display_type": "PARKING", + "subtitle": "Bruchhauser H\u00f6he", + "title": "A46 | Heinsberg", + "coordinate": { + "long": "8.031915999999942", + "lat": "51.43262499999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.031915999999942,51.43262499999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000288", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.043286999999946,51.43056799999993,8.043286999999946,51.43056799999993", + "point": "8.043286999999946,51.43056799999993", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Wannetal", + "title": "A46 | Brilon", + "coordinate": { + "long": "8.043286999999946", + "lat": "51.43056799999993" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.043286999999946,51.43056799999993" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-007398", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.401824999999995,51.370362,8.401824999999995,51.370362", + "point": "8.401824999999995,51.370362", + "startLcPosition": "76", + "display_type": "PARKING", + "subtitle": "Sengenberg", + "title": "A46 | Heinsberg", + "coordinate": { + "long": "8.401824999999995", + "lat": "51.370362" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.401824999999995,51.370362" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-NW-007399", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.405982999999996,51.37124099999999,8.405982999999996,51.37124099999999", + "point": "8.405982999999996,51.37124099999999", + "startLcPosition": "79", + "display_type": "PARKING", + "subtitle": "Alfert", + "title": "A46 | Brilon", + "coordinate": { + "long": "8.405982999999996", + "lat": "51.37124099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.405982999999996,51.37124099999999" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A48": { + "parking_lorry": [ + { + "identifier": "DE-RP-000054", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.925334999997036,50.19258599999237,6.925334999997036,50.19258599999237", + "point": "6.925334999997036,50.19258599999237", + "startLcPosition": "0", + "display_type": "PARKING", + "subtitle": "Bierscheid", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "6.925334999997036", + "lat": "50.19258599999237" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.925334999997036,50.19258599999237" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000051", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.042178999997774,50.24129499999461,7.042178999997774,50.24129499999461", + "point": "7.042178999997774,50.24129499999461", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "H\u00f6chstberg", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.042178999997774", + "lat": "50.24129499999461" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.042178999997774,50.24129499999461" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000053", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.931795999997083,50.19350699999249,6.931795999997083,50.19350699999249", + "point": "6.931795999997083,50.19350699999249", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Steininger H\u00f6he", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "6.931795999997083", + "lat": "50.19350699999249" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.931795999997083,50.19350699999249" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.111916999998132,50.21930999999566,7.111916999998132,50.21930999999566", + "point": "7.111916999998132,50.21930999999566", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Sch\u00f6ne Aussicht", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.111916999998132", + "lat": "50.21930999999566" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.111916999998132,50.21930999999566" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000052", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.022725999997662,50.23436499999428,7.022725999997662,50.23436499999428", + "point": "7.022725999997662,50.23436499999428", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Uersfeld", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.022725999997662", + "lat": "50.23436499999428" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.022725999997662,50.23436499999428" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000049", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.120488999998174,50.216357999995786,7.120488999998174,50.216357999995786", + "point": "7.120488999998174,50.216357999995786", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Martental", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.120488999998174", + "lat": "50.216357999995786" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.120488999998174,50.216357999995786" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000048", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.1863939999984705,50.23036799999658,7.1863939999984705,50.23036799999658", + "point": "7.1863939999984705,50.23036799999658", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Herberkaul", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.1863939999984705", + "lat": "50.23036799999658" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.1863939999984705,50.23036799999658" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000047", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.193101999998496,50.231399999996654,7.193101999998496,50.231399999996654", + "point": "7.193101999998496,50.231399999996654", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Belzweide", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.193101999998496", + "lat": "50.231399999996654" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.193101999998496,50.231399999996654" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000046", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.22517499999863,50.266484999997004,7.22517499999863,50.266484999997004", + "point": "7.22517499999863,50.266484999997004", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Elztal N", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.22517499999863", + "lat": "50.266484999997004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 101", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.22517499999863,50.266484999997004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000045", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.227166999998638,50.265785999997014,7.227166999998638,50.265785999997014", + "point": "7.227166999998638,50.265785999997014", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Elztal S", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.227166999998638", + "lat": "50.265785999997014" + }, + "description": [ + "PKW Stellpl\u00e4tze: 109", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.227166999998638,50.265785999997014" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000043", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.33600199999901,50.31560399999796,7.33600199999901,50.31560399999796", + "point": "7.33600199999901,50.31560399999796", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Mammutgrube", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.33600199999901", + "lat": "50.31560399999796" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.33600199999901,50.31560399999796" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.39356299999917,50.328632999998355,7.39356299999917,50.328632999998355", + "point": "7.39356299999917,50.328632999998355", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "M\u00fcnsterer H\u00f6he", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.39356299999917", + "lat": "50.328632999998355" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.39356299999917,50.328632999998355" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000044", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.2974449999988895,50.31320999999765,7.2974449999988895,50.31320999999765", + "point": "7.2974449999988895,50.31320999999765", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Rotendall", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.2974449999988895", + "lat": "50.31320999999765" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.2974449999988895,50.31320999999765" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000042", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.384478999999147,50.3281079999983,7.384478999999147,50.3281079999983", + "point": "7.384478999999147,50.3281079999983", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Schnackenborn", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.384478999999147", + "lat": "50.3281079999983" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.384478999999147,50.3281079999983" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000039", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.444366999999294,50.34139799999864,7.444366999999294,50.34139799999864", + "point": "7.444366999999294,50.34139799999864", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Goloring", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.444366999999294", + "lat": "50.34139799999864" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.444366999999294,50.34139799999864" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000037", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.532705999999476,50.37957099999902,7.532705999999476,50.37957099999902", + "point": "7.532705999999476,50.37957099999902", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Schie\u00dfer Weg", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.532705999999476", + "lat": "50.37957099999902" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.532705999999476,50.37957099999902" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000038", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.512788999999438,50.372503999998955,7.512788999999438,50.372503999998955", + "point": "7.512788999999438,50.372503999998955", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Erdkaul", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.512788999999438", + "lat": "50.372503999998955" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.512788999999438,50.372503999998955" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000034", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.62317299999962,50.427110999999336,7.62317299999962,50.427110999999336", + "point": "7.62317299999962,50.427110999999336", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Albrechtshof", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.62317299999962", + "lat": "50.427110999999336" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.62317299999962,50.427110999999336" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000035", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.610632999999603,50.41659699999931,7.610632999999603,50.41659699999931", + "point": "7.610632999999603,50.41659699999931", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Nonnenberg", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.610632999999603", + "lat": "50.41659699999931" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.610632999999603,50.41659699999931" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.679316999999694,50.44746399999948,7.679316999999694,50.44746399999948", + "point": "7.679316999999694,50.44746399999948", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "M\u00fchlholz", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.679316999999694", + "lat": "50.44746399999948" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.679316999999694,50.44746399999948" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.725438999999745,50.451874999999575,7.725438999999745,50.451874999999575", + "point": "7.725438999999745,50.451874999999575", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Kannenb\u00e4ckerland", + "title": "A48 | Dreieck Vulkaneifel (A1)", + "coordinate": { + "long": "7.725438999999745", + "lat": "50.451874999999575" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.725438999999745,50.451874999999575" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000033", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.647052999999652,50.43864099999941,7.647052999999652,50.43864099999941", + "point": "7.647052999999652,50.43864099999941", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Grenzau S", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.647052999999652", + "lat": "50.43864099999941" + }, + "description": [ + "PKW Stellpl\u00e4tze: 41", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.647052999999652,50.43864099999941" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.688508999999704,50.4460019999995,7.688508999999704,50.4460019999995", + "point": "7.688508999999704,50.4460019999995", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Seelbachwiese", + "title": "A48 | Dreieck Dernbach (A3)", + "coordinate": { + "long": "7.688508999999704", + "lat": "50.4460019999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.688508999999704,50.4460019999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A49": { + "parking_lorry": [ + { + "identifier": "DE-HE-490003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.394012,51.19131599999999,9.394012,51.19131599999999", + "point": "9.394012,51.19131599999999", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Scharfenstein", + "title": "A49 | Gie\u00dfen", + "coordinate": { + "long": "9.394012", + "lat": "51.19131599999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.394012,51.19131599999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-490004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.396399000000002,51.19185300000001,9.396399000000002,51.19185300000001", + "point": "9.396399000000002,51.19185300000001", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Am Sonneborn", + "title": "A49 | Kassel", + "coordinate": { + "long": "9.396399000000002", + "lat": "51.19185300000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.396399000000002,51.19185300000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-490001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.419485000000002,51.22369499999999,9.419485000000002,51.22369499999999", + "point": "9.419485000000002,51.22369499999999", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Holzhausen W", + "title": "A49 | Gie\u00dfen", + "coordinate": { + "long": "9.419485000000002", + "lat": "51.22369499999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 7", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.419485000000002,51.22369499999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-490002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.420357,51.223168,9.420357,51.223168", + "point": "9.420357,51.223168", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Holzhausen O", + "title": "A49 | Kassel", + "coordinate": { + "long": "9.420357", + "lat": "51.223168" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.420357,51.223168" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A52": { + "parking_lorry": [ + { + "identifier": "DE-NW-000296", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.404327999992952,51.22013499997059,6.404327999992952,51.22013499997059", + "point": "6.404327999992952,51.22013499997059", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Bockerter Heide", + "title": "A52 | Roermond", + "coordinate": { + "long": "6.404327999992952", + "lat": "51.22013499997059" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.404327999992952,51.22013499997059" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000295", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.402843999992935,51.218873999970484,6.402843999992935,51.218873999970484", + "point": "6.402843999992935,51.218873999970484", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Wolfskull", + "title": "A52 | Kreuz Marl-Nord (A43)", + "coordinate": { + "long": "6.402843999992935", + "lat": "51.218873999970484" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.402843999992935,51.218873999970484" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000298", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.512259999994091,51.23760399997718,6.512259999994091,51.23760399997718", + "point": "6.512259999994091,51.23760399997718", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Cloerbruch Nord", + "title": "A52 | Roermond", + "coordinate": { + "long": "6.512259999994091", + "lat": "51.23760399997718" + }, + "description": [ + "PKW Stellpl\u00e4tze: 58", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.512259999994091,51.23760399997718" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000297", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.512062999994087,51.23659999997717,6.512062999994087,51.23659999997717", + "point": "6.512062999994087,51.23659999997717", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Cloerbruch S\u00fcd", + "title": "A52 | Kreuz Marl-Nord (A43)", + "coordinate": { + "long": "6.512062999994087", + "lat": "51.23659999997717" + }, + "description": [ + "PKW Stellpl\u00e4tze: 55", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.512062999994087,51.23659999997717" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000299", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.8157399999967065,51.30928199998955,6.8157399999967065,51.30928199998955", + "point": "6.8157399999967065,51.30928199998955", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Tiefenbroich", + "title": "A52 | Kreuz Marl-Nord (A43)", + "coordinate": { + "long": "6.8157399999967065", + "lat": "51.30928199998955" + }, + "description": [ + "PKW Stellpl\u00e4tze: 11", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.8157399999967065,51.30928199998955" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000301", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.917686999997388,51.383608999992134,6.917686999997388,51.383608999992134", + "point": "6.917686999997388,51.383608999992134", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Ickten", + "title": "A52 | Roermond", + "coordinate": { + "long": "6.917686999997388", + "lat": "51.383608999992134" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.917686999997388,51.383608999992134" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000300", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.891217999997226,51.372924999991525,6.891217999997226,51.372924999991525", + "point": "6.891217999997226,51.372924999991525", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Auberg", + "title": "A52 | Kreuz Marl-Nord (A43)", + "coordinate": { + "long": "6.891217999997226", + "lat": "51.372924999991525" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.891217999997226,51.372924999991525" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A57": { + "parking_lorry": [ + { + "identifier": "DE-NW-000319", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.850262999996826,51.02506899999051,6.850262999996826,51.02506899999051", + "point": "6.850262999996826,51.02506899999051", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Esch (West)", + "title": "A57 | K\u00f6ln", + "coordinate": { + "long": "6.850262999996826", + "lat": "51.02506899999051" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.850262999996826,51.02506899999051" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000320", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.851727999996836,51.02495999999055,6.851727999996836,51.02495999999055", + "point": "6.851727999996836,51.02495999999055", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Weiler (Ost)", + "title": "A57 | Nimwegen", + "coordinate": { + "long": "6.851727999996836", + "lat": "51.02495999999055" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.851727999996836,51.02495999999055" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000317", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.796089999996484,51.12340199998897,6.796089999996484,51.12340199998897", + "point": "6.796089999996484,51.12340199998897", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Nievenheim West", + "title": "A57 | K\u00f6ln", + "coordinate": { + "long": "6.796089999996484", + "lat": "51.12340199998897" + }, + "description": [ + "PKW Stellpl\u00e4tze: 57", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.796089999996484,51.12340199998897" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000318", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.796872999996489,51.12500199998899,6.796872999996489,51.12500199998899", + "point": "6.796872999996489,51.12500199998899", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Nievenheim Ost", + "title": "A57 | Nimwegen", + "coordinate": { + "long": "6.796872999996489", + "lat": "51.12500199998899" + }, + "description": [ + "PKW Stellpl\u00e4tze: 93", + "LKW Stellpl\u00e4tze: 73" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.796872999996489,51.12500199998899" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000316", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.648715999995343,51.20617799998372,6.648715999995343,51.20617799998372", + "point": "6.648715999995343,51.20617799998372", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Morgensternsheide (West)", + "title": "A57 | K\u00f6ln", + "coordinate": { + "long": "6.648715999995343", + "lat": "51.20617799998372" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.648715999995343,51.20617799998372" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000315", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.648963999995348,51.20869899998374,6.648963999995348,51.20869899998374", + "point": "6.648963999995348,51.20869899998374", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Morgensternsheide (Ost)", + "title": "A57 | Nimwegen", + "coordinate": { + "long": "6.648963999995348", + "lat": "51.20869899998374" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.648963999995348,51.20869899998374" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000313", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.6324029999952705,51.31208899998303,6.6324029999952705,51.31208899998303", + "point": "6.6324029999952705,51.31208899998303", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Geism\u00fchle West", + "title": "A57 | K\u00f6ln", + "coordinate": { + "long": "6.6324029999952705", + "lat": "51.31208899998303" + }, + "description": [ + "PKW Stellpl\u00e4tze: 77", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.6324029999952705,51.31208899998303" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000314", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.634486999995288,51.311376999983125,6.634486999995288,51.311376999983125", + "point": "6.634486999995288,51.311376999983125", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Geism\u00fchle Ost", + "title": "A57 | Nimwegen", + "coordinate": { + "long": "6.634486999995288", + "lat": "51.311376999983125" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.634486999995288,51.311376999983125" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000311", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.587677999994992,51.470302999981016,6.587677999994992,51.470302999981016", + "point": "6.587677999994992,51.470302999981016", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Dong", + "title": "A57 | K\u00f6ln", + "coordinate": { + "long": "6.587677999994992", + "lat": "51.470302999981016" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.587677999994992,51.470302999981016" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000312", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.5863229999949855,51.47538199998096,6.5863229999949855,51.47538199998096", + "point": "6.5863229999949855,51.47538199998096", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Dong", + "title": "A57 | K\u00f6ln", + "coordinate": { + "long": "6.5863229999949855", + "lat": "51.47538199998096" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.5863229999949855,51.47538199998096" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000309", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.528201999994527,51.55739599997801,6.528201999994527,51.55739599997801", + "point": "6.528201999994527,51.55739599997801", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Leucht", + "title": "A57 | K\u00f6ln", + "coordinate": { + "long": "6.528201999994527", + "lat": "51.55739599997801" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.528201999994527,51.55739599997801" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000310", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.528192999994529,51.558313999978026,6.528192999994529,51.558313999978026", + "point": "6.528192999994529,51.558313999978026", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Leucht", + "title": "A57 | Nimwegen", + "coordinate": { + "long": "6.528192999994529", + "lat": "51.558313999978026" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.528192999994529,51.558313999978026" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000308", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.449130999993798,51.57066599997346,6.449130999993798,51.57066599997346", + "point": "6.449130999993798,51.57066599997346", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "B\u00f6nninghardt", + "title": "A57 | Nimwegen", + "coordinate": { + "long": "6.449130999993798", + "lat": "51.57066599997346" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.449130999993798,51.57066599997346" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000307", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.413704999993462,51.57781199997118,6.413704999993462,51.57781199997118", + "point": "6.413704999993462,51.57781199997118", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Hamb", + "title": "A57 | K\u00f6ln", + "coordinate": { + "long": "6.413704999993462", + "lat": "51.57781199997118" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.413704999993462,51.57781199997118" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000305", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.198642999991464,51.65198199995348,6.198642999991464,51.65198199995348", + "point": "6.198642999991464,51.65198199995348", + "startLcPosition": "40", + "display_type": "PARKING", + "subtitle": "Kalbecker Forst West", + "title": "A57 | K\u00f6ln", + "coordinate": { + "long": "6.198642999991464", + "lat": "51.65198199995348" + }, + "description": [ + "PKW Stellpl\u00e4tze: 49", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.198642999991464,51.65198199995348" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000306", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.198476999991466,51.653298999953456,6.198476999991466,51.653298999953456", + "point": "6.198476999991466,51.653298999953456", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Kalbecker Forst Ost", + "title": "A57 | Nimwegen", + "coordinate": { + "long": "6.198476999991466", + "lat": "51.653298999953456" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.198476999991466,51.653298999953456" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A59": { + "parking_lorry": [ + { + "identifier": "DE-NW-000322", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.082710999998133,50.89834499999521,7.082710999998133,50.89834499999521", + "point": "7.082710999998133,50.89834499999521", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Schlo\u00df R\u00f6ttgen West", + "title": "A59 | Bonn", + "coordinate": { + "long": "7.082710999998133", + "lat": "50.89834499999521" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.082710999998133,50.89834499999521" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000323", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.085376999998147,50.89791799999525,7.085376999998147,50.89791799999525", + "point": "7.085376999998147,50.89791799999525", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Schlo\u00df R\u00f6ttgen Ost", + "title": "A59 | Dinslaken", + "coordinate": { + "long": "7.085376999998147", + "lat": "50.89791799999525" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.085376999998147,50.89791799999525" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000324", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.920028999997312,51.10899899999221,6.920028999997312,51.10899899999221", + "point": "6.920028999997312,51.10899899999221", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Berghausen (West)", + "title": "A59 | Bonn", + "coordinate": { + "long": "6.920028999997312", + "lat": "51.10899899999221" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 53" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.920028999997312,51.10899899999221" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000321", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.913345999997275,51.12568899999204,6.913345999997275,51.12568899999204", + "point": "6.913345999997275,51.12568899999204", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Wolfhagen (Ost)", + "title": "A59 | Dinslaken", + "coordinate": { + "long": "6.913345999997275", + "lat": "51.12568899999204" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 51" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.913345999997275,51.12568899999204" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A60": { + "parking_lorry": [ + { + "identifier": "DE-RP-000074", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.185786999988615,50.2316789999526,6.185786999988615,50.2316789999526", + "point": "6.185786999988615,50.2316789999526", + "display_type": "PARKING", + "subtitle": "Steinebr\u00fcck O", + "title": "A60 | L\u00fcttich", + "coordinate": { + "long": "6.185786999988615", + "lat": "50.2316789999526" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.185786999988615,50.2316789999526" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000075", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.187943999988641,50.22894799995282,6.187943999988641,50.22894799995282", + "point": "6.187943999988641,50.22894799995282", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Steinebr\u00fcck W", + "title": "A60 | R\u00fcsselsheim", + "coordinate": { + "long": "6.187943999988641", + "lat": "50.22894799995282" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.187943999988641,50.22894799995282" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000076", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.3390219999908295,50.20351299996612,6.3390219999908295,50.20351299996612", + "point": "6.3390219999908295,50.20351299996612", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Schnee-Eifel O", + "title": "A60 | L\u00fcttich", + "coordinate": { + "long": "6.3390219999908295", + "lat": "50.20351299996612" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.3390219999908295,50.20351299996612" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000077", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.338819999990825,50.20304499996611,6.338819999990825,50.20304499996611", + "point": "6.338819999990825,50.20304499996611", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Schnee-Eifel W", + "title": "A60 | R\u00fcsselsheim", + "coordinate": { + "long": "6.338819999990825", + "lat": "50.20304499996611" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.338819999990825,50.20304499996611" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000078", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.4298779999919855,50.12533399997251,6.4298779999919855,50.12533399997251", + "point": "6.4298779999919855,50.12533399997251", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Pr\u00fcmer Land O", + "title": "A60 | L\u00fcttich", + "coordinate": { + "long": "6.4298779999919855", + "lat": "50.12533399997251" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.4298779999919855,50.12533399997251" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000079", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.428838999991969,50.12434999997244,6.428838999991969,50.12434999997244", + "point": "6.428838999991969,50.12434999997244", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Pr\u00fcmer Land W", + "title": "A60 | R\u00fcsselsheim", + "coordinate": { + "long": "6.428838999991969", + "lat": "50.12434999997244" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.428838999991969,50.12434999997244" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000081", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.491048999992706,50.049346999976215,6.491048999992706,50.049346999976215", + "point": "6.491048999992706,50.049346999976215", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Nimstal W", + "title": "A60 | R\u00fcsselsheim", + "coordinate": { + "long": "6.491048999992706", + "lat": "50.049346999976215" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.491048999992706,50.049346999976215" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000082", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.634010999994379,50.02084799998326,6.634010999994379,50.02084799998326", + "point": "6.634010999994379,50.02084799998326", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Gindorf O", + "title": "A60 | L\u00fcttich", + "coordinate": { + "long": "6.634010999994379", + "lat": "50.02084799998326" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.634010999994379,50.02084799998326" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000083", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.634597999994385,50.020073999983296,6.634597999994385,50.020073999983296", + "point": "6.634597999994385,50.020073999983296", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Gindorf W", + "title": "A60 | R\u00fcsselsheim", + "coordinate": { + "long": "6.634597999994385", + "lat": "50.020073999983296" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.634597999994385,50.020073999983296" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000085", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.835733999996275,49.968453999990196,6.835733999996275,49.968453999990196", + "point": "6.835733999996275,49.968453999990196", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Finthenkapelle W", + "title": "A60 | R\u00fcsselsheim", + "coordinate": { + "long": "6.835733999996275", + "lat": "49.968453999990196" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.835733999996275,49.968453999990196" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000084", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.836990999996287,49.96891399999023,6.836990999996287,49.96891399999023", + "point": "6.836990999996287,49.96891399999023", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Finthenkapelle O", + "title": "A60 | L\u00fcttich", + "coordinate": { + "long": "6.836990999996287", + "lat": "49.96891399999023" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.836990999996287,49.96891399999023" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000072", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.108820999999956,50.00209799999995,8.108820999999956,50.00209799999995", + "point": "8.108820999999956,50.00209799999995", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Heidenfahrt N", + "title": "A60 | L\u00fcttich", + "coordinate": { + "long": "8.108820999999956", + "lat": "50.00209799999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.108820999999956,50.00209799999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000073", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.110010999999956,50.00123099999994,8.110010999999956,50.00123099999994", + "point": "8.110010999999956,50.00123099999994", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Heidenfahrt S", + "title": "A60 | R\u00fcsselsheim", + "coordinate": { + "long": "8.110010999999956", + "lat": "50.00123099999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.110010999999956,50.00123099999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A60 ": { + "parking_lorry": [ + { + "identifier": "DE-RP-000080", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.493034999992733,50.04962399997631,6.493034999992733,50.04962399997631", + "point": "6.493034999992733,50.04962399997631", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Nimstal O", + "title": "A60 | L\u00fcttich", + "coordinate": { + "long": "6.493034999992733", + "lat": "50.04962399997631" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.493034999992733,50.04962399997631" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A61": { + "parking_lorry": [ + { + "identifier": "DE-NW-000327", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.521122999993968,51.00547799997771,6.521122999993968,51.00547799997771", + "point": "6.521122999993968,51.00547799997771", + "display_type": "PARKING", + "subtitle": "Bedburger Land Ost", + "title": "A61 | Venlo", + "coordinate": { + "long": "6.521122999993968", + "lat": "51.00547799997771" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.521122999993968,51.00547799997771" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-061505", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.518889999999999,49.330681,8.518889999999999,49.330681", + "point": "8.518889999999999,49.330681", + "startLcPosition": "0", + "display_type": "PARKING", + "subtitle": "RA A61 km 385,7 Ri. Hockenheim", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.518889999999999", + "lat": "49.330681" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.518889999999999,49.330681" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-061005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.486473999999998,49.334276,8.486473999999998,49.334276", + "point": "8.486473999999998,49.334276", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "RA A61 km 383,3 Ri. Venlo", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.486473999999998", + "lat": "49.334276" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.486473999999998,49.334276" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000145", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.455216999999996,49.351164999999995,8.455216999999996,49.351164999999995", + "point": "8.455216999999996,49.351164999999995", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Spitzenrheinhof", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.455216999999996", + "lat": "49.351164999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.455216999999996,49.351164999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000146", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.456086999999997,49.352154,8.456086999999997,49.352154", + "point": "8.456086999999997,49.352154", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Binshof", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.456086999999997", + "lat": "49.352154" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.456086999999997,49.352154" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000143", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.381947999999992,49.35575899999999,8.381947999999992,49.35575899999999", + "point": "8.381947999999992,49.35575899999999", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Birkenschlag", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.381947999999992", + "lat": "49.35575899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 4", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.381947999999992,49.35575899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000144", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.384262999999994,49.356260999999996,8.384262999999994,49.356260999999996", + "point": "8.384262999999994,49.356260999999996", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Nachtweide", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.384262999999994", + "lat": "49.356260999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.384262999999994,49.356260999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000141", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.340170999999991,49.410906999999995,8.340170999999991,49.410906999999995", + "point": "8.340170999999991,49.410906999999995", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Dannstadt W", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.340170999999991", + "lat": "49.410906999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.340170999999991,49.410906999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000142", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.341385999999991,49.40996599999998,8.341385999999991,49.40996599999998", + "point": "8.341385999999991,49.40996599999998", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Dannstadt O", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.341385999999991", + "lat": "49.40996599999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 89", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.341385999999991,49.40996599999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000139", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.313235999999987,49.46321699999998,8.313235999999987,49.46321699999998", + "point": "8.313235999999987,49.46321699999998", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Bobelach", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.313235999999987", + "lat": "49.46321699999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.313235999999987,49.46321699999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000140", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.31545999999999,49.45949099999998,8.31545999999999,49.45949099999998", + "point": "8.31545999999999,49.45949099999998", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Sandberg", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.31545999999999", + "lat": "49.45949099999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.31545999999999,49.45949099999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000137", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.310355999999988,49.52105799999998,8.310355999999988,49.52105799999998", + "point": "8.310355999999988,49.52105799999998", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Auf dem Hirschen", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.310355999999988", + "lat": "49.52105799999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 44", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.310355999999988,49.52105799999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000138", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.311943999999988,49.51988199999999,8.311943999999988,49.51988199999999", + "point": "8.311943999999988,49.51988199999999", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Auf dem Hahnen", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.311943999999988", + "lat": "49.51988199999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 64", + "LKW Stellpl\u00e4tze: 58" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.311943999999988,49.51988199999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000135", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.287750999999986,49.594622999999984,8.287750999999986,49.594622999999984", + "point": "8.287750999999986,49.594622999999984", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Erpelrain", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.287750999999986", + "lat": "49.594622999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.287750999999986,49.594622999999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000136", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.289950999999986,49.59439099999999,8.289950999999986,49.59439099999999", + "point": "8.289950999999986,49.59439099999999", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Kurzgewann", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.289950999999986", + "lat": "49.59439099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 51" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.289950999999986,49.59439099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000133", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.290802999999986,49.645506999999995,8.290802999999986,49.645506999999995", + "point": "8.290802999999986,49.645506999999995", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Wonnegau W", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.290802999999986", + "lat": "49.645506999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 107", + "LKW Stellpl\u00e4tze: 56" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.290802999999986,49.645506999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000134", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.292993999999986,49.646918999999976,8.292993999999986,49.646918999999976", + "point": "8.292993999999986,49.646918999999976", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Wonnegau O", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.292993999999986", + "lat": "49.646918999999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 78", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.292993999999986,49.646918999999976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000131", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.236942999999979,49.68989999999999,8.236942999999979,49.68989999999999", + "point": "8.236942999999979,49.68989999999999", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Rotenstein", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.236942999999979", + "lat": "49.68989999999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.236942999999979,49.68989999999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000132", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.23775999999998,49.69040799999998,8.23775999999998,49.69040799999998", + "point": "8.23775999999998,49.69040799999998", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Bergkloster", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.23775999999998", + "lat": "49.69040799999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.23775999999998,49.69040799999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000129", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.13505299999996,49.717104999999954,8.13505299999996,49.717104999999954", + "point": "8.13505299999996,49.717104999999954", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Hauxberg", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.13505299999996", + "lat": "49.717104999999954" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 53" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.13505299999996,49.717104999999954" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000130", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.142851999999962,49.712935999999964,8.142851999999962,49.712935999999964", + "point": "8.142851999999962,49.712935999999964", + "startLcPosition": "30", + "display_type": "PARKING", + "subtitle": "Langwiese", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.142851999999962", + "lat": "49.712935999999964" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.142851999999962,49.712935999999964" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000127", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.051861999999938,49.80446499999994,8.051861999999938,49.80446499999994", + "point": "8.051861999999938,49.80446499999994", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "Menhir", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "8.051861999999938", + "lat": "49.80446499999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.051861999999938,49.80446499999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000128", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.053093999999938,49.80522099999994,8.053093999999938,49.80522099999994", + "point": "8.053093999999938,49.80522099999994", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Wiesbach", + "title": "A61 | Venlo", + "coordinate": { + "long": "8.053093999999938", + "lat": "49.80522099999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.053093999999938,49.80522099999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000125", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.963898999999905,49.86474199999988,7.963898999999905,49.86474199999988", + "point": "7.963898999999905,49.86474199999988", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "Sitzborn", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.963898999999905", + "lat": "49.86474199999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.963898999999905,49.86474199999988" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000124", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.955810999999902,49.87621099999987,7.955810999999902,49.87621099999987", + "point": "7.955810999999902,49.87621099999987", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Steingewann", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.955810999999902", + "lat": "49.87621099999987" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.955810999999902,49.87621099999987" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000120", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.766154999999773,49.96319399999965,7.766154999999773,49.96319399999965", + "point": "7.766154999999773,49.96319399999965", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Hunsr\u00fcck W", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.766154999999773", + "lat": "49.96319399999965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 77", + "LKW Stellpl\u00e4tze: 52" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.766154999999773,49.96319399999965" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000121", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.767679999999774,49.96439999999965,7.767679999999774,49.96439999999965", + "point": "7.767679999999774,49.96439999999965", + "startLcPosition": "48", + "display_type": "PARKING", + "subtitle": "Hunsr\u00fcck O", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.767679999999774", + "lat": "49.96439999999965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.767679999999774,49.96439999999965" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000117", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.644840999999637,50.0362439999994,7.644840999999637,50.0362439999994", + "point": "7.644840999999637,50.0362439999994", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Hundsheide", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.644840999999637", + "lat": "50.0362439999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.644840999999637,50.0362439999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000118", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.64626899999964,50.0368519999994,7.64626899999964,50.0368519999994", + "point": "7.64626899999964,50.0368519999994", + "startLcPosition": "51", + "display_type": "PARKING", + "subtitle": "Struth", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.64626899999964", + "lat": "50.0368519999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.64626899999964,50.0368519999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000114", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.591409999999563,50.13247499999925,7.591409999999563,50.13247499999925", + "point": "7.591409999999563,50.13247499999925", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Marienau", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.591409999999563", + "lat": "50.13247499999925" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.591409999999563,50.13247499999925" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000115", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.593143999999566,50.13450999999924,7.593143999999566,50.13450999999924", + "point": "7.593143999999566,50.13450999999924", + "startLcPosition": "55", + "display_type": "PARKING", + "subtitle": "Erzkaul", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.593143999999566", + "lat": "50.13450999999924" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.593143999999566,50.13450999999924" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000112", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.573754999999539,50.204601999999184,7.573754999999539,50.204601999999184", + "point": "7.573754999999539,50.204601999999184", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Engelr\u00f6dchen", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.573754999999539", + "lat": "50.204601999999184" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.573754999999539,50.204601999999184" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000113", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.574528999999538,50.20568799999918,7.574528999999538,50.20568799999918", + "point": "7.574528999999538,50.20568799999918", + "startLcPosition": "58", + "display_type": "PARKING", + "subtitle": "Hellerwald", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.574528999999538", + "lat": "50.20568799999918" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.574528999999538,50.20568799999918" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000110", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.510220999999427,50.266754999998945,7.510220999999427,50.266754999998945", + "point": "7.510220999999427,50.266754999998945", + "startLcPosition": "61", + "display_type": "PARKING", + "subtitle": "Mosel W", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.510220999999427", + "lat": "50.266754999998945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 30" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.510220999999427,50.266754999998945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000111", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.512431999999432,50.26697699999895,7.512431999999432,50.26697699999895", + "point": "7.512431999999432,50.26697699999895", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Mosel O", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.512431999999432", + "lat": "50.26697699999895" + }, + "description": [ + "PKW Stellpl\u00e4tze: 70", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.512431999999432,50.26697699999895" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000108", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.511208999999431,50.288912999998956,7.511208999999431,50.288912999998956", + "point": "7.511208999999431,50.288912999998956", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Neufeld", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.511208999999431", + "lat": "50.288912999998956" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.511208999999431,50.288912999998956" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000109", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.512205999999434,50.28865299999895,7.512205999999434,50.28865299999895", + "point": "7.512205999999434,50.28865299999895", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "Mariaroth", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.512205999999434", + "lat": "50.28865299999895" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.512205999999434,50.28865299999895" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000107", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.498437999999407,50.31676899999891,7.498437999999407,50.31676899999891", + "point": "7.498437999999407,50.31676899999891", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Moseltal O", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.498437999999407", + "lat": "50.31676899999891" + }, + "description": [ + "PKW Stellpl\u00e4tze: 46", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.498437999999407,50.31676899999891" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000104", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.512584999999435,50.33493499999895,7.512584999999435,50.33493499999895", + "point": "7.512584999999435,50.33493499999895", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "R\u00fcbenacher Wald", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.512584999999435", + "lat": "50.33493499999895" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.512584999999435,50.33493499999895" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.512080999999436,50.33825499999896,7.512080999999436,50.33825499999896", + "point": "7.512080999999436,50.33825499999896", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "Sandkaul", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.512080999999436", + "lat": "50.33825499999896" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.512080999999436,50.33825499999896" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.427820999999258,50.363998999998536,7.427820999999258,50.363998999998536", + "point": "7.427820999999258,50.363998999998536", + "startLcPosition": "71", + "display_type": "PARKING", + "subtitle": "Im Weidenfeld", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.427820999999258", + "lat": "50.363998999998536" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.427820999999258,50.363998999998536" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.4285369999992605,50.364464999998546,7.4285369999992605,50.364464999998546", + "point": "7.4285369999992605,50.364464999998546", + "startLcPosition": "72", + "display_type": "PARKING", + "subtitle": "Im Singten", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.4285369999992605", + "lat": "50.364464999998546" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.4285369999992605,50.364464999998546" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000099", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.367985999999108,50.38994299999818,7.367985999999108,50.38994299999818", + "point": "7.367985999999108,50.38994299999818", + "startLcPosition": "74", + "display_type": "PARKING", + "subtitle": "Hummerich", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.367985999999108", + "lat": "50.38994299999818" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.367985999999108,50.38994299999818" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000100", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.369386999999111,50.390630999998194,7.369386999999111,50.390630999998194", + "point": "7.369386999999111,50.390630999998194", + "startLcPosition": "75", + "display_type": "PARKING", + "subtitle": "Pellenz", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.369386999999111", + "lat": "50.390630999998194" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.369386999999111,50.390630999998194" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000097", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.320101999998972,50.394943999997835,7.320101999998972,50.394943999997835", + "point": "7.320101999998972,50.394943999997835", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "Am Streitgieren", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.320101999998972", + "lat": "50.394943999997835" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.320101999998972,50.394943999997835" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000096", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.319644999998969,50.395533999997824,7.319644999998969,50.395533999997824", + "point": "7.319644999998969,50.395533999997824", + "startLcPosition": "78", + "display_type": "PARKING", + "subtitle": "Krufter Ofen", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.319644999998969", + "lat": "50.395533999997824" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.319644999998969,50.395533999997824" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000093", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.255268999998757,50.389330999997284,7.255268999998757,50.389330999997284", + "point": "7.255268999998757,50.389330999997284", + "startLcPosition": "80", + "display_type": "PARKING", + "subtitle": "In D\u00fcrpel", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.255268999998757", + "lat": "50.389330999997284" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.255268999998757,50.389330999997284" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000094", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.255639999998759,50.389807999997295,7.255639999998759,50.389807999997295", + "point": "7.255639999998759,50.389807999997295", + "startLcPosition": "81", + "display_type": "PARKING", + "subtitle": "Thelenberg", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.255639999998759", + "lat": "50.389807999997295" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.255639999998759,50.389807999997295" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000091", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.223948999998652,50.44090099999699,7.223948999998652,50.44090099999699", + "point": "7.223948999998652,50.44090099999699", + "startLcPosition": "83", + "display_type": "PARKING", + "subtitle": "Brohltal W", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.223948999998652", + "lat": "50.44090099999699" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 57" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.223948999998652,50.44090099999699" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000092", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.2268259999986615,50.44065099999702,7.2268259999986615,50.44065099999702", + "point": "7.2268259999986615,50.44065099999702", + "startLcPosition": "84", + "display_type": "PARKING", + "subtitle": "Brohltal O", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.2268259999986615", + "lat": "50.44065099999702" + }, + "description": [ + "PKW Stellpl\u00e4tze: 102", + "LKW Stellpl\u00e4tze: 157" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.2268259999986615,50.44065099999702" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000089", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.20258399999858,50.51498999999676,7.20258399999858,50.51498999999676", + "point": "7.20258399999858,50.51498999999676", + "startLcPosition": "86", + "display_type": "PARKING", + "subtitle": "H\u00f6chen", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.20258399999858", + "lat": "50.51498999999676" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.20258399999858,50.51498999999676" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000090", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.202349999998579,50.515918999996735,7.202349999998579,50.515918999996735", + "point": "7.202349999998579,50.515918999996735", + "startLcPosition": "87", + "display_type": "PARKING", + "subtitle": "Harterscheid", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.202349999998579", + "lat": "50.515918999996735" + }, + "description": [ + "PKW Stellpl\u00e4tze: 9", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.202349999998579,50.515918999996735" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000087", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.133671999998302,50.572701999995935,7.133671999998302,50.572701999995935", + "point": "7.133671999998302,50.572701999995935", + "startLcPosition": "89", + "display_type": "PARKING", + "subtitle": "Hassel", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.133671999998302", + "lat": "50.572701999995935" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 2" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.133671999998302,50.572701999995935" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000088", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.134349999998306,50.573153999995945,7.134349999998306,50.573153999995945", + "point": "7.134349999998306,50.573153999995945", + "startLcPosition": "90", + "display_type": "PARKING", + "subtitle": "M\u00fchlenberg", + "title": "A61 | Venlo", + "coordinate": { + "long": "7.134349999998306", + "lat": "50.573153999995945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 2" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.134349999998306,50.573153999995945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000086", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.05973699999795,50.58144099999489,7.05973699999795,50.58144099999489", + "point": "7.05973699999795,50.58144099999489", + "startLcPosition": "92", + "display_type": "PARKING", + "subtitle": "Goldene Meile", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "7.05973699999795", + "lat": "50.58144099999489" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.05973699999795,50.58144099999489" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000330", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.941659999997293,50.643392999992685,6.941659999997293,50.643392999992685", + "point": "6.941659999997293,50.643392999992685", + "startLcPosition": "95", + "display_type": "PARKING", + "subtitle": "Peppenhoven West", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "6.941659999997293", + "lat": "50.643392999992685" + }, + "description": [ + "PKW Stellpl\u00e4tze: 45", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.941659999997293,50.643392999992685" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000331", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.942594999997299,50.64420199999271,6.942594999997299,50.64420199999271", + "point": "6.942594999997299,50.64420199999271", + "startLcPosition": "96", + "display_type": "PARKING", + "subtitle": "Peppenhoven Ost", + "title": "A61 | Venlo", + "coordinate": { + "long": "6.942594999997299", + "lat": "50.64420199999271" + }, + "description": [ + "PKW Stellpl\u00e4tze: 43", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.942594999997299,50.64420199999271" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000328", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.873606999996874,50.73678799999111,6.873606999996874,50.73678799999111", + "point": "6.873606999996874,50.73678799999111", + "startLcPosition": "98", + "display_type": "PARKING", + "subtitle": "Am blauen Stein (West)", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "6.873606999996874", + "lat": "50.73678799999111" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.873606999996874,50.73678799999111" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000329", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.874374999996881,50.737770999991135,6.874374999996881,50.737770999991135", + "point": "6.874374999996881,50.737770999991135", + "startLcPosition": "100", + "display_type": "PARKING", + "subtitle": "Am blauen Stein (Ost)", + "title": "A61 | Venlo", + "coordinate": { + "long": "6.874374999996881", + "lat": "50.737770999991135" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.874374999996881,50.737770999991135" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000326", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.520463999993958,51.00437399997767,6.520463999993958,51.00437399997767", + "point": "6.520463999993958,51.00437399997767", + "startLcPosition": "110", + "display_type": "PARKING", + "subtitle": "Bedburger Land West", + "title": "A61 | Hockenheim", + "coordinate": { + "long": "6.520463999993958", + "lat": "51.00437399997767" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.520463999993958,51.00437399997767" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A62": { + "parking_lorry": [ + { + "identifier": "DE-SL-000018", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.048689999997655,49.59575899999475,7.048689999997655,49.59575899999475", + "point": "7.048689999997655,49.59575899999475", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "S\u00f6tern N", + "title": "A62 | Dreieck Dornweiler (A1)", + "coordinate": { + "long": "7.048689999997655", + "lat": "49.59575899999475" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.048689999997655,49.59575899999475" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000019", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.045383999997634,49.5954999999947,7.045383999997634,49.5954999999947", + "point": "7.045383999997634,49.5954999999947", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "S\u00f6tern S", + "title": "A62 | Pirmasens", + "coordinate": { + "long": "7.045383999997634", + "lat": "49.5954999999947" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.045383999997634,49.5954999999947" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SL-000021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.252816999998641,49.5701239999973,7.252816999998641,49.5701239999973", + "point": "7.252816999998641,49.5701239999973", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Freisener Kreuz ", + "title": "A62 | Dreieck Dornweiler (A1)", + "coordinate": { + "long": "7.252816999998641", + "lat": "49.5701239999973" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.252816999998641,49.5701239999973" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SL-000020", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.2502929999986305,49.571045999997274,7.2502929999986305,49.571045999997274", + "point": "7.2502929999986305,49.571045999997274", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Karlswald ", + "title": "A62 | Pirmasens", + "coordinate": { + "long": "7.2502929999986305", + "lat": "49.571045999997274" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.2502929999986305,49.571045999997274" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-RP-002265", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.40464899999913,49.49193899999843,7.40464899999913,49.49193899999843", + "point": "7.40464899999913,49.49193899999843", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Potzberg Ost", + "title": "A62 | Dreieck Dornweiler (A1)", + "coordinate": { + "long": "7.40464899999913", + "lat": "49.49193899999843" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.40464899999913,49.49193899999843" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-RP-000149", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.43848699999922,49.46942699999861,7.43848699999922,49.46942699999861", + "point": "7.43848699999922,49.46942699999861", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Weiherborner Garten", + "title": "A62 | Dreieck Dornweiler (A1)", + "coordinate": { + "long": "7.43848699999922", + "lat": "49.46942699999861" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.43848699999922,49.46942699999861" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-002264", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.404892999999133,49.49125299999842,7.404892999999133,49.49125299999842", + "point": "7.404892999999133,49.49125299999842", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Potzberg West", + "title": "A62 | Pirmasens", + "coordinate": { + "long": "7.404892999999133", + "lat": "49.49125299999842" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.404892999999133,49.49125299999842" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-RP-000151", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.499498999999357,49.4430339999989,7.499498999999357,49.4430339999989", + "point": "7.499498999999357,49.4430339999989", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Katzenbacher H\u00f6he", + "title": "A62 | Dreieck Dornweiler (A1)", + "coordinate": { + "long": "7.499498999999357", + "lat": "49.4430339999989" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.499498999999357,49.4430339999989" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000150", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.475820999999306,49.453020999998806,7.475820999999306,49.453020999998806", + "point": "7.475820999999306,49.453020999998806", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Am Heidenkornrech", + "title": "A62 | Pirmasens", + "coordinate": { + "long": "7.475820999999306", + "lat": "49.453020999998806" + }, + "description": [ + "PKW Stellpl\u00e4tze: 3", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.475820999999306,49.453020999998806" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A63": { + "parking_lorry": [ + { + "identifier": "DE-RP-000156", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.964674999999904,49.59380399999988,7.964674999999904,49.59380399999988", + "point": "7.964674999999904,49.59380399999988", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Donnersberg W", + "title": "A63 | Kaiserslautern", + "coordinate": { + "long": "7.964674999999904", + "lat": "49.59380399999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.964674999999904,49.59380399999988" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000157", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.965193999999903,49.59327799999988,7.965193999999903,49.59327799999988", + "point": "7.965193999999903,49.59327799999988", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Donnersberg O", + "title": "A63 | Mainz", + "coordinate": { + "long": "7.965193999999903", + "lat": "49.59327799999988" + }, + "description": [ + "PKW Stellpl\u00e4tze: 7", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.965193999999903,49.59327799999988" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-RP-000154", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.035855999999935,49.68647099999991,8.035855999999935,49.68647099999991", + "point": "8.035855999999935,49.68647099999991", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Heuberger Hof W", + "title": "A63 | Kaiserslautern", + "coordinate": { + "long": "8.035855999999935", + "lat": "49.68647099999991" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.035855999999935,49.68647099999991" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000155", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.038437999999934,49.68724899999992,8.038437999999934,49.68724899999992", + "point": "8.038437999999934,49.68724899999992", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Heuberger Hof O", + "title": "A63 | Mainz", + "coordinate": { + "long": "8.038437999999934", + "lat": "49.68724899999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.038437999999934,49.68724899999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A64": { + "parking_lorry": [ + { + "identifier": "DE-RP-000158", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.578118999993535,49.761226999980806,6.578118999993535,49.761226999980806", + "point": "6.578118999993535,49.761226999980806", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Sauertal", + "title": "A64 | Luxemburg", + "coordinate": { + "long": "6.578118999993535", + "lat": "49.761226999980806" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.578118999993535,49.761226999980806" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000159", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.5785299999935365,49.760479999980845,6.5785299999935365,49.760479999980845", + "point": "6.5785299999935365,49.760479999980845", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Markusberg", + "title": "A64 | Trier (A 1)", + "coordinate": { + "long": "6.5785299999935365", + "lat": "49.760479999980845" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.5785299999935365,49.760479999980845" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + } + ] + }, + "A65": { + "parking_lorry": [ + { + "identifier": "DE-RP-000162", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.152183999999965,49.270056999999966,8.152183999999965,49.270056999999966", + "point": "8.152183999999965,49.270056999999966", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Pf\u00e4lzer Weinstra\u00dfe W", + "title": "A65 | Karlsruhe", + "coordinate": { + "long": "8.152183999999965", + "lat": "49.270056999999966" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.152183999999965,49.270056999999966" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Rastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000163", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.153439999999964,49.27011799999996,8.153439999999964,49.27011799999996", + "point": "8.153439999999964,49.27011799999996", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Pf\u00e4lzer Weinstra\u00dfe O", + "title": "A65 | Ludwigshafen", + "coordinate": { + "long": "8.153439999999964", + "lat": "49.27011799999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.153439999999964,49.27011799999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000161", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.264190999999983,49.38876899999999,8.264190999999983,49.38876899999999", + "point": "8.264190999999983,49.38876899999999", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Spielberg", + "title": "A65 | Karlsruhe", + "coordinate": { + "long": "8.264190999999983", + "lat": "49.38876899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.264190999999983,49.38876899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-RP-000160", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.267653999999983,49.390000999999984,8.267653999999983,49.390000999999984", + "point": "8.267653999999983,49.390000999999984", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Spechtersee", + "title": "A65 | Ludwigshafen", + "coordinate": { + "long": "8.267653999999983", + "lat": "49.390000999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.267653999999983,49.390000999999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A66": { + "parking_lorry": [ + { + "identifier": "DE-HE-660004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.449558999999997,50.05747100000001,8.449558999999997,50.05747100000001", + "point": "8.449558999999997,50.05747100000001", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Weilbach N", + "title": "A66 | Wiesbaden", + "coordinate": { + "long": "8.449558999999997", + "lat": "50.05747100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.449558999999997,50.05747100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-660003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.451798999999996,50.05742500000002,8.451798999999996,50.05742500000002", + "point": "8.451798999999996,50.05742500000002", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Weilbach S", + "title": "A66 | Fulda", + "coordinate": { + "long": "8.451798999999996", + "lat": "50.05742500000002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.451798999999996,50.05742500000002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-660002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.541880999999998,50.11809499999999,8.541880999999998,50.11809499999999", + "point": "8.541880999999998,50.11809499999999", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Frankfurt a. Main S", + "title": "A66 | Fulda", + "coordinate": { + "long": "8.541880999999998", + "lat": "50.11809499999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 6", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.541880999999998,50.11809499999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-660001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.543700999999999,50.119765999999984,8.543700999999999,50.119765999999984", + "point": "8.543700999999999,50.119765999999984", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Frankfurt a. Main N", + "title": "A66 | Wiesbaden", + "coordinate": { + "long": "8.543700999999999", + "lat": "50.119765999999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 11", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.543700999999999,50.119765999999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-660007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.211324,50.195356,9.211324,50.195356", + "point": "9.211324,50.195356", + "startLcPosition": "35", + "display_type": "PARKING", + "subtitle": "Kinzigtal S", + "title": "A66 | Fulda", + "coordinate": { + "long": "9.211324", + "lat": "50.195356" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.211324,50.195356" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-660008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.453028000000002,50.325306,9.453028000000002,50.325306", + "point": "9.453028000000002,50.325306", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Hunsr\u00fccker Berg", + "title": "A66 | Fulda", + "coordinate": { + "long": "9.453028000000002", + "lat": "50.325306" + }, + "description": [ + "PKW Stellpl\u00e4tze: 33", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.453028000000002,50.325306" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-660009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.455402,50.327549,9.455402,50.327549", + "point": "9.455402,50.327549", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Weinberg", + "title": "A66 | Wiesbaden", + "coordinate": { + "long": "9.455402", + "lat": "50.327549" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.455402,50.327549" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-660011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.531267000000001,50.38850200000001,9.531267000000001,50.38850200000001", + "point": "9.531267000000001,50.38850200000001", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Distelrasen", + "title": "A66 | Wiesbaden", + "coordinate": { + "long": "9.531267000000001", + "lat": "50.38850200000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 86", + "LKW Stellpl\u00e4tze: 69" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.531267000000001,50.38850200000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A67": { + "parking_lorry": [ + { + "identifier": "DE-HE-670011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.559410999999999,49.59579300000001,8.559410999999999,49.59579300000001", + "point": "8.559410999999999,49.59579300000001", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Wildbahn", + "title": "A67 | Mannheim", + "coordinate": { + "long": "8.559410999999999", + "lat": "49.59579300000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.559410999999999,49.59579300000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670009", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.552060999999998,49.643301,8.552060999999998,49.643301", + "point": "8.552060999999998,49.643301", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Lorsch W", + "title": "A67 | Mannheim", + "coordinate": { + "long": "8.552060999999998", + "lat": "49.643301" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 32" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.552060999999998,49.643301" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.553496999999998,49.64408000000001,8.553496999999998,49.64408000000001", + "point": "8.553496999999998,49.64408000000001", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Lorsch O", + "title": "A67 | M\u00f6nchhof-Dreieck (A3)", + "coordinate": { + "long": "8.553496999999998", + "lat": "49.64408000000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 88", + "LKW Stellpl\u00e4tze: 51" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.553496999999998,49.64408000000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670008", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.550550999999999,49.69466499999999,8.550550999999999,49.69466499999999", + "point": "8.550550999999999,49.69466499999999", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Forsthaus", + "title": "A67 | M\u00f6nchhof-Dreieck (A3)", + "coordinate": { + "long": "8.550550999999999", + "lat": "49.69466499999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.550550999999999,49.69466499999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670007", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.549021999999999,49.69747600000001,8.549021999999999,49.69747600000001", + "point": "8.549021999999999,49.69747600000001", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "J\u00e4gersburger Wald", + "title": "A67 | Mannheim", + "coordinate": { + "long": "8.549021999999999", + "lat": "49.69747600000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.549021999999999,49.69747600000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670006", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.578504,49.811597,8.578504,49.811597", + "point": "8.578504,49.811597", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Pfungstadt O", + "title": "A67 | M\u00f6nchhof-Dreieck (A3)", + "coordinate": { + "long": "8.578504", + "lat": "49.811597" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.578504,49.811597" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.578017,49.81297300000001,8.578017,49.81297300000001", + "point": "8.578017,49.81297300000001", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Pfungstadt W", + "title": "A67 | Mannheim", + "coordinate": { + "long": "8.578017", + "lat": "49.81297300000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.578017,49.81297300000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670003", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.544831999999998,49.892435,8.544831999999998,49.892435", + "point": "8.544831999999998,49.892435", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "B\u00fcttelborn W", + "title": "A67 | Mannheim", + "coordinate": { + "long": "8.544831999999998", + "lat": "49.892435" + }, + "description": [ + "PKW Stellpl\u00e4tze: 60", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.544831999999998,49.892435" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670004", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.543173,49.89436299999999,8.543173,49.89436299999999", + "point": "8.543173,49.89436299999999", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "B\u00fcttelborn O", + "title": "A67 | M\u00f6nchhof-Dreieck (A3)", + "coordinate": { + "long": "8.543173", + "lat": "49.89436299999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 45", + "LKW Stellpl\u00e4tze: 25" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.543173,49.89436299999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.481611999999997,50.003355,8.481611999999997,50.003355", + "point": "8.481611999999997,50.003355", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Neuh\u00f6fer Tann", + "title": "A67 | Mannheim", + "coordinate": { + "long": "8.481611999999997", + "lat": "50.003355" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.481611999999997,50.003355" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-670001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.488345000000002,50.00672799999999,8.488345000000002,50.00672799999999", + "point": "8.488345000000002,50.00672799999999", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Hohe Wart", + "title": "A67 | M\u00f6nchhof-Dreieck (A3)", + "coordinate": { + "long": "8.488345000000002", + "lat": "50.00672799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.488345000000002,50.00672799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A70": { + "parking_lorry": [ + { + "identifier": "DE-BY-000268", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.42030000000046,50.0034119999992,10.42030000000046,50.0034119999992", + "point": "10.42030000000046,50.0034119999992", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Steins\u00e4cker N", + "title": "A70 | Schweinfurt", + "coordinate": { + "long": "10.42030000000046", + "lat": "50.0034119999992" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.42030000000046,50.0034119999992" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000267", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.421077000000464,50.002621999999214,10.421077000000464,50.002621999999214", + "point": "10.421077000000464,50.002621999999214", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Steins\u00e4cker S", + "title": "A70 | Bayreuth", + "coordinate": { + "long": "10.421077000000464", + "lat": "50.002621999999214" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.421077000000464,50.002621999999214" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000273", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.981094000002432,49.956473999994216,10.981094000002432,49.956473999994216", + "point": "10.981094000002432,49.956473999994216", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Giechburgblick N", + "title": "A70 | Schweinfurt", + "coordinate": { + "long": "10.981094000002432", + "lat": "49.956473999994216" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.981094000002432,49.956473999994216" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000272", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.981437000002433,49.953900999994225,10.981437000002433,49.953900999994225", + "point": "10.981437000002433,49.953900999994225", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Giechburgblick S", + "title": "A70 | Bayreuth", + "coordinate": { + "long": "10.981437000002433", + "lat": "49.953900999994225" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.981437000002433,49.953900999994225" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000275", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.166458000003733,49.994802999990135,11.166458000003733,49.994802999990135", + "point": "11.166458000003733,49.994802999990135", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Paradiestal N", + "title": "A70 | Schweinfurt", + "coordinate": { + "long": "11.166458000003733", + "lat": "49.994802999990135" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 33" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.166458000003733,49.994802999990135" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000274", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.168251000003746,49.993887999990086,11.168251000003746,49.993887999990086", + "point": "11.168251000003746,49.993887999990086", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Paradiestal S", + "title": "A70 | Bayreuth", + "coordinate": { + "long": "11.168251000003746", + "lat": "49.993887999990086" + }, + "description": [ + "PKW Stellpl\u00e4tze: 36", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.168251000003746,49.993887999990086" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000278", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.472060000006845,50.033066999978246,11.472060000006845,50.033066999978246", + "point": "11.472060000006845,50.033066999978246", + "startLcPosition": "27", + "display_type": "PARKING", + "subtitle": "Rotmaintal N", + "title": "A70 | Schweinfurt", + "coordinate": { + "long": "11.472060000006845", + "lat": "50.033066999978246" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.472060000006845,50.033066999978246" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000277", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.472694000006856,50.0323999999782,11.472694000006856,50.0323999999782", + "point": "11.472694000006856,50.0323999999782", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Rotmaintal S", + "title": "A70 | Bayreuth", + "coordinate": { + "long": "11.472694000006856", + "lat": "50.0323999999782" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.472694000006856,50.0323999999782" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A71": { + "parking_lorry": [ + { + "identifier": "DE-BY-000284", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.16373500000017,50.100660999999775,10.16373500000017,50.100660999999775", + "point": "10.16373500000017,50.100660999999775", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Maibacher H\u00f6he O", + "title": "A71 | Bernburg", + "coordinate": { + "long": "10.16373500000017", + "lat": "50.100660999999775" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.16373500000017,50.100660999999775" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000283", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.161654000000167,50.10173499999976,10.161654000000167,50.10173499999976", + "point": "10.161654000000167,50.10173499999976", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Maibacher H\u00f6he W", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "10.161654000000167", + "lat": "50.10173499999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.161654000000167,50.10173499999976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000282", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.217604000000208,50.239926999999675,10.217604000000208,50.239926999999675", + "point": "10.217604000000208,50.239926999999675", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Lauertal W", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "10.217604000000208", + "lat": "50.239926999999675" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.217604000000208,50.239926999999675" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000281", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.219436000000208,50.24042699999967,10.219436000000208,50.24042699999967", + "point": "10.219436000000208,50.24042699999967", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Lauertal O", + "title": "A71 | Bernburg", + "coordinate": { + "long": "10.219436000000208", + "lat": "50.24042699999967" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.219436000000208,50.24042699999967" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000279", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.349667000000343,50.421607999999424,10.349667000000343,50.421607999999424", + "point": "10.349667000000343,50.421607999999424", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Mellrichst\u00e4dter H\u00f6he O", + "title": "A71 | Bernburg", + "coordinate": { + "long": "10.349667000000343", + "lat": "50.421607999999424" + }, + "description": [ + "PKW Stellpl\u00e4tze: 48", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.349667000000343,50.421607999999424" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000280", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.350790000000346,50.42377899999942,10.350790000000346,50.42377899999942", + "point": "10.350790000000346,50.42377899999942", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Mellrichst\u00e4dter H\u00f6he W", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "10.350790000000346", + "lat": "50.42377899999942" + }, + "description": [ + "PKW Stellpl\u00e4tze: 47", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.350790000000346,50.42377899999942" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071091", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.452834000000493,50.469586999999095,10.452834000000493,50.469586999999095", + "point": "10.452834000000493,50.469586999999095", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "PWC Th\u00fcringer Tor West", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "10.452834000000493", + "lat": "50.469586999999095" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.452834000000493,50.469586999999095" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071092", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.453820000000496,50.471627999999086,10.453820000000496,50.471627999999086", + "point": "10.453820000000496,50.471627999999086", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "PWC Th\u00fcringer Tor Ost", + "title": "A71 | Bernburg", + "coordinate": { + "long": "10.453820000000496", + "lat": "50.471627999999086" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.453820000000496,50.471627999999086" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071081", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.53298000000064,50.60020199999875,10.53298000000064,50.60020199999875", + "point": "10.53298000000064,50.60020199999875", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "PWC Dolmar West", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "10.53298000000064", + "lat": "50.60020199999875" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.53298000000064,50.60020199999875" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071082", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.534127000000641,50.59989099999874,10.534127000000641,50.59989099999874", + "point": "10.534127000000641,50.59989099999874", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "PWC Dolmar Ost", + "title": "A71 | Bernburg", + "coordinate": { + "long": "10.534127000000641", + "lat": "50.59989099999874" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.534127000000641,50.59989099999874" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071061", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.842746000001569,50.72626299999623,10.842746000001569,50.72626299999623", + "point": "10.842746000001569,50.72626299999623", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "TR Th\u00fcringer Wald Nord", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "10.842746000001569", + "lat": "50.72626299999623" + }, + "description": [ + "PKW Stellpl\u00e4tze: 66", + "LKW Stellpl\u00e4tze: 60" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.842746000001569,50.72626299999623" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-tourist_information", + "description": "Touristeninformation", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071062", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.84741500000159,50.72505799999617,10.84741500000159,50.72505799999617", + "point": "10.84741500000159,50.72505799999617", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "TR Th\u00fcringer Wald S\u00fcd", + "title": "A71 | Bernburg", + "coordinate": { + "long": "10.84741500000159", + "lat": "50.72505799999617" + }, + "description": [ + "PKW Stellpl\u00e4tze: 61", + "LKW Stellpl\u00e4tze: 54" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.84741500000159,50.72505799999617" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-tourist_information", + "description": "Touristeninformation", + "style": "" + }, + { + "icon": "almofont almo-copy", + "description": "Kopierer", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071052", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.011035000002368,50.83640799999362,11.011035000002368,50.83640799999362", + "point": "11.011035000002368,50.83640799999362", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "PWC Dornheimer Rieth Ost", + "title": "A71 | Bernburg", + "coordinate": { + "long": "11.011035000002368", + "lat": "50.83640799999362" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.011035000002368,50.83640799999362" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071051", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.010152000002362,50.83778999999366,11.010152000002362,50.83778999999366", + "point": "11.010152000002362,50.83778999999366", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "PWC Dornheimer Rieth West", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "11.010152000002362", + "lat": "50.83778999999366" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.010152000002362,50.83778999999366" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071042", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.953972000002036,50.93918799999463,10.953972000002036,50.93918799999463", + "point": "10.953972000002036,50.93918799999463", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "PWC Erfurter Becken West", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "10.953972000002036", + "lat": "50.93918799999463" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.953972000002036,50.93918799999463" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071041", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.955430000002044,50.939590999994614,10.955430000002044,50.939590999994614", + "point": "10.955430000002044,50.939590999994614", + "startLcPosition": "36", + "display_type": "PARKING", + "subtitle": "PWC Erfurter Becken Ost", + "title": "A71 | Bernburg", + "coordinate": { + "long": "10.955430000002044", + "lat": "50.939590999994614" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.955430000002044,50.939590999994614" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071031", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.166041000003244,51.129515999990055,11.166041000003244,51.129515999990055", + "point": "11.166041000003244,51.129515999990055", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "PWC Th\u00fcringer Becken West", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "11.166041000003244", + "lat": "51.129515999990055" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.166041000003244,51.129515999990055" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-071032", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.167846000003257,51.12901299999,11.167846000003257,51.12901299999", + "point": "11.167846000003257,51.12901299999", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "PWC Th\u00fcringer Becken Ost", + "title": "A71 | Bernburg", + "coordinate": { + "long": "11.167846000003257", + "lat": "51.12901299999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.167846000003257,51.12901299999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-001147", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.164331000003209,51.18938199999009,11.164331000003209,51.18938199999009", + "point": "11.164331000003209,51.18938199999009", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "PWC Leubinger F\u00fcrstenh\u00fcgel (k\u00fcnftig TR)", + "title": "A71 | 0", + "coordinate": { + "long": "11.164331000003209", + "lat": "51.18938199999009" + }, + "description": [ + "PKW Stellpl\u00e4tze: 130", + "LKW Stellpl\u00e4tze: 80" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.164331000003209,51.18938199999009" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-TH-001141", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.244732000003724,51.32553699998767,11.244732000003724,51.32553699998767", + "point": "11.244732000003724,51.32553699998767", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "PWC Hohe Schrecke West", + "title": "A71 | Schweinfurt", + "coordinate": { + "long": "11.244732000003724", + "lat": "51.32553699998767" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.244732000003724,51.32553699998767" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-TH-001140", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.253069000003784,51.331420999987394,11.253069000003784,51.331420999987394", + "point": "11.253069000003784,51.331420999987394", + "startLcPosition": "49", + "display_type": "PARKING", + "subtitle": "PWC Hohe Schrecke Ost", + "title": "A71 | Bernburg", + "coordinate": { + "long": "11.253069000003784", + "lat": "51.331420999987394" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.253069000003784,51.331420999987394" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A72": { + "parking_lorry": [ + { + "identifier": "DE-SN-000036", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.027145000014066,50.407429999926485,12.027145000014066,50.407429999926485", + "point": "12.027145000014066,50.407429999926485", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Gro\u00df-Z\u00f6bern Nord", + "title": "A72 | Hof", + "coordinate": { + "long": "12.027145000014066", + "lat": "50.407429999926485" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.027145000014066,50.407429999926485" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000037", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.038229000014203,50.40988299992487,12.038229000014203,50.40988299992487", + "point": "12.038229000014203,50.40988299992487", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Gro\u00df-Z\u00f6bern S\u00fcd", + "title": "A72 | Leipzig", + "coordinate": { + "long": "12.038229000014203", + "lat": "50.40988299992487" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.038229000014203,50.40988299992487" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000062", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.13099000001526,50.43380499991001,12.13099000001526,50.43380499991001", + "point": "12.13099000001526,50.43380499991001", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Vogtland S\u00fcd", + "title": "A72 | Leipzig", + "coordinate": { + "long": "12.13099000001526", + "lat": "50.43380499991001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 80" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.13099000001526,50.43380499991001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000061", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.185096000015681,50.46625499990026,12.185096000015681,50.46625499990026", + "point": "12.185096000015681,50.46625499990026", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Vogtland Nord", + "title": "A72 | Hof", + "coordinate": { + "long": "12.185096000015681", + "lat": "50.46625499990026" + }, + "description": [ + "PKW Stellpl\u00e4tze: 90", + "LKW Stellpl\u00e4tze: 65" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.185096000015681,50.46625499990026" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000046", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.216573000015769,50.50725299989416,12.216573000015769,50.50725299989416", + "point": "12.216573000015769,50.50725299989416", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Neuensalz", + "title": "A72 | Leipzig", + "coordinate": { + "long": "12.216573000015769", + "lat": "50.50725299989416" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.216573000015769,50.50725299989416" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000063", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.386570000015716,50.6075519998558,12.386570000015716,50.6075519998558", + "point": "12.386570000015716,50.6075519998558", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Waldkirchen Nord", + "title": "A72 | Hof", + "coordinate": { + "long": "12.386570000015716", + "lat": "50.6075519998558" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 19" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.386570000015716,50.6075519998558" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-SN-000064", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.38623900001572,50.6065959998559,12.38623900001572,50.6065959998559", + "point": "12.38623900001572,50.6065959998559", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Waldkirchen S\u00fcd", + "title": "A72 | Leipzig", + "coordinate": { + "long": "12.38623900001572", + "lat": "50.6065959998559" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.38623900001572,50.6065959998559" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000047", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.488544000014613,50.65004599982772,12.488544000014613,50.65004599982772", + "point": "12.488544000014613,50.65004599982772", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Niedercrinitz Nord", + "title": "A72 | Hof", + "coordinate": { + "long": "12.488544000014613", + "lat": "50.65004599982772" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.488544000014613,50.65004599982772" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000048", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.488947000014615,50.6492099998276,12.488947000014615,50.6492099998276", + "point": "12.488947000014615,50.6492099998276", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Niedercrinitz S\u00fcd", + "title": "A72 | Leipzig", + "coordinate": { + "long": "12.488947000014615", + "lat": "50.6492099998276" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.488947000014615,50.6492099998276" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.724848000007198,50.69342799974485,12.724848000007198,50.69342799974485", + "point": "12.724848000007198,50.69342799974485", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Beuthenbach S\u00fcd", + "title": "A72 | Leipzig", + "coordinate": { + "long": "12.724848000007198", + "lat": "50.69342799974485" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.724848000007198,50.69342799974485" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000024", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.725894000007132,50.69437599974443,12.725894000007132,50.69437599974443", + "point": "12.725894000007132,50.69437599974443", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Beuthenbach Nord", + "title": "A72 | Hof", + "coordinate": { + "long": "12.725894000007132", + "lat": "50.69437599974443" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.725894000007132,50.69437599974443" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000013", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.824297999999944,50.781270999701086,12.824297999999944,50.781270999701086", + "point": "12.824297999999944,50.781270999701086", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Am Neukirchner Wald Nord", + "title": "A72 | Hof", + "coordinate": { + "long": "12.824297999999944", + "lat": "50.781270999701086" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.824297999999944,50.781270999701086" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000014", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.82568299999984,50.78089899970045,12.82568299999984,50.78089899970045", + "point": "12.82568299999984,50.78089899970045", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Am Neukirchner Wald S\u00fcd", + "title": "A72 | Leipzig", + "coordinate": { + "long": "12.82568299999984", + "lat": "50.78089899970045" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 14" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.82568299999984,50.78089899970045" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.74923100000361,50.88809699973433,12.74923100000361,50.88809699973433", + "point": "12.74923100000361,50.88809699973433", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Am M\u00fchlbachtal S\u00fcd", + "title": "A72 | Hof", + "coordinate": { + "long": "12.74923100000361", + "lat": "50.88809699973433" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.74923100000361,50.88809699973433" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-000002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.750822000003508,50.88893299973367,12.750822000003508,50.88893299973367", + "point": "12.750822000003508,50.88893299973367", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Am M\u00fchlbachtal Nord", + "title": "A72 | Leipzig", + "coordinate": { + "long": "12.750822000003508", + "lat": "50.88893299973367" + }, + "description": [ + "PKW Stellpl\u00e4tze: 31", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.750822000003508,50.88893299973367" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SN-001113", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.46315200001118,51.18337399983454,12.46315200001118,51.18337399983454", + "point": "12.46315200001118,51.18337399983454", + "startLcPosition": "39", + "display_type": "PARKING", + "subtitle": "Hainer See N", + "title": "A72 | Leipzig", + "coordinate": { + "long": "12.46315200001118", + "lat": "51.18337399983454" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.46315200001118,51.18337399983454" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A73": { + "parking_lorry": [ + { + "identifier": "DE-BY-000296", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.991830000002613,49.53387399999406,10.991830000002613,49.53387399999406", + "point": "10.991830000002613,49.53387399999406", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Fuchswald W", + "title": "A73 | N\u00fcrnberg", + "coordinate": { + "long": "10.991830000002613", + "lat": "49.53387399999406" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.991830000002613,49.53387399999406" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000295", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.99324200000262,49.53389999999405,10.99324200000262,49.53389999999405", + "point": "10.99324200000262,49.53389999999405", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Gr\u00fcndlach O", + "title": "A73 | Suhl", + "coordinate": { + "long": "10.99324200000262", + "lat": "49.53389999999405" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.99324200000262,49.53389999999405" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000293", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.059223000003001,49.75054099999273,11.059223000003001,49.75054099999273", + "point": "11.059223000003001,49.75054099999273", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Regnitztal W", + "title": "A73 | N\u00fcrnberg", + "coordinate": { + "long": "11.059223000003001", + "lat": "49.75054099999273" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.059223000003001,49.75054099999273" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000292", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.060224000003009,49.755986999992714,11.060224000003009,49.755986999992714", + "point": "11.060224000003009,49.755986999992714", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Regnitztal O", + "title": "A73 | Suhl", + "coordinate": { + "long": "11.060224000003009", + "lat": "49.755986999992714" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.060224000003009,49.755986999992714" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000290", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.904326000002007,49.943693999995446,10.904326000002007,49.943693999995446", + "point": "10.904326000002007,49.943693999995446", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Z\u00fcckshuter Forst W", + "title": "A73 | N\u00fcrnberg", + "coordinate": { + "long": "10.904326000002007", + "lat": "49.943693999995446" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.904326000002007,49.943693999995446" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000291", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.904979000002008,49.943796999995435,10.904979000002008,49.943796999995435", + "point": "10.904979000002008,49.943796999995435", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Z\u00fcckshuter Forst O", + "title": "A73 | Suhl", + "coordinate": { + "long": "10.904979000002008", + "lat": "49.943796999995435" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.904979000002008,49.943796999995435" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000288", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.949300000002232,50.01999999999476,10.949300000002232,50.01999999999476", + "point": "10.949300000002232,50.01999999999476", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Zapfendorf W", + "title": "A73 | N\u00fcrnberg", + "coordinate": { + "long": "10.949300000002232", + "lat": "50.01999999999476" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.949300000002232,50.01999999999476" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000289", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.95008800000224,50.01987199999474,10.95008800000224,50.01987199999474", + "point": "10.95008800000224,50.01987199999474", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Zapfendorf O", + "title": "A73 | Suhl", + "coordinate": { + "long": "10.95008800000224", + "lat": "50.01987199999474" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.95008800000224,50.01987199999474" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000285", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.03094600000266,50.25019699999329,11.03094600000266,50.25019699999329", + "point": "11.03094600000266,50.25019699999329", + "startLcPosition": "44", + "display_type": "PARKING", + "subtitle": "Coburger Forst W", + "title": "A73 | N\u00fcrnberg", + "coordinate": { + "long": "11.03094600000266", + "lat": "50.25019699999329" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.03094600000266,50.25019699999329" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000286", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.031983000002661,50.25168799999325,11.031983000002661,50.25168799999325", + "point": "11.031983000002661,50.25168799999325", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Coburger Forst O", + "title": "A73 | Suhl", + "coordinate": { + "long": "11.031983000002661", + "lat": "50.25168799999325" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.031983000002661,50.25168799999325" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-073021", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.889495000001835,50.42170199999564,10.889495000001835,50.42170199999564", + "point": "10.889495000001835,50.42170199999564", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "PWC Im Werratal West", + "title": "A73 | N\u00fcrnberg", + "coordinate": { + "long": "10.889495000001835", + "lat": "50.42170199999564" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.889495000001835,50.42170199999564" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-073022", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.89059300000184,50.4223569999956,10.89059300000184,50.4223569999956", + "point": "10.89059300000184,50.4223569999956", + "startLcPosition": "51", + "display_type": "PARKING", + "subtitle": "PWC Im Werratal Ost", + "title": "A73 | Suhl", + "coordinate": { + "long": "10.89059300000184", + "lat": "50.4223569999956" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.89059300000184,50.4223569999956" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-073011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.72992600000117,50.55955099999742,10.72992600000117,50.55955099999742", + "point": "10.72992600000117,50.55955099999742", + "startLcPosition": "53", + "display_type": "PARKING", + "subtitle": "PWC Adlersberg West", + "title": "A73 | N\u00fcrnberg", + "coordinate": { + "long": "10.72992600000117", + "lat": "50.55955099999742" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.72992600000117,50.55955099999742" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-TH-073012", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.730876000001174,50.55937699999741,10.730876000001174,50.55937699999741", + "point": "10.730876000001174,50.55937699999741", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "PWC Adlersberg Ost", + "title": "A73 | Suhl", + "coordinate": { + "long": "10.730876000001174", + "lat": "50.55937699999741" + }, + "description": [ + "PKW Stellpl\u00e4tze: 21", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.730876000001174,50.55937699999741" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A81": { + "parking_lorry": [ + { + "identifier": "DE-BW-081180", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.832831,47.824815,8.832831,47.824815", + "point": "8.832831,47.824815", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Bruckried", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.832831", + "lat": "47.824815" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.832831,47.824815" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081665", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.83428,47.824982,8.83428,47.824982", + "point": "8.83428,47.824982", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Klauseneck", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.83428", + "lat": "47.824982" + }, + "description": [ + "PKW Stellpl\u00e4tze: 40", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.83428,47.824982" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081175", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.785943,47.86162099999999,8.785943,47.86162099999999", + "point": "8.785943,47.86162099999999", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Im Hegau W", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.785943", + "lat": "47.86162099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 97", + "LKW Stellpl\u00e4tze: 43" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.785943,47.86162099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081170", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.76815,47.890460999999995,8.76815,47.890460999999995", + "point": "8.76815,47.890460999999995", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Bargen-West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.76815", + "lat": "47.890460999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.76815,47.890460999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081650", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.70664,47.89450100000001,8.70664,47.89450100000001", + "point": "8.70664,47.89450100000001", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Immensitz West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.70664", + "lat": "47.89450100000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 15", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.70664,47.89450100000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081165", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.70624,47.895699000000015,8.70624,47.895699000000015", + "point": "8.70624,47.895699000000015", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Immensitz Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.70624", + "lat": "47.895699000000015" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.70624,47.895699000000015" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081655", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.77078,47.890041000000004,8.77078,47.890041000000004", + "point": "8.77078,47.890041000000004", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Bargen Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.77078", + "lat": "47.890041000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.77078,47.890041000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081660", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.785658000000002,47.864340000000006,8.785658000000002,47.864340000000006", + "point": "8.785658000000002,47.864340000000006", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Im Hegau O", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.785658000000002", + "lat": "47.864340000000006" + }, + "description": [ + "PKW Stellpl\u00e4tze: 81", + "LKW Stellpl\u00e4tze: 37" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.785658000000002,47.864340000000006" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081160", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.618933,47.94571200000001,8.618933,47.94571200000001", + "point": "8.618933,47.94571200000001", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Unterh\u00f6lzer Wald", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.618933", + "lat": "47.94571200000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.618933,47.94571200000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081645", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.621783,47.96494,8.621783,47.96494", + "point": "8.621783,47.96494", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "R\u00e4thisgraben", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.621783", + "lat": "47.96494" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.621783,47.96494" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081150", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.6027,48.07312,8.6027,48.07312", + "point": "8.6027,48.07312", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Weigenbach", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.6027", + "lat": "48.07312" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.6027,48.07312" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081145", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.569889999999997,48.142177,8.569889999999997,48.142177", + "point": "8.569889999999997,48.142177", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Eschachtal", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.569889999999997", + "lat": "48.142177" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.569889999999997,48.142177" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081640", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.606789999999998,48.07061,8.606789999999998,48.07061", + "point": "8.606789999999998,48.07061", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Weigenbach", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.606789999999998", + "lat": "48.07061" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.606789999999998,48.07061" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081635", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.571702,48.141746,8.571702,48.141746", + "point": "8.571702,48.141746", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Eschachtal", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.571702", + "lat": "48.141746" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.571702,48.141746" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081140", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.621874,48.20596299999999,8.621874,48.20596299999999", + "point": "8.621874,48.20596299999999", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Neckarburg W", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.621874", + "lat": "48.20596299999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 47" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.621874,48.20596299999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081135", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.63866,48.26446899999999,8.63866,48.26446899999999", + "point": "8.63866,48.26446899999999", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Harthausen", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.63866", + "lat": "48.26446899999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 8", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.63866,48.26446899999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081625", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.64846,48.243092000000004,8.64846,48.243092000000004", + "point": "8.64846,48.243092000000004", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "B\u00f6hringen", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.64846", + "lat": "48.243092000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.64846,48.243092000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081630", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.626561,48.20648299999999,8.626561,48.20648299999999", + "point": "8.626561,48.20648299999999", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Neckarburg O", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.626561", + "lat": "48.20648299999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 61", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.626561,48.20648299999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-docstop", + "description": "Docstop", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081130", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.646805,48.32462799999998,8.646805,48.32462799999998", + "point": "8.646805,48.32462799999998", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Hasenrain", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.646805", + "lat": "48.32462799999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.646805,48.32462799999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081620", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.64821,48.324355000000004,8.64821,48.324355000000004", + "point": "8.64821,48.324355000000004", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "Hasenrain", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.64821", + "lat": "48.324355000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 39", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.64821,48.324355000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081125", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.6936,48.37131099999999,8.6936,48.37131099999999", + "point": "8.6936,48.37131099999999", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "M\u00fchlheim", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.6936", + "lat": "48.37131099999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.6936,48.37131099999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081120", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.72737,48.401249000000014,8.72737,48.401249000000014", + "point": "8.72737,48.401249000000014", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Empfingen West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.72737", + "lat": "48.401249000000014" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.72737,48.401249000000014" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081615", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.69446,48.37096,8.69446,48.37096", + "point": "8.69446,48.37096", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Rennfrizhausen", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.69446", + "lat": "48.37096" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.69446,48.37096" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081610", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.72851,48.40131,8.72851,48.40131", + "point": "8.72851,48.40131", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Empfingen", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.72851", + "lat": "48.40131" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.72851,48.40131" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081115", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.774628,48.456410999999996,8.774628,48.456410999999996", + "point": "8.774628,48.456410999999996", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Neckarblick", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.774628", + "lat": "48.456410999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 35" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.774628,48.456410999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081605", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.775996,48.45595400000001,8.775996,48.45595400000001", + "point": "8.775996,48.45595400000001", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Hirtenhaus", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.775996", + "lat": "48.45595400000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.775996,48.45595400000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081110", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.88531,48.524956,8.88531,48.524956", + "point": "8.88531,48.524956", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Ziegler", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.88531", + "lat": "48.524956" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 44" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.88531,48.524956" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081600", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.887196,48.525250000000014,8.887196,48.525250000000014", + "point": "8.887196,48.525250000000014", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Geyern", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.887196", + "lat": "48.525250000000014" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 40" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.887196,48.525250000000014" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.903889,48.61486500000001,8.903889,48.61486500000001", + "point": "8.903889,48.61486500000001", + "startLcPosition": "31", + "display_type": "PARKING", + "subtitle": "Sch\u00f6nbuch West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "8.903889", + "lat": "48.61486500000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 59", + "LKW Stellpl\u00e4tze: 27" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.903889,48.61486500000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081595", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.907339,48.615903,8.907339,48.615903", + "point": "8.907339,48.615903", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Sch\u00f6nbuch Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "8.907339", + "lat": "48.615903" + }, + "description": [ + "PKW Stellpl\u00e4tze: 75", + "LKW Stellpl\u00e4tze: 42" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.907339,48.615903" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081590", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.048057,48.807976,9.048057,48.807976", + "point": "9.048057,48.807976", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Gerlinger H\u00f6he", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.048057", + "lat": "48.807976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.048057,48.807976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081100", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.047866000000003,48.808813,9.047866000000003,48.808813", + "point": "9.047866000000003,48.808813", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Engelberg", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.047866000000003", + "lat": "48.808813" + }, + "description": [ + "PKW Stellpl\u00e4tze: 11", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.047866000000003,48.808813" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081095", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.231839,48.990539999999996,9.231839,48.990539999999996", + "point": "9.231839,48.990539999999996", + "startLcPosition": "51", + "display_type": "PARKING", + "subtitle": "K\u00e4lbling West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.231839", + "lat": "48.990539999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.231839,48.990539999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081585", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.233217,48.99207600000001,9.233217,48.99207600000001", + "point": "9.233217,48.99207600000001", + "startLcPosition": "53", + "display_type": "PARKING", + "subtitle": "K\u00e4lbling Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.233217", + "lat": "48.99207600000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.233217,48.99207600000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081580", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.263568,49.04373600000002,9.263568,49.04373600000002", + "point": "9.263568,49.04373600000002", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Wunnenstein Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.263568", + "lat": "49.04373600000002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 111", + "LKW Stellpl\u00e4tze: 38" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.263568,49.04373600000002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081090", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.264187,49.045826999999996,9.264187,49.045826999999996", + "point": "9.264187,49.045826999999996", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Wunnenstein West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.264187", + "lat": "49.045826999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 92", + "LKW Stellpl\u00e4tze: 45" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.264187,49.045826999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081085", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.299914,49.12067500000001,9.299914,49.12067500000001", + "point": "9.299914,49.12067500000001", + "startLcPosition": "56", + "display_type": "PARKING", + "subtitle": "Reisberg", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.299914", + "lat": "49.12067500000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.299914,49.12067500000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081575", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.293131,49.092431999999995,9.293131,49.092431999999995", + "point": "9.293131,49.092431999999995", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Grafenwald", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.293131", + "lat": "49.092431999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.293131,49.092431999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081080", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.3161,49.170566,9.3161,49.170566", + "point": "9.3161,49.170566", + "startLcPosition": "58", + "display_type": "PARKING", + "subtitle": "Eberbachtal", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.3161", + "lat": "49.170566" + }, + "description": [ + "PKW Stellpl\u00e4tze: 2", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.3161,49.170566" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081075", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.349554,49.197559999999996,9.349554,49.197559999999996", + "point": "9.349554,49.197559999999996", + "startLcPosition": "59", + "display_type": "PARKING", + "subtitle": "Sulzrain", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.349554", + "lat": "49.197559999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.349554,49.197559999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081570", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.351393000000002,49.194849,9.351393000000002,49.194849", + "point": "9.351393000000002,49.194849", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Kiefertal", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.351393000000002", + "lat": "49.194849" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.351393000000002,49.194849" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081070", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.351446000000001,49.272583000000004,9.351446000000001,49.272583000000004", + "point": "9.351446000000001,49.272583000000004", + "startLcPosition": "60", + "display_type": "PARKING", + "subtitle": "Egerten", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.351446000000001", + "lat": "49.272583000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.351446000000001,49.272583000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081565", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.353832,49.260942000000014,9.353832,49.260942000000014", + "point": "9.353832,49.260942000000014", + "startLcPosition": "61", + "display_type": "PARKING", + "subtitle": "Hegteil", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.353832", + "lat": "49.260942000000014" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.353832,49.260942000000014" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081060", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.426682000000003,49.363207,9.426682000000003,49.363207", + "point": "9.426682000000003,49.363207", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Gro\u00dfer Wald", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.426682000000003", + "lat": "49.363207" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.426682000000003,49.363207" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081550", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.459790000000002,49.380132999999994,9.459790000000002,49.380132999999994", + "point": "9.459790000000002,49.380132999999994", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Denzer", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.459790000000002", + "lat": "49.380132999999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.459790000000002,49.380132999999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081065", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.413232,49.32585000000001,9.413232,49.32585000000001", + "point": "9.413232,49.32585000000001", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Jagsttal West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.413232", + "lat": "49.32585000000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 43" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.413232,49.32585000000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081560", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.414438000000002,49.32338200000001,9.414438000000002,49.32338200000001", + "point": "9.414438000000002,49.32338200000001", + "startLcPosition": "62", + "display_type": "PARKING", + "subtitle": "Jagsttal Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.414438000000002", + "lat": "49.32338200000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 41" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.414438000000002,49.32338200000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081050", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.503764000000004,49.432204999999996,9.503764000000004,49.432204999999996", + "point": "9.503764000000004,49.432204999999996", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Seegrund", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.503764000000004", + "lat": "49.432204999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.503764000000004,49.432204999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081055", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.453305000000002,49.375074,9.453305000000002,49.375074", + "point": "9.453305000000002,49.375074", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Limes", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.453305000000002", + "lat": "49.375074" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.453305000000002,49.375074" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081555", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.418227000000002,49.35775700000001,9.418227000000002,49.35775700000001", + "point": "9.418227000000002,49.35775700000001", + "startLcPosition": "63", + "display_type": "PARKING", + "subtitle": "Volkshausen", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.418227000000002", + "lat": "49.35775700000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.418227000000002,49.35775700000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-004538", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.531084000000003,49.453746,9.531084000000003,49.453746", + "point": "9.531084000000003,49.453746", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "Holzspitze Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.531084000000003", + "lat": "49.453746" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.531084000000003,49.453746" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BW-081045", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.532935000000002,49.45625000000001,9.532935000000002,49.45625000000001", + "point": "9.532935000000002,49.45625000000001", + "startLcPosition": "64", + "display_type": "PARKING", + "subtitle": "Holzspitze West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.532935000000002", + "lat": "49.45625000000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.532935000000002,49.45625000000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081040", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.564782000000005,49.489335000000004,9.564782000000005,49.489335000000004", + "point": "9.564782000000005,49.489335000000004", + "startLcPosition": "65", + "display_type": "PARKING", + "subtitle": "Lindich", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.564782000000005", + "lat": "49.489335000000004" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.564782000000005,49.489335000000004" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081035", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.577779000000005,49.53245199999999,9.577779000000005,49.53245199999999", + "point": "9.577779000000005,49.53245199999999", + "startLcPosition": "65", + "display_type": "PARKING", + "subtitle": "Brombach", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.577779000000005", + "lat": "49.53245199999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.577779000000005,49.53245199999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081030", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.61499700000001,49.558875,9.61499700000001,49.558875", + "point": "9.61499700000001,49.558875", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "L\u00f6chle West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.61499700000001", + "lat": "49.558875" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.61499700000001,49.558875" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081025", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.67029500000001,49.593029999999985,9.67029500000001,49.593029999999985", + "point": "9.67029500000001,49.593029999999985", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Steinbacher H\u00f6he West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.67029500000001", + "lat": "49.593029999999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.67029500000001,49.593029999999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081535", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.569169000000006,49.515935999999996,9.569169000000006,49.515935999999996", + "point": "9.569169000000006,49.515935999999996", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Seewald", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.569169000000006", + "lat": "49.515935999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.569169000000006,49.515935999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081540", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.564807000000005,49.477034,9.564807000000005,49.477034", + "point": "9.564807000000005,49.477034", + "startLcPosition": "66", + "display_type": "PARKING", + "subtitle": "Herrenholz", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.564807000000005", + "lat": "49.477034" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.564807000000005,49.477034" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081525", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.66919500000001,49.591004999999996,9.66919500000001,49.591004999999996", + "point": "9.66919500000001,49.591004999999996", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Steinbacher H\u00f6he Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.66919500000001", + "lat": "49.591004999999996" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.66919500000001,49.591004999999996" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081530", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.622764000000007,49.561397,9.622764000000007,49.561397", + "point": "9.622764000000007,49.561397", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "L\u00f6chle Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.622764000000007", + "lat": "49.561397" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.622764000000007,49.561397" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.77948000000002,49.68104299999999,9.77948000000002,49.68104299999999", + "point": "9.77948000000002,49.68104299999999", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Gerchsheimer Grund", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.77948000000002", + "lat": "49.68104299999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.77948000000002,49.68104299999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.804947000000029,49.708805999999974,9.804947000000029,49.708805999999974", + "point": "9.804947000000029,49.708805999999974", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Spitalwald West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.804947000000029", + "lat": "49.708805999999974" + }, + "description": [ + "PKW Stellpl\u00e4tze: 42", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.804947000000029,49.708805999999974" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081515", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.729184000000016,49.622088999999995,9.729184000000016,49.622088999999995", + "point": "9.729184000000016,49.622088999999995", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Ob der Tauber Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.729184000000016", + "lat": "49.622088999999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 83", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.729184000000016,49.622088999999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081015", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.728854000000016,49.62840799999999,9.728854000000016,49.62840799999999", + "point": "9.728854000000016,49.62840799999999", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Ob der Tauber West", + "title": "A81 | Schaffhausen", + "coordinate": { + "long": "9.728854000000016", + "lat": "49.62840799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 82", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.728854000000016,49.62840799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant/Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-fax", + "description": "Faxger\u00e4t", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-phone-square", + "description": "Telefon", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081510", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.771890000000024,49.67169199999997,9.771890000000024,49.67169199999997", + "point": "9.771890000000024,49.67169199999997", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "Grundgraben", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.771890000000024", + "lat": "49.67169199999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.771890000000024,49.67169199999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-081505", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.801243000000028,49.704904999999975,9.801243000000028,49.704904999999975", + "point": "9.801243000000028,49.704904999999975", + "startLcPosition": "69", + "display_type": "PARKING", + "subtitle": "Spitalwald Ost", + "title": "A81 | W\u00fcrzburg", + "coordinate": { + "long": "9.801243000000028", + "lat": "49.704904999999975" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.801243000000028,49.704904999999975" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A92": { + "parking_lorry": [ + { + "identifier": "DE-BY-000393", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.739795000013478,48.36752499996065,11.739795000013478,48.36752499996065", + "point": "11.739795000013478,48.36752499996065", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Isarau W", + "title": "A92 | M\u00fcnchen", + "coordinate": { + "long": "11.739795000013478", + "lat": "48.36752499996065" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.739795000013478,48.36752499996065" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000392", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.740956000013504,48.36753699996055,11.740956000013504,48.36753699996055", + "point": "11.740956000013504,48.36753699996055", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "Isarau O", + "title": "A92 | Deggendorf", + "coordinate": { + "long": "11.740956000013504", + "lat": "48.36753699996055" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.740956000013504,48.36753699996055" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000396", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.951679000018324,48.43754699993845,11.951679000018324,48.43754699993845", + "point": "11.951679000018324,48.43754699993845", + "startLcPosition": "10", + "display_type": "PARKING", + "subtitle": "Moosburger Au W", + "title": "A92 | M\u00fcnchen", + "coordinate": { + "long": "11.951679000018324", + "lat": "48.43754699993845" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.951679000018324,48.43754699993845" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000395", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.953787000018375,48.437905999938174,11.953787000018375,48.437905999938174", + "point": "11.953787000018375,48.437905999938174", + "startLcPosition": "12", + "display_type": "PARKING", + "subtitle": "Moosburger Au O", + "title": "A92 | Deggendorf", + "coordinate": { + "long": "11.953787000018375", + "lat": "48.437905999938174" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.953787000018375,48.437905999938174" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000397", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.285010000026059,48.61721299988279,12.285010000026059,48.61721299988279", + "point": "12.285010000026059,48.61721299988279", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Mettenbacher Moos", + "title": "A92 | M\u00fcnchen", + "coordinate": { + "long": "12.285010000026059", + "lat": "48.61721299988279" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.285010000026059,48.61721299988279" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000398", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.292520000026231,48.618137999881164,12.292520000026231,48.618137999881164", + "point": "12.292520000026231,48.618137999881164", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Wattenbacher Au", + "title": "A92 | Deggendorf", + "coordinate": { + "long": "12.292520000026231", + "lat": "48.618137999881164" + }, + "description": [ + "PKW Stellpl\u00e4tze: 17", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.292520000026231,48.618137999881164" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000401", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.452399000029322,48.65176899984204,12.452399000029322,48.65176899984204", + "point": "12.452399000029322,48.65176899984204", + "startLcPosition": "23", + "display_type": "PARKING", + "subtitle": "Teisbacher Moos W", + "title": "A92 | M\u00fcnchen", + "coordinate": { + "long": "12.452399000029322", + "lat": "48.65176899984204" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.452399000029322,48.65176899984204" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000402", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.453391000029344,48.65098399984177,12.453391000029344,48.65098399984177", + "point": "12.453391000029344,48.65098399984177", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Teisbacher Moos O", + "title": "A92 | Deggendorf", + "coordinate": { + "long": "12.453391000029344", + "lat": "48.65098399984177" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.453391000029344,48.65098399984177" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000404", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.653704000030965,48.69051999977809,12.653704000030965,48.69051999977809", + "point": "12.653704000030965,48.69051999977809", + "startLcPosition": "26", + "display_type": "PARKING", + "subtitle": "Pilstinger Moos W", + "title": "A92 | M\u00fcnchen", + "coordinate": { + "long": "12.653704000030965", + "lat": "48.69051999977809" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.653704000030965,48.69051999977809" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000403", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.656263000030973,48.68998899977715,12.656263000030973,48.68998899977715", + "point": "12.656263000030973,48.68998899977715", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Pilstinger Moos O", + "title": "A92 | Deggendorf", + "coordinate": { + "long": "12.656263000030973", + "lat": "48.68998899977715" + }, + "description": [ + "PKW Stellpl\u00e4tze: 18", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.656263000030973,48.68998899977715" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000405", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.875095000025931,48.802377999683856,12.875095000025931,48.802377999683856", + "point": "12.875095000025931,48.802377999683856", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Bayerwaldblick West", + "title": "A92 | M\u00fcnchen", + "coordinate": { + "long": "12.875095000025931", + "lat": "48.802377999683856" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.875095000025931,48.802377999683856" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000406", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.877040000025866,48.801615999682916,12.877040000025866,48.801615999682916", + "point": "12.877040000025866,48.801615999682916", + "startLcPosition": "34", + "display_type": "PARKING", + "subtitle": "Bayerwaldblick Ost", + "title": "A92 | Deggendorf", + "coordinate": { + "long": "12.877040000025866", + "lat": "48.801615999682916" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.877040000025866,48.801615999682916" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + } + ] + } + ] + }, + "A93": { + "parking_lorry": [ + { + "identifier": "DE-BY-000415", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.201877000028658,47.61099999990139,12.201877000028658,47.61099999990139", + "point": "12.201877000028658,47.61099999990139", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Inntal (Ost) O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.201877000028658", + "lat": "47.61099999990139" + }, + "description": [ + "PKW Stellpl\u00e4tze: 54", + "LKW Stellpl\u00e4tze: 66" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.201877000028658,47.61099999990139" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000416", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.20055900002861,47.61239199990163,12.20055900002861,47.61239199990163", + "point": "12.20055900002861,47.61239199990163", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Inntal (West) W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.20055900002861", + "lat": "47.61239199990163" + }, + "description": [ + "PKW Stellpl\u00e4tze: 58", + "LKW Stellpl\u00e4tze: 93" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.20055900002861,47.61239199990163" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000414", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.164577000027087,47.68431299990794,12.164577000027087,47.68431299990794", + "point": "12.164577000027087,47.68431299990794", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Wildbarren W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.164577000027087", + "lat": "47.68431299990794" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.164577000027087,47.68431299990794" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000413", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.165313000027114,47.684469999907805,12.165313000027114,47.684469999907805", + "point": "12.165313000027114,47.684469999907805", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Kranzhorn O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.165313000027114", + "lat": "47.684469999907805" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.165313000027114,47.684469999907805" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000412", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.159561000026853,47.70118599990878,12.159561000026853,47.70118599990878", + "point": "12.159561000026853,47.70118599990878", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Kirnstein West", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.159561000026853", + "lat": "47.70118599990878" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.159561000026853,47.70118599990878" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000411", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.150311000026512,47.71111899991035,12.150311000026512,47.71111899991035", + "point": "12.150311000026512,47.71111899991035", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Gletschergarten W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.150311000026512", + "lat": "47.71111899991035" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.150311000026512,47.71111899991035" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000410", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.130931000025795,47.73294999991356,12.130931000025795,47.73294999991356", + "point": "12.130931000025795,47.73294999991356", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Petersberg", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.130931000025795", + "lat": "47.73294999991356" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.130931000025795,47.73294999991356" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000409", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.13189800002582,47.73388899991339,12.13189800002582,47.73388899991339", + "point": "12.13189800002582,47.73388899991339", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "Heuberg", + "title": "A93 | Hof", + "coordinate": { + "long": "12.13189800002582", + "lat": "47.73388899991339" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.13189800002582,47.73388899991339" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000407", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.092431000024382,47.78275199991965,12.092431000024382,47.78275199991965", + "point": "12.092431000024382,47.78275199991965", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Nickelheim O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.092431000024382", + "lat": "47.78275199991965" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.092431000024382,47.78275199991965" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000443", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.854951000015285,48.739260999949316,11.854951000015285,48.739260999949316", + "point": "11.854951000015285,48.739260999949316", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Deutschmeister W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "11.854951000015285", + "lat": "48.739260999949316" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.854951000015285,48.739260999949316" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000444", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.855920000015304,48.73896599994922,11.855920000015304,48.73896599994922", + "point": "11.855920000015304,48.73896599994922", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Deutschmeister O", + "title": "A93 | Hof", + "coordinate": { + "long": "11.855920000015304", + "lat": "48.73896599994922" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.855920000015304,48.73896599994922" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000441", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.975214000017779,48.833513999935,11.975214000017779,48.833513999935", + "point": "11.975214000017779,48.833513999935", + "startLcPosition": "22", + "display_type": "PARKING", + "subtitle": "Gro\u00dfmu\u00df W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "11.975214000017779", + "lat": "48.833513999935" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.975214000017779,48.833513999935" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000442", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.976146000017803,48.83298699993489,11.976146000017803,48.83298699993489", + "point": "11.976146000017803,48.83298699993489", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Gro\u00dfmu\u00df O", + "title": "A93 | Hof", + "coordinate": { + "long": "11.976146000017803", + "lat": "48.83298699993489" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.976146000017803,48.83298699993489" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000440", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.093083000020073,48.96108399991782,12.093083000020073,48.96108399991782", + "point": "12.093083000020073,48.96108399991782", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Pentling O", + "title": "A93 | Hof / Kiefersfelden", + "coordinate": { + "long": "12.093083000020073", + "lat": "48.96108399991782" + }, + "description": [ + "PKW Stellpl\u00e4tze: 55", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.093083000020073,48.96108399991782" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000439", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.098739000019778,49.07611499991676,12.098739000019778,49.07611499991676", + "point": "12.098739000019778,49.07611499991676", + "startLcPosition": "37", + "display_type": "PARKING", + "subtitle": "Benhof W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.098739000019778", + "lat": "49.07611499991676" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.098739000019778,49.07611499991676" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000438", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.097822000019713,49.088961999916904,12.097822000019713,49.088961999916904", + "point": "12.097822000019713,49.088961999916904", + "startLcPosition": "40", + "display_type": "PARKING", + "subtitle": "Regendorf O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.097822000019713", + "lat": "49.088961999916904" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.097822000019713,49.088961999916904" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000436", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.116212000019791,49.17356999991378,12.116212000019791,49.17356999991378", + "point": "12.116212000019791,49.17356999991378", + "startLcPosition": "42", + "display_type": "PARKING", + "subtitle": "Haberhof W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.116212000019791", + "lat": "49.17356999991378" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.116212000019791,49.17356999991378" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000437", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.116469000019798,49.171956999913746,12.116469000019798,49.171956999913746", + "point": "12.116469000019798,49.171956999913746", + "startLcPosition": "43", + "display_type": "PARKING", + "subtitle": "Haberhof O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.116469000019798", + "lat": "49.171956999913746" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.116469000019798,49.171956999913746" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000434", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.140592000019836,49.28806899990951,12.140592000019836,49.28806899990951", + "point": "12.140592000019836,49.28806899990951", + "startLcPosition": "45", + "display_type": "PARKING", + "subtitle": "Hirtlohe W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.140592000019836", + "lat": "49.28806899990951" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.140592000019836,49.28806899990951" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000433", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.1522500000199,49.32960099990743,12.1522500000199,49.32960099990743", + "point": "12.1522500000199,49.32960099990743", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Kronstetten W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.1522500000199", + "lat": "49.32960099990743" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.1522500000199,49.32960099990743" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000435", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.142403000019875,49.2877379999092,12.142403000019875,49.2877379999092", + "point": "12.142403000019875,49.2877379999092", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Hirtlohe O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.142403000019875", + "lat": "49.2877379999092" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.142403000019875,49.2877379999092" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000431", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.152050000019734,49.368499999907414,12.152050000019734,49.368499999907414", + "point": "12.152050000019734,49.368499999907414", + "startLcPosition": "50", + "display_type": "PARKING", + "subtitle": "Lindenloh West", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.152050000019734", + "lat": "49.368499999907414" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.152050000019734,49.368499999907414" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000432", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.150750000019796,49.34775199990767,12.150750000019796,49.34775199990767", + "point": "12.150750000019796,49.34775199990767", + "startLcPosition": "51", + "display_type": "PARKING", + "subtitle": "Freih\u00f6ls O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.150750000019796", + "lat": "49.34775199990767" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.150750000019796,49.34775199990767" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008678", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.190873000019996,49.47503199990023,12.190873000019996,49.47503199990023", + "point": "12.190873000019996,49.47503199990023", + "startLcPosition": "53", + "display_type": "PARKING", + "subtitle": "Schlossberg W (bisher Pfreimd W)", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.190873000019996", + "lat": "49.47503199990023" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.190873000019996,49.47503199990023" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008677", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.193590000020041,49.47552399989972,12.193590000020041,49.47552399989972", + "point": "12.193590000020041,49.47552399989972", + "startLcPosition": "54", + "display_type": "PARKING", + "subtitle": "Schlossberg O (bisher Pfreimd O)", + "title": "A93 | Hof", + "coordinate": { + "long": "12.193590000020041", + "lat": "49.47552399989972" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 34" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.193590000020041,49.47552399989972" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000428", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.121645000018386,49.570673999912415,12.121645000018386,49.570673999912415", + "point": "12.121645000018386,49.570673999912415", + "startLcPosition": "57", + "display_type": "PARKING", + "subtitle": "Gr\u00fcnau W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.121645000018386", + "lat": "49.570673999912415" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.121645000018386,49.570673999912415" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000429", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.123890000018422,49.571465999912036,12.123890000018422,49.571465999912036", + "point": "12.123890000018422,49.571465999912036", + "startLcPosition": "59", + "display_type": "PARKING", + "subtitle": "Gr\u00fcnau O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.123890000018422", + "lat": "49.571465999912036" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.123890000018422,49.571465999912036" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000426", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.162990000018244,49.782108999904985,12.162990000018244,49.782108999904985", + "point": "12.162990000018244,49.782108999904985", + "startLcPosition": "67", + "display_type": "PARKING", + "subtitle": "Scherreuth West", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.162990000018244", + "lat": "49.782108999904985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.162990000018244,49.782108999904985" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000427", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.164065000018258,49.781691999904794,12.164065000018258,49.781691999904794", + "point": "12.164065000018258,49.781691999904794", + "startLcPosition": "68", + "display_type": "PARKING", + "subtitle": "Angerholz Ost", + "title": "A93 | Hof", + "coordinate": { + "long": "12.164065000018258", + "lat": "49.781691999904794" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.164065000018258,49.781691999904794" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000424", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.172374000018147,49.839711999903216,12.172374000018147,49.839711999903216", + "point": "12.172374000018147,49.839711999903216", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "Waldnaabtal W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.172374000018147", + "lat": "49.839711999903216" + }, + "description": [ + "PKW Stellpl\u00e4tze: 101", + "LKW Stellpl\u00e4tze: 69" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.172374000018147,49.839711999903216" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000423", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.17263300001816,49.83658599990317,12.17263300001816,49.83658599990317", + "point": "12.17263300001816,49.83658599990317", + "startLcPosition": "70", + "display_type": "PARKING", + "subtitle": "Waldnaabtal O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.17263300001816", + "lat": "49.83658599990317" + }, + "description": [ + "PKW Stellpl\u00e4tze: 115", + "LKW Stellpl\u00e4tze: 68" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.17263300001816,49.83658599990317" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000420", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.1173200000166,50.02737199991267,12.1173200000166,50.02737199991267", + "point": "12.1173200000166,50.02737199991267", + "startLcPosition": "77", + "display_type": "PARKING", + "subtitle": "Peuntbach W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.1173200000166", + "lat": "50.02737199991267" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.1173200000166,50.02737199991267" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000421", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.118578000016612,50.02884399991248,12.118578000016612,50.02884399991248", + "point": "12.118578000016612,50.02884399991248", + "startLcPosition": "79", + "display_type": "PARKING", + "subtitle": "Peuntbach O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.118578000016612", + "lat": "50.02884399991248" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.118578000016612,50.02884399991248" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000417", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.022166000014252,50.32290699992726,12.022166000014252,50.32290699992726", + "point": "12.022166000014252,50.32290699992726", + "startLcPosition": "89", + "display_type": "PARKING", + "subtitle": "B\u00e4renholz W", + "title": "A93 | Kiefersfelden", + "coordinate": { + "long": "12.022166000014252", + "lat": "50.32290699992726" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.022166000014252,50.32290699992726" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000418", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.024921000014286,50.324968999926895,12.024921000014286,50.324968999926895", + "point": "12.024921000014286,50.324968999926895", + "startLcPosition": "91", + "display_type": "PARKING", + "subtitle": "B\u00e4renholz O", + "title": "A93 | Hof", + "coordinate": { + "long": "12.024921000014286", + "lat": "50.324968999926895" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 21" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.024921000014286,50.324968999926895" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A94": { + "parking_lorry": [ + { + "identifier": "DE-BY-000445", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.924403000018275,48.195837999942036,11.924403000018275,48.195837999942036", + "point": "11.924403000018275,48.195837999942036", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "Auwiesen", + "title": "A94 | M\u00fcnchen", + "coordinate": { + "long": "11.924403000018275", + "lat": "48.195837999942036" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.924403000018275,48.195837999942036" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000446", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.926253000018319,48.19601599994181,11.926253000018319,48.19601599994181", + "point": "11.926253000018319,48.19601599994181", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Holzfeld", + "title": "A94 | Kreuz Pocking", + "coordinate": { + "long": "11.926253000018319", + "lat": "48.19601599994181" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.926253000018319,48.19601599994181" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-008679", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.187455000025277,48.259355999902766,12.187455000025277,48.259355999902766", + "point": "12.187455000025277,48.259355999902766", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "A 94 - km 36,35 - Nordseite - PWC", + "title": "A94 | M\u00fcnchen", + "coordinate": { + "long": "12.187455000025277", + "lat": "48.259355999902766" + }, + "description": [ + "PKW Stellpl\u00e4tze: 29", + "LKW Stellpl\u00e4tze: 49" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.187455000025277,48.259355999902766" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-008680", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "12.187411000025284,48.25801999990277,12.187411000025284,48.25801999990277", + "point": "12.187411000025284,48.25801999990277", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "A 94 - km 36,35 - S\u00fcdseite - PWC", + "title": "A94 | Kreuz Pocking", + "coordinate": { + "long": "12.187411000025284", + "lat": "48.25801999990277" + }, + "description": [ + "PKW Stellpl\u00e4tze: 28", + "LKW Stellpl\u00e4tze: 46" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 12.187411000025284,48.25801999990277" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A95": { + "parking_lorry": [ + { + "identifier": "DE-BY-000455", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.237516000005593,47.65902399998848,11.237516000005593,47.65902399998848", + "point": "11.237516000005593,47.65902399998848", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "M\u00fchlweiher RA A95 km 58,9 W", + "title": "A95 | Garmisch-Partenkirchen", + "coordinate": { + "long": "11.237516000005593", + "lat": "47.65902399998848" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.237516000005593,47.65902399998848" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000456", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.238009000005597,47.65863399998845,11.238009000005597,47.65863399998845", + "point": "11.238009000005597,47.65863399998845", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Ostermoos RA A95 km 59,3 O", + "title": "A95 | M\u00fcnchen", + "coordinate": { + "long": "11.238009000005597", + "lat": "47.65863399998845" + }, + "description": [ + "PKW Stellpl\u00e4tze: 13", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.238009000005597,47.65863399998845" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000453", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.327418000006748,47.71512599998538,11.327418000006748,47.71512599998538", + "point": "11.327418000006748,47.71512599998538", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "RA A95 km 49,2 W", + "title": "A95 | Garmisch-Partenkirchen", + "coordinate": { + "long": "11.327418000006748", + "lat": "47.71512599998538" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.327418000006748,47.71512599998538" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000454", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.328306000006766,47.709406999985355,11.328306000006766,47.709406999985355", + "point": "11.328306000006766,47.709406999985355", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "RA A95 km 50,2 O", + "title": "A95 | M\u00fcnchen", + "coordinate": { + "long": "11.328306000006766", + "lat": "47.709406999985355" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.328306000006766,47.709406999985355" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000451", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.38145600000744,47.85143899998318,11.38145600000744,47.85143899998318", + "point": "11.38145600000744,47.85143899998318", + "startLcPosition": "7", + "display_type": "PARKING", + "subtitle": "RA A95 km 32,9 W", + "title": "A95 | Garmisch-Partenkirchen", + "coordinate": { + "long": "11.38145600000744", + "lat": "47.85143899998318" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.38145600000744,47.85143899998318" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000452", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.382529000007457,47.85108999998313,11.382529000007457,47.85108999998313", + "point": "11.382529000007457,47.85108999998313", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "RA A95 km 33,1 O", + "title": "A95 | M\u00fcnchen", + "coordinate": { + "long": "11.382529000007457", + "lat": "47.85108999998313" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.382529000007457,47.85108999998313" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000449", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.401948000007694,47.927961999982266,11.401948000007694,47.927961999982266", + "point": "11.401948000007694,47.927961999982266", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "H\u00f6henrain W", + "title": "A95 | Garmisch-Partenkirchen", + "coordinate": { + "long": "11.401948000007694", + "lat": "47.927961999982266" + }, + "description": [ + "PKW Stellpl\u00e4tze: 61", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.401948000007694,47.927961999982266" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000450", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.403185000007712,47.927017999982205,11.403185000007712,47.927017999982205", + "point": "11.403185000007712,47.927017999982205", + "startLcPosition": "9", + "display_type": "PARKING", + "subtitle": "H\u00f6henrain O", + "title": "A95 | M\u00fcnchen", + "coordinate": { + "long": "11.403185000007712", + "lat": "47.927017999982205" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.403185000007712,47.927017999982205" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000448", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.425972000007983,48.029475999981145,11.425972000007983,48.029475999981145", + "point": "11.425972000007983,48.029475999981145", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "RA A95 km 11,7 W", + "title": "A95 | Garmisch-Partenkirchen", + "coordinate": { + "long": "11.425972000007983", + "lat": "48.029475999981145" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.425972000007983,48.029475999981145" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000447", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.432202000008074,48.03681999998083,11.432202000008074,48.03681999998083", + "point": "11.432202000008074,48.03681999998083", + "startLcPosition": "13", + "display_type": "PARKING", + "subtitle": "RA A95 km 11,2 O", + "title": "A95 | M\u00fcnchen", + "coordinate": { + "long": "11.432202000008074", + "lat": "48.03681999998083" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.432202000008074,48.03681999998083" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A96": { + "parking_lorry": [ + { + "identifier": "DE-BW-096505", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.784352000000027,47.68205499999997,9.784352000000027,47.68205499999997", + "point": "9.784352000000027,47.68205499999997", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Ettensweiler W", + "title": "A96 | Bregenz", + "coordinate": { + "long": "9.784352000000027", + "lat": "47.68205499999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.784352000000027,47.68205499999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-096005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.78562500000003,47.681745999999976,9.78562500000003,47.681745999999976", + "point": "9.78562500000003,47.681745999999976", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Humbrechts O", + "title": "A96 | M\u00fcnchen", + "coordinate": { + "long": "9.78562500000003", + "lat": "47.681745999999976" + }, + "description": [ + "PKW Stellpl\u00e4tze: 14", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.78562500000003,47.681745999999976" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-096510", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.982218000000087,47.801172999999906,9.982218000000087,47.801172999999906", + "point": "9.982218000000087,47.801172999999906", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Winterberg W", + "title": "A96 | Bregenz", + "coordinate": { + "long": "9.982218000000087", + "lat": "47.801172999999906" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 31" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.982218000000087,47.801172999999906" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000457", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.117940000000166,47.97096599999981,10.117940000000166,47.97096599999981", + "point": "10.117940000000166,47.97096599999981", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Buxheimer Wald ", + "title": "A96 | M\u00fcnchen", + "coordinate": { + "long": "10.117940000000166", + "lat": "47.97096599999981" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.117940000000166,47.97096599999981" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000458", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.237190000000274,48.004475999999656,10.237190000000274,48.004475999999656", + "point": "10.237190000000274,48.004475999999656", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Burgacker S", + "title": "A96 | M\u00fcnchen", + "coordinate": { + "long": "10.237190000000274", + "lat": "48.004475999999656" + }, + "description": [ + "PKW Stellpl\u00e4tze: 22", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.237190000000274,48.004475999999656" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000459", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.238372000000275,48.005896999999656,10.238372000000275,48.005896999999656", + "point": "10.238372000000275,48.005896999999656", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Burgacker N", + "title": "A96 | Bregenz", + "coordinate": { + "long": "10.238372000000275", + "lat": "48.005896999999656" + }, + "description": [ + "PKW Stellpl\u00e4tze: 16", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.238372000000275,48.005896999999656" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000461", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.419946000000548,48.03424999999925,10.419946000000548,48.03424999999925", + "point": "10.419946000000548,48.03424999999925", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Kammlachtal N", + "title": "A96 | Bregenz", + "coordinate": { + "long": "10.419946000000548", + "lat": "48.03424999999925" + }, + "description": [ + "PKW Stellpl\u00e4tze: 23", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.419946000000548,48.03424999999925" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000460", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.419042000000546,48.03343699999923,10.419042000000546,48.03343699999923", + "point": "10.419042000000546,48.03343699999923", + "startLcPosition": "24", + "display_type": "PARKING", + "subtitle": "Kammlachtal S", + "title": "A96 | M\u00fcnchen", + "coordinate": { + "long": "10.419042000000546", + "lat": "48.03343699999923" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.419042000000546,48.03343699999923" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000463", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.665471000001231,48.031135999998014,10.665471000001231,48.031135999998014", + "point": "10.665471000001231,48.031135999998014", + "startLcPosition": "28", + "display_type": "PARKING", + "subtitle": "Wertachtal Nord", + "title": "A96 | Bregenz", + "coordinate": { + "long": "10.665471000001231", + "lat": "48.031135999998014" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.665471000001231,48.031135999998014" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000464", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.671031000001252,48.02869999999798,10.671031000001252,48.02869999999798", + "point": "10.671031000001252,48.02869999999798", + "startLcPosition": "29", + "display_type": "PARKING", + "subtitle": "Wertachtal S\u00fcd", + "title": "A96 | M\u00fcnchen", + "coordinate": { + "long": "10.671031000001252", + "lat": "48.02869999999798" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.671031000001252,48.02869999999798" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000465", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.846458000002066,48.05895799999631,10.846458000002066,48.05895799999631", + "point": "10.846458000002066,48.05895799999631", + "startLcPosition": "32", + "display_type": "PARKING", + "subtitle": "Lechwiesen N", + "title": "A96 | Bregenz", + "coordinate": { + "long": "10.846458000002066", + "lat": "48.05895799999631" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 48" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.846458000002066,48.05895799999631" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "tollTerminal.notAvailable", + "style": "not-available" + } + ] + }, + { + "identifier": "DE-BY-000466", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.847978000002076,48.058541999996315,10.847978000002076,48.058541999996315", + "point": "10.847978000002076,48.058541999996315", + "startLcPosition": "33", + "display_type": "PARKING", + "subtitle": "Lechwiesen S", + "title": "A96 | M\u00fcnchen", + "coordinate": { + "long": "10.847978000002076", + "lat": "48.058541999996315" + }, + "description": [ + "PKW Stellpl\u00e4tze: 71", + "LKW Stellpl\u00e4tze: 50" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.847978000002076,48.058541999996315" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000467", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.175831000004676,48.08297599999016,11.175831000004676,48.08297599999016", + "point": "11.175831000004676,48.08297599999016", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Martinsberg S", + "title": "A96 | M\u00fcnchen", + "coordinate": { + "long": "11.175831000004676", + "lat": "48.08297599999016" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 28" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.175831000004676,48.08297599999016" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000468", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.176808000004687,48.084120999990134,11.176808000004687,48.084120999990134", + "point": "11.176808000004687,48.084120999990134", + "startLcPosition": "41", + "display_type": "PARKING", + "subtitle": "Martinsberg N", + "title": "A96 | Bregenz", + "coordinate": { + "long": "11.176808000004687", + "lat": "48.084120999990134" + }, + "description": [ + "PKW Stellpl\u00e4tze: 27", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.176808000004687,48.084120999990134" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000469", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.34559000000673,48.10967899998457,11.34559000000673,48.10967899998457", + "point": "11.34559000000673,48.10967899998457", + "startLcPosition": "46", + "display_type": "PARKING", + "subtitle": "Kreuzlinger Forst-Nord", + "title": "A96 | Bregenz", + "coordinate": { + "long": "11.34559000000673", + "lat": "48.10967899998457" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 24" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.34559000000673,48.10967899998457" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000470", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.34852000000677,48.10954499998446,11.34852000000677,48.10954499998446", + "point": "11.34852000000677,48.10954499998446", + "startLcPosition": "47", + "display_type": "PARKING", + "subtitle": "Kreuzlinger Forst-S\u00fcd", + "title": "A96 | M\u00fcnchen", + "coordinate": { + "long": "11.34852000000677", + "lat": "48.10954499998446" + }, + "description": [ + "PKW Stellpl\u00e4tze: 26", + "LKW Stellpl\u00e4tze: 17" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.34852000000677,48.10954499998446" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A98": { + "parking_lorry": [ + { + "identifier": "DE-BW-098005", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.630339999999529,47.62931099999939,7.630339999999529,47.62931099999939", + "point": "7.630339999999529,47.62931099999939", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Luisenhof A98 AD M\u00e4rkt-Schaffhausen", + "title": "A98 | Stockach", + "coordinate": { + "long": "7.630339999999529", + "lat": "47.62931099999939" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.630339999999529,47.62931099999939" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-098605", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.96411,47.83266100000002,8.96411,47.83266100000002", + "point": "8.96411,47.83266100000002", + "startLcPosition": "20", + "display_type": "PARKING", + "subtitle": "Nellenburg-Nord", + "title": "A98 | Weil am Rhein", + "coordinate": { + "long": "8.96411", + "lat": "47.83266100000002" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.96411,47.83266100000002" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BW-098105", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.95703,47.829651000000005,8.95703,47.829651000000005", + "point": "8.95703,47.829651000000005", + "startLcPosition": "21", + "display_type": "PARKING", + "subtitle": "Nellenburg-S\u00fcd", + "title": "A98 | Stockach", + "coordinate": { + "long": "8.95703", + "lat": "47.829651000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.95703,47.829651000000005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A99": { + "parking_lorry": [ + { + "identifier": "DE-BY-000471", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.571342000010278,48.22689099997317,11.571342000010278,48.22689099997317", + "point": "11.571342000010278,48.22689099997317", + "startLcPosition": "11", + "display_type": "PARKING", + "subtitle": "Neuherberg S", + "title": "A99 | Kreuz M\u00fcnchen-S\u00fcd (A8/A995)", + "coordinate": { + "long": "11.571342000010278", + "lat": "48.22689099997317" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 11" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.571342000010278,48.22689099997317" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000473", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.727309000013525,48.18043999996184,11.727309000013525,48.18043999996184", + "point": "11.727309000013525,48.18043999996184", + "startLcPosition": "14", + "display_type": "PARKING", + "subtitle": "Aschheim O", + "title": "A99 | Kreuz M\u00fcnchen-S\u00fcdwest (A96)", + "coordinate": { + "long": "11.727309000013525", + "lat": "48.18043999996184" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 5" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.727309000013525,48.18043999996184" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000472", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.726418000013512,48.17979599996193,11.726418000013512,48.17979599996193", + "point": "11.726418000013512,48.17979599996193", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Aschheim W", + "title": "A99 | Kreuz M\u00fcnchen-S\u00fcd (A8/A995)", + "coordinate": { + "long": "11.726418000013512", + "lat": "48.17979599996193" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.726418000013512,48.17979599996193" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BY-000475", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.76047800001438,48.12406699995902,11.76047800001438,48.12406699995902", + "point": "11.76047800001438,48.12406699995902", + "startLcPosition": "17", + "display_type": "PARKING", + "subtitle": "Vaterstetten O", + "title": "A99 | Kreuz M\u00fcnchen-S\u00fcdwest (A96)", + "coordinate": { + "long": "11.76047800001438", + "lat": "48.12406699995902" + }, + "description": [ + "PKW Stellpl\u00e4tze: 119", + "LKW Stellpl\u00e4tze: 127" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.76047800001438,48.12406699995902" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-playground", + "description": "Spielplatz", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000474", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.757328000014306,48.124319999959305,11.757328000014306,48.124319999959305", + "point": "11.757328000014306,48.124319999959305", + "startLcPosition": "18", + "display_type": "PARKING", + "subtitle": "Vaterstetten W", + "title": "A99 | Kreuz M\u00fcnchen-S\u00fcd (A8/A995)", + "coordinate": { + "long": "11.757328000014306", + "lat": "48.124319999959305" + }, + "description": [ + "PKW Stellpl\u00e4tze: 120", + "LKW Stellpl\u00e4tze: 92" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.757328000014306,48.124319999959305" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-BY-000476", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.724422000013648,48.07081699996216,11.724422000013648,48.07081699996216", + "point": "11.724422000013648,48.07081699996216", + "startLcPosition": "19", + "display_type": "PARKING", + "subtitle": "RA A99 km 46,7 O", + "title": "A99 | Kreuz M\u00fcnchen-S\u00fcdwest (A96)", + "coordinate": { + "long": "11.724422000013648", + "lat": "48.07081699996216" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.724422000013648,48.07081699996216" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A100": { + "parking_lorry": [] + }, + "A103": { + "parking_lorry": [] + }, + "A111": { + "parking_lorry": [ + { + "identifier": "DE-BB-334503", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.242939999887449,52.641849999441035,13.242939999887449,52.641849999441035", + "point": "13.242939999887449,52.641849999441035", + "startLcPosition": "15", + "display_type": "PARKING", + "subtitle": "Stolper Heide West", + "title": "A111 | Dreieck Charlottenburg (A100)", + "coordinate": { + "long": "13.242939999887449", + "lat": "52.641849999441035" + }, + "description": [ + "PKW Stellpl\u00e4tze: 131", + "LKW Stellpl\u00e4tze: 39" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.242939999887449,52.641849999441035" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-334504", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.244899999886792,52.641934999439485,13.244899999886792,52.641934999439485", + "point": "13.244899999886792,52.641934999439485", + "startLcPosition": "16", + "display_type": "PARKING", + "subtitle": "Stolper Heide O", + "title": "A111 | 0", + "coordinate": { + "long": "13.244899999886792", + "lat": "52.641934999439485" + }, + "description": [ + "PKW Stellpl\u00e4tze: 272", + "LKW Stellpl\u00e4tze: 124" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.244899999886792,52.641934999439485" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A113": { + "parking_lorry": [] + }, + "A115": { + "parking_lorry": [ + { + "identifier": "DE-BE-000002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.277494999879254,52.50094399941313,13.277494999879254,52.50094399941313", + "point": "13.277494999879254,52.50094399941313", + "display_type": "PARKING", + "subtitle": "Avus ", + "title": "A115 | Dreieck Funkturm (A100)", + "coordinate": { + "long": "13.277494999879254", + "lat": "52.50094399941313" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 134" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.277494999879254,52.50094399941313" + ], + "lorryParkingFeatureIcons": [] + }, + { + "identifier": "DE-BB-364406", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.151445999920655,52.38434799950918,13.151445999920655,52.38434799950918", + "point": "13.151445999920655,52.38434799950918", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Am Stern", + "title": "A115 | Dreieck Nuthetal (A10)", + "coordinate": { + "long": "13.151445999920655", + "lat": "52.38434799950918" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.151445999920655,52.38434799950918" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364405", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.152989999920264,52.383758999508075,13.152989999920264,52.383758999508075", + "point": "13.152989999920264,52.383758999508075", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Parforceheide", + "title": "A115 | Dreieck Funkturm (A100)", + "coordinate": { + "long": "13.152989999920264", + "lat": "52.383758999508075" + }, + "description": [ + "PKW Stellpl\u00e4tze: 37", + "LKW Stellpl\u00e4tze: 20" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.152989999920264,52.383758999508075" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BE-000001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.191267999908582,52.43405499948034,13.191267999908582,52.43405499948034", + "point": "13.191267999908582,52.43405499948034", + "startLcPosition": "8", + "display_type": "PARKING", + "subtitle": "Grunewald ", + "title": "A115 | Dreieck Nuthetal (A10)", + "coordinate": { + "long": "13.191267999908582", + "lat": "52.43405499948034" + }, + "description": [ + "PKW Stellpl\u00e4tze: 80", + "LKW Stellpl\u00e4tze: 1" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.191267999908582,52.43405499948034" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-utensils", + "description": "Rastst\u00e4tte/Restaurant", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft/Kiosk", + "style": "" + }, + { + "icon": "almofont almo-hotel", + "description": "Motel/Hotel", + "style": "" + }, + { + "icon": "fa fa-heartbeat", + "description": "Defibrillator", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + } + ] + }, + "A117": { + "parking_lorry": [ + { + "identifier": "DE-BB-364702", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.561379999746043,52.37787999913844,13.561379999746043,52.37787999913844", + "point": "13.561379999746043,52.37787999913844", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Waldeck West", + "title": "A117 | Waltersdorfer Dreieck (A113)", + "coordinate": { + "long": "13.561379999746043", + "lat": "52.37787999913844" + }, + "description": [ + "PKW Stellpl\u00e4tze: 118", + "LKW Stellpl\u00e4tze: 36" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.561379999746043,52.37787999913844" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-BB-364701", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "13.562909999745065,52.378020999136716,13.562909999745065,52.378020999136716", + "point": "13.562909999745065,52.378020999136716", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Waldeck Ost", + "title": "A117 | Treptow", + "coordinate": { + "long": "13.562909999745065", + "lat": "52.378020999136716" + }, + "description": [ + "PKW Stellpl\u00e4tze: 51", + "LKW Stellpl\u00e4tze: 26" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 13.562909999745065,52.378020999136716" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Restaurant", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A143": { + "parking_lorry": [ + { + "identifier": "DE-ST-143011", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.856923000009433,51.46539899994769,11.856923000009433,51.46539899994769", + "point": "11.856923000009433,51.46539899994769", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Pappelgrund West", + "title": "A143 | Dreieck Halle-S\u00fcd (A38)", + "coordinate": { + "long": "11.856923000009433", + "lat": "51.46539899994769" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 15" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.856923000009433,51.46539899994769" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-ST-143010", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.858504000009443,51.46596199994751,11.858504000009443,51.46596199994751", + "point": "11.858504000009443,51.46596199994751", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Pappelgrund Ost", + "title": "A143 | Halle-Neustadt", + "coordinate": { + "long": "11.858504000009443", + "lat": "51.46596199994751" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 18" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.858504000009443,51.46596199994751" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A210": { + "parking_lorry": [ + { + "identifier": "DE-SH-210201", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.915543000000033,54.315336999999936,9.915543000000033,54.315336999999936", + "point": "9.915543000000033,54.315336999999936", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Neunordsee", + "title": "A210 | Rendsburg", + "coordinate": { + "long": "9.915543000000033", + "lat": "54.315336999999936" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.915543000000033,54.315336999999936" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-210101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.913723000000031,54.31436499999995,9.913723000000031,54.31436499999995", + "point": "9.913723000000031,54.31436499999995", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Hasenmoor", + "title": "A210 | Kiel", + "coordinate": { + "long": "9.913723000000031", + "lat": "54.31436499999995" + }, + "description": [ + "PKW Stellpl\u00e4tze: 19", + "LKW Stellpl\u00e4tze: 7" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.913723000000031,54.31436499999995" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A215": { + "parking_lorry": [ + { + "identifier": "DE-SH-215102", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.022251000000061,54.2448589999999,10.022251000000061,54.2448589999999", + "point": "10.022251000000061,54.2448589999999", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Rumohr West", + "title": "A215 | Neum\u00fcnster", + "coordinate": { + "long": "10.022251000000061", + "lat": "54.2448589999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 25", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.022251000000061,54.2448589999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-SH-215101", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "10.02412600000006,54.24540199999989,10.02412600000006,54.24540199999989", + "point": "10.02412600000006,54.24540199999989", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Rumohr Ost", + "title": "A215 | Kiel", + "coordinate": { + "long": "10.02412600000006", + "lat": "54.24540199999989" + }, + "description": [ + "PKW Stellpl\u00e4tze: 20", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 10.02412600000006,54.24540199999989" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A226": { + "parking_lorry": [] + }, + "A255": { + "parking_lorry": [] + }, + "A261": { + "parking_lorry": [ + { + "identifier": "DE-NI-262503", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.87501000000003,53.383990999999945,9.87501000000003,53.383990999999945", + "point": "9.87501000000003,53.383990999999945", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Rosengarten Ost O", + "title": "A261 | Dreieck Hamburg-S\u00fcdwest (A7)", + "coordinate": { + "long": "9.87501000000003", + "lat": "53.383990999999945" + }, + "description": [ + "PKW Stellpl\u00e4tze: 34", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.87501000000003,53.383990999999945" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-262502", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.88129000000003,53.39036899999994,9.88129000000003,53.39036899999994", + "point": "9.88129000000003,53.39036899999994", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Rosengarten West W", + "title": "A261 | Buchholzer Dreieck (A1)", + "coordinate": { + "long": "9.88129000000003", + "lat": "53.39036899999994" + }, + "description": [ + "PKW Stellpl\u00e4tze: 38", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.88129000000003,53.39036899999994" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A270": { + "parking_lorry": [] + }, + "A281": { + "parking_lorry": [] + }, + "A320": { + "parking_lorry": [] + }, + "A352": { + "parking_lorry": [ + { + "identifier": "DE-NI-342404", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.768997000000018,52.51087999999998,9.768997000000018,52.51087999999998", + "point": "9.768997000000018,52.51087999999998", + "startLcPosition": "0", + "display_type": "PARKING", + "subtitle": "Bissendorf O", + "title": "A352 | Dreieck Hannover-Nord (A7)", + "coordinate": { + "long": "9.768997000000018", + "lat": "52.51087999999998" + }, + "description": [ + "PKW Stellpl\u00e4tze: 35", + "LKW Stellpl\u00e4tze: 13" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.768997000000018,52.51087999999998" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NI-342405", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "9.758892000000015,52.50582399999997,9.758892000000015,52.50582399999997", + "point": "9.758892000000015,52.50582399999997", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Bissendorf W", + "title": "A352 | Dreieck Hannover-West (A39)", + "coordinate": { + "long": "9.758892000000015", + "lat": "52.50582399999997" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 16" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 9.758892000000015,52.50582399999997" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A369": { + "parking_lorry": [] + }, + "A445": { + "parking_lorry": [ + { + "identifier": "DE-NW-000236", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.926415999999901,51.48808899999985,7.926415999999901,51.48808899999985", + "point": "7.926415999999901,51.48808899999985", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Haus F\u00fcchten", + "title": "A445 | Arnsberg", + "coordinate": { + "long": "7.926415999999901", + "lat": "51.48808899999985" + }, + "description": [ + "PKW Stellpl\u00e4tze: 12", + "LKW Stellpl\u00e4tze: 9" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.926415999999901,51.48808899999985" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000237", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "7.927872999999903,51.48780599999984,7.927872999999903,51.48780599999984", + "point": "7.927872999999903,51.48780599999984", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Ruhrtal", + "title": "A445 | Hamm", + "coordinate": { + "long": "7.927872999999903", + "lat": "51.48780599999984" + }, + "description": [ + "PKW Stellpl\u00e4tze: 10", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 7.927872999999903,51.48780599999984" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A448": { + "parking_lorry": [] + }, + "A480": { + "parking_lorry": [ + { + "identifier": "DE-HE-480002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.670456,50.619868,8.670456,50.619868", + "point": "8.670456,50.619868", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Gleiberger Land", + "title": "A480 | Wetzlar", + "coordinate": { + "long": "8.670456", + "lat": "50.619868" + }, + "description": [ + "PKW Stellpl\u00e4tze: 50", + "LKW Stellpl\u00e4tze: 22" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.670456,50.619868" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-480001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.67227,50.619521,8.67227,50.619521", + "point": "8.67227,50.619521", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Silbersee", + "title": "A480 | Reiskirchen", + "coordinate": { + "long": "8.67227", + "lat": "50.619521" + }, + "description": [ + "PKW Stellpl\u00e4tze: 81", + "LKW Stellpl\u00e4tze: 23" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.67227,50.619521" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A485": { + "parking_lorry": [] + }, + "A516": { + "parking_lorry": [] + }, + "A524": { + "parking_lorry": [] + }, + "A542": { + "parking_lorry": [] + }, + "A553": { + "parking_lorry": [ + { + "identifier": "DE-NW-000303", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.845358999996695,50.78659899999038,6.845358999996695,50.78659899999038", + "point": "6.845358999996695,50.78659899999038", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Am alten Hau (Ost)", + "title": "A553 | Br\u00fchl", + "coordinate": { + "long": "6.845358999996695", + "lat": "50.78659899999038" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 59" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.845358999996695,50.78659899999038" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + }, + { + "identifier": "DE-NW-000304", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.84453399999669,50.78727499999036,6.84453399999669,50.78727499999036", + "point": "6.84453399999669,50.78727499999036", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Am alten Hau (West)", + "title": "A553 | Kreuz Bliesheim (A1/A61)", + "coordinate": { + "long": "6.84453399999669", + "lat": "50.78727499999036" + }, + "description": [ + "PKW Stellpl\u00e4tze: 24", + "LKW Stellpl\u00e4tze: 59" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.84453399999669,50.78727499999036" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A555": { + "parking_lorry": [] + }, + "A559": { + "parking_lorry": [] + }, + "A560": { + "parking_lorry": [] + }, + "A562": { + "parking_lorry": [] + }, + "A565": { + "parking_lorry": [] + }, + "A620": { + "parking_lorry": [ + { + "identifier": "DE-SL-000023", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "6.749099999995152,49.30011799998769,6.749099999995152,49.30011799998769", + "point": "6.749099999995152,49.30011799998769", + "startLcPosition": "3", + "display_type": "PARKING", + "subtitle": "Saarlouis / Lisdorf O", + "title": "A620 | Saarlouis", + "coordinate": { + "long": "6.749099999995152", + "lat": "49.30011799998769" + }, + "description": [ + "PKW Stellpl\u00e4tze: 7", + "LKW Stellpl\u00e4tze: 4" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 6.749099999995152,49.30011799998769" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + } + ] + } + ] + }, + "A623": { + "parking_lorry": [] + }, + "A640": { + "parking_lorry": [] + }, + "A643": { + "parking_lorry": [] + }, + "A64a": { + "parking_lorry": [] + }, + "A650": { + "parking_lorry": [] + }, + "A659": { + "parking_lorry": [ + { + "identifier": "DE-HE-659001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.572854999999999,49.526430000000005,8.572854999999999,49.526430000000005", + "point": "8.572854999999999,49.526430000000005", + "startLcPosition": "2", + "display_type": "PARKING", + "subtitle": "Viernheim S", + "title": "A659 | Weinheim", + "coordinate": { + "long": "8.572854999999999", + "lat": "49.526430000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 6" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.572854999999999,49.526430000000005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "almofont almo-utensils", + "description": "Kleinrastst\u00e4tte", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Gesch\u00e4ft", + "style": "" + }, + { + "icon": "fa fa-wifi", + "description": "WLAN", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-shower", + "description": "Dusche vorhanden", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + }, + { + "icon": "fa fa-eur", + "description": "Geldautomat", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-659002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.608736,49.542467,8.608736,49.542467", + "point": "8.608736,49.542467", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Viernheim N", + "title": "A659 | Mannheim", + "coordinate": { + "long": "8.608736", + "lat": "49.542467" + }, + "description": [ + "PKW Stellpl\u00e4tze: 7", + "LKW Stellpl\u00e4tze: 12" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.608736,49.542467" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-gaspump", + "description": "Tankstelle", + "style": "" + }, + { + "icon": "fa fa-shopping-basket", + "description": "Kiosk/Gesch\u00e4ft", + "style": "" + }, + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + }, + { + "icon": "fa fa-trash", + "description": "M\u00fclleimer", + "style": "" + }, + { + "icon": "almofont almo-restroom", + "description": "Toilette vorhanden", + "style": "" + }, + { + "icon": "almofont almo-toll_terminal", + "description": "Mautterminal", + "style": "" + }, + { + "icon": "almofont almo-vending_machine", + "description": "Warenautomat", + "style": "" + } + ] + } + ] + }, + "A661": { + "parking_lorry": [ + { + "identifier": "DE-HE-661001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.735466000000002,50.077833000000005,8.735466000000002,50.077833000000005", + "point": "8.735466000000002,50.077833000000005", + "startLcPosition": "4", + "display_type": "PARKING", + "subtitle": "Buchrain West", + "title": "A661 | Darmstadt", + "coordinate": { + "long": "8.735466000000002", + "lat": "50.077833000000005" + }, + "description": [ + "PKW Stellpl\u00e4tze: 30", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.735466000000002,50.077833000000005" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + }, + { + "identifier": "DE-HE-661002", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.737068,50.07965400000001,8.737068,50.07965400000001", + "point": "8.737068,50.07965400000001", + "startLcPosition": "6", + "display_type": "PARKING", + "subtitle": "Buchrain Ost", + "title": "A661 | Bad Homburg", + "coordinate": { + "long": "8.737068", + "lat": "50.07965400000001" + }, + "description": [ + "PKW Stellpl\u00e4tze: 32", + "LKW Stellpl\u00e4tze: 10" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.737068,50.07965400000001" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A671": { + "parking_lorry": [ + { + "identifier": "DE-HE-671001", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "8.309975999999988,50.02657799999999,8.309975999999988,50.02657799999999", + "point": "8.309975999999988,50.02657799999999", + "startLcPosition": "5", + "display_type": "PARKING", + "subtitle": "Zur alten R\u00f6merstra\u00dfe", + "title": "A671 | Wiesbaden", + "coordinate": { + "long": "8.309975999999988", + "lat": "50.02657799999999" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 3" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 8.309975999999988,50.02657799999999" + ], + "lorryParkingFeatureIcons": [ + { + "icon": "almofont almo-picnic_facility", + "description": "Picknickm\u00f6glichkeiten", + "style": "" + } + ] + } + ] + }, + "A831": { + "parking_lorry": [] + }, + "A861": { + "parking_lorry": [] + }, + "A864": { + "parking_lorry": [] + }, + "A995": { + "parking_lorry": [ + { + "identifier": "DE-BY-000477", + "icon": "314-50", + "isBlocked": "false", + "future": false, + "extent": "11.613582000011341,48.03162499997052,11.613582000011341,48.03162499997052", + "point": "11.613582000011341,48.03162499997052", + "startLcPosition": "1", + "display_type": "PARKING", + "subtitle": "Potzham W", + "title": "A995 | Kreuz M\u00fcnchen-S\u00fcd (A8/A99)", + "coordinate": { + "long": "11.613582000011341", + "lat": "48.03162499997052" + }, + "description": [ + "PKW Stellpl\u00e4tze: 0", + "LKW Stellpl\u00e4tze: 8" + ], + "routeRecommendation": [], + "footer": [ + "Koordinaten: 11.613582000011341,48.03162499997052" + ], + "lorryParkingFeatureIcons": [] + } + ] + }, + "A99a": { + "parking_lorry": [] + } +} \ No newline at end of file diff --git a/autobahn/data/roadworks.json b/autobahn/data/roadworks.json new file mode 100644 index 0000000..82de4f8 --- /dev/null +++ b/autobahn/data/roadworks.json @@ -0,0 +1,678061 @@ +{ + "A1": { + "roadworks": [ + { + "identifier": "2026-002514--vi-fbm.2026-01-22_09-00-00-000.devi-zus.2026-01-22_09-00-00-000_005.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.413359607975956,7.000327562472497,49.42480543339482,6.971194143100292", + "point": "49.413359607975956,7.000327562472497", + "startLcPosition": "9", + "impact": { + "lower": "Schellenbach", + "upper": "Illingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Trier", + "title": "A1 | Illingen - Schellenbach", + "startTimestamp": "2026-01-22T09:00:00+01:00", + "coordinate": { + "lat": 49.413359607975956, + "long": 7.000327562472497 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.01.26 um 09:00 Uhr", + "Ende: 16.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.05.26)", + "", + "A1: Saarbr\u00fccken -> Trier, zwischen 4.2 km hinter AS Illingen und 1.4 km vor Schellenbach", + "", + "L\u00e4nge: 2.78 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A1 zw. AS Eppelborn und AS Tholey Richtung Trier" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.000327562, + 49.413359608 + ], + [ + 7.0000839, + 49.413305301 + ], + [ + 6.9987554, + 49.413010501 + ], + [ + 6.9979583, + 49.412861901 + ], + [ + 6.9971447, + 49.412719501 + ], + [ + 6.9965622, + 49.412641901 + ], + [ + 6.9960326, + 49.412589801 + ], + [ + 6.9954422, + 49.412557501 + ], + [ + 6.9948881, + 49.412549201 + ], + [ + 6.9941228, + 49.412565501 + ], + [ + 6.9935753, + 49.412607901 + ], + [ + 6.9929972, + 49.412673501 + ], + [ + 6.9925915, + 49.412734601 + ], + [ + 6.9917728, + 49.412897401 + ], + [ + 6.9912993, + 49.413015401 + ], + [ + 6.9906231, + 49.413212601 + ], + [ + 6.9900666, + 49.413401701 + ], + [ + 6.9895641, + 49.413574601 + ], + [ + 6.9892024, + 49.413722001 + ], + [ + 6.9889407, + 49.413823601 + ], + [ + 6.9886985, + 49.413906201 + ], + [ + 6.9883868, + 49.414010901 + ], + [ + 6.9878824, + 49.414162001 + ], + [ + 6.9873423, + 49.414306701 + ], + [ + 6.9868023, + 49.414438401 + ], + [ + 6.9861439, + 49.414561801 + ], + [ + 6.9853865, + 49.414667801 + ], + [ + 6.9844566, + 49.414799001 + ], + [ + 6.9837526, + 49.414894101 + ], + [ + 6.9832491, + 49.414981801 + ], + [ + 6.9828737, + 49.415059201 + ], + [ + 6.9824719, + 49.415155101 + ], + [ + 6.9820662, + 49.415266701 + ], + [ + 6.9817212, + 49.415385601 + ], + [ + 6.981292, + 49.415538301 + ], + [ + 6.9809301, + 49.415692201 + ], + [ + 6.980603, + 49.415826601 + ], + [ + 6.9803664, + 49.415945001 + ], + [ + 6.9800694, + 49.416104701 + ], + [ + 6.9797908, + 49.416264501 + ], + [ + 6.9794967, + 49.416446401 + ], + [ + 6.9791499, + 49.416683301 + ], + [ + 6.9787899, + 49.416963801 + ], + [ + 6.9783698, + 49.417329401 + ], + [ + 6.9773204, + 49.418324401 + ], + [ + 6.9770631, + 49.418549801 + ], + [ + 6.9767841, + 49.418773301 + ], + [ + 6.9764703, + 49.419001901 + ], + [ + 6.976103, + 49.419242101 + ], + [ + 6.9757456, + 49.419456501 + ], + [ + 6.9748501, + 49.419943501 + ], + [ + 6.9741691, + 49.420328401 + ], + [ + 6.973764, + 49.420573801 + ], + [ + 6.9732835, + 49.420903201 + ], + [ + 6.9729553, + 49.421144401 + ], + [ + 6.9726167, + 49.421443101 + ], + [ + 6.9723634, + 49.421708401 + ], + [ + 6.972118, + 49.421993301 + ], + [ + 6.9718713, + 49.422287501 + ], + [ + 6.9716677, + 49.422631001 + ], + [ + 6.9715278, + 49.422903801 + ], + [ + 6.9714109, + 49.423180001 + ], + [ + 6.9713261, + 49.423451501 + ], + [ + 6.971248, + 49.423740801 + ], + [ + 6.9712139, + 49.424017601 + ], + [ + 6.9711852, + 49.424263101 + ], + [ + 6.9711769, + 49.424540701 + ], + [ + 6.971194143, + 49.424805433 + ] + ] + } + }, + { + "identifier": "2026-017814--vi-bs.2026-04-24_10-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.434588219287534,6.97189878373342,49.43347844600234,6.971234779246534", + "point": "49.434588219287534,6.97189878373342", + "startLcPosition": "11", + "impact": { + "lower": "Eppelborn", + "upper": "Schellenbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Trier -> Saarbr\u00fccken", + "title": "A1 | Schellenbach - Eppelborn", + "coordinate": { + "lat": 49.434588219287534, + "long": 6.97189878373342 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 10:30 bis 12:00 Uhr", + "", + "A1: Trier -> Saarbr\u00fccken, zwischen 0.3 km hinter Schellenbach und 3.0 km vor AS Eppelborn", + "", + "L\u00e4nge: 0.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A1 von Schellenbach (Parkplatz) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.971898784, + 49.434588219 + ], + [ + 6.9717214, + 49.434357501 + ], + [ + 6.9714799, + 49.433987901 + ], + [ + 6.9713529, + 49.433749601 + ], + [ + 6.9712446, + 49.433503101 + ], + [ + 6.971234779, + 49.433478446 + ] + ] + } + }, + { + "identifier": "2026-017832--vi-bs.2026-04-14_10-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.475704612538514,6.977187969366725,49.47654758989267,6.97890759189593", + "point": "49.475704612538514,6.977187969366725", + "startLcPosition": "13", + "impact": { + "lower": "Tholey-Hasborn", + "upper": "Schaumberg Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Trier", + "title": "A1 | Schaumberg Kreuz - Tholey-Hasborn", + "coordinate": { + "lat": 49.475704612538514, + "long": 6.977187969366725 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 10:00 bis 11:30 Uhr", + "", + "A1: Saarbr\u00fccken -> Trier, zwischen 1.3 km hinter Schaumberg Kreuz und 1.6 km vor AS Tholey-Hasborn", + "", + "L\u00e4nge: 0.16 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A1 von Tholey-Hasborn (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.977187969, + 49.475704613 + ], + [ + 6.9772879, + 49.475767201 + ], + [ + 6.9777259, + 49.476009401 + ], + [ + 6.9781929, + 49.476237101 + ], + [ + 6.9787073, + 49.476470501 + ], + [ + 6.978907592, + 49.47654759 + ] + ] + } + }, + { + "identifier": "2026-016978--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.69124922107604,6.89709135885596,49.70729201440343,6.891548645229841", + "point": "49.69124922107604,6.89709135885596", + "startLcPosition": "27", + "impact": { + "lower": "Mehring", + "upper": "Hochwald-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Trier", + "title": "A1 | Hochwald-Ost - Mehring", + "coordinate": { + "lat": 49.69124922107604, + "long": 6.89709135885596 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:00 bis 15:00 Uhr", + "", + "A1: Saarbr\u00fccken -> Trier, zwischen 0.4 km hinter Hochwald-Ost und 9.2 km vor AS Mehring", + "", + "L\u00e4nge: 2.01 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.4 m", + "", + "A1 von Hochwald-West (Raststaette) nach Mehring (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.897091359, + 49.691249221 + ], + [ + 6.8966138, + 49.691601501 + ], + [ + 6.8959217, + 49.692096801 + ], + [ + 6.8945393, + 49.693087901 + ], + [ + 6.8940804, + 49.693419801 + ], + [ + 6.8936003, + 49.693779901 + ], + [ + 6.8932618, + 49.694039301 + ], + [ + 6.8928492, + 49.694362401 + ], + [ + 6.8924839, + 49.694656101 + ], + [ + 6.8919763, + 49.695095001 + ], + [ + 6.8915042, + 49.695536601 + ], + [ + 6.8912172, + 49.695824601 + ], + [ + 6.8909088, + 49.696155101 + ], + [ + 6.8906647, + 49.696431801 + ], + [ + 6.8903885, + 49.696794201 + ], + [ + 6.8902332, + 49.697022601 + ], + [ + 6.8900049, + 49.697330501 + ], + [ + 6.8898882, + 49.697532601 + ], + [ + 6.8897581, + 49.697761601 + ], + [ + 6.8895503, + 49.698179801 + ], + [ + 6.8894188, + 49.698492001 + ], + [ + 6.8893035, + 49.698813001 + ], + [ + 6.8891962, + 49.699156501 + ], + [ + 6.8891157, + 49.699487801 + ], + [ + 6.889038, + 49.699930201 + ], + [ + 6.8890031, + 49.700281501 + ], + [ + 6.8889856, + 49.700576501 + ], + [ + 6.8889897, + 49.700971101 + ], + [ + 6.8890178, + 49.701359701 + ], + [ + 6.8890594, + 49.701691001 + ], + [ + 6.8891238, + 49.702071801 + ], + [ + 6.8892244, + 49.702499401 + ], + [ + 6.8893665, + 49.702980801 + ], + [ + 6.8895221, + 49.703408401 + ], + [ + 6.8896588, + 49.703749401 + ], + [ + 6.8898279, + 49.704155201 + ], + [ + 6.8900451, + 49.704620101 + ], + [ + 6.8902637, + 49.705048601 + ], + [ + 6.8904957, + 49.705480501 + ], + [ + 6.8907894, + 49.705996501 + ], + [ + 6.8910687, + 49.706498601 + ], + [ + 6.8911583, + 49.706649501 + ], + [ + 6.8914198, + 49.707081501 + ], + [ + 6.891548645, + 49.707292014 + ] + ] + } + }, + { + "identifier": "2026-016978--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_003.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.728889980042595,6.889079145674579,49.73337256267532,6.889233062785398", + "point": "49.728889980042595,6.889079145674579", + "startLcPosition": "28", + "impact": { + "lower": "Mehring", + "upper": "Hochwald-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Trier", + "title": "A1 | Hochwald-West - Mehring", + "coordinate": { + "lat": 49.728889980042595, + "long": 6.889079145674579 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:00 bis 15:00 Uhr", + "", + "A1: Saarbr\u00fccken -> Trier, zwischen 4.3 km hinter Hochwald-West und 6.2 km vor AS Mehring", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.4 m", + "", + "A1 von Hochwald-West (Raststaette) nach Mehring (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.889079146, + 49.72888998 + ], + [ + 6.8891272, + 49.729119501 + ], + [ + 6.8891863, + 49.729420501 + ], + [ + 6.8892911, + 49.729954901 + ], + [ + 6.8893478, + 49.730289201 + ], + [ + 6.8893897, + 49.730600401 + ], + [ + 6.8894181, + 49.730886101 + ], + [ + 6.8894559, + 49.731387401 + ], + [ + 6.889464, + 49.731744401 + ], + [ + 6.8894531, + 49.732041601 + ], + [ + 6.8894233, + 49.732383801 + ], + [ + 6.8893843, + 49.732694001 + ], + [ + 6.8893092, + 49.733066201 + ], + [ + 6.889233063, + 49.733372563 + ] + ] + } + }, + { + "identifier": "2026-016978--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_003.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.70729201440343,6.891548645229841,49.728889980042595,6.889079145674579", + "point": "49.70729201440343,6.891548645229841", + "startLcPosition": "28", + "impact": { + "lower": "Mehring", + "upper": "Hochwald-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Trier", + "title": "A1 | Hochwald-West - Mehring", + "coordinate": { + "lat": 49.70729201440343, + "long": 6.891548645229841 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:00 bis 15:00 Uhr", + "", + "A1: Saarbr\u00fccken -> Trier, zwischen 1.8 km hinter Hochwald-West und 6.7 km vor AS Mehring", + "", + "L\u00e4nge: 2.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.4 m", + "", + "A1 von Hochwald-West (Raststaette) nach Mehring (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.891548645, + 49.707292014 + ], + [ + 6.8917792, + 49.707668701 + ], + [ + 6.8921319, + 49.708285301 + ], + [ + 6.8924792, + 49.708888101 + ], + [ + 6.8929312, + 49.709718001 + ], + [ + 6.89319, + 49.710248801 + ], + [ + 6.8933804, + 49.710688401 + ], + [ + 6.8936058, + 49.711271201 + ], + [ + 6.893756, + 49.711712601 + ], + [ + 6.8938834, + 49.712174801 + ], + [ + 6.8939638, + 49.712540801 + ], + [ + 6.8940309, + 49.712957901 + ], + [ + 6.8940698, + 49.713345501 + ], + [ + 6.8940899, + 49.713731401 + ], + [ + 6.8940845, + 49.714139901 + ], + [ + 6.894055, + 49.714642801 + ], + [ + 6.8940202, + 49.714978401 + ], + [ + 6.8939652, + 49.715315701 + ], + [ + 6.8938887, + 49.715666001 + ], + [ + 6.8938016, + 49.716001601 + ], + [ + 6.8936594, + 49.716450801 + ], + [ + 6.8935226, + 49.716797601 + ], + [ + 6.8933429, + 49.717221701 + ], + [ + 6.8931739, + 49.717566801 + ], + [ + 6.8929553, + 49.717956101 + ], + [ + 6.8927059, + 49.718374001 + ], + [ + 6.8924859, + 49.718703501 + ], + [ + 6.8921279, + 49.719213401 + ], + [ + 6.8917839, + 49.719678901 + ], + [ + 6.8917018, + 49.719787801 + ], + [ + 6.8916133, + 49.719909701 + ], + [ + 6.8906668, + 49.721159401 + ], + [ + 6.8901498, + 49.721880601 + ], + [ + 6.8898674, + 49.722307701 + ], + [ + 6.889555, + 49.722815701 + ], + [ + 6.8893559, + 49.723200901 + ], + [ + 6.8891949, + 49.723530501 + ], + [ + 6.8891253, + 49.723688301 + ], + [ + 6.8889941, + 49.724037801 + ], + [ + 6.8888546, + 49.724461301 + ], + [ + 6.8887728, + 49.724770001 + ], + [ + 6.8887054, + 49.725130001 + ], + [ + 6.888667, + 49.725429201 + ], + [ + 6.8886378, + 49.725827901 + ], + [ + 6.8886339, + 49.726177801 + ], + [ + 6.8886511, + 49.726507501 + ], + [ + 6.888691, + 49.726925101 + ], + [ + 6.888711, + 49.727055801 + ], + [ + 6.8887548, + 49.727341701 + ], + [ + 6.8888495, + 49.727819601 + ], + [ + 6.8889902, + 49.728465001 + ], + [ + 6.888998, + 49.728502401 + ], + [ + 6.889079146, + 49.72888998 + ] + ] + } + }, + { + "identifier": "2026-016978--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.69572599132124,6.891315467694456,49.69858353920366,6.889385920531797", + "point": "49.69572599132124,6.891315467694456", + "startLcPosition": "28", + "impact": { + "lower": "Mehring", + "upper": "Hochwald-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Trier", + "title": "A1 | Hochwald-West - Mehring", + "coordinate": { + "lat": 49.69572599132124, + "long": 6.891315467694456 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:00 Uhr", + "", + "A1: Saarbr\u00fccken -> Trier, zwischen 0.4 km hinter Hochwald-West und 10.2 km vor AS Mehring", + "", + "L\u00e4nge: 0.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.4 m", + "", + "A1 von Hochwald-West (Raststaette) nach Mehring (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.891315468, + 49.695725991 + ], + [ + 6.8912172, + 49.695824601 + ], + [ + 6.8909088, + 49.696155101 + ], + [ + 6.8906647, + 49.696431801 + ], + [ + 6.8903885, + 49.696794201 + ], + [ + 6.8902332, + 49.697022601 + ], + [ + 6.8900049, + 49.697330501 + ], + [ + 6.8898882, + 49.697532601 + ], + [ + 6.8897581, + 49.697761601 + ], + [ + 6.8895503, + 49.698179801 + ], + [ + 6.8894188, + 49.698492001 + ], + [ + 6.889385921, + 49.698583539 + ] + ] + } + }, + { + "identifier": "2024-004256--vi-bs.2024-01-31_07-00-00-000.devi-zus.2024-01-31_07-00-00-000_018.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.73929515761287,6.883366617566736,49.78257619024187,6.8320929622769375", + "point": "49.73929515761287,6.883366617566736", + "startLcPosition": "28", + "impact": { + "lower": "Mehringer H\u00f6he", + "upper": "Hochwald-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Trier", + "title": "A1 | Hochwald-West - Mehringer H\u00f6he", + "startTimestamp": "2024-01-31T07:00:00+01:00", + "coordinate": { + "lat": 49.73929515761287, + "long": 6.883366617566736 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.01.24 um 07:00 Uhr", + "Ende: 28.02.27 um 07:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.02.27)", + "", + "A1: Saarbr\u00fccken -> Trier, zwischen 5.6 km hinter Hochwald-West und 0.8 km vor Mehringer H\u00f6he", + "", + "L\u00e4nge: 6.42 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Stauwarnanlage A1 Baustelle Fellertalbr\u00fccke Fahrtrichtung Koblenz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.883366618, + 49.739295158 + ], + [ + 6.8833192, + 49.739319801 + ], + [ + 6.883248, + 49.739354501 + ], + [ + 6.8824919, + 49.739723101 + ], + [ + 6.8813849, + 49.740259201 + ], + [ + 6.8800852, + 49.740861501 + ], + [ + 6.8791361, + 49.741333601 + ], + [ + 6.8786892, + 49.741575101 + ], + [ + 6.8777806, + 49.742086401 + ], + [ + 6.8773786, + 49.742335801 + ], + [ + 6.8769684, + 49.742600101 + ], + [ + 6.8767285, + 49.742769601 + ], + [ + 6.876318, + 49.743073601 + ], + [ + 6.8760213, + 49.743302001 + ], + [ + 6.8757208, + 49.743567801 + ], + [ + 6.8754441, + 49.743823801 + ], + [ + 6.8752181, + 49.744031401 + ], + [ + 6.8750899, + 49.744172201 + ], + [ + 6.8748486, + 49.744439201 + ], + [ + 6.8746358, + 49.744704801 + ], + [ + 6.874479, + 49.744916001 + ], + [ + 6.8743067, + 49.745154101 + ], + [ + 6.8740186, + 49.745604501 + ], + [ + 6.8739063, + 49.745803601 + ], + [ + 6.8737605, + 49.746083501 + ], + [ + 6.8736413, + 49.746333601 + ], + [ + 6.8735367, + 49.746579001 + ], + [ + 6.8733743, + 49.747012601 + ], + [ + 6.873198, + 49.747540601 + ], + [ + 6.8730753, + 49.747945901 + ], + [ + 6.8728932, + 49.748603101 + ], + [ + 6.8727216, + 49.749252101 + ], + [ + 6.8725387, + 49.749916801 + ], + [ + 6.8722976, + 49.750677501 + ], + [ + 6.872166, + 49.751029801 + ], + [ + 6.8720038, + 49.751401901 + ], + [ + 6.8718509, + 49.751730601 + ], + [ + 6.8716224, + 49.752163001 + ], + [ + 6.8713613, + 49.752614001 + ], + [ + 6.8710407, + 49.753100001 + ], + [ + 6.8707349, + 49.753520501 + ], + [ + 6.8704844, + 49.753833601 + ], + [ + 6.8702787, + 49.754078401 + ], + [ + 6.8700838, + 49.754297401 + ], + [ + 6.8698373, + 49.754561301 + ], + [ + 6.8692709, + 49.755129401 + ], + [ + 6.8689874, + 49.755391501 + ], + [ + 6.8686496, + 49.755686501 + ], + [ + 6.8682109, + 49.756053401 + ], + [ + 6.867786, + 49.756402801 + ], + [ + 6.8671446, + 49.756892101 + ], + [ + 6.8667102, + 49.757211801 + ], + [ + 6.8663212, + 49.757496101 + ], + [ + 6.865894, + 49.757795601 + ], + [ + 6.8644523, + 49.758776401 + ], + [ + 6.8629933, + 49.759752701 + ], + [ + 6.862086, + 49.760372501 + ], + [ + 6.8615887, + 49.760728301 + ], + [ + 6.8606682, + 49.761403501 + ], + [ + 6.8599802, + 49.761941501 + ], + [ + 6.85937, + 49.762455201 + ], + [ + 6.8589436, + 49.762829501 + ], + [ + 6.8584219, + 49.763326701 + ], + [ + 6.8579257, + 49.763846501 + ], + [ + 6.8574904, + 49.764342901 + ], + [ + 6.8572457, + 49.764654201 + ], + [ + 6.8570452, + 49.764913301 + ], + [ + 6.8568045, + 49.765270601 + ], + [ + 6.8565845, + 49.765608401 + ], + [ + 6.8563566, + 49.765996501 + ], + [ + 6.8561822, + 49.766306601 + ], + [ + 6.8560374, + 49.766604601 + ], + [ + 6.8559301, + 49.766848901 + ], + [ + 6.8558335, + 49.767124301 + ], + [ + 6.8557048, + 49.767521001 + ], + [ + 6.8555465, + 49.768025201 + ], + [ + 6.8554352, + 49.768416701 + ], + [ + 6.8553051, + 49.769017801 + ], + [ + 6.8551965, + 49.769511501 + ], + [ + 6.8551364, + 49.769853701 + ], + [ + 6.8548621, + 49.771155901 + ], + [ + 6.8547001, + 49.771728101 + ], + [ + 6.8546081, + 49.772028701 + ], + [ + 6.8545015, + 49.772334001 + ], + [ + 6.8544076, + 49.772544501 + ], + [ + 6.8542581, + 49.772841201 + ], + [ + 6.8540497, + 49.773218701 + ], + [ + 6.8538587, + 49.773539401 + ], + [ + 6.853638, + 49.773850801 + ], + [ + 6.8534561, + 49.774096301 + ], + [ + 6.85323, + 49.774378701 + ], + [ + 6.85293, + 49.774716801 + ], + [ + 6.852624, + 49.775023401 + ], + [ + 6.8522457, + 49.775384101 + ], + [ + 6.8517384, + 49.775821501 + ], + [ + 6.851389, + 49.776085001 + ], + [ + 6.8510055, + 49.776360001 + ], + [ + 6.8506442, + 49.776585401 + ], + [ + 6.8502494, + 49.776818401 + ], + [ + 6.849835, + 49.777048301 + ], + [ + 6.8494122, + 49.777265901 + ], + [ + 6.8489827, + 49.777464801 + ], + [ + 6.848348, + 49.777739201 + ], + [ + 6.8480799, + 49.777844601 + ], + [ + 6.8478317, + 49.777934401 + ], + [ + 6.847436, + 49.778074401 + ], + [ + 6.8471154, + 49.778177301 + ], + [ + 6.846552, + 49.778349601 + ], + [ + 6.846132, + 49.778463501 + ], + [ + 6.8454402, + 49.778637001 + ], + [ + 6.8450685, + 49.778728601 + ], + [ + 6.8449665, + 49.778753901 + ], + [ + 6.8444267, + 49.778876401 + ], + [ + 6.842967, + 49.779241101 + ], + [ + 6.8419295, + 49.779510201 + ], + [ + 6.8402296, + 49.779977601 + ], + [ + 6.8392119, + 49.780282101 + ], + [ + 6.838335, + 49.780546701 + ], + [ + 6.8364565, + 49.781155701 + ], + [ + 6.8351939, + 49.781583601 + ], + [ + 6.8333702, + 49.782189601 + ], + [ + 6.832537, + 49.782445101 + ], + [ + 6.832092962, + 49.78257619 + ] + ] + } + }, + { + "identifier": "2024-004156--vi-bs.2026-02-25_08-00-00-000.devi-zus.2024-02-13_00-00-00-000_004.f.de49", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.783913639500064,6.8262007780458935,49.78435819719765,6.813774949127159", + "point": "49.783913639500064,6.8262007780458935", + "startLcPosition": "29", + "impact": { + "lower": "Moseltal", + "upper": "Mehring", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarbr\u00fccken -> K\u00f6ln/Koblenz", + "title": "A1 | Mehring - Moseltal", + "startTimestamp": "2026-02-25T08:00:00+01:00", + "coordinate": { + "lat": 49.783913639500064, + "long": 6.8262007780458935 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.02.26 um 08:00 Uhr", + "Ende: 01.09.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "A1: Saarbr\u00fccken -> K\u00f6ln/Koblenz, zwischen 1.4 km hinter AS Mehring und 5.8 km vor AD Moseltal", + "", + "L\u00e4nge: 0.9 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.75 m", + "", + "A1 Br\u00fcckeninstandsetzung Fellertalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.826200778, + 49.78391364 + ], + [ + 6.8257631, + 49.783982001 + ], + [ + 6.8250532, + 49.784079901 + ], + [ + 6.8241337, + 49.784198601 + ], + [ + 6.8238295, + 49.784235901 + ], + [ + 6.8229763, + 49.784322501 + ], + [ + 6.8220883, + 49.784398301 + ], + [ + 6.8212227, + 49.784456801 + ], + [ + 6.8200018, + 49.784516501 + ], + [ + 6.8193163, + 49.784532901 + ], + [ + 6.8187629, + 49.784541401 + ], + [ + 6.8171701, + 49.784541201 + ], + [ + 6.8168511, + 49.784538101 + ], + [ + 6.8163245, + 49.784519001 + ], + [ + 6.8155608, + 49.784484601 + ], + [ + 6.8147915, + 49.784435801 + ], + [ + 6.813774949, + 49.784358197 + ] + ] + } + }, + { + "identifier": "2024-038925--vi-bs.2026-02-02_00-00-00-000.devi-zus.2025-06-01_00-00-00-000.f_001.de18", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.80975113718318,6.75824633835306,49.82846011086849,6.7604116176820845", + "point": "49.80975113718318,6.75824633835306", + "startLcPosition": "31", + "impact": { + "lower": "Schweich", + "upper": "Rioler Wald", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarbr\u00fccken -> K\u00f6ln/Koblenz", + "title": "A1 | Rioler Wald - Schweich", + "startTimestamp": "2026-02-02T00:00:00+01:00", + "coordinate": { + "lat": 49.80975113718318, + "long": 6.75824633835306 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.02.26 um 00:00 Uhr", + "Ende: 27.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.29)", + "", + "A1: Saarbr\u00fccken -> K\u00f6ln/Koblenz, zwischen 5.9 km hinter Rioler Wald und 0.8 km vor AS Schweich", + "", + "L\u00e4nge: 2.09 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 Br\u00fcckeninstandsetzung Moselbr\u00fccke Schweich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.758246338, + 49.809751137 + ], + [ + 6.7580431, + 49.811414601 + ], + [ + 6.7580025, + 49.812088201 + ], + [ + 6.7579881, + 49.812666001 + ], + [ + 6.7579943, + 49.813026101 + ], + [ + 6.7580055, + 49.813325401 + ], + [ + 6.7580643, + 49.815030301 + ], + [ + 6.7581201, + 49.815774801 + ], + [ + 6.7583698, + 49.818209401 + ], + [ + 6.7585211, + 49.819167401 + ], + [ + 6.7587954, + 49.820446401 + ], + [ + 6.7589135, + 49.821053401 + ], + [ + 6.7593421, + 49.823281201 + ], + [ + 6.759566, + 49.824430801 + ], + [ + 6.7597506, + 49.825354401 + ], + [ + 6.7599753, + 49.826528601 + ], + [ + 6.760087, + 49.827053801 + ], + [ + 6.7602161, + 49.827677501 + ], + [ + 6.7603669, + 49.828306401 + ], + [ + 6.760411618, + 49.828460111 + ] + ] + } + }, + { + "identifier": "2024-004156--vi-bs.2026-02-25_08-00-00-000.devi-zus.2024-02-13_00-00-00-000_004.f.de51", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.78435819719765,6.813774949127159,49.802987967689575,6.761338374370144", + "point": "49.78435819719765,6.813774949127159", + "startLcPosition": "31", + "impact": { + "lower": "Moseltal", + "upper": "Rioler Wald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarbr\u00fccken -> K\u00f6ln/Koblenz", + "title": "A1 | Rioler Wald - Moseltal", + "startTimestamp": "2026-02-25T08:00:00+01:00", + "coordinate": { + "lat": 49.78435819719765, + "long": 6.813774949127159 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.02.26 um 08:00 Uhr", + "Ende: 01.09.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "A1: Saarbr\u00fccken -> K\u00f6ln/Koblenz, zwischen 0.1 km hinter Rioler Wald und 0.8 km vor AD Moseltal", + "", + "L\u00e4nge: 4.93 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.75 m", + "", + "A1 Br\u00fcckeninstandsetzung Fellertalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.813774949, + 49.784358197 + ], + [ + 6.8136021, + 49.784345001 + ], + [ + 6.811627, + 49.784163801 + ], + [ + 6.8109978, + 49.784115701 + ], + [ + 6.8093929, + 49.783970001 + ], + [ + 6.8087226, + 49.783892801 + ], + [ + 6.8077938, + 49.783793401 + ], + [ + 6.8026528, + 49.783264201 + ], + [ + 6.8023172, + 49.783230401 + ], + [ + 6.798098, + 49.782806101 + ], + [ + 6.7957142, + 49.782573901 + ], + [ + 6.7952641, + 49.782535301 + ], + [ + 6.7947659, + 49.782498101 + ], + [ + 6.7941287, + 49.782461601 + ], + [ + 6.7935035, + 49.782439201 + ], + [ + 6.7929028, + 49.782433301 + ], + [ + 6.792359, + 49.782440501 + ], + [ + 6.791715, + 49.782470401 + ], + [ + 6.7911739, + 49.782504401 + ], + [ + 6.7906317, + 49.782559701 + ], + [ + 6.7900616, + 49.782625101 + ], + [ + 6.7895516, + 49.782697301 + ], + [ + 6.7890465, + 49.782790801 + ], + [ + 6.788585, + 49.782885901 + ], + [ + 6.7876359, + 49.783119001 + ], + [ + 6.787154, + 49.783249101 + ], + [ + 6.7865703, + 49.783438401 + ], + [ + 6.7860184, + 49.783640201 + ], + [ + 6.7856421, + 49.783780401 + ], + [ + 6.7851406, + 49.783988801 + ], + [ + 6.7843835, + 49.784355601 + ], + [ + 6.7837952, + 49.784675901 + ], + [ + 6.7832804, + 49.784990501 + ], + [ + 6.7827496, + 49.785326601 + ], + [ + 6.7823399, + 49.785645401 + ], + [ + 6.7819193, + 49.785994901 + ], + [ + 6.7814112, + 49.786452701 + ], + [ + 6.7810747, + 49.786812001 + ], + [ + 6.7805376, + 49.787464301 + ], + [ + 6.7802152, + 49.787916301 + ], + [ + 6.7799129, + 49.788407801 + ], + [ + 6.7797175, + 49.788791201 + ], + [ + 6.7795221, + 49.789174601 + ], + [ + 6.7793947, + 49.789448001 + ], + [ + 6.7791692, + 49.789931701 + ], + [ + 6.7787777, + 49.790764101 + ], + [ + 6.7782828, + 49.791777101 + ], + [ + 6.7779561, + 49.792423901 + ], + [ + 6.7776612, + 49.792929601 + ], + [ + 6.7772591, + 49.793535101 + ], + [ + 6.7769462, + 49.793934901 + ], + [ + 6.7765369, + 49.794437701 + ], + [ + 6.7760054, + 49.794997901 + ], + [ + 6.7756094, + 49.795368801 + ], + [ + 6.775201, + 49.795747601 + ], + [ + 6.774881, + 49.796012201 + ], + [ + 6.7747686, + 49.796103801 + ], + [ + 6.7745164, + 49.796309601 + ], + [ + 6.7739776, + 49.796713501 + ], + [ + 6.7731891, + 49.797236801 + ], + [ + 6.772229, + 49.797776401 + ], + [ + 6.7718439, + 49.797962301 + ], + [ + 6.7714198, + 49.798152801 + ], + [ + 6.7708038, + 49.798422201 + ], + [ + 6.7701235, + 49.798707101 + ], + [ + 6.7693324, + 49.799016201 + ], + [ + 6.7677289, + 49.799616501 + ], + [ + 6.7665858, + 49.800048201 + ], + [ + 6.765943, + 49.800295401 + ], + [ + 6.7651206, + 49.800644901 + ], + [ + 6.7644714, + 49.800935301 + ], + [ + 6.764041, + 49.801145801 + ], + [ + 6.7636198, + 49.801366301 + ], + [ + 6.7629195, + 49.801782901 + ], + [ + 6.762265, + 49.802234101 + ], + [ + 6.7618427, + 49.802555401 + ], + [ + 6.761338374, + 49.802987968 + ] + ] + } + }, + { + "identifier": "2024-004156--vi-bs.2026-02-25_08-00-00-000.devi-zus.2024-02-13_00-00-00-000_004.f.de47", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.8028787031054,6.761208206058879,49.78279749929515,6.79934889507323", + "point": "49.8028787031054,6.761208206058879", + "startLcPosition": "32", + "impact": { + "lower": "Rioler Wald", + "upper": "Moseltal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln/Koblenz -> Saarbr\u00fccken", + "title": "A1 | Moseltal - Rioler Wald", + "startTimestamp": "2026-02-25T08:00:00+01:00", + "coordinate": { + "lat": 49.8028787031054, + "long": 6.761208206058879 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.02.26 um 08:00 Uhr", + "Ende: 01.09.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "A1: K\u00f6ln/Koblenz -> Saarbr\u00fccken, zwischen 0.8 km hinter AD Moseltal und 1.2 km vor Rioler Wald", + "", + "L\u00e4nge: 3.88 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 Br\u00fcckeninstandsetzung Fellertalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.761208206, + 49.802878703 + ], + [ + 6.7617298, + 49.802437501 + ], + [ + 6.7622216, + 49.802067301 + ], + [ + 6.7627113, + 49.801736301 + ], + [ + 6.7632507, + 49.801405001 + ], + [ + 6.7636287, + 49.801192201 + ], + [ + 6.7641898, + 49.800909201 + ], + [ + 6.7650833, + 49.800496601 + ], + [ + 6.7662063, + 49.800038401 + ], + [ + 6.7677043, + 49.799477701 + ], + [ + 6.7685673, + 49.799152701 + ], + [ + 6.7692531, + 49.798894401 + ], + [ + 6.7700028, + 49.798601201 + ], + [ + 6.7707762, + 49.798278901 + ], + [ + 6.7710096, + 49.798175901 + ], + [ + 6.771611, + 49.797910501 + ], + [ + 6.7722223, + 49.797612201 + ], + [ + 6.7730573, + 49.797141301 + ], + [ + 6.7735811, + 49.796798301 + ], + [ + 6.7740213, + 49.796476201 + ], + [ + 6.774472, + 49.796144401 + ], + [ + 6.7748452, + 49.795845101 + ], + [ + 6.7753075, + 49.795447101 + ], + [ + 6.7757888, + 49.794970001 + ], + [ + 6.7761445, + 49.794602801 + ], + [ + 6.7764353, + 49.794287101 + ], + [ + 6.77672, + 49.793927501 + ], + [ + 6.7769974, + 49.793579101 + ], + [ + 6.7772993, + 49.793131901 + ], + [ + 6.7775922, + 49.792650501 + ], + [ + 6.7778659, + 49.792177101 + ], + [ + 6.7785991, + 49.790731301 + ], + [ + 6.7789934, + 49.789858401 + ], + [ + 6.7792819, + 49.789237501 + ], + [ + 6.7795376, + 49.788714201 + ], + [ + 6.779731, + 49.788359601 + ], + [ + 6.7799771, + 49.787951401 + ], + [ + 6.7801952, + 49.787623901 + ], + [ + 6.7803611, + 49.787386601 + ], + [ + 6.7812969, + 49.786328701 + ], + [ + 6.7822854, + 49.785478701 + ], + [ + 6.7830871, + 49.784921401 + ], + [ + 6.7836687, + 49.784571901 + ], + [ + 6.7843224, + 49.784221701 + ], + [ + 6.7848554, + 49.783955801 + ], + [ + 6.7854208, + 49.783710001 + ], + [ + 6.7858317, + 49.783548401 + ], + [ + 6.7864593, + 49.783323001 + ], + [ + 6.7870138, + 49.783146601 + ], + [ + 6.7876359, + 49.782971601 + ], + [ + 6.7884723, + 49.782769701 + ], + [ + 6.7890466, + 49.782654401 + ], + [ + 6.7895439, + 49.782565301 + ], + [ + 6.7900844, + 49.782493101 + ], + [ + 6.7905894, + 49.782427801 + ], + [ + 6.7911999, + 49.782369901 + ], + [ + 6.7917198, + 49.782335701 + ], + [ + 6.7923524, + 49.782307001 + ], + [ + 6.7928869, + 49.782298601 + ], + [ + 6.793605, + 49.782307501 + ], + [ + 6.7943078, + 49.782338601 + ], + [ + 6.7948602, + 49.782370401 + ], + [ + 6.7952905, + 49.782404301 + ], + [ + 6.7957508, + 49.782443301 + ], + [ + 6.7981457, + 49.782675801 + ], + [ + 6.799348895, + 49.782797499 + ] + ] + } + }, + { + "identifier": "2024-004156--vi-bs.2025-02-25_08-00-00-000.devi-zus.2024-02-13_00-00-00-000_004.f.de45", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.809741319622596,6.758054818208905,49.80287870310539,6.761208206058879", + "point": "49.809741319622596,6.758054818208905", + "startLcPosition": "32", + "impact": { + "lower": "Rioler Wald", + "upper": "Moseltal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln/Koblenz -> Saarbr\u00fccken", + "title": "A1 | Moseltal - Rioler Wald", + "startTimestamp": "2025-02-25T08:00:00+01:00", + "coordinate": { + "lat": 49.809741319622596, + "long": 6.758054818208905 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.02.25 um 08:00 Uhr", + "Ende: 01.09.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "A1: K\u00f6ln/Koblenz -> Saarbr\u00fccken, zwischen AD Moseltal und 5.1 km vor Rioler Wald", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 Br\u00fcckeninstandsetzung Fellertalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.758054818, + 49.80974132 + ], + [ + 6.7581045, + 49.809337301 + ], + [ + 6.7581708, + 49.808916801 + ], + [ + 6.7582742, + 49.808405201 + ], + [ + 6.7584947, + 49.807523601 + ], + [ + 6.7586835, + 49.806893401 + ], + [ + 6.758797, + 49.806536301 + ], + [ + 6.7589421, + 49.806143401 + ], + [ + 6.7591399, + 49.805662301 + ], + [ + 6.7593385, + 49.805256901 + ], + [ + 6.7595985, + 49.804775401 + ], + [ + 6.7598883, + 49.804339601 + ], + [ + 6.7602449, + 49.803888901 + ], + [ + 6.7604917, + 49.803602401 + ], + [ + 6.7608216, + 49.803251001 + ], + [ + 6.7611569, + 49.802922101 + ], + [ + 6.761208206, + 49.802878703 + ] + ] + } + }, + { + "identifier": "2024-038925--vi-bs.2026-02-02_00-00-00-000.devi-zus.2025-06-01_00-00-00-000.f_001.de16", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.828482660440606,6.760234241661848,49.809741319622596,6.758054818208905", + "point": "49.828482660440606,6.760234241661848", + "startLcPosition": "33", + "impact": { + "lower": "Rioler Wald", + "upper": "Schweich", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln/Koblenz -> Saarbr\u00fccken", + "title": "A1 | Schweich - Rioler Wald", + "startTimestamp": "2026-02-02T00:00:00+01:00", + "coordinate": { + "lat": 49.828482660440606, + "long": 6.760234241661848 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.02.26 um 00:00 Uhr", + "Ende: 27.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.29)", + "", + "A1: K\u00f6ln/Koblenz -> Saarbr\u00fccken, zwischen 0.8 km hinter AS Schweich und 5.9 km vor Rioler Wald", + "", + "L\u00e4nge: 2.09 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 Br\u00fcckeninstandsetzung Moselbr\u00fccke Schweich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.760234242, + 49.82848266 + ], + [ + 6.7601835, + 49.828320101 + ], + [ + 6.7600772, + 49.827922401 + ], + [ + 6.7598987, + 49.827074901 + ], + [ + 6.7597925, + 49.826548201 + ], + [ + 6.759599, + 49.825552801 + ], + [ + 6.7594065, + 49.824589401 + ], + [ + 6.7592024, + 49.823458301 + ], + [ + 6.7587329, + 49.821050401 + ], + [ + 6.7586169, + 49.820458901 + ], + [ + 6.7583669, + 49.819197201 + ], + [ + 6.7582103, + 49.818250101 + ], + [ + 6.7581162, + 49.817527601 + ], + [ + 6.7580273, + 49.816676601 + ], + [ + 6.7579247, + 49.815860401 + ], + [ + 6.7578602, + 49.815031101 + ], + [ + 6.7577954, + 49.813823401 + ], + [ + 6.7578091, + 49.812626301 + ], + [ + 6.7578148, + 49.812217601 + ], + [ + 6.7578316, + 49.811789701 + ], + [ + 6.7578598, + 49.811414601 + ], + [ + 6.7579013, + 49.810989701 + ], + [ + 6.758054818, + 49.80974132 + ] + ] + } + }, + { + "identifier": "2026-016639--vi-bs.2026-04-10_08-00-00-000.devi-bs.2026-04-07_08-00-00-000_011.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.06398327426577,6.896277465496784,50.02898252266457,6.917565837490954", + "point": "50.06398327426577,6.896277465496784", + "startLcPosition": "45", + "impact": { + "lower": "Flussbach", + "upper": "Eifel-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln/Koblenz -> Trier", + "title": "A1 | Eifel-Ost - Flussbach", + "coordinate": { + "lat": 50.06398327426577, + "long": 6.896277465496784 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 18:00 Uhr", + "", + "A1: K\u00f6ln/Koblenz -> Trier, zwischen 1.1 km hinter Eifel-Ost und 5.2 km vor Flussbach", + "", + "L\u00e4nge: 4.47 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A1 von Udler (Parkplatz) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.896277465, + 50.063983274 + ], + [ + 6.8963407, + 50.063960101 + ], + [ + 6.8965536, + 50.063875101 + ], + [ + 6.8967701, + 50.063786401 + ], + [ + 6.8969613, + 50.063704101 + ], + [ + 6.8971894, + 50.063600701 + ], + [ + 6.8973941, + 50.063502401 + ], + [ + 6.8975889, + 50.063405301 + ], + [ + 6.8977847, + 50.063303301 + ], + [ + 6.8979801, + 50.063196001 + ], + [ + 6.8981607, + 50.063092301 + ], + [ + 6.8983508, + 50.062979101 + ], + [ + 6.8985315, + 50.062865601 + ], + [ + 6.8987062, + 50.062749601 + ], + [ + 6.8988821, + 50.062628801 + ], + [ + 6.8990483, + 50.062508701 + ], + [ + 6.899215, + 50.062383401 + ], + [ + 6.8993734, + 50.062259301 + ], + [ + 6.8995254, + 50.062133701 + ], + [ + 6.8996783, + 50.062000901 + ], + [ + 6.8998244, + 50.061868201 + ], + [ + 6.8999649, + 50.061733401 + ], + [ + 6.9001007, + 50.061597401 + ], + [ + 6.9002302, + 50.061459701 + ], + [ + 6.9003589, + 50.061318201 + ], + [ + 6.9004812, + 50.061175101 + ], + [ + 6.9006003, + 50.061026901 + ], + [ + 6.9007102, + 50.060881501 + ], + [ + 6.9008145, + 50.060736201 + ], + [ + 6.9009146, + 50.060587301 + ], + [ + 6.9010096, + 50.060438301 + ], + [ + 6.9011008, + 50.060284801 + ], + [ + 6.901187, + 50.060131601 + ], + [ + 6.9012612, + 50.059983401 + ], + [ + 6.9013378, + 50.059822801 + ], + [ + 6.9014093, + 50.059662101 + ], + [ + 6.9014769, + 50.059507101 + ], + [ + 6.9015405, + 50.059350601 + ], + [ + 6.9016036, + 50.059195101 + ], + [ + 6.9016671, + 50.059040901 + ], + [ + 6.9017305, + 50.058882001 + ], + [ + 6.9017933, + 50.058726401 + ], + [ + 6.9018588, + 50.058567301 + ], + [ + 6.9022988, + 50.057472501 + ], + [ + 6.9025541, + 50.056843401 + ], + [ + 6.9028048, + 50.056219901 + ], + [ + 6.9034575, + 50.054599901 + ], + [ + 6.9036058, + 50.054232501 + ], + [ + 6.9036902, + 50.054026101 + ], + [ + 6.9038871, + 50.053549701 + ], + [ + 6.9039536, + 50.053402401 + ], + [ + 6.9040251, + 50.053241801 + ], + [ + 6.9040971, + 50.053086501 + ], + [ + 6.9041736, + 50.052935501 + ], + [ + 6.9042575, + 50.052779201 + ], + [ + 6.9044418, + 50.052467901 + ], + [ + 6.9045286, + 50.052327401 + ], + [ + 6.904627, + 50.052180301 + ], + [ + 6.9047322, + 50.052033301 + ], + [ + 6.9048375, + 50.051891201 + ], + [ + 6.9049478, + 50.051747601 + ], + [ + 6.9050624, + 50.051605701 + ], + [ + 6.9051865, + 50.051457301 + ], + [ + 6.9053085, + 50.051318601 + ], + [ + 6.9054374, + 50.051178901 + ], + [ + 6.9055675, + 50.051041901 + ], + [ + 6.9057029, + 50.050904301 + ], + [ + 6.9058404, + 50.050772701 + ], + [ + 6.9059852, + 50.050637701 + ], + [ + 6.9061322, + 50.050507201 + ], + [ + 6.9062975, + 50.050366101 + ], + [ + 6.906433, + 50.050253501 + ], + [ + 6.9065902, + 50.050127601 + ], + [ + 6.9067619, + 50.049997001 + ], + [ + 6.9069206, + 50.049881001 + ], + [ + 6.9070859, + 50.049763201 + ], + [ + 6.907263, + 50.049641401 + ], + [ + 6.907435, + 50.049526501 + ], + [ + 6.9076155, + 50.049411701 + ], + [ + 6.9077916, + 50.049301801 + ], + [ + 6.9079753, + 50.049192801 + ], + [ + 6.9081636, + 50.049083101 + ], + [ + 6.9083534, + 50.048977101 + ], + [ + 6.9085468, + 50.048871101 + ], + [ + 6.908741, + 50.048768701 + ], + [ + 6.9089371, + 50.048665101 + ], + [ + 6.9091349, + 50.048564401 + ], + [ + 6.9101219, + 50.048061401 + ], + [ + 6.9111012, + 50.047560701 + ], + [ + 6.9123564, + 50.046908601 + ], + [ + 6.9124628, + 50.046848501 + ], + [ + 6.9126538, + 50.046740201 + ], + [ + 6.9128412, + 50.046630201 + ], + [ + 6.9129745, + 50.046544201 + ], + [ + 6.9134054, + 50.046255201 + ], + [ + 6.9135443, + 50.046164401 + ], + [ + 6.913708, + 50.046041001 + ], + [ + 6.9138692, + 50.045916201 + ], + [ + 6.914181, + 50.045657501 + ], + [ + 6.9143315, + 50.045522501 + ], + [ + 6.914477, + 50.045385901 + ], + [ + 6.9146169, + 50.045248501 + ], + [ + 6.9147499, + 50.045109101 + ], + [ + 6.9148755, + 50.044972101 + ], + [ + 6.9149994, + 50.044829101 + ], + [ + 6.9151182, + 50.044683501 + ], + [ + 6.9152316, + 50.044536501 + ], + [ + 6.9153407, + 50.044389501 + ], + [ + 6.9154419, + 50.044241101 + ], + [ + 6.9155864, + 50.044018701 + ], + [ + 6.915661, + 50.043881501 + ], + [ + 6.9158523, + 50.043530001 + ], + [ + 6.9159113, + 50.043408301 + ], + [ + 6.916139, + 50.042783001 + ], + [ + 6.9161954, + 50.042584301 + ], + [ + 6.9162517, + 50.042345801 + ], + [ + 6.9162777, + 50.042192701 + ], + [ + 6.9163019, + 50.042027401 + ], + [ + 6.916322, + 50.041870901 + ], + [ + 6.9163331, + 50.041703401 + ], + [ + 6.9163385, + 50.041546901 + ], + [ + 6.9163396, + 50.041378501 + ], + [ + 6.916334, + 50.041214701 + ], + [ + 6.9163244, + 50.041053501 + ], + [ + 6.916307, + 50.040888601 + ], + [ + 6.9162852, + 50.040727101 + ], + [ + 6.9162587, + 50.040562501 + ], + [ + 6.9162265, + 50.040401501 + ], + [ + 6.9161872, + 50.040237601 + ], + [ + 6.916142, + 50.040078301 + ], + [ + 6.9160899, + 50.039918501 + ], + [ + 6.9160315, + 50.039757401 + ], + [ + 6.9159718, + 50.039598801 + ], + [ + 6.9159117, + 50.039441501 + ], + [ + 6.9156914, + 50.038871601 + ], + [ + 6.9148792, + 50.036714401 + ], + [ + 6.9147127, + 50.036283201 + ], + [ + 6.9143912, + 50.035450601 + ], + [ + 6.9142708, + 50.035105401 + ], + [ + 6.9141877, + 50.034805601 + ], + [ + 6.9141244, + 50.034510001 + ], + [ + 6.9140911, + 50.034216401 + ], + [ + 6.9140745, + 50.033916901 + ], + [ + 6.9140777, + 50.033603001 + ], + [ + 6.9141045, + 50.033275701 + ], + [ + 6.9141662, + 50.032944901 + ], + [ + 6.9142197, + 50.032761601 + ], + [ + 6.914293, + 50.032494101 + ], + [ + 6.9143819, + 50.032253401 + ], + [ + 6.9144908, + 50.031992101 + ], + [ + 6.9146436, + 50.031704401 + ], + [ + 6.9147877, + 50.031460801 + ], + [ + 6.9149628, + 50.031189201 + ], + [ + 6.9151425, + 50.030956601 + ], + [ + 6.9153367, + 50.030718101 + ], + [ + 6.9156334, + 50.030400101 + ], + [ + 6.9159327, + 50.030118901 + ], + [ + 6.9162279, + 50.029874101 + ], + [ + 6.9165051, + 50.029657501 + ], + [ + 6.9168317, + 50.029421701 + ], + [ + 6.9172293, + 50.029173301 + ], + [ + 6.917565837, + 50.028982523 + ] + ] + } + }, + { + "identifier": "2026-016639--vi-bs.2026-04-09_08-00-00-000.devi-bs.2026-04-07_08-00-00-000_011.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.096457491585234,6.868026419438464,50.06398327426577,6.896277465496784", + "point": "50.096457491585234,6.868026419438464", + "startLcPosition": "47", + "impact": { + "lower": "Hasborn", + "upper": "Manderscheid", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln/Koblenz -> Trier", + "title": "A1 | Manderscheid - Hasborn", + "coordinate": { + "lat": 50.096457491585234, + "long": 6.868026419438464 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 18:00 Uhr", + "", + "A1: K\u00f6ln/Koblenz -> Trier, zwischen 0.8 km hinter AS Manderscheid und 2.8 km vor AS Hasborn", + "", + "L\u00e4nge: 4.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A1 von Udler (Parkplatz) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.868026419, + 50.096457492 + ], + [ + 6.8680466, + 50.096429301 + ], + [ + 6.8680992, + 50.096356401 + ], + [ + 6.8681509, + 50.096283101 + ], + [ + 6.8682515, + 50.096135301 + ], + [ + 6.8683399, + 50.095986801 + ], + [ + 6.8684349, + 50.095833801 + ], + [ + 6.8685263, + 50.095682301 + ], + [ + 6.8686981, + 50.095383901 + ], + [ + 6.8687806, + 50.095226401 + ], + [ + 6.8688759, + 50.095049601 + ], + [ + 6.8689361, + 50.094918701 + ], + [ + 6.8690096, + 50.094758601 + ], + [ + 6.8690783, + 50.094607201 + ], + [ + 6.8691455, + 50.094455401 + ], + [ + 6.8692101, + 50.094294201 + ], + [ + 6.869268, + 50.094142301 + ], + [ + 6.8693282, + 50.093983501 + ], + [ + 6.8693842, + 50.093824701 + ], + [ + 6.8694381, + 50.093665401 + ], + [ + 6.8694883, + 50.093502801 + ], + [ + 6.8695333, + 50.093336001 + ], + [ + 6.8695755, + 50.093182401 + ], + [ + 6.8696147, + 50.093026201 + ], + [ + 6.8696928, + 50.092705201 + ], + [ + 6.8697643, + 50.092391301 + ], + [ + 6.8699396, + 50.091596301 + ], + [ + 6.8701565, + 50.090629001 + ], + [ + 6.8705826, + 50.088700201 + ], + [ + 6.8708648, + 50.087428401 + ], + [ + 6.871152, + 50.086131201 + ], + [ + 6.8717283, + 50.083510601 + ], + [ + 6.8720468, + 50.082082201 + ], + [ + 6.8723673, + 50.080650901 + ], + [ + 6.8729738, + 50.077946201 + ], + [ + 6.8730104, + 50.077792401 + ], + [ + 6.8730504, + 50.077632801 + ], + [ + 6.8730932, + 50.077473101 + ], + [ + 6.8731355, + 50.077321601 + ], + [ + 6.8731834, + 50.077159601 + ], + [ + 6.873231, + 50.077000601 + ], + [ + 6.8732798, + 50.076851601 + ], + [ + 6.8733353, + 50.076687501 + ], + [ + 6.8733919, + 50.076531101 + ], + [ + 6.8734534, + 50.076370401 + ], + [ + 6.8735136, + 50.076217801 + ], + [ + 6.8735794, + 50.076062601 + ], + [ + 6.8736451, + 50.075913301 + ], + [ + 6.8737211, + 50.075754201 + ], + [ + 6.8737929, + 50.075601301 + ], + [ + 6.8738714, + 50.075447001 + ], + [ + 6.8739489, + 50.075297701 + ], + [ + 6.874031, + 50.075144901 + ], + [ + 6.8741185, + 50.074989601 + ], + [ + 6.8742033, + 50.074843001 + ], + [ + 6.8742922, + 50.074693301 + ], + [ + 6.8743847, + 50.074543701 + ], + [ + 6.8744813, + 50.074393301 + ], + [ + 6.8745829, + 50.074242001 + ], + [ + 6.8746821, + 50.074099201 + ], + [ + 6.8747853, + 50.073954101 + ], + [ + 6.8748958, + 50.073803301 + ], + [ + 6.8750044, + 50.073661201 + ], + [ + 6.8751153, + 50.073519901 + ], + [ + 6.8752334, + 50.073374101 + ], + [ + 6.875351, + 50.073234001 + ], + [ + 6.87547, + 50.073094701 + ], + [ + 6.8755954, + 50.072955701 + ], + [ + 6.8757235, + 50.072816701 + ], + [ + 6.8758519, + 50.072679801 + ], + [ + 6.8759819, + 50.072543801 + ], + [ + 6.8761177, + 50.072407001 + ], + [ + 6.8762517, + 50.072273701 + ], + [ + 6.876389, + 50.072141201 + ], + [ + 6.8765332, + 50.072005001 + ], + [ + 6.8766768, + 50.071873601 + ], + [ + 6.8768203, + 50.071745401 + ], + [ + 6.8769683, + 50.071616001 + ], + [ + 6.8771192, + 50.071485801 + ], + [ + 6.8772718, + 50.071359001 + ], + [ + 6.8775516, + 50.071137801 + ], + [ + 6.8777491, + 50.070979301 + ], + [ + 6.8779094, + 50.070857801 + ], + [ + 6.878075, + 50.070736201 + ], + [ + 6.8782424, + 50.070615901 + ], + [ + 6.8784117, + 50.070497801 + ], + [ + 6.8785818, + 50.070381801 + ], + [ + 6.8787601, + 50.070264401 + ], + [ + 6.8789297, + 50.070153201 + ], + [ + 6.8791034, + 50.070042301 + ], + [ + 6.8792788, + 50.069932501 + ], + [ + 6.8794677, + 50.069817101 + ], + [ + 6.8796515, + 50.069707601 + ], + [ + 6.8798385, + 50.069599601 + ], + [ + 6.8800235, + 50.069494101 + ], + [ + 6.8802117, + 50.069390701 + ], + [ + 6.8804043, + 50.069286301 + ], + [ + 6.8805968, + 50.069184101 + ], + [ + 6.8807925, + 50.069083301 + ], + [ + 6.880992, + 50.068983201 + ], + [ + 6.8813923, + 50.068790301 + ], + [ + 6.8815967, + 50.068695401 + ], + [ + 6.8818023, + 50.068602201 + ], + [ + 6.8820051, + 50.068512601 + ], + [ + 6.8822103, + 50.068424501 + ], + [ + 6.8824287, + 50.068332401 + ], + [ + 6.8826318, + 50.068249101 + ], + [ + 6.8828462, + 50.068162501 + ], + [ + 6.8830639, + 50.068078201 + ], + [ + 6.8832764, + 50.067997801 + ], + [ + 6.8834943, + 50.067916801 + ], + [ + 6.8837101, + 50.067839701 + ], + [ + 6.8839319, + 50.067762601 + ], + [ + 6.8841548, + 50.067686701 + ], + [ + 6.8843486, + 50.067624401 + ], + [ + 6.8850428, + 50.067402801 + ], + [ + 6.885258, + 50.067336601 + ], + [ + 6.8861528, + 50.067066101 + ], + [ + 6.8867379, + 50.066889201 + ], + [ + 6.8868816, + 50.066845901 + ], + [ + 6.8877045, + 50.066597901 + ], + [ + 6.8886034, + 50.066327401 + ], + [ + 6.8902034, + 50.065843001 + ], + [ + 6.8918053, + 50.065358701 + ], + [ + 6.8934016, + 50.064883901 + ], + [ + 6.894316, + 50.064610601 + ], + [ + 6.8947718, + 50.064472801 + ], + [ + 6.8950008, + 50.064403901 + ], + [ + 6.8952285, + 50.064333901 + ], + [ + 6.8954541, + 50.064263801 + ], + [ + 6.8956803, + 50.064192001 + ], + [ + 6.8959034, + 50.064118401 + ], + [ + 6.8961254, + 50.064039001 + ], + [ + 6.896277465, + 50.063983274 + ] + ] + } + }, + { + "identifier": "2026-017768--vi-bs.2026-04-17_06-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.530537166905695,6.671856687584154,50.51980502387953,6.665827501660801", + "point": "50.530537166905695,6.671856687584154", + "startLcPosition": "58", + "impact": { + "lower": "Engelgau", + "upper": "Mechernich", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Euskirchen -> Blankenheim", + "title": "A1 | Mechernich - Engelgau", + "coordinate": { + "lat": 50.530537166905695, + "long": 6.671856687584154 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 06:00 bis 15:00 Uhr", + "", + "A1: Euskirchen -> Blankenheim, zwischen 5.1 km hinter AS Mechernich und 3.6 km vor Engelgau", + "", + "L\u00e4nge: 1.27 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 von Mechernich (AS) nach Engelgau (Rastplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.671856688, + 50.530537167 + ], + [ + 6.6716528, + 50.530183001 + ], + [ + 6.6707175, + 50.528596701 + ], + [ + 6.6705609, + 50.528321401 + ], + [ + 6.6693584, + 50.526286201 + ], + [ + 6.6691014, + 50.525843101 + ], + [ + 6.6684971, + 50.524801301 + ], + [ + 6.6678668, + 50.523734801 + ], + [ + 6.6674116, + 50.522949101 + ], + [ + 6.6672509, + 50.522655201 + ], + [ + 6.6666493, + 50.521529701 + ], + [ + 6.6662295, + 50.520679901 + ], + [ + 6.6658444, + 50.519845501 + ], + [ + 6.665827502, + 50.519805024 + ] + ] + } + }, + { + "identifier": "2026-017769--vi-bs.2026-04-13_09-00-00-000_015.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.69388360003574,6.76617680447043,50.742834616854346,6.801744677209212", + "point": "50.69388360003574,6.76617680447043", + "startLcPosition": "61", + "impact": { + "lower": "Weilerswist-West", + "upper": "Euskirchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Euskirchen -> K\u00f6ln", + "title": "A1 | Euskirchen - Weilerswist-West", + "coordinate": { + "lat": 50.69388360003574, + "long": 6.76617680447043 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 19:00 Uhr", + "14.04.26 von 09:00 bis 19:00 Uhr", + "15.04.26 von 09:00 bis 19:00 Uhr", + "16.04.26 von 09:00 bis 19:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "", + "A1: Euskirchen -> K\u00f6ln, zwischen 2.5 km hinter AS Euskirchen und 1.3 km vor AS Weilerswist-West", + "", + "L\u00e4nge: 6.05 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 von Euskirchen (AS) nach Weilerswist-West (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.766176804, + 50.6938836 + ], + [ + 6.7669114, + 50.694801801 + ], + [ + 6.7675971, + 50.695736201 + ], + [ + 6.7682805, + 50.696710301 + ], + [ + 6.7691374, + 50.698045601 + ], + [ + 6.7699091, + 50.699330701 + ], + [ + 6.7708032, + 50.700889101 + ], + [ + 6.771043, + 50.701352701 + ], + [ + 6.771073, + 50.701409001 + ], + [ + 6.7714027, + 50.702046101 + ], + [ + 6.7720078, + 50.703221601 + ], + [ + 6.7727954, + 50.704900901 + ], + [ + 6.7754726, + 50.711010001 + ], + [ + 6.7763692, + 50.713011701 + ], + [ + 6.7774489, + 50.715309401 + ], + [ + 6.7782298, + 50.716829101 + ], + [ + 6.7788582, + 50.717984301 + ], + [ + 6.7794966, + 50.719087401 + ], + [ + 6.7795152, + 50.719118701 + ], + [ + 6.7795775, + 50.719223701 + ], + [ + 6.780079, + 50.720068801 + ], + [ + 6.7807061, + 50.721072001 + ], + [ + 6.7812401, + 50.721893801 + ], + [ + 6.7817737, + 50.722686601 + ], + [ + 6.7823267, + 50.723482501 + ], + [ + 6.7829719, + 50.724375201 + ], + [ + 6.7837854, + 50.725463401 + ], + [ + 6.7841286, + 50.725906101 + ], + [ + 6.7846276, + 50.726541001 + ], + [ + 6.785361, + 50.727445501 + ], + [ + 6.7861307, + 50.728357901 + ], + [ + 6.7868471, + 50.729178901 + ], + [ + 6.7875288, + 50.729945601 + ], + [ + 6.7882766, + 50.730751701 + ], + [ + 6.7889703, + 50.731487301 + ], + [ + 6.7895911, + 50.732123401 + ], + [ + 6.7902885, + 50.732821301 + ], + [ + 6.7911358, + 50.733646701 + ], + [ + 6.792032, + 50.734495701 + ], + [ + 6.7927938, + 50.735199001 + ], + [ + 6.7938405, + 50.736153701 + ], + [ + 6.7941099, + 50.736393701 + ], + [ + 6.7951309, + 50.737279101 + ], + [ + 6.7961296, + 50.738142201 + ], + [ + 6.7968237, + 50.738730101 + ], + [ + 6.798528, + 50.740173701 + ], + [ + 6.7989908, + 50.740551901 + ], + [ + 6.8006163, + 50.741902601 + ], + [ + 6.801744677, + 50.742834617 + ] + ] + } + }, + { + "identifier": "2026-017765--vi-bs.2026-04-13_06-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.74093939267776,6.799236521713225,50.71712818562776,6.7782106305985454", + "point": "50.74093939267776,6.799236521713225", + "startLcPosition": "62", + "impact": { + "lower": "Euskirchen", + "upper": "Oberste Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Euskirchen", + "title": "A1 | Oberste Heide - Euskirchen", + "coordinate": { + "lat": 50.74093939267776, + "long": 6.799236521713225 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 06:00 bis 15:00 Uhr", + "14.04.26 von 06:00 bis 15:00 Uhr", + "15.04.26 von 06:00 bis 15:00 Uhr", + "16.04.26 von 06:00 bis 15:00 Uhr", + "17.04.26 von 06:00 bis 15:00 Uhr", + "", + "A1: K\u00f6ln -> Euskirchen, zwischen 0.1 km hinter Oberste Heide und 5.2 km vor AS Euskirchen", + "", + "L\u00e4nge: 3.05 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 von Oberste Heide (Rastplatz) nach Euskirchen (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.799236522, + 50.740939393 + ], + [ + 6.7988592, + 50.740625501 + ], + [ + 6.798233, + 50.740130101 + ], + [ + 6.7967064, + 50.738823601 + ], + [ + 6.7959861, + 50.738205501 + ], + [ + 6.7949992, + 50.737355901 + ], + [ + 6.7939657, + 50.736449701 + ], + [ + 6.7936945, + 50.736214401 + ], + [ + 6.7926773, + 50.735287701 + ], + [ + 6.7919225, + 50.734585801 + ], + [ + 6.7910038, + 50.733718001 + ], + [ + 6.7901463, + 50.732883901 + ], + [ + 6.7894669, + 50.732200801 + ], + [ + 6.7888335, + 50.731550701 + ], + [ + 6.7881433, + 50.730824501 + ], + [ + 6.7873946, + 50.730015701 + ], + [ + 6.7867065, + 50.729240201 + ], + [ + 6.7859741, + 50.728408501 + ], + [ + 6.7852076, + 50.727489401 + ], + [ + 6.7844892, + 50.726606401 + ], + [ + 6.7839789, + 50.725958101 + ], + [ + 6.7836339, + 50.725518901 + ], + [ + 6.7828234, + 50.724431501 + ], + [ + 6.7821843, + 50.723553001 + ], + [ + 6.7816115, + 50.722723401 + ], + [ + 6.7811032, + 50.721969001 + ], + [ + 6.7805448, + 50.721112201 + ], + [ + 6.7799567, + 50.720170501 + ], + [ + 6.7794381, + 50.719311101 + ], + [ + 6.7793749, + 50.719206401 + ], + [ + 6.7793569, + 50.719176601 + ], + [ + 6.7787072, + 50.718038301 + ], + [ + 6.778210631, + 50.717128186 + ] + ] + } + }, + { + "identifier": "2024-032543--vi-fbm.2026-04-09_09-00-00-000.devi-zus.2025-04-14_09-00-00-000_024.de36", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.766085425465555,6.821588296328735,50.76957403361849,6.822398669642197", + "point": "50.766085425465555,6.821588296328735", + "startLcPosition": "63", + "impact": { + "lower": "Bliesheim", + "upper": "Weilerswist-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Euskirchen -> K\u00f6ln", + "title": "A1 | Weilerswist-West - Bliesheim", + "coordinate": { + "lat": 50.766085425465555, + "long": 6.821588296328735 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "", + "A1: Euskirchen -> K\u00f6ln, zwischen 1.7 km hinter AS Weilerswist-West und 0.2 km vor AK Bliesheim", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 7 m", + "", + "BW AK Bliesheim (BW 21)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.821588296, + 50.766085425 + ], + [ + 6.8217211, + 50.766407401 + ], + [ + 6.821904, + 50.766921101 + ], + [ + 6.8220789, + 50.767535901 + ], + [ + 6.8222078, + 50.768102201 + ], + [ + 6.822318, + 50.768821101 + ], + [ + 6.822343, + 50.769037601 + ], + [ + 6.8223973, + 50.769527201 + ], + [ + 6.82239867, + 50.769574034 + ] + ] + } + }, + { + "identifier": "2024-032543--vi-bs.2026-03-26_05-00-00-000.devi-zus.2025-04-14_09-00-00-000_024.de26", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.765669506600034,6.821407106981651,50.77022971914642,6.822393221214119", + "point": "50.765669506600034,6.821407106981651", + "startLcPosition": "63", + "impact": { + "lower": "Bliesheim", + "upper": "Weilerswist-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Euskirchen -> K\u00f6ln", + "title": "A1 | Weilerswist-West - Bliesheim", + "startTimestamp": "2026-03-26T05:00:00+01:00", + "coordinate": { + "lat": 50.765669506600034, + "long": 6.821407106981651 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 05:00 Uhr", + "Ende: 30.09.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.09.26)", + "", + "A1: Euskirchen -> K\u00f6ln, zwischen 1.6 km hinter AS Weilerswist-West und 0.1 km vor AK Bliesheim", + "", + "L\u00e4nge: 0.51 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "BW AK Bliesheim (BW 21)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.821407107, + 50.765669507 + ], + [ + 6.8215093, + 50.765893901 + ], + [ + 6.8217211, + 50.766407401 + ], + [ + 6.821904, + 50.766921101 + ], + [ + 6.8220789, + 50.767535901 + ], + [ + 6.8222078, + 50.768102201 + ], + [ + 6.822318, + 50.768821101 + ], + [ + 6.822343, + 50.769037601 + ], + [ + 6.8223973, + 50.769527201 + ], + [ + 6.8224118, + 50.770023001 + ], + [ + 6.8223937, + 50.770226001 + ], + [ + 6.822393221, + 50.770229719 + ] + ] + } + }, + { + "identifier": "2026-016871--vi-bs.2026-04-07_06-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.74345183811894,6.802222402321171,50.720505373738256,6.780165828182704", + "point": "50.74345183811894,6.802222402321171", + "startLcPosition": "63", + "impact": { + "lower": "Euskirchen", + "upper": "Weilerswist-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Euskirchen", + "title": "A1 | Weilerswist-West - Euskirchen", + "coordinate": { + "lat": 50.74345183811894, + "long": 6.802222402321171 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 06:00 bis 15:00 Uhr", + "", + "A1: K\u00f6ln -> Euskirchen, zwischen 1.2 km hinter AS Weilerswist-West und 5.6 km vor AS Euskirchen", + "", + "L\u00e4nge: 3 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1 von Weilerswist-West (AS) nach Euskirchen (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.802222402, + 50.743451838 + ], + [ + 6.8020846, + 50.743337601 + ], + [ + 6.8004663, + 50.741962401 + ], + [ + 6.7988592, + 50.740625501 + ], + [ + 6.798233, + 50.740130101 + ], + [ + 6.7967064, + 50.738823601 + ], + [ + 6.7959861, + 50.738205501 + ], + [ + 6.7949992, + 50.737355901 + ], + [ + 6.7939657, + 50.736449701 + ], + [ + 6.7936945, + 50.736214401 + ], + [ + 6.7926773, + 50.735287701 + ], + [ + 6.7919225, + 50.734585801 + ], + [ + 6.7910038, + 50.733718001 + ], + [ + 6.7901463, + 50.732883901 + ], + [ + 6.7894669, + 50.732200801 + ], + [ + 6.7888335, + 50.731550701 + ], + [ + 6.7881433, + 50.730824501 + ], + [ + 6.7873946, + 50.730015701 + ], + [ + 6.7867065, + 50.729240201 + ], + [ + 6.7859741, + 50.728408501 + ], + [ + 6.7852076, + 50.727489401 + ], + [ + 6.7844892, + 50.726606401 + ], + [ + 6.7839789, + 50.725958101 + ], + [ + 6.7836339, + 50.725518901 + ], + [ + 6.7828234, + 50.724431501 + ], + [ + 6.7821843, + 50.723553001 + ], + [ + 6.7816115, + 50.722723401 + ], + [ + 6.7811032, + 50.721969001 + ], + [ + 6.7805448, + 50.721112201 + ], + [ + 6.780165828, + 50.720505374 + ] + ] + } + }, + { + "identifier": "2023-000045--vi-bs.2026-03-26_05-00-00-000.devi-zus.2024-03-23_09-00-00-000_001.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.78604878905556,6.807878793147246,50.77586330139321,6.8159161178381025", + "point": "50.78604878905556,6.807878793147246", + "startLcPosition": "65", + "impact": { + "lower": "Bliesheim", + "upper": "Erftstadt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Euskirchen", + "title": "A1 | Erftstadt - Bliesheim", + "startTimestamp": "2026-03-26T05:00:00+01:00", + "coordinate": { + "lat": 50.78604878905556, + "long": 6.807878793147246 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 05:00 Uhr", + "Ende: 12.06.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.27)", + "", + "A1: K\u00f6ln -> Euskirchen, zwischen 2.1 km hinter AS Erftstadt und 0.6 km vor AK Bliesheim", + "", + "L\u00e4nge: 1.27 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9 m", + "", + "BW Merowingerstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.807878793, + 50.786048789 + ], + [ + 6.8082637, + 50.785497501 + ], + [ + 6.8097605, + 50.783323701 + ], + [ + 6.8102829, + 50.782571401 + ], + [ + 6.8120364, + 50.780085201 + ], + [ + 6.8124612, + 50.779521301 + ], + [ + 6.8129118, + 50.778961501 + ], + [ + 6.8137872, + 50.777961101 + ], + [ + 6.8143334, + 50.777378001 + ], + [ + 6.8149139, + 50.776797601 + ], + [ + 6.815916118, + 50.775863301 + ] + ] + } + }, + { + "identifier": "2024-032543--vi-fbm.2026-04-09_09-00-00-000.devi-zus.2025-04-14_09-00-00-000_024.de34", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.774981237933154,6.816951872045531,50.76888246397274,6.821984867950553", + "point": "50.774981237933154,6.816951872045531", + "startLcPosition": "65", + "impact": { + "lower": "Weilerswist-West", + "upper": "Erftstadt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Euskirchen", + "title": "A1 | Erftstadt - Weilerswist-West", + "coordinate": { + "lat": 50.774981237933154, + "long": 6.816951872045531 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "", + "A1: K\u00f6ln -> Euskirchen, zwischen 3.5 km hinter AS Erftstadt und 2.0 km vor AS Weilerswist-West", + "", + "L\u00e4nge: 0.78 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "BW AK Bliesheim (BW 21)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.816951872, + 50.774981238 + ], + [ + 6.8174903, + 50.774541501 + ], + [ + 6.8181166, + 50.774064601 + ], + [ + 6.8185024, + 50.773634401 + ], + [ + 6.8190336, + 50.773222101 + ], + [ + 6.8194366, + 50.772899901 + ], + [ + 6.8202118, + 50.772282101 + ], + [ + 6.8203265, + 50.772190701 + ], + [ + 6.820537, + 50.771928701 + ], + [ + 6.8209582, + 50.771506401 + ], + [ + 6.8212198, + 50.771200301 + ], + [ + 6.8213891, + 50.770978701 + ], + [ + 6.8216042, + 50.770607001 + ], + [ + 6.821736, + 50.770319201 + ], + [ + 6.8218556, + 50.769992801 + ], + [ + 6.821912, + 50.769757701 + ], + [ + 6.821959, + 50.769433101 + ], + [ + 6.8219791, + 50.769145801 + ], + [ + 6.821984868, + 50.768882464 + ] + ] + } + }, + { + "identifier": "2024-032543--vi-fbm.2026-04-10_21-00-00-000.devi-zus.2025-04-14_09-00-00-000_024.de32", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.774981237933154,6.816951872045531,50.76888246397274,6.821984867950553", + "point": "50.774981237933154,6.816951872045531", + "startLcPosition": "65", + "impact": { + "lower": "Weilerswist-West", + "upper": "Erftstadt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Euskirchen", + "title": "A1 | Erftstadt - Weilerswist-West", + "coordinate": { + "lat": 50.774981237933154, + "long": 6.816951872045531 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 21:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A1: K\u00f6ln -> Euskirchen, zwischen 3.5 km hinter AS Erftstadt und 2.0 km vor AS Weilerswist-West", + "", + "L\u00e4nge: 0.78 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "BW AK Bliesheim (BW 21)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.816951872, + 50.774981238 + ], + [ + 6.8174903, + 50.774541501 + ], + [ + 6.8181166, + 50.774064601 + ], + [ + 6.8185024, + 50.773634401 + ], + [ + 6.8190336, + 50.773222101 + ], + [ + 6.8194366, + 50.772899901 + ], + [ + 6.8202118, + 50.772282101 + ], + [ + 6.8203265, + 50.772190701 + ], + [ + 6.820537, + 50.771928701 + ], + [ + 6.8209582, + 50.771506401 + ], + [ + 6.8212198, + 50.771200301 + ], + [ + 6.8213891, + 50.770978701 + ], + [ + 6.8216042, + 50.770607001 + ], + [ + 6.821736, + 50.770319201 + ], + [ + 6.8218556, + 50.769992801 + ], + [ + 6.821912, + 50.769757701 + ], + [ + 6.821959, + 50.769433101 + ], + [ + 6.8219791, + 50.769145801 + ], + [ + 6.821984868, + 50.768882464 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2026-04-06_07-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de626", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.987021113518736,6.860517311738111,50.99003718792487,6.86838711389326", + "point": "50.987021113518736,6.860517311738111", + "startLcPosition": "74", + "impact": { + "lower": "K\u00f6ln-Nord", + "upper": "K\u00f6ln-Bocklem\u00fcnd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Euskirchen -> K\u00f6ln", + "title": "A1 | K\u00f6ln-Bocklem\u00fcnd - K\u00f6ln-Nord", + "coordinate": { + "lat": 50.987021113518736, + "long": 6.860517311738111 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 05:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A1: Euskirchen -> K\u00f6ln, zwischen 1.2 km hinter AS K\u00f6ln-Bocklem\u00fcnd und 1.8 km vor AK K\u00f6ln-Nord", + "", + "L\u00e4nge: 0.65 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.860517312, + 50.987021114 + ], + [ + 6.8607324, + 50.987139201 + ], + [ + 6.8619207, + 50.987721701 + ], + [ + 6.8630325, + 50.988202101 + ], + [ + 6.8640746, + 50.988597001 + ], + [ + 6.8650129, + 50.988943501 + ], + [ + 6.8659911, + 50.989278201 + ], + [ + 6.8679396, + 50.989897201 + ], + [ + 6.8680597, + 50.989937001 + ], + [ + 6.868387114, + 50.990037188 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2026-04-17_22-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de613", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.99121371900437,6.872232378481066,50.99453021777253,6.883095300934585", + "point": "50.99121371900437,6.872232378481066", + "startLcPosition": "74", + "impact": { + "lower": "K\u00f6ln-Nord", + "upper": "K\u00f6ln-Bocklem\u00fcnd", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Euskirchen -> K\u00f6ln", + "title": "A1 | K\u00f6ln-Bocklem\u00fcnd - K\u00f6ln-Nord", + "startTimestamp": "2026-04-17T22:00:00+02:00", + "coordinate": { + "lat": 50.99121371900437, + "long": 6.872232378481066 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.04.26 um 22:00 Uhr", + "Ende: 20.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.27)", + "", + "A1: Euskirchen -> K\u00f6ln, zwischen 2.2 km hinter AS K\u00f6ln-Bocklem\u00fcnd und 0.6 km vor AK K\u00f6ln-Nord", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.872232378, + 50.991213719 + ], + [ + 6.8723477, + 50.991249001 + ], + [ + 6.8767131, + 50.992591201 + ], + [ + 6.8793807, + 50.993414401 + ], + [ + 6.8801408, + 50.993629601 + ], + [ + 6.8807198, + 50.993806301 + ], + [ + 6.8809288, + 50.993870701 + ], + [ + 6.8811359, + 50.993933501 + ], + [ + 6.8813472, + 50.993997901 + ], + [ + 6.8828023, + 50.994438001 + ], + [ + 6.8829148, + 50.994473301 + ], + [ + 6.883095301, + 50.994530218 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2025-12-15_09-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de414", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.02080626612525,6.936369209465316,51.030074242002556,6.952812892334066", + "point": "51.02080626612525,6.936369209465316", + "startLcPosition": "75", + "impact": { + "lower": "Leverkusener Br\u00fccke", + "upper": "K\u00f6ln-Nord", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Euskirchen -> Dortmund", + "title": "A1 | K\u00f6ln-Nord - Leverkusener Br\u00fccke", + "startTimestamp": "2025-12-15T09:00:00+01:00", + "coordinate": { + "lat": 51.02080626612525, + "long": 6.936369209465316 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 09:00 Uhr", + "Ende: 15.12.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.27)", + "", + "A1: Euskirchen -> Dortmund, zwischen 4.2 km hinter AK K\u00f6ln-Nord und 0.7 km vor Leverkusener Br\u00fccke", + "", + "L\u00e4nge: 1.55 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.936369209, + 51.020806266 + ], + [ + 6.9372284, + 51.021185101 + ], + [ + 6.937559, + 51.021326801 + ], + [ + 6.9380199, + 51.021534901 + ], + [ + 6.9402921, + 51.022599001 + ], + [ + 6.9419776, + 51.023443901 + ], + [ + 6.9433323, + 51.024212001 + ], + [ + 6.9437405, + 51.024448701 + ], + [ + 6.9441236, + 51.024698301 + ], + [ + 6.9448141, + 51.025171101 + ], + [ + 6.9451369, + 51.025388101 + ], + [ + 6.9461874, + 51.026071001 + ], + [ + 6.9484488, + 51.027543801 + ], + [ + 6.9488495, + 51.027791301 + ], + [ + 6.9497243, + 51.028301001 + ], + [ + 6.9507346, + 51.028901001 + ], + [ + 6.9518742, + 51.029560401 + ], + [ + 6.952812892, + 51.030074242 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2026-04-06_07-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de624", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.01551572606683,6.923545361643832,51.02158823549897,6.93813378196922", + "point": "51.01551572606683,6.923545361643832", + "startLcPosition": "75", + "impact": { + "lower": "K\u00f6ln-Niehl", + "upper": "K\u00f6ln-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Euskirchen -> Dortmund", + "title": "A1 | K\u00f6ln-Nord - K\u00f6ln-Niehl", + "coordinate": { + "lat": 51.01551572606683, + "long": 6.923545361643832 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 05:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A1: Euskirchen -> Dortmund, zwischen 3.1 km hinter AK K\u00f6ln-Nord und 0.4 km vor AS K\u00f6ln-Niehl", + "", + "L\u00e4nge: 1.23 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.923545362, + 51.015515726 + ], + [ + 6.9244956, + 51.015971701 + ], + [ + 6.9252388, + 51.016300701 + ], + [ + 6.9274964, + 51.017246401 + ], + [ + 6.9279141, + 51.017415201 + ], + [ + 6.9307445, + 51.018513401 + ], + [ + 6.9325686, + 51.019214001 + ], + [ + 6.9340418, + 51.019792301 + ], + [ + 6.9348709, + 51.020145601 + ], + [ + 6.9372284, + 51.021185101 + ], + [ + 6.937559, + 51.021326801 + ], + [ + 6.9380199, + 51.021534901 + ], + [ + 6.938133782, + 51.021588235 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2025-12-15_09-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de408", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.038519531751696,6.971886424592566,51.0374480252113,6.987361631618634", + "point": "51.038519531751696,6.971886424592566", + "startLcPosition": "78", + "impact": { + "lower": "Leverkusen", + "upper": "Leverkusen-West", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Leverkusen-West - Leverkusen", + "startTimestamp": "2025-12-15T09:00:00+01:00", + "coordinate": { + "lat": 51.038519531751696, + "long": 6.971886424592566 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 09:00 Uhr", + "Ende: 15.12.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.27)", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 0.6 km hinter AK Leverkusen-West und 1.5 km vor AK Leverkusen", + "", + "L\u00e4nge: 1.1 km | Maximale Durchfahrtsbreite: 9 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.971886425, + 51.038519532 + ], + [ + 6.9724025, + 51.038585801 + ], + [ + 6.9732436, + 51.038655801 + ], + [ + 6.9739226, + 51.038687201 + ], + [ + 6.9748482, + 51.038697601 + ], + [ + 6.9757463, + 51.038677401 + ], + [ + 6.9766889, + 51.038621801 + ], + [ + 6.9777529, + 51.038518301 + ], + [ + 6.9787773, + 51.038390701 + ], + [ + 6.979923, + 51.038236101 + ], + [ + 6.9814183, + 51.038010801 + ], + [ + 6.9819258, + 51.037934401 + ], + [ + 6.9829229, + 51.037799801 + ], + [ + 6.983483, + 51.037730601 + ], + [ + 6.983969, + 51.037671601 + ], + [ + 6.9844952, + 51.037616201 + ], + [ + 6.9848988, + 51.037575601 + ], + [ + 6.9862399, + 51.037485001 + ], + [ + 6.987181, + 51.037452401 + ], + [ + 6.987361632, + 51.037448025 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2025-12-15_09-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de410", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.038649260441424,6.971844968211447,51.028641762472695,6.950060080167562", + "point": "51.038649260441424,6.971844968211447", + "startLcPosition": "79", + "impact": { + "lower": "K\u00f6ln-Niehl", + "upper": "Leverkusen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Leverkusen - K\u00f6ln-Niehl", + "startTimestamp": "2025-12-15T09:00:00+01:00", + "coordinate": { + "lat": 51.038649260441424, + "long": 6.971844968211447 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 09:00 Uhr", + "Ende: 15.12.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.27)", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 2.6 km hinter AK Leverkusen und 0.7 km vor AS K\u00f6ln-Niehl", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 9 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.971844968, + 51.03864926 + ], + [ + 6.9714709, + 51.038602201 + ], + [ + 6.9708525, + 51.038530601 + ], + [ + 6.9701961, + 51.038418301 + ], + [ + 6.9697348, + 51.038345201 + ], + [ + 6.9685709, + 51.038096601 + ], + [ + 6.9679888, + 51.037964401 + ], + [ + 6.9674182, + 51.037805001 + ], + [ + 6.9667324, + 51.037579201 + ], + [ + 6.9662603, + 51.037412901 + ], + [ + 6.9655664, + 51.037156401 + ], + [ + 6.9647877, + 51.036803101 + ], + [ + 6.9641688, + 51.036493801 + ], + [ + 6.9625448, + 51.035618601 + ], + [ + 6.9527237, + 51.030137001 + ], + [ + 6.9516065, + 51.029555701 + ], + [ + 6.95006008, + 51.028641762 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2025-12-15_09-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de406", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.03760107264479,6.987369707796748,51.038649260441424,6.971844968211447", + "point": "51.03760107264479,6.987369707796748", + "startLcPosition": "79", + "impact": { + "lower": "Leverkusen-West", + "upper": "Leverkusen", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Leverkusen - Leverkusen-West", + "startTimestamp": "2025-12-15T09:00:00+01:00", + "coordinate": { + "lat": 51.03760107264479, + "long": 6.987369707796748 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 09:00 Uhr", + "Ende: 15.12.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.27)", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 1.5 km hinter AK Leverkusen und 0.6 km vor AK Leverkusen-West", + "", + "L\u00e4nge: 1.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.987369708, + 51.037601073 + ], + [ + 6.9872333, + 51.037603501 + ], + [ + 6.9864585, + 51.037625501 + ], + [ + 6.985534, + 51.037679401 + ], + [ + 6.9844458, + 51.037766501 + ], + [ + 6.9838661, + 51.037826701 + ], + [ + 6.983404, + 51.037880701 + ], + [ + 6.9824992, + 51.038002601 + ], + [ + 6.9816215, + 51.038128501 + ], + [ + 6.9810666, + 51.038201101 + ], + [ + 6.9805858, + 51.038268301 + ], + [ + 6.979968, + 51.038357601 + ], + [ + 6.978913, + 51.038521001 + ], + [ + 6.9778842, + 51.038650301 + ], + [ + 6.9766971, + 51.038763001 + ], + [ + 6.9757696, + 51.038818101 + ], + [ + 6.9745366, + 51.038839301 + ], + [ + 6.9740548, + 51.038830301 + ], + [ + 6.9732539, + 51.038792201 + ], + [ + 6.9723747, + 51.038715901 + ], + [ + 6.971844968, + 51.03864926 + ] + ] + } + }, + { + "identifier": "2026-016712--vi-bs.2026-04-14_20-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.07575222323434,7.119335885676406,51.08408596596283,7.13175573495116", + "point": "51.07575222323434,7.119335885676406", + "startLcPosition": "79", + "impact": { + "lower": "Burscheid", + "upper": "Leverkusen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Leverkusen - Burscheid", + "coordinate": { + "lat": 51.07575222323434, + "long": 7.119335885676406 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 8.8 km hinter AK Leverkusen und AS Burscheid", + "", + "L\u00e4nge: 1.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 von Leverkusen (AK) nach Burscheid (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.119335886, + 51.075752223 + ], + [ + 7.1199129, + 51.075913901 + ], + [ + 7.1205307, + 51.076087601 + ], + [ + 7.1211306, + 51.076281701 + ], + [ + 7.1219084, + 51.076550301 + ], + [ + 7.1226547, + 51.076834301 + ], + [ + 7.123285, + 51.077096501 + ], + [ + 7.1240515, + 51.077433301 + ], + [ + 7.1247873, + 51.077802201 + ], + [ + 7.1254717, + 51.078167801 + ], + [ + 7.1261267, + 51.078551901 + ], + [ + 7.1266235, + 51.078858801 + ], + [ + 7.1271019, + 51.079182001 + ], + [ + 7.127633, + 51.079560701 + ], + [ + 7.1281384, + 51.079946201 + ], + [ + 7.1288184, + 51.080526401 + ], + [ + 7.1291413, + 51.080827501 + ], + [ + 7.1295191, + 51.081205001 + ], + [ + 7.1299277, + 51.081636001 + ], + [ + 7.1303928, + 51.082187601 + ], + [ + 7.1308347, + 51.082758601 + ], + [ + 7.1312254, + 51.083313901 + ], + [ + 7.1314189, + 51.083585601 + ], + [ + 7.131755735, + 51.084085966 + ] + ] + } + }, + { + "identifier": "2023-003819--vi-fbm.2026-04-10_10-00-00-000.devi-zus.2023-08-09_09-00-00-000_006.de214", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.0563062992045,7.055267956943413,51.0553400779547,7.052062511076421", + "point": "51.0563062992045,7.055267956943413", + "startLcPosition": "80", + "impact": { + "lower": "Leverkusen", + "upper": "Burscheid", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Burscheid - Leverkusen", + "coordinate": { + "lat": 51.0563062992045, + "long": 7.055267956943413 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 10:00 bis 11:00 Uhr", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 6.4 km hinter AS Burscheid und 3.5 km vor AK Leverkusen", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "VBA Burscheid - Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.055267957, + 51.056306299 + ], + [ + 7.0549037, + 51.056197701 + ], + [ + 7.0536601, + 51.055832301 + ], + [ + 7.052062511, + 51.055340078 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2026-04-17_22-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de615", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.051380300282176,7.0408761801381115,51.04651825677981,7.020542831755621", + "point": "51.051380300282176,7.0408761801381115", + "startLcPosition": "80", + "impact": { + "lower": "Leverkusen", + "upper": "Burscheid", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Burscheid - Leverkusen", + "startTimestamp": "2026-04-17T22:00:00+02:00", + "coordinate": { + "lat": 51.051380300282176, + "long": 7.0408761801381115 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.04.26 um 22:00 Uhr", + "Ende: 20.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.27)", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 7.5 km hinter AS Burscheid und 1.1 km vor AK Leverkusen", + "", + "L\u00e4nge: 1.53 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.04087618, + 51.0513803 + ], + [ + 7.0402152, + 51.051141801 + ], + [ + 7.0392805, + 51.050813501 + ], + [ + 7.0386853, + 51.050618201 + ], + [ + 7.0381561, + 51.050449401 + ], + [ + 7.0376193, + 51.050288601 + ], + [ + 7.0368696, + 51.050079701 + ], + [ + 7.0361257, + 51.049888801 + ], + [ + 7.0352288, + 51.049675901 + ], + [ + 7.034452, + 51.049503101 + ], + [ + 7.0335311, + 51.049339901 + ], + [ + 7.0326189, + 51.049167401 + ], + [ + 7.0311122, + 51.048890301 + ], + [ + 7.0297567, + 51.048638401 + ], + [ + 7.0280926, + 51.048324701 + ], + [ + 7.027244, + 51.048167001 + ], + [ + 7.026508, + 51.048029201 + ], + [ + 7.0261712, + 51.047964301 + ], + [ + 7.0256871, + 51.047868601 + ], + [ + 7.0251915, + 51.047765101 + ], + [ + 7.0247007, + 51.047659101 + ], + [ + 7.0242514, + 51.047555001 + ], + [ + 7.0238006, + 51.047445701 + ], + [ + 7.023483, + 51.047365701 + ], + [ + 7.0228506, + 51.047198801 + ], + [ + 7.0223045, + 51.047045301 + ], + [ + 7.0212815, + 51.046734301 + ], + [ + 7.0206814, + 51.046557601 + ], + [ + 7.020542832, + 51.046518257 + ] + ] + } + }, + { + "identifier": "2023-000175--vi-bs.2025-09-06_09-00-00-000.f.devi-zus.2025-09-06_09-00-00-000_002.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.0931931466092,7.13798407900436,51.1102975110937,7.144928550246046", + "point": "51.0931931466092,7.13798407900436", + "startLcPosition": "80", + "impact": { + "lower": "Wermelskirchen", + "upper": "Burscheid", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Burscheid - Wermelskirchen", + "startTimestamp": "2025-09-06T09:00:00+02:00", + "coordinate": { + "lat": 51.0931931466092, + "long": 7.13798407900436 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.09.25 um 09:00 Uhr", + "Ende: 19.12.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.12.26)", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 1.1 km hinter AS Burscheid und 4.7 km vor AS Wermelskirchen", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9.25 m", + "", + "BW Hilgener Stra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.137984079, + 51.093193147 + ], + [ + 7.1382263, + 51.093543901 + ], + [ + 7.138938, + 51.094600601 + ], + [ + 7.1397221, + 51.095748501 + ], + [ + 7.1403884, + 51.096743701 + ], + [ + 7.1406426, + 51.097146301 + ], + [ + 7.1408369, + 51.097482001 + ], + [ + 7.1409915, + 51.097746601 + ], + [ + 7.1411499, + 51.098030101 + ], + [ + 7.1413064, + 51.098366001 + ], + [ + 7.141446, + 51.098689201 + ], + [ + 7.1415681, + 51.099021001 + ], + [ + 7.1416728, + 51.099375201 + ], + [ + 7.1417282, + 51.099614201 + ], + [ + 7.1417782, + 51.099825101 + ], + [ + 7.1418345, + 51.100111601 + ], + [ + 7.1418528, + 51.100446201 + ], + [ + 7.1418681, + 51.100784801 + ], + [ + 7.1418534, + 51.101349401 + ], + [ + 7.1418074, + 51.102157401 + ], + [ + 7.1417352, + 51.102995201 + ], + [ + 7.1416948, + 51.103799801 + ], + [ + 7.1417046, + 51.104352201 + ], + [ + 7.1417715, + 51.104895601 + ], + [ + 7.1419609, + 51.105818901 + ], + [ + 7.1422664, + 51.106644001 + ], + [ + 7.142551, + 51.107261401 + ], + [ + 7.1427617, + 51.107661501 + ], + [ + 7.1431758, + 51.108293401 + ], + [ + 7.143538, + 51.108773101 + ], + [ + 7.1439407, + 51.109233801 + ], + [ + 7.1446801, + 51.110045901 + ], + [ + 7.14492855, + 51.110297511 + ] + ] + } + }, + { + "identifier": "2026-016708--vi-bs.2026-04-13_20-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.04925040762841,7.033057843486764,51.046437069785966,7.020273568413327", + "point": "51.04925040762841,7.033057843486764", + "startLcPosition": "80", + "impact": { + "lower": "Leverkusen", + "upper": "Burscheid", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Burscheid - Leverkusen", + "coordinate": { + "lat": 51.04925040762841, + "long": 7.033057843486764 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 8.1 km hinter AS Burscheid und 1.0 km vor AK Leverkusen", + "", + "L\u00e4nge: 0.95 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 von Burscheid (AS) nach Leverkusen (AK) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.033057843, + 51.049250408 + ], + [ + 7.0326189, + 51.049167401 + ], + [ + 7.0311122, + 51.048890301 + ], + [ + 7.0297567, + 51.048638401 + ], + [ + 7.0280926, + 51.048324701 + ], + [ + 7.027244, + 51.048167001 + ], + [ + 7.026508, + 51.048029201 + ], + [ + 7.0261712, + 51.047964301 + ], + [ + 7.0256871, + 51.047868601 + ], + [ + 7.0251915, + 51.047765101 + ], + [ + 7.0247007, + 51.047659101 + ], + [ + 7.0242514, + 51.047555001 + ], + [ + 7.0238006, + 51.047445701 + ], + [ + 7.023483, + 51.047365701 + ], + [ + 7.0228506, + 51.047198801 + ], + [ + 7.0223045, + 51.047045301 + ], + [ + 7.0212815, + 51.046734301 + ], + [ + 7.0206814, + 51.046557601 + ], + [ + 7.0203764, + 51.046471001 + ], + [ + 7.020273568, + 51.04643707 + ] + ] + } + }, + { + "identifier": "2024-004899--vi-bs.2024-02-04_16-00-00-000.devi-zus.2024-02-01_15-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.043684008195015,7.012093428132492,51.037604830336214,6.987186486102165", + "point": "51.043684008195015,7.012093428132492", + "startLcPosition": "80", + "impact": { + "lower": "Leverkusen-West", + "upper": "Burscheid", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Burscheid - Leverkusen-West", + "startTimestamp": "2024-02-04T16:00:00+01:00", + "coordinate": { + "lat": 51.043684008195015, + "long": 7.012093428132492 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.02.24 um 16:00 Uhr", + "Ende: 31.12.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 9.7 km hinter AS Burscheid und 1.7 km vor AK Leverkusen-West", + "", + "L\u00e4nge: 1.91 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "AK Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.012093428, + 51.043684008 + ], + [ + 7.011388, + 51.043441001 + ], + [ + 7.0107013, + 51.043207901 + ], + [ + 7.0100833, + 51.042986701 + ], + [ + 7.0091953, + 51.042650001 + ], + [ + 7.0082906, + 51.042315201 + ], + [ + 7.0079005, + 51.042161601 + ], + [ + 7.0067234, + 51.041721201 + ], + [ + 7.0057101, + 51.041344601 + ], + [ + 7.0048166, + 51.041017301 + ], + [ + 7.0042595, + 51.040804101 + ], + [ + 7.0032237, + 51.040431501 + ], + [ + 7.0027252, + 51.040252101 + ], + [ + 7.0024568, + 51.040158301 + ], + [ + 7.0009057, + 51.039647301 + ], + [ + 6.9999717, + 51.039354301 + ], + [ + 6.9995568, + 51.039223901 + ], + [ + 6.9986368, + 51.038955301 + ], + [ + 6.9981425, + 51.038822201 + ], + [ + 6.9976437, + 51.038695701 + ], + [ + 6.9971408, + 51.038575801 + ], + [ + 6.9966341, + 51.038462601 + ], + [ + 6.9961237, + 51.038356101 + ], + [ + 6.9956099, + 51.038256401 + ], + [ + 6.9951499, + 51.038173401 + ], + [ + 6.9946875, + 51.038095701 + ], + [ + 6.9942229, + 51.038023601 + ], + [ + 6.9937563, + 51.037956901 + ], + [ + 6.9935306, + 51.037926701 + ], + [ + 6.9933192, + 51.037899601 + ], + [ + 6.9927059, + 51.037827601 + ], + [ + 6.9920901, + 51.037765101 + ], + [ + 6.991472, + 51.037712001 + ], + [ + 6.9909443, + 51.037674301 + ], + [ + 6.9904154, + 51.037643401 + ], + [ + 6.9898856, + 51.037619501 + ], + [ + 6.9893551, + 51.037602401 + ], + [ + 6.9885686, + 51.037589901 + ], + [ + 6.987941, + 51.037590901 + ], + [ + 6.9872333, + 51.037603501 + ], + [ + 6.987186486, + 51.03760483 + ] + ] + } + }, + { + "identifier": "2023-000175--vi-bs.2025-09-06_09-00-00-000.f.devi-zus.2025-09-06_09-00-00-000_002.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.11036997646004,7.144715899270131,51.09324134356749,7.137735392476585", + "point": "51.11036997646004,7.144715899270131", + "startLcPosition": "81", + "impact": { + "lower": "Burscheid", + "upper": "Wermelskirchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Wermelskirchen - Burscheid", + "startTimestamp": "2025-09-06T09:00:00+02:00", + "coordinate": { + "lat": 51.11036997646004, + "long": 7.144715899270131 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.09.25 um 09:00 Uhr", + "Ende: 19.12.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.12.26)", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 4.7 km hinter AS Wermelskirchen und 1.1 km vor AS Burscheid", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9.25 m", + "", + "BW Hilgener Stra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.144715899, + 51.110369976 + ], + [ + 7.1444791, + 51.110128901 + ], + [ + 7.1437274, + 51.109317001 + ], + [ + 7.1433296, + 51.108849801 + ], + [ + 7.1429482, + 51.108350601 + ], + [ + 7.1425374, + 51.107717101 + ], + [ + 7.1423168, + 51.107312801 + ], + [ + 7.1420203, + 51.106670501 + ], + [ + 7.1417111, + 51.105829201 + ], + [ + 7.1415236, + 51.104903501 + ], + [ + 7.1414638, + 51.104352201 + ], + [ + 7.1414514, + 51.103738401 + ], + [ + 7.1414865, + 51.102993201 + ], + [ + 7.1415509, + 51.102170001 + ], + [ + 7.1416141, + 51.101320101 + ], + [ + 7.1416091, + 51.100788301 + ], + [ + 7.1415988, + 51.100435401 + ], + [ + 7.1415677, + 51.100140001 + ], + [ + 7.1415216, + 51.099808401 + ], + [ + 7.1414846, + 51.099633101 + ], + [ + 7.1414261, + 51.099398001 + ], + [ + 7.1413215, + 51.099052001 + ], + [ + 7.1412114, + 51.098741701 + ], + [ + 7.1410598, + 51.098399301 + ], + [ + 7.140908, + 51.098075601 + ], + [ + 7.1407564, + 51.097794301 + ], + [ + 7.140602, + 51.097532301 + ], + [ + 7.1404074, + 51.097191601 + ], + [ + 7.1401504, + 51.096792401 + ], + [ + 7.1394923, + 51.095803401 + ], + [ + 7.1392924, + 51.095516501 + ], + [ + 7.138697, + 51.094645501 + ], + [ + 7.1379844, + 51.093606101 + ], + [ + 7.137735392, + 51.093241344 + ] + ] + } + }, + { + "identifier": "2026-017635--vi-bs.2026-04-14_09-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.1419548279627,7.1965933739739425,51.144388415245814,7.200815349810601", + "point": "51.1419548279627,7.1965933739739425", + "startLcPosition": "81", + "impact": { + "lower": "Remscheid", + "upper": "Wermelskirchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Wermelskirchen - Remscheid", + "coordinate": { + "lat": 51.1419548279627, + "long": 7.1965933739739425 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 15:00 Uhr", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 0.6 km hinter AS Wermelskirchen und 2.6 km vor Remscheid", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A1 von Wermelskirchen (AS) nach Remscheid (Raststaette) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.196593374, + 51.141954828 + ], + [ + 7.1971617, + 51.142226701 + ], + [ + 7.1974764, + 51.142377301 + ], + [ + 7.198672, + 51.142983001 + ], + [ + 7.1993931, + 51.143394501 + ], + [ + 7.1998968, + 51.143718601 + ], + [ + 7.2004198, + 51.144090001 + ], + [ + 7.2006495, + 51.144255101 + ], + [ + 7.20081535, + 51.144388415 + ] + ] + } + }, + { + "identifier": "2023-002395--vi-bs.2024-10-23_20-00-00-000.devi-zus.2023-08-24_05-00-00-000.f_001.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.29755596289623,7.262023107789493,51.304046712087356,7.2631898780704836", + "point": "51.29755596289623,7.262023107789493", + "startLcPosition": "88", + "impact": { + "lower": "Wuppertal-Nord", + "upper": "Wuppertal-Langerfeld", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Wuppertal-Langerfeld - Wuppertal-Nord", + "startTimestamp": "2024-10-23T20:00:00+02:00", + "coordinate": { + "lat": 51.29755596289623, + "long": 7.262023107789493 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.10.24 um 20:00 Uhr", + "Ende: 30.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.05.26)", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 1.7 km hinter AS Wuppertal-Langerfeld und 1.3 km vor AK Wuppertal-Nord", + "", + "L\u00e4nge: 0.73 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.85 m", + "", + "A1 - Ersatzneubau BW 4609507 Linderhauser Stra\u00dfe - AlD 2395" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.262023108, + 51.297555963 + ], + [ + 7.2623787, + 51.299519401 + ], + [ + 7.2626205, + 51.300861501 + ], + [ + 7.2626488, + 51.301023201 + ], + [ + 7.2630005, + 51.303018401 + ], + [ + 7.2631513, + 51.303890401 + ], + [ + 7.263189878, + 51.304046712 + ] + ] + } + }, + { + "identifier": "2023-002395--vi-bs.2024-10-23_20-00-00-000.devi-zus.2023-08-24_05-00-00-000.f_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.292733469791344,7.259218170770828,51.29755596289623,7.262023107789493", + "point": "51.292733469791344,7.259218170770828", + "startLcPosition": "88", + "impact": { + "lower": "Wuppertal-Nord", + "upper": "Wuppertal-Langerfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Wuppertal-Langerfeld - Wuppertal-Nord", + "startTimestamp": "2024-10-23T20:00:00+02:00", + "coordinate": { + "lat": 51.292733469791344, + "long": 7.259218170770828 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.10.24 um 20:00 Uhr", + "Ende: 30.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.05.26)", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 1.1 km hinter AS Wuppertal-Langerfeld und 2.0 km vor AK Wuppertal-Nord", + "", + "L\u00e4nge: 0.57 km | Maximale Durchfahrtsbreite: 8.85 m", + "", + "A1 - Ersatzneubau BW 4609507 Linderhauser Stra\u00dfe - AlD 2395" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.259218171, + 51.29273347 + ], + [ + 7.259264, + 51.292791501 + ], + [ + 7.2597831, + 51.293433201 + ], + [ + 7.2605269, + 51.294378901 + ], + [ + 7.2609183, + 51.294880601 + ], + [ + 7.2609858, + 51.294985801 + ], + [ + 7.2612876, + 51.295491301 + ], + [ + 7.2614752, + 51.295881001 + ], + [ + 7.2617443, + 51.296513901 + ], + [ + 7.2619719, + 51.297273201 + ], + [ + 7.262023108, + 51.297555963 + ] + ] + } + }, + { + "identifier": "2023-002395--vi-bs.2024-10-23_20-00-00-000.devi-zus.2023-08-24_05-00-00-000.f_001.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.30406851193379,7.262948479717358,51.29757488962616,7.261782735066979", + "point": "51.30406851193379,7.262948479717358", + "startLcPosition": "89", + "impact": { + "lower": "Wuppertal-Langerfeld", + "upper": "Wuppertal-Nord", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Wuppertal-Nord - Wuppertal-Langerfeld", + "startTimestamp": "2024-10-23T20:00:00+02:00", + "coordinate": { + "lat": 51.30406851193379, + "long": 7.262948479717358 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.10.24 um 20:00 Uhr", + "Ende: 30.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.05.26)", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 1.3 km hinter AK Wuppertal-Nord und 1.7 km vor AS Wuppertal-Langerfeld", + "", + "L\u00e4nge: 0.73 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.85 m", + "", + "A1 - Ersatzneubau BW 4609507 Linderhauser Stra\u00dfe - AlD 2395" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.26294848, + 51.304068512 + ], + [ + 7.262914, + 51.303917201 + ], + [ + 7.2628033, + 51.303401401 + ], + [ + 7.2626655, + 51.302595601 + ], + [ + 7.2625357, + 51.301836101 + ], + [ + 7.2623861, + 51.300991801 + ], + [ + 7.2623615, + 51.300832401 + ], + [ + 7.2622215, + 51.300038001 + ], + [ + 7.2621632, + 51.299694501 + ], + [ + 7.2618748, + 51.298046801 + ], + [ + 7.2618048, + 51.297675301 + ], + [ + 7.261782735, + 51.29757489 + ] + ] + } + }, + { + "identifier": "2026-014313--vi-fbm.2026-03-24_09-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.29274879418603,7.259008792216456,51.289837334382035,7.257138872894005", + "point": "51.29274879418603,7.259008792216456", + "startLcPosition": "89", + "impact": { + "lower": "Wuppertal-Langerfeld", + "upper": "Wuppertal-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Wuppertal-Nord - Wuppertal-Langerfeld", + "coordinate": { + "lat": 51.29274879418603, + "long": 7.259008792216456 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 21.04.26 und dem 23.04.26 von 09:00 bis 15:00 Uhr.", + "24.04.26 von 09:00 bis 12:00 Uhr", + "25.04.26 16:00 bis zum 26.04.26 10:00 Uhr.", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 2.6 km hinter AK Wuppertal-Nord und 0.7 km vor AS Wuppertal-Langerfeld", + "", + "L\u00e4nge: 0.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Baustelleneinrichtung - Wanderbaustelle - AkD 14313" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.259008792, + 51.292748794 + ], + [ + 7.2589142, + 51.292630801 + ], + [ + 7.2585036, + 51.292105801 + ], + [ + 7.2580949, + 51.291548901 + ], + [ + 7.257804, + 51.291116301 + ], + [ + 7.2575631, + 51.290726101 + ], + [ + 7.2574286, + 51.290478601 + ], + [ + 7.2573218, + 51.290262901 + ], + [ + 7.257214, + 51.290036601 + ], + [ + 7.257138873, + 51.289837334 + ] + ] + } + }, + { + "identifier": "2023-002395--vi-bs.2024-10-23_20-00-00-000.devi-zus.2023-08-24_05-00-00-000.f_001.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.31432004215774,7.273701604126576,51.30407095931796,7.262949090629307", + "point": "51.31432004215774,7.273701604126576", + "startLcPosition": "90", + "impact": { + "lower": "Wuppertal-Langerfeld", + "upper": "Bruchm\u00fchle", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Bruchm\u00fchle - Wuppertal-Langerfeld", + "startTimestamp": "2024-10-23T20:00:00+02:00", + "coordinate": { + "lat": 51.31432004215774, + "long": 7.273701604126576 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.10.24 um 20:00 Uhr", + "Ende: 30.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.05.26)", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 2.8 km hinter Bruchm\u00fchle und 2.4 km vor AS Wuppertal-Langerfeld", + "", + "L\u00e4nge: 1.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.85 m", + "", + "A1 - Ersatzneubau BW 4609507 Linderhauser Stra\u00dfe - AlD 2395" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.273701604, + 51.314320042 + ], + [ + 7.2732547, + 51.314065901 + ], + [ + 7.2723977, + 51.313588701 + ], + [ + 7.2697293, + 51.312057901 + ], + [ + 7.2685569, + 51.311348201 + ], + [ + 7.2675284, + 51.310659301 + ], + [ + 7.2666903, + 51.310013301 + ], + [ + 7.2659967, + 51.309398101 + ], + [ + 7.2654612, + 51.308858301 + ], + [ + 7.2650222, + 51.308358301 + ], + [ + 7.2648129, + 51.308100201 + ], + [ + 7.2646111, + 51.307840301 + ], + [ + 7.2644038, + 51.307546801 + ], + [ + 7.264165, + 51.307188101 + ], + [ + 7.2639414, + 51.306792901 + ], + [ + 7.2636141, + 51.306144001 + ], + [ + 7.2632393, + 51.305155201 + ], + [ + 7.2631183, + 51.304746601 + ], + [ + 7.262949091, + 51.304070959 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de42", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.431503336363804,7.5318921909274374,51.435947714384795,7.533644191598815", + "point": "51.431503336363804,7.5318921909274374", + "startLcPosition": "99", + "impact": { + "lower": "Schwerte", + "upper": "Lennhof", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Lennhof - Schwerte", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.431503336363804, + "long": 7.5318921909274374 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 3.1 km hinter Lennhof und 3.2 km vor AS Schwerte", + "", + "L\u00e4nge: 0.51 km | Max. 120 km/h | Maximale Durchfahrtsbreite: 10.8 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.531892191, + 51.431503336 + ], + [ + 7.5319014, + 51.431518501 + ], + [ + 7.5320473, + 51.431789301 + ], + [ + 7.5322965, + 51.432298101 + ], + [ + 7.5325101, + 51.432833901 + ], + [ + 7.5328269, + 51.433691201 + ], + [ + 7.5329562, + 51.434056001 + ], + [ + 7.533506, + 51.435564501 + ], + [ + 7.533644192, + 51.435947714 + ] + ] + } + }, + { + "identifier": "2026-014330--vi-fbm.2026-04-07_09-00-00-000.devi-fbm.2026-04-07_09-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.421796792709515,7.516759232625608,51.45486662243747,7.553144317377771", + "point": "51.421796792709515,7.516759232625608", + "startLcPosition": "99", + "impact": { + "lower": "Schwerte", + "upper": "Lennhof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Lennhof - Schwerte", + "coordinate": { + "lat": 51.421796792709515, + "long": 7.516759232625608 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 21.04.26 und dem 23.04.26 von 09:00 bis 15:00 Uhr.", + "24.04.26 von 09:00 bis 12:00 Uhr", + "25.04.26 19:00 bis zum 26.04.26 05:00 Uhr.", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 1.6 km hinter Lennhof und 0.5 km vor AS Schwerte", + "", + "L\u00e4nge: 4.74 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Baustelleneinrichtung - Wanderbaustelle - AkD 14330" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.516759233, + 51.421796793 + ], + [ + 7.5177093, + 51.422573101 + ], + [ + 7.5192125, + 51.423771201 + ], + [ + 7.5200009, + 51.424327601 + ], + [ + 7.5206965, + 51.424752801 + ], + [ + 7.5214043, + 51.425129101 + ], + [ + 7.5221385, + 51.425471801 + ], + [ + 7.5230137, + 51.425829601 + ], + [ + 7.5243302, + 51.426303901 + ], + [ + 7.5253179, + 51.426643501 + ], + [ + 7.5257206, + 51.426789201 + ], + [ + 7.5262471, + 51.426998001 + ], + [ + 7.5270641, + 51.427350801 + ], + [ + 7.5280843, + 51.427906801 + ], + [ + 7.5291787, + 51.428609301 + ], + [ + 7.5298676, + 51.429131801 + ], + [ + 7.5301554, + 51.429387201 + ], + [ + 7.5305409, + 51.429773701 + ], + [ + 7.5308459, + 51.430091401 + ], + [ + 7.5310483, + 51.430322401 + ], + [ + 7.5312537, + 51.430574201 + ], + [ + 7.531609, + 51.431037001 + ], + [ + 7.5319014, + 51.431518501 + ], + [ + 7.5320473, + 51.431789301 + ], + [ + 7.5322965, + 51.432298101 + ], + [ + 7.5325101, + 51.432833901 + ], + [ + 7.5328269, + 51.433691201 + ], + [ + 7.5329562, + 51.434056001 + ], + [ + 7.533506, + 51.435564501 + ], + [ + 7.5341196, + 51.437266001 + ], + [ + 7.5345691, + 51.438519601 + ], + [ + 7.5348933, + 51.439414301 + ], + [ + 7.5350827, + 51.439934801 + ], + [ + 7.5351839, + 51.440225401 + ], + [ + 7.5356456, + 51.441508201 + ], + [ + 7.5357746, + 51.441893401 + ], + [ + 7.5358344, + 51.442050601 + ], + [ + 7.5359912, + 51.442488701 + ], + [ + 7.5363782, + 51.443526201 + ], + [ + 7.5367057, + 51.444418301 + ], + [ + 7.5369537, + 51.445051801 + ], + [ + 7.5371533, + 51.445531501 + ], + [ + 7.5372898, + 51.445830901 + ], + [ + 7.5374321, + 51.446129001 + ], + [ + 7.537707, + 51.446632301 + ], + [ + 7.5377579, + 51.446725401 + ], + [ + 7.5379046, + 51.446971001 + ], + [ + 7.5381358, + 51.447309901 + ], + [ + 7.5384225, + 51.447720801 + ], + [ + 7.5385089, + 51.447844101 + ], + [ + 7.5388076, + 51.448234601 + ], + [ + 7.5390545, + 51.448512001 + ], + [ + 7.5393884, + 51.448863901 + ], + [ + 7.539737, + 51.449203801 + ], + [ + 7.5401064, + 51.449540501 + ], + [ + 7.5404921, + 51.449860801 + ], + [ + 7.540831, + 51.450125601 + ], + [ + 7.5411775, + 51.450381201 + ], + [ + 7.5416943, + 51.450737501 + ], + [ + 7.5420454, + 51.450963701 + ], + [ + 7.5424081, + 51.451184301 + ], + [ + 7.5429951, + 51.451514201 + ], + [ + 7.543378, + 51.451719601 + ], + [ + 7.5437703, + 51.451915001 + ], + [ + 7.5441182, + 51.452084901 + ], + [ + 7.5444717, + 51.452238601 + ], + [ + 7.5448898, + 51.452419701 + ], + [ + 7.5453214, + 51.452593801 + ], + [ + 7.5457689, + 51.452763101 + ], + [ + 7.5463337, + 51.452964801 + ], + [ + 7.5469029, + 51.453155001 + ], + [ + 7.5472737, + 51.453273401 + ], + [ + 7.5476469, + 51.453380801 + ], + [ + 7.5483969, + 51.453598501 + ], + [ + 7.5491532, + 51.453803401 + ], + [ + 7.553144317, + 51.454866622 + ] + ] + } + }, + { + "identifier": "2026-014344--vi-fbm.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.40854788122072,7.491145846106859,51.40503921965915,7.474793239948269", + "point": "51.40854788122072,7.491145846106859", + "startLcPosition": "99", + "impact": { + "lower": "Hagen-Nord", + "upper": "Lennhof", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Lennhof - Hagen-Nord", + "coordinate": { + "lat": 51.40854788122072, + "long": 7.491145846106859 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 21.04.26 und dem 23.04.26 von 09:00 bis 15:00 Uhr.", + "24.04.26 von 09:00 bis 12:00 Uhr", + "25.04.26 19:00 bis zum 26.04.26 05:00 Uhr.", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 0.8 km hinter Lennhof und 0.1 km vor AS Hagen-Nord", + "", + "L\u00e4nge: 1.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Baustelleneinrichtung - AkD 14344" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.491145846, + 51.408547881 + ], + [ + 7.4906837, + 51.408435901 + ], + [ + 7.4885637, + 51.407968801 + ], + [ + 7.4858825, + 51.407394401 + ], + [ + 7.4838057, + 51.406957301 + ], + [ + 7.4803786, + 51.406220501 + ], + [ + 7.480025, + 51.406149701 + ], + [ + 7.4773739, + 51.405581301 + ], + [ + 7.47479324, + 51.40503922 + ] + ] + } + }, + { + "identifier": "2026-014344--vi-fbm.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.40854788122072,7.491145846106859,51.405328322974356,7.476169518958809", + "point": "51.40854788122072,7.491145846106859", + "startLcPosition": "99", + "impact": { + "lower": "Hagen-Nord", + "upper": "Lennhof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Lennhof - Hagen-Nord", + "coordinate": { + "lat": 51.40854788122072, + "long": 7.491145846106859 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 21.04.26 und dem 23.04.26 von 09:00 bis 15:00 Uhr.", + "24.04.26 von 09:00 bis 12:00 Uhr", + "25.04.26 19:00 bis zum 26.04.26 05:00 Uhr.", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 0.8 km hinter Lennhof und 0.2 km vor AS Hagen-Nord", + "", + "L\u00e4nge: 1.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Baustelleneinrichtung - AkD 14344" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.491145846, + 51.408547881 + ], + [ + 7.4906837, + 51.408435901 + ], + [ + 7.4885637, + 51.407968801 + ], + [ + 7.4858825, + 51.407394401 + ], + [ + 7.4838057, + 51.406957301 + ], + [ + 7.4803786, + 51.406220501 + ], + [ + 7.480025, + 51.406149701 + ], + [ + 7.4773739, + 51.405581301 + ], + [ + 7.476169519, + 51.405328323 + ] + ] + } + }, + { + "identifier": "2026-014339--vi-fbm.2026-03-24_09-00-00-000.devi-zus.2026-03-24_09-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.42072575858608,7.5154485394057575,51.42425123470291,7.519892690061553", + "point": "51.42072575858608,7.5154485394057575", + "startLcPosition": "99", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Lennhof", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Lennhof - Westhofener Kreuz", + "coordinate": { + "lat": 51.42072575858608, + "long": 7.5154485394057575 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 21.04.26 und dem 23.04.26 von 09:00 bis 15:00 Uhr.", + "24.04.26 von 09:00 bis 12:00 Uhr", + "25.04.26 19:00 bis zum 26.04.26 05:00 Uhr.", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 1.4 km hinter Lennhof und 1.3 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Baustelleneinrichtung - AkD 14339" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.515448539, + 51.420725759 + ], + [ + 7.5177093, + 51.422573101 + ], + [ + 7.5192125, + 51.423771201 + ], + [ + 7.51989269, + 51.424251235 + ] + ] + } + }, + { + "identifier": "2026-014339--vi-fbm.2026-03-24_09-00-00-000.devi-zus.2026-03-24_09-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.42072575858608,7.5154485394057575,51.42425123470291,7.519892690061553", + "point": "51.42072575858608,7.5154485394057575", + "startLcPosition": "99", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Lennhof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Lennhof - Westhofener Kreuz", + "coordinate": { + "lat": 51.42072575858608, + "long": 7.5154485394057575 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 21.04.26 und dem 23.04.26 von 09:00 bis 15:00 Uhr.", + "24.04.26 von 09:00 bis 12:00 Uhr", + "25.04.26 19:00 bis zum 26.04.26 05:00 Uhr.", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 1.4 km hinter Lennhof und 1.3 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Baustelleneinrichtung - AkD 14339" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.515448539, + 51.420725759 + ], + [ + 7.5177093, + 51.422573101 + ], + [ + 7.5192125, + 51.423771201 + ], + [ + 7.51989269, + 51.424251235 + ] + ] + } + }, + { + "identifier": "2026-014330--vi-fbm.2026-04-07_09-00-00-000.devi-fbm.2026-04-07_09-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.4446795744049,7.5368079814365805,51.45486662243747,7.553144317377771", + "point": "51.4446795744049,7.5368079814365805", + "startLcPosition": "100", + "impact": { + "lower": "Schwerte", + "upper": "Westhofener Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Dortmund", + "title": "A1 | Westhofener Kreuz - Schwerte", + "coordinate": { + "lat": 51.4446795744049, + "long": 7.5368079814365805 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 21.04.26 und dem 23.04.26 von 09:00 bis 15:00 Uhr.", + "24.04.26 von 09:00 bis 12:00 Uhr", + "25.04.26 19:00 bis zum 26.04.26 05:00 Uhr.", + "", + "A1: K\u00f6ln -> Dortmund, zwischen 1.4 km hinter AK Westhofener Kreuz und 0.5 km vor AS Schwerte", + "", + "L\u00e4nge: 1.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Baustelleneinrichtung - Wanderbaustelle - AkD 14330" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.536807981, + 51.444679574 + ], + [ + 7.5369537, + 51.445051801 + ], + [ + 7.5371533, + 51.445531501 + ], + [ + 7.5372898, + 51.445830901 + ], + [ + 7.5374321, + 51.446129001 + ], + [ + 7.537707, + 51.446632301 + ], + [ + 7.5377579, + 51.446725401 + ], + [ + 7.5379046, + 51.446971001 + ], + [ + 7.5381358, + 51.447309901 + ], + [ + 7.5384225, + 51.447720801 + ], + [ + 7.5385089, + 51.447844101 + ], + [ + 7.5388076, + 51.448234601 + ], + [ + 7.5390545, + 51.448512001 + ], + [ + 7.5393884, + 51.448863901 + ], + [ + 7.539737, + 51.449203801 + ], + [ + 7.5401064, + 51.449540501 + ], + [ + 7.5404921, + 51.449860801 + ], + [ + 7.540831, + 51.450125601 + ], + [ + 7.5411775, + 51.450381201 + ], + [ + 7.5416943, + 51.450737501 + ], + [ + 7.5420454, + 51.450963701 + ], + [ + 7.5424081, + 51.451184301 + ], + [ + 7.5429951, + 51.451514201 + ], + [ + 7.543378, + 51.451719601 + ], + [ + 7.5437703, + 51.451915001 + ], + [ + 7.5441182, + 51.452084901 + ], + [ + 7.5444717, + 51.452238601 + ], + [ + 7.5448898, + 51.452419701 + ], + [ + 7.5453214, + 51.452593801 + ], + [ + 7.5457689, + 51.452763101 + ], + [ + 7.5463337, + 51.452964801 + ], + [ + 7.5469029, + 51.453155001 + ], + [ + 7.5472737, + 51.453273401 + ], + [ + 7.5476469, + 51.453380801 + ], + [ + 7.5483969, + 51.453598501 + ], + [ + 7.5491532, + 51.453803401 + ], + [ + 7.553144317, + 51.454866622 + ] + ] + } + }, + { + "identifier": "2025-062519--vi-bs.2026-01-12_09-00-00-000_020.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.41198135643987,7.501422211515738,51.41059650147661,7.497920163676253", + "point": "51.41198135643987,7.501422211515738", + "startLcPosition": "100", + "impact": { + "lower": "Hagen-Nord", + "upper": "Westhofener Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Westhofener Kreuz - Hagen-Nord", + "startTimestamp": "2026-01-12T09:00:00+01:00", + "coordinate": { + "lat": 51.41198135643987, + "long": 7.501422211515738 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.01.26 um 09:00 Uhr", + "Ende: 19.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 3.2 km hinter AK Westhofener Kreuz und 1.9 km vor AS Hagen-Nord", + "", + "L\u00e4nge: 0.29 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A1 - Teilsperrung der PWC Lennhof - AlD 62519" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.501422212, + 51.411981356 + ], + [ + 7.5010112, + 51.411803001 + ], + [ + 7.5003819, + 51.411540501 + ], + [ + 7.4992599, + 51.411096201 + ], + [ + 7.4984943, + 51.410799101 + ], + [ + 7.497920164, + 51.410596501 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de44", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.435980082025495,7.533417129569372,51.43155067123621,7.531685789118887", + "point": "51.435980082025495,7.533417129569372", + "startLcPosition": "101", + "impact": { + "lower": "Lennhof", + "upper": "Schwerte", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Schwerte - Lennhof", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.435980082025495, + "long": 7.533417129569372 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 3.2 km hinter AS Schwerte und 3.1 km vor Lennhof", + "", + "L\u00e4nge: 0.51 km | Max. 120 km/h | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.53341713, + 51.435980082 + ], + [ + 7.533092, + 51.435101801 + ], + [ + 7.5327211, + 51.434028001 + ], + [ + 7.5323033, + 51.432903501 + ], + [ + 7.5320745, + 51.432371101 + ], + [ + 7.5320184, + 51.432236901 + ], + [ + 7.5319293, + 51.432053101 + ], + [ + 7.5317772, + 51.431713801 + ], + [ + 7.531685789, + 51.431550671 + ] + ] + } + }, + { + "identifier": "2026-014334--vi-fbm.2026-03-24_09-00-00-000.devi-fbm.2026-03-24_09-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.452743400234745,7.545230670014101,51.443856971283225,7.536248164672777", + "point": "51.452743400234745,7.545230670014101", + "startLcPosition": "101", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Schwerte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Schwerte - Westhofener Kreuz", + "coordinate": { + "lat": 51.452743400234745, + "long": 7.545230670014101 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Samstag zwischen dem 21.04.26 und dem 02.05.26 von 09:00 bis 15:00 Uhr.", + "24.04.26 von 09:00 bis 12:00 Uhr", + "25.04.26 19:00 bis zum 26.04.26 05:00 Uhr.", + "Die Baustelle gilt nicht an folgenden Tagen:", + "24.04.26, 25.04.26, 01.05.26", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 1.1 km hinter AS Schwerte und 1.3 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 1.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A1 - Baustelleneinrichtung - Wanderbaustelle - AkD 14334" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.54523067, + 51.4527434 + ], + [ + 7.5451625, + 51.452717301 + ], + [ + 7.544724, + 51.452542501 + ], + [ + 7.5442911, + 51.452353901 + ], + [ + 7.5439713, + 51.452209901 + ], + [ + 7.5436558, + 51.452059601 + ], + [ + 7.5432921, + 51.451879701 + ], + [ + 7.5428603, + 51.451652201 + ], + [ + 7.5422654, + 51.451312701 + ], + [ + 7.541813, + 51.451041301 + ], + [ + 7.5413722, + 51.450752401 + ], + [ + 7.5409406, + 51.450455901 + ], + [ + 7.5405288, + 51.450141901 + ], + [ + 7.5400394, + 51.449747701 + ], + [ + 7.5395873, + 51.449349401 + ], + [ + 7.5391813, + 51.448955601 + ], + [ + 7.538812, + 51.448562001 + ], + [ + 7.5385973, + 51.448328401 + ], + [ + 7.5384064, + 51.448092401 + ], + [ + 7.5382336, + 51.447884701 + ], + [ + 7.53808, + 51.447672301 + ], + [ + 7.537942, + 51.447482401 + ], + [ + 7.5377758, + 51.447240201 + ], + [ + 7.5376476, + 51.447033001 + ], + [ + 7.5374977, + 51.446782201 + ], + [ + 7.537185, + 51.446209901 + ], + [ + 7.5369492, + 51.445704501 + ], + [ + 7.5367148, + 51.445186101 + ], + [ + 7.5364649, + 51.444455901 + ], + [ + 7.536248165, + 51.443856971 + ] + ] + } + }, + { + "identifier": "2026-014334--vi-fbm.2026-03-24_09-00-00-000.devi-fbm.2026-03-24_09-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.452750531021486,7.545249295289091,51.449321867518584,7.539558913321418", + "point": "51.452750531021486,7.545249295289091", + "startLcPosition": "101", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Schwerte", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> K\u00f6ln", + "title": "A1 | Schwerte - Westhofener Kreuz", + "coordinate": { + "lat": 51.452750531021486, + "long": 7.545249295289091 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 21.04.26 und dem 23.04.26 von 09:00 bis 15:00 Uhr.", + "24.04.26 von 09:00 bis 12:00 Uhr", + "25.04.26 19:00 bis zum 26.04.26 05:00 Uhr.", + "", + "A1: Dortmund -> K\u00f6ln, zwischen 1.1 km hinter AS Schwerte und 1.9 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.56 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A1 - Baustelleneinrichtung - Wanderbaustelle - AkD 14334" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.545249295, + 51.452750531 + ], + [ + 7.5451625, + 51.452717301 + ], + [ + 7.544724, + 51.452542501 + ], + [ + 7.5442911, + 51.452353901 + ], + [ + 7.5439713, + 51.452209901 + ], + [ + 7.5436558, + 51.452059601 + ], + [ + 7.5432921, + 51.451879701 + ], + [ + 7.5428603, + 51.451652201 + ], + [ + 7.5422654, + 51.451312701 + ], + [ + 7.541813, + 51.451041301 + ], + [ + 7.5413722, + 51.450752401 + ], + [ + 7.5409406, + 51.450455901 + ], + [ + 7.5405288, + 51.450141901 + ], + [ + 7.5400394, + 51.449747701 + ], + [ + 7.5395873, + 51.449349401 + ], + [ + 7.539558913, + 51.449321868 + ] + ] + } + }, + { + "identifier": "2023-000045--vi-bs.2026-03-26_05-00-00-000.devi-zus.2024-03-23_09-00-00-000_001.f.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.77671903661104,6.815277558315082,50.780126778131894,6.812271388403191", + "point": "50.77671903661104,6.815277558315082", + "startLcPosition": "101", + "impact": { + "lower": "Erftstadt", + "upper": "Bliesheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> M\u00f6nchengladbach", + "title": "A1 | Bliesheim - Erftstadt", + "startTimestamp": "2026-03-26T05:00:00+01:00", + "coordinate": { + "lat": 50.77671903661104, + "long": 6.815277558315082 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 05:00 Uhr", + "Ende: 12.06.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.27)", + "", + "A61: Koblenz -> M\u00f6nchengladbach, zwischen 0.8 km hinter AK Bliesheim und 2.9 km vor AS Erftstadt", + "", + "L\u00e4nge: 0.44 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9.5 m", + "", + "BW Merowingerstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.815277558, + 50.776719037 + ], + [ + 6.8151256, + 50.776859201 + ], + [ + 6.8145022, + 50.777497201 + ], + [ + 6.813883, + 50.778161001 + ], + [ + 6.8131232, + 50.779031901 + ], + [ + 6.8126652, + 50.779608101 + ], + [ + 6.812271388, + 50.780126778 + ] + ] + } + }, + { + "identifier": "2023-000045--vi-bs.2026-03-26_05-00-00-000.devi-zus.2024-03-23_09-00-00-000_001.f.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.775988397772565,6.816069657499233,50.77709861738715,6.814891664777494", + "point": "50.775988397772565,6.816069657499233", + "startLcPosition": "101", + "impact": { + "lower": "Erftstadt", + "upper": "Bliesheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> M\u00f6nchengladbach", + "title": "A1 | Bliesheim - Erftstadt", + "startTimestamp": "2026-03-26T05:00:00+01:00", + "coordinate": { + "lat": 50.775988397772565, + "long": 6.816069657499233 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 05:00 Uhr", + "Ende: 12.06.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.27)", + "", + "A61: Koblenz -> M\u00f6nchengladbach, zwischen 0.7 km hinter AK Bliesheim und 3.2 km vor AS Erftstadt", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 6 m", + "", + "BW Merowingerstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.816069657, + 50.775988398 + ], + [ + 6.8151256, + 50.776859201 + ], + [ + 6.814891665, + 50.777098617 + ] + ] + } + }, + { + "identifier": "2023-002834--vi-bs.2024-10-24_20-00-00-000.devi-zus.2021-10-11_20-00-00-000.f_001.de41", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5097875598432,7.652391094260623,51.52011554894408,7.6572940343554805", + "point": "51.5097875598432,7.652391094260623", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund/Unna", + "upper": "Lichtendorf", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> M\u00fcnster", + "title": "A1 | Lichtendorf - Dortmund/Unna", + "startTimestamp": "2024-10-24T20:00:00+02:00", + "coordinate": { + "lat": 51.5097875598432, + "long": 7.652391094260623 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.10.24 um 20:00 Uhr", + "Ende: 03.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 02.11.27)", + "", + "A1: K\u00f6ln -> M\u00fcnster, zwischen 6.1 km hinter Lichtendorf und 0.2 km vor AK Dortmund/Unna", + "", + "L\u00e4nge: 1.2 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A1 - Ersatzneubau TB Liedbachtal - AlD 2834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.652391094, + 51.50978756 + ], + [ + 7.6533143, + 51.511717901 + ], + [ + 7.6534855, + 51.512096701 + ], + [ + 7.654352, + 51.513987601 + ], + [ + 7.6556186, + 51.516605601 + ], + [ + 7.6564619, + 51.518408701 + ], + [ + 7.65715, + 51.519804401 + ], + [ + 7.657294034, + 51.520115549 + ] + ] + } + }, + { + "identifier": "2026-014777--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.49932998672459,7.641575283383204,51.50563533372644,7.649678841154902", + "point": "51.49932998672459,7.641575283383204", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund/Unna", + "upper": "Lichtendorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> M\u00fcnster", + "title": "A1 | Lichtendorf - Dortmund/Unna", + "coordinate": { + "lat": 51.49932998672459, + "long": 7.641575283383204 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A1: K\u00f6ln -> M\u00fcnster, zwischen 4.7 km hinter Lichtendorf und 1.9 km vor AK Dortmund/Unna", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Arbeiten an Verkehrszeichenbr\u00fccke - AkD 14777" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.641575283, + 51.499329987 + ], + [ + 7.6430171, + 51.500347401 + ], + [ + 7.6460467, + 51.502481701 + ], + [ + 7.6473997, + 51.503517201 + ], + [ + 7.6481215, + 51.504093601 + ], + [ + 7.6487583, + 51.504663701 + ], + [ + 7.6494888, + 51.505422501 + ], + [ + 7.649678841, + 51.505635334 + ] + ] + } + }, + { + "identifier": "2026-014777--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.49932998672459,7.641575283383204,51.50563533372644,7.649678841154902", + "point": "51.49932998672459,7.641575283383204", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund/Unna", + "upper": "Lichtendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> M\u00fcnster", + "title": "A1 | Lichtendorf - Dortmund/Unna", + "coordinate": { + "lat": 51.49932998672459, + "long": 7.641575283383204 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A1: K\u00f6ln -> M\u00fcnster, zwischen 4.7 km hinter Lichtendorf und 1.9 km vor AK Dortmund/Unna", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Arbeiten an Verkehrszeichenbr\u00fccke - AkD 14777" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.641575283, + 51.499329987 + ], + [ + 7.6430171, + 51.500347401 + ], + [ + 7.6460467, + 51.502481701 + ], + [ + 7.6473997, + 51.503517201 + ], + [ + 7.6481215, + 51.504093601 + ], + [ + 7.6487583, + 51.504663701 + ], + [ + 7.6494888, + 51.505422501 + ], + [ + 7.649678841, + 51.505635334 + ] + ] + } + }, + { + "identifier": "2023-002834--vi-bs.2024-10-24_20-00-00-000.devi-zus.2021-10-11_20-00-00-000.f_001.de39", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.503755961757996,7.647698686659268,51.5097875598432,7.652391094260623", + "point": "51.503755961757996,7.647698686659268", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund/Unna", + "upper": "Lichtendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> M\u00fcnster", + "title": "A1 | Lichtendorf - Dortmund/Unna", + "startTimestamp": "2024-10-24T20:00:00+02:00", + "coordinate": { + "lat": 51.503755961757996, + "long": 7.647698686659268 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.10.24 um 20:00 Uhr", + "Ende: 03.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 02.11.27)", + "", + "A1: K\u00f6ln -> M\u00fcnster, zwischen 5.4 km hinter Lichtendorf und 1.4 km vor AK Dortmund/Unna", + "", + "L\u00e4nge: 0.75 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 9.6 m", + "", + "A1 - Ersatzneubau TB Liedbachtal - AlD 2834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.647698687, + 51.503755962 + ], + [ + 7.6481215, + 51.504093601 + ], + [ + 7.6487583, + 51.504663701 + ], + [ + 7.6494888, + 51.505422501 + ], + [ + 7.6500717, + 51.506075301 + ], + [ + 7.6504673, + 51.506563401 + ], + [ + 7.6509764, + 51.507260101 + ], + [ + 7.6512807, + 51.507713601 + ], + [ + 7.6520465, + 51.509067001 + ], + [ + 7.652391094, + 51.50978756 + ] + ] + } + }, + { + "identifier": "2023-002834--vi-bs.2024-10-24_20-00-00-000.devi-zus.2021-10-11_20-00-00-000.f_001.de43", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.520152400910206,7.657091225707881,51.50983265742994,7.652150530568508", + "point": "51.520152400910206,7.657091225707881", + "startLcPosition": "103", + "impact": { + "lower": "Lichtendorf", + "upper": "Dortmund/Unna", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> K\u00f6ln", + "title": "A1 | Dortmund/Unna - Lichtendorf", + "startTimestamp": "2024-10-24T20:00:00+02:00", + "coordinate": { + "lat": 51.520152400910206, + "long": 7.657091225707881 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.10.24 um 20:00 Uhr", + "Ende: 03.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 02.11.27)", + "", + "A1: M\u00fcnster -> K\u00f6ln, zwischen 0.2 km hinter AK Dortmund/Unna und 6.1 km vor Lichtendorf", + "", + "L\u00e4nge: 1.2 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A1 - Ersatzneubau TB Liedbachtal - AlD 2834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.657091226, + 51.520152401 + ], + [ + 7.6569276, + 51.519805501 + ], + [ + 7.6563094, + 51.518503501 + ], + [ + 7.6554374, + 51.516639201 + ], + [ + 7.6541855, + 51.514020701 + ], + [ + 7.653588, + 51.512795701 + ], + [ + 7.6532426, + 51.512083201 + ], + [ + 7.6531403, + 51.511873501 + ], + [ + 7.6530359, + 51.511659801 + ], + [ + 7.652150531, + 51.509832657 + ] + ] + } + }, + { + "identifier": "2026-016935--vi-bs.2026-04-14_21-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.49503513881003,7.635178255202318,51.49470251010397,7.6346967873230485", + "point": "51.49503513881003,7.635178255202318", + "startLcPosition": "103", + "impact": { + "lower": "Lichtendorf", + "upper": "Dortmund/Unna", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnster -> K\u00f6ln", + "title": "A1 | Dortmund/Unna - Lichtendorf", + "coordinate": { + "lat": 51.49503513881003, + "long": 7.635178255202318 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 21:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A1: M\u00fcnster -> K\u00f6ln, zwischen 3.5 km hinter AK Dortmund/Unna und 4.0 km vor Lichtendorf", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Fahrbahninstandsetzung - AkD 16935" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.635178255, + 51.495035139 + ], + [ + 7.6351546, + 51.495018201 + ], + [ + 7.634696787, + 51.49470251 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2023-06-20_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de67", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.551207706354205,7.663958809938562,51.62251215656492,7.6886607040406805", + "point": "51.551207706354205,7.663958809938562", + "startLcPosition": "104", + "impact": { + "lower": "Hamm/Bergkamen", + "upper": "Unna", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Unna - Hamm/Bergkamen", + "startTimestamp": "2023-06-20T20:00:00+02:00", + "coordinate": { + "lat": 51.551207706354205, + "long": 7.663958809938562 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.06.23 um 20:00 Uhr", + "Ende: 29.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 2.8 km hinter AS Unna und 3.4 km vor AS Hamm/Bergkamen", + "", + "L\u00e4nge: 8.31 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.66395881, + 51.551207706 + ], + [ + 7.6639633, + 51.551256001 + ], + [ + 7.6646066, + 51.557694601 + ], + [ + 7.6646225, + 51.557887501 + ], + [ + 7.6648119, + 51.559832901 + ], + [ + 7.6649731, + 51.561392601 + ], + [ + 7.6650099, + 51.561731301 + ], + [ + 7.6651578, + 51.563213301 + ], + [ + 7.6652274, + 51.563956501 + ], + [ + 7.6653273, + 51.564738501 + ], + [ + 7.6654539, + 51.565518601 + ], + [ + 7.6655611, + 51.566019501 + ], + [ + 7.6656878, + 51.566550801 + ], + [ + 7.6658734, + 51.567195901 + ], + [ + 7.6662589, + 51.568345901 + ], + [ + 7.666524, + 51.569010001 + ], + [ + 7.6667127, + 51.569452301 + ], + [ + 7.6671501, + 51.570359901 + ], + [ + 7.6676558, + 51.571301501 + ], + [ + 7.6681069, + 51.572050401 + ], + [ + 7.6686257, + 51.572835001 + ], + [ + 7.6691337, + 51.573533301 + ], + [ + 7.6697202, + 51.574302401 + ], + [ + 7.6704364, + 51.575110301 + ], + [ + 7.6707057, + 51.575406701 + ], + [ + 7.6716793, + 51.576454801 + ], + [ + 7.6727236, + 51.577465301 + ], + [ + 7.6732888, + 51.577962901 + ], + [ + 7.6740509, + 51.578605601 + ], + [ + 7.6751136, + 51.579447201 + ], + [ + 7.6758774, + 51.580017501 + ], + [ + 7.6761592, + 51.580245401 + ], + [ + 7.6766313, + 51.580599001 + ], + [ + 7.6773948, + 51.581217701 + ], + [ + 7.6782176, + 51.581953201 + ], + [ + 7.6784956, + 51.582219401 + ], + [ + 7.6796601, + 51.583460501 + ], + [ + 7.6806104, + 51.584567001 + ], + [ + 7.6816004, + 51.585765001 + ], + [ + 7.6820018, + 51.586263101 + ], + [ + 7.6826506, + 51.587096901 + ], + [ + 7.6831093, + 51.587702201 + ], + [ + 7.6836414, + 51.588477201 + ], + [ + 7.6840631, + 51.589213401 + ], + [ + 7.6843965, + 51.589906701 + ], + [ + 7.6845117, + 51.590164101 + ], + [ + 7.6847788, + 51.590829001 + ], + [ + 7.6849377, + 51.591342501 + ], + [ + 7.6855639, + 51.593730801 + ], + [ + 7.6857354, + 51.594396901 + ], + [ + 7.686206, + 51.596375801 + ], + [ + 7.6863938, + 51.597134601 + ], + [ + 7.6867391, + 51.598528801 + ], + [ + 7.6871388, + 51.600132301 + ], + [ + 7.6872743, + 51.600692801 + ], + [ + 7.6874031, + 51.601207401 + ], + [ + 7.6875817, + 51.601952501 + ], + [ + 7.6878327, + 51.602935101 + ], + [ + 7.6878575, + 51.603065101 + ], + [ + 7.6881738, + 51.604343601 + ], + [ + 7.6887657, + 51.606666601 + ], + [ + 7.6891504, + 51.608160001 + ], + [ + 7.6894644, + 51.609485201 + ], + [ + 7.6896715, + 51.610500401 + ], + [ + 7.6899557, + 51.611687301 + ], + [ + 7.6901291, + 51.612784201 + ], + [ + 7.690239, + 51.614185601 + ], + [ + 7.6902492, + 51.615319601 + ], + [ + 7.690174, + 51.616532801 + ], + [ + 7.6900889, + 51.617279601 + ], + [ + 7.6899856, + 51.617946801 + ], + [ + 7.6898181, + 51.618727701 + ], + [ + 7.6897066, + 51.619216201 + ], + [ + 7.6895833, + 51.619674001 + ], + [ + 7.6891918, + 51.620906301 + ], + [ + 7.6889614, + 51.621655101 + ], + [ + 7.688660704, + 51.622512157 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2026-03-24_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.571643789658815,7.667861975707875,51.57911594776266,7.674695315925116", + "point": "51.571643789658815,7.667861975707875", + "startLcPosition": "104", + "impact": { + "lower": "Kamener Kreuz", + "upper": "Unna", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Unna - Kamener Kreuz", + "startTimestamp": "2026-03-24T20:00:00+01:00", + "coordinate": { + "lat": 51.571643789658815, + "long": 7.667861975707875 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 20:00 Uhr", + "Ende: 29.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 5.1 km hinter AS Unna und 2.6 km vor AK Kamener Kreuz", + "", + "L\u00e4nge: 0.96 km | Maximale Durchfahrtsbreite: 8.45 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.667861976, + 51.57164379 + ], + [ + 7.6681069, + 51.572050401 + ], + [ + 7.6686257, + 51.572835001 + ], + [ + 7.6691337, + 51.573533301 + ], + [ + 7.6697202, + 51.574302401 + ], + [ + 7.6704364, + 51.575110301 + ], + [ + 7.6707057, + 51.575406701 + ], + [ + 7.6716793, + 51.576454801 + ], + [ + 7.6727236, + 51.577465301 + ], + [ + 7.6732888, + 51.577962901 + ], + [ + 7.6740509, + 51.578605601 + ], + [ + 7.674695316, + 51.579115948 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2026-03-24_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.564665205764236,7.665317936452312,51.571643789658815,7.667861975707875", + "point": "51.564665205764236,7.665317936452312", + "startLcPosition": "104", + "impact": { + "lower": "Kamen-Zentrum", + "upper": "Unna", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Unna - Kamen-Zentrum", + "startTimestamp": "2026-03-24T20:00:00+01:00", + "coordinate": { + "lat": 51.564665205764236, + "long": 7.665317936452312 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 20:00 Uhr", + "Ende: 29.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 4.3 km hinter AS Unna und 0.5 km vor AS Kamen-Zentrum", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 8.45 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.665317936, + 51.564665206 + ], + [ + 7.6653273, + 51.564738501 + ], + [ + 7.6654539, + 51.565518601 + ], + [ + 7.6655611, + 51.566019501 + ], + [ + 7.6656878, + 51.566550801 + ], + [ + 7.6658734, + 51.567195901 + ], + [ + 7.6662589, + 51.568345901 + ], + [ + 7.666524, + 51.569010001 + ], + [ + 7.6667127, + 51.569452301 + ], + [ + 7.6671501, + 51.570359901 + ], + [ + 7.6676558, + 51.571301501 + ], + [ + 7.667861976, + 51.57164379 + ] + ] + } + }, + { + "identifier": "2023-002834--vi-bs.2024-10-24_20-00-00-000.devi-zus.2021-10-11_20-00-00-000.f_001.de45", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.52894002719117,7.659566527985333,51.52016102593887,7.657095293992092", + "point": "51.52894002719117,7.659566527985333", + "startLcPosition": "105", + "impact": { + "lower": "Lichtendorf", + "upper": "Kamen-Zentrum", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> K\u00f6ln", + "title": "A1 | Kamen-Zentrum - Lichtendorf", + "startTimestamp": "2024-10-24T20:00:00+02:00", + "coordinate": { + "lat": 51.52894002719117, + "long": 7.659566527985333 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.10.24 um 20:00 Uhr", + "Ende: 03.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 02.11.27)", + "", + "A1: M\u00fcnster -> K\u00f6ln, zwischen 5.3 km hinter AS Kamen-Zentrum und 7.3 km vor Lichtendorf", + "", + "L\u00e4nge: 0.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A1 - Ersatzneubau TB Liedbachtal - AlD 2834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.659566528, + 51.528940027 + ], + [ + 7.6584509, + 51.523794501 + ], + [ + 7.6582511, + 51.522961101 + ], + [ + 7.6576962, + 51.521493601 + ], + [ + 7.6573724, + 51.520748501 + ], + [ + 7.657095294, + 51.520161026 + ] + ] + } + }, + { + "identifier": "2023-003223--vi-bs.2025-12-06_00-00-00-000.devi-zus.2023-06-05_21-00-00-000_004.f.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.55229414200916,7.663807181812426,51.53523211420857,7.660910687432918", + "point": "51.55229414200916,7.663807181812426", + "startLcPosition": "105", + "impact": { + "lower": "Unna", + "upper": "Kamen-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Kamen-Zentrum - Unna", + "startTimestamp": "2025-12-06T00:00:00+01:00", + "coordinate": { + "lat": 51.55229414200916, + "long": 7.663807181812426 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.12.25 um 00:00 Uhr", + "Ende: 20.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 2.6 km hinter AS Kamen-Zentrum und 1.0 km vor AS Unna", + "", + "L\u00e4nge: 1.91 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.7 m", + "", + "A1 - Ersatzneubau BW Hansa Str., BW B\u00fcddenberg., BW K\u00f6nigsborner Str. - AlD 3223" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.663807182, + 51.552294142 + ], + [ + 7.6637176, + 51.551383601 + ], + [ + 7.6636824, + 51.551006801 + ], + [ + 7.6634574, + 51.548726001 + ], + [ + 7.6634334, + 51.548486101 + ], + [ + 7.663182, + 51.546327901 + ], + [ + 7.6630105, + 51.545175201 + ], + [ + 7.6626733, + 51.543364801 + ], + [ + 7.6625776, + 51.542913201 + ], + [ + 7.6621581, + 51.540988301 + ], + [ + 7.6620714, + 51.540602101 + ], + [ + 7.6615908, + 51.538332901 + ], + [ + 7.6615296, + 51.538071901 + ], + [ + 7.6611478, + 51.536341501 + ], + [ + 7.6609411, + 51.535369201 + ], + [ + 7.660910687, + 51.535232114 + ] + ] + } + }, + { + "identifier": "2023-003223--vi-bs.2025-12-06_00-00-00-000.devi-zus.2023-06-05_21-00-00-000_004.f.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5540889055109,7.663983765676271,51.55229414200916,7.663807181812426", + "point": "51.5540889055109,7.663983765676271", + "startLcPosition": "105", + "impact": { + "lower": "Unna", + "upper": "Kamen-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Kamen-Zentrum - Unna", + "startTimestamp": "2025-12-06T00:00:00+01:00", + "coordinate": { + "lat": 51.5540889055109, + "long": 7.663983765676271 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.12.25 um 00:00 Uhr", + "Ende: 20.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 2.4 km hinter AS Kamen-Zentrum und 2.9 km vor AS Unna", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A1 - Ersatzneubau BW Hansa Str., BW B\u00fcddenberg., BW K\u00f6nigsborner Str. - AlD 3223" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.663983766, + 51.554088906 + ], + [ + 7.663807182, + 51.552294142 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2024-05-23_09-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de55", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.59943443886687,7.686735004644713,51.59722177714532,7.686184644248208", + "point": "51.59943443886687,7.686735004644713", + "startLcPosition": "106", + "impact": { + "lower": "Kamen-Zentrum", + "upper": "Kamener Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Kamener Kreuz - Kamen-Zentrum", + "startTimestamp": "2024-05-23T09:00:00+02:00", + "coordinate": { + "lat": 51.59943443886687, + "long": 7.686735004644713 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.05.24 um 09:00 Uhr", + "Ende: 13.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 0.2 km hinter AK Kamener Kreuz und 2.7 km vor AS Kamen-Zentrum", + "", + "L\u00e4nge: 0.25 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.686735005, + 51.599434439 + ], + [ + 7.6865107, + 51.598550101 + ], + [ + 7.6861993, + 51.597281501 + ], + [ + 7.686184644, + 51.597221777 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2026-03-24_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.57955165934111,7.674931833135619,51.57084961329781,7.667141550109538", + "point": "51.57955165934111,7.674931833135619", + "startLcPosition": "106", + "impact": { + "lower": "Unna", + "upper": "Kamener Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Kamener Kreuz - Unna", + "startTimestamp": "2026-03-24T20:00:00+01:00", + "coordinate": { + "lat": 51.57955165934111, + "long": 7.674931833135619 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 20:00 Uhr", + "Ende: 29.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 2.6 km hinter AK Kamener Kreuz und 5.0 km vor AS Unna", + "", + "L\u00e4nge: 1.11 km | Maximale Durchfahrtsbreite: 8.45 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.674931833, + 51.579551659 + ], + [ + 7.6748849, + 51.579516501 + ], + [ + 7.6743337, + 51.579073101 + ], + [ + 7.6738566, + 51.578701901 + ], + [ + 7.6731355, + 51.578101001 + ], + [ + 7.6725096, + 51.577550901 + ], + [ + 7.6708221, + 51.575981401 + ], + [ + 7.6705471, + 51.575668201 + ], + [ + 7.6702703, + 51.575364601 + ], + [ + 7.6701084, + 51.575179901 + ], + [ + 7.6696595, + 51.574562501 + ], + [ + 7.6688687, + 51.573582801 + ], + [ + 7.6681399, + 51.572514901 + ], + [ + 7.667864, + 51.572123501 + ], + [ + 7.6671497, + 51.570864701 + ], + [ + 7.66714155, + 51.570849613 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2026-03-24_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.58480938980777,7.680540249905205,51.57955165934111,7.674931833135619", + "point": "51.58480938980777,7.680540249905205", + "startLcPosition": "106", + "impact": { + "lower": "Kamen-Zentrum", + "upper": "Kamener Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Kamener Kreuz - Kamen-Zentrum", + "startTimestamp": "2026-03-24T20:00:00+01:00", + "coordinate": { + "lat": 51.58480938980777, + "long": 7.680540249905205 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 20:00 Uhr", + "Ende: 29.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 1.9 km hinter AK Kamener Kreuz und 0.6 km vor AS Kamen-Zentrum", + "", + "L\u00e4nge: 0.71 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.45 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.68054025, + 51.58480939 + ], + [ + 7.6803807, + 51.584618001 + ], + [ + 7.6794218, + 51.583505401 + ], + [ + 7.6783234, + 51.582347901 + ], + [ + 7.6780813, + 51.582104101 + ], + [ + 7.6778904, + 51.581929101 + ], + [ + 7.6772217, + 51.581335201 + ], + [ + 7.6769924, + 51.581150901 + ], + [ + 7.6760773, + 51.580411601 + ], + [ + 7.6759605, + 51.580326401 + ], + [ + 7.6756944, + 51.580122901 + ], + [ + 7.674931833, + 51.579551659 + ] + ] + } + }, + { + "identifier": "2026-016938--vi-bs.2026-04-16_19-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.627254169848584,7.687091025185134,51.63010840580288,7.686429761223187", + "point": "51.627254169848584,7.687091025185134", + "startLcPosition": "108", + "impact": { + "lower": "Hamm/Bergkamen", + "upper": "Haus Reck", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Haus Reck - Hamm/Bergkamen", + "coordinate": { + "lat": 51.627254169848584, + "long": 7.687091025185134 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 19:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 0.8 km hinter Haus Reck und 2.6 km vor AS Hamm/Bergkamen", + "", + "L\u00e4nge: 0.32 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Fahrbahnistandsetzung - AkD 16938" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.687091025, + 51.62725417 + ], + [ + 7.6866909, + 51.628833201 + ], + [ + 7.686429761, + 51.630108406 + ] + ] + } + }, + { + "identifier": "2025-057914--vi-bs.2026-03-19_20-00-00-000.devi-zus.2026-02-02_20-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.64455797053126,7.685304913905076,51.658647707611415,7.683063243305148", + "point": "51.64455797053126,7.685304913905076", + "startLcPosition": "108", + "impact": { + "lower": "Fuchseggen", + "upper": "Haus Reck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Haus Reck - Fuchseggen", + "startTimestamp": "2026-03-19T20:00:00+01:00", + "coordinate": { + "lat": 51.64455797053126, + "long": 7.685304913905076 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.03.26 um 20:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 2.7 km hinter Haus Reck und 1.7 km vor Fuchseggen", + "", + "L\u00e4nge: 1.58 km | Maximale Durchfahrtsbreite: 6.05 m", + "", + "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.685304914, + 51.644557971 + ], + [ + 7.6852419, + 51.644908601 + ], + [ + 7.6850145, + 51.646108101 + ], + [ + 7.684779, + 51.647215701 + ], + [ + 7.6846185, + 51.647904401 + ], + [ + 7.684414, + 51.648837101 + ], + [ + 7.6842585, + 51.649589301 + ], + [ + 7.684111, + 51.650308501 + ], + [ + 7.6840453, + 51.650605101 + ], + [ + 7.6839543, + 51.650978401 + ], + [ + 7.6838744, + 51.651456501 + ], + [ + 7.6837144, + 51.652495901 + ], + [ + 7.6836197, + 51.653096901 + ], + [ + 7.6835216, + 51.653709201 + ], + [ + 7.6834069, + 51.654686801 + ], + [ + 7.6833046, + 51.655596101 + ], + [ + 7.6832381, + 51.656273401 + ], + [ + 7.683063243, + 51.658647708 + ] + ] + } + }, + { + "identifier": "2026-017490--vi-bs.2026-04-16_21-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.621623320986885,7.688971178606429,51.631358119670885,7.686219196972941", + "point": "51.621623320986885,7.688971178606429", + "startLcPosition": "108", + "impact": { + "lower": "Hamm/Bergkamen", + "upper": "Haus Reck", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Haus Reck - Hamm/Bergkamen", + "coordinate": { + "lat": 51.621623320986885, + "long": 7.688971178606429 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 21:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 0.1 km hinter Haus Reck und 2.4 km vor AS Hamm/Bergkamen", + "", + "L\u00e4nge: 1.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Fahrbahninstandsetzung - AkD 17490" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.688971179, + 51.621623321 + ], + [ + 7.6889614, + 51.621655101 + ], + [ + 7.6886449, + 51.622557201 + ], + [ + 7.6878271, + 51.624887701 + ], + [ + 7.6874912, + 51.625850601 + ], + [ + 7.6872038, + 51.626809101 + ], + [ + 7.6866909, + 51.628833201 + ], + [ + 7.6863946, + 51.630280101 + ], + [ + 7.6862792, + 51.630955901 + ], + [ + 7.686219197, + 51.63135812 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2023-06-20_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de65", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.62248599866045,7.688468403222499,51.55121700708786,7.663702037027278", + "point": "51.62248599866045,7.688468403222499", + "startLcPosition": "109", + "impact": { + "lower": "Unna", + "upper": "Hamm/Bergkamen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Hamm/Bergkamen - Unna", + "startTimestamp": "2023-06-20T20:00:00+02:00", + "coordinate": { + "lat": 51.62248599866045, + "long": 7.688468403222499 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.06.23 um 20:00 Uhr", + "Ende: 29.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 3.4 km hinter AS Hamm/Bergkamen und 2.8 km vor AS Unna", + "", + "L\u00e4nge: 8.31 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.688468403, + 51.622485999 + ], + [ + 7.6887509, + 51.621681801 + ], + [ + 7.6888193, + 51.621472601 + ], + [ + 7.6890099, + 51.620890001 + ], + [ + 7.6893954, + 51.619656401 + ], + [ + 7.6895107, + 51.619214501 + ], + [ + 7.6896358, + 51.618701001 + ], + [ + 7.6897907, + 51.617950001 + ], + [ + 7.6898074, + 51.617783401 + ], + [ + 7.6898901, + 51.617291001 + ], + [ + 7.6899969, + 51.616439501 + ], + [ + 7.690026, + 51.615879001 + ], + [ + 7.6900539, + 51.615323901 + ], + [ + 7.6900558, + 51.614455601 + ], + [ + 7.6900563, + 51.614228801 + ], + [ + 7.6899845, + 51.613339001 + ], + [ + 7.6899046, + 51.612453801 + ], + [ + 7.6894821, + 51.610373301 + ], + [ + 7.6893253, + 51.609787501 + ], + [ + 7.689213, + 51.609375101 + ], + [ + 7.6890231, + 51.608575001 + ], + [ + 7.6887301, + 51.607506301 + ], + [ + 7.6880444, + 51.604719701 + ], + [ + 7.6879388, + 51.604300501 + ], + [ + 7.6878754, + 51.604048601 + ], + [ + 7.6876302, + 51.603065001 + ], + [ + 7.6875953, + 51.602935401 + ], + [ + 7.6873507, + 51.601978301 + ], + [ + 7.6872674, + 51.601600201 + ], + [ + 7.6871634, + 51.601208701 + ], + [ + 7.6870408, + 51.600693501 + ], + [ + 7.6869004, + 51.600086501 + ], + [ + 7.6865107, + 51.598550101 + ], + [ + 7.6861993, + 51.597281501 + ], + [ + 7.6853334, + 51.593752601 + ], + [ + 7.6851299, + 51.592959601 + ], + [ + 7.6850313, + 51.592598901 + ], + [ + 7.6848811, + 51.592029801 + ], + [ + 7.6848185, + 51.591782501 + ], + [ + 7.6846466, + 51.591225901 + ], + [ + 7.6842819, + 51.590205801 + ], + [ + 7.6841558, + 51.589917401 + ], + [ + 7.6838395, + 51.589274001 + ], + [ + 7.6834374, + 51.588572101 + ], + [ + 7.6828909, + 51.587766101 + ], + [ + 7.6824426, + 51.587174601 + ], + [ + 7.6817859, + 51.586338201 + ], + [ + 7.6813906, + 51.585829401 + ], + [ + 7.6803807, + 51.584618001 + ], + [ + 7.6794218, + 51.583505401 + ], + [ + 7.6783234, + 51.582347901 + ], + [ + 7.6780813, + 51.582104101 + ], + [ + 7.6778904, + 51.581929101 + ], + [ + 7.6772217, + 51.581335201 + ], + [ + 7.6769924, + 51.581150901 + ], + [ + 7.6760773, + 51.580411601 + ], + [ + 7.6759605, + 51.580326401 + ], + [ + 7.6756944, + 51.580122901 + ], + [ + 7.6748849, + 51.579516501 + ], + [ + 7.6743337, + 51.579073101 + ], + [ + 7.6738566, + 51.578701901 + ], + [ + 7.6731355, + 51.578101001 + ], + [ + 7.6725096, + 51.577550901 + ], + [ + 7.6708221, + 51.575981401 + ], + [ + 7.6705471, + 51.575668201 + ], + [ + 7.6702703, + 51.575364601 + ], + [ + 7.6701084, + 51.575179901 + ], + [ + 7.6696595, + 51.574562501 + ], + [ + 7.6688687, + 51.573582801 + ], + [ + 7.6681399, + 51.572514901 + ], + [ + 7.667864, + 51.572123501 + ], + [ + 7.6671497, + 51.570864701 + ], + [ + 7.6668935, + 51.570390401 + ], + [ + 7.6664453, + 51.569436501 + ], + [ + 7.6662644, + 51.569016201 + ], + [ + 7.6659341, + 51.568170201 + ], + [ + 7.6656246, + 51.567240001 + ], + [ + 7.6654481, + 51.566596601 + ], + [ + 7.6653167, + 51.566047401 + ], + [ + 7.6652011, + 51.565480301 + ], + [ + 7.6650732, + 51.564748601 + ], + [ + 7.6649738, + 51.563984501 + ], + [ + 7.6648951, + 51.563211701 + ], + [ + 7.6647501, + 51.561742001 + ], + [ + 7.6647218, + 51.561398101 + ], + [ + 7.664565, + 51.559870601 + ], + [ + 7.6643655, + 51.557837801 + ], + [ + 7.6643491, + 51.557644801 + ], + [ + 7.6639951, + 51.554204101 + ], + [ + 7.6637176, + 51.551383601 + ], + [ + 7.663702037, + 51.551217007 + ] + ] + } + }, + { + "identifier": "2026-017060--vi-fbm.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_008.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.62424261484991,7.6878512934612155,51.61851664878038,7.689673824665421", + "point": "51.62424261484991,7.6878512934612155", + "startLcPosition": "109", + "impact": { + "lower": "Kamener Kreuz", + "upper": "Hamm/Bergkamen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Hamm/Bergkamen - Kamener Kreuz", + "coordinate": { + "lat": 51.62424261484991, + "long": 7.6878512934612155 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 3.2 km hinter AS Hamm/Bergkamen und 2.0 km vor AK Kamener Kreuz", + "", + "L\u00e4nge: 0.65 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A1 - Baustelleneinrichtung - AkD 17060" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.687851293, + 51.624242615 + ], + [ + 7.6884527, + 51.622530701 + ], + [ + 7.6887509, + 51.621681801 + ], + [ + 7.6888193, + 51.621472601 + ], + [ + 7.6890099, + 51.620890001 + ], + [ + 7.6893954, + 51.619656401 + ], + [ + 7.6895107, + 51.619214501 + ], + [ + 7.6896358, + 51.618701001 + ], + [ + 7.689673825, + 51.618516649 + ] + ] + } + }, + { + "identifier": "2026-017060--vi-fbm.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_008.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.62424261484991,7.6878512934612155,51.61851664878038,7.689673824665421", + "point": "51.62424261484991,7.6878512934612155", + "startLcPosition": "109", + "impact": { + "lower": "Kamener Kreuz", + "upper": "Hamm/Bergkamen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Hamm/Bergkamen - Kamener Kreuz", + "coordinate": { + "lat": 51.62424261484991, + "long": 7.6878512934612155 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 3.2 km hinter AS Hamm/Bergkamen und 2.0 km vor AK Kamener Kreuz", + "", + "L\u00e4nge: 0.65 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Baustelleneinrichtung - AkD 17060" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.687851293, + 51.624242615 + ], + [ + 7.6884527, + 51.622530701 + ], + [ + 7.6887509, + 51.621681801 + ], + [ + 7.6888193, + 51.621472601 + ], + [ + 7.6890099, + 51.620890001 + ], + [ + 7.6893954, + 51.619656401 + ], + [ + 7.6895107, + 51.619214501 + ], + [ + 7.6896358, + 51.618701001 + ], + [ + 7.689673825, + 51.618516649 + ] + ] + } + }, + { + "identifier": "2023-002043--vi-bs.2025-11-21_05-00-00-000.devi-zus.2022-10-13_09-00-00-000.f_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.66043496701158,7.6829285847734194,51.66537208804501,7.682424208410719", + "point": "51.66043496701158,7.6829285847734194", + "startLcPosition": "109", + "impact": { + "lower": "Fuchseggen", + "upper": "Hamm/Bergkamen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Hamm/Bergkamen - Fuchseggen", + "startTimestamp": "2025-11-21T05:00:00+01:00", + "coordinate": { + "lat": 51.66043496701158, + "long": 7.6829285847734194 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.11.25 um 05:00 Uhr", + "Ende: 31.05.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 0.8 km hinter AS Hamm/Bergkamen und 0.9 km vor Fuchseggen", + "", + "L\u00e4nge: 0.55 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1 - Kompensation BW Lippe-Fluss und BW Dattel-Hamm-Kanal - AlD 2043" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.682928585, + 51.660434967 + ], + [ + 7.6828454, + 51.661524701 + ], + [ + 7.6827849, + 51.662246501 + ], + [ + 7.6826898, + 51.663253601 + ], + [ + 7.6825507, + 51.664389001 + ], + [ + 7.6824538, + 51.665178001 + ], + [ + 7.682424208, + 51.665372088 + ] + ] + } + }, + { + "identifier": "2026-016900--vi-bs.2026-04-13_19-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.64069304424743,7.68553055173399,51.63951661385053,7.685576478153302", + "point": "51.64069304424743,7.68553055173399", + "startLcPosition": "109", + "impact": { + "lower": "Haus Reck", + "upper": "Hamm/Bergkamen", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Hamm/Bergkamen - Haus Reck", + "coordinate": { + "lat": 51.64069304424743, + "long": 7.68553055173399 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 1.4 km hinter AS Hamm/Bergkamen und 2.2 km vor Haus Reck", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Fahrbahninstandsetzung - AkD 16900" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.685530552, + 51.640693044 + ], + [ + 7.6855479, + 51.640339501 + ], + [ + 7.6855703, + 51.639773901 + ], + [ + 7.685576478, + 51.639516614 + ] + ] + } + }, + { + "identifier": "2023-002043--vi-bs.2025-11-25_05-00-00-000.devi-zus.2022-10-13_09-00-00-000.f_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.667362627664545,7.681903660819131,51.662449170487584,7.682560361910765", + "point": "51.667362627664545,7.681903660819131", + "startLcPosition": "110", + "impact": { + "lower": "Hamm/Bergkamen", + "upper": "Fuchseggen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Fuchseggen - Hamm/Bergkamen", + "startTimestamp": "2025-11-25T05:00:00+01:00", + "coordinate": { + "lat": 51.667362627664545, + "long": 7.681903660819131 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.11.25 um 05:00 Uhr", + "Ende: 31.05.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 0.7 km hinter Fuchseggen und 1.0 km vor AS Hamm/Bergkamen", + "", + "L\u00e4nge: 0.55 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1 - Kompensation BW Lippe-Fluss und BW Dattel-Hamm-Kanal - AlD 2043" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.681903661, + 51.667362628 + ], + [ + 7.6820701, + 51.666494401 + ], + [ + 7.6820984, + 51.666317601 + ], + [ + 7.6821899, + 51.665681701 + ], + [ + 7.6822689, + 51.665163901 + ], + [ + 7.6823709, + 51.664366801 + ], + [ + 7.6824992, + 51.663236901 + ], + [ + 7.682560362, + 51.66244917 + ] + ] + } + }, + { + "identifier": "2025-057914--vi-bs.2026-03-19_20-00-00-000.devi-zus.2026-02-02_20-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.660249078010885,7.682731171517354,51.645705130138865,7.684899716566155", + "point": "51.660249078010885,7.682731171517354", + "startLcPosition": "110", + "impact": { + "lower": "Haus Reck", + "upper": "Fuchseggen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Fuchseggen - Haus Reck", + "startTimestamp": "2026-03-19T20:00:00+01:00", + "coordinate": { + "lat": 51.660249078010885, + "long": 7.682731171517354 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.03.26 um 20:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 1.5 km hinter Fuchseggen und 2.9 km vor Haus Reck", + "", + "L\u00e4nge: 1.63 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.05 m", + "", + "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.682731172, + 51.660249078 + ], + [ + 7.6827471, + 51.660043901 + ], + [ + 7.6828032, + 51.659209601 + ], + [ + 7.682879, + 51.658164101 + ], + [ + 7.6828938, + 51.657959301 + ], + [ + 7.6830295, + 51.656186801 + ], + [ + 7.6831855, + 51.654876101 + ], + [ + 7.6832755, + 51.654152901 + ], + [ + 7.6833045, + 51.653890301 + ], + [ + 7.6835065, + 51.652537901 + ], + [ + 7.683618, + 51.651887101 + ], + [ + 7.6836549, + 51.651672501 + ], + [ + 7.6837202, + 51.651325001 + ], + [ + 7.6838321, + 51.650730001 + ], + [ + 7.684066, + 51.649545401 + ], + [ + 7.68459, + 51.647177801 + ], + [ + 7.6848235, + 51.646089301 + ], + [ + 7.684899717, + 51.64570513 + ] + ] + } + }, + { + "identifier": "2023-004481--vi-bs.2026-02-10_05-00-00-000.devi-zus.2025-01-20_19-00-00-000.f.de116", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.690822195908844,7.671182944523877,51.69828876523717,7.6659199361824415", + "point": "51.690822195908844,7.671182944523877", + "startLcPosition": "111", + "impact": { + "lower": "Hasenk\u00e4mpe", + "upper": "An der Landwehr", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | An der Landwehr - Hasenk\u00e4mpe", + "startTimestamp": "2026-02-10T05:00:00+01:00", + "coordinate": { + "lat": 51.690822195908844, + "long": 7.671182944523877 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.02.26 um 05:00 Uhr", + "Ende: 16.07.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.12.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 1.8 km hinter An der Landwehr und 5.7 km vor Hasenk\u00e4mpe", + "", + "L\u00e4nge: 0.91 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 - Ersatzneubau BW Nordlippestra\u00dfe - AlD 4481" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.671182945, + 51.690822196 + ], + [ + 7.6705112, + 51.691737801 + ], + [ + 7.6701929, + 51.692164701 + ], + [ + 7.6700306, + 51.692389601 + ], + [ + 7.6691676, + 51.693573101 + ], + [ + 7.6685827, + 51.694384501 + ], + [ + 7.6676998, + 51.695641801 + ], + [ + 7.6676582, + 51.695702501 + ], + [ + 7.6674405, + 51.696028101 + ], + [ + 7.6665711, + 51.697295001 + ], + [ + 7.6660509, + 51.698083301 + ], + [ + 7.665919936, + 51.698288765 + ] + ] + } + }, + { + "identifier": "2023-004481--vi-bs.2026-02-10_05-00-00-000.devi-zus.2025-01-20_19-00-00-000.f.de110", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.68334086015654,7.676151675800089,51.690822195908844,7.671182944523877", + "point": "51.68334086015654,7.676151675800089", + "startLcPosition": "111", + "impact": { + "lower": "Hamm-Bockum/Werne", + "upper": "An der Landwehr", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | An der Landwehr - Hamm-Bockum/Werne", + "startTimestamp": "2026-02-10T05:00:00+01:00", + "coordinate": { + "lat": 51.68334086015654, + "long": 7.676151675800089 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.02.26 um 05:00 Uhr", + "Ende: 16.07.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.12.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 0.9 km hinter An der Landwehr und 0.6 km vor AS Hamm-Bockum/Werne", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 - Ersatzneubau BW Nordlippestra\u00dfe - AlD 4481" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.676151676, + 51.68334086 + ], + [ + 7.675777, + 51.684007701 + ], + [ + 7.6750353, + 51.685216601 + ], + [ + 7.6742154, + 51.686509801 + ], + [ + 7.6737937, + 51.687146201 + ], + [ + 7.6733803, + 51.687772101 + ], + [ + 7.6719845, + 51.689729601 + ], + [ + 7.671182945, + 51.690822196 + ] + ] + } + }, + { + "identifier": "2023-004481--vi-bs.2026-02-10_05-00-00-000.devi-zus.2025-01-20_19-00-00-000.f.de112", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.698506088640315,7.665781411907427,51.7003376314979,7.664621319555379", + "point": "51.698506088640315,7.665781411907427", + "startLcPosition": "112", + "impact": { + "lower": "Hasenk\u00e4mpe", + "upper": "Hamm-Bockum/Werne", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Hamm-Bockum/Werne - Hasenk\u00e4mpe", + "startTimestamp": "2026-02-10T05:00:00+01:00", + "coordinate": { + "lat": 51.698506088640315, + "long": 7.665781411907427 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.02.26 um 05:00 Uhr", + "Ende: 16.07.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.12.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 0.3 km hinter AS Hamm-Bockum/Werne und 5.5 km vor Hasenk\u00e4mpe", + "", + "L\u00e4nge: 0.22 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 - Ersatzneubau BW Nordlippestra\u00dfe - AlD 4481" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.665781412, + 51.698506089 + ], + [ + 7.6648554, + 51.699958801 + ], + [ + 7.66462132, + 51.700337631 + ] + ] + } + }, + { + "identifier": "2023-004481--vi-bs.2026-02-10_05-00-00-000.devi-zus.2025-01-20_19-00-00-000.f.de118", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.698246056255066,7.665746629606673,51.690771800619224,7.671005629128873", + "point": "51.698246056255066,7.665746629606673", + "startLcPosition": "113", + "impact": { + "lower": "An der Landwehr", + "upper": "Hasenk\u00e4mpe", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Hasenk\u00e4mpe - An der Landwehr", + "startTimestamp": "2026-02-10T05:00:00+01:00", + "coordinate": { + "lat": 51.698246056255066, + "long": 7.665746629606673 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.02.26 um 05:00 Uhr", + "Ende: 16.07.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.12.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 5.7 km hinter Hasenk\u00e4mpe und 1.8 km vor An der Landwehr", + "", + "L\u00e4nge: 0.91 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 - Ersatzneubau BW Nordlippestra\u00dfe - AlD 4481" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.66574663, + 51.698246056 + ], + [ + 7.6658841, + 51.698030901 + ], + [ + 7.6664031, + 51.697249601 + ], + [ + 7.6672663, + 51.695980101 + ], + [ + 7.6673149, + 51.695907301 + ], + [ + 7.6675299, + 51.695589501 + ], + [ + 7.6689898, + 51.693523401 + ], + [ + 7.669843, + 51.692361101 + ], + [ + 7.6700064, + 51.692133901 + ], + [ + 7.6703716, + 51.691631201 + ], + [ + 7.671005629, + 51.690771801 + ] + ] + } + }, + { + "identifier": "2023-004481--vi-bs.2026-02-10_05-00-00-000.devi-zus.2025-01-20_19-00-00-000.f.de114", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.706571945242196,7.660844667844122,51.698246056255066,7.665746629606673", + "point": "51.706571945242196,7.660844667844122", + "startLcPosition": "113", + "impact": { + "lower": "Hamm-Bockum/Werne", + "upper": "Hasenk\u00e4mpe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | Hasenk\u00e4mpe - Hamm-Bockum/Werne", + "startTimestamp": "2026-02-10T05:00:00+01:00", + "coordinate": { + "lat": 51.706571945242196, + "long": 7.660844667844122 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.02.26 um 05:00 Uhr", + "Ende: 16.07.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.12.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 4.8 km hinter Hasenk\u00e4mpe und 0.3 km vor AS Hamm-Bockum/Werne", + "", + "L\u00e4nge: 0.99 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 - Ersatzneubau BW Nordlippestra\u00dfe - AlD 4481" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.660844668, + 51.706571945 + ], + [ + 7.6622356, + 51.704078601 + ], + [ + 7.6626787, + 51.703266401 + ], + [ + 7.6628351, + 51.702994601 + ], + [ + 7.6637369, + 51.701456701 + ], + [ + 7.6642003, + 51.700686201 + ], + [ + 7.6646759, + 51.699921801 + ], + [ + 7.6653486, + 51.698869001 + ], + [ + 7.66574663, + 51.698246056 + ] + ] + } + }, + { + "identifier": "2023-004425--vi-bs.2025-01-09_20-00-00-000.devi-zus.2023-03-20_19-00-00-000_019.f.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.831263721504264,7.597565216536352,51.878329689045955,7.576329117698251", + "point": "51.831263721504264,7.597565216536352", + "startLcPosition": "119", + "impact": { + "lower": "M\u00fcnster-Hiltrup", + "upper": "Hohe Heide", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Hohe Heide - M\u00fcnster-Hiltrup", + "startTimestamp": "2025-01-09T20:00:00+01:00", + "coordinate": { + "lat": 51.831263721504264, + "long": 7.597565216536352 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.01.25 um 20:00 Uhr", + "Ende: 01.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 03.09.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 2.6 km hinter Hohe Heide und 1.0 km vor AS M\u00fcnster-Hiltrup", + "", + "L\u00e4nge: 5.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 - 6-streifige Ausbau zwischen Ascheberg und Hiltrup - AlD 4425" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.597565217, + 51.831263722 + ], + [ + 7.5963513, + 51.832159901 + ], + [ + 7.5948023, + 51.833364901 + ], + [ + 7.5945201, + 51.833583101 + ], + [ + 7.5921947, + 51.835500401 + ], + [ + 7.5907575, + 51.836792201 + ], + [ + 7.5892257, + 51.838251901 + ], + [ + 7.5874352, + 51.840139101 + ], + [ + 7.5865048, + 51.841155401 + ], + [ + 7.58564, + 51.842182301 + ], + [ + 7.5848276, + 51.843176401 + ], + [ + 7.5836109, + 51.844716601 + ], + [ + 7.5834888, + 51.844896501 + ], + [ + 7.5832234, + 51.845287501 + ], + [ + 7.582132, + 51.846892801 + ], + [ + 7.5808493, + 51.849087801 + ], + [ + 7.5808271, + 51.849125801 + ], + [ + 7.5796293, + 51.851426501 + ], + [ + 7.5787448, + 51.853383101 + ], + [ + 7.5784071, + 51.854182101 + ], + [ + 7.5776504, + 51.856280501 + ], + [ + 7.5772212, + 51.857740001 + ], + [ + 7.5769721, + 51.858773301 + ], + [ + 7.5766322, + 51.860453601 + ], + [ + 7.5763992, + 51.861684701 + ], + [ + 7.5763213, + 51.862311901 + ], + [ + 7.5761921, + 51.863352701 + ], + [ + 7.5760281, + 51.866129001 + ], + [ + 7.576033, + 51.866646601 + ], + [ + 7.576054, + 51.868883801 + ], + [ + 7.5762018, + 51.871184701 + ], + [ + 7.5762956, + 51.872645501 + ], + [ + 7.5763709, + 51.874964401 + ], + [ + 7.5763672, + 51.875214501 + ], + [ + 7.5763684, + 51.875610001 + ], + [ + 7.5763723, + 51.876360101 + ], + [ + 7.576351, + 51.877691701 + ], + [ + 7.576329118, + 51.878329689 + ] + ] + } + }, + { + "identifier": "2023-004425--vi-bs.2024-01-15_19-00-00-000.devi-zus.2023-03-20_19-00-00-000_019.f.de51", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.826443112811155,7.604093823258132,51.83126372150426,7.597565216536368", + "point": "51.826443112811155,7.604093823258132", + "startLcPosition": "119", + "impact": { + "lower": "Davert", + "upper": "Hohe Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> M\u00fcnster", + "title": "A1 | Hohe Heide - Davert", + "startTimestamp": "2024-01-15T19:00:00+01:00", + "coordinate": { + "lat": 51.826443112811155, + "long": 7.604093823258132 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.01.24 um 19:00 Uhr", + "Ende: 01.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 03.09.26)", + "", + "A1: Dortmund -> M\u00fcnster, zwischen 1.9 km hinter Hohe Heide und 1.2 km vor Davert", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 - 6-streifige Ausbau zwischen Ascheberg und Hiltrup - AlD 4425" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.604093823, + 51.826443113 + ], + [ + 7.597565217, + 51.831263722 + ] + ] + } + }, + { + "identifier": "2023-004425--vi-bs.2025-01-09_20-00-00-000.devi-zus.2023-03-20_19-00-00-000_019.f.de35", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.87832434069241,7.576061144227069,51.83117320835133,7.597391665057673", + "point": "51.87832434069241,7.576061144227069", + "startLcPosition": "122", + "impact": { + "lower": "Hohe Heide", + "upper": "M\u00fcnster-Hiltrup", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | M\u00fcnster-Hiltrup - Hohe Heide", + "startTimestamp": "2025-01-09T20:00:00+01:00", + "coordinate": { + "lat": 51.87832434069241, + "long": 7.576061144227069 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.01.25 um 20:00 Uhr", + "Ende: 01.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 03.09.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 1.0 km hinter AS M\u00fcnster-Hiltrup und 2.6 km vor Hohe Heide", + "", + "L\u00e4nge: 5.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1 - 6-streifige Ausbau zwischen Ascheberg und Hiltrup - AlD 4425" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.576061144, + 51.878324341 + ], + [ + 7.5760659, + 51.878253801 + ], + [ + 7.5761786, + 51.876353901 + ], + [ + 7.576192, + 51.875607501 + ], + [ + 7.5761996, + 51.875203101 + ], + [ + 7.576193, + 51.874952301 + ], + [ + 7.5761838, + 51.874599801 + ], + [ + 7.576123, + 51.872602801 + ], + [ + 7.5760291, + 51.871190501 + ], + [ + 7.5758728, + 51.868841201 + ], + [ + 7.5758313, + 51.866651201 + ], + [ + 7.575821, + 51.866107701 + ], + [ + 7.5760367, + 51.863342001 + ], + [ + 7.5761493, + 51.862309501 + ], + [ + 7.576218, + 51.861679301 + ], + [ + 7.5764423, + 51.860405601 + ], + [ + 7.576753, + 51.858758801 + ], + [ + 7.5770575, + 51.857723401 + ], + [ + 7.5774865, + 51.856264501 + ], + [ + 7.5782058, + 51.854155701 + ], + [ + 7.5785491, + 51.853353101 + ], + [ + 7.57942, + 51.851388901 + ], + [ + 7.5806538, + 51.849111501 + ], + [ + 7.5806876, + 51.849053001 + ], + [ + 7.581953, + 51.846864201 + ], + [ + 7.5833307, + 51.844857801 + ], + [ + 7.5836969, + 51.844324401 + ], + [ + 7.5848155, + 51.842918501 + ], + [ + 7.5858209, + 51.841684101 + ], + [ + 7.5863597, + 51.841081701 + ], + [ + 7.5871726, + 51.840137501 + ], + [ + 7.588486, + 51.838767601 + ], + [ + 7.5889773, + 51.838275701 + ], + [ + 7.5899778, + 51.837311201 + ], + [ + 7.5906677, + 51.836620601 + ], + [ + 7.5921049, + 51.835328901 + ], + [ + 7.5943118, + 51.833559201 + ], + [ + 7.5945739, + 51.833348901 + ], + [ + 7.5962614, + 51.832003401 + ], + [ + 7.597391665, + 51.831173208 + ] + ] + } + }, + { + "identifier": "2023-004425--vi-bs.2023-03-20_19-00-00-000.devi-zus.2023-03-20_19-00-00-000_019.f.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.88901487544518,7.574027312403746,51.87832434069241,7.576061144227069", + "point": "51.88901487544518,7.574027312403746", + "startLcPosition": "123", + "impact": { + "lower": "Wei\u00dfes Venn", + "upper": "M\u00fcnster-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Dortmund", + "title": "A1 | M\u00fcnster-S\u00fcd - Wei\u00dfes Venn", + "startTimestamp": "2023-03-20T19:00:00+01:00", + "coordinate": { + "lat": 51.88901487544518, + "long": 7.574027312403746 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.23 um 19:00 Uhr", + "Ende: 01.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 03.09.26)", + "", + "A1: M\u00fcnster -> Dortmund, zwischen 3.1 km hinter AK M\u00fcnster-S\u00fcd und 4.3 km vor Wei\u00dfes Venn", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A1 - 6-streifige Ausbau zwischen Ascheberg und Hiltrup - AlD 4425" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.574027312, + 51.889014875 + ], + [ + 7.5740882, + 51.888854801 + ], + [ + 7.5744998, + 51.887322601 + ], + [ + 7.5749933, + 51.885462901 + ], + [ + 7.5751752, + 51.884621101 + ], + [ + 7.575304, + 51.884025501 + ], + [ + 7.5754262, + 51.883460101 + ], + [ + 7.5756958, + 51.881864501 + ], + [ + 7.5758354, + 51.880981101 + ], + [ + 7.5759192, + 51.880120801 + ], + [ + 7.5759744, + 51.879483901 + ], + [ + 7.5760337, + 51.878731401 + ], + [ + 7.576061144, + 51.878324341 + ] + ] + } + }, + { + "identifier": "2024-041437--vi-bs.2025-12-08_05-00-00-000.devi-zus.2025-09-05_22-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.15904973886043,7.744979382519492,52.1611477358793,7.747729027933404", + "point": "52.15904973886043,7.744979382519492", + "startLcPosition": "136", + "impact": { + "lower": "Buddenkuhle", + "upper": "Ladbergen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Osnabr\u00fcck", + "title": "A1 | Ladbergen - Buddenkuhle", + "startTimestamp": "2025-12-08T05:00:00+01:00", + "coordinate": { + "lat": 52.15904973886043, + "long": 7.744979382519492 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.12.25 um 05:00 Uhr", + "Ende: 13.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.06.26)", + "", + "A1: M\u00fcnster -> Osnabr\u00fcck, zwischen 1.7 km hinter AS Ladbergen und 1.3 km vor Buddenkuhle", + "", + "L\u00e4nge: 0.3 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Ersatzneubau Br\u00fccke Sonnenh\u00fcgeldamm und Overbecker Weg - AlD 41437" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.744979383, + 52.159049739 + ], + [ + 7.7452769, + 52.159286501 + ], + [ + 7.7463851, + 52.160148601 + ], + [ + 7.7471333, + 52.160713201 + ], + [ + 7.747729028, + 52.161147736 + ] + ] + } + }, + { + "identifier": "2024-041437--vi-bs.2025-12-08_05-00-00-000.devi-zus.2025-09-05_22-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.161894142662845,7.748560082022305,52.159806187703545,7.745779779482329", + "point": "52.161894142662845,7.748560082022305", + "startLcPosition": "137", + "impact": { + "lower": "Ladbergen", + "upper": "Buddenkuhle", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> M\u00fcnster", + "title": "A1 | Buddenkuhle - Ladbergen", + "startTimestamp": "2025-12-08T05:00:00+01:00", + "coordinate": { + "lat": 52.161894142662845, + "long": 7.748560082022305 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.12.25 um 05:00 Uhr", + "Ende: 13.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.06.26)", + "", + "A1: Osnabr\u00fcck -> M\u00fcnster, zwischen 1.2 km hinter Buddenkuhle und 1.8 km vor AS Ladbergen", + "", + "L\u00e4nge: 0.3 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Ersatzneubau Br\u00fccke Sonnenh\u00fcgeldamm und Overbecker Weg - AlD 41437" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.748560082, + 52.161894143 + ], + [ + 7.7480798, + 52.161561901 + ], + [ + 7.745779779, + 52.159806188 + ] + ] + } + }, + { + "identifier": "2026-017739--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.186372673070515,7.789218549009259,52.20515045683075,7.819476773353332", + "point": "52.186372673070515,7.789218549009259", + "startLcPosition": "138", + "impact": { + "lower": "Exterheide", + "upper": "Settel", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnster -> Osnabr\u00fcck", + "title": "A1 | Settel - Exterheide", + "coordinate": { + "lat": 52.186372673070515, + "long": 7.789218549009259 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A1: M\u00fcnster -> Osnabr\u00fcck, zwischen 0.9 km hinter Settel und 1.0 km vor Exterheide", + "", + "L\u00e4nge: 2.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A1 - Arbeiten an Schutzeinrichtungen - AkD 17739" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.789218549, + 52.186372673 + ], + [ + 7.7894369, + 52.186563401 + ], + [ + 7.7903597, + 52.187458701 + ], + [ + 7.7911858, + 52.188268001 + ], + [ + 7.792146, + 52.189246101 + ], + [ + 7.7933243, + 52.190427401 + ], + [ + 7.7940834, + 52.191164301 + ], + [ + 7.7950335, + 52.192054701 + ], + [ + 7.7959209, + 52.192808601 + ], + [ + 7.7973119, + 52.193969701 + ], + [ + 7.7977515, + 52.194321201 + ], + [ + 7.7979141, + 52.194439401 + ], + [ + 7.798665, + 52.195018801 + ], + [ + 7.7992444, + 52.195419201 + ], + [ + 7.799761, + 52.195790101 + ], + [ + 7.8001833, + 52.196076301 + ], + [ + 7.800913, + 52.196564301 + ], + [ + 7.8018689, + 52.197186301 + ], + [ + 7.8022483, + 52.197416501 + ], + [ + 7.803464, + 52.198174101 + ], + [ + 7.8037384, + 52.198338001 + ], + [ + 7.8047266, + 52.198898301 + ], + [ + 7.8062208, + 52.199725901 + ], + [ + 7.8076344, + 52.200447601 + ], + [ + 7.8082245, + 52.200746701 + ], + [ + 7.809686, + 52.201456601 + ], + [ + 7.8102465, + 52.201713601 + ], + [ + 7.8110299, + 52.202056901 + ], + [ + 7.8118192, + 52.202370801 + ], + [ + 7.8122781, + 52.202554901 + ], + [ + 7.8126703, + 52.202714301 + ], + [ + 7.8133835, + 52.202999101 + ], + [ + 7.8141706, + 52.203310501 + ], + [ + 7.8150104, + 52.203632001 + ], + [ + 7.8161116, + 52.204044301 + ], + [ + 7.8181567, + 52.204742401 + ], + [ + 7.819476773, + 52.205150457 + ] + ] + } + }, + { + "identifier": "2024-041437--vi-bs.2025-12-08_05-00-00-000.devi-zus.2025-09-05_22-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.19193839116957,7.794909389239025,52.194442753405845,7.797918444721873", + "point": "52.19193839116957,7.794909389239025", + "startLcPosition": "138", + "impact": { + "lower": "Sonnenh\u00fcgel", + "upper": "Settel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Osnabr\u00fcck", + "title": "A1 | Settel - Sonnenh\u00fcgel", + "startTimestamp": "2025-12-08T05:00:00+01:00", + "coordinate": { + "lat": 52.19193839116957, + "long": 7.794909389239025 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.12.25 um 05:00 Uhr", + "Ende: 13.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.06.26)", + "", + "A1: M\u00fcnster -> Osnabr\u00fcck, zwischen 1.6 km hinter Settel und Sonnenh\u00fcgel", + "", + "L\u00e4nge: 0.35 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Ersatzneubau Br\u00fccke Sonnenh\u00fcgeldamm und Overbecker Weg - AlD 41437" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.794909389, + 52.191938391 + ], + [ + 7.7950335, + 52.192054701 + ], + [ + 7.7959209, + 52.192808601 + ], + [ + 7.7973119, + 52.193969701 + ], + [ + 7.7977515, + 52.194321201 + ], + [ + 7.7979141, + 52.194439401 + ], + [ + 7.797918445, + 52.194442753 + ] + ] + } + }, + { + "identifier": "2024-041437--vi-bs.2025-12-08_05-00-00-000.devi-zus.2025-09-05_22-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.19864195915718,7.803939760836243,52.19325425704222,7.796186830098257", + "point": "52.19864195915718,7.803939760836243", + "startLcPosition": "141", + "impact": { + "lower": "Settel", + "upper": "Lengerich", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> M\u00fcnster", + "title": "A1 | Lengerich - Settel", + "startTimestamp": "2025-12-08T05:00:00+01:00", + "coordinate": { + "lat": 52.19864195915718, + "long": 7.803939760836243 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.12.25 um 05:00 Uhr", + "Ende: 13.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.06.26)", + "", + "A1: Osnabr\u00fcck -> M\u00fcnster, zwischen 0.7 km hinter AS Lengerich und 1.8 km vor Settel", + "", + "L\u00e4nge: 0.8 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Ersatzneubau Br\u00fccke Sonnenh\u00fcgeldamm und Overbecker Weg - AlD 41437" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.803939761, + 52.198641959 + ], + [ + 7.8035767, + 52.198428201 + ], + [ + 7.8033083, + 52.198264701 + ], + [ + 7.8018529, + 52.197373001 + ], + [ + 7.8008293, + 52.196713801 + ], + [ + 7.7998278, + 52.196036601 + ], + [ + 7.7991317, + 52.195538901 + ], + [ + 7.7987278, + 52.195273201 + ], + [ + 7.7974532, + 52.194324401 + ], + [ + 7.796924, + 52.193861401 + ], + [ + 7.79618683, + 52.193254257 + ] + ] + } + }, + { + "identifier": "2026-017739--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.205267435303305,7.819378179609089,52.18645795444652,7.7890274254261405", + "point": "52.205267435303305,7.819378179609089", + "startLcPosition": "142", + "impact": { + "lower": "Settel", + "upper": "Exterheide", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> M\u00fcnster", + "title": "A1 | Exterheide - Settel", + "coordinate": { + "lat": 52.205267435303305, + "long": 7.819378179609089 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A1: Osnabr\u00fcck -> M\u00fcnster, zwischen 1.0 km hinter Exterheide und 0.9 km vor Settel", + "", + "L\u00e4nge: 2.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A1 - Arbeiten an Schutzeinrichtungen - AkD 17739" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.81937818, + 52.205267435 + ], + [ + 7.8167043, + 52.204391501 + ], + [ + 7.8146934, + 52.203666701 + ], + [ + 7.813553, + 52.203249501 + ], + [ + 7.8129633, + 52.203015001 + ], + [ + 7.8124883, + 52.202825001 + ], + [ + 7.8120893, + 52.202657301 + ], + [ + 7.8115113, + 52.202407801 + ], + [ + 7.8102064, + 52.201853501 + ], + [ + 7.8089653, + 52.201271901 + ], + [ + 7.8067445, + 52.200158601 + ], + [ + 7.8045642, + 52.199009601 + ], + [ + 7.8035767, + 52.198428201 + ], + [ + 7.8033083, + 52.198264701 + ], + [ + 7.8018529, + 52.197373001 + ], + [ + 7.8008293, + 52.196713801 + ], + [ + 7.7998278, + 52.196036601 + ], + [ + 7.7991317, + 52.195538901 + ], + [ + 7.7987278, + 52.195273201 + ], + [ + 7.7974532, + 52.194324401 + ], + [ + 7.796924, + 52.193861401 + ], + [ + 7.7959426, + 52.193053101 + ], + [ + 7.7948373, + 52.192077201 + ], + [ + 7.7930917, + 52.190425401 + ], + [ + 7.7913644, + 52.188682301 + ], + [ + 7.7904377, + 52.187777701 + ], + [ + 7.7891291, + 52.186540901 + ], + [ + 7.789027425, + 52.186457954 + ] + ] + } + }, + { + "identifier": "2025-015114--vi-bs.2024-09-23_14-45-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.20915902092033,7.835559047155197,52.20823438289215,7.83073493406009", + "point": "52.20915902092033,7.835559047155197", + "startLcPosition": "144", + "impact": { + "lower": "Lengerich", + "upper": "Tecklenburger Land", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> M\u00fcnster", + "title": "A1 | Tecklenburger Land - Lengerich", + "startTimestamp": "2024-09-23T14:45:00+02:00", + "coordinate": { + "lat": 52.20915902092033, + "long": 7.835559047155197 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.09.24 um 14:45 Uhr", + "Ende: 31.12.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A1: Osnabr\u00fcck -> M\u00fcnster, zwischen 4.3 km hinter Tecklenburger Land und 1.4 km vor AS Lengerich", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Sonstiges - Parkplatz Exterheide gesperrt - AlD 15114" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.835559047, + 52.209159021 + ], + [ + 7.8334028, + 52.208780501 + ], + [ + 7.8315697, + 52.208414001 + ], + [ + 7.830734934, + 52.208234383 + ] + ] + } + }, + { + "identifier": "2026-017739--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_005.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.25441478110909,7.916921906639504,52.266801494796795,7.9259721130814045", + "point": "52.25441478110909,7.916921906639504", + "startLcPosition": "146", + "impact": { + "lower": "Lotte/Osnabr\u00fcck", + "upper": "Petersberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnster -> Osnabr\u00fcck", + "title": "A1 | Petersberg - Lotte/Osnabr\u00fcck", + "coordinate": { + "lat": 52.25441478110909, + "long": 7.916921906639504 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A1: M\u00fcnster -> Osnabr\u00fcck, zwischen 1.5 km hinter Petersberg und 0.2 km vor AK Lotte/Osnabr\u00fcck", + "", + "L\u00e4nge: 1.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1 - Arbeiten an Schutzeinrichtungen - AkD 17739" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.916921907, + 52.254414781 + ], + [ + 7.9177477, + 52.255367701 + ], + [ + 7.9185615, + 52.256371701 + ], + [ + 7.9189708, + 52.256896701 + ], + [ + 7.9190995, + 52.257067101 + ], + [ + 7.9196557, + 52.257825501 + ], + [ + 7.920403, + 52.258859601 + ], + [ + 7.9215584, + 52.260486601 + ], + [ + 7.9225713, + 52.261928201 + ], + [ + 7.9227027, + 52.262115201 + ], + [ + 7.9229967, + 52.262541701 + ], + [ + 7.9241969, + 52.264224501 + ], + [ + 7.9251311, + 52.265609901 + ], + [ + 7.9257583, + 52.266507801 + ], + [ + 7.925972113, + 52.266801495 + ] + ] + } + }, + { + "identifier": "2026-016879--vi-bs.2026-04-14_09-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.301589854479374,7.9436224294348845,52.30284337809465,7.9442328985936514", + "point": "52.301589854479374,7.9436224294348845", + "startLcPosition": "147", + "impact": { + "lower": "Osnabr\u00fcck-Hafen", + "upper": "Lotte/Osnabr\u00fcck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnster -> Bremen", + "title": "A1 | Lotte/Osnabr\u00fcck - Osnabr\u00fcck-Hafen", + "coordinate": { + "lat": 52.301589854479374, + "long": 7.9436224294348845 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 10:00 Uhr", + "", + "A1: M\u00fcnster -> Bremen, zwischen 3.9 km hinter AK Lotte/Osnabr\u00fcck und 0.1 km vor AS Osnabr\u00fcck-Hafen", + "", + "L\u00e4nge: 0.15 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.8 m", + "", + "A1 - Bauwerksarbeiten - AkD 16879" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.943622429, + 52.301589854 + ], + [ + 7.9437462, + 52.301849801 + ], + [ + 7.9440662, + 52.302544601 + ], + [ + 7.944232899, + 52.302843378 + ] + ] + } + }, + { + "identifier": "2023-004432--vi-bs.2026-02-28_12-00-00-000.devi-zus.2024-11-08_20-00-00-000_004.f.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.337623175218184,8.012213205580665,52.34474999613958,8.024392362121493", + "point": "52.337623175218184,8.012213205580665", + "startLcPosition": "149", + "impact": { + "lower": "Wallenhorster Stra\u00dfe", + "upper": "Hasetal", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Hasetal - Wallenhorster Stra\u00dfe", + "startTimestamp": "2026-02-28T12:00:00+01:00", + "coordinate": { + "lat": 52.337623175218184, + "long": 8.012213205580665 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.02.26 um 12:00 Uhr", + "Ende: 30.11.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.05.27)", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 4.2 km hinter Hasetal und 3.0 km vor Wallenhorster Stra\u00dfe", + "", + "L\u00e4nge: 1.15 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A1 - Ersatzneubau BW AS Osnabr\u00fcck-Nord-B68 - Wallenhorst - AlD 4432" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.012213206, + 52.337623175 + ], + [ + 8.0124545, + 52.337714701 + ], + [ + 8.0131768, + 52.338008701 + ], + [ + 8.013887, + 52.338312001 + ], + [ + 8.0142842, + 52.338492301 + ], + [ + 8.0147854, + 52.338720001 + ], + [ + 8.0158298, + 52.339221801 + ], + [ + 8.016383, + 52.339504301 + ], + [ + 8.0169243, + 52.339793601 + ], + [ + 8.0179644, + 52.340366201 + ], + [ + 8.0186535, + 52.340769601 + ], + [ + 8.0192654, + 52.341142801 + ], + [ + 8.019863, + 52.341518901 + ], + [ + 8.0204593, + 52.341898901 + ], + [ + 8.0210381, + 52.342283801 + ], + [ + 8.0217448, + 52.342772001 + ], + [ + 8.0224349, + 52.343264001 + ], + [ + 8.0231142, + 52.343765401 + ], + [ + 8.0237807, + 52.344271501 + ], + [ + 8.0239223, + 52.344381201 + ], + [ + 8.024392362, + 52.344749996 + ] + ] + } + }, + { + "identifier": "2023-004432--vi-bs.2026-02-28_12-00-00-000.devi-zus.2024-11-08_20-00-00-000_004.f.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.34571923275478,8.025318680892486,52.34004740577678,8.01705108847287", + "point": "52.34571923275478,8.025318680892486", + "startLcPosition": "151", + "impact": { + "lower": "Hasetal", + "upper": "Wallenhorster Stra\u00dfe", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Wallenhorster Stra\u00dfe - Hasetal", + "startTimestamp": "2026-02-28T12:00:00+01:00", + "coordinate": { + "lat": 52.34571923275478, + "long": 8.025318680892486 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.02.26 um 12:00 Uhr", + "Ende: 30.11.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.05.27)", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 2.9 km hinter Wallenhorster Stra\u00dfe und 4.6 km vor Hasetal", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A1 - Ersatzneubau BW AS Osnabr\u00fcck-Nord-B68 - Wallenhorst - AlD 4432" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.025318681, + 52.345719233 + ], + [ + 8.0246644, + 52.345186401 + ], + [ + 8.0235969, + 52.344345401 + ], + [ + 8.0229296, + 52.343843501 + ], + [ + 8.0222561, + 52.343346401 + ], + [ + 8.0215647, + 52.342855501 + ], + [ + 8.0208605, + 52.342371201 + ], + [ + 8.0202987, + 52.341995501 + ], + [ + 8.0197199, + 52.341621601 + ], + [ + 8.0191236, + 52.341247001 + ], + [ + 8.018518, + 52.340881201 + ], + [ + 8.0178088, + 52.340467401 + ], + [ + 8.017051088, + 52.340047406 + ] + ] + } + }, + { + "identifier": "2026-016875--vi-fbm.2026-04-24_05-00-00-000.devi-zus.2026-04-20_19-00-00-000_001.de18", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.485522708644915,8.066810035409434,52.47356446088183,8.05640082327624", + "point": "52.485522708644915,8.066810035409434", + "startLcPosition": "154", + "impact": { + "lower": "Bramsche", + "upper": "Neuenkirchen/V\u00f6rden", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Neuenkirchen/V\u00f6rden - Bramsche", + "coordinate": { + "lat": 52.485522708644915, + "long": 8.066810035409434 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 05:00 bis 06:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.2 km hinter AS Neuenkirchen/V\u00f6rden und 6.2 km vor Bramsche", + "", + "L\u00e4nge: 1.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 Fahrbahninstandhaltung 17 KW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.066810035, + 52.485522709 + ], + [ + 8.065135, + 52.483761701 + ], + [ + 8.0633565, + 52.481754201 + ], + [ + 8.0599912, + 52.477891901 + ], + [ + 8.0572445, + 52.474603701 + ], + [ + 8.056400823, + 52.473564461 + ] + ] + } + }, + { + "identifier": "2026-016875--vi-bs.2026-04-23_20-00-00-000.devi-zus.2026-04-20_19-00-00-000_001.de16", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.47356446088183,8.05640082327624,52.45292572948106,8.041799694913626", + "point": "52.47356446088183,8.05640082327624", + "startLcPosition": "154", + "impact": { + "lower": "Bramsche", + "upper": "Neuenkirchen/V\u00f6rden", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Neuenkirchen/V\u00f6rden - Bramsche", + "coordinate": { + "lat": 52.47356446088183, + "long": 8.05640082327624 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 2.7 km hinter AS Neuenkirchen/V\u00f6rden und 3.7 km vor Bramsche", + "", + "L\u00e4nge: 2.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 Fahrbahninstandhaltung 17 KW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.056400823, + 52.473564461 + ], + [ + 8.0557701, + 52.472787501 + ], + [ + 8.0553012, + 52.472200301 + ], + [ + 8.0543867, + 52.471055001 + ], + [ + 8.0542529, + 52.470869501 + ], + [ + 8.0531764, + 52.469484401 + ], + [ + 8.0519897, + 52.467922101 + ], + [ + 8.0506038, + 52.466070101 + ], + [ + 8.0502866, + 52.465627101 + ], + [ + 8.0480113, + 52.462448801 + ], + [ + 8.0466695, + 52.460494901 + ], + [ + 8.0451657, + 52.458227901 + ], + [ + 8.043867, + 52.456249701 + ], + [ + 8.04262, + 52.454266501 + ], + [ + 8.041799695, + 52.452925729 + ] + ] + } + }, + { + "identifier": "2026-016875--vi-fbm.2026-04-23_19-00-00-000.devi-zus.2026-04-20_19-00-00-000_001.de14", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.485522708644915,8.066810035409434,52.47356446088183,8.05640082327624", + "point": "52.485522708644915,8.066810035409434", + "startLcPosition": "154", + "impact": { + "lower": "Bramsche", + "upper": "Neuenkirchen/V\u00f6rden", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Neuenkirchen/V\u00f6rden - Bramsche", + "coordinate": { + "lat": 52.485522708644915, + "long": 8.066810035409434 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 19:00 bis 20:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.2 km hinter AS Neuenkirchen/V\u00f6rden und 6.2 km vor Bramsche", + "", + "L\u00e4nge: 1.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 Fahrbahninstandhaltung 17 KW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.066810035, + 52.485522709 + ], + [ + 8.065135, + 52.483761701 + ], + [ + 8.0633565, + 52.481754201 + ], + [ + 8.0599912, + 52.477891901 + ], + [ + 8.0572445, + 52.474603701 + ], + [ + 8.056400823, + 52.473564461 + ] + ] + } + }, + { + "identifier": "2026-016875--vi-fbm.2026-04-23_05-00-00-000.devi-zus.2026-04-20_19-00-00-000_001.de12", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.485522708644915,8.066810035409434,52.46788308738538,8.051960503829642", + "point": "52.485522708644915,8.066810035409434", + "startLcPosition": "154", + "impact": { + "lower": "Bramsche", + "upper": "Neuenkirchen/V\u00f6rden", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Neuenkirchen/V\u00f6rden - Bramsche", + "coordinate": { + "lat": 52.485522708644915, + "long": 8.066810035409434 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 05:00 bis 06:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.2 km hinter AS Neuenkirchen/V\u00f6rden und 5.5 km vor Bramsche", + "", + "L\u00e4nge: 2.21 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 Fahrbahninstandhaltung 17 KW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.066810035, + 52.485522709 + ], + [ + 8.065135, + 52.483761701 + ], + [ + 8.0633565, + 52.481754201 + ], + [ + 8.0599912, + 52.477891901 + ], + [ + 8.0572445, + 52.474603701 + ], + [ + 8.0557701, + 52.472787501 + ], + [ + 8.0553012, + 52.472200301 + ], + [ + 8.0543867, + 52.471055001 + ], + [ + 8.0542529, + 52.470869501 + ], + [ + 8.0531764, + 52.469484401 + ], + [ + 8.0519897, + 52.467922101 + ], + [ + 8.051960504, + 52.467883087 + ] + ] + } + }, + { + "identifier": "2026-016875--vi-bs.2026-04-22_20-00-00-000.devi-zus.2026-04-20_19-00-00-000_001.de10", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.475981755416775,8.058395560756573,52.45292572948106,8.041799694913626", + "point": "52.475981755416775,8.058395560756573", + "startLcPosition": "154", + "impact": { + "lower": "Bramsche", + "upper": "Neuenkirchen/V\u00f6rden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Neuenkirchen/V\u00f6rden - Bramsche", + "coordinate": { + "lat": 52.475981755416775, + "long": 8.058395560756573 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 2.4 km hinter AS Neuenkirchen/V\u00f6rden und 3.7 km vor Bramsche", + "", + "L\u00e4nge: 2.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 Fahrbahninstandhaltung 17 KW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.058395561, + 52.475981755 + ], + [ + 8.0572445, + 52.474603701 + ], + [ + 8.0557701, + 52.472787501 + ], + [ + 8.0553012, + 52.472200301 + ], + [ + 8.0543867, + 52.471055001 + ], + [ + 8.0542529, + 52.470869501 + ], + [ + 8.0531764, + 52.469484401 + ], + [ + 8.0519897, + 52.467922101 + ], + [ + 8.0506038, + 52.466070101 + ], + [ + 8.0502866, + 52.465627101 + ], + [ + 8.0480113, + 52.462448801 + ], + [ + 8.0466695, + 52.460494901 + ], + [ + 8.0451657, + 52.458227901 + ], + [ + 8.043867, + 52.456249701 + ], + [ + 8.04262, + 52.454266501 + ], + [ + 8.041799695, + 52.452925729 + ] + ] + } + }, + { + "identifier": "2026-016875--vi-fbm.2026-04-22_19-00-00-000.devi-zus.2026-04-20_19-00-00-000_001.de8", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.48708623462495,8.06829319839292,52.47356446088183,8.05640082327624", + "point": "52.48708623462495,8.06829319839292", + "startLcPosition": "154", + "impact": { + "lower": "Bramsche", + "upper": "Neuenkirchen/V\u00f6rden", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Neuenkirchen/V\u00f6rden - Bramsche", + "coordinate": { + "lat": 52.48708623462495, + "long": 8.06829319839292 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 19:00 bis 20:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.0 km hinter AS Neuenkirchen/V\u00f6rden und 6.2 km vor Bramsche", + "", + "L\u00e4nge: 1.71 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 Fahrbahninstandhaltung 17 KW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.068293198, + 52.487086235 + ], + [ + 8.0670934, + 52.485820601 + ], + [ + 8.065135, + 52.483761701 + ], + [ + 8.0633565, + 52.481754201 + ], + [ + 8.0599912, + 52.477891901 + ], + [ + 8.0572445, + 52.474603701 + ], + [ + 8.056400823, + 52.473564461 + ] + ] + } + }, + { + "identifier": "2026-015674--vi-bs.2026-04-16_08-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.500931614067106,8.08272802647832,52.50301878514743,8.085030900812985", + "point": "52.500931614067106,8.08272802647832", + "startLcPosition": "154", + "impact": { + "lower": "Dammer Berge", + "upper": "Neuenkirchen/V\u00f6rden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Neuenkirchen/V\u00f6rden - Dammer Berge", + "coordinate": { + "lat": 52.500931614067106, + "long": 8.08272802647832 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 17:00 Uhr", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 0.8 km hinter AS Neuenkirchen/V\u00f6rden und 4.7 km vor Dammer Berge", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 14 m", + "", + "A1 - Arbeiten an Verkehrszeichenbr\u00fccke - AkD 15674" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.082728026, + 52.500931614 + ], + [ + 8.0828071, + 52.501004001 + ], + [ + 8.0837798, + 52.501899201 + ], + [ + 8.085030901, + 52.503018785 + ] + ] + } + }, + { + "identifier": "2026-013366--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-07_19-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.657038335909675,8.16278853121043,52.63659919194348,8.148162466784635", + "point": "52.657038335909675,8.16278853121043", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.657038335909675, + "long": 8.16278853121043 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen AS Lohne/Dinklage und 2.8 km vor Langwege-West", + "", + "L\u00e4nge: 2.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Betonplattensanierung - AkD 13366" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.162788531, + 52.657038336 + ], + [ + 8.1626763, + 52.656840001 + ], + [ + 8.16213, + 52.655890401 + ], + [ + 8.1612894, + 52.654477401 + ], + [ + 8.1604678, + 52.653140701 + ], + [ + 8.1592248, + 52.651265701 + ], + [ + 8.1580934, + 52.649483701 + ], + [ + 8.1578512, + 52.649157501 + ], + [ + 8.1570037, + 52.647919501 + ], + [ + 8.1568347, + 52.647680901 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.148162467, + 52.636599192 + ] + ] + } + }, + { + "identifier": "2026-016875--vi-fbm.2026-04-21_05-00-00-000.devi-zus.2026-04-20_19-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.63067526676538,8.142880310098679,52.619104881807644,8.131510172963756", + "point": "52.63067526676538,8.142880310098679", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.63067526676538, + "long": 8.142880310098679 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 05:00 bis 06:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 3.2 km hinter AS Lohne/Dinklage und 0.6 km vor Langwege-West", + "", + "L\u00e4nge: 1.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 Fahrbahninstandhaltung 17 KW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.14288031, + 52.630675267 + ], + [ + 8.1422167, + 52.629957901 + ], + [ + 8.1390755, + 52.626691901 + ], + [ + 8.1357087, + 52.623305001 + ], + [ + 8.1323588, + 52.619958801 + ], + [ + 8.131510173, + 52.619104882 + ] + ] + } + }, + { + "identifier": "2026-016875--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_19-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.61525835647563,8.127689632520482,52.59915558300194,8.114635556036761", + "point": "52.61525835647563,8.127689632520482", + "startLcPosition": "160", + "impact": { + "lower": "Holdorf", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Holdorf", + "coordinate": { + "lat": 52.61525835647563, + "long": 8.127689632520482 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 05:00 Uhr.", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 5.2 km hinter AS Lohne/Dinklage und 0.3 km vor AS Holdorf", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 Fahrbahninstandhaltung 17 KW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.127689633, + 52.615258356 + ], + [ + 8.1262323, + 52.613789401 + ], + [ + 8.1241541, + 52.611601001 + ], + [ + 8.1229805, + 52.610365201 + ], + [ + 8.1213292, + 52.608506001 + ], + [ + 8.1197018, + 52.606545701 + ], + [ + 8.11827, + 52.604729201 + ], + [ + 8.1169624, + 52.602891501 + ], + [ + 8.1156384, + 52.600903401 + ], + [ + 8.1149417, + 52.599716201 + ], + [ + 8.114635556, + 52.599155583 + ] + ] + } + }, + { + "identifier": "2026-016875--vi-fbm.2026-04-20_19-00-00-000.devi-zus.2026-04-20_19-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.63067526676538,8.142880310098679,52.619104881807644,8.131510172963756", + "point": "52.63067526676538,8.142880310098679", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.63067526676538, + "long": 8.142880310098679 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 19:00 bis 20:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 3.2 km hinter AS Lohne/Dinklage und 0.6 km vor Langwege-West", + "", + "L\u00e4nge: 1.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 Fahrbahninstandhaltung 17 KW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.14288031, + 52.630675267 + ], + [ + 8.1422167, + 52.629957901 + ], + [ + 8.1390755, + 52.626691901 + ], + [ + 8.1357087, + 52.623305001 + ], + [ + 8.1323588, + 52.619958801 + ], + [ + 8.131510173, + 52.619104882 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-18_05-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.644685113009146,8.154600884684655,52.63067526676538,8.142880310098679", + "point": "52.644685113009146,8.154600884684655", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.644685113009146, + "long": 8.154600884684655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 05:00 bis 06:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.5 km hinter AS Lohne/Dinklage und 2.1 km vor Langwege-West", + "", + "L\u00e4nge: 1.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.154600885, + 52.644685113 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.1472717, + 52.635552301 + ], + [ + 8.1460431, + 52.634137301 + ], + [ + 8.144722, + 52.632666001 + ], + [ + 8.14288031, + 52.630675267 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-bs.2026-04-17_20-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de27", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.63067526676538,8.142880310098679,52.609419918620944,8.122140901375031", + "point": "52.63067526676538,8.142880310098679", + "startLcPosition": "160", + "impact": { + "lower": "Holdorf", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Holdorf", + "coordinate": { + "lat": 52.63067526676538, + "long": 8.142880310098679 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 20:00 bis zum 18.04.26 05:00 Uhr.", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 3.2 km hinter AS Lohne/Dinklage und 1.5 km vor AS Holdorf", + "", + "L\u00e4nge: 2.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.14288031, + 52.630675267 + ], + [ + 8.1422167, + 52.629957901 + ], + [ + 8.1390755, + 52.626691901 + ], + [ + 8.1357087, + 52.623305001 + ], + [ + 8.1323588, + 52.619958801 + ], + [ + 8.1299222, + 52.617506901 + ], + [ + 8.1283308, + 52.615904601 + ], + [ + 8.1262323, + 52.613789401 + ], + [ + 8.1241541, + 52.611601001 + ], + [ + 8.1229805, + 52.610365201 + ], + [ + 8.122140901, + 52.609419919 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-17_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.644685113009146,8.154600884684655,52.63067526676538,8.142880310098679", + "point": "52.644685113009146,8.154600884684655", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.644685113009146, + "long": 8.154600884684655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 19:00 bis 20:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.5 km hinter AS Lohne/Dinklage und 2.1 km vor Langwege-West", + "", + "L\u00e4nge: 1.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.154600885, + 52.644685113 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.1472717, + 52.635552301 + ], + [ + 8.1460431, + 52.634137301 + ], + [ + 8.144722, + 52.632666001 + ], + [ + 8.14288031, + 52.630675267 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-17_05-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.644685113009146,8.154600884684655,52.63067526676538,8.142880310098679", + "point": "52.644685113009146,8.154600884684655", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.644685113009146, + "long": 8.154600884684655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 05:00 bis 06:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.5 km hinter AS Lohne/Dinklage und 2.1 km vor Langwege-West", + "", + "L\u00e4nge: 1.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.154600885, + 52.644685113 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.1472717, + 52.635552301 + ], + [ + 8.1460431, + 52.634137301 + ], + [ + 8.144722, + 52.632666001 + ], + [ + 8.14288031, + 52.630675267 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-bs.2026-04-16_20-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.63067526676538,8.142880310098679,52.609419918620944,8.122140901375031", + "point": "52.63067526676538,8.142880310098679", + "startLcPosition": "160", + "impact": { + "lower": "Holdorf", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Holdorf", + "coordinate": { + "lat": 52.63067526676538, + "long": 8.142880310098679 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 3.2 km hinter AS Lohne/Dinklage und 1.5 km vor AS Holdorf", + "", + "L\u00e4nge: 2.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.14288031, + 52.630675267 + ], + [ + 8.1422167, + 52.629957901 + ], + [ + 8.1390755, + 52.626691901 + ], + [ + 8.1357087, + 52.623305001 + ], + [ + 8.1323588, + 52.619958801 + ], + [ + 8.1299222, + 52.617506901 + ], + [ + 8.1283308, + 52.615904601 + ], + [ + 8.1262323, + 52.613789401 + ], + [ + 8.1241541, + 52.611601001 + ], + [ + 8.1229805, + 52.610365201 + ], + [ + 8.122140901, + 52.609419919 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-16_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.644685113009146,8.154600884684655,52.63067526676538,8.142880310098679", + "point": "52.644685113009146,8.154600884684655", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.644685113009146, + "long": 8.154600884684655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 19:00 bis 20:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.5 km hinter AS Lohne/Dinklage und 2.1 km vor Langwege-West", + "", + "L\u00e4nge: 1.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.154600885, + 52.644685113 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.1472717, + 52.635552301 + ], + [ + 8.1460431, + 52.634137301 + ], + [ + 8.144722, + 52.632666001 + ], + [ + 8.14288031, + 52.630675267 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-16_05-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.644685113009146,8.154600884684655,52.63067526676538,8.142880310098679", + "point": "52.644685113009146,8.154600884684655", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.644685113009146, + "long": 8.154600884684655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 05:00 bis 06:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.5 km hinter AS Lohne/Dinklage und 2.1 km vor Langwege-West", + "", + "L\u00e4nge: 1.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.154600885, + 52.644685113 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.1472717, + 52.635552301 + ], + [ + 8.1460431, + 52.634137301 + ], + [ + 8.144722, + 52.632666001 + ], + [ + 8.14288031, + 52.630675267 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-bs.2026-04-15_20-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.63067526676538,8.142880310098679,52.609419918620944,8.122140901375031", + "point": "52.63067526676538,8.142880310098679", + "startLcPosition": "160", + "impact": { + "lower": "Holdorf", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Holdorf", + "coordinate": { + "lat": 52.63067526676538, + "long": 8.142880310098679 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 3.2 km hinter AS Lohne/Dinklage und 1.5 km vor AS Holdorf", + "", + "L\u00e4nge: 2.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.14288031, + 52.630675267 + ], + [ + 8.1422167, + 52.629957901 + ], + [ + 8.1390755, + 52.626691901 + ], + [ + 8.1357087, + 52.623305001 + ], + [ + 8.1323588, + 52.619958801 + ], + [ + 8.1299222, + 52.617506901 + ], + [ + 8.1283308, + 52.615904601 + ], + [ + 8.1262323, + 52.613789401 + ], + [ + 8.1241541, + 52.611601001 + ], + [ + 8.1229805, + 52.610365201 + ], + [ + 8.122140901, + 52.609419919 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-15_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.644685113009146,8.154600884684655,52.63067526676538,8.142880310098679", + "point": "52.644685113009146,8.154600884684655", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.644685113009146, + "long": 8.154600884684655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 19:00 bis 20:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.5 km hinter AS Lohne/Dinklage und 2.1 km vor Langwege-West", + "", + "L\u00e4nge: 1.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.154600885, + 52.644685113 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.1472717, + 52.635552301 + ], + [ + 8.1460431, + 52.634137301 + ], + [ + 8.144722, + 52.632666001 + ], + [ + 8.14288031, + 52.630675267 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-15_05-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.644685113009146,8.154600884684655,52.63067526676538,8.142880310098679", + "point": "52.644685113009146,8.154600884684655", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.644685113009146, + "long": 8.154600884684655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 05:00 bis 06:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.5 km hinter AS Lohne/Dinklage und 2.1 km vor Langwege-West", + "", + "L\u00e4nge: 1.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.154600885, + 52.644685113 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.1472717, + 52.635552301 + ], + [ + 8.1460431, + 52.634137301 + ], + [ + 8.144722, + 52.632666001 + ], + [ + 8.14288031, + 52.630675267 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-bs.2026-04-14_20-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.63067526676538,8.142880310098679,52.609419918620944,8.122140901375031", + "point": "52.63067526676538,8.142880310098679", + "startLcPosition": "160", + "impact": { + "lower": "Holdorf", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Holdorf", + "coordinate": { + "lat": 52.63067526676538, + "long": 8.142880310098679 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 3.2 km hinter AS Lohne/Dinklage und 1.5 km vor AS Holdorf", + "", + "L\u00e4nge: 2.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.14288031, + 52.630675267 + ], + [ + 8.1422167, + 52.629957901 + ], + [ + 8.1390755, + 52.626691901 + ], + [ + 8.1357087, + 52.623305001 + ], + [ + 8.1323588, + 52.619958801 + ], + [ + 8.1299222, + 52.617506901 + ], + [ + 8.1283308, + 52.615904601 + ], + [ + 8.1262323, + 52.613789401 + ], + [ + 8.1241541, + 52.611601001 + ], + [ + 8.1229805, + 52.610365201 + ], + [ + 8.122140901, + 52.609419919 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-14_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.644685113009146,8.154600884684655,52.63067526676538,8.142880310098679", + "point": "52.644685113009146,8.154600884684655", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.644685113009146, + "long": 8.154600884684655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 19:00 bis 20:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.5 km hinter AS Lohne/Dinklage und 2.1 km vor Langwege-West", + "", + "L\u00e4nge: 1.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.154600885, + 52.644685113 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.1472717, + 52.635552301 + ], + [ + 8.1460431, + 52.634137301 + ], + [ + 8.144722, + 52.632666001 + ], + [ + 8.14288031, + 52.630675267 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.657038335909675,8.16278853121043,52.63659919194348,8.148162466784635", + "point": "52.657038335909675,8.16278853121043", + "startLcPosition": "160", + "impact": { + "lower": "Langwege-West", + "upper": "Lohne/Dinklage", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Lohne/Dinklage - Langwege-West", + "coordinate": { + "lat": 52.657038335909675, + "long": 8.16278853121043 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen AS Lohne/Dinklage und 2.8 km vor Langwege-West", + "", + "L\u00e4nge: 2.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.162788531, + 52.657038336 + ], + [ + 8.1626763, + 52.656840001 + ], + [ + 8.16213, + 52.655890401 + ], + [ + 8.1612894, + 52.654477401 + ], + [ + 8.1604678, + 52.653140701 + ], + [ + 8.1592248, + 52.651265701 + ], + [ + 8.1580934, + 52.649483701 + ], + [ + 8.1578512, + 52.649157501 + ], + [ + 8.1570037, + 52.647919501 + ], + [ + 8.1568347, + 52.647680901 + ], + [ + 8.1544572, + 52.644492401 + ], + [ + 8.1525231, + 52.641929601 + ], + [ + 8.1495751, + 52.638259301 + ], + [ + 8.148162467, + 52.636599192 + ] + ] + } + }, + { + "identifier": "2026-013366--vi-fbm.2026-04-07_19-00-00-000.devi-zus.2026-04-07_19-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.67160635468143,8.16936041950305,52.657038335909675,8.16278853121043", + "point": "52.67160635468143,8.16936041950305", + "startLcPosition": "161", + "impact": { + "lower": "Langwege-West", + "upper": "Bakumer Wiesen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Bakumer Wiesen - Langwege-West", + "coordinate": { + "lat": 52.67160635468143, + "long": 8.16936041950305 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 19:00 bis 20:00 Uhr", + "10.04.26 von 05:00 bis 06:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 4.5 km hinter Bakumer Wiesen und 5.3 km vor Langwege-West", + "", + "L\u00e4nge: 1.68 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A1 - Betonplattensanierung - AkD 13366" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.16936042, + 52.671606355 + ], + [ + 8.1692015, + 52.671121901 + ], + [ + 8.1687256, + 52.669784601 + ], + [ + 8.1682232, + 52.668449601 + ], + [ + 8.1679107, + 52.667629101 + ], + [ + 8.1675734, + 52.666805401 + ], + [ + 8.166949, + 52.665339401 + ], + [ + 8.166308, + 52.663895001 + ], + [ + 8.165708, + 52.662606001 + ], + [ + 8.1654891, + 52.662155401 + ], + [ + 8.1651418, + 52.661444101 + ], + [ + 8.1650719, + 52.661308101 + ], + [ + 8.1641959, + 52.659608801 + ], + [ + 8.1635761, + 52.658444401 + ], + [ + 8.1630255, + 52.657457101 + ], + [ + 8.162788531, + 52.657038336 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-14_05-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.67160635468143,8.16936041950305,52.65290307011704,8.16031026028782", + "point": "52.67160635468143,8.16936041950305", + "startLcPosition": "161", + "impact": { + "lower": "Langwege-West", + "upper": "Bakumer Wiesen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Bakumer Wiesen - Langwege-West", + "coordinate": { + "lat": 52.67160635468143, + "long": 8.16936041950305 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 05:00 bis 06:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 4.5 km hinter Bakumer Wiesen und 4.8 km vor Langwege-West", + "", + "L\u00e4nge: 2.17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.16936042, + 52.671606355 + ], + [ + 8.1692015, + 52.671121901 + ], + [ + 8.1687256, + 52.669784601 + ], + [ + 8.1682232, + 52.668449601 + ], + [ + 8.1679107, + 52.667629101 + ], + [ + 8.1675734, + 52.666805401 + ], + [ + 8.166949, + 52.665339401 + ], + [ + 8.166308, + 52.663895001 + ], + [ + 8.165708, + 52.662606001 + ], + [ + 8.1654891, + 52.662155401 + ], + [ + 8.1651418, + 52.661444101 + ], + [ + 8.1650719, + 52.661308101 + ], + [ + 8.1641959, + 52.659608801 + ], + [ + 8.1635761, + 52.658444401 + ], + [ + 8.1630255, + 52.657457101 + ], + [ + 8.1626763, + 52.656840001 + ], + [ + 8.16213, + 52.655890401 + ], + [ + 8.1612894, + 52.654477401 + ], + [ + 8.1604678, + 52.653140701 + ], + [ + 8.16031026, + 52.65290307 + ] + ] + } + }, + { + "identifier": "2026-016792--vi-fbm.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.67160635468143,8.16936041950305,52.65290307011704,8.16031026028782", + "point": "52.67160635468143,8.16936041950305", + "startLcPosition": "161", + "impact": { + "lower": "Langwege-West", + "upper": "Bakumer Wiesen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Bakumer Wiesen - Langwege-West", + "coordinate": { + "lat": 52.67160635468143, + "long": 8.16936041950305 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 19:00 bis 20:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 4.5 km hinter Bakumer Wiesen und 4.8 km vor Langwege-West", + "", + "L\u00e4nge: 2.17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A1 - Fahbahninstandhaltung - Wanderbaustelle - AkD 16792" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.16936042, + 52.671606355 + ], + [ + 8.1692015, + 52.671121901 + ], + [ + 8.1687256, + 52.669784601 + ], + [ + 8.1682232, + 52.668449601 + ], + [ + 8.1679107, + 52.667629101 + ], + [ + 8.1675734, + 52.666805401 + ], + [ + 8.166949, + 52.665339401 + ], + [ + 8.166308, + 52.663895001 + ], + [ + 8.165708, + 52.662606001 + ], + [ + 8.1654891, + 52.662155401 + ], + [ + 8.1651418, + 52.661444101 + ], + [ + 8.1650719, + 52.661308101 + ], + [ + 8.1641959, + 52.659608801 + ], + [ + 8.1635761, + 52.658444401 + ], + [ + 8.1630255, + 52.657457101 + ], + [ + 8.1626763, + 52.656840001 + ], + [ + 8.16213, + 52.655890401 + ], + [ + 8.1612894, + 52.654477401 + ], + [ + 8.1604678, + 52.653140701 + ], + [ + 8.16031026, + 52.65290307 + ] + ] + } + }, + { + "identifier": "2023-004447--vi-bs.2026-03-16_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_018.f.de107", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.72222375569337,8.172972438620393,52.726705148865676,8.17329586249258", + "point": "52.72222375569337,8.172972438620393", + "startLcPosition": "161", + "impact": { + "lower": "Cappeln Hagelage-Ost", + "upper": "Bakumer Wiesen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Bakumer Wiesen - Cappeln Hagelage-Ost", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 52.72222375569337, + "long": 8.172972438620393 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 30.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.10.26)", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 1.1 km hinter Bakumer Wiesen und 6.4 km vor Cappeln Hagelage-Ost", + "", + "L\u00e4nge: 0.5 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.172972439, + 52.722223756 + ], + [ + 8.1729807, + 52.722447501 + ], + [ + 8.1731501, + 52.725199901 + ], + [ + 8.1732781, + 52.726549701 + ], + [ + 8.173295862, + 52.726705149 + ] + ] + } + }, + { + "identifier": "2023-004447--vi-bs.2026-03-16_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_018.f.de109", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.726705148865676,8.17329586249258,52.750939998834085,8.180734332852621", + "point": "52.726705148865676,8.17329586249258", + "startLcPosition": "162", + "impact": { + "lower": "Cappeln Hagelage-Ost", + "upper": "Vechta", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Vechta - Cappeln Hagelage-Ost", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 52.726705148865676, + "long": 8.17329586249258 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 30.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.10.26)", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 0.1 km hinter AS Vechta und 3.7 km vor Cappeln Hagelage-Ost", + "", + "L\u00e4nge: 2.75 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.173295862, + 52.726705149 + ], + [ + 8.1734995, + 52.728487201 + ], + [ + 8.1741477, + 52.732441301 + ], + [ + 8.1743015, + 52.733228101 + ], + [ + 8.1746492, + 52.734785601 + ], + [ + 8.1748436, + 52.735569701 + ], + [ + 8.1751323, + 52.736694201 + ], + [ + 8.1755168, + 52.738063401 + ], + [ + 8.1758053, + 52.739002301 + ], + [ + 8.1762569, + 52.740401501 + ], + [ + 8.1769301, + 52.742311601 + ], + [ + 8.1771991, + 52.743035601 + ], + [ + 8.1776056, + 52.744062701 + ], + [ + 8.1780274, + 52.745088001 + ], + [ + 8.1783294, + 52.745805901 + ], + [ + 8.1788238, + 52.746930001 + ], + [ + 8.1795105, + 52.748424801 + ], + [ + 8.1799962, + 52.749451701 + ], + [ + 8.1807098, + 52.750892301 + ], + [ + 8.180734333, + 52.750939999 + ] + ] + } + }, + { + "identifier": "2023-004447--vi-bs.2026-03-16_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_018.f.de119", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.750979961988904,8.180521896313813,52.72705534553379,8.17311074994043", + "point": "52.750979961988904,8.180521896313813", + "startLcPosition": "163", + "impact": { + "lower": "Vechta", + "upper": "Cappeln Hagelage-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Cappeln Hagelage-Ost - Vechta", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 52.750979961988904, + "long": 8.180521896313813 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 30.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.10.26)", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 3.7 km hinter Cappeln Hagelage-Ost und 0.2 km vor AS Vechta", + "", + "L\u00e4nge: 2.71 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.180521896, + 52.750979962 + ], + [ + 8.1804956, + 52.750928101 + ], + [ + 8.1797817, + 52.749483501 + ], + [ + 8.1792904, + 52.748462001 + ], + [ + 8.1786007, + 52.746954401 + ], + [ + 8.178111, + 52.745835701 + ], + [ + 8.1778042, + 52.745111801 + ], + [ + 8.1773859, + 52.744086001 + ], + [ + 8.1769791, + 52.743060801 + ], + [ + 8.176709, + 52.742337201 + ], + [ + 8.1760329, + 52.740415301 + ], + [ + 8.1755808, + 52.739012201 + ], + [ + 8.1752957, + 52.738071001 + ], + [ + 8.1749114, + 52.736700001 + ], + [ + 8.1746162, + 52.735577701 + ], + [ + 8.1744198, + 52.734779801 + ], + [ + 8.1740753, + 52.733241501 + ], + [ + 8.1739414, + 52.732479301 + ], + [ + 8.1734663, + 52.729773401 + ], + [ + 8.1732964, + 52.728656501 + ], + [ + 8.1732632, + 52.728391101 + ], + [ + 8.17311075, + 52.727055346 + ] + ] + } + }, + { + "identifier": "2023-004447--vi-bs.2026-03-16_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_018.f.de117", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.75525937521852,8.182795696050515,52.750979961988904,8.180521896313813", + "point": "52.75525937521852,8.182795696050515", + "startLcPosition": "163", + "impact": { + "lower": "Vechta", + "upper": "Cappeln Hagelage-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Cappeln Hagelage-Ost - Vechta", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 52.75525937521852, + "long": 8.182795696050515 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 30.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.10.26)", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 3.2 km hinter Cappeln Hagelage-Ost und 2.9 km vor AS Vechta", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.182795696, + 52.755259375 + ], + [ + 8.1827837, + 52.755237801 + ], + [ + 8.1817903, + 52.753417701 + ], + [ + 8.1813951, + 52.752672201 + ], + [ + 8.180869, + 52.751664501 + ], + [ + 8.180521896, + 52.750979962 + ] + ] + } + }, + { + "identifier": "2023-004447--vi-bs.2026-03-16_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_018.f.de113", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.788377601758846,8.201736675766018,52.794459656656265,8.204412311191634", + "point": "52.788377601758846,8.201736675766018", + "startLcPosition": "164", + "impact": { + "lower": "Cloppenburg", + "upper": "Cappeln Hagelage-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Cappeln Hagelage-West - Cloppenburg", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 52.788377601758846, + "long": 8.201736675766018 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 30.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.10.26)", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 0.5 km hinter Cappeln Hagelage-West und 2.1 km vor AS Cloppenburg", + "", + "L\u00e4nge: 0.7 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.201736676, + 52.788377602 + ], + [ + 8.2018434, + 52.788601201 + ], + [ + 8.2028259, + 52.790765201 + ], + [ + 8.2038098, + 52.793013501 + ], + [ + 8.204412311, + 52.794459657 + ] + ] + } + }, + { + "identifier": "2023-004447--vi-bs.2026-03-16_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_018.f.de111", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.78492603412445,8.200071449029247,52.788377601758846,8.201736675766018", + "point": "52.78492603412445,8.200071449029247", + "startLcPosition": "164", + "impact": { + "lower": "Cloppenburg", + "upper": "Cappeln Hagelage-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Cappeln Hagelage-West - Cloppenburg", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 52.78492603412445, + "long": 8.200071449029247 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 30.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.10.26)", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 0.1 km hinter Cappeln Hagelage-West und 2.8 km vor AS Cloppenburg", + "", + "L\u00e4nge: 0.4 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.200071449, + 52.784926034 + ], + [ + 8.2008382, + 52.786495101 + ], + [ + 8.201736676, + 52.788377602 + ] + ] + } + }, + { + "identifier": "2023-004447--vi-bs.2026-03-16_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_018.f.de123", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.793621084755,8.2038340250567,52.79014800658249,8.202309925790416", + "point": "52.793621084755,8.2038340250567", + "startLcPosition": "165", + "impact": { + "lower": "Cappeln Hagelage-West", + "upper": "Cloppenburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Cloppenburg - Cappeln Hagelage-West", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 52.793621084755, + "long": 8.2038340250567 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 30.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.10.26)", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 2.2 km hinter AS Cloppenburg und 0.7 km vor Cappeln Hagelage-West", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.203834025, + 52.793621085 + ], + [ + 8.2035895, + 52.793036201 + ], + [ + 8.2026068, + 52.790789501 + ], + [ + 8.202309926, + 52.790148007 + ] + ] + } + }, + { + "identifier": "2023-004447--vi-bs.2026-03-16_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_018.f.de121", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.79798342200823,8.205613364939397,52.793621084755,8.2038340250567", + "point": "52.79798342200823,8.205613364939397", + "startLcPosition": "165", + "impact": { + "lower": "Cappeln Hagelage-West", + "upper": "Cloppenburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Cloppenburg - Cappeln Hagelage-West", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 52.79798342200823, + "long": 8.205613364939397 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 30.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.10.26)", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.7 km hinter AS Cloppenburg und 1.1 km vor Cappeln Hagelage-West", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.205613365, + 52.797983422 + ], + [ + 8.2047904, + 52.795908501 + ], + [ + 8.203834025, + 52.793621085 + ] + ] + } + }, + { + "identifier": "2026-015602--vi-bs.2026-04-17_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.91364404903664,8.39991815936345,52.914088271041834,8.410295298405016", + "point": "52.91364404903664,8.39991815936345", + "startLcPosition": "172", + "impact": { + "lower": "Wildeshausen", + "upper": "Wildeshausen-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Wildeshausen-West - Wildeshausen", + "coordinate": { + "lat": 52.91364404903664, + "long": 8.39991815936345 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 08:00 bis 15:00 Uhr", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 4.7 km hinter AS Wildeshausen-West und 1.0 km vor Wildeshausen", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 von Wildeshausen-West (AS) nach Wildeshausen (Raststaette) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.399918159, + 52.913644049 + ], + [ + 8.4012916, + 52.913724101 + ], + [ + 8.4036624, + 52.913842401 + ], + [ + 8.4060544, + 52.913941301 + ], + [ + 8.4093205, + 52.914063001 + ], + [ + 8.410295298, + 52.914088271 + ] + ] + } + }, + { + "identifier": "2025-042559--vi-fbm.2026-03-30_19-00-00-000.devi-zus.2026-02-08_00-00-00-000.de36", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.92452039199762,8.487523248463788,52.98035714943111,8.631692092897724", + "point": "52.92452039199762,8.487523248463788", + "startLcPosition": "174", + "impact": { + "lower": "Mackenstedter Heide", + "upper": "Wildeshausen-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Wildeshausen-Nord - Mackenstedter Heide", + "coordinate": { + "lat": 52.92452039199762, + "long": 8.487523248463788 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 20.04.26 und dem 01.05.26 von 19:00 bis 00:00 Uhr.", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 21.04.26 und dem 01.05.26 von 00:00 bis 06:00 Uhr.", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 2.6 km hinter AS Wildeshausen-Nord und 3.1 km vor Mackenstedter Heide", + "", + "L\u00e4nge: 11.63 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A1 Grunderneuerung 2. BA, RF OS" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.487523248, + 52.924520392 + ], + [ + 8.4885558, + 52.925031301 + ], + [ + 8.4907526, + 52.926224601 + ], + [ + 8.4928498, + 52.927452701 + ], + [ + 8.4929775, + 52.927529801 + ], + [ + 8.4949177, + 52.928728501 + ], + [ + 8.4967572, + 52.929926401 + ], + [ + 8.4990944, + 52.931480101 + ], + [ + 8.5010872, + 52.932787501 + ], + [ + 8.5017838, + 52.933243701 + ], + [ + 8.503314, + 52.934237401 + ], + [ + 8.5043755, + 52.934893901 + ], + [ + 8.5051346, + 52.935353001 + ], + [ + 8.5066395, + 52.936251501 + ], + [ + 8.5080039, + 52.937027801 + ], + [ + 8.5090459, + 52.937622101 + ], + [ + 8.5111639, + 52.938736201 + ], + [ + 8.5136306, + 52.939992501 + ], + [ + 8.515515, + 52.940890801 + ], + [ + 8.5175415, + 52.941825201 + ], + [ + 8.5195178, + 52.942688201 + ], + [ + 8.5215119, + 52.943524001 + ], + [ + 8.5231928, + 52.944198701 + ], + [ + 8.5241868, + 52.944581901 + ], + [ + 8.5263632, + 52.945390001 + ], + [ + 8.5285696, + 52.946176701 + ], + [ + 8.5308362, + 52.946953701 + ], + [ + 8.5319264, + 52.947304101 + ], + [ + 8.5320439, + 52.947341701 + ], + [ + 8.5336357, + 52.947851501 + ], + [ + 8.5354109, + 52.948400301 + ], + [ + 8.5380997, + 52.949195801 + ], + [ + 8.5387818, + 52.949387601 + ], + [ + 8.5396663, + 52.949636201 + ], + [ + 8.5412816, + 52.950071901 + ], + [ + 8.5443899, + 52.950902901 + ], + [ + 8.5467839, + 52.951520901 + ], + [ + 8.5492049, + 52.952136301 + ], + [ + 8.5583821, + 52.954385001 + ], + [ + 8.5697438, + 52.957096801 + ], + [ + 8.5743839, + 52.958239801 + ], + [ + 8.5770151, + 52.958905501 + ], + [ + 8.5789987, + 52.959423001 + ], + [ + 8.5823742, + 52.960343401 + ], + [ + 8.5857266, + 52.961286501 + ], + [ + 8.5887867, + 52.962192401 + ], + [ + 8.591622, + 52.963075001 + ], + [ + 8.5952036, + 52.964249101 + ], + [ + 8.5978098, + 52.965148501 + ], + [ + 8.599145, + 52.965624701 + ], + [ + 8.602648, + 52.966904201 + ], + [ + 8.6043613, + 52.967558501 + ], + [ + 8.6066796, + 52.968473201 + ], + [ + 8.6088275, + 52.969333301 + ], + [ + 8.6115634, + 52.970483301 + ], + [ + 8.6117064, + 52.970544601 + ], + [ + 8.6132051, + 52.971187301 + ], + [ + 8.6146719, + 52.971838601 + ], + [ + 8.6172006, + 52.972986501 + ], + [ + 8.620359, + 52.974493701 + ], + [ + 8.6226709, + 52.975633401 + ], + [ + 8.6257104, + 52.977175101 + ], + [ + 8.628528, + 52.978652501 + ], + [ + 8.631692093, + 52.980357149 + ] + ] + } + }, + { + "identifier": "2025-042559--vi-bs.2026-04-08_19-00-00-000.devi-zus.2026-02-08_00-00-00-000.de30", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.93789412734659,8.509563028987277,52.98096172662358,8.632814379674384", + "point": "52.93789412734659,8.509563028987277", + "startLcPosition": "174", + "impact": { + "lower": "Mackenstedter Heide", + "upper": "Wildeshausen-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Wildeshausen-Nord - Mackenstedter Heide", + "startTimestamp": "2026-04-08T19:00:00+02:00", + "coordinate": { + "lat": 52.93789412734659, + "long": 8.509563028987277 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 19:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.03.27)", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 4.7 km hinter AS Wildeshausen-Nord und 3.0 km vor Mackenstedter Heide", + "", + "L\u00e4nge: 9.63 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.1 m", + "", + "A1 Grunderneuerung 2. BA, RF OS" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.509563029, + 52.937894127 + ], + [ + 8.5111639, + 52.938736201 + ], + [ + 8.5136306, + 52.939992501 + ], + [ + 8.515515, + 52.940890801 + ], + [ + 8.5175415, + 52.941825201 + ], + [ + 8.5195178, + 52.942688201 + ], + [ + 8.5215119, + 52.943524001 + ], + [ + 8.5231928, + 52.944198701 + ], + [ + 8.5241868, + 52.944581901 + ], + [ + 8.5263632, + 52.945390001 + ], + [ + 8.5285696, + 52.946176701 + ], + [ + 8.5308362, + 52.946953701 + ], + [ + 8.5319264, + 52.947304101 + ], + [ + 8.5320439, + 52.947341701 + ], + [ + 8.5336357, + 52.947851501 + ], + [ + 8.5354109, + 52.948400301 + ], + [ + 8.5380997, + 52.949195801 + ], + [ + 8.5387818, + 52.949387601 + ], + [ + 8.5396663, + 52.949636201 + ], + [ + 8.5412816, + 52.950071901 + ], + [ + 8.5443899, + 52.950902901 + ], + [ + 8.5467839, + 52.951520901 + ], + [ + 8.5492049, + 52.952136301 + ], + [ + 8.5583821, + 52.954385001 + ], + [ + 8.5697438, + 52.957096801 + ], + [ + 8.5743839, + 52.958239801 + ], + [ + 8.5770151, + 52.958905501 + ], + [ + 8.5789987, + 52.959423001 + ], + [ + 8.5823742, + 52.960343401 + ], + [ + 8.5857266, + 52.961286501 + ], + [ + 8.5887867, + 52.962192401 + ], + [ + 8.591622, + 52.963075001 + ], + [ + 8.5952036, + 52.964249101 + ], + [ + 8.5978098, + 52.965148501 + ], + [ + 8.599145, + 52.965624701 + ], + [ + 8.602648, + 52.966904201 + ], + [ + 8.6043613, + 52.967558501 + ], + [ + 8.6066796, + 52.968473201 + ], + [ + 8.6088275, + 52.969333301 + ], + [ + 8.6115634, + 52.970483301 + ], + [ + 8.6117064, + 52.970544601 + ], + [ + 8.6132051, + 52.971187301 + ], + [ + 8.6146719, + 52.971838601 + ], + [ + 8.6172006, + 52.972986501 + ], + [ + 8.620359, + 52.974493701 + ], + [ + 8.6226709, + 52.975633401 + ], + [ + 8.6257104, + 52.977175101 + ], + [ + 8.628528, + 52.978652501 + ], + [ + 8.63281438, + 52.980961727 + ] + ] + } + }, + { + "identifier": "2025-042559--vi-bs.2026-03-30_19-00-00-000.devi-zus.2026-02-08_00-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.98522851004503,8.64043944034246,52.9419514743469,8.517523881462674", + "point": "52.98522851004503,8.64043944034246", + "startLcPosition": "178", + "impact": { + "lower": "Wildeshausen-Nord", + "upper": "Mackenstedter Heide", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Mackenstedter Heide - Wildeshausen-Nord", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 52.98522851004503, + "long": 8.64043944034246 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.03.27)", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 2.3 km hinter Mackenstedter Heide und 5.4 km vor AS Wildeshausen-Nord", + "", + "L\u00e4nge: 9.63 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.6 m", + "", + "A1 Grunderneuerung 2. BA, RF OS" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.64043944, + 52.98522851 + ], + [ + 8.6365333, + 52.983116301 + ], + [ + 8.6284054, + 52.978730601 + ], + [ + 8.6255927, + 52.977259401 + ], + [ + 8.6225645, + 52.975724301 + ], + [ + 8.6203081, + 52.974607401 + ], + [ + 8.6179228, + 52.973470801 + ], + [ + 8.6147973, + 52.972036201 + ], + [ + 8.6130837, + 52.971271501 + ], + [ + 8.6116102, + 52.970633401 + ], + [ + 8.6114689, + 52.970572301 + ], + [ + 8.6087656, + 52.969434701 + ], + [ + 8.6066016, + 52.968567101 + ], + [ + 8.6048184, + 52.967872601 + ], + [ + 8.60285, + 52.967104801 + ], + [ + 8.6025265, + 52.966982701 + ], + [ + 8.5990612, + 52.965713701 + ], + [ + 8.5970422, + 52.965007501 + ], + [ + 8.5951171, + 52.964345901 + ], + [ + 8.5915171, + 52.963168001 + ], + [ + 8.5887142, + 52.962298401 + ], + [ + 8.5856435, + 52.961378301 + ], + [ + 8.5822991, + 52.960435501 + ], + [ + 8.5789262, + 52.959524601 + ], + [ + 8.5769346, + 52.959004001 + ], + [ + 8.5743061, + 52.958339901 + ], + [ + 8.5696717, + 52.957196201 + ], + [ + 8.5617678, + 52.955316801 + ], + [ + 8.5595719, + 52.954794601 + ], + [ + 8.5583021, + 52.954490001 + ], + [ + 8.5556523, + 52.953859801 + ], + [ + 8.5514546, + 52.952839201 + ], + [ + 8.5490905, + 52.952260401 + ], + [ + 8.5478622, + 52.951945901 + ], + [ + 8.5466981, + 52.951643801 + ], + [ + 8.5442923, + 52.951023101 + ], + [ + 8.5412129, + 52.950192601 + ], + [ + 8.5396033, + 52.949744801 + ], + [ + 8.5380094, + 52.949287601 + ], + [ + 8.535339, + 52.948498301 + ], + [ + 8.5337007, + 52.947998501 + ], + [ + 8.5318215, + 52.947395201 + ], + [ + 8.5307632, + 52.947050901 + ], + [ + 8.5284706, + 52.946269801 + ], + [ + 8.5262783, + 52.945484801 + ], + [ + 8.5240837, + 52.944664801 + ], + [ + 8.523104, + 52.944291901 + ], + [ + 8.5214194, + 52.943612301 + ], + [ + 8.519386, + 52.942767601 + ], + [ + 8.517523881, + 52.941951474 + ] + ] + } + }, + { + "identifier": "2025-006272--vi-bs.2025-09-06_22-00-00-000.devi-zus.2025-04-02_05-00-00-000.de70", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.02530749947122,8.849231545044379,53.0388447569062,8.89491210870995", + "point": "53.02530749947122,8.849231545044379", + "startLcPosition": "183", + "impact": { + "lower": "Mahndorfer Marsch", + "upper": "Ahlken", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Ahlken - Mahndorfer Marsch", + "coordinate": { + "lat": 53.02530749947122, + "long": 8.849231545044379 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.05.26 von 22:00 bis 24:00 Uhr", + "27.06.26 von 22:00 bis 24:00 Uhr", + "15.08.26 von 22:00 bis 24:00 Uhr", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 0.4 km hinter Ahlken und 3.7 km vor Mahndorfer Marsch", + "", + "L\u00e4nge: 3.48 km | Maximale Durchfahrtsbreite: 6.53 m", + "", + "A1 Br\u00fcckeninstandsetzung Weserquerung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.849231545, + 53.025307499 + ], + [ + 8.8495011, + 53.025381201 + ], + [ + 8.8506063, + 53.025713701 + ], + [ + 8.8516426, + 53.026058601 + ], + [ + 8.8525205, + 53.026374701 + ], + [ + 8.8527591, + 53.026464001 + ], + [ + 8.8531572, + 53.026616901 + ], + [ + 8.8541591, + 53.027024901 + ], + [ + 8.8637081, + 53.031085101 + ], + [ + 8.8655073, + 53.031850101 + ], + [ + 8.8666479, + 53.032327301 + ], + [ + 8.8715253, + 53.034400401 + ], + [ + 8.8723275, + 53.034730201 + ], + [ + 8.8729287, + 53.034957501 + ], + [ + 8.8734371, + 53.035152001 + ], + [ + 8.8740401, + 53.035382601 + ], + [ + 8.8745903, + 53.035582801 + ], + [ + 8.8752422, + 53.035799301 + ], + [ + 8.8765144, + 53.036199601 + ], + [ + 8.8773689, + 53.036455901 + ], + [ + 8.8781347, + 53.036670401 + ], + [ + 8.8793427, + 53.036986601 + ], + [ + 8.8799611, + 53.037140201 + ], + [ + 8.8808515, + 53.037345301 + ], + [ + 8.8813347, + 53.037447201 + ], + [ + 8.8818988, + 53.037567701 + ], + [ + 8.8829712, + 53.037771101 + ], + [ + 8.8838896, + 53.037937001 + ], + [ + 8.8843276, + 53.038004501 + ], + [ + 8.8845344, + 53.038036301 + ], + [ + 8.8854543, + 53.038178801 + ], + [ + 8.8866313, + 53.038333201 + ], + [ + 8.8870752, + 53.038391401 + ], + [ + 8.888059, + 53.038501401 + ], + [ + 8.8892163, + 53.038609001 + ], + [ + 8.8904652, + 53.038700001 + ], + [ + 8.8916047, + 53.038765101 + ], + [ + 8.8927992, + 53.038815801 + ], + [ + 8.8935184, + 53.038835001 + ], + [ + 8.8945738, + 53.038845301 + ], + [ + 8.894912109, + 53.038844757 + ] + ] + } + }, + { + "identifier": "2025-006272--vi-bs.2025-08-15_05-00-00-000.devi-zus.2025-04-02_05-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.03185806673156,8.865526339396158,53.03464387180433,8.872117512039255", + "point": "53.03185806673156,8.865526339396158", + "startLcPosition": "184", + "impact": { + "lower": "Bremen-Hemelingen", + "upper": "Bremen-Arsten", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bremen", + "title": "A1 | Bremen-Arsten - Bremen-Hemelingen", + "startTimestamp": "2025-08-15T05:00:00+02:00", + "coordinate": { + "lat": 53.03185806673156, + "long": 8.865526339396158 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.08.25 um 05:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A1: Osnabr\u00fcck -> Bremen, zwischen 0.5 km hinter AS Bremen-Arsten und 1.1 km vor AS Bremen-Hemelingen", + "", + "L\u00e4nge: 0.54 km | Maximale Durchfahrtsbreite: 6.53 m", + "", + "A1 Br\u00fcckeninstandsetzung Weserquerung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.865526339, + 53.031858067 + ], + [ + 8.8666479, + 53.032327301 + ], + [ + 8.8715253, + 53.034400401 + ], + [ + 8.872117512, + 53.034643872 + ] + ] + } + }, + { + "identifier": "2025-006272--vi-bs.2025-08-15_05-00-00-000.devi-zus.2025-04-02_05-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.0347527671966,8.871994795941875,53.03196407475268,8.865401618469045", + "point": "53.0347527671966,8.871994795941875", + "startLcPosition": "185", + "impact": { + "lower": "Bremen-Arsten", + "upper": "Bremen-Hemelingen", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Bremen-Hemelingen - Bremen-Arsten", + "startTimestamp": "2025-08-15T05:00:00+02:00", + "coordinate": { + "lat": 53.0347527671966, + "long": 8.871994795941875 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.08.25 um 05:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 1.1 km hinter AS Bremen-Hemelingen und 0.5 km vor AS Bremen-Arsten", + "", + "L\u00e4nge: 0.54 km | Maximale Durchfahrtsbreite: 6.53 m", + "", + "A1 Br\u00fcckeninstandsetzung Weserquerung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.871994796, + 53.034752767 + ], + [ + 8.8714125, + 53.034515401 + ], + [ + 8.8661376, + 53.032279501 + ], + [ + 8.8656674, + 53.032080401 + ], + [ + 8.865401618, + 53.031964075 + ] + ] + } + }, + { + "identifier": "2025-006272--vi-bs.2025-09-06_22-00-00-000.devi-zus.2025-04-02_05-00-00-000.de74", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.03898774764271,8.89491686640564,53.025448641245546,8.84912606196193", + "point": "53.03898774764271,8.89491686640564", + "startLcPosition": "186", + "impact": { + "lower": "Ahlken", + "upper": "Mahndorfer Marsch", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Osnabr\u00fcck", + "title": "A1 | Mahndorfer Marsch - Ahlken", + "coordinate": { + "lat": 53.03898774764271, + "long": 8.89491686640564 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.05.26 von 02:00 bis 04:00 Uhr", + "28.06.26 von 02:00 bis 04:00 Uhr", + "16.08.26 von 02:00 bis 04:00 Uhr", + "", + "A1: Bremen -> Osnabr\u00fcck, zwischen 3.7 km hinter Mahndorfer Marsch und 0.4 km vor Ahlken", + "", + "L\u00e4nge: 3.48 km | Maximale Durchfahrtsbreite: 6.53 m", + "", + "A1 Br\u00fcckeninstandsetzung Weserquerung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.894916866, + 53.038987748 + ], + [ + 8.8945737, + 53.038995001 + ], + [ + 8.8935112, + 53.038981101 + ], + [ + 8.8930728, + 53.038969901 + ], + [ + 8.8925823, + 53.038957401 + ], + [ + 8.8915818, + 53.038907101 + ], + [ + 8.890388, + 53.038835601 + ], + [ + 8.8891836, + 53.038745901 + ], + [ + 8.8880655, + 53.038642701 + ], + [ + 8.8870143, + 53.038530301 + ], + [ + 8.8865692, + 53.038476801 + ], + [ + 8.8854181, + 53.038318901 + ], + [ + 8.8844741, + 53.038176201 + ], + [ + 8.8842668, + 53.038141601 + ], + [ + 8.8838023, + 53.038064001 + ], + [ + 8.8829159, + 53.037903401 + ], + [ + 8.882519, + 53.037828301 + ], + [ + 8.8818524, + 53.037702001 + ], + [ + 8.8812317, + 53.037574901 + ], + [ + 8.880747, + 53.037468901 + ], + [ + 8.8798787, + 53.037271201 + ], + [ + 8.8792493, + 53.037115301 + ], + [ + 8.8780353, + 53.036796901 + ], + [ + 8.8772745, + 53.036584601 + ], + [ + 8.8764226, + 53.036332001 + ], + [ + 8.8751452, + 53.035923801 + ], + [ + 8.8745055, + 53.035705401 + ], + [ + 8.8739424, + 53.035501001 + ], + [ + 8.8728145, + 53.035083801 + ], + [ + 8.8722034, + 53.034837801 + ], + [ + 8.8714125, + 53.034515401 + ], + [ + 8.8661376, + 53.032279501 + ], + [ + 8.8656674, + 53.032080401 + ], + [ + 8.8653834, + 53.031956101 + ], + [ + 8.8610156, + 53.030108601 + ], + [ + 8.8540335, + 53.027155101 + ], + [ + 8.8530437, + 53.026746701 + ], + [ + 8.8525542, + 53.026561501 + ], + [ + 8.8523055, + 53.026470101 + ], + [ + 8.851515, + 53.026185001 + ], + [ + 8.8505009, + 53.025855301 + ], + [ + 8.8498635, + 53.025662701 + ], + [ + 8.8493963, + 53.025521601 + ], + [ + 8.849126062, + 53.025448641 + ] + ] + } + }, + { + "identifier": "2026-017713--vi-bs.2026-04-13_08-30-00-000.devi-bs.2026-04-13_08-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.13514105777838,9.219037151607898,53.20264924918657,9.29902617033786", + "point": "53.13514105777838,9.219037151607898", + "startLcPosition": "196", + "impact": { + "lower": "Elsdorf", + "upper": "Ree\u00dfum", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Hamburg", + "title": "A1 | Ree\u00dfum - Elsdorf", + "coordinate": { + "lat": 53.13514105777838, + "long": 9.219037151607898 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:30 bis 14:30 Uhr", + "", + "A1: Bremen -> Hamburg, zwischen 0.9 km hinter Ree\u00dfum und 4.4 km vor AS Elsdorf", + "", + "L\u00e4nge: 9.29 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "Sperrung HFS oder 2.\u00dcFS, zwischen Km 80,2 - Km 70,9 RF HH f\u00fcr SP-Reparaturen nach Unf\u00e4llen, als Wanderbaustelle." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.219037152, + 53.135141058 + ], + [ + 9.2199468, + 53.136729601 + ], + [ + 9.2203323, + 53.137393401 + ], + [ + 9.2211467, + 53.138709601 + ], + [ + 9.2220203, + 53.140017001 + ], + [ + 9.2225697, + 53.140770601 + ], + [ + 9.2233827, + 53.141820201 + ], + [ + 9.2242037, + 53.142845701 + ], + [ + 9.2260636, + 53.144925001 + ], + [ + 9.2332574, + 53.152892901 + ], + [ + 9.2361355, + 53.156080401 + ], + [ + 9.238342, + 53.158434801 + ], + [ + 9.2407597, + 53.160739801 + ], + [ + 9.2489338, + 53.168216101 + ], + [ + 9.2498615, + 53.168980301 + ], + [ + 9.25147, + 53.170216701 + ], + [ + 9.2528885, + 53.171274201 + ], + [ + 9.2539422, + 53.172029001 + ], + [ + 9.2585189, + 53.175070001 + ], + [ + 9.2621156, + 53.177459701 + ], + [ + 9.2656442, + 53.179844301 + ], + [ + 9.2663077, + 53.180327501 + ], + [ + 9.2684564, + 53.181892301 + ], + [ + 9.2705802, + 53.183437501 + ], + [ + 9.2716509, + 53.184216501 + ], + [ + 9.2731705, + 53.185322101 + ], + [ + 9.2765071, + 53.187729401 + ], + [ + 9.277974, + 53.188766601 + ], + [ + 9.2811244, + 53.190865701 + ], + [ + 9.2832205, + 53.192245301 + ], + [ + 9.2837908, + 53.192620701 + ], + [ + 9.2855543, + 53.193781301 + ], + [ + 9.2876518, + 53.195161701 + ], + [ + 9.2878927, + 53.195320301 + ], + [ + 9.2879971, + 53.195389001 + ], + [ + 9.2929669, + 53.198659601 + ], + [ + 9.2949444, + 53.199961701 + ], + [ + 9.2950588, + 53.200037001 + ], + [ + 9.2980367, + 53.201997801 + ], + [ + 9.29902617, + 53.202649249 + ] + ] + } + }, + { + "identifier": "2026-017713--vi-bs.2026-04-13_08-30-00-000.devi-bs.2026-04-13_08-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.13514105777838,9.219037151607898,53.20264924918657,9.29902617033786", + "point": "53.13514105777838,9.219037151607898", + "startLcPosition": "196", + "impact": { + "lower": "Elsdorf", + "upper": "Ree\u00dfum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Hamburg", + "title": "A1 | Ree\u00dfum - Elsdorf", + "coordinate": { + "lat": 53.13514105777838, + "long": 9.219037151607898 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:30 bis 14:30 Uhr", + "", + "A1: Bremen -> Hamburg, zwischen 0.9 km hinter Ree\u00dfum und 4.4 km vor AS Elsdorf", + "", + "L\u00e4nge: 9.29 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Sperrung HFS oder 2.\u00dcFS, zwischen Km 80,2 - Km 70,9 RF HH f\u00fcr SP-Reparaturen nach Unf\u00e4llen, als Wanderbaustelle." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.219037152, + 53.135141058 + ], + [ + 9.2199468, + 53.136729601 + ], + [ + 9.2203323, + 53.137393401 + ], + [ + 9.2211467, + 53.138709601 + ], + [ + 9.2220203, + 53.140017001 + ], + [ + 9.2225697, + 53.140770601 + ], + [ + 9.2233827, + 53.141820201 + ], + [ + 9.2242037, + 53.142845701 + ], + [ + 9.2260636, + 53.144925001 + ], + [ + 9.2332574, + 53.152892901 + ], + [ + 9.2361355, + 53.156080401 + ], + [ + 9.238342, + 53.158434801 + ], + [ + 9.2407597, + 53.160739801 + ], + [ + 9.2489338, + 53.168216101 + ], + [ + 9.2498615, + 53.168980301 + ], + [ + 9.25147, + 53.170216701 + ], + [ + 9.2528885, + 53.171274201 + ], + [ + 9.2539422, + 53.172029001 + ], + [ + 9.2585189, + 53.175070001 + ], + [ + 9.2621156, + 53.177459701 + ], + [ + 9.2656442, + 53.179844301 + ], + [ + 9.2663077, + 53.180327501 + ], + [ + 9.2684564, + 53.181892301 + ], + [ + 9.2705802, + 53.183437501 + ], + [ + 9.2716509, + 53.184216501 + ], + [ + 9.2731705, + 53.185322101 + ], + [ + 9.2765071, + 53.187729401 + ], + [ + 9.277974, + 53.188766601 + ], + [ + 9.2811244, + 53.190865701 + ], + [ + 9.2832205, + 53.192245301 + ], + [ + 9.2837908, + 53.192620701 + ], + [ + 9.2855543, + 53.193781301 + ], + [ + 9.2876518, + 53.195161701 + ], + [ + 9.2878927, + 53.195320301 + ], + [ + 9.2879971, + 53.195389001 + ], + [ + 9.2929669, + 53.198659601 + ], + [ + 9.2949444, + 53.199961701 + ], + [ + 9.2950588, + 53.200037001 + ], + [ + 9.2980367, + 53.201997801 + ], + [ + 9.29902617, + 53.202649249 + ] + ] + } + }, + { + "identifier": "2026-017466--vi-bs.2026-04-16_09-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.195344024625264,9.28792875168785,53.19733608178899,9.29095563317319", + "point": "53.195344024625264,9.28792875168785", + "startLcPosition": "197", + "impact": { + "lower": "Bockel", + "upper": "Bockel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Hamburg", + "title": "A1 | Bockel - Bockel", + "coordinate": { + "lat": 53.195344024625264, + "long": 9.28792875168785 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A1: Bremen -> Hamburg, zwischen 0.1 km hinter AS Bockel und 0.6 km vor Bockel", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A1 von Rade (AS) nach Bockel (Parkplatz) Beseitigung Unfallfolgen an Grabenb\u00f6schung, Sperrung HFS von Km 72,0 - Km 71,7 RF HH." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.287928752, + 53.195344025 + ], + [ + 9.2879971, + 53.195389001 + ], + [ + 9.290955633, + 53.197336082 + ] + ] + } + }, + { + "identifier": "2026-008447--vi-bs.2026-03-02_09-00-00-000.devi-zus.2026-03-02_09-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.37130143844413,9.806092611780826,53.05260050262714,9.030825475349227", + "point": "53.37130143844413,9.806092611780826", + "startLcPosition": "210", + "impact": { + "lower": "Oyten", + "upper": "Buchholzer Dreieck", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Bremen", + "title": "A1 | Buchholzer Dreieck - Oyten", + "coordinate": { + "lat": 53.37130143844413, + "long": 9.806092611780826 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "", + "A1: Hamburg -> Bremen, zwischen 3.2 km hinter AD Buchholzer Dreieck und AS Oyten", + "", + "L\u00e4nge: 65.67 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "Sperrung HFS o. 2.\u00dcFS beide RF im Wechsel, Unfallschadenbeseitigung, als Wanderbaustelle." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.806092612, + 53.371301438 + ], + [ + 9.8059396, + 53.371296701 + ], + [ + 9.8026553, + 53.371194601 + ], + [ + 9.8011105, + 53.371146501 + ], + [ + 9.7972556, + 53.371026601 + ], + [ + 9.7964175, + 53.371000601 + ], + [ + 9.7942754, + 53.370933901 + ], + [ + 9.7641648, + 53.369997301 + ], + [ + 9.7579377, + 53.369794501 + ], + [ + 9.7566836, + 53.369753601 + ], + [ + 9.7545114, + 53.369678601 + ], + [ + 9.753207, + 53.369598901 + ], + [ + 9.7520745, + 53.369502501 + ], + [ + 9.7507158, + 53.369344801 + ], + [ + 9.749162, + 53.369122401 + ], + [ + 9.7490222, + 53.369098101 + ], + [ + 9.7478683, + 53.368901301 + ], + [ + 9.7469524, + 53.368714501 + ], + [ + 9.7466034, + 53.368637501 + ], + [ + 9.7460354, + 53.368512901 + ], + [ + 9.7453171, + 53.368337101 + ], + [ + 9.7420489, + 53.367460001 + ], + [ + 9.7389331, + 53.366590001 + ], + [ + 9.7385793, + 53.366493301 + ], + [ + 9.7353899, + 53.365621301 + ], + [ + 9.735265, + 53.365586901 + ], + [ + 9.7322759, + 53.364762801 + ], + [ + 9.7248727, + 53.362713401 + ], + [ + 9.7223235, + 53.361988601 + ], + [ + 9.7221296, + 53.361933001 + ], + [ + 9.7217403, + 53.361823901 + ], + [ + 9.7186131, + 53.360973501 + ], + [ + 9.7117229, + 53.359059301 + ], + [ + 9.7096143, + 53.358474001 + ], + [ + 9.7081038, + 53.358056701 + ], + [ + 9.7071474, + 53.357792501 + ], + [ + 9.7054201, + 53.357317901 + ], + [ + 9.7044443, + 53.357049701 + ], + [ + 9.6954099, + 53.354543301 + ], + [ + 9.6944578, + 53.354278801 + ], + [ + 9.6926487, + 53.353776201 + ], + [ + 9.6910141, + 53.353322101 + ], + [ + 9.6848518, + 53.351610201 + ], + [ + 9.6808674, + 53.350503201 + ], + [ + 9.6781119, + 53.349737701 + ], + [ + 9.6764256, + 53.349269201 + ], + [ + 9.6753451, + 53.348969001 + ], + [ + 9.6694948, + 53.347343501 + ], + [ + 9.6672807, + 53.346728301 + ], + [ + 9.6669692, + 53.346641801 + ], + [ + 9.6537088, + 53.342957301 + ], + [ + 9.6502032, + 53.341983101 + ], + [ + 9.6434784, + 53.340114401 + ], + [ + 9.6400953, + 53.339174301 + ], + [ + 9.6367436, + 53.338242801 + ], + [ + 9.6343361, + 53.337573801 + ], + [ + 9.6312548, + 53.336717501 + ], + [ + 9.6290755, + 53.336111801 + ], + [ + 9.6265015, + 53.335396401 + ], + [ + 9.6201752, + 53.333638201 + ], + [ + 9.6129014, + 53.331616501 + ], + [ + 9.6046561, + 53.329305001 + ], + [ + 9.6024393, + 53.328670101 + ], + [ + 9.6009279, + 53.328201601 + ], + [ + 9.5992574, + 53.327670701 + ], + [ + 9.5975808, + 53.327094301 + ], + [ + 9.5954794, + 53.326336101 + ], + [ + 9.5935593, + 53.325595001 + ], + [ + 9.5919503, + 53.324960201 + ], + [ + 9.5889066, + 53.323658601 + ], + [ + 9.5866417, + 53.322681801 + ], + [ + 9.5827042, + 53.320982701 + ], + [ + 9.5761559, + 53.318156901 + ], + [ + 9.5744737, + 53.317430901 + ], + [ + 9.5622498, + 53.312155301 + ], + [ + 9.5518858, + 53.307681801 + ], + [ + 9.550096, + 53.306909201 + ], + [ + 9.5457392, + 53.305028501 + ], + [ + 9.5399214, + 53.302517001 + ], + [ + 9.5379658, + 53.301672701 + ], + [ + 9.5373443, + 53.301404401 + ], + [ + 9.5299553, + 53.298197301 + ], + [ + 9.5293853, + 53.297968201 + ], + [ + 9.5282534, + 53.297534401 + ], + [ + 9.5277443, + 53.297346601 + ], + [ + 9.5267338, + 53.296988301 + ], + [ + 9.5262364, + 53.296821301 + ], + [ + 9.5255989, + 53.296613701 + ], + [ + 9.5248667, + 53.296385501 + ], + [ + 9.5240784, + 53.296154101 + ], + [ + 9.5229375, + 53.295832601 + ], + [ + 9.5219634, + 53.295573601 + ], + [ + 9.5208626, + 53.295305801 + ], + [ + 9.5155555, + 53.294065501 + ], + [ + 9.512795, + 53.293417801 + ], + [ + 9.511698, + 53.293157401 + ], + [ + 9.5094775, + 53.292647601 + ], + [ + 9.5070105, + 53.292048501 + ], + [ + 9.4979197, + 53.289913601 + ], + [ + 9.4933998, + 53.288849401 + ], + [ + 9.4889167, + 53.287793901 + ], + [ + 9.4876507, + 53.287474001 + ], + [ + 9.4863235, + 53.287111601 + ], + [ + 9.485265, + 53.286791801 + ], + [ + 9.484018, + 53.286403501 + ], + [ + 9.4827942, + 53.285983801 + ], + [ + 9.4816548, + 53.285562501 + ], + [ + 9.4804909, + 53.285102701 + ], + [ + 9.4792383, + 53.284578101 + ], + [ + 9.4776893, + 53.283870201 + ], + [ + 9.476434, + 53.283245701 + ], + [ + 9.475184, + 53.282585501 + ], + [ + 9.4721705, + 53.280818901 + ], + [ + 9.4707934, + 53.280010301 + ], + [ + 9.4660067, + 53.277219201 + ], + [ + 9.4614852, + 53.274559501 + ], + [ + 9.4572087, + 53.272035701 + ], + [ + 9.455063, + 53.270777401 + ], + [ + 9.4507948, + 53.268266501 + ], + [ + 9.444818, + 53.264765001 + ], + [ + 9.4431248, + 53.263779401 + ], + [ + 9.4400817, + 53.262009901 + ], + [ + 9.4389172, + 53.261324801 + ], + [ + 9.4345031, + 53.258699001 + ], + [ + 9.4341101, + 53.258462901 + ], + [ + 9.4338218, + 53.258293301 + ], + [ + 9.4317136, + 53.257040001 + ], + [ + 9.4315231, + 53.256931601 + ], + [ + 9.4299081, + 53.255987201 + ], + [ + 9.4294762, + 53.255729901 + ], + [ + 9.4269402, + 53.254238101 + ], + [ + 9.4249765, + 53.253082401 + ], + [ + 9.4240633, + 53.252559801 + ], + [ + 9.4228332, + 53.251894201 + ], + [ + 9.4214354, + 53.251146001 + ], + [ + 9.419868, + 53.250372401 + ], + [ + 9.4185229, + 53.249745101 + ], + [ + 9.4172721, + 53.249158401 + ], + [ + 9.4159216, + 53.248561101 + ], + [ + 9.4094366, + 53.245979001 + ], + [ + 9.4061857, + 53.244696401 + ], + [ + 9.4038946, + 53.243783301 + ], + [ + 9.4021379, + 53.243083801 + ], + [ + 9.400014, + 53.242324301 + ], + [ + 9.3982806, + 53.241768601 + ], + [ + 9.396767, + 53.241337401 + ], + [ + 9.3949935, + 53.240889501 + ], + [ + 9.3929467, + 53.240423401 + ], + [ + 9.3913667, + 53.240107901 + ], + [ + 9.389515, + 53.239793101 + ], + [ + 9.3823586, + 53.238733601 + ], + [ + 9.3784006, + 53.238146401 + ], + [ + 9.3743694, + 53.237559901 + ], + [ + 9.3719814, + 53.237238001 + ], + [ + 9.3692256, + 53.236927201 + ], + [ + 9.366767, + 53.236701401 + ], + [ + 9.3637001, + 53.236433801 + ], + [ + 9.3620683, + 53.236275001 + ], + [ + 9.3602436, + 53.236065601 + ], + [ + 9.3583654, + 53.235800601 + ], + [ + 9.3566, + 53.235498801 + ], + [ + 9.3552124, + 53.235231301 + ], + [ + 9.3536321, + 53.234892601 + ], + [ + 9.3519254, + 53.234479201 + ], + [ + 9.3492801, + 53.233771701 + ], + [ + 9.3484664, + 53.233532501 + ], + [ + 9.3455894, + 53.232714301 + ], + [ + 9.3433601, + 53.232094801 + ], + [ + 9.3411596, + 53.231474601 + ], + [ + 9.3403782, + 53.231251401 + ], + [ + 9.3398402, + 53.231080301 + ], + [ + 9.3390182, + 53.230809601 + ], + [ + 9.3379106, + 53.230407401 + ], + [ + 9.3369979, + 53.230055101 + ], + [ + 9.335947, + 53.229607601 + ], + [ + 9.3355176, + 53.229421601 + ], + [ + 9.335154, + 53.229248501 + ], + [ + 9.3341554, + 53.228748001 + ], + [ + 9.3333573, + 53.228319201 + ], + [ + 9.3325606, + 53.227845901 + ], + [ + 9.3317507, + 53.227347801 + ], + [ + 9.3310386, + 53.226878301 + ], + [ + 9.3283965, + 53.225114101 + ], + [ + 9.3257758, + 53.223312801 + ], + [ + 9.3256026, + 53.223191901 + ], + [ + 9.3255691, + 53.223167701 + ], + [ + 9.3241932, + 53.222150201 + ], + [ + 9.3233086, + 53.221429901 + ], + [ + 9.322565, + 53.220836601 + ], + [ + 9.3215641, + 53.220002201 + ], + [ + 9.3206617, + 53.219216501 + ], + [ + 9.3182278, + 53.217013401 + ], + [ + 9.3169371, + 53.215839201 + ], + [ + 9.316106, + 53.215052901 + ], + [ + 9.3148019, + 53.213862501 + ], + [ + 9.3135833, + 53.212836601 + ], + [ + 9.3127852, + 53.212201701 + ], + [ + 9.3118242, + 53.211453001 + ], + [ + 9.3107335, + 53.210643601 + ], + [ + 9.309793, + 53.209986101 + ], + [ + 9.3089765, + 53.209436601 + ], + [ + 9.3079134, + 53.208733001 + ], + [ + 9.3069217, + 53.208081501 + ], + [ + 9.3018986, + 53.204781701 + ], + [ + 9.299861, + 53.203454801 + ], + [ + 9.298628, + 53.202633001 + ], + [ + 9.2981155, + 53.202296301 + ], + [ + 9.2977642, + 53.202065501 + ], + [ + 9.2950845, + 53.200312601 + ], + [ + 9.2934447, + 53.199227501 + ], + [ + 9.2887283, + 53.196107401 + ], + [ + 9.287807, + 53.195497901 + ], + [ + 9.2866564, + 53.194736701 + ], + [ + 9.2842179, + 53.193140701 + ], + [ + 9.2826619, + 53.192122201 + ], + [ + 9.2809269, + 53.190982301 + ], + [ + 9.2777696, + 53.188841601 + ], + [ + 9.276333, + 53.187832401 + ], + [ + 9.2703368, + 53.183481601 + ], + [ + 9.2682529, + 53.181961001 + ], + [ + 9.2654735, + 53.179932801 + ], + [ + 9.2619318, + 53.177534101 + ], + [ + 9.2583524, + 53.175158001 + ], + [ + 9.2537979, + 53.172146101 + ], + [ + 9.2526895, + 53.171365601 + ], + [ + 9.2512364, + 53.170308301 + ], + [ + 9.2496317, + 53.169058301 + ], + [ + 9.2487091, + 53.168280501 + ], + [ + 9.2404607, + 53.160775201 + ], + [ + 9.238083, + 53.158505201 + ], + [ + 9.2358809, + 53.156149101 + ], + [ + 9.2329942, + 53.152944801 + ], + [ + 9.2258216, + 53.144982101 + ], + [ + 9.2239618, + 53.142910501 + ], + [ + 9.2231752, + 53.141954001 + ], + [ + 9.2223159, + 53.140848901 + ], + [ + 9.2217293, + 53.140018401 + ], + [ + 9.220861, + 53.138721501 + ], + [ + 9.2200393, + 53.137395201 + ], + [ + 9.2196596, + 53.136741701 + ], + [ + 9.2183484, + 53.134409201 + ], + [ + 9.2173672, + 53.132734601 + ], + [ + 9.21484, + 53.128316801 + ], + [ + 9.2132072, + 53.125492901 + ], + [ + 9.2111266, + 53.121873201 + ], + [ + 9.2102254, + 53.120329901 + ], + [ + 9.2099151, + 53.119813901 + ], + [ + 9.209347, + 53.118946301 + ], + [ + 9.2089515, + 53.118383201 + ], + [ + 9.208435, + 53.117750701 + ], + [ + 9.2078185, + 53.117026901 + ], + [ + 9.2072526, + 53.116393801 + ], + [ + 9.2063129, + 53.115434501 + ], + [ + 9.2055188, + 53.114679301 + ], + [ + 9.2047854, + 53.113987801 + ], + [ + 9.2032756, + 53.112564201 + ], + [ + 9.2026608, + 53.112000201 + ], + [ + 9.2015997, + 53.111026901 + ], + [ + 9.2004248, + 53.109949001 + ], + [ + 9.1999109, + 53.109477601 + ], + [ + 9.1987357, + 53.108399501 + ], + [ + 9.1974915, + 53.107258001 + ], + [ + 9.1973079, + 53.107095701 + ], + [ + 9.1947057, + 53.104747301 + ], + [ + 9.1928133, + 53.102971601 + ], + [ + 9.1926469, + 53.102815801 + ], + [ + 9.1902286, + 53.100586301 + ], + [ + 9.1897832, + 53.100207701 + ], + [ + 9.1893768, + 53.099838101 + ], + [ + 9.1869868, + 53.097602601 + ], + [ + 9.1868164, + 53.097441101 + ], + [ + 9.1865061, + 53.097153001 + ], + [ + 9.1858288, + 53.096516401 + ], + [ + 9.1831285, + 53.094050501 + ], + [ + 9.1816851, + 53.092731501 + ], + [ + 9.1809437, + 53.092082001 + ], + [ + 9.1801315, + 53.091393201 + ], + [ + 9.1792736, + 53.090711001 + ], + [ + 9.1779378, + 53.089735001 + ], + [ + 9.1768888, + 53.089036801 + ], + [ + 9.1757715, + 53.088334101 + ], + [ + 9.1752455, + 53.088024601 + ], + [ + 9.1739308, + 53.087294201 + ], + [ + 9.173646, + 53.087142901 + ], + [ + 9.1726884, + 53.086650601 + ], + [ + 9.171712, + 53.086186001 + ], + [ + 9.170623, + 53.085685801 + ], + [ + 9.1697789, + 53.085326901 + ], + [ + 9.1689492, + 53.084987701 + ], + [ + 9.1683458, + 53.084751901 + ], + [ + 9.1675319, + 53.084445501 + ], + [ + 9.1670241, + 53.084256001 + ], + [ + 9.1665327, + 53.084082601 + ], + [ + 9.1634933, + 53.083018201 + ], + [ + 9.1612494, + 53.082215201 + ], + [ + 9.1583098, + 53.081204301 + ], + [ + 9.1561123, + 53.080434501 + ], + [ + 9.1535271, + 53.079529001 + ], + [ + 9.1502214, + 53.078366901 + ], + [ + 9.1480834, + 53.077619601 + ], + [ + 9.1405673, + 53.075002901 + ], + [ + 9.1276197, + 53.070502601 + ], + [ + 9.1244029, + 53.069366101 + ], + [ + 9.1204468, + 53.067996001 + ], + [ + 9.1147983, + 53.066031301 + ], + [ + 9.1059405, + 53.062932601 + ], + [ + 9.1057322, + 53.062861001 + ], + [ + 9.1019652, + 53.061565301 + ], + [ + 9.1007373, + 53.061183201 + ], + [ + 9.0991485, + 53.060707201 + ], + [ + 9.0976998, + 53.060285401 + ], + [ + 9.0962005, + 53.059887001 + ], + [ + 9.0947878, + 53.059528601 + ], + [ + 9.0932177, + 53.059159101 + ], + [ + 9.0915081, + 53.058792401 + ], + [ + 9.0900578, + 53.058496701 + ], + [ + 9.0882573, + 53.058142901 + ], + [ + 9.0870234, + 53.057923701 + ], + [ + 9.0858221, + 53.057732501 + ], + [ + 9.0840855, + 53.057470701 + ], + [ + 9.0824541, + 53.057238201 + ], + [ + 9.0805578, + 53.057006901 + ], + [ + 9.0785826, + 53.056790201 + ], + [ + 9.0737768, + 53.056282001 + ], + [ + 9.068252, + 53.055695601 + ], + [ + 9.0627844, + 53.055112501 + ], + [ + 9.0590355, + 53.054728201 + ], + [ + 9.0484484, + 53.053602301 + ], + [ + 9.0472127, + 53.053474701 + ], + [ + 9.0459348, + 53.053346901 + ], + [ + 9.044294, + 53.053199001 + ], + [ + 9.0433736, + 53.053131001 + ], + [ + 9.0424911, + 53.053068001 + ], + [ + 9.0414021, + 53.053000001 + ], + [ + 9.0401838, + 53.052933301 + ], + [ + 9.0374279, + 53.052818601 + ], + [ + 9.0340525, + 53.052708201 + ], + [ + 9.032838, + 53.052667701 + ], + [ + 9.030825475, + 53.052600503 + ] + ] + } + }, + { + "identifier": "2026-008447--vi-bs.2026-03-02_09-00-00-000.devi-zus.2026-03-02_09-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.37130143844413,9.806092611780826,53.05260050262714,9.030825475349227", + "point": "53.37130143844413,9.806092611780826", + "startLcPosition": "210", + "impact": { + "lower": "Oyten", + "upper": "Buchholzer Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Bremen", + "title": "A1 | Buchholzer Dreieck - Oyten", + "coordinate": { + "lat": 53.37130143844413, + "long": 9.806092611780826 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "", + "A1: Hamburg -> Bremen, zwischen 3.2 km hinter AD Buchholzer Dreieck und AS Oyten", + "", + "L\u00e4nge: 65.67 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Sperrung HFS o. 2.\u00dcFS beide RF im Wechsel, Unfallschadenbeseitigung, als Wanderbaustelle." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.806092612, + 53.371301438 + ], + [ + 9.8059396, + 53.371296701 + ], + [ + 9.8026553, + 53.371194601 + ], + [ + 9.8011105, + 53.371146501 + ], + [ + 9.7972556, + 53.371026601 + ], + [ + 9.7964175, + 53.371000601 + ], + [ + 9.7942754, + 53.370933901 + ], + [ + 9.7641648, + 53.369997301 + ], + [ + 9.7579377, + 53.369794501 + ], + [ + 9.7566836, + 53.369753601 + ], + [ + 9.7545114, + 53.369678601 + ], + [ + 9.753207, + 53.369598901 + ], + [ + 9.7520745, + 53.369502501 + ], + [ + 9.7507158, + 53.369344801 + ], + [ + 9.749162, + 53.369122401 + ], + [ + 9.7490222, + 53.369098101 + ], + [ + 9.7478683, + 53.368901301 + ], + [ + 9.7469524, + 53.368714501 + ], + [ + 9.7466034, + 53.368637501 + ], + [ + 9.7460354, + 53.368512901 + ], + [ + 9.7453171, + 53.368337101 + ], + [ + 9.7420489, + 53.367460001 + ], + [ + 9.7389331, + 53.366590001 + ], + [ + 9.7385793, + 53.366493301 + ], + [ + 9.7353899, + 53.365621301 + ], + [ + 9.735265, + 53.365586901 + ], + [ + 9.7322759, + 53.364762801 + ], + [ + 9.7248727, + 53.362713401 + ], + [ + 9.7223235, + 53.361988601 + ], + [ + 9.7221296, + 53.361933001 + ], + [ + 9.7217403, + 53.361823901 + ], + [ + 9.7186131, + 53.360973501 + ], + [ + 9.7117229, + 53.359059301 + ], + [ + 9.7096143, + 53.358474001 + ], + [ + 9.7081038, + 53.358056701 + ], + [ + 9.7071474, + 53.357792501 + ], + [ + 9.7054201, + 53.357317901 + ], + [ + 9.7044443, + 53.357049701 + ], + [ + 9.6954099, + 53.354543301 + ], + [ + 9.6944578, + 53.354278801 + ], + [ + 9.6926487, + 53.353776201 + ], + [ + 9.6910141, + 53.353322101 + ], + [ + 9.6848518, + 53.351610201 + ], + [ + 9.6808674, + 53.350503201 + ], + [ + 9.6781119, + 53.349737701 + ], + [ + 9.6764256, + 53.349269201 + ], + [ + 9.6753451, + 53.348969001 + ], + [ + 9.6694948, + 53.347343501 + ], + [ + 9.6672807, + 53.346728301 + ], + [ + 9.6669692, + 53.346641801 + ], + [ + 9.6537088, + 53.342957301 + ], + [ + 9.6502032, + 53.341983101 + ], + [ + 9.6434784, + 53.340114401 + ], + [ + 9.6400953, + 53.339174301 + ], + [ + 9.6367436, + 53.338242801 + ], + [ + 9.6343361, + 53.337573801 + ], + [ + 9.6312548, + 53.336717501 + ], + [ + 9.6290755, + 53.336111801 + ], + [ + 9.6265015, + 53.335396401 + ], + [ + 9.6201752, + 53.333638201 + ], + [ + 9.6129014, + 53.331616501 + ], + [ + 9.6046561, + 53.329305001 + ], + [ + 9.6024393, + 53.328670101 + ], + [ + 9.6009279, + 53.328201601 + ], + [ + 9.5992574, + 53.327670701 + ], + [ + 9.5975808, + 53.327094301 + ], + [ + 9.5954794, + 53.326336101 + ], + [ + 9.5935593, + 53.325595001 + ], + [ + 9.5919503, + 53.324960201 + ], + [ + 9.5889066, + 53.323658601 + ], + [ + 9.5866417, + 53.322681801 + ], + [ + 9.5827042, + 53.320982701 + ], + [ + 9.5761559, + 53.318156901 + ], + [ + 9.5744737, + 53.317430901 + ], + [ + 9.5622498, + 53.312155301 + ], + [ + 9.5518858, + 53.307681801 + ], + [ + 9.550096, + 53.306909201 + ], + [ + 9.5457392, + 53.305028501 + ], + [ + 9.5399214, + 53.302517001 + ], + [ + 9.5379658, + 53.301672701 + ], + [ + 9.5373443, + 53.301404401 + ], + [ + 9.5299553, + 53.298197301 + ], + [ + 9.5293853, + 53.297968201 + ], + [ + 9.5282534, + 53.297534401 + ], + [ + 9.5277443, + 53.297346601 + ], + [ + 9.5267338, + 53.296988301 + ], + [ + 9.5262364, + 53.296821301 + ], + [ + 9.5255989, + 53.296613701 + ], + [ + 9.5248667, + 53.296385501 + ], + [ + 9.5240784, + 53.296154101 + ], + [ + 9.5229375, + 53.295832601 + ], + [ + 9.5219634, + 53.295573601 + ], + [ + 9.5208626, + 53.295305801 + ], + [ + 9.5155555, + 53.294065501 + ], + [ + 9.512795, + 53.293417801 + ], + [ + 9.511698, + 53.293157401 + ], + [ + 9.5094775, + 53.292647601 + ], + [ + 9.5070105, + 53.292048501 + ], + [ + 9.4979197, + 53.289913601 + ], + [ + 9.4933998, + 53.288849401 + ], + [ + 9.4889167, + 53.287793901 + ], + [ + 9.4876507, + 53.287474001 + ], + [ + 9.4863235, + 53.287111601 + ], + [ + 9.485265, + 53.286791801 + ], + [ + 9.484018, + 53.286403501 + ], + [ + 9.4827942, + 53.285983801 + ], + [ + 9.4816548, + 53.285562501 + ], + [ + 9.4804909, + 53.285102701 + ], + [ + 9.4792383, + 53.284578101 + ], + [ + 9.4776893, + 53.283870201 + ], + [ + 9.476434, + 53.283245701 + ], + [ + 9.475184, + 53.282585501 + ], + [ + 9.4721705, + 53.280818901 + ], + [ + 9.4707934, + 53.280010301 + ], + [ + 9.4660067, + 53.277219201 + ], + [ + 9.4614852, + 53.274559501 + ], + [ + 9.4572087, + 53.272035701 + ], + [ + 9.455063, + 53.270777401 + ], + [ + 9.4507948, + 53.268266501 + ], + [ + 9.444818, + 53.264765001 + ], + [ + 9.4431248, + 53.263779401 + ], + [ + 9.4400817, + 53.262009901 + ], + [ + 9.4389172, + 53.261324801 + ], + [ + 9.4345031, + 53.258699001 + ], + [ + 9.4341101, + 53.258462901 + ], + [ + 9.4338218, + 53.258293301 + ], + [ + 9.4317136, + 53.257040001 + ], + [ + 9.4315231, + 53.256931601 + ], + [ + 9.4299081, + 53.255987201 + ], + [ + 9.4294762, + 53.255729901 + ], + [ + 9.4269402, + 53.254238101 + ], + [ + 9.4249765, + 53.253082401 + ], + [ + 9.4240633, + 53.252559801 + ], + [ + 9.4228332, + 53.251894201 + ], + [ + 9.4214354, + 53.251146001 + ], + [ + 9.419868, + 53.250372401 + ], + [ + 9.4185229, + 53.249745101 + ], + [ + 9.4172721, + 53.249158401 + ], + [ + 9.4159216, + 53.248561101 + ], + [ + 9.4094366, + 53.245979001 + ], + [ + 9.4061857, + 53.244696401 + ], + [ + 9.4038946, + 53.243783301 + ], + [ + 9.4021379, + 53.243083801 + ], + [ + 9.400014, + 53.242324301 + ], + [ + 9.3982806, + 53.241768601 + ], + [ + 9.396767, + 53.241337401 + ], + [ + 9.3949935, + 53.240889501 + ], + [ + 9.3929467, + 53.240423401 + ], + [ + 9.3913667, + 53.240107901 + ], + [ + 9.389515, + 53.239793101 + ], + [ + 9.3823586, + 53.238733601 + ], + [ + 9.3784006, + 53.238146401 + ], + [ + 9.3743694, + 53.237559901 + ], + [ + 9.3719814, + 53.237238001 + ], + [ + 9.3692256, + 53.236927201 + ], + [ + 9.366767, + 53.236701401 + ], + [ + 9.3637001, + 53.236433801 + ], + [ + 9.3620683, + 53.236275001 + ], + [ + 9.3602436, + 53.236065601 + ], + [ + 9.3583654, + 53.235800601 + ], + [ + 9.3566, + 53.235498801 + ], + [ + 9.3552124, + 53.235231301 + ], + [ + 9.3536321, + 53.234892601 + ], + [ + 9.3519254, + 53.234479201 + ], + [ + 9.3492801, + 53.233771701 + ], + [ + 9.3484664, + 53.233532501 + ], + [ + 9.3455894, + 53.232714301 + ], + [ + 9.3433601, + 53.232094801 + ], + [ + 9.3411596, + 53.231474601 + ], + [ + 9.3403782, + 53.231251401 + ], + [ + 9.3398402, + 53.231080301 + ], + [ + 9.3390182, + 53.230809601 + ], + [ + 9.3379106, + 53.230407401 + ], + [ + 9.3369979, + 53.230055101 + ], + [ + 9.335947, + 53.229607601 + ], + [ + 9.3355176, + 53.229421601 + ], + [ + 9.335154, + 53.229248501 + ], + [ + 9.3341554, + 53.228748001 + ], + [ + 9.3333573, + 53.228319201 + ], + [ + 9.3325606, + 53.227845901 + ], + [ + 9.3317507, + 53.227347801 + ], + [ + 9.3310386, + 53.226878301 + ], + [ + 9.3283965, + 53.225114101 + ], + [ + 9.3257758, + 53.223312801 + ], + [ + 9.3256026, + 53.223191901 + ], + [ + 9.3255691, + 53.223167701 + ], + [ + 9.3241932, + 53.222150201 + ], + [ + 9.3233086, + 53.221429901 + ], + [ + 9.322565, + 53.220836601 + ], + [ + 9.3215641, + 53.220002201 + ], + [ + 9.3206617, + 53.219216501 + ], + [ + 9.3182278, + 53.217013401 + ], + [ + 9.3169371, + 53.215839201 + ], + [ + 9.316106, + 53.215052901 + ], + [ + 9.3148019, + 53.213862501 + ], + [ + 9.3135833, + 53.212836601 + ], + [ + 9.3127852, + 53.212201701 + ], + [ + 9.3118242, + 53.211453001 + ], + [ + 9.3107335, + 53.210643601 + ], + [ + 9.309793, + 53.209986101 + ], + [ + 9.3089765, + 53.209436601 + ], + [ + 9.3079134, + 53.208733001 + ], + [ + 9.3069217, + 53.208081501 + ], + [ + 9.3018986, + 53.204781701 + ], + [ + 9.299861, + 53.203454801 + ], + [ + 9.298628, + 53.202633001 + ], + [ + 9.2981155, + 53.202296301 + ], + [ + 9.2977642, + 53.202065501 + ], + [ + 9.2950845, + 53.200312601 + ], + [ + 9.2934447, + 53.199227501 + ], + [ + 9.2887283, + 53.196107401 + ], + [ + 9.287807, + 53.195497901 + ], + [ + 9.2866564, + 53.194736701 + ], + [ + 9.2842179, + 53.193140701 + ], + [ + 9.2826619, + 53.192122201 + ], + [ + 9.2809269, + 53.190982301 + ], + [ + 9.2777696, + 53.188841601 + ], + [ + 9.276333, + 53.187832401 + ], + [ + 9.2703368, + 53.183481601 + ], + [ + 9.2682529, + 53.181961001 + ], + [ + 9.2654735, + 53.179932801 + ], + [ + 9.2619318, + 53.177534101 + ], + [ + 9.2583524, + 53.175158001 + ], + [ + 9.2537979, + 53.172146101 + ], + [ + 9.2526895, + 53.171365601 + ], + [ + 9.2512364, + 53.170308301 + ], + [ + 9.2496317, + 53.169058301 + ], + [ + 9.2487091, + 53.168280501 + ], + [ + 9.2404607, + 53.160775201 + ], + [ + 9.238083, + 53.158505201 + ], + [ + 9.2358809, + 53.156149101 + ], + [ + 9.2329942, + 53.152944801 + ], + [ + 9.2258216, + 53.144982101 + ], + [ + 9.2239618, + 53.142910501 + ], + [ + 9.2231752, + 53.141954001 + ], + [ + 9.2223159, + 53.140848901 + ], + [ + 9.2217293, + 53.140018401 + ], + [ + 9.220861, + 53.138721501 + ], + [ + 9.2200393, + 53.137395201 + ], + [ + 9.2196596, + 53.136741701 + ], + [ + 9.2183484, + 53.134409201 + ], + [ + 9.2173672, + 53.132734601 + ], + [ + 9.21484, + 53.128316801 + ], + [ + 9.2132072, + 53.125492901 + ], + [ + 9.2111266, + 53.121873201 + ], + [ + 9.2102254, + 53.120329901 + ], + [ + 9.2099151, + 53.119813901 + ], + [ + 9.209347, + 53.118946301 + ], + [ + 9.2089515, + 53.118383201 + ], + [ + 9.208435, + 53.117750701 + ], + [ + 9.2078185, + 53.117026901 + ], + [ + 9.2072526, + 53.116393801 + ], + [ + 9.2063129, + 53.115434501 + ], + [ + 9.2055188, + 53.114679301 + ], + [ + 9.2047854, + 53.113987801 + ], + [ + 9.2032756, + 53.112564201 + ], + [ + 9.2026608, + 53.112000201 + ], + [ + 9.2015997, + 53.111026901 + ], + [ + 9.2004248, + 53.109949001 + ], + [ + 9.1999109, + 53.109477601 + ], + [ + 9.1987357, + 53.108399501 + ], + [ + 9.1974915, + 53.107258001 + ], + [ + 9.1973079, + 53.107095701 + ], + [ + 9.1947057, + 53.104747301 + ], + [ + 9.1928133, + 53.102971601 + ], + [ + 9.1926469, + 53.102815801 + ], + [ + 9.1902286, + 53.100586301 + ], + [ + 9.1897832, + 53.100207701 + ], + [ + 9.1893768, + 53.099838101 + ], + [ + 9.1869868, + 53.097602601 + ], + [ + 9.1868164, + 53.097441101 + ], + [ + 9.1865061, + 53.097153001 + ], + [ + 9.1858288, + 53.096516401 + ], + [ + 9.1831285, + 53.094050501 + ], + [ + 9.1816851, + 53.092731501 + ], + [ + 9.1809437, + 53.092082001 + ], + [ + 9.1801315, + 53.091393201 + ], + [ + 9.1792736, + 53.090711001 + ], + [ + 9.1779378, + 53.089735001 + ], + [ + 9.1768888, + 53.089036801 + ], + [ + 9.1757715, + 53.088334101 + ], + [ + 9.1752455, + 53.088024601 + ], + [ + 9.1739308, + 53.087294201 + ], + [ + 9.173646, + 53.087142901 + ], + [ + 9.1726884, + 53.086650601 + ], + [ + 9.171712, + 53.086186001 + ], + [ + 9.170623, + 53.085685801 + ], + [ + 9.1697789, + 53.085326901 + ], + [ + 9.1689492, + 53.084987701 + ], + [ + 9.1683458, + 53.084751901 + ], + [ + 9.1675319, + 53.084445501 + ], + [ + 9.1670241, + 53.084256001 + ], + [ + 9.1665327, + 53.084082601 + ], + [ + 9.1634933, + 53.083018201 + ], + [ + 9.1612494, + 53.082215201 + ], + [ + 9.1583098, + 53.081204301 + ], + [ + 9.1561123, + 53.080434501 + ], + [ + 9.1535271, + 53.079529001 + ], + [ + 9.1502214, + 53.078366901 + ], + [ + 9.1480834, + 53.077619601 + ], + [ + 9.1405673, + 53.075002901 + ], + [ + 9.1276197, + 53.070502601 + ], + [ + 9.1244029, + 53.069366101 + ], + [ + 9.1204468, + 53.067996001 + ], + [ + 9.1147983, + 53.066031301 + ], + [ + 9.1059405, + 53.062932601 + ], + [ + 9.1057322, + 53.062861001 + ], + [ + 9.1019652, + 53.061565301 + ], + [ + 9.1007373, + 53.061183201 + ], + [ + 9.0991485, + 53.060707201 + ], + [ + 9.0976998, + 53.060285401 + ], + [ + 9.0962005, + 53.059887001 + ], + [ + 9.0947878, + 53.059528601 + ], + [ + 9.0932177, + 53.059159101 + ], + [ + 9.0915081, + 53.058792401 + ], + [ + 9.0900578, + 53.058496701 + ], + [ + 9.0882573, + 53.058142901 + ], + [ + 9.0870234, + 53.057923701 + ], + [ + 9.0858221, + 53.057732501 + ], + [ + 9.0840855, + 53.057470701 + ], + [ + 9.0824541, + 53.057238201 + ], + [ + 9.0805578, + 53.057006901 + ], + [ + 9.0785826, + 53.056790201 + ], + [ + 9.0737768, + 53.056282001 + ], + [ + 9.068252, + 53.055695601 + ], + [ + 9.0627844, + 53.055112501 + ], + [ + 9.0590355, + 53.054728201 + ], + [ + 9.0484484, + 53.053602301 + ], + [ + 9.0472127, + 53.053474701 + ], + [ + 9.0459348, + 53.053346901 + ], + [ + 9.044294, + 53.053199001 + ], + [ + 9.0433736, + 53.053131001 + ], + [ + 9.0424911, + 53.053068001 + ], + [ + 9.0414021, + 53.053000001 + ], + [ + 9.0401838, + 53.052933301 + ], + [ + 9.0374279, + 53.052818601 + ], + [ + 9.0340525, + 53.052708201 + ], + [ + 9.032838, + 53.052667701 + ], + [ + 9.030825475, + 53.052600503 + ] + ] + } + }, + { + "identifier": "2025-007637--vi-bs.2026-03-13_05-00-00-000.devi-zus.2025-06-02_00-00-00-000_001.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.37427080578892,9.919862259108903,53.37744107130363,9.95015516933665", + "point": "53.37427080578892,9.919862259108903", + "startLcPosition": "211", + "impact": { + "lower": "Sunderblick", + "upper": "Dibbersen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Hamburg", + "title": "A1 | Dibbersen - Sunderblick", + "startTimestamp": "2026-03-13T05:00:00+01:00", + "coordinate": { + "lat": 53.37427080578892, + "long": 9.919862259108903 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.03.26 um 05:00 Uhr", + "Ende: 11.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.10.26)", + "", + "A1: Bremen -> Hamburg, zwischen 2.5 km hinter AS Dibbersen und 0.1 km vor Sunderblick", + "", + "L\u00e4nge: 2.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A1, AS Seevetal-Hittfeld bis AD Buchholz, BW102E und BW103, Bauwerksarbeiten, Instandsetzung Br\u00fcckenbel\u00e4ge und Deckensanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.919862259, + 53.374270806 + ], + [ + 9.9283421, + 53.375158101 + ], + [ + 9.9323911, + 53.375581801 + ], + [ + 9.9337453, + 53.375723601 + ], + [ + 9.9399951, + 53.376377701 + ], + [ + 9.9432069, + 53.376713801 + ], + [ + 9.9474393, + 53.377156801 + ], + [ + 9.9487779, + 53.377296901 + ], + [ + 9.950155169, + 53.377441071 + ] + ] + } + }, + { + "identifier": "2025-007637--vi-bs.2026-03-13_05-00-00-000.devi-zus.2025-06-02_00-00-00-000_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.377580068169856,9.950114390697205,53.374397816758496,9.91982501027484", + "point": "53.377580068169856,9.950114390697205", + "startLcPosition": "212", + "impact": { + "lower": "Dibbersen", + "upper": "Sunderblick", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Bremen", + "title": "A1 | Sunderblick - Dibbersen", + "startTimestamp": "2026-03-13T05:00:00+01:00", + "coordinate": { + "lat": 53.377580068169856, + "long": 9.950114390697205 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.03.26 um 05:00 Uhr", + "Ende: 11.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.10.26)", + "", + "A1: Hamburg -> Bremen, zwischen 0.1 km hinter Sunderblick und 2.5 km vor AS Dibbersen", + "", + "L\u00e4nge: 2.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1, AS Seevetal-Hittfeld bis AD Buchholz, BW102E und BW103, Bauwerksarbeiten, Instandsetzung Br\u00fcckenbel\u00e4ge und Deckensanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.950114391, + 53.377580068 + ], + [ + 9.9489032, + 53.377452801 + ], + [ + 9.9451905, + 53.377062701 + ], + [ + 9.9431606, + 53.376849401 + ], + [ + 9.9399356, + 53.376510601 + ], + [ + 9.9337955, + 53.375865501 + ], + [ + 9.9324042, + 53.375719301 + ], + [ + 9.9283117, + 53.375289301 + ], + [ + 9.91982501, + 53.374397817 + ] + ] + } + }, + { + "identifier": "2024-061546--vi-bs.2026-04-21_05-00-00-000.devi-zus.2026-04-20_22-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.48105402907096,10.023204237551452,53.46691501136948,10.024456921879846", + "point": "53.48105402907096,10.023204237551452", + "startLcPosition": "221", + "impact": { + "lower": "Hamburg-Harburg", + "upper": "Hamburg-Stillhorn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Bremen", + "title": "A1 | Hamburg-Stillhorn - Hamburg-Harburg", + "startTimestamp": "2026-04-21T05:00:00+02:00", + "coordinate": { + "lat": 53.48105402907096, + "long": 10.023204237551452 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.04.26 um 05:00 Uhr", + "Ende: 29.04.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.30)", + "", + "A1: Hamburg -> Bremen, zwischen 0.3 km hinter Hamburg-Stillhorn und AS Hamburg-Harburg", + "", + "L\u00e4nge: 1.58 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1, HH S\u00fcderelbbr\u00fccke, Ersatzneubau und 8-streifige Erweiterung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.023204238, + 53.481054029 + ], + [ + 10.0231695, + 53.480997901 + ], + [ + 10.0229408, + 53.480581401 + ], + [ + 10.0227234, + 53.480081501 + ], + [ + 10.0225102, + 53.479435301 + ], + [ + 10.0224736, + 53.479278401 + ], + [ + 10.0224083, + 53.479016701 + ], + [ + 10.0223342, + 53.478564101 + ], + [ + 10.0222875, + 53.478188701 + ], + [ + 10.0222812, + 53.477611601 + ], + [ + 10.0223012, + 53.477286101 + ], + [ + 10.022304, + 53.477240501 + ], + [ + 10.0223581, + 53.476790001 + ], + [ + 10.0224302, + 53.476435201 + ], + [ + 10.0225163, + 53.475916301 + ], + [ + 10.023141, + 53.472997801 + ], + [ + 10.023555, + 53.471145401 + ], + [ + 10.0235748, + 53.471039701 + ], + [ + 10.0238337, + 53.469758401 + ], + [ + 10.0238559, + 53.469655501 + ], + [ + 10.024039, + 53.468899301 + ], + [ + 10.0241756, + 53.468245501 + ], + [ + 10.0242368, + 53.467954001 + ], + [ + 10.024456922, + 53.466915011 + ] + ] + } + }, + { + "identifier": "2024-054366--vi-bs.2026-03-18_05-00-00-000.devi-zus.2026-03-16_21-30-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.50912096405554,10.067338361145685,53.509626358381745,10.049690593544685", + "point": "53.50912096405554,10.067338361145685", + "startLcPosition": "224", + "impact": { + "lower": "Hamburg-Norderelbe", + "upper": "Hamburg-S\u00fcdost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " L\u00fcbeck -> Hamburg", + "title": "A1 | Hamburg-S\u00fcdost - Hamburg-Norderelbe", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 53.50912096405554, + "long": 10.067338361145685 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 19.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.31)", + "", + "A1: L\u00fcbeck -> Hamburg, zwischen 0.9 km hinter AD Hamburg-S\u00fcdost und 0.9 km vor AD Hamburg-Norderelbe", + "", + "L\u00e4nge: 1.17 km | Maximale Durchfahrtsbreite: 8.85 m", + "", + "A1, Norderelbbr\u00fccke, Ersatzneubau 12-streifige Erweiterung ( GST siehe Baustelleninfomationen )" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.067338361, + 53.509120964 + ], + [ + 10.0672233, + 53.509131801 + ], + [ + 10.0664778, + 53.509184701 + ], + [ + 10.0654984, + 53.509228701 + ], + [ + 10.064339, + 53.509276501 + ], + [ + 10.0638764, + 53.509286401 + ], + [ + 10.0632783, + 53.509302501 + ], + [ + 10.0570535, + 53.509442901 + ], + [ + 10.0549722, + 53.509495101 + ], + [ + 10.0549491, + 53.509495701 + ], + [ + 10.0542456, + 53.509511001 + ], + [ + 10.0539893, + 53.509516601 + ], + [ + 10.0531812, + 53.509534201 + ], + [ + 10.0509932, + 53.509595001 + ], + [ + 10.0504385, + 53.509608901 + ], + [ + 10.049690594, + 53.509626358 + ] + ] + } + }, + { + "identifier": "2026-014821--vi-bs.2026-04-09_20-00-00-000.devi-bs.2026-04-07_20-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.51143868858631,10.102964343808683,53.517635724978454,10.118453796381766", + "point": "53.51143868858631,10.102964343808683", + "startLcPosition": "226", + "impact": { + "lower": "Hamburg-Billstedt", + "upper": "Tunnel Moorfleet", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> L\u00fcbeck", + "title": "A1 | Tunnel Moorfleet - Hamburg-Billstedt", + "coordinate": { + "lat": 53.51143868858631, + "long": 10.102964343808683 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 04:30 Uhr.", + "", + "A1: Hamburg -> L\u00fcbeck, zwischen Tunnel Moorfleet und 1.4 km vor AS Hamburg-Billstedt", + "", + "L\u00e4nge: 1.24 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A1 von Tunnel Moorfleet (Tunnel), AS Billstedt bis HH-Kreuz S\u00fcdost, Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.102964344, + 53.511438689 + ], + [ + 10.104576, + 53.511953001 + ], + [ + 10.1074329, + 53.512944601 + ], + [ + 10.1092872, + 53.513631501 + ], + [ + 10.1101778, + 53.513979601 + ], + [ + 10.111465, + 53.514482501 + ], + [ + 10.1132955, + 53.515248001 + ], + [ + 10.1155585, + 53.516244801 + ], + [ + 10.1166473, + 53.516752201 + ], + [ + 10.1168509, + 53.516849501 + ], + [ + 10.1177215, + 53.517268001 + ], + [ + 10.118453796, + 53.517635725 + ] + ] + } + }, + { + "identifier": "2026-014821--vi-bs.2026-04-09_20-00-00-000.devi-bs.2026-04-07_20-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.51686991088966,10.116506643549373,53.51097587410137,10.100990953763162", + "point": "53.51686991088966,10.116506643549373", + "startLcPosition": "227", + "impact": { + "lower": "Hamburg-Moorfleet", + "upper": "Hamburg-Billstedt", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " L\u00fcbeck -> Hamburg", + "title": "A1 | Hamburg-Billstedt - Hamburg-Moorfleet", + "coordinate": { + "lat": 53.51686991088966, + "long": 10.116506643549373 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 04:30 Uhr.", + "", + "A1: L\u00fcbeck -> Hamburg, zwischen 1.6 km hinter AS Hamburg-Billstedt und 0.7 km vor AS Hamburg-Moorfleet", + "", + "L\u00e4nge: 1.22 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A1 von Tunnel Moorfleet (Tunnel), AS Billstedt bis HH-Kreuz S\u00fcdost, Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.116506644, + 53.516869911 + ], + [ + 10.11539, + 53.516350101 + ], + [ + 10.1131638, + 53.515367701 + ], + [ + 10.1113366, + 53.514612801 + ], + [ + 10.1100545, + 53.514104001 + ], + [ + 10.1100411, + 53.514098801 + ], + [ + 10.109287, + 53.513804201 + ], + [ + 10.1073122, + 53.513071001 + ], + [ + 10.1044627, + 53.512075301 + ], + [ + 10.101182, + 53.511031701 + ], + [ + 10.100990954, + 53.510975874 + ] + ] + } + }, + { + "identifier": "2026-016381--vi-bs.2026-04-23_09-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.531494168823144,10.137417314096856,53.529949223958226,10.135897572106956", + "point": "53.531494168823144,10.137417314096856", + "startLcPosition": "228", + "impact": { + "lower": "Hamburg-Billstedt", + "upper": "Hamburg-\u00d6jendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " L\u00fcbeck -> Hamburg", + "title": "A1 | Hamburg-\u00d6jendorf - Hamburg-Billstedt", + "coordinate": { + "lat": 53.531494168823144, + "long": 10.137417314096856 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 09:30 bis 12:30 Uhr", + "", + "A1: L\u00fcbeck -> Hamburg, zwischen 1.5 km hinter AS Hamburg-\u00d6jendorf und 0.4 km vor AS Hamburg-Billstedt", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 von Hamburg-\u00d6jendorf (AS) nach Hamburg-Billstedt (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.137417314, + 53.531494169 + ], + [ + 10.1363683, + 53.530406401 + ], + [ + 10.1363142, + 53.530349901 + ], + [ + 10.135897572, + 53.529949224 + ] + ] + } + }, + { + "identifier": "2026-017248--vi-bs.2026-04-09_07-00-00-000.devi-zus.2026-04-09_07-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.565623581640054,10.186470241760619,53.91229783081395,10.70093628599107", + "point": "53.565623581640054,10.186470241760619", + "startLcPosition": "229", + "impact": { + "lower": "Bad Schwartau", + "upper": "Hamburg-Ost", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Fehmarn", + "title": "A1 | Hamburg-Ost - Bad Schwartau", + "coordinate": { + "lat": 53.565623581640054, + "long": 10.186470241760619 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 18:00 Uhr", + "10.04.26 von 07:00 bis 12:00 Uhr", + "13.04.26 von 07:00 bis 18:00 Uhr", + "14.04.26 von 07:00 bis 18:00 Uhr", + "15.04.26 von 07:00 bis 18:00 Uhr", + "16.04.26 von 07:00 bis 18:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "", + "A1: Hamburg -> Fehmarn, zwischen 1.8 km hinter AK Hamburg-Ost und 1.4 km vor AD Bad Schwartau", + "", + "L\u00e4nge: 53.63 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 von Hamburg-Ost (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.186470242, + 53.565623582 + ], + [ + 10.1869411, + 53.565858201 + ], + [ + 10.188236, + 53.566616501 + ], + [ + 10.1892373, + 53.567263201 + ], + [ + 10.1901764, + 53.567926401 + ], + [ + 10.1914245, + 53.568918401 + ], + [ + 10.1915112, + 53.568987301 + ], + [ + 10.1957068, + 53.572617401 + ], + [ + 10.1969381, + 53.573682501 + ], + [ + 10.1973037, + 53.573998701 + ], + [ + 10.1988985, + 53.575378101 + ], + [ + 10.2004194, + 53.576725401 + ], + [ + 10.2008987, + 53.577132401 + ], + [ + 10.2024016, + 53.578433701 + ], + [ + 10.2132733, + 53.587809101 + ], + [ + 10.2137047, + 53.588175701 + ], + [ + 10.2228745, + 53.596125701 + ], + [ + 10.2234243, + 53.596604801 + ], + [ + 10.2254122, + 53.598298001 + ], + [ + 10.2264315, + 53.599295501 + ], + [ + 10.2269241, + 53.599791501 + ], + [ + 10.2274027, + 53.600298601 + ], + [ + 10.2276868, + 53.600619001 + ], + [ + 10.2279496, + 53.600949301 + ], + [ + 10.2284461, + 53.601587001 + ], + [ + 10.2287757, + 53.602095301 + ], + [ + 10.2290797, + 53.602601801 + ], + [ + 10.2294409, + 53.603273001 + ], + [ + 10.2297775, + 53.603936901 + ], + [ + 10.2300391, + 53.604546201 + ], + [ + 10.2302694, + 53.605154001 + ], + [ + 10.2310222, + 53.607785501 + ], + [ + 10.2310925, + 53.608031301 + ], + [ + 10.2321367, + 53.611681301 + ], + [ + 10.2325997, + 53.613316001 + ], + [ + 10.2332835, + 53.615692901 + ], + [ + 10.2333516, + 53.615892501 + ], + [ + 10.2336037, + 53.616632001 + ], + [ + 10.2338671, + 53.617179201 + ], + [ + 10.2343246, + 53.618038001 + ], + [ + 10.2347042, + 53.618609501 + ], + [ + 10.2352309, + 53.619306801 + ], + [ + 10.2358693, + 53.620013601 + ], + [ + 10.2366515, + 53.620751801 + ], + [ + 10.2374112, + 53.621410901 + ], + [ + 10.2395345, + 53.622900101 + ], + [ + 10.2444131, + 53.626219401 + ], + [ + 10.2497097, + 53.629768801 + ], + [ + 10.2545668, + 53.633065301 + ], + [ + 10.2562724, + 53.634233201 + ], + [ + 10.2579468, + 53.635371401 + ], + [ + 10.2582422, + 53.635570701 + ], + [ + 10.2586877, + 53.635864901 + ], + [ + 10.2593374, + 53.636271201 + ], + [ + 10.2598403, + 53.636564401 + ], + [ + 10.2604842, + 53.636899901 + ], + [ + 10.2610661, + 53.637189201 + ], + [ + 10.2617413, + 53.637495001 + ], + [ + 10.2625793, + 53.637849501 + ], + [ + 10.2633011, + 53.638134301 + ], + [ + 10.2640642, + 53.638400301 + ], + [ + 10.2651143, + 53.638732201 + ], + [ + 10.2657849, + 53.638921401 + ], + [ + 10.2678957, + 53.639506801 + ], + [ + 10.2693723, + 53.639922301 + ], + [ + 10.2724463, + 53.640755401 + ], + [ + 10.2737312, + 53.641112501 + ], + [ + 10.2745553, + 53.641335101 + ], + [ + 10.2754063, + 53.641586801 + ], + [ + 10.2762593, + 53.641865001 + ], + [ + 10.2772502, + 53.642202501 + ], + [ + 10.2778622, + 53.642436601 + ], + [ + 10.2785142, + 53.642710201 + ], + [ + 10.2791292, + 53.642985401 + ], + [ + 10.2800086, + 53.643423301 + ], + [ + 10.2806019, + 53.643754801 + ], + [ + 10.2811845, + 53.644087801 + ], + [ + 10.2817563, + 53.644432001 + ], + [ + 10.2826854, + 53.645077001 + ], + [ + 10.2836145, + 53.645721901 + ], + [ + 10.286411, + 53.647814501 + ], + [ + 10.2882405, + 53.649184601 + ], + [ + 10.2894964, + 53.650133601 + ], + [ + 10.2913213, + 53.651483701 + ], + [ + 10.2925884, + 53.652465001 + ], + [ + 10.2936216, + 53.653310101 + ], + [ + 10.2948312, + 53.654451601 + ], + [ + 10.2960838, + 53.655860901 + ], + [ + 10.297473, + 53.657837601 + ], + [ + 10.2975949, + 53.658011101 + ], + [ + 10.2995014, + 53.660723701 + ], + [ + 10.3021272, + 53.664459401 + ], + [ + 10.3052153, + 53.668852501 + ], + [ + 10.3069114, + 53.671265101 + ], + [ + 10.3092416, + 53.674579401 + ], + [ + 10.310602, + 53.676514301 + ], + [ + 10.3124045, + 53.679077901 + ], + [ + 10.3141717, + 53.681591001 + ], + [ + 10.3153922, + 53.683326601 + ], + [ + 10.3170035, + 53.685617901 + ], + [ + 10.3184266, + 53.687641401 + ], + [ + 10.3206709, + 53.690832401 + ], + [ + 10.3215192, + 53.692049101 + ], + [ + 10.322176, + 53.692991301 + ], + [ + 10.3233698, + 53.694703701 + ], + [ + 10.3236765, + 53.695198301 + ], + [ + 10.3243632, + 53.696279501 + ], + [ + 10.3247055, + 53.696868001 + ], + [ + 10.32506, + 53.697477301 + ], + [ + 10.3255164, + 53.698262001 + ], + [ + 10.3261646, + 53.699376201 + ], + [ + 10.3269107, + 53.700658601 + ], + [ + 10.3275972, + 53.701838701 + ], + [ + 10.3291018, + 53.704424801 + ], + [ + 10.3322065, + 53.709760701 + ], + [ + 10.3325906, + 53.710420801 + ], + [ + 10.3336824, + 53.712297001 + ], + [ + 10.333916, + 53.712698401 + ], + [ + 10.3341737, + 53.713094001 + ], + [ + 10.3345305, + 53.713592701 + ], + [ + 10.3348142, + 53.713951801 + ], + [ + 10.3351999, + 53.714414601 + ], + [ + 10.3365113, + 53.715934401 + ], + [ + 10.3369657, + 53.716462301 + ], + [ + 10.3386889, + 53.718384301 + ], + [ + 10.340045, + 53.719963601 + ], + [ + 10.3421994, + 53.722374901 + ], + [ + 10.343752, + 53.724143001 + ], + [ + 10.3471748, + 53.727991001 + ], + [ + 10.3505698, + 53.731817701 + ], + [ + 10.354136, + 53.735843701 + ], + [ + 10.3578017, + 53.740021801 + ], + [ + 10.3615504, + 53.744256601 + ], + [ + 10.3631373, + 53.746063401 + ], + [ + 10.3641939, + 53.747244001 + ], + [ + 10.3657196, + 53.748765401 + ], + [ + 10.3667912, + 53.749691801 + ], + [ + 10.36834, + 53.750965601 + ], + [ + 10.3691778, + 53.751643001 + ], + [ + 10.3700461, + 53.752359201 + ], + [ + 10.3752027, + 53.756497401 + ], + [ + 10.3805275, + 53.760836601 + ], + [ + 10.3831379, + 53.762875001 + ], + [ + 10.3846275, + 53.763860601 + ], + [ + 10.3855708, + 53.764445101 + ], + [ + 10.3909826, + 53.767446301 + ], + [ + 10.3977302, + 53.771148401 + ], + [ + 10.4022636, + 53.773600501 + ], + [ + 10.4069303, + 53.776242201 + ], + [ + 10.4086999, + 53.777377701 + ], + [ + 10.4102004, + 53.778537201 + ], + [ + 10.4118678, + 53.779808201 + ], + [ + 10.4124055, + 53.780225901 + ], + [ + 10.4127644, + 53.780504701 + ], + [ + 10.413726, + 53.781274201 + ], + [ + 10.4155266, + 53.782650301 + ], + [ + 10.4177401, + 53.784365301 + ], + [ + 10.4196098, + 53.785791401 + ], + [ + 10.419977, + 53.786073801 + ], + [ + 10.420523, + 53.786485201 + ], + [ + 10.4208029, + 53.786697301 + ], + [ + 10.4232797, + 53.788574001 + ], + [ + 10.4246503, + 53.789483201 + ], + [ + 10.4258818, + 53.790201201 + ], + [ + 10.4268325, + 53.790693801 + ], + [ + 10.4275831, + 53.791082701 + ], + [ + 10.4294845, + 53.792057101 + ], + [ + 10.4297877, + 53.792212501 + ], + [ + 10.4317103, + 53.793197801 + ], + [ + 10.4326683, + 53.793684001 + ], + [ + 10.4358231, + 53.795285001 + ], + [ + 10.4404723, + 53.797641901 + ], + [ + 10.444693, + 53.799819401 + ], + [ + 10.4448615, + 53.799903101 + ], + [ + 10.4480141, + 53.801454301 + ], + [ + 10.4500222, + 53.802502201 + ], + [ + 10.4517441, + 53.803400601 + ], + [ + 10.452895, + 53.803970501 + ], + [ + 10.4539606, + 53.804530101 + ], + [ + 10.4551034, + 53.805150201 + ], + [ + 10.4561515, + 53.805850901 + ], + [ + 10.4583271, + 53.807361001 + ], + [ + 10.4611686, + 53.809564101 + ], + [ + 10.4618801, + 53.810082201 + ], + [ + 10.4633464, + 53.811175601 + ], + [ + 10.4659135, + 53.812851501 + ], + [ + 10.4690824, + 53.814544701 + ], + [ + 10.4718724, + 53.815783601 + ], + [ + 10.4745844, + 53.816783001 + ], + [ + 10.4770687, + 53.817549001 + ], + [ + 10.4784458, + 53.817925301 + ], + [ + 10.47958, + 53.818211301 + ], + [ + 10.4802278, + 53.818361901 + ], + [ + 10.4807625, + 53.818480201 + ], + [ + 10.4817602, + 53.818683301 + ], + [ + 10.4827577, + 53.818872501 + ], + [ + 10.483823, + 53.819054101 + ], + [ + 10.4849377, + 53.819224301 + ], + [ + 10.4866178, + 53.819446001 + ], + [ + 10.4882969, + 53.819617601 + ], + [ + 10.4900041, + 53.819757901 + ], + [ + 10.4908745, + 53.819806201 + ], + [ + 10.4917483, + 53.819843801 + ], + [ + 10.4932525, + 53.819892401 + ], + [ + 10.4934324, + 53.819896501 + ], + [ + 10.5010484, + 53.820005801 + ], + [ + 10.5046692, + 53.820050601 + ], + [ + 10.507806, + 53.820088401 + ], + [ + 10.508656, + 53.820116101 + ], + [ + 10.5102198, + 53.820142101 + ], + [ + 10.5109878, + 53.820159701 + ], + [ + 10.5137772, + 53.820181901 + ], + [ + 10.5142113, + 53.820189801 + ], + [ + 10.5185634, + 53.820269201 + ], + [ + 10.520177, + 53.820351301 + ], + [ + 10.5217907, + 53.820486701 + ], + [ + 10.5251074, + 53.820912001 + ], + [ + 10.5255603, + 53.820985201 + ], + [ + 10.5290152, + 53.821752001 + ], + [ + 10.5319814, + 53.822668201 + ], + [ + 10.5323542, + 53.822792601 + ], + [ + 10.5348368, + 53.823621101 + ], + [ + 10.5351349, + 53.823721601 + ], + [ + 10.53865, + 53.824906101 + ], + [ + 10.5445646, + 53.826899101 + ], + [ + 10.5488152, + 53.828577201 + ], + [ + 10.5514485, + 53.829802201 + ], + [ + 10.55399, + 53.830984401 + ], + [ + 10.55875, + 53.833418901 + ], + [ + 10.5630844, + 53.835625601 + ], + [ + 10.5635594, + 53.835879801 + ], + [ + 10.5676358, + 53.838019101 + ], + [ + 10.5702688, + 53.839287101 + ], + [ + 10.5720773, + 53.840102701 + ], + [ + 10.574739, + 53.841311801 + ], + [ + 10.5771449, + 53.842404701 + ], + [ + 10.5785004, + 53.843039801 + ], + [ + 10.5794181, + 53.843469701 + ], + [ + 10.5808501, + 53.844140601 + ], + [ + 10.5834113, + 53.845312901 + ], + [ + 10.5847212, + 53.845916301 + ], + [ + 10.5855276, + 53.846284101 + ], + [ + 10.5864991, + 53.846730501 + ], + [ + 10.5866699, + 53.846808901 + ], + [ + 10.5889225, + 53.847842701 + ], + [ + 10.5921942, + 53.849355301 + ], + [ + 10.5932286, + 53.849831201 + ], + [ + 10.5943266, + 53.850336401 + ], + [ + 10.5952765, + 53.850752301 + ], + [ + 10.5976645, + 53.851864101 + ], + [ + 10.6016861, + 53.853698801 + ], + [ + 10.603538, + 53.854555601 + ], + [ + 10.6054012, + 53.855408501 + ], + [ + 10.6070204, + 53.856149101 + ], + [ + 10.6087229, + 53.856933201 + ], + [ + 10.6098859, + 53.857427501 + ], + [ + 10.6108945, + 53.857876201 + ], + [ + 10.6125981, + 53.858605401 + ], + [ + 10.6149327, + 53.859526801 + ], + [ + 10.6159408, + 53.859927001 + ], + [ + 10.6188115, + 53.861066401 + ], + [ + 10.620062, + 53.861566501 + ], + [ + 10.6228871, + 53.862682701 + ], + [ + 10.6240099, + 53.863126401 + ], + [ + 10.625665, + 53.863781201 + ], + [ + 10.6261498, + 53.863973001 + ], + [ + 10.6272104, + 53.864403601 + ], + [ + 10.6279836, + 53.864710701 + ], + [ + 10.6304618, + 53.865742001 + ], + [ + 10.6310112, + 53.865970601 + ], + [ + 10.6327009, + 53.866687801 + ], + [ + 10.6356257, + 53.867951701 + ], + [ + 10.6362214, + 53.868206301 + ], + [ + 10.6380855, + 53.868988601 + ], + [ + 10.6393479, + 53.869524501 + ], + [ + 10.6429441, + 53.871059401 + ], + [ + 10.6476753, + 53.873086901 + ], + [ + 10.6478167, + 53.873146301 + ], + [ + 10.6549533, + 53.876167201 + ], + [ + 10.6560611, + 53.876663201 + ], + [ + 10.6571696, + 53.877196101 + ], + [ + 10.6583369, + 53.877792801 + ], + [ + 10.6592534, + 53.878325901 + ], + [ + 10.6599993, + 53.878779601 + ], + [ + 10.6604566, + 53.879084701 + ], + [ + 10.6606136, + 53.879193001 + ], + [ + 10.6611502, + 53.879575301 + ], + [ + 10.6615786, + 53.879898201 + ], + [ + 10.6619756, + 53.880210601 + ], + [ + 10.6627402, + 53.880853301 + ], + [ + 10.6629104, + 53.880994301 + ], + [ + 10.6631639, + 53.881237601 + ], + [ + 10.6633893, + 53.881456201 + ], + [ + 10.6638768, + 53.881949701 + ], + [ + 10.6641003, + 53.882198701 + ], + [ + 10.6643621, + 53.882513401 + ], + [ + 10.6647262, + 53.882936301 + ], + [ + 10.6651158, + 53.883428401 + ], + [ + 10.6651804, + 53.883510001 + ], + [ + 10.6657103, + 53.884280301 + ], + [ + 10.6658759, + 53.884520901 + ], + [ + 10.6665444, + 53.885522601 + ], + [ + 10.6675816, + 53.887180301 + ], + [ + 10.6695835, + 53.890374901 + ], + [ + 10.6706197, + 53.892013301 + ], + [ + 10.671403, + 53.893251801 + ], + [ + 10.6719286, + 53.894066101 + ], + [ + 10.6722166, + 53.894458601 + ], + [ + 10.6725683, + 53.894843001 + ], + [ + 10.6734313, + 53.895693501 + ], + [ + 10.6739779, + 53.896132801 + ], + [ + 10.6745663, + 53.896537801 + ], + [ + 10.6773244, + 53.898347401 + ], + [ + 10.6785871, + 53.899158001 + ], + [ + 10.6811348, + 53.900803201 + ], + [ + 10.6816274, + 53.901135401 + ], + [ + 10.6821159, + 53.901477801 + ], + [ + 10.6825582, + 53.901830801 + ], + [ + 10.6829519, + 53.902207101 + ], + [ + 10.6833701, + 53.902604001 + ], + [ + 10.6838196, + 53.903095901 + ], + [ + 10.6839815, + 53.903274401 + ], + [ + 10.6840245, + 53.903322901 + ], + [ + 10.684654, + 53.903977701 + ], + [ + 10.6851287, + 53.904472601 + ], + [ + 10.6852133, + 53.904573101 + ], + [ + 10.685477, + 53.904827301 + ], + [ + 10.6857704, + 53.905078601 + ], + [ + 10.6866404, + 53.905731001 + ], + [ + 10.6871556, + 53.906058601 + ], + [ + 10.6876607, + 53.906352301 + ], + [ + 10.6880173, + 53.906546801 + ], + [ + 10.6887133, + 53.906907201 + ], + [ + 10.6897394, + 53.907353901 + ], + [ + 10.6913474, + 53.907924201 + ], + [ + 10.6922359, + 53.908224701 + ], + [ + 10.6927635, + 53.908379201 + ], + [ + 10.6935254, + 53.908630701 + ], + [ + 10.6942112, + 53.908880401 + ], + [ + 10.6947129, + 53.909082101 + ], + [ + 10.6956031, + 53.909493001 + ], + [ + 10.6961322, + 53.909768101 + ], + [ + 10.6975211, + 53.910550601 + ], + [ + 10.6983188, + 53.911007101 + ], + [ + 10.6992559, + 53.911526601 + ], + [ + 10.7002566, + 53.912016401 + ], + [ + 10.700936286, + 53.912297831 + ] + ] + } + }, + { + "identifier": "2025-029519--vi-fbm.2026-03-18_00-00-00-000.devi-zus.2026-03-30_00-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.72297714660975,10.342728225788742,53.768928834473165,10.39368449908937", + "point": "53.72297714660975,10.342728225788742", + "startLcPosition": "237", + "impact": { + "lower": "Barnitztal", + "upper": "Bargteheide", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> L\u00fcbeck", + "title": "A1 | Bargteheide - Barnitztal", + "startTimestamp": "2026-03-18T00:00:00+01:00", + "coordinate": { + "lat": 53.72297714660975, + "long": 10.342728225788742 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 00:00 Uhr", + "Ende: 03.05.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.06.28)", + "", + "A1: Hamburg -> L\u00fcbeck, zwischen 0.6 km hinter AS Bargteheide und 0.6 km vor Barnitztal", + "", + "L\u00e4nge: 6.16 km | Maximale Durchfahrtsbreite: 7.2 m", + "", + "A1, AK Bargteheide - AS Bad Oldesloe, Erneuerung der BW 40,41 und 42 sowie die grundhafte Erneuerung der Fahrbahn Rifa S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.342728226, + 53.722977147 + ], + [ + 10.343752, + 53.724143001 + ], + [ + 10.3471748, + 53.727991001 + ], + [ + 10.3505698, + 53.731817701 + ], + [ + 10.354136, + 53.735843701 + ], + [ + 10.3578017, + 53.740021801 + ], + [ + 10.3615504, + 53.744256601 + ], + [ + 10.3631373, + 53.746063401 + ], + [ + 10.3641939, + 53.747244001 + ], + [ + 10.3657196, + 53.748765401 + ], + [ + 10.3667912, + 53.749691801 + ], + [ + 10.36834, + 53.750965601 + ], + [ + 10.3691778, + 53.751643001 + ], + [ + 10.3700461, + 53.752359201 + ], + [ + 10.3752027, + 53.756497401 + ], + [ + 10.3805275, + 53.760836601 + ], + [ + 10.3831379, + 53.762875001 + ], + [ + 10.3846275, + 53.763860601 + ], + [ + 10.3855708, + 53.764445101 + ], + [ + 10.3909826, + 53.767446301 + ], + [ + 10.393684499, + 53.768928834 + ] + ] + } + }, + { + "identifier": "2025-029519--vi-bs.2026-04-14_20-00-00-000.devi-zus.2026-03-30_00-00-00-000_001.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.768519681226365,10.392938791972412,53.7690509693203,10.393907101896868", + "point": "53.768519681226365,10.392938791972412", + "startLcPosition": "238", + "impact": { + "lower": "Barnitztal", + "upper": "Sylsbek", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> L\u00fcbeck", + "title": "A1 | Sylsbek - Barnitztal", + "coordinate": { + "lat": 53.768519681226365, + "long": 10.392938791972412 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A1: Hamburg -> L\u00fcbeck, zwischen 2.1 km hinter Sylsbek und 0.6 km vor Barnitztal", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A1, AK Bargteheide - AS Bad Oldesloe, Erneuerung der BW 40,41 und 42 sowie die grundhafte Erneuerung der Fahrbahn Rifa S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.392938792, + 53.768519681 + ], + [ + 10.393907102, + 53.769050969 + ] + ] + } + }, + { + "identifier": "2025-029519--vi-fbm.2026-03-18_00-00-00-000.devi-zus.2026-03-30_00-00-00-000_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.769065512738955,10.39347051738112,53.72304682752506,10.342499349403175", + "point": "53.769065512738955,10.39347051738112", + "startLcPosition": "239", + "impact": { + "lower": "Bargteheide", + "upper": "Barnitztal", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " L\u00fcbeck -> Hamburg", + "title": "A1 | Barnitztal - Bargteheide", + "startTimestamp": "2026-03-18T00:00:00+01:00", + "coordinate": { + "lat": 53.769065512738955, + "long": 10.39347051738112 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 00:00 Uhr", + "Ende: 03.05.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.06.28)", + "", + "A1: L\u00fcbeck -> Hamburg, zwischen 0.6 km hinter Barnitztal und 0.6 km vor AS Bargteheide", + "", + "L\u00e4nge: 6.16 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A1, AK Bargteheide - AS Bad Oldesloe, Erneuerung der BW 40,41 und 42 sowie die grundhafte Erneuerung der Fahrbahn Rifa S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.393470517, + 53.769065513 + ], + [ + 10.3907734, + 53.767581101 + ], + [ + 10.3853698, + 53.764588201 + ], + [ + 10.3844335, + 53.764030201 + ], + [ + 10.3829405, + 53.763028101 + ], + [ + 10.38034, + 53.760991201 + ], + [ + 10.37505, + 53.756673201 + ], + [ + 10.372766, + 53.754812501 + ], + [ + 10.3706544, + 53.753101201 + ], + [ + 10.3699676, + 53.752543001 + ], + [ + 10.3689409, + 53.751715501 + ], + [ + 10.367986, + 53.750937601 + ], + [ + 10.3669611, + 53.750106001 + ], + [ + 10.366329, + 53.749582701 + ], + [ + 10.3655116, + 53.748852401 + ], + [ + 10.3639352, + 53.747305101 + ], + [ + 10.3626636, + 53.745888301 + ], + [ + 10.3613398, + 53.744344901 + ], + [ + 10.3575086, + 53.740130501 + ], + [ + 10.3538506, + 53.735920301 + ], + [ + 10.3502717, + 53.731893101 + ], + [ + 10.3468854, + 53.728066201 + ], + [ + 10.3452461, + 53.726204801 + ], + [ + 10.3440885, + 53.724890201 + ], + [ + 10.3435174, + 53.724241701 + ], + [ + 10.342499349, + 53.723046828 + ] + ] + } + }, + { + "identifier": "2025-029519--vi-bs.2026-04-14_20-00-00-000.devi-zus.2026-03-30_00-00-00-000_001.de27", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.76945086145941,10.394170730297976,53.76862510966972,10.392670290840199", + "point": "53.76945086145941,10.394170730297976", + "startLcPosition": "239", + "impact": { + "lower": "Sylsbek", + "upper": "Barnitztal", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " L\u00fcbeck -> Hamburg", + "title": "A1 | Barnitztal - Sylsbek", + "coordinate": { + "lat": 53.76945086145941, + "long": 10.394170730297976 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A1: L\u00fcbeck -> Hamburg, zwischen 0.5 km hinter Barnitztal und 2.1 km vor Sylsbek", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1, AK Bargteheide - AS Bad Oldesloe, Erneuerung der BW 40,41 und 42 sowie die grundhafte Erneuerung der Fahrbahn Rifa S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.39417073, + 53.769450861 + ], + [ + 10.392670291, + 53.76862511 + ] + ] + } + }, + { + "identifier": "2026-003471--vi-bs.2026-04-23_19-00-00-000.devi-zus.2026-04-23_19-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.851526624805544,10.59651962406816,53.84932112267386,10.591711880450182", + "point": "53.851526624805544,10.59651962406816", + "startLcPosition": "245", + "impact": { + "lower": "Reinfeld", + "upper": "L\u00fcbeck-Moisling", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " L\u00fcbeck -> Hamburg", + "title": "A1 | L\u00fcbeck-Moisling - Reinfeld", + "coordinate": { + "lat": 53.851526624805544, + "long": 10.59651962406816 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 06:00 bis 14:00 Uhr", + "28.04.26 von 06:00 bis 14:00 Uhr", + "", + "A1: L\u00fcbeck -> Hamburg, zwischen 2.2 km hinter AS L\u00fcbeck-Moisling und 6.7 km vor AS Reinfeld", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 von L\u00fcbeck (AK) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.596519624, + 53.851526625 + ], + [ + 10.5950924, + 53.850869301 + ], + [ + 10.5940932, + 53.850413801 + ], + [ + 10.5929845, + 53.849909501 + ], + [ + 10.5920075, + 53.849457601 + ], + [ + 10.59171188, + 53.849321123 + ] + ] + } + }, + { + "identifier": "2026-003471--vi-bs.2026-04-23_19-00-00-000.devi-zus.2026-04-23_19-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.853716653013386,10.601302098053592,53.84829240929348,10.58948374303427", + "point": "53.853716653013386,10.601302098053592", + "startLcPosition": "245", + "impact": { + "lower": "Reinfeld", + "upper": "L\u00fcbeck-Moisling", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " L\u00fcbeck -> Hamburg", + "title": "A1 | L\u00fcbeck-Moisling - Reinfeld", + "coordinate": { + "lat": 53.853716653013386, + "long": 10.601302098053592 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 19:00 bis zum 24.04.26 06:00 Uhr.", + "27.04.26 19:00 bis zum 28.04.26 06:00 Uhr.", + "", + "A1: L\u00fcbeck -> Hamburg, zwischen 1.8 km hinter AS L\u00fcbeck-Moisling und 6.5 km vor AS Reinfeld", + "", + "L\u00e4nge: 0.98 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A1 von L\u00fcbeck (AK) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.601302098, + 53.853716653 + ], + [ + 10.6010742, + 53.853611101 + ], + [ + 10.5975171, + 53.851986001 + ], + [ + 10.5950924, + 53.850869301 + ], + [ + 10.5940932, + 53.850413801 + ], + [ + 10.5929845, + 53.849909501 + ], + [ + 10.5920075, + 53.849457601 + ], + [ + 10.589483743, + 53.848292409 + ] + ] + } + }, + { + "identifier": "2024-035081--vi-bs.2025-02-03_06-00-00-000.devi-zus.2025-02-01_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.91684158363698,10.719671906862233,53.979991574570185,10.732895035626923", + "point": "53.91684158363698,10.719671906862233", + "startLcPosition": "247", + "impact": { + "lower": "Pansdorf", + "upper": "Bad Schwartau", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " L\u00fcbeck -> Fehmarn", + "title": "A1 | Bad Schwartau - Pansdorf", + "startTimestamp": "2025-02-03T06:00:00+01:00", + "coordinate": { + "lat": 53.91684158363698, + "long": 10.719671906862233 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.02.25 um 06:00 Uhr", + "Ende: 27.04.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.06.26)", + "", + "A1: L\u00fcbeck -> Fehmarn, zwischen 2.4 km hinter AS Bad Schwartau und 2.9 km vor AS Pansdorf", + "", + "L\u00e4nge: 7.78 km | Maximale Durchfahrtsbreite: 5.25 m", + "", + "A1, AS Seeretz bis AS Scharbeutz, Rifa Nord, Grundhafte Erneuerung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.719671907, + 53.916841584 + ], + [ + 10.7199554, + 53.916962801 + ], + [ + 10.7204483, + 53.917195901 + ], + [ + 10.7208741, + 53.917416901 + ], + [ + 10.7216412, + 53.917876001 + ], + [ + 10.7220189, + 53.918107901 + ], + [ + 10.7226058, + 53.918525901 + ], + [ + 10.722984, + 53.918825901 + ], + [ + 10.7234114, + 53.919189101 + ], + [ + 10.7239668, + 53.919727001 + ], + [ + 10.7240473, + 53.919832501 + ], + [ + 10.7244818, + 53.920343801 + ], + [ + 10.7248557, + 53.920880101 + ], + [ + 10.7249461, + 53.921026601 + ], + [ + 10.7253859, + 53.921823201 + ], + [ + 10.7256222, + 53.922419401 + ], + [ + 10.7257481, + 53.922753201 + ], + [ + 10.7258736, + 53.923193301 + ], + [ + 10.7260957, + 53.923971901 + ], + [ + 10.7265038, + 53.925293901 + ], + [ + 10.7269404, + 53.926435501 + ], + [ + 10.7272698, + 53.927159601 + ], + [ + 10.7273404, + 53.927298101 + ], + [ + 10.7278345, + 53.928162901 + ], + [ + 10.7280998, + 53.928580101 + ], + [ + 10.7283947, + 53.928988601 + ], + [ + 10.729027, + 53.929771601 + ], + [ + 10.7297693, + 53.930592001 + ], + [ + 10.7303098, + 53.931104701 + ], + [ + 10.7308486, + 53.931578801 + ], + [ + 10.7317645, + 53.932364601 + ], + [ + 10.7328213, + 53.933186501 + ], + [ + 10.7338216, + 53.933899401 + ], + [ + 10.7338669, + 53.933932201 + ], + [ + 10.7339745, + 53.934019601 + ], + [ + 10.734463, + 53.934358101 + ], + [ + 10.7360512, + 53.935424601 + ], + [ + 10.7372827, + 53.936260101 + ], + [ + 10.7400751, + 53.938147301 + ], + [ + 10.741517, + 53.939186601 + ], + [ + 10.7428515, + 53.940278901 + ], + [ + 10.7433345, + 53.940677501 + ], + [ + 10.7440487, + 53.941368101 + ], + [ + 10.7451433, + 53.942554001 + ], + [ + 10.7457332, + 53.943323801 + ], + [ + 10.7462384, + 53.944086901 + ], + [ + 10.7467125, + 53.944873801 + ], + [ + 10.7468159, + 53.945123801 + ], + [ + 10.7473011, + 53.946149001 + ], + [ + 10.7474659, + 53.946748801 + ], + [ + 10.747662, + 53.947462301 + ], + [ + 10.7477284, + 53.947786901 + ], + [ + 10.7477926, + 53.948100401 + ], + [ + 10.7478562, + 53.948625601 + ], + [ + 10.7478907, + 53.949012301 + ], + [ + 10.7478964, + 53.949255001 + ], + [ + 10.7479079, + 53.949755101 + ], + [ + 10.747898, + 53.950114601 + ], + [ + 10.7478479, + 53.950758701 + ], + [ + 10.7477953, + 53.951151501 + ], + [ + 10.7476568, + 53.951877701 + ], + [ + 10.7476019, + 53.952103401 + ], + [ + 10.7472579, + 53.953178501 + ], + [ + 10.7468673, + 53.954120501 + ], + [ + 10.7466893, + 53.954454001 + ], + [ + 10.7462257, + 53.955245601 + ], + [ + 10.745601, + 53.956190701 + ], + [ + 10.7454293, + 53.956409701 + ], + [ + 10.7448479, + 53.957151401 + ], + [ + 10.7440574, + 53.958068001 + ], + [ + 10.7428197, + 53.959340701 + ], + [ + 10.7419239, + 53.960232101 + ], + [ + 10.7415415, + 53.960612601 + ], + [ + 10.7407433, + 53.961407701 + ], + [ + 10.7404709, + 53.961686101 + ], + [ + 10.7391389, + 53.962998901 + ], + [ + 10.7379472, + 53.964306501 + ], + [ + 10.7376829, + 53.964596501 + ], + [ + 10.7368828, + 53.965531201 + ], + [ + 10.7361079, + 53.966594601 + ], + [ + 10.7354794, + 53.967528101 + ], + [ + 10.735061, + 53.968247501 + ], + [ + 10.7348376, + 53.968631601 + ], + [ + 10.7342484, + 53.969802601 + ], + [ + 10.7337582, + 53.970920701 + ], + [ + 10.7333666, + 53.972060401 + ], + [ + 10.7332705, + 53.972450001 + ], + [ + 10.7330116, + 53.973498801 + ], + [ + 10.7327817, + 53.974812801 + ], + [ + 10.732692, + 53.975807801 + ], + [ + 10.7326415, + 53.976705201 + ], + [ + 10.732655, + 53.977024801 + ], + [ + 10.7327168, + 53.978494101 + ], + [ + 10.732895036, + 53.979991575 + ] + ] + } + }, + { + "identifier": "2026-017248--vi-bs.2026-04-09_07-00-00-000.devi-zus.2026-04-09_07-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.912445911755846,10.700761813765073,53.56572980081073,10.186317668268924", + "point": "53.912445911755846,10.700761813765073", + "startLcPosition": "248", + "impact": { + "lower": "Hamburg-Ost", + "upper": "Bad Schwartau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fehmarn -> Hamburg", + "title": "A1 | Bad Schwartau - Hamburg-Ost", + "coordinate": { + "lat": 53.912445911755846, + "long": 10.700761813765073 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 18:00 Uhr", + "10.04.26 von 07:00 bis 12:00 Uhr", + "13.04.26 von 07:00 bis 18:00 Uhr", + "14.04.26 von 07:00 bis 18:00 Uhr", + "15.04.26 von 07:00 bis 18:00 Uhr", + "16.04.26 von 07:00 bis 18:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "", + "A1: Fehmarn -> Hamburg, zwischen 1.4 km hinter AD Bad Schwartau und 1.8 km vor AK Hamburg-Ost", + "", + "L\u00e4nge: 53.63 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 von Hamburg-Ost (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.700761814, + 53.912445912 + ], + [ + 10.7000376, + 53.912151001 + ], + [ + 10.6990142, + 53.911650701 + ], + [ + 10.6980629, + 53.911125001 + ], + [ + 10.6973332, + 53.910689601 + ], + [ + 10.6959874, + 53.909891901 + ], + [ + 10.695451, + 53.909614101 + ], + [ + 10.6945765, + 53.909223601 + ], + [ + 10.694033, + 53.909011801 + ], + [ + 10.6933702, + 53.908776701 + ], + [ + 10.6924177, + 53.908468101 + ], + [ + 10.6912609, + 53.908105101 + ], + [ + 10.6903544, + 53.907785101 + ], + [ + 10.6895477, + 53.907500401 + ], + [ + 10.6888447, + 53.907200601 + ], + [ + 10.6884361, + 53.907009201 + ], + [ + 10.6876863, + 53.906623801 + ], + [ + 10.6874308, + 53.906490101 + ], + [ + 10.6869062, + 53.906161601 + ], + [ + 10.6864305, + 53.905858701 + ], + [ + 10.6855353, + 53.905197101 + ], + [ + 10.6846917, + 53.904397201 + ], + [ + 10.6840071, + 53.903654401 + ], + [ + 10.6838396, + 53.903443301 + ], + [ + 10.683798, + 53.903398901 + ], + [ + 10.683469, + 53.903038301 + ], + [ + 10.682688, + 53.902289501 + ], + [ + 10.6822753, + 53.901930701 + ], + [ + 10.6818382, + 53.901594401 + ], + [ + 10.6813805, + 53.901261101 + ], + [ + 10.6809058, + 53.900937801 + ], + [ + 10.6783567, + 53.899281101 + ], + [ + 10.6770654, + 53.898451501 + ], + [ + 10.6742668, + 53.896637001 + ], + [ + 10.6737156, + 53.896234301 + ], + [ + 10.6732064, + 53.895840201 + ], + [ + 10.6722534, + 53.894931101 + ], + [ + 10.6719209, + 53.894544901 + ], + [ + 10.6716226, + 53.894135801 + ], + [ + 10.6710862, + 53.893330501 + ], + [ + 10.6702997, + 53.892075701 + ], + [ + 10.6692704, + 53.890433601 + ], + [ + 10.6672709, + 53.887229901 + ], + [ + 10.6662392, + 53.885590401 + ], + [ + 10.6655828, + 53.884584501 + ], + [ + 10.6648788, + 53.883580901 + ], + [ + 10.6644407, + 53.883014101 + ], + [ + 10.664099, + 53.882565001 + ], + [ + 10.6636199, + 53.882038001 + ], + [ + 10.6631562, + 53.881529001 + ], + [ + 10.6629431, + 53.881324901 + ], + [ + 10.6626925, + 53.881089401 + ], + [ + 10.6625252, + 53.880951401 + ], + [ + 10.6617427, + 53.880302601 + ], + [ + 10.6613395, + 53.879984901 + ], + [ + 10.6609183, + 53.879664501 + ], + [ + 10.6602969, + 53.879226701 + ], + [ + 10.6598669, + 53.878954101 + ], + [ + 10.659015, + 53.878432401 + ], + [ + 10.6581256, + 53.877926301 + ], + [ + 10.6569375, + 53.877323101 + ], + [ + 10.655848, + 53.876812101 + ], + [ + 10.6555974, + 53.876699401 + ], + [ + 10.6547443, + 53.876315701 + ], + [ + 10.6476648, + 53.873272101 + ], + [ + 10.6475234, + 53.873212701 + ], + [ + 10.6427415, + 53.871202601 + ], + [ + 10.6391428, + 53.869676701 + ], + [ + 10.6378656, + 53.869125301 + ], + [ + 10.6363362, + 53.868470301 + ], + [ + 10.6355233, + 53.868129901 + ], + [ + 10.6325339, + 53.866849201 + ], + [ + 10.6309168, + 53.866169901 + ], + [ + 10.6280326, + 53.864958401 + ], + [ + 10.6259261, + 53.864115701 + ], + [ + 10.6238133, + 53.863276501 + ], + [ + 10.6232396, + 53.863056201 + ], + [ + 10.6209677, + 53.862156401 + ], + [ + 10.6198517, + 53.861714401 + ], + [ + 10.6179854, + 53.860951001 + ], + [ + 10.615576, + 53.860004401 + ], + [ + 10.6147889, + 53.859695101 + ], + [ + 10.6123836, + 53.858739201 + ], + [ + 10.6108866, + 53.858116101 + ], + [ + 10.6096955, + 53.857569001 + ], + [ + 10.6085306, + 53.857038001 + ], + [ + 10.6068361, + 53.856261801 + ], + [ + 10.605292, + 53.855551101 + ], + [ + 10.6028024, + 53.854411501 + ], + [ + 10.6010742, + 53.853611101 + ], + [ + 10.5975171, + 53.851986001 + ], + [ + 10.5950924, + 53.850869301 + ], + [ + 10.5940932, + 53.850413801 + ], + [ + 10.5929845, + 53.849909501 + ], + [ + 10.5920075, + 53.849457601 + ], + [ + 10.588782, + 53.847968401 + ], + [ + 10.5863545, + 53.846851201 + ], + [ + 10.5853669, + 53.846396901 + ], + [ + 10.5845736, + 53.846034201 + ], + [ + 10.5834348, + 53.845539601 + ], + [ + 10.5809235, + 53.844379401 + ], + [ + 10.5783384, + 53.843196701 + ], + [ + 10.5778503, + 53.842973401 + ], + [ + 10.57638, + 53.842300701 + ], + [ + 10.5741594, + 53.841260701 + ], + [ + 10.5718599, + 53.840219401 + ], + [ + 10.5690314, + 53.838908901 + ], + [ + 10.5674643, + 53.838130001 + ], + [ + 10.5633007, + 53.835989001 + ], + [ + 10.5585102, + 53.833516401 + ], + [ + 10.5537886, + 53.831098501 + ], + [ + 10.5486318, + 53.828718201 + ], + [ + 10.5443812, + 53.827039301 + ], + [ + 10.5349963, + 53.823857801 + ], + [ + 10.5346815, + 53.823755801 + ], + [ + 10.5289168, + 53.821896301 + ], + [ + 10.5254978, + 53.821135901 + ], + [ + 10.5230606, + 53.820785301 + ], + [ + 10.521771, + 53.820642801 + ], + [ + 10.5202959, + 53.820506901 + ], + [ + 10.5185622, + 53.820420601 + ], + [ + 10.5147697, + 53.820347401 + ], + [ + 10.5119685, + 53.820320101 + ], + [ + 10.5111366, + 53.820315601 + ], + [ + 10.5085077, + 53.820281201 + ], + [ + 10.5072122, + 53.820254801 + ], + [ + 10.5042522, + 53.820202901 + ], + [ + 10.5006437, + 53.820172301 + ], + [ + 10.4934225, + 53.820048101 + ], + [ + 10.4932426, + 53.820044001 + ], + [ + 10.4917568, + 53.819993001 + ], + [ + 10.4908651, + 53.819953401 + ], + [ + 10.4899853, + 53.819905101 + ], + [ + 10.4882526, + 53.819765701 + ], + [ + 10.4863426, + 53.819576701 + ], + [ + 10.4847313, + 53.819359101 + ], + [ + 10.4833325, + 53.819120901 + ], + [ + 10.4822205, + 53.818923801 + ], + [ + 10.4811115, + 53.818707501 + ], + [ + 10.4805167, + 53.818580201 + ], + [ + 10.4795617, + 53.818366701 + ], + [ + 10.4783862, + 53.818077301 + ], + [ + 10.4769334, + 53.817694401 + ], + [ + 10.4753539, + 53.817214101 + ], + [ + 10.4744577, + 53.816913401 + ], + [ + 10.4717248, + 53.815930001 + ], + [ + 10.468874, + 53.814666701 + ], + [ + 10.4657332, + 53.812985901 + ], + [ + 10.4631013, + 53.811264901 + ], + [ + 10.4616526, + 53.810194201 + ], + [ + 10.4609146, + 53.809653501 + ], + [ + 10.458024, + 53.807459601 + ], + [ + 10.4560189, + 53.806019001 + ], + [ + 10.4548558, + 53.805244801 + ], + [ + 10.453797, + 53.804644201 + ], + [ + 10.4526597, + 53.804056501 + ], + [ + 10.4516165, + 53.803530201 + ], + [ + 10.4478481, + 53.801608401 + ], + [ + 10.4446942, + 53.800020501 + ], + [ + 10.4445258, + 53.799936801 + ], + [ + 10.4403008, + 53.797756001 + ], + [ + 10.435661, + 53.795414701 + ], + [ + 10.4315275, + 53.793331501 + ], + [ + 10.4291979, + 53.792135401 + ], + [ + 10.4274429, + 53.791234201 + ], + [ + 10.4262167, + 53.790612301 + ], + [ + 10.4257364, + 53.790368701 + ], + [ + 10.4244974, + 53.789622601 + ], + [ + 10.4231433, + 53.788731501 + ], + [ + 10.4220234, + 53.787895501 + ], + [ + 10.4210204, + 53.787131001 + ], + [ + 10.4199559, + 53.786331701 + ], + [ + 10.4187267, + 53.785405301 + ], + [ + 10.4179991, + 53.784833901 + ], + [ + 10.4159034, + 53.783207501 + ], + [ + 10.4125203, + 53.780617801 + ], + [ + 10.4121611, + 53.780342801 + ], + [ + 10.4115953, + 53.779909701 + ], + [ + 10.4099619, + 53.778627801 + ], + [ + 10.4084747, + 53.777513001 + ], + [ + 10.4067251, + 53.776345701 + ], + [ + 10.402016, + 53.773675101 + ], + [ + 10.3974949, + 53.771280101 + ], + [ + 10.3907734, + 53.767581101 + ], + [ + 10.3853698, + 53.764588201 + ], + [ + 10.3844335, + 53.764030201 + ], + [ + 10.3829405, + 53.763028101 + ], + [ + 10.38034, + 53.760991201 + ], + [ + 10.37505, + 53.756673201 + ], + [ + 10.372766, + 53.754812501 + ], + [ + 10.3706544, + 53.753101201 + ], + [ + 10.3699676, + 53.752543001 + ], + [ + 10.3689409, + 53.751715501 + ], + [ + 10.367986, + 53.750937601 + ], + [ + 10.3669611, + 53.750106001 + ], + [ + 10.366329, + 53.749582701 + ], + [ + 10.3655116, + 53.748852401 + ], + [ + 10.3639352, + 53.747305101 + ], + [ + 10.3626636, + 53.745888301 + ], + [ + 10.3613398, + 53.744344901 + ], + [ + 10.3575086, + 53.740130501 + ], + [ + 10.3538506, + 53.735920301 + ], + [ + 10.3502717, + 53.731893101 + ], + [ + 10.3468854, + 53.728066201 + ], + [ + 10.3452461, + 53.726204801 + ], + [ + 10.3440885, + 53.724890201 + ], + [ + 10.3435174, + 53.724241701 + ], + [ + 10.3424235, + 53.722957801 + ], + [ + 10.3408316, + 53.721169201 + ], + [ + 10.3396434, + 53.719818001 + ], + [ + 10.3384686, + 53.718475001 + ], + [ + 10.3367276, + 53.716522201 + ], + [ + 10.3357226, + 53.715372501 + ], + [ + 10.334959, + 53.714501301 + ], + [ + 10.3345753, + 53.714017301 + ], + [ + 10.3342877, + 53.713646801 + ], + [ + 10.3339356, + 53.713145601 + ], + [ + 10.3336796, + 53.712748801 + ], + [ + 10.3333036, + 53.712130001 + ], + [ + 10.3323431, + 53.710477801 + ], + [ + 10.3319411, + 53.709786301 + ], + [ + 10.3288553, + 53.704477801 + ], + [ + 10.3273407, + 53.701872101 + ], + [ + 10.326671, + 53.700711101 + ], + [ + 10.3259197, + 53.699427101 + ], + [ + 10.3252673, + 53.698304601 + ], + [ + 10.3251368, + 53.698078301 + ], + [ + 10.3248097, + 53.697517201 + ], + [ + 10.3244675, + 53.696928301 + ], + [ + 10.3240818, + 53.696283701 + ], + [ + 10.3236275, + 53.695504501 + ], + [ + 10.3231924, + 53.694843801 + ], + [ + 10.3219341, + 53.693045301 + ], + [ + 10.3212726, + 53.692099901 + ], + [ + 10.3204798, + 53.690966501 + ], + [ + 10.3193889, + 53.689417601 + ], + [ + 10.3181887, + 53.687713201 + ], + [ + 10.3167611, + 53.685686001 + ], + [ + 10.3151529, + 53.683402101 + ], + [ + 10.3139206, + 53.681652001 + ], + [ + 10.3121545, + 53.679143601 + ], + [ + 10.3104034, + 53.676656401 + ], + [ + 10.3089746, + 53.674626901 + ], + [ + 10.3068367, + 53.671589901 + ], + [ + 10.3049483, + 53.668907201 + ], + [ + 10.3018739, + 53.664539301 + ], + [ + 10.2992539, + 53.660816601 + ], + [ + 10.2971938, + 53.657889201 + ], + [ + 10.2958064, + 53.655917601 + ], + [ + 10.2945812, + 53.654552201 + ], + [ + 10.2933885, + 53.653398101 + ], + [ + 10.2923475, + 53.652538801 + ], + [ + 10.2911243, + 53.651622801 + ], + [ + 10.2880402, + 53.649271301 + ], + [ + 10.2862669, + 53.647951001 + ], + [ + 10.2834244, + 53.645822001 + ], + [ + 10.2825115, + 53.645177201 + ], + [ + 10.2815771, + 53.644546601 + ], + [ + 10.2810183, + 53.644201201 + ], + [ + 10.2804486, + 53.643871601 + ], + [ + 10.2798683, + 53.643553201 + ], + [ + 10.2789769, + 53.643117401 + ], + [ + 10.2783469, + 53.642836501 + ], + [ + 10.2777114, + 53.642572201 + ], + [ + 10.2772588, + 53.642396001 + ], + [ + 10.2768115, + 53.642227701 + ], + [ + 10.2760429, + 53.641963501 + ], + [ + 10.2752702, + 53.641714301 + ], + [ + 10.2744815, + 53.641487201 + ], + [ + 10.2737613, + 53.641297601 + ], + [ + 10.2722479, + 53.640870001 + ], + [ + 10.2707137, + 53.640455501 + ], + [ + 10.2689562, + 53.639965501 + ], + [ + 10.2677917, + 53.639652301 + ], + [ + 10.2656856, + 53.639059801 + ], + [ + 10.2648032, + 53.638803701 + ], + [ + 10.2639332, + 53.638530201 + ], + [ + 10.2631697, + 53.638261501 + ], + [ + 10.2624707, + 53.637983001 + ], + [ + 10.2615813, + 53.637612701 + ], + [ + 10.2609093, + 53.637306101 + ], + [ + 10.2603258, + 53.637014201 + ], + [ + 10.2596427, + 53.636656701 + ], + [ + 10.2591705, + 53.636380201 + ], + [ + 10.2584773, + 53.635960801 + ], + [ + 10.2580026, + 53.635644201 + ], + [ + 10.2577428, + 53.635468201 + ], + [ + 10.254366, + 53.633183501 + ], + [ + 10.2527748, + 53.632104401 + ], + [ + 10.2502076, + 53.630368601 + ], + [ + 10.2494933, + 53.629876301 + ], + [ + 10.2467917, + 53.628072501 + ], + [ + 10.2443988, + 53.626458601 + ], + [ + 10.2393073, + 53.622999501 + ], + [ + 10.2371894, + 53.621494301 + ], + [ + 10.2364424, + 53.620841501 + ], + [ + 10.2356342, + 53.620079001 + ], + [ + 10.2350097, + 53.619373001 + ], + [ + 10.2344647, + 53.618657301 + ], + [ + 10.2340809, + 53.618079501 + ], + [ + 10.2336113, + 53.617213101 + ], + [ + 10.2333619, + 53.616667101 + ], + [ + 10.2330818, + 53.615847001 + ], + [ + 10.2330161, + 53.615635101 + ], + [ + 10.2326106, + 53.614263801 + ], + [ + 10.232331, + 53.613290201 + ], + [ + 10.2318768, + 53.611708701 + ], + [ + 10.2308116, + 53.607999401 + ], + [ + 10.2307382, + 53.607743501 + ], + [ + 10.2300035, + 53.605185001 + ], + [ + 10.2297682, + 53.604578101 + ], + [ + 10.2295013, + 53.603969601 + ], + [ + 10.2291834, + 53.603301701 + ], + [ + 10.2288249, + 53.602639201 + ], + [ + 10.2285263, + 53.602135001 + ], + [ + 10.2282022, + 53.601635401 + ], + [ + 10.2277055, + 53.601000201 + ], + [ + 10.2274501, + 53.600677801 + ], + [ + 10.2271827, + 53.600369901 + ], + [ + 10.2267104, + 53.599868601 + ], + [ + 10.2262142, + 53.599372001 + ], + [ + 10.2252011, + 53.598372901 + ], + [ + 10.2232441, + 53.596665401 + ], + [ + 10.2227034, + 53.596212101 + ], + [ + 10.2134893, + 53.588277001 + ], + [ + 10.2130606, + 53.587901501 + ], + [ + 10.2072012, + 53.582848401 + ], + [ + 10.2024258, + 53.578709401 + ], + [ + 10.2018303, + 53.578190701 + ], + [ + 10.2002258, + 53.576802401 + ], + [ + 10.19866, + 53.575452201 + ], + [ + 10.1965206, + 53.573607201 + ], + [ + 10.1959426, + 53.573108701 + ], + [ + 10.1954828, + 53.572712201 + ], + [ + 10.1945998, + 53.571942301 + ], + [ + 10.1920687, + 53.569745401 + ], + [ + 10.1920483, + 53.569728501 + ], + [ + 10.1913319, + 53.569105901 + ], + [ + 10.1899867, + 53.568030101 + ], + [ + 10.1890603, + 53.567369901 + ], + [ + 10.1880751, + 53.566727801 + ], + [ + 10.1868113, + 53.565984501 + ], + [ + 10.1867227, + 53.565938701 + ], + [ + 10.186317668, + 53.565729801 + ] + ] + } + }, + { + "identifier": "2024-035081--vi-bs.2025-02-03_06-00-00-000.devi-zus.2025-02-01_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.97999909381633,10.732709063721185,53.9169321010433,10.719559569476337", + "point": "53.97999909381633,10.732709063721185", + "startLcPosition": "252", + "impact": { + "lower": "Bad Schwartau", + "upper": "Pansdorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fehmarn -> L\u00fcbeck", + "title": "A1 | Pansdorf - Bad Schwartau", + "startTimestamp": "2025-02-03T06:00:00+01:00", + "coordinate": { + "lat": 53.97999909381633, + "long": 10.732709063721185 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.02.25 um 06:00 Uhr", + "Ende: 27.04.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.06.26)", + "", + "A1: Fehmarn -> L\u00fcbeck, zwischen 2.9 km hinter AS Pansdorf und 2.4 km vor AS Bad Schwartau", + "", + "L\u00e4nge: 7.78 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A1, AS Seeretz bis AS Scharbeutz, Rifa Nord, Grundhafte Erneuerung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.732709064, + 53.979999094 + ], + [ + 10.7325411, + 53.978534701 + ], + [ + 10.7324559, + 53.976686801 + ], + [ + 10.732507, + 53.975819901 + ], + [ + 10.7325798, + 53.974779101 + ], + [ + 10.7328202, + 53.973487401 + ], + [ + 10.7331839, + 53.972045901 + ], + [ + 10.7336018, + 53.970898001 + ], + [ + 10.7340926, + 53.969755801 + ], + [ + 10.7346564, + 53.968591301 + ], + [ + 10.7353249, + 53.967468601 + ], + [ + 10.7359352, + 53.966551201 + ], + [ + 10.7367325, + 53.965459501 + ], + [ + 10.737502, + 53.964546001 + ], + [ + 10.7390053, + 53.962929501 + ], + [ + 10.7403028, + 53.961630201 + ], + [ + 10.7405802, + 53.961349201 + ], + [ + 10.7414451, + 53.960488401 + ], + [ + 10.7426887, + 53.959257801 + ], + [ + 10.7439067, + 53.958008001 + ], + [ + 10.7447102, + 53.957060501 + ], + [ + 10.7454122, + 53.956162201 + ], + [ + 10.7460488, + 53.955215301 + ], + [ + 10.7465451, + 53.954354901 + ], + [ + 10.7467201, + 53.954009701 + ], + [ + 10.7468868, + 53.953621001 + ], + [ + 10.7470394, + 53.953267201 + ], + [ + 10.7471467, + 53.952985401 + ], + [ + 10.7474158, + 53.952090201 + ], + [ + 10.7476143, + 53.950988201 + ], + [ + 10.7477002, + 53.950111401 + ], + [ + 10.7477277, + 53.949664801 + ], + [ + 10.7477119, + 53.949181801 + ], + [ + 10.7476941, + 53.948936201 + ], + [ + 10.7476515, + 53.948489501 + ], + [ + 10.7476042, + 53.948148501 + ], + [ + 10.7475321, + 53.947745501 + ], + [ + 10.7474878, + 53.947546601 + ], + [ + 10.7472918, + 53.946816701 + ], + [ + 10.7470803, + 53.946174701 + ], + [ + 10.7467947, + 53.945479301 + ], + [ + 10.7464886, + 53.944867601 + ], + [ + 10.7460463, + 53.944105201 + ], + [ + 10.7455599, + 53.943353601 + ], + [ + 10.7449526, + 53.942586301 + ], + [ + 10.7438735, + 53.941400501 + ], + [ + 10.7431656, + 53.940751501 + ], + [ + 10.7427509, + 53.940384401 + ], + [ + 10.7413627, + 53.939248101 + ], + [ + 10.7399267, + 53.938204701 + ], + [ + 10.7371528, + 53.936330401 + ], + [ + 10.7364659, + 53.935878501 + ], + [ + 10.7344106, + 53.934505101 + ], + [ + 10.7339186, + 53.934151301 + ], + [ + 10.7337593, + 53.934044901 + ], + [ + 10.7329848, + 53.933482101 + ], + [ + 10.7326674, + 53.933251501 + ], + [ + 10.7316078, + 53.932435001 + ], + [ + 10.7310777, + 53.932011801 + ], + [ + 10.7301726, + 53.931163801 + ], + [ + 10.7296501, + 53.930681801 + ], + [ + 10.7289107, + 53.929874001 + ], + [ + 10.7282343, + 53.929055701 + ], + [ + 10.7279325, + 53.928632401 + ], + [ + 10.7276513, + 53.928202801 + ], + [ + 10.7274547, + 53.927884201 + ], + [ + 10.7271562, + 53.927335201 + ], + [ + 10.7270903, + 53.927193301 + ], + [ + 10.7267544, + 53.926470601 + ], + [ + 10.7263322, + 53.925333601 + ], + [ + 10.7259295, + 53.924045901 + ], + [ + 10.7255635, + 53.922803201 + ], + [ + 10.7254564, + 53.922514101 + ], + [ + 10.7252053, + 53.921854601 + ], + [ + 10.7250705, + 53.921581401 + ], + [ + 10.7249161, + 53.921268601 + ], + [ + 10.7246931, + 53.920923401 + ], + [ + 10.7243152, + 53.920393801 + ], + [ + 10.7239358, + 53.919957701 + ], + [ + 10.7237488, + 53.919744901 + ], + [ + 10.7232493, + 53.919286501 + ], + [ + 10.7228154, + 53.918881301 + ], + [ + 10.7223259, + 53.918499701 + ], + [ + 10.7217429, + 53.918106401 + ], + [ + 10.7214612, + 53.917923801 + ], + [ + 10.7207131, + 53.917488601 + ], + [ + 10.7200097, + 53.917129401 + ], + [ + 10.719559569, + 53.916932101 + ] + ] + } + }, + { + "identifier": "2023-003426--vi-bs.2025-08-03_00-00-00-000.devi-zus.2024-10-28_00-00-00-000.f.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.03632567420333,10.728866330906149,54.050799605033546,10.732582604703943", + "point": "54.03632567420333,10.728866330906149", + "startLcPosition": "253", + "impact": { + "lower": "Eutin", + "upper": "Scharbeutz", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " L\u00fcbeck -> Fehmarn", + "title": "A1 | Scharbeutz - Eutin", + "startTimestamp": "2025-08-03T00:00:00+02:00", + "coordinate": { + "lat": 54.03632567420333, + "long": 10.728866330906149 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.08.25 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A1: L\u00fcbeck -> Fehmarn, zwischen 0.2 km hinter AS Scharbeutz und 0.2 km vor AS Eutin", + "", + "L\u00e4nge: 1.65 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A1, AS Scharbeutz bis AS Eutin, Br\u00fcckenneubau BW206 Gronenberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.728866331, + 54.036325674 + ], + [ + 10.7285788, + 54.037587101 + ], + [ + 10.7284579, + 54.038546601 + ], + [ + 10.7284266, + 54.038917401 + ], + [ + 10.7284129, + 54.039239001 + ], + [ + 10.7283915, + 54.039566801 + ], + [ + 10.7283841, + 54.040050601 + ], + [ + 10.7284113, + 54.040804001 + ], + [ + 10.7284772, + 54.041653601 + ], + [ + 10.728534, + 54.042093701 + ], + [ + 10.7285669, + 54.042305901 + ], + [ + 10.7286292, + 54.042631201 + ], + [ + 10.7286996, + 54.042961801 + ], + [ + 10.728773, + 54.043376401 + ], + [ + 10.7288221, + 54.043584901 + ], + [ + 10.7290768, + 54.044482501 + ], + [ + 10.7293005, + 54.045163201 + ], + [ + 10.7294634, + 54.045586201 + ], + [ + 10.729658, + 54.046059801 + ], + [ + 10.7298733, + 54.046532601 + ], + [ + 10.7301061, + 54.047020001 + ], + [ + 10.7304138, + 54.047611101 + ], + [ + 10.7307926, + 54.048271201 + ], + [ + 10.7310609, + 54.048709001 + ], + [ + 10.7312408, + 54.048981501 + ], + [ + 10.7316607, + 54.049588501 + ], + [ + 10.732582605, + 54.050799605 + ] + ] + } + }, + { + "identifier": "2023-003426--vi-bs.2025-08-03_00-00-00-000.devi-zus.2024-10-28_00-00-00-000.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.05084436686379,10.732414159989082,54.03631182545771,10.728683886938105", + "point": "54.05084436686379,10.732414159989082", + "startLcPosition": "254", + "impact": { + "lower": "Scharbeutz", + "upper": "Eutin", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fehmarn -> L\u00fcbeck", + "title": "A1 | Eutin - Scharbeutz", + "startTimestamp": "2025-08-03T00:00:00+02:00", + "coordinate": { + "lat": 54.05084436686379, + "long": 10.732414159989082 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.08.25 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A1: Fehmarn -> L\u00fcbeck, zwischen 0.2 km hinter AS Eutin und 0.2 km vor AS Scharbeutz", + "", + "L\u00e4nge: 1.65 km | Maximale Durchfahrtsbreite: 3.7 m", + "", + "A1, AS Scharbeutz bis AS Eutin, Br\u00fcckenneubau BW206 Gronenberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.73241416, + 54.050844367 + ], + [ + 10.7315231, + 54.049689701 + ], + [ + 10.7310764, + 54.049041001 + ], + [ + 10.7306779, + 54.048417501 + ], + [ + 10.7302561, + 54.047688401 + ], + [ + 10.7299302, + 54.047062501 + ], + [ + 10.7296906, + 54.046564301 + ], + [ + 10.7294909, + 54.046116501 + ], + [ + 10.7292733, + 54.045587901 + ], + [ + 10.7291504, + 54.045266701 + ], + [ + 10.7289799, + 54.044787201 + ], + [ + 10.7288766, + 54.044465801 + ], + [ + 10.7286547, + 54.043660701 + ], + [ + 10.7285712, + 54.043343301 + ], + [ + 10.7284805, + 54.042860001 + ], + [ + 10.72841, + 54.042508101 + ], + [ + 10.7283817, + 54.042351001 + ], + [ + 10.728342, + 54.042063401 + ], + [ + 10.7282973, + 54.041704601 + ], + [ + 10.7282214, + 54.040882701 + ], + [ + 10.7281929, + 54.040065701 + ], + [ + 10.7281981, + 54.039618001 + ], + [ + 10.7282162, + 54.039251101 + ], + [ + 10.728403, + 54.037613601 + ], + [ + 10.728683887, + 54.036311825 + ] + ] + } + }, + { + "identifier": "2026-015153--vi-bs.2026-04-14_00-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "54.151997236285446,10.852456569168405,54.15501787495815,10.856364291843548", + "point": "54.151997236285446,10.852456569168405", + "startLcPosition": "257", + "impact": { + "lower": "Lensahn", + "upper": "Neustadt i.H.-Pelzerhaken", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " L\u00fcbeck -> Fehmarn", + "title": "A1 | Neustadt i.H.-Pelzerhaken - Lensahn", + "coordinate": { + "lat": 54.151997236285446, + "long": 10.852456569168405 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 00:00 bis zum 15.04.26 24:00 Uhr.", + "", + "A1: L\u00fcbeck -> Fehmarn, zwischen 3.3 km hinter AS Neustadt i.H.-Pelzerhaken und 7.8 km vor AS Lensahn", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A1, PP Hasselburger M\u00fchle, Rifa Nord, Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.852456569, + 54.151997236 + ], + [ + 10.8525309, + 54.152026301 + ], + [ + 10.8528468, + 54.152166401 + ], + [ + 10.85442, + 54.153263301 + ], + [ + 10.8548047, + 54.153548601 + ], + [ + 10.8562798, + 54.154642601 + ], + [ + 10.8563467, + 54.154819801 + ], + [ + 10.856364292, + 54.155017875 + ] + ] + } + }, + { + "identifier": "2023-004425--vi-bs.2024-04-15_05-00-00-000.devi-zus.2023-03-20_19-00-00-000_019.f.de45", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.884508183860376,7.574404761669824,51.88425506669563,7.574906093642448", + "point": "51.884508183860376,7.574404761669824", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS M\u00fcnster-Hiltrup (aus Richtung M\u00fcnster-S\u00fcd)", + "title": "A1 - 6-streifige Ausbau zwischen Ascheberg und Hiltrup - AlD 4425", + "startTimestamp": "2024-04-15T05:00:00+02:00", + "coordinate": { + "lat": 51.884508183860376, + "long": 7.574404761669824 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.24 um 05:00 Uhr", + "Ende: 01.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 03.09.26)", + "", + "Auffahrt auf die A1: AS M\u00fcnster-Hiltrup (aus Richtung M\u00fcnster-S\u00fcd)", + "", + "L\u00e4nge: 0.04 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - 6-streifige Ausbau zwischen Ascheberg und Hiltrup - AlD 4425" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.574404762, + 51.884508184 + ], + [ + 7.5745479, + 51.884456901 + ], + [ + 7.5746521, + 51.884412601 + ], + [ + 7.5747638, + 51.884352701 + ], + [ + 7.574872, + 51.884282901 + ], + [ + 7.574906094, + 51.884255067 + ] + ] + } + }, + { + "identifier": "2023-002834--vi-bs.2024-09-30_20-00-00-000.devi-zus.2021-10-11_20-00-00-000.f_001.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5225152691888,7.657418228511508,51.52317820897123,7.658001356408028", + "point": "51.5225152691888,7.657418228511508", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Dortmund/Unna (aus Richtung Unna-Ost)", + "title": "A1 - Ersatzneubau TB Liedbachtal - AlD 2834", + "startTimestamp": "2024-09-30T20:00:00+02:00", + "coordinate": { + "lat": 51.5225152691888, + "long": 7.657418228511508 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.24 um 20:00 Uhr", + "Ende: 03.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 02.11.27)", + "", + "Abfahrt von der A44: AK Dortmund/Unna (aus Richtung Unna-Ost)", + "", + "L\u00e4nge: 0.32 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Ersatzneubau TB Liedbachtal - AlD 2834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.657418229, + 51.522515269 + ], + [ + 7.6571701, + 51.522543901 + ], + [ + 7.6569554, + 51.522576801 + ], + [ + 7.6567616, + 51.522621201 + ], + [ + 7.6566291, + 51.522661201 + ], + [ + 7.6565098, + 51.522715501 + ], + [ + 7.6564116, + 51.522780601 + ], + [ + 7.6563257, + 51.522851601 + ], + [ + 7.6562306, + 51.522976501 + ], + [ + 7.6561953, + 51.523200601 + ], + [ + 7.6562706, + 51.523388701 + ], + [ + 7.6563797, + 51.523495301 + ], + [ + 7.6564952, + 51.523581501 + ], + [ + 7.6566834, + 51.523660101 + ], + [ + 7.6569292, + 51.523711501 + ], + [ + 7.6571564, + 51.523728701 + ], + [ + 7.6573565, + 51.523709501 + ], + [ + 7.6575263, + 51.523670801 + ], + [ + 7.6576853, + 51.523612901 + ], + [ + 7.6578076, + 51.523532301 + ], + [ + 7.6578962, + 51.523448401 + ], + [ + 7.6579793, + 51.523304901 + ], + [ + 7.658001356, + 51.523178209 + ] + ] + } + }, + { + "identifier": "2023-002834--vi-bs.2024-09-30_20-00-00-000.devi-zus.2021-10-11_20-00-00-000.f_001.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.520794464929914,7.658912429091394,51.52087406197188,7.659202961339122", + "point": "51.520794464929914,7.658912429091394", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Dortmund/Unna (in Richtung Unna-Ost)", + "title": "A1 - Ersatzneubau TB Liedbachtal - AlD 2834", + "startTimestamp": "2024-09-30T20:00:00+02:00", + "coordinate": { + "lat": 51.520794464929914, + "long": 7.658912429091394 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.24 um 20:00 Uhr", + "Ende: 03.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 02.11.27)", + "", + "Auffahrt auf die A44: AK Dortmund/Unna (in Richtung Unna-Ost)", + "", + "L\u00e4nge: 0.02 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1 - Ersatzneubau TB Liedbachtal - AlD 2834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.658912429, + 51.520794465 + ], + [ + 7.6591459, + 51.520852801 + ], + [ + 7.659202961, + 51.520874062 + ] + ] + } + }, + { + "identifier": "2023-002834--vi-bs.2024-09-30_20-00-00-000.devi-zus.2021-10-11_20-00-00-000.f_001.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5230701819341,7.658677943733996,51.52374669766033,7.6597979607373246", + "point": "51.5230701819341,7.658677943733996", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A1 - Ersatzneubau TB Liedbachtal - AlD 2834", + "startTimestamp": "2024-09-30T20:00:00+02:00", + "coordinate": { + "lat": 51.5230701819341, + "long": 7.658677943733996 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.24 um 20:00 Uhr", + "Ende: 03.07.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 02.11.27)", + "", + "Abfahrt von der A1", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1 - Ersatzneubau TB Liedbachtal - AlD 2834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.658677944, + 51.523070182 + ], + [ + 7.6588317, + 51.523331401 + ], + [ + 7.658905, + 51.523418901 + ], + [ + 7.659018, + 51.523516201 + ], + [ + 7.6591726, + 51.523607601 + ], + [ + 7.659373, + 51.523682801 + ], + [ + 7.6595189, + 51.523716201 + ], + [ + 7.6597123, + 51.523744301 + ], + [ + 7.659797961, + 51.523746698 + ] + ] + } + }, + { + "identifier": "2023-004527--vi-bs.2024-11-25_05-00-00-000.devi-zus.2024-05-11_20-00-00-000_001.f.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.432880064587785,7.534681717241727,51.43247380040126,7.5333542805176865", + "point": "51.432880064587785,7.534681717241727", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Schwerte-Ergste)", + "title": "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527", + "startTimestamp": "2024-11-25T05:00:00+01:00", + "coordinate": { + "lat": 51.432880064587785, + "long": 7.534681717241727 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.11.24 um 05:00 Uhr", + "Ende: 28.07.27 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "11.04.26", + "(Ende der Gesamtma\u00dfnahme: 04.06.29)", + "", + "Auffahrt auf die A45: AK Westhofener Kreuz (aus Richtung Schwerte-Ergste)", + "", + "L\u00e4nge: 0.12 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.534681717, + 51.432880065 + ], + [ + 7.5346525, + 51.432808901 + ], + [ + 7.5345636, + 51.432693001 + ], + [ + 7.534489, + 51.432631401 + ], + [ + 7.5343982, + 51.432574601 + ], + [ + 7.5343113, + 51.432531401 + ], + [ + 7.5342004, + 51.432488801 + ], + [ + 7.5340878, + 51.432459901 + ], + [ + 7.5339855, + 51.432440601 + ], + [ + 7.5338386, + 51.432427801 + ], + [ + 7.5337016, + 51.432431401 + ], + [ + 7.5335837, + 51.432436901 + ], + [ + 7.533354281, + 51.4324738 + ] + ] + } + }, + { + "identifier": "2023-004527--vi-bs.2024-11-25_05-00-00-000.devi-zus.2024-05-11_20-00-00-000_001.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43332327074093,7.530950919129679,51.43406993774549,7.530995314648653", + "point": "51.43332327074093,7.530950919129679", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Schwerte-Ergste)", + "title": "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527", + "startTimestamp": "2024-11-25T05:00:00+01:00", + "coordinate": { + "lat": 51.43332327074093, + "long": 7.530950919129679 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.11.24 um 05:00 Uhr", + "Ende: 28.07.27 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "11.04.26", + "(Ende der Gesamtma\u00dfnahme: 04.06.29)", + "", + "Abfahrt von der A45: AK Westhofener Kreuz (aus Richtung Schwerte-Ergste)", + "", + "L\u00e4nge: 0.09 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.530950919, + 51.433323271 + ], + [ + 7.5308127, + 51.433446301 + ], + [ + 7.5307564, + 51.433523301 + ], + [ + 7.5307229, + 51.433597901 + ], + [ + 7.5307162, + 51.433742101 + ], + [ + 7.5307278, + 51.433808401 + ], + [ + 7.5307685, + 51.433877701 + ], + [ + 7.5308112, + 51.433937601 + ], + [ + 7.5308857, + 51.433999401 + ], + [ + 7.5309469, + 51.434044601 + ], + [ + 7.530995315, + 51.434069938 + ] + ] + } + }, + { + "identifier": "2023-004527--vi-bs.2024-11-25_05-00-00-000.devi-zus.2024-05-11_20-00-00-000_001.f.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43265422212442,7.529071043424701,51.43300433817447,7.530343353967382", + "point": "51.43265422212442,7.529071043424701", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Schwerte)", + "title": "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527", + "startTimestamp": "2024-11-25T05:00:00+01:00", + "coordinate": { + "lat": 51.43265422212442, + "long": 7.529071043424701 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.11.24 um 05:00 Uhr", + "Ende: 28.07.27 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "11.04.26", + "(Ende der Gesamtma\u00dfnahme: 04.06.29)", + "", + "Abfahrt von der A1: AK Westhofener Kreuz (aus Richtung Schwerte)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.529071043, + 51.432654222 + ], + [ + 7.5290716, + 51.432660101 + ], + [ + 7.5291025, + 51.432733801 + ], + [ + 7.5291402, + 51.432805101 + ], + [ + 7.5291867, + 51.432859901 + ], + [ + 7.529247, + 51.432910801 + ], + [ + 7.5293095, + 51.432955601 + ], + [ + 7.5293823, + 51.432994001 + ], + [ + 7.5294667, + 51.433022601 + ], + [ + 7.5295729, + 51.433053401 + ], + [ + 7.5296857, + 51.433072801 + ], + [ + 7.5298073, + 51.433083101 + ], + [ + 7.5299361, + 51.433077701 + ], + [ + 7.5300817, + 51.433066401 + ], + [ + 7.5301637, + 51.433052201 + ], + [ + 7.5302638, + 51.433028201 + ], + [ + 7.530343354, + 51.433004338 + ] + ] + } + }, + { + "identifier": "2023-004527--vi-bs.2024-11-25_05-00-00-000.devi-zus.2024-05-11_20-00-00-000_001.f.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43130004425273,7.535293385544509,51.430403408674536,7.535514509873343", + "point": "51.43130004425273,7.535293385544509", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Lennhof)", + "title": "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527", + "startTimestamp": "2024-11-25T05:00:00+01:00", + "coordinate": { + "lat": 51.43130004425273, + "long": 7.535293385544509 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.11.24 um 05:00 Uhr", + "Ende: 28.07.27 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "11.04.26", + "(Ende der Gesamtma\u00dfnahme: 04.06.29)", + "", + "Auffahrt auf die A1: AK Westhofener Kreuz (aus Richtung Lennhof)", + "", + "L\u00e4nge: 0.12 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.535293386, + 51.431300044 + ], + [ + 7.5353277, + 51.431286001 + ], + [ + 7.5354485, + 51.431222801 + ], + [ + 7.535568, + 51.431151301 + ], + [ + 7.5356697, + 51.431076301 + ], + [ + 7.5357316, + 51.431017801 + ], + [ + 7.5357718, + 51.430970201 + ], + [ + 7.535799, + 51.430908701 + ], + [ + 7.535815, + 51.430840001 + ], + [ + 7.5358197, + 51.430773601 + ], + [ + 7.5358125, + 51.430694101 + ], + [ + 7.5357916, + 51.430641301 + ], + [ + 7.5357502, + 51.430585101 + ], + [ + 7.5356921, + 51.430518101 + ], + [ + 7.5356259, + 51.430466101 + ], + [ + 7.535541, + 51.430413801 + ], + [ + 7.53551451, + 51.430403409 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de58", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43081011246132,7.533282141321935,51.431216090086885,7.532363047303473", + "point": "51.43081011246132,7.533282141321935", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Lennhof)", + "title": "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.43081011246132, + "long": 7.533282141321935 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "Auffahrt auf die A1: AK Westhofener Kreuz (aus Richtung Lennhof)", + "", + "L\u00e4nge: 0.08 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.533282141, + 51.430810112 + ], + [ + 7.532775, + 51.430988101 + ], + [ + 7.5326056, + 51.431059001 + ], + [ + 7.5324874, + 51.431124001 + ], + [ + 7.5323902, + 51.431189101 + ], + [ + 7.532363047, + 51.43121609 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de56", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43358365013837,7.533664537434774,51.432728581799005,7.534590891912778", + "point": "51.43358365013837,7.533664537434774", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Schwerte-Ergste)", + "title": "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.43358365013837, + "long": 7.533664537434774 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "Auffahrt auf die A45: AK Westhofener Kreuz (aus Richtung Schwerte-Ergste)", + "", + "L\u00e4nge: 0.14 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.533664537, + 51.43358365 + ], + [ + 7.5337182, + 51.433587101 + ], + [ + 7.5338245, + 51.433590101 + ], + [ + 7.5339589, + 51.433580301 + ], + [ + 7.534094, + 51.433553901 + ], + [ + 7.5341967, + 51.433526301 + ], + [ + 7.5342937, + 51.433487401 + ], + [ + 7.5344014, + 51.433432101 + ], + [ + 7.5344712, + 51.433381901 + ], + [ + 7.534552, + 51.433326301 + ], + [ + 7.5346194, + 51.433254601 + ], + [ + 7.5346552, + 51.433199401 + ], + [ + 7.5346764, + 51.433134101 + ], + [ + 7.5346981, + 51.433051201 + ], + [ + 7.5346923, + 51.432969301 + ], + [ + 7.5346867, + 51.432892201 + ], + [ + 7.5346525, + 51.432808901 + ], + [ + 7.534590892, + 51.432728582 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de54", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.433909855919616,7.532948210897378,51.43470247321529,7.533191814030897", + "point": "51.433909855919616,7.532948210897378", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Lennhof) nach A1", + "title": "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.433909855919616, + "long": 7.532948210897378 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "Von Auffahrt auf die A1: AK Westhofener Kreuz (aus Richtung Lennhof) nach A1: K\u00f6ln -> Dortmund, zwischen AK Westhofener Kreuz und 3.3 km vor AS Schwerte", + "", + "L\u00e4nge: 0.09 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.532948211, + 51.433909856 + ], + [ + 7.5329562, + 51.434056001 + ], + [ + 7.533191814, + 51.434702473 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de50", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.4305540499298,7.531456033160709,51.431142405224506,7.531851704909056", + "point": "51.4305540499298,7.531456033160709", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Lennhof)", + "title": "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.4305540499298, + "long": 7.531456033160709 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "Abfahrt von der A1: AK Westhofener Kreuz (aus Richtung Lennhof)", + "", + "L\u00e4nge: 0.07 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.531456033, + 51.43055405 + ], + [ + 7.5315192, + 51.430637501 + ], + [ + 7.531717, + 51.430919101 + ], + [ + 7.531851705, + 51.431142405 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2024-05-23_09-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de57", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.59791639384691,7.686099780704572,51.59744542646101,7.6861750345828055", + "point": "51.59791639384691,7.686099780704572", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Kamener Kreuz (aus Richtung Overberger Busch)", + "title": "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784", + "startTimestamp": "2024-05-23T09:00:00+02:00", + "coordinate": { + "lat": 51.59791639384691, + "long": 7.686099780704572 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.05.24 um 09:00 Uhr", + "Ende: 13.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "Auffahrt auf die A1: AK Kamener Kreuz (aus Richtung Overberger Busch)", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.686099781, + 51.597916394 + ], + [ + 7.6861122, + 51.597869901 + ], + [ + 7.686175035, + 51.597445426 + ] + ] + } + }, + { + "identifier": "2025-033844--vi-bs.2025-07-23_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.50492761098878,10.037246835555235,53.508276404749054,10.035834964003874", + "point": "53.50492761098878,10.037246835555235", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A255 zur A1, Dreieck Norderelbe, Schweineohr in Rifa Norderelbbr\u00fccke, Br\u00fcckeninstandhaltung, mit max. 3,5t Gesamtgwicht befahrbar", + "startTimestamp": "2025-07-23T00:00:00+02:00", + "coordinate": { + "lat": 53.50492761098878, + "long": 10.037246835555235 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.07.25 um 00:00 Uhr", + "Ende: 01.01.31 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.31)", + "", + "Abfahrt von der A255 S", + "", + "L\u00e4nge: 0.54 km | Maximale Durchfahrtsbreite: 10 m | zul\u00e4ssiges Gesamtgewicht: 3.5 t", + "", + "A255 zur A1, Dreieck Norderelbe, Schweineohr in Rifa Norderelbbr\u00fccke, Br\u00fcckeninstandhaltung, mit max. 3,5t Gesamtgwicht befahrbar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.037246836, + 53.504927611 + ], + [ + 10.0372365, + 53.504920301 + ], + [ + 10.0370401, + 53.504811301 + ], + [ + 10.0367979, + 53.504729201 + ], + [ + 10.0366008, + 53.504688001 + ], + [ + 10.0363648, + 53.504669801 + ], + [ + 10.0361414, + 53.504679501 + ], + [ + 10.0358927, + 53.504725701 + ], + [ + 10.0356764, + 53.504791601 + ], + [ + 10.0354606, + 53.504907701 + ], + [ + 10.0353118, + 53.505007201 + ], + [ + 10.0351615, + 53.505154601 + ], + [ + 10.0350682, + 53.505279701 + ], + [ + 10.0349688, + 53.505465101 + ], + [ + 10.0348927, + 53.505622801 + ], + [ + 10.0348139, + 53.505849501 + ], + [ + 10.0347664, + 53.506049701 + ], + [ + 10.0347347, + 53.506318401 + ], + [ + 10.0347437, + 53.506532301 + ], + [ + 10.0347716, + 53.506711901 + ], + [ + 10.0348501, + 53.506994201 + ], + [ + 10.034931, + 53.507187601 + ], + [ + 10.0350714, + 53.507458001 + ], + [ + 10.0352682, + 53.507724201 + ], + [ + 10.0354403, + 53.507919001 + ], + [ + 10.0356709, + 53.508143401 + ], + [ + 10.035834964, + 53.508276405 + ] + ] + } + }, + { + "identifier": "2023-004447--vi-bs.2026-03-16_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_018.f.de115", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.72765213658845,8.17297509597829,52.726634984012904,8.171647602070374", + "point": "52.72765213658845,8.17297509597829", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Vechta (aus Richtung Cappeln Hagelage-Ost)", + "title": "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 52.72765213658845, + "long": 8.17297509597829 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 30.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.10.26)", + "", + "Abfahrt von der A1: AS Vechta (aus Richtung Cappeln Hagelage-Ost)", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - 6 Br\u00fcckenersatzneubauten - AlD 4447" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.172975096, + 52.727652137 + ], + [ + 8.1729723, + 52.727646901 + ], + [ + 8.1728981, + 52.727509701 + ], + [ + 8.1727969, + 52.727363101 + ], + [ + 8.1726732, + 52.727239101 + ], + [ + 8.1724793, + 52.727098701 + ], + [ + 8.1722788, + 52.726977201 + ], + [ + 8.1718461, + 52.726756101 + ], + [ + 8.1716735, + 52.726652701 + ], + [ + 8.171647602, + 52.726634984 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de52", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43220350129248,7.532437888704151,51.43272489202584,7.5326607424935474", + "point": "51.43220350129248,7.532437888704151", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Lennhof)", + "title": "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.43220350129248, + "long": 7.532437888704151 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "Auffahrt auf die A1: AK Westhofener Kreuz (aus Richtung Lennhof)", + "", + "L\u00e4nge: 0.06 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.532437889, + 51.432203501 + ], + [ + 7.5324591, + 51.432244601 + ], + [ + 7.532660742, + 51.432724892 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de48", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43048147399592,7.531816606999554,51.43063483214251,7.532771723878062", + "point": "51.43048147399592,7.531816606999554", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Lennhof)", + "title": "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.43048147399592, + "long": 7.531816606999554 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "Abfahrt von der A1: AK Westhofener Kreuz (aus Richtung Lennhof)", + "", + "L\u00e4nge: 0.07 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.531816607, + 51.430481474 + ], + [ + 7.5318572, + 51.430498701 + ], + [ + 7.5320147, + 51.430550801 + ], + [ + 7.5321698, + 51.430585801 + ], + [ + 7.5323002, + 51.430607601 + ], + [ + 7.5324388, + 51.430625501 + ], + [ + 7.5325712, + 51.430633901 + ], + [ + 7.5327219, + 51.430636701 + ], + [ + 7.532771724, + 51.430634832 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de46", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.428576283509614,7.529402493672176,51.428822807914145,7.5297386093878504", + "point": "51.428576283509614,7.529402493672176", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Lennhof)", + "title": "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.428576283509614, + "long": 7.529402493672176 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "Abfahrt von der A1: AK Westhofener Kreuz (aus Richtung Lennhof)", + "", + "L\u00e4nge: 0.04 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.529402494, + 51.428576284 + ], + [ + 7.5294489, + 51.428607101 + ], + [ + 7.529738609, + 51.428822808 + ] + ] + } + }, + { + "identifier": "2023-004432--vi-bs.2025-01-13_09-00-00-000.devi-zus.2024-11-08_20-00-00-000_004.f.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.33946608313818,8.016633783244142,52.33966188370801,8.018080940109114", + "point": "52.33946608313818,8.016633783244142", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A1 - Ersatzneubau BW AS Osnabr\u00fcck-Nord-B68 - Wallenhorst - AlD 4432", + "startTimestamp": "2025-01-13T09:00:00+01:00", + "coordinate": { + "lat": 52.33946608313818, + "long": 8.016633783244142 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.01.25 um 09:00 Uhr", + "Ende: 28.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.05.27)", + "", + "Auffahrt auf die B68", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A1 - Ersatzneubau BW AS Osnabr\u00fcck-Nord-B68 - Wallenhorst - AlD 4432" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.016633783, + 52.339466083 + ], + [ + 8.0166836, + 52.339491301 + ], + [ + 8.0171161, + 52.339632901 + ], + [ + 8.0173086, + 52.339678101 + ], + [ + 8.0174742, + 52.339703301 + ], + [ + 8.0176405, + 52.339713101 + ], + [ + 8.0178014, + 52.339708201 + ], + [ + 8.017965, + 52.339688601 + ], + [ + 8.01808094, + 52.339661884 + ] + ] + } + }, + { + "identifier": "2023-004432--vi-bs.2025-01-13_09-00-00-000.devi-zus.2024-11-08_20-00-00-000_004.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.344431515197456,8.023382376342985,52.34410894673065,8.022125484575186", + "point": "52.344431515197456,8.023382376342985", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Osnabr\u00fcck-Nord (aus Richtung Wallenhorster Stra\u00dfe)", + "title": "A1 - Ersatzneubau BW AS Osnabr\u00fcck-Nord-B68 - Wallenhorst - AlD 4432", + "startTimestamp": "2025-01-13T09:00:00+01:00", + "coordinate": { + "lat": 52.344431515197456, + "long": 8.023382376342985 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.01.25 um 09:00 Uhr", + "Ende: 28.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.05.27)", + "", + "Abfahrt von der A1: AS Osnabr\u00fcck-Nord (aus Richtung Wallenhorster Stra\u00dfe)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A1 - Ersatzneubau BW AS Osnabr\u00fcck-Nord-B68 - Wallenhorst - AlD 4432" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.023382376, + 52.344431515 + ], + [ + 8.0233585, + 52.344420401 + ], + [ + 8.0229991, + 52.344253001 + ], + [ + 8.0228264, + 52.344194201 + ], + [ + 8.0226801, + 52.344156901 + ], + [ + 8.022522, + 52.344128501 + ], + [ + 8.0223569, + 52.344110601 + ], + [ + 8.0221662, + 52.344106901 + ], + [ + 8.022125485, + 52.344108947 + ] + ] + } + }, + { + "identifier": "2026-017801--vi-bs.2026-04-23_08-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.353647416295445,7.0189338477000796,49.35256581036667,7.018468027755976", + "point": "49.353647416295445,7.0189338477000796", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Saarbr\u00fccken (aus Richtung Illingen)", + "title": "A1 Beseitigung Unfallfolgen", + "coordinate": { + "lat": 49.353647416295445, + "long": 7.0189338477000796 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:30 bis 10:00 Uhr", + "", + "Auffahrt auf die A1: AK Saarbr\u00fccken (aus Richtung Illingen)", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 2.75 m", + "", + "A1 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.018933848, + 49.353647416 + ], + [ + 7.0189048, + 49.353549201 + ], + [ + 7.0188379, + 49.353349601 + ], + [ + 7.0186885, + 49.352997001 + ], + [ + 7.0185029, + 49.352627401 + ], + [ + 7.018468028, + 49.35256581 + ] + ] + } + }, + { + "identifier": "2023-004560--vi-bs.2025-09-24_05-00-00-000.devi-zus.2024-05-11_21-00-00-000_001.f.de60", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43223270893842,7.5356413794895785,51.434271107645856,7.534059331660882", + "point": "51.43223270893842,7.5356413794895785", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Lennhof)", + "title": "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560", + "startTimestamp": "2025-09-24T05:00:00+02:00", + "coordinate": { + "lat": 51.43223270893842, + "long": 7.5356413794895785 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.09.25 um 05:00 Uhr", + "Ende: 02.10.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.29)", + "", + "Auffahrt auf die A1: AK Westhofener Kreuz (aus Richtung Lennhof)", + "", + "L\u00e4nge: 0.25 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A1 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.535641379, + 51.432232709 + ], + [ + 7.5355666, + 51.432322401 + ], + [ + 7.5353204, + 51.432641601 + ], + [ + 7.5346741, + 51.433468401 + ], + [ + 7.5342217, + 51.434053901 + ], + [ + 7.534059332, + 51.434271108 + ] + ] + } + }, + { + "identifier": "2025-006272--vi-bs.2025-08-15_05-00-00-000.devi-zus.2025-04-02_05-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.039990393640814,8.885922592221437,53.038002309165506,8.882574248772539", + "point": "53.039990393640814,8.885922592221437", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bremen-Hemelingen (aus Richtung Mahndorfer Marsch)", + "title": "A1 Br\u00fcckeninstandsetzung Weserquerung ", + "startTimestamp": "2025-08-15T05:00:00+02:00", + "coordinate": { + "lat": 53.039990393640814, + "long": 8.885922592221437 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.08.25 um 05:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "Auffahrt auf die A1: AS Bremen-Hemelingen (aus Richtung Mahndorfer Marsch)", + "", + "L\u00e4nge: 0.34 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 Br\u00fcckeninstandsetzung Weserquerung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.885922592, + 53.039990394 + ], + [ + 8.8859032, + 53.039930701 + ], + [ + 8.8858182, + 53.039824201 + ], + [ + 8.88572, + 53.039744801 + ], + [ + 8.885539, + 53.039651701 + ], + [ + 8.885298, + 53.039566601 + ], + [ + 8.8851235, + 53.039495401 + ], + [ + 8.8849794, + 53.039429601 + ], + [ + 8.8848189, + 53.039313101 + ], + [ + 8.8847271, + 53.039190001 + ], + [ + 8.8846894, + 53.039100201 + ], + [ + 8.8846705, + 53.039007601 + ], + [ + 8.8846593, + 53.038901801 + ], + [ + 8.8846524, + 53.038763701 + ], + [ + 8.8846228, + 53.038643001 + ], + [ + 8.8845687, + 53.038558501 + ], + [ + 8.8845084, + 53.038495701 + ], + [ + 8.8844542, + 53.038456501 + ], + [ + 8.8843728, + 53.038411501 + ], + [ + 8.8842918, + 53.038374701 + ], + [ + 8.8841806, + 53.038335501 + ], + [ + 8.8839097, + 53.038239701 + ], + [ + 8.882574249, + 53.038002309 + ] + ] + } + }, + { + "identifier": "2024-004899--vi-bs.2024-02-04_16-00-00-000.devi-zus.2024-02-01_15-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.0416823837017,7.00635437587602,51.0429054895437,7.006286885249943", + "point": "51.0416823837017,7.00635437587602", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Leverkusen (aus Richtung Burscheid)", + "title": "AK Leverkusen", + "startTimestamp": "2024-02-04T16:00:00+01:00", + "coordinate": { + "lat": 51.0416823837017, + "long": 7.00635437587602 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.02.24 um 16:00 Uhr", + "Ende: 31.12.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "Abfahrt von der A1: AK Leverkusen (aus Richtung Burscheid)", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "AK Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.006354376, + 51.041682384 + ], + [ + 7.0062864, + 51.041657201 + ], + [ + 7.0062096, + 51.041635501 + ], + [ + 7.0061284, + 51.041618201 + ], + [ + 7.006052, + 51.041616001 + ], + [ + 7.0059668, + 51.041612701 + ], + [ + 7.0058788, + 51.041619501 + ], + [ + 7.0057938, + 51.041632101 + ], + [ + 7.0057227, + 51.041644801 + ], + [ + 7.0056507, + 51.041664701 + ], + [ + 7.0055568, + 51.041699101 + ], + [ + 7.0054477, + 51.041749001 + ], + [ + 7.0053834, + 51.041789801 + ], + [ + 7.0053305, + 51.041832801 + ], + [ + 7.005252, + 51.041920501 + ], + [ + 7.0051956, + 51.042023601 + ], + [ + 7.0051803, + 51.042086201 + ], + [ + 7.005182, + 51.042175901 + ], + [ + 7.0052084, + 51.042266601 + ], + [ + 7.0052634, + 51.042384301 + ], + [ + 7.0053539, + 51.042531401 + ], + [ + 7.0054861, + 51.042670701 + ], + [ + 7.0056326, + 51.042826701 + ], + [ + 7.0057234, + 51.042880001 + ], + [ + 7.0057951, + 51.042907301 + ], + [ + 7.0058622, + 51.042932401 + ], + [ + 7.0059728, + 51.042948501 + ], + [ + 7.0060332, + 51.042950501 + ], + [ + 7.0061322, + 51.042941301 + ], + [ + 7.0062176, + 51.042927701 + ], + [ + 7.006286885, + 51.04290549 + ] + ] + } + }, + { + "identifier": "2023-002834--vi-bs.2024-09-30_20-00-00-000.devi-zus.2021-10-11_20-00-00-000.f_001.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.52191989355915,7.654905871021955,51.520511122291715,7.656882274987269", + "point": "51.52191989355915,7.654905871021955", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A1 - Ersatzneubau TB Liedbachtal - AlD 2834", + "startTimestamp": "2024-09-30T20:00:00+02:00", + "coordinate": { + "lat": 51.52191989355915, + "long": 7.654905871021955 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.24 um 20:00 Uhr", + "Ende: 03.07.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.11.27)", + "", + "Abfahrt von der A44 O 1", + "", + "L\u00e4nge: 0.21 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Ersatzneubau TB Liedbachtal - AlD 2834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.654905871, + 51.521919894 + ], + [ + 7.6551359, + 51.521827901 + ], + [ + 7.6553824, + 51.521681401 + ], + [ + 7.6555478, + 51.521544401 + ], + [ + 7.6558007, + 51.521283601 + ], + [ + 7.6559728, + 51.521150201 + ], + [ + 7.6561904, + 51.521042701 + ], + [ + 7.6565985, + 51.520852101 + ], + [ + 7.6567585, + 51.520732901 + ], + [ + 7.6568578, + 51.520597001 + ], + [ + 7.656882275, + 51.520511122 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2026-03-24_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de35", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.57266761432364,7.6689962153186055,51.57304553910307,7.6689317831066734", + "point": "51.57266761432364,7.6689962153186055", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Kamen-Zentrum (aus Richtung Unna)", + "title": "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784", + "startTimestamp": "2026-03-24T20:00:00+01:00", + "coordinate": { + "lat": 51.57266761432364, + "long": 7.6689962153186055 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 20:00 Uhr", + "Ende: 29.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "Auffahrt auf die A1: AS Kamen-Zentrum (aus Richtung Unna)", + "", + "L\u00e4nge: 0.04 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.668996215, + 51.572667614 + ], + [ + 7.6689755, + 51.572686101 + ], + [ + 7.6689277, + 51.572795101 + ], + [ + 7.6689003, + 51.572952501 + ], + [ + 7.668931783, + 51.573045539 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2026-03-24_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.57173103295144,7.668061445590807,51.57217166424641,7.668984576503151", + "point": "51.57173103295144,7.668061445590807", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Kamen-Zentrum (aus Richtung Unna)", + "title": "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784", + "startTimestamp": "2026-03-24T20:00:00+01:00", + "coordinate": { + "lat": 51.57173103295144, + "long": 7.668061445590807 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 20:00 Uhr", + "Ende: 29.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "Abfahrt von der A1: AS Kamen-Zentrum (aus Richtung Unna)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.668061446, + 51.571731033 + ], + [ + 7.6681568, + 51.571832001 + ], + [ + 7.6683481, + 51.571984901 + ], + [ + 7.6685179, + 51.572062801 + ], + [ + 7.668984577, + 51.572171664 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2026-03-24_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5733118746119,7.668521937102343,51.57325562154935,7.666916367051417", + "point": "51.5733118746119,7.668521937102343", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Kamen-Zentrum (aus Richtung Kamener Kreuz)", + "title": "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784", + "startTimestamp": "2026-03-24T20:00:00+01:00", + "coordinate": { + "lat": 51.5733118746119, + "long": 7.668521937102343 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 20:00 Uhr", + "Ende: 29.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "Abfahrt von der A1: AS Kamen-Zentrum (aus Richtung Kamener Kreuz)", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.668521937, + 51.573311875 + ], + [ + 7.6684526, + 51.573257701 + ], + [ + 7.6683724, + 51.573191501 + ], + [ + 7.6682288, + 51.573100201 + ], + [ + 7.6680491, + 51.573031101 + ], + [ + 7.6678393, + 51.572987401 + ], + [ + 7.6676219, + 51.572978101 + ], + [ + 7.667401, + 51.573003801 + ], + [ + 7.6671988, + 51.573063501 + ], + [ + 7.6670383, + 51.573146601 + ], + [ + 7.6669199, + 51.573250401 + ], + [ + 7.666916367, + 51.573255622 + ] + ] + } + }, + { + "identifier": "2025-057914--vi-bs.2026-03-19_20-00-00-000.devi-zus.2026-02-02_20-00-00-000_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.650880732778326,7.684272599389587,51.65154750995065,7.6848649579067105", + "point": "51.650880732778326,7.684272599389587", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Hamm/Bergkamen (aus Richtung Haus Reck)", + "title": "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914", + "startTimestamp": "2026-03-19T20:00:00+01:00", + "coordinate": { + "lat": 51.650880732778326, + "long": 7.684272599389587 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.03.26 um 20:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "Abfahrt von der A1: AS Hamm/Bergkamen (aus Richtung Haus Reck)", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.684272599, + 51.650880733 + ], + [ + 7.6843067, + 51.650972701 + ], + [ + 7.684395, + 51.651124401 + ], + [ + 7.684477, + 51.651226701 + ], + [ + 7.6846222, + 51.651364001 + ], + [ + 7.6847623, + 51.651481401 + ], + [ + 7.684864958, + 51.65154751 + ] + ] + } + }, + { + "identifier": "2025-057914--vi-bs.2026-03-19_20-00-00-000.devi-zus.2026-02-02_20-00-00-000_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.65190476811573,7.68487335719406,51.65210742229947,7.683999655593892", + "point": "51.65190476811573,7.68487335719406", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Hamm/Bergkamen (aus Richtung Haus Reck)", + "title": "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914", + "startTimestamp": "2026-03-19T20:00:00+01:00", + "coordinate": { + "lat": 51.65190476811573, + "long": 7.68487335719406 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.03.26 um 20:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "Auffahrt auf die A1: AS Hamm/Bergkamen (aus Richtung Haus Reck)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.684873357, + 51.651904768 + ], + [ + 7.6848295, + 51.651896701 + ], + [ + 7.6846978, + 51.651882001 + ], + [ + 7.6845477, + 51.651880601 + ], + [ + 7.6844143, + 51.651898101 + ], + [ + 7.6842698, + 51.651936401 + ], + [ + 7.6841261, + 51.652005101 + ], + [ + 7.6840234, + 51.652078601 + ], + [ + 7.683999656, + 51.652107422 + ] + ] + } + }, + { + "identifier": "2025-057914--vi-bs.2026-03-19_20-00-00-000.devi-zus.2026-02-02_20-00-00-000_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.654222480313884,7.681854554334099,51.65409721483845,7.683126810125234", + "point": "51.654222480313884,7.681854554334099", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Hamm/Bergkamen (aus Richtung Fuchseggen)", + "title": "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914", + "startTimestamp": "2026-03-19T20:00:00+01:00", + "coordinate": { + "lat": 51.654222480313884, + "long": 7.681854554334099 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.03.26 um 20:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "Auffahrt auf die A1: AS Hamm/Bergkamen (aus Richtung Fuchseggen)", + "", + "L\u00e4nge: 0.11 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.681854554, + 51.65422248 + ], + [ + 7.6818835, + 51.654248201 + ], + [ + 7.6820167, + 51.654312201 + ], + [ + 7.6821301, + 51.654350001 + ], + [ + 7.6822489, + 51.654378401 + ], + [ + 7.6824192, + 51.654391301 + ], + [ + 7.6825727, + 51.654379301 + ], + [ + 7.6827305, + 51.654352001 + ], + [ + 7.682864, + 51.654303501 + ], + [ + 7.6829517, + 51.654258601 + ], + [ + 7.683031, + 51.654205101 + ], + [ + 7.6831103, + 51.654123001 + ], + [ + 7.68312681, + 51.654097215 + ] + ] + } + }, + { + "identifier": "2025-057914--vi-bs.2026-03-19_20-00-00-000.devi-zus.2026-02-02_20-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.65547194920269,7.682902276512507,51.6545419410947,7.681978468381969", + "point": "51.65547194920269,7.682902276512507", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Hamm/Bergkamen (aus Richtung Fuchseggen)", + "title": "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914", + "startTimestamp": "2026-03-19T20:00:00+01:00", + "coordinate": { + "lat": 51.65547194920269, + "long": 7.682902276512507 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.03.26 um 20:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "Abfahrt von der A1: AS Hamm/Bergkamen (aus Richtung Fuchseggen)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A1 - Vorarbeiten zum Ersatzneubau BW Datteln-Hamm-Kanal - AlD 57914" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.682902277, + 51.655471949 + ], + [ + 7.682882, + 51.655391301 + ], + [ + 7.6828249, + 51.655275001 + ], + [ + 7.682732, + 51.655134501 + ], + [ + 7.6826496, + 51.655031101 + ], + [ + 7.6825588, + 51.654940901 + ], + [ + 7.6824046, + 51.654834401 + ], + [ + 7.6822427, + 51.654714301 + ], + [ + 7.6820177, + 51.654571701 + ], + [ + 7.681978468, + 51.654541941 + ] + ] + } + } + ] + }, + "A2": { + "roadworks": [ + { + "identifier": "2023-004427--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-04-22_20-00-00-000_008.f.de68", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.538922651618236,6.867990772087697,51.540346418662935,6.884761582188279", + "point": "51.538922651618236,6.867990772087697", + "startLcPosition": "0", + "impact": { + "lower": "Schwarze Heide", + "upper": "Oberhausen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen - Schwarze Heide", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.538922651618236, + "long": 6.867990772087697 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 16.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A2: Oberhausen -> Dortmund, zwischen 2.4 km hinter AK Oberhausen und Schwarze Heide", + "", + "L\u00e4nge: 1.18 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 - grundhafte Sanierung der Fahrbahn - inkl. Parkplatz Schwarze Heide in Richtung Oberhausen gesperrt - AlD 4427" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.867990772, + 51.538922652 + ], + [ + 6.8687242, + 51.538932801 + ], + [ + 6.8696509, + 51.538941901 + ], + [ + 6.8703486, + 51.538950301 + ], + [ + 6.8711339, + 51.538961501 + ], + [ + 6.8714452, + 51.538964501 + ], + [ + 6.8722846, + 51.538972801 + ], + [ + 6.8732973, + 51.538982601 + ], + [ + 6.8738806, + 51.538993301 + ], + [ + 6.8746427, + 51.539017701 + ], + [ + 6.875482, + 51.539057801 + ], + [ + 6.8759562, + 51.539086701 + ], + [ + 6.8761141, + 51.539096301 + ], + [ + 6.876374, + 51.539116801 + ], + [ + 6.8769178, + 51.539159701 + ], + [ + 6.8776973, + 51.539232101 + ], + [ + 6.8789478, + 51.539385401 + ], + [ + 6.8791338, + 51.539407801 + ], + [ + 6.8805408, + 51.539619301 + ], + [ + 6.881068, + 51.539709901 + ], + [ + 6.8836834, + 51.540159801 + ], + [ + 6.884761582, + 51.540346419 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-fbm.2026-03-31_09-00-00-000.devi-zus.2025-09-05_00-00-00-000.de92", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.53874764900499,6.850824409592889,51.53881442052763,6.858694084635867", + "point": "51.53874764900499,6.850824409592889", + "startLcPosition": "0", + "impact": { + "lower": "Oberhausen-K\u00f6nigshardt", + "upper": "Oberhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen - Oberhausen-K\u00f6nigshardt", + "coordinate": { + "lat": 51.53874764900499, + "long": 6.850824409592889 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 10:00 bis 12:00 Uhr", + "22.04.26 von 10:00 bis 12:00 Uhr", + "23.04.26 von 10:00 bis 12:00 Uhr", + "", + "A2: Oberhausen -> Dortmund, zwischen 1.2 km hinter AK Oberhausen und 0.8 km vor AS Oberhausen-K\u00f6nigshardt", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 7.75 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.85082441, + 51.538747649 + ], + [ + 6.8510944, + 51.538750401 + ], + [ + 6.8536726, + 51.538765801 + ], + [ + 6.858694085, + 51.538814421 + ] + ] + } + }, + { + "identifier": "2026-016645--vi-fbm.2026-04-16_21-00-00-000.devi-zus.2026-04-16_21-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.538870714326826,6.8636957074684535,51.541061180222584,6.888933322379157", + "point": "51.538870714326826,6.8636957074684535", + "startLcPosition": "0", + "impact": { + "lower": "Bottrop", + "upper": "Oberhausen", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen - Bottrop", + "coordinate": { + "lat": 51.538870714326826, + "long": 6.8636957074684535 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 21:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 21:00 bis zum 18.04.26 05:00 Uhr.", + "18.04.26 21:00 bis zum 19.04.26 05:00 Uhr.", + "", + "A2: Oberhausen -> Dortmund, zwischen 2.1 km hinter AK Oberhausen und 2.2 km vor AS Bottrop", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - \u00c4nderung Verkehrsf\u00fchrung - AkD 16645" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.863695707, + 51.538870714 + ], + [ + 6.8676837, + 51.538918401 + ], + [ + 6.8687242, + 51.538932801 + ], + [ + 6.8696509, + 51.538941901 + ], + [ + 6.8703486, + 51.538950301 + ], + [ + 6.8711339, + 51.538961501 + ], + [ + 6.8714452, + 51.538964501 + ], + [ + 6.8722846, + 51.538972801 + ], + [ + 6.8732973, + 51.538982601 + ], + [ + 6.8738806, + 51.538993301 + ], + [ + 6.8746427, + 51.539017701 + ], + [ + 6.875482, + 51.539057801 + ], + [ + 6.8759562, + 51.539086701 + ], + [ + 6.8761141, + 51.539096301 + ], + [ + 6.876374, + 51.539116801 + ], + [ + 6.8769178, + 51.539159701 + ], + [ + 6.8776973, + 51.539232101 + ], + [ + 6.8789478, + 51.539385401 + ], + [ + 6.8791338, + 51.539407801 + ], + [ + 6.8805408, + 51.539619301 + ], + [ + 6.881068, + 51.539709901 + ], + [ + 6.8836834, + 51.540159801 + ], + [ + 6.8868849, + 51.540713901 + ], + [ + 6.8879809, + 51.540901401 + ], + [ + 6.8885716, + 51.540995301 + ], + [ + 6.888933322, + 51.54106118 + ] + ] + } + }, + { + "identifier": "2023-004427--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-04-22_20-00-00-000_008.f.de66", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53883650865841,6.860842078837474,51.538922651618236,6.867990772087697", + "point": "51.53883650865841,6.860842078837474", + "startLcPosition": "0", + "impact": { + "lower": "Oberhausen-K\u00f6nigshardt", + "upper": "Oberhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen - Oberhausen-K\u00f6nigshardt", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.53883650865841, + "long": 6.860842078837474 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 16.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A2: Oberhausen -> Dortmund, zwischen 1.9 km hinter AK Oberhausen und 0.1 km vor AS Oberhausen-K\u00f6nigshardt", + "", + "L\u00e4nge: 0.5 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 - grundhafte Sanierung der Fahrbahn - inkl. Parkplatz Schwarze Heide in Richtung Oberhausen gesperrt - AlD 4427" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.860842079, + 51.538836509 + ], + [ + 6.8676837, + 51.538918401 + ], + [ + 6.867990772, + 51.538922652 + ] + ] + } + }, + { + "identifier": "2023-004427--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-04-22_20-00-00-000_008.f.de64", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53873294810078,6.849383142603833,51.53883650865841,6.860842078837474", + "point": "51.53873294810078,6.849383142603833", + "startLcPosition": "0", + "impact": { + "lower": "Oberhausen-K\u00f6nigshardt", + "upper": "Oberhausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen - Oberhausen-K\u00f6nigshardt", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.53873294810078, + "long": 6.849383142603833 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 16.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A2: Oberhausen -> Dortmund, zwischen 1.1 km hinter AK Oberhausen und 0.6 km vor AS Oberhausen-K\u00f6nigshardt", + "", + "L\u00e4nge: 0.79 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 - grundhafte Sanierung der Fahrbahn - inkl. Parkplatz Schwarze Heide in Richtung Oberhausen gesperrt - AlD 4427" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.849383143, + 51.538732948 + ], + [ + 6.8510944, + 51.538750401 + ], + [ + 6.8536726, + 51.538765801 + ], + [ + 6.8602665, + 51.538829601 + ], + [ + 6.860842079, + 51.538836509 + ] + ] + } + }, + { + "identifier": "2026-016677--vi-fbm.2026-04-18_21-00-00-000.devi-zus.2026-04-18_21-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.538870886906835,6.863710119768325,51.54178561573652,6.893097504872344", + "point": "51.538870886906835,6.863710119768325", + "startLcPosition": "0", + "impact": { + "lower": "Bottrop", + "upper": "Oberhausen", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen - Bottrop", + "coordinate": { + "lat": 51.538870886906835, + "long": 6.863710119768325 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 21:00 bis zum 19.04.26 05:00 Uhr.", + "", + "A2: Oberhausen -> Dortmund, zwischen 2.1 km hinter AK Oberhausen und 1.9 km vor AS Bottrop", + "", + "L\u00e4nge: 2.07 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - \u00c4nderung Verkehrsf\u00fchrung - AkD 16677" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.86371012, + 51.538870887 + ], + [ + 6.8676837, + 51.538918401 + ], + [ + 6.8687242, + 51.538932801 + ], + [ + 6.8696509, + 51.538941901 + ], + [ + 6.8703486, + 51.538950301 + ], + [ + 6.8711339, + 51.538961501 + ], + [ + 6.8714452, + 51.538964501 + ], + [ + 6.8722846, + 51.538972801 + ], + [ + 6.8732973, + 51.538982601 + ], + [ + 6.8738806, + 51.538993301 + ], + [ + 6.8746427, + 51.539017701 + ], + [ + 6.875482, + 51.539057801 + ], + [ + 6.8759562, + 51.539086701 + ], + [ + 6.8761141, + 51.539096301 + ], + [ + 6.876374, + 51.539116801 + ], + [ + 6.8769178, + 51.539159701 + ], + [ + 6.8776973, + 51.539232101 + ], + [ + 6.8789478, + 51.539385401 + ], + [ + 6.8791338, + 51.539407801 + ], + [ + 6.8805408, + 51.539619301 + ], + [ + 6.881068, + 51.539709901 + ], + [ + 6.8836834, + 51.540159801 + ], + [ + 6.8868849, + 51.540713901 + ], + [ + 6.8879809, + 51.540901401 + ], + [ + 6.8885716, + 51.540995301 + ], + [ + 6.8895237, + 51.541168701 + ], + [ + 6.8912297, + 51.541458401 + ], + [ + 6.8918135, + 51.541562701 + ], + [ + 6.893097505, + 51.541785616 + ] + ] + } + }, + { + "identifier": "2026-016659--vi-fbm.2026-04-15_21-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.53880745609536,6.857973425402913,51.542267318001564,6.8958900373478045", + "point": "51.53880745609536,6.857973425402913", + "startLcPosition": "0", + "impact": { + "lower": "Bottrop", + "upper": "Oberhausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen - Bottrop", + "coordinate": { + "lat": 51.53880745609536, + "long": 6.857973425402913 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 21:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 21:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A2: Oberhausen -> Dortmund, zwischen 1.7 km hinter AK Oberhausen und 1.7 km vor AS Bottrop", + "", + "L\u00e4nge: 2.67 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A2 - \u00c4nderung Verkehrsf\u00fchrung - AkD 16659" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.857973425, + 51.538807456 + ], + [ + 6.8602665, + 51.538829601 + ], + [ + 6.8676837, + 51.538918401 + ], + [ + 6.8687242, + 51.538932801 + ], + [ + 6.8696509, + 51.538941901 + ], + [ + 6.8703486, + 51.538950301 + ], + [ + 6.8711339, + 51.538961501 + ], + [ + 6.8714452, + 51.538964501 + ], + [ + 6.8722846, + 51.538972801 + ], + [ + 6.8732973, + 51.538982601 + ], + [ + 6.8738806, + 51.538993301 + ], + [ + 6.8746427, + 51.539017701 + ], + [ + 6.875482, + 51.539057801 + ], + [ + 6.8759562, + 51.539086701 + ], + [ + 6.8761141, + 51.539096301 + ], + [ + 6.876374, + 51.539116801 + ], + [ + 6.8769178, + 51.539159701 + ], + [ + 6.8776973, + 51.539232101 + ], + [ + 6.8789478, + 51.539385401 + ], + [ + 6.8791338, + 51.539407801 + ], + [ + 6.8805408, + 51.539619301 + ], + [ + 6.881068, + 51.539709901 + ], + [ + 6.8836834, + 51.540159801 + ], + [ + 6.8868849, + 51.540713901 + ], + [ + 6.8879809, + 51.540901401 + ], + [ + 6.8885716, + 51.540995301 + ], + [ + 6.8895237, + 51.541168701 + ], + [ + 6.8912297, + 51.541458401 + ], + [ + 6.8918135, + 51.541562701 + ], + [ + 6.8935594, + 51.541865801 + ], + [ + 6.895890037, + 51.542267318 + ] + ] + } + }, + { + "identifier": "2026-016637--vi-fbm.2026-04-15_21-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.53880745609536,6.857973425402913,51.542267318001564,6.8958900373478045", + "point": "51.53880745609536,6.857973425402913", + "startLcPosition": "0", + "impact": { + "lower": "Bottrop", + "upper": "Oberhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen - Bottrop", + "coordinate": { + "lat": 51.53880745609536, + "long": 6.857973425402913 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 21:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 21:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A2: Oberhausen -> Dortmund, zwischen 1.7 km hinter AK Oberhausen und 1.7 km vor AS Bottrop", + "", + "L\u00e4nge: 2.67 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A2 - \u00c4nderung Verkehrsf\u00fchrung - AkD 16637" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.857973425, + 51.538807456 + ], + [ + 6.8602665, + 51.538829601 + ], + [ + 6.8676837, + 51.538918401 + ], + [ + 6.8687242, + 51.538932801 + ], + [ + 6.8696509, + 51.538941901 + ], + [ + 6.8703486, + 51.538950301 + ], + [ + 6.8711339, + 51.538961501 + ], + [ + 6.8714452, + 51.538964501 + ], + [ + 6.8722846, + 51.538972801 + ], + [ + 6.8732973, + 51.538982601 + ], + [ + 6.8738806, + 51.538993301 + ], + [ + 6.8746427, + 51.539017701 + ], + [ + 6.875482, + 51.539057801 + ], + [ + 6.8759562, + 51.539086701 + ], + [ + 6.8761141, + 51.539096301 + ], + [ + 6.876374, + 51.539116801 + ], + [ + 6.8769178, + 51.539159701 + ], + [ + 6.8776973, + 51.539232101 + ], + [ + 6.8789478, + 51.539385401 + ], + [ + 6.8791338, + 51.539407801 + ], + [ + 6.8805408, + 51.539619301 + ], + [ + 6.881068, + 51.539709901 + ], + [ + 6.8836834, + 51.540159801 + ], + [ + 6.8868849, + 51.540713901 + ], + [ + 6.8879809, + 51.540901401 + ], + [ + 6.8885716, + 51.540995301 + ], + [ + 6.8895237, + 51.541168701 + ], + [ + 6.8912297, + 51.541458401 + ], + [ + 6.8918135, + 51.541562701 + ], + [ + 6.8935594, + 51.541865801 + ], + [ + 6.895890037, + 51.542267318 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-fbm.2026-04-16_09-00-00-000.devi-zus.2025-04-06_00-00-00-000.de148", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.539036131651116,6.8651467962966795,51.53762113570021,6.835196537314108", + "point": "51.539036131651116,6.8651467962966795", + "startLcPosition": "1", + "impact": { + "lower": "Oberhausen", + "upper": "Oberhausen-K\u00f6nigshardt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Oberhausen-K\u00f6nigshardt - Oberhausen", + "coordinate": { + "lat": 51.539036131651116, + "long": 6.8651467962966795 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Donnerstag und Donnerstag zwischen dem 16.04.26 und dem 16.04.26 von 10:00 bis 12:00 Uhr.", + "17.04.26 von 10:00 bis 12:00 Uhr", + "20.04.26 20:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "24.04.26 20:00 bis zum 25.04.26 05:00 Uhr.", + "", + "A2: Dortmund -> Oberhausen, zwischen 0.3 km hinter AS Oberhausen-K\u00f6nigshardt und 0.1 km vor AK Oberhausen", + "", + "L\u00e4nge: 2.09 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.865146796, + 51.539036132 + ], + [ + 6.8602662, + 51.538979001 + ], + [ + 6.8537411, + 51.538921801 + ], + [ + 6.8511124, + 51.538898301 + ], + [ + 6.8462265, + 51.538866301 + ], + [ + 6.8461721, + 51.538866601 + ], + [ + 6.8446375, + 51.538825801 + ], + [ + 6.8439621, + 51.538799601 + ], + [ + 6.8434238, + 51.538774301 + ], + [ + 6.8426369, + 51.538733301 + ], + [ + 6.842233, + 51.538709001 + ], + [ + 6.8418823, + 51.538687901 + ], + [ + 6.8411322, + 51.538630101 + ], + [ + 6.8406243, + 51.538585101 + ], + [ + 6.8400308, + 51.538521801 + ], + [ + 6.8394019, + 51.538423901 + ], + [ + 6.838595, + 51.538290201 + ], + [ + 6.8378254, + 51.538170201 + ], + [ + 6.8370982, + 51.538036701 + ], + [ + 6.836174, + 51.537839601 + ], + [ + 6.835196537, + 51.537621136 + ] + ] + } + }, + { + "identifier": "2026-016926--vi-bs.2026-04-08_09-00-00-000.devi-zus.2026-04-08_09-00-00-000_004.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.53963064796254,6.880606827318237,51.56194322784538,7.066263091824701", + "point": "51.53963064796254,6.880606827318237", + "startLcPosition": "1", + "impact": { + "lower": "Erle", + "upper": "Oberhausen-K\u00f6nigshardt", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen-K\u00f6nigshardt - Erle", + "coordinate": { + "lat": 51.53963064796254, + "long": 6.880606827318237 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "11.04.26 von 09:00 bis 15:00 Uhr", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "17.04.26 von 09:00 bis 16:00 Uhr", + "18.04.26 von 09:00 bis 16:00 Uhr", + "20.04.26 von 09:00 bis 16:00 Uhr", + "21.04.26 von 09:00 bis 16:00 Uhr", + "22.04.26 von 09:00 bis 16:00 Uhr", + "23.04.26 von 09:00 bis 16:00 Uhr", + "24.04.26 von 09:00 bis 16:00 Uhr", + "", + "A2: Oberhausen -> Dortmund, zwischen 0.8 km hinter AS Oberhausen-K\u00f6nigshardt und 1.3 km vor Erle", + "", + "L\u00e4nge: 13.62 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Reinigungsarbeiten - Wanderbaustelle - AkD 16926" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.880606827, + 51.539630648 + ], + [ + 6.881068, + 51.539709901 + ], + [ + 6.8836834, + 51.540159801 + ], + [ + 6.8868849, + 51.540713901 + ], + [ + 6.8879809, + 51.540901401 + ], + [ + 6.8885716, + 51.540995301 + ], + [ + 6.8895237, + 51.541168701 + ], + [ + 6.8912297, + 51.541458401 + ], + [ + 6.8918135, + 51.541562701 + ], + [ + 6.8935594, + 51.541865801 + ], + [ + 6.8961471, + 51.542311601 + ], + [ + 6.8975083, + 51.542540701 + ], + [ + 6.8981964, + 51.542658701 + ], + [ + 6.8987147, + 51.542751201 + ], + [ + 6.899394, + 51.542876301 + ], + [ + 6.9005629, + 51.543111401 + ], + [ + 6.9013825, + 51.543284901 + ], + [ + 6.9023192, + 51.543512701 + ], + [ + 6.9030348, + 51.543703301 + ], + [ + 6.9038874, + 51.543949501 + ], + [ + 6.904915, + 51.544276001 + ], + [ + 6.905817, + 51.544578701 + ], + [ + 6.9063467, + 51.544777101 + ], + [ + 6.9065482, + 51.544852901 + ], + [ + 6.9073865, + 51.545200801 + ], + [ + 6.908969, + 51.545883101 + ], + [ + 6.9099012, + 51.546376101 + ], + [ + 6.9104334, + 51.546656001 + ], + [ + 6.9113475, + 51.547178201 + ], + [ + 6.9121622, + 51.547688901 + ], + [ + 6.9125911, + 51.547968801 + ], + [ + 6.9130881, + 51.548288601 + ], + [ + 6.9137725, + 51.548733901 + ], + [ + 6.9144771, + 51.549205101 + ], + [ + 6.9160453, + 51.550213501 + ], + [ + 6.916528, + 51.550533801 + ], + [ + 6.9171541, + 51.550932901 + ], + [ + 6.9177692, + 51.551329901 + ], + [ + 6.9183298, + 51.551686201 + ], + [ + 6.9187806, + 51.551959501 + ], + [ + 6.91924, + 51.552228701 + ], + [ + 6.9197031, + 51.552478101 + ], + [ + 6.9207798, + 51.553012901 + ], + [ + 6.9209668, + 51.553106701 + ], + [ + 6.9215738, + 51.553377801 + ], + [ + 6.9222473, + 51.553659101 + ], + [ + 6.9230038, + 51.553959001 + ], + [ + 6.9244864, + 51.554535001 + ], + [ + 6.9250292, + 51.554724201 + ], + [ + 6.9252553, + 51.554793301 + ], + [ + 6.9258775, + 51.554985401 + ], + [ + 6.9260993, + 51.555049901 + ], + [ + 6.9273457, + 51.555409401 + ], + [ + 6.9281449, + 51.555598701 + ], + [ + 6.9288584, + 51.555754801 + ], + [ + 6.9296048, + 51.555910901 + ], + [ + 6.9303387, + 51.556047301 + ], + [ + 6.9310916, + 51.556185801 + ], + [ + 6.9315953, + 51.556263501 + ], + [ + 6.9319444, + 51.556309601 + ], + [ + 6.9327333, + 51.556416301 + ], + [ + 6.9336316, + 51.556530101 + ], + [ + 6.9343147, + 51.556590201 + ], + [ + 6.9347034, + 51.556616901 + ], + [ + 6.9356308, + 51.556687401 + ], + [ + 6.9362785, + 51.556720001 + ], + [ + 6.9372105, + 51.556748801 + ], + [ + 6.9380234, + 51.556759101 + ], + [ + 6.9389651, + 51.556757401 + ], + [ + 6.9399504, + 51.556720101 + ], + [ + 6.9404444, + 51.556695401 + ], + [ + 6.9413963, + 51.556619801 + ], + [ + 6.9422837, + 51.556540401 + ], + [ + 6.9437838, + 51.556354701 + ], + [ + 6.9451193, + 51.556148201 + ], + [ + 6.9454974, + 51.556086401 + ], + [ + 6.94679, + 51.555842701 + ], + [ + 6.9479535, + 51.555594901 + ], + [ + 6.9489589, + 51.555356701 + ], + [ + 6.9497672, + 51.555162701 + ], + [ + 6.9507821, + 51.554910301 + ], + [ + 6.9542671, + 51.554051501 + ], + [ + 6.9550794, + 51.553870101 + ], + [ + 6.9563854, + 51.553621101 + ], + [ + 6.9571926, + 51.553489201 + ], + [ + 6.9577647, + 51.553396601 + ], + [ + 6.9584877, + 51.553298101 + ], + [ + 6.9591243, + 51.553226201 + ], + [ + 6.9603607, + 51.553110601 + ], + [ + 6.9608843, + 51.553061701 + ], + [ + 6.9616797, + 51.553011701 + ], + [ + 6.9625531, + 51.552967101 + ], + [ + 6.9629881, + 51.552949301 + ], + [ + 6.9634675, + 51.552937001 + ], + [ + 6.9642179, + 51.552932601 + ], + [ + 6.9649148, + 51.552931201 + ], + [ + 6.9662009, + 51.552967901 + ], + [ + 6.966916, + 51.553004801 + ], + [ + 6.9676521, + 51.553051901 + ], + [ + 6.968096, + 51.553088601 + ], + [ + 6.9686788, + 51.553138901 + ], + [ + 6.9695664, + 51.553226201 + ], + [ + 6.9702922, + 51.553316301 + ], + [ + 6.9711746, + 51.553443401 + ], + [ + 6.9724562, + 51.553651501 + ], + [ + 6.9748579, + 51.554088101 + ], + [ + 6.97671, + 51.554441901 + ], + [ + 6.9796367, + 51.555001101 + ], + [ + 6.9810802, + 51.555264501 + ], + [ + 6.98271, + 51.555566501 + ], + [ + 6.9834557, + 51.555697901 + ], + [ + 6.984063, + 51.555799401 + ], + [ + 6.9851458, + 51.555977501 + ], + [ + 6.9859589, + 51.556092201 + ], + [ + 6.9865902, + 51.556178401 + ], + [ + 6.9881002, + 51.556384501 + ], + [ + 6.9882634, + 51.556406001 + ], + [ + 6.9901034, + 51.556644801 + ], + [ + 6.9903616, + 51.556677101 + ], + [ + 6.994997, + 51.557271701 + ], + [ + 6.9952212, + 51.557303501 + ], + [ + 6.998738, + 51.557753701 + ], + [ + 7.0011276, + 51.558055801 + ], + [ + 7.0014671, + 51.558099901 + ], + [ + 7.0020421, + 51.558177901 + ], + [ + 7.0038917, + 51.558381201 + ], + [ + 7.0054709, + 51.558529901 + ], + [ + 7.0062374, + 51.558587901 + ], + [ + 7.0067266, + 51.558617501 + ], + [ + 7.0071279, + 51.558640301 + ], + [ + 7.0086639, + 51.558695901 + ], + [ + 7.0103725, + 51.558711901 + ], + [ + 7.0121651, + 51.558671501 + ], + [ + 7.013057, + 51.558626601 + ], + [ + 7.0139597, + 51.558573101 + ], + [ + 7.0156598, + 51.558449301 + ], + [ + 7.0178782, + 51.558257701 + ], + [ + 7.0188387, + 51.558174701 + ], + [ + 7.0219291, + 51.557912801 + ], + [ + 7.0244298, + 51.557690601 + ], + [ + 7.0251476, + 51.557641401 + ], + [ + 7.0252826, + 51.557634201 + ], + [ + 7.0254409, + 51.557625801 + ], + [ + 7.0267698, + 51.557554901 + ], + [ + 7.0286595, + 51.557546201 + ], + [ + 7.0303085, + 51.557597901 + ], + [ + 7.0314259, + 51.557675501 + ], + [ + 7.0330841, + 51.557823501 + ], + [ + 7.0348798, + 51.558023401 + ], + [ + 7.0350653, + 51.558044201 + ], + [ + 7.0395559, + 51.558545701 + ], + [ + 7.0437124, + 51.559013701 + ], + [ + 7.0444511, + 51.559096901 + ], + [ + 7.0447139, + 51.559128301 + ], + [ + 7.0460571, + 51.559277801 + ], + [ + 7.0464251, + 51.559319201 + ], + [ + 7.0478704, + 51.559477001 + ], + [ + 7.0510586, + 51.559852001 + ], + [ + 7.0539584, + 51.560202001 + ], + [ + 7.0581524, + 51.560758001 + ], + [ + 7.0589396, + 51.560865001 + ], + [ + 7.0607256, + 51.561104101 + ], + [ + 7.061182, + 51.561174401 + ], + [ + 7.0620867, + 51.561296601 + ], + [ + 7.0637695, + 51.561516001 + ], + [ + 7.0644616, + 51.561621901 + ], + [ + 7.0654844, + 51.561791401 + ], + [ + 7.0657302, + 51.561839301 + ], + [ + 7.066263092, + 51.561943228 + ] + ] + } + }, + { + "identifier": "2023-004427--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-04-22_20-00-00-000_008.f.de78", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53906943833309,6.868000404166792,51.539036131651116,6.8651467962966795", + "point": "51.53906943833309,6.868000404166792", + "startLcPosition": "1", + "impact": { + "lower": "Oberhausen", + "upper": "Oberhausen-K\u00f6nigshardt", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Oberhausen-K\u00f6nigshardt - Oberhausen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.53906943833309, + "long": 6.868000404166792 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 16.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A2: Dortmund -> Oberhausen, zwischen 0.1 km hinter AS Oberhausen-K\u00f6nigshardt und 2.2 km vor AK Oberhausen", + "", + "L\u00e4nge: 0.2 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 - grundhafte Sanierung der Fahrbahn - inkl. Parkplatz Schwarze Heide in Richtung Oberhausen gesperrt - AlD 4427" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.868000404, + 51.539069438 + ], + [ + 6.8676797, + 51.539065701 + ], + [ + 6.865146796, + 51.539036132 + ] + ] + } + }, + { + "identifier": "2023-004427--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-04-22_20-00-00-000_008.f.de72", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.540346418662935,6.884761582188279,51.54250239831088,6.897280717116784", + "point": "51.540346418662935,6.884761582188279", + "startLcPosition": "1", + "impact": { + "lower": "Bottrop", + "upper": "Oberhausen-K\u00f6nigshardt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Oberhausen-K\u00f6nigshardt - Bottrop", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.540346418662935, + "long": 6.884761582188279 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 16.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A2: Oberhausen -> Dortmund, zwischen 1.1 km hinter AS Oberhausen-K\u00f6nigshardt und 1.6 km vor AS Bottrop", + "", + "L\u00e4nge: 0.9 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 - grundhafte Sanierung der Fahrbahn - inkl. Parkplatz Schwarze Heide in Richtung Oberhausen gesperrt - AlD 4427" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.884761582, + 51.540346419 + ], + [ + 6.8868849, + 51.540713901 + ], + [ + 6.8879809, + 51.540901401 + ], + [ + 6.8885716, + 51.540995301 + ], + [ + 6.8895237, + 51.541168701 + ], + [ + 6.8912297, + 51.541458401 + ], + [ + 6.8918135, + 51.541562701 + ], + [ + 6.8935594, + 51.541865801 + ], + [ + 6.8961471, + 51.542311601 + ], + [ + 6.897280717, + 51.542502398 + ] + ] + } + }, + { + "identifier": "2023-004427--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-04-22_20-00-00-000_008.f.de70", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.540493538490836,6.884696162445807,51.5390692703931,6.867985991715773", + "point": "51.540493538490836,6.884696162445807", + "startLcPosition": "2", + "impact": { + "lower": "Oberhausen", + "upper": "Schwarze Heide", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Schwarze Heide - Oberhausen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.540493538490836, + "long": 6.884696162445807 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 16.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A2: Dortmund -> Oberhausen, zwischen Schwarze Heide und 2.4 km vor AK Oberhausen", + "", + "L\u00e4nge: 1.18 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 - grundhafte Sanierung der Fahrbahn - inkl. Parkplatz Schwarze Heide in Richtung Oberhausen gesperrt - AlD 4427" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.884696162, + 51.540493538 + ], + [ + 6.8836112, + 51.540306101 + ], + [ + 6.8824206, + 51.540102001 + ], + [ + 6.8804763, + 51.539768701 + ], + [ + 6.8791701, + 51.539563401 + ], + [ + 6.8789799, + 51.539536801 + ], + [ + 6.8776477, + 51.539378001 + ], + [ + 6.8768794, + 51.539301501 + ], + [ + 6.8765618, + 51.539276701 + ], + [ + 6.8760942, + 51.539240201 + ], + [ + 6.8754545, + 51.539203301 + ], + [ + 6.8746233, + 51.539163801 + ], + [ + 6.873877, + 51.539136601 + ], + [ + 6.8732896, + 51.539131301 + ], + [ + 6.8722732, + 51.539118201 + ], + [ + 6.8711295, + 51.539106901 + ], + [ + 6.869603, + 51.539091201 + ], + [ + 6.8693613, + 51.539085301 + ], + [ + 6.8687612, + 51.539078301 + ], + [ + 6.867985992, + 51.53906927 + ] + ] + } + }, + { + "identifier": "2026-016645--vi-fbm.2026-04-16_21-00-00-000.devi-zus.2026-04-16_21-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.54121339595592,6.8888639567994865,51.53901911404224,6.863691189585996", + "point": "51.54121339595592,6.8888639567994865", + "startLcPosition": "4", + "impact": { + "lower": "Oberhausen", + "upper": "Bottrop", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Bottrop - Oberhausen", + "coordinate": { + "lat": 51.54121339595592, + "long": 6.8888639567994865 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 21:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 21:00 bis zum 18.04.26 05:00 Uhr.", + "18.04.26 21:00 bis zum 19.04.26 05:00 Uhr.", + "", + "A2: Dortmund -> Oberhausen, zwischen 2.2 km hinter AS Bottrop und 2.1 km vor AK Oberhausen", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A2 - \u00c4nderung Verkehrsf\u00fchrung - AkD 16645" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.888863957, + 51.541213396 + ], + [ + 6.8883721, + 51.541128501 + ], + [ + 6.887913, + 51.541049201 + ], + [ + 6.8868199, + 51.540860401 + ], + [ + 6.8836112, + 51.540306101 + ], + [ + 6.8824206, + 51.540102001 + ], + [ + 6.8804763, + 51.539768701 + ], + [ + 6.8791701, + 51.539563401 + ], + [ + 6.8789799, + 51.539536801 + ], + [ + 6.8776477, + 51.539378001 + ], + [ + 6.8768794, + 51.539301501 + ], + [ + 6.8765618, + 51.539276701 + ], + [ + 6.8760942, + 51.539240201 + ], + [ + 6.8754545, + 51.539203301 + ], + [ + 6.8746233, + 51.539163801 + ], + [ + 6.873877, + 51.539136601 + ], + [ + 6.8732896, + 51.539131301 + ], + [ + 6.8722732, + 51.539118201 + ], + [ + 6.8711295, + 51.539106901 + ], + [ + 6.869603, + 51.539091201 + ], + [ + 6.8693613, + 51.539085301 + ], + [ + 6.8687612, + 51.539078301 + ], + [ + 6.8676797, + 51.539065701 + ], + [ + 6.86369119, + 51.539019114 + ] + ] + } + }, + { + "identifier": "2023-004427--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-04-22_20-00-00-000_008.f.de76", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54169169001949,6.891643226466368,51.540493538490836,6.884696162445807", + "point": "51.54169169001949,6.891643226466368", + "startLcPosition": "4", + "impact": { + "lower": "Oberhausen-K\u00f6nigshardt", + "upper": "Bottrop", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Bottrop - Oberhausen-K\u00f6nigshardt", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.54169169001949, + "long": 6.891643226466368 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 16.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A2: Dortmund -> Oberhausen, zwischen 2.0 km hinter AS Bottrop und 1.1 km vor AS Oberhausen-K\u00f6nigshardt", + "", + "L\u00e4nge: 0.5 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 - grundhafte Sanierung der Fahrbahn - inkl. Parkplatz Schwarze Heide in Richtung Oberhausen gesperrt - AlD 4427" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.891643226, + 51.54169169 + ], + [ + 6.8909179, + 51.541566501 + ], + [ + 6.8894567, + 51.541315701 + ], + [ + 6.8883721, + 51.541128501 + ], + [ + 6.887913, + 51.541049201 + ], + [ + 6.8868199, + 51.540860401 + ], + [ + 6.884696162, + 51.540493538 + ] + ] + } + }, + { + "identifier": "2023-004427--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-04-22_20-00-00-000_008.f.de74", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54343650663332,6.9013285361743035,51.54169169001949,6.891643226466368", + "point": "51.54343650663332,6.9013285361743035", + "startLcPosition": "4", + "impact": { + "lower": "Bottrop", + "upper": "Bottrop", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Bottrop - Bottrop", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.54343650663332, + "long": 6.9013285361743035 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 16.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A2: Dortmund -> Oberhausen, zwischen 1.3 km hinter AS Bottrop und 0.4 km vor Bottrop", + "", + "L\u00e4nge: 0.7 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 - grundhafte Sanierung der Fahrbahn - inkl. Parkplatz Schwarze Heide in Richtung Oberhausen gesperrt - AlD 4427" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.901328536, + 51.543436507 + ], + [ + 6.9004322, + 51.543246101 + ], + [ + 6.8994468, + 51.543051601 + ], + [ + 6.8977043, + 51.542737201 + ], + [ + 6.8959397, + 51.542431901 + ], + [ + 6.8944962, + 51.542186201 + ], + [ + 6.892338, + 51.541811601 + ], + [ + 6.891643226, + 51.54169169 + ] + ] + } + }, + { + "identifier": "2026-016677--vi-fbm.2026-04-18_21-00-00-000.devi-zus.2026-04-18_21-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.54193208414105,6.893032116668296,51.539019282628026,6.86370560204852", + "point": "51.54193208414105,6.893032116668296", + "startLcPosition": "4", + "impact": { + "lower": "Oberhausen", + "upper": "Bottrop", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Bottrop - Oberhausen", + "coordinate": { + "lat": 51.54193208414105, + "long": 6.893032116668296 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 21:00 bis zum 19.04.26 05:00 Uhr.", + "", + "A2: Dortmund -> Oberhausen, zwischen 1.9 km hinter AS Bottrop und 2.1 km vor AK Oberhausen", + "", + "L\u00e4nge: 2.07 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A2 - \u00c4nderung Verkehrsf\u00fchrung - AkD 16677" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.893032117, + 51.541932084 + ], + [ + 6.892338, + 51.541811601 + ], + [ + 6.8909179, + 51.541566501 + ], + [ + 6.8894567, + 51.541315701 + ], + [ + 6.8883721, + 51.541128501 + ], + [ + 6.887913, + 51.541049201 + ], + [ + 6.8868199, + 51.540860401 + ], + [ + 6.8836112, + 51.540306101 + ], + [ + 6.8824206, + 51.540102001 + ], + [ + 6.8804763, + 51.539768701 + ], + [ + 6.8791701, + 51.539563401 + ], + [ + 6.8789799, + 51.539536801 + ], + [ + 6.8776477, + 51.539378001 + ], + [ + 6.8768794, + 51.539301501 + ], + [ + 6.8765618, + 51.539276701 + ], + [ + 6.8760942, + 51.539240201 + ], + [ + 6.8754545, + 51.539203301 + ], + [ + 6.8746233, + 51.539163801 + ], + [ + 6.873877, + 51.539136601 + ], + [ + 6.8732896, + 51.539131301 + ], + [ + 6.8722732, + 51.539118201 + ], + [ + 6.8711295, + 51.539106901 + ], + [ + 6.869603, + 51.539091201 + ], + [ + 6.8693613, + 51.539085301 + ], + [ + 6.8687612, + 51.539078301 + ], + [ + 6.8676797, + 51.539065701 + ], + [ + 6.863705602, + 51.539019283 + ] + ] + } + }, + { + "identifier": "2026-016334--vi-fbm.2026-04-17_17-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.555060579347675,6.979105148863504,51.55324588561673,6.968109809354421", + "point": "51.555060579347675,6.979105148863504", + "startLcPosition": "7", + "impact": { + "lower": "Gladbeck-Ellinghorst", + "upper": "Essen/Gladbeck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Essen/Gladbeck - Gladbeck-Ellinghorst", + "coordinate": { + "lat": 51.555060579347675, + "long": 6.979105148863504 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 17:00 bis 18:00 Uhr", + "", + "A2: Dortmund -> Oberhausen, zwischen 0.3 km hinter AS Essen/Gladbeck und 0.2 km vor AS Gladbeck-Ellinghorst", + "", + "L\u00e4nge: 0.79 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 16334" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.979105149, + 51.555060579 + ], + [ + 6.9779808, + 51.554848401 + ], + [ + 6.9762987, + 51.554543901 + ], + [ + 6.973437, + 51.553998201 + ], + [ + 6.9730579, + 51.553927601 + ], + [ + 6.971887, + 51.553720401 + ], + [ + 6.9711401, + 51.553601401 + ], + [ + 6.9706157, + 51.553526301 + ], + [ + 6.9701574, + 51.553462501 + ], + [ + 6.9694937, + 51.553381701 + ], + [ + 6.9687534, + 51.553303901 + ], + [ + 6.968109809, + 51.553245886 + ] + ] + } + }, + { + "identifier": "2026-016322--vi-fbm.2026-04-13_09-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.555060579347675,6.979105148863504,51.55324588561673,6.968109809354421", + "point": "51.555060579347675,6.979105148863504", + "startLcPosition": "7", + "impact": { + "lower": "Gladbeck-Ellinghorst", + "upper": "Essen/Gladbeck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Essen/Gladbeck - Gladbeck-Ellinghorst", + "coordinate": { + "lat": 51.555060579347675, + "long": 6.979105148863504 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 12:00 Uhr", + "", + "A2: Dortmund -> Oberhausen, zwischen 0.3 km hinter AS Essen/Gladbeck und 0.2 km vor AS Gladbeck-Ellinghorst", + "", + "L\u00e4nge: 0.79 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Baustelleneinrichtung - AkD 16322" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.979105149, + 51.555060579 + ], + [ + 6.9779808, + 51.554848401 + ], + [ + 6.9762987, + 51.554543901 + ], + [ + 6.973437, + 51.553998201 + ], + [ + 6.9730579, + 51.553927601 + ], + [ + 6.971887, + 51.553720401 + ], + [ + 6.9711401, + 51.553601401 + ], + [ + 6.9706157, + 51.553526301 + ], + [ + 6.9701574, + 51.553462501 + ], + [ + 6.9694937, + 51.553381701 + ], + [ + 6.9687534, + 51.553303901 + ], + [ + 6.968109809, + 51.553245886 + ] + ] + } + }, + { + "identifier": "2026-016926--vi-bs.2026-04-08_09-00-00-000.devi-zus.2026-04-08_09-00-00-000_004.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.5620804326196,7.066194650674754,51.539779791498056,6.880540993155203", + "point": "51.5620804326196,7.066194650674754", + "startLcPosition": "10", + "impact": { + "lower": "Oberhausen-K\u00f6nigshardt", + "upper": "Erle", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Erle - Oberhausen-K\u00f6nigshardt", + "coordinate": { + "lat": 51.5620804326196, + "long": 7.066194650674754 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "11.04.26 von 09:00 bis 15:00 Uhr", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "17.04.26 von 09:00 bis 16:00 Uhr", + "18.04.26 von 09:00 bis 16:00 Uhr", + "20.04.26 von 09:00 bis 16:00 Uhr", + "21.04.26 von 09:00 bis 16:00 Uhr", + "22.04.26 von 09:00 bis 16:00 Uhr", + "23.04.26 von 09:00 bis 16:00 Uhr", + "24.04.26 von 09:00 bis 16:00 Uhr", + "", + "A2: Dortmund -> Oberhausen, zwischen 1.3 km hinter Erle und 0.8 km vor AS Oberhausen-K\u00f6nigshardt", + "", + "L\u00e4nge: 13.62 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Reinigungsarbeiten - Wanderbaustelle - AkD 16926" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.066194651, + 51.562080433 + ], + [ + 7.0656659, + 51.561978801 + ], + [ + 7.0654277, + 51.561928801 + ], + [ + 7.0652468, + 51.561898201 + ], + [ + 7.063947, + 51.561708501 + ], + [ + 7.0611838, + 51.561330001 + ], + [ + 7.0601804, + 51.561194601 + ], + [ + 7.0577935, + 51.560870601 + ], + [ + 7.053894, + 51.560356701 + ], + [ + 7.0510392, + 51.560004601 + ], + [ + 7.0478454, + 51.559636001 + ], + [ + 7.0464554, + 51.559480801 + ], + [ + 7.0460922, + 51.559437501 + ], + [ + 7.0447433, + 51.559287601 + ], + [ + 7.0444783, + 51.559256901 + ], + [ + 7.0435687, + 51.559153101 + ], + [ + 7.0394639, + 51.558692701 + ], + [ + 7.0350395, + 51.558206301 + ], + [ + 7.0348551, + 51.558184901 + ], + [ + 7.0347063, + 51.558169701 + ], + [ + 7.0326941, + 51.557951101 + ], + [ + 7.0313948, + 51.557824201 + ], + [ + 7.0304493, + 51.557761501 + ], + [ + 7.0286871, + 51.557689001 + ], + [ + 7.0276858, + 51.557695801 + ], + [ + 7.0266798, + 51.557702901 + ], + [ + 7.0259288, + 51.557743601 + ], + [ + 7.0254594, + 51.557770001 + ], + [ + 7.0253045, + 51.557778701 + ], + [ + 7.0250544, + 51.557792801 + ], + [ + 7.0232512, + 51.557949701 + ], + [ + 7.0219473, + 51.558071001 + ], + [ + 7.0188417, + 51.558327701 + ], + [ + 7.0174575, + 51.558452801 + ], + [ + 7.0156592, + 51.558602201 + ], + [ + 7.0137814, + 51.558740001 + ], + [ + 7.0121972, + 51.558818201 + ], + [ + 7.0103981, + 51.558862901 + ], + [ + 7.0097208, + 51.558857601 + ], + [ + 7.0086639, + 51.558849301 + ], + [ + 7.00714, + 51.558796101 + ], + [ + 7.0066277, + 51.558769401 + ], + [ + 7.0061506, + 51.558740201 + ], + [ + 7.0058075, + 51.558713101 + ], + [ + 7.0054197, + 51.558682701 + ], + [ + 7.003862, + 51.558542401 + ], + [ + 7.001393, + 51.558251501 + ], + [ + 7.0010502, + 51.558207601 + ], + [ + 6.9986911, + 51.557906301 + ], + [ + 6.9951681, + 51.557454801 + ], + [ + 6.9949438, + 51.557426801 + ], + [ + 6.9902869, + 51.556825501 + ], + [ + 6.9900278, + 51.556797701 + ], + [ + 6.9892489, + 51.556695901 + ], + [ + 6.9880471, + 51.556532801 + ], + [ + 6.9858454, + 51.556235601 + ], + [ + 6.9850893, + 51.556127501 + ], + [ + 6.9841809, + 51.555978601 + ], + [ + 6.9835817, + 51.555882001 + ], + [ + 6.9826416, + 51.555714101 + ], + [ + 6.9810076, + 51.555413001 + ], + [ + 6.9803321, + 51.555288701 + ], + [ + 6.9795827, + 51.555150701 + ], + [ + 6.9792706, + 51.555091801 + ], + [ + 6.9779808, + 51.554848401 + ], + [ + 6.9762987, + 51.554543901 + ], + [ + 6.973437, + 51.553998201 + ], + [ + 6.9730579, + 51.553927601 + ], + [ + 6.971887, + 51.553720401 + ], + [ + 6.9711401, + 51.553601401 + ], + [ + 6.9706157, + 51.553526301 + ], + [ + 6.9701574, + 51.553462501 + ], + [ + 6.9694937, + 51.553381701 + ], + [ + 6.9687534, + 51.553303901 + ], + [ + 6.9679813, + 51.553234301 + ], + [ + 6.9675299, + 51.553200801 + ], + [ + 6.9670389, + 51.553166101 + ], + [ + 6.9657122, + 51.553107201 + ], + [ + 6.9644688, + 51.553089501 + ], + [ + 6.9639525, + 51.553086001 + ], + [ + 6.9634891, + 51.553092901 + ], + [ + 6.9630047, + 51.553104101 + ], + [ + 6.96254, + 51.553125201 + ], + [ + 6.9617517, + 51.553160801 + ], + [ + 6.9610169, + 51.553205201 + ], + [ + 6.960361, + 51.553266001 + ], + [ + 6.9593781, + 51.553357001 + ], + [ + 6.9585233, + 51.553450701 + ], + [ + 6.9574506, + 51.553603501 + ], + [ + 6.9564915, + 51.553765801 + ], + [ + 6.9558648, + 51.553886001 + ], + [ + 6.9542989, + 51.554206201 + ], + [ + 6.9534237, + 51.554404801 + ], + [ + 6.9508554, + 51.555061201 + ], + [ + 6.9498879, + 51.555309201 + ], + [ + 6.9492803, + 51.555450301 + ], + [ + 6.9477722, + 51.555800601 + ], + [ + 6.9468598, + 51.555988101 + ], + [ + 6.9456225, + 51.556216901 + ], + [ + 6.9452602, + 51.556280201 + ], + [ + 6.9436945, + 51.556515201 + ], + [ + 6.9418592, + 51.556740301 + ], + [ + 6.9409123, + 51.556824901 + ], + [ + 6.9398697, + 51.556884301 + ], + [ + 6.9389577, + 51.556909001 + ], + [ + 6.9375819, + 51.556917101 + ], + [ + 6.9364654, + 51.556881101 + ], + [ + 6.935893, + 51.556863101 + ], + [ + 6.9347682, + 51.556789901 + ], + [ + 6.9338248, + 51.556702901 + ], + [ + 6.9329204, + 51.556601701 + ], + [ + 6.9321358, + 51.556498901 + ], + [ + 6.9314028, + 51.556390901 + ], + [ + 6.9307841, + 51.556294901 + ], + [ + 6.929445, + 51.556040701 + ], + [ + 6.9287637, + 51.555899701 + ], + [ + 6.9277886, + 51.555681001 + ], + [ + 6.926186, + 51.555249601 + ], + [ + 6.9259599, + 51.555177101 + ], + [ + 6.9253362, + 51.554990501 + ], + [ + 6.9251115, + 51.554919901 + ], + [ + 6.924179, + 51.554615301 + ], + [ + 6.9231908, + 51.554253001 + ], + [ + 6.9220518, + 51.553799601 + ], + [ + 6.921068, + 51.553364801 + ], + [ + 6.9200632, + 51.552886701 + ], + [ + 6.9184985, + 51.552003101 + ], + [ + 6.9175901, + 51.551438801 + ], + [ + 6.9164861, + 51.550729901 + ], + [ + 6.9160042, + 51.550418001 + ], + [ + 6.9141839, + 51.549232701 + ], + [ + 6.9124405, + 51.548101601 + ], + [ + 6.9117515, + 51.547659301 + ], + [ + 6.9106088, + 51.546959801 + ], + [ + 6.9096472, + 51.546448601 + ], + [ + 6.9092253, + 51.546231601 + ], + [ + 6.9078484, + 51.545578001 + ], + [ + 6.906507, + 51.545022601 + ], + [ + 6.9054102, + 51.544619901 + ], + [ + 6.9040841, + 51.544186301 + ], + [ + 6.9037289, + 51.544073401 + ], + [ + 6.9026748, + 51.543771401 + ], + [ + 6.9020677, + 51.543619001 + ], + [ + 6.9013351, + 51.543437901 + ], + [ + 6.9004322, + 51.543246101 + ], + [ + 6.8994468, + 51.543051601 + ], + [ + 6.8977043, + 51.542737201 + ], + [ + 6.8959397, + 51.542431901 + ], + [ + 6.8944962, + 51.542186201 + ], + [ + 6.892338, + 51.541811601 + ], + [ + 6.8909179, + 51.541566501 + ], + [ + 6.8894567, + 51.541315701 + ], + [ + 6.8883721, + 51.541128501 + ], + [ + 6.887913, + 51.541049201 + ], + [ + 6.8868199, + 51.540860401 + ], + [ + 6.8836112, + 51.540306101 + ], + [ + 6.8824206, + 51.540102001 + ], + [ + 6.880540993, + 51.539779791 + ] + ] + } + }, + { + "identifier": "2025-037737--vi-bs.2026-02-13_09-00-00-000.devi-bs.2026-02-10_19-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5696676849801,7.093771658358943,51.57016787498068,7.099106165578866", + "point": "51.5696676849801,7.093771658358943", + "startLcPosition": "11", + "impact": { + "lower": "Herten", + "upper": "Resser Mark", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Resser Mark - Herten", + "startTimestamp": "2026-02-13T09:00:00+01:00", + "coordinate": { + "lat": 51.5696676849801, + "long": 7.093771658358943 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.02.26 um 09:00 Uhr", + "Ende: 04.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A2: Oberhausen -> Dortmund, zwischen 0.1 km hinter Resser Mark und 2.5 km vor AS Herten", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A2 - Sanierung Tank- u. Rastanlagen Resser Mark S\u00fcd gesperrt - AlD 37737 " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.093771658, + 51.569667685 + ], + [ + 7.0943776, + 51.569757201 + ], + [ + 7.0954727, + 51.569899401 + ], + [ + 7.0959984, + 51.569954801 + ], + [ + 7.0970825, + 51.570056601 + ], + [ + 7.0980465, + 51.570122601 + ], + [ + 7.0989207, + 51.570162501 + ], + [ + 7.099106166, + 51.570167875 + ] + ] + } + }, + { + "identifier": "2025-037737--vi-bs.2026-02-13_09-00-00-000.devi-bs.2026-02-10_19-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.570197479268685,7.101260296621853,51.57007878501989,7.107388311637113", + "point": "51.570197479268685,7.101260296621853", + "startLcPosition": "12", + "impact": { + "lower": "Herten", + "upper": "Resser Mark", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Resser Mark - Herten", + "startTimestamp": "2026-02-13T09:00:00+01:00", + "coordinate": { + "lat": 51.570197479268685, + "long": 7.101260296621853 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.02.26 um 09:00 Uhr", + "Ende: 04.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A2: Oberhausen -> Dortmund, zwischen 0.4 km hinter Resser Mark und 1.9 km vor AS Herten", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A2 - Sanierung Tank- u. Rastanlagen Resser Mark S\u00fcd gesperrt - AlD 37737 " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.101260297, + 51.570197479 + ], + [ + 7.1030202, + 51.570164901 + ], + [ + 7.1053277, + 51.570119701 + ], + [ + 7.1063711, + 51.570097101 + ], + [ + 7.107388312, + 51.570078785 + ] + ] + } + }, + { + "identifier": "2023-002164--vi-bs.2023-01-18_05-00-00-000.devi-zus.2023-01-18_05-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.58373532493294,7.406249740703944,51.58404728890304,7.409167436212131", + "point": "51.58373532493294,7.406249740703944", + "startLcPosition": "22", + "impact": { + "lower": "Kleine Herrenthey", + "upper": "Dortmund-Mengede", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Dortmund", + "title": "A2 | Dortmund-Mengede - Kleine Herrenthey", + "startTimestamp": "2023-01-18T05:00:00+01:00", + "coordinate": { + "lat": 51.58373532493294, + "long": 7.406249740703944 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.01.23 um 05:00 Uhr", + "Ende: 31.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.26)", + "", + "A2: Oberhausen -> Dortmund, zwischen 0.9 km hinter AS Dortmund-Mengede und 1.5 km vor Kleine Herrenthey", + "", + "L\u00e4nge: 0.21 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A2 - Kompensationsma\u00dfnahme BW Do-Ems-Kanal - AlD 2164" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.406249741, + 51.583735325 + ], + [ + 7.4070445, + 51.583816301 + ], + [ + 7.4073256, + 51.583844301 + ], + [ + 7.4085712, + 51.583977801 + ], + [ + 7.4090399, + 51.584033201 + ], + [ + 7.409167436, + 51.584047289 + ] + ] + } + }, + { + "identifier": "2023-002164--vi-bs.2023-01-18_05-00-00-000.devi-zus.2023-01-18_05-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.58421039452733,7.409123743798948,51.583896688667984,7.406205276126771", + "point": "51.58421039452733,7.409123743798948", + "startLcPosition": "23", + "impact": { + "lower": "Dortmund-Mengede", + "upper": "Kleine Herrenthey", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Oberhausen", + "title": "A2 | Kleine Herrenthey - Dortmund-Mengede", + "startTimestamp": "2023-01-18T05:00:00+01:00", + "coordinate": { + "lat": 51.58421039452733, + "long": 7.409123743798948 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.01.23 um 05:00 Uhr", + "Ende: 31.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.26)", + "", + "A2: Dortmund -> Oberhausen, zwischen 1.5 km hinter Kleine Herrenthey und 0.9 km vor AS Dortmund-Mengede", + "", + "L\u00e4nge: 0.21 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A2 - Kompensationsma\u00dfnahme BW Do-Ems-Kanal - AlD 2164" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.409123744, + 51.584210395 + ], + [ + 7.4088343, + 51.584182701 + ], + [ + 7.4083251, + 51.584128301 + ], + [ + 7.4070796, + 51.583995201 + ], + [ + 7.4069069, + 51.583976701 + ], + [ + 7.406205276, + 51.583896689 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2023-06-20_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de69", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.598953596971924,7.651117691057244,51.600856402462966,7.705699911298996", + "point": "51.598953596971924,7.651117691057244", + "startLcPosition": "27", + "impact": { + "lower": "Kolberg", + "upper": "Kamen/Bergkamen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Kamen/Bergkamen - Kolberg", + "startTimestamp": "2023-06-20T20:00:00+02:00", + "coordinate": { + "lat": 51.598953596971924, + "long": 7.651117691057244 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.06.23 um 20:00 Uhr", + "Ende: 29.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "A2: Dortmund -> Hannover, zwischen 2.4 km hinter AS Kamen/Bergkamen und 2.1 km vor Kolberg", + "", + "L\u00e4nge: 3.81 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.651117691, + 51.598953597 + ], + [ + 7.6522127, + 51.599140901 + ], + [ + 7.6569945, + 51.599952601 + ], + [ + 7.6571334, + 51.599977401 + ], + [ + 7.6599269, + 51.600437201 + ], + [ + 7.6608986, + 51.600579901 + ], + [ + 7.6619727, + 51.600711101 + ], + [ + 7.6622191, + 51.600735001 + ], + [ + 7.6631847, + 51.600817301 + ], + [ + 7.6636644, + 51.600856301 + ], + [ + 7.664337, + 51.600897901 + ], + [ + 7.6645217, + 51.600907401 + ], + [ + 7.6653669, + 51.600947101 + ], + [ + 7.6659861, + 51.600964701 + ], + [ + 7.666527, + 51.600969501 + ], + [ + 7.6676178, + 51.600969801 + ], + [ + 7.6686638, + 51.600966301 + ], + [ + 7.6696507, + 51.600963801 + ], + [ + 7.6724745, + 51.600951501 + ], + [ + 7.6761256, + 51.600937801 + ], + [ + 7.6768679, + 51.600928101 + ], + [ + 7.6787975, + 51.600923901 + ], + [ + 7.6824834, + 51.600894001 + ], + [ + 7.6850078, + 51.600897201 + ], + [ + 7.6858441, + 51.600894201 + ], + [ + 7.6878984, + 51.600895201 + ], + [ + 7.691362, + 51.600883301 + ], + [ + 7.6945935, + 51.600872301 + ], + [ + 7.6979812, + 51.600855601 + ], + [ + 7.7026791, + 51.600838201 + ], + [ + 7.7046752, + 51.600830701 + ], + [ + 7.7055003, + 51.600851401 + ], + [ + 7.705699911, + 51.600856402 + ] + ] + } + }, + { + "identifier": "2026-017486--vi-bs.2026-04-15_19-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.60089950341006,7.681806156801491,51.601490387504725,7.712112866811588", + "point": "51.60089950341006,7.681806156801491", + "startLcPosition": "27", + "impact": { + "lower": "Kolberg", + "upper": "Kamen/Bergkamen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Kamen/Bergkamen - Kolberg", + "coordinate": { + "lat": 51.60089950341006, + "long": 7.681806156801491 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 21:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 4.5 km hinter AS Kamen/Bergkamen und 1.6 km vor Kolberg", + "", + "L\u00e4nge: 2.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 17486" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.681806157, + 51.600899503 + ], + [ + 7.6824834, + 51.600894001 + ], + [ + 7.6850078, + 51.600897201 + ], + [ + 7.6858441, + 51.600894201 + ], + [ + 7.6878984, + 51.600895201 + ], + [ + 7.691362, + 51.600883301 + ], + [ + 7.6945935, + 51.600872301 + ], + [ + 7.6979812, + 51.600855601 + ], + [ + 7.7026791, + 51.600838201 + ], + [ + 7.7046752, + 51.600830701 + ], + [ + 7.7055003, + 51.600851401 + ], + [ + 7.7060471, + 51.600865101 + ], + [ + 7.7074489, + 51.600937001 + ], + [ + 7.7089337, + 51.601055301 + ], + [ + 7.7104252, + 51.601228301 + ], + [ + 7.7116866, + 51.601413601 + ], + [ + 7.712112867, + 51.601490388 + ] + ] + } + }, + { + "identifier": "2026-017487--vi-bs.2026-04-16_19-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.60084040724513,7.702086208005947,51.60265677747519,7.717581658009738", + "point": "51.60084040724513,7.702086208005947", + "startLcPosition": "28", + "impact": { + "lower": "Kolberg", + "upper": "Kamener Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Kamener Kreuz - Kolberg", + "coordinate": { + "lat": 51.60084040724513, + "long": 7.702086208005947 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 21:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 1.0 km hinter AK Kamener Kreuz und 1.2 km vor Kolberg", + "", + "L\u00e4nge: 1.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 17487" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.702086208, + 51.600840407 + ], + [ + 7.7026791, + 51.600838201 + ], + [ + 7.7046752, + 51.600830701 + ], + [ + 7.7055003, + 51.600851401 + ], + [ + 7.7060471, + 51.600865101 + ], + [ + 7.7074489, + 51.600937001 + ], + [ + 7.7089337, + 51.601055301 + ], + [ + 7.7104252, + 51.601228301 + ], + [ + 7.7116866, + 51.601413601 + ], + [ + 7.7125293, + 51.601565401 + ], + [ + 7.7136655, + 51.601777101 + ], + [ + 7.7153695, + 51.602145801 + ], + [ + 7.7175762, + 51.602655501 + ], + [ + 7.717581658, + 51.602656777 + ] + ] + } + }, + { + "identifier": "2023-002784--vi-bs.2023-06-20_20-00-00-000.devi-zus.2023-07-08_21-00-00-000.f_001.de71", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.600993471868094,7.705692084705437,51.59910534615726,7.651051193985285", + "point": "51.600993471868094,7.705692084705437", + "startLcPosition": "29", + "impact": { + "lower": "Kamen/Bergkamen", + "upper": "Kolberg", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Kolberg - Kamen/Bergkamen", + "startTimestamp": "2023-06-20T20:00:00+02:00", + "coordinate": { + "lat": 51.600993471868094, + "long": 7.705692084705437 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.06.23 um 20:00 Uhr", + "Ende: 29.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.06.26)", + "", + "A2: Hannover -> Dortmund, zwischen 2.1 km hinter Kolberg und 2.4 km vor AS Kamen/Bergkamen", + "", + "L\u00e4nge: 3.81 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A1 - Ersatzneubau BW Kamen-Zentrum - AlD 2784" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.705692085, + 51.600993472 + ], + [ + 7.7046128, + 51.600972401 + ], + [ + 7.7028216, + 51.600970701 + ], + [ + 7.6999067, + 51.600995501 + ], + [ + 7.698254, + 51.601000601 + ], + [ + 7.6943751, + 51.601012601 + ], + [ + 7.6925504, + 51.601017901 + ], + [ + 7.6880302, + 51.601026801 + ], + [ + 7.6862434, + 51.601046401 + ], + [ + 7.684819, + 51.601040201 + ], + [ + 7.6803364, + 51.601069301 + ], + [ + 7.6780461, + 51.601064601 + ], + [ + 7.6753043, + 51.601085001 + ], + [ + 7.6748347, + 51.601088701 + ], + [ + 7.669616, + 51.601129801 + ], + [ + 7.6660089, + 51.601123801 + ], + [ + 7.6645061, + 51.601070401 + ], + [ + 7.6643216, + 51.601059401 + ], + [ + 7.6632777, + 51.600998101 + ], + [ + 7.6621534, + 51.600895201 + ], + [ + 7.6619078, + 51.600870401 + ], + [ + 7.6608368, + 51.600742301 + ], + [ + 7.6599294, + 51.600609001 + ], + [ + 7.6570492, + 51.600123101 + ], + [ + 7.6569025, + 51.600097201 + ], + [ + 7.6521601, + 51.599292601 + ], + [ + 7.651051194, + 51.599105346 + ] + ] + } + }, + { + "identifier": "2026-017488--vi-bs.2026-04-17_19-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.601408987900655,7.710686197381453,51.60099768414707,7.699200133094445", + "point": "51.601408987900655,7.710686197381453", + "startLcPosition": "29", + "impact": { + "lower": "Kamener Kreuz", + "upper": "Kolberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Kolberg - Kamener Kreuz", + "coordinate": { + "lat": 51.601408987900655, + "long": 7.710686197381453 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 22:00 bis zum 18.04.26 08:00 Uhr.", + "", + "A2: Hannover -> Dortmund, zwischen 1.7 km hinter Kolberg und 0.8 km vor AK Kamener Kreuz", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 17488" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.710686197, + 51.601408988 + ], + [ + 7.7103873, + 51.601366501 + ], + [ + 7.709676, + 51.601273201 + ], + [ + 7.7088417, + 51.601188001 + ], + [ + 7.7077476, + 51.601096301 + ], + [ + 7.7073573, + 51.601071401 + ], + [ + 7.7059805, + 51.600999101 + ], + [ + 7.7046128, + 51.600972401 + ], + [ + 7.7028216, + 51.600970701 + ], + [ + 7.6999067, + 51.600995501 + ], + [ + 7.699200133, + 51.600997684 + ] + ] + } + }, + { + "identifier": "2026-016932--vi-bs.2026-04-14_19-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.62212337146899,7.809912840056758,51.62190733255392,7.808660071030124", + "point": "51.62212337146899,7.809912840056758", + "startLcPosition": "31", + "impact": { + "lower": "B\u00f6nen", + "upper": "Hamm", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Hamm - B\u00f6nen", + "coordinate": { + "lat": 51.62212337146899, + "long": 7.809912840056758 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A2: Hannover -> Dortmund, zwischen 2.6 km hinter AS Hamm und 4.1 km vor AS B\u00f6nen", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 16932" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.80991284, + 51.622123371 + ], + [ + 7.808660071, + 51.621907333 + ] + ] + } + }, + { + "identifier": "2026-016919--vi-bs.2026-04-13_21-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.61383485915978,7.765814321821923,51.61355421620947,7.764443372834561", + "point": "51.61383485915978,7.765814321821923", + "startLcPosition": "31", + "impact": { + "lower": "B\u00f6nen", + "upper": "Hamm", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Hamm - B\u00f6nen", + "coordinate": { + "lat": 51.61383485915978, + "long": 7.765814321821923 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 21:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A2: Hannover -> Dortmund, zwischen 5.8 km hinter AS Hamm und 0.9 km vor AS B\u00f6nen", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 16919" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.765814322, + 51.613834859 + ], + [ + 7.7657475, + 51.613821201 + ], + [ + 7.7657032, + 51.613812101 + ], + [ + 7.7654129, + 51.613749601 + ], + [ + 7.7651077, + 51.613686101 + ], + [ + 7.764443373, + 51.613554216 + ] + ] + } + }, + { + "identifier": "2026-017270--vi-bs.2026-04-15_19-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.77856708302223,8.029719315859309,51.784322182527895,8.05249254985164", + "point": "51.77856708302223,8.029719315859309", + "startLcPosition": "36", + "impact": { + "lower": "Vellern", + "upper": "Brunsberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Brunsberg - Vellern", + "coordinate": { + "lat": 51.77856708302223, + "long": 8.029719315859309 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 19:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 7.3 km hinter Brunsberg und 1.5 km vor Vellern", + "", + "L\u00e4nge: 1.7 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A2- Fahrbahninstandsetzung - AkD 17270" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.029719316, + 51.778567083 + ], + [ + 8.0315672, + 51.778990701 + ], + [ + 8.0320449, + 51.779105001 + ], + [ + 8.0327659, + 51.779278401 + ], + [ + 8.0330851, + 51.779347801 + ], + [ + 8.0338283, + 51.779513101 + ], + [ + 8.0406555, + 51.781077401 + ], + [ + 8.044538, + 51.781962901 + ], + [ + 8.0462056, + 51.782367801 + ], + [ + 8.047722, + 51.782772501 + ], + [ + 8.0488986, + 51.783122301 + ], + [ + 8.0504899, + 51.783634601 + ], + [ + 8.05249255, + 51.784322183 + ] + ] + } + }, + { + "identifier": "2026-017275--vi-bs.2026-04-17_21-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.77682450032375,8.021469377022015,51.75803879145951,8.000349165727386", + "point": "51.77682450032375,8.021469377022015", + "startLcPosition": "37", + "impact": { + "lower": "Brunsberg", + "upper": "Beckum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Beckum - Brunsberg", + "coordinate": { + "lat": 51.77682450032375, + "long": 8.021469377022015 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 21:00 bis zum 18.04.26 09:00 Uhr.", + "", + "A2: Hannover -> Dortmund, zwischen 0.8 km hinter AS Beckum und 4.0 km vor Brunsberg", + "", + "L\u00e4nge: 2.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 17275" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.021469377, + 51.7768245 + ], + [ + 8.0206902, + 51.776638801 + ], + [ + 8.0195463, + 51.776336101 + ], + [ + 8.0194563, + 51.776308601 + ], + [ + 8.0183223, + 51.775968301 + ], + [ + 8.0174508, + 51.775668001 + ], + [ + 8.0163883, + 51.775274901 + ], + [ + 8.0157036, + 51.775009501 + ], + [ + 8.0152611, + 51.774805601 + ], + [ + 8.0140775, + 51.774254101 + ], + [ + 8.0131885, + 51.773786501 + ], + [ + 8.0125848, + 51.773449801 + ], + [ + 8.0120049, + 51.773110001 + ], + [ + 8.010996, + 51.772461201 + ], + [ + 8.0101319, + 51.771841501 + ], + [ + 8.0093682, + 51.771217001 + ], + [ + 8.0089923, + 51.770899001 + ], + [ + 8.0085218, + 51.770470201 + ], + [ + 8.008193, + 51.770152501 + ], + [ + 8.0077787, + 51.769726801 + ], + [ + 8.0075297, + 51.769457101 + ], + [ + 8.00703, + 51.768870601 + ], + [ + 8.00688, + 51.768682201 + ], + [ + 8.0065913, + 51.768308501 + ], + [ + 8.0062458, + 51.767818101 + ], + [ + 8.0057249, + 51.766966701 + ], + [ + 8.0034101, + 51.763132701 + ], + [ + 8.0026045, + 51.761791501 + ], + [ + 8.0006302, + 51.758501501 + ], + [ + 8.000349166, + 51.758038791 + ] + ] + } + }, + { + "identifier": "2026-017265--vi-bs.2026-04-13_20-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.804307833033896,8.118065794351738,51.808543440865755,8.136356695054154", + "point": "51.804307833033896,8.118065794351738", + "startLcPosition": "39", + "impact": { + "lower": "Am Berge", + "upper": "Vellern", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Vellern - Am Berge", + "coordinate": { + "lat": 51.804307833033896, + "long": 8.118065794351738 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 3.2 km hinter Vellern und 4.6 km vor Am Berge", + "", + "L\u00e4nge: 1.35 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 17265" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.118065794, + 51.804307833 + ], + [ + 8.1214334, + 51.804929301 + ], + [ + 8.1280173, + 51.806146801 + ], + [ + 8.129522, + 51.806434701 + ], + [ + 8.1307621, + 51.806704501 + ], + [ + 8.1314765, + 51.806882001 + ], + [ + 8.132999, + 51.807307401 + ], + [ + 8.133689, + 51.807520801 + ], + [ + 8.1344837, + 51.807790901 + ], + [ + 8.1352425, + 51.808079701 + ], + [ + 8.1359022, + 51.808350601 + ], + [ + 8.136356695, + 51.808543441 + ] + ] + } + }, + { + "identifier": "2026-017268--vi-bs.2026-04-14_20-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.84921992986267,8.309865606737425,51.85836495253026,8.33392249399965", + "point": "51.84921992986267,8.309865606737425", + "startLcPosition": "43", + "impact": { + "lower": "G\u00fctersloh", + "upper": "Herzebrock-Clarholz", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herzebrock-Clarholz - G\u00fctersloh", + "coordinate": { + "lat": 51.84921992986267, + "long": 8.309865606737425 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 6.5 km hinter AS Herzebrock-Clarholz und 2.6 km vor G\u00fctersloh", + "", + "L\u00e4nge: 1.95 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 17268" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.309865607, + 51.84921993 + ], + [ + 8.3103321, + 51.849345901 + ], + [ + 8.3121578, + 51.849838201 + ], + [ + 8.3133253, + 51.850171101 + ], + [ + 8.3143958, + 51.850512301 + ], + [ + 8.3157618, + 51.851011301 + ], + [ + 8.3168814, + 51.851464501 + ], + [ + 8.3178695, + 51.851890901 + ], + [ + 8.3214033, + 51.853544401 + ], + [ + 8.3237765, + 51.854655401 + ], + [ + 8.3249776, + 51.855220101 + ], + [ + 8.3271215, + 51.856203901 + ], + [ + 8.3280517, + 51.856586301 + ], + [ + 8.3290267, + 51.856953501 + ], + [ + 8.3300215, + 51.857301301 + ], + [ + 8.3311703, + 51.857652501 + ], + [ + 8.3321551, + 51.857936501 + ], + [ + 8.3327395, + 51.858081901 + ], + [ + 8.3334341, + 51.858250001 + ], + [ + 8.333922494, + 51.858364953 + ] + ] + } + }, + { + "identifier": "2026-017271--vi-bs.2026-04-16_19-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.87219937503793,8.406517954884606,51.8804136096771,8.42794902448695", + "point": "51.87219937503793,8.406517954884606", + "startLcPosition": "45", + "impact": { + "lower": "G\u00fctersloh", + "upper": "G\u00fctersloh", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | G\u00fctersloh - G\u00fctersloh", + "coordinate": { + "lat": 51.87219937503793, + "long": 8.406517954884606 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 19:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 2.6 km hinter G\u00fctersloh und 0.3 km vor AS G\u00fctersloh", + "", + "L\u00e4nge: 1.75 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 17271" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.406517955, + 51.872199375 + ], + [ + 8.4077532, + 51.872404601 + ], + [ + 8.4092205, + 51.872678701 + ], + [ + 8.4106593, + 51.873005601 + ], + [ + 8.4116885, + 51.873276401 + ], + [ + 8.4120757, + 51.873383701 + ], + [ + 8.413411, + 51.873790401 + ], + [ + 8.4146571, + 51.874216401 + ], + [ + 8.4160601, + 51.874757901 + ], + [ + 8.4177005, + 51.875481901 + ], + [ + 8.4260319, + 51.879498201 + ], + [ + 8.427949024, + 51.88041361 + ] + ] + } + }, + { + "identifier": "2026-014660--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.949149708187676,8.558414731369538,51.95261699246953,8.566917684957277", + "point": "51.949149708187676,8.558414731369538", + "startLcPosition": "51", + "impact": { + "lower": "Bielefeld-S\u00fcd", + "upper": "Bielefeld", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Bielefeld - Bielefeld-S\u00fcd", + "coordinate": { + "lat": 51.949149708187676, + "long": 8.558414731369538 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A2: Dortmund -> Hannover, zwischen 1.3 km hinter AK Bielefeld und 0.4 km vor AS Bielefeld-S\u00fcd", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Br\u00fcckenwartung - AkD 14660" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.558414731, + 51.949149708 + ], + [ + 8.5586919, + 51.949249501 + ], + [ + 8.5591348, + 51.949409801 + ], + [ + 8.5595869, + 51.949574601 + ], + [ + 8.5600411, + 51.949737501 + ], + [ + 8.5604889, + 51.949898201 + ], + [ + 8.5609313, + 51.950056901 + ], + [ + 8.5613878, + 51.950220701 + ], + [ + 8.5615936, + 51.950294501 + ], + [ + 8.5626851, + 51.950696001 + ], + [ + 8.5634547, + 51.950989501 + ], + [ + 8.5640764, + 51.951244401 + ], + [ + 8.5644696, + 51.951416701 + ], + [ + 8.5646974, + 51.951520101 + ], + [ + 8.5649128, + 51.951614201 + ], + [ + 8.5651119, + 51.951704701 + ], + [ + 8.5653483, + 51.951815501 + ], + [ + 8.5661352, + 51.952200701 + ], + [ + 8.5666805, + 51.952486401 + ], + [ + 8.566917685, + 51.952616992 + ] + ] + } + }, + { + "identifier": "2026-014660--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.949149708187676,8.558414731369538,51.95261699246953,8.566917684957277", + "point": "51.949149708187676,8.558414731369538", + "startLcPosition": "51", + "impact": { + "lower": "Bielefeld-S\u00fcd", + "upper": "Bielefeld", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Bielefeld - Bielefeld-S\u00fcd", + "coordinate": { + "lat": 51.949149708187676, + "long": 8.558414731369538 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A2: Dortmund -> Hannover, zwischen 1.3 km hinter AK Bielefeld und 0.4 km vor AS Bielefeld-S\u00fcd", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Br\u00fcckenwartung - AkD 14660" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.558414731, + 51.949149708 + ], + [ + 8.5586919, + 51.949249501 + ], + [ + 8.5591348, + 51.949409801 + ], + [ + 8.5595869, + 51.949574601 + ], + [ + 8.5600411, + 51.949737501 + ], + [ + 8.5604889, + 51.949898201 + ], + [ + 8.5609313, + 51.950056901 + ], + [ + 8.5613878, + 51.950220701 + ], + [ + 8.5615936, + 51.950294501 + ], + [ + 8.5626851, + 51.950696001 + ], + [ + 8.5634547, + 51.950989501 + ], + [ + 8.5640764, + 51.951244401 + ], + [ + 8.5644696, + 51.951416701 + ], + [ + 8.5646974, + 51.951520101 + ], + [ + 8.5649128, + 51.951614201 + ], + [ + 8.5651119, + 51.951704701 + ], + [ + 8.5653483, + 51.951815501 + ], + [ + 8.5661352, + 51.952200701 + ], + [ + 8.5666805, + 51.952486401 + ], + [ + 8.566917685, + 51.952616992 + ] + ] + } + }, + { + "identifier": "2026-014660--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.95273049415097,8.566755860734306,51.94928533520141,8.558286646892748", + "point": "51.95273049415097,8.566755860734306", + "startLcPosition": "52", + "impact": { + "lower": "Bielefeld", + "upper": "Bielefeld-S\u00fcd", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Bielefeld-S\u00fcd - Bielefeld", + "coordinate": { + "lat": 51.95273049415097, + "long": 8.566755860734306 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A2: Hannover -> Dortmund, zwischen 0.4 km hinter AS Bielefeld-S\u00fcd und 1.3 km vor AK Bielefeld", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Br\u00fcckenwartung - AkD 14660" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.566755861, + 51.952730494 + ], + [ + 8.5664687, + 51.952575701 + ], + [ + 8.5659485, + 51.952304101 + ], + [ + 8.5655272, + 51.952094601 + ], + [ + 8.5651085, + 51.951898301 + ], + [ + 8.5648468, + 51.951774201 + ], + [ + 8.564427, + 51.951586401 + ], + [ + 8.5641991, + 51.951489201 + ], + [ + 8.5639948, + 51.951402701 + ], + [ + 8.5633252, + 51.951124101 + ], + [ + 8.5625816, + 51.950837101 + ], + [ + 8.5619327, + 51.950599101 + ], + [ + 8.5617478, + 51.950535101 + ], + [ + 8.561308, + 51.950376301 + ], + [ + 8.5608526, + 51.950211901 + ], + [ + 8.5603908, + 51.950045101 + ], + [ + 8.5599446, + 51.949884001 + ], + [ + 8.5597227, + 51.949803901 + ], + [ + 8.5590342, + 51.949555301 + ], + [ + 8.558582, + 51.949392001 + ], + [ + 8.558286647, + 51.949285335 + ] + ] + } + }, + { + "identifier": "2026-014660--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.95273049415097,8.566755860734306,51.94928533520141,8.558286646892748", + "point": "51.95273049415097,8.566755860734306", + "startLcPosition": "52", + "impact": { + "lower": "Bielefeld", + "upper": "Bielefeld-S\u00fcd", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Bielefeld-S\u00fcd - Bielefeld", + "coordinate": { + "lat": 51.95273049415097, + "long": 8.566755860734306 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A2: Hannover -> Dortmund, zwischen 0.4 km hinter AS Bielefeld-S\u00fcd und 1.3 km vor AK Bielefeld", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Br\u00fcckenwartung - AkD 14660" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.566755861, + 51.952730494 + ], + [ + 8.5664687, + 51.952575701 + ], + [ + 8.5659485, + 51.952304101 + ], + [ + 8.5655272, + 51.952094601 + ], + [ + 8.5651085, + 51.951898301 + ], + [ + 8.5648468, + 51.951774201 + ], + [ + 8.564427, + 51.951586401 + ], + [ + 8.5641991, + 51.951489201 + ], + [ + 8.5639948, + 51.951402701 + ], + [ + 8.5633252, + 51.951124101 + ], + [ + 8.5625816, + 51.950837101 + ], + [ + 8.5619327, + 51.950599101 + ], + [ + 8.5617478, + 51.950535101 + ], + [ + 8.561308, + 51.950376301 + ], + [ + 8.5608526, + 51.950211901 + ], + [ + 8.5603908, + 51.950045101 + ], + [ + 8.5599446, + 51.949884001 + ], + [ + 8.5597227, + 51.949803901 + ], + [ + 8.5590342, + 51.949555301 + ], + [ + 8.558582, + 51.949392001 + ], + [ + 8.558286647, + 51.949285335 + ] + ] + } + }, + { + "identifier": "2025-063240--vi-bs.2026-01-09_08-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.95642148917732,8.57323993855942,51.97931647145209,8.61574531759952", + "point": "51.95642148917732,8.57323993855942", + "startLcPosition": "52", + "impact": { + "lower": "Bielefeld-Ost", + "upper": "Bielefeld-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Bielefeld-S\u00fcd - Bielefeld-Ost", + "coordinate": { + "lat": 51.95642148917732, + "long": 8.57323993855942 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:30 bis 10:00 Uhr", + "08.05.26 von 08:30 bis 10:00 Uhr", + "12.06.26 von 08:30 bis 10:00 Uhr", + "03.07.26 von 08:30 bis 10:00 Uhr", + "07.08.26 von 08:30 bis 10:00 Uhr", + "04.09.26 von 08:30 bis 10:00 Uhr", + "02.10.26 von 08:30 bis 10:00 Uhr", + "06.11.26 von 08:30 bis 10:00 Uhr", + "04.12.26 von 08:30 bis 10:00 Uhr", + "", + "A2: Dortmund -> Hannover, zwischen 0.3 km hinter AS Bielefeld-S\u00fcd und 1.8 km vor AS Bielefeld-Ost", + "", + "L\u00e4nge: 4.11 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Eicharbeiten der station\u00e4ren Geschwindigkeitsmessanlage - AkD 63240" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.573239939, + 51.956421489 + ], + [ + 8.5732818, + 51.956447001 + ], + [ + 8.5734624, + 51.956558301 + ], + [ + 8.5736556, + 51.956674501 + ], + [ + 8.5738331, + 51.956782901 + ], + [ + 8.5740154, + 51.956895201 + ], + [ + 8.574207, + 51.957013301 + ], + [ + 8.5743908, + 51.957122701 + ], + [ + 8.574584, + 51.957239801 + ], + [ + 8.574774, + 51.957350701 + ], + [ + 8.5749657, + 51.957460501 + ], + [ + 8.5751589, + 51.957569001 + ], + [ + 8.5753458, + 51.957672501 + ], + [ + 8.5755453, + 51.957781901 + ], + [ + 8.5757401, + 51.957888401 + ], + [ + 8.5759365, + 51.957995901 + ], + [ + 8.576125, + 51.958092701 + ], + [ + 8.5763245, + 51.958200101 + ], + [ + 8.5765362, + 51.958305101 + ], + [ + 8.5767376, + 51.958408201 + ], + [ + 8.5769371, + 51.958507001 + ], + [ + 8.5771397, + 51.958609601 + ], + [ + 8.577344, + 51.958708301 + ], + [ + 8.5775529, + 51.958810901 + ], + [ + 8.5777649, + 51.958913501 + ], + [ + 8.577966, + 51.959010301 + ], + [ + 8.5781685, + 51.959105401 + ], + [ + 8.5783776, + 51.959197101 + ], + [ + 8.5785896, + 51.959295901 + ], + [ + 8.5787954, + 51.959386901 + ], + [ + 8.5790075, + 51.959482701 + ], + [ + 8.5792258, + 51.959578501 + ], + [ + 8.5794316, + 51.959667601 + ], + [ + 8.5796428, + 51.959762101 + ], + [ + 8.5798573, + 51.959848601 + ], + [ + 8.5800851, + 51.959943401 + ], + [ + 8.5803081, + 51.960035401 + ], + [ + 8.5805202, + 51.960121601 + ], + [ + 8.5807259, + 51.960203101 + ], + [ + 8.5809537, + 51.960292901 + ], + [ + 8.5811831, + 51.960382901 + ], + [ + 8.5813967, + 51.960463201 + ], + [ + 8.5816276, + 51.960552301 + ], + [ + 8.5818444, + 51.960633601 + ], + [ + 8.5820722, + 51.960716801 + ], + [ + 8.5822905, + 51.960799101 + ], + [ + 8.5825248, + 51.960883201 + ], + [ + 8.5827445, + 51.960960801 + ], + [ + 8.5829722, + 51.961040101 + ], + [ + 8.5832, + 51.961118501 + ], + [ + 8.5834294, + 51.961197901 + ], + [ + 8.5836666, + 51.961277301 + ], + [ + 8.5839092, + 51.961356601 + ], + [ + 8.5841095, + 51.961421501 + ], + [ + 8.5843546, + 51.961500901 + ], + [ + 8.5845824, + 51.961571501 + ], + [ + 8.5848133, + 51.961645101 + ], + [ + 8.5850552, + 51.961719601 + ], + [ + 8.5853002, + 51.961792201 + ], + [ + 8.5856206, + 51.961889601 + ], + [ + 8.5860029, + 51.962000301 + ], + [ + 8.5862402, + 51.962069001 + ], + [ + 8.5864762, + 51.962137201 + ], + [ + 8.5867013, + 51.962202201 + ], + [ + 8.5869503, + 51.962274201 + ], + [ + 8.587178, + 51.962340001 + ], + [ + 8.5874173, + 51.962409201 + ], + [ + 8.587637, + 51.962472701 + ], + [ + 8.5878821, + 51.962543501 + ], + [ + 8.5881162, + 51.962611201 + ], + [ + 8.5883614, + 51.962682101 + ], + [ + 8.5886084, + 51.962753501 + ], + [ + 8.588849, + 51.962823001 + ], + [ + 8.5890625, + 51.962884801 + ], + [ + 8.589303, + 51.962954301 + ], + [ + 8.5895462, + 51.963024601 + ], + [ + 8.5897836, + 51.963093201 + ], + [ + 8.590023, + 51.963162401 + ], + [ + 8.5902603, + 51.963231001 + ], + [ + 8.5904839, + 51.963295601 + ], + [ + 8.5907337, + 51.963367801 + ], + [ + 8.5909535, + 51.963431301 + ], + [ + 8.5912006, + 51.963502801 + ], + [ + 8.5914256, + 51.963567801 + ], + [ + 8.5916623, + 51.963636201 + ], + [ + 8.5919017, + 51.963705401 + ], + [ + 8.5921454, + 51.963775901 + ], + [ + 8.5923745, + 51.963842101 + ], + [ + 8.5926162, + 51.963912001 + ], + [ + 8.592857, + 51.963981601 + ], + [ + 8.5930884, + 51.964048401 + ], + [ + 8.5933297, + 51.964118201 + ], + [ + 8.5935543, + 51.964181701 + ], + [ + 8.5937862, + 51.964250101 + ], + [ + 8.5940348, + 51.964322001 + ], + [ + 8.5942824, + 51.964392101 + ], + [ + 8.5947503, + 51.964524501 + ], + [ + 8.5949896, + 51.964595401 + ], + [ + 8.595219, + 51.964659701 + ], + [ + 8.5954467, + 51.964726001 + ], + [ + 8.595688, + 51.964795801 + ], + [ + 8.5959237, + 51.964864901 + ], + [ + 8.5961593, + 51.964933301 + ], + [ + 8.5963959, + 51.965004001 + ], + [ + 8.5966353, + 51.965074901 + ], + [ + 8.5968708, + 51.965142001 + ], + [ + 8.5970938, + 51.965205601 + ], + [ + 8.5973408, + 51.965276001 + ], + [ + 8.5975802, + 51.965344201 + ], + [ + 8.597812, + 51.965410301 + ], + [ + 8.5980447, + 51.965476701 + ], + [ + 8.5982904, + 51.965549401 + ], + [ + 8.5985266, + 51.965619201 + ], + [ + 8.5987601, + 51.965684601 + ], + [ + 8.5989889, + 51.965753701 + ], + [ + 8.5992283, + 51.965822001 + ], + [ + 8.599481, + 51.965892301 + ], + [ + 8.5997105, + 51.965959301 + ], + [ + 8.5999488, + 51.966028901 + ], + [ + 8.6001882, + 51.966098601 + ], + [ + 8.6004256, + 51.966166701 + ], + [ + 8.6006526, + 51.966234501 + ], + [ + 8.6008886, + 51.966306201 + ], + [ + 8.6011236, + 51.966377201 + ], + [ + 8.6013719, + 51.966453701 + ], + [ + 8.6015936, + 51.966525401 + ], + [ + 8.601767, + 51.966583201 + ], + [ + 8.6020076, + 51.966663501 + ], + [ + 8.6022806, + 51.966757001 + ], + [ + 8.6025068, + 51.966836101 + ], + [ + 8.602733, + 51.966916001 + ], + [ + 8.6029602, + 51.967000701 + ], + [ + 8.6031807, + 51.967082601 + ], + [ + 8.6034013, + 51.967167301 + ], + [ + 8.6036318, + 51.967258101 + ], + [ + 8.6038435, + 51.967343501 + ], + [ + 8.6040608, + 51.967430901 + ], + [ + 8.6042804, + 51.967520201 + ], + [ + 8.6044941, + 51.967609801 + ], + [ + 8.6047047, + 51.967699901 + ], + [ + 8.6049131, + 51.967793501 + ], + [ + 8.6051314, + 51.967889801 + ], + [ + 8.6051787, + 51.967911001 + ], + [ + 8.6055471, + 51.968074801 + ], + [ + 8.6057665, + 51.968172501 + ], + [ + 8.6059727, + 51.968266001 + ], + [ + 8.6061866, + 51.968361601 + ], + [ + 8.6063874, + 51.968447801 + ], + [ + 8.6066041, + 51.968545201 + ], + [ + 8.6068199, + 51.968642801 + ], + [ + 8.6070238, + 51.968736301 + ], + [ + 8.6072331, + 51.968829801 + ], + [ + 8.6074499, + 51.968924701 + ], + [ + 8.6076625, + 51.969024201 + ], + [ + 8.6078799, + 51.969120101 + ], + [ + 8.6080721, + 51.969211901 + ], + [ + 8.6082832, + 51.969305701 + ], + [ + 8.6084933, + 51.969399101 + ], + [ + 8.6087038, + 51.969492501 + ], + [ + 8.6089241, + 51.969590401 + ], + [ + 8.6091225, + 51.969678501 + ], + [ + 8.6093403, + 51.969775301 + ], + [ + 8.6095526, + 51.969869601 + ], + [ + 8.6105824, + 51.970327001 + ], + [ + 8.6114034, + 51.970757501 + ], + [ + 8.6115868, + 51.970859401 + ], + [ + 8.61177, + 51.970970201 + ], + [ + 8.6119596, + 51.971089501 + ], + [ + 8.6121359, + 51.971205201 + ], + [ + 8.612498, + 51.971458301 + ], + [ + 8.6128445, + 51.971728601 + ], + [ + 8.6131604, + 51.972005701 + ], + [ + 8.6134609, + 51.972282201 + ], + [ + 8.6138707, + 51.972718601 + ], + [ + 8.6142162, + 51.973161801 + ], + [ + 8.6145677, + 51.973692001 + ], + [ + 8.6148233, + 51.974222901 + ], + [ + 8.6150306, + 51.974781801 + ], + [ + 8.6151745, + 51.975351601 + ], + [ + 8.6155467, + 51.977921401 + ], + [ + 8.6156446, + 51.978591701 + ], + [ + 8.615745318, + 51.979316471 + ] + ] + } + }, + { + "identifier": "2024-010326--vi-bs.2026-04-13_09-00-00-000.devi-zus.2025-07-01_20-00-00-000.de15", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.09987302821467,8.715072240692756,52.105882487651805,8.72640202546204", + "point": "52.09987302821467,8.715072240692756", + "startLcPosition": "58", + "impact": { + "lower": "Herford-Ost", + "upper": "Herford/Bad Salzuflen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herford/Bad Salzuflen - Herford-Ost", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 52.09987302821467, + "long": 8.715072240692756 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 22.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.09.26)", + "", + "A2: Dortmund -> Hannover, zwischen 1.8 km hinter AS Herford/Bad Salzuflen und 3.1 km vor AS Herford-Ost", + "", + "L\u00e4nge: 1.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A2 - Br\u00fcckeninstandsetzung BW Forstweg - AlD 10326" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.715072241, + 52.099873028 + ], + [ + 8.7150837, + 52.099878401 + ], + [ + 8.7164483, + 52.100507801 + ], + [ + 8.7177738, + 52.101127701 + ], + [ + 8.7180501, + 52.101256601 + ], + [ + 8.7183956, + 52.101419201 + ], + [ + 8.7198013, + 52.102078401 + ], + [ + 8.7216366, + 52.102988601 + ], + [ + 8.7225853, + 52.103516501 + ], + [ + 8.7237335, + 52.104180201 + ], + [ + 8.7243004, + 52.104532101 + ], + [ + 8.7250262, + 52.104997101 + ], + [ + 8.7259296, + 52.105575601 + ], + [ + 8.726402025, + 52.105882488 + ] + ] + } + }, + { + "identifier": "2026-017415--vi-fbm.2026-04-14_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_007.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.09088814945429,8.698929843255417,52.12756567768591,8.736207889157978", + "point": "52.09088814945429,8.698929843255417", + "startLcPosition": "58", + "impact": { + "lower": "Herford-Ost", + "upper": "Herford/Bad Salzuflen", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herford/Bad Salzuflen - Herford-Ost", + "coordinate": { + "lat": 52.09088814945429, + "long": 8.698929843255417 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 15:00 Uhr", + "", + "A2: Dortmund -> Hannover, zwischen 0.3 km hinter AS Herford/Bad Salzuflen und 0.4 km vor AS Herford-Ost", + "", + "L\u00e4nge: 5.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Auf- oder Abbau Verkehrsf\u00fchrung - Wanderbaustelle - AkD 17415" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.698929843, + 52.090888149 + ], + [ + 8.6990955, + 52.091035701 + ], + [ + 8.6995056, + 52.091365201 + ], + [ + 8.7000073, + 52.091766101 + ], + [ + 8.7005934, + 52.092221901 + ], + [ + 8.7013508, + 52.092752001 + ], + [ + 8.7018718, + 52.093108201 + ], + [ + 8.7030495, + 52.093857001 + ], + [ + 8.7035937, + 52.094222801 + ], + [ + 8.7045555, + 52.094778901 + ], + [ + 8.705839, + 52.095494801 + ], + [ + 8.7062783, + 52.095719501 + ], + [ + 8.7094081, + 52.097215301 + ], + [ + 8.7098877, + 52.097442001 + ], + [ + 8.7150837, + 52.099878401 + ], + [ + 8.7164483, + 52.100507801 + ], + [ + 8.7177738, + 52.101127701 + ], + [ + 8.7180501, + 52.101256601 + ], + [ + 8.7183956, + 52.101419201 + ], + [ + 8.7198013, + 52.102078401 + ], + [ + 8.7216366, + 52.102988601 + ], + [ + 8.7225853, + 52.103516501 + ], + [ + 8.7237335, + 52.104180201 + ], + [ + 8.7243004, + 52.104532101 + ], + [ + 8.7250262, + 52.104997101 + ], + [ + 8.7259296, + 52.105575601 + ], + [ + 8.7305136, + 52.108553101 + ], + [ + 8.7322971, + 52.109686101 + ], + [ + 8.7329311, + 52.110107701 + ], + [ + 8.7338731, + 52.110747001 + ], + [ + 8.734684, + 52.111350001 + ], + [ + 8.735193, + 52.111775301 + ], + [ + 8.7357045, + 52.112288601 + ], + [ + 8.7361865, + 52.112848501 + ], + [ + 8.7365285, + 52.113306901 + ], + [ + 8.7368301, + 52.113773701 + ], + [ + 8.736983, + 52.114016001 + ], + [ + 8.7373069, + 52.114614201 + ], + [ + 8.7375457, + 52.115227501 + ], + [ + 8.7376814, + 52.115686001 + ], + [ + 8.737812, + 52.116248101 + ], + [ + 8.7378836, + 52.116862001 + ], + [ + 8.7378978, + 52.117145101 + ], + [ + 8.7378817, + 52.117654701 + ], + [ + 8.7378285, + 52.118138601 + ], + [ + 8.737699, + 52.118755101 + ], + [ + 8.737534, + 52.119478301 + ], + [ + 8.7372514, + 52.120832201 + ], + [ + 8.736357, + 52.124885701 + ], + [ + 8.7362139, + 52.125822601 + ], + [ + 8.7361738, + 52.126658201 + ], + [ + 8.736178, + 52.127248701 + ], + [ + 8.736207889, + 52.127565678 + ] + ] + } + }, + { + "identifier": "2024-010326--vi-bs.2026-04-13_09-00-00-000.devi-zus.2025-07-01_20-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.096051489793226,8.706972917742409,52.099878346468714,8.715083583841713", + "point": "52.096051489793226,8.706972917742409", + "startLcPosition": "58", + "impact": { + "lower": "Herford", + "upper": "Herford/Bad Salzuflen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herford/Bad Salzuflen - Herford", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 52.096051489793226, + "long": 8.706972917742409 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 22.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.09.26)", + "", + "A2: Dortmund -> Hannover, zwischen 1.1 km hinter AS Herford/Bad Salzuflen und 0.4 km vor Herford", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A2 - Br\u00fcckeninstandsetzung BW Forstweg - AlD 10326" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.706972918, + 52.09605149 + ], + [ + 8.7094081, + 52.097215301 + ], + [ + 8.7098877, + 52.097442001 + ], + [ + 8.715083584, + 52.099878346 + ] + ] + } + }, + { + "identifier": "2026-015824--vi-bs.2026-04-10_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.08939546301438,8.697286553231853,52.10261358540127,8.720880413886848", + "point": "52.08939546301438,8.697286553231853", + "startLcPosition": "58", + "impact": { + "lower": "Herford-Ost", + "upper": "Herford/Bad Salzuflen", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herford/Bad Salzuflen - Herford-Ost", + "coordinate": { + "lat": 52.08939546301438, + "long": 8.697286553231853 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 0.1 km hinter AS Herford/Bad Salzuflen und 3.6 km vor AS Herford-Ost", + "", + "L\u00e4nge: 2.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 15824" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.697286553, + 52.089395463 + ], + [ + 8.6975316, + 52.089633701 + ], + [ + 8.6977868, + 52.089870001 + ], + [ + 8.6990955, + 52.091035701 + ], + [ + 8.6995056, + 52.091365201 + ], + [ + 8.7000073, + 52.091766101 + ], + [ + 8.7005934, + 52.092221901 + ], + [ + 8.7013508, + 52.092752001 + ], + [ + 8.7018718, + 52.093108201 + ], + [ + 8.7030495, + 52.093857001 + ], + [ + 8.7035937, + 52.094222801 + ], + [ + 8.7045555, + 52.094778901 + ], + [ + 8.705839, + 52.095494801 + ], + [ + 8.7062783, + 52.095719501 + ], + [ + 8.7094081, + 52.097215301 + ], + [ + 8.7098877, + 52.097442001 + ], + [ + 8.7150837, + 52.099878401 + ], + [ + 8.7164483, + 52.100507801 + ], + [ + 8.7177738, + 52.101127701 + ], + [ + 8.7180501, + 52.101256601 + ], + [ + 8.7183956, + 52.101419201 + ], + [ + 8.7198013, + 52.102078401 + ], + [ + 8.720880414, + 52.102613585 + ] + ] + } + }, + { + "identifier": "2026-017415--vi-fbm.2026-04-22_20-00-00-000.devi-zus.2026-04-13_09-00-00-000_007.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.096051489793226,8.706972917742409,52.112470485671366,8.735861077244254", + "point": "52.096051489793226,8.706972917742409", + "startLcPosition": "58", + "impact": { + "lower": "Herford-Ost", + "upper": "Herford/Bad Salzuflen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herford/Bad Salzuflen - Herford-Ost", + "coordinate": { + "lat": 52.096051489793226, + "long": 8.706972917742409 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "24.04.26 20:00 bis zum 25.04.26 05:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 1.1 km hinter AS Herford/Bad Salzuflen und 2.1 km vor AS Herford-Ost", + "", + "L\u00e4nge: 2.7 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - Auf- oder Abbau Verkehrsf\u00fchrung - Wanderbaustelle - AkD 17415" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.706972918, + 52.09605149 + ], + [ + 8.7094081, + 52.097215301 + ], + [ + 8.7098877, + 52.097442001 + ], + [ + 8.7150837, + 52.099878401 + ], + [ + 8.7164483, + 52.100507801 + ], + [ + 8.7177738, + 52.101127701 + ], + [ + 8.7180501, + 52.101256601 + ], + [ + 8.7183956, + 52.101419201 + ], + [ + 8.7198013, + 52.102078401 + ], + [ + 8.7216366, + 52.102988601 + ], + [ + 8.7225853, + 52.103516501 + ], + [ + 8.7237335, + 52.104180201 + ], + [ + 8.7243004, + 52.104532101 + ], + [ + 8.7250262, + 52.104997101 + ], + [ + 8.7259296, + 52.105575601 + ], + [ + 8.7305136, + 52.108553101 + ], + [ + 8.7322971, + 52.109686101 + ], + [ + 8.7329311, + 52.110107701 + ], + [ + 8.7338731, + 52.110747001 + ], + [ + 8.734684, + 52.111350001 + ], + [ + 8.735193, + 52.111775301 + ], + [ + 8.7357045, + 52.112288601 + ], + [ + 8.735861077, + 52.112470486 + ] + ] + } + }, + { + "identifier": "2026-017415--vi-fbm.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.09088814945429,8.698929843255417,52.12756567768591,8.736207889157978", + "point": "52.09088814945429,8.698929843255417", + "startLcPosition": "58", + "impact": { + "lower": "Herford-Ost", + "upper": "Herford/Bad Salzuflen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herford/Bad Salzuflen - Herford-Ost", + "coordinate": { + "lat": 52.09088814945429, + "long": 8.698929843255417 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "", + "A2: Dortmund -> Hannover, zwischen 0.3 km hinter AS Herford/Bad Salzuflen und 0.4 km vor AS Herford-Ost", + "", + "L\u00e4nge: 5.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Auf- oder Abbau Verkehrsf\u00fchrung - Wanderbaustelle - AkD 17415" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.698929843, + 52.090888149 + ], + [ + 8.6990955, + 52.091035701 + ], + [ + 8.6995056, + 52.091365201 + ], + [ + 8.7000073, + 52.091766101 + ], + [ + 8.7005934, + 52.092221901 + ], + [ + 8.7013508, + 52.092752001 + ], + [ + 8.7018718, + 52.093108201 + ], + [ + 8.7030495, + 52.093857001 + ], + [ + 8.7035937, + 52.094222801 + ], + [ + 8.7045555, + 52.094778901 + ], + [ + 8.705839, + 52.095494801 + ], + [ + 8.7062783, + 52.095719501 + ], + [ + 8.7094081, + 52.097215301 + ], + [ + 8.7098877, + 52.097442001 + ], + [ + 8.7150837, + 52.099878401 + ], + [ + 8.7164483, + 52.100507801 + ], + [ + 8.7177738, + 52.101127701 + ], + [ + 8.7180501, + 52.101256601 + ], + [ + 8.7183956, + 52.101419201 + ], + [ + 8.7198013, + 52.102078401 + ], + [ + 8.7216366, + 52.102988601 + ], + [ + 8.7225853, + 52.103516501 + ], + [ + 8.7237335, + 52.104180201 + ], + [ + 8.7243004, + 52.104532101 + ], + [ + 8.7250262, + 52.104997101 + ], + [ + 8.7259296, + 52.105575601 + ], + [ + 8.7305136, + 52.108553101 + ], + [ + 8.7322971, + 52.109686101 + ], + [ + 8.7329311, + 52.110107701 + ], + [ + 8.7338731, + 52.110747001 + ], + [ + 8.734684, + 52.111350001 + ], + [ + 8.735193, + 52.111775301 + ], + [ + 8.7357045, + 52.112288601 + ], + [ + 8.7361865, + 52.112848501 + ], + [ + 8.7365285, + 52.113306901 + ], + [ + 8.7368301, + 52.113773701 + ], + [ + 8.736983, + 52.114016001 + ], + [ + 8.7373069, + 52.114614201 + ], + [ + 8.7375457, + 52.115227501 + ], + [ + 8.7376814, + 52.115686001 + ], + [ + 8.737812, + 52.116248101 + ], + [ + 8.7378836, + 52.116862001 + ], + [ + 8.7378978, + 52.117145101 + ], + [ + 8.7378817, + 52.117654701 + ], + [ + 8.7378285, + 52.118138601 + ], + [ + 8.737699, + 52.118755101 + ], + [ + 8.737534, + 52.119478301 + ], + [ + 8.7372514, + 52.120832201 + ], + [ + 8.736357, + 52.124885701 + ], + [ + 8.7362139, + 52.125822601 + ], + [ + 8.7361738, + 52.126658201 + ], + [ + 8.736178, + 52.127248701 + ], + [ + 8.736207889, + 52.127565678 + ] + ] + } + }, + { + "identifier": "2026-015606--vi-bs.2026-04-09_19-00-00-000.devi-zus.2026-04-07_19-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.098789232471916,8.712760749297104,52.1063718633517,8.727155396326781", + "point": "52.098789232471916,8.712760749297104", + "startLcPosition": "58", + "impact": { + "lower": "Herford-Ost", + "upper": "Herford/Bad Salzuflen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herford/Bad Salzuflen - Herford-Ost", + "coordinate": { + "lat": 52.098789232471916, + "long": 8.712760749297104 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 1.6 km hinter AS Herford/Bad Salzuflen und 3.0 km vor AS Herford-Ost", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 15606" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.712760749, + 52.098789232 + ], + [ + 8.7150837, + 52.099878401 + ], + [ + 8.7164483, + 52.100507801 + ], + [ + 8.7177738, + 52.101127701 + ], + [ + 8.7180501, + 52.101256601 + ], + [ + 8.7183956, + 52.101419201 + ], + [ + 8.7198013, + 52.102078401 + ], + [ + 8.7216366, + 52.102988601 + ], + [ + 8.7225853, + 52.103516501 + ], + [ + 8.7237335, + 52.104180201 + ], + [ + 8.7243004, + 52.104532101 + ], + [ + 8.7250262, + 52.104997101 + ], + [ + 8.7259296, + 52.105575601 + ], + [ + 8.727155396, + 52.106371863 + ] + ] + } + }, + { + "identifier": "2026-015820--vi-bs.2026-04-09_19-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.091603235566026,8.699803483293744,52.10261358540127,8.720880413886848", + "point": "52.091603235566026,8.699803483293744", + "startLcPosition": "58", + "impact": { + "lower": "Herford-Ost", + "upper": "Herford/Bad Salzuflen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herford/Bad Salzuflen - Herford-Ost", + "coordinate": { + "lat": 52.091603235566026, + "long": 8.699803483293744 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 0.4 km hinter AS Herford/Bad Salzuflen und 3.6 km vor AS Herford-Ost", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - Fahrbahninstandsetzung - AkD 15820" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.699803483, + 52.091603236 + ], + [ + 8.7000073, + 52.091766101 + ], + [ + 8.7005934, + 52.092221901 + ], + [ + 8.7013508, + 52.092752001 + ], + [ + 8.7018718, + 52.093108201 + ], + [ + 8.7030495, + 52.093857001 + ], + [ + 8.7035937, + 52.094222801 + ], + [ + 8.7045555, + 52.094778901 + ], + [ + 8.705839, + 52.095494801 + ], + [ + 8.7062783, + 52.095719501 + ], + [ + 8.7094081, + 52.097215301 + ], + [ + 8.7098877, + 52.097442001 + ], + [ + 8.7150837, + 52.099878401 + ], + [ + 8.7164483, + 52.100507801 + ], + [ + 8.7177738, + 52.101127701 + ], + [ + 8.7180501, + 52.101256601 + ], + [ + 8.7183956, + 52.101419201 + ], + [ + 8.7198013, + 52.102078401 + ], + [ + 8.720880414, + 52.102613585 + ] + ] + } + }, + { + "identifier": "2024-010326--vi-bs.2026-04-13_09-00-00-000.devi-zus.2025-07-01_20-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.105882487651805,8.72640202546204,52.11207898794638,8.735495620382837", + "point": "52.105882487651805,8.72640202546204", + "startLcPosition": "59", + "impact": { + "lower": "Herford-Ost", + "upper": "Herford", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Herford - Herford-Ost", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 52.105882487651805, + "long": 8.72640202546204 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 22.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.09.26)", + "", + "A2: Dortmund -> Hannover, zwischen 0.6 km hinter Herford und 2.2 km vor AS Herford-Ost", + "", + "L\u00e4nge: 0.93 km | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A2 - Br\u00fcckeninstandsetzung BW Forstweg - AlD 10326" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.726402025, + 52.105882488 + ], + [ + 8.7305136, + 52.108553101 + ], + [ + 8.7322971, + 52.109686101 + ], + [ + 8.7329311, + 52.110107701 + ], + [ + 8.7338731, + 52.110747001 + ], + [ + 8.734684, + 52.111350001 + ], + [ + 8.735193, + 52.111775301 + ], + [ + 8.73549562, + 52.112078988 + ] + ] + } + }, + { + "identifier": "2024-010326--vi-bs.2026-04-13_09-00-00-000.devi-zus.2025-07-01_20-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.09998828280603,8.714928769213833,52.09916862763848,8.713190767306253", + "point": "52.09998828280603,8.714928769213833", + "startLcPosition": "59", + "impact": { + "lower": "Herford/Bad Salzuflen", + "upper": "Herford", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Herford - Herford/Bad Salzuflen", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 52.09998828280603, + "long": 8.714928769213833 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 22.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.09.26)", + "", + "A2: Hannover -> Dortmund, zwischen 0.4 km hinter Herford und 1.6 km vor AS Herford/Bad Salzuflen", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A2 - Br\u00fcckeninstandsetzung BW Forstweg - AlD 10326" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.714928769, + 52.099988283 + ], + [ + 8.7142337, + 52.099657801 + ], + [ + 8.713190767, + 52.099168628 + ] + ] + } + }, + { + "identifier": "2024-010326--vi-bs.2026-04-13_09-00-00-000.devi-zus.2025-07-01_20-00-00-000.de13", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.10597822699194,8.726237387090503,52.09998828280603,8.714928769213833", + "point": "52.10597822699194,8.726237387090503", + "startLcPosition": "60", + "impact": { + "lower": "Herford/Bad Salzuflen", + "upper": "Herford-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Herford-Ost - Herford/Bad Salzuflen", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 52.10597822699194, + "long": 8.726237387090503 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 22.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.09.26)", + "", + "A2: Hannover -> Dortmund, zwischen 3.1 km hinter AS Herford-Ost und 1.8 km vor AS Herford/Bad Salzuflen", + "", + "L\u00e4nge: 1.03 km | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A2 - Br\u00fcckeninstandsetzung BW Forstweg - AlD 10326" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.726237387, + 52.105978227 + ], + [ + 8.7254732, + 52.105477701 + ], + [ + 8.7248047, + 52.105035601 + ], + [ + 8.7240847, + 52.104598501 + ], + [ + 8.7235239, + 52.104259001 + ], + [ + 8.7225131, + 52.103677901 + ], + [ + 8.7220222, + 52.103394301 + ], + [ + 8.7212805, + 52.102981901 + ], + [ + 8.71967, + 52.102198001 + ], + [ + 8.7182261, + 52.101523601 + ], + [ + 8.7178748, + 52.101359801 + ], + [ + 8.7176106, + 52.101236301 + ], + [ + 8.716004, + 52.100499501 + ], + [ + 8.714928769, + 52.099988283 + ] + ] + } + }, + { + "identifier": "2026-017415--vi-fbm.2026-04-14_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_007.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.12757796444078,8.735941232736817,52.09096842110928,8.698741278367784", + "point": "52.12757796444078,8.735941232736817", + "startLcPosition": "60", + "impact": { + "lower": "Herford/Bad Salzuflen", + "upper": "Herford-Ost", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Herford-Ost - Herford/Bad Salzuflen", + "coordinate": { + "lat": 52.12757796444078, + "long": 8.735941232736817 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 15:00 Uhr", + "", + "A2: Hannover -> Dortmund, zwischen 0.4 km hinter AS Herford-Ost und 0.3 km vor AS Herford/Bad Salzuflen", + "", + "L\u00e4nge: 5.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Auf- oder Abbau Verkehrsf\u00fchrung - Wanderbaustelle - AkD 17415" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.735941233, + 52.127577964 + ], + [ + 8.7358982, + 52.127289701 + ], + [ + 8.7358967, + 52.126913801 + ], + [ + 8.7359213, + 52.126632601 + ], + [ + 8.735992, + 52.125804101 + ], + [ + 8.7361294, + 52.124909001 + ], + [ + 8.7370109, + 52.120812501 + ], + [ + 8.737296, + 52.119457701 + ], + [ + 8.7374005, + 52.118750201 + ], + [ + 8.7374517, + 52.118041301 + ], + [ + 8.7374252, + 52.117513701 + ], + [ + 8.7373838, + 52.116948101 + ], + [ + 8.7372549, + 52.116298201 + ], + [ + 8.7371095, + 52.115774901 + ], + [ + 8.7369437, + 52.115283801 + ], + [ + 8.7367109, + 52.114752901 + ], + [ + 8.7364915, + 52.114355801 + ], + [ + 8.7363751, + 52.114145101 + ], + [ + 8.7360527, + 52.113596301 + ], + [ + 8.7355844, + 52.112941101 + ], + [ + 8.7350758, + 52.112312501 + ], + [ + 8.7342878, + 52.111505201 + ], + [ + 8.7335671, + 52.110892601 + ], + [ + 8.7327327, + 52.110240501 + ], + [ + 8.7321136, + 52.109799101 + ], + [ + 8.730425, + 52.108692801 + ], + [ + 8.7268525, + 52.106381101 + ], + [ + 8.7254732, + 52.105477701 + ], + [ + 8.7248047, + 52.105035601 + ], + [ + 8.7240847, + 52.104598501 + ], + [ + 8.7235239, + 52.104259001 + ], + [ + 8.7225131, + 52.103677901 + ], + [ + 8.7220222, + 52.103394301 + ], + [ + 8.7212805, + 52.102981901 + ], + [ + 8.71967, + 52.102198001 + ], + [ + 8.7182261, + 52.101523601 + ], + [ + 8.7178748, + 52.101359801 + ], + [ + 8.7176106, + 52.101236301 + ], + [ + 8.716004, + 52.100499501 + ], + [ + 8.7142337, + 52.099657801 + ], + [ + 8.7097416, + 52.097550701 + ], + [ + 8.7092681, + 52.097327901 + ], + [ + 8.7060765, + 52.095802801 + ], + [ + 8.7056458, + 52.095568801 + ], + [ + 8.7043173, + 52.094845601 + ], + [ + 8.7036819, + 52.094476001 + ], + [ + 8.7033562, + 52.094281401 + ], + [ + 8.7027839, + 52.093925301 + ], + [ + 8.7019818, + 52.093409801 + ], + [ + 8.7011289, + 52.092823701 + ], + [ + 8.700448, + 52.092323601 + ], + [ + 8.6998057, + 52.091839001 + ], + [ + 8.6992973, + 52.091441301 + ], + [ + 8.6988871, + 52.091098501 + ], + [ + 8.698741278, + 52.090968421 + ] + ] + } + }, + { + "identifier": "2024-010326--vi-bs.2026-04-13_09-00-00-000.devi-zus.2025-07-01_20-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.110579258398275,8.733166155961449,52.10597822699194,8.726237387090503", + "point": "52.110579258398275,8.733166155961449", + "startLcPosition": "60", + "impact": { + "lower": "Herford", + "upper": "Herford-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Herford-Ost - Herford", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 52.110579258398275, + "long": 8.733166155961449 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 22.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.09.26)", + "", + "A2: Hannover -> Dortmund, zwischen 2.4 km hinter AS Herford-Ost und 0.6 km vor Herford", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A2 - Br\u00fcckeninstandsetzung BW Forstweg - AlD 10326" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.733166156, + 52.110579258 + ], + [ + 8.7327327, + 52.110240501 + ], + [ + 8.7321136, + 52.109799101 + ], + [ + 8.730425, + 52.108692801 + ], + [ + 8.7268525, + 52.106381101 + ], + [ + 8.726237387, + 52.105978227 + ] + ] + } + }, + { + "identifier": "2026-017415--vi-fbm.2026-04-15_20-00-00-000.devi-zus.2026-04-13_09-00-00-000_007.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.11040293938619,8.732940546496465,52.09916862763848,8.713190767306253", + "point": "52.11040293938619,8.732940546496465", + "startLcPosition": "60", + "impact": { + "lower": "Herford/Bad Salzuflen", + "upper": "Herford-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Herford-Ost - Herford/Bad Salzuflen", + "coordinate": { + "lat": 52.11040293938619, + "long": 8.732940546496465 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 05:00 Uhr.", + "", + "A2: Hannover -> Dortmund, zwischen 2.4 km hinter AS Herford-Ost und 1.6 km vor AS Herford/Bad Salzuflen", + "", + "L\u00e4nge: 1.85 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 - Auf- oder Abbau Verkehrsf\u00fchrung - Wanderbaustelle - AkD 17415" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.732940546, + 52.110402939 + ], + [ + 8.7327327, + 52.110240501 + ], + [ + 8.7321136, + 52.109799101 + ], + [ + 8.730425, + 52.108692801 + ], + [ + 8.7268525, + 52.106381101 + ], + [ + 8.7254732, + 52.105477701 + ], + [ + 8.7248047, + 52.105035601 + ], + [ + 8.7240847, + 52.104598501 + ], + [ + 8.7235239, + 52.104259001 + ], + [ + 8.7225131, + 52.103677901 + ], + [ + 8.7220222, + 52.103394301 + ], + [ + 8.7212805, + 52.102981901 + ], + [ + 8.71967, + 52.102198001 + ], + [ + 8.7182261, + 52.101523601 + ], + [ + 8.7178748, + 52.101359801 + ], + [ + 8.7176106, + 52.101236301 + ], + [ + 8.716004, + 52.100499501 + ], + [ + 8.7142337, + 52.099657801 + ], + [ + 8.713190767, + 52.099168628 + ] + ] + } + }, + { + "identifier": "2026-017262--vi-bs.2026-04-13_09-00-00-000_012.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.11040293938619,8.732940546496465,52.10581446757949,8.725987361769013", + "point": "52.11040293938619,8.732940546496465", + "startLcPosition": "60", + "impact": { + "lower": "Herford", + "upper": "Herford-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Herford-Ost - Herford", + "coordinate": { + "lat": 52.11040293938619, + "long": 8.732940546496465 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "", + "A2: Hannover -> Dortmund, zwischen 2.4 km hinter AS Herford-Ost und 0.6 km vor Herford", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Br\u00fcckenwartung - AkD 17262" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.732940546, + 52.110402939 + ], + [ + 8.7327327, + 52.110240501 + ], + [ + 8.7321136, + 52.109799101 + ], + [ + 8.730425, + 52.108692801 + ], + [ + 8.7268525, + 52.106381101 + ], + [ + 8.725987362, + 52.105814468 + ] + ] + } + }, + { + "identifier": "2026-016287--vi-bs.2026-04-13_09-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.11040293938619,8.732940546496465,52.10581446757949,8.725987361769013", + "point": "52.11040293938619,8.732940546496465", + "startLcPosition": "60", + "impact": { + "lower": "Herford", + "upper": "Herford-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Herford-Ost - Herford", + "coordinate": { + "lat": 52.11040293938619, + "long": 8.732940546496465 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "", + "A2: Hannover -> Dortmund, zwischen 2.4 km hinter AS Herford-Ost und 0.6 km vor Herford", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 - Br\u00fcckenwartung - Wanderbaustelle - Akd 16287" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.732940546, + 52.110402939 + ], + [ + 8.7327327, + 52.110240501 + ], + [ + 8.7321136, + 52.109799101 + ], + [ + 8.730425, + 52.108692801 + ], + [ + 8.7268525, + 52.106381101 + ], + [ + 8.725987362, + 52.105814468 + ] + ] + } + }, + { + "identifier": "2026-013288--vi-bs.2026-03-26_09-00-00-000.devi-zus.2026-03-26_09-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.22033226222337,9.037986273482028,52.42080105031367,9.626113414661573", + "point": "52.22033226222337,9.037986273482028", + "startLcPosition": "66", + "impact": { + "lower": "Hannover-Herrenhausen", + "upper": "Veltheim", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Veltheim - Hannover-Herrenhausen", + "coordinate": { + "lat": 52.22033226222337, + "long": 9.037986273482028 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 26.03.26 und dem 14.04.26 von 09:00 bis 17:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 5.8 km hinter AS Veltheim und 0.3 km vor AS Hannover-Herrenhausen", + "", + "L\u00e4nge: 50.63 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A2 von Veltheim (AS) nach Hannover-Herrenhausen (AS) Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.037986273, + 52.220332262 + ], + [ + 9.0386236, + 52.220204301 + ], + [ + 9.045541, + 52.218787901 + ], + [ + 9.0466301, + 52.218605201 + ], + [ + 9.0475818, + 52.218438801 + ], + [ + 9.0486814, + 52.218290001 + ], + [ + 9.0498635, + 52.218167901 + ], + [ + 9.0508364, + 52.218130101 + ], + [ + 9.0517023, + 52.218149501 + ], + [ + 9.0523702, + 52.218174101 + ], + [ + 9.0530508, + 52.218219501 + ], + [ + 9.0537735, + 52.218295801 + ], + [ + 9.0545335, + 52.218406201 + ], + [ + 9.0552132, + 52.218521301 + ], + [ + 9.0558956, + 52.218670501 + ], + [ + 9.057297, + 52.219026201 + ], + [ + 9.0576309, + 52.219139001 + ], + [ + 9.0578101, + 52.219197301 + ], + [ + 9.0585774, + 52.219438501 + ], + [ + 9.0592381, + 52.219661101 + ], + [ + 9.0611199, + 52.220282601 + ], + [ + 9.0631202, + 52.220882401 + ], + [ + 9.0638997, + 52.221060201 + ], + [ + 9.0647974, + 52.221228101 + ], + [ + 9.0654851, + 52.221329401 + ], + [ + 9.066168, + 52.221407401 + ], + [ + 9.0669022, + 52.221463101 + ], + [ + 9.0677406, + 52.221495501 + ], + [ + 9.068627, + 52.221494901 + ], + [ + 9.0693766, + 52.221464901 + ], + [ + 9.0706877, + 52.221369601 + ], + [ + 9.0743348, + 52.221089001 + ], + [ + 9.0793844, + 52.220726001 + ], + [ + 9.0799871, + 52.220682801 + ], + [ + 9.0819722, + 52.220531301 + ], + [ + 9.0825181, + 52.220489601 + ], + [ + 9.0852252, + 52.220286001 + ], + [ + 9.086605, + 52.220200701 + ], + [ + 9.0873497, + 52.220150101 + ], + [ + 9.0879955, + 52.220146101 + ], + [ + 9.0893121, + 52.220118201 + ], + [ + 9.0904982, + 52.220157801 + ], + [ + 9.0915629, + 52.220238501 + ], + [ + 9.0918368, + 52.220259301 + ], + [ + 9.0932838, + 52.220392701 + ], + [ + 9.0956755, + 52.220708501 + ], + [ + 9.0980315, + 52.221019501 + ], + [ + 9.1007069, + 52.221353501 + ], + [ + 9.1021007, + 52.221495201 + ], + [ + 9.1030687, + 52.221588401 + ], + [ + 9.1043581, + 52.221676501 + ], + [ + 9.1054583, + 52.221721001 + ], + [ + 9.106299, + 52.221701701 + ], + [ + 9.1070839, + 52.221663601 + ], + [ + 9.1077892, + 52.221606301 + ], + [ + 9.1084777, + 52.221527601 + ], + [ + 9.1090617, + 52.221451501 + ], + [ + 9.1098205, + 52.221318801 + ], + [ + 9.1106862, + 52.221147601 + ], + [ + 9.1111987, + 52.221037101 + ], + [ + 9.111542, + 52.220963101 + ], + [ + 9.1141068, + 52.220397101 + ], + [ + 9.1149527, + 52.220230301 + ], + [ + 9.1156076, + 52.220119901 + ], + [ + 9.116268, + 52.220026001 + ], + [ + 9.117057, + 52.219942101 + ], + [ + 9.1179343, + 52.219876501 + ], + [ + 9.1186871, + 52.219849501 + ], + [ + 9.1194399, + 52.219845601 + ], + [ + 9.120257, + 52.219862401 + ], + [ + 9.1209748, + 52.219907101 + ], + [ + 9.121811, + 52.219982101 + ], + [ + 9.1223082, + 52.220037901 + ], + [ + 9.1232188, + 52.220153501 + ], + [ + 9.1241278, + 52.220279801 + ], + [ + 9.1254164, + 52.220442501 + ], + [ + 9.1255762, + 52.220462701 + ], + [ + 9.126365, + 52.220547801 + ], + [ + 9.1271522, + 52.220607601 + ], + [ + 9.1278242, + 52.220638201 + ], + [ + 9.1284899, + 52.220644001 + ], + [ + 9.1292852, + 52.220629601 + ], + [ + 9.1300464, + 52.220595901 + ], + [ + 9.1313939, + 52.220486601 + ], + [ + 9.132271, + 52.220399801 + ], + [ + 9.134985, + 52.220125501 + ], + [ + 9.1380605, + 52.219815401 + ], + [ + 9.138604, + 52.219768101 + ], + [ + 9.1391699, + 52.219733601 + ], + [ + 9.1398056, + 52.219706801 + ], + [ + 9.140799, + 52.219678301 + ], + [ + 9.1451715, + 52.219573601 + ], + [ + 9.145688, + 52.219559401 + ], + [ + 9.1470194, + 52.219508401 + ], + [ + 9.1473592, + 52.219495401 + ], + [ + 9.1482197, + 52.219440301 + ], + [ + 9.1490833, + 52.219377301 + ], + [ + 9.1505226, + 52.219221001 + ], + [ + 9.1544133, + 52.218736501 + ], + [ + 9.1563969, + 52.218489401 + ], + [ + 9.1588141, + 52.218193301 + ], + [ + 9.1598178, + 52.218041801 + ], + [ + 9.160612, + 52.217886701 + ], + [ + 9.1612166, + 52.217751101 + ], + [ + 9.1617715, + 52.217604801 + ], + [ + 9.1623168, + 52.217449401 + ], + [ + 9.1634036, + 52.217138001 + ], + [ + 9.1649261, + 52.216696401 + ], + [ + 9.165772, + 52.216452801 + ], + [ + 9.1666505, + 52.216224701 + ], + [ + 9.1672111, + 52.216106901 + ], + [ + 9.1677925, + 52.216002501 + ], + [ + 9.1684382, + 52.215914601 + ], + [ + 9.1690944, + 52.215845301 + ], + [ + 9.169613, + 52.215809401 + ], + [ + 9.1701417, + 52.215783601 + ], + [ + 9.1716962, + 52.215757101 + ], + [ + 9.1738427, + 52.215727901 + ], + [ + 9.1750927, + 52.215711001 + ], + [ + 9.1758481, + 52.215698501 + ], + [ + 9.1768756, + 52.215652601 + ], + [ + 9.177384, + 52.215620901 + ], + [ + 9.1788143, + 52.215523501 + ], + [ + 9.1802377, + 52.215443101 + ], + [ + 9.1814114, + 52.215441401 + ], + [ + 9.182163, + 52.215467601 + ], + [ + 9.182927, + 52.215519601 + ], + [ + 9.1835068, + 52.215576901 + ], + [ + 9.1840895, + 52.215650501 + ], + [ + 9.1848687, + 52.215773101 + ], + [ + 9.1853173, + 52.215855501 + ], + [ + 9.185765, + 52.215945401 + ], + [ + 9.1867293, + 52.216169101 + ], + [ + 9.1882888, + 52.216589801 + ], + [ + 9.1894478, + 52.216888701 + ], + [ + 9.1955239, + 52.218492801 + ], + [ + 9.1990697, + 52.219475201 + ], + [ + 9.2006558, + 52.219890301 + ], + [ + 9.2048187, + 52.220981001 + ], + [ + 9.2060015, + 52.221285801 + ], + [ + 9.2064491, + 52.221393201 + ], + [ + 9.2069029, + 52.221494001 + ], + [ + 9.2076708, + 52.221640201 + ], + [ + 9.2082837, + 52.221739101 + ], + [ + 9.2088983, + 52.221818901 + ], + [ + 9.209425, + 52.221871401 + ], + [ + 9.2099617, + 52.221916401 + ], + [ + 9.210467, + 52.221947001 + ], + [ + 9.2109603, + 52.221964301 + ], + [ + 9.2118817, + 52.221975001 + ], + [ + 9.2130541, + 52.221945001 + ], + [ + 9.2151244, + 52.221857801 + ], + [ + 9.2166456, + 52.221820901 + ], + [ + 9.2168373, + 52.221823001 + ], + [ + 9.2173519, + 52.221828701 + ], + [ + 9.2180181, + 52.221856901 + ], + [ + 9.2188295, + 52.221919101 + ], + [ + 9.2194134, + 52.221977701 + ], + [ + 9.2198392, + 52.222032401 + ], + [ + 9.2204778, + 52.222127301 + ], + [ + 9.2211741, + 52.222247101 + ], + [ + 9.2218629, + 52.222397601 + ], + [ + 9.2224636, + 52.222545501 + ], + [ + 9.2234457, + 52.222818501 + ], + [ + 9.2242312, + 52.223083101 + ], + [ + 9.2250461, + 52.223407601 + ], + [ + 9.2256278, + 52.223673301 + ], + [ + 9.2262686, + 52.223997901 + ], + [ + 9.2269562, + 52.224372901 + ], + [ + 9.2288153, + 52.225526601 + ], + [ + 9.229488, + 52.225931501 + ], + [ + 9.231894, + 52.227438501 + ], + [ + 9.2330874, + 52.228172601 + ], + [ + 9.2343165, + 52.228937901 + ], + [ + 9.2347389, + 52.229191501 + ], + [ + 9.2355923, + 52.229685401 + ], + [ + 9.2362341, + 52.230023501 + ], + [ + 9.2366037, + 52.230210801 + ], + [ + 9.2371559, + 52.230462701 + ], + [ + 9.2373758, + 52.230555101 + ], + [ + 9.2378099, + 52.230729101 + ], + [ + 9.2381522, + 52.230865401 + ], + [ + 9.23898, + 52.231150601 + ], + [ + 9.2393839, + 52.231272401 + ], + [ + 9.2397994, + 52.231384801 + ], + [ + 9.240295, + 52.231510001 + ], + [ + 9.2405354, + 52.231564101 + ], + [ + 9.2407599, + 52.231614601 + ], + [ + 9.2414224, + 52.231755401 + ], + [ + 9.2421006, + 52.231867501 + ], + [ + 9.243013, + 52.232000201 + ], + [ + 9.2439299, + 52.232120901 + ], + [ + 9.2463279, + 52.232441901 + ], + [ + 9.249538, + 52.232870801 + ], + [ + 9.2520899, + 52.233196601 + ], + [ + 9.2542127, + 52.233487501 + ], + [ + 9.2548673, + 52.233574701 + ], + [ + 9.2571123, + 52.233873601 + ], + [ + 9.2585066, + 52.234055901 + ], + [ + 9.2600845, + 52.234266801 + ], + [ + 9.2625406, + 52.234592301 + ], + [ + 9.262767, + 52.234622301 + ], + [ + 9.2631391, + 52.234665901 + ], + [ + 9.2655467, + 52.234948301 + ], + [ + 9.2673797, + 52.235237801 + ], + [ + 9.2677785, + 52.235303301 + ], + [ + 9.2696815, + 52.235654401 + ], + [ + 9.2712569, + 52.236028501 + ], + [ + 9.2736076, + 52.236716501 + ], + [ + 9.2751815, + 52.237251101 + ], + [ + 9.2765, + 52.237767101 + ], + [ + 9.277564, + 52.238214801 + ], + [ + 9.2783289, + 52.238586301 + ], + [ + 9.2792875, + 52.239071101 + ], + [ + 9.2801048, + 52.239539201 + ], + [ + 9.2813577, + 52.240298001 + ], + [ + 9.2818852, + 52.240659901 + ], + [ + 9.2824961, + 52.241078901 + ], + [ + 9.2832961, + 52.241724901 + ], + [ + 9.2843577, + 52.242624801 + ], + [ + 9.2852312, + 52.243439101 + ], + [ + 9.2864067, + 52.244535001 + ], + [ + 9.2884733, + 52.246486701 + ], + [ + 9.2895557, + 52.247452401 + ], + [ + 9.2903808, + 52.248116201 + ], + [ + 9.2906438, + 52.248327701 + ], + [ + 9.2909594, + 52.248543401 + ], + [ + 9.2919734, + 52.249250201 + ], + [ + 9.2931158, + 52.249988801 + ], + [ + 9.2942856, + 52.250622701 + ], + [ + 9.2953983, + 52.251155001 + ], + [ + 9.3033591, + 52.254822101 + ], + [ + 9.304834, + 52.255539901 + ], + [ + 9.3058358, + 52.256027501 + ], + [ + 9.3069366, + 52.256623501 + ], + [ + 9.3078982, + 52.257198001 + ], + [ + 9.3086949, + 52.257737501 + ], + [ + 9.3095213, + 52.258372501 + ], + [ + 9.3105843, + 52.259210201 + ], + [ + 9.3113127, + 52.259865201 + ], + [ + 9.3115374, + 52.260081601 + ], + [ + 9.3119791, + 52.260506901 + ], + [ + 9.3125795, + 52.261164001 + ], + [ + 9.3129109, + 52.261521701 + ], + [ + 9.3146058, + 52.263406501 + ], + [ + 9.3148963, + 52.263702401 + ], + [ + 9.3161443, + 52.264980001 + ], + [ + 9.3163015, + 52.265134401 + ], + [ + 9.3165106, + 52.265351501 + ], + [ + 9.3178821, + 52.266459901 + ], + [ + 9.3186909, + 52.267062501 + ], + [ + 9.3194894, + 52.267588001 + ], + [ + 9.3196228, + 52.267675801 + ], + [ + 9.3206187, + 52.268301101 + ], + [ + 9.3215482, + 52.268816401 + ], + [ + 9.322854, + 52.269459001 + ], + [ + 9.3319565, + 52.273730401 + ], + [ + 9.3323969, + 52.273937801 + ], + [ + 9.3343395, + 52.274861001 + ], + [ + 9.3354708, + 52.275394701 + ], + [ + 9.33714, + 52.276169701 + ], + [ + 9.3413543, + 52.278145901 + ], + [ + 9.3419025, + 52.278419201 + ], + [ + 9.3424552, + 52.278688001 + ], + [ + 9.3425593, + 52.278738601 + ], + [ + 9.3444572, + 52.279802301 + ], + [ + 9.3450359, + 52.280174301 + ], + [ + 9.3471566, + 52.281487601 + ], + [ + 9.3476998, + 52.281842701 + ], + [ + 9.3489756, + 52.282676601 + ], + [ + 9.3543006, + 52.286137201 + ], + [ + 9.356664, + 52.287660801 + ], + [ + 9.3571807, + 52.288024801 + ], + [ + 9.3575087, + 52.288255801 + ], + [ + 9.3578749, + 52.288513801 + ], + [ + 9.3590094, + 52.289422501 + ], + [ + 9.3593507, + 52.289724201 + ], + [ + 9.3607247, + 52.291089701 + ], + [ + 9.3617221, + 52.292203801 + ], + [ + 9.3619777, + 52.292489301 + ], + [ + 9.3621291, + 52.292671401 + ], + [ + 9.3683027, + 52.299627401 + ], + [ + 9.3685361, + 52.299890401 + ], + [ + 9.3686776, + 52.300049201 + ], + [ + 9.3709534, + 52.302603901 + ], + [ + 9.3757026, + 52.307911001 + ], + [ + 9.3792504, + 52.311875101 + ], + [ + 9.3857381, + 52.319123201 + ], + [ + 9.3867163, + 52.320156301 + ], + [ + 9.3877459, + 52.321162101 + ], + [ + 9.3890834, + 52.322315501 + ], + [ + 9.3904592, + 52.323352801 + ], + [ + 9.39054, + 52.323410001 + ], + [ + 9.3918303, + 52.324323601 + ], + [ + 9.392986, + 52.325074701 + ], + [ + 9.3932715, + 52.325235001 + ], + [ + 9.3943591, + 52.325855101 + ], + [ + 9.3957529, + 52.326617301 + ], + [ + 9.3982549, + 52.327896401 + ], + [ + 9.3992935, + 52.328416401 + ], + [ + 9.3996391, + 52.328589501 + ], + [ + 9.4006178, + 52.329133801 + ], + [ + 9.4014265, + 52.329601801 + ], + [ + 9.4017156, + 52.329769101 + ], + [ + 9.4034196, + 52.330837901 + ], + [ + 9.405566, + 52.332240701 + ], + [ + 9.406261, + 52.332689301 + ], + [ + 9.4078361, + 52.333705901 + ], + [ + 9.4084694, + 52.334106201 + ], + [ + 9.408719, + 52.334266401 + ], + [ + 9.4097165, + 52.334919601 + ], + [ + 9.4112342, + 52.335914701 + ], + [ + 9.4113419, + 52.335981801 + ], + [ + 9.4115871, + 52.336134601 + ], + [ + 9.4143506, + 52.337956301 + ], + [ + 9.4151871, + 52.338534301 + ], + [ + 9.4162845, + 52.339389301 + ], + [ + 9.4171179, + 52.340109301 + ], + [ + 9.4178381, + 52.340824301 + ], + [ + 9.4185973, + 52.341658301 + ], + [ + 9.4194608, + 52.342774601 + ], + [ + 9.4197664, + 52.343209101 + ], + [ + 9.4203853, + 52.344210301 + ], + [ + 9.4212243, + 52.345663201 + ], + [ + 9.4216521, + 52.346384901 + ], + [ + 9.4221094, + 52.347101501 + ], + [ + 9.4223109, + 52.347415601 + ], + [ + 9.4225303, + 52.347742501 + ], + [ + 9.4232901, + 52.348756401 + ], + [ + 9.4240631, + 52.349691001 + ], + [ + 9.4245399, + 52.350228501 + ], + [ + 9.4256186, + 52.351392601 + ], + [ + 9.4264584, + 52.352299001 + ], + [ + 9.427152, + 52.353037101 + ], + [ + 9.4292518, + 52.355313601 + ], + [ + 9.4311518, + 52.357352901 + ], + [ + 9.4326365, + 52.358808501 + ], + [ + 9.433058, + 52.359172901 + ], + [ + 9.4336633, + 52.359689801 + ], + [ + 9.4349545, + 52.360714001 + ], + [ + 9.4362567, + 52.361729501 + ], + [ + 9.4375193, + 52.362710001 + ], + [ + 9.4420707, + 52.366244001 + ], + [ + 9.444089, + 52.367807301 + ], + [ + 9.4451831, + 52.368609201 + ], + [ + 9.4463028, + 52.369392601 + ], + [ + 9.4467792, + 52.369699101 + ], + [ + 9.4475341, + 52.370198601 + ], + [ + 9.448313, + 52.370686101 + ], + [ + 9.4484838, + 52.370794701 + ], + [ + 9.451959, + 52.372828701 + ], + [ + 9.4562523, + 52.375309701 + ], + [ + 9.4573051, + 52.375912901 + ], + [ + 9.4601155, + 52.377532701 + ], + [ + 9.4626562, + 52.378994401 + ], + [ + 9.4652908, + 52.380510101 + ], + [ + 9.4662862, + 52.381127001 + ], + [ + 9.4671158, + 52.381643501 + ], + [ + 9.4678935, + 52.382169101 + ], + [ + 9.4684798, + 52.382565301 + ], + [ + 9.4702136, + 52.383799701 + ], + [ + 9.4726422, + 52.385585601 + ], + [ + 9.4754069, + 52.387608001 + ], + [ + 9.4766943, + 52.388518801 + ], + [ + 9.4774141, + 52.389044701 + ], + [ + 9.4796272, + 52.390661601 + ], + [ + 9.480838, + 52.391540501 + ], + [ + 9.4820665, + 52.392445701 + ], + [ + 9.4867788, + 52.395918001 + ], + [ + 9.4870231, + 52.396098001 + ], + [ + 9.4885891, + 52.397104401 + ], + [ + 9.4901492, + 52.398029201 + ], + [ + 9.4920011, + 52.399084401 + ], + [ + 9.4955887, + 52.401128501 + ], + [ + 9.5028949, + 52.405290101 + ], + [ + 9.5064918, + 52.407338801 + ], + [ + 9.5067012, + 52.407457501 + ], + [ + 9.507462, + 52.407889001 + ], + [ + 9.507628, + 52.407983101 + ], + [ + 9.5080922, + 52.408245501 + ], + [ + 9.509053, + 52.408792301 + ], + [ + 9.5097921, + 52.409206201 + ], + [ + 9.5099929, + 52.409324701 + ], + [ + 9.5102952, + 52.409503201 + ], + [ + 9.5105542, + 52.409656101 + ], + [ + 9.5109045, + 52.409848301 + ], + [ + 9.5136129, + 52.411397301 + ], + [ + 9.5143315, + 52.411779901 + ], + [ + 9.5164328, + 52.412974501 + ], + [ + 9.5170295, + 52.413313701 + ], + [ + 9.5190996, + 52.414409701 + ], + [ + 9.5205402, + 52.415131201 + ], + [ + 9.521865, + 52.415749501 + ], + [ + 9.5232697, + 52.416367401 + ], + [ + 9.5246815, + 52.416941501 + ], + [ + 9.5248052, + 52.416987501 + ], + [ + 9.5261477, + 52.417486301 + ], + [ + 9.5277161, + 52.418023901 + ], + [ + 9.5277992, + 52.418052401 + ], + [ + 9.5289633, + 52.418419601 + ], + [ + 9.5301608, + 52.418763801 + ], + [ + 9.5313721, + 52.419086201 + ], + [ + 9.5323243, + 52.419323401 + ], + [ + 9.5339038, + 52.419680501 + ], + [ + 9.5355217, + 52.420000801 + ], + [ + 9.5364037, + 52.420159301 + ], + [ + 9.5379274, + 52.420398901 + ], + [ + 9.5390258, + 52.420554901 + ], + [ + 9.5409272, + 52.420782601 + ], + [ + 9.542849, + 52.420966301 + ], + [ + 9.5450214, + 52.421097501 + ], + [ + 9.5453374, + 52.421116601 + ], + [ + 9.5495748, + 52.421282001 + ], + [ + 9.55309, + 52.421370601 + ], + [ + 9.556523, + 52.421460701 + ], + [ + 9.5605627, + 52.421663401 + ], + [ + 9.5634847, + 52.421906801 + ], + [ + 9.5677992, + 52.422282101 + ], + [ + 9.5693913, + 52.422408301 + ], + [ + 9.5733369, + 52.422765201 + ], + [ + 9.5739968, + 52.422818701 + ], + [ + 9.5746414, + 52.422870901 + ], + [ + 9.577345, + 52.423113401 + ], + [ + 9.5800758, + 52.423324401 + ], + [ + 9.5821557, + 52.423445601 + ], + [ + 9.5824275, + 52.423461401 + ], + [ + 9.5830713, + 52.423487601 + ], + [ + 9.5855452, + 52.423566001 + ], + [ + 9.5876045, + 52.423592301 + ], + [ + 9.5893304, + 52.423586301 + ], + [ + 9.5911731, + 52.423548501 + ], + [ + 9.5930156, + 52.423486701 + ], + [ + 9.5947793, + 52.423399701 + ], + [ + 9.59653, + 52.423279601 + ], + [ + 9.5973878, + 52.423225801 + ], + [ + 9.6033473, + 52.422670501 + ], + [ + 9.6108519, + 52.421968801 + ], + [ + 9.6154591, + 52.421526801 + ], + [ + 9.6200755, + 52.421093301 + ], + [ + 9.6216404, + 52.420966501 + ], + [ + 9.622623, + 52.420910101 + ], + [ + 9.6237171, + 52.420855201 + ], + [ + 9.6244868, + 52.420824001 + ], + [ + 9.6254023, + 52.420802701 + ], + [ + 9.626113415, + 52.42080105 + ] + ] + } + }, + { + "identifier": "2026-015630--vi-bs.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.22114814276202,9.033170943617579,52.42245201919893,9.640366814988157", + "point": "52.22114814276202,9.033170943617579", + "startLcPosition": "66", + "impact": { + "lower": "Nordhafen", + "upper": "Veltheim", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Veltheim - Nordhafen", + "coordinate": { + "lat": 52.22114814276202, + "long": 9.033170943617579 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 09:00 bis 15:00 Uhr.", + "", + "A2: Dortmund -> Hannover, zwischen 5.5 km hinter AS Veltheim und 0.7 km vor Nordhafen", + "", + "L\u00e4nge: 51.96 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 von Nordhafen nach Veltheim (AS) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.033170944, + 52.221148143 + ], + [ + 9.0335545, + 52.221110201 + ], + [ + 9.0340886, + 52.221040301 + ], + [ + 9.0355323, + 52.220793601 + ], + [ + 9.0377649, + 52.220373901 + ], + [ + 9.0379811, + 52.220333301 + ], + [ + 9.0386236, + 52.220204301 + ], + [ + 9.045541, + 52.218787901 + ], + [ + 9.0466301, + 52.218605201 + ], + [ + 9.0475818, + 52.218438801 + ], + [ + 9.0486814, + 52.218290001 + ], + [ + 9.0498635, + 52.218167901 + ], + [ + 9.0508364, + 52.218130101 + ], + [ + 9.0517023, + 52.218149501 + ], + [ + 9.0523702, + 52.218174101 + ], + [ + 9.0530508, + 52.218219501 + ], + [ + 9.0537735, + 52.218295801 + ], + [ + 9.0545335, + 52.218406201 + ], + [ + 9.0552132, + 52.218521301 + ], + [ + 9.0558956, + 52.218670501 + ], + [ + 9.057297, + 52.219026201 + ], + [ + 9.0576309, + 52.219139001 + ], + [ + 9.0578101, + 52.219197301 + ], + [ + 9.0585774, + 52.219438501 + ], + [ + 9.0592381, + 52.219661101 + ], + [ + 9.0611199, + 52.220282601 + ], + [ + 9.0631202, + 52.220882401 + ], + [ + 9.0638997, + 52.221060201 + ], + [ + 9.0647974, + 52.221228101 + ], + [ + 9.0654851, + 52.221329401 + ], + [ + 9.066168, + 52.221407401 + ], + [ + 9.0669022, + 52.221463101 + ], + [ + 9.0677406, + 52.221495501 + ], + [ + 9.068627, + 52.221494901 + ], + [ + 9.0693766, + 52.221464901 + ], + [ + 9.0706877, + 52.221369601 + ], + [ + 9.0743348, + 52.221089001 + ], + [ + 9.0793844, + 52.220726001 + ], + [ + 9.0799871, + 52.220682801 + ], + [ + 9.0819722, + 52.220531301 + ], + [ + 9.0825181, + 52.220489601 + ], + [ + 9.0852252, + 52.220286001 + ], + [ + 9.086605, + 52.220200701 + ], + [ + 9.0873497, + 52.220150101 + ], + [ + 9.0879955, + 52.220146101 + ], + [ + 9.0893121, + 52.220118201 + ], + [ + 9.0904982, + 52.220157801 + ], + [ + 9.0915629, + 52.220238501 + ], + [ + 9.0918368, + 52.220259301 + ], + [ + 9.0932838, + 52.220392701 + ], + [ + 9.0956755, + 52.220708501 + ], + [ + 9.0980315, + 52.221019501 + ], + [ + 9.1007069, + 52.221353501 + ], + [ + 9.1021007, + 52.221495201 + ], + [ + 9.1030687, + 52.221588401 + ], + [ + 9.1043581, + 52.221676501 + ], + [ + 9.1054583, + 52.221721001 + ], + [ + 9.106299, + 52.221701701 + ], + [ + 9.1070839, + 52.221663601 + ], + [ + 9.1077892, + 52.221606301 + ], + [ + 9.1084777, + 52.221527601 + ], + [ + 9.1090617, + 52.221451501 + ], + [ + 9.1098205, + 52.221318801 + ], + [ + 9.1106862, + 52.221147601 + ], + [ + 9.1111987, + 52.221037101 + ], + [ + 9.111542, + 52.220963101 + ], + [ + 9.1141068, + 52.220397101 + ], + [ + 9.1149527, + 52.220230301 + ], + [ + 9.1156076, + 52.220119901 + ], + [ + 9.116268, + 52.220026001 + ], + [ + 9.117057, + 52.219942101 + ], + [ + 9.1179343, + 52.219876501 + ], + [ + 9.1186871, + 52.219849501 + ], + [ + 9.1194399, + 52.219845601 + ], + [ + 9.120257, + 52.219862401 + ], + [ + 9.1209748, + 52.219907101 + ], + [ + 9.121811, + 52.219982101 + ], + [ + 9.1223082, + 52.220037901 + ], + [ + 9.1232188, + 52.220153501 + ], + [ + 9.1241278, + 52.220279801 + ], + [ + 9.1254164, + 52.220442501 + ], + [ + 9.1255762, + 52.220462701 + ], + [ + 9.126365, + 52.220547801 + ], + [ + 9.1271522, + 52.220607601 + ], + [ + 9.1278242, + 52.220638201 + ], + [ + 9.1284899, + 52.220644001 + ], + [ + 9.1292852, + 52.220629601 + ], + [ + 9.1300464, + 52.220595901 + ], + [ + 9.1313939, + 52.220486601 + ], + [ + 9.132271, + 52.220399801 + ], + [ + 9.134985, + 52.220125501 + ], + [ + 9.1380605, + 52.219815401 + ], + [ + 9.138604, + 52.219768101 + ], + [ + 9.1391699, + 52.219733601 + ], + [ + 9.1398056, + 52.219706801 + ], + [ + 9.140799, + 52.219678301 + ], + [ + 9.1451715, + 52.219573601 + ], + [ + 9.145688, + 52.219559401 + ], + [ + 9.1470194, + 52.219508401 + ], + [ + 9.1473592, + 52.219495401 + ], + [ + 9.1482197, + 52.219440301 + ], + [ + 9.1490833, + 52.219377301 + ], + [ + 9.1505226, + 52.219221001 + ], + [ + 9.1544133, + 52.218736501 + ], + [ + 9.1563969, + 52.218489401 + ], + [ + 9.1588141, + 52.218193301 + ], + [ + 9.1598178, + 52.218041801 + ], + [ + 9.160612, + 52.217886701 + ], + [ + 9.1612166, + 52.217751101 + ], + [ + 9.1617715, + 52.217604801 + ], + [ + 9.1623168, + 52.217449401 + ], + [ + 9.1634036, + 52.217138001 + ], + [ + 9.1649261, + 52.216696401 + ], + [ + 9.165772, + 52.216452801 + ], + [ + 9.1666505, + 52.216224701 + ], + [ + 9.1672111, + 52.216106901 + ], + [ + 9.1677925, + 52.216002501 + ], + [ + 9.1684382, + 52.215914601 + ], + [ + 9.1690944, + 52.215845301 + ], + [ + 9.169613, + 52.215809401 + ], + [ + 9.1701417, + 52.215783601 + ], + [ + 9.1716962, + 52.215757101 + ], + [ + 9.1738427, + 52.215727901 + ], + [ + 9.1750927, + 52.215711001 + ], + [ + 9.1758481, + 52.215698501 + ], + [ + 9.1768756, + 52.215652601 + ], + [ + 9.177384, + 52.215620901 + ], + [ + 9.1788143, + 52.215523501 + ], + [ + 9.1802377, + 52.215443101 + ], + [ + 9.1814114, + 52.215441401 + ], + [ + 9.182163, + 52.215467601 + ], + [ + 9.182927, + 52.215519601 + ], + [ + 9.1835068, + 52.215576901 + ], + [ + 9.1840895, + 52.215650501 + ], + [ + 9.1848687, + 52.215773101 + ], + [ + 9.1853173, + 52.215855501 + ], + [ + 9.185765, + 52.215945401 + ], + [ + 9.1867293, + 52.216169101 + ], + [ + 9.1882888, + 52.216589801 + ], + [ + 9.1894478, + 52.216888701 + ], + [ + 9.1955239, + 52.218492801 + ], + [ + 9.1990697, + 52.219475201 + ], + [ + 9.2006558, + 52.219890301 + ], + [ + 9.2048187, + 52.220981001 + ], + [ + 9.2060015, + 52.221285801 + ], + [ + 9.2064491, + 52.221393201 + ], + [ + 9.2069029, + 52.221494001 + ], + [ + 9.2076708, + 52.221640201 + ], + [ + 9.2082837, + 52.221739101 + ], + [ + 9.2088983, + 52.221818901 + ], + [ + 9.209425, + 52.221871401 + ], + [ + 9.2099617, + 52.221916401 + ], + [ + 9.210467, + 52.221947001 + ], + [ + 9.2109603, + 52.221964301 + ], + [ + 9.2118817, + 52.221975001 + ], + [ + 9.2130541, + 52.221945001 + ], + [ + 9.2151244, + 52.221857801 + ], + [ + 9.2166456, + 52.221820901 + ], + [ + 9.2168373, + 52.221823001 + ], + [ + 9.2173519, + 52.221828701 + ], + [ + 9.2180181, + 52.221856901 + ], + [ + 9.2188295, + 52.221919101 + ], + [ + 9.2194134, + 52.221977701 + ], + [ + 9.2198392, + 52.222032401 + ], + [ + 9.2204778, + 52.222127301 + ], + [ + 9.2211741, + 52.222247101 + ], + [ + 9.2218629, + 52.222397601 + ], + [ + 9.2224636, + 52.222545501 + ], + [ + 9.2234457, + 52.222818501 + ], + [ + 9.2242312, + 52.223083101 + ], + [ + 9.2250461, + 52.223407601 + ], + [ + 9.2256278, + 52.223673301 + ], + [ + 9.2262686, + 52.223997901 + ], + [ + 9.2269562, + 52.224372901 + ], + [ + 9.2288153, + 52.225526601 + ], + [ + 9.229488, + 52.225931501 + ], + [ + 9.231894, + 52.227438501 + ], + [ + 9.2330874, + 52.228172601 + ], + [ + 9.2343165, + 52.228937901 + ], + [ + 9.2347389, + 52.229191501 + ], + [ + 9.2355923, + 52.229685401 + ], + [ + 9.2362341, + 52.230023501 + ], + [ + 9.2366037, + 52.230210801 + ], + [ + 9.2371559, + 52.230462701 + ], + [ + 9.2373758, + 52.230555101 + ], + [ + 9.2378099, + 52.230729101 + ], + [ + 9.2381522, + 52.230865401 + ], + [ + 9.23898, + 52.231150601 + ], + [ + 9.2393839, + 52.231272401 + ], + [ + 9.2397994, + 52.231384801 + ], + [ + 9.240295, + 52.231510001 + ], + [ + 9.2405354, + 52.231564101 + ], + [ + 9.2407599, + 52.231614601 + ], + [ + 9.2414224, + 52.231755401 + ], + [ + 9.2421006, + 52.231867501 + ], + [ + 9.243013, + 52.232000201 + ], + [ + 9.2439299, + 52.232120901 + ], + [ + 9.2463279, + 52.232441901 + ], + [ + 9.249538, + 52.232870801 + ], + [ + 9.2520899, + 52.233196601 + ], + [ + 9.2542127, + 52.233487501 + ], + [ + 9.2548673, + 52.233574701 + ], + [ + 9.2571123, + 52.233873601 + ], + [ + 9.2585066, + 52.234055901 + ], + [ + 9.2600845, + 52.234266801 + ], + [ + 9.2625406, + 52.234592301 + ], + [ + 9.262767, + 52.234622301 + ], + [ + 9.2631391, + 52.234665901 + ], + [ + 9.2655467, + 52.234948301 + ], + [ + 9.2673797, + 52.235237801 + ], + [ + 9.2677785, + 52.235303301 + ], + [ + 9.2696815, + 52.235654401 + ], + [ + 9.2712569, + 52.236028501 + ], + [ + 9.2736076, + 52.236716501 + ], + [ + 9.2751815, + 52.237251101 + ], + [ + 9.2765, + 52.237767101 + ], + [ + 9.277564, + 52.238214801 + ], + [ + 9.2783289, + 52.238586301 + ], + [ + 9.2792875, + 52.239071101 + ], + [ + 9.2801048, + 52.239539201 + ], + [ + 9.2813577, + 52.240298001 + ], + [ + 9.2818852, + 52.240659901 + ], + [ + 9.2824961, + 52.241078901 + ], + [ + 9.2832961, + 52.241724901 + ], + [ + 9.2843577, + 52.242624801 + ], + [ + 9.2852312, + 52.243439101 + ], + [ + 9.2864067, + 52.244535001 + ], + [ + 9.2884733, + 52.246486701 + ], + [ + 9.2895557, + 52.247452401 + ], + [ + 9.2903808, + 52.248116201 + ], + [ + 9.2906438, + 52.248327701 + ], + [ + 9.2909594, + 52.248543401 + ], + [ + 9.2919734, + 52.249250201 + ], + [ + 9.2931158, + 52.249988801 + ], + [ + 9.2942856, + 52.250622701 + ], + [ + 9.2953983, + 52.251155001 + ], + [ + 9.3033591, + 52.254822101 + ], + [ + 9.304834, + 52.255539901 + ], + [ + 9.3058358, + 52.256027501 + ], + [ + 9.3069366, + 52.256623501 + ], + [ + 9.3078982, + 52.257198001 + ], + [ + 9.3086949, + 52.257737501 + ], + [ + 9.3095213, + 52.258372501 + ], + [ + 9.3105843, + 52.259210201 + ], + [ + 9.3113127, + 52.259865201 + ], + [ + 9.3115374, + 52.260081601 + ], + [ + 9.3119791, + 52.260506901 + ], + [ + 9.3125795, + 52.261164001 + ], + [ + 9.3129109, + 52.261521701 + ], + [ + 9.3146058, + 52.263406501 + ], + [ + 9.3148963, + 52.263702401 + ], + [ + 9.3161443, + 52.264980001 + ], + [ + 9.3163015, + 52.265134401 + ], + [ + 9.3165106, + 52.265351501 + ], + [ + 9.3178821, + 52.266459901 + ], + [ + 9.3186909, + 52.267062501 + ], + [ + 9.3194894, + 52.267588001 + ], + [ + 9.3196228, + 52.267675801 + ], + [ + 9.3206187, + 52.268301101 + ], + [ + 9.3215482, + 52.268816401 + ], + [ + 9.322854, + 52.269459001 + ], + [ + 9.3319565, + 52.273730401 + ], + [ + 9.3323969, + 52.273937801 + ], + [ + 9.3343395, + 52.274861001 + ], + [ + 9.3354708, + 52.275394701 + ], + [ + 9.33714, + 52.276169701 + ], + [ + 9.3413543, + 52.278145901 + ], + [ + 9.3419025, + 52.278419201 + ], + [ + 9.3424552, + 52.278688001 + ], + [ + 9.3425593, + 52.278738601 + ], + [ + 9.3444572, + 52.279802301 + ], + [ + 9.3450359, + 52.280174301 + ], + [ + 9.3471566, + 52.281487601 + ], + [ + 9.3476998, + 52.281842701 + ], + [ + 9.3489756, + 52.282676601 + ], + [ + 9.3543006, + 52.286137201 + ], + [ + 9.356664, + 52.287660801 + ], + [ + 9.3571807, + 52.288024801 + ], + [ + 9.3575087, + 52.288255801 + ], + [ + 9.3578749, + 52.288513801 + ], + [ + 9.3590094, + 52.289422501 + ], + [ + 9.3593507, + 52.289724201 + ], + [ + 9.3607247, + 52.291089701 + ], + [ + 9.3617221, + 52.292203801 + ], + [ + 9.3619777, + 52.292489301 + ], + [ + 9.3621291, + 52.292671401 + ], + [ + 9.3683027, + 52.299627401 + ], + [ + 9.3685361, + 52.299890401 + ], + [ + 9.3686776, + 52.300049201 + ], + [ + 9.3709534, + 52.302603901 + ], + [ + 9.3757026, + 52.307911001 + ], + [ + 9.3792504, + 52.311875101 + ], + [ + 9.3857381, + 52.319123201 + ], + [ + 9.3867163, + 52.320156301 + ], + [ + 9.3877459, + 52.321162101 + ], + [ + 9.3890834, + 52.322315501 + ], + [ + 9.3904592, + 52.323352801 + ], + [ + 9.39054, + 52.323410001 + ], + [ + 9.3918303, + 52.324323601 + ], + [ + 9.392986, + 52.325074701 + ], + [ + 9.3932715, + 52.325235001 + ], + [ + 9.3943591, + 52.325855101 + ], + [ + 9.3957529, + 52.326617301 + ], + [ + 9.3982549, + 52.327896401 + ], + [ + 9.3992935, + 52.328416401 + ], + [ + 9.3996391, + 52.328589501 + ], + [ + 9.4006178, + 52.329133801 + ], + [ + 9.4014265, + 52.329601801 + ], + [ + 9.4017156, + 52.329769101 + ], + [ + 9.4034196, + 52.330837901 + ], + [ + 9.405566, + 52.332240701 + ], + [ + 9.406261, + 52.332689301 + ], + [ + 9.4078361, + 52.333705901 + ], + [ + 9.4084694, + 52.334106201 + ], + [ + 9.408719, + 52.334266401 + ], + [ + 9.4097165, + 52.334919601 + ], + [ + 9.4112342, + 52.335914701 + ], + [ + 9.4113419, + 52.335981801 + ], + [ + 9.4115871, + 52.336134601 + ], + [ + 9.4143506, + 52.337956301 + ], + [ + 9.4151871, + 52.338534301 + ], + [ + 9.4162845, + 52.339389301 + ], + [ + 9.4171179, + 52.340109301 + ], + [ + 9.4178381, + 52.340824301 + ], + [ + 9.4185973, + 52.341658301 + ], + [ + 9.4194608, + 52.342774601 + ], + [ + 9.4197664, + 52.343209101 + ], + [ + 9.4203853, + 52.344210301 + ], + [ + 9.4212243, + 52.345663201 + ], + [ + 9.4216521, + 52.346384901 + ], + [ + 9.4221094, + 52.347101501 + ], + [ + 9.4223109, + 52.347415601 + ], + [ + 9.4225303, + 52.347742501 + ], + [ + 9.4232901, + 52.348756401 + ], + [ + 9.4240631, + 52.349691001 + ], + [ + 9.4245399, + 52.350228501 + ], + [ + 9.4256186, + 52.351392601 + ], + [ + 9.4264584, + 52.352299001 + ], + [ + 9.427152, + 52.353037101 + ], + [ + 9.4292518, + 52.355313601 + ], + [ + 9.4311518, + 52.357352901 + ], + [ + 9.4326365, + 52.358808501 + ], + [ + 9.433058, + 52.359172901 + ], + [ + 9.4336633, + 52.359689801 + ], + [ + 9.4349545, + 52.360714001 + ], + [ + 9.4362567, + 52.361729501 + ], + [ + 9.4375193, + 52.362710001 + ], + [ + 9.4420707, + 52.366244001 + ], + [ + 9.444089, + 52.367807301 + ], + [ + 9.4451831, + 52.368609201 + ], + [ + 9.4463028, + 52.369392601 + ], + [ + 9.4467792, + 52.369699101 + ], + [ + 9.4475341, + 52.370198601 + ], + [ + 9.448313, + 52.370686101 + ], + [ + 9.4484838, + 52.370794701 + ], + [ + 9.451959, + 52.372828701 + ], + [ + 9.4562523, + 52.375309701 + ], + [ + 9.4573051, + 52.375912901 + ], + [ + 9.4601155, + 52.377532701 + ], + [ + 9.4626562, + 52.378994401 + ], + [ + 9.4652908, + 52.380510101 + ], + [ + 9.4662862, + 52.381127001 + ], + [ + 9.4671158, + 52.381643501 + ], + [ + 9.4678935, + 52.382169101 + ], + [ + 9.4684798, + 52.382565301 + ], + [ + 9.4702136, + 52.383799701 + ], + [ + 9.4726422, + 52.385585601 + ], + [ + 9.4754069, + 52.387608001 + ], + [ + 9.4766943, + 52.388518801 + ], + [ + 9.4774141, + 52.389044701 + ], + [ + 9.4796272, + 52.390661601 + ], + [ + 9.480838, + 52.391540501 + ], + [ + 9.4820665, + 52.392445701 + ], + [ + 9.4867788, + 52.395918001 + ], + [ + 9.4870231, + 52.396098001 + ], + [ + 9.4885891, + 52.397104401 + ], + [ + 9.4901492, + 52.398029201 + ], + [ + 9.4920011, + 52.399084401 + ], + [ + 9.4955887, + 52.401128501 + ], + [ + 9.5028949, + 52.405290101 + ], + [ + 9.5064918, + 52.407338801 + ], + [ + 9.5067012, + 52.407457501 + ], + [ + 9.507462, + 52.407889001 + ], + [ + 9.507628, + 52.407983101 + ], + [ + 9.5080922, + 52.408245501 + ], + [ + 9.509053, + 52.408792301 + ], + [ + 9.5097921, + 52.409206201 + ], + [ + 9.5099929, + 52.409324701 + ], + [ + 9.5102952, + 52.409503201 + ], + [ + 9.5105542, + 52.409656101 + ], + [ + 9.5109045, + 52.409848301 + ], + [ + 9.5136129, + 52.411397301 + ], + [ + 9.5143315, + 52.411779901 + ], + [ + 9.5164328, + 52.412974501 + ], + [ + 9.5170295, + 52.413313701 + ], + [ + 9.5190996, + 52.414409701 + ], + [ + 9.5205402, + 52.415131201 + ], + [ + 9.521865, + 52.415749501 + ], + [ + 9.5232697, + 52.416367401 + ], + [ + 9.5246815, + 52.416941501 + ], + [ + 9.5248052, + 52.416987501 + ], + [ + 9.5261477, + 52.417486301 + ], + [ + 9.5277161, + 52.418023901 + ], + [ + 9.5277992, + 52.418052401 + ], + [ + 9.5289633, + 52.418419601 + ], + [ + 9.5301608, + 52.418763801 + ], + [ + 9.5313721, + 52.419086201 + ], + [ + 9.5323243, + 52.419323401 + ], + [ + 9.5339038, + 52.419680501 + ], + [ + 9.5355217, + 52.420000801 + ], + [ + 9.5364037, + 52.420159301 + ], + [ + 9.5379274, + 52.420398901 + ], + [ + 9.5390258, + 52.420554901 + ], + [ + 9.5409272, + 52.420782601 + ], + [ + 9.542849, + 52.420966301 + ], + [ + 9.5450214, + 52.421097501 + ], + [ + 9.5453374, + 52.421116601 + ], + [ + 9.5495748, + 52.421282001 + ], + [ + 9.55309, + 52.421370601 + ], + [ + 9.556523, + 52.421460701 + ], + [ + 9.5605627, + 52.421663401 + ], + [ + 9.5634847, + 52.421906801 + ], + [ + 9.5677992, + 52.422282101 + ], + [ + 9.5693913, + 52.422408301 + ], + [ + 9.5733369, + 52.422765201 + ], + [ + 9.5739968, + 52.422818701 + ], + [ + 9.5746414, + 52.422870901 + ], + [ + 9.577345, + 52.423113401 + ], + [ + 9.5800758, + 52.423324401 + ], + [ + 9.5821557, + 52.423445601 + ], + [ + 9.5824275, + 52.423461401 + ], + [ + 9.5830713, + 52.423487601 + ], + [ + 9.5855452, + 52.423566001 + ], + [ + 9.5876045, + 52.423592301 + ], + [ + 9.5893304, + 52.423586301 + ], + [ + 9.5911731, + 52.423548501 + ], + [ + 9.5930156, + 52.423486701 + ], + [ + 9.5947793, + 52.423399701 + ], + [ + 9.59653, + 52.423279601 + ], + [ + 9.5973878, + 52.423225801 + ], + [ + 9.6033473, + 52.422670501 + ], + [ + 9.6108519, + 52.421968801 + ], + [ + 9.6154591, + 52.421526801 + ], + [ + 9.6200755, + 52.421093301 + ], + [ + 9.6216404, + 52.420966501 + ], + [ + 9.622623, + 52.420910101 + ], + [ + 9.6237171, + 52.420855201 + ], + [ + 9.6244868, + 52.420824001 + ], + [ + 9.6254023, + 52.420802701 + ], + [ + 9.6263067, + 52.420800601 + ], + [ + 9.6277134, + 52.420819501 + ], + [ + 9.6288031, + 52.420861101 + ], + [ + 9.6293962, + 52.420889701 + ], + [ + 9.630619, + 52.420967401 + ], + [ + 9.6317353, + 52.421064701 + ], + [ + 9.6325877, + 52.421155501 + ], + [ + 9.6334392, + 52.421260201 + ], + [ + 9.6341233, + 52.421350101 + ], + [ + 9.6349011, + 52.421461401 + ], + [ + 9.6360097, + 52.421640601 + ], + [ + 9.6372011, + 52.421849901 + ], + [ + 9.6383357, + 52.422060601 + ], + [ + 9.640366815, + 52.422452019 + ] + ] + } + }, + { + "identifier": "2026-017436--vi-bs.2026-04-10_09-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.22046106940975,9.12556329316107,52.2323181324907,9.245403252402191", + "point": "52.22046106940975,9.12556329316107", + "startLcPosition": "69", + "impact": { + "lower": "Schafstrift Nord", + "upper": "Bad Eilsen-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Bad Eilsen-Ost - Schafstrift Nord", + "coordinate": { + "lat": 52.22046106940975, + "long": 9.12556329316107 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 13:00 Uhr", + "", + "A2: Dortmund -> Hannover, zwischen AS Bad Eilsen-Ost und 5.5 km vor Schafstrift Nord", + "", + "L\u00e4nge: 8.79 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 von Bad Eilsen-Ost (AS) nach Schafstrift Nord Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.125563293, + 52.220461069 + ], + [ + 9.1255762, + 52.220462701 + ], + [ + 9.126365, + 52.220547801 + ], + [ + 9.1271522, + 52.220607601 + ], + [ + 9.1278242, + 52.220638201 + ], + [ + 9.1284899, + 52.220644001 + ], + [ + 9.1292852, + 52.220629601 + ], + [ + 9.1300464, + 52.220595901 + ], + [ + 9.1313939, + 52.220486601 + ], + [ + 9.132271, + 52.220399801 + ], + [ + 9.134985, + 52.220125501 + ], + [ + 9.1380605, + 52.219815401 + ], + [ + 9.138604, + 52.219768101 + ], + [ + 9.1391699, + 52.219733601 + ], + [ + 9.1398056, + 52.219706801 + ], + [ + 9.140799, + 52.219678301 + ], + [ + 9.1451715, + 52.219573601 + ], + [ + 9.145688, + 52.219559401 + ], + [ + 9.1470194, + 52.219508401 + ], + [ + 9.1473592, + 52.219495401 + ], + [ + 9.1482197, + 52.219440301 + ], + [ + 9.1490833, + 52.219377301 + ], + [ + 9.1505226, + 52.219221001 + ], + [ + 9.1544133, + 52.218736501 + ], + [ + 9.1563969, + 52.218489401 + ], + [ + 9.1588141, + 52.218193301 + ], + [ + 9.1598178, + 52.218041801 + ], + [ + 9.160612, + 52.217886701 + ], + [ + 9.1612166, + 52.217751101 + ], + [ + 9.1617715, + 52.217604801 + ], + [ + 9.1623168, + 52.217449401 + ], + [ + 9.1634036, + 52.217138001 + ], + [ + 9.1649261, + 52.216696401 + ], + [ + 9.165772, + 52.216452801 + ], + [ + 9.1666505, + 52.216224701 + ], + [ + 9.1672111, + 52.216106901 + ], + [ + 9.1677925, + 52.216002501 + ], + [ + 9.1684382, + 52.215914601 + ], + [ + 9.1690944, + 52.215845301 + ], + [ + 9.169613, + 52.215809401 + ], + [ + 9.1701417, + 52.215783601 + ], + [ + 9.1716962, + 52.215757101 + ], + [ + 9.1738427, + 52.215727901 + ], + [ + 9.1750927, + 52.215711001 + ], + [ + 9.1758481, + 52.215698501 + ], + [ + 9.1768756, + 52.215652601 + ], + [ + 9.177384, + 52.215620901 + ], + [ + 9.1788143, + 52.215523501 + ], + [ + 9.1802377, + 52.215443101 + ], + [ + 9.1814114, + 52.215441401 + ], + [ + 9.182163, + 52.215467601 + ], + [ + 9.182927, + 52.215519601 + ], + [ + 9.1835068, + 52.215576901 + ], + [ + 9.1840895, + 52.215650501 + ], + [ + 9.1848687, + 52.215773101 + ], + [ + 9.1853173, + 52.215855501 + ], + [ + 9.185765, + 52.215945401 + ], + [ + 9.1867293, + 52.216169101 + ], + [ + 9.1882888, + 52.216589801 + ], + [ + 9.1894478, + 52.216888701 + ], + [ + 9.1955239, + 52.218492801 + ], + [ + 9.1990697, + 52.219475201 + ], + [ + 9.2006558, + 52.219890301 + ], + [ + 9.2048187, + 52.220981001 + ], + [ + 9.2060015, + 52.221285801 + ], + [ + 9.2064491, + 52.221393201 + ], + [ + 9.2069029, + 52.221494001 + ], + [ + 9.2076708, + 52.221640201 + ], + [ + 9.2082837, + 52.221739101 + ], + [ + 9.2088983, + 52.221818901 + ], + [ + 9.209425, + 52.221871401 + ], + [ + 9.2099617, + 52.221916401 + ], + [ + 9.210467, + 52.221947001 + ], + [ + 9.2109603, + 52.221964301 + ], + [ + 9.2118817, + 52.221975001 + ], + [ + 9.2130541, + 52.221945001 + ], + [ + 9.2151244, + 52.221857801 + ], + [ + 9.2166456, + 52.221820901 + ], + [ + 9.2168373, + 52.221823001 + ], + [ + 9.2173519, + 52.221828701 + ], + [ + 9.2180181, + 52.221856901 + ], + [ + 9.2188295, + 52.221919101 + ], + [ + 9.2194134, + 52.221977701 + ], + [ + 9.2198392, + 52.222032401 + ], + [ + 9.2204778, + 52.222127301 + ], + [ + 9.2211741, + 52.222247101 + ], + [ + 9.2218629, + 52.222397601 + ], + [ + 9.2224636, + 52.222545501 + ], + [ + 9.2234457, + 52.222818501 + ], + [ + 9.2242312, + 52.223083101 + ], + [ + 9.2250461, + 52.223407601 + ], + [ + 9.2256278, + 52.223673301 + ], + [ + 9.2262686, + 52.223997901 + ], + [ + 9.2269562, + 52.224372901 + ], + [ + 9.2288153, + 52.225526601 + ], + [ + 9.229488, + 52.225931501 + ], + [ + 9.231894, + 52.227438501 + ], + [ + 9.2330874, + 52.228172601 + ], + [ + 9.2343165, + 52.228937901 + ], + [ + 9.2347389, + 52.229191501 + ], + [ + 9.2355923, + 52.229685401 + ], + [ + 9.2362341, + 52.230023501 + ], + [ + 9.2366037, + 52.230210801 + ], + [ + 9.2371559, + 52.230462701 + ], + [ + 9.2373758, + 52.230555101 + ], + [ + 9.2378099, + 52.230729101 + ], + [ + 9.2381522, + 52.230865401 + ], + [ + 9.23898, + 52.231150601 + ], + [ + 9.2393839, + 52.231272401 + ], + [ + 9.2397994, + 52.231384801 + ], + [ + 9.240295, + 52.231510001 + ], + [ + 9.2405354, + 52.231564101 + ], + [ + 9.2407599, + 52.231614601 + ], + [ + 9.2414224, + 52.231755401 + ], + [ + 9.2421006, + 52.231867501 + ], + [ + 9.243013, + 52.232000201 + ], + [ + 9.2439299, + 52.232120901 + ], + [ + 9.245403252, + 52.232318132 + ] + ] + } + }, + { + "identifier": "2026-017433--vi-bs.2026-04-10_09-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.2324511495246,9.24534138654654,52.2206217581865,9.125588790945816", + "point": "52.2324511495246,9.24534138654654", + "startLcPosition": "74", + "impact": { + "lower": "Bad Eilsen-Ost", + "upper": "Schafstrift Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Schafstrift Nord - Bad Eilsen-Ost", + "coordinate": { + "lat": 52.2324511495246, + "long": 9.24534138654654 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 13:00 Uhr", + "", + "A2: Hannover -> Dortmund, zwischen 5.5 km hinter Schafstrift Nord und AS Bad Eilsen-Ost", + "", + "L\u00e4nge: 8.79 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 von Schafstrift Nord nach Bad Eilsen-Ost (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.245341387, + 52.23245115 + ], + [ + 9.2453069, + 52.232446601 + ], + [ + 9.2438094, + 52.232250101 + ], + [ + 9.2427955, + 52.232104801 + ], + [ + 9.2421811, + 52.232018601 + ], + [ + 9.2414165, + 52.231893101 + ], + [ + 9.2406726, + 52.231750001 + ], + [ + 9.2404709, + 52.231700601 + ], + [ + 9.2398188, + 52.231541101 + ], + [ + 9.23931, + 52.231402601 + ], + [ + 9.2388271, + 52.231258401 + ], + [ + 9.2383533, + 52.231099601 + ], + [ + 9.2376724, + 52.230843301 + ], + [ + 9.2372443, + 52.230670101 + ], + [ + 9.2370281, + 52.230580101 + ], + [ + 9.2364758, + 52.230324801 + ], + [ + 9.2360758, + 52.230123701 + ], + [ + 9.2354442, + 52.229779601 + ], + [ + 9.2345855, + 52.229290301 + ], + [ + 9.2343132, + 52.229123901 + ], + [ + 9.2337523, + 52.228781001 + ], + [ + 9.2329406, + 52.228278301 + ], + [ + 9.2292855, + 52.226016901 + ], + [ + 9.2282246, + 52.225351601 + ], + [ + 9.2268218, + 52.224492701 + ], + [ + 9.2262055, + 52.224144601 + ], + [ + 9.2255537, + 52.223812801 + ], + [ + 9.2248831, + 52.223509201 + ], + [ + 9.2240888, + 52.223200901 + ], + [ + 9.2233295, + 52.222936701 + ], + [ + 9.2223565, + 52.222658901 + ], + [ + 9.2217735, + 52.222514201 + ], + [ + 9.2210623, + 52.222368601 + ], + [ + 9.2204039, + 52.222247801 + ], + [ + 9.2197907, + 52.222159901 + ], + [ + 9.2193524, + 52.222107901 + ], + [ + 9.2187771, + 52.222045501 + ], + [ + 9.2180009, + 52.221991501 + ], + [ + 9.2173468, + 52.221977801 + ], + [ + 9.2168373, + 52.221970001 + ], + [ + 9.2162809, + 52.221970301 + ], + [ + 9.214941, + 52.222003701 + ], + [ + 9.2136155, + 52.222062601 + ], + [ + 9.2127496, + 52.222095701 + ], + [ + 9.2118823, + 52.222110101 + ], + [ + 9.211387, + 52.222112901 + ], + [ + 9.2108882, + 52.222102501 + ], + [ + 9.2104027, + 52.222082501 + ], + [ + 9.2099086, + 52.222053601 + ], + [ + 9.2093553, + 52.222010201 + ], + [ + 9.2088004, + 52.221949301 + ], + [ + 9.2081972, + 52.221868901 + ], + [ + 9.2075909, + 52.221773701 + ], + [ + 9.207188, + 52.221701301 + ], + [ + 9.2067946, + 52.221619001 + ], + [ + 9.2063445, + 52.221521401 + ], + [ + 9.2058931, + 52.221413201 + ], + [ + 9.2048726, + 52.221145901 + ], + [ + 9.200465, + 52.219991701 + ], + [ + 9.1989646, + 52.219596201 + ], + [ + 9.1963237, + 52.218861101 + ], + [ + 9.1936648, + 52.218150201 + ], + [ + 9.1893761, + 52.217021301 + ], + [ + 9.1865821, + 52.216287601 + ], + [ + 9.1856943, + 52.216074101 + ], + [ + 9.1848215, + 52.215908101 + ], + [ + 9.1844362, + 52.215841501 + ], + [ + 9.1840458, + 52.215787501 + ], + [ + 9.1834706, + 52.215711701 + ], + [ + 9.1828962, + 52.215658101 + ], + [ + 9.182151, + 52.215608101 + ], + [ + 9.1814058, + 52.215580401 + ], + [ + 9.1808313, + 52.215576901 + ], + [ + 9.1802601, + 52.215590101 + ], + [ + 9.1797008, + 52.215609001 + ], + [ + 9.1774455, + 52.215751301 + ], + [ + 9.1768581, + 52.215787001 + ], + [ + 9.1758156, + 52.215836601 + ], + [ + 9.1751061, + 52.215847001 + ], + [ + 9.1747542, + 52.215852201 + ], + [ + 9.1740749, + 52.215865101 + ], + [ + 9.1720213, + 52.215889401 + ], + [ + 9.1701082, + 52.215924701 + ], + [ + 9.1695057, + 52.215960601 + ], + [ + 9.168897, + 52.216007301 + ], + [ + 9.1683483, + 52.216069101 + ], + [ + 9.1678181, + 52.216150801 + ], + [ + 9.1672875, + 52.216242501 + ], + [ + 9.1667765, + 52.216349001 + ], + [ + 9.1662776, + 52.216471701 + ], + [ + 9.1657855, + 52.216604001 + ], + [ + 9.1621696, + 52.217648301 + ], + [ + 9.1615127, + 52.217834001 + ], + [ + 9.1613124, + 52.217882601 + ], + [ + 9.1608195, + 52.217995401 + ], + [ + 9.1603379, + 52.218093701 + ], + [ + 9.1598538, + 52.218178601 + ], + [ + 9.1593227, + 52.218267801 + ], + [ + 9.1587759, + 52.218338301 + ], + [ + 9.1544729, + 52.218876401 + ], + [ + 9.1539247, + 52.218944901 + ], + [ + 9.1506015, + 52.219354801 + ], + [ + 9.149833, + 52.219441101 + ], + [ + 9.1490539, + 52.219517501 + ], + [ + 9.148213, + 52.219589001 + ], + [ + 9.1473533, + 52.219640001 + ], + [ + 9.1470301, + 52.219650301 + ], + [ + 9.1456541, + 52.219694201 + ], + [ + 9.1451089, + 52.219710501 + ], + [ + 9.1407449, + 52.219825301 + ], + [ + 9.139815, + 52.219849301 + ], + [ + 9.139697, + 52.219852401 + ], + [ + 9.1388829, + 52.219888101 + ], + [ + 9.1380741, + 52.219955401 + ], + [ + 9.1349713, + 52.220274601 + ], + [ + 9.1324034, + 52.220538801 + ], + [ + 9.1312051, + 52.220658701 + ], + [ + 9.1299924, + 52.220747101 + ], + [ + 9.1292275, + 52.220780201 + ], + [ + 9.1284906, + 52.220793201 + ], + [ + 9.1278081, + 52.220783601 + ], + [ + 9.1271235, + 52.220755501 + ], + [ + 9.1263315, + 52.220698201 + ], + [ + 9.125588791, + 52.220621758 + ] + ] + } + }, + { + "identifier": "2026-017745--vi-bs.2026-04-10_07-30-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.26409944269457,9.314951255441327,52.26018893521211,9.311322131225735", + "point": "52.26409944269457,9.314951255441327", + "startLcPosition": "75", + "impact": { + "lower": "Schafstrift Nord", + "upper": "Lauenau", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Lauenau - Schafstrift Nord", + "coordinate": { + "lat": 52.26409944269457, + "long": 9.314951255441327 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 12:00 Uhr", + "", + "A2: Hannover -> Dortmund, zwischen 3.1 km hinter AS Lauenau und 0.2 km vor Schafstrift Nord", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A2 von Lauenau (AS) nach Schafstrift Nord Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.314951255, + 52.264099443 + ], + [ + 9.3149297, + 52.264077401 + ], + [ + 9.3140741, + 52.263136001 + ], + [ + 9.3132278, + 52.262196101 + ], + [ + 9.3123709, + 52.261262801 + ], + [ + 9.3118961, + 52.260755601 + ], + [ + 9.3113986, + 52.260258801 + ], + [ + 9.311322131, + 52.260188935 + ] + ] + } + }, + { + "identifier": "2025-062980--vi-fbm.2026-03-19_19-00-00-000.devi-zus.2026-04-03_19-00-00-000.de12", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.39300469338235,9.482825047812604,52.42288184387367,9.574763385942411", + "point": "52.39300469338235,9.482825047812604", + "startLcPosition": "79", + "impact": { + "lower": "Hannover-Herrenhausen", + "upper": "Wunstorf-Kolenfeld", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Wunstorf-Kolenfeld - Hannover-Herrenhausen", + "coordinate": { + "lat": 52.39300469338235, + "long": 9.482825047812604 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 19:00 bis 24:00 Uhr", + "24.04.26 von 19:00 bis 24:00 Uhr", + "", + "A2: Dortmund -> Hannover, zwischen 0.7 km hinter AS Wunstorf-Kolenfeld und 3.8 km vor AS Hannover-Herrenhausen", + "", + "L\u00e4nge: 7.42 km | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A2 von Wunstorf-Kolenfeld (AS) nach Wunstorf-Luthe (AS) Erneuerung an der Decke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.482825048, + 52.393004693 + ], + [ + 9.4867788, + 52.395918001 + ], + [ + 9.4870231, + 52.396098001 + ], + [ + 9.4885891, + 52.397104401 + ], + [ + 9.4901492, + 52.398029201 + ], + [ + 9.4920011, + 52.399084401 + ], + [ + 9.4955887, + 52.401128501 + ], + [ + 9.5028949, + 52.405290101 + ], + [ + 9.5064918, + 52.407338801 + ], + [ + 9.5067012, + 52.407457501 + ], + [ + 9.507462, + 52.407889001 + ], + [ + 9.507628, + 52.407983101 + ], + [ + 9.5080922, + 52.408245501 + ], + [ + 9.509053, + 52.408792301 + ], + [ + 9.5097921, + 52.409206201 + ], + [ + 9.5099929, + 52.409324701 + ], + [ + 9.5102952, + 52.409503201 + ], + [ + 9.5105542, + 52.409656101 + ], + [ + 9.5109045, + 52.409848301 + ], + [ + 9.5136129, + 52.411397301 + ], + [ + 9.5143315, + 52.411779901 + ], + [ + 9.5164328, + 52.412974501 + ], + [ + 9.5170295, + 52.413313701 + ], + [ + 9.5190996, + 52.414409701 + ], + [ + 9.5205402, + 52.415131201 + ], + [ + 9.521865, + 52.415749501 + ], + [ + 9.5232697, + 52.416367401 + ], + [ + 9.5246815, + 52.416941501 + ], + [ + 9.5248052, + 52.416987501 + ], + [ + 9.5261477, + 52.417486301 + ], + [ + 9.5277161, + 52.418023901 + ], + [ + 9.5277992, + 52.418052401 + ], + [ + 9.5289633, + 52.418419601 + ], + [ + 9.5301608, + 52.418763801 + ], + [ + 9.5313721, + 52.419086201 + ], + [ + 9.5323243, + 52.419323401 + ], + [ + 9.5339038, + 52.419680501 + ], + [ + 9.5355217, + 52.420000801 + ], + [ + 9.5364037, + 52.420159301 + ], + [ + 9.5379274, + 52.420398901 + ], + [ + 9.5390258, + 52.420554901 + ], + [ + 9.5409272, + 52.420782601 + ], + [ + 9.542849, + 52.420966301 + ], + [ + 9.5450214, + 52.421097501 + ], + [ + 9.5453374, + 52.421116601 + ], + [ + 9.5495748, + 52.421282001 + ], + [ + 9.55309, + 52.421370601 + ], + [ + 9.556523, + 52.421460701 + ], + [ + 9.5605627, + 52.421663401 + ], + [ + 9.5634847, + 52.421906801 + ], + [ + 9.5677992, + 52.422282101 + ], + [ + 9.5693913, + 52.422408301 + ], + [ + 9.5733369, + 52.422765201 + ], + [ + 9.5739968, + 52.422818701 + ], + [ + 9.5746414, + 52.422870901 + ], + [ + 9.574763386, + 52.422881844 + ] + ] + } + }, + { + "identifier": "2025-062980--vi-bs.2026-04-10_18-00-00-000.devi-zus.2026-04-03_19-00-00-000.de4", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.41054920263544,9.512129977514867,52.42074820258811,9.540639940355977", + "point": "52.41054920263544,9.512129977514867", + "startLcPosition": "79", + "impact": { + "lower": "Garbsen Nord", + "upper": "Wunstorf-Kolenfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hannover", + "title": "A2 | Wunstorf-Kolenfeld - Garbsen Nord", + "startTimestamp": "2026-04-10T18:00:00+02:00", + "coordinate": { + "lat": 52.41054920263544, + "long": 9.512129977514867 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 18:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.04.26)", + "", + "A2: Dortmund -> Hannover, zwischen 3.5 km hinter AS Wunstorf-Kolenfeld und 1.4 km vor Garbsen Nord", + "", + "L\u00e4nge: 2.29 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A2 von Wunstorf-Kolenfeld (AS) nach Wunstorf-Luthe (AS) Erneuerung an der Decke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.512129978, + 52.410549203 + ], + [ + 9.5136129, + 52.411397301 + ], + [ + 9.5143315, + 52.411779901 + ], + [ + 9.5164328, + 52.412974501 + ], + [ + 9.5170295, + 52.413313701 + ], + [ + 9.5190996, + 52.414409701 + ], + [ + 9.5205402, + 52.415131201 + ], + [ + 9.521865, + 52.415749501 + ], + [ + 9.5232697, + 52.416367401 + ], + [ + 9.5246815, + 52.416941501 + ], + [ + 9.5248052, + 52.416987501 + ], + [ + 9.5261477, + 52.417486301 + ], + [ + 9.5277161, + 52.418023901 + ], + [ + 9.5277992, + 52.418052401 + ], + [ + 9.5289633, + 52.418419601 + ], + [ + 9.5301608, + 52.418763801 + ], + [ + 9.5313721, + 52.419086201 + ], + [ + 9.5323243, + 52.419323401 + ], + [ + 9.5339038, + 52.419680501 + ], + [ + 9.5355217, + 52.420000801 + ], + [ + 9.5364037, + 52.420159301 + ], + [ + 9.5379274, + 52.420398901 + ], + [ + 9.5390258, + 52.420554901 + ], + [ + 9.54063994, + 52.420748203 + ] + ] + } + }, + { + "identifier": "2026-013288--vi-bs.2026-03-26_09-00-00-000.devi-zus.2026-03-26_09-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.42095456558833,9.626115356683767,52.2204840212466,9.038067779202478", + "point": "52.42095456558833,9.626115356683767", + "startLcPosition": "84", + "impact": { + "lower": "Veltheim", + "upper": "Hannover-Herrenhausen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Hannover-Herrenhausen - Veltheim", + "coordinate": { + "lat": 52.42095456558833, + "long": 9.626115356683767 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 26.03.26 und dem 14.04.26 von 09:00 bis 17:00 Uhr.", + "", + "A2: Hannover -> Dortmund, zwischen 0.3 km hinter AS Hannover-Herrenhausen und 5.9 km vor AS Veltheim", + "", + "L\u00e4nge: 50.63 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A2 von Veltheim (AS) nach Hannover-Herrenhausen (AS) Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.626115357, + 52.420954566 + ], + [ + 9.6253294, + 52.420960401 + ], + [ + 9.6244957, + 52.420978701 + ], + [ + 9.623717, + 52.421009101 + ], + [ + 9.6222145, + 52.421102201 + ], + [ + 9.6201845, + 52.421241501 + ], + [ + 9.6181661, + 52.421433401 + ], + [ + 9.6108669, + 52.422127401 + ], + [ + 9.6041188, + 52.422765001 + ], + [ + 9.6033918, + 52.422833401 + ], + [ + 9.6007472, + 52.423082401 + ], + [ + 9.5973851, + 52.423382801 + ], + [ + 9.5965629, + 52.423439501 + ], + [ + 9.5951951, + 52.423533801 + ], + [ + 9.5930025, + 52.423642901 + ], + [ + 9.5914172, + 52.423700601 + ], + [ + 9.5898186, + 52.423735801 + ], + [ + 9.5893297, + 52.423737601 + ], + [ + 9.5875853, + 52.423744201 + ], + [ + 9.585538, + 52.423719301 + ], + [ + 9.5839853, + 52.423678301 + ], + [ + 9.5826319, + 52.423624001 + ], + [ + 9.5821334, + 52.423598401 + ], + [ + 9.5818401, + 52.423585801 + ], + [ + 9.5795345, + 52.423445901 + ], + [ + 9.5758685, + 52.423136501 + ], + [ + 9.5746254, + 52.423032401 + ], + [ + 9.5739505, + 52.422975701 + ], + [ + 9.5733209, + 52.422920001 + ], + [ + 9.5674433, + 52.422414001 + ], + [ + 9.564773, + 52.422177401 + ], + [ + 9.5616984, + 52.421912901 + ], + [ + 9.5609967, + 52.421856201 + ], + [ + 9.5602687, + 52.421797301 + ], + [ + 9.5587031, + 52.421702001 + ], + [ + 9.5566495, + 52.421612501 + ], + [ + 9.5538335, + 52.421534101 + ], + [ + 9.5528779, + 52.421511601 + ], + [ + 9.5495624, + 52.421433501 + ], + [ + 9.5465461, + 52.421328201 + ], + [ + 9.5454711, + 52.421279201 + ], + [ + 9.5448589, + 52.421251201 + ], + [ + 9.543954, + 52.421189901 + ], + [ + 9.5428806, + 52.421117001 + ], + [ + 9.5409828, + 52.420950001 + ], + [ + 9.5391159, + 52.420720901 + ], + [ + 9.5382447, + 52.420604401 + ], + [ + 9.5372733, + 52.420454301 + ], + [ + 9.5363863, + 52.420311401 + ], + [ + 9.5354927, + 52.420156901 + ], + [ + 9.5339486, + 52.419850001 + ], + [ + 9.5323742, + 52.419497901 + ], + [ + 9.5312277, + 52.419215501 + ], + [ + 9.5294394, + 52.418725501 + ], + [ + 9.5276933, + 52.418193301 + ], + [ + 9.5275933, + 52.418159401 + ], + [ + 9.5260232, + 52.417626501 + ], + [ + 9.5246771, + 52.417113901 + ], + [ + 9.5246678, + 52.417110301 + ], + [ + 9.5230262, + 52.416445301 + ], + [ + 9.5217024, + 52.415862701 + ], + [ + 9.5198079, + 52.414963901 + ], + [ + 9.5189453, + 52.414525801 + ], + [ + 9.5174414, + 52.413738001 + ], + [ + 9.5142781, + 52.411991501 + ], + [ + 9.514134, + 52.411919801 + ], + [ + 9.5134141, + 52.411503801 + ], + [ + 9.5119075, + 52.410633101 + ], + [ + 9.5101783, + 52.409658901 + ], + [ + 9.5100113, + 52.409562501 + ], + [ + 9.5097077, + 52.409387301 + ], + [ + 9.509482, + 52.409257001 + ], + [ + 9.5078783, + 52.408336801 + ], + [ + 9.5073169, + 52.408014601 + ], + [ + 9.5071661, + 52.407931101 + ], + [ + 9.5063931, + 52.407503001 + ], + [ + 9.5061478, + 52.407367201 + ], + [ + 9.5027142, + 52.405391901 + ], + [ + 9.4976165, + 52.402487901 + ], + [ + 9.4974103, + 52.402371001 + ], + [ + 9.4918267, + 52.399193401 + ], + [ + 9.4899513, + 52.398123701 + ], + [ + 9.4884006, + 52.397194401 + ], + [ + 9.4866017, + 52.395998001 + ], + [ + 9.4818664, + 52.392528701 + ], + [ + 9.4771891, + 52.389114301 + ], + [ + 9.475502, + 52.387908401 + ], + [ + 9.4731854, + 52.386201301 + ], + [ + 9.4724727, + 52.385679101 + ], + [ + 9.4715992, + 52.385039101 + ], + [ + 9.4700345, + 52.383886601 + ], + [ + 9.4683233, + 52.382662401 + ], + [ + 9.4677181, + 52.382252001 + ], + [ + 9.4669241, + 52.381724601 + ], + [ + 9.4661095, + 52.381210801 + ], + [ + 9.4645929, + 52.380302501 + ], + [ + 9.4630426, + 52.379406901 + ], + [ + 9.4624778, + 52.379083501 + ], + [ + 9.4571664, + 52.376021201 + ], + [ + 9.4561127, + 52.375413601 + ], + [ + 9.4517402, + 52.372890601 + ], + [ + 9.4483701, + 52.370915101 + ], + [ + 9.4481868, + 52.370806601 + ], + [ + 9.4465765, + 52.369764701 + ], + [ + 9.4461084, + 52.369461801 + ], + [ + 9.4450141, + 52.368697601 + ], + [ + 9.4439327, + 52.367914101 + ], + [ + 9.4418648, + 52.366304901 + ], + [ + 9.4398742, + 52.364755801 + ], + [ + 9.4373408, + 52.362784101 + ], + [ + 9.4354239, + 52.361302801 + ], + [ + 9.4335428, + 52.359813301 + ], + [ + 9.4328535, + 52.359234901 + ], + [ + 9.4324508, + 52.358868801 + ], + [ + 9.4316822, + 52.358152901 + ], + [ + 9.4309626, + 52.357426601 + ], + [ + 9.4290535, + 52.355366801 + ], + [ + 9.4258806, + 52.351938401 + ], + [ + 9.425508, + 52.351535401 + ], + [ + 9.4243215, + 52.350251901 + ], + [ + 9.4233669, + 52.349155401 + ], + [ + 9.4225936, + 52.348155301 + ], + [ + 9.4221145, + 52.347463601 + ], + [ + 9.421894, + 52.347145301 + ], + [ + 9.4211707, + 52.345969601 + ], + [ + 9.4204899, + 52.344775601 + ], + [ + 9.4199396, + 52.343874901 + ], + [ + 9.419568, + 52.343282301 + ], + [ + 9.41916, + 52.342691201 + ], + [ + 9.4183708, + 52.341708001 + ], + [ + 9.417597, + 52.340855301 + ], + [ + 9.4169278, + 52.340202401 + ], + [ + 9.4160687, + 52.339449201 + ], + [ + 9.41498, + 52.338594701 + ], + [ + 9.4138938, + 52.337844901 + ], + [ + 9.4127669, + 52.337119101 + ], + [ + 9.4113862, + 52.336237801 + ], + [ + 9.411166, + 52.336097001 + ], + [ + 9.4110485, + 52.336017501 + ], + [ + 9.4107397, + 52.335820501 + ], + [ + 9.4083699, + 52.334285001 + ], + [ + 9.408133, + 52.334131201 + ], + [ + 9.4066654, + 52.333177901 + ], + [ + 9.4060396, + 52.332772001 + ], + [ + 9.4033646, + 52.331037001 + ], + [ + 9.4024609, + 52.330446601 + ], + [ + 9.4012585, + 52.329696701 + ], + [ + 9.400861, + 52.329464701 + ], + [ + 9.4001837, + 52.329086101 + ], + [ + 9.3994885, + 52.328716201 + ], + [ + 9.3991437, + 52.328533001 + ], + [ + 9.3974272, + 52.327666701 + ], + [ + 9.3955892, + 52.326738201 + ], + [ + 9.3942464, + 52.326009101 + ], + [ + 9.3931749, + 52.325371601 + ], + [ + 9.3928541, + 52.325173101 + ], + [ + 9.3922725, + 52.324814201 + ], + [ + 9.3917154, + 52.324445401 + ], + [ + 9.3910213, + 52.323979001 + ], + [ + 9.3903547, + 52.323500201 + ], + [ + 9.3896252, + 52.322960101 + ], + [ + 9.3889306, + 52.322409401 + ], + [ + 9.388217, + 52.321808401 + ], + [ + 9.3875394, + 52.321205601 + ], + [ + 9.3865192, + 52.320215301 + ], + [ + 9.3855524, + 52.319206201 + ], + [ + 9.3790251, + 52.311926001 + ], + [ + 9.3754847, + 52.307961901 + ], + [ + 9.3707098, + 52.302615101 + ], + [ + 9.3684725, + 52.300106601 + ], + [ + 9.3683199, + 52.299935501 + ], + [ + 9.3680829, + 52.299669001 + ], + [ + 9.361811, + 52.292640801 + ], + [ + 9.3617129, + 52.292532401 + ], + [ + 9.3614617, + 52.292253101 + ], + [ + 9.3604941, + 52.291177301 + ], + [ + 9.359846, + 52.290500501 + ], + [ + 9.3591582, + 52.289835501 + ], + [ + 9.3587947, + 52.289513701 + ], + [ + 9.3577255, + 52.288653601 + ], + [ + 9.3573407, + 52.288376201 + ], + [ + 9.3570135, + 52.288145901 + ], + [ + 9.3564652, + 52.287771401 + ], + [ + 9.3541998, + 52.286287501 + ], + [ + 9.3504911, + 52.283893201 + ], + [ + 9.3485832, + 52.282658901 + ], + [ + 9.3474828, + 52.281945401 + ], + [ + 9.3463107, + 52.281185501 + ], + [ + 9.3452735, + 52.280518801 + ], + [ + 9.3442032, + 52.279863001 + ], + [ + 9.3434851, + 52.279444801 + ], + [ + 9.3422643, + 52.278783201 + ], + [ + 9.3411662, + 52.278234701 + ], + [ + 9.3394451, + 52.277414901 + ], + [ + 9.3377137, + 52.276609901 + ], + [ + 9.3342311, + 52.274986801 + ], + [ + 9.3322383, + 52.274055401 + ], + [ + 9.3318056, + 52.273853301 + ], + [ + 9.3226209, + 52.269557001 + ], + [ + 9.3213987, + 52.268929401 + ], + [ + 9.3203745, + 52.268349301 + ], + [ + 9.319818, + 52.268018701 + ], + [ + 9.3192822, + 52.267675901 + ], + [ + 9.3184699, + 52.267127001 + ], + [ + 9.3175847, + 52.266477201 + ], + [ + 9.3169306, + 52.265954501 + ], + [ + 9.3163009, + 52.265413301 + ], + [ + 9.3158392, + 52.264988901 + ], + [ + 9.3153776, + 52.264535401 + ], + [ + 9.3149297, + 52.264077401 + ], + [ + 9.3140741, + 52.263136001 + ], + [ + 9.3132278, + 52.262196101 + ], + [ + 9.3123709, + 52.261262801 + ], + [ + 9.3118961, + 52.260755601 + ], + [ + 9.3113986, + 52.260258801 + ], + [ + 9.311277, + 52.260147701 + ], + [ + 9.3103839, + 52.259331701 + ], + [ + 9.3099174, + 52.258953901 + ], + [ + 9.3092674, + 52.258417601 + ], + [ + 9.308833, + 52.258095101 + ], + [ + 9.3083986, + 52.257784601 + ], + [ + 9.3075094, + 52.257213501 + ], + [ + 9.3070547, + 52.256929401 + ], + [ + 9.3065972, + 52.256663201 + ], + [ + 9.3056681, + 52.256144801 + ], + [ + 9.3049484, + 52.255786401 + ], + [ + 9.3032002, + 52.254954001 + ], + [ + 9.2953234, + 52.251283101 + ], + [ + 9.2941695, + 52.250714001 + ], + [ + 9.293578, + 52.250400201 + ], + [ + 9.2929919, + 52.250079201 + ], + [ + 9.2924058, + 52.249734301 + ], + [ + 9.2918331, + 52.249380701 + ], + [ + 9.2908313, + 52.248692701 + ], + [ + 9.290568, + 52.248511201 + ], + [ + 9.2901742, + 52.248197501 + ], + [ + 9.2894412, + 52.247613601 + ], + [ + 9.2888734, + 52.247117601 + ], + [ + 9.2883291, + 52.246621401 + ], + [ + 9.2862842, + 52.244717901 + ], + [ + 9.2851574, + 52.243662501 + ], + [ + 9.2841369, + 52.242704601 + ], + [ + 9.2831121, + 52.241824701 + ], + [ + 9.2822756, + 52.241180801 + ], + [ + 9.281673, + 52.240751101 + ], + [ + 9.2811191, + 52.240375401 + ], + [ + 9.2805277, + 52.239999701 + ], + [ + 9.2799187, + 52.239634101 + ], + [ + 9.2791074, + 52.239186201 + ], + [ + 9.278224, + 52.238729601 + ], + [ + 9.277353, + 52.238322501 + ], + [ + 9.2763434, + 52.237875401 + ], + [ + 9.2757104, + 52.237622201 + ], + [ + 9.2750663, + 52.237376001 + ], + [ + 9.2742741, + 52.237096501 + ], + [ + 9.2734706, + 52.236825701 + ], + [ + 9.2723188, + 52.236474001 + ], + [ + 9.2711007, + 52.236150701 + ], + [ + 9.2701569, + 52.235922901 + ], + [ + 9.2691848, + 52.235713801 + ], + [ + 9.2677158, + 52.235437101 + ], + [ + 9.2673463, + 52.235376101 + ], + [ + 9.2666298, + 52.235263401 + ], + [ + 9.2659102, + 52.235162901 + ], + [ + 9.2652242, + 52.235071901 + ], + [ + 9.2627012, + 52.234763201 + ], + [ + 9.2624937, + 52.234736101 + ], + [ + 9.2600198, + 52.234412201 + ], + [ + 9.2547992, + 52.233715301 + ], + [ + 9.2483526, + 52.232854701 + ], + [ + 9.2465625, + 52.232612201 + ], + [ + 9.2453069, + 52.232446601 + ], + [ + 9.2438094, + 52.232250101 + ], + [ + 9.2427955, + 52.232104801 + ], + [ + 9.2421811, + 52.232018601 + ], + [ + 9.2414165, + 52.231893101 + ], + [ + 9.2406726, + 52.231750001 + ], + [ + 9.2404709, + 52.231700601 + ], + [ + 9.2398188, + 52.231541101 + ], + [ + 9.23931, + 52.231402601 + ], + [ + 9.2388271, + 52.231258401 + ], + [ + 9.2383533, + 52.231099601 + ], + [ + 9.2376724, + 52.230843301 + ], + [ + 9.2372443, + 52.230670101 + ], + [ + 9.2370281, + 52.230580101 + ], + [ + 9.2364758, + 52.230324801 + ], + [ + 9.2360758, + 52.230123701 + ], + [ + 9.2354442, + 52.229779601 + ], + [ + 9.2345855, + 52.229290301 + ], + [ + 9.2343132, + 52.229123901 + ], + [ + 9.2337523, + 52.228781001 + ], + [ + 9.2329406, + 52.228278301 + ], + [ + 9.2292855, + 52.226016901 + ], + [ + 9.2282246, + 52.225351601 + ], + [ + 9.2268218, + 52.224492701 + ], + [ + 9.2262055, + 52.224144601 + ], + [ + 9.2255537, + 52.223812801 + ], + [ + 9.2248831, + 52.223509201 + ], + [ + 9.2240888, + 52.223200901 + ], + [ + 9.2233295, + 52.222936701 + ], + [ + 9.2223565, + 52.222658901 + ], + [ + 9.2217735, + 52.222514201 + ], + [ + 9.2210623, + 52.222368601 + ], + [ + 9.2204039, + 52.222247801 + ], + [ + 9.2197907, + 52.222159901 + ], + [ + 9.2193524, + 52.222107901 + ], + [ + 9.2187771, + 52.222045501 + ], + [ + 9.2180009, + 52.221991501 + ], + [ + 9.2173468, + 52.221977801 + ], + [ + 9.2168373, + 52.221970001 + ], + [ + 9.2162809, + 52.221970301 + ], + [ + 9.214941, + 52.222003701 + ], + [ + 9.2136155, + 52.222062601 + ], + [ + 9.2127496, + 52.222095701 + ], + [ + 9.2118823, + 52.222110101 + ], + [ + 9.211387, + 52.222112901 + ], + [ + 9.2108882, + 52.222102501 + ], + [ + 9.2104027, + 52.222082501 + ], + [ + 9.2099086, + 52.222053601 + ], + [ + 9.2093553, + 52.222010201 + ], + [ + 9.2088004, + 52.221949301 + ], + [ + 9.2081972, + 52.221868901 + ], + [ + 9.2075909, + 52.221773701 + ], + [ + 9.207188, + 52.221701301 + ], + [ + 9.2067946, + 52.221619001 + ], + [ + 9.2063445, + 52.221521401 + ], + [ + 9.2058931, + 52.221413201 + ], + [ + 9.2048726, + 52.221145901 + ], + [ + 9.200465, + 52.219991701 + ], + [ + 9.1989646, + 52.219596201 + ], + [ + 9.1963237, + 52.218861101 + ], + [ + 9.1936648, + 52.218150201 + ], + [ + 9.1893761, + 52.217021301 + ], + [ + 9.1865821, + 52.216287601 + ], + [ + 9.1856943, + 52.216074101 + ], + [ + 9.1848215, + 52.215908101 + ], + [ + 9.1844362, + 52.215841501 + ], + [ + 9.1840458, + 52.215787501 + ], + [ + 9.1834706, + 52.215711701 + ], + [ + 9.1828962, + 52.215658101 + ], + [ + 9.182151, + 52.215608101 + ], + [ + 9.1814058, + 52.215580401 + ], + [ + 9.1808313, + 52.215576901 + ], + [ + 9.1802601, + 52.215590101 + ], + [ + 9.1797008, + 52.215609001 + ], + [ + 9.1774455, + 52.215751301 + ], + [ + 9.1768581, + 52.215787001 + ], + [ + 9.1758156, + 52.215836601 + ], + [ + 9.1751061, + 52.215847001 + ], + [ + 9.1747542, + 52.215852201 + ], + [ + 9.1740749, + 52.215865101 + ], + [ + 9.1720213, + 52.215889401 + ], + [ + 9.1701082, + 52.215924701 + ], + [ + 9.1695057, + 52.215960601 + ], + [ + 9.168897, + 52.216007301 + ], + [ + 9.1683483, + 52.216069101 + ], + [ + 9.1678181, + 52.216150801 + ], + [ + 9.1672875, + 52.216242501 + ], + [ + 9.1667765, + 52.216349001 + ], + [ + 9.1662776, + 52.216471701 + ], + [ + 9.1657855, + 52.216604001 + ], + [ + 9.1621696, + 52.217648301 + ], + [ + 9.1615127, + 52.217834001 + ], + [ + 9.1613124, + 52.217882601 + ], + [ + 9.1608195, + 52.217995401 + ], + [ + 9.1603379, + 52.218093701 + ], + [ + 9.1598538, + 52.218178601 + ], + [ + 9.1593227, + 52.218267801 + ], + [ + 9.1587759, + 52.218338301 + ], + [ + 9.1544729, + 52.218876401 + ], + [ + 9.1539247, + 52.218944901 + ], + [ + 9.1506015, + 52.219354801 + ], + [ + 9.149833, + 52.219441101 + ], + [ + 9.1490539, + 52.219517501 + ], + [ + 9.148213, + 52.219589001 + ], + [ + 9.1473533, + 52.219640001 + ], + [ + 9.1470301, + 52.219650301 + ], + [ + 9.1456541, + 52.219694201 + ], + [ + 9.1451089, + 52.219710501 + ], + [ + 9.1407449, + 52.219825301 + ], + [ + 9.139815, + 52.219849301 + ], + [ + 9.139697, + 52.219852401 + ], + [ + 9.1388829, + 52.219888101 + ], + [ + 9.1380741, + 52.219955401 + ], + [ + 9.1349713, + 52.220274601 + ], + [ + 9.1324034, + 52.220538801 + ], + [ + 9.1312051, + 52.220658701 + ], + [ + 9.1299924, + 52.220747101 + ], + [ + 9.1292275, + 52.220780201 + ], + [ + 9.1284906, + 52.220793201 + ], + [ + 9.1278081, + 52.220783601 + ], + [ + 9.1271235, + 52.220755501 + ], + [ + 9.1263315, + 52.220698201 + ], + [ + 9.1255416, + 52.220616901 + ], + [ + 9.125394, + 52.220598201 + ], + [ + 9.1240341, + 52.220426201 + ], + [ + 9.1224571, + 52.220217201 + ], + [ + 9.1217553, + 52.220125801 + ], + [ + 9.1209516, + 52.220068101 + ], + [ + 9.1202052, + 52.220021901 + ], + [ + 9.1194267, + 52.220002001 + ], + [ + 9.1187064, + 52.220004601 + ], + [ + 9.1179861, + 52.220033501 + ], + [ + 9.1171401, + 52.220086001 + ], + [ + 9.1163703, + 52.220171001 + ], + [ + 9.1156626, + 52.220267701 + ], + [ + 9.1149738, + 52.220387301 + ], + [ + 9.1141422, + 52.220555201 + ], + [ + 9.1120072, + 52.221030401 + ], + [ + 9.1099203, + 52.221464901 + ], + [ + 9.1090861, + 52.221588201 + ], + [ + 9.1085526, + 52.221663401 + ], + [ + 9.1077944, + 52.221749701 + ], + [ + 9.1071088, + 52.221811901 + ], + [ + 9.1062925, + 52.221849901 + ], + [ + 9.1054437, + 52.221857301 + ], + [ + 9.1043526, + 52.221835101 + ], + [ + 9.1033962, + 52.221773301 + ], + [ + 9.1020488, + 52.221650101 + ], + [ + 9.1014372, + 52.221580901 + ], + [ + 9.0992752, + 52.221316501 + ], + [ + 9.0932238, + 52.220552101 + ], + [ + 9.0915883, + 52.220394001 + ], + [ + 9.0904728, + 52.220315901 + ], + [ + 9.0892559, + 52.220288401 + ], + [ + 9.0882479, + 52.220296301 + ], + [ + 9.0877697, + 52.220305301 + ], + [ + 9.0864893, + 52.220365301 + ], + [ + 9.0852478, + 52.220438501 + ], + [ + 9.0825161, + 52.220637801 + ], + [ + 9.081995, + 52.220692301 + ], + [ + 9.0794051, + 52.220885001 + ], + [ + 9.0743664, + 52.221243301 + ], + [ + 9.0707193, + 52.221523801 + ], + [ + 9.069383, + 52.221622101 + ], + [ + 9.0685172, + 52.221653601 + ], + [ + 9.0676384, + 52.221644701 + ], + [ + 9.0667265, + 52.221608701 + ], + [ + 9.0659446, + 52.221540101 + ], + [ + 9.0651739, + 52.221443901 + ], + [ + 9.0637857, + 52.221207801 + ], + [ + 9.0628301, + 52.220973901 + ], + [ + 9.060927, + 52.220405201 + ], + [ + 9.0598152, + 52.220032701 + ], + [ + 9.0593914, + 52.219884401 + ], + [ + 9.0577267, + 52.219354201 + ], + [ + 9.0566966, + 52.219036201 + ], + [ + 9.0558899, + 52.218826501 + ], + [ + 9.0553183, + 52.218709401 + ], + [ + 9.0547275, + 52.218593401 + ], + [ + 9.053646, + 52.218462201 + ], + [ + 9.0533643, + 52.218422001 + ], + [ + 9.0529563, + 52.218381301 + ], + [ + 9.0523439, + 52.218324801 + ], + [ + 9.0516551, + 52.218281901 + ], + [ + 9.0507983, + 52.218289101 + ], + [ + 9.0497771, + 52.218334801 + ], + [ + 9.0487432, + 52.218451801 + ], + [ + 9.0476828, + 52.218593501 + ], + [ + 9.0467698, + 52.218739401 + ], + [ + 9.045597, + 52.218949801 + ], + [ + 9.038067779, + 52.220484021 + ] + ] + } + }, + { + "identifier": "2026-015630--vi-bs.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.42259563354656,9.640293030382884,52.221301446051314,9.033214069731345", + "point": "52.42259563354656,9.640293030382884", + "startLcPosition": "85", + "impact": { + "lower": "Veltheim", + "upper": "Nordhafen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Nordhafen - Veltheim", + "coordinate": { + "lat": 52.42259563354656, + "long": 9.640293030382884 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 09:00 bis 15:00 Uhr.", + "", + "A2: Hannover -> Dortmund, zwischen 0.7 km hinter Nordhafen und 5.5 km vor AS Veltheim", + "", + "L\u00e4nge: 51.96 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 von Nordhafen nach Veltheim (AS) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.64029303, + 52.422595634 + ], + [ + 9.6399293, + 52.422526001 + ], + [ + 9.6382593, + 52.422206401 + ], + [ + 9.637114, + 52.421992201 + ], + [ + 9.635942, + 52.421786601 + ], + [ + 9.6348247, + 52.421608601 + ], + [ + 9.6340522, + 52.421497401 + ], + [ + 9.6333455, + 52.421400001 + ], + [ + 9.6326951, + 52.421321101 + ], + [ + 9.6316884, + 52.421215101 + ], + [ + 9.6305385, + 52.421117001 + ], + [ + 9.6293685, + 52.421043101 + ], + [ + 9.6287616, + 52.421012401 + ], + [ + 9.6276985, + 52.420972801 + ], + [ + 9.6262856, + 52.420953301 + ], + [ + 9.6253294, + 52.420960401 + ], + [ + 9.6244957, + 52.420978701 + ], + [ + 9.623717, + 52.421009101 + ], + [ + 9.6222145, + 52.421102201 + ], + [ + 9.6201845, + 52.421241501 + ], + [ + 9.6181661, + 52.421433401 + ], + [ + 9.6108669, + 52.422127401 + ], + [ + 9.6041188, + 52.422765001 + ], + [ + 9.6033918, + 52.422833401 + ], + [ + 9.6007472, + 52.423082401 + ], + [ + 9.5973851, + 52.423382801 + ], + [ + 9.5965629, + 52.423439501 + ], + [ + 9.5951951, + 52.423533801 + ], + [ + 9.5930025, + 52.423642901 + ], + [ + 9.5914172, + 52.423700601 + ], + [ + 9.5898186, + 52.423735801 + ], + [ + 9.5893297, + 52.423737601 + ], + [ + 9.5875853, + 52.423744201 + ], + [ + 9.585538, + 52.423719301 + ], + [ + 9.5839853, + 52.423678301 + ], + [ + 9.5826319, + 52.423624001 + ], + [ + 9.5821334, + 52.423598401 + ], + [ + 9.5818401, + 52.423585801 + ], + [ + 9.5795345, + 52.423445901 + ], + [ + 9.5758685, + 52.423136501 + ], + [ + 9.5746254, + 52.423032401 + ], + [ + 9.5739505, + 52.422975701 + ], + [ + 9.5733209, + 52.422920001 + ], + [ + 9.5674433, + 52.422414001 + ], + [ + 9.564773, + 52.422177401 + ], + [ + 9.5616984, + 52.421912901 + ], + [ + 9.5609967, + 52.421856201 + ], + [ + 9.5602687, + 52.421797301 + ], + [ + 9.5587031, + 52.421702001 + ], + [ + 9.5566495, + 52.421612501 + ], + [ + 9.5538335, + 52.421534101 + ], + [ + 9.5528779, + 52.421511601 + ], + [ + 9.5495624, + 52.421433501 + ], + [ + 9.5465461, + 52.421328201 + ], + [ + 9.5454711, + 52.421279201 + ], + [ + 9.5448589, + 52.421251201 + ], + [ + 9.543954, + 52.421189901 + ], + [ + 9.5428806, + 52.421117001 + ], + [ + 9.5409828, + 52.420950001 + ], + [ + 9.5391159, + 52.420720901 + ], + [ + 9.5382447, + 52.420604401 + ], + [ + 9.5372733, + 52.420454301 + ], + [ + 9.5363863, + 52.420311401 + ], + [ + 9.5354927, + 52.420156901 + ], + [ + 9.5339486, + 52.419850001 + ], + [ + 9.5323742, + 52.419497901 + ], + [ + 9.5312277, + 52.419215501 + ], + [ + 9.5294394, + 52.418725501 + ], + [ + 9.5276933, + 52.418193301 + ], + [ + 9.5275933, + 52.418159401 + ], + [ + 9.5260232, + 52.417626501 + ], + [ + 9.5246771, + 52.417113901 + ], + [ + 9.5246678, + 52.417110301 + ], + [ + 9.5230262, + 52.416445301 + ], + [ + 9.5217024, + 52.415862701 + ], + [ + 9.5198079, + 52.414963901 + ], + [ + 9.5189453, + 52.414525801 + ], + [ + 9.5174414, + 52.413738001 + ], + [ + 9.5142781, + 52.411991501 + ], + [ + 9.514134, + 52.411919801 + ], + [ + 9.5134141, + 52.411503801 + ], + [ + 9.5119075, + 52.410633101 + ], + [ + 9.5101783, + 52.409658901 + ], + [ + 9.5100113, + 52.409562501 + ], + [ + 9.5097077, + 52.409387301 + ], + [ + 9.509482, + 52.409257001 + ], + [ + 9.5078783, + 52.408336801 + ], + [ + 9.5073169, + 52.408014601 + ], + [ + 9.5071661, + 52.407931101 + ], + [ + 9.5063931, + 52.407503001 + ], + [ + 9.5061478, + 52.407367201 + ], + [ + 9.5027142, + 52.405391901 + ], + [ + 9.4976165, + 52.402487901 + ], + [ + 9.4974103, + 52.402371001 + ], + [ + 9.4918267, + 52.399193401 + ], + [ + 9.4899513, + 52.398123701 + ], + [ + 9.4884006, + 52.397194401 + ], + [ + 9.4866017, + 52.395998001 + ], + [ + 9.4818664, + 52.392528701 + ], + [ + 9.4771891, + 52.389114301 + ], + [ + 9.475502, + 52.387908401 + ], + [ + 9.4731854, + 52.386201301 + ], + [ + 9.4724727, + 52.385679101 + ], + [ + 9.4715992, + 52.385039101 + ], + [ + 9.4700345, + 52.383886601 + ], + [ + 9.4683233, + 52.382662401 + ], + [ + 9.4677181, + 52.382252001 + ], + [ + 9.4669241, + 52.381724601 + ], + [ + 9.4661095, + 52.381210801 + ], + [ + 9.4645929, + 52.380302501 + ], + [ + 9.4630426, + 52.379406901 + ], + [ + 9.4624778, + 52.379083501 + ], + [ + 9.4571664, + 52.376021201 + ], + [ + 9.4561127, + 52.375413601 + ], + [ + 9.4517402, + 52.372890601 + ], + [ + 9.4483701, + 52.370915101 + ], + [ + 9.4481868, + 52.370806601 + ], + [ + 9.4465765, + 52.369764701 + ], + [ + 9.4461084, + 52.369461801 + ], + [ + 9.4450141, + 52.368697601 + ], + [ + 9.4439327, + 52.367914101 + ], + [ + 9.4418648, + 52.366304901 + ], + [ + 9.4398742, + 52.364755801 + ], + [ + 9.4373408, + 52.362784101 + ], + [ + 9.4354239, + 52.361302801 + ], + [ + 9.4335428, + 52.359813301 + ], + [ + 9.4328535, + 52.359234901 + ], + [ + 9.4324508, + 52.358868801 + ], + [ + 9.4316822, + 52.358152901 + ], + [ + 9.4309626, + 52.357426601 + ], + [ + 9.4290535, + 52.355366801 + ], + [ + 9.4258806, + 52.351938401 + ], + [ + 9.425508, + 52.351535401 + ], + [ + 9.4243215, + 52.350251901 + ], + [ + 9.4233669, + 52.349155401 + ], + [ + 9.4225936, + 52.348155301 + ], + [ + 9.4221145, + 52.347463601 + ], + [ + 9.421894, + 52.347145301 + ], + [ + 9.4211707, + 52.345969601 + ], + [ + 9.4204899, + 52.344775601 + ], + [ + 9.4199396, + 52.343874901 + ], + [ + 9.419568, + 52.343282301 + ], + [ + 9.41916, + 52.342691201 + ], + [ + 9.4183708, + 52.341708001 + ], + [ + 9.417597, + 52.340855301 + ], + [ + 9.4169278, + 52.340202401 + ], + [ + 9.4160687, + 52.339449201 + ], + [ + 9.41498, + 52.338594701 + ], + [ + 9.4138938, + 52.337844901 + ], + [ + 9.4127669, + 52.337119101 + ], + [ + 9.4113862, + 52.336237801 + ], + [ + 9.411166, + 52.336097001 + ], + [ + 9.4110485, + 52.336017501 + ], + [ + 9.4107397, + 52.335820501 + ], + [ + 9.4083699, + 52.334285001 + ], + [ + 9.408133, + 52.334131201 + ], + [ + 9.4066654, + 52.333177901 + ], + [ + 9.4060396, + 52.332772001 + ], + [ + 9.4033646, + 52.331037001 + ], + [ + 9.4024609, + 52.330446601 + ], + [ + 9.4012585, + 52.329696701 + ], + [ + 9.400861, + 52.329464701 + ], + [ + 9.4001837, + 52.329086101 + ], + [ + 9.3994885, + 52.328716201 + ], + [ + 9.3991437, + 52.328533001 + ], + [ + 9.3974272, + 52.327666701 + ], + [ + 9.3955892, + 52.326738201 + ], + [ + 9.3942464, + 52.326009101 + ], + [ + 9.3931749, + 52.325371601 + ], + [ + 9.3928541, + 52.325173101 + ], + [ + 9.3922725, + 52.324814201 + ], + [ + 9.3917154, + 52.324445401 + ], + [ + 9.3910213, + 52.323979001 + ], + [ + 9.3903547, + 52.323500201 + ], + [ + 9.3896252, + 52.322960101 + ], + [ + 9.3889306, + 52.322409401 + ], + [ + 9.388217, + 52.321808401 + ], + [ + 9.3875394, + 52.321205601 + ], + [ + 9.3865192, + 52.320215301 + ], + [ + 9.3855524, + 52.319206201 + ], + [ + 9.3790251, + 52.311926001 + ], + [ + 9.3754847, + 52.307961901 + ], + [ + 9.3707098, + 52.302615101 + ], + [ + 9.3684725, + 52.300106601 + ], + [ + 9.3683199, + 52.299935501 + ], + [ + 9.3680829, + 52.299669001 + ], + [ + 9.361811, + 52.292640801 + ], + [ + 9.3617129, + 52.292532401 + ], + [ + 9.3614617, + 52.292253101 + ], + [ + 9.3604941, + 52.291177301 + ], + [ + 9.359846, + 52.290500501 + ], + [ + 9.3591582, + 52.289835501 + ], + [ + 9.3587947, + 52.289513701 + ], + [ + 9.3577255, + 52.288653601 + ], + [ + 9.3573407, + 52.288376201 + ], + [ + 9.3570135, + 52.288145901 + ], + [ + 9.3564652, + 52.287771401 + ], + [ + 9.3541998, + 52.286287501 + ], + [ + 9.3504911, + 52.283893201 + ], + [ + 9.3485832, + 52.282658901 + ], + [ + 9.3474828, + 52.281945401 + ], + [ + 9.3463107, + 52.281185501 + ], + [ + 9.3452735, + 52.280518801 + ], + [ + 9.3442032, + 52.279863001 + ], + [ + 9.3434851, + 52.279444801 + ], + [ + 9.3422643, + 52.278783201 + ], + [ + 9.3411662, + 52.278234701 + ], + [ + 9.3394451, + 52.277414901 + ], + [ + 9.3377137, + 52.276609901 + ], + [ + 9.3342311, + 52.274986801 + ], + [ + 9.3322383, + 52.274055401 + ], + [ + 9.3318056, + 52.273853301 + ], + [ + 9.3226209, + 52.269557001 + ], + [ + 9.3213987, + 52.268929401 + ], + [ + 9.3203745, + 52.268349301 + ], + [ + 9.319818, + 52.268018701 + ], + [ + 9.3192822, + 52.267675901 + ], + [ + 9.3184699, + 52.267127001 + ], + [ + 9.3175847, + 52.266477201 + ], + [ + 9.3169306, + 52.265954501 + ], + [ + 9.3163009, + 52.265413301 + ], + [ + 9.3158392, + 52.264988901 + ], + [ + 9.3153776, + 52.264535401 + ], + [ + 9.3149297, + 52.264077401 + ], + [ + 9.3140741, + 52.263136001 + ], + [ + 9.3132278, + 52.262196101 + ], + [ + 9.3123709, + 52.261262801 + ], + [ + 9.3118961, + 52.260755601 + ], + [ + 9.3113986, + 52.260258801 + ], + [ + 9.311277, + 52.260147701 + ], + [ + 9.3103839, + 52.259331701 + ], + [ + 9.3099174, + 52.258953901 + ], + [ + 9.3092674, + 52.258417601 + ], + [ + 9.308833, + 52.258095101 + ], + [ + 9.3083986, + 52.257784601 + ], + [ + 9.3075094, + 52.257213501 + ], + [ + 9.3070547, + 52.256929401 + ], + [ + 9.3065972, + 52.256663201 + ], + [ + 9.3056681, + 52.256144801 + ], + [ + 9.3049484, + 52.255786401 + ], + [ + 9.3032002, + 52.254954001 + ], + [ + 9.2953234, + 52.251283101 + ], + [ + 9.2941695, + 52.250714001 + ], + [ + 9.293578, + 52.250400201 + ], + [ + 9.2929919, + 52.250079201 + ], + [ + 9.2924058, + 52.249734301 + ], + [ + 9.2918331, + 52.249380701 + ], + [ + 9.2908313, + 52.248692701 + ], + [ + 9.290568, + 52.248511201 + ], + [ + 9.2901742, + 52.248197501 + ], + [ + 9.2894412, + 52.247613601 + ], + [ + 9.2888734, + 52.247117601 + ], + [ + 9.2883291, + 52.246621401 + ], + [ + 9.2862842, + 52.244717901 + ], + [ + 9.2851574, + 52.243662501 + ], + [ + 9.2841369, + 52.242704601 + ], + [ + 9.2831121, + 52.241824701 + ], + [ + 9.2822756, + 52.241180801 + ], + [ + 9.281673, + 52.240751101 + ], + [ + 9.2811191, + 52.240375401 + ], + [ + 9.2805277, + 52.239999701 + ], + [ + 9.2799187, + 52.239634101 + ], + [ + 9.2791074, + 52.239186201 + ], + [ + 9.278224, + 52.238729601 + ], + [ + 9.277353, + 52.238322501 + ], + [ + 9.2763434, + 52.237875401 + ], + [ + 9.2757104, + 52.237622201 + ], + [ + 9.2750663, + 52.237376001 + ], + [ + 9.2742741, + 52.237096501 + ], + [ + 9.2734706, + 52.236825701 + ], + [ + 9.2723188, + 52.236474001 + ], + [ + 9.2711007, + 52.236150701 + ], + [ + 9.2701569, + 52.235922901 + ], + [ + 9.2691848, + 52.235713801 + ], + [ + 9.2677158, + 52.235437101 + ], + [ + 9.2673463, + 52.235376101 + ], + [ + 9.2666298, + 52.235263401 + ], + [ + 9.2659102, + 52.235162901 + ], + [ + 9.2652242, + 52.235071901 + ], + [ + 9.2627012, + 52.234763201 + ], + [ + 9.2624937, + 52.234736101 + ], + [ + 9.2600198, + 52.234412201 + ], + [ + 9.2547992, + 52.233715301 + ], + [ + 9.2483526, + 52.232854701 + ], + [ + 9.2465625, + 52.232612201 + ], + [ + 9.2453069, + 52.232446601 + ], + [ + 9.2438094, + 52.232250101 + ], + [ + 9.2427955, + 52.232104801 + ], + [ + 9.2421811, + 52.232018601 + ], + [ + 9.2414165, + 52.231893101 + ], + [ + 9.2406726, + 52.231750001 + ], + [ + 9.2404709, + 52.231700601 + ], + [ + 9.2398188, + 52.231541101 + ], + [ + 9.23931, + 52.231402601 + ], + [ + 9.2388271, + 52.231258401 + ], + [ + 9.2383533, + 52.231099601 + ], + [ + 9.2376724, + 52.230843301 + ], + [ + 9.2372443, + 52.230670101 + ], + [ + 9.2370281, + 52.230580101 + ], + [ + 9.2364758, + 52.230324801 + ], + [ + 9.2360758, + 52.230123701 + ], + [ + 9.2354442, + 52.229779601 + ], + [ + 9.2345855, + 52.229290301 + ], + [ + 9.2343132, + 52.229123901 + ], + [ + 9.2337523, + 52.228781001 + ], + [ + 9.2329406, + 52.228278301 + ], + [ + 9.2292855, + 52.226016901 + ], + [ + 9.2282246, + 52.225351601 + ], + [ + 9.2268218, + 52.224492701 + ], + [ + 9.2262055, + 52.224144601 + ], + [ + 9.2255537, + 52.223812801 + ], + [ + 9.2248831, + 52.223509201 + ], + [ + 9.2240888, + 52.223200901 + ], + [ + 9.2233295, + 52.222936701 + ], + [ + 9.2223565, + 52.222658901 + ], + [ + 9.2217735, + 52.222514201 + ], + [ + 9.2210623, + 52.222368601 + ], + [ + 9.2204039, + 52.222247801 + ], + [ + 9.2197907, + 52.222159901 + ], + [ + 9.2193524, + 52.222107901 + ], + [ + 9.2187771, + 52.222045501 + ], + [ + 9.2180009, + 52.221991501 + ], + [ + 9.2173468, + 52.221977801 + ], + [ + 9.2168373, + 52.221970001 + ], + [ + 9.2162809, + 52.221970301 + ], + [ + 9.214941, + 52.222003701 + ], + [ + 9.2136155, + 52.222062601 + ], + [ + 9.2127496, + 52.222095701 + ], + [ + 9.2118823, + 52.222110101 + ], + [ + 9.211387, + 52.222112901 + ], + [ + 9.2108882, + 52.222102501 + ], + [ + 9.2104027, + 52.222082501 + ], + [ + 9.2099086, + 52.222053601 + ], + [ + 9.2093553, + 52.222010201 + ], + [ + 9.2088004, + 52.221949301 + ], + [ + 9.2081972, + 52.221868901 + ], + [ + 9.2075909, + 52.221773701 + ], + [ + 9.207188, + 52.221701301 + ], + [ + 9.2067946, + 52.221619001 + ], + [ + 9.2063445, + 52.221521401 + ], + [ + 9.2058931, + 52.221413201 + ], + [ + 9.2048726, + 52.221145901 + ], + [ + 9.200465, + 52.219991701 + ], + [ + 9.1989646, + 52.219596201 + ], + [ + 9.1963237, + 52.218861101 + ], + [ + 9.1936648, + 52.218150201 + ], + [ + 9.1893761, + 52.217021301 + ], + [ + 9.1865821, + 52.216287601 + ], + [ + 9.1856943, + 52.216074101 + ], + [ + 9.1848215, + 52.215908101 + ], + [ + 9.1844362, + 52.215841501 + ], + [ + 9.1840458, + 52.215787501 + ], + [ + 9.1834706, + 52.215711701 + ], + [ + 9.1828962, + 52.215658101 + ], + [ + 9.182151, + 52.215608101 + ], + [ + 9.1814058, + 52.215580401 + ], + [ + 9.1808313, + 52.215576901 + ], + [ + 9.1802601, + 52.215590101 + ], + [ + 9.1797008, + 52.215609001 + ], + [ + 9.1774455, + 52.215751301 + ], + [ + 9.1768581, + 52.215787001 + ], + [ + 9.1758156, + 52.215836601 + ], + [ + 9.1751061, + 52.215847001 + ], + [ + 9.1747542, + 52.215852201 + ], + [ + 9.1740749, + 52.215865101 + ], + [ + 9.1720213, + 52.215889401 + ], + [ + 9.1701082, + 52.215924701 + ], + [ + 9.1695057, + 52.215960601 + ], + [ + 9.168897, + 52.216007301 + ], + [ + 9.1683483, + 52.216069101 + ], + [ + 9.1678181, + 52.216150801 + ], + [ + 9.1672875, + 52.216242501 + ], + [ + 9.1667765, + 52.216349001 + ], + [ + 9.1662776, + 52.216471701 + ], + [ + 9.1657855, + 52.216604001 + ], + [ + 9.1621696, + 52.217648301 + ], + [ + 9.1615127, + 52.217834001 + ], + [ + 9.1613124, + 52.217882601 + ], + [ + 9.1608195, + 52.217995401 + ], + [ + 9.1603379, + 52.218093701 + ], + [ + 9.1598538, + 52.218178601 + ], + [ + 9.1593227, + 52.218267801 + ], + [ + 9.1587759, + 52.218338301 + ], + [ + 9.1544729, + 52.218876401 + ], + [ + 9.1539247, + 52.218944901 + ], + [ + 9.1506015, + 52.219354801 + ], + [ + 9.149833, + 52.219441101 + ], + [ + 9.1490539, + 52.219517501 + ], + [ + 9.148213, + 52.219589001 + ], + [ + 9.1473533, + 52.219640001 + ], + [ + 9.1470301, + 52.219650301 + ], + [ + 9.1456541, + 52.219694201 + ], + [ + 9.1451089, + 52.219710501 + ], + [ + 9.1407449, + 52.219825301 + ], + [ + 9.139815, + 52.219849301 + ], + [ + 9.139697, + 52.219852401 + ], + [ + 9.1388829, + 52.219888101 + ], + [ + 9.1380741, + 52.219955401 + ], + [ + 9.1349713, + 52.220274601 + ], + [ + 9.1324034, + 52.220538801 + ], + [ + 9.1312051, + 52.220658701 + ], + [ + 9.1299924, + 52.220747101 + ], + [ + 9.1292275, + 52.220780201 + ], + [ + 9.1284906, + 52.220793201 + ], + [ + 9.1278081, + 52.220783601 + ], + [ + 9.1271235, + 52.220755501 + ], + [ + 9.1263315, + 52.220698201 + ], + [ + 9.1255416, + 52.220616901 + ], + [ + 9.125394, + 52.220598201 + ], + [ + 9.1240341, + 52.220426201 + ], + [ + 9.1224571, + 52.220217201 + ], + [ + 9.1217553, + 52.220125801 + ], + [ + 9.1209516, + 52.220068101 + ], + [ + 9.1202052, + 52.220021901 + ], + [ + 9.1194267, + 52.220002001 + ], + [ + 9.1187064, + 52.220004601 + ], + [ + 9.1179861, + 52.220033501 + ], + [ + 9.1171401, + 52.220086001 + ], + [ + 9.1163703, + 52.220171001 + ], + [ + 9.1156626, + 52.220267701 + ], + [ + 9.1149738, + 52.220387301 + ], + [ + 9.1141422, + 52.220555201 + ], + [ + 9.1120072, + 52.221030401 + ], + [ + 9.1099203, + 52.221464901 + ], + [ + 9.1090861, + 52.221588201 + ], + [ + 9.1085526, + 52.221663401 + ], + [ + 9.1077944, + 52.221749701 + ], + [ + 9.1071088, + 52.221811901 + ], + [ + 9.1062925, + 52.221849901 + ], + [ + 9.1054437, + 52.221857301 + ], + [ + 9.1043526, + 52.221835101 + ], + [ + 9.1033962, + 52.221773301 + ], + [ + 9.1020488, + 52.221650101 + ], + [ + 9.1014372, + 52.221580901 + ], + [ + 9.0992752, + 52.221316501 + ], + [ + 9.0932238, + 52.220552101 + ], + [ + 9.0915883, + 52.220394001 + ], + [ + 9.0904728, + 52.220315901 + ], + [ + 9.0892559, + 52.220288401 + ], + [ + 9.0882479, + 52.220296301 + ], + [ + 9.0877697, + 52.220305301 + ], + [ + 9.0864893, + 52.220365301 + ], + [ + 9.0852478, + 52.220438501 + ], + [ + 9.0825161, + 52.220637801 + ], + [ + 9.081995, + 52.220692301 + ], + [ + 9.0794051, + 52.220885001 + ], + [ + 9.0743664, + 52.221243301 + ], + [ + 9.0707193, + 52.221523801 + ], + [ + 9.069383, + 52.221622101 + ], + [ + 9.0685172, + 52.221653601 + ], + [ + 9.0676384, + 52.221644701 + ], + [ + 9.0667265, + 52.221608701 + ], + [ + 9.0659446, + 52.221540101 + ], + [ + 9.0651739, + 52.221443901 + ], + [ + 9.0637857, + 52.221207801 + ], + [ + 9.0628301, + 52.220973901 + ], + [ + 9.060927, + 52.220405201 + ], + [ + 9.0598152, + 52.220032701 + ], + [ + 9.0593914, + 52.219884401 + ], + [ + 9.0577267, + 52.219354201 + ], + [ + 9.0566966, + 52.219036201 + ], + [ + 9.0558899, + 52.218826501 + ], + [ + 9.0553183, + 52.218709401 + ], + [ + 9.0547275, + 52.218593401 + ], + [ + 9.053646, + 52.218462201 + ], + [ + 9.0533643, + 52.218422001 + ], + [ + 9.0529563, + 52.218381301 + ], + [ + 9.0523439, + 52.218324801 + ], + [ + 9.0516551, + 52.218281901 + ], + [ + 9.0507983, + 52.218289101 + ], + [ + 9.0497771, + 52.218334801 + ], + [ + 9.0487432, + 52.218451801 + ], + [ + 9.0476828, + 52.218593501 + ], + [ + 9.0467698, + 52.218739401 + ], + [ + 9.045597, + 52.218949801 + ], + [ + 9.0380453, + 52.220488601 + ], + [ + 9.0355926, + 52.220934101 + ], + [ + 9.0347366, + 52.221089401 + ], + [ + 9.0342873, + 52.221160001 + ], + [ + 9.0335904, + 52.221257801 + ], + [ + 9.03321407, + 52.221301446 + ] + ] + } + }, + { + "identifier": "2026-015841--vi-bs.2026-04-20_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.42139469209231,9.633301736435207,52.41703214475073,9.524474860394704", + "point": "52.42139469209231,9.633301736435207", + "startLcPosition": "85", + "impact": { + "lower": "Wunstorf-Luthe", + "upper": "Nordhafen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Dortmund", + "title": "A2 | Nordhafen - Wunstorf-Luthe", + "coordinate": { + "lat": 52.42139469209231, + "long": 9.633301736435207 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 20.04.26 und dem 21.05.26 von 08:00 bis 17:00 Uhr.", + "", + "A2: Hannover -> Dortmund, zwischen 1.2 km hinter Nordhafen und 0.9 km vor AS Wunstorf-Luthe", + "", + "L\u00e4nge: 7.53 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A2 von Nordhafen nach Wunstorf-Luthe (AS) Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.633301736, + 52.421394692 + ], + [ + 9.6326951, + 52.421321101 + ], + [ + 9.6316884, + 52.421215101 + ], + [ + 9.6305385, + 52.421117001 + ], + [ + 9.6293685, + 52.421043101 + ], + [ + 9.6287616, + 52.421012401 + ], + [ + 9.6276985, + 52.420972801 + ], + [ + 9.6262856, + 52.420953301 + ], + [ + 9.6253294, + 52.420960401 + ], + [ + 9.6244957, + 52.420978701 + ], + [ + 9.623717, + 52.421009101 + ], + [ + 9.6222145, + 52.421102201 + ], + [ + 9.6201845, + 52.421241501 + ], + [ + 9.6181661, + 52.421433401 + ], + [ + 9.6108669, + 52.422127401 + ], + [ + 9.6041188, + 52.422765001 + ], + [ + 9.6033918, + 52.422833401 + ], + [ + 9.6007472, + 52.423082401 + ], + [ + 9.5973851, + 52.423382801 + ], + [ + 9.5965629, + 52.423439501 + ], + [ + 9.5951951, + 52.423533801 + ], + [ + 9.5930025, + 52.423642901 + ], + [ + 9.5914172, + 52.423700601 + ], + [ + 9.5898186, + 52.423735801 + ], + [ + 9.5893297, + 52.423737601 + ], + [ + 9.5875853, + 52.423744201 + ], + [ + 9.585538, + 52.423719301 + ], + [ + 9.5839853, + 52.423678301 + ], + [ + 9.5826319, + 52.423624001 + ], + [ + 9.5821334, + 52.423598401 + ], + [ + 9.5818401, + 52.423585801 + ], + [ + 9.5795345, + 52.423445901 + ], + [ + 9.5758685, + 52.423136501 + ], + [ + 9.5746254, + 52.423032401 + ], + [ + 9.5739505, + 52.422975701 + ], + [ + 9.5733209, + 52.422920001 + ], + [ + 9.5674433, + 52.422414001 + ], + [ + 9.564773, + 52.422177401 + ], + [ + 9.5616984, + 52.421912901 + ], + [ + 9.5609967, + 52.421856201 + ], + [ + 9.5602687, + 52.421797301 + ], + [ + 9.5587031, + 52.421702001 + ], + [ + 9.5566495, + 52.421612501 + ], + [ + 9.5538335, + 52.421534101 + ], + [ + 9.5528779, + 52.421511601 + ], + [ + 9.5495624, + 52.421433501 + ], + [ + 9.5465461, + 52.421328201 + ], + [ + 9.5454711, + 52.421279201 + ], + [ + 9.5448589, + 52.421251201 + ], + [ + 9.543954, + 52.421189901 + ], + [ + 9.5428806, + 52.421117001 + ], + [ + 9.5409828, + 52.420950001 + ], + [ + 9.5391159, + 52.420720901 + ], + [ + 9.5382447, + 52.420604401 + ], + [ + 9.5372733, + 52.420454301 + ], + [ + 9.5363863, + 52.420311401 + ], + [ + 9.5354927, + 52.420156901 + ], + [ + 9.5339486, + 52.419850001 + ], + [ + 9.5323742, + 52.419497901 + ], + [ + 9.5312277, + 52.419215501 + ], + [ + 9.5294394, + 52.418725501 + ], + [ + 9.5276933, + 52.418193301 + ], + [ + 9.5275933, + 52.418159401 + ], + [ + 9.5260232, + 52.417626501 + ], + [ + 9.5246771, + 52.417113901 + ], + [ + 9.5246678, + 52.417110301 + ], + [ + 9.52447486, + 52.417032145 + ] + ] + } + }, + { + "identifier": "2025-062958--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_013.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.380385116921694,10.027508220644881,52.36086063422731,10.152962923490218", + "point": "52.380385116921694,10.027508220644881", + "startLcPosition": "98", + "impact": { + "lower": "R\u00f6hrse Nord", + "upper": "Lehrte-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Braunschweig", + "title": "A2 | Lehrte-Ost - R\u00f6hrse Nord", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 52.380385116921694, + "long": 10.027508220644881 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 08.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.08.26)", + "", + "A2: Hannover -> Braunschweig, zwischen 0.8 km hinter AS Lehrte-Ost und 1.0 km vor R\u00f6hrse Nord", + "", + "L\u00e4nge: 8.92 km | Maximale Durchfahrtsbreite: 9.25 m", + "", + "A.12939 - Umr\u00fcstung FRS im MS - Lehrte Ost - AS H\u00e4melerwald" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.027508221, + 52.380385117 + ], + [ + 10.0277436, + 52.380317501 + ], + [ + 10.0343827, + 52.378437501 + ], + [ + 10.0354418, + 52.378138501 + ], + [ + 10.0407024, + 52.376646101 + ], + [ + 10.0473414, + 52.374762101 + ], + [ + 10.054, + 52.372869301 + ], + [ + 10.056653, + 52.372119501 + ], + [ + 10.0599682, + 52.371182801 + ], + [ + 10.0632539, + 52.370226401 + ], + [ + 10.0669903, + 52.369147201 + ], + [ + 10.06986, + 52.368335101 + ], + [ + 10.0711477, + 52.367994201 + ], + [ + 10.0724707, + 52.367676601 + ], + [ + 10.0734034, + 52.367465301 + ], + [ + 10.0743525, + 52.367268101 + ], + [ + 10.0754392, + 52.367060701 + ], + [ + 10.0765509, + 52.366868301 + ], + [ + 10.0777701, + 52.366679101 + ], + [ + 10.0790026, + 52.366509001 + ], + [ + 10.0808197, + 52.366302401 + ], + [ + 10.0826528, + 52.366127601 + ], + [ + 10.08845, + 52.365567601 + ], + [ + 10.095705, + 52.364880601 + ], + [ + 10.1010251, + 52.364376701 + ], + [ + 10.1054322, + 52.363950201 + ], + [ + 10.1066789, + 52.363853901 + ], + [ + 10.107939, + 52.363772201 + ], + [ + 10.1092619, + 52.363704801 + ], + [ + 10.1102838, + 52.363660601 + ], + [ + 10.1127326, + 52.363606601 + ], + [ + 10.1152002, + 52.363574801 + ], + [ + 10.1175674, + 52.363548501 + ], + [ + 10.1179472, + 52.363544301 + ], + [ + 10.1205991, + 52.363498001 + ], + [ + 10.1238818, + 52.363429801 + ], + [ + 10.1260986, + 52.363346301 + ], + [ + 10.1282191, + 52.363239201 + ], + [ + 10.1297158, + 52.363148401 + ], + [ + 10.1314169, + 52.363028401 + ], + [ + 10.1321503, + 52.362966801 + ], + [ + 10.1331142, + 52.362885901 + ], + [ + 10.1355824, + 52.362661501 + ], + [ + 10.1394181, + 52.362263301 + ], + [ + 10.1412215, + 52.362076101 + ], + [ + 10.1453636, + 52.361649301 + ], + [ + 10.1494468, + 52.361231401 + ], + [ + 10.1515995, + 52.360999601 + ], + [ + 10.1525596, + 52.360902101 + ], + [ + 10.152962923, + 52.360860634 + ] + ] + } + }, + { + "identifier": "2025-062958--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_013.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.36100877331201,10.153003462091403,52.38052219378874,10.027612744971776", + "point": "52.36100877331201,10.153003462091403", + "startLcPosition": "101", + "impact": { + "lower": "Lehrte-Ost", + "upper": "R\u00f6hrse Nord", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Braunschweig -> Hannover", + "title": "A2 | R\u00f6hrse Nord - Lehrte-Ost", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 52.36100877331201, + "long": 10.153003462091403 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 08.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.08.26)", + "", + "A2: Braunschweig -> Hannover, zwischen 1.0 km hinter R\u00f6hrse Nord und 0.8 km vor AS Lehrte-Ost", + "", + "L\u00e4nge: 8.92 km | Maximale Durchfahrtsbreite: 9.25 m", + "", + "A.12939 - Umr\u00fcstung FRS im MS - Lehrte Ost - AS H\u00e4melerwald" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.153003462, + 52.361008773 + ], + [ + 10.1529563, + 52.361013601 + ], + [ + 10.1474073, + 52.361587901 + ], + [ + 10.1443215, + 52.361909701 + ], + [ + 10.1394437, + 52.362410901 + ], + [ + 10.1380659, + 52.362551101 + ], + [ + 10.1356159, + 52.362809701 + ], + [ + 10.1331565, + 52.363039801 + ], + [ + 10.1321841, + 52.363118001 + ], + [ + 10.1301281, + 52.363265901 + ], + [ + 10.128075, + 52.363398301 + ], + [ + 10.1259975, + 52.363497601 + ], + [ + 10.1233735, + 52.363589501 + ], + [ + 10.1205733, + 52.363643601 + ], + [ + 10.1175687, + 52.363688901 + ], + [ + 10.1166748, + 52.363701601 + ], + [ + 10.113957, + 52.363738801 + ], + [ + 10.1121292, + 52.363765401 + ], + [ + 10.1103161, + 52.363812901 + ], + [ + 10.1091318, + 52.363859601 + ], + [ + 10.1079417, + 52.363920201 + ], + [ + 10.1066896, + 52.364002101 + ], + [ + 10.1054495, + 52.364099701 + ], + [ + 10.0957497, + 52.365028501 + ], + [ + 10.088501, + 52.365724201 + ], + [ + 10.0808653, + 52.366450701 + ], + [ + 10.0799131, + 52.366555501 + ], + [ + 10.0789816, + 52.366668601 + ], + [ + 10.0777969, + 52.366829001 + ], + [ + 10.0766228, + 52.367014801 + ], + [ + 10.0755291, + 52.367200801 + ], + [ + 10.0744534, + 52.367405501 + ], + [ + 10.0734919, + 52.367607701 + ], + [ + 10.0725351, + 52.367826601 + ], + [ + 10.0712241, + 52.368136701 + ], + [ + 10.0699419, + 52.368478101 + ], + [ + 10.0671246, + 52.369276901 + ], + [ + 10.0659764, + 52.369602501 + ], + [ + 10.0620335, + 52.370757801 + ], + [ + 10.0541046, + 52.373017501 + ], + [ + 10.0474387, + 52.374900701 + ], + [ + 10.0408025, + 52.376784101 + ], + [ + 10.0357678, + 52.378208601 + ], + [ + 10.0347356, + 52.378500601 + ], + [ + 10.027612745, + 52.380522194 + ] + ] + } + }, + { + "identifier": "2025-062958--vi-fbm.2026-04-13_09-00-00-000.devi-zus.2026-04-13_00-00-00-000_013.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.34716834259475,10.207356623709032,52.38994174721767,9.971036805232453", + "point": "52.34716834259475,10.207356623709032", + "startLcPosition": "102", + "impact": { + "lower": "Hannover-Ost", + "upper": "Peine", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Hannover", + "title": "A2 | Peine - Hannover-Ost", + "coordinate": { + "lat": 52.34716834259475, + "long": 10.207356623709032 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Samstag und Sonntag zwischen dem 13.04.26 und dem 05.05.26 von 09:00 bis 15:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 17.04.26 und dem 01.05.26 von 09:00 bis 13:00 Uhr.", + "", + "A2: Braunschweig -> Hannover, zwischen 2.4 km hinter AS Peine und 4.9 km vor AK Hannover-Ost", + "", + "L\u00e4nge: 17.04 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "A.12939 - Umr\u00fcstung FRS im MS - Lehrte Ost - AS H\u00e4melerwald" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.207356624, + 52.347168343 + ], + [ + 10.206944, + 52.347366701 + ], + [ + 10.2054666, + 52.348076801 + ], + [ + 10.2018061, + 52.349819301 + ], + [ + 10.2011689, + 52.350123801 + ], + [ + 10.1952215, + 52.352953601 + ], + [ + 10.1941927, + 52.353445601 + ], + [ + 10.1931519, + 52.353931501 + ], + [ + 10.1925029, + 52.354223801 + ], + [ + 10.1918216, + 52.354516201 + ], + [ + 10.1911403, + 52.354799601 + ], + [ + 10.1904246, + 52.355083201 + ], + [ + 10.1893554, + 52.355481101 + ], + [ + 10.1889493, + 52.355624401 + ], + [ + 10.1882824, + 52.355864401 + ], + [ + 10.1876022, + 52.356090501 + ], + [ + 10.1862104, + 52.356529801 + ], + [ + 10.1851791, + 52.356829501 + ], + [ + 10.1841246, + 52.357129101 + ], + [ + 10.182629, + 52.357488601 + ], + [ + 10.1813045, + 52.357791301 + ], + [ + 10.1806347, + 52.357924401 + ], + [ + 10.179529, + 52.358143101 + ], + [ + 10.1784205, + 52.358337501 + ], + [ + 10.1765519, + 52.358621101 + ], + [ + 10.1759054, + 52.358712301 + ], + [ + 10.1752531, + 52.358795201 + ], + [ + 10.174107, + 52.358925101 + ], + [ + 10.1729043, + 52.359045701 + ], + [ + 10.1704008, + 52.359271801 + ], + [ + 10.1685778, + 52.359428701 + ], + [ + 10.1681448, + 52.359470101 + ], + [ + 10.1662736, + 52.359645201 + ], + [ + 10.1644067, + 52.359831901 + ], + [ + 10.1606759, + 52.360231101 + ], + [ + 10.1583606, + 52.360460601 + ], + [ + 10.1540084, + 52.360905901 + ], + [ + 10.1529563, + 52.361013601 + ], + [ + 10.1474073, + 52.361587901 + ], + [ + 10.1443215, + 52.361909701 + ], + [ + 10.1394437, + 52.362410901 + ], + [ + 10.1380659, + 52.362551101 + ], + [ + 10.1356159, + 52.362809701 + ], + [ + 10.1331565, + 52.363039801 + ], + [ + 10.1321841, + 52.363118001 + ], + [ + 10.1301281, + 52.363265901 + ], + [ + 10.128075, + 52.363398301 + ], + [ + 10.1259975, + 52.363497601 + ], + [ + 10.1233735, + 52.363589501 + ], + [ + 10.1205733, + 52.363643601 + ], + [ + 10.1175687, + 52.363688901 + ], + [ + 10.1166748, + 52.363701601 + ], + [ + 10.113957, + 52.363738801 + ], + [ + 10.1121292, + 52.363765401 + ], + [ + 10.1103161, + 52.363812901 + ], + [ + 10.1091318, + 52.363859601 + ], + [ + 10.1079417, + 52.363920201 + ], + [ + 10.1066896, + 52.364002101 + ], + [ + 10.1054495, + 52.364099701 + ], + [ + 10.0957497, + 52.365028501 + ], + [ + 10.088501, + 52.365724201 + ], + [ + 10.0808653, + 52.366450701 + ], + [ + 10.0799131, + 52.366555501 + ], + [ + 10.0789816, + 52.366668601 + ], + [ + 10.0777969, + 52.366829001 + ], + [ + 10.0766228, + 52.367014801 + ], + [ + 10.0755291, + 52.367200801 + ], + [ + 10.0744534, + 52.367405501 + ], + [ + 10.0734919, + 52.367607701 + ], + [ + 10.0725351, + 52.367826601 + ], + [ + 10.0712241, + 52.368136701 + ], + [ + 10.0699419, + 52.368478101 + ], + [ + 10.0671246, + 52.369276901 + ], + [ + 10.0659764, + 52.369602501 + ], + [ + 10.0620335, + 52.370757801 + ], + [ + 10.0541046, + 52.373017501 + ], + [ + 10.0474387, + 52.374900701 + ], + [ + 10.0408025, + 52.376784101 + ], + [ + 10.0357678, + 52.378208601 + ], + [ + 10.0347356, + 52.378500601 + ], + [ + 10.0274552, + 52.380566901 + ], + [ + 10.0245139, + 52.381439401 + ], + [ + 10.0219387, + 52.382176401 + ], + [ + 10.0203683, + 52.382607601 + ], + [ + 10.0196542, + 52.382795001 + ], + [ + 10.0187758, + 52.383022801 + ], + [ + 10.0174479, + 52.383363101 + ], + [ + 10.0165956, + 52.383575101 + ], + [ + 10.0158161, + 52.383763201 + ], + [ + 10.0138839, + 52.384217101 + ], + [ + 10.012776, + 52.384469101 + ], + [ + 10.01148, + 52.384752901 + ], + [ + 10.0068181, + 52.385747101 + ], + [ + 10.0060896, + 52.385908301 + ], + [ + 10.0032592, + 52.386561101 + ], + [ + 10.0022315, + 52.386802601 + ], + [ + 10.0018726, + 52.386888401 + ], + [ + 10.0008441, + 52.387131801 + ], + [ + 9.9987416, + 52.387602501 + ], + [ + 9.9972005, + 52.387917001 + ], + [ + 9.9954715, + 52.388210801 + ], + [ + 9.9942341, + 52.388401301 + ], + [ + 9.9932941, + 52.388524101 + ], + [ + 9.9919855, + 52.388676501 + ], + [ + 9.9906658, + 52.388817501 + ], + [ + 9.9883944, + 52.388974001 + ], + [ + 9.9878515, + 52.389000801 + ], + [ + 9.9864456, + 52.389078501 + ], + [ + 9.9858562, + 52.389103601 + ], + [ + 9.9846387, + 52.389158701 + ], + [ + 9.9830936, + 52.389231101 + ], + [ + 9.981636, + 52.389314201 + ], + [ + 9.9795285, + 52.389448401 + ], + [ + 9.9772037, + 52.389609901 + ], + [ + 9.9749692, + 52.389750801 + ], + [ + 9.9741744, + 52.389794801 + ], + [ + 9.9718326, + 52.389909901 + ], + [ + 9.9711347, + 52.389937801 + ], + [ + 9.971036805, + 52.389941747 + ] + ] + } + }, + { + "identifier": "2026-017797--vi-bs.2026-04-09_14-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.307611297315674,10.837285319908183,52.309712559855065,10.829248159006248", + "point": "52.307611297315674,10.837285319908183", + "startLcPosition": "115", + "impact": { + "lower": "K\u00f6nigslutter", + "upper": "Uhry S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Braunschweig", + "title": "A2 | Uhry S\u00fcd - K\u00f6nigslutter", + "coordinate": { + "lat": 52.307611297315674, + "long": 10.837285319908183 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 14:00 bis zum 10.04.26 02:00 Uhr.", + "", + "A2: Magdeburg -> Braunschweig, zwischen 0.3 km hinter Uhry S\u00fcd und 0.9 km vor AS K\u00f6nigslutter", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Fahrbahnsanierung nach Lkw-Brand" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.83728532, + 52.307611297 + ], + [ + 10.8370724, + 52.307676301 + ], + [ + 10.8358494, + 52.308058901 + ], + [ + 10.8349095, + 52.308340601 + ], + [ + 10.8339297, + 52.308619601 + ], + [ + 10.8329596, + 52.308875601 + ], + [ + 10.8323659, + 52.309021701 + ], + [ + 10.8317039, + 52.309184701 + ], + [ + 10.8307263, + 52.309407901 + ], + [ + 10.8299857, + 52.309564701 + ], + [ + 10.829248159, + 52.30971256 + ] + ] + } + }, + { + "identifier": "2026-016861--vi-bs.2026-04-07_19-00-00-000.devi-bs.2026-04-07_19-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.268792037925124,10.96558356699557,52.26998278501028,10.95705078702117", + "point": "52.268792037925124,10.96558356699557", + "startLcPosition": "118", + "impact": { + "lower": "Rennau", + "upper": "Helmstedt-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Braunschweig", + "title": "A2 | Helmstedt-West - Rennau", + "coordinate": { + "lat": 52.268792037925124, + "long": 10.96558356699557 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A2: Magdeburg -> Braunschweig, zwischen 1.6 km hinter AS Helmstedt-West und 2.7 km vor AS Rennau", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Beseitigung von Fahrbahnsch\u00e4den" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.965583567, + 52.268792038 + ], + [ + 10.9635468, + 52.269018301 + ], + [ + 10.9615316, + 52.269243101 + ], + [ + 10.9606606, + 52.269356701 + ], + [ + 10.9601768, + 52.269420101 + ], + [ + 10.959852, + 52.269468401 + ], + [ + 10.9589687, + 52.269614101 + ], + [ + 10.9581045, + 52.269772301 + ], + [ + 10.9574997, + 52.269889901 + ], + [ + 10.957050787, + 52.269982785 + ] + ] + } + }, + { + "identifier": "2026-013341--vi-bs.2026-04-14_18-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.220136519189765,11.055240476689711,52.216899460689646,11.071896814033057", + "point": "52.220136519189765,11.055240476689711", + "startLcPosition": "122", + "impact": { + "lower": "Marienborn/Helmstedt", + "upper": "Waldkater", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Magdeburg", + "title": "A2 | Waldkater - Marienborn/Helmstedt", + "coordinate": { + "lat": 52.220136519189765, + "long": 11.055240476689711 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:00 bis zum 15.04.26 02:00 Uhr.", + "", + "A2: Braunschweig -> Magdeburg, zwischen 0.8 km hinter Waldkater und 0.3 km vor AS Marienborn/Helmstedt", + "", + "L\u00e4nge: 1.21 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "BAB 2 T.u.R. Marienborn FR Berlin " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.055240477, + 52.220136519 + ], + [ + 11.0554845, + 52.220044801 + ], + [ + 11.0565256, + 52.219643701 + ], + [ + 11.0570982, + 52.219434501 + ], + [ + 11.0576622, + 52.219241701 + ], + [ + 11.0584787, + 52.218969801 + ], + [ + 11.0590953, + 52.218780801 + ], + [ + 11.0597778, + 52.218583001 + ], + [ + 11.0604931, + 52.218389401 + ], + [ + 11.0611889, + 52.218215001 + ], + [ + 11.0619742, + 52.218037501 + ], + [ + 11.0625646, + 52.217909001 + ], + [ + 11.0632496, + 52.217772601 + ], + [ + 11.0642387, + 52.217601901 + ], + [ + 11.0647587, + 52.217517101 + ], + [ + 11.0652892, + 52.217439901 + ], + [ + 11.0658797, + 52.217359001 + ], + [ + 11.066584, + 52.217273401 + ], + [ + 11.0673994, + 52.217186701 + ], + [ + 11.0681296, + 52.217128501 + ], + [ + 11.0691124, + 52.217058301 + ], + [ + 11.0716602, + 52.216913101 + ], + [ + 11.071896814, + 52.216899461 + ] + ] + } + }, + { + "identifier": "2024-003233--vi-bs.2026-03-23_10-15-00-000.devi-zus.2026-03-02_00-00-00-000_001.de39", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.214044485790794,11.094114275054118,52.187120012659726,11.3865225825565", + "point": "52.214044485790794,11.094114275054118", + "startLcPosition": "125", + "impact": { + "lower": "B\u00f6rde", + "upper": "Marienborn", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Braunschweig -> Magdeburg", + "title": "A2 | Marienborn - B\u00f6rde", + "startTimestamp": "2026-03-23T10:15:00+01:00", + "coordinate": { + "lat": 52.214044485790794, + "long": 11.094114275054118 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 10:15 Uhr", + "Ende: 24.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.12.26)", + "", + "A2: Braunschweig -> Magdeburg, zwischen 0.9 km hinter Marienborn und 4.6 km vor B\u00f6rde", + "", + "L\u00e4nge: 20.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A2 2. TA RF H Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.094114275, + 52.214044486 + ], + [ + 11.0941963, + 52.214017801 + ], + [ + 11.0954072, + 52.213583601 + ], + [ + 11.0969724, + 52.213017301 + ], + [ + 11.0975006, + 52.212833501 + ], + [ + 11.0980212, + 52.212654201 + ], + [ + 11.0989385, + 52.212362201 + ], + [ + 11.0993319, + 52.212239601 + ], + [ + 11.0996942, + 52.212130101 + ], + [ + 11.1003968, + 52.211932001 + ], + [ + 11.1012161, + 52.211705801 + ], + [ + 11.1032052, + 52.211176501 + ], + [ + 11.1051215, + 52.210662601 + ], + [ + 11.1070119, + 52.210164101 + ], + [ + 11.1080661, + 52.209891701 + ], + [ + 11.1089108, + 52.209683701 + ], + [ + 11.1095746, + 52.209523301 + ], + [ + 11.1104827, + 52.209319001 + ], + [ + 11.1115423, + 52.209090001 + ], + [ + 11.1122076, + 52.208954001 + ], + [ + 11.1127952, + 52.208845701 + ], + [ + 11.1136778, + 52.208692301 + ], + [ + 11.1141331, + 52.208621001 + ], + [ + 11.1145542, + 52.208558301 + ], + [ + 11.1150597, + 52.208484601 + ], + [ + 11.1155692, + 52.208419001 + ], + [ + 11.1160889, + 52.208356601 + ], + [ + 11.1166139, + 52.208300401 + ], + [ + 11.1176524, + 52.208203501 + ], + [ + 11.1186905, + 52.208121701 + ], + [ + 11.1195938, + 52.208057901 + ], + [ + 11.1197372, + 52.208047101 + ], + [ + 11.1223805, + 52.207870201 + ], + [ + 11.1257965, + 52.207637901 + ], + [ + 11.1264742, + 52.207591601 + ], + [ + 11.1266575, + 52.207578601 + ], + [ + 11.1315996, + 52.207248601 + ], + [ + 11.1320377, + 52.207221801 + ], + [ + 11.1324897, + 52.207199201 + ], + [ + 11.1335125, + 52.207155801 + ], + [ + 11.1339575, + 52.207144301 + ], + [ + 11.1344105, + 52.207135201 + ], + [ + 11.1350401, + 52.207132401 + ], + [ + 11.1356624, + 52.207139901 + ], + [ + 11.1363815, + 52.207157601 + ], + [ + 11.1367965, + 52.207172901 + ], + [ + 11.1371863, + 52.207191101 + ], + [ + 11.1377136, + 52.207222901 + ], + [ + 11.1380909, + 52.207249201 + ], + [ + 11.1386135, + 52.207286301 + ], + [ + 11.1389495, + 52.207314901 + ], + [ + 11.1392642, + 52.207340901 + ], + [ + 11.1405657, + 52.207455501 + ], + [ + 11.1414612, + 52.207537401 + ], + [ + 11.1420058, + 52.207586201 + ], + [ + 11.1462206, + 52.207968901 + ], + [ + 11.1463537, + 52.207981801 + ], + [ + 11.1474366, + 52.208077901 + ], + [ + 11.1482143, + 52.208148401 + ], + [ + 11.1489749, + 52.208214101 + ], + [ + 11.1498578, + 52.208280901 + ], + [ + 11.1503002, + 52.208310101 + ], + [ + 11.1506456, + 52.208332901 + ], + [ + 11.1510497, + 52.208354301 + ], + [ + 11.1514635, + 52.208375301 + ], + [ + 11.1518553, + 52.208392001 + ], + [ + 11.1522249, + 52.208407401 + ], + [ + 11.1526758, + 52.208422101 + ], + [ + 11.1531509, + 52.208435201 + ], + [ + 11.153809, + 52.208448101 + ], + [ + 11.1543539, + 52.208453301 + ], + [ + 11.1548751, + 52.208455401 + ], + [ + 11.1554124, + 52.208452701 + ], + [ + 11.1559568, + 52.208445801 + ], + [ + 11.156743, + 52.208427901 + ], + [ + 11.1574293, + 52.208407101 + ], + [ + 11.1575745, + 52.208402101 + ], + [ + 11.1582313, + 52.208371601 + ], + [ + 11.1588526, + 52.208338601 + ], + [ + 11.1592473, + 52.208316701 + ], + [ + 11.1596498, + 52.208289101 + ], + [ + 11.160709, + 52.208209201 + ], + [ + 11.1614987, + 52.208138601 + ], + [ + 11.16229, + 52.208059501 + ], + [ + 11.1630681, + 52.207970601 + ], + [ + 11.1635184, + 52.207916601 + ], + [ + 11.163999, + 52.207854201 + ], + [ + 11.1645121, + 52.207782801 + ], + [ + 11.1648764, + 52.207730701 + ], + [ + 11.1658365, + 52.207583301 + ], + [ + 11.1664777, + 52.207477301 + ], + [ + 11.1671292, + 52.207363101 + ], + [ + 11.167309, + 52.207328801 + ], + [ + 11.1678741, + 52.207222401 + ], + [ + 11.1684921, + 52.207098701 + ], + [ + 11.1694901, + 52.206889701 + ], + [ + 11.1704897, + 52.206665901 + ], + [ + 11.1717333, + 52.206378101 + ], + [ + 11.1737163, + 52.205911101 + ], + [ + 11.176186, + 52.205331801 + ], + [ + 11.1781909, + 52.204858301 + ], + [ + 11.1784725, + 52.204792301 + ], + [ + 11.1804145, + 52.204337501 + ], + [ + 11.1810935, + 52.204181001 + ], + [ + 11.1814959, + 52.204088301 + ], + [ + 11.1819094, + 52.203993001 + ], + [ + 11.1823824, + 52.203884001 + ], + [ + 11.1831254, + 52.203719701 + ], + [ + 11.1836506, + 52.203610201 + ], + [ + 11.1842723, + 52.203481001 + ], + [ + 11.1849029, + 52.203360501 + ], + [ + 11.1854043, + 52.203270201 + ], + [ + 11.1858718, + 52.203188001 + ], + [ + 11.1864211, + 52.203097601 + ], + [ + 11.1869484, + 52.203014901 + ], + [ + 11.1874769, + 52.202936601 + ], + [ + 11.188003, + 52.202862801 + ], + [ + 11.1886594, + 52.202779601 + ], + [ + 11.1892863, + 52.202704601 + ], + [ + 11.1898461, + 52.202643001 + ], + [ + 11.1904084, + 52.202587501 + ], + [ + 11.1910328, + 52.202529201 + ], + [ + 11.1916659, + 52.202476301 + ], + [ + 11.1926976, + 52.202395801 + ], + [ + 11.1929931, + 52.202374101 + ], + [ + 11.1935388, + 52.202337301 + ], + [ + 11.1946631, + 52.202269101 + ], + [ + 11.1955341, + 52.202220301 + ], + [ + 11.1964051, + 52.202175101 + ], + [ + 11.1996119, + 52.202021501 + ], + [ + 11.2013867, + 52.201934301 + ], + [ + 11.2017904, + 52.201915401 + ], + [ + 11.2171865, + 52.201173401 + ], + [ + 11.2205222, + 52.201011601 + ], + [ + 11.2206618, + 52.201004401 + ], + [ + 11.2225923, + 52.200911601 + ], + [ + 11.225959, + 52.200749701 + ], + [ + 11.2276824, + 52.200669501 + ], + [ + 11.2294167, + 52.200579001 + ], + [ + 11.2299199, + 52.200557801 + ], + [ + 11.2316235, + 52.200473401 + ], + [ + 11.2330458, + 52.200400201 + ], + [ + 11.2344471, + 52.200314101 + ], + [ + 11.2352082, + 52.200262901 + ], + [ + 11.2359889, + 52.200205601 + ], + [ + 11.2370513, + 52.200116401 + ], + [ + 11.2377197, + 52.200054801 + ], + [ + 11.2383612, + 52.199995101 + ], + [ + 11.238523, + 52.199978001 + ], + [ + 11.2389133, + 52.199935901 + ], + [ + 11.2393404, + 52.199892301 + ], + [ + 11.2395893, + 52.199864001 + ], + [ + 11.2410999, + 52.199693701 + ], + [ + 11.2419199, + 52.199590801 + ], + [ + 11.2426118, + 52.199501201 + ], + [ + 11.2435101, + 52.199386901 + ], + [ + 11.2443314, + 52.199278301 + ], + [ + 11.2466159, + 52.198973701 + ], + [ + 11.2479098, + 52.198804801 + ], + [ + 11.2491476, + 52.198637801 + ], + [ + 11.2506559, + 52.198435901 + ], + [ + 11.2506893, + 52.198431201 + ], + [ + 11.2528077, + 52.198150201 + ], + [ + 11.2537661, + 52.198024501 + ], + [ + 11.254002, + 52.197990701 + ], + [ + 11.2550475, + 52.197852001 + ], + [ + 11.2560441, + 52.197718901 + ], + [ + 11.2572473, + 52.197559901 + ], + [ + 11.2585133, + 52.197390201 + ], + [ + 11.259777, + 52.197219201 + ], + [ + 11.261009, + 52.197057401 + ], + [ + 11.2612825, + 52.197020901 + ], + [ + 11.2624217, + 52.196868801 + ], + [ + 11.2631298, + 52.196774401 + ], + [ + 11.26336, + 52.196745301 + ], + [ + 11.2642429, + 52.196626701 + ], + [ + 11.2654115, + 52.196471001 + ], + [ + 11.2655771, + 52.196448901 + ], + [ + 11.2663529, + 52.196345401 + ], + [ + 11.2678667, + 52.196142901 + ], + [ + 11.2687265, + 52.196028101 + ], + [ + 11.2696934, + 52.195898101 + ], + [ + 11.2699876, + 52.195861501 + ], + [ + 11.2706969, + 52.195766801 + ], + [ + 11.2721222, + 52.195576601 + ], + [ + 11.2732854, + 52.195420801 + ], + [ + 11.2745172, + 52.195253401 + ], + [ + 11.275712, + 52.195094201 + ], + [ + 11.2770246, + 52.194919301 + ], + [ + 11.2781136, + 52.194776301 + ], + [ + 11.279188, + 52.194631601 + ], + [ + 11.2802721, + 52.194485101 + ], + [ + 11.2818848, + 52.194272501 + ], + [ + 11.2839099, + 52.194002501 + ], + [ + 11.2876682, + 52.193498101 + ], + [ + 11.2912432, + 52.193022901 + ], + [ + 11.2925139, + 52.192854001 + ], + [ + 11.2955149, + 52.192453401 + ], + [ + 11.2957117, + 52.192422601 + ], + [ + 11.2967889, + 52.192282201 + ], + [ + 11.2983829, + 52.192069001 + ], + [ + 11.2991793, + 52.191971201 + ], + [ + 11.3002082, + 52.191844701 + ], + [ + 11.3009548, + 52.191758401 + ], + [ + 11.301976, + 52.191646401 + ], + [ + 11.3022168, + 52.191620101 + ], + [ + 11.3036309, + 52.191479301 + ], + [ + 11.3048324, + 52.191368101 + ], + [ + 11.3059725, + 52.191269001 + ], + [ + 11.3070956, + 52.191170301 + ], + [ + 11.3081746, + 52.191075701 + ], + [ + 11.3093378, + 52.190972601 + ], + [ + 11.3111528, + 52.190810201 + ], + [ + 11.3120865, + 52.190728201 + ], + [ + 11.3134389, + 52.190607901 + ], + [ + 11.3151676, + 52.190455501 + ], + [ + 11.3165892, + 52.190328701 + ], + [ + 11.3185417, + 52.190155901 + ], + [ + 11.3199627, + 52.190028201 + ], + [ + 11.3211191, + 52.189926501 + ], + [ + 11.3221326, + 52.189836201 + ], + [ + 11.323433, + 52.189722901 + ], + [ + 11.3244484, + 52.189630001 + ], + [ + 11.3270349, + 52.189402901 + ], + [ + 11.3280816, + 52.189308101 + ], + [ + 11.3295202, + 52.189183201 + ], + [ + 11.3296244, + 52.189173801 + ], + [ + 11.3303983, + 52.189104001 + ], + [ + 11.3317075, + 52.188989201 + ], + [ + 11.3326067, + 52.188908301 + ], + [ + 11.3337481, + 52.188807101 + ], + [ + 11.3350681, + 52.188690301 + ], + [ + 11.3363572, + 52.188576701 + ], + [ + 11.3376586, + 52.188460001 + ], + [ + 11.3387037, + 52.188367301 + ], + [ + 11.3397537, + 52.188276001 + ], + [ + 11.3407779, + 52.188184301 + ], + [ + 11.3414646, + 52.188122901 + ], + [ + 11.3421194, + 52.188065601 + ], + [ + 11.3431649, + 52.187972001 + ], + [ + 11.3442149, + 52.187879401 + ], + [ + 11.3452183, + 52.187791601 + ], + [ + 11.3462985, + 52.187693801 + ], + [ + 11.3473607, + 52.187600501 + ], + [ + 11.3491851, + 52.187437701 + ], + [ + 11.3502371, + 52.187348001 + ], + [ + 11.3510246, + 52.187283801 + ], + [ + 11.3511126, + 52.187276701 + ], + [ + 11.3517069, + 52.187229001 + ], + [ + 11.3520853, + 52.187205001 + ], + [ + 11.3528724, + 52.187151001 + ], + [ + 11.3536696, + 52.187101401 + ], + [ + 11.354083, + 52.187082001 + ], + [ + 11.3544726, + 52.187064401 + ], + [ + 11.3552447, + 52.187035101 + ], + [ + 11.3558784, + 52.187013901 + ], + [ + 11.3565488, + 52.186998301 + ], + [ + 11.3573809, + 52.186986501 + ], + [ + 11.3586916, + 52.186977501 + ], + [ + 11.3600111, + 52.186981301 + ], + [ + 11.3612099, + 52.186986001 + ], + [ + 11.3623126, + 52.186991501 + ], + [ + 11.3633035, + 52.186996601 + ], + [ + 11.3646492, + 52.187004301 + ], + [ + 11.3653965, + 52.187008801 + ], + [ + 11.3659499, + 52.187011801 + ], + [ + 11.3680226, + 52.187023001 + ], + [ + 11.3686826, + 52.187025001 + ], + [ + 11.3692062, + 52.187030901 + ], + [ + 11.3706303, + 52.187038201 + ], + [ + 11.3714045, + 52.187041401 + ], + [ + 11.3721171, + 52.187044701 + ], + [ + 11.3742282, + 52.187056501 + ], + [ + 11.3752866, + 52.187062401 + ], + [ + 11.3775278, + 52.187075001 + ], + [ + 11.3784705, + 52.187078001 + ], + [ + 11.3805744, + 52.187090101 + ], + [ + 11.3829592, + 52.187100001 + ], + [ + 11.384016, + 52.187107901 + ], + [ + 11.3853452, + 52.187114101 + ], + [ + 11.3863961, + 52.187119401 + ], + [ + 11.386522583, + 52.187120013 + ] + ] + } + }, + { + "identifier": "2026-017699--vi-bs.2026-04-09_07-00-00-000_016.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.20775708114604,11.164691942105502,52.20701407675796,11.16889619650042", + "point": "52.20775708114604,11.164691942105502", + "startLcPosition": "126", + "impact": { + "lower": "Lorkberg", + "upper": "Alleringersleben", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Magdeburg", + "title": "A2 | Alleringersleben - Lorkberg", + "coordinate": { + "lat": 52.20775708114604, + "long": 11.164691942105502 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "", + "A2: Braunschweig -> Magdeburg, zwischen 2.1 km hinter AS Alleringersleben und 5.4 km vor Lorkberg", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 von Alleringersleben (AS) nach Lorkberg (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.164691942, + 52.207757081 + ], + [ + 11.1648764, + 52.207730701 + ], + [ + 11.1658365, + 52.207583301 + ], + [ + 11.1664777, + 52.207477301 + ], + [ + 11.1671292, + 52.207363101 + ], + [ + 11.167309, + 52.207328801 + ], + [ + 11.1678741, + 52.207222401 + ], + [ + 11.1684921, + 52.207098701 + ], + [ + 11.168896197, + 52.207014077 + ] + ] + } + }, + { + "identifier": "2024-003233--vi-bs.2026-03-24_08-00-00-000.devi-zus.2026-03-02_00-00-00-000_001.de47", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.19596396929291,11.269203499426181,52.18705158579571,11.37334802714451", + "point": "52.19596396929291,11.269203499426181", + "startLcPosition": "127", + "impact": { + "lower": "B\u00f6rde", + "upper": "Lorkberg", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Braunschweig -> Magdeburg", + "title": "A2 | Lorkberg - B\u00f6rde", + "startTimestamp": "2026-03-24T08:00:00+01:00", + "coordinate": { + "lat": 52.19596396929291, + "long": 11.269203499426181 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 08:00 Uhr", + "Ende: 15.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.12.26)", + "", + "A2: Braunschweig -> Magdeburg, zwischen 1.6 km hinter Lorkberg und 5.5 km vor B\u00f6rde", + "", + "L\u00e4nge: 7.21 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A2 2. TA RF H Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.269203499, + 52.195963969 + ], + [ + 11.2696934, + 52.195898101 + ], + [ + 11.2699876, + 52.195861501 + ], + [ + 11.2706969, + 52.195766801 + ], + [ + 11.2721222, + 52.195576601 + ], + [ + 11.2732854, + 52.195420801 + ], + [ + 11.2745172, + 52.195253401 + ], + [ + 11.275712, + 52.195094201 + ], + [ + 11.2770246, + 52.194919301 + ], + [ + 11.2781136, + 52.194776301 + ], + [ + 11.279188, + 52.194631601 + ], + [ + 11.2802721, + 52.194485101 + ], + [ + 11.2818848, + 52.194272501 + ], + [ + 11.2839099, + 52.194002501 + ], + [ + 11.2876682, + 52.193498101 + ], + [ + 11.2912432, + 52.193022901 + ], + [ + 11.2925139, + 52.192854001 + ], + [ + 11.2955149, + 52.192453401 + ], + [ + 11.2957117, + 52.192422601 + ], + [ + 11.2967889, + 52.192282201 + ], + [ + 11.2983829, + 52.192069001 + ], + [ + 11.2991793, + 52.191971201 + ], + [ + 11.3002082, + 52.191844701 + ], + [ + 11.3009548, + 52.191758401 + ], + [ + 11.301976, + 52.191646401 + ], + [ + 11.3022168, + 52.191620101 + ], + [ + 11.3036309, + 52.191479301 + ], + [ + 11.3048324, + 52.191368101 + ], + [ + 11.3059725, + 52.191269001 + ], + [ + 11.3070956, + 52.191170301 + ], + [ + 11.3081746, + 52.191075701 + ], + [ + 11.3093378, + 52.190972601 + ], + [ + 11.3111528, + 52.190810201 + ], + [ + 11.3120865, + 52.190728201 + ], + [ + 11.3134389, + 52.190607901 + ], + [ + 11.3151676, + 52.190455501 + ], + [ + 11.3165892, + 52.190328701 + ], + [ + 11.3185417, + 52.190155901 + ], + [ + 11.3199627, + 52.190028201 + ], + [ + 11.3211191, + 52.189926501 + ], + [ + 11.3221326, + 52.189836201 + ], + [ + 11.323433, + 52.189722901 + ], + [ + 11.3244484, + 52.189630001 + ], + [ + 11.3270349, + 52.189402901 + ], + [ + 11.3280816, + 52.189308101 + ], + [ + 11.3295202, + 52.189183201 + ], + [ + 11.3296244, + 52.189173801 + ], + [ + 11.3303983, + 52.189104001 + ], + [ + 11.3317075, + 52.188989201 + ], + [ + 11.3326067, + 52.188908301 + ], + [ + 11.3337481, + 52.188807101 + ], + [ + 11.3350681, + 52.188690301 + ], + [ + 11.3363572, + 52.188576701 + ], + [ + 11.3376586, + 52.188460001 + ], + [ + 11.3387037, + 52.188367301 + ], + [ + 11.3397537, + 52.188276001 + ], + [ + 11.3407779, + 52.188184301 + ], + [ + 11.3414646, + 52.188122901 + ], + [ + 11.3421194, + 52.188065601 + ], + [ + 11.3431649, + 52.187972001 + ], + [ + 11.3442149, + 52.187879401 + ], + [ + 11.3452183, + 52.187791601 + ], + [ + 11.3462985, + 52.187693801 + ], + [ + 11.3473607, + 52.187600501 + ], + [ + 11.3491851, + 52.187437701 + ], + [ + 11.3502371, + 52.187348001 + ], + [ + 11.3510246, + 52.187283801 + ], + [ + 11.3511126, + 52.187276701 + ], + [ + 11.3517069, + 52.187229001 + ], + [ + 11.3520853, + 52.187205001 + ], + [ + 11.3528724, + 52.187151001 + ], + [ + 11.3536696, + 52.187101401 + ], + [ + 11.354083, + 52.187082001 + ], + [ + 11.3544726, + 52.187064401 + ], + [ + 11.3552447, + 52.187035101 + ], + [ + 11.3558784, + 52.187013901 + ], + [ + 11.3565488, + 52.186998301 + ], + [ + 11.3573809, + 52.186986501 + ], + [ + 11.3586916, + 52.186977501 + ], + [ + 11.3600111, + 52.186981301 + ], + [ + 11.3612099, + 52.186986001 + ], + [ + 11.3623126, + 52.186991501 + ], + [ + 11.3633035, + 52.186996601 + ], + [ + 11.3646492, + 52.187004301 + ], + [ + 11.3653965, + 52.187008801 + ], + [ + 11.3659499, + 52.187011801 + ], + [ + 11.3680226, + 52.187023001 + ], + [ + 11.3686826, + 52.187025001 + ], + [ + 11.3692062, + 52.187030901 + ], + [ + 11.3706303, + 52.187038201 + ], + [ + 11.3714045, + 52.187041401 + ], + [ + 11.3721171, + 52.187044701 + ], + [ + 11.373348027, + 52.187051586 + ] + ] + } + }, + { + "identifier": "2024-003233--vi-bs.2026-03-24_08-00-00-000.devi-zus.2026-03-02_00-00-00-000_001.de45", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.18720456322121,11.373345837939949,52.19611871794964,11.269257643017975", + "point": "52.18720456322121,11.373345837939949", + "startLcPosition": "130", + "impact": { + "lower": "Lorkberg", + "upper": "B\u00f6rde", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Magdeburg -> Braunschweig", + "title": "A2 | B\u00f6rde - Lorkberg", + "startTimestamp": "2026-03-24T08:00:00+01:00", + "coordinate": { + "lat": 52.18720456322121, + "long": 11.373345837939949 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 08:00 Uhr", + "Ende: 15.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.12.26)", + "", + "A2: Magdeburg -> Braunschweig, zwischen 5.5 km hinter B\u00f6rde und 1.6 km vor Lorkberg", + "", + "L\u00e4nge: 7.21 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A2 2. TA RF H Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.373345838, + 52.187204563 + ], + [ + 11.3703074, + 52.187188701 + ], + [ + 11.3666397, + 52.187171601 + ], + [ + 11.3659345, + 52.187167301 + ], + [ + 11.3655956, + 52.187165201 + ], + [ + 11.3642715, + 52.187157601 + ], + [ + 11.3632423, + 52.187149801 + ], + [ + 11.3619215, + 52.187144701 + ], + [ + 11.3608481, + 52.187139801 + ], + [ + 11.3597275, + 52.187135201 + ], + [ + 11.3592686, + 52.187134601 + ], + [ + 11.3587964, + 52.187134501 + ], + [ + 11.3581382, + 52.187135301 + ], + [ + 11.3574516, + 52.187142801 + ], + [ + 11.357229, + 52.187146301 + ], + [ + 11.3566091, + 52.187152001 + ], + [ + 11.3555754, + 52.187178801 + ], + [ + 11.3550815, + 52.187195901 + ], + [ + 11.3544472, + 52.187221601 + ], + [ + 11.354019, + 52.187243501 + ], + [ + 11.3533381, + 52.187280701 + ], + [ + 11.3527502, + 52.187314001 + ], + [ + 11.3519398, + 52.187369901 + ], + [ + 11.3511507, + 52.187430401 + ], + [ + 11.3508921, + 52.187450201 + ], + [ + 11.3499031, + 52.187534201 + ], + [ + 11.3492276, + 52.187591701 + ], + [ + 11.3485582, + 52.187651601 + ], + [ + 11.3467448, + 52.187813901 + ], + [ + 11.3459716, + 52.187882601 + ], + [ + 11.3454503, + 52.187927201 + ], + [ + 11.3450782, + 52.187960001 + ], + [ + 11.3444387, + 52.188015701 + ], + [ + 11.3433985, + 52.188108701 + ], + [ + 11.3420771, + 52.188227301 + ], + [ + 11.3407899, + 52.188340801 + ], + [ + 11.3395144, + 52.188454501 + ], + [ + 11.3384465, + 52.188547501 + ], + [ + 11.3371585, + 52.188662401 + ], + [ + 11.3358522, + 52.188777301 + ], + [ + 11.3340776, + 52.188935201 + ], + [ + 11.3326316, + 52.189062501 + ], + [ + 11.3317565, + 52.189142801 + ], + [ + 11.3306659, + 52.189235901 + ], + [ + 11.3296491, + 52.189330201 + ], + [ + 11.3283579, + 52.189441801 + ], + [ + 11.3268176, + 52.189578201 + ], + [ + 11.3257619, + 52.189672001 + ], + [ + 11.3244767, + 52.189784501 + ], + [ + 11.3234217, + 52.189880201 + ], + [ + 11.3219342, + 52.190010601 + ], + [ + 11.3200214, + 52.190182301 + ], + [ + 11.3190077, + 52.190272501 + ], + [ + 11.3178836, + 52.190372001 + ], + [ + 11.316619, + 52.190480701 + ], + [ + 11.315213, + 52.190606301 + ], + [ + 11.3134527, + 52.190762401 + ], + [ + 11.3121102, + 52.190880301 + ], + [ + 11.3111322, + 52.190966801 + ], + [ + 11.3093967, + 52.191122001 + ], + [ + 11.3080221, + 52.191244601 + ], + [ + 11.3071319, + 52.191322601 + ], + [ + 11.3060293, + 52.191419401 + ], + [ + 11.3048649, + 52.191521501 + ], + [ + 11.3036773, + 52.191633901 + ], + [ + 11.3030075, + 52.191697101 + ], + [ + 11.3024605, + 52.191752301 + ], + [ + 11.3022089, + 52.191779001 + ], + [ + 11.2998908, + 52.192064801 + ], + [ + 11.2957933, + 52.192570401 + ], + [ + 11.2955931, + 52.192597701 + ], + [ + 11.2944412, + 52.192754101 + ], + [ + 11.292566, + 52.193004101 + ], + [ + 11.2913069, + 52.193171001 + ], + [ + 11.2895165, + 52.193410401 + ], + [ + 11.287741, + 52.193649901 + ], + [ + 11.2857457, + 52.193915201 + ], + [ + 11.2819686, + 52.194420601 + ], + [ + 11.2797705, + 52.194713101 + ], + [ + 11.2784072, + 52.194895401 + ], + [ + 11.2762561, + 52.195181101 + ], + [ + 11.2756955, + 52.195257801 + ], + [ + 11.274192, + 52.195457401 + ], + [ + 11.2718359, + 52.195773101 + ], + [ + 11.271199, + 52.195856301 + ], + [ + 11.2701849, + 52.195995301 + ], + [ + 11.2698969, + 52.196035701 + ], + [ + 11.269257643, + 52.196118718 + ] + ] + } + }, + { + "identifier": "2024-003233--vi-bs.2026-03-23_10-15-00-000.devi-zus.2026-03-02_00-00-00-000_001.de41", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.187274090303646,11.386520634868855,52.214176836879695,11.094228548377142", + "point": "52.187274090303646,11.386520634868855", + "startLcPosition": "130", + "impact": { + "lower": "Marienborn", + "upper": "B\u00f6rde", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Magdeburg -> Braunschweig", + "title": "A2 | B\u00f6rde - Marienborn", + "startTimestamp": "2026-03-23T10:15:00+01:00", + "coordinate": { + "lat": 52.187274090303646, + "long": 11.386520634868855 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 10:15 Uhr", + "Ende: 24.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.12.26)", + "", + "A2: Magdeburg -> Braunschweig, zwischen 4.6 km hinter B\u00f6rde und 0.9 km vor Marienborn", + "", + "L\u00e4nge: 20.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A2 2. TA RF H Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.386520635, + 52.18727409 + ], + [ + 11.3852708, + 52.187268201 + ], + [ + 11.3842096, + 52.187262901 + ], + [ + 11.3831909, + 52.187258501 + ], + [ + 11.3813194, + 52.187247701 + ], + [ + 11.37975, + 52.187238201 + ], + [ + 11.3774897, + 52.187228401 + ], + [ + 11.3755452, + 52.187217001 + ], + [ + 11.3744876, + 52.187212201 + ], + [ + 11.3734491, + 52.187205101 + ], + [ + 11.3703074, + 52.187188701 + ], + [ + 11.3666397, + 52.187171601 + ], + [ + 11.3659345, + 52.187167301 + ], + [ + 11.3655956, + 52.187165201 + ], + [ + 11.3642715, + 52.187157601 + ], + [ + 11.3632423, + 52.187149801 + ], + [ + 11.3619215, + 52.187144701 + ], + [ + 11.3608481, + 52.187139801 + ], + [ + 11.3597275, + 52.187135201 + ], + [ + 11.3592686, + 52.187134601 + ], + [ + 11.3587964, + 52.187134501 + ], + [ + 11.3581382, + 52.187135301 + ], + [ + 11.3574516, + 52.187142801 + ], + [ + 11.357229, + 52.187146301 + ], + [ + 11.3566091, + 52.187152001 + ], + [ + 11.3555754, + 52.187178801 + ], + [ + 11.3550815, + 52.187195901 + ], + [ + 11.3544472, + 52.187221601 + ], + [ + 11.354019, + 52.187243501 + ], + [ + 11.3533381, + 52.187280701 + ], + [ + 11.3527502, + 52.187314001 + ], + [ + 11.3519398, + 52.187369901 + ], + [ + 11.3511507, + 52.187430401 + ], + [ + 11.3508921, + 52.187450201 + ], + [ + 11.3499031, + 52.187534201 + ], + [ + 11.3492276, + 52.187591701 + ], + [ + 11.3485582, + 52.187651601 + ], + [ + 11.3467448, + 52.187813901 + ], + [ + 11.3459716, + 52.187882601 + ], + [ + 11.3454503, + 52.187927201 + ], + [ + 11.3450782, + 52.187960001 + ], + [ + 11.3444387, + 52.188015701 + ], + [ + 11.3433985, + 52.188108701 + ], + [ + 11.3420771, + 52.188227301 + ], + [ + 11.3407899, + 52.188340801 + ], + [ + 11.3395144, + 52.188454501 + ], + [ + 11.3384465, + 52.188547501 + ], + [ + 11.3371585, + 52.188662401 + ], + [ + 11.3358522, + 52.188777301 + ], + [ + 11.3340776, + 52.188935201 + ], + [ + 11.3326316, + 52.189062501 + ], + [ + 11.3317565, + 52.189142801 + ], + [ + 11.3306659, + 52.189235901 + ], + [ + 11.3296491, + 52.189330201 + ], + [ + 11.3283579, + 52.189441801 + ], + [ + 11.3268176, + 52.189578201 + ], + [ + 11.3257619, + 52.189672001 + ], + [ + 11.3244767, + 52.189784501 + ], + [ + 11.3234217, + 52.189880201 + ], + [ + 11.3219342, + 52.190010601 + ], + [ + 11.3200214, + 52.190182301 + ], + [ + 11.3190077, + 52.190272501 + ], + [ + 11.3178836, + 52.190372001 + ], + [ + 11.316619, + 52.190480701 + ], + [ + 11.315213, + 52.190606301 + ], + [ + 11.3134527, + 52.190762401 + ], + [ + 11.3121102, + 52.190880301 + ], + [ + 11.3111322, + 52.190966801 + ], + [ + 11.3093967, + 52.191122001 + ], + [ + 11.3080221, + 52.191244601 + ], + [ + 11.3071319, + 52.191322601 + ], + [ + 11.3060293, + 52.191419401 + ], + [ + 11.3048649, + 52.191521501 + ], + [ + 11.3036773, + 52.191633901 + ], + [ + 11.3030075, + 52.191697101 + ], + [ + 11.3024605, + 52.191752301 + ], + [ + 11.3022089, + 52.191779001 + ], + [ + 11.2998908, + 52.192064801 + ], + [ + 11.2957933, + 52.192570401 + ], + [ + 11.2955931, + 52.192597701 + ], + [ + 11.2944412, + 52.192754101 + ], + [ + 11.292566, + 52.193004101 + ], + [ + 11.2913069, + 52.193171001 + ], + [ + 11.2895165, + 52.193410401 + ], + [ + 11.287741, + 52.193649901 + ], + [ + 11.2857457, + 52.193915201 + ], + [ + 11.2819686, + 52.194420601 + ], + [ + 11.2797705, + 52.194713101 + ], + [ + 11.2784072, + 52.194895401 + ], + [ + 11.2762561, + 52.195181101 + ], + [ + 11.2756955, + 52.195257801 + ], + [ + 11.274192, + 52.195457401 + ], + [ + 11.2718359, + 52.195773101 + ], + [ + 11.271199, + 52.195856301 + ], + [ + 11.2701849, + 52.195995301 + ], + [ + 11.2698969, + 52.196035701 + ], + [ + 11.2691954, + 52.196126801 + ], + [ + 11.2670855, + 52.196406901 + ], + [ + 11.2654579, + 52.196623201 + ], + [ + 11.2652434, + 52.196651701 + ], + [ + 11.2636904, + 52.196856301 + ], + [ + 11.2633021, + 52.196910101 + ], + [ + 11.2630499, + 52.196945401 + ], + [ + 11.2624764, + 52.197019901 + ], + [ + 11.2611405, + 52.197197601 + ], + [ + 11.2598426, + 52.197370401 + ], + [ + 11.2588121, + 52.197510301 + ], + [ + 11.2575666, + 52.197677301 + ], + [ + 11.2567563, + 52.197784901 + ], + [ + 11.255696, + 52.197925801 + ], + [ + 11.2544726, + 52.198087901 + ], + [ + 11.2540407, + 52.198144301 + ], + [ + 11.2537842, + 52.198179201 + ], + [ + 11.2532606, + 52.198250201 + ], + [ + 11.2530603, + 52.198275401 + ], + [ + 11.250695, + 52.198591101 + ], + [ + 11.2502784, + 52.198646701 + ], + [ + 11.2491699, + 52.198796801 + ], + [ + 11.2482963, + 52.198911101 + ], + [ + 11.2435552, + 52.199538501 + ], + [ + 11.2431719, + 52.199589201 + ], + [ + 11.2419434, + 52.199747001 + ], + [ + 11.2396667, + 52.200012601 + ], + [ + 11.2389173, + 52.200093401 + ], + [ + 11.2385218, + 52.200135701 + ], + [ + 11.2384451, + 52.200143401 + ], + [ + 11.2370601, + 52.200272301 + ], + [ + 11.2361663, + 52.200345801 + ], + [ + 11.2353169, + 52.200410201 + ], + [ + 11.2345003, + 52.200463101 + ], + [ + 11.2330773, + 52.200552901 + ], + [ + 11.2315718, + 52.200635601 + ], + [ + 11.2299721, + 52.200709901 + ], + [ + 11.2294421, + 52.200734801 + ], + [ + 11.2276751, + 52.200821301 + ], + [ + 11.2260788, + 52.200899301 + ], + [ + 11.2226768, + 52.201069701 + ], + [ + 11.2206733, + 52.201159501 + ], + [ + 11.2205317, + 52.201166101 + ], + [ + 11.2171804, + 52.201330201 + ], + [ + 11.2018148, + 52.202068801 + ], + [ + 11.2014123, + 52.202088801 + ], + [ + 11.1986029, + 52.202225601 + ], + [ + 11.1962485, + 52.202334701 + ], + [ + 11.1946958, + 52.202420001 + ], + [ + 11.193902, + 52.202470701 + ], + [ + 11.1928768, + 52.202538301 + ], + [ + 11.1922154, + 52.202587101 + ], + [ + 11.1915676, + 52.202639101 + ], + [ + 11.191032, + 52.202684701 + ], + [ + 11.1902631, + 52.202759001 + ], + [ + 11.1897417, + 52.202812601 + ], + [ + 11.1893614, + 52.202853801 + ], + [ + 11.1889717, + 52.202899601 + ], + [ + 11.1884539, + 52.202963001 + ], + [ + 11.187943, + 52.203029001 + ], + [ + 11.1874313, + 52.203102101 + ], + [ + 11.1869215, + 52.203177401 + ], + [ + 11.1864095, + 52.203258101 + ], + [ + 11.185905, + 52.203343601 + ], + [ + 11.1854093, + 52.203430701 + ], + [ + 11.1849033, + 52.203523501 + ], + [ + 11.1840137, + 52.203697501 + ], + [ + 11.1831562, + 52.203879401 + ], + [ + 11.1825461, + 52.204012801 + ], + [ + 11.1819337, + 52.204149701 + ], + [ + 11.1804656, + 52.204491101 + ], + [ + 11.1785535, + 52.204943101 + ], + [ + 11.1770335, + 52.205297901 + ], + [ + 11.1748275, + 52.205816601 + ], + [ + 11.1733432, + 52.206165801 + ], + [ + 11.1724122, + 52.206383801 + ], + [ + 11.1708964, + 52.206739901 + ], + [ + 11.1699105, + 52.206959701 + ], + [ + 11.1694295, + 52.207067001 + ], + [ + 11.1689246, + 52.207172701 + ], + [ + 11.1681823, + 52.207323301 + ], + [ + 11.167286, + 52.207492001 + ], + [ + 11.1671131, + 52.207523901 + ], + [ + 11.1665457, + 52.207621001 + ], + [ + 11.1659175, + 52.207729701 + ], + [ + 11.1654065, + 52.207810101 + ], + [ + 11.1643971, + 52.207958601 + ], + [ + 11.1633546, + 52.208094201 + ], + [ + 11.1628439, + 52.208155201 + ], + [ + 11.1623237, + 52.208211601 + ], + [ + 11.1619447, + 52.208251201 + ], + [ + 11.1615534, + 52.208289601 + ], + [ + 11.1610299, + 52.208338101 + ], + [ + 11.1605106, + 52.208380501 + ], + [ + 11.1597343, + 52.208439901 + ], + [ + 11.1592065, + 52.208474401 + ], + [ + 11.1583275, + 52.208522501 + ], + [ + 11.157786, + 52.208548301 + ], + [ + 11.1575487, + 52.208557601 + ], + [ + 11.1563217, + 52.208594601 + ], + [ + 11.1555388, + 52.208607701 + ], + [ + 11.1546067, + 52.208610301 + ], + [ + 11.1539619, + 52.208604201 + ], + [ + 11.1531455, + 52.208589701 + ], + [ + 11.1525913, + 52.208572801 + ], + [ + 11.1516527, + 52.208537901 + ], + [ + 11.1512139, + 52.208516601 + ], + [ + 11.1507749, + 52.208491301 + ], + [ + 11.1502691, + 52.208460901 + ], + [ + 11.150057, + 52.208448101 + ], + [ + 11.1489979, + 52.208369601 + ], + [ + 11.1474405, + 52.208236501 + ], + [ + 11.1463155, + 52.208133101 + ], + [ + 11.1461819, + 52.208122201 + ], + [ + 11.1435324, + 52.207880201 + ], + [ + 11.1409441, + 52.207644301 + ], + [ + 11.1392252, + 52.207494401 + ], + [ + 11.1385762, + 52.207441301 + ], + [ + 11.1381056, + 52.207407001 + ], + [ + 11.1375765, + 52.207370701 + ], + [ + 11.1370405, + 52.207340601 + ], + [ + 11.1365226, + 52.207319301 + ], + [ + 11.1360424, + 52.207303301 + ], + [ + 11.1356053, + 52.207293301 + ], + [ + 11.1352194, + 52.207288701 + ], + [ + 11.1346251, + 52.207289101 + ], + [ + 11.1338568, + 52.207300401 + ], + [ + 11.1334121, + 52.207315101 + ], + [ + 11.1329489, + 52.207331601 + ], + [ + 11.1323438, + 52.207360701 + ], + [ + 11.1318412, + 52.207390101 + ], + [ + 11.1302797, + 52.207490801 + ], + [ + 11.1281968, + 52.207630201 + ], + [ + 11.1269169, + 52.207718001 + ], + [ + 11.1267343, + 52.207730801 + ], + [ + 11.1253858, + 52.207820201 + ], + [ + 11.122437, + 52.208025301 + ], + [ + 11.1212299, + 52.208102901 + ], + [ + 11.1197765, + 52.208200701 + ], + [ + 11.1196305, + 52.208211901 + ], + [ + 11.1187832, + 52.208271801 + ], + [ + 11.118128, + 52.208319301 + ], + [ + 11.1169606, + 52.208420701 + ], + [ + 11.1161697, + 52.208505801 + ], + [ + 11.1150564, + 52.208641601 + ], + [ + 11.1141331, + 52.208780801 + ], + [ + 11.1131231, + 52.208946701 + ], + [ + 11.1124907, + 52.209064701 + ], + [ + 11.1118787, + 52.209183101 + ], + [ + 11.1108694, + 52.209395601 + ], + [ + 11.1096966, + 52.209662501 + ], + [ + 11.1084709, + 52.209959501 + ], + [ + 11.1068506, + 52.210374101 + ], + [ + 11.1052224, + 52.210806201 + ], + [ + 11.1014282, + 52.211820201 + ], + [ + 11.1006135, + 52.212042101 + ], + [ + 11.1000713, + 52.212191201 + ], + [ + 11.0995347, + 52.212349101 + ], + [ + 11.0988386, + 52.212564101 + ], + [ + 11.098339, + 52.212725001 + ], + [ + 11.0976759, + 52.212949201 + ], + [ + 11.0969937, + 52.213189201 + ], + [ + 11.0963251, + 52.213433401 + ], + [ + 11.0953982, + 52.213766201 + ], + [ + 11.0942722, + 52.214162601 + ], + [ + 11.094228548, + 52.214176837 + ] + ] + } + }, + { + "identifier": "2026-017220--vi-bs.2026-04-13_18-00-00-000.devi-zus.2026-04-13_18-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.17561238867056,11.481982495719416,52.164943043837845,11.512487209472539", + "point": "52.17561238867056,11.481982495719416", + "startLcPosition": "130", + "impact": { + "lower": "Magdeburg", + "upper": "B\u00f6rde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Magdeburg", + "title": "A2 | B\u00f6rde - Magdeburg", + "coordinate": { + "lat": 52.17561238867056, + "long": 11.481982495719416 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 18:00 bis 20:00 Uhr", + "14.04.26 von 05:00 bis 06:00 Uhr", + "", + "A2: Braunschweig -> Magdeburg, zwischen 2.3 km hinter B\u00f6rde und 2.3 km vor AK Magdeburg", + "", + "L\u00e4nge: 2.41 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 von Magdeburg-Kannenstieg (AS) nach Magdeburg-Rothensee (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.481982496, + 52.175612389 + ], + [ + 11.4821805, + 52.175537401 + ], + [ + 11.4827069, + 52.175330001 + ], + [ + 11.4832825, + 52.175091701 + ], + [ + 11.4837472, + 52.174902001 + ], + [ + 11.4843586, + 52.174648401 + ], + [ + 11.4848153, + 52.174459001 + ], + [ + 11.4852431, + 52.174282401 + ], + [ + 11.4856833, + 52.174100801 + ], + [ + 11.4867896, + 52.173641101 + ], + [ + 11.4873719, + 52.173404201 + ], + [ + 11.4882025, + 52.173061101 + ], + [ + 11.4890382, + 52.172711901 + ], + [ + 11.4897037, + 52.172435201 + ], + [ + 11.4909854, + 52.171904601 + ], + [ + 11.4916327, + 52.171639001 + ], + [ + 11.4927273, + 52.171188201 + ], + [ + 11.4940682, + 52.170632001 + ], + [ + 11.4951131, + 52.170198701 + ], + [ + 11.4957805, + 52.169926801 + ], + [ + 11.4969254, + 52.169453201 + ], + [ + 11.498057, + 52.168984401 + ], + [ + 11.4991982, + 52.168514001 + ], + [ + 11.5003534, + 52.168046701 + ], + [ + 11.501039, + 52.167779501 + ], + [ + 11.5017361, + 52.167510301 + ], + [ + 11.502289, + 52.167307201 + ], + [ + 11.5033462, + 52.166936801 + ], + [ + 11.5037943, + 52.166787601 + ], + [ + 11.5045361, + 52.166548701 + ], + [ + 11.5054601, + 52.166275201 + ], + [ + 11.506099, + 52.166104001 + ], + [ + 11.5067562, + 52.165937001 + ], + [ + 11.5073861, + 52.165787701 + ], + [ + 11.508021, + 52.165646601 + ], + [ + 11.5086374, + 52.165522001 + ], + [ + 11.5092803, + 52.165400801 + ], + [ + 11.5097848, + 52.165313301 + ], + [ + 11.5102622, + 52.165232301 + ], + [ + 11.510809, + 52.165149201 + ], + [ + 11.5115496, + 52.165050601 + ], + [ + 11.5120707, + 52.164986701 + ], + [ + 11.512487209, + 52.164943044 + ] + ] + } + }, + { + "identifier": "2026-017220--vi-bs.2026-04-13_18-00-00-000.devi-zus.2026-04-13_18-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.17561238867056,11.481982495719416,52.16491323299377,11.512777931030138", + "point": "52.17561238867056,11.481982495719416", + "startLcPosition": "130", + "impact": { + "lower": "Magdeburg", + "upper": "B\u00f6rde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Magdeburg", + "title": "A2 | B\u00f6rde - Magdeburg", + "coordinate": { + "lat": 52.17561238867056, + "long": 11.481982495719416 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A2: Braunschweig -> Magdeburg, zwischen 2.3 km hinter B\u00f6rde und 2.3 km vor AK Magdeburg", + "", + "L\u00e4nge: 2.43 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A2 von Magdeburg-Kannenstieg (AS) nach Magdeburg-Rothensee (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.481982496, + 52.175612389 + ], + [ + 11.4821805, + 52.175537401 + ], + [ + 11.4827069, + 52.175330001 + ], + [ + 11.4832825, + 52.175091701 + ], + [ + 11.4837472, + 52.174902001 + ], + [ + 11.4843586, + 52.174648401 + ], + [ + 11.4848153, + 52.174459001 + ], + [ + 11.4852431, + 52.174282401 + ], + [ + 11.4856833, + 52.174100801 + ], + [ + 11.4867896, + 52.173641101 + ], + [ + 11.4873719, + 52.173404201 + ], + [ + 11.4882025, + 52.173061101 + ], + [ + 11.4890382, + 52.172711901 + ], + [ + 11.4897037, + 52.172435201 + ], + [ + 11.4909854, + 52.171904601 + ], + [ + 11.4916327, + 52.171639001 + ], + [ + 11.4927273, + 52.171188201 + ], + [ + 11.4940682, + 52.170632001 + ], + [ + 11.4951131, + 52.170198701 + ], + [ + 11.4957805, + 52.169926801 + ], + [ + 11.4969254, + 52.169453201 + ], + [ + 11.498057, + 52.168984401 + ], + [ + 11.4991982, + 52.168514001 + ], + [ + 11.5003534, + 52.168046701 + ], + [ + 11.501039, + 52.167779501 + ], + [ + 11.5017361, + 52.167510301 + ], + [ + 11.502289, + 52.167307201 + ], + [ + 11.5033462, + 52.166936801 + ], + [ + 11.5037943, + 52.166787601 + ], + [ + 11.5045361, + 52.166548701 + ], + [ + 11.5054601, + 52.166275201 + ], + [ + 11.506099, + 52.166104001 + ], + [ + 11.5067562, + 52.165937001 + ], + [ + 11.5073861, + 52.165787701 + ], + [ + 11.508021, + 52.165646601 + ], + [ + 11.5086374, + 52.165522001 + ], + [ + 11.5092803, + 52.165400801 + ], + [ + 11.5097848, + 52.165313301 + ], + [ + 11.5102622, + 52.165232301 + ], + [ + 11.510809, + 52.165149201 + ], + [ + 11.5115496, + 52.165050601 + ], + [ + 11.5120707, + 52.164986701 + ], + [ + 11.5127204, + 52.164918601 + ], + [ + 11.512777931, + 52.164913233 + ] + ] + } + }, + { + "identifier": "2026-011446--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_009.de4", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.177394860714784,11.476195392180427,52.174754254738154,11.4841034005885", + "point": "52.177394860714784,11.476195392180427", + "startLcPosition": "130", + "impact": { + "lower": "Irxleben", + "upper": "B\u00f6rde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Braunschweig -> Magdeburg", + "title": "A2 | B\u00f6rde - Irxleben", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 52.177394860714784, + "long": 11.476195392180427 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 31.10.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A2: Braunschweig -> Magdeburg, zwischen 1.8 km hinter B\u00f6rde und 0.4 km vor AS Irxleben", + "", + "L\u00e4nge: 0.62 km | Maximale Durchfahrtsbreite: 9.25 m", + "", + "BAB 2 AS (67) Irxleben Ma\u00dfnahme L47" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.476195392, + 52.177394861 + ], + [ + 11.4772401, + 52.177097101 + ], + [ + 11.4779782, + 52.176887301 + ], + [ + 11.4787986, + 52.176654801 + ], + [ + 11.4796612, + 52.176401501 + ], + [ + 11.4802159, + 52.176232001 + ], + [ + 11.4807652, + 52.176051301 + ], + [ + 11.4812569, + 52.175883501 + ], + [ + 11.4816186, + 52.175750201 + ], + [ + 11.4821805, + 52.175537401 + ], + [ + 11.4827069, + 52.175330001 + ], + [ + 11.4832825, + 52.175091701 + ], + [ + 11.4837472, + 52.174902001 + ], + [ + 11.484103401, + 52.174754255 + ] + ] + } + }, + { + "identifier": "2026-016146--vi-bs.2026-04-09_18-00-00-000.devi-zus.2026-04-09_18-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.16509520268832,11.512528649584391,52.17076394846712,11.494199521854755", + "point": "52.16509520268832,11.512528649584391", + "startLcPosition": "132", + "impact": { + "lower": "Irxleben", + "upper": "Magdeburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Braunschweig", + "title": "A2 | Magdeburg - Irxleben", + "coordinate": { + "lat": 52.16509520268832, + "long": 11.512528649584391 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 18:00 bis 20:00 Uhr", + "10.04.26 von 05:00 bis 06:00 Uhr", + "", + "A2: Magdeburg -> Braunschweig, zwischen 2.3 km hinter AK Magdeburg und 0.4 km vor AS Irxleben", + "", + "L\u00e4nge: 1.42 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 von Magdeburg (AK) nach Irxleben (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.51252865, + 52.165095203 + ], + [ + 11.5124207, + 52.165106101 + ], + [ + 11.5119352, + 52.165158101 + ], + [ + 11.5113933, + 52.165229601 + ], + [ + 11.5108381, + 52.165306101 + ], + [ + 11.5104332, + 52.165363201 + ], + [ + 11.5098149, + 52.165464001 + ], + [ + 11.5092112, + 52.165570801 + ], + [ + 11.5085832, + 52.165690501 + ], + [ + 11.5080985, + 52.165790901 + ], + [ + 11.5076089, + 52.165897901 + ], + [ + 11.5066321, + 52.166132101 + ], + [ + 11.506077, + 52.166273401 + ], + [ + 11.5056533, + 52.166387901 + ], + [ + 11.5047217, + 52.166663201 + ], + [ + 11.5037815, + 52.166960001 + ], + [ + 11.5033695, + 52.167102801 + ], + [ + 11.5028854, + 52.167268201 + ], + [ + 11.5021899, + 52.167519801 + ], + [ + 11.5017595, + 52.167683201 + ], + [ + 11.501313, + 52.167851601 + ], + [ + 11.5004443, + 52.168189401 + ], + [ + 11.4984752, + 52.168996201 + ], + [ + 11.4973526, + 52.169458801 + ], + [ + 11.4962615, + 52.169909601 + ], + [ + 11.4949939, + 52.170433701 + ], + [ + 11.4942968, + 52.170724201 + ], + [ + 11.494199522, + 52.170763948 + ] + ] + } + }, + { + "identifier": "2026-016146--vi-bs.2026-04-09_18-00-00-000.devi-zus.2026-04-09_18-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.16509520268832,11.512528649584391,52.17076394846712,11.494199521854755", + "point": "52.16509520268832,11.512528649584391", + "startLcPosition": "132", + "impact": { + "lower": "Irxleben", + "upper": "Magdeburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Braunschweig", + "title": "A2 | Magdeburg - Irxleben", + "coordinate": { + "lat": 52.16509520268832, + "long": 11.512528649584391 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A2: Magdeburg -> Braunschweig, zwischen 2.3 km hinter AK Magdeburg und 0.4 km vor AS Irxleben", + "", + "L\u00e4nge: 1.42 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A2 von Magdeburg (AK) nach Irxleben (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.51252865, + 52.165095203 + ], + [ + 11.5124207, + 52.165106101 + ], + [ + 11.5119352, + 52.165158101 + ], + [ + 11.5113933, + 52.165229601 + ], + [ + 11.5108381, + 52.165306101 + ], + [ + 11.5104332, + 52.165363201 + ], + [ + 11.5098149, + 52.165464001 + ], + [ + 11.5092112, + 52.165570801 + ], + [ + 11.5085832, + 52.165690501 + ], + [ + 11.5080985, + 52.165790901 + ], + [ + 11.5076089, + 52.165897901 + ], + [ + 11.5066321, + 52.166132101 + ], + [ + 11.506077, + 52.166273401 + ], + [ + 11.5056533, + 52.166387901 + ], + [ + 11.5047217, + 52.166663201 + ], + [ + 11.5037815, + 52.166960001 + ], + [ + 11.5033695, + 52.167102801 + ], + [ + 11.5028854, + 52.167268201 + ], + [ + 11.5021899, + 52.167519801 + ], + [ + 11.5017595, + 52.167683201 + ], + [ + 11.501313, + 52.167851601 + ], + [ + 11.5004443, + 52.168189401 + ], + [ + 11.4984752, + 52.168996201 + ], + [ + 11.4973526, + 52.169458801 + ], + [ + 11.4962615, + 52.169909601 + ], + [ + 11.4949939, + 52.170433701 + ], + [ + 11.4942968, + 52.170724201 + ], + [ + 11.494199522, + 52.170763948 + ] + ] + } + }, + { + "identifier": "2026-011446--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_009.de6", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.16899857579652,11.4984694369975,52.1697996956807,11.496527514940945", + "point": "52.16899857579652,11.4984694369975", + "startLcPosition": "132", + "impact": { + "lower": "Irxleben", + "upper": "Magdeburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Magdeburg -> Braunschweig", + "title": "A2 | Magdeburg - Irxleben", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 52.16899857579652, + "long": 11.4984694369975 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 31.10.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A2: Magdeburg -> Braunschweig, zwischen 3.4 km hinter AK Magdeburg und 0.6 km vor AS Irxleben", + "", + "L\u00e4nge: 0.16 km | Maximale Durchfahrtsbreite: 8.45 m", + "", + "BAB 2 AS (67) Irxleben Ma\u00dfnahme L47" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.498469437, + 52.168998576 + ], + [ + 11.4973526, + 52.169458801 + ], + [ + 11.496527515, + 52.169799696 + ] + ] + } + }, + { + "identifier": "2026-017219--vi-bs.2026-04-14_18-00-00-000.devi-zus.2026-04-14_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.18530343486989,11.614256458366917,52.18779156657065,11.623159177851136", + "point": "52.18530343486989,11.614256458366917", + "startLcPosition": "133", + "impact": { + "lower": "Magdeburg-Rothensee", + "upper": "Magdeburg-Kannenstieg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Berliner Ring", + "title": "A2 | Magdeburg-Kannenstieg - Magdeburg-Rothensee", + "coordinate": { + "lat": 52.18530343486989, + "long": 11.614256458366917 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 18:00 bis 20:00 Uhr", + "15.04.26 von 05:00 bis 06:00 Uhr", + "", + "A2: Braunschweig -> Berliner Ring, zwischen 2.1 km hinter AS Magdeburg-Kannenstieg und 3.9 km vor AS Magdeburg-Rothensee", + "", + "L\u00e4nge: 0.67 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 von Magdeburg-Kannenstieg (AS) nach Magdeburg-Rothensee (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.614256458, + 52.185303435 + ], + [ + 11.6162736, + 52.185839501 + ], + [ + 11.6198973, + 52.186797001 + ], + [ + 11.6203452, + 52.186918201 + ], + [ + 11.6207949, + 52.187042801 + ], + [ + 11.6212409, + 52.187171801 + ], + [ + 11.6218448, + 52.187355201 + ], + [ + 11.622445, + 52.187547501 + ], + [ + 11.6227847, + 52.187661001 + ], + [ + 11.6231244, + 52.187779001 + ], + [ + 11.623159178, + 52.187791567 + ] + ] + } + }, + { + "identifier": "2026-017219--vi-bs.2026-04-14_18-00-00-000.devi-zus.2026-04-14_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.18530343486989,11.614256458366917,52.18779156657065,11.623159177851136", + "point": "52.18530343486989,11.614256458366917", + "startLcPosition": "133", + "impact": { + "lower": "Magdeburg-Rothensee", + "upper": "Magdeburg-Kannenstieg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Berliner Ring", + "title": "A2 | Magdeburg-Kannenstieg - Magdeburg-Rothensee", + "coordinate": { + "lat": 52.18530343486989, + "long": 11.614256458366917 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A2: Braunschweig -> Berliner Ring, zwischen 2.1 km hinter AS Magdeburg-Kannenstieg und 3.9 km vor AS Magdeburg-Rothensee", + "", + "L\u00e4nge: 0.67 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A2 von Magdeburg-Kannenstieg (AS) nach Magdeburg-Rothensee (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.614256458, + 52.185303435 + ], + [ + 11.6162736, + 52.185839501 + ], + [ + 11.6198973, + 52.186797001 + ], + [ + 11.6203452, + 52.186918201 + ], + [ + 11.6207949, + 52.187042801 + ], + [ + 11.6212409, + 52.187171801 + ], + [ + 11.6218448, + 52.187355201 + ], + [ + 11.622445, + 52.187547501 + ], + [ + 11.6227847, + 52.187661001 + ], + [ + 11.6231244, + 52.187779001 + ], + [ + 11.623159178, + 52.187791567 + ] + ] + } + }, + { + "identifier": "2026-016067--vi-bs.2026-04-13_08-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.234589663133676,11.934060568745688,52.23479653197982,11.941370485467033", + "point": "52.234589663133676,11.934060568745688", + "startLcPosition": "139", + "impact": { + "lower": "Ihlegrund", + "upper": "Burg-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Berliner Ring", + "title": "A2 | Burg-Ost - Ihlegrund", + "coordinate": { + "lat": 52.234589663133676, + "long": 11.934060568745688 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:30 Uhr", + "14.04.26 von 08:00 bis 16:30 Uhr", + "", + "A2: Magdeburg -> Berliner Ring, zwischen 2.9 km hinter AS Burg-Ost und 1.8 km vor Ihlegrund", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A2 von Burg-Ost (AS) nach Ihlegrund (Rastplatz) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.934060569, + 52.234589663 + ], + [ + 11.9405281, + 52.234773901 + ], + [ + 11.941370485, + 52.234796532 + ] + ] + } + }, + { + "identifier": "2025-050594--vi-bs.2026-03-09_07-00-00-000_010.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.23499623500245,11.966142036093288,52.235035490830754,11.968381987197578", + "point": "52.23499623500245,11.966142036093288", + "startLcPosition": "139", + "impact": { + "lower": "Theessen", + "upper": "Burg-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Magdeburg -> Berliner Ring", + "title": "A2 | Burg-Ost - Theessen", + "startTimestamp": "2026-03-09T07:00:00+01:00", + "coordinate": { + "lat": 52.23499623500245, + "long": 11.966142036093288 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 07:00 Uhr", + "Ende: 30.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A2: Magdeburg -> Berliner Ring, zwischen 5.1 km hinter AS Burg-Ost und 6.7 km vor AS Theessen", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 3.5 m", + "", + "BAB A2, km 62 - 63,2 RF beide, PWC Ihlegrund, Umbauarbeiten - SLI " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.966142036, + 52.234996235 + ], + [ + 11.9662159, + 52.234987801 + ], + [ + 11.9663361, + 52.234983201 + ], + [ + 11.968381987, + 52.235035491 + ] + ] + } + }, + { + "identifier": "2025-016924--vi-bs.2026-04-13_09-00-00-000.devi-zus.2025-09-01_00-00-00-000_002.de34", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.25201182522539,12.22308177966955,52.26318320576965,12.336965356049268", + "point": "52.25201182522539,12.22308177966955", + "startLcPosition": "142", + "impact": { + "lower": "Wollin", + "upper": "W\u00fcstenforst", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Magdeburg -> Berliner Ring", + "title": "A2 | W\u00fcstenforst - Wollin", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 52.25201182522539, + "long": 12.22308177966955 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 13.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.10.27)", + "", + "A2: Magdeburg -> Berliner Ring, zwischen 5.6 km hinter W\u00fcstenforst und 9.3 km vor AS Wollin", + "", + "L\u00e4nge: 8.35 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A2, Fahrbahnerhaltung zw. AS Brandenburg und LG BB ST (km 18,390-44,200), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.22308178, + 52.252011825 + ], + [ + 12.223264, + 52.251995801 + ], + [ + 12.2243227, + 52.251903001 + ], + [ + 12.2250871, + 52.251835101 + ], + [ + 12.2253664, + 52.251811701 + ], + [ + 12.2255002, + 52.251798501 + ], + [ + 12.2256974, + 52.251781701 + ], + [ + 12.2269268, + 52.251675901 + ], + [ + 12.228762, + 52.251514501 + ], + [ + 12.2316324, + 52.251262801 + ], + [ + 12.2344998, + 52.251011801 + ], + [ + 12.2376307, + 52.250737101 + ], + [ + 12.2404857, + 52.250485601 + ], + [ + 12.2409925, + 52.250441101 + ], + [ + 12.2412114, + 52.250421901 + ], + [ + 12.2414396, + 52.250401901 + ], + [ + 12.2438589, + 52.250190401 + ], + [ + 12.2454751, + 52.250045301 + ], + [ + 12.2540982, + 52.249274001 + ], + [ + 12.2562592, + 52.249087001 + ], + [ + 12.2568627, + 52.249035301 + ], + [ + 12.2606366, + 52.248708801 + ], + [ + 12.2630089, + 52.248498401 + ], + [ + 12.2651779, + 52.248309701 + ], + [ + 12.2657475, + 52.248260201 + ], + [ + 12.2695031, + 52.247931501 + ], + [ + 12.2707366, + 52.247827201 + ], + [ + 12.2728578, + 52.247659801 + ], + [ + 12.2818951, + 52.247024701 + ], + [ + 12.2822732, + 52.247001801 + ], + [ + 12.285431, + 52.246775801 + ], + [ + 12.2865635, + 52.246718601 + ], + [ + 12.287861, + 52.246691001 + ], + [ + 12.288494, + 52.246682901 + ], + [ + 12.289908, + 52.246703801 + ], + [ + 12.2915494, + 52.246779501 + ], + [ + 12.2924649, + 52.246847901 + ], + [ + 12.2934702, + 52.246934601 + ], + [ + 12.2945313, + 52.247067701 + ], + [ + 12.2957656, + 52.247251001 + ], + [ + 12.2965298, + 52.247371701 + ], + [ + 12.2971959, + 52.247498701 + ], + [ + 12.29827, + 52.247704301 + ], + [ + 12.2991088, + 52.247897901 + ], + [ + 12.3009955, + 52.248396101 + ], + [ + 12.3014576, + 52.248539901 + ], + [ + 12.3018166, + 52.248650701 + ], + [ + 12.3025243, + 52.248879101 + ], + [ + 12.3034006, + 52.249185501 + ], + [ + 12.3045658, + 52.249639801 + ], + [ + 12.3052051, + 52.249898701 + ], + [ + 12.3089916, + 52.251490901 + ], + [ + 12.3132099, + 52.253270701 + ], + [ + 12.3138183, + 52.253528401 + ], + [ + 12.3144336, + 52.253777001 + ], + [ + 12.3152918, + 52.254133301 + ], + [ + 12.316681, + 52.254707901 + ], + [ + 12.3178552, + 52.255224301 + ], + [ + 12.3211466, + 52.256605401 + ], + [ + 12.3216667, + 52.256823701 + ], + [ + 12.3230148, + 52.257390201 + ], + [ + 12.3267507, + 52.258960201 + ], + [ + 12.3362777, + 52.262918601 + ], + [ + 12.336965356, + 52.263183206 + ] + ] + } + }, + { + "identifier": "2025-016924--vi-bs.2026-04-07_09-00-00-000.devi-zus.2025-09-01_00-00-00-000_002.de52", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.252010550803405,12.223096271886055,52.25992005758138,12.329060533076095", + "point": "52.252010550803405,12.223096271886055", + "startLcPosition": "142", + "impact": { + "lower": "Wollin", + "upper": "W\u00fcstenforst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Magdeburg -> Berliner Ring", + "title": "A2 | W\u00fcstenforst - Wollin", + "startTimestamp": "2026-04-07T09:00:00+02:00", + "coordinate": { + "lat": 52.252010550803405, + "long": 12.223096271886055 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 09:00 Uhr", + "Ende: 13.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.10.27)", + "", + "A2: Magdeburg -> Berliner Ring, zwischen 5.6 km hinter W\u00fcstenforst und 9.9 km vor AS Wollin", + "", + "L\u00e4nge: 7.7 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A2, Fahrbahnerhaltung zw. AS Brandenburg und LG BB ST (km 18,390-44,200), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.223096272, + 52.252010551 + ], + [ + 12.223264, + 52.251995801 + ], + [ + 12.2243227, + 52.251903001 + ], + [ + 12.2250871, + 52.251835101 + ], + [ + 12.2253664, + 52.251811701 + ], + [ + 12.2255002, + 52.251798501 + ], + [ + 12.2256974, + 52.251781701 + ], + [ + 12.2269268, + 52.251675901 + ], + [ + 12.228762, + 52.251514501 + ], + [ + 12.2316324, + 52.251262801 + ], + [ + 12.2344998, + 52.251011801 + ], + [ + 12.2376307, + 52.250737101 + ], + [ + 12.2404857, + 52.250485601 + ], + [ + 12.2409925, + 52.250441101 + ], + [ + 12.2412114, + 52.250421901 + ], + [ + 12.2414396, + 52.250401901 + ], + [ + 12.2438589, + 52.250190401 + ], + [ + 12.2454751, + 52.250045301 + ], + [ + 12.2540982, + 52.249274001 + ], + [ + 12.2562592, + 52.249087001 + ], + [ + 12.2568627, + 52.249035301 + ], + [ + 12.2606366, + 52.248708801 + ], + [ + 12.2630089, + 52.248498401 + ], + [ + 12.2651779, + 52.248309701 + ], + [ + 12.2657475, + 52.248260201 + ], + [ + 12.2695031, + 52.247931501 + ], + [ + 12.2707366, + 52.247827201 + ], + [ + 12.2728578, + 52.247659801 + ], + [ + 12.2818951, + 52.247024701 + ], + [ + 12.2822732, + 52.247001801 + ], + [ + 12.285431, + 52.246775801 + ], + [ + 12.2865635, + 52.246718601 + ], + [ + 12.287861, + 52.246691001 + ], + [ + 12.288494, + 52.246682901 + ], + [ + 12.289908, + 52.246703801 + ], + [ + 12.2915494, + 52.246779501 + ], + [ + 12.2924649, + 52.246847901 + ], + [ + 12.2934702, + 52.246934601 + ], + [ + 12.2945313, + 52.247067701 + ], + [ + 12.2957656, + 52.247251001 + ], + [ + 12.2965298, + 52.247371701 + ], + [ + 12.2971959, + 52.247498701 + ], + [ + 12.29827, + 52.247704301 + ], + [ + 12.2991088, + 52.247897901 + ], + [ + 12.3009955, + 52.248396101 + ], + [ + 12.3014576, + 52.248539901 + ], + [ + 12.3018166, + 52.248650701 + ], + [ + 12.3025243, + 52.248879101 + ], + [ + 12.3034006, + 52.249185501 + ], + [ + 12.3045658, + 52.249639801 + ], + [ + 12.3052051, + 52.249898701 + ], + [ + 12.3089916, + 52.251490901 + ], + [ + 12.3132099, + 52.253270701 + ], + [ + 12.3138183, + 52.253528401 + ], + [ + 12.3144336, + 52.253777001 + ], + [ + 12.3152918, + 52.254133301 + ], + [ + 12.316681, + 52.254707901 + ], + [ + 12.3178552, + 52.255224301 + ], + [ + 12.3211466, + 52.256605401 + ], + [ + 12.3216667, + 52.256823701 + ], + [ + 12.3230148, + 52.257390201 + ], + [ + 12.3267507, + 52.258960201 + ], + [ + 12.329060533, + 52.259920058 + ] + ] + } + }, + { + "identifier": "2025-016924--vi-bs.2026-04-13_09-00-00-000.devi-zus.2025-09-01_00-00-00-000_002.de32", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.2633077312938,12.336836920214335,52.25214998348005,12.22311411165075", + "point": "52.2633077312938,12.336836920214335", + "startLcPosition": "146", + "impact": { + "lower": "W\u00fcstenforst", + "upper": "Wollin", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Berliner Ring -> Magdeburg", + "title": "A2 | Wollin - W\u00fcstenforst", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 52.2633077312938, + "long": 12.336836920214335 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 13.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.10.27)", + "", + "A2: Berliner Ring -> Magdeburg, zwischen 9.3 km hinter AS Wollin und 5.6 km vor W\u00fcstenforst", + "", + "L\u00e4nge: 8.35 km | Maximale Durchfahrtsbreite: 9.65 m", + "", + "A2, Fahrbahnerhaltung zw. AS Brandenburg und LG BB ST (km 18,390-44,200), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.33683692, + 52.263307731 + ], + [ + 12.3362931, + 52.263094101 + ], + [ + 12.3360832, + 52.263011701 + ], + [ + 12.3314295, + 52.261083601 + ], + [ + 12.3307418, + 52.260798701 + ], + [ + 12.3292758, + 52.260178601 + ], + [ + 12.3283188, + 52.259778001 + ], + [ + 12.3264815, + 52.259009001 + ], + [ + 12.3256895, + 52.258677301 + ], + [ + 12.3245857, + 52.258215001 + ], + [ + 12.3231526, + 52.257614801 + ], + [ + 12.3220666, + 52.257158701 + ], + [ + 12.3163634, + 52.254763001 + ], + [ + 12.3141893, + 52.253847801 + ], + [ + 12.3088878, + 52.251608701 + ], + [ + 12.3051334, + 52.250038701 + ], + [ + 12.304474, + 52.249777501 + ], + [ + 12.3037878, + 52.249513501 + ], + [ + 12.3023749, + 52.249020601 + ], + [ + 12.3018003, + 52.248837401 + ], + [ + 12.3016265, + 52.248782001 + ], + [ + 12.3012518, + 52.248664101 + ], + [ + 12.3010212, + 52.248594101 + ], + [ + 12.3006075, + 52.248468601 + ], + [ + 12.2998043, + 52.248239501 + ], + [ + 12.2989272, + 52.248019801 + ], + [ + 12.2981918, + 52.247851201 + ], + [ + 12.2971381, + 52.247634301 + ], + [ + 12.2958716, + 52.247404701 + ], + [ + 12.2945442, + 52.247213401 + ], + [ + 12.2935227, + 52.247090301 + ], + [ + 12.2921706, + 52.246964701 + ], + [ + 12.2916038, + 52.246922601 + ], + [ + 12.2909993, + 52.246887101 + ], + [ + 12.2898307, + 52.246842401 + ], + [ + 12.2885784, + 52.246819301 + ], + [ + 12.2878619, + 52.246826701 + ], + [ + 12.2865718, + 52.246859801 + ], + [ + 12.2855111, + 52.246916001 + ], + [ + 12.2823481, + 52.247135701 + ], + [ + 12.2782323, + 52.247421601 + ], + [ + 12.2728967, + 52.247800001 + ], + [ + 12.2707615, + 52.247967701 + ], + [ + 12.2677925, + 52.248215701 + ], + [ + 12.2661615, + 52.248360801 + ], + [ + 12.2641848, + 52.248535601 + ], + [ + 12.2614782, + 52.248771601 + ], + [ + 12.261174, + 52.248798201 + ], + [ + 12.2599726, + 52.248905901 + ], + [ + 12.2580586, + 52.249072401 + ], + [ + 12.2570834, + 52.249158701 + ], + [ + 12.2564832, + 52.249215001 + ], + [ + 12.2557689, + 52.249275301 + ], + [ + 12.2479245, + 52.249971001 + ], + [ + 12.2462574, + 52.250117601 + ], + [ + 12.2455295, + 52.250181501 + ], + [ + 12.2439132, + 52.250325301 + ], + [ + 12.2424869, + 52.250451901 + ], + [ + 12.2415114, + 52.250537301 + ], + [ + 12.2412913, + 52.250556601 + ], + [ + 12.2408217, + 52.250597701 + ], + [ + 12.2376767, + 52.250873201 + ], + [ + 12.2345458, + 52.251148001 + ], + [ + 12.231682, + 52.251399301 + ], + [ + 12.2288045, + 52.251651701 + ], + [ + 12.2269638, + 52.251813001 + ], + [ + 12.2261047, + 52.251888501 + ], + [ + 12.2255867, + 52.251933901 + ], + [ + 12.2254472, + 52.251946101 + ], + [ + 12.2250196, + 52.251983501 + ], + [ + 12.2233142, + 52.252132301 + ], + [ + 12.223114112, + 52.252149983 + ] + ] + } + }, + { + "identifier": "2025-016924--vi-fbm.2026-04-09_09-00-00-000.devi-zus.2025-09-01_00-00-00-000_002.de58", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.27191926793032,12.392083137177112,52.254208270295166,12.315045589296851", + "point": "52.27191926793032,12.392083137177112", + "startLcPosition": "146", + "impact": { + "lower": "Buckautal-S\u00fcd", + "upper": "Wollin", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Magdeburg", + "title": "A2 | Wollin - Buckautal-S\u00fcd", + "coordinate": { + "lat": 52.27191926793032, + "long": 12.392083137177112 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:00 Uhr", + "", + "A2: Berliner Ring -> Magdeburg, zwischen 5.4 km hinter AS Wollin und 0.5 km vor Buckautal-S\u00fcd", + "", + "L\u00e4nge: 5.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A2, Fahrbahnerhaltung zw. AS Brandenburg und LG BB ST (km 18,390-44,200), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.392083137, + 52.271919268 + ], + [ + 12.3630648, + 52.267925001 + ], + [ + 12.3626978, + 52.267872701 + ], + [ + 12.3608754, + 52.267622301 + ], + [ + 12.3581278, + 52.267238901 + ], + [ + 12.3548734, + 52.266793601 + ], + [ + 12.354567, + 52.266754801 + ], + [ + 12.3509172, + 52.266244601 + ], + [ + 12.3451446, + 52.265438201 + ], + [ + 12.3441073, + 52.265276601 + ], + [ + 12.3429743, + 52.265065501 + ], + [ + 12.3419383, + 52.264851201 + ], + [ + 12.3406735, + 52.264535501 + ], + [ + 12.3404672, + 52.264481901 + ], + [ + 12.3398576, + 52.264315401 + ], + [ + 12.339434, + 52.264194201 + ], + [ + 12.3391841, + 52.264120801 + ], + [ + 12.338828, + 52.264013201 + ], + [ + 12.337208, + 52.263453501 + ], + [ + 12.3362931, + 52.263094101 + ], + [ + 12.3360832, + 52.263011701 + ], + [ + 12.3314295, + 52.261083601 + ], + [ + 12.3307418, + 52.260798701 + ], + [ + 12.3292758, + 52.260178601 + ], + [ + 12.3283188, + 52.259778001 + ], + [ + 12.3264815, + 52.259009001 + ], + [ + 12.3256895, + 52.258677301 + ], + [ + 12.3245857, + 52.258215001 + ], + [ + 12.3231526, + 52.257614801 + ], + [ + 12.3220666, + 52.257158701 + ], + [ + 12.3163634, + 52.254763001 + ], + [ + 12.315045589, + 52.25420827 + ] + ] + } + }, + { + "identifier": "2026-017321--vi-bs.2026-04-09_18-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.298143939451066,12.468768308530011,52.31747917996117,12.489994774289283", + "point": "52.298143939451066,12.468768308530011", + "startLcPosition": "146", + "impact": { + "lower": "Wendgr\u00e4ben", + "upper": "Wollin", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Berliner Ring", + "title": "A2 | Wollin - Wendgr\u00e4ben", + "coordinate": { + "lat": 52.298143939451066, + "long": 12.468768308530011 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A2: Magdeburg -> Berliner Ring, zwischen 0.9 km hinter AS Wollin und 3.2 km vor Wendgr\u00e4ben", + "", + "L\u00e4nge: 2.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Strabag A2 von Wollin (AS) nach Wendgr\u00e4ben (Rastplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.468768309, + 52.298143939 + ], + [ + 12.4694519, + 52.298736401 + ], + [ + 12.4706386, + 52.299770601 + ], + [ + 12.4760469, + 52.304464801 + ], + [ + 12.4775228, + 52.305750401 + ], + [ + 12.4790172, + 52.307045301 + ], + [ + 12.4821407, + 52.309757101 + ], + [ + 12.4837167, + 52.311128001 + ], + [ + 12.4844977, + 52.311818101 + ], + [ + 12.4852491, + 52.312516901 + ], + [ + 12.4859404, + 52.313172701 + ], + [ + 12.4868748, + 52.314093901 + ], + [ + 12.4873287, + 52.314563801 + ], + [ + 12.4877556, + 52.315013901 + ], + [ + 12.488594, + 52.315922801 + ], + [ + 12.4893481, + 52.316751301 + ], + [ + 12.489994774, + 52.31747918 + ] + ] + } + }, + { + "identifier": "2025-062958--vi-fbm.2026-04-13_09-00-00-000.devi-zus.2026-04-13_00-00-00-000_013.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.389752145450835,9.97101489180485,52.34704644698009,10.20720097054735", + "point": "52.389752145450835,9.97101489180485", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 208.00 --> km 191.00", + "title": "A.12939 - Umr\u00fcstung FRS im MS - Lehrte Ost - AS H\u00e4melerwald", + "coordinate": { + "lat": 52.389752145450835, + "long": 9.97101489180485 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Samstag und Sonntag zwischen dem 13.04.26 und dem 05.05.26 von 09:00 bis 15:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 17.04.26 und dem 01.05.26 von 09:00 bis 13:00 Uhr.", + "", + "A2: km 208.00 --> km 191.00", + "", + "L\u00e4nge: 17.04 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "A.12939 - Umr\u00fcstung FRS im MS - Lehrte Ost - AS H\u00e4melerwald" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.971014892, + 52.389752145 + ], + [ + 9.9710729, + 52.389749401 + ], + [ + 9.9717181, + 52.389719001 + ], + [ + 9.9740991, + 52.389603401 + ], + [ + 9.9749021, + 52.389565901 + ], + [ + 9.9795008, + 52.389323501 + ], + [ + 9.9815841, + 52.389190801 + ], + [ + 9.982561, + 52.389111901 + ], + [ + 9.9858349, + 52.388945401 + ], + [ + 9.9880387, + 52.388841501 + ], + [ + 9.9889438, + 52.388790201 + ], + [ + 9.9897127, + 52.388737001 + ], + [ + 9.9906495, + 52.388658501 + ], + [ + 9.9918386, + 52.388538401 + ], + [ + 9.9932748, + 52.388373101 + ], + [ + 9.9941803, + 52.388243101 + ], + [ + 9.9948904, + 52.388142001 + ], + [ + 9.9954283, + 52.388055201 + ], + [ + 9.9964846, + 52.387884701 + ], + [ + 9.9976096, + 52.387673701 + ], + [ + 9.998729, + 52.387449201 + ], + [ + 10.0001577, + 52.387126101 + ], + [ + 10.0015983, + 52.386787201 + ], + [ + 10.0017798, + 52.386743501 + ], + [ + 10.0021366, + 52.386660001 + ], + [ + 10.0043506, + 52.386142601 + ], + [ + 10.0067073, + 52.385590901 + ], + [ + 10.0114119, + 52.384483601 + ], + [ + 10.0125574, + 52.384215001 + ], + [ + 10.0136933, + 52.383948801 + ], + [ + 10.0160345, + 52.383400201 + ], + [ + 10.0168424, + 52.383209501 + ], + [ + 10.018618, + 52.382791901 + ], + [ + 10.0202289, + 52.382405101 + ], + [ + 10.0223487, + 52.381844401 + ], + [ + 10.0250796, + 52.381071901 + ], + [ + 10.0273377, + 52.380434101 + ], + [ + 10.0277436, + 52.380317501 + ], + [ + 10.0343827, + 52.378437501 + ], + [ + 10.0354418, + 52.378138501 + ], + [ + 10.0407024, + 52.376646101 + ], + [ + 10.0473414, + 52.374762101 + ], + [ + 10.054, + 52.372869301 + ], + [ + 10.056653, + 52.372119501 + ], + [ + 10.0599682, + 52.371182801 + ], + [ + 10.0632539, + 52.370226401 + ], + [ + 10.0669903, + 52.369147201 + ], + [ + 10.06986, + 52.368335101 + ], + [ + 10.0711477, + 52.367994201 + ], + [ + 10.0724707, + 52.367676601 + ], + [ + 10.0734034, + 52.367465301 + ], + [ + 10.0743525, + 52.367268101 + ], + [ + 10.0754392, + 52.367060701 + ], + [ + 10.0765509, + 52.366868301 + ], + [ + 10.0777701, + 52.366679101 + ], + [ + 10.0790026, + 52.366509001 + ], + [ + 10.0808197, + 52.366302401 + ], + [ + 10.0826528, + 52.366127601 + ], + [ + 10.08845, + 52.365567601 + ], + [ + 10.095705, + 52.364880601 + ], + [ + 10.1010251, + 52.364376701 + ], + [ + 10.1054322, + 52.363950201 + ], + [ + 10.1066789, + 52.363853901 + ], + [ + 10.107939, + 52.363772201 + ], + [ + 10.1092619, + 52.363704801 + ], + [ + 10.1102838, + 52.363660601 + ], + [ + 10.1127326, + 52.363606601 + ], + [ + 10.1152002, + 52.363574801 + ], + [ + 10.1175674, + 52.363548501 + ], + [ + 10.1179472, + 52.363544301 + ], + [ + 10.1205991, + 52.363498001 + ], + [ + 10.1238818, + 52.363429801 + ], + [ + 10.1260986, + 52.363346301 + ], + [ + 10.1282191, + 52.363239201 + ], + [ + 10.1297158, + 52.363148401 + ], + [ + 10.1314169, + 52.363028401 + ], + [ + 10.1321503, + 52.362966801 + ], + [ + 10.1331142, + 52.362885901 + ], + [ + 10.1355824, + 52.362661501 + ], + [ + 10.1394181, + 52.362263301 + ], + [ + 10.1412215, + 52.362076101 + ], + [ + 10.1453636, + 52.361649301 + ], + [ + 10.1494468, + 52.361231401 + ], + [ + 10.1515995, + 52.360999601 + ], + [ + 10.1525596, + 52.360902101 + ], + [ + 10.1539689, + 52.360757201 + ], + [ + 10.1595648, + 52.360181801 + ], + [ + 10.1617017, + 52.359956701 + ], + [ + 10.1679471, + 52.359317801 + ], + [ + 10.1685387, + 52.359262801 + ], + [ + 10.1729405, + 52.358853201 + ], + [ + 10.1740532, + 52.358745101 + ], + [ + 10.1752048, + 52.358620301 + ], + [ + 10.1765012, + 52.358450301 + ], + [ + 10.1783644, + 52.358167401 + ], + [ + 10.1793071, + 52.357993101 + ], + [ + 10.1805461, + 52.357764101 + ], + [ + 10.1812487, + 52.357616901 + ], + [ + 10.1825488, + 52.357327101 + ], + [ + 10.184011, + 52.356967701 + ], + [ + 10.1850801, + 52.356675701 + ], + [ + 10.1860839, + 52.356388901 + ], + [ + 10.1875073, + 52.355939401 + ], + [ + 10.1892156, + 52.355355001 + ], + [ + 10.1902747, + 52.354958301 + ], + [ + 10.1916789, + 52.354389001 + ], + [ + 10.192991, + 52.353811601 + ], + [ + 10.1950427, + 52.352840301 + ], + [ + 10.1987132, + 52.351097801 + ], + [ + 10.2010332, + 52.349990501 + ], + [ + 10.206781, + 52.347246901 + ], + [ + 10.207200971, + 52.347046447 + ] + ] + } + }, + { + "identifier": "2026-017773--vi-bs.2026-04-09_12-00-00-000_010.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.16662999666996,11.531901920175232,52.165841814754025,11.527446134782936", + "point": "52.16662999666996,11.531901920175232", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Magdeburg (aus Richtung Magdeburg-Kannenstieg) nach A2", + "title": "A2 Beseitigung Unfallfolgen", + "coordinate": { + "lat": 52.16662999666996, + "long": 11.531901920175232 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 12:00 bis 16:30 Uhr", + "", + "Von Auffahrt auf die A2: AK Magdeburg (aus Richtung Magdeburg-Kannenstieg) nach A2: Magdeburg -> Braunschweig, zwischen AK Magdeburg und 2.9 km vor AS Irxleben", + "", + "L\u00e4nge: 0.32 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A2 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.53190192, + 52.166629997 + ], + [ + 11.5315674, + 52.166557301 + ], + [ + 11.5313164, + 52.166485301 + ], + [ + 11.5310054, + 52.166370601 + ], + [ + 11.5284046, + 52.165984201 + ], + [ + 11.527446135, + 52.165841815 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-bs.2026-01-26_00-00-00-000.devi-zus.2025-04-06_00-00-00-000.de73", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53600644301392,6.830024143961293,51.53203951102143,6.8227128241060715", + "point": "51.53600644301392,6.830024143961293", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 473.77 nach A3", + "title": "A3 Ersatzneubau DB-Bauwerk (Betuwe)", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.53600644301392, + "long": 6.830024143961293 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "Von A2: km 473.77 nach A3: Arnheim -> Oberhausen, zwischen AK Oberhausen und 2.3 km vor AS Oberhausen-Holten", + "", + "L\u00e4nge: 0.67 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.830024144, + 51.536006443 + ], + [ + 6.8285786, + 51.535378701 + ], + [ + 6.8282735, + 51.535235101 + ], + [ + 6.8276063, + 51.534922401 + ], + [ + 6.8270236, + 51.534631301 + ], + [ + 6.8265382, + 51.534383201 + ], + [ + 6.8257728, + 51.533986501 + ], + [ + 6.8251662, + 51.533643101 + ], + [ + 6.8243506, + 51.533141401 + ], + [ + 6.8235612, + 51.532628601 + ], + [ + 6.8227985, + 51.532103401 + ], + [ + 6.822712824, + 51.532039511 + ] + ] + } + } + ] + }, + "A3": { + "roadworks": [ + { + "identifier": "2024-026607--vi-bs.2026-03-27_00-00-00-000.devi-zus.2024-07-22_00-00-00-000.de24", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.44372822588696,13.375183597777168,48.43334361565515,13.378301127676867", + "point": "48.44372822588696,13.375183597777168", + "startLcPosition": "3", + "impact": { + "lower": "Neuhaus am Inn", + "upper": "Rottal-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Passau -> Linz", + "title": "A3 | Rottal-West - Neuhaus am Inn", + "startTimestamp": "2026-03-27T00:00:00+01:00", + "coordinate": { + "lat": 48.44372822588696, + "long": 13.375183597777168 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.12.26)", + "", + "A3: Passau -> Linz, zwischen 1.4 km hinter Rottal-West und 3.8 km vor Neuhaus am Inn", + "", + "L\u00e4nge: 1.19 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A3 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.375183598, + 48.443728226 + ], + [ + 13.3751703, + 48.443531401 + ], + [ + 13.3751737, + 48.442340401 + ], + [ + 13.375311, + 48.440611401 + ], + [ + 13.3755013, + 48.439647001 + ], + [ + 13.3756565, + 48.438920501 + ], + [ + 13.3757357, + 48.438596301 + ], + [ + 13.375815, + 48.438312801 + ], + [ + 13.3761239, + 48.437443601 + ], + [ + 13.3764057, + 48.436750701 + ], + [ + 13.3765958, + 48.436303201 + ], + [ + 13.3769146, + 48.435630801 + ], + [ + 13.3772887, + 48.434940501 + ], + [ + 13.3774415, + 48.434681901 + ], + [ + 13.3777808, + 48.434107901 + ], + [ + 13.3778523, + 48.434000301 + ], + [ + 13.378134, + 48.433565801 + ], + [ + 13.378301128, + 48.433343616 + ] + ] + } + }, + { + "identifier": "2025-044456--vi-bs.2026-03-16_00-00-00-000.devi-zus.2026-02-16_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.605200817878014,13.369819605472248,48.67434841859853,13.247141994642012", + "point": "48.605200817878014,13.369819605472248", + "startLcPosition": "9", + "impact": { + "lower": "Gei\u00dfberg", + "upper": "Donautal", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Donautal - Gei\u00dfberg", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 48.605200817878014, + "long": 13.369819605472248 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.12.26)", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 1.9 km hinter Donautal und 0.1 km vor Gei\u00dfberg", + "", + "L\u00e4nge: 12.3 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A3 Erhaltungsabschnitt zwischen AS Iggensbach und AS Aicha vorm Wald" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.369819605, + 48.605200818 + ], + [ + 13.3697036, + 48.605420501 + ], + [ + 13.3695707, + 48.605634001 + ], + [ + 13.3693155, + 48.606037601 + ], + [ + 13.3691057, + 48.606338301 + ], + [ + 13.3689008, + 48.606607101 + ], + [ + 13.3685417, + 48.607049601 + ], + [ + 13.3684965, + 48.607100901 + ], + [ + 13.3681386, + 48.607507001 + ], + [ + 13.3677398, + 48.607921301 + ], + [ + 13.3673325, + 48.608304501 + ], + [ + 13.3669273, + 48.608654701 + ], + [ + 13.3665757, + 48.608946501 + ], + [ + 13.3658106, + 48.609519901 + ], + [ + 13.3655201, + 48.609722001 + ], + [ + 13.3649053, + 48.610126101 + ], + [ + 13.3641022, + 48.610641201 + ], + [ + 13.3631092, + 48.611231301 + ], + [ + 13.362296, + 48.611716101 + ], + [ + 13.3615687, + 48.612171201 + ], + [ + 13.3604101, + 48.612964501 + ], + [ + 13.3595241, + 48.613635001 + ], + [ + 13.3586731, + 48.614314701 + ], + [ + 13.3578702, + 48.614971701 + ], + [ + 13.3577874, + 48.615040901 + ], + [ + 13.3570706, + 48.615654201 + ], + [ + 13.3555793, + 48.616889401 + ], + [ + 13.3550821, + 48.617300301 + ], + [ + 13.3545575, + 48.617706701 + ], + [ + 13.3542865, + 48.617911101 + ], + [ + 13.3541607, + 48.618003101 + ], + [ + 13.3536926, + 48.618333101 + ], + [ + 13.3532954, + 48.618610101 + ], + [ + 13.3528306, + 48.618910401 + ], + [ + 13.3522394, + 48.619278601 + ], + [ + 13.3513834, + 48.619776101 + ], + [ + 13.3509365, + 48.620021301 + ], + [ + 13.3505044, + 48.620264101 + ], + [ + 13.3501455, + 48.620447301 + ], + [ + 13.3495246, + 48.620760201 + ], + [ + 13.3489251, + 48.621043901 + ], + [ + 13.3478107, + 48.621538501 + ], + [ + 13.3473004, + 48.621761201 + ], + [ + 13.3467091, + 48.622004001 + ], + [ + 13.3460842, + 48.622247801 + ], + [ + 13.3453577, + 48.622505001 + ], + [ + 13.3445693, + 48.622775101 + ], + [ + 13.3437743, + 48.623018001 + ], + [ + 13.3431308, + 48.623206201 + ], + [ + 13.342106, + 48.623491401 + ], + [ + 13.341099, + 48.623745101 + ], + [ + 13.3403882, + 48.623916701 + ], + [ + 13.3396361, + 48.624079201 + ], + [ + 13.3350737, + 48.625078401 + ], + [ + 13.3333136, + 48.625481101 + ], + [ + 13.33237, + 48.625718201 + ], + [ + 13.3315357, + 48.625949501 + ], + [ + 13.3306924, + 48.626190901 + ], + [ + 13.3297871, + 48.626473401 + ], + [ + 13.3288876, + 48.626770801 + ], + [ + 13.328071, + 48.627052701 + ], + [ + 13.326323, + 48.627741401 + ], + [ + 13.3254561, + 48.628096101 + ], + [ + 13.3244698, + 48.628541501 + ], + [ + 13.3237953, + 48.628851701 + ], + [ + 13.3225565, + 48.629467701 + ], + [ + 13.3214807, + 48.630068801 + ], + [ + 13.3202157, + 48.630806601 + ], + [ + 13.3190636, + 48.631531601 + ], + [ + 13.3179204, + 48.632201801 + ], + [ + 13.3172827, + 48.632553801 + ], + [ + 13.3166746, + 48.632870501 + ], + [ + 13.3159826, + 48.633175301 + ], + [ + 13.3153248, + 48.633447401 + ], + [ + 13.3146675, + 48.633688801 + ], + [ + 13.3139866, + 48.633922401 + ], + [ + 13.3132494, + 48.634130201 + ], + [ + 13.3125477, + 48.634310701 + ], + [ + 13.3117366, + 48.634485201 + ], + [ + 13.3108663, + 48.634651901 + ], + [ + 13.3100435, + 48.634769301 + ], + [ + 13.3091912, + 48.634867101 + ], + [ + 13.3084129, + 48.634915301 + ], + [ + 13.3051218, + 48.635067601 + ], + [ + 13.3043679, + 48.635118201 + ], + [ + 13.3035161, + 48.635208901 + ], + [ + 13.3027368, + 48.635325201 + ], + [ + 13.3015964, + 48.635549301 + ], + [ + 13.3010177, + 48.635688801 + ], + [ + 13.3004551, + 48.635841201 + ], + [ + 13.2999023, + 48.636013201 + ], + [ + 13.2991379, + 48.636273901 + ], + [ + 13.2988326, + 48.636390001 + ], + [ + 13.2983238, + 48.636599301 + ], + [ + 13.2978274, + 48.636820501 + ], + [ + 13.2973547, + 48.637054901 + ], + [ + 13.296956, + 48.637267901 + ], + [ + 13.2962509, + 48.637678501 + ], + [ + 13.2956962, + 48.638037301 + ], + [ + 13.2951797, + 48.638410901 + ], + [ + 13.2946816, + 48.638810301 + ], + [ + 13.294221, + 48.639224801 + ], + [ + 13.2937982, + 48.639650201 + ], + [ + 13.2933929, + 48.640078201 + ], + [ + 13.2925102, + 48.641078101 + ], + [ + 13.2919649, + 48.641682501 + ], + [ + 13.2914243, + 48.642226801 + ], + [ + 13.2910402, + 48.642586001 + ], + [ + 13.2901257, + 48.643397301 + ], + [ + 13.2889729, + 48.644279801 + ], + [ + 13.2877028, + 48.645189301 + ], + [ + 13.2871776, + 48.645581701 + ], + [ + 13.2865803, + 48.646087401 + ], + [ + 13.2860791, + 48.646538801 + ], + [ + 13.2857633, + 48.646847201 + ], + [ + 13.2852999, + 48.647309901 + ], + [ + 13.2849154, + 48.647752101 + ], + [ + 13.2842578, + 48.648584201 + ], + [ + 13.2835409, + 48.649648301 + ], + [ + 13.283016, + 48.650448701 + ], + [ + 13.2826678, + 48.650945201 + ], + [ + 13.2822662, + 48.651485701 + ], + [ + 13.281892, + 48.651976701 + ], + [ + 13.281363, + 48.652561201 + ], + [ + 13.2809431, + 48.652990501 + ], + [ + 13.2804843, + 48.653440701 + ], + [ + 13.2799257, + 48.653924901 + ], + [ + 13.2793155, + 48.654402201 + ], + [ + 13.2787735, + 48.654821901 + ], + [ + 13.2781489, + 48.655250601 + ], + [ + 13.2771935, + 48.655869201 + ], + [ + 13.2766535, + 48.656175601 + ], + [ + 13.2761136, + 48.656463901 + ], + [ + 13.2750544, + 48.657004201 + ], + [ + 13.273072, + 48.657989901 + ], + [ + 13.271751, + 48.658704101 + ], + [ + 13.2705807, + 48.659438401 + ], + [ + 13.2699584, + 48.659878301 + ], + [ + 13.2693607, + 48.660327001 + ], + [ + 13.2690083, + 48.660612001 + ], + [ + 13.2686669, + 48.660896501 + ], + [ + 13.2682396, + 48.661291801 + ], + [ + 13.2678812, + 48.661639501 + ], + [ + 13.2675449, + 48.661973101 + ], + [ + 13.2671954, + 48.662351101 + ], + [ + 13.2666957, + 48.662913801 + ], + [ + 13.2655791, + 48.664253501 + ], + [ + 13.26515, + 48.664774301 + ], + [ + 13.2647806, + 48.665210701 + ], + [ + 13.2643944, + 48.665648101 + ], + [ + 13.2638668, + 48.666205201 + ], + [ + 13.263556, + 48.666507601 + ], + [ + 13.263154, + 48.666885501 + ], + [ + 13.2628297, + 48.667158001 + ], + [ + 13.2623174, + 48.667593001 + ], + [ + 13.2618613, + 48.667937501 + ], + [ + 13.2614079, + 48.668271601 + ], + [ + 13.2610934, + 48.668495001 + ], + [ + 13.2606022, + 48.668815401 + ], + [ + 13.260209, + 48.669062801 + ], + [ + 13.2597863, + 48.669317701 + ], + [ + 13.2592558, + 48.669620001 + ], + [ + 13.2585085, + 48.670033501 + ], + [ + 13.2572425, + 48.670689301 + ], + [ + 13.2556895, + 48.671423501 + ], + [ + 13.2550718, + 48.671696501 + ], + [ + 13.2531699, + 48.672463301 + ], + [ + 13.2520889, + 48.672870401 + ], + [ + 13.2511486, + 48.673190301 + ], + [ + 13.2503423, + 48.673451401 + ], + [ + 13.2494126, + 48.673739101 + ], + [ + 13.2485095, + 48.673996601 + ], + [ + 13.2478633, + 48.674164801 + ], + [ + 13.247141995, + 48.674348419 + ] + ] + } + }, + { + "identifier": "2025-044456--vi-bs.2026-03-16_00-00-00-000.devi-zus.2026-02-16_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.67423978303554,13.247079482623096,48.60516211931662,13.369648014622639", + "point": "48.67423978303554,13.247079482623096", + "startLcPosition": "16", + "impact": { + "lower": "Donautal", + "upper": "Gei\u00dfberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Gei\u00dfberg - Donautal", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 48.67423978303554, + "long": 13.247079482623096 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.12.26)", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 0.1 km hinter Gei\u00dfberg und 1.9 km vor Donautal", + "", + "L\u00e4nge: 12.3 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A3 Erhaltungsabschnitt zwischen AS Iggensbach und AS Aicha vorm Wald" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.247079483, + 48.674239783 + ], + [ + 13.2478263, + 48.674052601 + ], + [ + 13.249313, + 48.673640901 + ], + [ + 13.2503357, + 48.673326101 + ], + [ + 13.2510721, + 48.673087801 + ], + [ + 13.2520774, + 48.672747301 + ], + [ + 13.2529801, + 48.672402801 + ], + [ + 13.2549901, + 48.671589701 + ], + [ + 13.2556497, + 48.671294801 + ], + [ + 13.25717, + 48.670579801 + ], + [ + 13.2583186, + 48.669977701 + ], + [ + 13.2591611, + 48.669526301 + ], + [ + 13.2596728, + 48.669231801 + ], + [ + 13.2600883, + 48.668977701 + ], + [ + 13.2609063, + 48.668453201 + ], + [ + 13.2612853, + 48.668185501 + ], + [ + 13.2617311, + 48.667862501 + ], + [ + 13.2621479, + 48.667543001 + ], + [ + 13.2625894, + 48.667187001 + ], + [ + 13.2628873, + 48.666928701 + ], + [ + 13.2634093, + 48.666448901 + ], + [ + 13.2637175, + 48.666143701 + ], + [ + 13.2642384, + 48.665593601 + ], + [ + 13.264619, + 48.665166201 + ], + [ + 13.2649923, + 48.664725901 + ], + [ + 13.2657272, + 48.663836601 + ], + [ + 13.2665395, + 48.662864701 + ], + [ + 13.267038, + 48.662302601 + ], + [ + 13.2673874, + 48.661921201 + ], + [ + 13.2676893, + 48.661619201 + ], + [ + 13.2682351, + 48.661083901 + ], + [ + 13.2686475, + 48.660722001 + ], + [ + 13.2692667, + 48.660214201 + ], + [ + 13.2697817, + 48.659833801 + ], + [ + 13.2702465, + 48.659497801 + ], + [ + 13.2708734, + 48.659081001 + ], + [ + 13.2716472, + 48.658608001 + ], + [ + 13.2722753, + 48.658249201 + ], + [ + 13.2729914, + 48.657879901 + ], + [ + 13.2758056, + 48.656457401 + ], + [ + 13.2770163, + 48.655803801 + ], + [ + 13.2780716, + 48.655106901 + ], + [ + 13.2791096, + 48.654371301 + ], + [ + 13.2798026, + 48.653817601 + ], + [ + 13.2803992, + 48.653291101 + ], + [ + 13.2808148, + 48.652906901 + ], + [ + 13.2812564, + 48.652448901 + ], + [ + 13.281583, + 48.652090001 + ], + [ + 13.2819029, + 48.651707001 + ], + [ + 13.2823372, + 48.651160901 + ], + [ + 13.2830802, + 48.650058601 + ], + [ + 13.2840449, + 48.648585101 + ], + [ + 13.2851054, + 48.647266101 + ], + [ + 13.2856729, + 48.646693301 + ], + [ + 13.2862619, + 48.646137601 + ], + [ + 13.2874946, + 48.645158201 + ], + [ + 13.2902143, + 48.643131501 + ], + [ + 13.2909992, + 48.642436301 + ], + [ + 13.2917617, + 48.641672301 + ], + [ + 13.2928546, + 48.640455301 + ], + [ + 13.2932378, + 48.640025101 + ], + [ + 13.2936442, + 48.639594201 + ], + [ + 13.2940726, + 48.639162901 + ], + [ + 13.2945072, + 48.638779101 + ], + [ + 13.2947983, + 48.638532701 + ], + [ + 13.2950425, + 48.638340201 + ], + [ + 13.2955684, + 48.637956001 + ], + [ + 13.2961349, + 48.637588501 + ], + [ + 13.2967469, + 48.637236301 + ], + [ + 13.2970602, + 48.637064801 + ], + [ + 13.2977091, + 48.636735701 + ], + [ + 13.2982156, + 48.636506401 + ], + [ + 13.2987379, + 48.636291001 + ], + [ + 13.2992816, + 48.636093301 + ], + [ + 13.2998305, + 48.635907401 + ], + [ + 13.3003912, + 48.635729701 + ], + [ + 13.3009664, + 48.635578301 + ], + [ + 13.3019109, + 48.635356201 + ], + [ + 13.3026759, + 48.635219401 + ], + [ + 13.3035306, + 48.635091401 + ], + [ + 13.3042636, + 48.635001801 + ], + [ + 13.3048242, + 48.634958001 + ], + [ + 13.3085069, + 48.634785601 + ], + [ + 13.3092742, + 48.634730501 + ], + [ + 13.3100912, + 48.634631001 + ], + [ + 13.3108786, + 48.634519801 + ], + [ + 13.3116595, + 48.634377301 + ], + [ + 13.3125232, + 48.634188001 + ], + [ + 13.3131931, + 48.634012401 + ], + [ + 13.3139162, + 48.633813401 + ], + [ + 13.3146056, + 48.633577401 + ], + [ + 13.3152536, + 48.633341401 + ], + [ + 13.3159203, + 48.633052001 + ], + [ + 13.3165516, + 48.632762601 + ], + [ + 13.3172219, + 48.632420301 + ], + [ + 13.317836, + 48.632083901 + ], + [ + 13.3201172, + 48.630699901 + ], + [ + 13.3212898, + 48.630006701 + ], + [ + 13.3225064, + 48.629349201 + ], + [ + 13.3243193, + 48.628449401 + ], + [ + 13.3253616, + 48.627992701 + ], + [ + 13.3262108, + 48.627630101 + ], + [ + 13.3280335, + 48.626932901 + ], + [ + 13.3288121, + 48.626659801 + ], + [ + 13.3297031, + 48.626355501 + ], + [ + 13.330536, + 48.626108101 + ], + [ + 13.3314222, + 48.625852801 + ], + [ + 13.3322543, + 48.625622001 + ], + [ + 13.3331752, + 48.625387201 + ], + [ + 13.3349694, + 48.624963601 + ], + [ + 13.3387269, + 48.624158801 + ], + [ + 13.3401631, + 48.623834501 + ], + [ + 13.3411353, + 48.623601901 + ], + [ + 13.3420879, + 48.623361301 + ], + [ + 13.3431146, + 48.623071601 + ], + [ + 13.3439605, + 48.622813801 + ], + [ + 13.3454613, + 48.622312801 + ], + [ + 13.3460515, + 48.622098501 + ], + [ + 13.3466162, + 48.621885401 + ], + [ + 13.3474019, + 48.621568001 + ], + [ + 13.3481698, + 48.621236101 + ], + [ + 13.3488232, + 48.620956201 + ], + [ + 13.3493788, + 48.620682601 + ], + [ + 13.3500358, + 48.620355101 + ], + [ + 13.3505466, + 48.620083301 + ], + [ + 13.3512531, + 48.619684301 + ], + [ + 13.3519374, + 48.619284101 + ], + [ + 13.3526847, + 48.618819401 + ], + [ + 13.3532454, + 48.618448501 + ], + [ + 13.3538393, + 48.618039901 + ], + [ + 13.3541883, + 48.617785001 + ], + [ + 13.3544849, + 48.617564301 + ], + [ + 13.3554281, + 48.616811501 + ], + [ + 13.3569496, + 48.615541101 + ], + [ + 13.3576448, + 48.614967201 + ], + [ + 13.3577329, + 48.614896401 + ], + [ + 13.3584018, + 48.614314901 + ], + [ + 13.3591394, + 48.613728801 + ], + [ + 13.3601876, + 48.612918401 + ], + [ + 13.3607829, + 48.612492101 + ], + [ + 13.361385, + 48.612099901 + ], + [ + 13.3621401, + 48.611627201 + ], + [ + 13.3629683, + 48.611150401 + ], + [ + 13.3641864, + 48.610420801 + ], + [ + 13.3656692, + 48.609446501 + ], + [ + 13.3661577, + 48.609088401 + ], + [ + 13.366755, + 48.608614301 + ], + [ + 13.3671962, + 48.608226901 + ], + [ + 13.3675679, + 48.607876101 + ], + [ + 13.3679517, + 48.607481701 + ], + [ + 13.3683679, + 48.607014301 + ], + [ + 13.3684689, + 48.606889501 + ], + [ + 13.3687346, + 48.606561101 + ], + [ + 13.3689144, + 48.606316101 + ], + [ + 13.3691864, + 48.605938601 + ], + [ + 13.3694079, + 48.605592001 + ], + [ + 13.3695389, + 48.605379701 + ], + [ + 13.369648015, + 48.605162119 + ] + ] + } + }, + { + "identifier": "2026-015389--vi-bs.2026-04-18_19-00-00-000.devi-bs.2026-04-07_17-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.75125726524501,13.086640034967438,48.760533571900545,13.061609219866897", + "point": "48.75125726524501,13.086640034967438", + "startLcPosition": "21", + "impact": { + "lower": "Hengersberg", + "upper": "Schwanenkirchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Schwanenkirchen - Hengersberg", + "coordinate": { + "lat": 48.75125726524501, + "long": 13.086640034967438 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 19:00 bis 24:00 Uhr", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 2.0 km hinter Schwanenkirchen und 1.9 km vor AS Hengersberg", + "", + "L\u00e4nge: 2.14 km | Maximale Durchfahrtsbreite: 8.5 m", + "", + "A3_Pankofen_Zoll Landshut_Parkplatz Ohetal-Nord Fahrtrichtung Regensburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.086640035, + 48.751257265 + ], + [ + 13.0851989, + 48.751656501 + ], + [ + 13.0838738, + 48.751982901 + ], + [ + 13.0824869, + 48.752303701 + ], + [ + 13.0820509, + 48.752400801 + ], + [ + 13.079841, + 48.752891601 + ], + [ + 13.0794542, + 48.752978001 + ], + [ + 13.0774496, + 48.753436601 + ], + [ + 13.0771634, + 48.753515101 + ], + [ + 13.0762552, + 48.753747701 + ], + [ + 13.0758932, + 48.753852201 + ], + [ + 13.0749359, + 48.754142301 + ], + [ + 13.0743728, + 48.754313001 + ], + [ + 13.0727448, + 48.754843001 + ], + [ + 13.0718602, + 48.755172401 + ], + [ + 13.0712135, + 48.755414401 + ], + [ + 13.070695, + 48.755625401 + ], + [ + 13.070222, + 48.755816601 + ], + [ + 13.0700042, + 48.755907301 + ], + [ + 13.0695995, + 48.756083101 + ], + [ + 13.0687645, + 48.756457501 + ], + [ + 13.067802, + 48.756910001 + ], + [ + 13.0671001, + 48.757258701 + ], + [ + 13.0663886, + 48.757631401 + ], + [ + 13.0656977, + 48.758008101 + ], + [ + 13.0650764, + 48.758361301 + ], + [ + 13.0635871, + 48.759266601 + ], + [ + 13.0616444, + 48.760511001 + ], + [ + 13.06160922, + 48.760533572 + ] + ] + } + }, + { + "identifier": "2026-002435--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-01-21_19-00-00-000_008.de69", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.782486023495295,13.02108176635985,48.78822337873135,13.010643879744386", + "point": "48.782486023495295,13.02108176635985", + "startLcPosition": "23", + "impact": { + "lower": "Seebach", + "upper": "Hengersberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Hengersberg - Seebach", + "coordinate": { + "lat": 48.782486023495295, + "long": 13.02108176635985 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 2.0 km hinter AS Hengersberg und Seebach", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.021081766, + 48.782486023 + ], + [ + 13.0209817, + 48.782553701 + ], + [ + 13.0199655, + 48.783220901 + ], + [ + 13.0189854, + 48.783850101 + ], + [ + 13.0184272, + 48.784189501 + ], + [ + 13.0179965, + 48.784451201 + ], + [ + 13.0177234, + 48.784611301 + ], + [ + 13.0152247, + 48.786009701 + ], + [ + 13.0144164, + 48.786430201 + ], + [ + 13.0138405, + 48.786721401 + ], + [ + 13.0134329, + 48.786925201 + ], + [ + 13.0127672, + 48.787247601 + ], + [ + 13.0118665, + 48.787671801 + ], + [ + 13.0109687, + 48.788081101 + ], + [ + 13.01064388, + 48.788223379 + ] + ] + } + }, + { + "identifier": "2025-035962--vi-bs.2026-03-02_00-00-00-000.devi-zus.2025-10-13_00-00-00-000.de8", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.787404124702924,13.012434858090849,48.792186106429234,13.001555242698446", + "point": "48.787404124702924,13.012434858090849", + "startLcPosition": "23", + "impact": { + "lower": "Isarblick", + "upper": "Hengersberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Hengersberg - Isarblick", + "startTimestamp": "2026-03-02T00:00:00+01:00", + "coordinate": { + "lat": 48.787404124702924, + "long": 13.012434858090849 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 00:00 Uhr", + "Ende: 12.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.12.26)", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 2.8 km hinter AS Hengersberg und 2.2 km vor Isarblick", + "", + "L\u00e4nge: 0.96 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A3, BW 149" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.012434858, + 48.787404125 + ], + [ + 13.0118665, + 48.787671801 + ], + [ + 13.0109687, + 48.788081101 + ], + [ + 13.009787, + 48.788598701 + ], + [ + 13.008272, + 48.789238501 + ], + [ + 13.0076426, + 48.789506001 + ], + [ + 13.0060022, + 48.790208401 + ], + [ + 13.0055363, + 48.790404101 + ], + [ + 13.0032708, + 48.791416001 + ], + [ + 13.0021967, + 48.791879901 + ], + [ + 13.001555243, + 48.792186106 + ] + ] + } + }, + { + "identifier": "2026-016274--vi-bs.2026-04-22_06-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.757839441389606,13.064502935501528,48.75696610016037,13.066117676809807", + "point": "48.757839441389606,13.064502935501528", + "startLcPosition": "23", + "impact": { + "lower": "Schwanenkirchen", + "upper": "Hengersberg", + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Hengersberg - Schwanenkirchen", + "coordinate": { + "lat": 48.757839441389606, + "long": 13.064502935501528 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 06:00 bis 14:00 Uhr", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 2.3 km hinter AS Hengersberg und 3.7 km vor Schwanenkirchen", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A3_Pankofen _Parkplatz Ohetal-S\u00fcd km 574,400 in Fahrtrichtung Passau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.064502936, + 48.757839441 + ], + [ + 13.0646263, + 48.757764401 + ], + [ + 13.0658825, + 48.757087301 + ], + [ + 13.066117677, + 48.7569661 + ] + ] + } + }, + { + "identifier": "2025-035962--vi-bs.2026-03-02_00-00-00-000.devi-zus.2025-10-13_00-00-00-000.de6", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.79766344965295,12.99131570416366,48.79032658691643,13.005397234099622", + "point": "48.79766344965295,12.99131570416366", + "startLcPosition": "25", + "impact": { + "lower": "Seebach", + "upper": "Isarblick", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Isarblick - Seebach", + "startTimestamp": "2026-03-02T00:00:00+01:00", + "coordinate": { + "lat": 48.79766344965295, + "long": 12.99131570416366 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 00:00 Uhr", + "Ende: 12.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.12.26)", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 1.2 km hinter Isarblick und 0.4 km vor Seebach", + "", + "L\u00e4nge: 1.32 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A3, BW 149" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.991315704, + 48.79766345 + ], + [ + 12.9964929, + 48.794735501 + ], + [ + 12.9988206, + 48.793441101 + ], + [ + 13.0012081, + 48.792201701 + ], + [ + 13.0029939, + 48.791348601 + ], + [ + 13.005397234, + 48.790326587 + ] + ] + } + }, + { + "identifier": "2025-050735--vi-bs.2026-03-30_00-00-00-000.devi-zus.2026-03-30_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.8120227975754,12.962985452812404,48.80702427155847,12.974264931458018", + "point": "48.8120227975754,12.962985452812404", + "startLcPosition": "26", + "impact": { + "lower": "Isarblick", + "upper": "Deggendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Deggendorf - Isarblick", + "startTimestamp": "2026-03-30T00:00:00+02:00", + "coordinate": { + "lat": 48.8120227975754, + "long": 12.962985452812404 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 00:00 Uhr", + "Ende: 11.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 25.06.26)", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 1.8 km hinter AK Deggendorf und 0.4 km vor Isarblick", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A3 Erweiterung und Instandsetzung BW 147" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.962985453, + 48.812022798 + ], + [ + 12.9630144, + 48.812012801 + ], + [ + 12.963971, + 48.811649601 + ], + [ + 12.9657653, + 48.810912201 + ], + [ + 12.9658851, + 48.810863801 + ], + [ + 12.9677464, + 48.810038601 + ], + [ + 12.9699208, + 48.809044101 + ], + [ + 12.9739854, + 48.807156901 + ], + [ + 12.974264931, + 48.807024272 + ] + ] + } + }, + { + "identifier": "2025-050735--vi-bs.2026-03-30_00-00-00-000.devi-zus.2026-03-30_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.8120227975754,12.962985452812404,48.79291037667822,12.999842978583091", + "point": "48.8120227975754,12.962985452812404", + "startLcPosition": "26", + "impact": { + "lower": "Seebach", + "upper": "Deggendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Deggendorf - Seebach", + "startTimestamp": "2026-03-30T00:00:00+02:00", + "coordinate": { + "lat": 48.8120227975754, + "long": 12.962985452812404 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 00:00 Uhr", + "Ende: 11.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 25.06.26)", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 1.8 km hinter AK Deggendorf und 0.9 km vor Seebach", + "", + "L\u00e4nge: 3.45 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A3 Erweiterung und Instandsetzung BW 147" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.962985453, + 48.812022798 + ], + [ + 12.9630144, + 48.812012801 + ], + [ + 12.963971, + 48.811649601 + ], + [ + 12.9657653, + 48.810912201 + ], + [ + 12.9658851, + 48.810863801 + ], + [ + 12.9677464, + 48.810038601 + ], + [ + 12.9699208, + 48.809044101 + ], + [ + 12.9739854, + 48.807156901 + ], + [ + 12.9750472, + 48.806653101 + ], + [ + 12.9758056, + 48.806253401 + ], + [ + 12.9766789, + 48.805788701 + ], + [ + 12.9789409, + 48.804498501 + ], + [ + 12.9808887, + 48.803352101 + ], + [ + 12.9819124, + 48.802743801 + ], + [ + 12.9830695, + 48.802087601 + ], + [ + 12.9854186, + 48.800795601 + ], + [ + 12.9876524, + 48.799629101 + ], + [ + 12.9882852, + 48.799305101 + ], + [ + 12.9904336, + 48.798162201 + ], + [ + 12.9907469, + 48.797985101 + ], + [ + 12.9964929, + 48.794735501 + ], + [ + 12.9988206, + 48.793441101 + ], + [ + 12.999842979, + 48.792910377 + ] + ] + } + }, + { + "identifier": "2026-017341--vi-bs.2026-04-09_07-30-00-000.devi-zus.2026-04-08_07-30-00-000_010.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.99385566743018,12.301050370010445,48.99200213459574,12.232870204895212", + "point": "48.99385566743018,12.301050370010445", + "startLcPosition": "37", + "impact": { + "lower": "Neutraubling", + "upper": "W\u00f6rth an der Donau/Wiesent", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | W\u00f6rth an der Donau/Wiesent - Neutraubling", + "coordinate": { + "lat": 48.99385566743018, + "long": 12.301050370010445 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 15:30 Uhr", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 4.6 km hinter AS W\u00f6rth an der Donau/Wiesent und 2.7 km vor AS Neutraubling", + "", + "L\u00e4nge: 5 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A3 von W\u00f6rth an der Donau-Ost (AS) nach Neutraubling (AS) Reinigungsarbeiten Mittelstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.30105037, + 48.993855667 + ], + [ + 12.2994089, + 48.993768401 + ], + [ + 12.2973027, + 48.993681001 + ], + [ + 12.2936701, + 48.993599901 + ], + [ + 12.2916825, + 48.993585901 + ], + [ + 12.2900764, + 48.993594701 + ], + [ + 12.2872522, + 48.993635201 + ], + [ + 12.2807522, + 48.993864801 + ], + [ + 12.2786506, + 48.993900801 + ], + [ + 12.2765428, + 48.993898901 + ], + [ + 12.2749212, + 48.993879401 + ], + [ + 12.2729671, + 48.993828801 + ], + [ + 12.2717885, + 48.993787801 + ], + [ + 12.2706031, + 48.993738601 + ], + [ + 12.2688598, + 48.993643701 + ], + [ + 12.254533, + 48.992852801 + ], + [ + 12.25327, + 48.992782201 + ], + [ + 12.2461366, + 48.992370001 + ], + [ + 12.243079, + 48.992196501 + ], + [ + 12.2408773, + 48.992069501 + ], + [ + 12.2398067, + 48.992016301 + ], + [ + 12.2382894, + 48.991963701 + ], + [ + 12.2375141, + 48.991943501 + ], + [ + 12.2367864, + 48.991937401 + ], + [ + 12.2361243, + 48.991936601 + ], + [ + 12.2351544, + 48.991938601 + ], + [ + 12.2333724, + 48.991981001 + ], + [ + 12.232870205, + 48.992002135 + ] + ] + } + }, + { + "identifier": "2026-017280--vi-bs.2026-04-08_18-30-00-000.devi-bs.2026-04-08_18-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.994426908143026,12.126451027931617,48.9992998549003,12.159455905132313", + "point": "48.994426908143026,12.126451027931617", + "startLcPosition": "42", + "impact": { + "lower": "Neutraubling", + "upper": "Regensburg-Universit\u00e4t", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Regensburg-Universit\u00e4t - Neutraubling", + "coordinate": { + "lat": 48.994426908143026, + "long": 12.126451027931617 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 1.7 km hinter AS Regensburg-Universit\u00e4t und 2.8 km vor AS Neutraubling", + "", + "L\u00e4nge: 2.48 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 von Neutraubling (AS) nach Regensburg-Universit\u00e4t (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.126451028, + 48.994426908 + ], + [ + 12.1265166, + 48.994436601 + ], + [ + 12.1286438, + 48.994756301 + ], + [ + 12.1320697, + 48.995266201 + ], + [ + 12.1335231, + 48.995469401 + ], + [ + 12.1335931, + 48.995480101 + ], + [ + 12.1338479, + 48.995517801 + ], + [ + 12.1343659, + 48.995594401 + ], + [ + 12.1357792, + 48.995816201 + ], + [ + 12.1404275, + 48.996501701 + ], + [ + 12.1407672, + 48.996552801 + ], + [ + 12.1433362, + 48.996927701 + ], + [ + 12.1492748, + 48.997777601 + ], + [ + 12.1503344, + 48.997933401 + ], + [ + 12.1508814, + 48.998013801 + ], + [ + 12.152165, + 48.998217401 + ], + [ + 12.1537939, + 48.998457501 + ], + [ + 12.1554227, + 48.998697501 + ], + [ + 12.1583532, + 48.999137701 + ], + [ + 12.159455905, + 48.999299855 + ] + ] + } + }, + { + "identifier": "2023-000426--vi-bs.2023-08-01_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.45771265942274,11.242888409563156,49.445854732737054,11.231797395840218", + "point": "49.45771265942274,11.242888409563156", + "startLcPosition": "48", + "impact": { + "lower": "Brunn", + "upper": "N\u00fcrnberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A3 | N\u00fcrnberg - Brunn", + "startTimestamp": "2023-08-01T00:00:00+02:00", + "coordinate": { + "lat": 49.45771265942274, + "long": 11.242888409563156 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.08.23 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 0.1 km hinter AK N\u00fcrnberg und 3.2 km vor Brunn", + "", + "L\u00e4nge: 1.56 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A9 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.24288841, + 49.457712659 + ], + [ + 11.2426043, + 49.457408001 + ], + [ + 11.2419664, + 49.456772401 + ], + [ + 11.2417052, + 49.456551401 + ], + [ + 11.2411855, + 49.456115401 + ], + [ + 11.2405731, + 49.455672001 + ], + [ + 11.2401563, + 49.455390501 + ], + [ + 11.2398323, + 49.455180001 + ], + [ + 11.2395139, + 49.454995201 + ], + [ + 11.2389141, + 49.454607701 + ], + [ + 11.2381964, + 49.454088701 + ], + [ + 11.2376488, + 49.453614301 + ], + [ + 11.2374253, + 49.453397301 + ], + [ + 11.2367733, + 49.452664601 + ], + [ + 11.2362167, + 49.451964701 + ], + [ + 11.2356317, + 49.450921601 + ], + [ + 11.2353206, + 49.450237901 + ], + [ + 11.2350015, + 49.449656201 + ], + [ + 11.2347998, + 49.449331501 + ], + [ + 11.2340604, + 49.448255501 + ], + [ + 11.2329676, + 49.447075101 + ], + [ + 11.2319619, + 49.446020701 + ], + [ + 11.231797396, + 49.445854733 + ] + ] + } + }, + { + "identifier": "2026-017176--vi-bs.2026-04-07_07-00-00-000_016.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.05935873005961,11.920910925979511,49.06358576095985,11.91859588712449", + "point": "49.05935873005961,11.920910925979511", + "startLcPosition": "49", + "impact": { + "lower": "Laaber", + "upper": "Riedtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Riedtal - Laaber", + "coordinate": { + "lat": 49.05935873005961, + "long": 11.920910925979511 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 18:00 Uhr", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 1.8 km hinter Riedtal und 3.9 km vor AS Laaber", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A3 von Riedtal (Parkplatz) nach Laaber (AS) Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.920910926, + 49.05935873 + ], + [ + 11.9206358, + 49.059752101 + ], + [ + 11.9197949, + 49.061179501 + ], + [ + 11.9195523, + 49.061634101 + ], + [ + 11.9186484, + 49.063479401 + ], + [ + 11.918595887, + 49.063585761 + ] + ] + } + }, + { + "identifier": "2026-017136--vi-bs.2026-04-07_07-30-00-000.devi-zus.2026-04-07_07-30-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.171932172372905,11.795905012861734,49.17934432927435,11.72924876160601", + "point": "49.171932172372905,11.795905012861734", + "startLcPosition": "54", + "impact": { + "lower": "Spitzig Berg", + "upper": "K\u00fchberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | K\u00fchberg - Spitzig Berg", + "coordinate": { + "lat": 49.171932172372905, + "long": 11.795905012861734 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 15:30 Uhr", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 2.6 km hinter K\u00fchberg und 3.0 km vor Spitzig Berg", + "", + "L\u00e4nge: 4.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 von K\u00fchberg (Parkplatz) nach Spitzig Berg (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.795905013, + 49.171932172 + ], + [ + 11.7947005, + 49.171877201 + ], + [ + 11.7899846, + 49.171724601 + ], + [ + 11.7862842, + 49.171806401 + ], + [ + 11.7825188, + 49.172023001 + ], + [ + 11.7780081, + 49.172540501 + ], + [ + 11.7754153, + 49.172981201 + ], + [ + 11.7736872, + 49.173332001 + ], + [ + 11.7702756, + 49.174204701 + ], + [ + 11.7649556, + 49.175791201 + ], + [ + 11.7627329, + 49.176361201 + ], + [ + 11.7608578, + 49.176780601 + ], + [ + 11.7590939, + 49.177064501 + ], + [ + 11.757123, + 49.177235801 + ], + [ + 11.756265, + 49.177288101 + ], + [ + 11.7555042, + 49.177311901 + ], + [ + 11.754923, + 49.177314701 + ], + [ + 11.7526928, + 49.177256801 + ], + [ + 11.7500182, + 49.177109201 + ], + [ + 11.748405, + 49.177045801 + ], + [ + 11.7465927, + 49.177025301 + ], + [ + 11.7463038, + 49.177022701 + ], + [ + 11.745247, + 49.177053401 + ], + [ + 11.74404, + 49.177118001 + ], + [ + 11.743564, + 49.177157501 + ], + [ + 11.7431603, + 49.177188501 + ], + [ + 11.7422982, + 49.177276701 + ], + [ + 11.7404995, + 49.177523001 + ], + [ + 11.7396191, + 49.177667501 + ], + [ + 11.7387936, + 49.177820501 + ], + [ + 11.7356855, + 49.178439401 + ], + [ + 11.7344158, + 49.178678301 + ], + [ + 11.7333172, + 49.178866801 + ], + [ + 11.7328455, + 49.178943301 + ], + [ + 11.7324378, + 49.178998901 + ], + [ + 11.7318759, + 49.179078301 + ], + [ + 11.7315798, + 49.179117701 + ], + [ + 11.7311045, + 49.179174401 + ], + [ + 11.7302227, + 49.179268101 + ], + [ + 11.729248762, + 49.179344329 + ] + ] + } + }, + { + "identifier": "2026-017136--vi-bs.2026-04-07_07-30-00-000.devi-zus.2026-04-07_07-30-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.17923509017683,11.729229114109959,49.171800134905,11.795891323830135", + "point": "49.17923509017683,11.729229114109959", + "startLcPosition": "58", + "impact": { + "lower": "K\u00fchberg", + "upper": "Spitzig Berg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Spitzig Berg - K\u00fchberg", + "coordinate": { + "lat": 49.17923509017683, + "long": 11.729229114109959 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 15:30 Uhr", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 3.0 km hinter Spitzig Berg und 2.6 km vor K\u00fchberg", + "", + "L\u00e4nge: 4.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 von K\u00fchberg (Parkplatz) nach Spitzig Berg (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.729229114, + 49.17923509 + ], + [ + 11.7294732, + 49.179216401 + ], + [ + 11.7304388, + 49.179127901 + ], + [ + 11.7317893, + 49.178971201 + ], + [ + 11.7323585, + 49.178893301 + ], + [ + 11.7326454, + 49.178852101 + ], + [ + 11.7335106, + 49.178721101 + ], + [ + 11.7351848, + 49.178419901 + ], + [ + 11.7355542, + 49.178346801 + ], + [ + 11.7357787, + 49.178306101 + ], + [ + 11.7384241, + 49.177777901 + ], + [ + 11.7395949, + 49.177563601 + ], + [ + 11.7405093, + 49.177404001 + ], + [ + 11.7423036, + 49.177148601 + ], + [ + 11.743643, + 49.177027601 + ], + [ + 11.7439255, + 49.177009301 + ], + [ + 11.7453542, + 49.176926301 + ], + [ + 11.746639, + 49.176896801 + ], + [ + 11.7483973, + 49.176922501 + ], + [ + 11.750022, + 49.176990901 + ], + [ + 11.7529472, + 49.177150101 + ], + [ + 11.7535317, + 49.177160901 + ], + [ + 11.7547099, + 49.177191501 + ], + [ + 11.7553578, + 49.177192801 + ], + [ + 11.7560024, + 49.177181001 + ], + [ + 11.7569604, + 49.177132201 + ], + [ + 11.759076, + 49.176930901 + ], + [ + 11.7607572, + 49.176666701 + ], + [ + 11.7626559, + 49.176264101 + ], + [ + 11.764852, + 49.175690801 + ], + [ + 11.7702121, + 49.174116301 + ], + [ + 11.7736928, + 49.173213701 + ], + [ + 11.7754042, + 49.172860501 + ], + [ + 11.7779739, + 49.172417201 + ], + [ + 11.7825227, + 49.171875401 + ], + [ + 11.7863133, + 49.171681101 + ], + [ + 11.7899811, + 49.171613601 + ], + [ + 11.7947447, + 49.171749301 + ], + [ + 11.795891324, + 49.171800135 + ] + ] + } + }, + { + "identifier": "2023-000929--vi-bs.2024-06-17_00-00-00-000.devi-zus.2022-05-13_00-00-00-000.f_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.2573823867783,11.608796765054002,49.27259562825144,11.60064538115719", + "point": "49.2573823867783,11.608796765054002", + "startLcPosition": "63", + "impact": { + "lower": "Neumarkt-Ost", + "upper": "Deusmauerer Moor", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Deusmauerer Moor - Neumarkt-Ost", + "startTimestamp": "2024-06-17T00:00:00+02:00", + "coordinate": { + "lat": 49.2573823867783, + "long": 11.608796765054002 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.06.24 um 00:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 0.4 km hinter Deusmauerer Moor und 2.4 km vor AS Neumarkt-Ost", + "", + "L\u00e4nge: 1.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A3 Br\u00fcckenneubau TB Krondorf " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.608796765, + 49.257382387 + ], + [ + 11.6085572, + 49.257657701 + ], + [ + 11.607921, + 49.258412201 + ], + [ + 11.6073955, + 49.259077701 + ], + [ + 11.6069202, + 49.259718701 + ], + [ + 11.6060229, + 49.261041701 + ], + [ + 11.6049581, + 49.262769401 + ], + [ + 11.6046389, + 49.263350501 + ], + [ + 11.6038066, + 49.265093501 + ], + [ + 11.603455, + 49.265919901 + ], + [ + 11.602918, + 49.267359001 + ], + [ + 11.6028437, + 49.267581801 + ], + [ + 11.6027317, + 49.267879301 + ], + [ + 11.6020335, + 49.269757701 + ], + [ + 11.6018066, + 49.270293301 + ], + [ + 11.601541, + 49.270902801 + ], + [ + 11.601132, + 49.271721401 + ], + [ + 11.6008584, + 49.272215801 + ], + [ + 11.600645381, + 49.272595628 + ] + ] + } + }, + { + "identifier": "2023-000929--vi-bs.2024-06-17_00-00-00-000.devi-zus.2022-05-13_00-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.272555145018316,11.600476332856926,49.25732017280825,11.608630514687768", + "point": "49.272555145018316,11.600476332856926", + "startLcPosition": "65", + "impact": { + "lower": "Deusmauerer Moor", + "upper": "Neumarkt-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Neumarkt-Ost - Deusmauerer Moor", + "startTimestamp": "2024-06-17T00:00:00+02:00", + "coordinate": { + "lat": 49.272555145018316, + "long": 11.600476332856926 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.06.24 um 00:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 2.4 km hinter AS Neumarkt-Ost und 0.4 km vor Deusmauerer Moor", + "", + "L\u00e4nge: 1.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A3 Br\u00fcckenneubau TB Krondorf " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.600476333, + 49.272555145 + ], + [ + 11.6006886, + 49.272173901 + ], + [ + 11.6009686, + 49.271680601 + ], + [ + 11.6013653, + 49.270873601 + ], + [ + 11.6016453, + 49.270252401 + ], + [ + 11.6018911, + 49.269643501 + ], + [ + 11.6022867, + 49.268598401 + ], + [ + 11.6025338, + 49.267841201 + ], + [ + 11.6026435, + 49.267581501 + ], + [ + 11.6028754, + 49.266969101 + ], + [ + 11.6032169, + 49.266063501 + ], + [ + 11.6036329, + 49.265061201 + ], + [ + 11.6044699, + 49.263308501 + ], + [ + 11.6047838, + 49.262718601 + ], + [ + 11.6058505, + 49.260996601 + ], + [ + 11.6067899, + 49.259626801 + ], + [ + 11.6072758, + 49.258974301 + ], + [ + 11.6077711, + 49.258345001 + ], + [ + 11.608427, + 49.257552001 + ], + [ + 11.608630515, + 49.257320173 + ] + ] + } + }, + { + "identifier": "2025-063521--vi-bs.2026-01-26_00-00-00-000.devi-zus.2026-01-26_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.312992200817796,11.514415204530545,49.314144213058036,11.493047903183646", + "point": "49.312992200817796,11.514415204530545", + "startLcPosition": "65", + "impact": { + "lower": "Wolfstein", + "upper": "Neumarkt-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Neumarkt-Ost - Wolfstein", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 49.312992200817796, + "long": 11.514415204530545 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 01.12.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.27)", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 6.3 km hinter AS Neumarkt-Ost und 0.2 km vor Wolfstein", + "", + "L\u00e4nge: 1.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A3 Neubau Talbr\u00fccke Pilsach Bw 430a" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.514415205, + 49.312992201 + ], + [ + 11.5143937, + 49.313000301 + ], + [ + 11.5137755, + 49.313221401 + ], + [ + 11.5134232, + 49.313348701 + ], + [ + 11.5130431, + 49.313479001 + ], + [ + 11.5122084, + 49.313736601 + ], + [ + 11.510446, + 49.314214501 + ], + [ + 11.5094076, + 49.314443801 + ], + [ + 11.508302, + 49.314651901 + ], + [ + 11.5076352, + 49.314759401 + ], + [ + 11.5069322, + 49.314853301 + ], + [ + 11.5062043, + 49.314934801 + ], + [ + 11.5054172, + 49.315003401 + ], + [ + 11.5048245, + 49.315038701 + ], + [ + 11.5039586, + 49.315079601 + ], + [ + 11.5034608, + 49.315084701 + ], + [ + 11.5028413, + 49.315086301 + ], + [ + 11.5020421, + 49.315067001 + ], + [ + 11.5015211, + 49.315043001 + ], + [ + 11.5010634, + 49.315010501 + ], + [ + 11.5006591, + 49.314975201 + ], + [ + 11.4989588, + 49.314810501 + ], + [ + 11.4980655, + 49.314707001 + ], + [ + 11.4953984, + 49.314368101 + ], + [ + 11.4939284, + 49.314208401 + ], + [ + 11.493047903, + 49.314144213 + ] + ] + } + }, + { + "identifier": "2025-063521--vi-bs.2026-01-26_00-00-00-000.devi-zus.2026-01-26_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.314020943978726,11.493067348988964,49.31288334972335,11.514319870640167", + "point": "49.314020943978726,11.493067348988964", + "startLcPosition": "67", + "impact": { + "lower": "Neumarkt-Ost", + "upper": "Wolfstein", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Wolfstein - Neumarkt-Ost", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 49.314020943978726, + "long": 11.493067348988964 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 01.12.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.27)", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 0.2 km hinter Wolfstein und 6.3 km vor AS Neumarkt-Ost", + "", + "L\u00e4nge: 1.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A3 Neubau Talbr\u00fccke Pilsach Bw 430a" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.493067349, + 49.314020944 + ], + [ + 11.4931344, + 49.314025101 + ], + [ + 11.4942612, + 49.314126601 + ], + [ + 11.4951835, + 49.314219401 + ], + [ + 11.4954637, + 49.314258001 + ], + [ + 11.4960452, + 49.314329801 + ], + [ + 11.4966464, + 49.314407601 + ], + [ + 11.4971821, + 49.314476901 + ], + [ + 11.4976047, + 49.314531601 + ], + [ + 11.4992026, + 49.314719701 + ], + [ + 11.5006792, + 49.314865601 + ], + [ + 11.5014102, + 49.314917401 + ], + [ + 11.5020207, + 49.314945201 + ], + [ + 11.5026828, + 49.314959801 + ], + [ + 11.5037323, + 49.314958101 + ], + [ + 11.5045965, + 49.314933201 + ], + [ + 11.5051332, + 49.314908501 + ], + [ + 11.5058619, + 49.314850801 + ], + [ + 11.5067977, + 49.314749801 + ], + [ + 11.5076211, + 49.314640501 + ], + [ + 11.5082615, + 49.314535901 + ], + [ + 11.5093482, + 49.314334201 + ], + [ + 11.509379, + 49.314328401 + ], + [ + 11.5103286, + 49.314117301 + ], + [ + 11.5118405, + 49.313717401 + ], + [ + 11.5127249, + 49.313445401 + ], + [ + 11.5129587, + 49.313372801 + ], + [ + 11.5133434, + 49.313239601 + ], + [ + 11.5138342, + 49.313063701 + ], + [ + 11.514319871, + 49.31288335 + ] + ] + } + }, + { + "identifier": "2026-017831--vi-fbm.2026-04-11_01-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.32699027211869,11.457735395926676,49.354548817710125,11.436339682772896", + "point": "49.32699027211869,11.457735395926676", + "startLcPosition": "68", + "impact": { + "lower": "Eichen\u00e4cker", + "upper": "Neumarkt/Oberpfalz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Neumarkt/Oberpfalz - Eichen\u00e4cker", + "coordinate": { + "lat": 49.32699027211869, + "long": 11.457735395926676 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 01:00 bis 06:00 Uhr", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 1.8 km hinter AS Neumarkt/Oberpfalz und 0.1 km vor Eichen\u00e4cker", + "", + "L\u00e4nge: 3.5 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 von NeumarktOberpfalz (AS) nach Eichen\u00e4cker (Parkplatz) Baustelleneinrichtung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.457735396, + 49.326990272 + ], + [ + 11.4575331, + 49.327204801 + ], + [ + 11.4568687, + 49.328025101 + ], + [ + 11.4562382, + 49.328933701 + ], + [ + 11.4557142, + 49.329782201 + ], + [ + 11.455457, + 49.330248401 + ], + [ + 11.4552285, + 49.330701301 + ], + [ + 11.4550015, + 49.331224501 + ], + [ + 11.4545818, + 49.332316801 + ], + [ + 11.4541855, + 49.333588701 + ], + [ + 11.4537079, + 49.335186401 + ], + [ + 11.4535118, + 49.335792401 + ], + [ + 11.4532908, + 49.336346801 + ], + [ + 11.4531176, + 49.336770201 + ], + [ + 11.4529596, + 49.337062501 + ], + [ + 11.4527049, + 49.337512201 + ], + [ + 11.4521334, + 49.338407201 + ], + [ + 11.4516939, + 49.338989101 + ], + [ + 11.4515539, + 49.339150701 + ], + [ + 11.4510913, + 49.339684401 + ], + [ + 11.4504153, + 49.340373201 + ], + [ + 11.449694, + 49.341022201 + ], + [ + 11.4489531, + 49.341616401 + ], + [ + 11.4482418, + 49.342128901 + ], + [ + 11.4469713, + 49.342951601 + ], + [ + 11.446714, + 49.343105501 + ], + [ + 11.4458841, + 49.343608901 + ], + [ + 11.4450825, + 49.344122401 + ], + [ + 11.4435702, + 49.345157801 + ], + [ + 11.442403, + 49.346093501 + ], + [ + 11.4412957, + 49.347103801 + ], + [ + 11.440262, + 49.348220601 + ], + [ + 11.4397628, + 49.348828201 + ], + [ + 11.439261, + 49.349506401 + ], + [ + 11.4386539, + 49.350416601 + ], + [ + 11.4381007, + 49.351381601 + ], + [ + 11.4376236, + 49.352362901 + ], + [ + 11.4372795, + 49.353015901 + ], + [ + 11.4370947, + 49.353340301 + ], + [ + 11.4366004, + 49.354169301 + ], + [ + 11.436339683, + 49.354548818 + ] + ] + } + }, + { + "identifier": "2026-017822--vi-fbm.2026-04-10_21-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.32699027211869,11.457735395926676,49.36002355924479,11.429356124152104", + "point": "49.32699027211869,11.457735395926676", + "startLcPosition": "68", + "impact": { + "lower": "Ober\u00f6lsbach", + "upper": "Neumarkt/Oberpfalz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Neumarkt/Oberpfalz - Ober\u00f6lsbach", + "coordinate": { + "lat": 49.32699027211869, + "long": 11.457735395926676 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 21:00 bis zum 11.04.26 01:00 Uhr.", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 1.8 km hinter AS Neumarkt/Oberpfalz und 0.4 km vor AS Ober\u00f6lsbach", + "", + "L\u00e4nge: 4.3 km", + "", + "A3 von NeumarktOberpfalz (AS) nach Ober\u00f6lsbach (AS) Baustelleneinrichtung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.457735396, + 49.326990272 + ], + [ + 11.4575331, + 49.327204801 + ], + [ + 11.4568687, + 49.328025101 + ], + [ + 11.4562382, + 49.328933701 + ], + [ + 11.4557142, + 49.329782201 + ], + [ + 11.455457, + 49.330248401 + ], + [ + 11.4552285, + 49.330701301 + ], + [ + 11.4550015, + 49.331224501 + ], + [ + 11.4545818, + 49.332316801 + ], + [ + 11.4541855, + 49.333588701 + ], + [ + 11.4537079, + 49.335186401 + ], + [ + 11.4535118, + 49.335792401 + ], + [ + 11.4532908, + 49.336346801 + ], + [ + 11.4531176, + 49.336770201 + ], + [ + 11.4529596, + 49.337062501 + ], + [ + 11.4527049, + 49.337512201 + ], + [ + 11.4521334, + 49.338407201 + ], + [ + 11.4516939, + 49.338989101 + ], + [ + 11.4515539, + 49.339150701 + ], + [ + 11.4510913, + 49.339684401 + ], + [ + 11.4504153, + 49.340373201 + ], + [ + 11.449694, + 49.341022201 + ], + [ + 11.4489531, + 49.341616401 + ], + [ + 11.4482418, + 49.342128901 + ], + [ + 11.4469713, + 49.342951601 + ], + [ + 11.446714, + 49.343105501 + ], + [ + 11.4458841, + 49.343608901 + ], + [ + 11.4450825, + 49.344122401 + ], + [ + 11.4435702, + 49.345157801 + ], + [ + 11.442403, + 49.346093501 + ], + [ + 11.4412957, + 49.347103801 + ], + [ + 11.440262, + 49.348220601 + ], + [ + 11.4397628, + 49.348828201 + ], + [ + 11.439261, + 49.349506401 + ], + [ + 11.4386539, + 49.350416601 + ], + [ + 11.4381007, + 49.351381601 + ], + [ + 11.4376236, + 49.352362901 + ], + [ + 11.4372795, + 49.353015901 + ], + [ + 11.4370947, + 49.353340301 + ], + [ + 11.4366004, + 49.354169301 + ], + [ + 11.4360998, + 49.354898001 + ], + [ + 11.4358205, + 49.355239301 + ], + [ + 11.4352842, + 49.355863001 + ], + [ + 11.4351046, + 49.356069201 + ], + [ + 11.4345188, + 49.356673001 + ], + [ + 11.4325508, + 49.358223801 + ], + [ + 11.4321987, + 49.358471301 + ], + [ + 11.4315034, + 49.358898001 + ], + [ + 11.4304049, + 49.359495901 + ], + [ + 11.4298703, + 49.359772301 + ], + [ + 11.429356124, + 49.360023559 + ] + ] + } + }, + { + "identifier": "2025-049993--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_006.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.417605538773785,11.28222782377189,49.455965371906395,11.250901312889297", + "point": "49.417605538773785,11.28222782377189", + "startLcPosition": "74", + "impact": { + "lower": "N\u00fcrnberg", + "upper": "Altdorf", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Passau -> N\u00fcrnberg", + "title": "A3 | Altdorf - N\u00fcrnberg", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 49.417605538773785, + "long": 11.28222782377189 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 17.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.12.26)", + "", + "A3: Passau -> N\u00fcrnberg, zwischen 1.9 km hinter AK Altdorf und 0.6 km vor AK N\u00fcrnberg", + "", + "L\u00e4nge: 5 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 Erneuerung an der Decke D404R" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.282227824, + 49.417605539 + ], + [ + 11.2812835, + 49.418588601 + ], + [ + 11.2803718, + 49.419595301 + ], + [ + 11.2798594, + 49.420185001 + ], + [ + 11.279287, + 49.420852801 + ], + [ + 11.2786512, + 49.421603001 + ], + [ + 11.277976, + 49.422455801 + ], + [ + 11.2771688, + 49.423512601 + ], + [ + 11.2761525, + 49.424912701 + ], + [ + 11.2757789, + 49.425465601 + ], + [ + 11.2750814, + 49.426481001 + ], + [ + 11.274045, + 49.428133001 + ], + [ + 11.273484, + 49.429073401 + ], + [ + 11.2734164, + 49.429192701 + ], + [ + 11.2733399, + 49.429327801 + ], + [ + 11.2724317, + 49.431014301 + ], + [ + 11.2721136, + 49.431630001 + ], + [ + 11.2718596, + 49.432133101 + ], + [ + 11.2714458, + 49.433017901 + ], + [ + 11.2709157, + 49.434199801 + ], + [ + 11.2704203, + 49.435401001 + ], + [ + 11.2700047, + 49.436489801 + ], + [ + 11.2696686, + 49.437459901 + ], + [ + 11.2696627, + 49.437476601 + ], + [ + 11.26962, + 49.437590901 + ], + [ + 11.2695346, + 49.437847001 + ], + [ + 11.2690167, + 49.439460201 + ], + [ + 11.2689285, + 49.439731001 + ], + [ + 11.2679029, + 49.443100101 + ], + [ + 11.2675575, + 49.444054101 + ], + [ + 11.2673718, + 49.444527401 + ], + [ + 11.2671633, + 49.444999701 + ], + [ + 11.2668568, + 49.445602701 + ], + [ + 11.266519, + 49.446179101 + ], + [ + 11.2660868, + 49.446826101 + ], + [ + 11.2656216, + 49.447458201 + ], + [ + 11.2651905, + 49.447981901 + ], + [ + 11.2647337, + 49.448495601 + ], + [ + 11.2636255, + 49.449559801 + ], + [ + 11.2626776, + 49.450340701 + ], + [ + 11.2616665, + 49.451074901 + ], + [ + 11.2608655, + 49.451589401 + ], + [ + 11.2600626, + 49.452065501 + ], + [ + 11.2587634, + 49.452737001 + ], + [ + 11.2585199, + 49.452852801 + ], + [ + 11.2580801, + 49.453062101 + ], + [ + 11.2546453, + 49.454487701 + ], + [ + 11.2521919, + 49.455464201 + ], + [ + 11.2513686, + 49.455781901 + ], + [ + 11.250901313, + 49.455965372 + ] + ] + } + }, + { + "identifier": "2026-017050--vi-bs.2026-04-06_20-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.42466285435992,11.27614435732837,49.423042087430574,11.277345221358475", + "point": "49.42466285435992,11.27614435732837", + "startLcPosition": "75", + "impact": { + "lower": "Altdorf", + "upper": "Fuchsm\u00fchle", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | Fuchsm\u00fchle - Altdorf", + "coordinate": { + "lat": 49.42466285435992, + "long": 11.27614435732837 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 1.1 km hinter Fuchsm\u00fchle und 2.6 km vor AK Altdorf", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A3 von Fuchsm\u00fchle (Parkplatz) nach Altdorf (AK) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.276144357, + 49.424662854 + ], + [ + 11.2765108, + 49.424132901 + ], + [ + 11.277345221, + 49.423042087 + ] + ] + } + }, + { + "identifier": "2025-049993--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_006.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.455872448629584,11.250815175169356,49.41753991161411,11.282067712112921", + "point": "49.455872448629584,11.250815175169356", + "startLcPosition": "77", + "impact": { + "lower": "Altdorf", + "upper": "N\u00fcrnberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Passau", + "title": "A3 | N\u00fcrnberg - Altdorf", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 49.455872448629584, + "long": 11.250815175169356 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 17.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.12.26)", + "", + "A3: N\u00fcrnberg -> Passau, zwischen 0.6 km hinter AK N\u00fcrnberg und 1.9 km vor AK Altdorf", + "", + "L\u00e4nge: 5 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A3 Erneuerung an der Decke D404R" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.250815175, + 49.455872449 + ], + [ + 11.2521901, + 49.455328801 + ], + [ + 11.2544851, + 49.454419201 + ], + [ + 11.2572989, + 49.453278701 + ], + [ + 11.2586516, + 49.452643301 + ], + [ + 11.2599712, + 49.451961601 + ], + [ + 11.2607571, + 49.451492501 + ], + [ + 11.2612035, + 49.451201201 + ], + [ + 11.2615535, + 49.450981101 + ], + [ + 11.2625691, + 49.450246301 + ], + [ + 11.2630389, + 49.449858701 + ], + [ + 11.2634894, + 49.449473801 + ], + [ + 11.264059, + 49.448949301 + ], + [ + 11.2643388, + 49.448677201 + ], + [ + 11.2644651, + 49.448543601 + ], + [ + 11.2646118, + 49.448391701 + ], + [ + 11.2650717, + 49.447878801 + ], + [ + 11.2652994, + 49.447608401 + ], + [ + 11.265536, + 49.447292301 + ], + [ + 11.2659704, + 49.446711801 + ], + [ + 11.2663644, + 49.446122101 + ], + [ + 11.2666934, + 49.445544701 + ], + [ + 11.2669972, + 49.444962401 + ], + [ + 11.2673842, + 49.444038001 + ], + [ + 11.2677299, + 49.443084301 + ], + [ + 11.2679151, + 49.442473201 + ], + [ + 11.2687422, + 49.439744001 + ], + [ + 11.2688791, + 49.439301201 + ], + [ + 11.2690383, + 49.438786401 + ], + [ + 11.2693491, + 49.437835801 + ], + [ + 11.2694876, + 49.437441701 + ], + [ + 11.269526, + 49.437326101 + ], + [ + 11.2698276, + 49.436467601 + ], + [ + 11.2702794, + 49.435284901 + ], + [ + 11.2707435, + 49.434169601 + ], + [ + 11.271251, + 49.433028401 + ], + [ + 11.2716614, + 49.432156201 + ], + [ + 11.2722279, + 49.431030501 + ], + [ + 11.272789, + 49.429993101 + ], + [ + 11.2732277, + 49.429181001 + ], + [ + 11.2734648, + 49.428777801 + ], + [ + 11.2740202, + 49.427852101 + ], + [ + 11.2744417, + 49.427173301 + ], + [ + 11.2747794, + 49.426645001 + ], + [ + 11.2750347, + 49.426249201 + ], + [ + 11.2759025, + 49.424992801 + ], + [ + 11.2759866, + 49.424891001 + ], + [ + 11.2765108, + 49.424132901 + ], + [ + 11.2781138, + 49.422037301 + ], + [ + 11.2790834, + 49.420845001 + ], + [ + 11.2798262, + 49.419981301 + ], + [ + 11.2804443, + 49.419277301 + ], + [ + 11.2813507, + 49.418282501 + ], + [ + 11.282067712, + 49.417539912 + ] + ] + } + }, + { + "identifier": "2023-002208--vi-bs.2025-12-18_00-00-00-000.devi-zus.2022-11-13_00-00-00-000.f_001.de35", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.56012361955248,10.988817971179973,49.57761026603374,10.930731882720345", + "point": "49.56012361955248,10.988817971179973", + "startLcPosition": "83", + "impact": { + "lower": "Aurach", + "upper": "F\u00fcrth/Erlangen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> W\u00fcrzburg", + "title": "A3 | F\u00fcrth/Erlangen - Aurach", + "startTimestamp": "2025-12-18T00:00:00+01:00", + "coordinate": { + "lat": 49.56012361955248, + "long": 10.988817971179973 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.12.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A3: N\u00fcrnberg -> W\u00fcrzburg, zwischen 0.2 km hinter AK F\u00fcrth/Erlangen und 0.5 km vor Aurach", + "", + "L\u00e4nge: 4.99 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "\u00d6PP BA 7 und 8 A3 Anbau von Fahrstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.988817971, + 49.56012362 + ], + [ + 10.9886903, + 49.560129301 + ], + [ + 10.9876901, + 49.560149301 + ], + [ + 10.9869372, + 49.560161201 + ], + [ + 10.9860609, + 49.560165301 + ], + [ + 10.9850354, + 49.560167201 + ], + [ + 10.9839212, + 49.560170701 + ], + [ + 10.9821633, + 49.560175101 + ], + [ + 10.9821419, + 49.560175201 + ], + [ + 10.981128, + 49.560181601 + ], + [ + 10.980658, + 49.560184601 + ], + [ + 10.9793455, + 49.560193401 + ], + [ + 10.9783937, + 49.560196501 + ], + [ + 10.9751014, + 49.560224501 + ], + [ + 10.9736865, + 49.560248601 + ], + [ + 10.9721398, + 49.560289701 + ], + [ + 10.971067, + 49.560318601 + ], + [ + 10.9695753, + 49.560372301 + ], + [ + 10.9679872, + 49.560448401 + ], + [ + 10.9666116, + 49.560528001 + ], + [ + 10.9650764, + 49.560653401 + ], + [ + 10.9637238, + 49.560784401 + ], + [ + 10.9626855, + 49.560897301 + ], + [ + 10.962471, + 49.560923101 + ], + [ + 10.9623528, + 49.560935301 + ], + [ + 10.9618633, + 49.561000601 + ], + [ + 10.9612074, + 49.561091301 + ], + [ + 10.9606323, + 49.561176701 + ], + [ + 10.958997, + 49.561448401 + ], + [ + 10.9580545, + 49.561622501 + ], + [ + 10.957383, + 49.561757101 + ], + [ + 10.9566919, + 49.561904101 + ], + [ + 10.9558844, + 49.562088901 + ], + [ + 10.9551341, + 49.562267501 + ], + [ + 10.9540555, + 49.562551401 + ], + [ + 10.9530437, + 49.562842001 + ], + [ + 10.9525143, + 49.562994701 + ], + [ + 10.9515699, + 49.563291801 + ], + [ + 10.9509592, + 49.563491801 + ], + [ + 10.9505984, + 49.563618401 + ], + [ + 10.9503071, + 49.563715501 + ], + [ + 10.9498249, + 49.563889301 + ], + [ + 10.9494996, + 49.564005701 + ], + [ + 10.9480693, + 49.564560601 + ], + [ + 10.9477994, + 49.564675301 + ], + [ + 10.9474076, + 49.564839401 + ], + [ + 10.9469141, + 49.565049301 + ], + [ + 10.9462498, + 49.565349101 + ], + [ + 10.9453529, + 49.565772601 + ], + [ + 10.9446828, + 49.566099801 + ], + [ + 10.9439311, + 49.566493801 + ], + [ + 10.9435335, + 49.566700601 + ], + [ + 10.9435047, + 49.566715201 + ], + [ + 10.942714, + 49.567132201 + ], + [ + 10.9418855, + 49.567625101 + ], + [ + 10.9410456, + 49.568138001 + ], + [ + 10.9398724, + 49.568902201 + ], + [ + 10.9393149, + 49.569282401 + ], + [ + 10.9387191, + 49.569704201 + ], + [ + 10.9379832, + 49.570247101 + ], + [ + 10.9372936, + 49.570784301 + ], + [ + 10.9363639, + 49.571544001 + ], + [ + 10.9357903, + 49.572038701 + ], + [ + 10.9355003, + 49.572297401 + ], + [ + 10.9349597, + 49.572791901 + ], + [ + 10.9347125, + 49.573027201 + ], + [ + 10.9341637, + 49.573563001 + ], + [ + 10.9334747, + 49.574271901 + ], + [ + 10.9329404, + 49.574848901 + ], + [ + 10.9322985, + 49.575579701 + ], + [ + 10.9315911, + 49.576439501 + ], + [ + 10.9311822, + 49.576981701 + ], + [ + 10.930731883, + 49.577610266 + ] + ] + } + }, + { + "identifier": "2023-002208--vi-bs.2025-12-18_00-00-00-000.devi-zus.2022-11-13_00-00-00-000.f_001.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.57754621587461,10.93051770364713,49.55994737483345,10.988800304427171", + "point": "49.57754621587461,10.93051770364713", + "startLcPosition": "85", + "impact": { + "lower": "F\u00fcrth/Erlangen", + "upper": "Aurach", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> N\u00fcrnberg", + "title": "A3 | Aurach - F\u00fcrth/Erlangen", + "startTimestamp": "2025-12-18T00:00:00+01:00", + "coordinate": { + "lat": 49.57754621587461, + "long": 10.93051770364713 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.12.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A3: W\u00fcrzburg -> N\u00fcrnberg, zwischen 0.5 km hinter Aurach und 0.2 km vor AK F\u00fcrth/Erlangen", + "", + "L\u00e4nge: 4.99 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "\u00d6PP BA 7 und 8 A3 Anbau von Fahrstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.930517704, + 49.577546216 + ], + [ + 10.930567, + 49.577475901 + ], + [ + 10.9308224, + 49.577122101 + ], + [ + 10.9313646, + 49.576414301 + ], + [ + 10.9320867, + 49.575515501 + ], + [ + 10.9323908, + 49.575172601 + ], + [ + 10.932816, + 49.574686001 + ], + [ + 10.933299, + 49.574156001 + ], + [ + 10.9340649, + 49.573388701 + ], + [ + 10.9346216, + 49.572845601 + ], + [ + 10.9348561, + 49.572631401 + ], + [ + 10.9355935, + 49.571961001 + ], + [ + 10.9361447, + 49.571490601 + ], + [ + 10.9369099, + 49.570860601 + ], + [ + 10.9377554, + 49.570208801 + ], + [ + 10.938106, + 49.569956301 + ], + [ + 10.9386211, + 49.569575501 + ], + [ + 10.9390653, + 49.569263701 + ], + [ + 10.9398523, + 49.568715001 + ], + [ + 10.9408224, + 49.568088801 + ], + [ + 10.9414836, + 49.567681901 + ], + [ + 10.9425597, + 49.567041501 + ], + [ + 10.9432027, + 49.566677101 + ], + [ + 10.9433893, + 49.566579001 + ], + [ + 10.9437797, + 49.566373101 + ], + [ + 10.9446475, + 49.565932901 + ], + [ + 10.9448623, + 49.565822501 + ], + [ + 10.946141, + 49.565228601 + ], + [ + 10.9468738, + 49.564903901 + ], + [ + 10.94763, + 49.564578301 + ], + [ + 10.9479633, + 49.564442301 + ], + [ + 10.9484153, + 49.564262601 + ], + [ + 10.9494546, + 49.563863301 + ], + [ + 10.9504353, + 49.563510201 + ], + [ + 10.9514712, + 49.563163601 + ], + [ + 10.952687, + 49.562788201 + ], + [ + 10.9532097, + 49.562634701 + ], + [ + 10.9539579, + 49.562427901 + ], + [ + 10.9551174, + 49.562122801 + ], + [ + 10.9561365, + 49.561881601 + ], + [ + 10.9570715, + 49.561675201 + ], + [ + 10.9576536, + 49.561553701 + ], + [ + 10.9587307, + 49.561347401 + ], + [ + 10.9596581, + 49.561186001 + ], + [ + 10.9606482, + 49.561028801 + ], + [ + 10.9614314, + 49.560913501 + ], + [ + 10.9623057, + 49.560791701 + ], + [ + 10.962431, + 49.560777201 + ], + [ + 10.9635318, + 49.560643801 + ], + [ + 10.9644138, + 49.560553301 + ], + [ + 10.9650614, + 49.560497601 + ], + [ + 10.9659034, + 49.560422301 + ], + [ + 10.966663, + 49.560369901 + ], + [ + 10.9679396, + 49.560284401 + ], + [ + 10.9687907, + 49.560231701 + ], + [ + 10.9695462, + 49.560198701 + ], + [ + 10.9710363, + 49.560141101 + ], + [ + 10.9727157, + 49.560114401 + ], + [ + 10.974063, + 49.560097001 + ], + [ + 10.9784003, + 49.560056501 + ], + [ + 10.9793576, + 49.560052301 + ], + [ + 10.9806587, + 49.560029601 + ], + [ + 10.981122, + 49.560024501 + ], + [ + 10.9821435, + 49.560023301 + ], + [ + 10.9836097, + 49.560013601 + ], + [ + 10.9839146, + 49.560011601 + ], + [ + 10.9850373, + 49.560004301 + ], + [ + 10.9851895, + 49.560005501 + ], + [ + 10.9871275, + 49.559991501 + ], + [ + 10.9874466, + 49.559988001 + ], + [ + 10.9879295, + 49.559982601 + ], + [ + 10.988800304, + 49.559947375 + ] + ] + } + }, + { + "identifier": "2023-002208--vi-bs.2025-12-11_00-00-00-000.devi-zus.2022-11-13_00-00-00-000.f_001.de39", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.61962795021543,10.921632390151332,49.68872326662411,10.860826013222518", + "point": "49.61962795021543,10.921632390151332", + "startLcPosition": "86", + "impact": { + "lower": "Hummelberg", + "upper": "Kleinauweiher", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> W\u00fcrzburg", + "title": "A3 | Kleinauweiher - Hummelberg", + "startTimestamp": "2025-12-11T00:00:00+01:00", + "coordinate": { + "lat": 49.61962795021543, + "long": 10.921632390151332 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.12.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A3: N\u00fcrnberg -> W\u00fcrzburg, zwischen 1.7 km hinter Kleinauweiher und 0.6 km vor Hummelberg", + "", + "L\u00e4nge: 9 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "\u00d6PP BA 7 und 8 A3 Anbau von Fahrstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.92163239, + 49.61962795 + ], + [ + 10.9215762, + 49.619732701 + ], + [ + 10.9212812, + 49.620300201 + ], + [ + 10.9210216, + 49.620833901 + ], + [ + 10.9207398, + 49.621446101 + ], + [ + 10.9204523, + 49.622116001 + ], + [ + 10.9201752, + 49.622794401 + ], + [ + 10.9199867, + 49.623334101 + ], + [ + 10.9197405, + 49.624082701 + ], + [ + 10.9195952, + 49.624567401 + ], + [ + 10.9195199, + 49.624822701 + ], + [ + 10.9193922, + 49.625242801 + ], + [ + 10.9189744, + 49.626783801 + ], + [ + 10.9188729, + 49.627144301 + ], + [ + 10.9185945, + 49.628188701 + ], + [ + 10.9185747, + 49.628253101 + ], + [ + 10.9183405, + 49.629106601 + ], + [ + 10.9181792, + 49.629615601 + ], + [ + 10.9178254, + 49.630626501 + ], + [ + 10.9174535, + 49.631705801 + ], + [ + 10.9174102, + 49.631824601 + ], + [ + 10.9173422, + 49.632010801 + ], + [ + 10.9168194, + 49.633292601 + ], + [ + 10.9162848, + 49.634416901 + ], + [ + 10.9156824, + 49.635555901 + ], + [ + 10.9150722, + 49.636598701 + ], + [ + 10.9145319, + 49.637440501 + ], + [ + 10.9138195, + 49.638464701 + ], + [ + 10.9134059, + 49.639029801 + ], + [ + 10.9129698, + 49.639595901 + ], + [ + 10.9117802, + 49.641044901 + ], + [ + 10.9105866, + 49.642347001 + ], + [ + 10.9103551, + 49.642585201 + ], + [ + 10.9094199, + 49.643503601 + ], + [ + 10.9086893, + 49.644191701 + ], + [ + 10.9082665, + 49.644565401 + ], + [ + 10.9072956, + 49.645401301 + ], + [ + 10.9063584, + 49.646178001 + ], + [ + 10.906214, + 49.646295301 + ], + [ + 10.9045261, + 49.647651501 + ], + [ + 10.9034355, + 49.648568501 + ], + [ + 10.90189, + 49.649969101 + ], + [ + 10.9004535, + 49.651415501 + ], + [ + 10.8996641, + 49.652273101 + ], + [ + 10.8983482, + 49.653813901 + ], + [ + 10.8970654, + 49.655386001 + ], + [ + 10.8962795, + 49.656326101 + ], + [ + 10.8958447, + 49.656846301 + ], + [ + 10.8943033, + 49.658499401 + ], + [ + 10.8934877, + 49.659306301 + ], + [ + 10.8923614, + 49.660341901 + ], + [ + 10.8913477, + 49.661214101 + ], + [ + 10.8902753, + 49.662078401 + ], + [ + 10.8891126, + 49.662950601 + ], + [ + 10.8878946, + 49.663817701 + ], + [ + 10.8866114, + 49.664673401 + ], + [ + 10.8854722, + 49.665404701 + ], + [ + 10.8841003, + 49.666267001 + ], + [ + 10.8813221, + 49.668021901 + ], + [ + 10.8798848, + 49.668919501 + ], + [ + 10.878727, + 49.669664801 + ], + [ + 10.8772794, + 49.670656101 + ], + [ + 10.8763146, + 49.671342201 + ], + [ + 10.8752243, + 49.672138501 + ], + [ + 10.8745661, + 49.672665001 + ], + [ + 10.8741999, + 49.672953401 + ], + [ + 10.8735132, + 49.673506901 + ], + [ + 10.8728381, + 49.674069201 + ], + [ + 10.8715125, + 49.675215501 + ], + [ + 10.8702013, + 49.676418201 + ], + [ + 10.8691784, + 49.677409601 + ], + [ + 10.8682116, + 49.678422301 + ], + [ + 10.8671608, + 49.679570401 + ], + [ + 10.866147, + 49.680737001 + ], + [ + 10.8654629, + 49.681590501 + ], + [ + 10.8646671, + 49.682583301 + ], + [ + 10.864182, + 49.683297901 + ], + [ + 10.8635663, + 49.684156201 + ], + [ + 10.8629136, + 49.685145801 + ], + [ + 10.8622885, + 49.686154201 + ], + [ + 10.8616723, + 49.687156901 + ], + [ + 10.861379, + 49.687682301 + ], + [ + 10.8610947, + 49.688206201 + ], + [ + 10.860826013, + 49.688723267 + ] + ] + } + }, + { + "identifier": "2026-017531--vi-bs.2026-04-08_20-00-00-000_015.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.586160058966335,10.92658427017013,49.57359782751152,10.933856157846503", + "point": "49.586160058966335,10.92658427017013", + "startLcPosition": "86", + "impact": { + "lower": "Erlangen-Frauenaurach", + "upper": "Kleinauweiher", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> N\u00fcrnberg", + "title": "A3 | Kleinauweiher - Erlangen-Frauenaurach", + "coordinate": { + "lat": 49.586160058966335, + "long": 10.92658427017013 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A3: W\u00fcrzburg -> N\u00fcrnberg, zwischen 2.1 km hinter Kleinauweiher und 1.1 km vor AS Erlangen-Frauenaurach", + "", + "L\u00e4nge: 1.5 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A3 von Kleinauweiher (Parkplatz) nach Erlangen-Frauenaurach (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.92658427, + 49.586160059 + ], + [ + 10.9266345, + 49.585975901 + ], + [ + 10.926968, + 49.584854101 + ], + [ + 10.9271503, + 49.584251201 + ], + [ + 10.9272826, + 49.583814901 + ], + [ + 10.9274311, + 49.583355301 + ], + [ + 10.9276261, + 49.582843601 + ], + [ + 10.9278963, + 49.582168601 + ], + [ + 10.9282762, + 49.581356401 + ], + [ + 10.9285595, + 49.580771701 + ], + [ + 10.9290788, + 49.579804201 + ], + [ + 10.9295897, + 49.578943101 + ], + [ + 10.93018, + 49.578027901 + ], + [ + 10.930567, + 49.577475901 + ], + [ + 10.9308224, + 49.577122101 + ], + [ + 10.9313646, + 49.576414301 + ], + [ + 10.9320867, + 49.575515501 + ], + [ + 10.9323908, + 49.575172601 + ], + [ + 10.932816, + 49.574686001 + ], + [ + 10.933299, + 49.574156001 + ], + [ + 10.933856158, + 49.573597828 + ] + ] + } + }, + { + "identifier": "2023-002208--vi-bs.2025-12-11_00-00-00-000.devi-zus.2022-11-13_00-00-00-000.f_001.de37", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.68865058281232,10.860489905670079,49.61955467257653,10.921288522364499", + "point": "49.68865058281232,10.860489905670079", + "startLcPosition": "93", + "impact": { + "lower": "Kleinauweiher", + "upper": "Hummelberg", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> N\u00fcrnberg", + "title": "A3 | Hummelberg - Kleinauweiher", + "startTimestamp": "2025-12-11T00:00:00+01:00", + "coordinate": { + "lat": 49.68865058281232, + "long": 10.860489905670079 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.12.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A3: W\u00fcrzburg -> N\u00fcrnberg, zwischen 0.6 km hinter Hummelberg und 1.7 km vor Kleinauweiher", + "", + "L\u00e4nge: 9 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "\u00d6PP BA 7 und 8 A3 Anbau von Fahrstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.860489906, + 49.688650583 + ], + [ + 10.8605227, + 49.688586501 + ], + [ + 10.8607952, + 49.688094201 + ], + [ + 10.8611017, + 49.687525401 + ], + [ + 10.861363, + 49.687058701 + ], + [ + 10.8618957, + 49.686077201 + ], + [ + 10.8625888, + 49.684984801 + ], + [ + 10.8632566, + 49.683991501 + ], + [ + 10.864308, + 49.682491801 + ], + [ + 10.8651526, + 49.681447701 + ], + [ + 10.8659995, + 49.680366701 + ], + [ + 10.8669224, + 49.679361201 + ], + [ + 10.867917, + 49.678307201 + ], + [ + 10.8689342, + 49.677238801 + ], + [ + 10.8698357, + 49.676310901 + ], + [ + 10.8711964, + 49.675076801 + ], + [ + 10.8725113, + 49.673921201 + ], + [ + 10.8732551, + 49.673330301 + ], + [ + 10.8739237, + 49.672806901 + ], + [ + 10.8749783, + 49.671995701 + ], + [ + 10.8760097, + 49.671202801 + ], + [ + 10.8771401, + 49.670396501 + ], + [ + 10.8780057, + 49.669811001 + ], + [ + 10.8796454, + 49.668729201 + ], + [ + 10.8810467, + 49.667841701 + ], + [ + 10.8810801, + 49.667821301 + ], + [ + 10.8821586, + 49.667139301 + ], + [ + 10.8851219, + 49.665285701 + ], + [ + 10.886438, + 49.664446201 + ], + [ + 10.8876341, + 49.663640001 + ], + [ + 10.8888708, + 49.662753101 + ], + [ + 10.8900034, + 49.661864501 + ], + [ + 10.8910596, + 49.661014901 + ], + [ + 10.892041, + 49.660193901 + ], + [ + 10.8931242, + 49.659212401 + ], + [ + 10.8940168, + 49.658324101 + ], + [ + 10.8947254, + 49.657654501 + ], + [ + 10.8955567, + 49.656794401 + ], + [ + 10.8960538, + 49.656252701 + ], + [ + 10.8968595, + 49.655300301 + ], + [ + 10.8980774, + 49.653793101 + ], + [ + 10.8992821, + 49.652353701 + ], + [ + 10.9002016, + 49.651360101 + ], + [ + 10.901656, + 49.649830901 + ], + [ + 10.9031314, + 49.648483601 + ], + [ + 10.9038291, + 49.647900801 + ], + [ + 10.9047506, + 49.647155601 + ], + [ + 10.9070509, + 49.645277001 + ], + [ + 10.9080594, + 49.644417301 + ], + [ + 10.909368, + 49.643207501 + ], + [ + 10.9103484, + 49.642229401 + ], + [ + 10.9115563, + 49.640939801 + ], + [ + 10.9127383, + 49.639524501 + ], + [ + 10.9131621, + 49.638947201 + ], + [ + 10.9135593, + 49.638425801 + ], + [ + 10.9142986, + 49.637321201 + ], + [ + 10.9147253, + 49.636483801 + ], + [ + 10.9153184, + 49.635472901 + ], + [ + 10.9159214, + 49.634402801 + ], + [ + 10.9164692, + 49.633324301 + ], + [ + 10.917014, + 49.631974601 + ], + [ + 10.9172412, + 49.631408201 + ], + [ + 10.9172998, + 49.631240601 + ], + [ + 10.9174635, + 49.630772801 + ], + [ + 10.9175657, + 49.630512701 + ], + [ + 10.9178335, + 49.629621401 + ], + [ + 10.9179097, + 49.629368201 + ], + [ + 10.9180122, + 49.629027901 + ], + [ + 10.9182986, + 49.627898201 + ], + [ + 10.918538, + 49.627052401 + ], + [ + 10.9191329, + 49.624759001 + ], + [ + 10.9192274, + 49.624483201 + ], + [ + 10.9196132, + 49.623194701 + ], + [ + 10.9200491, + 49.622126701 + ], + [ + 10.9210789, + 49.620013901 + ], + [ + 10.921288522, + 49.619554673 + ] + ] + } + }, + { + "identifier": "2026-017537--vi-bs.2026-04-09_08-00-00-000_018.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.73145133165024,10.672348344134432,49.73866622880505,10.655094944785018", + "point": "49.73145133165024,10.672348344134432", + "startLcPosition": "102", + "impact": { + "lower": "Schl\u00fcsselfeld", + "upper": "Steigerwald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> W\u00fcrzburg", + "title": "A3 | Steigerwald - Schl\u00fcsselfeld", + "coordinate": { + "lat": 49.73145133165024, + "long": 10.672348344134432 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 18:00 Uhr", + "", + "A3: N\u00fcrnberg -> W\u00fcrzburg, zwischen 4.0 km hinter Steigerwald und 1.7 km vor AS Schl\u00fcsselfeld", + "", + "L\u00e4nge: 1.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A3 von Steigerwald (Raststaette) nach Schl\u00fcsselfeld (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.672348344, + 49.731451332 + ], + [ + 10.6715475, + 49.731582201 + ], + [ + 10.6709298, + 49.731704001 + ], + [ + 10.6702836, + 49.731847001 + ], + [ + 10.6695927, + 49.731997401 + ], + [ + 10.669306, + 49.732073201 + ], + [ + 10.6676507, + 49.732511001 + ], + [ + 10.6655353, + 49.733205501 + ], + [ + 10.6641621, + 49.733736901 + ], + [ + 10.6632609, + 49.734129001 + ], + [ + 10.6628468, + 49.734309201 + ], + [ + 10.6624761, + 49.734485601 + ], + [ + 10.6606439, + 49.735444601 + ], + [ + 10.6588767, + 49.736477601 + ], + [ + 10.658011, + 49.736999901 + ], + [ + 10.6567463, + 49.737763001 + ], + [ + 10.6551289, + 49.738650401 + ], + [ + 10.655094945, + 49.738666229 + ] + ] + } + }, + { + "identifier": "2026-017526--vi-bs.2026-04-08_20-00-00-000_014.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.7354481880622,10.75473888822794,49.72883384521235,10.819193202555939", + "point": "49.7354481880622,10.75473888822794", + "startLcPosition": "102", + "impact": { + "lower": "Pommersfelden", + "upper": "Steigerwald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> N\u00fcrnberg", + "title": "A3 | Steigerwald - Pommersfelden", + "coordinate": { + "lat": 49.7354481880622, + "long": 10.75473888822794 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A3: W\u00fcrzburg -> N\u00fcrnberg, zwischen 2.0 km hinter Steigerwald und 0.3 km vor AS Pommersfelden", + "", + "L\u00e4nge: 5 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A3 von Steigerwald (Raststaette) nach Pommersfelden (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.754738888, + 49.735448188 + ], + [ + 10.7557235, + 49.735593201 + ], + [ + 10.7576035, + 49.735872101 + ], + [ + 10.7581873, + 49.735959201 + ], + [ + 10.7598351, + 49.736189801 + ], + [ + 10.760948, + 49.736350601 + ], + [ + 10.7621195, + 49.736510301 + ], + [ + 10.7633943, + 49.736676501 + ], + [ + 10.7644087, + 49.736804001 + ], + [ + 10.7653663, + 49.736921401 + ], + [ + 10.76548, + 49.736933401 + ], + [ + 10.765651, + 49.736951501 + ], + [ + 10.7667469, + 49.737062301 + ], + [ + 10.7678632, + 49.737195101 + ], + [ + 10.7691795, + 49.737343401 + ], + [ + 10.7709134, + 49.737508401 + ], + [ + 10.7720049, + 49.737620001 + ], + [ + 10.773435, + 49.737733801 + ], + [ + 10.7759241, + 49.737926301 + ], + [ + 10.7773985, + 49.738018601 + ], + [ + 10.7776813, + 49.738034301 + ], + [ + 10.7784532, + 49.738062901 + ], + [ + 10.7789985, + 49.738079401 + ], + [ + 10.7804754, + 49.738144301 + ], + [ + 10.7825626, + 49.738208501 + ], + [ + 10.783833, + 49.738224601 + ], + [ + 10.7845969, + 49.738225901 + ], + [ + 10.785489, + 49.738230001 + ], + [ + 10.7873385, + 49.738210201 + ], + [ + 10.7885956, + 49.738193701 + ], + [ + 10.7893842, + 49.738165401 + ], + [ + 10.789797, + 49.738147101 + ], + [ + 10.790587, + 49.738118801 + ], + [ + 10.7930551, + 49.737986201 + ], + [ + 10.7934434, + 49.737961201 + ], + [ + 10.7943155, + 49.737893101 + ], + [ + 10.7953221, + 49.737785401 + ], + [ + 10.7963121, + 49.737679401 + ], + [ + 10.7976678, + 49.737499501 + ], + [ + 10.7983795, + 49.737388101 + ], + [ + 10.7998341, + 49.737152501 + ], + [ + 10.8013445, + 49.736876901 + ], + [ + 10.8020331, + 49.736728301 + ], + [ + 10.8026775, + 49.736587401 + ], + [ + 10.8032525, + 49.736452601 + ], + [ + 10.8039156, + 49.736293501 + ], + [ + 10.8046647, + 49.736093701 + ], + [ + 10.8057735, + 49.735782801 + ], + [ + 10.8060569, + 49.735700001 + ], + [ + 10.8066065, + 49.735516801 + ], + [ + 10.8072556, + 49.735302401 + ], + [ + 10.8081475, + 49.734989901 + ], + [ + 10.8090689, + 49.734645501 + ], + [ + 10.8096915, + 49.734399801 + ], + [ + 10.8103874, + 49.734108001 + ], + [ + 10.8109092, + 49.733877401 + ], + [ + 10.8118927, + 49.733419201 + ], + [ + 10.8121937, + 49.733279901 + ], + [ + 10.8124793, + 49.733134401 + ], + [ + 10.8132573, + 49.732729201 + ], + [ + 10.8138245, + 49.732417001 + ], + [ + 10.814387, + 49.732099901 + ], + [ + 10.8153127, + 49.731539401 + ], + [ + 10.8162164, + 49.730966301 + ], + [ + 10.8171666, + 49.730308401 + ], + [ + 10.8179148, + 49.729780001 + ], + [ + 10.8188028, + 49.729127701 + ], + [ + 10.8191886, + 49.728837301 + ], + [ + 10.819193203, + 49.728833845 + ] + ] + } + }, + { + "identifier": "2026-017810--vi-bs.2026-04-10_07-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.75953776160885,10.581282901969622,49.759806408177745,10.563439012549996", + "point": "49.75953776160885,10.581282901969622", + "startLcPosition": "104", + "impact": { + "lower": "\u00c4ppeleinsholz", + "upper": "Dreifrankenstein-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> W\u00fcrzburg", + "title": "A3 | Dreifrankenstein-Nord - \u00c4ppeleinsholz", + "coordinate": { + "lat": 49.75953776160885, + "long": 10.581282901969622 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A3: N\u00fcrnberg -> W\u00fcrzburg, zwischen 0.4 km hinter Dreifrankenstein-Nord und 1.8 km vor \u00c4ppeleinsholz", + "", + "L\u00e4nge: 1.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A3 von Dreifrankenstein-Nord (Rastplatz) nach \u00c4ppeleinsholz (Parkplatz) Schallschutzarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.581282902, + 49.759537762 + ], + [ + 10.5775882, + 49.759209001 + ], + [ + 10.5755205, + 49.759053201 + ], + [ + 10.5740978, + 49.758973501 + ], + [ + 10.5733172, + 49.758947301 + ], + [ + 10.5723345, + 49.758926201 + ], + [ + 10.5705091, + 49.758955701 + ], + [ + 10.5689132, + 49.759040401 + ], + [ + 10.5674525, + 49.759177801 + ], + [ + 10.5657437, + 49.759394001 + ], + [ + 10.5642119, + 49.759656701 + ], + [ + 10.563439013, + 49.759806408 + ] + ] + } + }, + { + "identifier": "2026-017795--vi-bs.2026-04-13_07-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.75953776160885,10.581282901969622,49.759806408177745,10.563439012549996", + "point": "49.75953776160885,10.581282901969622", + "startLcPosition": "104", + "impact": { + "lower": "\u00c4ppeleinsholz", + "upper": "Dreifrankenstein-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> W\u00fcrzburg", + "title": "A3 | Dreifrankenstein-Nord - \u00c4ppeleinsholz", + "coordinate": { + "lat": 49.75953776160885, + "long": 10.581282901969622 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:30 bis 18:00 Uhr", + "14.04.26 von 07:30 bis 18:00 Uhr", + "15.04.26 von 07:30 bis 18:00 Uhr", + "16.04.26 von 07:30 bis 18:00 Uhr", + "17.04.26 von 07:30 bis 13:00 Uhr", + "", + "A3: N\u00fcrnberg -> W\u00fcrzburg, zwischen 0.4 km hinter Dreifrankenstein-Nord und 1.8 km vor \u00c4ppeleinsholz", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A3 von Dreifrankenstein-Nord (Rastplatz) nach \u00c4ppeleinsholz (Parkplatz) Schallschutzarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.581282902, + 49.759537762 + ], + [ + 10.5775882, + 49.759209001 + ], + [ + 10.5755205, + 49.759053201 + ], + [ + 10.5740978, + 49.758973501 + ], + [ + 10.5733172, + 49.758947301 + ], + [ + 10.5723345, + 49.758926201 + ], + [ + 10.5705091, + 49.758955701 + ], + [ + 10.5689132, + 49.759040401 + ], + [ + 10.5674525, + 49.759177801 + ], + [ + 10.5657437, + 49.759394001 + ], + [ + 10.5642119, + 49.759656701 + ], + [ + 10.563439013, + 49.759806408 + ] + ] + } + }, + { + "identifier": "2026-017078--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_011.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.99527132843267,9.01004650295413,50.05851858903313,8.89135741808592", + "point": "49.99527132843267,9.01004650295413", + "startLcPosition": "147", + "impact": { + "lower": "Obertshausen", + "upper": "Seligenst\u00e4dter Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Frankfurt", + "title": "A3 | Seligenst\u00e4dter Dreieck - Obertshausen", + "coordinate": { + "lat": 49.99527132843267, + "long": 9.01004650295413 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 09:00 bis 15:00 Uhr.", + "", + "A3: W\u00fcrzburg -> Frankfurt, zwischen 0.4 km hinter AD Seligenst\u00e4dter Dreieck und 4.7 km vor AS Obertshausen", + "", + "L\u00e4nge: 11.48 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 von Weiskirchen (Raststaette) nach Seligenst\u00e4dter Dreieck (AD) Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.010046503, + 49.995271328 + ], + [ + 9.008917, + 49.995762501 + ], + [ + 9.0066765, + 49.996737901 + ], + [ + 9.0051276, + 49.997412901 + ], + [ + 9.0043561, + 49.997743601 + ], + [ + 9.0023642, + 49.998603001 + ], + [ + 8.9991422, + 49.999993001 + ], + [ + 8.9957391, + 50.001476601 + ], + [ + 8.9927975, + 50.002769701 + ], + [ + 8.9911781, + 50.003462101 + ], + [ + 8.9894879, + 50.004206501 + ], + [ + 8.9868455, + 50.005340301 + ], + [ + 8.9813072, + 50.007761801 + ], + [ + 8.9774184, + 50.009458501 + ], + [ + 8.9772723, + 50.009522001 + ], + [ + 8.9742252, + 50.010846201 + ], + [ + 8.9740933, + 50.010903501 + ], + [ + 8.9716366, + 50.011971201 + ], + [ + 8.9706767, + 50.012384501 + ], + [ + 8.9701035, + 50.012645001 + ], + [ + 8.9640065, + 50.015290301 + ], + [ + 8.959043, + 50.017440601 + ], + [ + 8.9519493, + 50.020545401 + ], + [ + 8.9506021, + 50.021172501 + ], + [ + 8.9504964, + 50.021224501 + ], + [ + 8.9499744, + 50.021468101 + ], + [ + 8.9480571, + 50.022440201 + ], + [ + 8.9465927, + 50.023263001 + ], + [ + 8.9461882, + 50.023510201 + ], + [ + 8.9452405, + 50.024089401 + ], + [ + 8.9444492, + 50.024643901 + ], + [ + 8.9436658, + 50.025234801 + ], + [ + 8.9428734, + 50.025888201 + ], + [ + 8.9421118, + 50.026596201 + ], + [ + 8.941411, + 50.027326401 + ], + [ + 8.9407731, + 50.028074501 + ], + [ + 8.9403788, + 50.028604501 + ], + [ + 8.9401517, + 50.028927601 + ], + [ + 8.9397866, + 50.029489301 + ], + [ + 8.9394608, + 50.030046601 + ], + [ + 8.9390987, + 50.030686401 + ], + [ + 8.9387933, + 50.031312301 + ], + [ + 8.9384045, + 50.032151601 + ], + [ + 8.9380299, + 50.032996101 + ], + [ + 8.9374312, + 50.034383701 + ], + [ + 8.9366125, + 50.036229401 + ], + [ + 8.9357209, + 50.038061201 + ], + [ + 8.9349668, + 50.039421101 + ], + [ + 8.9341285, + 50.040755601 + ], + [ + 8.9331816, + 50.042064201 + ], + [ + 8.9321145, + 50.043326201 + ], + [ + 8.9309245, + 50.044549301 + ], + [ + 8.930063, + 50.045332801 + ], + [ + 8.9297712, + 50.045598201 + ], + [ + 8.9283818, + 50.046725301 + ], + [ + 8.9272321, + 50.047568001 + ], + [ + 8.9258525, + 50.048482901 + ], + [ + 8.9257372, + 50.048555401 + ], + [ + 8.9244141, + 50.049354301 + ], + [ + 8.9238128, + 50.049694601 + ], + [ + 8.9225928, + 50.050351901 + ], + [ + 8.9207136, + 50.051281401 + ], + [ + 8.9187268, + 50.052156501 + ], + [ + 8.9172489, + 50.052760901 + ], + [ + 8.9166335, + 50.052990401 + ], + [ + 8.9157209, + 50.053330801 + ], + [ + 8.9152675, + 50.053491301 + ], + [ + 8.9149972, + 50.053595301 + ], + [ + 8.9123718, + 50.054459401 + ], + [ + 8.9112425, + 50.054794701 + ], + [ + 8.909956, + 50.055149801 + ], + [ + 8.9086564, + 50.055489301 + ], + [ + 8.9079545, + 50.055666101 + ], + [ + 8.9073934, + 50.055802601 + ], + [ + 8.9064093, + 50.056042301 + ], + [ + 8.9057073, + 50.056203601 + ], + [ + 8.9045195, + 50.056462801 + ], + [ + 8.904271, + 50.056511201 + ], + [ + 8.9014889, + 50.057052801 + ], + [ + 8.9012335, + 50.057100001 + ], + [ + 8.9005016, + 50.057232201 + ], + [ + 8.8993574, + 50.057428101 + ], + [ + 8.8986462, + 50.057545201 + ], + [ + 8.8980409, + 50.057638301 + ], + [ + 8.8970116, + 50.057794101 + ], + [ + 8.8957899, + 50.057966701 + ], + [ + 8.894082, + 50.058189401 + ], + [ + 8.8920515, + 50.058445501 + ], + [ + 8.891357418, + 50.058518589 + ] + ] + } + }, + { + "identifier": "2026-017573--vi-bs.2026-04-20_20-00-00-000.devi-bs.2026-04-20_20-00-00-000_007.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.99599576674343,9.008381204290718,50.00528824524167,8.986966825245194", + "point": "49.99599576674343,9.008381204290718", + "startLcPosition": "147", + "impact": { + "lower": "Seligenstadt", + "upper": "Seligenst\u00e4dter Dreieck", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Frankfurt", + "title": "A3 | Seligenst\u00e4dter Dreieck - Seligenstadt", + "coordinate": { + "lat": 49.99599576674343, + "long": 9.008381204290718 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 04:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 04:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 04:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 04:00 Uhr.", + "", + "A3: W\u00fcrzburg -> Frankfurt, zwischen 0.6 km hinter AD Seligenst\u00e4dter Dreieck und 4.2 km vor AS Seligenstadt", + "", + "L\u00e4nge: 1.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 von Obertshausen (AS) nach Mainhausen (Rastplatz) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.008381204, + 49.995995767 + ], + [ + 9.0066765, + 49.996737901 + ], + [ + 9.0051276, + 49.997412901 + ], + [ + 9.0043561, + 49.997743601 + ], + [ + 9.0023642, + 49.998603001 + ], + [ + 8.9991422, + 49.999993001 + ], + [ + 8.9957391, + 50.001476601 + ], + [ + 8.9927975, + 50.002769701 + ], + [ + 8.9911781, + 50.003462101 + ], + [ + 8.9894879, + 50.004206501 + ], + [ + 8.986966825, + 50.005288245 + ] + ] + } + }, + { + "identifier": "2026-017573--vi-bs.2026-04-20_20-00-00-000.devi-bs.2026-04-20_20-00-00-000_007.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.00528824524167,8.986966825245194,50.0646724200928,8.837772260208709", + "point": "50.00528824524167,8.986966825245194", + "startLcPosition": "148", + "impact": { + "lower": "Obertshausen", + "upper": "Mainhausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Frankfurt", + "title": "A3 | Mainhausen - Obertshausen", + "coordinate": { + "lat": 50.00528824524167, + "long": 8.986966825245194 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 04:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 04:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 04:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 04:00 Uhr.", + "", + "A3: W\u00fcrzburg -> Frankfurt, zwischen 0.5 km hinter Mainhausen und 0.8 km vor AS Obertshausen", + "", + "L\u00e4nge: 13.41 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 von Obertshausen (AS) nach Mainhausen (Rastplatz) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.986966825, + 50.005288245 + ], + [ + 8.9868455, + 50.005340301 + ], + [ + 8.9813072, + 50.007761801 + ], + [ + 8.9774184, + 50.009458501 + ], + [ + 8.9772723, + 50.009522001 + ], + [ + 8.9742252, + 50.010846201 + ], + [ + 8.9740933, + 50.010903501 + ], + [ + 8.9716366, + 50.011971201 + ], + [ + 8.9706767, + 50.012384501 + ], + [ + 8.9701035, + 50.012645001 + ], + [ + 8.9640065, + 50.015290301 + ], + [ + 8.959043, + 50.017440601 + ], + [ + 8.9519493, + 50.020545401 + ], + [ + 8.9506021, + 50.021172501 + ], + [ + 8.9504964, + 50.021224501 + ], + [ + 8.9499744, + 50.021468101 + ], + [ + 8.9480571, + 50.022440201 + ], + [ + 8.9465927, + 50.023263001 + ], + [ + 8.9461882, + 50.023510201 + ], + [ + 8.9452405, + 50.024089401 + ], + [ + 8.9444492, + 50.024643901 + ], + [ + 8.9436658, + 50.025234801 + ], + [ + 8.9428734, + 50.025888201 + ], + [ + 8.9421118, + 50.026596201 + ], + [ + 8.941411, + 50.027326401 + ], + [ + 8.9407731, + 50.028074501 + ], + [ + 8.9403788, + 50.028604501 + ], + [ + 8.9401517, + 50.028927601 + ], + [ + 8.9397866, + 50.029489301 + ], + [ + 8.9394608, + 50.030046601 + ], + [ + 8.9390987, + 50.030686401 + ], + [ + 8.9387933, + 50.031312301 + ], + [ + 8.9384045, + 50.032151601 + ], + [ + 8.9380299, + 50.032996101 + ], + [ + 8.9374312, + 50.034383701 + ], + [ + 8.9366125, + 50.036229401 + ], + [ + 8.9357209, + 50.038061201 + ], + [ + 8.9349668, + 50.039421101 + ], + [ + 8.9341285, + 50.040755601 + ], + [ + 8.9331816, + 50.042064201 + ], + [ + 8.9321145, + 50.043326201 + ], + [ + 8.9309245, + 50.044549301 + ], + [ + 8.930063, + 50.045332801 + ], + [ + 8.9297712, + 50.045598201 + ], + [ + 8.9283818, + 50.046725301 + ], + [ + 8.9272321, + 50.047568001 + ], + [ + 8.9258525, + 50.048482901 + ], + [ + 8.9257372, + 50.048555401 + ], + [ + 8.9244141, + 50.049354301 + ], + [ + 8.9238128, + 50.049694601 + ], + [ + 8.9225928, + 50.050351901 + ], + [ + 8.9207136, + 50.051281401 + ], + [ + 8.9187268, + 50.052156501 + ], + [ + 8.9172489, + 50.052760901 + ], + [ + 8.9166335, + 50.052990401 + ], + [ + 8.9157209, + 50.053330801 + ], + [ + 8.9152675, + 50.053491301 + ], + [ + 8.9149972, + 50.053595301 + ], + [ + 8.9123718, + 50.054459401 + ], + [ + 8.9112425, + 50.054794701 + ], + [ + 8.909956, + 50.055149801 + ], + [ + 8.9086564, + 50.055489301 + ], + [ + 8.9079545, + 50.055666101 + ], + [ + 8.9073934, + 50.055802601 + ], + [ + 8.9064093, + 50.056042301 + ], + [ + 8.9057073, + 50.056203601 + ], + [ + 8.9045195, + 50.056462801 + ], + [ + 8.904271, + 50.056511201 + ], + [ + 8.9014889, + 50.057052801 + ], + [ + 8.9012335, + 50.057100001 + ], + [ + 8.9005016, + 50.057232201 + ], + [ + 8.8993574, + 50.057428101 + ], + [ + 8.8986462, + 50.057545201 + ], + [ + 8.8980409, + 50.057638301 + ], + [ + 8.8970116, + 50.057794101 + ], + [ + 8.8957899, + 50.057966701 + ], + [ + 8.894082, + 50.058189401 + ], + [ + 8.8920515, + 50.058445501 + ], + [ + 8.8910648, + 50.058549401 + ], + [ + 8.8903738, + 50.058624301 + ], + [ + 8.8891707, + 50.058748201 + ], + [ + 8.8886724, + 50.058797501 + ], + [ + 8.8863414, + 50.059016001 + ], + [ + 8.8850783, + 50.059132601 + ], + [ + 8.8846966, + 50.059167101 + ], + [ + 8.8819605, + 50.059378201 + ], + [ + 8.8798286, + 50.059539501 + ], + [ + 8.8788849, + 50.059606501 + ], + [ + 8.8774874, + 50.059705801 + ], + [ + 8.8756433, + 50.059825401 + ], + [ + 8.875318, + 50.059847101 + ], + [ + 8.8733376, + 50.059980301 + ], + [ + 8.8721307, + 50.060051001 + ], + [ + 8.8709839, + 50.060135201 + ], + [ + 8.8708392, + 50.060145801 + ], + [ + 8.8705269, + 50.060166601 + ], + [ + 8.8682953, + 50.060308601 + ], + [ + 8.8680384, + 50.060326001 + ], + [ + 8.8651325, + 50.060517401 + ], + [ + 8.8620702, + 50.060714801 + ], + [ + 8.8606937, + 50.060803601 + ], + [ + 8.8583425, + 50.060957001 + ], + [ + 8.8572408, + 50.061029301 + ], + [ + 8.8561516, + 50.061109701 + ], + [ + 8.8549461, + 50.061207101 + ], + [ + 8.8537086, + 50.061322601 + ], + [ + 8.8534652, + 50.061348901 + ], + [ + 8.8524904, + 50.061454101 + ], + [ + 8.8512021, + 50.061612701 + ], + [ + 8.8502883, + 50.061741501 + ], + [ + 8.8492799, + 50.061896101 + ], + [ + 8.8482212, + 50.062082801 + ], + [ + 8.8471922, + 50.062289201 + ], + [ + 8.8458362, + 50.062578101 + ], + [ + 8.8444207, + 50.062907101 + ], + [ + 8.8433035, + 50.063187401 + ], + [ + 8.8422194, + 50.063471101 + ], + [ + 8.83777226, + 50.06467242 + ] + ] + } + }, + { + "identifier": "2026-017573--vi-bs.2026-04-20_20-00-00-000.devi-bs.2026-04-20_20-00-00-000_007.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.02643139958752,8.942017171505974,49.99693497251838,9.00579587474628", + "point": "50.02643139958752,8.942017171505974", + "startLcPosition": "149", + "impact": { + "lower": "Seligenst\u00e4dter Dreieck", + "upper": "Seligenstadt", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> W\u00fcrzburg", + "title": "A3 | Seligenstadt - Seligenst\u00e4dter Dreieck", + "coordinate": { + "lat": 50.02643139958752, + "long": 8.942017171505974 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 04:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 04:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 04:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 04:00 Uhr.", + "", + "A3: Frankfurt -> W\u00fcrzburg, zwischen 0.2 km hinter AS Seligenstadt und 0.8 km vor AD Seligenst\u00e4dter Dreieck", + "", + "L\u00e4nge: 5.64 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 von Obertshausen (AS) nach Mainhausen (Rastplatz) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.942017172, + 50.0264314 + ], + [ + 8.9421332, + 50.026312401 + ], + [ + 8.942301, + 50.026154101 + ], + [ + 8.9427537, + 50.025746801 + ], + [ + 8.9433319, + 50.025269001 + ], + [ + 8.9436206, + 50.025038801 + ], + [ + 8.944258, + 50.024553301 + ], + [ + 8.9450703, + 50.023981901 + ], + [ + 8.9456857, + 50.023601501 + ], + [ + 8.9463456, + 50.023193501 + ], + [ + 8.9479004, + 50.022320401 + ], + [ + 8.94985, + 50.021334801 + ], + [ + 8.9503477, + 50.021104701 + ], + [ + 8.9504535, + 50.021052801 + ], + [ + 8.9518649, + 50.020388701 + ], + [ + 8.9589353, + 50.017297001 + ], + [ + 8.9639079, + 50.015143601 + ], + [ + 8.9696703, + 50.012631501 + ], + [ + 8.9701169, + 50.012434401 + ], + [ + 8.9706865, + 50.012179901 + ], + [ + 8.9739512, + 50.010767201 + ], + [ + 8.9740779, + 50.010711901 + ], + [ + 8.9761436, + 50.009819901 + ], + [ + 8.9769948, + 50.009447101 + ], + [ + 8.9771481, + 50.009382001 + ], + [ + 8.9811725, + 50.007626801 + ], + [ + 8.9869291, + 50.005121001 + ], + [ + 8.9880783, + 50.004619901 + ], + [ + 8.990014, + 50.003782301 + ], + [ + 8.9926178, + 50.002645401 + ], + [ + 8.9939802, + 50.002054801 + ], + [ + 8.9957549, + 50.001288101 + ], + [ + 8.9990857, + 49.999834301 + ], + [ + 9.0042164, + 49.997623201 + ], + [ + 9.005795875, + 49.996934973 + ] + ] + } + }, + { + "identifier": "2026-017078--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_011.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.03470869440662,8.937043117305373,49.99516740929641,9.009853522424036", + "point": "50.03470869440662,8.937043117305373", + "startLcPosition": "150", + "impact": { + "lower": "Seligenst\u00e4dter Dreieck", + "upper": "Weiskirchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> W\u00fcrzburg", + "title": "A3 | Weiskirchen - Seligenst\u00e4dter Dreieck", + "coordinate": { + "lat": 50.03470869440662, + "long": 8.937043117305373 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 08:00 bis 15:30 Uhr.", + "", + "A3: Frankfurt -> W\u00fcrzburg, zwischen 3.2 km hinter Weiskirchen und 0.4 km vor AD Seligenst\u00e4dter Dreieck", + "", + "L\u00e4nge: 6.98 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 von Weiskirchen (Raststaette) nach Seligenst\u00e4dter Dreieck (AD) Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.937043117, + 50.034708694 + ], + [ + 8.9372439, + 50.034256201 + ], + [ + 8.9378327, + 50.032879801 + ], + [ + 8.9384554, + 50.031494501 + ], + [ + 8.9388368, + 50.030729201 + ], + [ + 8.9390736, + 50.030281401 + ], + [ + 8.9395267, + 50.029508801 + ], + [ + 8.9398908, + 50.028941201 + ], + [ + 8.940309, + 50.028351101 + ], + [ + 8.9407746, + 50.027767501 + ], + [ + 8.9409082, + 50.027593601 + ], + [ + 8.9412379, + 50.027230601 + ], + [ + 8.9421332, + 50.026312401 + ], + [ + 8.942301, + 50.026154101 + ], + [ + 8.9427537, + 50.025746801 + ], + [ + 8.9433319, + 50.025269001 + ], + [ + 8.9436206, + 50.025038801 + ], + [ + 8.944258, + 50.024553301 + ], + [ + 8.9450703, + 50.023981901 + ], + [ + 8.9456857, + 50.023601501 + ], + [ + 8.9463456, + 50.023193501 + ], + [ + 8.9479004, + 50.022320401 + ], + [ + 8.94985, + 50.021334801 + ], + [ + 8.9503477, + 50.021104701 + ], + [ + 8.9504535, + 50.021052801 + ], + [ + 8.9518649, + 50.020388701 + ], + [ + 8.9589353, + 50.017297001 + ], + [ + 8.9639079, + 50.015143601 + ], + [ + 8.9696703, + 50.012631501 + ], + [ + 8.9701169, + 50.012434401 + ], + [ + 8.9706865, + 50.012179901 + ], + [ + 8.9739512, + 50.010767201 + ], + [ + 8.9740779, + 50.010711901 + ], + [ + 8.9761436, + 50.009819901 + ], + [ + 8.9769948, + 50.009447101 + ], + [ + 8.9771481, + 50.009382001 + ], + [ + 8.9811725, + 50.007626801 + ], + [ + 8.9869291, + 50.005121001 + ], + [ + 8.9880783, + 50.004619901 + ], + [ + 8.990014, + 50.003782301 + ], + [ + 8.9926178, + 50.002645401 + ], + [ + 8.9939802, + 50.002054801 + ], + [ + 8.9957549, + 50.001288101 + ], + [ + 8.9990857, + 49.999834301 + ], + [ + 9.0042164, + 49.997623201 + ], + [ + 9.0065047, + 49.996626101 + ], + [ + 9.009853522, + 49.995167409 + ] + ] + } + }, + { + "identifier": "2026-017078--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_011.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.05851858903313,8.89135741808592,50.06547944016514,8.753813557074604", + "point": "50.05851858903313,8.89135741808592", + "startLcPosition": "151", + "impact": { + "lower": "Offenbach", + "upper": "Hanau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Frankfurt", + "title": "A3 | Hanau - Offenbach", + "coordinate": { + "lat": 50.05851858903313, + "long": 8.89135741808592 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 09:30 bis 15:00 Uhr.", + "", + "A3: W\u00fcrzburg -> Frankfurt, zwischen AS Hanau und 0.9 km vor AS Offenbach", + "", + "L\u00e4nge: 10 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 von Weiskirchen (Raststaette) nach Seligenst\u00e4dter Dreieck (AD) Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.891357418, + 50.058518589 + ], + [ + 8.8910648, + 50.058549401 + ], + [ + 8.8903738, + 50.058624301 + ], + [ + 8.8891707, + 50.058748201 + ], + [ + 8.8886724, + 50.058797501 + ], + [ + 8.8863414, + 50.059016001 + ], + [ + 8.8850783, + 50.059132601 + ], + [ + 8.8846966, + 50.059167101 + ], + [ + 8.8819605, + 50.059378201 + ], + [ + 8.8798286, + 50.059539501 + ], + [ + 8.8788849, + 50.059606501 + ], + [ + 8.8774874, + 50.059705801 + ], + [ + 8.8756433, + 50.059825401 + ], + [ + 8.875318, + 50.059847101 + ], + [ + 8.8733376, + 50.059980301 + ], + [ + 8.8721307, + 50.060051001 + ], + [ + 8.8709839, + 50.060135201 + ], + [ + 8.8708392, + 50.060145801 + ], + [ + 8.8705269, + 50.060166601 + ], + [ + 8.8682953, + 50.060308601 + ], + [ + 8.8680384, + 50.060326001 + ], + [ + 8.8651325, + 50.060517401 + ], + [ + 8.8620702, + 50.060714801 + ], + [ + 8.8606937, + 50.060803601 + ], + [ + 8.8583425, + 50.060957001 + ], + [ + 8.8572408, + 50.061029301 + ], + [ + 8.8561516, + 50.061109701 + ], + [ + 8.8549461, + 50.061207101 + ], + [ + 8.8537086, + 50.061322601 + ], + [ + 8.8534652, + 50.061348901 + ], + [ + 8.8524904, + 50.061454101 + ], + [ + 8.8512021, + 50.061612701 + ], + [ + 8.8502883, + 50.061741501 + ], + [ + 8.8492799, + 50.061896101 + ], + [ + 8.8482212, + 50.062082801 + ], + [ + 8.8471922, + 50.062289201 + ], + [ + 8.8458362, + 50.062578101 + ], + [ + 8.8444207, + 50.062907101 + ], + [ + 8.8433035, + 50.063187401 + ], + [ + 8.8422194, + 50.063471101 + ], + [ + 8.8368101, + 50.064932301 + ], + [ + 8.8341068, + 50.065672401 + ], + [ + 8.8326048, + 50.066059001 + ], + [ + 8.8320919, + 50.066193101 + ], + [ + 8.8309419, + 50.066475501 + ], + [ + 8.8300949, + 50.066671801 + ], + [ + 8.829865, + 50.066720701 + ], + [ + 8.829002, + 50.066901601 + ], + [ + 8.8285676, + 50.066993201 + ], + [ + 8.8275637, + 50.067186501 + ], + [ + 8.8272883, + 50.067231701 + ], + [ + 8.826222, + 50.067401701 + ], + [ + 8.8253312, + 50.067531701 + ], + [ + 8.8245727, + 50.067623001 + ], + [ + 8.8232079, + 50.067756301 + ], + [ + 8.8229254, + 50.067774601 + ], + [ + 8.822036, + 50.067839901 + ], + [ + 8.8212595, + 50.067878001 + ], + [ + 8.819809, + 50.067938701 + ], + [ + 8.8185409, + 50.067963901 + ], + [ + 8.8158962, + 50.067976201 + ], + [ + 8.8120133, + 50.067929101 + ], + [ + 8.808044, + 50.067874601 + ], + [ + 8.8055057, + 50.067836101 + ], + [ + 8.8021984, + 50.067786001 + ], + [ + 8.8018422, + 50.067786601 + ], + [ + 8.7961376, + 50.067713701 + ], + [ + 8.7934019, + 50.067678301 + ], + [ + 8.7906389, + 50.067653901 + ], + [ + 8.7879502, + 50.067597501 + ], + [ + 8.7865562, + 50.067576801 + ], + [ + 8.7854818, + 50.067564401 + ], + [ + 8.7843333, + 50.067548601 + ], + [ + 8.782409, + 50.067525401 + ], + [ + 8.7795305, + 50.067478901 + ], + [ + 8.7767431, + 50.067424301 + ], + [ + 8.7753858, + 50.067388701 + ], + [ + 8.7739758, + 50.067340601 + ], + [ + 8.7731783, + 50.067309901 + ], + [ + 8.7723342, + 50.067274201 + ], + [ + 8.7708169, + 50.067191101 + ], + [ + 8.769304, + 50.067092301 + ], + [ + 8.7688522, + 50.067057601 + ], + [ + 8.7681168, + 50.067001301 + ], + [ + 8.7676754, + 50.066961801 + ], + [ + 8.7663428, + 50.066860001 + ], + [ + 8.7652942, + 50.066768501 + ], + [ + 8.7640514, + 50.066653201 + ], + [ + 8.7620939, + 50.066426701 + ], + [ + 8.7620254, + 50.066418401 + ], + [ + 8.7595086, + 50.066128201 + ], + [ + 8.7557544, + 50.065703301 + ], + [ + 8.7551705, + 50.065637201 + ], + [ + 8.7541615, + 50.065518901 + ], + [ + 8.753813557, + 50.06547944 + ] + ] + } + }, + { + "identifier": "2026-017573--vi-bs.2026-04-20_20-00-00-000.devi-bs.2026-04-20_20-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.06453912969746,8.837715576021544,50.02643139958752,8.942017171505974", + "point": "50.06453912969746,8.837715576021544", + "startLcPosition": "152", + "impact": { + "lower": "Mainhausen", + "upper": "Obertshausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> W\u00fcrzburg", + "title": "A3 | Obertshausen - Mainhausen", + "coordinate": { + "lat": 50.06453912969746, + "long": 8.837715576021544 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 04:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 04:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 04:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 04:00 Uhr.", + "", + "A3: Frankfurt -> W\u00fcrzburg, zwischen 0.8 km hinter AS Obertshausen und 4.5 km vor Mainhausen", + "", + "L\u00e4nge: 9.4 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 von Obertshausen (AS) nach Mainhausen (Rastplatz) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.837715576, + 50.06453913 + ], + [ + 8.8421549, + 50.063336901 + ], + [ + 8.8432549, + 50.063048201 + ], + [ + 8.8444079, + 50.062763301 + ], + [ + 8.845786, + 50.062444401 + ], + [ + 8.8471962, + 50.062139501 + ], + [ + 8.8481877, + 50.061944401 + ], + [ + 8.8492778, + 50.061755801 + ], + [ + 8.8503292, + 50.061592401 + ], + [ + 8.8512894, + 50.061458301 + ], + [ + 8.8525323, + 50.061309901 + ], + [ + 8.8537372, + 50.061181201 + ], + [ + 8.8549169, + 50.061070101 + ], + [ + 8.8561493, + 50.060969101 + ], + [ + 8.8572265, + 50.060894101 + ], + [ + 8.8583295, + 50.060819501 + ], + [ + 8.8606937, + 50.060663601 + ], + [ + 8.864734, + 50.060400601 + ], + [ + 8.8652064, + 50.060369901 + ], + [ + 8.8680138, + 50.060187001 + ], + [ + 8.8682711, + 50.060171501 + ], + [ + 8.8707543, + 50.060009801 + ], + [ + 8.8710622, + 50.059991601 + ], + [ + 8.8712355, + 50.059981001 + ], + [ + 8.8718662, + 50.059935801 + ], + [ + 8.8727205, + 50.059880201 + ], + [ + 8.8733623, + 50.059838401 + ], + [ + 8.8752695, + 50.059722301 + ], + [ + 8.8754018, + 50.059714901 + ], + [ + 8.8757284, + 50.059695601 + ], + [ + 8.8786485, + 50.059483401 + ], + [ + 8.8798153, + 50.059400101 + ], + [ + 8.8802029, + 50.059372501 + ], + [ + 8.8820992, + 50.059236401 + ], + [ + 8.8839983, + 50.059083401 + ], + [ + 8.8869958, + 50.058819301 + ], + [ + 8.8881188, + 50.058713601 + ], + [ + 8.8896059, + 50.058562301 + ], + [ + 8.8920551, + 50.058289101 + ], + [ + 8.8940403, + 50.058050101 + ], + [ + 8.8952498, + 50.057890201 + ], + [ + 8.8972019, + 50.057613301 + ], + [ + 8.8986447, + 50.057392601 + ], + [ + 8.8992345, + 50.057293801 + ], + [ + 8.9003172, + 50.057112501 + ], + [ + 8.9015069, + 50.056900801 + ], + [ + 8.9022472, + 50.056761601 + ], + [ + 8.9033514, + 50.056546601 + ], + [ + 8.9044618, + 50.056315701 + ], + [ + 8.9051649, + 50.056165901 + ], + [ + 8.9058665, + 50.056010701 + ], + [ + 8.9072752, + 50.055681201 + ], + [ + 8.9086521, + 50.055338901 + ], + [ + 8.909814, + 50.055031501 + ], + [ + 8.9109499, + 50.054712001 + ], + [ + 8.9116302, + 50.054513001 + ], + [ + 8.9131021, + 50.054060101 + ], + [ + 8.9144253, + 50.053623101 + ], + [ + 8.9155215, + 50.053235701 + ], + [ + 8.9170209, + 50.052679201 + ], + [ + 8.9181202, + 50.052234001 + ], + [ + 8.9184903, + 50.052084101 + ], + [ + 8.9205411, + 50.051177201 + ], + [ + 8.9225103, + 50.050206601 + ], + [ + 8.9236562, + 50.049588501 + ], + [ + 8.9243968, + 50.049164401 + ], + [ + 8.9255688, + 50.048447701 + ], + [ + 8.9256841, + 50.048375101 + ], + [ + 8.9271466, + 50.047402701 + ], + [ + 8.9282976, + 50.046557001 + ], + [ + 8.929533, + 50.045554501 + ], + [ + 8.9298394, + 50.045276001 + ], + [ + 8.930682, + 50.044509901 + ], + [ + 8.931358, + 50.043840001 + ], + [ + 8.9319562, + 50.043199701 + ], + [ + 8.9330196, + 50.041929401 + ], + [ + 8.9339617, + 50.040626601 + ], + [ + 8.9347962, + 50.039287601 + ], + [ + 8.9355341, + 50.037936101 + ], + [ + 8.9357656, + 50.037458401 + ], + [ + 8.9364268, + 50.036097601 + ], + [ + 8.9372439, + 50.034256201 + ], + [ + 8.9378327, + 50.032879801 + ], + [ + 8.9384554, + 50.031494501 + ], + [ + 8.9388368, + 50.030729201 + ], + [ + 8.9390736, + 50.030281401 + ], + [ + 8.9395267, + 50.029508801 + ], + [ + 8.9398908, + 50.028941201 + ], + [ + 8.940309, + 50.028351101 + ], + [ + 8.9407746, + 50.027767501 + ], + [ + 8.9409082, + 50.027593601 + ], + [ + 8.9412379, + 50.027230601 + ], + [ + 8.942017172, + 50.0264314 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-08-18_23-30-00-000.devi-zus.2025-08-20_00-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.06430678338135,8.740237190772598,50.064766745278384,8.725287300976232", + "point": "50.06430678338135,8.740237190772598", + "startLcPosition": "154", + "impact": { + "lower": "Frankfurt am Main-S\u00fcd", + "upper": "Offenbach", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Frankfurt", + "title": "A3 | Offenbach - Frankfurt am Main-S\u00fcd", + "startTimestamp": "2025-08-18T23:30:00+02:00", + "coordinate": { + "lat": 50.06430678338135, + "long": 8.740237190772598 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.08.25 um 23:30 Uhr", + "Ende: 27.12.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "A3: W\u00fcrzburg -> Frankfurt, zwischen AS Offenbach und 5.6 km vor AS Frankfurt am Main-S\u00fcd", + "", + "L\u00e4nge: 1.07 km | Maximale Durchfahrtsbreite: 9 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.740237191, + 50.064306783 + ], + [ + 8.738472, + 50.064296801 + ], + [ + 8.736702, + 50.064321001 + ], + [ + 8.7356838, + 50.064348001 + ], + [ + 8.7329146, + 50.064452201 + ], + [ + 8.7314037, + 50.064521801 + ], + [ + 8.729896, + 50.064592001 + ], + [ + 8.7281314, + 50.064676201 + ], + [ + 8.7261558, + 50.064747501 + ], + [ + 8.725287301, + 50.064766745 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-08-18_23-30-00-000.devi-zus.2025-08-20_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.063695101880064,8.713556791884011,50.064155815006956,8.740255836695825", + "point": "50.063695101880064,8.713556791884011", + "startLcPosition": "156", + "impact": { + "lower": "Offenbach", + "upper": "Frankfurt am Main-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> W\u00fcrzburg", + "title": "A3 | Frankfurt am Main-S\u00fcd - Offenbach", + "startTimestamp": "2025-08-18T23:30:00+02:00", + "coordinate": { + "lat": 50.063695101880064, + "long": 8.713556791884011 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.08.25 um 23:30 Uhr", + "Ende: 27.12.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "A3: Frankfurt -> W\u00fcrzburg, zwischen 4.7 km hinter AS Frankfurt am Main-S\u00fcd und AS Offenbach", + "", + "L\u00e4nge: 1.92 km | Maximale Durchfahrtsbreite: 9 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.713556792, + 50.063695102 + ], + [ + 8.7136525, + 50.063713601 + ], + [ + 8.715105, + 50.063961201 + ], + [ + 8.716065, + 50.064110301 + ], + [ + 8.7169714, + 50.064236201 + ], + [ + 8.717395, + 50.064289701 + ], + [ + 8.717923, + 50.064352201 + ], + [ + 8.7183868, + 50.064401501 + ], + [ + 8.7188805, + 50.064449601 + ], + [ + 8.7192507, + 50.064481701 + ], + [ + 8.7197283, + 50.064517901 + ], + [ + 8.7201393, + 50.064546001 + ], + [ + 8.7212573, + 50.064601101 + ], + [ + 8.7219688, + 50.064620801 + ], + [ + 8.722516, + 50.064634801 + ], + [ + 8.723002, + 50.064640401 + ], + [ + 8.7242649, + 50.064638301 + ], + [ + 8.7248766, + 50.064630101 + ], + [ + 8.7261367, + 50.064600701 + ], + [ + 8.728017, + 50.064529601 + ], + [ + 8.7298904, + 50.064440601 + ], + [ + 8.7314124, + 50.064367701 + ], + [ + 8.7329336, + 50.064297601 + ], + [ + 8.7342695, + 50.064241801 + ], + [ + 8.7355968, + 50.064197601 + ], + [ + 8.7367054, + 50.064168101 + ], + [ + 8.7375402, + 50.064153101 + ], + [ + 8.7384799, + 50.064144501 + ], + [ + 8.7393652, + 50.064147301 + ], + [ + 8.7402502, + 50.064155701 + ], + [ + 8.740255837, + 50.064155815 + ] + ] + } + }, + { + "identifier": "2026-016135--vi-bs.2026-04-21_07-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.05249348851084,8.624344789862821,50.05300571612849,8.603591450241344", + "point": "50.05249348851084,8.624344789862821", + "startLcPosition": "157", + "impact": { + "lower": "Frankfurt am Main-Flughafen", + "upper": "Stadtwald", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Stadtwald - Frankfurt am Main-Flughafen", + "coordinate": { + "lat": 50.05249348851084, + "long": 8.624344789862821 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 07:00 bis 15:00 Uhr", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 0.8 km hinter Stadtwald und 1.5 km vor AS Frankfurt am Main-Flughafen", + "", + "L\u00e4nge: 1.49 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 von Stadtwald (Rastplatz) nach Frankfurt am Main-Flughafen (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.62434479, + 50.052493489 + ], + [ + 8.6242913, + 50.052487301 + ], + [ + 8.6236695, + 50.052425701 + ], + [ + 8.6229185, + 50.052365501 + ], + [ + 8.6223092, + 50.052327501 + ], + [ + 8.621852, + 50.052307301 + ], + [ + 8.6212222, + 50.052289401 + ], + [ + 8.6206198, + 50.052278901 + ], + [ + 8.6197869, + 50.052276201 + ], + [ + 8.6187494, + 50.052304701 + ], + [ + 8.6176989, + 50.052341201 + ], + [ + 8.6171221, + 50.052371601 + ], + [ + 8.6163574, + 50.052401101 + ], + [ + 8.6159717, + 50.052419101 + ], + [ + 8.6158735, + 50.052423701 + ], + [ + 8.61528, + 50.052450301 + ], + [ + 8.6147845, + 50.052469601 + ], + [ + 8.6141126, + 50.052505701 + ], + [ + 8.6127969, + 50.052565601 + ], + [ + 8.6112778, + 50.052633001 + ], + [ + 8.6098284, + 50.052700001 + ], + [ + 8.6083317, + 50.052770601 + ], + [ + 8.6070219, + 50.052833301 + ], + [ + 8.6057355, + 50.052902201 + ], + [ + 8.6048708, + 50.052946901 + ], + [ + 8.60359145, + 50.053005716 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.03491980275195,8.514277855600184,50.0311137202906,8.504798542329036", + "point": "50.03491980275195,8.514277855600184", + "startLcPosition": "160", + "impact": { + "lower": "M\u00f6nchhof-Dreieck", + "upper": "Kelsterbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Kelsterbach - M\u00f6nchhof-Dreieck", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.03491980275195, + "long": 8.514277855600184 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 2.5 km hinter AS Kelsterbach und 1.0 km vor AD M\u00f6nchhof-Dreieck", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 15.6 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.514277856, + 50.034919803 + ], + [ + 8.5138158, + 50.034734601 + ], + [ + 8.513507, + 50.034612201 + ], + [ + 8.5126245, + 50.034257701 + ], + [ + 8.504983, + 50.031187601 + ], + [ + 8.504798542, + 50.03111372 + ] + ] + } + }, + { + "identifier": "2026-017151--vi-fbm.2026-04-07_20-00-00-000.devi-fbm.2026-04-07_20-00-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.029688998853814,8.501241517221715,50.03393041104208,8.444963293904276", + "point": "50.029688998853814,8.501241517221715", + "startLcPosition": "160", + "impact": { + "lower": "Johannespfad", + "upper": "Kelsterbach", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Kelsterbach - Johannespfad", + "coordinate": { + "lat": 50.029688998853814, + "long": 8.501241517221715 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 00:00 bis 06:00 Uhr", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 06:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 06:00 Uhr.", + "20.04.26 20:00 bis zum 21.04.26 06:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 06:00 Uhr.", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 3.6 km hinter AS Kelsterbach und 2.6 km vor Johannespfad", + "", + "L\u00e4nge: 4.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Baustelleneinrichtung M\u00f6nchhof-Dreieck " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.501241517, + 50.029688999 + ], + [ + 8.4960715, + 50.027617901 + ], + [ + 8.4958182, + 50.027519601 + ], + [ + 8.4954064, + 50.027362801 + ], + [ + 8.4949628, + 50.027197501 + ], + [ + 8.4943097, + 50.026989501 + ], + [ + 8.4935559, + 50.026767001 + ], + [ + 8.4932285, + 50.026674801 + ], + [ + 8.4928925, + 50.026591001 + ], + [ + 8.4923841, + 50.026459601 + ], + [ + 8.4919313, + 50.026359401 + ], + [ + 8.4916717, + 50.026306401 + ], + [ + 8.4908226, + 50.026147301 + ], + [ + 8.4903159, + 50.026063601 + ], + [ + 8.4897921, + 50.025970701 + ], + [ + 8.4891043, + 50.025890901 + ], + [ + 8.488516, + 50.025828601 + ], + [ + 8.4879342, + 50.025774501 + ], + [ + 8.4874714, + 50.025739401 + ], + [ + 8.4869418, + 50.025706001 + ], + [ + 8.4865114, + 50.025686701 + ], + [ + 8.48586, + 50.025667701 + ], + [ + 8.4847772, + 50.025664501 + ], + [ + 8.4841614, + 50.025679601 + ], + [ + 8.4835238, + 50.025707901 + ], + [ + 8.4829951, + 50.025742701 + ], + [ + 8.4824409, + 50.025786501 + ], + [ + 8.4817751, + 50.025850601 + ], + [ + 8.4811764, + 50.025920701 + ], + [ + 8.4806098, + 50.026001801 + ], + [ + 8.480068, + 50.026087201 + ], + [ + 8.4795029, + 50.026193301 + ], + [ + 8.4772028, + 50.026643101 + ], + [ + 8.475839, + 50.026914001 + ], + [ + 8.4702206, + 50.028036501 + ], + [ + 8.4658368, + 50.028907101 + ], + [ + 8.4629617, + 50.029476901 + ], + [ + 8.4617171, + 50.029749801 + ], + [ + 8.4606988, + 50.029977501 + ], + [ + 8.4589609, + 50.030372701 + ], + [ + 8.4586177, + 50.030454701 + ], + [ + 8.4561485, + 50.031054101 + ], + [ + 8.4540493, + 50.031547801 + ], + [ + 8.4512727, + 50.032288301 + ], + [ + 8.4496571, + 50.032704301 + ], + [ + 8.4485655, + 50.032980101 + ], + [ + 8.444963294, + 50.033930411 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.0311137202906,8.504798542329036,50.02666817905694,8.477076552529764", + "point": "50.0311137202906,8.504798542329036", + "startLcPosition": "160", + "impact": { + "lower": "Raunheim", + "upper": "Kelsterbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Kelsterbach - Raunheim", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.0311137202906, + "long": 8.504798542329036 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 3.3 km hinter AS Kelsterbach und 0.1 km vor AS Raunheim", + "", + "L\u00e4nge: 2.16 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.504798542, + 50.03111372 + ], + [ + 8.5034623, + 50.030578501 + ], + [ + 8.5028698, + 50.030341201 + ], + [ + 8.4960715, + 50.027617901 + ], + [ + 8.4958182, + 50.027519601 + ], + [ + 8.4954064, + 50.027362801 + ], + [ + 8.4949628, + 50.027197501 + ], + [ + 8.4943097, + 50.026989501 + ], + [ + 8.4935559, + 50.026767001 + ], + [ + 8.4932285, + 50.026674801 + ], + [ + 8.4928925, + 50.026591001 + ], + [ + 8.4923841, + 50.026459601 + ], + [ + 8.4919313, + 50.026359401 + ], + [ + 8.4916717, + 50.026306401 + ], + [ + 8.4908226, + 50.026147301 + ], + [ + 8.4903159, + 50.026063601 + ], + [ + 8.4897921, + 50.025970701 + ], + [ + 8.4891043, + 50.025890901 + ], + [ + 8.488516, + 50.025828601 + ], + [ + 8.4879342, + 50.025774501 + ], + [ + 8.4874714, + 50.025739401 + ], + [ + 8.4869418, + 50.025706001 + ], + [ + 8.4865114, + 50.025686701 + ], + [ + 8.48586, + 50.025667701 + ], + [ + 8.4847772, + 50.025664501 + ], + [ + 8.4841614, + 50.025679601 + ], + [ + 8.4835238, + 50.025707901 + ], + [ + 8.4829951, + 50.025742701 + ], + [ + 8.4824409, + 50.025786501 + ], + [ + 8.4817751, + 50.025850601 + ], + [ + 8.4811764, + 50.025920701 + ], + [ + 8.4806098, + 50.026001801 + ], + [ + 8.480068, + 50.026087201 + ], + [ + 8.4795029, + 50.026193301 + ], + [ + 8.4772028, + 50.026643101 + ], + [ + 8.477076553, + 50.026668179 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.02666817905694,8.477076552529764,50.03061946654471,8.457938983641318", + "point": "50.02666817905694,8.477076552529764", + "startLcPosition": "161", + "impact": { + "lower": "Johannespfad", + "upper": "M\u00f6nchhof-Dreieck", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | M\u00f6nchhof-Dreieck - Johannespfad", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.02666817905694, + "long": 8.477076552529764 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 1.1 km hinter AD M\u00f6nchhof-Dreieck und 3.6 km vor Johannespfad", + "", + "L\u00e4nge: 1.44 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.477076553, + 50.026668179 + ], + [ + 8.475839, + 50.026914001 + ], + [ + 8.4702206, + 50.028036501 + ], + [ + 8.4658368, + 50.028907101 + ], + [ + 8.4629617, + 50.029476901 + ], + [ + 8.4617171, + 50.029749801 + ], + [ + 8.4606988, + 50.029977501 + ], + [ + 8.4589609, + 50.030372701 + ], + [ + 8.4586177, + 50.030454701 + ], + [ + 8.457938984, + 50.030619467 + ] + ] + } + }, + { + "identifier": "2026-017151--vi-fbm.2026-04-07_20-00-00-000.devi-fbm.2026-04-07_20-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.02603213943396,8.480417326704243,50.03393041104208,8.444963293904276", + "point": "50.02603213943396,8.480417326704243", + "startLcPosition": "161", + "impact": { + "lower": "Johannespfad", + "upper": "M\u00f6nchhof-Dreieck", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | M\u00f6nchhof-Dreieck - Johannespfad", + "coordinate": { + "lat": 50.02603213943396, + "long": 8.480417326704243 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "11.04.26 20:00 bis zum 12.04.26 06:00 Uhr.", + "12.04.26 20:00 bis zum 13.04.26 06:00 Uhr.", + "13.04.26 20:00 bis zum 14.04.26 06:15 Uhr.", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 0.9 km hinter AD M\u00f6nchhof-Dreieck und 2.6 km vor Johannespfad", + "", + "L\u00e4nge: 2.69 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.5 m", + "", + "Baustelleneinrichtung M\u00f6nchhof-Dreieck " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.480417327, + 50.026032139 + ], + [ + 8.480068, + 50.026087201 + ], + [ + 8.4795029, + 50.026193301 + ], + [ + 8.4772028, + 50.026643101 + ], + [ + 8.475839, + 50.026914001 + ], + [ + 8.4702206, + 50.028036501 + ], + [ + 8.4658368, + 50.028907101 + ], + [ + 8.4629617, + 50.029476901 + ], + [ + 8.4617171, + 50.029749801 + ], + [ + 8.4606988, + 50.029977501 + ], + [ + 8.4589609, + 50.030372701 + ], + [ + 8.4586177, + 50.030454701 + ], + [ + 8.4561485, + 50.031054101 + ], + [ + 8.4540493, + 50.031547801 + ], + [ + 8.4512727, + 50.032288301 + ], + [ + 8.4496571, + 50.032704301 + ], + [ + 8.4485655, + 50.032980101 + ], + [ + 8.444963294, + 50.033930411 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de9", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.03061946654471,8.457938983641318,50.033811112185425,8.445415534366138", + "point": "50.03061946654471,8.457938983641318", + "startLcPosition": "162", + "impact": { + "lower": "Johannespfad", + "upper": "Raunheim", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Raunheim - Johannespfad", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.03061946654471, + "long": 8.457938983641318 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 1.4 km hinter AS Raunheim und 2.7 km vor Johannespfad", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.457938984, + 50.030619467 + ], + [ + 8.4561485, + 50.031054101 + ], + [ + 8.4540493, + 50.031547801 + ], + [ + 8.4512727, + 50.032288301 + ], + [ + 8.4496571, + 50.032704301 + ], + [ + 8.4485655, + 50.032980101 + ], + [ + 8.445415534, + 50.033811112 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de11", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.03363348893465,8.44530302487111,50.030433657738584,8.457830133074516", + "point": "50.03363348893465,8.44530302487111", + "startLcPosition": "163", + "impact": { + "lower": "Raunheim", + "upper": "Johannespfad", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Johannespfad - Raunheim", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.03363348893465, + "long": 8.44530302487111 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.7 km hinter Johannespfad und 1.4 km vor AS Raunheim", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 9.15 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.445303025, + 50.033633489 + ], + [ + 8.4457637, + 50.033513001 + ], + [ + 8.4484479, + 50.032810601 + ], + [ + 8.4495046, + 50.032536201 + ], + [ + 8.4514512, + 50.032030001 + ], + [ + 8.4531049, + 50.031599901 + ], + [ + 8.4547909, + 50.031173701 + ], + [ + 8.457830133, + 50.030433658 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.030433657738584,8.457830133074516,50.02653146882157,8.477011311348202", + "point": "50.030433657738584,8.457830133074516", + "startLcPosition": "163", + "impact": { + "lower": "M\u00f6nchhof-Dreieck", + "upper": "Johannespfad", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Johannespfad - M\u00f6nchhof-Dreieck", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.030433657738584, + "long": 8.457830133074516 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 3.6 km hinter Johannespfad und 1.1 km vor AD M\u00f6nchhof-Dreieck", + "", + "L\u00e4nge: 1.44 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.457830133, + 50.030433658 + ], + [ + 8.4583445, + 50.030308401 + ], + [ + 8.4586755, + 50.030232501 + ], + [ + 8.459507, + 50.030052701 + ], + [ + 8.4618823, + 50.029547201 + ], + [ + 8.4624156, + 50.029436501 + ], + [ + 8.4632076, + 50.029266401 + ], + [ + 8.4639292, + 50.029133301 + ], + [ + 8.4651839, + 50.028880701 + ], + [ + 8.4657657, + 50.028764601 + ], + [ + 8.4701539, + 50.027895001 + ], + [ + 8.4756977, + 50.026790901 + ], + [ + 8.477011311, + 50.026531469 + ] + ] + } + }, + { + "identifier": "2026-017151--vi-fbm.2026-04-07_20-00-00-000.devi-fbm.2026-04-07_20-00-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.034090262401286,8.443556507461736,50.0257210872543,8.48177208846823", + "point": "50.034090262401286,8.443556507461736", + "startLcPosition": "163", + "impact": { + "lower": "M\u00f6nchhof-Dreieck", + "upper": "Johannespfad", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Johannespfad - M\u00f6nchhof-Dreieck", + "coordinate": { + "lat": 50.034090262401286, + "long": 8.443556507461736 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 06:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 06:00 Uhr.", + "20.04.26 20:00 bis zum 21.04.26 06:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 06:00 Uhr.", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.5 km hinter Johannespfad und 0.8 km vor AD M\u00f6nchhof-Dreieck", + "", + "L\u00e4nge: 2.89 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.5 m", + "", + "Baustelleneinrichtung M\u00f6nchhof-Dreieck " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.443556507, + 50.034090262 + ], + [ + 8.4457637, + 50.033513001 + ], + [ + 8.4484479, + 50.032810601 + ], + [ + 8.4495046, + 50.032536201 + ], + [ + 8.4514512, + 50.032030001 + ], + [ + 8.4531049, + 50.031599901 + ], + [ + 8.4547909, + 50.031173701 + ], + [ + 8.4583445, + 50.030308401 + ], + [ + 8.4586755, + 50.030232501 + ], + [ + 8.459507, + 50.030052701 + ], + [ + 8.4618823, + 50.029547201 + ], + [ + 8.4624156, + 50.029436501 + ], + [ + 8.4632076, + 50.029266401 + ], + [ + 8.4639292, + 50.029133301 + ], + [ + 8.4651839, + 50.028880701 + ], + [ + 8.4657657, + 50.028764601 + ], + [ + 8.4701539, + 50.027895001 + ], + [ + 8.4756977, + 50.026790901 + ], + [ + 8.4770633, + 50.026521201 + ], + [ + 8.4794172, + 50.026066801 + ], + [ + 8.4798277, + 50.025991801 + ], + [ + 8.480248, + 50.025920801 + ], + [ + 8.4807137, + 50.025853401 + ], + [ + 8.4815882, + 50.025739801 + ], + [ + 8.481772088, + 50.025721087 + ] + ] + } + }, + { + "identifier": "2026-017151--vi-fbm.2026-04-07_20-00-00-000.devi-fbm.2026-04-07_20-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.03375191416126,8.444850227462757,50.0257210872543,8.48177208846823", + "point": "50.03375191416126,8.444850227462757", + "startLcPosition": "163", + "impact": { + "lower": "M\u00f6nchhof-Dreieck", + "upper": "Johannespfad", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Johannespfad - M\u00f6nchhof-Dreieck", + "coordinate": { + "lat": 50.03375191416126, + "long": 8.444850227462757 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "11.04.26 20:00 bis zum 12.04.26 06:00 Uhr.", + "12.04.26 20:00 bis zum 13.04.26 06:00 Uhr.", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.6 km hinter Johannespfad und 0.8 km vor AD M\u00f6nchhof-Dreieck", + "", + "L\u00e4nge: 2.79 km | Maximale Durchfahrtsbreite: 8.5 m", + "", + "Baustelleneinrichtung M\u00f6nchhof-Dreieck " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.444850227, + 50.033751914 + ], + [ + 8.4457637, + 50.033513001 + ], + [ + 8.4484479, + 50.032810601 + ], + [ + 8.4495046, + 50.032536201 + ], + [ + 8.4514512, + 50.032030001 + ], + [ + 8.4531049, + 50.031599901 + ], + [ + 8.4547909, + 50.031173701 + ], + [ + 8.4583445, + 50.030308401 + ], + [ + 8.4586755, + 50.030232501 + ], + [ + 8.459507, + 50.030052701 + ], + [ + 8.4618823, + 50.029547201 + ], + [ + 8.4624156, + 50.029436501 + ], + [ + 8.4632076, + 50.029266401 + ], + [ + 8.4639292, + 50.029133301 + ], + [ + 8.4651839, + 50.028880701 + ], + [ + 8.4657657, + 50.028764601 + ], + [ + 8.4701539, + 50.027895001 + ], + [ + 8.4756977, + 50.026790901 + ], + [ + 8.4770633, + 50.026521201 + ], + [ + 8.4794172, + 50.026066801 + ], + [ + 8.4798277, + 50.025991801 + ], + [ + 8.480248, + 50.025920801 + ], + [ + 8.4807137, + 50.025853401 + ], + [ + 8.4815882, + 50.025739801 + ], + [ + 8.481772088, + 50.025721087 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de13", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.03599748116371,8.436244462551505,50.03363348893465,8.44530302487111", + "point": "50.03599748116371,8.436244462551505", + "startLcPosition": "163", + "impact": { + "lower": "Raunheim", + "upper": "Johannespfad", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Johannespfad - Raunheim", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.03599748116371, + "long": 8.436244462551505 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.0 km hinter Johannespfad und 2.4 km vor AS Raunheim", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 9.15 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.436244463, + 50.035997481 + ], + [ + 8.4383185, + 50.035460301 + ], + [ + 8.4432539, + 50.034169401 + ], + [ + 8.445303025, + 50.033633489 + ] + ] + } + }, + { + "identifier": "2026-017234--vi-fbm.2026-04-13_21-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.144333949714785,8.326929372835341,50.10903308459056,8.345258933862434", + "point": "50.144333949714785,8.326929372835341", + "startLcPosition": "168", + "impact": { + "lower": "Medenbach", + "upper": "Thei\u00dftal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Thei\u00dftal - Medenbach", + "coordinate": { + "lat": 50.144333949714785, + "long": 8.326929372835341 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 21:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 21:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 21:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 21:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 21:00 bis zum 18.04.26 05:00 Uhr.", + "20.04.26 21:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 21:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 21:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 21:00 bis zum 24.04.26 05:00 Uhr.", + "24.04.26 21:00 bis zum 25.04.26 05:00 Uhr.", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 3.5 km hinter Thei\u00dftal und 1.6 km vor Medenbach", + "", + "L\u00e4nge: 4.19 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A3 von Thei\u00dftal (Rastplatz) nach Medenbach (Raststaette) Auf- oder Abbau Verkehrsf\u00fchrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.326929373, + 50.14433395 + ], + [ + 8.3272587, + 50.144029301 + ], + [ + 8.3274881, + 50.143824801 + ], + [ + 8.3285644, + 50.142855501 + ], + [ + 8.3288218, + 50.142615201 + ], + [ + 8.3291118, + 50.142351601 + ], + [ + 8.3294104, + 50.142052001 + ], + [ + 8.3296502, + 50.141783401 + ], + [ + 8.3298681, + 50.141501401 + ], + [ + 8.3301185, + 50.141145201 + ], + [ + 8.330667, + 50.140351801 + ], + [ + 8.333332, + 50.136510601 + ], + [ + 8.3349873, + 50.134143401 + ], + [ + 8.3364291, + 50.132058501 + ], + [ + 8.3366096, + 50.131797501 + ], + [ + 8.3368211, + 50.131507201 + ], + [ + 8.3374612, + 50.130580001 + ], + [ + 8.3382766, + 50.129392501 + ], + [ + 8.3387791, + 50.128682801 + ], + [ + 8.339204, + 50.128013501 + ], + [ + 8.3398035, + 50.126944401 + ], + [ + 8.3400553, + 50.126387101 + ], + [ + 8.3402855, + 50.125827101 + ], + [ + 8.340522, + 50.125173101 + ], + [ + 8.3406992, + 50.124605301 + ], + [ + 8.3408766, + 50.123936801 + ], + [ + 8.34099, + 50.123229601 + ], + [ + 8.3410536, + 50.122736501 + ], + [ + 8.3411019, + 50.122268801 + ], + [ + 8.3411443, + 50.120615901 + ], + [ + 8.3411765, + 50.119247001 + ], + [ + 8.3412054, + 50.118884801 + ], + [ + 8.3412628, + 50.118237601 + ], + [ + 8.3413589, + 50.117602801 + ], + [ + 8.3414691, + 50.117061501 + ], + [ + 8.3416047, + 50.116481601 + ], + [ + 8.3418796, + 50.115574301 + ], + [ + 8.3420468, + 50.115102701 + ], + [ + 8.3423331, + 50.114396801 + ], + [ + 8.3426483, + 50.113719801 + ], + [ + 8.3433155, + 50.112506201 + ], + [ + 8.343406, + 50.112341401 + ], + [ + 8.345258934, + 50.109033085 + ] + ] + } + }, + { + "identifier": "2026-017191--vi-bs.2026-04-13_20-15-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.3368902595663,8.188450694000146,50.34863869545661,8.167395992866586", + "point": "50.3368902595663,8.188450694000146", + "startLcPosition": "171", + "impact": { + "lower": "Limburg-S\u00fcd", + "upper": "Bad Camberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bad Camberg - Limburg-S\u00fcd", + "coordinate": { + "lat": 50.3368902595663, + "long": 8.188450694000146 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:15 bis zum 14.04.26 05:15 Uhr.", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 5.5 km hinter Bad Camberg und 7.0 km vor AS Limburg-S\u00fcd", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A3 von Bad Camberg (Raststaette) nach Limburg-S\u00fcd (AS) Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.188450694, + 50.33689026 + ], + [ + 8.1810128, + 50.340061301 + ], + [ + 8.180134, + 50.340441001 + ], + [ + 8.1794609, + 50.340749301 + ], + [ + 8.1792034, + 50.340877001 + ], + [ + 8.1786694, + 50.341142301 + ], + [ + 8.1782228, + 50.341379201 + ], + [ + 8.177818, + 50.341600401 + ], + [ + 8.1773868, + 50.341845401 + ], + [ + 8.1769338, + 50.342110101 + ], + [ + 8.1765035, + 50.342381201 + ], + [ + 8.1758968, + 50.342775401 + ], + [ + 8.1756421, + 50.342950201 + ], + [ + 8.1752163, + 50.343241001 + ], + [ + 8.1745932, + 50.343677001 + ], + [ + 8.1739546, + 50.344113601 + ], + [ + 8.1732642, + 50.344580301 + ], + [ + 8.1726438, + 50.345023301 + ], + [ + 8.171608, + 50.345737701 + ], + [ + 8.1711648, + 50.346043401 + ], + [ + 8.1704449, + 50.346540401 + ], + [ + 8.1681356, + 50.348118101 + ], + [ + 8.1678043, + 50.348355201 + ], + [ + 8.167395993, + 50.348638695 + ] + ] + } + }, + { + "identifier": "2026-017179--vi-bs.2026-04-09_12-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.40344164002974,8.056895400607862,50.40354370155594,8.054790648007302", + "point": "50.40344164002974,8.056895400607862", + "startLcPosition": "174", + "impact": { + "lower": "Diez", + "upper": "Limburg-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Limburg-Nord - Diez", + "coordinate": { + "lat": 50.40344164002974, + "long": 8.056895400607862 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 12:00 bis 16:00 Uhr", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 1.1 km hinter AS Limburg-Nord und 8.1 km vor AS Diez", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A3 von Limburg-Nord (AS) nach Diez (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.056895401, + 50.40344164 + ], + [ + 8.0566284, + 50.403454901 + ], + [ + 8.054790648, + 50.403543702 + ] + ] + } + }, + { + "identifier": "2026-017696--vi-bs.2026-04-10_09-00-00-000_010.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.44947269481555,7.781457406236845,50.45079900486295,7.779653093537255", + "point": "50.44947269481555,7.781457406236845", + "startLcPosition": "179", + "impact": { + "lower": "Dernbach", + "upper": "Montabaur", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Montabaur - Dernbach", + "coordinate": { + "lat": 50.44947269481555, + "long": 7.781457406236845 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 4.4 km hinter AS Montabaur und 1.3 km vor AD Dernbach", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 von Montabaur (AS) nach Dernbach (AD) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.781457406, + 50.449472695 + ], + [ + 7.7812867, + 50.449574101 + ], + [ + 7.7810749, + 50.449701201 + ], + [ + 7.7808051, + 50.449874001 + ], + [ + 7.7805513, + 50.450046801 + ], + [ + 7.7801899, + 50.450333101 + ], + [ + 7.7799758, + 50.450510001 + ], + [ + 7.7797725, + 50.450686901 + ], + [ + 7.779653094, + 50.450799005 + ] + ] + } + }, + { + "identifier": "2026-010258--vi-bs.2026-02-04_00-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.55835164132598,7.562619397980118,50.55416429122975,7.574712044182341", + "point": "50.55835164132598,7.562619397980118", + "startLcPosition": "188", + "impact": { + "lower": "Urbacher Wald", + "upper": "Neuwied", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Neuwied - Urbacher Wald", + "startTimestamp": "2026-02-04T00:00:00+01:00", + "coordinate": { + "lat": 50.55835164132598, + "long": 7.562619397980118 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.02.26 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.7 km hinter AS Neuwied und 1.2 km vor Urbacher Wald", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "Defekter Anpralld\u00e4mpfer" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.562619398, + 50.558351641 + ], + [ + 7.5629742, + 50.558312901 + ], + [ + 7.5637157, + 50.558215901 + ], + [ + 7.5644495, + 50.558099301 + ], + [ + 7.5650065, + 50.558001901 + ], + [ + 7.5654756, + 50.557908101 + ], + [ + 7.5661561, + 50.557761301 + ], + [ + 7.5667354, + 50.557626301 + ], + [ + 7.5672415, + 50.557493801 + ], + [ + 7.5676174, + 50.557388001 + ], + [ + 7.5680136, + 50.557271701 + ], + [ + 7.5684855, + 50.557123201 + ], + [ + 7.5687368, + 50.557042201 + ], + [ + 7.5690247, + 50.556943101 + ], + [ + 7.5695981, + 50.556736001 + ], + [ + 7.5701178, + 50.556536001 + ], + [ + 7.5706282, + 50.556325801 + ], + [ + 7.5708423, + 50.556237601 + ], + [ + 7.5713392, + 50.556017201 + ], + [ + 7.5715708, + 50.555909101 + ], + [ + 7.5722973, + 50.555549701 + ], + [ + 7.572755, + 50.555302401 + ], + [ + 7.5733198, + 50.554984601 + ], + [ + 7.5738833, + 50.554654301 + ], + [ + 7.5744388, + 50.554324701 + ], + [ + 7.574712044, + 50.554164291 + ] + ] + } + }, + { + "identifier": "2026-017829--vi-bs.2026-04-14_20-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.56688857155754,7.5207981650916045,50.558965908207156,7.548682162904219", + "point": "50.56688857155754,7.5207981650916045", + "startLcPosition": "189", + "impact": { + "lower": "Merker Wald", + "upper": "Epgert", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Epgert - Merker Wald", + "coordinate": { + "lat": 50.56688857155754, + "long": 7.5207981650916045 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 3.3 km hinter Epgert und 1.6 km vor Merker Wald", + "", + "L\u00e4nge: 2.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A3 von Epgert (Rastplatz) nach Merker Wald (Parkplatz) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.520798165, + 50.566888572 + ], + [ + 7.52368, + 50.565478601 + ], + [ + 7.5269435, + 50.563918301 + ], + [ + 7.5279262, + 50.563479201 + ], + [ + 7.5290494, + 50.562997801 + ], + [ + 7.5298962, + 50.562665001 + ], + [ + 7.5309563, + 50.562275501 + ], + [ + 7.5320391, + 50.561904701 + ], + [ + 7.5328377, + 50.561642701 + ], + [ + 7.5340655, + 50.561278001 + ], + [ + 7.5349701, + 50.561025601 + ], + [ + 7.5356226, + 50.560858401 + ], + [ + 7.536379, + 50.560671101 + ], + [ + 7.5370865, + 50.560507101 + ], + [ + 7.5377997, + 50.560348301 + ], + [ + 7.5384965, + 50.560205001 + ], + [ + 7.5390851, + 50.560092201 + ], + [ + 7.5397021, + 50.559979401 + ], + [ + 7.5404886, + 50.559844601 + ], + [ + 7.5413991, + 50.559703201 + ], + [ + 7.5423787, + 50.559565501 + ], + [ + 7.543218, + 50.559453601 + ], + [ + 7.5438679, + 50.559383301 + ], + [ + 7.5445848, + 50.559302701 + ], + [ + 7.5453372, + 50.559226701 + ], + [ + 7.5463235, + 50.559136601 + ], + [ + 7.5470772, + 50.559076201 + ], + [ + 7.5478308, + 50.559023501 + ], + [ + 7.5486415, + 50.558968201 + ], + [ + 7.548682163, + 50.558965908 + ] + ] + } + }, + { + "identifier": "2026-017778--vi-bs.2026-04-13_20-00-00-000_009.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.58924367590922,7.455267151620306,50.58090895887788,7.475421834026755", + "point": "50.58924367590922,7.455267151620306", + "startLcPosition": "190", + "impact": { + "lower": "Epgert", + "upper": "Fernthal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Fernthal - Epgert", + "coordinate": { + "lat": 50.58924367590922, + "long": 7.455267151620306 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 1.9 km hinter Fernthal und 0.3 km vor Epgert", + "", + "L\u00e4nge: 1.74 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A3 von Fernthal (Raststaette) nach Epgert (Rastplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.455267152, + 50.589243676 + ], + [ + 7.4619115, + 50.585148701 + ], + [ + 7.4628687, + 50.584603701 + ], + [ + 7.4638516, + 50.584070201 + ], + [ + 7.4651255, + 50.583428901 + ], + [ + 7.4662385, + 50.582907601 + ], + [ + 7.4672723, + 50.582452501 + ], + [ + 7.4682665, + 50.582072301 + ], + [ + 7.4692338, + 50.581757601 + ], + [ + 7.4701816, + 50.581506401 + ], + [ + 7.4712252, + 50.581289501 + ], + [ + 7.4721252, + 50.581143201 + ], + [ + 7.4732242, + 50.581019001 + ], + [ + 7.4742484, + 50.580949901 + ], + [ + 7.4754205, + 50.580909001 + ], + [ + 7.475421834, + 50.580908959 + ] + ] + } + }, + { + "identifier": "2026-017767--vi-bs.2026-04-13_20-00-00-000_008.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.58317870496081,7.465659686129047,50.58090895887788,7.4754218340267595", + "point": "50.58317870496081,7.465659686129047", + "startLcPosition": "190", + "impact": { + "lower": "Epgert", + "upper": "Fernthal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Fernthal - Epgert", + "coordinate": { + "lat": 50.58317870496081, + "long": 7.465659686129047 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.9 km hinter Fernthal und 0.3 km vor Epgert", + "", + "L\u00e4nge: 0.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A3 von Fernthal (Raststaette) nach Epgert (Rastplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.465659686, + 50.583178705 + ], + [ + 7.4662385, + 50.582907601 + ], + [ + 7.4672723, + 50.582452501 + ], + [ + 7.4682665, + 50.582072301 + ], + [ + 7.4692338, + 50.581757601 + ], + [ + 7.4701816, + 50.581506401 + ], + [ + 7.4712252, + 50.581289501 + ], + [ + 7.4721252, + 50.581143201 + ], + [ + 7.4732242, + 50.581019001 + ], + [ + 7.4742484, + 50.580949901 + ], + [ + 7.4754205, + 50.580909001 + ], + [ + 7.475421834, + 50.580908959 + ] + ] + } + }, + { + "identifier": "2026-017820--vi-bs.2026-04-13_20-00-00-000_011.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.58924367590922,7.455267151620306,50.58090895887788,7.475421834026755", + "point": "50.58924367590922,7.455267151620306", + "startLcPosition": "190", + "impact": { + "lower": "Epgert", + "upper": "Fernthal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Fernthal - Epgert", + "coordinate": { + "lat": 50.58924367590922, + "long": 7.455267151620306 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 1.9 km hinter Fernthal und 0.3 km vor Epgert", + "", + "L\u00e4nge: 1.74 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A3 von Fernthal (Raststaette) nach Epgert (Rastplatz) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.455267152, + 50.589243676 + ], + [ + 7.4619115, + 50.585148701 + ], + [ + 7.4628687, + 50.584603701 + ], + [ + 7.4638516, + 50.584070201 + ], + [ + 7.4651255, + 50.583428901 + ], + [ + 7.4662385, + 50.582907601 + ], + [ + 7.4672723, + 50.582452501 + ], + [ + 7.4682665, + 50.582072301 + ], + [ + 7.4692338, + 50.581757601 + ], + [ + 7.4701816, + 50.581506401 + ], + [ + 7.4712252, + 50.581289501 + ], + [ + 7.4721252, + 50.581143201 + ], + [ + 7.4732242, + 50.581019001 + ], + [ + 7.4742484, + 50.580949901 + ], + [ + 7.4754205, + 50.580909001 + ], + [ + 7.475421834, + 50.580908959 + ] + ] + } + }, + { + "identifier": "2024-024354--vi-bs.2025-09-14_00-00-00-000.devi-zus.2025-04-28_00-00-00-000.f_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.621592609282345,7.398707954387849,50.61590081896335,7.418390900849308", + "point": "50.621592609282345,7.398707954387849", + "startLcPosition": "193", + "impact": { + "lower": "Neustadt (Wied)", + "upper": "Hambitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Hambitz - Neustadt (Wied)", + "startTimestamp": "2025-09-14T00:00:00+02:00", + "coordinate": { + "lat": 50.621592609282345, + "long": 7.398707954387849 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.09.25 um 00:00 Uhr", + "Ende: 20.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 3.3 km hinter Hambitz und 1.7 km vor AS Neustadt (Wied)", + "", + "L\u00e4nge: 1.53 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A3 Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.398707954, + 50.621592609 + ], + [ + 7.3988789, + 50.621543901 + ], + [ + 7.3999956, + 50.621216501 + ], + [ + 7.4057347, + 50.619556201 + ], + [ + 7.4091316, + 50.618574501 + ], + [ + 7.4141614, + 50.617114201 + ], + [ + 7.4145403, + 50.616996701 + ], + [ + 7.4170025, + 50.616303301 + ], + [ + 7.418390901, + 50.615900819 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-fbm.2026-04-13_20-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de148", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.670408550407956,7.303828120030214,50.68572071367967,7.275339446965536", + "point": "50.670408550407956,7.303828120030214", + "startLcPosition": "194", + "impact": { + "lower": "Siebengebirge", + "upper": "Bad Honnef/Linz", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bad Honnef/Linz - Siebengebirge", + "coordinate": { + "lat": 50.670408550407956, + "long": 7.303828120030214 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 21:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 21:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 21:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 21:00 bis zum 18.04.26 05:00 Uhr.", + "18.04.26 21:00 bis zum 19.04.26 05:00 Uhr.", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 3.0 km hinter AS Bad Honnef/Linz und AS Siebengebirge", + "", + "L\u00e4nge: 2.7 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.30382812, + 50.67040855 + ], + [ + 7.303567, + 50.670552401 + ], + [ + 7.3025996, + 50.671161001 + ], + [ + 7.301563, + 50.671848101 + ], + [ + 7.3007131, + 50.672419701 + ], + [ + 7.2997489, + 50.673019101 + ], + [ + 7.299125, + 50.673393101 + ], + [ + 7.2987818, + 50.673589001 + ], + [ + 7.2982298, + 50.673876101 + ], + [ + 7.2979264, + 50.674015701 + ], + [ + 7.2973191, + 50.674279301 + ], + [ + 7.2968027, + 50.674480901 + ], + [ + 7.296295, + 50.674667901 + ], + [ + 7.2951022, + 50.675069301 + ], + [ + 7.2937819, + 50.675489801 + ], + [ + 7.2925373, + 50.675884701 + ], + [ + 7.2912702, + 50.676282101 + ], + [ + 7.2902014, + 50.676616601 + ], + [ + 7.2862931, + 50.677847801 + ], + [ + 7.2853428, + 50.678171301 + ], + [ + 7.28445, + 50.678513201 + ], + [ + 7.2837755, + 50.678790401 + ], + [ + 7.2831198, + 50.679083801 + ], + [ + 7.2824902, + 50.679399301 + ], + [ + 7.2818885, + 50.679735901 + ], + [ + 7.2813165, + 50.680092801 + ], + [ + 7.2807759, + 50.680468801 + ], + [ + 7.2802683, + 50.680862801 + ], + [ + 7.2797951, + 50.681273601 + ], + [ + 7.2764438, + 50.684618401 + ], + [ + 7.2759923, + 50.685069101 + ], + [ + 7.275339447, + 50.685720714 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-fbm.2026-04-13_20-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de146", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.655661232170885,7.325565468460035,50.70337940523753,7.2546910760613255", + "point": "50.655661232170885,7.325565468460035", + "startLcPosition": "194", + "impact": { + "lower": "Bonn/Siegburg", + "upper": "Bad Honnef/Linz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bad Honnef/Linz - Bonn/Siegburg", + "coordinate": { + "lat": 50.655661232170885, + "long": 7.325565468460035 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 0.7 km hinter AS Bad Honnef/Linz und 8.7 km vor AK Bonn/Siegburg", + "", + "L\u00e4nge: 7.46 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.325565468, + 50.655661232 + ], + [ + 7.3253717, + 50.655885901 + ], + [ + 7.3248919, + 50.656457101 + ], + [ + 7.3225057, + 50.659243501 + ], + [ + 7.321323, + 50.660639601 + ], + [ + 7.3200523, + 50.662049201 + ], + [ + 7.3196595, + 50.662458101 + ], + [ + 7.3194222, + 50.662687301 + ], + [ + 7.3187866, + 50.663253701 + ], + [ + 7.3176015, + 50.664184401 + ], + [ + 7.3168248, + 50.664681401 + ], + [ + 7.3162244, + 50.665046201 + ], + [ + 7.3154848, + 50.665457501 + ], + [ + 7.314739, + 50.665830601 + ], + [ + 7.3139137, + 50.666222001 + ], + [ + 7.3135039, + 50.666393501 + ], + [ + 7.3130639, + 50.666564101 + ], + [ + 7.3097803, + 50.667810501 + ], + [ + 7.308138, + 50.668442801 + ], + [ + 7.3074451, + 50.668715401 + ], + [ + 7.3066139, + 50.669061701 + ], + [ + 7.3059099, + 50.669361701 + ], + [ + 7.3047073, + 50.669924201 + ], + [ + 7.303567, + 50.670552401 + ], + [ + 7.3025996, + 50.671161001 + ], + [ + 7.301563, + 50.671848101 + ], + [ + 7.3007131, + 50.672419701 + ], + [ + 7.2997489, + 50.673019101 + ], + [ + 7.299125, + 50.673393101 + ], + [ + 7.2987818, + 50.673589001 + ], + [ + 7.2982298, + 50.673876101 + ], + [ + 7.2979264, + 50.674015701 + ], + [ + 7.2973191, + 50.674279301 + ], + [ + 7.2968027, + 50.674480901 + ], + [ + 7.296295, + 50.674667901 + ], + [ + 7.2951022, + 50.675069301 + ], + [ + 7.2937819, + 50.675489801 + ], + [ + 7.2925373, + 50.675884701 + ], + [ + 7.2912702, + 50.676282101 + ], + [ + 7.2902014, + 50.676616601 + ], + [ + 7.2862931, + 50.677847801 + ], + [ + 7.2853428, + 50.678171301 + ], + [ + 7.28445, + 50.678513201 + ], + [ + 7.2837755, + 50.678790401 + ], + [ + 7.2831198, + 50.679083801 + ], + [ + 7.2824902, + 50.679399301 + ], + [ + 7.2818885, + 50.679735901 + ], + [ + 7.2813165, + 50.680092801 + ], + [ + 7.2807759, + 50.680468801 + ], + [ + 7.2802683, + 50.680862801 + ], + [ + 7.2797951, + 50.681273601 + ], + [ + 7.2764438, + 50.684618401 + ], + [ + 7.2759923, + 50.685069101 + ], + [ + 7.2743816, + 50.686676701 + ], + [ + 7.2725082, + 50.688557701 + ], + [ + 7.271198, + 50.689876101 + ], + [ + 7.2708893, + 50.690180701 + ], + [ + 7.269228, + 50.691855701 + ], + [ + 7.2669733, + 50.694101801 + ], + [ + 7.2654568, + 50.695621001 + ], + [ + 7.2640895, + 50.696992301 + ], + [ + 7.2636526, + 50.697424101 + ], + [ + 7.2632062, + 50.697857201 + ], + [ + 7.2627491, + 50.698277401 + ], + [ + 7.2622683, + 50.698688301 + ], + [ + 7.2618237, + 50.699054401 + ], + [ + 7.2613538, + 50.699413901 + ], + [ + 7.261004, + 50.699669601 + ], + [ + 7.2603075, + 50.700160201 + ], + [ + 7.2597188, + 50.700540201 + ], + [ + 7.2589497, + 50.701012401 + ], + [ + 7.2582104, + 50.701434401 + ], + [ + 7.256018, + 50.702637801 + ], + [ + 7.2557266, + 50.702800801 + ], + [ + 7.254691076, + 50.703379405 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-fbm.2026-04-13_09-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de144", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.655661232170885,7.325565468460035,50.70337940523753,7.2546910760613255", + "point": "50.655661232170885,7.325565468460035", + "startLcPosition": "194", + "impact": { + "lower": "Bonn/Siegburg", + "upper": "Bad Honnef/Linz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bad Honnef/Linz - Bonn/Siegburg", + "coordinate": { + "lat": 50.655661232170885, + "long": 7.325565468460035 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "17.04.26 von 09:00 bis 13:00 Uhr", + "18.04.26 von 09:00 bis 19:15 Uhr", + "19.04.26 von 09:00 bis 19:00 Uhr", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 0.7 km hinter AS Bad Honnef/Linz und 8.7 km vor AK Bonn/Siegburg", + "", + "L\u00e4nge: 7.46 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.325565468, + 50.655661232 + ], + [ + 7.3253717, + 50.655885901 + ], + [ + 7.3248919, + 50.656457101 + ], + [ + 7.3225057, + 50.659243501 + ], + [ + 7.321323, + 50.660639601 + ], + [ + 7.3200523, + 50.662049201 + ], + [ + 7.3196595, + 50.662458101 + ], + [ + 7.3194222, + 50.662687301 + ], + [ + 7.3187866, + 50.663253701 + ], + [ + 7.3176015, + 50.664184401 + ], + [ + 7.3168248, + 50.664681401 + ], + [ + 7.3162244, + 50.665046201 + ], + [ + 7.3154848, + 50.665457501 + ], + [ + 7.314739, + 50.665830601 + ], + [ + 7.3139137, + 50.666222001 + ], + [ + 7.3135039, + 50.666393501 + ], + [ + 7.3130639, + 50.666564101 + ], + [ + 7.3097803, + 50.667810501 + ], + [ + 7.308138, + 50.668442801 + ], + [ + 7.3074451, + 50.668715401 + ], + [ + 7.3066139, + 50.669061701 + ], + [ + 7.3059099, + 50.669361701 + ], + [ + 7.3047073, + 50.669924201 + ], + [ + 7.303567, + 50.670552401 + ], + [ + 7.3025996, + 50.671161001 + ], + [ + 7.301563, + 50.671848101 + ], + [ + 7.3007131, + 50.672419701 + ], + [ + 7.2997489, + 50.673019101 + ], + [ + 7.299125, + 50.673393101 + ], + [ + 7.2987818, + 50.673589001 + ], + [ + 7.2982298, + 50.673876101 + ], + [ + 7.2979264, + 50.674015701 + ], + [ + 7.2973191, + 50.674279301 + ], + [ + 7.2968027, + 50.674480901 + ], + [ + 7.296295, + 50.674667901 + ], + [ + 7.2951022, + 50.675069301 + ], + [ + 7.2937819, + 50.675489801 + ], + [ + 7.2925373, + 50.675884701 + ], + [ + 7.2912702, + 50.676282101 + ], + [ + 7.2902014, + 50.676616601 + ], + [ + 7.2862931, + 50.677847801 + ], + [ + 7.2853428, + 50.678171301 + ], + [ + 7.28445, + 50.678513201 + ], + [ + 7.2837755, + 50.678790401 + ], + [ + 7.2831198, + 50.679083801 + ], + [ + 7.2824902, + 50.679399301 + ], + [ + 7.2818885, + 50.679735901 + ], + [ + 7.2813165, + 50.680092801 + ], + [ + 7.2807759, + 50.680468801 + ], + [ + 7.2802683, + 50.680862801 + ], + [ + 7.2797951, + 50.681273601 + ], + [ + 7.2764438, + 50.684618401 + ], + [ + 7.2759923, + 50.685069101 + ], + [ + 7.2743816, + 50.686676701 + ], + [ + 7.2725082, + 50.688557701 + ], + [ + 7.271198, + 50.689876101 + ], + [ + 7.2708893, + 50.690180701 + ], + [ + 7.269228, + 50.691855701 + ], + [ + 7.2669733, + 50.694101801 + ], + [ + 7.2654568, + 50.695621001 + ], + [ + 7.2640895, + 50.696992301 + ], + [ + 7.2636526, + 50.697424101 + ], + [ + 7.2632062, + 50.697857201 + ], + [ + 7.2627491, + 50.698277401 + ], + [ + 7.2622683, + 50.698688301 + ], + [ + 7.2618237, + 50.699054401 + ], + [ + 7.2613538, + 50.699413901 + ], + [ + 7.261004, + 50.699669601 + ], + [ + 7.2603075, + 50.700160201 + ], + [ + 7.2597188, + 50.700540201 + ], + [ + 7.2589497, + 50.701012401 + ], + [ + 7.2582104, + 50.701434401 + ], + [ + 7.256018, + 50.702637801 + ], + [ + 7.2557266, + 50.702800801 + ], + [ + 7.254691076, + 50.703379405 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-bs.2026-04-13_05-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de136", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.67412144606569,7.297682778733923,50.67872613690376,7.283931872746814", + "point": "50.67412144606569,7.297682778733923", + "startLcPosition": "194", + "impact": { + "lower": "Siebengebirge", + "upper": "Bad Honnef/Linz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bad Honnef/Linz - Siebengebirge", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.67412144606569, + "long": 7.297682778733923 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 28.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.35)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 3.6 km hinter AS Bad Honnef/Linz und 1.0 km vor AS Siebengebirge", + "", + "L\u00e4nge: 1.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9.75 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.297682779, + 50.674121446 + ], + [ + 7.2973191, + 50.674279301 + ], + [ + 7.2968027, + 50.674480901 + ], + [ + 7.296295, + 50.674667901 + ], + [ + 7.2951022, + 50.675069301 + ], + [ + 7.2937819, + 50.675489801 + ], + [ + 7.2925373, + 50.675884701 + ], + [ + 7.2912702, + 50.676282101 + ], + [ + 7.2902014, + 50.676616601 + ], + [ + 7.2862931, + 50.677847801 + ], + [ + 7.2853428, + 50.678171301 + ], + [ + 7.28445, + 50.678513201 + ], + [ + 7.283931873, + 50.678726137 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-bs.2026-04-13_05-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de138", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.67872613690376,7.283931872746814,50.751386472458734,7.2330169413891126", + "point": "50.67872613690376,7.283931872746814", + "startLcPosition": "195", + "impact": { + "lower": "Bonn/Siegburg", + "upper": "Logebachtal", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Logebachtal - Bonn/Siegburg", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.67872613690376, + "long": 7.283931872746814 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 28.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.35)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 1.0 km hinter Logebachtal und 3.0 km vor AK Bonn/Siegburg", + "", + "L\u00e4nge: 9.19 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9.75 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.283931873, + 50.678726137 + ], + [ + 7.2837755, + 50.678790401 + ], + [ + 7.2831198, + 50.679083801 + ], + [ + 7.2824902, + 50.679399301 + ], + [ + 7.2818885, + 50.679735901 + ], + [ + 7.2813165, + 50.680092801 + ], + [ + 7.2807759, + 50.680468801 + ], + [ + 7.2802683, + 50.680862801 + ], + [ + 7.2797951, + 50.681273601 + ], + [ + 7.2764438, + 50.684618401 + ], + [ + 7.2759923, + 50.685069101 + ], + [ + 7.2743816, + 50.686676701 + ], + [ + 7.2725082, + 50.688557701 + ], + [ + 7.271198, + 50.689876101 + ], + [ + 7.2708893, + 50.690180701 + ], + [ + 7.269228, + 50.691855701 + ], + [ + 7.2669733, + 50.694101801 + ], + [ + 7.2654568, + 50.695621001 + ], + [ + 7.2640895, + 50.696992301 + ], + [ + 7.2636526, + 50.697424101 + ], + [ + 7.2632062, + 50.697857201 + ], + [ + 7.2627491, + 50.698277401 + ], + [ + 7.2622683, + 50.698688301 + ], + [ + 7.2618237, + 50.699054401 + ], + [ + 7.2613538, + 50.699413901 + ], + [ + 7.261004, + 50.699669601 + ], + [ + 7.2603075, + 50.700160201 + ], + [ + 7.2597188, + 50.700540201 + ], + [ + 7.2589497, + 50.701012401 + ], + [ + 7.2582104, + 50.701434401 + ], + [ + 7.256018, + 50.702637801 + ], + [ + 7.2557266, + 50.702800801 + ], + [ + 7.2543428, + 50.703574001 + ], + [ + 7.253567, + 50.704020601 + ], + [ + 7.2528432, + 50.704451301 + ], + [ + 7.2522408, + 50.704830101 + ], + [ + 7.2515915, + 50.705253501 + ], + [ + 7.2509966, + 50.705654701 + ], + [ + 7.2505579, + 50.705968201 + ], + [ + 7.249837, + 50.706498801 + ], + [ + 7.2493693, + 50.706853501 + ], + [ + 7.2488874, + 50.707238601 + ], + [ + 7.2482752, + 50.707746001 + ], + [ + 7.2477657, + 50.708188601 + ], + [ + 7.2473748, + 50.708539401 + ], + [ + 7.2469623, + 50.708928001 + ], + [ + 7.2463671, + 50.709509301 + ], + [ + 7.2458735, + 50.710020801 + ], + [ + 7.2454381, + 50.710497001 + ], + [ + 7.2450026, + 50.710994401 + ], + [ + 7.2444776, + 50.711615301 + ], + [ + 7.2439772, + 50.712259001 + ], + [ + 7.2435728, + 50.712821601 + ], + [ + 7.2431901, + 50.713374801 + ], + [ + 7.2428208, + 50.713957801 + ], + [ + 7.2424632, + 50.714548401 + ], + [ + 7.2420837, + 50.715239201 + ], + [ + 7.2416711, + 50.716050101 + ], + [ + 7.241326, + 50.716819001 + ], + [ + 7.2410406, + 50.717534801 + ], + [ + 7.2407895, + 50.718237001 + ], + [ + 7.2405795, + 50.718913101 + ], + [ + 7.2405165, + 50.719135401 + ], + [ + 7.2403631, + 50.719697401 + ], + [ + 7.2402228, + 50.720277401 + ], + [ + 7.2396071, + 50.723185401 + ], + [ + 7.2391407, + 50.725475501 + ], + [ + 7.2390116, + 50.726170701 + ], + [ + 7.2388843, + 50.726958801 + ], + [ + 7.2388166, + 50.727443101 + ], + [ + 7.2387897, + 50.727684301 + ], + [ + 7.2387323, + 50.728187401 + ], + [ + 7.2386855, + 50.728708501 + ], + [ + 7.2386355, + 50.729410501 + ], + [ + 7.2386059, + 50.730060401 + ], + [ + 7.2385901, + 50.730754501 + ], + [ + 7.2385874, + 50.731270601 + ], + [ + 7.2386216, + 50.732671101 + ], + [ + 7.2386853, + 50.735065901 + ], + [ + 7.2387658, + 50.738560201 + ], + [ + 7.2387671, + 50.739244101 + ], + [ + 7.2387338, + 50.739840801 + ], + [ + 7.2386617, + 50.740560401 + ], + [ + 7.238625, + 50.740775201 + ], + [ + 7.2385221, + 50.741347801 + ], + [ + 7.2383916, + 50.741888601 + ], + [ + 7.2382349, + 50.742443101 + ], + [ + 7.2380492, + 50.742977601 + ], + [ + 7.2378284, + 50.743553701 + ], + [ + 7.2375754, + 50.744117401 + ], + [ + 7.2373483, + 50.744577201 + ], + [ + 7.2370232, + 50.745170801 + ], + [ + 7.236675, + 50.745739801 + ], + [ + 7.2363692, + 50.746220101 + ], + [ + 7.2359642, + 50.746839501 + ], + [ + 7.235651, + 50.747325501 + ], + [ + 7.2353685, + 50.747757801 + ], + [ + 7.2332802, + 50.750977901 + ], + [ + 7.233016941, + 50.751386472 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-04-13_05-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1316", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.763253566195836,7.229419346335931,50.776458036855345,7.241253072798317", + "point": "50.763253566195836,7.229419346335931", + "startLcPosition": "196", + "impact": { + "lower": "Siegburg", + "upper": "Siebengebirge", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Siebengebirge - Siegburg", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.763253566195836, + "long": 7.229419346335931 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 05.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 9.5 km hinter AS Siebengebirge und 4.0 km vor Siegburg", + "", + "L\u00e4nge: 1.7 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.229419346, + 50.763253566 + ], + [ + 7.2295334, + 50.763573901 + ], + [ + 7.2296691, + 50.763901401 + ], + [ + 7.2298568, + 50.764310301 + ], + [ + 7.2300438, + 50.764673501 + ], + [ + 7.2302431, + 50.765029601 + ], + [ + 7.2304638, + 50.765384701 + ], + [ + 7.2306964, + 50.765738701 + ], + [ + 7.2309322, + 50.766065101 + ], + [ + 7.2312087, + 50.766434301 + ], + [ + 7.2315099, + 50.766795601 + ], + [ + 7.2318256, + 50.767148501 + ], + [ + 7.2321501, + 50.767486001 + ], + [ + 7.2325031, + 50.767831601 + ], + [ + 7.2348356, + 50.770100401 + ], + [ + 7.2367047, + 50.771908701 + ], + [ + 7.2378021, + 50.772970401 + ], + [ + 7.2395921, + 50.774707601 + ], + [ + 7.2402138, + 50.775286901 + ], + [ + 7.2405485, + 50.775645601 + ], + [ + 7.2409352, + 50.776102701 + ], + [ + 7.2412476, + 50.776449901 + ], + [ + 7.241253073, + 50.776458037 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-02-24_05-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1264", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.763253566195836,7.229419346335931,50.776458036855345,7.241253072798317", + "point": "50.763253566195836,7.229419346335931", + "startLcPosition": "196", + "impact": { + "lower": "Siegburg", + "upper": "Siebengebirge", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Siebengebirge - Siegburg", + "startTimestamp": "2026-02-24T05:00:00+01:00", + "coordinate": { + "lat": 50.763253566195836, + "long": 7.229419346335931 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 05:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 9.5 km hinter AS Siebengebirge und 4.0 km vor Siegburg", + "", + "L\u00e4nge: 1.7 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.229419346, + 50.763253566 + ], + [ + 7.2295334, + 50.763573901 + ], + [ + 7.2296691, + 50.763901401 + ], + [ + 7.2298568, + 50.764310301 + ], + [ + 7.2300438, + 50.764673501 + ], + [ + 7.2302431, + 50.765029601 + ], + [ + 7.2304638, + 50.765384701 + ], + [ + 7.2306964, + 50.765738701 + ], + [ + 7.2309322, + 50.766065101 + ], + [ + 7.2312087, + 50.766434301 + ], + [ + 7.2315099, + 50.766795601 + ], + [ + 7.2318256, + 50.767148501 + ], + [ + 7.2321501, + 50.767486001 + ], + [ + 7.2325031, + 50.767831601 + ], + [ + 7.2348356, + 50.770100401 + ], + [ + 7.2367047, + 50.771908701 + ], + [ + 7.2378021, + 50.772970401 + ], + [ + 7.2395921, + 50.774707601 + ], + [ + 7.2402138, + 50.775286901 + ], + [ + 7.2405485, + 50.775645601 + ], + [ + 7.2409352, + 50.776102701 + ], + [ + 7.2412476, + 50.776449901 + ], + [ + 7.241253073, + 50.776458037 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-bs.2025-10-06_22-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de20", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.703397223095074,7.254659186896291,50.76657995828444,7.231330127526751", + "point": "50.703397223095074,7.254659186896291", + "startLcPosition": "196", + "impact": { + "lower": "Bonn/Siegburg", + "upper": "Siebengebirge", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Siebengebirge - Bonn/Siegburg", + "startTimestamp": "2025-10-06T22:00:00+02:00", + "coordinate": { + "lat": 50.703397223095074, + "long": 7.254659186896291 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.10.25 um 22:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.35)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 2.4 km hinter AS Siebengebirge und 1.2 km vor AK Bonn/Siegburg", + "", + "L\u00e4nge: 7.5 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.254659187, + 50.703397223 + ], + [ + 7.2543428, + 50.703574001 + ], + [ + 7.253567, + 50.704020601 + ], + [ + 7.2528432, + 50.704451301 + ], + [ + 7.2522408, + 50.704830101 + ], + [ + 7.2515915, + 50.705253501 + ], + [ + 7.2509966, + 50.705654701 + ], + [ + 7.2505579, + 50.705968201 + ], + [ + 7.249837, + 50.706498801 + ], + [ + 7.2493693, + 50.706853501 + ], + [ + 7.2488874, + 50.707238601 + ], + [ + 7.2482752, + 50.707746001 + ], + [ + 7.2477657, + 50.708188601 + ], + [ + 7.2473748, + 50.708539401 + ], + [ + 7.2469623, + 50.708928001 + ], + [ + 7.2463671, + 50.709509301 + ], + [ + 7.2458735, + 50.710020801 + ], + [ + 7.2454381, + 50.710497001 + ], + [ + 7.2450026, + 50.710994401 + ], + [ + 7.2444776, + 50.711615301 + ], + [ + 7.2439772, + 50.712259001 + ], + [ + 7.2435728, + 50.712821601 + ], + [ + 7.2431901, + 50.713374801 + ], + [ + 7.2428208, + 50.713957801 + ], + [ + 7.2424632, + 50.714548401 + ], + [ + 7.2420837, + 50.715239201 + ], + [ + 7.2416711, + 50.716050101 + ], + [ + 7.241326, + 50.716819001 + ], + [ + 7.2410406, + 50.717534801 + ], + [ + 7.2407895, + 50.718237001 + ], + [ + 7.2405795, + 50.718913101 + ], + [ + 7.2405165, + 50.719135401 + ], + [ + 7.2403631, + 50.719697401 + ], + [ + 7.2402228, + 50.720277401 + ], + [ + 7.2396071, + 50.723185401 + ], + [ + 7.2391407, + 50.725475501 + ], + [ + 7.2390116, + 50.726170701 + ], + [ + 7.2388843, + 50.726958801 + ], + [ + 7.2388166, + 50.727443101 + ], + [ + 7.2387897, + 50.727684301 + ], + [ + 7.2387323, + 50.728187401 + ], + [ + 7.2386855, + 50.728708501 + ], + [ + 7.2386355, + 50.729410501 + ], + [ + 7.2386059, + 50.730060401 + ], + [ + 7.2385901, + 50.730754501 + ], + [ + 7.2385874, + 50.731270601 + ], + [ + 7.2386216, + 50.732671101 + ], + [ + 7.2386853, + 50.735065901 + ], + [ + 7.2387658, + 50.738560201 + ], + [ + 7.2387671, + 50.739244101 + ], + [ + 7.2387338, + 50.739840801 + ], + [ + 7.2386617, + 50.740560401 + ], + [ + 7.238625, + 50.740775201 + ], + [ + 7.2385221, + 50.741347801 + ], + [ + 7.2383916, + 50.741888601 + ], + [ + 7.2382349, + 50.742443101 + ], + [ + 7.2380492, + 50.742977601 + ], + [ + 7.2378284, + 50.743553701 + ], + [ + 7.2375754, + 50.744117401 + ], + [ + 7.2373483, + 50.744577201 + ], + [ + 7.2370232, + 50.745170801 + ], + [ + 7.236675, + 50.745739801 + ], + [ + 7.2363692, + 50.746220101 + ], + [ + 7.2359642, + 50.746839501 + ], + [ + 7.235651, + 50.747325501 + ], + [ + 7.2353685, + 50.747757801 + ], + [ + 7.2332802, + 50.750977901 + ], + [ + 7.2312562, + 50.754118901 + ], + [ + 7.2304365, + 50.755364001 + ], + [ + 7.2300948, + 50.755942101 + ], + [ + 7.2298408, + 50.756424101 + ], + [ + 7.2296015, + 50.756970401 + ], + [ + 7.229426, + 50.757438901 + ], + [ + 7.2292829, + 50.757872401 + ], + [ + 7.2291461, + 50.758385601 + ], + [ + 7.2290415, + 50.758904801 + ], + [ + 7.2289752, + 50.759373201 + ], + [ + 7.2289315, + 50.759819301 + ], + [ + 7.2289206, + 50.760295801 + ], + [ + 7.2289342, + 50.760828801 + ], + [ + 7.2289637, + 50.761254701 + ], + [ + 7.2290425, + 50.761806701 + ], + [ + 7.2291166, + 50.762194601 + ], + [ + 7.2292426, + 50.762696801 + ], + [ + 7.2293829, + 50.763151201 + ], + [ + 7.2295334, + 50.763573901 + ], + [ + 7.2296691, + 50.763901401 + ], + [ + 7.2298568, + 50.764310301 + ], + [ + 7.2300438, + 50.764673501 + ], + [ + 7.2302431, + 50.765029601 + ], + [ + 7.2304638, + 50.765384701 + ], + [ + 7.2306964, + 50.765738701 + ], + [ + 7.2309322, + 50.766065101 + ], + [ + 7.2312087, + 50.766434301 + ], + [ + 7.231330128, + 50.766579958 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-04-07_08-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1314", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.79065628131486,7.235878962792129,50.794599083454514,7.232473147173611", + "point": "50.79065628131486,7.235878962792129", + "startLcPosition": "197", + "impact": { + "lower": "Siegburg", + "upper": "Bonn/Siegburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bonn/Siegburg - Siegburg", + "coordinate": { + "lat": 50.79065628131486, + "long": 7.235878962792129 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 1.8 km hinter AK Bonn/Siegburg und 1.8 km vor Siegburg", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.235878963, + 50.790656281 + ], + [ + 7.2350754, + 50.791579401 + ], + [ + 7.232473147, + 50.794599083 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-04-13_05-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1320", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.781712986409566,7.242445916862778,50.7898685052822,7.236563037264546", + "point": "50.781712986409566,7.242445916862778", + "startLcPosition": "197", + "impact": { + "lower": "Siegburg", + "upper": "Bonn/Siegburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bonn/Siegburg - Siegburg", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.781712986409566, + "long": 7.242445916862778 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 05.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 0.7 km hinter AK Bonn/Siegburg und 2.4 km vor Siegburg", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.242445917, + 50.781712986 + ], + [ + 7.2423836, + 50.781970401 + ], + [ + 7.2422137, + 50.782479501 + ], + [ + 7.2421696, + 50.782600801 + ], + [ + 7.2421021, + 50.782760201 + ], + [ + 7.2419851, + 50.783013801 + ], + [ + 7.2419354, + 50.783119201 + ], + [ + 7.2418221, + 50.783347301 + ], + [ + 7.2417011, + 50.783573801 + ], + [ + 7.2415725, + 50.783798601 + ], + [ + 7.2413975, + 50.784082601 + ], + [ + 7.2412105, + 50.784363601 + ], + [ + 7.2409778, + 50.784656801 + ], + [ + 7.2401905, + 50.785648701 + ], + [ + 7.2398608, + 50.786069501 + ], + [ + 7.2391204, + 50.786922401 + ], + [ + 7.238778, + 50.787317001 + ], + [ + 7.236563037, + 50.789868505 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-02-24_05-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1268", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.781712986409566,7.242445916862778,50.7898685052822,7.236563037264546", + "point": "50.781712986409566,7.242445916862778", + "startLcPosition": "197", + "impact": { + "lower": "Siegburg", + "upper": "Bonn/Siegburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bonn/Siegburg - Siegburg", + "startTimestamp": "2026-02-24T05:00:00+01:00", + "coordinate": { + "lat": 50.781712986409566, + "long": 7.242445916862778 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 05:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 0.7 km hinter AK Bonn/Siegburg und 2.4 km vor Siegburg", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.242445917, + 50.781712986 + ], + [ + 7.2423836, + 50.781970401 + ], + [ + 7.2422137, + 50.782479501 + ], + [ + 7.2421696, + 50.782600801 + ], + [ + 7.2421021, + 50.782760201 + ], + [ + 7.2419851, + 50.783013801 + ], + [ + 7.2419354, + 50.783119201 + ], + [ + 7.2418221, + 50.783347301 + ], + [ + 7.2417011, + 50.783573801 + ], + [ + 7.2415725, + 50.783798601 + ], + [ + 7.2413975, + 50.784082601 + ], + [ + 7.2412105, + 50.784363601 + ], + [ + 7.2409778, + 50.784656801 + ], + [ + 7.2401905, + 50.785648701 + ], + [ + 7.2398608, + 50.786069501 + ], + [ + 7.2391204, + 50.786922401 + ], + [ + 7.238778, + 50.787317001 + ], + [ + 7.236563037, + 50.789868505 + ] + ] + } + }, + { + "identifier": "2025-052789--vi-bs.2026-04-11_09-00-00-000.devi-zus.2026-10-12_09-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.80738254723855,7.22059088236372,50.81004608645591,7.217946141802767", + "point": "50.80738254723855,7.22059088236372", + "startLcPosition": "197", + "impact": { + "lower": "Lohmar", + "upper": "Bonn/Siegburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bonn/Siegburg - Lohmar", + "startTimestamp": "2026-04-11T09:00:00+02:00", + "coordinate": { + "lat": 50.80738254723855, + "long": 7.22059088236372 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 09:00 Uhr", + "Ende: 17.10.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.03.27)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 4.0 km hinter AK Bonn/Siegburg und 1.7 km vor AS Lohmar", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "DEGES Umbau Rastst\u00e4tte Siegburg-Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.220590882, + 50.807382547 + ], + [ + 7.2185043, + 50.809483801 + ], + [ + 7.217946142, + 50.810046086 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-bs.2026-04-13_05-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de134", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.690897299142755,7.269892423848226,50.6800313640248,7.28108671404598", + "point": "50.690897299142755,7.269892423848226", + "startLcPosition": "197", + "impact": { + "lower": "Logebachtal", + "upper": "Bonn/Siegburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Bonn/Siegburg - Logebachtal", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.690897299142755, + "long": 7.269892423848226 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 28.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.35)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 10.5 km hinter AK Bonn/Siegburg und 1.2 km vor Logebachtal", + "", + "L\u00e4nge: 1.44 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9.75 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.269892424, + 50.690897299 + ], + [ + 7.2706714, + 50.690115901 + ], + [ + 7.2722125, + 50.688561401 + ], + [ + 7.2741694, + 50.686611401 + ], + [ + 7.279601, + 50.681192501 + ], + [ + 7.2800823, + 50.680773601 + ], + [ + 7.2805986, + 50.680371801 + ], + [ + 7.281086714, + 50.680031364 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-bs.2026-04-13_05-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de132", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.756812809208284,7.229427569752094,50.745101246973164,7.2368184703129685", + "point": "50.756812809208284,7.229427569752094", + "startLcPosition": "197", + "impact": { + "lower": "Siebengebirge", + "upper": "Bonn/Siegburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Bonn/Siegburg - Siebengebirge", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.756812809208284, + "long": 7.229427569752094 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 28.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.35)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.3 km hinter AK Bonn/Siegburg und 7.4 km vor AS Siebengebirge", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 9.75 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.22942757, + 50.756812809 + ], + [ + 7.2296262, + 50.756369801 + ], + [ + 7.2298783, + 50.755879401 + ], + [ + 7.230213, + 50.755317901 + ], + [ + 7.2305655, + 50.754735701 + ], + [ + 7.2310236, + 50.754065501 + ], + [ + 7.2330591, + 50.750917201 + ], + [ + 7.2350593, + 50.747841701 + ], + [ + 7.2353361, + 50.747415301 + ], + [ + 7.2357458, + 50.746783701 + ], + [ + 7.2361493, + 50.746167401 + ], + [ + 7.2364578, + 50.745699001 + ], + [ + 7.2368036, + 50.745128101 + ], + [ + 7.23681847, + 50.745101247 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-04-13_05-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1318", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.776458036855345,7.241253072798317,50.781712986409566,7.242445916862778", + "point": "50.776458036855345,7.241253072798317", + "startLcPosition": "197", + "impact": { + "lower": "Siegburg", + "upper": "Bonn/Siegburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bonn/Siegburg - Siegburg", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.776458036855345, + "long": 7.241253072798317 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 05.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 0.1 km hinter AK Bonn/Siegburg und 3.4 km vor Siegburg", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.241253073, + 50.776458037 + ], + [ + 7.2414118, + 50.776694001 + ], + [ + 7.2416495, + 50.777085601 + ], + [ + 7.2419799, + 50.777664601 + ], + [ + 7.2420594, + 50.777835401 + ], + [ + 7.2422232, + 50.778269101 + ], + [ + 7.2423312, + 50.778579201 + ], + [ + 7.2424192, + 50.778878601 + ], + [ + 7.2425023, + 50.779223601 + ], + [ + 7.2425527, + 50.779583101 + ], + [ + 7.2425834, + 50.779874401 + ], + [ + 7.2425947, + 50.780250101 + ], + [ + 7.242584, + 50.780808701 + ], + [ + 7.2425594, + 50.781107701 + ], + [ + 7.2425159, + 50.781423901 + ], + [ + 7.242445917, + 50.781712986 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-02-24_05-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1266", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.776458036855345,7.241253072798317,50.781712986409566,7.242445916862778", + "point": "50.776458036855345,7.241253072798317", + "startLcPosition": "197", + "impact": { + "lower": "Siegburg", + "upper": "Bonn/Siegburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | Bonn/Siegburg - Siegburg", + "startTimestamp": "2026-02-24T05:00:00+01:00", + "coordinate": { + "lat": 50.776458036855345, + "long": 7.241253072798317 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 05:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 0.1 km hinter AK Bonn/Siegburg und 3.4 km vor Siegburg", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.241253073, + 50.776458037 + ], + [ + 7.2414118, + 50.776694001 + ], + [ + 7.2416495, + 50.777085601 + ], + [ + 7.2419799, + 50.777664601 + ], + [ + 7.2420594, + 50.777835401 + ], + [ + 7.2422232, + 50.778269101 + ], + [ + 7.2423312, + 50.778579201 + ], + [ + 7.2424192, + 50.778878601 + ], + [ + 7.2425023, + 50.779223601 + ], + [ + 7.2425527, + 50.779583101 + ], + [ + 7.2425834, + 50.779874401 + ], + [ + 7.2425947, + 50.780250101 + ], + [ + 7.242584, + 50.780808701 + ], + [ + 7.2425594, + 50.781107701 + ], + [ + 7.2425159, + 50.781423901 + ], + [ + 7.242445917, + 50.781712986 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-03-06_03-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1304", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.78036547648633,7.242360469946341,50.77053710267959,7.235026715868011", + "point": "50.78036547648633,7.242360469946341", + "startLcPosition": "198", + "impact": { + "lower": "Siebengebirge", + "upper": "Siegburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Siegburg - Siebengebirge", + "startTimestamp": "2026-03-06T03:00:00+01:00", + "coordinate": { + "lat": 50.78036547648633, + "long": 7.242360469946341 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.03.26 um 03:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 3.6 km hinter Siegburg und 10.4 km vor AS Siebengebirge", + "", + "L\u00e4nge: 1.23 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.24236047, + 50.780365476 + ], + [ + 7.2423614, + 50.780247801 + ], + [ + 7.2423436, + 50.779878301 + ], + [ + 7.2423196, + 50.779610001 + ], + [ + 7.2422534, + 50.779265101 + ], + [ + 7.2421807, + 50.778901901 + ], + [ + 7.2420976, + 50.778605301 + ], + [ + 7.2420203, + 50.778385001 + ], + [ + 7.2418265, + 50.777883201 + ], + [ + 7.2417424, + 50.777713401 + ], + [ + 7.2414379, + 50.777143001 + ], + [ + 7.2411737, + 50.776742201 + ], + [ + 7.2408718, + 50.776327101 + ], + [ + 7.2406447, + 50.776104101 + ], + [ + 7.2403162, + 50.775723501 + ], + [ + 7.2398808, + 50.775287501 + ], + [ + 7.2391505, + 50.774554901 + ], + [ + 7.2376177, + 50.773063501 + ], + [ + 7.2362939, + 50.771769601 + ], + [ + 7.235026716, + 50.770537103 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-03-06_03-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1302", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.788988586654284,7.2369517722655985,50.78036547648633,7.242360469946341", + "point": "50.788988586654284,7.2369517722655985", + "startLcPosition": "198", + "impact": { + "lower": "Bonn/Siegburg", + "upper": "Siegburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Siegburg - Bonn/Siegburg", + "startTimestamp": "2026-03-06T03:00:00+01:00", + "coordinate": { + "lat": 50.788988586654284, + "long": 7.2369517722655985 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.03.26 um 03:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.5 km hinter Siegburg und 0.5 km vor AK Bonn/Siegburg", + "", + "L\u00e4nge: 1.05 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.236951772, + 50.788988587 + ], + [ + 7.2385452, + 50.787135401 + ], + [ + 7.2388437, + 50.786788201 + ], + [ + 7.2399507, + 50.785500601 + ], + [ + 7.2405038, + 50.784824601 + ], + [ + 7.2409103, + 50.784291901 + ], + [ + 7.2412942, + 50.783736801 + ], + [ + 7.2416518, + 50.783123301 + ], + [ + 7.2417335, + 50.782963501 + ], + [ + 7.2418501, + 50.782713901 + ], + [ + 7.2419222, + 50.782536401 + ], + [ + 7.2419623, + 50.782435001 + ], + [ + 7.2421437, + 50.781944301 + ], + [ + 7.2422894, + 50.781399501 + ], + [ + 7.2423317, + 50.781105501 + ], + [ + 7.242357, + 50.780804501 + ], + [ + 7.24236047, + 50.780365476 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-03-06_03-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1300", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.79686458509865,7.230140134686339,50.788988586654284,7.2369517722655985", + "point": "50.79686458509865,7.230140134686339", + "startLcPosition": "198", + "impact": { + "lower": "Bonn/Siegburg", + "upper": "Siegburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | Siegburg - Bonn/Siegburg", + "startTimestamp": "2026-03-06T03:00:00+01:00", + "coordinate": { + "lat": 50.79686458509865, + "long": 7.230140134686339 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.03.26 um 03:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 1.5 km hinter Siegburg und 1.6 km vor AK Bonn/Siegburg", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.230140135, + 50.796864585 + ], + [ + 7.2320762, + 50.794634301 + ], + [ + 7.2347953, + 50.791485001 + ], + [ + 7.2365606, + 50.789443501 + ], + [ + 7.236951772, + 50.788988587 + ] + ] + } + }, + { + "identifier": "2023-000209--vi-bs.2026-04-10_08-00-00-000.devi-zus.2016-04-12_15-00-00-000.f_001.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.90357325481349,7.134114599818078,50.91684767832639,7.098610069198989", + "point": "50.90357325481349,7.134114599818078", + "startLcPosition": "203", + "impact": { + "lower": "K\u00f6ln-Heumar", + "upper": "K\u00f6nigsforst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | K\u00f6nigsforst - K\u00f6ln-Heumar", + "coordinate": { + "lat": 50.90357325481349, + "long": 7.134114599818078 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 18:00 Uhr", + "13.04.26 von 08:00 bis 18:00 Uhr", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 1.5 km hinter K\u00f6nigsforst und 2.9 km vor AD K\u00f6ln-Heumar", + "", + "L\u00e4nge: 2.95 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "BW Gieselbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.1341146, + 50.903573255 + ], + [ + 7.1337273, + 50.903675001 + ], + [ + 7.1320567, + 50.904121601 + ], + [ + 7.1304075, + 50.904583701 + ], + [ + 7.127076, + 50.905469701 + ], + [ + 7.1251902, + 50.905969101 + ], + [ + 7.1227945, + 50.906605501 + ], + [ + 7.1216511, + 50.906899801 + ], + [ + 7.1187445, + 50.907676901 + ], + [ + 7.11819, + 50.907835201 + ], + [ + 7.1177168, + 50.907984301 + ], + [ + 7.1172644, + 50.908139501 + ], + [ + 7.116708, + 50.908348601 + ], + [ + 7.11627, + 50.908528201 + ], + [ + 7.1157737, + 50.908749201 + ], + [ + 7.1154196, + 50.908918901 + ], + [ + 7.1150404, + 50.909112801 + ], + [ + 7.1146614, + 50.909320201 + ], + [ + 7.1143101, + 50.909547001 + ], + [ + 7.1139356, + 50.909786701 + ], + [ + 7.1131379, + 50.910326801 + ], + [ + 7.1115554, + 50.911379201 + ], + [ + 7.1097819, + 50.912599601 + ], + [ + 7.1092614, + 50.912948901 + ], + [ + 7.1078183, + 50.913868601 + ], + [ + 7.1071947, + 50.914233601 + ], + [ + 7.1068947, + 50.914388001 + ], + [ + 7.106599, + 50.914534401 + ], + [ + 7.1060799, + 50.914782701 + ], + [ + 7.1056246, + 50.914968101 + ], + [ + 7.1047455, + 50.915292901 + ], + [ + 7.1040264, + 50.915526401 + ], + [ + 7.1032795, + 50.915728501 + ], + [ + 7.1026356, + 50.915894101 + ], + [ + 7.1010564, + 50.916267001 + ], + [ + 7.1003821, + 50.916427801 + ], + [ + 7.0988506, + 50.916792001 + ], + [ + 7.098610069, + 50.916847678 + ] + ] + } + }, + { + "identifier": "2023-000264--vi-bs.2024-11-22_15-00-00-000.devi-zus.2021-07-31_09-00-00-000.f_001.de124", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.92255729817879,7.063142869603722,50.92394425609559,7.060555885235831", + "point": "50.92255729817879,7.063142869603722", + "startLcPosition": "204", + "impact": { + "lower": "K\u00f6ln-Heumar", + "upper": "K\u00f6nigsforst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | K\u00f6nigsforst - K\u00f6ln-Heumar", + "startTimestamp": "2024-11-22T15:00:00+01:00", + "coordinate": { + "lat": 50.92255729817879, + "long": 7.063142869603722 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.11.24 um 15:00 Uhr", + "Ende: 31.01.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.27)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen 3.2 km hinter AS K\u00f6nigsforst und AD K\u00f6ln-Heumar", + "", + "L\u00e4nge: 0.24 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "(DEGES) Umbau AD Heumar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.06314287, + 50.922557298 + ], + [ + 7.0630933, + 50.922577001 + ], + [ + 7.0626906, + 50.922750401 + ], + [ + 7.062325, + 50.922920201 + ], + [ + 7.0619823, + 50.923090801 + ], + [ + 7.0616139, + 50.923287601 + ], + [ + 7.061257, + 50.923492801 + ], + [ + 7.0609122, + 50.923706001 + ], + [ + 7.06058, + 50.923927001 + ], + [ + 7.060555885, + 50.923944256 + ] + ] + } + }, + { + "identifier": "2026-013798--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-03-23_09-00-00-000_012.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.93227008957093,7.0516667238111586,50.98605474893314,7.0145928593105715", + "point": "50.93227008957093,7.0516667238111586", + "startLcPosition": "205", + "impact": { + "lower": "Leverkusen-Zentrum", + "upper": "K\u00f6ln-Heumar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> Oberhausen", + "title": "A3 | K\u00f6ln-Heumar - Leverkusen-Zentrum", + "coordinate": { + "lat": 50.93227008957093, + "long": 7.0516667238111586 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A3: Frankfurt -> Oberhausen, zwischen 1.1 km hinter AD K\u00f6ln-Heumar und 4.3 km vor AS Leverkusen-Zentrum", + "", + "L\u00e4nge: 6.65 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A3 Gr\u00fcnpflege (AM Lev.)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.051666724, + 50.93227009 + ], + [ + 7.0514143, + 50.932501401 + ], + [ + 7.0513379, + 50.932568401 + ], + [ + 7.0472805, + 50.936499801 + ], + [ + 7.0457853, + 50.937902301 + ], + [ + 7.0447595, + 50.938962801 + ], + [ + 7.0437855, + 50.940042901 + ], + [ + 7.0430164, + 50.940940501 + ], + [ + 7.0422808, + 50.941847001 + ], + [ + 7.0420039, + 50.942208701 + ], + [ + 7.0415652, + 50.942781701 + ], + [ + 7.0408009, + 50.943780001 + ], + [ + 7.0403172, + 50.944458401 + ], + [ + 7.039913, + 50.945046901 + ], + [ + 7.0392933, + 50.946262501 + ], + [ + 7.0390794, + 50.946658001 + ], + [ + 7.0389157, + 50.947051101 + ], + [ + 7.0385825, + 50.947851501 + ], + [ + 7.0373318, + 50.951246401 + ], + [ + 7.0369798, + 50.952235501 + ], + [ + 7.0367475, + 50.952847701 + ], + [ + 7.0352253, + 50.956763101 + ], + [ + 7.0348233, + 50.957798101 + ], + [ + 7.0344123, + 50.958891301 + ], + [ + 7.033887, + 50.960245601 + ], + [ + 7.0336426, + 50.960867901 + ], + [ + 7.03334, + 50.961625601 + ], + [ + 7.0331128, + 50.962238901 + ], + [ + 7.0329214, + 50.962863801 + ], + [ + 7.0326829, + 50.963484801 + ], + [ + 7.0323006, + 50.964480301 + ], + [ + 7.030911, + 50.968064701 + ], + [ + 7.0300993, + 50.970181001 + ], + [ + 7.029575, + 50.971517601 + ], + [ + 7.0288828, + 50.973298601 + ], + [ + 7.0286658, + 50.973815401 + ], + [ + 7.028581, + 50.973984301 + ], + [ + 7.0284836, + 50.974162301 + ], + [ + 7.0282656, + 50.974525801 + ], + [ + 7.028052, + 50.974849401 + ], + [ + 7.0277691, + 50.975238101 + ], + [ + 7.0274687, + 50.975608701 + ], + [ + 7.027115, + 50.976009801 + ], + [ + 7.0267724, + 50.976359701 + ], + [ + 7.0263969, + 50.976710901 + ], + [ + 7.0259467, + 50.977099201 + ], + [ + 7.0254497, + 50.977487101 + ], + [ + 7.0247073, + 50.978009101 + ], + [ + 7.0242318, + 50.978310401 + ], + [ + 7.021672, + 50.979876401 + ], + [ + 7.0196036, + 50.981171101 + ], + [ + 7.018946, + 50.981616601 + ], + [ + 7.0185174, + 50.981934001 + ], + [ + 7.0182396, + 50.982157901 + ], + [ + 7.018005, + 50.982347101 + ], + [ + 7.0177654, + 50.982558401 + ], + [ + 7.0170768, + 50.983190501 + ], + [ + 7.016861, + 50.983393201 + ], + [ + 7.0164564, + 50.983805801 + ], + [ + 7.016305, + 50.983960201 + ], + [ + 7.0158764, + 50.984436201 + ], + [ + 7.0152439, + 50.985190801 + ], + [ + 7.0147744, + 50.985781501 + ], + [ + 7.014592859, + 50.986054749 + ] + ] + } + }, + { + "identifier": "2023-000209--vi-bs.2026-04-10_08-00-00-000.devi-zus.2016-04-12_15-00-00-000.f_001.de33", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.91669933858271,7.098538191446799,50.903438720801745,7.13402540933369", + "point": "50.91669933858271,7.098538191446799", + "startLcPosition": "205", + "impact": { + "lower": "K\u00f6nigsforst", + "upper": "K\u00f6ln-Heumar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | K\u00f6ln-Heumar - K\u00f6nigsforst", + "coordinate": { + "lat": 50.91669933858271, + "long": 7.098538191446799 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 18:00 Uhr", + "13.04.26 von 08:00 bis 18:00 Uhr", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.9 km hinter AD K\u00f6ln-Heumar und 1.5 km vor K\u00f6nigsforst", + "", + "L\u00e4nge: 2.95 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "BW Gieselbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.098538191, + 50.916699339 + ], + [ + 7.0991378, + 50.916556901 + ], + [ + 7.1002776, + 50.916289501 + ], + [ + 7.1017744, + 50.915933101 + ], + [ + 7.1023723, + 50.915789501 + ], + [ + 7.1031403, + 50.915603301 + ], + [ + 7.1035542, + 50.915491301 + ], + [ + 7.104142, + 50.915317201 + ], + [ + 7.10476, + 50.915113701 + ], + [ + 7.1054742, + 50.914843401 + ], + [ + 7.1059216, + 50.914649401 + ], + [ + 7.1064654, + 50.914402801 + ], + [ + 7.1069559, + 50.914156001 + ], + [ + 7.1073077, + 50.913965201 + ], + [ + 7.1076423, + 50.913766301 + ], + [ + 7.1085771, + 50.913139901 + ], + [ + 7.1088913, + 50.912920901 + ], + [ + 7.1093619, + 50.912612301 + ], + [ + 7.1108895, + 50.911598701 + ], + [ + 7.1129551, + 50.910228801 + ], + [ + 7.1137674, + 50.909694001 + ], + [ + 7.1141735, + 50.909432201 + ], + [ + 7.1145183, + 50.909218301 + ], + [ + 7.1148753, + 50.909018501 + ], + [ + 7.1152632, + 50.908815901 + ], + [ + 7.1156368, + 50.908633901 + ], + [ + 7.1161467, + 50.908404501 + ], + [ + 7.1166063, + 50.908215101 + ], + [ + 7.1171695, + 50.908003601 + ], + [ + 7.1176158, + 50.907851101 + ], + [ + 7.1180974, + 50.907700501 + ], + [ + 7.1186356, + 50.907548401 + ], + [ + 7.1215562, + 50.906774301 + ], + [ + 7.1227037, + 50.906457201 + ], + [ + 7.1237212, + 50.906186401 + ], + [ + 7.126982, + 50.905324801 + ], + [ + 7.1310643, + 50.904231501 + ], + [ + 7.134025409, + 50.903438721 + ] + ] + } + }, + { + "identifier": "2023-000209--vi-bs.2026-04-10_08-00-00-000.devi-zus.2016-04-12_15-00-00-000.f_001.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.91669933858271,7.098538191446799,50.903438720801745,7.13402540933369", + "point": "50.91669933858271,7.098538191446799", + "startLcPosition": "205", + "impact": { + "lower": "K\u00f6nigsforst", + "upper": "K\u00f6ln-Heumar", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | K\u00f6ln-Heumar - K\u00f6nigsforst", + "coordinate": { + "lat": 50.91669933858271, + "long": 7.098538191446799 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 2.9 km hinter AD K\u00f6ln-Heumar und 1.5 km vor K\u00f6nigsforst", + "", + "L\u00e4nge: 2.95 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "BW Gieselbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.098538191, + 50.916699339 + ], + [ + 7.0991378, + 50.916556901 + ], + [ + 7.1002776, + 50.916289501 + ], + [ + 7.1017744, + 50.915933101 + ], + [ + 7.1023723, + 50.915789501 + ], + [ + 7.1031403, + 50.915603301 + ], + [ + 7.1035542, + 50.915491301 + ], + [ + 7.104142, + 50.915317201 + ], + [ + 7.10476, + 50.915113701 + ], + [ + 7.1054742, + 50.914843401 + ], + [ + 7.1059216, + 50.914649401 + ], + [ + 7.1064654, + 50.914402801 + ], + [ + 7.1069559, + 50.914156001 + ], + [ + 7.1073077, + 50.913965201 + ], + [ + 7.1076423, + 50.913766301 + ], + [ + 7.1085771, + 50.913139901 + ], + [ + 7.1088913, + 50.912920901 + ], + [ + 7.1093619, + 50.912612301 + ], + [ + 7.1108895, + 50.911598701 + ], + [ + 7.1129551, + 50.910228801 + ], + [ + 7.1137674, + 50.909694001 + ], + [ + 7.1141735, + 50.909432201 + ], + [ + 7.1145183, + 50.909218301 + ], + [ + 7.1148753, + 50.909018501 + ], + [ + 7.1152632, + 50.908815901 + ], + [ + 7.1156368, + 50.908633901 + ], + [ + 7.1161467, + 50.908404501 + ], + [ + 7.1166063, + 50.908215101 + ], + [ + 7.1171695, + 50.908003601 + ], + [ + 7.1176158, + 50.907851101 + ], + [ + 7.1180974, + 50.907700501 + ], + [ + 7.1186356, + 50.907548401 + ], + [ + 7.1215562, + 50.906774301 + ], + [ + 7.1227037, + 50.906457201 + ], + [ + 7.1237212, + 50.906186401 + ], + [ + 7.126982, + 50.905324801 + ], + [ + 7.1310643, + 50.904231501 + ], + [ + 7.134025409, + 50.903438721 + ] + ] + } + }, + { + "identifier": "2023-000264--vi-bs.2024-11-22_15-00-00-000.devi-zus.2021-07-31_09-00-00-000.f_001.de126", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.92412917557778,7.060297451423721,50.926700936111345,7.057462108043445", + "point": "50.92412917557778,7.060297451423721", + "startLcPosition": "205", + "impact": { + "lower": "K\u00f6ln-Ost", + "upper": "K\u00f6ln-Heumar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "A3 | K\u00f6ln-Heumar - K\u00f6ln-Ost", + "startTimestamp": "2024-11-22T15:00:00+01:00", + "coordinate": { + "lat": 50.92412917557778, + "long": 7.060297451423721 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.11.24 um 15:00 Uhr", + "Ende: 31.01.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.27)", + "", + "A3: Frankfurt -> K\u00f6ln, zwischen AD K\u00f6ln-Heumar und 3.2 km vor AK K\u00f6ln-Ost", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 7 m", + "", + "(DEGES) Umbau AD Heumar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.060297451, + 50.924129176 + ], + [ + 7.0602608, + 50.924155401 + ], + [ + 7.0599549, + 50.924391001 + ], + [ + 7.0596629, + 50.924633401 + ], + [ + 7.0594151, + 50.924845301 + ], + [ + 7.0590618, + 50.925176001 + ], + [ + 7.0587438, + 50.925474001 + ], + [ + 7.0581388, + 50.926055701 + ], + [ + 7.0579616, + 50.926224401 + ], + [ + 7.0575185, + 50.926643701 + ], + [ + 7.057462108, + 50.926700936 + ] + ] + } + }, + { + "identifier": "2024-036576--vi-bs.2025-11-08_00-00-00-000.devi-zus.2024-11-09_00-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95855170928188,7.0345399752525255,50.967361781978994,7.0311835256587605", + "point": "50.95855170928188,7.0345399752525255", + "startLcPosition": "206", + "impact": { + "lower": "K\u00f6ln-M\u00fclheim", + "upper": "K\u00f6ln-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> Oberhausen", + "title": "A3 | K\u00f6ln-Ost - K\u00f6ln-M\u00fclheim", + "startTimestamp": "2025-11-08T00:00:00+01:00", + "coordinate": { + "lat": 50.95855170928188, + "long": 7.0345399752525255 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.11.25 um 00:00 Uhr", + "Ende: 12.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.04.26)", + "", + "A3: Frankfurt -> Oberhausen, zwischen 0.7 km hinter AK K\u00f6ln-Ost und 2.1 km vor AS K\u00f6ln-M\u00fclheim", + "", + "L\u00e4nge: 1.01 km | Maximale Durchfahrtsbreite: 12.25 m", + "", + "L\u00e4rmschutzw\u00e4nde Dellbr\u00fcck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.034539975, + 50.958551709 + ], + [ + 7.0344123, + 50.958891301 + ], + [ + 7.033887, + 50.960245601 + ], + [ + 7.0336426, + 50.960867901 + ], + [ + 7.03334, + 50.961625601 + ], + [ + 7.0331128, + 50.962238901 + ], + [ + 7.0329214, + 50.962863801 + ], + [ + 7.0326829, + 50.963484801 + ], + [ + 7.0323006, + 50.964480301 + ], + [ + 7.031183526, + 50.967361782 + ] + ] + } + }, + { + "identifier": "2023-000264--vi-bs.2024-11-22_15-00-00-000.devi-zus.2021-07-31_09-00-00-000.f_001.de122", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.92768301949929,7.0562226596113575,50.921840399335004,7.064772705449461", + "point": "50.92768301949929,7.0562226596113575", + "startLcPosition": "206", + "impact": { + "lower": "K\u00f6nigsforst", + "upper": "K\u00f6ln-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Frankfurt", + "title": "A3 | K\u00f6ln-Ost - K\u00f6nigsforst", + "startTimestamp": "2024-11-22T15:00:00+01:00", + "coordinate": { + "lat": 50.92768301949929, + "long": 7.0562226596113575 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.11.24 um 15:00 Uhr", + "Ende: 31.01.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.27)", + "", + "A3: K\u00f6ln -> Frankfurt, zwischen 3.1 km hinter AK K\u00f6ln-Ost und 3.1 km vor AS K\u00f6nigsforst", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "(DEGES) Umbau AD Heumar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.05622266, + 50.927683019 + ], + [ + 7.0569367, + 50.927005101 + ], + [ + 7.0576705, + 50.926291001 + ], + [ + 7.0578588, + 50.926124001 + ], + [ + 7.0582679, + 50.925725501 + ], + [ + 7.0586844, + 50.925304401 + ], + [ + 7.0590597, + 50.924936701 + ], + [ + 7.0594417, + 50.924586301 + ], + [ + 7.0596594, + 50.924399701 + ], + [ + 7.0598613, + 50.924245101 + ], + [ + 7.0600355, + 50.924112501 + ], + [ + 7.0602429, + 50.923965701 + ], + [ + 7.060578, + 50.923751901 + ], + [ + 7.0609654, + 50.923508101 + ], + [ + 7.0613671, + 50.923273401 + ], + [ + 7.0617827, + 50.923048201 + ], + [ + 7.0621513, + 50.922862001 + ], + [ + 7.0624898, + 50.922701501 + ], + [ + 7.0628729, + 50.922531101 + ], + [ + 7.0632789, + 50.922362601 + ], + [ + 7.0636177, + 50.922231101 + ], + [ + 7.0641608, + 50.922036301 + ], + [ + 7.0646444, + 50.921878501 + ], + [ + 7.064772705, + 50.921840399 + ] + ] + } + }, + { + "identifier": "2026-005843--vi-bs.2026-04-22_09-00-00-000.devi-zus.2026-02-25_09-00-00-000_019.de8", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.968697990884145,7.030668111983614,50.97441875542003,7.028329798248248", + "point": "50.968697990884145,7.030668111983614", + "startLcPosition": "207", + "impact": { + "lower": "K\u00f6ln-M\u00fclheim", + "upper": "K\u00f6ln-Dellbr\u00fcck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | K\u00f6ln-Dellbr\u00fcck - K\u00f6ln-M\u00fclheim", + "coordinate": { + "lat": 50.968697990884145, + "long": 7.030668111983614 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 09:00 bis 15:00 Uhr", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 0.2 km hinter AS K\u00f6ln-Dellbr\u00fcck und 1.3 km vor AS K\u00f6ln-M\u00fclheim", + "", + "L\u00e4nge: 0.66 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A3 BW Pr\u00fcfung (LSW) K.-Dellbr\u00fcck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.030668112, + 50.968697991 + ], + [ + 7.0300993, + 50.970181001 + ], + [ + 7.029575, + 50.971517601 + ], + [ + 7.0288828, + 50.973298601 + ], + [ + 7.0286658, + 50.973815401 + ], + [ + 7.028581, + 50.973984301 + ], + [ + 7.0284836, + 50.974162301 + ], + [ + 7.028329798, + 50.974418755 + ] + ] + } + }, + { + "identifier": "2026-005843--vi-bs.2026-04-15_09-00-00-000.devi-zus.2026-02-25_09-00-00-000_019.de6", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.968697990884145,7.030668111983614,50.97441875542003,7.028329798248248", + "point": "50.968697990884145,7.030668111983614", + "startLcPosition": "207", + "impact": { + "lower": "K\u00f6ln-M\u00fclheim", + "upper": "K\u00f6ln-Dellbr\u00fcck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | K\u00f6ln-Dellbr\u00fcck - K\u00f6ln-M\u00fclheim", + "coordinate": { + "lat": 50.968697990884145, + "long": 7.030668111983614 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 0.2 km hinter AS K\u00f6ln-Dellbr\u00fcck und 1.3 km vor AS K\u00f6ln-M\u00fclheim", + "", + "L\u00e4nge: 0.66 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A3 BW Pr\u00fcfung (LSW) K.-Dellbr\u00fcck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.030668112, + 50.968697991 + ], + [ + 7.0300993, + 50.970181001 + ], + [ + 7.029575, + 50.971517601 + ], + [ + 7.0288828, + 50.973298601 + ], + [ + 7.0286658, + 50.973815401 + ], + [ + 7.028581, + 50.973984301 + ], + [ + 7.0284836, + 50.974162301 + ], + [ + 7.028329798, + 50.974418755 + ] + ] + } + }, + { + "identifier": "2026-005843--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-02-25_09-00-00-000_019.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.968697990884145,7.030668111983614,50.97441875542003,7.028329798248248", + "point": "50.968697990884145,7.030668111983614", + "startLcPosition": "207", + "impact": { + "lower": "K\u00f6ln-M\u00fclheim", + "upper": "K\u00f6ln-Dellbr\u00fcck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | K\u00f6ln-Dellbr\u00fcck - K\u00f6ln-M\u00fclheim", + "coordinate": { + "lat": 50.968697990884145, + "long": 7.030668111983614 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 0.2 km hinter AS K\u00f6ln-Dellbr\u00fcck und 1.3 km vor AS K\u00f6ln-M\u00fclheim", + "", + "L\u00e4nge: 0.66 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A3 BW Pr\u00fcfung (LSW) K.-Dellbr\u00fcck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.030668112, + 50.968697991 + ], + [ + 7.0300993, + 50.970181001 + ], + [ + 7.029575, + 50.971517601 + ], + [ + 7.0288828, + 50.973298601 + ], + [ + 7.0286658, + 50.973815401 + ], + [ + 7.028581, + 50.973984301 + ], + [ + 7.0284836, + 50.974162301 + ], + [ + 7.028329798, + 50.974418755 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2026-04-06_07-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de632", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.01133656883353,7.014461097193609,51.027433263278226,7.010935183186582", + "point": "51.01133656883353,7.014461097193609", + "startLcPosition": "208", + "impact": { + "lower": "Leverkusen", + "upper": "K\u00f6ln-M\u00fclheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | K\u00f6ln-M\u00fclheim - Leverkusen", + "coordinate": { + "lat": 51.01133656883353, + "long": 7.014461097193609 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 05:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 3.2 km hinter AS K\u00f6ln-M\u00fclheim und 1.6 km vor AK Leverkusen", + "", + "L\u00e4nge: 1.81 km | Maximale Durchfahrtsbreite: 15 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.014461097, + 51.011336569 + ], + [ + 7.0144296, + 51.011567201 + ], + [ + 7.0144165, + 51.011662801 + ], + [ + 7.0141625, + 51.012928701 + ], + [ + 7.0140185, + 51.013601001 + ], + [ + 7.0138782, + 51.014134401 + ], + [ + 7.0133633, + 51.016477401 + ], + [ + 7.0133047, + 51.016730801 + ], + [ + 7.0132236, + 51.017081001 + ], + [ + 7.0131048, + 51.017620101 + ], + [ + 7.0126993, + 51.019460701 + ], + [ + 7.0122882, + 51.021294301 + ], + [ + 7.0121333, + 51.022037501 + ], + [ + 7.0118083, + 51.023497001 + ], + [ + 7.0116172, + 51.024354901 + ], + [ + 7.0111736, + 51.026346701 + ], + [ + 7.0109775, + 51.027245301 + ], + [ + 7.010935183, + 51.027433263 + ] + ] + } + }, + { + "identifier": "2024-036576--vi-bs.2025-11-08_00-00-00-000.devi-zus.2024-11-09_00-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.967313603556086,7.030869405539748,50.958507885928825,7.034254244928501", + "point": "50.967313603556086,7.030869405539748", + "startLcPosition": "208", + "impact": { + "lower": "K\u00f6ln-Ost", + "upper": "K\u00f6ln-M\u00fclheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Frankfurt", + "title": "A3 | K\u00f6ln-M\u00fclheim - K\u00f6ln-Ost", + "startTimestamp": "2025-11-08T00:00:00+01:00", + "coordinate": { + "lat": 50.967313603556086, + "long": 7.030869405539748 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.11.25 um 00:00 Uhr", + "Ende: 12.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.04.26)", + "", + "A3: Oberhausen -> Frankfurt, zwischen 2.1 km hinter AS K\u00f6ln-M\u00fclheim und 0.7 km vor AK K\u00f6ln-Ost", + "", + "L\u00e4nge: 1.01 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 12.25 m", + "", + "L\u00e4rmschutzw\u00e4nde Dellbr\u00fcck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.030869406, + 50.967313604 + ], + [ + 7.031018, + 50.966924001 + ], + [ + 7.0317209, + 50.965101601 + ], + [ + 7.0321244, + 50.964030101 + ], + [ + 7.0323638, + 50.963420701 + ], + [ + 7.0325945, + 50.962833401 + ], + [ + 7.032969, + 50.961841401 + ], + [ + 7.0332755, + 50.961029301 + ], + [ + 7.0333507, + 50.960830001 + ], + [ + 7.0336646, + 50.960006701 + ], + [ + 7.034254245, + 50.958507886 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2026-04-06_07-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de634", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.06719692071456,6.987604851292251,51.05318967863012,6.994244622547313", + "point": "51.06719692071456,6.987604851292251", + "startLcPosition": "212", + "impact": { + "lower": "Leverkusen", + "upper": "Reusrather Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Reusrather Heide - Leverkusen", + "coordinate": { + "lat": 51.06719692071456, + "long": 6.987604851292251 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 05:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 2.0 km hinter Reusrather Heide und 1.6 km vor AK Leverkusen", + "", + "L\u00e4nge: 1.65 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.987604851, + 51.067196921 + ], + [ + 6.987601, + 51.067076801 + ], + [ + 6.987625, + 51.066262601 + ], + [ + 6.9876747, + 51.065735301 + ], + [ + 6.9877498, + 51.065215301 + ], + [ + 6.9878019, + 51.064892301 + ], + [ + 6.9878581, + 51.064612701 + ], + [ + 6.9880332, + 51.063898801 + ], + [ + 6.9882457, + 51.063203501 + ], + [ + 6.9884987, + 51.062453001 + ], + [ + 6.9887528, + 51.061703001 + ], + [ + 6.9893943, + 51.059841801 + ], + [ + 6.9895, + 51.059537201 + ], + [ + 6.9897291, + 51.058969901 + ], + [ + 6.9900077, + 51.058424701 + ], + [ + 6.9901886, + 51.058049401 + ], + [ + 6.9904735, + 51.057537101 + ], + [ + 6.9908847, + 51.056924701 + ], + [ + 6.9909674, + 51.056801501 + ], + [ + 6.9915035, + 51.056048001 + ], + [ + 6.9921182, + 51.055287401 + ], + [ + 6.9924271, + 51.054946401 + ], + [ + 6.9933165, + 51.054028201 + ], + [ + 6.993745, + 51.053624901 + ], + [ + 6.994244623, + 51.053189679 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-04-20_09-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de323", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.10855837542168,6.987981749311618,51.11486637479067,6.986369184052943", + "point": "51.10855837542168,6.987981749311618", + "startLcPosition": "213", + "impact": { + "lower": "Solingen", + "upper": "Bergische Landstra\u00dfe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | Bergische Landstra\u00dfe - Solingen", + "startTimestamp": "2026-04-20T09:00:00+02:00", + "coordinate": { + "lat": 51.10855837542168, + "long": 6.987981749311618 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 09:00 Uhr", + "Ende: 08.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 0.4 km hinter Bergische Landstra\u00dfe und 0.8 km vor AS Solingen", + "", + "L\u00e4nge: 0.71 km | Maximale Durchfahrtsbreite: 8.65 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.987981749, + 51.108558375 + ], + [ + 6.9878955, + 51.110157601 + ], + [ + 6.9878391, + 51.110559301 + ], + [ + 6.9877604, + 51.111068701 + ], + [ + 6.9876061, + 51.111743001 + ], + [ + 6.9875658, + 51.111919001 + ], + [ + 6.9873468, + 51.112648201 + ], + [ + 6.9870227, + 51.113484101 + ], + [ + 6.9867129, + 51.114233801 + ], + [ + 6.986369184, + 51.114866375 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-01-13_05-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de255", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.10855837542168,6.987981749311618,51.11486637479067,6.986369184052943", + "point": "51.10855837542168,6.987981749311618", + "startLcPosition": "213", + "impact": { + "lower": "Solingen", + "upper": "Bergische Landstra\u00dfe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | Bergische Landstra\u00dfe - Solingen", + "startTimestamp": "2026-01-13T05:00:00+01:00", + "coordinate": { + "lat": 51.10855837542168, + "long": 6.987981749311618 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.01.26 um 05:00 Uhr", + "Ende: 20.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 0.4 km hinter Bergische Landstra\u00dfe und 0.8 km vor AS Solingen", + "", + "L\u00e4nge: 0.71 km | Maximale Durchfahrtsbreite: 8.65 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.987981749, + 51.108558375 + ], + [ + 6.9878955, + 51.110157601 + ], + [ + 6.9878391, + 51.110559301 + ], + [ + 6.9877604, + 51.111068701 + ], + [ + 6.9876061, + 51.111743001 + ], + [ + 6.9875658, + 51.111919001 + ], + [ + 6.9873468, + 51.112648201 + ], + [ + 6.9870227, + 51.113484101 + ], + [ + 6.9867129, + 51.114233801 + ], + [ + 6.986369184, + 51.114866375 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-04-20_09-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de327", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.11486637479067,6.986369184052943,51.133050582662236,6.973596003256155", + "point": "51.11486637479067,6.986369184052943", + "startLcPosition": "214", + "impact": { + "lower": "Ohligser Heide", + "upper": "Langenfeld", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | Langenfeld - Ohligser Heide", + "startTimestamp": "2026-04-20T09:00:00+02:00", + "coordinate": { + "lat": 51.11486637479067, + "long": 6.986369184052943 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 09:00 Uhr", + "Ende: 08.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 0.1 km hinter AD Langenfeld und 2.9 km vor Ohligser Heide", + "", + "L\u00e4nge: 2.23 km | Maximale Durchfahrtsbreite: 8.65 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.986369184, + 51.114866375 + ], + [ + 6.9862023, + 51.115173501 + ], + [ + 6.9859814, + 51.115536001 + ], + [ + 6.9858283, + 51.115779301 + ], + [ + 6.9855739, + 51.116152501 + ], + [ + 6.9851985, + 51.116661701 + ], + [ + 6.9850179, + 51.116892701 + ], + [ + 6.9847686, + 51.117201701 + ], + [ + 6.9843975, + 51.117631701 + ], + [ + 6.9840264, + 51.118038501 + ], + [ + 6.9836526, + 51.118423501 + ], + [ + 6.983401, + 51.118675201 + ], + [ + 6.9814946, + 51.120609301 + ], + [ + 6.9813145, + 51.120808601 + ], + [ + 6.9808866, + 51.121246301 + ], + [ + 6.9803515, + 51.121775101 + ], + [ + 6.9797098, + 51.122425701 + ], + [ + 6.979154, + 51.122985001 + ], + [ + 6.9782619, + 51.123932901 + ], + [ + 6.9773536, + 51.125004501 + ], + [ + 6.9770772, + 51.125372601 + ], + [ + 6.9769473, + 51.125546901 + ], + [ + 6.9766982, + 51.125901401 + ], + [ + 6.9758528, + 51.127295801 + ], + [ + 6.9754324, + 51.128154801 + ], + [ + 6.975263, + 51.128591201 + ], + [ + 6.9751087, + 51.128985401 + ], + [ + 6.9737358, + 51.132673501 + ], + [ + 6.973596003, + 51.133050583 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-01-13_05-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de259", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.11486637479067,6.986369184052943,51.133050582662236,6.973596003256155", + "point": "51.11486637479067,6.986369184052943", + "startLcPosition": "214", + "impact": { + "lower": "Ohligser Heide", + "upper": "Langenfeld", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | Langenfeld - Ohligser Heide", + "startTimestamp": "2026-01-13T05:00:00+01:00", + "coordinate": { + "lat": 51.11486637479067, + "long": 6.986369184052943 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.01.26 um 05:00 Uhr", + "Ende: 20.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 0.1 km hinter AD Langenfeld und 2.9 km vor Ohligser Heide", + "", + "L\u00e4nge: 2.23 km | Maximale Durchfahrtsbreite: 8.65 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.986369184, + 51.114866375 + ], + [ + 6.9862023, + 51.115173501 + ], + [ + 6.9859814, + 51.115536001 + ], + [ + 6.9858283, + 51.115779301 + ], + [ + 6.9855739, + 51.116152501 + ], + [ + 6.9851985, + 51.116661701 + ], + [ + 6.9850179, + 51.116892701 + ], + [ + 6.9847686, + 51.117201701 + ], + [ + 6.9843975, + 51.117631701 + ], + [ + 6.9840264, + 51.118038501 + ], + [ + 6.9836526, + 51.118423501 + ], + [ + 6.983401, + 51.118675201 + ], + [ + 6.9814946, + 51.120609301 + ], + [ + 6.9813145, + 51.120808601 + ], + [ + 6.9808866, + 51.121246301 + ], + [ + 6.9803515, + 51.121775101 + ], + [ + 6.9797098, + 51.122425701 + ], + [ + 6.979154, + 51.122985001 + ], + [ + 6.9782619, + 51.123932901 + ], + [ + 6.9773536, + 51.125004501 + ], + [ + 6.9770772, + 51.125372601 + ], + [ + 6.9769473, + 51.125546901 + ], + [ + 6.9766982, + 51.125901401 + ], + [ + 6.9758528, + 51.127295801 + ], + [ + 6.9754324, + 51.128154801 + ], + [ + 6.975263, + 51.128591201 + ], + [ + 6.9751087, + 51.128985401 + ], + [ + 6.9737358, + 51.132673501 + ], + [ + 6.973596003, + 51.133050583 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-04-20_09-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de325", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.13301487505787,6.97335261506241,51.1148123274728,6.986125632602039", + "point": "51.13301487505787,6.97335261506241", + "startLcPosition": "216", + "impact": { + "lower": "Langenfeld", + "upper": "Ohligser Heide", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Ohligser Heide - Langenfeld", + "startTimestamp": "2026-04-20T09:00:00+02:00", + "coordinate": { + "lat": 51.13301487505787, + "long": 6.97335261506241 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 09:00 Uhr", + "Ende: 08.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 2.9 km hinter Ohligser Heide und 0.1 km vor AD Langenfeld", + "", + "L\u00e4nge: 2.23 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.973352615, + 51.133014875 + ], + [ + 6.9734925, + 51.132637301 + ], + [ + 6.9748711, + 51.128957701 + ], + [ + 6.9750295, + 51.128552501 + ], + [ + 6.9751962, + 51.128117201 + ], + [ + 6.9755071, + 51.127486701 + ], + [ + 6.9756298, + 51.127238001 + ], + [ + 6.9764859, + 51.125852301 + ], + [ + 6.9767328, + 51.125477001 + ], + [ + 6.9768274, + 51.125342601 + ], + [ + 6.9768642, + 51.125290201 + ], + [ + 6.9771259, + 51.124941201 + ], + [ + 6.978047, + 51.123898201 + ], + [ + 6.9786526, + 51.123223601 + ], + [ + 6.9794821, + 51.122381201 + ], + [ + 6.9801469, + 51.121691701 + ], + [ + 6.9806646, + 51.121158501 + ], + [ + 6.9831723, + 51.118601701 + ], + [ + 6.9837957, + 51.117955301 + ], + [ + 6.9848602, + 51.116708101 + ], + [ + 6.9850922, + 51.116400301 + ], + [ + 6.9853334, + 51.116083001 + ], + [ + 6.9856539, + 51.115621101 + ], + [ + 6.986125633, + 51.114812327 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-01-13_05-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de257", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.13301487505787,6.97335261506241,51.1148123274728,6.986125632602039", + "point": "51.13301487505787,6.97335261506241", + "startLcPosition": "216", + "impact": { + "lower": "Langenfeld", + "upper": "Ohligser Heide", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Ohligser Heide - Langenfeld", + "startTimestamp": "2026-01-13T05:00:00+01:00", + "coordinate": { + "lat": 51.13301487505787, + "long": 6.97335261506241 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.01.26 um 05:00 Uhr", + "Ende: 20.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 2.9 km hinter Ohligser Heide und 0.1 km vor AD Langenfeld", + "", + "L\u00e4nge: 2.23 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.973352615, + 51.133014875 + ], + [ + 6.9734925, + 51.132637301 + ], + [ + 6.9748711, + 51.128957701 + ], + [ + 6.9750295, + 51.128552501 + ], + [ + 6.9751962, + 51.128117201 + ], + [ + 6.9755071, + 51.127486701 + ], + [ + 6.9756298, + 51.127238001 + ], + [ + 6.9764859, + 51.125852301 + ], + [ + 6.9767328, + 51.125477001 + ], + [ + 6.9768274, + 51.125342601 + ], + [ + 6.9768642, + 51.125290201 + ], + [ + 6.9771259, + 51.124941201 + ], + [ + 6.978047, + 51.123898201 + ], + [ + 6.9786526, + 51.123223601 + ], + [ + 6.9794821, + 51.122381201 + ], + [ + 6.9801469, + 51.121691701 + ], + [ + 6.9806646, + 51.121158501 + ], + [ + 6.9831723, + 51.118601701 + ], + [ + 6.9837957, + 51.117955301 + ], + [ + 6.9848602, + 51.116708101 + ], + [ + 6.9850922, + 51.116400301 + ], + [ + 6.9853334, + 51.116083001 + ], + [ + 6.9856539, + 51.115621101 + ], + [ + 6.986125633, + 51.114812327 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-04-20_09-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de329", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.140019108715876,6.970757219364688,51.13301487505788,6.97335261506241", + "point": "51.140019108715876,6.970757219364688", + "startLcPosition": "216", + "impact": { + "lower": "Solingen", + "upper": "Ohligser Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Ohligser Heide - Solingen", + "startTimestamp": "2026-04-20T09:00:00+02:00", + "coordinate": { + "lat": 51.140019108715876, + "long": 6.970757219364688 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 09:00 Uhr", + "Ende: 08.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 2.1 km hinter Ohligser Heide und 1.4 km vor AS Solingen", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 8.65 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.970757219, + 51.140019109 + ], + [ + 6.973352615, + 51.133014875 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-01-13_05-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de261", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.140019108715876,6.970757219364688,51.13301487505788,6.97335261506241", + "point": "51.140019108715876,6.970757219364688", + "startLcPosition": "216", + "impact": { + "lower": "Solingen", + "upper": "Ohligser Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Ohligser Heide - Solingen", + "startTimestamp": "2026-01-13T05:00:00+01:00", + "coordinate": { + "lat": 51.140019108715876, + "long": 6.970757219364688 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.01.26 um 05:00 Uhr", + "Ende: 20.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 2.1 km hinter Ohligser Heide und 1.4 km vor AS Solingen", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 8.65 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.970757219, + 51.140019109 + ], + [ + 6.973352615, + 51.133014875 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-fbm.2026-04-20_09-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de321", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.13257694211754,6.973515115944281,51.11834794325903,6.983417031055381", + "point": "51.13257694211754,6.973515115944281", + "startLcPosition": "216", + "impact": { + "lower": "Langenfeld", + "upper": "Ohligser Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Ohligser Heide - Langenfeld", + "coordinate": { + "lat": 51.13257694211754, + "long": 6.973515115944281 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 09:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 3.0 km hinter Ohligser Heide und 0.6 km vor AD Langenfeld", + "", + "L\u00e4nge: 1.74 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.973515116, + 51.132576942 + ], + [ + 6.9748711, + 51.128957701 + ], + [ + 6.9750295, + 51.128552501 + ], + [ + 6.9751962, + 51.128117201 + ], + [ + 6.9755071, + 51.127486701 + ], + [ + 6.9756298, + 51.127238001 + ], + [ + 6.9764859, + 51.125852301 + ], + [ + 6.9767328, + 51.125477001 + ], + [ + 6.9768274, + 51.125342601 + ], + [ + 6.9768642, + 51.125290201 + ], + [ + 6.9771259, + 51.124941201 + ], + [ + 6.978047, + 51.123898201 + ], + [ + 6.9786526, + 51.123223601 + ], + [ + 6.9794821, + 51.122381201 + ], + [ + 6.9801469, + 51.121691701 + ], + [ + 6.9806646, + 51.121158501 + ], + [ + 6.9831723, + 51.118601701 + ], + [ + 6.983417031, + 51.118347943 + ] + ] + } + }, + { + "identifier": "2024-036115--vi-bs.2025-05-16_22-00-00-000.devi-zus.2024-08-24_05-00-00-000.f_002.de59", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.190166543353165,6.941989230327276,51.196034093789976,6.938729292554671", + "point": "51.190166543353165,6.941989230327276", + "startLcPosition": "216", + "impact": { + "lower": "Stindertal / Stinderhof", + "upper": "Ohligser Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | Ohligser Heide - Stindertal / Stinderhof", + "startTimestamp": "2025-05-16T22:00:00+02:00", + "coordinate": { + "lat": 51.190166543353165, + "long": 6.941989230327276 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.05.25 um 22:00 Uhr", + "Ende: 31.12.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 3.8 km hinter Ohligser Heide und 5.0 km vor Stindertal / Stinderhof", + "", + "L\u00e4nge: 0.69 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.75 m", + "", + "BW In den Birken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.94198923, + 51.190166543 + ], + [ + 6.9418244, + 51.190462901 + ], + [ + 6.9416529, + 51.190771101 + ], + [ + 6.941252, + 51.191491901 + ], + [ + 6.9396546, + 51.194363301 + ], + [ + 6.9393444, + 51.194921101 + ], + [ + 6.9389211, + 51.195689101 + ], + [ + 6.938729293, + 51.196034094 + ] + ] + } + }, + { + "identifier": "2024-036115--vi-bs.2025-05-16_22-00-00-000.devi-zus.2024-08-24_05-00-00-000.f_002.de61", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.196034093789976,6.938729292554671,51.199780374176996,6.936626957557349", + "point": "51.196034093789976,6.938729292554671", + "startLcPosition": "217", + "impact": { + "lower": "Stindertal / Stinderhof", + "upper": "Hilden", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | Hilden - Stindertal / Stinderhof", + "startTimestamp": "2025-05-16T22:00:00+02:00", + "coordinate": { + "lat": 51.196034093789976, + "long": 6.938729292554671 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.05.25 um 22:00 Uhr", + "Ende: 31.12.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 0.2 km hinter AK Hilden und 4.6 km vor Stindertal / Stinderhof", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 9.1 m", + "", + "BW In den Birken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.938729293, + 51.196034094 + ], + [ + 6.9387006, + 51.196085701 + ], + [ + 6.9379718, + 51.197398201 + ], + [ + 6.9367003, + 51.199641301 + ], + [ + 6.936626958, + 51.199780374 + ] + ] + } + }, + { + "identifier": "2024-036115--vi-bs.2025-05-16_22-00-00-000.devi-zus.2024-08-24_05-00-00-000.f_002.de63", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.199730071129366,6.936392430451958,51.19598079129343,6.938486986328307", + "point": "51.199730071129366,6.936392430451958", + "startLcPosition": "218", + "impact": { + "lower": "Hilden", + "upper": "Stindertal / Stinderhof", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Stindertal / Stinderhof - Hilden", + "startTimestamp": "2025-05-16T22:00:00+02:00", + "coordinate": { + "lat": 51.199730071129366, + "long": 6.936392430451958 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.05.25 um 22:00 Uhr", + "Ende: 31.12.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 4.6 km hinter Stindertal / Stinderhof und 0.2 km vor AK Hilden", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 9.1 m", + "", + "BW In den Birken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.93639243, + 51.199730071 + ], + [ + 6.938486986, + 51.195980791 + ] + ] + } + }, + { + "identifier": "2025-016050--vi-bs.2026-04-08_05-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de41", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.24617363691959,6.911805177618426,51.28446584294137,6.900649550849016", + "point": "51.24617363691959,6.911805177618426", + "startLcPosition": "218", + "impact": { + "lower": "Ratingen-Ost", + "upper": "Stindertal / Stinderhof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | Stindertal / Stinderhof - Ratingen-Ost", + "coordinate": { + "lat": 51.24617363691959, + "long": 6.911805177618426 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 05:00 bis 20:00 Uhr", + "14.04.26 von 05:00 bis 20:00 Uhr", + "15.04.26 von 05:00 bis 20:00 Uhr", + "27.04.26 von 05:00 bis 20:00 Uhr", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 28.04.26 und dem 30.04.26 von 05:00 bis 20:00 Uhr.", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 1.0 km hinter Stindertal / Stinderhof und 1.6 km vor AK Ratingen-Ost", + "", + "L\u00e4nge: 4.5 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.911805178, + 51.246173637 + ], + [ + 6.9123006, + 51.248290801 + ], + [ + 6.9138088, + 51.254517901 + ], + [ + 6.9142574, + 51.256370001 + ], + [ + 6.9144789, + 51.257352001 + ], + [ + 6.9147097, + 51.258358001 + ], + [ + 6.9149049, + 51.259251701 + ], + [ + 6.9150204, + 51.259844701 + ], + [ + 6.9151516, + 51.260705901 + ], + [ + 6.9152052, + 51.261273201 + ], + [ + 6.9151865, + 51.263052801 + ], + [ + 6.9150428, + 51.263989101 + ], + [ + 6.9149225, + 51.264519001 + ], + [ + 6.9147919, + 51.265038901 + ], + [ + 6.914713, + 51.265311701 + ], + [ + 6.9145529, + 51.265785701 + ], + [ + 6.914285, + 51.266546701 + ], + [ + 6.9140862, + 51.266998301 + ], + [ + 6.9137885, + 51.267604201 + ], + [ + 6.9135251, + 51.268082201 + ], + [ + 6.9132203, + 51.268596901 + ], + [ + 6.9128821, + 51.269109101 + ], + [ + 6.9124161, + 51.269743201 + ], + [ + 6.9115914, + 51.270724201 + ], + [ + 6.9090193, + 51.273771701 + ], + [ + 6.9081087, + 51.274850501 + ], + [ + 6.9066819, + 51.276541001 + ], + [ + 6.9028975, + 51.280929601 + ], + [ + 6.902527, + 51.281383801 + ], + [ + 6.9021411, + 51.281894701 + ], + [ + 6.9017923, + 51.282396501 + ], + [ + 6.9014728, + 51.282897601 + ], + [ + 6.9011418, + 51.283469801 + ], + [ + 6.900886, + 51.283960001 + ], + [ + 6.900714, + 51.284319701 + ], + [ + 6.900649551, + 51.284465843 + ] + ] + } + }, + { + "identifier": "2024-036115--vi-bs.2025-05-16_22-00-00-000.devi-zus.2024-08-24_05-00-00-000.f_002.de65", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.20720346173399,6.9316197657862455,51.199730071129366,6.936392430451958", + "point": "51.20720346173399,6.9316197657862455", + "startLcPosition": "218", + "impact": { + "lower": "Hilden", + "upper": "Stindertal / Stinderhof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Stindertal / Stinderhof - Hilden", + "startTimestamp": "2025-05-16T22:00:00+02:00", + "coordinate": { + "lat": 51.20720346173399, + "long": 6.9316197657862455 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.05.25 um 22:00 Uhr", + "Ende: 31.12.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 3.7 km hinter Stindertal / Stinderhof und 0.6 km vor AK Hilden", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 9.1 m", + "", + "BW In den Birken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.931619766, + 51.207203462 + ], + [ + 6.9320191, + 51.206720501 + ], + [ + 6.9323878, + 51.206249601 + ], + [ + 6.9331538, + 51.205202601 + ], + [ + 6.9336763, + 51.204465501 + ], + [ + 6.9339757, + 51.203979801 + ], + [ + 6.9342994, + 51.203472801 + ], + [ + 6.9345503, + 51.203039401 + ], + [ + 6.9346717, + 51.202829701 + ], + [ + 6.9360486, + 51.200351901 + ], + [ + 6.9361845, + 51.200107001 + ], + [ + 6.9363742, + 51.199762701 + ], + [ + 6.93639243, + 51.199730071 + ] + ] + } + }, + { + "identifier": "2026-012946--vi-bs.2026-03-16_09-00-00-000_026.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.298667399899436,6.896368513746085,51.40912543103045,6.801031867665499", + "point": "51.298667399899436,6.896368513746085", + "startLcPosition": "220", + "impact": { + "lower": "Duisburg-Wedau", + "upper": "Ratingen-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | Ratingen-Ost - Duisburg-Wedau", + "coordinate": { + "lat": 51.298667399899436, + "long": 6.896368513746085 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 16.03.26 und dem 16.04.26 von 09:00 bis 15:00 Uhr.", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 0.1 km hinter AK Ratingen-Ost und AS Duisburg-Wedau", + "", + "L\u00e4nge: 14.81 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 von Ratingen-Ost (AK) nach Duisburg-Wedau (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.896368514, + 51.2986674 + ], + [ + 6.8963341, + 51.298982701 + ], + [ + 6.8963023, + 51.299522801 + ], + [ + 6.8962882, + 51.299821001 + ], + [ + 6.8962849, + 51.300192701 + ], + [ + 6.8963078, + 51.300676701 + ], + [ + 6.8963268, + 51.300979901 + ], + [ + 6.8963684, + 51.301341101 + ], + [ + 6.8964264, + 51.301765101 + ], + [ + 6.896485, + 51.302104801 + ], + [ + 6.8965913, + 51.302562101 + ], + [ + 6.8966931, + 51.302996601 + ], + [ + 6.8987074, + 51.309645801 + ], + [ + 6.8988919, + 51.310360401 + ], + [ + 6.8989887, + 51.310864101 + ], + [ + 6.899062, + 51.311297001 + ], + [ + 6.8991303, + 51.311847101 + ], + [ + 6.8991716, + 51.312411101 + ], + [ + 6.8991842, + 51.312952901 + ], + [ + 6.8991744, + 51.313405001 + ], + [ + 6.8991458, + 51.313859301 + ], + [ + 6.8990985, + 51.314313101 + ], + [ + 6.8990326, + 51.314766101 + ], + [ + 6.898948, + 51.315217701 + ], + [ + 6.8988754, + 51.315542601 + ], + [ + 6.8987857, + 51.315894501 + ], + [ + 6.8986236, + 51.316439401 + ], + [ + 6.8984667, + 51.316893401 + ], + [ + 6.8982504, + 51.317441501 + ], + [ + 6.8981302, + 51.317724601 + ], + [ + 6.8979627, + 51.318118901 + ], + [ + 6.8978704, + 51.318336201 + ], + [ + 6.8974228, + 51.319137601 + ], + [ + 6.8971737, + 51.319541901 + ], + [ + 6.8966084, + 51.320387501 + ], + [ + 6.8959056, + 51.321294001 + ], + [ + 6.8952182, + 51.322039501 + ], + [ + 6.8944224, + 51.322847401 + ], + [ + 6.8936802, + 51.323508601 + ], + [ + 6.8929548, + 51.324108501 + ], + [ + 6.8880734, + 51.327879701 + ], + [ + 6.8863409, + 51.329198501 + ], + [ + 6.8837296, + 51.331222101 + ], + [ + 6.882524, + 51.332156301 + ], + [ + 6.8821305, + 51.332459401 + ], + [ + 6.8677861, + 51.343559201 + ], + [ + 6.8672683, + 51.343983601 + ], + [ + 6.8667019, + 51.344421601 + ], + [ + 6.8652909, + 51.345447301 + ], + [ + 6.8644245, + 51.346044901 + ], + [ + 6.8624566, + 51.347226901 + ], + [ + 6.8617151, + 51.347615501 + ], + [ + 6.860951, + 51.348011201 + ], + [ + 6.8603234, + 51.348309201 + ], + [ + 6.8595135, + 51.348639101 + ], + [ + 6.8580852, + 51.349188501 + ], + [ + 6.8524815, + 51.351282501 + ], + [ + 6.8494341, + 51.352424701 + ], + [ + 6.8474965, + 51.353129201 + ], + [ + 6.8414443, + 51.355355101 + ], + [ + 6.8401255, + 51.355844501 + ], + [ + 6.8391416, + 51.356246001 + ], + [ + 6.8379853, + 51.356773601 + ], + [ + 6.8369194, + 51.357318801 + ], + [ + 6.8359524, + 51.357844001 + ], + [ + 6.8349578, + 51.358457201 + ], + [ + 6.8339684, + 51.359128901 + ], + [ + 6.8326436, + 51.360157201 + ], + [ + 6.8313608, + 51.361312901 + ], + [ + 6.8305411, + 51.362157201 + ], + [ + 6.8298609, + 51.362978601 + ], + [ + 6.8293306, + 51.363690601 + ], + [ + 6.8287517, + 51.364551901 + ], + [ + 6.8276727, + 51.366251401 + ], + [ + 6.8274068, + 51.366626901 + ], + [ + 6.8268203, + 51.367535101 + ], + [ + 6.8266133, + 51.367895601 + ], + [ + 6.8258145, + 51.369150701 + ], + [ + 6.8246662, + 51.370947401 + ], + [ + 6.8236497, + 51.372616701 + ], + [ + 6.8232069, + 51.373542501 + ], + [ + 6.8228679, + 51.374405401 + ], + [ + 6.8225428, + 51.375499801 + ], + [ + 6.8185443, + 51.391071001 + ], + [ + 6.8183242, + 51.391794901 + ], + [ + 6.8180963, + 51.392381901 + ], + [ + 6.8176873, + 51.393301501 + ], + [ + 6.817275, + 51.394065601 + ], + [ + 6.8168955, + 51.394670401 + ], + [ + 6.8164373, + 51.395318201 + ], + [ + 6.8160143, + 51.395871401 + ], + [ + 6.8149685, + 51.397013501 + ], + [ + 6.8142872, + 51.397654801 + ], + [ + 6.8135167, + 51.398318601 + ], + [ + 6.8127246, + 51.398929201 + ], + [ + 6.8119851, + 51.399474101 + ], + [ + 6.8116806, + 51.399698101 + ], + [ + 6.8075584, + 51.402735201 + ], + [ + 6.8062803, + 51.403667501 + ], + [ + 6.805357, + 51.404373201 + ], + [ + 6.8046827, + 51.404926301 + ], + [ + 6.8043361, + 51.405221101 + ], + [ + 6.803698, + 51.405824301 + ], + [ + 6.8032558, + 51.406255701 + ], + [ + 6.8028697, + 51.406664201 + ], + [ + 6.8022498, + 51.407381001 + ], + [ + 6.8017084, + 51.408094601 + ], + [ + 6.8011705, + 51.408881701 + ], + [ + 6.801031868, + 51.409125431 + ] + ] + } + }, + { + "identifier": "2026-017813--vi-bs.2026-04-13_08-15-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.334344800832106,6.879694635735239,51.33783854661337,6.875180136722372", + "point": "51.334344800832106,6.879694635735239", + "startLcPosition": "221", + "impact": { + "lower": "Breitscheid", + "upper": "H\u00f6sel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | H\u00f6sel - Breitscheid", + "coordinate": { + "lat": 51.334344800832106, + "long": 6.879694635735239 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:15 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 1.1 km hinter H\u00f6sel und 1.8 km vor AK Breitscheid", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 von H\u00f6sel (Raststaette) nach Breitscheid (AK) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.879694636, + 51.334344801 + ], + [ + 6.875180137, + 51.337838547 + ] + ] + } + }, + { + "identifier": "2026-017734--vi-bs.2026-04-13_08-00-00-000_024.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.334344800832106,6.879694635735239,51.33783854661337,6.875180136722372", + "point": "51.334344800832106,6.879694635735239", + "startLcPosition": "221", + "impact": { + "lower": "Breitscheid", + "upper": "H\u00f6sel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | H\u00f6sel - Breitscheid", + "coordinate": { + "lat": 51.334344800832106, + "long": 6.879694635735239 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 1.1 km hinter H\u00f6sel und 1.8 km vor AK Breitscheid", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 von H\u00f6sel (Raststaette) nach Breitscheid (AK) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.879694636, + 51.334344801 + ], + [ + 6.875180137, + 51.337838547 + ] + ] + } + }, + { + "identifier": "2026-017732--vi-bs.2026-04-14_08-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.36474261258387,6.8283357789875065,51.35251620972025,6.848525953451695", + "point": "51.36474261258387,6.8283357789875065", + "startLcPosition": "223", + "impact": { + "lower": "Breitscheid", + "upper": "Entenfang", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Entenfang - Breitscheid", + "coordinate": { + "lat": 51.36474261258387, + "long": 6.8283357789875065 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 0.2 km hinter Entenfang und 0.7 km vor AK Breitscheid", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 von Entenfang (Rastplatz) nach Breitscheid (AK) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.828335779, + 51.364742613 + ], + [ + 6.8289837, + 51.363739001 + ], + [ + 6.829614, + 51.362899501 + ], + [ + 6.8303047, + 51.362063301 + ], + [ + 6.8311352, + 51.361210101 + ], + [ + 6.8324051, + 51.360055601 + ], + [ + 6.8337625, + 51.359017401 + ], + [ + 6.8347598, + 51.358350201 + ], + [ + 6.8357817, + 51.357712801 + ], + [ + 6.8367357, + 51.357191401 + ], + [ + 6.837802, + 51.356650001 + ], + [ + 6.8389566, + 51.356107401 + ], + [ + 6.8399747, + 51.355698401 + ], + [ + 6.8416729, + 51.355045901 + ], + [ + 6.8467297, + 51.353159601 + ], + [ + 6.848525953, + 51.35251621 + ] + ] + } + }, + { + "identifier": "2023-001968--vi-bs.2025-03-25_00-00-00-000.devi-zus.2022-12-03_00-00-00-000.f_001.de150", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.42438338948723,6.800071310375326,51.4601048571432,6.809384661621119", + "point": "51.42438338948723,6.800071310375326", + "startLcPosition": "225", + "impact": { + "lower": "Oberhausen-Lirich", + "upper": "Duisburg-Wedau", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Oberhausen", + "title": "A3 | Duisburg-Wedau - Oberhausen-Lirich", + "startTimestamp": "2025-03-25T00:00:00+01:00", + "coordinate": { + "lat": 51.42438338948723, + "long": 6.800071310375326 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.03.25 um 00:00 Uhr", + "Ende: 06.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A3: K\u00f6ln -> Oberhausen, zwischen 1.8 km hinter AS Duisburg-Wedau und 1.9 km vor AS Oberhausen-Lirich", + "", + "L\u00e4nge: 4.66 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A3 - Umbau AK Kaiserberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.80007131, + 51.424383389 + ], + [ + 6.8003718, + 51.424632101 + ], + [ + 6.8016267, + 51.425668501 + ], + [ + 6.8034579, + 51.427142201 + ], + [ + 6.8052833, + 51.428622901 + ], + [ + 6.8060057, + 51.429227001 + ], + [ + 6.806604, + 51.429791801 + ], + [ + 6.8071795, + 51.430452401 + ], + [ + 6.8075131, + 51.430907901 + ], + [ + 6.8079458, + 51.431628101 + ], + [ + 6.8081261, + 51.432393401 + ], + [ + 6.8082012, + 51.432863601 + ], + [ + 6.8083211, + 51.433453301 + ], + [ + 6.8083663, + 51.433761001 + ], + [ + 6.8083915, + 51.434285401 + ], + [ + 6.808371, + 51.434999701 + ], + [ + 6.8083354, + 51.435281201 + ], + [ + 6.8082292, + 51.435811201 + ], + [ + 6.8080356, + 51.436461001 + ], + [ + 6.8078337, + 51.436991701 + ], + [ + 6.8075219, + 51.437605101 + ], + [ + 6.8071979, + 51.438104701 + ], + [ + 6.8068119, + 51.438611801 + ], + [ + 6.8064818, + 51.438980301 + ], + [ + 6.8060866, + 51.439386701 + ], + [ + 6.8057034, + 51.439721201 + ], + [ + 6.8052123, + 51.440106601 + ], + [ + 6.8047503, + 51.440439801 + ], + [ + 6.8042729, + 51.440772701 + ], + [ + 6.8032396, + 51.441427101 + ], + [ + 6.8024259, + 51.441949201 + ], + [ + 6.8010907, + 51.442905401 + ], + [ + 6.8005072, + 51.443455601 + ], + [ + 6.8001702, + 51.443830301 + ], + [ + 6.7999821, + 51.444040501 + ], + [ + 6.799686, + 51.444432601 + ], + [ + 6.7994176, + 51.444873701 + ], + [ + 6.7991609, + 51.445441601 + ], + [ + 6.7989272, + 51.446131001 + ], + [ + 6.7988089, + 51.446649801 + ], + [ + 6.7986067, + 51.447956501 + ], + [ + 6.7985277, + 51.448754201 + ], + [ + 6.7985139, + 51.449179901 + ], + [ + 6.7985241, + 51.449640101 + ], + [ + 6.7985833, + 51.450163201 + ], + [ + 6.7987529, + 51.451060901 + ], + [ + 6.7988688, + 51.451579701 + ], + [ + 6.7989799, + 51.452084501 + ], + [ + 6.7991219, + 51.452604001 + ], + [ + 6.7992935, + 51.453091301 + ], + [ + 6.7994723, + 51.453575801 + ], + [ + 6.7997023, + 51.454063501 + ], + [ + 6.7999516, + 51.454533201 + ], + [ + 6.8002632, + 51.455008701 + ], + [ + 6.8006623, + 51.455498101 + ], + [ + 6.8008842, + 51.455768501 + ], + [ + 6.8012455, + 51.456153101 + ], + [ + 6.8016316, + 51.456499701 + ], + [ + 6.8022755, + 51.457042301 + ], + [ + 6.802764, + 51.457391801 + ], + [ + 6.8032672, + 51.457718201 + ], + [ + 6.8036511, + 51.457962001 + ], + [ + 6.8041967, + 51.458254101 + ], + [ + 6.8052022, + 51.458725801 + ], + [ + 6.805787, + 51.458962101 + ], + [ + 6.8064049, + 51.459197101 + ], + [ + 6.8084397, + 51.459879401 + ], + [ + 6.8091424, + 51.460017601 + ], + [ + 6.809384662, + 51.460104857 + ] + ] + } + }, + { + "identifier": "2023-001968--vi-bs.2025-03-25_00-00-00-000.devi-zus.2022-12-03_00-00-00-000.f_001.de148", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.46025390528161,6.809247852549695,51.424486435533765,6.799853134919542", + "point": "51.46025390528161,6.809247852549695", + "startLcPosition": "227", + "impact": { + "lower": "Duisburg-Wedau", + "upper": "Oberhausen-Lirich", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Oberhausen-Lirich - Duisburg-Wedau", + "startTimestamp": "2025-03-25T00:00:00+01:00", + "coordinate": { + "lat": 51.46025390528161, + "long": 6.809247852549695 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.03.25 um 00:00 Uhr", + "Ende: 06.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 1.9 km hinter AS Oberhausen-Lirich und 1.8 km vor AS Duisburg-Wedau", + "", + "L\u00e4nge: 4.66 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A3 - Umbau AK Kaiserberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.809247853, + 51.460253905 + ], + [ + 6.8084563, + 51.459971201 + ], + [ + 6.8060584, + 51.459152001 + ], + [ + 6.8051398, + 51.458783801 + ], + [ + 6.8041123, + 51.458291601 + ], + [ + 6.8035922, + 51.458006301 + ], + [ + 6.8032034, + 51.457767701 + ], + [ + 6.8026877, + 51.457432201 + ], + [ + 6.8022097, + 51.457083801 + ], + [ + 6.8015562, + 51.456559101 + ], + [ + 6.8011805, + 51.456212901 + ], + [ + 6.8007853, + 51.455802301 + ], + [ + 6.8005601, + 51.455544201 + ], + [ + 6.8001625, + 51.455009401 + ], + [ + 6.7998728, + 51.454548501 + ], + [ + 6.7996061, + 51.454079101 + ], + [ + 6.7993858, + 51.453588601 + ], + [ + 6.7992119, + 51.453116001 + ], + [ + 6.7990188, + 51.452611101 + ], + [ + 6.7988856, + 51.452103801 + ], + [ + 6.7987473, + 51.451586701 + ], + [ + 6.7986359, + 51.451065301 + ], + [ + 6.7984914, + 51.450177701 + ], + [ + 6.7984306, + 51.449655601 + ], + [ + 6.7984121, + 51.449192901 + ], + [ + 6.7984227, + 51.448777201 + ], + [ + 6.7985073, + 51.447968001 + ], + [ + 6.7987327, + 51.446670001 + ], + [ + 6.7988315, + 51.446165201 + ], + [ + 6.7989323, + 51.445826201 + ], + [ + 6.7990789, + 51.445432301 + ], + [ + 6.7993396, + 51.444861501 + ], + [ + 6.799599, + 51.444413501 + ], + [ + 6.7998908, + 51.444012601 + ], + [ + 6.8004226, + 51.443434701 + ], + [ + 6.8010057, + 51.442879801 + ], + [ + 6.8014743, + 51.442521901 + ], + [ + 6.8019774, + 51.442154701 + ], + [ + 6.8031672, + 51.441400901 + ], + [ + 6.8041734, + 51.440752601 + ], + [ + 6.804667, + 51.440414801 + ], + [ + 6.8051495, + 51.440070801 + ], + [ + 6.8056123, + 51.439696901 + ], + [ + 6.8059896, + 51.439346401 + ], + [ + 6.8063871, + 51.438964401 + ], + [ + 6.8066987, + 51.438600401 + ], + [ + 6.8071047, + 51.438080901 + ], + [ + 6.8074321, + 51.437595101 + ], + [ + 6.8077535, + 51.436997801 + ], + [ + 6.8079464, + 51.436458801 + ], + [ + 6.8081497, + 51.435812401 + ], + [ + 6.8082503, + 51.435279601 + ], + [ + 6.8082749, + 51.434995801 + ], + [ + 6.8082993, + 51.434298801 + ], + [ + 6.8082201, + 51.433486301 + ], + [ + 6.808092, + 51.432873801 + ], + [ + 6.8078897, + 51.432197601 + ], + [ + 6.8076943, + 51.431693101 + ], + [ + 6.8072384, + 51.430964301 + ], + [ + 6.8069069, + 51.430501501 + ], + [ + 6.8063524, + 51.429859801 + ], + [ + 6.8057079, + 51.429272001 + ], + [ + 6.8050797, + 51.428737701 + ], + [ + 6.8032273, + 51.427238101 + ], + [ + 6.8014071, + 51.425754501 + ], + [ + 6.8005285, + 51.425045201 + ], + [ + 6.799853135, + 51.424486436 + ] + ] + } + }, + { + "identifier": "2023-001968--vi-bs.2025-03-25_00-00-00-000.devi-zus.2022-12-03_00-00-00-000.f_001.de152", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.46465342173942,6.81507269089622,51.46025390528161,6.809247852549699", + "point": "51.46465342173942,6.81507269089622", + "startLcPosition": "227", + "impact": { + "lower": "Kaiserberg", + "upper": "Oberhausen-Lirich", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> K\u00f6ln", + "title": "A3 | Oberhausen-Lirich - Kaiserberg", + "startTimestamp": "2025-03-25T00:00:00+01:00", + "coordinate": { + "lat": 51.46465342173942, + "long": 6.81507269089622 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.03.25 um 00:00 Uhr", + "Ende: 06.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A3: Oberhausen -> K\u00f6ln, zwischen 1.2 km hinter AS Oberhausen-Lirich und 1.9 km vor AK Kaiserberg", + "", + "L\u00e4nge: 0.65 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A3 - Umbau AK Kaiserberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.815072691, + 51.464653422 + ], + [ + 6.8149865, + 51.464505701 + ], + [ + 6.8144559, + 51.463771401 + ], + [ + 6.8142594, + 51.463532101 + ], + [ + 6.8139396, + 51.463173401 + ], + [ + 6.8134116, + 51.462727801 + ], + [ + 6.8131532, + 51.462508801 + ], + [ + 6.812532, + 51.462006701 + ], + [ + 6.8122792, + 51.461825301 + ], + [ + 6.8114678, + 51.461322601 + ], + [ + 6.8105755, + 51.460835701 + ], + [ + 6.8099604, + 51.460542701 + ], + [ + 6.8092932, + 51.460270101 + ], + [ + 6.809247853, + 51.460253905 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-bs.2026-01-26_00-00-00-000.devi-zus.2025-04-06_00-00-00-000.de69", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.525888777429834,6.81630029999512,51.53248767375026,6.823704936347797", + "point": "51.525888777429834,6.81630029999512", + "startLcPosition": "229", + "impact": { + "lower": "Oberhausen", + "upper": "Oberhausen-Holten", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Arnheim", + "title": "A3 | Oberhausen-Holten - Oberhausen", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.525888777429834, + "long": 6.81630029999512 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A3: Oberhausen -> Arnheim, zwischen 1.5 km hinter AS Oberhausen-Holten und 0.9 km vor AK Oberhausen", + "", + "L\u00e4nge: 0.9 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.95 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.8163003, + 51.525888777 + ], + [ + 6.8164466, + 51.526080301 + ], + [ + 6.8173036, + 51.527073701 + ], + [ + 6.8179931, + 51.527729701 + ], + [ + 6.8189694, + 51.528621701 + ], + [ + 6.8198401, + 51.529413701 + ], + [ + 6.820448, + 51.529961901 + ], + [ + 6.8205552, + 51.530053801 + ], + [ + 6.8210314, + 51.530467001 + ], + [ + 6.8212533, + 51.530668901 + ], + [ + 6.8220716, + 51.531321001 + ], + [ + 6.8229151, + 51.531945401 + ], + [ + 6.8236712, + 51.532465701 + ], + [ + 6.823704936, + 51.532487674 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-bs.2026-01-26_00-00-00-000.devi-zus.2025-04-06_00-00-00-000.de71", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.51387665142936,6.817444704554792,51.52589689169573,6.816306498252097", + "point": "51.51387665142936,6.817444704554792", + "startLcPosition": "229", + "impact": { + "lower": "Oberhausen", + "upper": "Oberhausen-Holten", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Arnheim", + "title": "A3 | Oberhausen-Holten - Oberhausen", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.51387665142936, + "long": 6.817444704554792 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A3: Oberhausen -> Arnheim, zwischen 0.1 km hinter AS Oberhausen-Holten und 1.8 km vor AK Oberhausen", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.817444705, + 51.513876651 + ], + [ + 6.8171016, + 51.514294301 + ], + [ + 6.8167172, + 51.514796201 + ], + [ + 6.8164841, + 51.515107001 + ], + [ + 6.8162054, + 51.515495001 + ], + [ + 6.8158006, + 51.516109301 + ], + [ + 6.8155701, + 51.516491301 + ], + [ + 6.8152198, + 51.517174601 + ], + [ + 6.8149818, + 51.517686401 + ], + [ + 6.8148015, + 51.518139101 + ], + [ + 6.8146508, + 51.518613901 + ], + [ + 6.8145091, + 51.519154101 + ], + [ + 6.8144114, + 51.519685901 + ], + [ + 6.8143496, + 51.520143101 + ], + [ + 6.814327, + 51.520621601 + ], + [ + 6.8143339, + 51.521052301 + ], + [ + 6.8143747, + 51.521528201 + ], + [ + 6.8144323, + 51.521914201 + ], + [ + 6.8145512, + 51.522434601 + ], + [ + 6.8146345, + 51.522721501 + ], + [ + 6.8147656, + 51.523123401 + ], + [ + 6.8149696, + 51.523644101 + ], + [ + 6.8151965, + 51.524132601 + ], + [ + 6.8154525, + 51.524589201 + ], + [ + 6.8159646, + 51.525449301 + ], + [ + 6.816306498, + 51.525896892 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-bs.2026-01-26_00-00-00-000.devi-zus.2025-04-06_00-00-00-000.de67", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53259726504913,6.823515693065621,51.52594857171569,6.816102448931334", + "point": "51.53259726504913,6.823515693065621", + "startLcPosition": "230", + "impact": { + "lower": "Oberhausen-Holten", + "upper": "Oberhausen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Arnheim -> Oberhausen", + "title": "A3 | Oberhausen - Oberhausen-Holten", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.53259726504913, + "long": 6.823515693065621 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A3: Arnheim -> Oberhausen, zwischen 0.8 km hinter AK Oberhausen und 1.5 km vor AS Oberhausen-Holten", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.823515693, + 51.532597265 + ], + [ + 6.8227985, + 51.532103401 + ], + [ + 6.8219498, + 51.531470501 + ], + [ + 6.8210193, + 51.530714301 + ], + [ + 6.8207895, + 51.530509201 + ], + [ + 6.8203726, + 51.530140601 + ], + [ + 6.8202625, + 51.530044901 + ], + [ + 6.8196457, + 51.529499601 + ], + [ + 6.8186407, + 51.528590801 + ], + [ + 6.817772, + 51.527797001 + ], + [ + 6.8171018, + 51.527146701 + ], + [ + 6.816856, + 51.526848301 + ], + [ + 6.8163177, + 51.526219701 + ], + [ + 6.816102449, + 51.525948572 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-bs.2026-01-26_00-00-00-000.devi-zus.2025-04-06_00-00-00-000.de77", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53834782485322,6.830887904317192,51.53325615133307,6.8245371442177305", + "point": "51.53834782485322,6.830887904317192", + "startLcPosition": "231", + "impact": { + "lower": "Oberhausen-Holten", + "upper": "Dinslaken-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Arnheim -> Oberhausen", + "title": "A3 | Dinslaken-S\u00fcd - Oberhausen-Holten", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.53834782485322, + "long": 6.830887904317192 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A3: Arnheim -> Oberhausen, zwischen 2.8 km hinter AS Dinslaken-S\u00fcd und 2.5 km vor AS Oberhausen-Holten", + "", + "L\u00e4nge: 0.75 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.830887904, + 51.538347825 + ], + [ + 6.8308949, + 51.538310101 + ], + [ + 6.8309217, + 51.538014501 + ], + [ + 6.8308915, + 51.537756301 + ], + [ + 6.8308447, + 51.537521001 + ], + [ + 6.8307557, + 51.537295301 + ], + [ + 6.8306539, + 51.537108801 + ], + [ + 6.830443, + 51.536827701 + ], + [ + 6.8302823, + 51.536625701 + ], + [ + 6.8300547, + 51.536425801 + ], + [ + 6.8298204, + 51.536250901 + ], + [ + 6.8296061, + 51.536113501 + ], + [ + 6.8292982, + 51.535944801 + ], + [ + 6.8277115, + 51.535149401 + ], + [ + 6.8264519, + 51.534451501 + ], + [ + 6.8258866, + 51.534132501 + ], + [ + 6.8257728, + 51.533986501 + ], + [ + 6.8251662, + 51.533643101 + ], + [ + 6.824537144, + 51.533256151 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-fbm.2026-04-16_09-00-00-000.devi-zus.2025-04-06_00-00-00-000.de146", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.575382112655944,6.798089517720123,51.541156707742694,6.828279375031748", + "point": "51.575382112655944,6.798089517720123", + "startLcPosition": "232", + "impact": { + "lower": "Oberhausen", + "upper": "Sippenwies", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnheim -> Oberhausen", + "title": "A3 | Sippenwies - Oberhausen", + "coordinate": { + "lat": 51.575382112655944, + "long": 6.798089517720123 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Donnerstag und Donnerstag zwischen dem 16.04.26 und dem 16.04.26 von 10:00 bis 12:00 Uhr.", + "17.04.26 von 10:00 bis 12:00 Uhr", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 20.04.26 und dem 25.04.26 von 20:00 bis 00:00 Uhr.", + "Jeden Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 21.04.26 und dem 25.04.26 von 00:00 bis 05:00 Uhr.", + "", + "A3: Arnheim -> Oberhausen, zwischen 0.3 km hinter Sippenwies und 0.5 km vor AK Oberhausen", + "", + "L\u00e4nge: 4.38 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.798089518, + 51.575382113 + ], + [ + 6.7982824, + 51.575154301 + ], + [ + 6.7988798, + 51.574438701 + ], + [ + 6.7996048, + 51.573501301 + ], + [ + 6.800462, + 51.572250601 + ], + [ + 6.8006856, + 51.571930201 + ], + [ + 6.8014357, + 51.570751101 + ], + [ + 6.8021675, + 51.569519601 + ], + [ + 6.8035311, + 51.567255001 + ], + [ + 6.8038084, + 51.566783801 + ], + [ + 6.8045167, + 51.565613001 + ], + [ + 6.8046754, + 51.565315601 + ], + [ + 6.8053533, + 51.564167401 + ], + [ + 6.8060541, + 51.562986601 + ], + [ + 6.8073716, + 51.560771101 + ], + [ + 6.8079289, + 51.559844401 + ], + [ + 6.8082414, + 51.559325401 + ], + [ + 6.8083396, + 51.559156101 + ], + [ + 6.8090934, + 51.557966501 + ], + [ + 6.8098209, + 51.556928201 + ], + [ + 6.8105015, + 51.556063701 + ], + [ + 6.8113697, + 51.555080001 + ], + [ + 6.8122482, + 51.554180601 + ], + [ + 6.8125412, + 51.553916601 + ], + [ + 6.8127893, + 51.553693101 + ], + [ + 6.8131166, + 51.553398201 + ], + [ + 6.8143943, + 51.552311401 + ], + [ + 6.8153263, + 51.551542701 + ], + [ + 6.8168397, + 51.550320601 + ], + [ + 6.8178713, + 51.549486801 + ], + [ + 6.8181244, + 51.549279101 + ], + [ + 6.8214562, + 51.546595101 + ], + [ + 6.8217419, + 51.546359101 + ], + [ + 6.8218921, + 51.546239001 + ], + [ + 6.8248988, + 51.543798601 + ], + [ + 6.8250914, + 51.543639501 + ], + [ + 6.8264934, + 51.542514201 + ], + [ + 6.8278109, + 51.541493001 + ], + [ + 6.828279375, + 51.541156708 + ] + ] + } + }, + { + "identifier": "2026-015577--vi-bs.2026-04-07_08-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.587269377674545,6.7851506716374805,51.55951917529027,6.808124725602547", + "point": "51.587269377674545,6.7851506716374805", + "startLcPosition": "233", + "impact": { + "lower": "Dinslaken-S\u00fcd", + "upper": "Dinslaken-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnheim -> Oberhausen", + "title": "A3 | Dinslaken-Nord - Dinslaken-S\u00fcd", + "coordinate": { + "lat": 51.587269377674545, + "long": 6.7851506716374805 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "", + "A3: Arnheim -> Oberhausen, zwischen 0.1 km hinter AS Dinslaken-Nord und AS Dinslaken-S\u00fcd", + "", + "L\u00e4nge: 3.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A3 von Dinslaken-Nord (AS) nach Dinslaken-S\u00fcd (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.785150672, + 51.587269378 + ], + [ + 6.7852122, + 51.587187101 + ], + [ + 6.7856816, + 51.586643801 + ], + [ + 6.7863964, + 51.585872201 + ], + [ + 6.7870973, + 51.585210701 + ], + [ + 6.7874021, + 51.584943601 + ], + [ + 6.7876699, + 51.584709001 + ], + [ + 6.7883797, + 51.584099701 + ], + [ + 6.7890331, + 51.583554701 + ], + [ + 6.7927174, + 51.580529501 + ], + [ + 6.7932504, + 51.580090801 + ], + [ + 6.7943947, + 51.579090301 + ], + [ + 6.7949805, + 51.578598301 + ], + [ + 6.7962117, + 51.577412001 + ], + [ + 6.7969151, + 51.576694101 + ], + [ + 6.7979345, + 51.575565201 + ], + [ + 6.7982824, + 51.575154301 + ], + [ + 6.7988798, + 51.574438701 + ], + [ + 6.7996048, + 51.573501301 + ], + [ + 6.800462, + 51.572250601 + ], + [ + 6.8006856, + 51.571930201 + ], + [ + 6.8014357, + 51.570751101 + ], + [ + 6.8021675, + 51.569519601 + ], + [ + 6.8035311, + 51.567255001 + ], + [ + 6.8038084, + 51.566783801 + ], + [ + 6.8045167, + 51.565613001 + ], + [ + 6.8046754, + 51.565315601 + ], + [ + 6.8053533, + 51.564167401 + ], + [ + 6.8060541, + 51.562986601 + ], + [ + 6.8073716, + 51.560771101 + ], + [ + 6.8079289, + 51.559844401 + ], + [ + 6.808124726, + 51.559519175 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-fbm.2026-03-31_09-00-00-000.devi-zus.2025-09-05_00-00-00-000.de90", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.81137805099101,6.458910877071971,51.81554353626899,6.446028525711768", + "point": "51.81137805099101,6.458910877071971", + "startLcPosition": "247", + "impact": { + "lower": "Rees", + "upper": "Kattenhorst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> Arnheim", + "title": "A3 | Kattenhorst - Rees", + "coordinate": { + "lat": 51.81137805099101, + "long": 6.458910877071971 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 15:00 Uhr", + "22.04.26 von 09:00 bis 15:00 Uhr", + "23.04.26 von 09:00 bis 15:00 Uhr", + "", + "A3: Oberhausen -> Arnheim, zwischen 0.3 km hinter Kattenhorst und 0.4 km vor AS Rees", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.458910877, + 51.811378051 + ], + [ + 6.4570288, + 51.811994301 + ], + [ + 6.4521704, + 51.813586401 + ], + [ + 6.4512528, + 51.813884601 + ], + [ + 6.4480264, + 51.814889501 + ], + [ + 6.446028526, + 51.815543536 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-bs.2025-09-05_00-00-00-000.devi-zus.2025-09-05_00-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.82731459772018,6.383046246752957,51.82928034830463,6.377588614035852", + "point": "51.82731459772018,6.383046246752957", + "startLcPosition": "249", + "impact": { + "lower": "Hetter", + "upper": "K\u00e4lberweide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Arnheim", + "title": "A3 | K\u00e4lberweide - Hetter", + "startTimestamp": "2025-09-05T00:00:00+02:00", + "coordinate": { + "lat": 51.82731459772018, + "long": 6.383046246752957 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.09.25 um 00:00 Uhr", + "Ende: 20.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.11.26)", + "", + "A3: Oberhausen -> Arnheim, zwischen 3.1 km hinter K\u00e4lberweide und 2.7 km vor Hetter", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.383046247, + 51.827314598 + ], + [ + 6.3821838, + 51.827586901 + ], + [ + 6.3804724, + 51.828176501 + ], + [ + 6.377588614, + 51.829280348 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-bs.2025-09-05_00-00-00-000.devi-zus.2025-09-05_00-00-00-000.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.83751589206078,6.355976414743297,51.83957401147565,6.350525223182606", + "point": "51.83751589206078,6.355976414743297", + "startLcPosition": "250", + "impact": { + "lower": "Hetter", + "upper": "Millingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Arnheim", + "title": "A3 | Millingen - Hetter", + "startTimestamp": "2025-09-05T00:00:00+02:00", + "coordinate": { + "lat": 51.83751589206078, + "long": 6.355976414743297 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.09.25 um 00:00 Uhr", + "Ende: 20.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.11.26)", + "", + "A3: Oberhausen -> Arnheim, zwischen 2.1 km hinter Millingen und 0.6 km vor Hetter", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.355976415, + 51.837515892 + ], + [ + 6.3537488, + 51.838358901 + ], + [ + 6.350525223, + 51.839574011 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-bs.2026-02-23_00-00-00-000.devi-zus.2025-09-05_00-00-00-000.de37", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.84532500253079,6.317086259332706,51.846094541707174,6.309093029578289", + "point": "51.84532500253079,6.317086259332706", + "startLcPosition": "251", + "impact": { + "lower": "L\u00f6wenberger Landwehr", + "upper": "Hetter", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Arnheim", + "title": "A3 | Hetter - L\u00f6wenberger Landwehr", + "startTimestamp": "2026-02-23T00:00:00+01:00", + "coordinate": { + "lat": 51.84532500253079, + "long": 6.317086259332706 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.11.26)", + "", + "A3: Oberhausen -> Arnheim, zwischen 1.9 km hinter Hetter und 0.1 km vor L\u00f6wenberger Landwehr", + "", + "L\u00e4nge: 0.56 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.317086259, + 51.845325003 + ], + [ + 6.315042, + 51.845455401 + ], + [ + 6.313824, + 51.845549801 + ], + [ + 6.312733, + 51.845642801 + ], + [ + 6.3117355, + 51.845741101 + ], + [ + 6.3107496, + 51.845862201 + ], + [ + 6.3099111, + 51.845974701 + ], + [ + 6.30909303, + 51.846094542 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-bs.2025-09-05_00-00-00-000.devi-zus.2025-09-05_00-00-00-000.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.83993419915715,6.349214000134619,51.83785926870526,6.354648898416874", + "point": "51.83993419915715,6.349214000134619", + "startLcPosition": "251", + "impact": { + "lower": "Millingen", + "upper": "Hetter", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Arnheim -> Oberhausen", + "title": "A3 | Hetter - Millingen", + "startTimestamp": "2025-09-05T00:00:00+02:00", + "coordinate": { + "lat": 51.83993419915715, + "long": 6.349214000134619 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.09.25 um 00:00 Uhr", + "Ende: 20.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.11.26)", + "", + "A3: Arnheim -> Oberhausen, zwischen 0.5 km hinter Hetter und 2.2 km vor Millingen", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.349214, + 51.839934199 + ], + [ + 6.3534838, + 51.838300401 + ], + [ + 6.354648898, + 51.837859269 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-bs.2025-09-05_00-00-00-000.devi-zus.2025-09-05_00-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.829641430122464,6.376277902793353,51.827208075894376,6.3829747333147715", + "point": "51.829641430122464,6.376277902793353", + "startLcPosition": "251", + "impact": { + "lower": "K\u00e4lberweide", + "upper": "Hetter", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Arnheim -> Oberhausen", + "title": "A3 | Hetter - K\u00e4lberweide", + "startTimestamp": "2025-09-05T00:00:00+02:00", + "coordinate": { + "lat": 51.829641430122464, + "long": 6.376277902793353 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.09.25 um 00:00 Uhr", + "Ende: 20.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.11.26)", + "", + "A3: Arnheim -> Oberhausen, zwischen 2.6 km hinter Hetter und 3.1 km vor K\u00e4lberweide", + "", + "L\u00e4nge: 0.53 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.376277903, + 51.82964143 + ], + [ + 6.3766802, + 51.829488401 + ], + [ + 6.3800615, + 51.828192101 + ], + [ + 6.3818333, + 51.827570501 + ], + [ + 6.382974733, + 51.827208076 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-bs.2026-02-23_00-00-00-000.devi-zus.2025-09-05_00-00-00-000.de35", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.84598282588895,6.309050841137096,51.845205505457464,6.317067020168899", + "point": "51.84598282588895,6.309050841137096", + "startLcPosition": "252", + "impact": { + "lower": "Hetter", + "upper": "L\u00f6wenberger Landwehr", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Arnheim -> Oberhausen", + "title": "A3 | L\u00f6wenberger Landwehr - Hetter", + "startTimestamp": "2026-02-23T00:00:00+01:00", + "coordinate": { + "lat": 51.84598282588895, + "long": 6.309050841137096 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.11.26)", + "", + "A3: Arnheim -> Oberhausen, zwischen 0.1 km hinter L\u00f6wenberger Landwehr und 1.9 km vor Hetter", + "", + "L\u00e4nge: 0.56 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.309050841, + 51.845982826 + ], + [ + 6.3105155, + 51.845773201 + ], + [ + 6.3107889, + 51.845737401 + ], + [ + 6.3126138, + 51.845530501 + ], + [ + 6.314012, + 51.845415401 + ], + [ + 6.3156316, + 51.845288701 + ], + [ + 6.31706702, + 51.845205505 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-bs.2026-02-23_00-00-00-000.devi-zus.2025-09-05_00-00-00-000.de39", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.84742573812264,6.302172620345205,51.84598282588895,6.309050841137096", + "point": "51.84742573812264,6.302172620345205", + "startLcPosition": "253", + "impact": { + "lower": "Hetter", + "upper": "Emmerich-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Arnheim -> Oberhausen", + "title": "A3 | Emmerich-Ost - Hetter", + "startTimestamp": "2026-02-23T00:00:00+01:00", + "coordinate": { + "lat": 51.84742573812264, + "long": 6.302172620345205 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.11.26)", + "", + "A3: Arnheim -> Oberhausen, zwischen 0.6 km hinter AS Emmerich-Ost und 2.4 km vor Hetter", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.30217262, + 51.847425738 + ], + [ + 6.3025184, + 51.847336301 + ], + [ + 6.3036064, + 51.847064401 + ], + [ + 6.3052716, + 51.846685501 + ], + [ + 6.3068987, + 51.846347601 + ], + [ + 6.3090042, + 51.845989501 + ], + [ + 6.309050841, + 51.845982826 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-fbm.2026-03-31_09-00-00-000.devi-zus.2025-09-05_00-00-00-000.de88", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.85933081378569,6.274550284669228,51.853938882159916,6.286136106731004", + "point": "51.85933081378569,6.274550284669228", + "startLcPosition": "254", + "impact": { + "lower": "Emmerich-Ost", + "upper": "Emmerich", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnheim -> Oberhausen", + "title": "A3 | Emmerich - Emmerich-Ost", + "coordinate": { + "lat": 51.85933081378569, + "long": 6.274550284669228 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 15:00 Uhr", + "22.04.26 von 09:00 bis 15:00 Uhr", + "23.04.26 von 09:00 bis 15:00 Uhr", + "", + "A3: Arnheim -> Oberhausen, zwischen 2.2 km hinter AS Emmerich und 0.7 km vor AS Emmerich-Ost", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.274550285, + 51.859330814 + ], + [ + 6.2747345, + 51.859257401 + ], + [ + 6.2766832, + 51.858398001 + ], + [ + 6.2778127, + 51.857876901 + ], + [ + 6.2815249, + 51.856106001 + ], + [ + 6.2851335, + 51.854420801 + ], + [ + 6.286136107, + 51.853938882 + ] + ] + } + }, + { + "identifier": "2023-000334--vi-bs.2024-01-01_00-00-00-000.devi-zus.2024-01-01_00-00-00-000_004.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.45293821395672,11.237958800970633,49.459884175921864,11.236572337007296", + "point": "49.45293821395672,11.237958800970633", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK N\u00fcrnberg (aus Richtung Brunn)", + "title": "A3 Br\u00fcckenneubau Bw 373c", + "startTimestamp": "2024-01-01T00:00:00+01:00", + "coordinate": { + "lat": 49.45293821395672, + "long": 11.237958800970633 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.01.24 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Abfahrt von der A9: AK N\u00fcrnberg (aus Richtung Brunn)", + "", + "L\u00e4nge: 0.8 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A3 Br\u00fcckenneubau Bw 373c" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.237958801, + 49.452938214 + ], + [ + 11.2380142, + 49.453056201 + ], + [ + 11.238109, + 49.453307501 + ], + [ + 11.2382302, + 49.453677401 + ], + [ + 11.2382925, + 49.453962501 + ], + [ + 11.2383777, + 49.454439401 + ], + [ + 11.238434, + 49.454896901 + ], + [ + 11.23846, + 49.455244501 + ], + [ + 11.2384459, + 49.455595701 + ], + [ + 11.2384177, + 49.456031901 + ], + [ + 11.238319, + 49.456585501 + ], + [ + 11.2382054, + 49.457025401 + ], + [ + 11.2380141, + 49.457593001 + ], + [ + 11.2378528, + 49.457973901 + ], + [ + 11.2375952, + 49.458476301 + ], + [ + 11.2374138, + 49.458778801 + ], + [ + 11.2370853, + 49.459261201 + ], + [ + 11.2367434, + 49.459696001 + ], + [ + 11.236572337, + 49.459884176 + ] + ] + } + }, + { + "identifier": "2026-017184--vi-bs.2026-04-09_09-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.045397790548876,8.60051410840114,50.04850465308951,8.602255648296003", + "point": "50.045397790548876,8.60051410840114", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Frankfurt", + "title": "A3 von Frankfurter Kreuz (AK) Tiefbauarbeiten neben der Fahrbahn", + "coordinate": { + "lat": 50.045397790548876, + "long": 8.60051410840114 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 18:00 Uhr", + "", + "Von A5: Darmstadt -> Frankfurt, zwischen 1.2 km hinter AS Zeppelinheim und AK Frankfurter Kreuz nach Abfahrt von der A5: AS Zeppelinheim (aus Richtung Kaiserstein)", + "", + "L\u00e4nge: 0.37 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A3 von Frankfurter Kreuz (AK) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.600514108, + 50.045397791 + ], + [ + 8.600646, + 50.045664301 + ], + [ + 8.6008163, + 50.046008501 + ], + [ + 8.6015023, + 50.047406101 + ], + [ + 8.601869, + 50.047889001 + ], + [ + 8.6021369, + 50.048294701 + ], + [ + 8.602255648, + 50.048504653 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-08-18_23-30-00-000.devi-zus.2025-08-20_00-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.06449557630551,8.724670834062628,50.064369100313925,8.728422513446436", + "point": "50.06449557630551,8.724670834062628", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Offenbacher Kreuz (aus Richtung Frankfurt am Main-S\u00fcd)", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-08-18T23:30:00+02:00", + "coordinate": { + "lat": 50.06449557630551, + "long": 8.724670834062628 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.08.25 um 23:30 Uhr", + "Ende: 27.12.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Abfahrt von der A3: AK Offenbacher Kreuz (aus Richtung Frankfurt am Main-S\u00fcd)", + "", + "L\u00e4nge: 0.27 km | Maximale Durchfahrtsbreite: 6 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.724670834, + 50.064495576 + ], + [ + 8.7248578, + 50.064493701 + ], + [ + 8.7253008, + 50.064477501 + ], + [ + 8.7257722, + 50.064469001 + ], + [ + 8.7263218, + 50.064452201 + ], + [ + 8.7273881, + 50.064406601 + ], + [ + 8.7282169, + 50.064380201 + ], + [ + 8.728422513, + 50.0643691 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-08-18_23-30-00-000.devi-zus.2025-08-20_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.064732376348225,8.730052544288853,50.064795769772516,8.725148670055876", + "point": "50.064732376348225,8.730052544288853", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Offenbacher Kreuz (aus Richtung Offenbach)", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-08-18T23:30:00+02:00", + "coordinate": { + "lat": 50.064732376348225, + "long": 8.730052544288853 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.08.25 um 23:30 Uhr", + "Ende: 27.12.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Auffahrt auf die A3: AK Offenbacher Kreuz (aus Richtung Offenbach)", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 6 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.730052544, + 50.064732376 + ], + [ + 8.7299915, + 50.064735301 + ], + [ + 8.7285062, + 50.064794301 + ], + [ + 8.7278989, + 50.064817901 + ], + [ + 8.7264268, + 50.064870501 + ], + [ + 8.7262524, + 50.064865101 + ], + [ + 8.7259768, + 50.064849301 + ], + [ + 8.7257196, + 50.064831501 + ], + [ + 8.72514867, + 50.06479577 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de17", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.02766621200811,8.472875125137515,50.02920570885904,8.465080198703776", + "point": "50.02766621200811,8.472875125137515", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Raunheim (aus Richtung M\u00f6nchhof-Dreieck)", + "title": "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.02766621200811, + "long": 8.472875125137515 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "Auffahrt auf die A3: AS Raunheim (aus Richtung M\u00f6nchhof-Dreieck)", + "", + "L\u00e4nge: 0.58 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.472875125, + 50.027666212 + ], + [ + 8.470288, + 50.028175301 + ], + [ + 8.4668206, + 50.028858701 + ], + [ + 8.4659075, + 50.029051101 + ], + [ + 8.465080199, + 50.029205709 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-04-20_09-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de337", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.12331163606896,6.979929777531251,51.12345450962496,6.978914349709662", + "point": "51.12331163606896,6.979929777531251", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Solingen (aus Richtung Langenfeld)", + "title": "AS Solingen Fahrbahnsanierung", + "startTimestamp": "2026-04-20T09:00:00+02:00", + "coordinate": { + "lat": 51.12331163606896, + "long": 6.979929777531251 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 09:00 Uhr", + "Ende: 08.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "Auffahrt auf die A3: AS Solingen (aus Richtung Langenfeld)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.979929778, + 51.123311636 + ], + [ + 6.9797493, + 51.123314901 + ], + [ + 6.9793861, + 51.123326301 + ], + [ + 6.9791981, + 51.123348001 + ], + [ + 6.979026, + 51.123402101 + ], + [ + 6.97891435, + 51.12345451 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-08-18_23-30-00-000.devi-zus.2025-08-20_00-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.064903443752186,8.726243217140652,50.06555079087618,8.726932268328312", + "point": "50.064903443752186,8.726243217140652", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Egelsbach", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-08-18T23:30:00+02:00", + "coordinate": { + "lat": 50.064903443752186, + "long": 8.726243217140652 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.08.25 um 23:30 Uhr", + "Ende: 27.12.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Zufahrtsstra\u00dfe: Egelsbach", + "", + "L\u00e4nge: 0.26 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.726243217, + 50.064903444 + ], + [ + 8.7260785, + 50.064933001 + ], + [ + 8.7259981, + 50.064951101 + ], + [ + 8.7258963, + 50.064981001 + ], + [ + 8.7258011, + 50.065009801 + ], + [ + 8.7257181, + 50.065046701 + ], + [ + 8.7256338, + 50.065095601 + ], + [ + 8.7255645, + 50.065144401 + ], + [ + 8.725504, + 50.065201301 + ], + [ + 8.725448, + 50.065278901 + ], + [ + 8.725417, + 50.065351601 + ], + [ + 8.7254065, + 50.065395401 + ], + [ + 8.7254021, + 50.065455901 + ], + [ + 8.7254102, + 50.065525201 + ], + [ + 8.7254299, + 50.065590201 + ], + [ + 8.7254648, + 50.065646901 + ], + [ + 8.7254961, + 50.065689501 + ], + [ + 8.7255367, + 50.065733801 + ], + [ + 8.7256058, + 50.065791201 + ], + [ + 8.725684, + 50.065837501 + ], + [ + 8.7257909, + 50.065886101 + ], + [ + 8.7259089, + 50.065918801 + ], + [ + 8.7260386, + 50.065943201 + ], + [ + 8.7261635, + 50.065951601 + ], + [ + 8.7263005, + 50.065943101 + ], + [ + 8.7264144, + 50.065926701 + ], + [ + 8.7265428, + 50.065889001 + ], + [ + 8.7266155, + 50.065862401 + ], + [ + 8.7266824, + 50.065828301 + ], + [ + 8.7267624, + 50.065779001 + ], + [ + 8.7268312, + 50.065718701 + ], + [ + 8.7268853, + 50.065658301 + ], + [ + 8.7269223, + 50.065591001 + ], + [ + 8.726932268, + 50.065550791 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de15", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.028162986385446,8.495099281394197,50.026223188484295,8.486205667761578", + "point": "50.028162986385446,8.495099281394197", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.028162986385446, + "long": 8.495099281394197 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "Abfahrt von der A67 S", + "", + "L\u00e4nge: 0.67 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.495099281, + 50.028162986 + ], + [ + 8.4943691, + 50.027967601 + ], + [ + 8.4933208, + 50.027679101 + ], + [ + 8.492252, + 50.027394501 + ], + [ + 8.4911849, + 50.027127701 + ], + [ + 8.4908422, + 50.027048101 + ], + [ + 8.4904987, + 50.026979601 + ], + [ + 8.4901343, + 50.026918301 + ], + [ + 8.4897503, + 50.026864901 + ], + [ + 8.4891341, + 50.026786401 + ], + [ + 8.488514, + 50.026704401 + ], + [ + 8.4881096, + 50.026640701 + ], + [ + 8.4876865, + 50.026566201 + ], + [ + 8.4872775, + 50.026474501 + ], + [ + 8.4862253, + 50.026228501 + ], + [ + 8.486205668, + 50.026223188 + ] + ] + } + }, + { + "identifier": "2023-000161--vi-bs.2026-04-13_09-30-00-000.devi-zus.2023-08-14_15-30-00-000_014.f.de19", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.0292032035111,8.465093605023057,50.03057795838324,8.458109969541196", + "point": "50.0292032035111,8.465093605023057", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Raunheim (aus Richtung M\u00f6nchhof-Dreieck) nach A3", + "title": "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck", + "startTimestamp": "2026-04-13T09:30:00+02:00", + "coordinate": { + "lat": 50.0292032035111, + "long": 8.465093605023057 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:30 Uhr", + "Ende: 22.07.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.10.26)", + "", + "Von Auffahrt auf die A3: AS Raunheim (aus Richtung M\u00f6nchhof-Dreieck) nach A3: Frankfurt -> K\u00f6ln, zwischen AS Raunheim und 3.6 km vor Johannespfad", + "", + "L\u00e4nge: 0.52 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 GE zw. WI-Kreuz und M\u00f6nchhofdreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.465093605, + 50.029203204 + ], + [ + 8.4649775, + 50.029224901 + ], + [ + 8.4640854, + 50.029370401 + ], + [ + 8.4633097, + 50.029508601 + ], + [ + 8.4627293, + 50.029619101 + ], + [ + 8.4623582, + 50.029685901 + ], + [ + 8.4620182, + 50.029746401 + ], + [ + 8.4613785, + 50.029858201 + ], + [ + 8.4606988, + 50.029977501 + ], + [ + 8.4589609, + 50.030372701 + ], + [ + 8.4586177, + 50.030454701 + ], + [ + 8.45810997, + 50.030577958 + ] + ] + } + }, + { + "identifier": "2025-063334--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_014.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.99554097313,12.062533683556124,48.994237387898764,12.062115764322291", + "point": "48.99554097313,12.062533683556124", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Regensburg (aus Richtung Regensburg-Kumpfm\u00fchl)", + "title": "A3 Erneuerung BW 50 Vorarbeiten", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 48.99554097313, + "long": 12.062533683556124 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 20.04.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.11.26)", + "", + "Auffahrt auf die A93: AK Regensburg (aus Richtung Regensburg-Kumpfm\u00fchl)", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 Erneuerung BW 50 Vorarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.062533684, + 48.995540973 + ], + [ + 12.0624634, + 48.995264501 + ], + [ + 12.0622571, + 48.994676001 + ], + [ + 12.0622341, + 48.994484301 + ], + [ + 12.062115764, + 48.994237388 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-04-20_09-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de335", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.122599754262325,6.9796754303668616,51.12323403811806,6.9801182541509315", + "point": "51.122599754262325,6.9796754303668616", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Solingen (aus Richtung Langenfeld)", + "title": "AS Solingen Fahrbahnsanierung", + "startTimestamp": "2026-04-20T09:00:00+02:00", + "coordinate": { + "lat": 51.122599754262325, + "long": 6.9796754303668616 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 09:00 Uhr", + "Ende: 08.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "Abfahrt von der A3: AS Solingen (aus Richtung Langenfeld)", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.97967543, + 51.122599754 + ], + [ + 6.979649, + 51.122733601 + ], + [ + 6.9796459, + 51.122852601 + ], + [ + 6.9796796, + 51.122950101 + ], + [ + 6.9797571, + 51.123063001 + ], + [ + 6.9798841, + 51.123149901 + ], + [ + 6.9800097, + 51.123206001 + ], + [ + 6.980118254, + 51.123234038 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-04-20_09-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de333", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.121459647349084,6.978111578373461,51.1229438851469,6.978636905603723", + "point": "51.121459647349084,6.978111578373461", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Solingen (aus Richtung Ohligser Heide)", + "title": "AS Solingen Fahrbahnsanierung", + "startTimestamp": "2026-04-20T09:00:00+02:00", + "coordinate": { + "lat": 51.121459647349084, + "long": 6.978111578373461 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 09:00 Uhr", + "Ende: 08.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "Auffahrt auf die A3: AS Solingen (aus Richtung Ohligser Heide)", + "", + "L\u00e4nge: 0.23 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.978111578, + 51.121459647 + ], + [ + 6.9779162, + 51.121708701 + ], + [ + 6.9776026, + 51.122410701 + ], + [ + 6.9775817, + 51.122567101 + ], + [ + 6.9776594, + 51.122742301 + ], + [ + 6.9778128, + 51.122885201 + ], + [ + 6.9780162, + 51.122972101 + ], + [ + 6.9783198, + 51.122994901 + ], + [ + 6.978636906, + 51.122943885 + ] + ] + } + }, + { + "identifier": "2023-000279--vi-bs.2026-04-20_09-00-00-000.devi-zus.2024-02-09_12-00-00-000.f.de331", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.12358922398491,6.978132483301006,51.122142875912985,6.977655999352851", + "point": "51.12358922398491,6.978132483301006", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Solingen (aus Richtung Ohligser Heide)", + "title": "AS Solingen Fahrbahnsanierung", + "startTimestamp": "2026-04-20T09:00:00+02:00", + "coordinate": { + "lat": 51.12358922398491, + "long": 6.978132483301006 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 09:00 Uhr", + "Ende: 08.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.06.26)", + "", + "Abfahrt von der A3: AS Solingen (aus Richtung Ohligser Heide)", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "AS Solingen Fahrbahnsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.978132483, + 51.123589224 + ], + [ + 6.9781559, + 51.123477501 + ], + [ + 6.9780818, + 51.123253001 + ], + [ + 6.9775882, + 51.122761401 + ], + [ + 6.9775149, + 51.122568401 + ], + [ + 6.9775381, + 51.122404801 + ], + [ + 6.977655999, + 51.122142876 + ] + ] + } + }, + { + "identifier": "2023-001968--vi-bs.2026-02-02_00-00-00-000.devi-zus.2022-12-03_00-00-00-000.f_001.de228", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.444518937008205,6.801637823686596,51.44182602723723,6.802951207831847", + "point": "51.444518937008205,6.801637823686596", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Kaiserberg (aus Richtung Duisburg)", + "title": "A3 - Umbau AK Kaiserberg", + "startTimestamp": "2026-02-02T00:00:00+01:00", + "coordinate": { + "lat": 51.444518937008205, + "long": 6.801637823686596 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.02.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "Abfahrt von der A40: AK Kaiserberg (aus Richtung Duisburg)", + "", + "L\u00e4nge: 0.51 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 - Umbau AK Kaiserberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.801637824, + 51.444518937 + ], + [ + 6.8018764, + 51.444397901 + ], + [ + 6.8038435, + 51.443443101 + ], + [ + 6.8041675, + 51.443292001 + ], + [ + 6.8043412, + 51.443202501 + ], + [ + 6.8044629, + 51.443133101 + ], + [ + 6.8045919, + 51.443045001 + ], + [ + 6.8046771, + 51.442983101 + ], + [ + 6.8047528, + 51.442915801 + ], + [ + 6.8048166, + 51.442846501 + ], + [ + 6.804869, + 51.442776701 + ], + [ + 6.8049051, + 51.442711901 + ], + [ + 6.8049492, + 51.442612801 + ], + [ + 6.8049749, + 51.442530401 + ], + [ + 6.8049937, + 51.442473601 + ], + [ + 6.8050005, + 51.442385801 + ], + [ + 6.8049784, + 51.442313801 + ], + [ + 6.804961, + 51.442263201 + ], + [ + 6.8049253, + 51.442215301 + ], + [ + 6.8048882, + 51.442164601 + ], + [ + 6.8048499, + 51.442127901 + ], + [ + 6.8048056, + 51.442087801 + ], + [ + 6.8047469, + 51.442039401 + ], + [ + 6.8047001, + 51.442003801 + ], + [ + 6.804633, + 51.441960401 + ], + [ + 6.8045792, + 51.441924101 + ], + [ + 6.8044982, + 51.441879901 + ], + [ + 6.8044395, + 51.441854001 + ], + [ + 6.8043636, + 51.441824601 + ], + [ + 6.8042502, + 51.441795901 + ], + [ + 6.8041046, + 51.441782401 + ], + [ + 6.8039868, + 51.441787401 + ], + [ + 6.8038221, + 51.441792901 + ], + [ + 6.8036454, + 51.441805501 + ], + [ + 6.8032481, + 51.441806401 + ], + [ + 6.8030908, + 51.441808901 + ], + [ + 6.802951208, + 51.441826027 + ] + ] + } + }, + { + "identifier": "2023-001968--vi-bs.2025-03-25_00-00-00-000.devi-zus.2022-12-03_00-00-00-000.f_001.de154", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43299230348561,6.808461539595693,51.44169678993979,6.80979733790886", + "point": "51.43299230348561,6.808461539595693", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-Wedau (aus Richtung Stockweg)", + "title": "A3 - Umbau AK Kaiserberg", + "startTimestamp": "2025-03-25T00:00:00+01:00", + "coordinate": { + "lat": 51.43299230348561, + "long": 6.808461539595693 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.03.25 um 00:00 Uhr", + "Ende: 17.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "Abfahrt von der A3: AS Duisburg-Wedau (aus Richtung Stockweg)", + "", + "L\u00e4nge: 1.13 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 - Umbau AK Kaiserberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.80846154, + 51.432992303 + ], + [ + 6.8085805, + 51.433440101 + ], + [ + 6.8086719, + 51.434291601 + ], + [ + 6.8086467, + 51.435011601 + ], + [ + 6.8085949, + 51.435294701 + ], + [ + 6.8085049, + 51.435783601 + ], + [ + 6.8083711, + 51.436255401 + ], + [ + 6.8082027, + 51.436802901 + ], + [ + 6.8079451, + 51.437416801 + ], + [ + 6.8076004, + 51.438035901 + ], + [ + 6.8070494, + 51.438901701 + ], + [ + 6.8069098, + 51.439176001 + ], + [ + 6.8068491, + 51.439296301 + ], + [ + 6.8067947, + 51.439407401 + ], + [ + 6.8067472, + 51.439513201 + ], + [ + 6.8067176, + 51.439598001 + ], + [ + 6.8066885, + 51.439696801 + ], + [ + 6.8066639, + 51.439794901 + ], + [ + 6.80665, + 51.439899701 + ], + [ + 6.8066425, + 51.439968801 + ], + [ + 6.8066378, + 51.440050701 + ], + [ + 6.8066385, + 51.440100001 + ], + [ + 6.8066436, + 51.440152601 + ], + [ + 6.8066593, + 51.440245901 + ], + [ + 6.8066774, + 51.440328601 + ], + [ + 6.8067001, + 51.440403601 + ], + [ + 6.8067216, + 51.440462801 + ], + [ + 6.8067605, + 51.440545201 + ], + [ + 6.8068035, + 51.440630801 + ], + [ + 6.8068564, + 51.440715701 + ], + [ + 6.8069081, + 51.440794301 + ], + [ + 6.8069664, + 51.440869901 + ], + [ + 6.8070239, + 51.440933601 + ], + [ + 6.8071045, + 51.441012901 + ], + [ + 6.8071762, + 51.441072601 + ], + [ + 6.8072781, + 51.441148001 + ], + [ + 6.8073828, + 51.441211801 + ], + [ + 6.8074966, + 51.441272601 + ], + [ + 6.8076329, + 51.441333001 + ], + [ + 6.8077999, + 51.441398601 + ], + [ + 6.8079481, + 51.441444601 + ], + [ + 6.8080897, + 51.441480201 + ], + [ + 6.808347, + 51.441542001 + ], + [ + 6.8086853, + 51.441613601 + ], + [ + 6.8089653, + 51.441645301 + ], + [ + 6.8092561, + 51.441671601 + ], + [ + 6.8096278, + 51.441693301 + ], + [ + 6.809797338, + 51.44169679 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-12-16_05-00-00-000.devi-zus.2025-08-20_00-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.065611326076535,8.728114017289442,50.065068933451066,8.729463566799856", + "point": "50.065611326076535,8.728114017289442", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Offenbacher Kreuz (aus Richtung Offenbach)", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-12-16T05:00:00+01:00", + "coordinate": { + "lat": 50.065611326076535, + "long": 8.728114017289442 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.12.25 um 05:00 Uhr", + "Ende: 30.04.27 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Auffahrt auf die A3: AK Offenbacher Kreuz (aus Richtung Offenbach)", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.728114017, + 50.065611326 + ], + [ + 8.7282369, + 50.065683801 + ], + [ + 8.7283233, + 50.065725001 + ], + [ + 8.7284124, + 50.065757801 + ], + [ + 8.7285206, + 50.065782201 + ], + [ + 8.7286179, + 50.065795501 + ], + [ + 8.7287139, + 50.065805701 + ], + [ + 8.7288105, + 50.065808101 + ], + [ + 8.7288926, + 50.065800101 + ], + [ + 8.7289824, + 50.065789501 + ], + [ + 8.7290671, + 50.065771401 + ], + [ + 8.7291446, + 50.065747901 + ], + [ + 8.7292057, + 50.065719701 + ], + [ + 8.7292665, + 50.065691601 + ], + [ + 8.7293303, + 50.065651401 + ], + [ + 8.7293874, + 50.065611801 + ], + [ + 8.7294318, + 50.065572101 + ], + [ + 8.7294737, + 50.065523201 + ], + [ + 8.7295106, + 50.065463901 + ], + [ + 8.7295383, + 50.065395801 + ], + [ + 8.7295511, + 50.065330501 + ], + [ + 8.7295475, + 50.065259801 + ], + [ + 8.7295345, + 50.065192701 + ], + [ + 8.7295061, + 50.065129401 + ], + [ + 8.7294651, + 50.065070401 + ], + [ + 8.729463567, + 50.065068933 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-12-16_05-00-00-000.devi-zus.2025-08-20_00-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.063874719011025,8.728636001504658,50.06387990944795,8.72711301401906", + "point": "50.063874719011025,8.728636001504658", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Offenbacher Kreuz (aus Richtung Frankfurt am Main-S\u00fcd)", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-12-16T05:00:00+01:00", + "coordinate": { + "lat": 50.063874719011025, + "long": 8.728636001504658 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.12.25 um 05:00 Uhr", + "Ende: 30.04.27 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Abfahrt von der A3: AK Offenbacher Kreuz (aus Richtung Frankfurt am Main-S\u00fcd)", + "", + "L\u00e4nge: 0.19 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.728636002, + 50.063874719 + ], + [ + 8.7286376, + 50.063865401 + ], + [ + 8.7286425, + 50.063796401 + ], + [ + 8.7286349, + 50.063737801 + ], + [ + 8.728604, + 50.063674701 + ], + [ + 8.728571, + 50.063615801 + ], + [ + 8.7285329, + 50.063564401 + ], + [ + 8.728484, + 50.063522301 + ], + [ + 8.728429, + 50.063476801 + ], + [ + 8.7283553, + 50.063430701 + ], + [ + 8.7282832, + 50.063400101 + ], + [ + 8.7282068, + 50.063373601 + ], + [ + 8.7281091, + 50.063347901 + ], + [ + 8.7280295, + 50.063335601 + ], + [ + 8.7279004, + 50.063321801 + ], + [ + 8.7277926, + 50.063324501 + ], + [ + 8.727692, + 50.063334001 + ], + [ + 8.7276163, + 50.063348101 + ], + [ + 8.7275318, + 50.063367701 + ], + [ + 8.727436, + 50.063401701 + ], + [ + 8.7273804, + 50.063429701 + ], + [ + 8.7273251, + 50.063461201 + ], + [ + 8.7272711, + 50.063493401 + ], + [ + 8.7272174, + 50.063531801 + ], + [ + 8.7271676, + 50.063589801 + ], + [ + 8.7271339, + 50.063642301 + ], + [ + 8.7271096, + 50.063703501 + ], + [ + 8.7270952, + 50.063760501 + ], + [ + 8.7271028, + 50.063831201 + ], + [ + 8.727113014, + 50.063879909 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-12-16_05-00-00-000.devi-zus.2025-08-20_00-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.06031179655692,8.725255934214095,50.062749077283755,8.726661471227873", + "point": "50.06031179655692,8.725255934214095", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Offenbacher Kreuz (aus Richtung Neu-Isenburg)", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-12-16T05:00:00+01:00", + "coordinate": { + "lat": 50.06031179655692, + "long": 8.725255934214095 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.12.25 um 05:00 Uhr", + "Ende: 30.04.27 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Abfahrt von der A661: AK Offenbacher Kreuz (aus Richtung Neu-Isenburg)", + "", + "L\u00e4nge: 0.29 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.725255934, + 50.060311797 + ], + [ + 8.7253962, + 50.060578301 + ], + [ + 8.7255346, + 50.060863301 + ], + [ + 8.7256569, + 50.061118201 + ], + [ + 8.7258558, + 50.061533401 + ], + [ + 8.7262091, + 50.062212901 + ], + [ + 8.7263172, + 50.062357901 + ], + [ + 8.7263976, + 50.062461601 + ], + [ + 8.7264562, + 50.062541801 + ], + [ + 8.7265469, + 50.062645301 + ], + [ + 8.726661471, + 50.062749077 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-bs.2026-01-26_00-00-00-000.devi-zus.2025-04-06_00-00-00-000.de75", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53687960742974,6.832177803378713,51.53538016254832,6.82858196566227", + "point": "51.53687960742974,6.832177803378713", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 473.40", + "title": "A3 Ersatzneubau DB-Bauwerk (Betuwe)", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.53687960742974, + "long": 6.832177803378713 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "Von Auffahrt auf die A2 W nach A2: km 473.40", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.832177803, + 51.536879607 + ], + [ + 6.8317036, + 51.536718301 + ], + [ + 6.8310233, + 51.536451201 + ], + [ + 6.8300427, + 51.536014501 + ], + [ + 6.828581966, + 51.535380163 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-bs.2026-04-13_05-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de142", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.68952153537154,7.2725566192487925,50.69190546341562,7.269178049844225", + "point": "50.68952153537154,7.2725566192487925", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Siebengebirge (aus Richtung Logebachtal) nach A3", + "title": "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.68952153537154, + "long": 7.2725566192487925 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 28.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.35)", + "", + "Von Auffahrt auf die A3: AS Siebengebirge (aus Richtung Logebachtal) nach A3: Frankfurt -> K\u00f6ln, zwischen AS Siebengebirge und 10.3 km vor AK Bonn/Siegburg", + "", + "L\u00e4nge: 0.37 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.272556619, + 50.689521535 + ], + [ + 7.2724687, + 50.689516001 + ], + [ + 7.2722851, + 50.689518301 + ], + [ + 7.2721211, + 50.689536801 + ], + [ + 7.2719608, + 50.689571001 + ], + [ + 7.271754, + 50.689628101 + ], + [ + 7.271471, + 50.689755401 + ], + [ + 7.271198, + 50.689876101 + ], + [ + 7.2708893, + 50.690180701 + ], + [ + 7.269228, + 50.691855701 + ], + [ + 7.26917805, + 50.691905463 + ] + ] + } + }, + { + "identifier": "2023-000213--vi-bs.2026-04-13_05-00-00-000.devi-zus.2019-07-11_09-00-00-000.f_001.de140", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.686540772331185,7.274517795936994,50.68945618320466,7.272765610250893", + "point": "50.686540772331185,7.274517795936994", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> K\u00f6ln", + "title": "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.686540772331185, + "long": 7.274517795936994 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 28.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.35)", + "", + "Von A3: Frankfurt -> K\u00f6ln, zwischen 0.1 km hinter AS Siebengebirge und AK Bonn/Siegburg nach Abfahrt von der A3: AS Siebengebirge (aus Richtung Logebachtal)", + "", + "L\u00e4nge: 0.37 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Erhaltungsentwurf Abs. IV AK Bonn_Siegburg - Siebengebirge" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.274517796, + 50.686540772 + ], + [ + 7.2743816, + 50.686676701 + ], + [ + 7.2725082, + 50.688557701 + ], + [ + 7.2724153, + 50.688826501 + ], + [ + 7.2723886, + 50.688947801 + ], + [ + 7.2723886, + 50.689052201 + ], + [ + 7.2724224, + 50.689154901 + ], + [ + 7.2724748, + 50.689242001 + ], + [ + 7.2725504, + 50.689321701 + ], + [ + 7.2726603, + 50.689401401 + ], + [ + 7.27276561, + 50.689456183 + ] + ] + } + } + ] + }, + "A4": { + "roadworks": [ + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de93", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80358391161782,6.084563771972643,50.80367511958786,6.140189036523035", + "point": "50.80358391161782,6.084563771972643", + "startLcPosition": "2", + "impact": { + "lower": "Aachen", + "upper": "Aachen-Laurensberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | Aachen-Laurensberg - Aachen", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.80358391161782, + "long": 6.084563771972643 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen 0.6 km hinter AS Aachen-Laurensberg und 2.2 km vor AK Aachen", + "", + "L\u00e4nge: 3.95 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.084563772, + 50.803583912 + ], + [ + 6.0853745, + 50.803614101 + ], + [ + 6.0914387, + 50.803895701 + ], + [ + 6.0923596, + 50.803938501 + ], + [ + 6.096591, + 50.804132501 + ], + [ + 6.0996409, + 50.804268701 + ], + [ + 6.1016258, + 50.804331301 + ], + [ + 6.1046298, + 50.804400701 + ], + [ + 6.1067177, + 50.804418601 + ], + [ + 6.107368, + 50.804414201 + ], + [ + 6.1083561, + 50.804396601 + ], + [ + 6.109136, + 50.804371801 + ], + [ + 6.1102081, + 50.804329901 + ], + [ + 6.111018, + 50.804281201 + ], + [ + 6.1117876, + 50.804249501 + ], + [ + 6.1124539, + 50.804200901 + ], + [ + 6.1130614, + 50.804157201 + ], + [ + 6.1152622, + 50.803973401 + ], + [ + 6.1197177, + 50.803507801 + ], + [ + 6.1201061, + 50.803469101 + ], + [ + 6.1209857, + 50.803368701 + ], + [ + 6.1239653, + 50.803058201 + ], + [ + 6.1259385, + 50.802885501 + ], + [ + 6.1265062, + 50.802845601 + ], + [ + 6.1275618, + 50.802771501 + ], + [ + 6.1286731, + 50.802717001 + ], + [ + 6.129802, + 50.802698401 + ], + [ + 6.130563, + 50.802701201 + ], + [ + 6.1310699, + 50.802714501 + ], + [ + 6.1319831, + 50.802748801 + ], + [ + 6.1323316, + 50.802769001 + ], + [ + 6.1334156, + 50.802842401 + ], + [ + 6.1338484, + 50.802878001 + ], + [ + 6.1345618, + 50.802946401 + ], + [ + 6.1346833, + 50.802956301 + ], + [ + 6.1354083, + 50.803049701 + ], + [ + 6.1360792, + 50.803133501 + ], + [ + 6.1374453, + 50.803312301 + ], + [ + 6.139103, + 50.803544701 + ], + [ + 6.140189037, + 50.80367512 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de79", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.803862546881575,6.076138405291427,50.80358496624027,6.084592091076382", + "point": "50.803862546881575,6.076138405291427", + "startLcPosition": "2", + "impact": { + "lower": "Aachen-Zentrum", + "upper": "Aachen-Laurensberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | Aachen-Laurensberg - Aachen-Zentrum", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.803862546881575, + "long": 6.076138405291427 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen AS Aachen-Laurensberg und 1.8 km vor AS Aachen-Zentrum", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.076138405, + 50.803862547 + ], + [ + 6.0764501, + 50.803818001 + ], + [ + 6.0774826, + 50.803709701 + ], + [ + 6.0778658, + 50.803674401 + ], + [ + 6.0782865, + 50.803639901 + ], + [ + 6.0790995, + 50.803576801 + ], + [ + 6.0797712, + 50.803544601 + ], + [ + 6.0804365, + 50.803523301 + ], + [ + 6.0809781, + 50.803514901 + ], + [ + 6.0815155, + 50.803511901 + ], + [ + 6.0824975, + 50.803520001 + ], + [ + 6.0830976, + 50.803529301 + ], + [ + 6.084592091, + 50.803584966 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de77", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80371270083375,6.084581020096275,50.80398812383634,6.0761808714504975", + "point": "50.80371270083375,6.084581020096275", + "startLcPosition": "3", + "impact": { + "lower": "Aachen-Laurensberg", + "upper": "Aachen-Zentrum", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | Aachen-Zentrum - Aachen-Laurensberg", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.80371270083375, + "long": 6.084581020096275 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 1.8 km hinter AS Aachen-Zentrum und AS Aachen-Laurensberg", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.08458102, + 50.803712701 + ], + [ + 6.0830723, + 50.803663601 + ], + [ + 6.0826283, + 50.803651301 + ], + [ + 6.0821779, + 50.803644401 + ], + [ + 6.0813351, + 50.803641401 + ], + [ + 6.0806663, + 50.803648001 + ], + [ + 6.0799932, + 50.803666901 + ], + [ + 6.0793487, + 50.803693101 + ], + [ + 6.0786913, + 50.803732801 + ], + [ + 6.0777844, + 50.803807501 + ], + [ + 6.0769249, + 50.803891701 + ], + [ + 6.076180871, + 50.803988124 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de95", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.8038044726041,6.14015114442195,50.80371177905339,6.084552690482973", + "point": "50.8038044726041,6.14015114442195", + "startLcPosition": "5", + "impact": { + "lower": "Aachen-Laurensberg", + "upper": "Aachen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | Aachen - Aachen-Laurensberg", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.8038044726041, + "long": 6.14015114442195 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 2.2 km hinter AK Aachen und 0.6 km vor AS Aachen-Laurensberg", + "", + "L\u00e4nge: 3.95 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.140151144, + 50.803804473 + ], + [ + 6.1391909, + 50.803693401 + ], + [ + 6.1385411, + 50.803622701 + ], + [ + 6.1371598, + 50.803431101 + ], + [ + 6.1359105, + 50.803252501 + ], + [ + 6.135309, + 50.803159901 + ], + [ + 6.1347423, + 50.803085001 + ], + [ + 6.1340208, + 50.803005001 + ], + [ + 6.1329833, + 50.802937001 + ], + [ + 6.1320655, + 50.802871901 + ], + [ + 6.1311062, + 50.802826401 + ], + [ + 6.1306363, + 50.802818901 + ], + [ + 6.1298266, + 50.802807901 + ], + [ + 6.1286607, + 50.802826701 + ], + [ + 6.1275326, + 50.802878501 + ], + [ + 6.1265831, + 50.802947501 + ], + [ + 6.1239972, + 50.803161401 + ], + [ + 6.120141, + 50.803580301 + ], + [ + 6.1197552, + 50.803627101 + ], + [ + 6.1153196, + 50.804085401 + ], + [ + 6.1137183, + 50.804224301 + ], + [ + 6.1130809, + 50.804276401 + ], + [ + 6.1124597, + 50.804320601 + ], + [ + 6.1111096, + 50.804405001 + ], + [ + 6.1102955, + 50.804443401 + ], + [ + 6.1102145, + 50.804449501 + ], + [ + 6.1093139, + 50.804486901 + ], + [ + 6.1083972, + 50.804514201 + ], + [ + 6.1072745, + 50.804531901 + ], + [ + 6.1060203, + 50.804532401 + ], + [ + 6.1048509, + 50.804525201 + ], + [ + 6.1034282, + 50.804501401 + ], + [ + 6.0996283, + 50.804383301 + ], + [ + 6.0965783, + 50.804247701 + ], + [ + 6.0923325, + 50.804052701 + ], + [ + 6.0914174, + 50.804010401 + ], + [ + 6.085331, + 50.803737101 + ], + [ + 6.08455269, + 50.803711779 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de97", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80407340689434,6.143657477786783,50.80381092809107,6.140206956076924", + "point": "50.80407340689434,6.143657477786783", + "startLcPosition": "5", + "impact": { + "lower": "Toresberg", + "upper": "Aachen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | Aachen - Toresberg", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.80407340689434, + "long": 6.143657477786783 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 1.9 km hinter AK Aachen und 0.2 km vor Toresberg", + "", + "L\u00e4nge: 0.24 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.143657478, + 50.804073407 + ], + [ + 6.1435481, + 50.804070601 + ], + [ + 6.1427375, + 50.804033601 + ], + [ + 6.1419431, + 50.803978301 + ], + [ + 6.1411053, + 50.803910801 + ], + [ + 6.1402292, + 50.803813501 + ], + [ + 6.140206956, + 50.803810928 + ] + ] + } + }, + { + "identifier": "2025-027720--vi-bs.2026-03-30_08-00-00-000.devi-zus.2025-06-17_09-00-00-000_017.de142", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.835383375715224,6.396538702526701,50.83527347749424,6.4291851905835244", + "point": "50.835383375715224,6.396538702526701", + "startLcPosition": "10", + "impact": { + "lower": "D\u00fcren", + "upper": "Langerwehe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | Langerwehe - D\u00fcren", + "coordinate": { + "lat": 50.835383375715224, + "long": 6.396538702526701 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 19:00 Uhr", + "10.04.26 von 08:00 bis 19:00 Uhr", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen 0.9 km hinter AS Langerwehe und 1.7 km vor AS D\u00fcren", + "", + "L\u00e4nge: 2.3 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "Wiegeanlage Rur Scholle S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.396538703, + 50.835383376 + ], + [ + 6.4014894, + 50.835420001 + ], + [ + 6.4042696, + 50.835411001 + ], + [ + 6.4092665, + 50.835385201 + ], + [ + 6.410373, + 50.835384301 + ], + [ + 6.4172106, + 50.835334201 + ], + [ + 6.4197628, + 50.835322801 + ], + [ + 6.4261405, + 50.835294401 + ], + [ + 6.4284598, + 50.835273401 + ], + [ + 6.429185191, + 50.835273477 + ] + ] + } + }, + { + "identifier": "2023-000832--vi-bs.2023-09-30_15-00-00-000.devi-zus.2016-08-30_05-00-00-000.f_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.91588283064963,6.743412689512867,50.925046299574085,6.754795694526481", + "point": "50.91588283064963,6.743412689512867", + "startLcPosition": "16", + "impact": { + "lower": "Frechen", + "upper": "Kerpen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | Kerpen - Frechen", + "startTimestamp": "2023-09-30T15:00:00+02:00", + "coordinate": { + "lat": 50.91588283064963, + "long": 6.743412689512867 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.23 um 15:00 Uhr", + "Ende: 30.11.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen 4.2 km hinter AK Kerpen und 1.5 km vor Frechen", + "", + "L\u00e4nge: 1.31 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9.35 m", + "", + "AS K\u00f6nigsdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.74341269, + 50.915882831 + ], + [ + 6.7435376, + 50.916019501 + ], + [ + 6.7450818, + 50.917701201 + ], + [ + 6.7457571, + 50.918436501 + ], + [ + 6.7463774, + 50.919108001 + ], + [ + 6.7469678, + 50.919733101 + ], + [ + 6.7474, + 50.920176801 + ], + [ + 6.7478494, + 50.920607001 + ], + [ + 6.7485144, + 50.921188001 + ], + [ + 6.7492136, + 50.921756801 + ], + [ + 6.7501413, + 50.922442701 + ], + [ + 6.750632, + 50.922784401 + ], + [ + 6.7511613, + 50.923123301 + ], + [ + 6.7520291, + 50.923637301 + ], + [ + 6.752927, + 50.924145901 + ], + [ + 6.7533976, + 50.924380301 + ], + [ + 6.7547712, + 50.925035701 + ], + [ + 6.754795695, + 50.9250463 + ] + ] + } + }, + { + "identifier": "2023-000832--vi-bs.2023-09-30_15-00-00-000.devi-zus.2016-08-30_05-00-00-000.f_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.92512037037034,6.754593644165948,50.91617105066702,6.743419242411128", + "point": "50.92512037037034,6.754593644165948", + "startLcPosition": "17", + "impact": { + "lower": "Kerpen", + "upper": "Frechen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | Frechen - Kerpen", + "startTimestamp": "2023-09-30T15:00:00+02:00", + "coordinate": { + "lat": 50.92512037037034, + "long": 6.754593644165948 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.23 um 15:00 Uhr", + "Ende: 30.11.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 1.5 km hinter Frechen und 4.2 km vor AK Kerpen", + "", + "L\u00e4nge: 1.28 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.6 m", + "", + "AS K\u00f6nigsdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.754593644, + 50.92512037 + ], + [ + 6.7545788, + 50.925113801 + ], + [ + 6.7537166, + 50.924703601 + ], + [ + 6.7523411, + 50.924013901 + ], + [ + 6.75099, + 50.923214601 + ], + [ + 6.7500495, + 50.922596401 + ], + [ + 6.7489563, + 50.921797101 + ], + [ + 6.7476732, + 50.920686201 + ], + [ + 6.7467231, + 50.919755101 + ], + [ + 6.7462425, + 50.919250201 + ], + [ + 6.7459716, + 50.918960101 + ], + [ + 6.745535, + 50.918482401 + ], + [ + 6.744933, + 50.917826301 + ], + [ + 6.744435, + 50.917285501 + ], + [ + 6.743419242, + 50.916171051 + ] + ] + } + }, + { + "identifier": "2024-046557--vi-bs.2025-09-22_05-00-00-000.devi-zus.2024-10-19_15-00-00-000.f.de130", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.90301632202334,6.899206021644653,50.89933362510852,6.907256919815961", + "point": "50.90301632202334,6.899206021644653", + "startLcPosition": "19", + "impact": { + "lower": "K\u00f6ln-Klettenberg", + "upper": "K\u00f6ln-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | K\u00f6ln-West - K\u00f6ln-Klettenberg", + "startTimestamp": "2025-09-22T05:00:00+02:00", + "coordinate": { + "lat": 50.90301632202334, + "long": 6.899206021644653 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.09.25 um 05:00 Uhr", + "Ende: 31.05.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen 4.6 km hinter AK K\u00f6ln-West und 0.2 km vor AS K\u00f6ln-Klettenberg", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 8.75 m", + "", + "BW Eifeltor" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.899206022, + 50.903016322 + ], + [ + 6.9007991, + 50.902296701 + ], + [ + 6.903348, + 50.901143101 + ], + [ + 6.9038645, + 50.900907201 + ], + [ + 6.90725692, + 50.899333625 + ] + ] + } + }, + { + "identifier": "2024-046557--vi-bs.2025-09-22_05-00-00-000.devi-zus.2024-10-19_15-00-00-000.f.de132", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.89933362510852,6.907256919815961,50.89725584286636,6.911879512376591", + "point": "50.89933362510852,6.907256919815961", + "startLcPosition": "19", + "impact": { + "lower": "K\u00f6ln-Eifeltor", + "upper": "K\u00f6ln-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | K\u00f6ln-West - K\u00f6ln-Eifeltor", + "startTimestamp": "2025-09-22T05:00:00+02:00", + "coordinate": { + "lat": 50.89933362510852, + "long": 6.907256919815961 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.09.25 um 05:00 Uhr", + "Ende: 31.05.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen 5.3 km hinter AK K\u00f6ln-West und 1.1 km vor AS K\u00f6ln-Eifeltor", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "BW Eifeltor" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.90725692, + 50.899333625 + ], + [ + 6.9077627, + 50.899099001 + ], + [ + 6.9080538, + 50.898963901 + ], + [ + 6.9087542, + 50.898651701 + ], + [ + 6.9091509, + 50.898465101 + ], + [ + 6.909569, + 50.898282901 + ], + [ + 6.9112836, + 50.897529001 + ], + [ + 6.911879512, + 50.897255843 + ] + ] + } + }, + { + "identifier": "2024-046557--vi-bs.2025-09-22_05-00-00-000.devi-zus.2024-10-19_15-00-00-000.f.de140", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.89725584286636,6.911879512376591,50.8919361284652,6.923586573318008", + "point": "50.89725584286636,6.911879512376591", + "startLcPosition": "20", + "impact": { + "lower": "K\u00f6ln-Eifeltor", + "upper": "K\u00f6ln-Klettenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "ARROW_UP", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | K\u00f6ln-Klettenberg - K\u00f6ln-Eifeltor", + "startTimestamp": "2025-09-22T05:00:00+02:00", + "coordinate": { + "lat": 50.89725584286636, + "long": 6.911879512376591 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.09.25 um 05:00 Uhr", + "Ende: 31.05.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen 0.2 km hinter AS K\u00f6ln-Klettenberg und 0.1 km vor AS K\u00f6ln-Eifeltor", + "", + "L\u00e4nge: 1.01 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "BW Eifeltor" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.911879512, + 50.897255843 + ], + [ + 6.9140508, + 50.896260501 + ], + [ + 6.919994, + 50.893554001 + ], + [ + 6.9213247, + 50.892948001 + ], + [ + 6.923586573, + 50.891936128 + ] + ] + } + }, + { + "identifier": "2023-000849--vi-bs.2026-03-24_05-00-00-000.devi-zus.2021-08-13_05-00-00-000.f_001.de191", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.890822277431894,6.980378788402058,50.903416325386935,6.995166215628303", + "point": "50.890822277431894,6.980378788402058", + "startLcPosition": "22", + "impact": { + "lower": "K\u00f6ln-Poll", + "upper": "K\u00f6ln-S\u00fcd", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | K\u00f6ln-S\u00fcd - K\u00f6ln-Poll", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 50.890822277431894, + "long": 6.980378788402058 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.26)", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen 1.1 km hinter AK K\u00f6ln-S\u00fcd und 0.9 km vor AS K\u00f6ln-Poll", + "", + "L\u00e4nge: 1.75 km | Maximale Durchfahrtsbreite: 9.25 m", + "", + "Rheinbr\u00fccke Rodenkirchen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.980378788, + 50.890822277 + ], + [ + 6.9814785, + 50.891625001 + ], + [ + 6.9819692, + 50.892021101 + ], + [ + 6.9824645, + 50.892437801 + ], + [ + 6.9834561, + 50.893315201 + ], + [ + 6.9843082, + 50.894085701 + ], + [ + 6.9850349, + 50.894728001 + ], + [ + 6.9882622, + 50.897556501 + ], + [ + 6.9907779, + 50.899730401 + ], + [ + 6.9930475, + 50.901680901 + ], + [ + 6.9945781, + 50.902942601 + ], + [ + 6.995166216, + 50.903416325 + ] + ] + } + }, + { + "identifier": "2024-046557--vi-bs.2025-09-22_05-00-00-000.devi-zus.2024-10-19_15-00-00-000.f.de138", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.89034250355886,6.9274899180373595,50.89466723177656,6.918006274816767", + "point": "50.89034250355886,6.9274899180373595", + "startLcPosition": "22", + "impact": { + "lower": "K\u00f6ln-Klettenberg", + "upper": "K\u00f6ln-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | K\u00f6ln-S\u00fcd - K\u00f6ln-Klettenberg", + "startTimestamp": "2025-09-22T05:00:00+02:00", + "coordinate": { + "lat": 50.89034250355886, + "long": 6.9274899180373595 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.09.25 um 05:00 Uhr", + "Ende: 31.05.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 3.1 km hinter AK K\u00f6ln-S\u00fcd und 0.7 km vor AS K\u00f6ln-Klettenberg", + "", + "L\u00e4nge: 0.82 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "BW Eifeltor" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.927489918, + 50.890342504 + ], + [ + 6.9265085, + 50.890786601 + ], + [ + 6.9253752, + 50.891299301 + ], + [ + 6.9249399, + 50.891498301 + ], + [ + 6.9213814, + 50.893129801 + ], + [ + 6.9201066, + 50.893714401 + ], + [ + 6.918006275, + 50.894667232 + ] + ] + } + }, + { + "identifier": "2023-000849--vi-bs.2026-03-24_05-00-00-000.devi-zus.2021-08-13_05-00-00-000.f_001.de189", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.8867923799586,6.972665852921912,50.890822277431894,6.980378788402058", + "point": "50.8867923799586,6.972665852921912", + "startLcPosition": "22", + "impact": { + "lower": "Rodenkirchener Br\u00fccke", + "upper": "K\u00f6ln-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | K\u00f6ln-S\u00fcd - Rodenkirchener Br\u00fccke", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 50.8867923799586, + "long": 6.972665852921912 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.26)", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen 0.3 km hinter AK K\u00f6ln-S\u00fcd und 1.2 km vor Rodenkirchener Br\u00fccke", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "Rheinbr\u00fccke Rodenkirchen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.972665853, + 50.88679238 + ], + [ + 6.9733239, + 50.887043801 + ], + [ + 6.975169, + 50.887819501 + ], + [ + 6.9754443, + 50.887948801 + ], + [ + 6.9757748, + 50.888104901 + ], + [ + 6.976198, + 50.888313901 + ], + [ + 6.9767666, + 50.888604501 + ], + [ + 6.9775753, + 50.889037601 + ], + [ + 6.978842, + 50.889782501 + ], + [ + 6.9797949, + 50.890417501 + ], + [ + 6.9802558, + 50.890732501 + ], + [ + 6.980378788, + 50.890822277 + ] + ] + } + }, + { + "identifier": "2024-046557--vi-bs.2025-09-22_05-00-00-000.devi-zus.2024-10-19_15-00-00-000.f.de136", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.888588395373255,6.931611955158856,50.89034250355886,6.9274899180373595", + "point": "50.888588395373255,6.931611955158856", + "startLcPosition": "22", + "impact": { + "lower": "K\u00f6ln-Eifeltor", + "upper": "K\u00f6ln-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | K\u00f6ln-S\u00fcd - K\u00f6ln-Eifeltor", + "startTimestamp": "2025-09-22T05:00:00+02:00", + "coordinate": { + "lat": 50.888588395373255, + "long": 6.931611955158856 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.09.25 um 05:00 Uhr", + "Ende: 31.05.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 2.7 km hinter AK K\u00f6ln-S\u00fcd und 0.2 km vor AS K\u00f6ln-Eifeltor", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "BW Eifeltor" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.931611955, + 50.888588395 + ], + [ + 6.9296717, + 50.889370801 + ], + [ + 6.9286224, + 50.889837601 + ], + [ + 6.9282146, + 50.890020301 + ], + [ + 6.9276055, + 50.890290201 + ], + [ + 6.927489918, + 50.890342504 + ] + ] + } + }, + { + "identifier": "2024-046557--vi-bs.2025-09-22_05-00-00-000.devi-zus.2024-10-19_15-00-00-000.f.de134", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.885770427331806,6.940486012580754,50.888588395373255,6.931611955158856", + "point": "50.885770427331806,6.940486012580754", + "startLcPosition": "22", + "impact": { + "lower": "K\u00f6ln-Eifeltor", + "upper": "K\u00f6ln-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | K\u00f6ln-S\u00fcd - K\u00f6ln-Eifeltor", + "startTimestamp": "2025-09-22T05:00:00+02:00", + "coordinate": { + "lat": 50.885770427331806, + "long": 6.940486012580754 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.09.25 um 05:00 Uhr", + "Ende: 31.05.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 2.0 km hinter AK K\u00f6ln-S\u00fcd und 0.5 km vor AS K\u00f6ln-Eifeltor", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "BW Eifeltor" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.940486013, + 50.885770427 + ], + [ + 6.9382829, + 50.886368301 + ], + [ + 6.9357576, + 50.887107001 + ], + [ + 6.9335043, + 50.887881201 + ], + [ + 6.9320149, + 50.888425901 + ], + [ + 6.931611955, + 50.888588395 + ] + ] + } + }, + { + "identifier": "2023-000849--vi-bs.2026-03-24_05-00-00-000.devi-zus.2021-08-13_05-00-00-000.f_001.de195", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.903416325386935,6.995166215628303,50.915256378180565,7.019090214876043", + "point": "50.903416325386935,6.995166215628303", + "startLcPosition": "23", + "impact": { + "lower": "K\u00f6ln-Gremberg", + "upper": "Rodenkirchener Br\u00fccke", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> K\u00f6ln", + "title": "A4 | Rodenkirchener Br\u00fccke - K\u00f6ln-Gremberg", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 50.903416325386935, + "long": 6.995166215628303 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.26)", + "", + "A4: Heerlen/Aachen -> K\u00f6ln, zwischen 0.5 km hinter Rodenkirchener Br\u00fccke und 0.6 km vor AK K\u00f6ln-Gremberg", + "", + "L\u00e4nge: 2.21 km | Maximale Durchfahrtsbreite: 9 m", + "", + "Rheinbr\u00fccke Rodenkirchen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.995166216, + 50.903416325 + ], + [ + 6.9972901, + 50.905127001 + ], + [ + 6.9983481, + 50.906038901 + ], + [ + 6.9991295, + 50.906705101 + ], + [ + 7.0005677, + 50.907924201 + ], + [ + 7.001197, + 50.908443101 + ], + [ + 7.0018025, + 50.908927701 + ], + [ + 7.0026313, + 50.909536101 + ], + [ + 7.0031257, + 50.909866301 + ], + [ + 7.0035222, + 50.910120201 + ], + [ + 7.0041536, + 50.910504201 + ], + [ + 7.0048625, + 50.910912501 + ], + [ + 7.0063436, + 50.911687301 + ], + [ + 7.0065185, + 50.911769401 + ], + [ + 7.007406, + 50.912185501 + ], + [ + 7.0081218, + 50.912486201 + ], + [ + 7.0088646, + 50.912778201 + ], + [ + 7.0095203, + 50.913020801 + ], + [ + 7.0101455, + 50.913238801 + ], + [ + 7.0114644, + 50.913660201 + ], + [ + 7.0126507, + 50.913993601 + ], + [ + 7.0133912, + 50.914176501 + ], + [ + 7.0141744, + 50.914354601 + ], + [ + 7.0148634, + 50.914505301 + ], + [ + 7.0156911, + 50.914666201 + ], + [ + 7.0181348, + 50.915093101 + ], + [ + 7.019090215, + 50.915256378 + ] + ] + } + }, + { + "identifier": "2023-000849--vi-bs.2026-03-24_05-00-00-000.devi-zus.2021-08-13_05-00-00-000.f_001.de193", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.90352496656914,6.9949504282570185,50.89091512105053,6.980206644683754", + "point": "50.90352496656914,6.9949504282570185", + "startLcPosition": "24", + "impact": { + "lower": "K\u00f6ln-S\u00fcd", + "upper": "K\u00f6ln-Poll", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | K\u00f6ln-Poll - K\u00f6ln-S\u00fcd", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 50.90352496656914, + "long": 6.9949504282570185 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.26)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 0.9 km hinter AS K\u00f6ln-Poll und 1.0 km vor AK K\u00f6ln-S\u00fcd", + "", + "L\u00e4nge: 1.75 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Rheinbr\u00fccke Rodenkirchen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.994950428, + 50.903524967 + ], + [ + 6.9946642, + 50.903301601 + ], + [ + 6.9928165, + 50.901787301 + ], + [ + 6.9880103, + 50.897672901 + ], + [ + 6.9857229, + 50.895611201 + ], + [ + 6.9849535, + 50.894915601 + ], + [ + 6.9842063, + 50.894233501 + ], + [ + 6.9832165, + 50.893358101 + ], + [ + 6.9822039, + 50.892487901 + ], + [ + 6.9816923, + 50.892053901 + ], + [ + 6.9811909, + 50.891658101 + ], + [ + 6.980206645, + 50.890915121 + ] + ] + } + }, + { + "identifier": "2023-000849--vi-bs.2026-03-24_05-00-00-000.devi-zus.2021-08-13_05-00-00-000.f_001.de197", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.91539685843977,7.019029663025418,50.90352496656914,6.9949504282570185", + "point": "50.91539685843977,7.019029663025418", + "startLcPosition": "25", + "impact": { + "lower": "Rodenkirchener Br\u00fccke", + "upper": "K\u00f6ln-Gremberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | K\u00f6ln-Gremberg - Rodenkirchener Br\u00fccke", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 50.91539685843977, + "long": 7.019029663025418 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.26)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 0.6 km hinter AK K\u00f6ln-Gremberg und 0.5 km vor Rodenkirchener Br\u00fccke", + "", + "L\u00e4nge: 2.21 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "Rheinbr\u00fccke Rodenkirchen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.019029663, + 50.915396858 + ], + [ + 7.0179608, + 50.915211101 + ], + [ + 7.015546, + 50.914790101 + ], + [ + 7.0147937, + 50.914647401 + ], + [ + 7.0140764, + 50.914491101 + ], + [ + 7.0132334, + 50.914294001 + ], + [ + 7.0125635, + 50.914126701 + ], + [ + 7.0113502, + 50.913783601 + ], + [ + 7.0100314, + 50.913366101 + ], + [ + 7.0094088, + 50.913149701 + ], + [ + 7.0088074, + 50.912921301 + ], + [ + 7.0080056, + 50.912609301 + ], + [ + 7.0072441, + 50.912284201 + ], + [ + 7.0063452, + 50.911883801 + ], + [ + 7.006165, + 50.911795701 + ], + [ + 7.0046825, + 50.911032601 + ], + [ + 7.0039731, + 50.910628801 + ], + [ + 7.0033299, + 50.910233701 + ], + [ + 7.0029288, + 50.909981701 + ], + [ + 7.0023515, + 50.909589301 + ], + [ + 7.0015667, + 50.909013301 + ], + [ + 7.0008194, + 50.908432201 + ], + [ + 6.9989902, + 50.906860201 + ], + [ + 6.9974334, + 50.905535701 + ], + [ + 6.9966163, + 50.904850201 + ], + [ + 6.9957173, + 50.904123401 + ], + [ + 6.994950428, + 50.903524967 + ] + ] + } + }, + { + "identifier": "2023-000264--vi-bs.2024-11-22_15-00-00-000.devi-zus.2021-07-31_09-00-00-000.f_001.de130", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.920713686063635,7.050872334282005,50.92543434214917,7.059387206495111", + "point": "50.920713686063635,7.050872334282005", + "startLcPosition": "25", + "impact": { + "lower": "K\u00f6ln-Ost", + "upper": "K\u00f6ln-Gremberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heerlen/Aachen -> Olpe", + "title": "A4 | K\u00f6ln-Gremberg - K\u00f6ln-Ost", + "startTimestamp": "2024-11-22T15:00:00+01:00", + "coordinate": { + "lat": 50.920713686063635, + "long": 7.050872334282005 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.11.24 um 15:00 Uhr", + "Ende: 31.01.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.27)", + "", + "A4: Heerlen/Aachen -> Olpe, zwischen 1.7 km hinter AK K\u00f6ln-Gremberg und 3.3 km vor AK K\u00f6ln-Ost", + "", + "L\u00e4nge: 1.03 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "(DEGES) Umbau AD Heumar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.050872334, + 50.920713686 + ], + [ + 7.051382, + 50.920767401 + ], + [ + 7.0538252, + 50.921078501 + ], + [ + 7.0570916, + 50.921494101 + ], + [ + 7.0573157, + 50.921526501 + ], + [ + 7.0575786, + 50.921570901 + ], + [ + 7.0578247, + 50.921619101 + ], + [ + 7.0580815, + 50.921675301 + ], + [ + 7.0582823, + 50.921726401 + ], + [ + 7.0584717, + 50.921782901 + ], + [ + 7.058628, + 50.921833601 + ], + [ + 7.0587654, + 50.921887101 + ], + [ + 7.0589887, + 50.921985801 + ], + [ + 7.0591168, + 50.922051701 + ], + [ + 7.0592016, + 50.922095201 + ], + [ + 7.0593552, + 50.922186101 + ], + [ + 7.0594839, + 50.922270201 + ], + [ + 7.0596097, + 50.922360301 + ], + [ + 7.0597012, + 50.922435901 + ], + [ + 7.0598045, + 50.922527201 + ], + [ + 7.05986, + 50.922578001 + ], + [ + 7.0599479, + 50.922667901 + ], + [ + 7.0600686, + 50.922809101 + ], + [ + 7.0601345, + 50.922900901 + ], + [ + 7.06019, + 50.922990401 + ], + [ + 7.0602151, + 50.923031001 + ], + [ + 7.0602828, + 50.923163701 + ], + [ + 7.0602974, + 50.923199801 + ], + [ + 7.0603374, + 50.923298801 + ], + [ + 7.0603654, + 50.923386201 + ], + [ + 7.060388, + 50.923474201 + ], + [ + 7.0604051, + 50.923562801 + ], + [ + 7.0604159, + 50.923660101 + ], + [ + 7.0604212, + 50.923740701 + ], + [ + 7.0604231, + 50.923829201 + ], + [ + 7.0604135, + 50.923962401 + ], + [ + 7.0603916, + 50.924095001 + ], + [ + 7.0603566, + 50.924217201 + ], + [ + 7.0603109, + 50.924356601 + ], + [ + 7.0602437, + 50.924501801 + ], + [ + 7.0601612, + 50.924644101 + ], + [ + 7.0600638, + 50.924782601 + ], + [ + 7.059952, + 50.924916801 + ], + [ + 7.0598263, + 50.925045901 + ], + [ + 7.0595693, + 50.925285501 + ], + [ + 7.059387206, + 50.925434342 + ] + ] + } + }, + { + "identifier": "2023-000849--vi-bs.2026-03-24_05-00-00-000.devi-zus.2021-08-13_05-00-00-000.f_001.de199", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.91705965021743,7.028628364807015,50.91539685843977,7.019029663025418", + "point": "50.91705965021743,7.028628364807015", + "startLcPosition": "26", + "impact": { + "lower": "K\u00f6ln-Poll", + "upper": "K\u00f6ln-Heumar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Heerlen/Aachen", + "title": "A4 | K\u00f6ln-Heumar - K\u00f6ln-Poll", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 50.91705965021743, + "long": 7.028628364807015 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.26)", + "", + "A4: K\u00f6ln -> Heerlen/Aachen, zwischen 2.3 km hinter AD K\u00f6ln-Heumar und 1.3 km vor AS K\u00f6ln-Poll", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 10 m", + "", + "Rheinbr\u00fccke Rodenkirchen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.028628365, + 50.91705965 + ], + [ + 7.0274721, + 50.916858301 + ], + [ + 7.0251045, + 50.916457801 + ], + [ + 7.0233951, + 50.916165301 + ], + [ + 7.0226264, + 50.916031501 + ], + [ + 7.0197446, + 50.915521101 + ], + [ + 7.019029663, + 50.915396858 + ] + ] + } + }, + { + "identifier": "2026-017472--vi-bs.2026-04-12_07-00-00-000.devi-zus.2026-04-12_08-00-00-000.de4", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.94962789460859,7.079052274728844,50.95066715941759,7.0917232195569815", + "point": "50.94962789460859,7.079052274728844", + "startLcPosition": "28", + "impact": { + "lower": "Bergisch Gladbach-Refrath", + "upper": "K\u00f6ln-Merheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Olpe", + "title": "A4 | K\u00f6ln-Merheim - Bergisch Gladbach-Refrath", + "coordinate": { + "lat": 50.94962789460859, + "long": 7.079052274728844 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "12.04.26 von 08:00 bis 20:00 Uhr", + "", + "A4: K\u00f6ln -> Olpe, zwischen 1.6 km hinter AS K\u00f6ln-Merheim und 0.5 km vor AS Bergisch Gladbach-Refrath", + "", + "L\u00e4nge: 0.92 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 BW-Pr\u00fcfung (KVB)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.079052275, + 50.949627895 + ], + [ + 7.0793594, + 50.949666101 + ], + [ + 7.0800676, + 50.949774701 + ], + [ + 7.0806268, + 50.949877201 + ], + [ + 7.081155, + 50.949981401 + ], + [ + 7.0819157, + 50.950158901 + ], + [ + 7.0831225, + 50.950450901 + ], + [ + 7.0839527, + 50.950630901 + ], + [ + 7.0847869, + 50.950779501 + ], + [ + 7.0856622, + 50.950903001 + ], + [ + 7.0867077, + 50.950983301 + ], + [ + 7.0876542, + 50.951029301 + ], + [ + 7.0885871, + 50.951010101 + ], + [ + 7.089424, + 50.950963401 + ], + [ + 7.0903699, + 50.950881001 + ], + [ + 7.0910804, + 50.950787701 + ], + [ + 7.0916529, + 50.950684101 + ], + [ + 7.09172322, + 50.950667159 + ] + ] + } + }, + { + "identifier": "2023-002045--vi-bs.2026-03-27_22-00-00-000.devi-zus.2023-07-27_09-00-00-000.de419", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95044878824236,7.083113768254688,50.95071937325412,7.091457985029509", + "point": "50.95044878824236,7.083113768254688", + "startLcPosition": "28", + "impact": { + "lower": "Bergisch Gladbach-Refrath", + "upper": "K\u00f6ln-Merheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Olpe", + "title": "A4 | K\u00f6ln-Merheim - Bergisch Gladbach-Refrath", + "startTimestamp": "2026-03-27T22:00:00+01:00", + "coordinate": { + "lat": 50.95044878824236, + "long": 7.083113768254688 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 22:00 Uhr", + "Ende: 10.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "A4: K\u00f6ln -> Olpe, zwischen 1.9 km hinter AS K\u00f6ln-Merheim und 0.5 km vor AS Bergisch Gladbach-Refrath", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "FB-Sanierung K-Merheim - Untereschbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.083113768, + 50.950448788 + ], + [ + 7.0831225, + 50.950450901 + ], + [ + 7.0839527, + 50.950630901 + ], + [ + 7.0847869, + 50.950779501 + ], + [ + 7.0856622, + 50.950903001 + ], + [ + 7.0867077, + 50.950983301 + ], + [ + 7.0876542, + 50.951029301 + ], + [ + 7.0885871, + 50.951010101 + ], + [ + 7.089424, + 50.950963401 + ], + [ + 7.0903699, + 50.950881001 + ], + [ + 7.0910804, + 50.950787701 + ], + [ + 7.091457985, + 50.950719373 + ] + ] + } + }, + { + "identifier": "2023-002045--vi-bs.2026-03-27_22-00-00-000.devi-zus.2023-07-27_09-00-00-000.de417", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95071937325412,7.091457985029503,50.9468823049473,7.100981109401077", + "point": "50.95071937325412,7.091457985029503", + "startLcPosition": "28", + "impact": { + "lower": "Lustheide", + "upper": "K\u00f6ln-Merheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Olpe", + "title": "A4 | K\u00f6ln-Merheim - Lustheide", + "startTimestamp": "2026-03-27T22:00:00+01:00", + "coordinate": { + "lat": 50.95071937325412, + "long": 7.091457985029503 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 22:00 Uhr", + "Ende: 10.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "A4: K\u00f6ln -> Olpe, zwischen 2.5 km hinter AS K\u00f6ln-Merheim und 0.9 km vor Lustheide", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "FB-Sanierung K-Merheim - Untereschbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.091457985, + 50.950719373 + ], + [ + 7.0916529, + 50.950684101 + ], + [ + 7.0924822, + 50.950484301 + ], + [ + 7.0926842, + 50.950438501 + ], + [ + 7.0934263, + 50.950270001 + ], + [ + 7.0943637, + 50.949969801 + ], + [ + 7.0952621, + 50.949571201 + ], + [ + 7.0962147, + 50.949129901 + ], + [ + 7.0976091, + 50.948342001 + ], + [ + 7.0988774, + 50.947701001 + ], + [ + 7.0998889, + 50.947248001 + ], + [ + 7.1003895, + 50.947069201 + ], + [ + 7.1009494, + 50.946891301 + ], + [ + 7.100981109, + 50.946882305 + ] + ] + } + }, + { + "identifier": "2026-017472--vi-bs.2026-04-12_07-00-00-000.devi-zus.2026-04-12_08-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.947436502868705,7.099810887624108,50.95110772244458,7.088694728565624", + "point": "50.947436502868705,7.099810887624108", + "startLcPosition": "30", + "impact": { + "lower": "K\u00f6ln-Merheim", + "upper": "Lustheide", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Olpe -> K\u00f6ln", + "title": "A4 | Lustheide - K\u00f6ln-Merheim", + "coordinate": { + "lat": 50.947436502868705, + "long": 7.099810887624108 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "12.04.26 von 08:00 bis 20:00 Uhr", + "", + "A4: Olpe -> K\u00f6ln, zwischen 1.0 km hinter Lustheide und 2.3 km vor AS K\u00f6ln-Merheim", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 BW-Pr\u00fcfung (KVB)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.099810888, + 50.947436503 + ], + [ + 7.0989977, + 50.947789501 + ], + [ + 7.098404, + 50.948082301 + ], + [ + 7.0978467, + 50.948381401 + ], + [ + 7.0971368, + 50.948775501 + ], + [ + 7.096295, + 50.949225801 + ], + [ + 7.0953736, + 50.949662701 + ], + [ + 7.0944304, + 50.950046201 + ], + [ + 7.0933613, + 50.950417701 + ], + [ + 7.0925373, + 50.950619101 + ], + [ + 7.0916993, + 50.950795901 + ], + [ + 7.0911357, + 50.950884801 + ], + [ + 7.0907821, + 50.950944701 + ], + [ + 7.0904222, + 50.950990901 + ], + [ + 7.0894458, + 50.951078801 + ], + [ + 7.088694729, + 50.951107722 + ] + ] + } + }, + { + "identifier": "2023-002045--vi-bs.2026-03-27_22-00-00-000.devi-zus.2023-07-27_09-00-00-000.de425", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95617900947317,7.17577206113055,50.95694564422013,7.181393882693553", + "point": "50.95617900947317,7.17577206113055", + "startLcPosition": "31", + "impact": { + "lower": "R\u00f6ttgesberg", + "upper": "Bergisch Gladbach-Frankenforst", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Olpe", + "title": "A4 | Bergisch Gladbach-Frankenforst - R\u00f6ttgesberg", + "startTimestamp": "2026-03-27T22:00:00+01:00", + "coordinate": { + "lat": 50.95617900947317, + "long": 7.17577206113055 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 22:00 Uhr", + "Ende: 10.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "A4: K\u00f6ln -> Olpe, zwischen 3.5 km hinter AS Bergisch Gladbach-Frankenforst und 1.3 km vor R\u00f6ttgesberg", + "", + "L\u00e4nge: 0.41 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "FB-Sanierung K-Merheim - Untereschbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.175772061, + 50.956179009 + ], + [ + 7.1759589, + 50.956212401 + ], + [ + 7.1760834, + 50.956232101 + ], + [ + 7.1763706, + 50.956290701 + ], + [ + 7.1769971, + 50.956404801 + ], + [ + 7.1773622, + 50.956470301 + ], + [ + 7.1777083, + 50.956531701 + ], + [ + 7.1780852, + 50.956604101 + ], + [ + 7.178489, + 50.956664401 + ], + [ + 7.1788482, + 50.956713301 + ], + [ + 7.1791784, + 50.956754401 + ], + [ + 7.1798788, + 50.956831901 + ], + [ + 7.1804618, + 50.956885201 + ], + [ + 7.1807709, + 50.956908401 + ], + [ + 7.1811191, + 50.956932801 + ], + [ + 7.181393883, + 50.956945644 + ] + ] + } + }, + { + "identifier": "2023-002045--vi-bs.2026-03-27_22-00-00-000.devi-zus.2023-07-27_09-00-00-000.de427", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.9545292765847,7.161819849997997,50.95617656216598,7.175758367523833", + "point": "50.9545292765847,7.161819849997997", + "startLcPosition": "31", + "impact": { + "lower": "Bergisch Gladbach-Bensberg", + "upper": "Bergisch Gladbach-Frankenforst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Olpe", + "title": "A4 | Bergisch Gladbach-Frankenforst - Bergisch Gladbach-Bensberg", + "startTimestamp": "2026-03-27T22:00:00+01:00", + "coordinate": { + "lat": 50.9545292765847, + "long": 7.161819849997997 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 22:00 Uhr", + "Ende: 10.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "A4: K\u00f6ln -> Olpe, zwischen 2.5 km hinter AS Bergisch Gladbach-Frankenforst und 0.1 km vor AS Bergisch Gladbach-Bensberg", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "FB-Sanierung K-Merheim - Untereschbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.16181985, + 50.954529277 + ], + [ + 7.1618704, + 50.954537001 + ], + [ + 7.1624218, + 50.954611701 + ], + [ + 7.1629992, + 50.954683501 + ], + [ + 7.16347, + 50.954730201 + ], + [ + 7.1639194, + 50.954768501 + ], + [ + 7.1644391, + 50.954809301 + ], + [ + 7.1647197, + 50.954830201 + ], + [ + 7.1649705, + 50.954846401 + ], + [ + 7.1654319, + 50.954874101 + ], + [ + 7.166202, + 50.954903901 + ], + [ + 7.1664563, + 50.954923401 + ], + [ + 7.1672553, + 50.954978901 + ], + [ + 7.1678052, + 50.955012301 + ], + [ + 7.1682812, + 50.955044901 + ], + [ + 7.1688251, + 50.955085901 + ], + [ + 7.1697772, + 50.955172901 + ], + [ + 7.1706018, + 50.955269401 + ], + [ + 7.171115, + 50.955341601 + ], + [ + 7.1715702, + 50.955404501 + ], + [ + 7.1721171, + 50.955492601 + ], + [ + 7.1725625, + 50.955569801 + ], + [ + 7.1730448, + 50.955655901 + ], + [ + 7.1735012, + 50.955744101 + ], + [ + 7.1740447, + 50.955849701 + ], + [ + 7.1745981, + 50.955958101 + ], + [ + 7.1750547, + 50.956050801 + ], + [ + 7.175758368, + 50.956176562 + ] + ] + } + }, + { + "identifier": "2023-002045--vi-bs.2026-03-27_22-00-00-000.devi-zus.2023-07-27_09-00-00-000.de415", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.94772338136664,7.118842575324949,50.94662660064864,7.102340286738643", + "point": "50.94772338136664,7.118842575324949", + "startLcPosition": "31", + "impact": { + "lower": "Bergisch Gladbach-Refrath", + "upper": "Bergisch Gladbach-Frankenforst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Olpe -> K\u00f6ln", + "title": "A4 | Bergisch Gladbach-Frankenforst - Bergisch Gladbach-Refrath", + "startTimestamp": "2026-03-27T22:00:00+01:00", + "coordinate": { + "lat": 50.94772338136664, + "long": 7.118842575324949 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 22:00 Uhr", + "Ende: 10.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "A4: Olpe -> K\u00f6ln, zwischen 0.7 km hinter AS Bergisch Gladbach-Frankenforst und 0.4 km vor AS Bergisch Gladbach-Refrath", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "FB-Sanierung K-Merheim - Untereschbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.118842575, + 50.947723381 + ], + [ + 7.1182091, + 50.947534401 + ], + [ + 7.117702, + 50.947398601 + ], + [ + 7.1171899, + 50.947263301 + ], + [ + 7.1164656, + 50.947088901 + ], + [ + 7.1157988, + 50.946945901 + ], + [ + 7.1151118, + 50.946806501 + ], + [ + 7.1143447, + 50.946662701 + ], + [ + 7.1134127, + 50.946506201 + ], + [ + 7.1123614, + 50.946359701 + ], + [ + 7.111487, + 50.946258501 + ], + [ + 7.1105711, + 50.946171301 + ], + [ + 7.1099357, + 50.946114801 + ], + [ + 7.1092544, + 50.946075001 + ], + [ + 7.1084817, + 50.946041201 + ], + [ + 7.1081111, + 50.946031501 + ], + [ + 7.1077155, + 50.946026201 + ], + [ + 7.1068617, + 50.946034901 + ], + [ + 7.10655, + 50.946043701 + ], + [ + 7.1060513, + 50.946067201 + ], + [ + 7.1056649, + 50.946097801 + ], + [ + 7.1052751, + 50.946133401 + ], + [ + 7.1048374, + 50.946177701 + ], + [ + 7.1043265, + 50.946243101 + ], + [ + 7.1035561, + 50.946368101 + ], + [ + 7.1032137, + 50.946430301 + ], + [ + 7.1028208, + 50.946511001 + ], + [ + 7.1024932, + 50.946586601 + ], + [ + 7.102340287, + 50.946626601 + ] + ] + } + }, + { + "identifier": "2023-002045--vi-bs.2026-03-27_22-00-00-000.devi-zus.2023-07-27_09-00-00-000.de423", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.957048882074034,7.18138125506144,50.956288429102464,7.17572077458014", + "point": "50.957048882074034,7.18138125506144", + "startLcPosition": "33", + "impact": { + "lower": "Bergisch Gladbach-Frankenforst", + "upper": "R\u00f6ttgesberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Olpe -> K\u00f6ln", + "title": "A4 | R\u00f6ttgesberg - Bergisch Gladbach-Frankenforst", + "startTimestamp": "2026-03-27T22:00:00+01:00", + "coordinate": { + "lat": 50.957048882074034, + "long": 7.18138125506144 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 22:00 Uhr", + "Ende: 10.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "A4: Olpe -> K\u00f6ln, zwischen 1.3 km hinter R\u00f6ttgesberg und 3.5 km vor AS Bergisch Gladbach-Frankenforst", + "", + "L\u00e4nge: 0.41 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "FB-Sanierung K-Merheim - Untereschbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.181381255, + 50.957048882 + ], + [ + 7.1811065, + 50.957034901 + ], + [ + 7.1807834, + 50.957014101 + ], + [ + 7.1804835, + 50.956989901 + ], + [ + 7.1799128, + 50.956939001 + ], + [ + 7.1795649, + 50.956902501 + ], + [ + 7.1791511, + 50.956856501 + ], + [ + 7.1787706, + 50.956807601 + ], + [ + 7.1784022, + 50.956755001 + ], + [ + 7.1780573, + 50.956705001 + ], + [ + 7.1776432, + 50.956637901 + ], + [ + 7.1773277, + 50.956585401 + ], + [ + 7.1770123, + 50.956527901 + ], + [ + 7.1764222, + 50.956422001 + ], + [ + 7.1760386, + 50.956351001 + ], + [ + 7.175720775, + 50.956288429 + ] + ] + } + }, + { + "identifier": "2023-002045--vi-bs.2026-03-27_22-00-00-000.devi-zus.2023-07-27_09-00-00-000.de421", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95666592777925,7.1885510216869735,50.957048882074034,7.18138125506144", + "point": "50.95666592777925,7.1885510216869735", + "startLcPosition": "33", + "impact": { + "lower": "Bergisch Gladbach-Bensberg", + "upper": "R\u00f6ttgesberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Olpe -> K\u00f6ln", + "title": "A4 | R\u00f6ttgesberg - Bergisch Gladbach-Bensberg", + "startTimestamp": "2026-03-27T22:00:00+01:00", + "coordinate": { + "lat": 50.95666592777925, + "long": 7.1885510216869735 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 22:00 Uhr", + "Ende: 10.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "A4: Olpe -> K\u00f6ln, zwischen 0.8 km hinter R\u00f6ttgesberg und 0.3 km vor AS Bergisch Gladbach-Bensberg", + "", + "L\u00e4nge: 0.51 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "FB-Sanierung K-Merheim - Untereschbach" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.188551022, + 50.956665928 + ], + [ + 7.1879817, + 50.956756301 + ], + [ + 7.1872119, + 50.956856801 + ], + [ + 7.1868509, + 50.956896201 + ], + [ + 7.186641, + 50.956919301 + ], + [ + 7.1864388, + 50.956937601 + ], + [ + 7.1859578, + 50.956987201 + ], + [ + 7.1854866, + 50.957018401 + ], + [ + 7.1852091, + 50.957038801 + ], + [ + 7.1849868, + 50.957049301 + ], + [ + 7.1847057, + 50.957063501 + ], + [ + 7.1844161, + 50.957069601 + ], + [ + 7.1839009, + 50.957083601 + ], + [ + 7.1833936, + 50.957090301 + ], + [ + 7.1829189, + 50.957090301 + ], + [ + 7.1824537, + 50.957081701 + ], + [ + 7.1821296, + 50.957079601 + ], + [ + 7.1817887, + 50.957068201 + ], + [ + 7.181417, + 50.957050701 + ], + [ + 7.181381255, + 50.957048882 + ] + ] + } + }, + { + "identifier": "2025-052217--vi-bs.2025-10-23_22-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.981536567274574,7.429917354189857,50.981866526378084,7.437672883390788", + "point": "50.981536567274574,7.429917354189857", + "startLcPosition": "37", + "impact": { + "lower": "Bellingroth", + "upper": "Erlenhof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Olpe", + "title": "A4 | Erlenhof - Bellingroth", + "startTimestamp": "2025-10-23T22:00:00+02:00", + "coordinate": { + "lat": 50.981536567274574, + "long": 7.429917354189857 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.10.25 um 22:00 Uhr", + "Ende: 30.04.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A4: K\u00f6ln -> Olpe, zwischen 5.8 km hinter Erlenhof und 0.6 km vor Bellingroth", + "", + "L\u00e4nge: 0.56 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Notma\u00df. F\u00dcK BW Kaltenbachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.429917354, + 50.981536567 + ], + [ + 7.4299327, + 50.981539801 + ], + [ + 7.4306882, + 50.981682201 + ], + [ + 7.4314507, + 50.981809201 + ], + [ + 7.4319426, + 50.981880901 + ], + [ + 7.4324385, + 50.981940401 + ], + [ + 7.4329378, + 50.981987601 + ], + [ + 7.4334397, + 50.982022501 + ], + [ + 7.4339433, + 50.982044801 + ], + [ + 7.434448, + 50.982054801 + ], + [ + 7.434835, + 50.982053901 + ], + [ + 7.434924, + 50.982052001 + ], + [ + 7.4352218, + 50.982045701 + ], + [ + 7.4361916, + 50.982011601 + ], + [ + 7.4366827, + 50.981983601 + ], + [ + 7.4374123, + 50.981901901 + ], + [ + 7.437672883, + 50.981866526 + ] + ] + } + }, + { + "identifier": "2026-009781--vi-bs.2026-04-09_11-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.97722918909449,7.450510099268507,50.976345893821104,7.454548300147148", + "point": "50.97722918909449,7.450510099268507", + "startLcPosition": "39", + "impact": { + "lower": "Bielstein", + "upper": "Bellingroth", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Olpe", + "title": "A4 | Bellingroth - Bielstein", + "coordinate": { + "lat": 50.97722918909449, + "long": 7.450510099268507 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 11:00 bis 17:00 Uhr", + "", + "A4: K\u00f6ln -> Olpe, zwischen 0.5 km hinter Bellingroth und 0.7 km vor AS Bielstein", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 von Bellingroth (Parkplatz) nach Bielstein (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.450510099, + 50.977229189 + ], + [ + 7.4512736, + 50.977006301 + ], + [ + 7.4523861, + 50.976736001 + ], + [ + 7.4537679, + 50.976469601 + ], + [ + 7.4545483, + 50.976345894 + ] + ] + } + }, + { + "identifier": "2024-055330--vi-bs.2024-11-19_09-00-00-000.devi-zus.2024-11-15_00-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.97323264207604,7.477165370407569,50.975183542695504,7.493898368085311", + "point": "50.97323264207604,7.477165370407569", + "startLcPosition": "40", + "impact": { + "lower": "H\u00f6meler Feld", + "upper": "Bielstein", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Olpe", + "title": "A4 | Bielstein - H\u00f6meler Feld", + "startTimestamp": "2024-11-19T09:00:00+01:00", + "coordinate": { + "lat": 50.97323264207604, + "long": 7.477165370407569 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.11.24 um 09:00 Uhr", + "Ende: 01.12.34 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.34)", + "", + "A4: K\u00f6ln -> Olpe, zwischen 1.0 km hinter AS Bielstein und 0.7 km vor H\u00f6meler Feld", + "", + "L\u00e4nge: 1.2 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.75 m | zul\u00e4ssiges Gesamtgewicht: 44 t", + "", + "Wiehltalbr\u00fccke Kompensation Sperrung f\u00fcr Schwerlastverkehr max. 44to" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.47716537, + 50.973232642 + ], + [ + 7.4774962, + 50.973260401 + ], + [ + 7.4783191, + 50.973361601 + ], + [ + 7.4791344, + 50.973474701 + ], + [ + 7.4801097, + 50.973629601 + ], + [ + 7.4811038, + 50.973817601 + ], + [ + 7.4829608, + 50.974179201 + ], + [ + 7.4837379, + 50.974321301 + ], + [ + 7.4844031, + 50.974449801 + ], + [ + 7.4848145, + 50.974519801 + ], + [ + 7.4859517, + 50.974696401 + ], + [ + 7.4867468, + 50.974799301 + ], + [ + 7.4875751, + 50.974895701 + ], + [ + 7.4882541, + 50.974960501 + ], + [ + 7.4890071, + 50.975024401 + ], + [ + 7.4896309, + 50.975063101 + ], + [ + 7.4904877, + 50.975104601 + ], + [ + 7.4917365, + 50.975142601 + ], + [ + 7.4927492, + 50.975161801 + ], + [ + 7.4936658, + 50.975178701 + ], + [ + 7.493898368, + 50.975183543 + ] + ] + } + }, + { + "identifier": "2026-017462--vi-bs.2026-04-13_08-00-00-000_015.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.9750344644367,7.511437477695229,50.97364026646783,7.517442703849448", + "point": "50.9750344644367,7.511437477695229", + "startLcPosition": "42", + "impact": { + "lower": "Gummersbach", + "upper": "H\u00f6meler Feld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Olpe", + "title": "A4 | H\u00f6meler Feld - Gummersbach", + "coordinate": { + "lat": 50.9750344644367, + "long": 7.511437477695229 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:00 Uhr", + "14.04.26 von 08:00 bis 16:00 Uhr", + "", + "A4: K\u00f6ln -> Olpe, zwischen 0.6 km hinter H\u00f6meler Feld und 0.6 km vor AS Gummersbach", + "", + "L\u00e4nge: 0.45 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A4 von H\u00f6meler Feld (Parkplatz) nach Gummersbach (AS) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.511437478, + 50.975034464 + ], + [ + 7.5133483, + 50.974592801 + ], + [ + 7.5170494, + 50.973718201 + ], + [ + 7.517442704, + 50.973640266 + ] + ] + } + }, + { + "identifier": "2024-055330--vi-bs.2024-11-19_09-00-00-000.devi-zus.2024-11-15_00-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.97572250613834,7.499525582730541,50.973515496208435,7.4785616408528535", + "point": "50.97572250613834,7.499525582730541", + "startLcPosition": "42", + "impact": { + "lower": "Bielstein", + "upper": "H\u00f6meler Feld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Olpe -> K\u00f6ln", + "title": "A4 | H\u00f6meler Feld - Bielstein", + "startTimestamp": "2024-11-19T09:00:00+01:00", + "coordinate": { + "lat": 50.97572250613834, + "long": 7.499525582730541 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.11.24 um 09:00 Uhr", + "Ende: 01.12.34 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.34)", + "", + "A4: Olpe -> K\u00f6ln, zwischen 0.3 km hinter H\u00f6meler Feld und 1.1 km vor AS Bielstein", + "", + "L\u00e4nge: 1.5 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.75 m | zul\u00e4ssiges Gesamtgewicht: 44 t", + "", + "Wiehltalbr\u00fccke Kompensation Sperrung f\u00fcr Schwerlastverkehr max. 44to" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.499525583, + 50.975722506 + ], + [ + 7.4983891, + 50.975589601 + ], + [ + 7.4976543, + 50.975507901 + ], + [ + 7.4967427, + 50.975419101 + ], + [ + 7.4959372, + 50.975362401 + ], + [ + 7.4951072, + 50.975326901 + ], + [ + 7.4945516, + 50.975313101 + ], + [ + 7.4936625, + 50.975291401 + ], + [ + 7.4927584, + 50.975282601 + ], + [ + 7.4914824, + 50.975256201 + ], + [ + 7.4905434, + 50.975224001 + ], + [ + 7.4897093, + 50.975186901 + ], + [ + 7.4889325, + 50.975134301 + ], + [ + 7.4882302, + 50.975080401 + ], + [ + 7.4872623, + 50.974980601 + ], + [ + 7.4863431, + 50.974869601 + ], + [ + 7.4854969, + 50.974749401 + ], + [ + 7.4845012, + 50.974586501 + ], + [ + 7.4836901, + 50.974437801 + ], + [ + 7.4810827, + 50.973937401 + ], + [ + 7.4796147, + 50.973671601 + ], + [ + 7.478895, + 50.973559001 + ], + [ + 7.478561641, + 50.973515496 + ] + ] + } + }, + { + "identifier": "2026-017465--vi-bs.2026-04-15_09-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.97376163504033,7.517502903860663,50.97469203476887,7.513499213160169", + "point": "50.97376163504033,7.517502903860663", + "startLcPosition": "43", + "impact": { + "lower": "H\u00f6meler Feld", + "upper": "Gummersbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Olpe -> K\u00f6ln", + "title": "A4 | Gummersbach - H\u00f6meler Feld", + "coordinate": { + "lat": 50.97376163504033, + "long": 7.517502903860663 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A4: Olpe -> K\u00f6ln, zwischen 0.6 km hinter AS Gummersbach und 0.7 km vor H\u00f6meler Feld", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A4 von Gummersbach (AS) nach H\u00f6meler Feld (Parkplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.517502904, + 50.973761635 + ], + [ + 7.5171042, + 50.973840301 + ], + [ + 7.513499213, + 50.974692035 + ] + ] + } + }, + { + "identifier": "2026-014310--vi-fbm.2026-03-26_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.99403483843098,7.843291549616478,50.982273280312945,7.8261030289272915", + "point": "50.99403483843098,7.843291549616478", + "startLcPosition": "50", + "impact": { + "lower": "Eckenhagen", + "upper": "Krombach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Olpe -> K\u00f6ln", + "title": "A4 | Krombach - Eckenhagen", + "coordinate": { + "lat": 50.99403483843098, + "long": 7.843291549616478 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 15:00 Uhr", + "24.04.26 von 08:00 bis 15:00 Uhr", + "", + "A4: Olpe -> K\u00f6ln, zwischen 6.0 km hinter AS Krombach und 8.5 km vor AS Eckenhagen", + "", + "L\u00e4nge: 1.8 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A4 - Auf- oder Abbau Verkehrsf\u00fchrung - Wanderbaustelle - AkD 14310" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.84329155, + 50.994034838 + ], + [ + 7.842733, + 50.993699801 + ], + [ + 7.8408038, + 50.992353101 + ], + [ + 7.8388077, + 50.990744701 + ], + [ + 7.8340389, + 50.986725401 + ], + [ + 7.8330796, + 50.985994601 + ], + [ + 7.8325074, + 50.985590501 + ], + [ + 7.8313115, + 50.984746401 + ], + [ + 7.8300859, + 50.984005901 + ], + [ + 7.8297321, + 50.983801501 + ], + [ + 7.8287507, + 50.983307801 + ], + [ + 7.8283505, + 50.983116401 + ], + [ + 7.8278757, + 50.982920101 + ], + [ + 7.8272638, + 50.982671401 + ], + [ + 7.8265577, + 50.982417001 + ], + [ + 7.826103029, + 50.98227328 + ] + ] + } + }, + { + "identifier": "2024-002408--vi-bs.2025-05-19_00-00-00-000.devi-zus.2025-03-13_00-00-00-000.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.84585242853449,9.66100996782307,50.85262738266975,9.698896536270471", + "point": "50.84585242853449,9.66100996782307", + "startLcPosition": "51", + "impact": { + "lower": "Bad Hersfeld", + "upper": "Kirchheimer Dreieck", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Kirchheimer Dreieck - Bad Hersfeld", + "startTimestamp": "2025-05-19T00:00:00+02:00", + "coordinate": { + "lat": 50.84585242853449, + "long": 9.66100996782307 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.05.25 um 00:00 Uhr", + "Ende: 01.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.28)", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 5.7 km hinter AD Kirchheimer Dreieck und 1.7 km vor AS Bad Hersfeld", + "", + "L\u00e4nge: 2.8 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A4 Anbau von Fahrstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.661009968, + 50.845852429 + ], + [ + 9.6616954, + 50.845842801 + ], + [ + 9.6622457, + 50.845849401 + ], + [ + 9.662784, + 50.845869301 + ], + [ + 9.6633532, + 50.845900601 + ], + [ + 9.6665894, + 50.846115701 + ], + [ + 9.6678621, + 50.846206401 + ], + [ + 9.6697781, + 50.846337201 + ], + [ + 9.6704457, + 50.846386401 + ], + [ + 9.6728083, + 50.846561401 + ], + [ + 9.6733747, + 50.846624401 + ], + [ + 9.6740259, + 50.846726001 + ], + [ + 9.6745957, + 50.846821501 + ], + [ + 9.6753074, + 50.846984601 + ], + [ + 9.6757814, + 50.847102801 + ], + [ + 9.6764383, + 50.847301501 + ], + [ + 9.6767947, + 50.847423501 + ], + [ + 9.677822, + 50.847826301 + ], + [ + 9.6787346, + 50.848208501 + ], + [ + 9.6790851, + 50.848355201 + ], + [ + 9.6803455, + 50.848863101 + ], + [ + 9.6810562, + 50.849096301 + ], + [ + 9.6816917, + 50.849273901 + ], + [ + 9.6822373, + 50.849409501 + ], + [ + 9.6827378, + 50.849501601 + ], + [ + 9.6836508, + 50.849687401 + ], + [ + 9.6844403, + 50.849837401 + ], + [ + 9.6854521, + 50.850029501 + ], + [ + 9.6867013, + 50.850265701 + ], + [ + 9.6878331, + 50.850490201 + ], + [ + 9.6910656, + 50.851115701 + ], + [ + 9.692387, + 50.851376201 + ], + [ + 9.6927662, + 50.851447701 + ], + [ + 9.6946907, + 50.851810301 + ], + [ + 9.695815, + 50.852029401 + ], + [ + 9.6973084, + 50.852329201 + ], + [ + 9.6984096, + 50.852533401 + ], + [ + 9.698896536, + 50.852627383 + ] + ] + } + }, + { + "identifier": "2023-004142--vi-bs.2025-11-24_08-00-00-000.devi-zus.2023-08-29_00-00-00-000_008.f.de35", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.85339870177782,9.719601254873282,50.867735669815595,9.786333955073015", + "point": "50.85339870177782,9.719601254873282", + "startLcPosition": "51", + "impact": { + "lower": "Friedewald", + "upper": "Kirchheimer Dreieck", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Kirchheimer Dreieck - Friedewald", + "startTimestamp": "2025-11-24T08:00:00+01:00", + "coordinate": { + "lat": 50.85339870177782, + "long": 9.719601254873282 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.11.25 um 08:00 Uhr", + "Ende: 27.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 10.0 km hinter AD Kirchheimer Dreieck und 6.1 km vor AS Friedewald", + "", + "L\u00e4nge: 5.32 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A4 Verbreiterung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.719601255, + 50.853398702 + ], + [ + 9.7204395, + 50.853424301 + ], + [ + 9.7215119, + 50.853456101 + ], + [ + 9.7217878, + 50.853467801 + ], + [ + 9.7220478, + 50.853475601 + ], + [ + 9.7225973, + 50.853491601 + ], + [ + 9.7230324, + 50.853507901 + ], + [ + 9.7242874, + 50.853544701 + ], + [ + 9.724604, + 50.853555801 + ], + [ + 9.7248111, + 50.853563501 + ], + [ + 9.7268087, + 50.853633601 + ], + [ + 9.7273185, + 50.853671101 + ], + [ + 9.7280849, + 50.853772301 + ], + [ + 9.7285893, + 50.853865801 + ], + [ + 9.7291809, + 50.853997601 + ], + [ + 9.7295282, + 50.854091101 + ], + [ + 9.7301057, + 50.854266401 + ], + [ + 9.730621, + 50.854465901 + ], + [ + 9.7315371, + 50.854867401 + ], + [ + 9.7329543, + 50.855522701 + ], + [ + 9.7333153, + 50.855680301 + ], + [ + 9.7335266, + 50.855772501 + ], + [ + 9.7339858, + 50.855934601 + ], + [ + 9.7346321, + 50.856127801 + ], + [ + 9.7353929, + 50.856301601 + ], + [ + 9.7360257, + 50.856410501 + ], + [ + 9.7365646, + 50.856487701 + ], + [ + 9.7372566, + 50.856537201 + ], + [ + 9.7379119, + 50.856556801 + ], + [ + 9.7385658, + 50.856544701 + ], + [ + 9.7392334, + 50.856493701 + ], + [ + 9.7398668, + 50.856423601 + ], + [ + 9.7405136, + 50.856307901 + ], + [ + 9.7424436, + 50.855914801 + ], + [ + 9.7436691, + 50.855662001 + ], + [ + 9.7446587, + 50.855458401 + ], + [ + 9.745143, + 50.855368101 + ], + [ + 9.7456476, + 50.855298801 + ], + [ + 9.7461658, + 50.855236001 + ], + [ + 9.7466753, + 50.855184501 + ], + [ + 9.7477001, + 50.855132801 + ], + [ + 9.748742, + 50.855154401 + ], + [ + 9.749902, + 50.855242301 + ], + [ + 9.7510066, + 50.855391601 + ], + [ + 9.7514912, + 50.855487201 + ], + [ + 9.7517304, + 50.855534401 + ], + [ + 9.752472, + 50.855710001 + ], + [ + 9.754079, + 50.856201801 + ], + [ + 9.7549891, + 50.856480901 + ], + [ + 9.7558536, + 50.856743101 + ], + [ + 9.7563878, + 50.856885201 + ], + [ + 9.7567881, + 50.856973601 + ], + [ + 9.7572899, + 50.857061801 + ], + [ + 9.7578328, + 50.857137201 + ], + [ + 9.7583298, + 50.857176801 + ], + [ + 9.7588104, + 50.857207601 + ], + [ + 9.7593085, + 50.857217801 + ], + [ + 9.759782, + 50.857203001 + ], + [ + 9.7602797, + 50.857182501 + ], + [ + 9.7613722, + 50.857135101 + ], + [ + 9.7630739, + 50.857061601 + ], + [ + 9.7636518, + 50.857062501 + ], + [ + 9.764163, + 50.857077801 + ], + [ + 9.7648273, + 50.857125201 + ], + [ + 9.7654135, + 50.857187501 + ], + [ + 9.7658342, + 50.857251601 + ], + [ + 9.7663229, + 50.857347901 + ], + [ + 9.7667864, + 50.857442901 + ], + [ + 9.7672508, + 50.857553601 + ], + [ + 9.7677967, + 50.857711801 + ], + [ + 9.7683202, + 50.857879301 + ], + [ + 9.7688571, + 50.858088701 + ], + [ + 9.7694905, + 50.858372001 + ], + [ + 9.7700906, + 50.858689001 + ], + [ + 9.7705125, + 50.858937301 + ], + [ + 9.7710155, + 50.859289301 + ], + [ + 9.7715136, + 50.859656801 + ], + [ + 9.7732776, + 50.860987701 + ], + [ + 9.7738237, + 50.861403201 + ], + [ + 9.7742877, + 50.861725801 + ], + [ + 9.7748454, + 50.862045601 + ], + [ + 9.7754408, + 50.862339401 + ], + [ + 9.7760881, + 50.862600301 + ], + [ + 9.7765507, + 50.862762501 + ], + [ + 9.7772804, + 50.862953201 + ], + [ + 9.7784731, + 50.863199401 + ], + [ + 9.7796554, + 50.863430701 + ], + [ + 9.7809951, + 50.863697301 + ], + [ + 9.781496, + 50.863841801 + ], + [ + 9.7819614, + 50.863989001 + ], + [ + 9.7826602, + 50.864253501 + ], + [ + 9.7832501, + 50.864521801 + ], + [ + 9.7837, + 50.864767701 + ], + [ + 9.7841484, + 50.865053101 + ], + [ + 9.7845854, + 50.865375001 + ], + [ + 9.7850059, + 50.865714601 + ], + [ + 9.7852715, + 50.865980801 + ], + [ + 9.7855265, + 50.866271001 + ], + [ + 9.7857898, + 50.866605601 + ], + [ + 9.7860851, + 50.867106401 + ], + [ + 9.7862286, + 50.867410301 + ], + [ + 9.786333955, + 50.86773567 + ] + ] + } + }, + { + "identifier": "2024-002408--vi-bs.2025-05-19_00-00-00-000.devi-zus.2025-03-13_00-00-00-000.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.852733568207704,9.698846178271236,50.84598630200527,9.66101212115943", + "point": "50.852733568207704,9.698846178271236", + "startLcPosition": "52", + "impact": { + "lower": "Kirchheimer Dreieck", + "upper": "Bad Hersfeld", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Bad Hersfeld - Kirchheimer Dreieck", + "startTimestamp": "2025-05-19T00:00:00+02:00", + "coordinate": { + "lat": 50.852733568207704, + "long": 9.698846178271236 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.05.25 um 00:00 Uhr", + "Ende: 01.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.28)", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 1.7 km hinter AS Bad Hersfeld und 5.8 km vor AD Kirchheimer Dreieck", + "", + "L\u00e4nge: 2.8 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A4 Anbau von Fahrstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.698846178, + 50.852733568 + ], + [ + 9.698405, + 50.852651801 + ], + [ + 9.6971886, + 50.852424001 + ], + [ + 9.6958761, + 50.852165301 + ], + [ + 9.6946756, + 50.851924501 + ], + [ + 9.6927022, + 50.851555901 + ], + [ + 9.6923337, + 50.851487001 + ], + [ + 9.6918452, + 50.851392901 + ], + [ + 9.6904796, + 50.851133001 + ], + [ + 9.6877828, + 50.850602801 + ], + [ + 9.6867855, + 50.850409201 + ], + [ + 9.6855913, + 50.850172001 + ], + [ + 9.6845892, + 50.849978501 + ], + [ + 9.6836007, + 50.849786501 + ], + [ + 9.6826647, + 50.849609901 + ], + [ + 9.6822009, + 50.849515401 + ], + [ + 9.6816458, + 50.849383801 + ], + [ + 9.6810083, + 50.849203301 + ], + [ + 9.680314, + 50.848977001 + ], + [ + 9.6790128, + 50.848452501 + ], + [ + 9.6786278, + 50.848296101 + ], + [ + 9.6781067, + 50.848082901 + ], + [ + 9.6777189, + 50.847924201 + ], + [ + 9.6767048, + 50.847521501 + ], + [ + 9.676355, + 50.847400601 + ], + [ + 9.6758771, + 50.847253101 + ], + [ + 9.6752204, + 50.847076701 + ], + [ + 9.6745843, + 50.846942201 + ], + [ + 9.6739483, + 50.846820401 + ], + [ + 9.6733485, + 50.846739501 + ], + [ + 9.6727918, + 50.846686901 + ], + [ + 9.6722608, + 50.846646401 + ], + [ + 9.6704094, + 50.846505101 + ], + [ + 9.6697847, + 50.846466401 + ], + [ + 9.6647994, + 50.846126201 + ], + [ + 9.6639751, + 50.846067401 + ], + [ + 9.6633366, + 50.846035201 + ], + [ + 9.6627493, + 50.846004801 + ], + [ + 9.6622531, + 50.845993601 + ], + [ + 9.6617006, + 50.845987101 + ], + [ + 9.661012121, + 50.845986302 + ] + ] + } + }, + { + "identifier": "2026-015419--vi-bs.2026-04-18_07-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.84835164793588,9.678764535882202,50.846157050249346,9.665251334937667", + "point": "50.84835164793588,9.678764535882202", + "startLcPosition": "52", + "impact": { + "lower": "Kirchheimer Dreieck", + "upper": "Bad Hersfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Bad Hersfeld - Kirchheimer Dreieck", + "coordinate": { + "lat": 50.84835164793588, + "long": 9.678764535882202 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 07:00 bis 18:00 Uhr", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 3.2 km hinter AS Bad Hersfeld und 6.1 km vor AD Kirchheimer Dreieck", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A4 Notma\u00dfnahme von Bad Hersfeld (AS) nach Kirchheimer Dreieck (AD) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.678764536, + 50.848351648 + ], + [ + 9.6786278, + 50.848296101 + ], + [ + 9.6781067, + 50.848082901 + ], + [ + 9.6777189, + 50.847924201 + ], + [ + 9.6767048, + 50.847521501 + ], + [ + 9.676355, + 50.847400601 + ], + [ + 9.6758771, + 50.847253101 + ], + [ + 9.6752204, + 50.847076701 + ], + [ + 9.6745843, + 50.846942201 + ], + [ + 9.6739483, + 50.846820401 + ], + [ + 9.6733485, + 50.846739501 + ], + [ + 9.6727918, + 50.846686901 + ], + [ + 9.6722608, + 50.846646401 + ], + [ + 9.6704094, + 50.846505101 + ], + [ + 9.6697847, + 50.846466401 + ], + [ + 9.665251335, + 50.84615705 + ] + ] + } + }, + { + "identifier": "2023-004142--vi-bs.2025-11-24_08-00-00-000.devi-zus.2023-08-29_00-00-00-000_008.f.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.867758000936945,9.786156600000256,50.85351514349983,9.719592794038862", + "point": "50.867758000936945,9.786156600000256", + "startLcPosition": "53", + "impact": { + "lower": "Kirchheimer Dreieck", + "upper": "Friedewald", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Friedewald - Kirchheimer Dreieck", + "startTimestamp": "2025-11-24T08:00:00+01:00", + "coordinate": { + "lat": 50.867758000936945, + "long": 9.786156600000256 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.11.25 um 08:00 Uhr", + "Ende: 27.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 6.2 km hinter AS Friedewald und 10.0 km vor AD Kirchheimer Dreieck", + "", + "L\u00e4nge: 5.32 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A4 Verbreiterung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.7861566, + 50.867758001 + ], + [ + 9.7860464, + 50.867444401 + ], + [ + 9.7859039, + 50.867124401 + ], + [ + 9.7856282, + 50.866659401 + ], + [ + 9.7853543, + 50.866302701 + ], + [ + 9.7851278, + 50.866038401 + ], + [ + 9.7848514, + 50.865770501 + ], + [ + 9.7844563, + 50.865442001 + ], + [ + 9.7840089, + 50.865115701 + ], + [ + 9.7835663, + 50.864846801 + ], + [ + 9.7831385, + 50.864612901 + ], + [ + 9.7826604, + 50.864384101 + ], + [ + 9.7818696, + 50.864082601 + ], + [ + 9.7813969, + 50.863936401 + ], + [ + 9.7808646, + 50.863787501 + ], + [ + 9.7796235, + 50.863545701 + ], + [ + 9.7783991, + 50.863303101 + ], + [ + 9.777238, + 50.863064801 + ], + [ + 9.7764718, + 50.862856701 + ], + [ + 9.7758659, + 50.862643601 + ], + [ + 9.7753034, + 50.862415401 + ], + [ + 9.7747611, + 50.862144701 + ], + [ + 9.7742437, + 50.861848701 + ], + [ + 9.7737178, + 50.861493201 + ], + [ + 9.7731678, + 50.861081301 + ], + [ + 9.7714087, + 50.859750501 + ], + [ + 9.7709085, + 50.859383801 + ], + [ + 9.7704173, + 50.859026301 + ], + [ + 9.7699722, + 50.858766501 + ], + [ + 9.7693523, + 50.858444101 + ], + [ + 9.7688092, + 50.858201501 + ], + [ + 9.7682049, + 50.857965901 + ], + [ + 9.7676919, + 50.857799501 + ], + [ + 9.7671399, + 50.857643601 + ], + [ + 9.7667146, + 50.857536301 + ], + [ + 9.766265, + 50.857446001 + ], + [ + 9.7657738, + 50.857360901 + ], + [ + 9.76527, + 50.857286801 + ], + [ + 9.7647669, + 50.857234501 + ], + [ + 9.7642461, + 50.857194501 + ], + [ + 9.7636598, + 50.857177601 + ], + [ + 9.762984, + 50.857177201 + ], + [ + 9.7614252, + 50.857245301 + ], + [ + 9.7609513, + 50.857266801 + ], + [ + 9.7603253, + 50.857295301 + ], + [ + 9.7598082, + 50.857320301 + ], + [ + 9.7592964, + 50.857329301 + ], + [ + 9.7587922, + 50.857319201 + ], + [ + 9.7583605, + 50.857298701 + ], + [ + 9.7578326, + 50.857248701 + ], + [ + 9.7572739, + 50.857176801 + ], + [ + 9.7567771, + 50.857092201 + ], + [ + 9.7563604, + 50.857001401 + ], + [ + 9.7558282, + 50.856863101 + ], + [ + 9.7549538, + 50.856597101 + ], + [ + 9.7540448, + 50.856320301 + ], + [ + 9.7535783, + 50.856179001 + ], + [ + 9.7524372, + 50.855833501 + ], + [ + 9.7515032, + 50.855605001 + ], + [ + 9.7509887, + 50.855507101 + ], + [ + 9.7499185, + 50.855355501 + ], + [ + 9.7487183, + 50.855267601 + ], + [ + 9.7480778, + 50.855254901 + ], + [ + 9.7473261, + 50.855267001 + ], + [ + 9.7466628, + 50.855301001 + ], + [ + 9.7461635, + 50.855345301 + ], + [ + 9.7456744, + 50.855408301 + ], + [ + 9.745168, + 50.855477401 + ], + [ + 9.7446852, + 50.855564101 + ], + [ + 9.7436851, + 50.855771301 + ], + [ + 9.7424276, + 50.856040101 + ], + [ + 9.7402229, + 50.856482701 + ], + [ + 9.7395585, + 50.856581201 + ], + [ + 9.738926, + 50.856639201 + ], + [ + 9.7382246, + 50.856669801 + ], + [ + 9.7372419, + 50.856655901 + ], + [ + 9.7362708, + 50.856571701 + ], + [ + 9.7355069, + 50.856442301 + ], + [ + 9.7350481, + 50.856344801 + ], + [ + 9.7344068, + 50.856186601 + ], + [ + 9.7340239, + 50.856075601 + ], + [ + 9.733494, + 50.855885301 + ], + [ + 9.7328932, + 50.855621501 + ], + [ + 9.7309599, + 50.854749501 + ], + [ + 9.7304607, + 50.854546001 + ], + [ + 9.7298327, + 50.854310401 + ], + [ + 9.729295, + 50.854150601 + ], + [ + 9.7286341, + 50.853989301 + ], + [ + 9.7281545, + 50.853902801 + ], + [ + 9.7276243, + 50.853820701 + ], + [ + 9.7270272, + 50.853766401 + ], + [ + 9.7263211, + 50.853733501 + ], + [ + 9.724794, + 50.853680901 + ], + [ + 9.7245861, + 50.853674901 + ], + [ + 9.7238844, + 50.853653501 + ], + [ + 9.722569, + 50.853611701 + ], + [ + 9.7220219, + 50.853591601 + ], + [ + 9.7212079, + 50.853562601 + ], + [ + 9.7204049, + 50.853537701 + ], + [ + 9.719592794, + 50.853515143 + ] + ] + } + }, + { + "identifier": "2026-016069--vi-bs.2026-04-13_08-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.956188921129794,9.992019881326936,50.95835880763532,10.005603401877746", + "point": "50.956188921129794,9.992019881326936", + "startLcPosition": "56", + "impact": { + "lower": "Wildeck-Obersuhl", + "upper": "Wildeck-H\u00f6nebach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Wildeck-H\u00f6nebach - Wildeck-Obersuhl", + "coordinate": { + "lat": 50.956188921129794, + "long": 9.992019881326936 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:00 Uhr", + "14.04.26 von 08:00 bis 16:00 Uhr", + "15.04.26 von 08:00 bis 14:00 Uhr", + "16.04.26 von 08:00 bis 14:00 Uhr", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 5.0 km hinter AS Wildeck-H\u00f6nebach und 0.7 km vor AS Wildeck-Obersuhl", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A4 von Wildeck-H\u00f6nebach (AS) nach Wildeck-Obersuhl (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.992019881, + 50.956188921 + ], + [ + 9.9932179, + 50.956200601 + ], + [ + 9.9944327, + 50.956221001 + ], + [ + 9.9957039, + 50.956239301 + ], + [ + 9.9960495, + 50.956241501 + ], + [ + 9.9965237, + 50.956256201 + ], + [ + 9.9970426, + 50.956289301 + ], + [ + 9.9975473, + 50.956328101 + ], + [ + 9.9980571, + 50.956379401 + ], + [ + 9.9987362, + 50.956465501 + ], + [ + 9.999298, + 50.956552501 + ], + [ + 10.0000266, + 50.956698201 + ], + [ + 10.0007661, + 50.956871401 + ], + [ + 10.0014676, + 50.957056701 + ], + [ + 10.0042071, + 50.957922701 + ], + [ + 10.005575, + 50.958349801 + ], + [ + 10.005603402, + 50.958358808 + ] + ] + } + }, + { + "identifier": "2026-016413--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-06_00-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.958504801133685,10.040239443395743,50.95961057292437,10.043867944748307", + "point": "50.958504801133685,10.040239443395743", + "startLcPosition": "57", + "impact": { + "lower": "Gerstungen", + "upper": "Wildeck-Obersuhl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Wildeck-Obersuhl - Gerstungen", + "coordinate": { + "lat": 50.958504801133685, + "long": 10.040239443395743 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 06:00 Uhr.", + "20.04.26 20:00 bis zum 21.04.26 06:00 Uhr.", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 1.9 km hinter AS Wildeck-Obersuhl und 3.3 km vor AS Gerstungen", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 AS Gerstungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.040239443, + 50.958504801 + ], + [ + 10.0411437, + 50.958777001 + ], + [ + 10.0416563, + 50.958941001 + ], + [ + 10.043867945, + 50.959610573 + ] + ] + } + }, + { + "identifier": "2026-016428--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.012634610288906,10.10856765160686,51.01573001561961,10.115080716227437", + "point": "51.012634610288906,10.10856765160686", + "startLcPosition": "58", + "impact": { + "lower": "Wommen", + "upper": "Gerstungen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Gerstungen - Wommen", + "coordinate": { + "lat": 51.012634610288906, + "long": 10.10856765160686 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 17:00 Uhr", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 4.6 km hinter AS Gerstungen und 0.3 km vor AS Wommen", + "", + "L\u00e4nge: 0.57 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A4 von Gerstungen (AS) nach Wommener Dreieck (AD) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.108567652, + 51.01263461 + ], + [ + 10.1095276, + 51.013082501 + ], + [ + 10.1112814, + 51.013921401 + ], + [ + 10.1121923, + 51.014343401 + ], + [ + 10.1129325, + 51.014706901 + ], + [ + 10.1132421, + 51.014856601 + ], + [ + 10.113373, + 51.014919901 + ], + [ + 10.1138867, + 51.015163901 + ], + [ + 10.1145784, + 51.015487001 + ], + [ + 10.115080716, + 51.015730016 + ] + ] + } + }, + { + "identifier": "2023-004928--vi-bs.2026-02-24_09-00-00-000.devi-zus.2022-05-09_08-00-00-000.f_001.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.01477707389583,10.113077626780667,51.01175961257086,10.155600099742186", + "point": "51.01477707389583,10.113077626780667", + "startLcPosition": "59", + "impact": { + "lower": "Burgberg", + "upper": "Wommener Dreieck", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Wommener Dreieck - Burgberg", + "startTimestamp": "2026-02-24T09:00:00+01:00", + "coordinate": { + "lat": 51.01477707389583, + "long": 10.113077626780667 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 09:00 Uhr", + "Ende: 12.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.05.26)", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 0.3 km hinter AD Wommener Dreieck und 1.4 km vor Burgberg", + "", + "L\u00e4nge: 3.17 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 5.75 m", + "", + "Neubau der A44 von TB Riedm\u00fchle bis AD Wommen, Ausbau AD Wommen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.113077627, + 51.014777074 + ], + [ + 10.1132421, + 51.014856601 + ], + [ + 10.113373, + 51.014919901 + ], + [ + 10.1138867, + 51.015163901 + ], + [ + 10.1145784, + 51.015487001 + ], + [ + 10.1151582, + 51.015767501 + ], + [ + 10.115925, + 51.016095501 + ], + [ + 10.1163204, + 51.016244701 + ], + [ + 10.1167163, + 51.016382101 + ], + [ + 10.1171202, + 51.016509901 + ], + [ + 10.1175314, + 51.016628201 + ], + [ + 10.1179494, + 51.016736601 + ], + [ + 10.1183736, + 51.016835001 + ], + [ + 10.1188033, + 51.016923301 + ], + [ + 10.1192381, + 51.017001401 + ], + [ + 10.1196772, + 51.017069201 + ], + [ + 10.1201181, + 51.017126201 + ], + [ + 10.1207619, + 51.017185401 + ], + [ + 10.1213387, + 51.017221401 + ], + [ + 10.1218713, + 51.017235501 + ], + [ + 10.1226302, + 51.017224201 + ], + [ + 10.1238062, + 51.017168301 + ], + [ + 10.1253908, + 51.017076001 + ], + [ + 10.1265309, + 51.017011701 + ], + [ + 10.1278691, + 51.016953001 + ], + [ + 10.1286549, + 51.016897701 + ], + [ + 10.1299105, + 51.016812901 + ], + [ + 10.1309444, + 51.016750201 + ], + [ + 10.1318127, + 51.016697101 + ], + [ + 10.1322074, + 51.016675801 + ], + [ + 10.1339764, + 51.016579401 + ], + [ + 10.1355118, + 51.016492801 + ], + [ + 10.136259, + 51.016442701 + ], + [ + 10.13704, + 51.016374701 + ], + [ + 10.1375858, + 51.016312601 + ], + [ + 10.138784, + 51.016125201 + ], + [ + 10.1401247, + 51.015815501 + ], + [ + 10.1416181, + 51.015403001 + ], + [ + 10.1451702, + 51.014421901 + ], + [ + 10.1479359, + 51.013659901 + ], + [ + 10.1499437, + 51.013122001 + ], + [ + 10.1520682, + 51.012608601 + ], + [ + 10.1556001, + 51.011759613 + ] + ] + } + }, + { + "identifier": "2023-004928--vi-bs.2026-02-24_09-00-00-000.devi-zus.2022-05-09_08-00-00-000.f_001.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.01723216772161,10.121745386011668,51.017201107801974,10.123116053869108", + "point": "51.01723216772161,10.121745386011668", + "startLcPosition": "60", + "impact": { + "lower": "Burgberg", + "upper": "Wommen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Wommen - Burgberg", + "startTimestamp": "2026-02-24T09:00:00+01:00", + "coordinate": { + "lat": 51.01723216772161, + "long": 10.121745386011668 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 09:00 Uhr", + "Ende: 12.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.05.26)", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 0.2 km hinter AS Wommen und 3.8 km vor Burgberg", + "", + "L\u00e4nge: 0.1 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 9 m", + "", + "Neubau der A44 von TB Riedm\u00fchle bis AD Wommen, Ausbau AD Wommen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.121745386, + 51.017232168 + ], + [ + 10.1218713, + 51.017235501 + ], + [ + 10.1226302, + 51.017224201 + ], + [ + 10.123116054, + 51.017201108 + ] + ] + } + }, + { + "identifier": "2023-004928--vi-bs.2026-02-24_09-00-00-000.devi-zus.2022-05-09_08-00-00-000.f_001.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.01188026259677,10.155672240134859,51.01486630334605,10.112969882477193", + "point": "51.01188026259677,10.155672240134859", + "startLcPosition": "61", + "impact": { + "lower": "Wommener Dreieck", + "upper": "Burgberg", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Burgberg - Wommener Dreieck", + "startTimestamp": "2026-02-24T09:00:00+01:00", + "coordinate": { + "lat": 51.01188026259677, + "long": 10.155672240134859 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 09:00 Uhr", + "Ende: 12.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.05.26)", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 1.4 km hinter Burgberg und 0.3 km vor AD Wommener Dreieck", + "", + "L\u00e4nge: 3.17 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 5.75 m", + "", + "Neubau der A44 von TB Riedm\u00fchle bis AD Wommen, Ausbau AD Wommen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.15567224, + 51.011880263 + ], + [ + 10.15212, + 51.012718601 + ], + [ + 10.1496393, + 51.013317601 + ], + [ + 10.1470874, + 51.014006301 + ], + [ + 10.1456034, + 51.014431801 + ], + [ + 10.1451832, + 51.014552301 + ], + [ + 10.1400859, + 51.015966201 + ], + [ + 10.1392642, + 51.016154401 + ], + [ + 10.1388902, + 51.016231601 + ], + [ + 10.1379193, + 51.016399801 + ], + [ + 10.1370897, + 51.016512801 + ], + [ + 10.1363641, + 51.016573001 + ], + [ + 10.1355778, + 51.016624901 + ], + [ + 10.1338312, + 51.016729301 + ], + [ + 10.1322299, + 51.016816001 + ], + [ + 10.1318352, + 51.016837401 + ], + [ + 10.1317534, + 51.016843101 + ], + [ + 10.1309968, + 51.016896001 + ], + [ + 10.1305207, + 51.016927901 + ], + [ + 10.1297598, + 51.016973501 + ], + [ + 10.1287433, + 51.017022501 + ], + [ + 10.1278873, + 51.017055501 + ], + [ + 10.1270433, + 51.017089001 + ], + [ + 10.1254705, + 51.017196801 + ], + [ + 10.1236854, + 51.017289701 + ], + [ + 10.121911, + 51.017345401 + ], + [ + 10.1213103, + 51.017333701 + ], + [ + 10.1207619, + 51.017297001 + ], + [ + 10.1200725, + 51.017234701 + ], + [ + 10.1196303, + 51.017176601 + ], + [ + 10.1191865, + 51.017107601 + ], + [ + 10.118747, + 51.017028601 + ], + [ + 10.1183123, + 51.016939701 + ], + [ + 10.1178829, + 51.016841001 + ], + [ + 10.1174595, + 51.016732601 + ], + [ + 10.1170425, + 51.016614701 + ], + [ + 10.1166326, + 51.016487501 + ], + [ + 10.1162302, + 51.016351001 + ], + [ + 10.1158349, + 51.016205301 + ], + [ + 10.1154121, + 51.016031501 + ], + [ + 10.1145374, + 51.015616901 + ], + [ + 10.1132934, + 51.015020901 + ], + [ + 10.112969882, + 51.014866303 + ] + ] + } + }, + { + "identifier": "2026-016369--vi-bs.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.015771264601064,10.140788737650583,51.01709118405552,10.119095167231128", + "point": "51.015771264601064,10.140788737650583", + "startLcPosition": "61", + "impact": { + "lower": "Wommen", + "upper": "Burgberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Burgberg - Wommen", + "coordinate": { + "lat": 51.015771264601064, + "long": 10.140788737650583 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "11.04.26 20:00 bis zum 12.04.26 06:00 Uhr.", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 2.5 km hinter Burgberg und AS Wommen", + "", + "L\u00e4nge: 1.54 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A4 von Gerstungen (AS) nach Burgberg (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.140788738, + 51.015771265 + ], + [ + 10.1400859, + 51.015966201 + ], + [ + 10.1392642, + 51.016154401 + ], + [ + 10.1388902, + 51.016231601 + ], + [ + 10.1379193, + 51.016399801 + ], + [ + 10.1370897, + 51.016512801 + ], + [ + 10.1363641, + 51.016573001 + ], + [ + 10.1355778, + 51.016624901 + ], + [ + 10.1338312, + 51.016729301 + ], + [ + 10.1322299, + 51.016816001 + ], + [ + 10.1318352, + 51.016837401 + ], + [ + 10.1317534, + 51.016843101 + ], + [ + 10.1309968, + 51.016896001 + ], + [ + 10.1305207, + 51.016927901 + ], + [ + 10.1297598, + 51.016973501 + ], + [ + 10.1287433, + 51.017022501 + ], + [ + 10.1278873, + 51.017055501 + ], + [ + 10.1270433, + 51.017089001 + ], + [ + 10.1254705, + 51.017196801 + ], + [ + 10.1236854, + 51.017289701 + ], + [ + 10.121911, + 51.017345401 + ], + [ + 10.1213103, + 51.017333701 + ], + [ + 10.1207619, + 51.017297001 + ], + [ + 10.1200725, + 51.017234701 + ], + [ + 10.1196303, + 51.017176601 + ], + [ + 10.1191865, + 51.017107601 + ], + [ + 10.119095167, + 51.017091184 + ] + ] + } + }, + { + "identifier": "2023-004928--vi-bs.2026-02-24_09-00-00-000.devi-zus.2022-05-09_08-00-00-000.f_001.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.017198052646734,10.125446451551822,51.01732332483991,10.12261436752597", + "point": "51.017198052646734,10.125446451551822", + "startLcPosition": "61", + "impact": { + "lower": "Wommen", + "upper": "Burgberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Burgberg - Wommen", + "startTimestamp": "2026-02-24T09:00:00+01:00", + "coordinate": { + "lat": 51.017198052646734, + "long": 10.125446451551822 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 09:00 Uhr", + "Ende: 12.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.05.26)", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 3.6 km hinter Burgberg und 0.3 km vor AS Wommen", + "", + "L\u00e4nge: 0.2 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 9.5 m", + "", + "Neubau der A44 von TB Riedm\u00fchle bis AD Wommen, Ausbau AD Wommen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.125446452, + 51.017198053 + ], + [ + 10.1236854, + 51.017289701 + ], + [ + 10.122614368, + 51.017323325 + ] + ] + } + }, + { + "identifier": "2026-016428--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.015771264601064,10.140788737650583,51.01709118405552,10.119095167231128", + "point": "51.015771264601064,10.140788737650583", + "startLcPosition": "61", + "impact": { + "lower": "Wommen", + "upper": "Burgberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Burgberg - Wommen", + "coordinate": { + "lat": 51.015771264601064, + "long": 10.140788737650583 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 2.5 km hinter Burgberg und AS Wommen", + "", + "L\u00e4nge: 1.54 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A4 von Gerstungen (AS) nach Wommener Dreieck (AD) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.140788738, + 51.015771265 + ], + [ + 10.1400859, + 51.015966201 + ], + [ + 10.1392642, + 51.016154401 + ], + [ + 10.1388902, + 51.016231601 + ], + [ + 10.1379193, + 51.016399801 + ], + [ + 10.1370897, + 51.016512801 + ], + [ + 10.1363641, + 51.016573001 + ], + [ + 10.1355778, + 51.016624901 + ], + [ + 10.1338312, + 51.016729301 + ], + [ + 10.1322299, + 51.016816001 + ], + [ + 10.1318352, + 51.016837401 + ], + [ + 10.1317534, + 51.016843101 + ], + [ + 10.1309968, + 51.016896001 + ], + [ + 10.1305207, + 51.016927901 + ], + [ + 10.1297598, + 51.016973501 + ], + [ + 10.1287433, + 51.017022501 + ], + [ + 10.1278873, + 51.017055501 + ], + [ + 10.1270433, + 51.017089001 + ], + [ + 10.1254705, + 51.017196801 + ], + [ + 10.1236854, + 51.017289701 + ], + [ + 10.121911, + 51.017345401 + ], + [ + 10.1213103, + 51.017333701 + ], + [ + 10.1207619, + 51.017297001 + ], + [ + 10.1200725, + 51.017234701 + ], + [ + 10.1196303, + 51.017176601 + ], + [ + 10.1191865, + 51.017107601 + ], + [ + 10.119095167, + 51.017091184 + ] + ] + } + }, + { + "identifier": "2024-060562--vi-bs.2026-04-07_07-00-00-000.devi-zus.2024-12-23_06-00-00-000_012.de263", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.00780513319817,10.202139533023544,50.90124306254602,10.736695084424062", + "point": "51.00780513319817,10.202139533023544", + "startLcPosition": "63", + "impact": { + "lower": "Drei Gleichen", + "upper": "Werratal", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Werratal - Drei Gleichen", + "coordinate": { + "lat": 51.00780513319817, + "long": 10.202139533023544 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 1.6 km hinter Werratal und 5.9 km vor Drei Gleichen", + "", + "L\u00e4nge: 44.43 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "04 VST_Betriebsdienstleistungen_2025Q01" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.202139533, + 51.007805133 + ], + [ + 10.2027112, + 51.008051401 + ], + [ + 10.2032122, + 51.008265301 + ], + [ + 10.2034609, + 51.008371401 + ], + [ + 10.2039407, + 51.008569601 + ], + [ + 10.2046156, + 51.008839101 + ], + [ + 10.2056777, + 51.009234801 + ], + [ + 10.2063588, + 51.009463701 + ], + [ + 10.2067856, + 51.009597401 + ], + [ + 10.2069895, + 51.009661501 + ], + [ + 10.2072712, + 51.009748001 + ], + [ + 10.2079557, + 51.009937601 + ], + [ + 10.2084713, + 51.010063401 + ], + [ + 10.2091471, + 51.010238301 + ], + [ + 10.209867, + 51.010402301 + ], + [ + 10.2105943, + 51.010549201 + ], + [ + 10.2117987, + 51.010748501 + ], + [ + 10.2125937, + 51.010869301 + ], + [ + 10.2130678, + 51.010927401 + ], + [ + 10.2140721, + 51.011042401 + ], + [ + 10.2150117, + 51.011115601 + ], + [ + 10.2161064, + 51.011176801 + ], + [ + 10.2168695, + 51.011199601 + ], + [ + 10.2173802, + 51.011212901 + ], + [ + 10.2183844, + 51.011213201 + ], + [ + 10.2188924, + 51.011201801 + ], + [ + 10.2196445, + 51.011175401 + ], + [ + 10.2203214, + 51.011137301 + ], + [ + 10.220938, + 51.011094801 + ], + [ + 10.221689, + 51.011034601 + ], + [ + 10.2223922, + 51.010969301 + ], + [ + 10.2245432, + 51.010745801 + ], + [ + 10.2257797, + 51.010614101 + ], + [ + 10.2287073, + 51.010289101 + ], + [ + 10.2354795, + 51.009537401 + ], + [ + 10.2362127, + 51.009456001 + ], + [ + 10.2364775, + 51.009428201 + ], + [ + 10.2371703, + 51.009337901 + ], + [ + 10.2379764, + 51.009246001 + ], + [ + 10.2387312, + 51.009151801 + ], + [ + 10.2397282, + 51.009027301 + ], + [ + 10.240676, + 51.008901801 + ], + [ + 10.2430585, + 51.008531801 + ], + [ + 10.2433986, + 51.008470301 + ], + [ + 10.2439413, + 51.008380501 + ], + [ + 10.2444759, + 51.008292101 + ], + [ + 10.245176, + 51.008172801 + ], + [ + 10.2459606, + 51.008024701 + ], + [ + 10.2465495, + 51.007917301 + ], + [ + 10.2483788, + 51.007576001 + ], + [ + 10.2494763, + 51.007369201 + ], + [ + 10.2515454, + 51.006979201 + ], + [ + 10.2547551, + 51.006373301 + ], + [ + 10.2561932, + 51.006114301 + ], + [ + 10.2566067, + 51.006040401 + ], + [ + 10.2570805, + 51.005958201 + ], + [ + 10.257705, + 51.005860901 + ], + [ + 10.2588353, + 51.005702501 + ], + [ + 10.2594379, + 51.005628701 + ], + [ + 10.2603702, + 51.005530701 + ], + [ + 10.2609716, + 51.005476001 + ], + [ + 10.2618061, + 51.005408001 + ], + [ + 10.2630711, + 51.005339001 + ], + [ + 10.2637575, + 51.005315401 + ], + [ + 10.2645171, + 51.005293601 + ], + [ + 10.2650137, + 51.005291001 + ], + [ + 10.2652606, + 51.005289601 + ], + [ + 10.2655783, + 51.005288201 + ], + [ + 10.265811, + 51.005287901 + ], + [ + 10.2663408, + 51.005294601 + ], + [ + 10.2671138, + 51.005311901 + ], + [ + 10.2675992, + 51.005333501 + ], + [ + 10.2676905, + 51.005335401 + ], + [ + 10.2683694, + 51.005373201 + ], + [ + 10.2690731, + 51.005414401 + ], + [ + 10.2693725, + 51.005436501 + ], + [ + 10.269889, + 51.005484601 + ], + [ + 10.2703957, + 51.005531701 + ], + [ + 10.271152, + 51.005605801 + ], + [ + 10.2719006, + 51.005692101 + ], + [ + 10.2726567, + 51.005799401 + ], + [ + 10.2735938, + 51.005941701 + ], + [ + 10.2746265, + 51.006120301 + ], + [ + 10.2751501, + 51.006218401 + ], + [ + 10.2755871, + 51.006303701 + ], + [ + 10.2759583, + 51.006386101 + ], + [ + 10.2767952, + 51.006574801 + ], + [ + 10.27772, + 51.006798801 + ], + [ + 10.2777583, + 51.006808101 + ], + [ + 10.2791705, + 51.007197701 + ], + [ + 10.2807283, + 51.007684101 + ], + [ + 10.2832316, + 51.008540001 + ], + [ + 10.284337, + 51.008928401 + ], + [ + 10.2847007, + 51.009048801 + ], + [ + 10.2857285, + 51.009389001 + ], + [ + 10.2870427, + 51.009822501 + ], + [ + 10.2886635, + 51.010321201 + ], + [ + 10.2894563, + 51.010552001 + ], + [ + 10.2898286, + 51.010658901 + ], + [ + 10.290032, + 51.010721201 + ], + [ + 10.2901092, + 51.010742801 + ], + [ + 10.291684, + 51.011183601 + ], + [ + 10.2930981, + 51.011541301 + ], + [ + 10.2942972, + 51.011837401 + ], + [ + 10.2957133, + 51.012170001 + ], + [ + 10.296955, + 51.012450001 + ], + [ + 10.2988639, + 51.012843501 + ], + [ + 10.3003524, + 51.013122201 + ], + [ + 10.3018168, + 51.013381201 + ], + [ + 10.3040428, + 51.013744101 + ], + [ + 10.3057809, + 51.013983301 + ], + [ + 10.3075158, + 51.014206601 + ], + [ + 10.3079523, + 51.014258301 + ], + [ + 10.3089906, + 51.014379601 + ], + [ + 10.3105328, + 51.014532301 + ], + [ + 10.3106998, + 51.014547801 + ], + [ + 10.3122534, + 51.014691801 + ], + [ + 10.314312, + 51.014839801 + ], + [ + 10.3163485, + 51.014954401 + ], + [ + 10.3174549, + 51.014998601 + ], + [ + 10.3188438, + 51.015042901 + ], + [ + 10.3207124, + 51.015085501 + ], + [ + 10.3229343, + 51.015090401 + ], + [ + 10.3248614, + 51.015063101 + ], + [ + 10.3254762, + 51.015046601 + ], + [ + 10.3264983, + 51.015022201 + ], + [ + 10.3275607, + 51.014978201 + ], + [ + 10.3285804, + 51.014926501 + ], + [ + 10.329798, + 51.014863901 + ], + [ + 10.331906, + 51.014749901 + ], + [ + 10.332895, + 51.014696401 + ], + [ + 10.3346969, + 51.014596201 + ], + [ + 10.3359711, + 51.014557501 + ], + [ + 10.3372482, + 51.014528501 + ], + [ + 10.3387685, + 51.014541701 + ], + [ + 10.3405673, + 51.014616701 + ], + [ + 10.3416005, + 51.014684901 + ], + [ + 10.3423692, + 51.014746501 + ], + [ + 10.3431251, + 51.014819501 + ], + [ + 10.3438613, + 51.014899201 + ], + [ + 10.3448701, + 51.015029701 + ], + [ + 10.3463716, + 51.015247701 + ], + [ + 10.3478669, + 51.015508501 + ], + [ + 10.3505039, + 51.016001701 + ], + [ + 10.3520006, + 51.016268201 + ], + [ + 10.3534798, + 51.016513801 + ], + [ + 10.3541113, + 51.016605801 + ], + [ + 10.3547501, + 51.016698801 + ], + [ + 10.3559868, + 51.016854401 + ], + [ + 10.3570144, + 51.016956201 + ], + [ + 10.3582633, + 51.017056101 + ], + [ + 10.3592879, + 51.017111101 + ], + [ + 10.3602878, + 51.017154301 + ], + [ + 10.3610716, + 51.017174901 + ], + [ + 10.362124, + 51.017174901 + ], + [ + 10.3631527, + 51.017167001 + ], + [ + 10.3640266, + 51.017141501 + ], + [ + 10.3645083, + 51.017121601 + ], + [ + 10.3652128, + 51.017089001 + ], + [ + 10.3661902, + 51.017015401 + ], + [ + 10.3670368, + 51.016943601 + ], + [ + 10.367958, + 51.016851401 + ], + [ + 10.3690085, + 51.016719901 + ], + [ + 10.3699603, + 51.016587201 + ], + [ + 10.3708116, + 51.016454501 + ], + [ + 10.372211, + 51.016188501 + ], + [ + 10.3731655, + 51.015994901 + ], + [ + 10.3741741, + 51.015762901 + ], + [ + 10.3745068, + 51.015679501 + ], + [ + 10.3755483, + 51.015418501 + ], + [ + 10.3767454, + 51.015071901 + ], + [ + 10.3778787, + 51.014716901 + ], + [ + 10.3788575, + 51.014372501 + ], + [ + 10.3803145, + 51.013822501 + ], + [ + 10.381184, + 51.013466301 + ], + [ + 10.3820231, + 51.013107801 + ], + [ + 10.3828493, + 51.012723701 + ], + [ + 10.3835379, + 51.012372501 + ], + [ + 10.3844211, + 51.011905901 + ], + [ + 10.3853861, + 51.011360501 + ], + [ + 10.3862936, + 51.010826101 + ], + [ + 10.3863962, + 51.010763801 + ], + [ + 10.3872353, + 51.010254201 + ], + [ + 10.3885443, + 51.009463801 + ], + [ + 10.3896493, + 51.008791301 + ], + [ + 10.3913376, + 51.007816701 + ], + [ + 10.391551, + 51.007704501 + ], + [ + 10.3917884, + 51.007579801 + ], + [ + 10.3925305, + 51.007174001 + ], + [ + 10.3935012, + 51.006666501 + ], + [ + 10.3943122, + 51.006249601 + ], + [ + 10.3960713, + 51.005385501 + ], + [ + 10.3975021, + 51.004731401 + ], + [ + 10.3981427, + 51.004438501 + ], + [ + 10.4000348, + 51.003637201 + ], + [ + 10.403091, + 51.002351501 + ], + [ + 10.4031297, + 51.002335201 + ], + [ + 10.4035686, + 51.002154201 + ], + [ + 10.4055691, + 51.001319001 + ], + [ + 10.4061644, + 51.001065301 + ], + [ + 10.4065416, + 51.000909301 + ], + [ + 10.4080865, + 51.000270401 + ], + [ + 10.4085477, + 51.000079701 + ], + [ + 10.4091011, + 50.999849001 + ], + [ + 10.4101207, + 50.999439801 + ], + [ + 10.4107161, + 50.999207201 + ], + [ + 10.4111183, + 50.999057601 + ], + [ + 10.4124416, + 50.998582901 + ], + [ + 10.4136577, + 50.998184101 + ], + [ + 10.4148008, + 50.997853701 + ], + [ + 10.4149391, + 50.997813901 + ], + [ + 10.4160917, + 50.997504601 + ], + [ + 10.4181005, + 50.997034601 + ], + [ + 10.4203156, + 50.996595001 + ], + [ + 10.4216009, + 50.996359601 + ], + [ + 10.4224945, + 50.996196001 + ], + [ + 10.4237212, + 50.995973901 + ], + [ + 10.4247606, + 50.995772901 + ], + [ + 10.4259764, + 50.995552501 + ], + [ + 10.427349, + 50.995290701 + ], + [ + 10.4276799, + 50.995230601 + ], + [ + 10.4301725, + 50.994778001 + ], + [ + 10.4323347, + 50.994374901 + ], + [ + 10.432539, + 50.994339201 + ], + [ + 10.4328633, + 50.994275901 + ], + [ + 10.4344452, + 50.993989201 + ], + [ + 10.4353047, + 50.993829001 + ], + [ + 10.4362198, + 50.993658501 + ], + [ + 10.436572, + 50.993594701 + ], + [ + 10.4376589, + 50.993398001 + ], + [ + 10.4391269, + 50.993125901 + ], + [ + 10.4411095, + 50.992760001 + ], + [ + 10.4419721, + 50.992601201 + ], + [ + 10.4422903, + 50.992542601 + ], + [ + 10.4428164, + 50.992445801 + ], + [ + 10.4434907, + 50.992320001 + ], + [ + 10.4455959, + 50.991927001 + ], + [ + 10.4487113, + 50.991356301 + ], + [ + 10.4488203, + 50.991336301 + ], + [ + 10.4505437, + 50.991020701 + ], + [ + 10.4515873, + 50.990827801 + ], + [ + 10.4517556, + 50.990795601 + ], + [ + 10.4545173, + 50.990289501 + ], + [ + 10.4585031, + 50.989550001 + ], + [ + 10.4607627, + 50.989133301 + ], + [ + 10.4617605, + 50.988941901 + ], + [ + 10.4621961, + 50.988856101 + ], + [ + 10.4630147, + 50.988694801 + ], + [ + 10.4642367, + 50.988438501 + ], + [ + 10.4654115, + 50.988180101 + ], + [ + 10.4666195, + 50.987878101 + ], + [ + 10.4678217, + 50.987560801 + ], + [ + 10.468984, + 50.987212901 + ], + [ + 10.4691231, + 50.987166501 + ], + [ + 10.4701126, + 50.986836201 + ], + [ + 10.471278, + 50.986427001 + ], + [ + 10.4725958, + 50.985916401 + ], + [ + 10.4738886, + 50.985365401 + ], + [ + 10.4749236, + 50.984888701 + ], + [ + 10.475353, + 50.984666001 + ], + [ + 10.4759547, + 50.984354001 + ], + [ + 10.4768999, + 50.983854301 + ], + [ + 10.4778432, + 50.983303901 + ], + [ + 10.4789003, + 50.982642301 + ], + [ + 10.4794515, + 50.982267401 + ], + [ + 10.4800509, + 50.981837401 + ], + [ + 10.4801304, + 50.981780301 + ], + [ + 10.4810368, + 50.981108201 + ], + [ + 10.4814596, + 50.980771201 + ], + [ + 10.4820484, + 50.980281001 + ], + [ + 10.4823275, + 50.980033401 + ], + [ + 10.4824976, + 50.979872601 + ], + [ + 10.4837041, + 50.978683201 + ], + [ + 10.4844516, + 50.977872301 + ], + [ + 10.4847109, + 50.977559201 + ], + [ + 10.4854575, + 50.976619101 + ], + [ + 10.4858208, + 50.976102601 + ], + [ + 10.4861688, + 50.975618001 + ], + [ + 10.4866048, + 50.974880301 + ], + [ + 10.4871062, + 50.973958501 + ], + [ + 10.4874681, + 50.973192001 + ], + [ + 10.4878489, + 50.972249201 + ], + [ + 10.4881867, + 50.971284101 + ], + [ + 10.4884365, + 50.970354701 + ], + [ + 10.4885315, + 50.969852801 + ], + [ + 10.4886523, + 50.969214901 + ], + [ + 10.4887509, + 50.968411601 + ], + [ + 10.4887968, + 50.967600501 + ], + [ + 10.488801, + 50.966632501 + ], + [ + 10.4887714, + 50.966158701 + ], + [ + 10.4887331, + 50.965683901 + ], + [ + 10.4886594, + 50.965138401 + ], + [ + 10.4886028, + 50.964719001 + ], + [ + 10.4883847, + 50.963605201 + ], + [ + 10.4882392, + 50.963019401 + ], + [ + 10.4882057, + 50.962896001 + ], + [ + 10.4880987, + 50.962501301 + ], + [ + 10.4876428, + 50.960850501 + ], + [ + 10.4871373, + 50.959004801 + ], + [ + 10.4867964, + 50.957743701 + ], + [ + 10.4863946, + 50.956282901 + ], + [ + 10.4863762, + 50.956215901 + ], + [ + 10.4861796, + 50.955500401 + ], + [ + 10.4860748, + 50.955037901 + ], + [ + 10.4860005, + 50.954702601 + ], + [ + 10.4858958, + 50.954183301 + ], + [ + 10.4857848, + 50.953450801 + ], + [ + 10.4857109, + 50.952757501 + ], + [ + 10.4856963, + 50.952096101 + ], + [ + 10.485703, + 50.951475001 + ], + [ + 10.4857217, + 50.951010401 + ], + [ + 10.4857584, + 50.950576601 + ], + [ + 10.485805, + 50.950233401 + ], + [ + 10.4858502, + 50.949926101 + ], + [ + 10.485914, + 50.949564001 + ], + [ + 10.4859799, + 50.949238001 + ], + [ + 10.4860511, + 50.948945201 + ], + [ + 10.4861773, + 50.948430301 + ], + [ + 10.4862599, + 50.948149001 + ], + [ + 10.4864271, + 50.947677201 + ], + [ + 10.4864962, + 50.947460301 + ], + [ + 10.486616, + 50.947132401 + ], + [ + 10.4867219, + 50.946869001 + ], + [ + 10.4869922, + 50.946267301 + ], + [ + 10.4872936, + 50.945666901 + ], + [ + 10.4876912, + 50.944959301 + ], + [ + 10.4879024, + 50.944606901 + ], + [ + 10.4881301, + 50.944262201 + ], + [ + 10.4884097, + 50.943853601 + ], + [ + 10.4886642, + 50.943500301 + ], + [ + 10.4889012, + 50.943192401 + ], + [ + 10.4889885, + 50.943085301 + ], + [ + 10.4895227, + 50.942431101 + ], + [ + 10.49018, + 50.941705701 + ], + [ + 10.4907605, + 50.941118601 + ], + [ + 10.491416, + 50.940511701 + ], + [ + 10.4921814, + 50.939851301 + ], + [ + 10.4923904, + 50.939687501 + ], + [ + 10.4929791, + 50.939226201 + ], + [ + 10.4937933, + 50.938636001 + ], + [ + 10.4946785, + 50.938046201 + ], + [ + 10.4952797, + 50.937659501 + ], + [ + 10.4964827, + 50.936920901 + ], + [ + 10.4975961, + 50.936247401 + ], + [ + 10.4990454, + 50.935355901 + ], + [ + 10.5004781, + 50.934439301 + ], + [ + 10.502041, + 50.933394501 + ], + [ + 10.5025248, + 50.933060801 + ], + [ + 10.5036128, + 50.932310201 + ], + [ + 10.5053714, + 50.931052701 + ], + [ + 10.5067025, + 50.930129301 + ], + [ + 10.5069407, + 50.929966201 + ], + [ + 10.5074167, + 50.929661801 + ], + [ + 10.5081529, + 50.929187001 + ], + [ + 10.5094433, + 50.928407801 + ], + [ + 10.5107931, + 50.927651701 + ], + [ + 10.5119756, + 50.927033101 + ], + [ + 10.5126592, + 50.926689801 + ], + [ + 10.5129686, + 50.926534401 + ], + [ + 10.5141877, + 50.925968101 + ], + [ + 10.5152736, + 50.925495201 + ], + [ + 10.5163218, + 50.925066101 + ], + [ + 10.5172256, + 50.924701101 + ], + [ + 10.5182942, + 50.924312701 + ], + [ + 10.5186818, + 50.924174901 + ], + [ + 10.5196238, + 50.923839801 + ], + [ + 10.5207636, + 50.923479401 + ], + [ + 10.5222248, + 50.923045601 + ], + [ + 10.5235294, + 50.922674201 + ], + [ + 10.5241463, + 50.922518501 + ], + [ + 10.5251314, + 50.922268801 + ], + [ + 10.5254547, + 50.922194801 + ], + [ + 10.5255627, + 50.922170001 + ], + [ + 10.5266616, + 50.921920201 + ], + [ + 10.5279719, + 50.921642701 + ], + [ + 10.529083, + 50.921443301 + ], + [ + 10.5303366, + 50.921231201 + ], + [ + 10.5315921, + 50.921035001 + ], + [ + 10.532067, + 50.920970801 + ], + [ + 10.5326996, + 50.920885301 + ], + [ + 10.534549, + 50.920659701 + ], + [ + 10.5360755, + 50.920510401 + ], + [ + 10.5374159, + 50.920398001 + ], + [ + 10.5388107, + 50.920294801 + ], + [ + 10.5391784, + 50.920272501 + ], + [ + 10.5398715, + 50.920230401 + ], + [ + 10.5409498, + 50.920168001 + ], + [ + 10.5411338, + 50.920157401 + ], + [ + 10.5415624, + 50.920131801 + ], + [ + 10.541795, + 50.920123401 + ], + [ + 10.5440561, + 50.920019401 + ], + [ + 10.5460188, + 50.919953801 + ], + [ + 10.5492258, + 50.919875301 + ], + [ + 10.5497891, + 50.919861901 + ], + [ + 10.5519495, + 50.919810401 + ], + [ + 10.5526571, + 50.919793601 + ], + [ + 10.5530789, + 50.919783501 + ], + [ + 10.5556598, + 50.919720901 + ], + [ + 10.559678, + 50.919630601 + ], + [ + 10.5633798, + 50.919541101 + ], + [ + 10.5646316, + 50.919490401 + ], + [ + 10.566064, + 50.919399801 + ], + [ + 10.5674256, + 50.919269301 + ], + [ + 10.5685402, + 50.919133601 + ], + [ + 10.5697409, + 50.918949501 + ], + [ + 10.5709003, + 50.918740701 + ], + [ + 10.5717725, + 50.918557701 + ], + [ + 10.5720978, + 50.918488101 + ], + [ + 10.5729098, + 50.918298601 + ], + [ + 10.573616, + 50.918115101 + ], + [ + 10.574074, + 50.917985001 + ], + [ + 10.5741923, + 50.917951001 + ], + [ + 10.5744184, + 50.917884901 + ], + [ + 10.5749734, + 50.917716601 + ], + [ + 10.5756556, + 50.917496601 + ], + [ + 10.576478, + 50.917211001 + ], + [ + 10.5772948, + 50.916893401 + ], + [ + 10.5777255, + 50.916729401 + ], + [ + 10.5784797, + 50.916415301 + ], + [ + 10.579292, + 50.916061001 + ], + [ + 10.5800863, + 50.915676701 + ], + [ + 10.5807031, + 50.915362901 + ], + [ + 10.5811007, + 50.915144401 + ], + [ + 10.5818968, + 50.914704101 + ], + [ + 10.5828034, + 50.914170301 + ], + [ + 10.5855376, + 50.912588501 + ], + [ + 10.587149, + 50.911657301 + ], + [ + 10.5882677, + 50.911002501 + ], + [ + 10.589231, + 50.910464301 + ], + [ + 10.5900104, + 50.910048001 + ], + [ + 10.5906373, + 50.909743301 + ], + [ + 10.590791, + 50.909670101 + ], + [ + 10.5914276, + 50.909374401 + ], + [ + 10.5924919, + 50.908912601 + ], + [ + 10.5931535, + 50.908655401 + ], + [ + 10.5939931, + 50.908354701 + ], + [ + 10.5946704, + 50.908111601 + ], + [ + 10.5953385, + 50.907902501 + ], + [ + 10.5963318, + 50.907612801 + ], + [ + 10.5973304, + 50.907339501 + ], + [ + 10.5975847, + 50.907279801 + ], + [ + 10.5986843, + 50.907021401 + ], + [ + 10.5996662, + 50.906821501 + ], + [ + 10.6005607, + 50.906668001 + ], + [ + 10.601611, + 50.906504201 + ], + [ + 10.6028704, + 50.906345301 + ], + [ + 10.6039374, + 50.906233301 + ], + [ + 10.6041213, + 50.906219201 + ], + [ + 10.6050949, + 50.906144601 + ], + [ + 10.6059558, + 50.906102801 + ], + [ + 10.6072278, + 50.906063901 + ], + [ + 10.6075385, + 50.906063001 + ], + [ + 10.6079659, + 50.906057001 + ], + [ + 10.6082431, + 50.906057101 + ], + [ + 10.6087978, + 50.906069801 + ], + [ + 10.609034, + 50.906071901 + ], + [ + 10.6100112, + 50.906106101 + ], + [ + 10.6102207, + 50.906116301 + ], + [ + 10.6107857, + 50.906135001 + ], + [ + 10.6111973, + 50.906151601 + ], + [ + 10.6114466, + 50.906164101 + ], + [ + 10.6138425, + 50.906292301 + ], + [ + 10.6171329, + 50.906459801 + ], + [ + 10.618199, + 50.906512101 + ], + [ + 10.6193242, + 50.906576601 + ], + [ + 10.6197824, + 50.906603401 + ], + [ + 10.6209996, + 50.906661001 + ], + [ + 10.6225142, + 50.906727401 + ], + [ + 10.6251306, + 50.906809101 + ], + [ + 10.6253535, + 50.906813701 + ], + [ + 10.6304951, + 50.906908001 + ], + [ + 10.6327004, + 50.906948501 + ], + [ + 10.6328544, + 50.906950601 + ], + [ + 10.6342863, + 50.906988001 + ], + [ + 10.6355369, + 50.907038201 + ], + [ + 10.6370618, + 50.907122401 + ], + [ + 10.6395251, + 50.907292701 + ], + [ + 10.6396429, + 50.907299801 + ], + [ + 10.6398506, + 50.907317301 + ], + [ + 10.6398801, + 50.907319301 + ], + [ + 10.6402204, + 50.907341001 + ], + [ + 10.6404103, + 50.907355701 + ], + [ + 10.6431864, + 50.907557501 + ], + [ + 10.6472572, + 50.907851401 + ], + [ + 10.648188, + 50.907916701 + ], + [ + 10.6508148, + 50.908101001 + ], + [ + 10.6523298, + 50.908178501 + ], + [ + 10.6533235, + 50.908202201 + ], + [ + 10.6538523, + 50.908216001 + ], + [ + 10.6551497, + 50.908187201 + ], + [ + 10.6558931, + 50.908172601 + ], + [ + 10.6567031, + 50.908130901 + ], + [ + 10.6576859, + 50.908058701 + ], + [ + 10.6589311, + 50.907937101 + ], + [ + 10.6596927, + 50.907854901 + ], + [ + 10.6605765, + 50.907728601 + ], + [ + 10.6610724, + 50.907653701 + ], + [ + 10.6619326, + 50.907497201 + ], + [ + 10.663137, + 50.907262601 + ], + [ + 10.6639086, + 50.907089901 + ], + [ + 10.6650727, + 50.906823401 + ], + [ + 10.6669793, + 50.906365501 + ], + [ + 10.6678571, + 50.906156401 + ], + [ + 10.6689111, + 50.905905401 + ], + [ + 10.6710547, + 50.905388301 + ], + [ + 10.674227, + 50.904629601 + ], + [ + 10.6750936, + 50.904422401 + ], + [ + 10.6770253, + 50.903955401 + ], + [ + 10.679086, + 50.903466301 + ], + [ + 10.6795153, + 50.903364401 + ], + [ + 10.6816763, + 50.902876001 + ], + [ + 10.6833051, + 50.902535301 + ], + [ + 10.6847338, + 50.902265401 + ], + [ + 10.6857259, + 50.902100201 + ], + [ + 10.6864303, + 50.901991401 + ], + [ + 10.6869556, + 50.901917001 + ], + [ + 10.6870727, + 50.901901001 + ], + [ + 10.6879401, + 50.901783601 + ], + [ + 10.6890032, + 50.901653001 + ], + [ + 10.6899561, + 50.901559801 + ], + [ + 10.6917354, + 50.901391001 + ], + [ + 10.6931151, + 50.901307801 + ], + [ + 10.6949359, + 50.901222201 + ], + [ + 10.6964288, + 50.901188901 + ], + [ + 10.6983665, + 50.901189001 + ], + [ + 10.7001644, + 50.901194001 + ], + [ + 10.7008727, + 50.901196901 + ], + [ + 10.7014551, + 50.901203701 + ], + [ + 10.7026926, + 50.901215401 + ], + [ + 10.705025, + 50.901237501 + ], + [ + 10.7078907, + 50.901260301 + ], + [ + 10.7088242, + 50.901268401 + ], + [ + 10.7089216, + 50.901268901 + ], + [ + 10.7097196, + 50.901275201 + ], + [ + 10.7134691, + 50.901312801 + ], + [ + 10.7157576, + 50.901330101 + ], + [ + 10.7167722, + 50.901337801 + ], + [ + 10.7183532, + 50.901347001 + ], + [ + 10.7229388, + 50.901385701 + ], + [ + 10.7234767, + 50.901390301 + ], + [ + 10.7260389, + 50.901412401 + ], + [ + 10.7289836, + 50.901441101 + ], + [ + 10.7294167, + 50.901442601 + ], + [ + 10.7297587, + 50.901442801 + ], + [ + 10.7300296, + 50.901446501 + ], + [ + 10.731171, + 50.901456001 + ], + [ + 10.7321638, + 50.901458401 + ], + [ + 10.7331037, + 50.901445301 + ], + [ + 10.73347, + 50.901435601 + ], + [ + 10.7341923, + 50.901410601 + ], + [ + 10.7360296, + 50.901304001 + ], + [ + 10.736695084, + 50.901243063 + ] + ] + } + }, + { + "identifier": "2024-060562--vi-bs.2026-04-07_07-00-00-000.devi-zus.2024-12-23_06-00-00-000_012.de261", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.00780513319817,10.202139533023544,50.90124306254602,10.736695084424062", + "point": "51.00780513319817,10.202139533023544", + "startLcPosition": "63", + "impact": { + "lower": "Drei Gleichen", + "upper": "Werratal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Werratal - Drei Gleichen", + "coordinate": { + "lat": 51.00780513319817, + "long": 10.202139533023544 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 1.6 km hinter Werratal und 5.9 km vor Drei Gleichen", + "", + "L\u00e4nge: 44.43 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "04 VST_Betriebsdienstleistungen_2025Q01" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.202139533, + 51.007805133 + ], + [ + 10.2027112, + 51.008051401 + ], + [ + 10.2032122, + 51.008265301 + ], + [ + 10.2034609, + 51.008371401 + ], + [ + 10.2039407, + 51.008569601 + ], + [ + 10.2046156, + 51.008839101 + ], + [ + 10.2056777, + 51.009234801 + ], + [ + 10.2063588, + 51.009463701 + ], + [ + 10.2067856, + 51.009597401 + ], + [ + 10.2069895, + 51.009661501 + ], + [ + 10.2072712, + 51.009748001 + ], + [ + 10.2079557, + 51.009937601 + ], + [ + 10.2084713, + 51.010063401 + ], + [ + 10.2091471, + 51.010238301 + ], + [ + 10.209867, + 51.010402301 + ], + [ + 10.2105943, + 51.010549201 + ], + [ + 10.2117987, + 51.010748501 + ], + [ + 10.2125937, + 51.010869301 + ], + [ + 10.2130678, + 51.010927401 + ], + [ + 10.2140721, + 51.011042401 + ], + [ + 10.2150117, + 51.011115601 + ], + [ + 10.2161064, + 51.011176801 + ], + [ + 10.2168695, + 51.011199601 + ], + [ + 10.2173802, + 51.011212901 + ], + [ + 10.2183844, + 51.011213201 + ], + [ + 10.2188924, + 51.011201801 + ], + [ + 10.2196445, + 51.011175401 + ], + [ + 10.2203214, + 51.011137301 + ], + [ + 10.220938, + 51.011094801 + ], + [ + 10.221689, + 51.011034601 + ], + [ + 10.2223922, + 51.010969301 + ], + [ + 10.2245432, + 51.010745801 + ], + [ + 10.2257797, + 51.010614101 + ], + [ + 10.2287073, + 51.010289101 + ], + [ + 10.2354795, + 51.009537401 + ], + [ + 10.2362127, + 51.009456001 + ], + [ + 10.2364775, + 51.009428201 + ], + [ + 10.2371703, + 51.009337901 + ], + [ + 10.2379764, + 51.009246001 + ], + [ + 10.2387312, + 51.009151801 + ], + [ + 10.2397282, + 51.009027301 + ], + [ + 10.240676, + 51.008901801 + ], + [ + 10.2430585, + 51.008531801 + ], + [ + 10.2433986, + 51.008470301 + ], + [ + 10.2439413, + 51.008380501 + ], + [ + 10.2444759, + 51.008292101 + ], + [ + 10.245176, + 51.008172801 + ], + [ + 10.2459606, + 51.008024701 + ], + [ + 10.2465495, + 51.007917301 + ], + [ + 10.2483788, + 51.007576001 + ], + [ + 10.2494763, + 51.007369201 + ], + [ + 10.2515454, + 51.006979201 + ], + [ + 10.2547551, + 51.006373301 + ], + [ + 10.2561932, + 51.006114301 + ], + [ + 10.2566067, + 51.006040401 + ], + [ + 10.2570805, + 51.005958201 + ], + [ + 10.257705, + 51.005860901 + ], + [ + 10.2588353, + 51.005702501 + ], + [ + 10.2594379, + 51.005628701 + ], + [ + 10.2603702, + 51.005530701 + ], + [ + 10.2609716, + 51.005476001 + ], + [ + 10.2618061, + 51.005408001 + ], + [ + 10.2630711, + 51.005339001 + ], + [ + 10.2637575, + 51.005315401 + ], + [ + 10.2645171, + 51.005293601 + ], + [ + 10.2650137, + 51.005291001 + ], + [ + 10.2652606, + 51.005289601 + ], + [ + 10.2655783, + 51.005288201 + ], + [ + 10.265811, + 51.005287901 + ], + [ + 10.2663408, + 51.005294601 + ], + [ + 10.2671138, + 51.005311901 + ], + [ + 10.2675992, + 51.005333501 + ], + [ + 10.2676905, + 51.005335401 + ], + [ + 10.2683694, + 51.005373201 + ], + [ + 10.2690731, + 51.005414401 + ], + [ + 10.2693725, + 51.005436501 + ], + [ + 10.269889, + 51.005484601 + ], + [ + 10.2703957, + 51.005531701 + ], + [ + 10.271152, + 51.005605801 + ], + [ + 10.2719006, + 51.005692101 + ], + [ + 10.2726567, + 51.005799401 + ], + [ + 10.2735938, + 51.005941701 + ], + [ + 10.2746265, + 51.006120301 + ], + [ + 10.2751501, + 51.006218401 + ], + [ + 10.2755871, + 51.006303701 + ], + [ + 10.2759583, + 51.006386101 + ], + [ + 10.2767952, + 51.006574801 + ], + [ + 10.27772, + 51.006798801 + ], + [ + 10.2777583, + 51.006808101 + ], + [ + 10.2791705, + 51.007197701 + ], + [ + 10.2807283, + 51.007684101 + ], + [ + 10.2832316, + 51.008540001 + ], + [ + 10.284337, + 51.008928401 + ], + [ + 10.2847007, + 51.009048801 + ], + [ + 10.2857285, + 51.009389001 + ], + [ + 10.2870427, + 51.009822501 + ], + [ + 10.2886635, + 51.010321201 + ], + [ + 10.2894563, + 51.010552001 + ], + [ + 10.2898286, + 51.010658901 + ], + [ + 10.290032, + 51.010721201 + ], + [ + 10.2901092, + 51.010742801 + ], + [ + 10.291684, + 51.011183601 + ], + [ + 10.2930981, + 51.011541301 + ], + [ + 10.2942972, + 51.011837401 + ], + [ + 10.2957133, + 51.012170001 + ], + [ + 10.296955, + 51.012450001 + ], + [ + 10.2988639, + 51.012843501 + ], + [ + 10.3003524, + 51.013122201 + ], + [ + 10.3018168, + 51.013381201 + ], + [ + 10.3040428, + 51.013744101 + ], + [ + 10.3057809, + 51.013983301 + ], + [ + 10.3075158, + 51.014206601 + ], + [ + 10.3079523, + 51.014258301 + ], + [ + 10.3089906, + 51.014379601 + ], + [ + 10.3105328, + 51.014532301 + ], + [ + 10.3106998, + 51.014547801 + ], + [ + 10.3122534, + 51.014691801 + ], + [ + 10.314312, + 51.014839801 + ], + [ + 10.3163485, + 51.014954401 + ], + [ + 10.3174549, + 51.014998601 + ], + [ + 10.3188438, + 51.015042901 + ], + [ + 10.3207124, + 51.015085501 + ], + [ + 10.3229343, + 51.015090401 + ], + [ + 10.3248614, + 51.015063101 + ], + [ + 10.3254762, + 51.015046601 + ], + [ + 10.3264983, + 51.015022201 + ], + [ + 10.3275607, + 51.014978201 + ], + [ + 10.3285804, + 51.014926501 + ], + [ + 10.329798, + 51.014863901 + ], + [ + 10.331906, + 51.014749901 + ], + [ + 10.332895, + 51.014696401 + ], + [ + 10.3346969, + 51.014596201 + ], + [ + 10.3359711, + 51.014557501 + ], + [ + 10.3372482, + 51.014528501 + ], + [ + 10.3387685, + 51.014541701 + ], + [ + 10.3405673, + 51.014616701 + ], + [ + 10.3416005, + 51.014684901 + ], + [ + 10.3423692, + 51.014746501 + ], + [ + 10.3431251, + 51.014819501 + ], + [ + 10.3438613, + 51.014899201 + ], + [ + 10.3448701, + 51.015029701 + ], + [ + 10.3463716, + 51.015247701 + ], + [ + 10.3478669, + 51.015508501 + ], + [ + 10.3505039, + 51.016001701 + ], + [ + 10.3520006, + 51.016268201 + ], + [ + 10.3534798, + 51.016513801 + ], + [ + 10.3541113, + 51.016605801 + ], + [ + 10.3547501, + 51.016698801 + ], + [ + 10.3559868, + 51.016854401 + ], + [ + 10.3570144, + 51.016956201 + ], + [ + 10.3582633, + 51.017056101 + ], + [ + 10.3592879, + 51.017111101 + ], + [ + 10.3602878, + 51.017154301 + ], + [ + 10.3610716, + 51.017174901 + ], + [ + 10.362124, + 51.017174901 + ], + [ + 10.3631527, + 51.017167001 + ], + [ + 10.3640266, + 51.017141501 + ], + [ + 10.3645083, + 51.017121601 + ], + [ + 10.3652128, + 51.017089001 + ], + [ + 10.3661902, + 51.017015401 + ], + [ + 10.3670368, + 51.016943601 + ], + [ + 10.367958, + 51.016851401 + ], + [ + 10.3690085, + 51.016719901 + ], + [ + 10.3699603, + 51.016587201 + ], + [ + 10.3708116, + 51.016454501 + ], + [ + 10.372211, + 51.016188501 + ], + [ + 10.3731655, + 51.015994901 + ], + [ + 10.3741741, + 51.015762901 + ], + [ + 10.3745068, + 51.015679501 + ], + [ + 10.3755483, + 51.015418501 + ], + [ + 10.3767454, + 51.015071901 + ], + [ + 10.3778787, + 51.014716901 + ], + [ + 10.3788575, + 51.014372501 + ], + [ + 10.3803145, + 51.013822501 + ], + [ + 10.381184, + 51.013466301 + ], + [ + 10.3820231, + 51.013107801 + ], + [ + 10.3828493, + 51.012723701 + ], + [ + 10.3835379, + 51.012372501 + ], + [ + 10.3844211, + 51.011905901 + ], + [ + 10.3853861, + 51.011360501 + ], + [ + 10.3862936, + 51.010826101 + ], + [ + 10.3863962, + 51.010763801 + ], + [ + 10.3872353, + 51.010254201 + ], + [ + 10.3885443, + 51.009463801 + ], + [ + 10.3896493, + 51.008791301 + ], + [ + 10.3913376, + 51.007816701 + ], + [ + 10.391551, + 51.007704501 + ], + [ + 10.3917884, + 51.007579801 + ], + [ + 10.3925305, + 51.007174001 + ], + [ + 10.3935012, + 51.006666501 + ], + [ + 10.3943122, + 51.006249601 + ], + [ + 10.3960713, + 51.005385501 + ], + [ + 10.3975021, + 51.004731401 + ], + [ + 10.3981427, + 51.004438501 + ], + [ + 10.4000348, + 51.003637201 + ], + [ + 10.403091, + 51.002351501 + ], + [ + 10.4031297, + 51.002335201 + ], + [ + 10.4035686, + 51.002154201 + ], + [ + 10.4055691, + 51.001319001 + ], + [ + 10.4061644, + 51.001065301 + ], + [ + 10.4065416, + 51.000909301 + ], + [ + 10.4080865, + 51.000270401 + ], + [ + 10.4085477, + 51.000079701 + ], + [ + 10.4091011, + 50.999849001 + ], + [ + 10.4101207, + 50.999439801 + ], + [ + 10.4107161, + 50.999207201 + ], + [ + 10.4111183, + 50.999057601 + ], + [ + 10.4124416, + 50.998582901 + ], + [ + 10.4136577, + 50.998184101 + ], + [ + 10.4148008, + 50.997853701 + ], + [ + 10.4149391, + 50.997813901 + ], + [ + 10.4160917, + 50.997504601 + ], + [ + 10.4181005, + 50.997034601 + ], + [ + 10.4203156, + 50.996595001 + ], + [ + 10.4216009, + 50.996359601 + ], + [ + 10.4224945, + 50.996196001 + ], + [ + 10.4237212, + 50.995973901 + ], + [ + 10.4247606, + 50.995772901 + ], + [ + 10.4259764, + 50.995552501 + ], + [ + 10.427349, + 50.995290701 + ], + [ + 10.4276799, + 50.995230601 + ], + [ + 10.4301725, + 50.994778001 + ], + [ + 10.4323347, + 50.994374901 + ], + [ + 10.432539, + 50.994339201 + ], + [ + 10.4328633, + 50.994275901 + ], + [ + 10.4344452, + 50.993989201 + ], + [ + 10.4353047, + 50.993829001 + ], + [ + 10.4362198, + 50.993658501 + ], + [ + 10.436572, + 50.993594701 + ], + [ + 10.4376589, + 50.993398001 + ], + [ + 10.4391269, + 50.993125901 + ], + [ + 10.4411095, + 50.992760001 + ], + [ + 10.4419721, + 50.992601201 + ], + [ + 10.4422903, + 50.992542601 + ], + [ + 10.4428164, + 50.992445801 + ], + [ + 10.4434907, + 50.992320001 + ], + [ + 10.4455959, + 50.991927001 + ], + [ + 10.4487113, + 50.991356301 + ], + [ + 10.4488203, + 50.991336301 + ], + [ + 10.4505437, + 50.991020701 + ], + [ + 10.4515873, + 50.990827801 + ], + [ + 10.4517556, + 50.990795601 + ], + [ + 10.4545173, + 50.990289501 + ], + [ + 10.4585031, + 50.989550001 + ], + [ + 10.4607627, + 50.989133301 + ], + [ + 10.4617605, + 50.988941901 + ], + [ + 10.4621961, + 50.988856101 + ], + [ + 10.4630147, + 50.988694801 + ], + [ + 10.4642367, + 50.988438501 + ], + [ + 10.4654115, + 50.988180101 + ], + [ + 10.4666195, + 50.987878101 + ], + [ + 10.4678217, + 50.987560801 + ], + [ + 10.468984, + 50.987212901 + ], + [ + 10.4691231, + 50.987166501 + ], + [ + 10.4701126, + 50.986836201 + ], + [ + 10.471278, + 50.986427001 + ], + [ + 10.4725958, + 50.985916401 + ], + [ + 10.4738886, + 50.985365401 + ], + [ + 10.4749236, + 50.984888701 + ], + [ + 10.475353, + 50.984666001 + ], + [ + 10.4759547, + 50.984354001 + ], + [ + 10.4768999, + 50.983854301 + ], + [ + 10.4778432, + 50.983303901 + ], + [ + 10.4789003, + 50.982642301 + ], + [ + 10.4794515, + 50.982267401 + ], + [ + 10.4800509, + 50.981837401 + ], + [ + 10.4801304, + 50.981780301 + ], + [ + 10.4810368, + 50.981108201 + ], + [ + 10.4814596, + 50.980771201 + ], + [ + 10.4820484, + 50.980281001 + ], + [ + 10.4823275, + 50.980033401 + ], + [ + 10.4824976, + 50.979872601 + ], + [ + 10.4837041, + 50.978683201 + ], + [ + 10.4844516, + 50.977872301 + ], + [ + 10.4847109, + 50.977559201 + ], + [ + 10.4854575, + 50.976619101 + ], + [ + 10.4858208, + 50.976102601 + ], + [ + 10.4861688, + 50.975618001 + ], + [ + 10.4866048, + 50.974880301 + ], + [ + 10.4871062, + 50.973958501 + ], + [ + 10.4874681, + 50.973192001 + ], + [ + 10.4878489, + 50.972249201 + ], + [ + 10.4881867, + 50.971284101 + ], + [ + 10.4884365, + 50.970354701 + ], + [ + 10.4885315, + 50.969852801 + ], + [ + 10.4886523, + 50.969214901 + ], + [ + 10.4887509, + 50.968411601 + ], + [ + 10.4887968, + 50.967600501 + ], + [ + 10.488801, + 50.966632501 + ], + [ + 10.4887714, + 50.966158701 + ], + [ + 10.4887331, + 50.965683901 + ], + [ + 10.4886594, + 50.965138401 + ], + [ + 10.4886028, + 50.964719001 + ], + [ + 10.4883847, + 50.963605201 + ], + [ + 10.4882392, + 50.963019401 + ], + [ + 10.4882057, + 50.962896001 + ], + [ + 10.4880987, + 50.962501301 + ], + [ + 10.4876428, + 50.960850501 + ], + [ + 10.4871373, + 50.959004801 + ], + [ + 10.4867964, + 50.957743701 + ], + [ + 10.4863946, + 50.956282901 + ], + [ + 10.4863762, + 50.956215901 + ], + [ + 10.4861796, + 50.955500401 + ], + [ + 10.4860748, + 50.955037901 + ], + [ + 10.4860005, + 50.954702601 + ], + [ + 10.4858958, + 50.954183301 + ], + [ + 10.4857848, + 50.953450801 + ], + [ + 10.4857109, + 50.952757501 + ], + [ + 10.4856963, + 50.952096101 + ], + [ + 10.485703, + 50.951475001 + ], + [ + 10.4857217, + 50.951010401 + ], + [ + 10.4857584, + 50.950576601 + ], + [ + 10.485805, + 50.950233401 + ], + [ + 10.4858502, + 50.949926101 + ], + [ + 10.485914, + 50.949564001 + ], + [ + 10.4859799, + 50.949238001 + ], + [ + 10.4860511, + 50.948945201 + ], + [ + 10.4861773, + 50.948430301 + ], + [ + 10.4862599, + 50.948149001 + ], + [ + 10.4864271, + 50.947677201 + ], + [ + 10.4864962, + 50.947460301 + ], + [ + 10.486616, + 50.947132401 + ], + [ + 10.4867219, + 50.946869001 + ], + [ + 10.4869922, + 50.946267301 + ], + [ + 10.4872936, + 50.945666901 + ], + [ + 10.4876912, + 50.944959301 + ], + [ + 10.4879024, + 50.944606901 + ], + [ + 10.4881301, + 50.944262201 + ], + [ + 10.4884097, + 50.943853601 + ], + [ + 10.4886642, + 50.943500301 + ], + [ + 10.4889012, + 50.943192401 + ], + [ + 10.4889885, + 50.943085301 + ], + [ + 10.4895227, + 50.942431101 + ], + [ + 10.49018, + 50.941705701 + ], + [ + 10.4907605, + 50.941118601 + ], + [ + 10.491416, + 50.940511701 + ], + [ + 10.4921814, + 50.939851301 + ], + [ + 10.4923904, + 50.939687501 + ], + [ + 10.4929791, + 50.939226201 + ], + [ + 10.4937933, + 50.938636001 + ], + [ + 10.4946785, + 50.938046201 + ], + [ + 10.4952797, + 50.937659501 + ], + [ + 10.4964827, + 50.936920901 + ], + [ + 10.4975961, + 50.936247401 + ], + [ + 10.4990454, + 50.935355901 + ], + [ + 10.5004781, + 50.934439301 + ], + [ + 10.502041, + 50.933394501 + ], + [ + 10.5025248, + 50.933060801 + ], + [ + 10.5036128, + 50.932310201 + ], + [ + 10.5053714, + 50.931052701 + ], + [ + 10.5067025, + 50.930129301 + ], + [ + 10.5069407, + 50.929966201 + ], + [ + 10.5074167, + 50.929661801 + ], + [ + 10.5081529, + 50.929187001 + ], + [ + 10.5094433, + 50.928407801 + ], + [ + 10.5107931, + 50.927651701 + ], + [ + 10.5119756, + 50.927033101 + ], + [ + 10.5126592, + 50.926689801 + ], + [ + 10.5129686, + 50.926534401 + ], + [ + 10.5141877, + 50.925968101 + ], + [ + 10.5152736, + 50.925495201 + ], + [ + 10.5163218, + 50.925066101 + ], + [ + 10.5172256, + 50.924701101 + ], + [ + 10.5182942, + 50.924312701 + ], + [ + 10.5186818, + 50.924174901 + ], + [ + 10.5196238, + 50.923839801 + ], + [ + 10.5207636, + 50.923479401 + ], + [ + 10.5222248, + 50.923045601 + ], + [ + 10.5235294, + 50.922674201 + ], + [ + 10.5241463, + 50.922518501 + ], + [ + 10.5251314, + 50.922268801 + ], + [ + 10.5254547, + 50.922194801 + ], + [ + 10.5255627, + 50.922170001 + ], + [ + 10.5266616, + 50.921920201 + ], + [ + 10.5279719, + 50.921642701 + ], + [ + 10.529083, + 50.921443301 + ], + [ + 10.5303366, + 50.921231201 + ], + [ + 10.5315921, + 50.921035001 + ], + [ + 10.532067, + 50.920970801 + ], + [ + 10.5326996, + 50.920885301 + ], + [ + 10.534549, + 50.920659701 + ], + [ + 10.5360755, + 50.920510401 + ], + [ + 10.5374159, + 50.920398001 + ], + [ + 10.5388107, + 50.920294801 + ], + [ + 10.5391784, + 50.920272501 + ], + [ + 10.5398715, + 50.920230401 + ], + [ + 10.5409498, + 50.920168001 + ], + [ + 10.5411338, + 50.920157401 + ], + [ + 10.5415624, + 50.920131801 + ], + [ + 10.541795, + 50.920123401 + ], + [ + 10.5440561, + 50.920019401 + ], + [ + 10.5460188, + 50.919953801 + ], + [ + 10.5492258, + 50.919875301 + ], + [ + 10.5497891, + 50.919861901 + ], + [ + 10.5519495, + 50.919810401 + ], + [ + 10.5526571, + 50.919793601 + ], + [ + 10.5530789, + 50.919783501 + ], + [ + 10.5556598, + 50.919720901 + ], + [ + 10.559678, + 50.919630601 + ], + [ + 10.5633798, + 50.919541101 + ], + [ + 10.5646316, + 50.919490401 + ], + [ + 10.566064, + 50.919399801 + ], + [ + 10.5674256, + 50.919269301 + ], + [ + 10.5685402, + 50.919133601 + ], + [ + 10.5697409, + 50.918949501 + ], + [ + 10.5709003, + 50.918740701 + ], + [ + 10.5717725, + 50.918557701 + ], + [ + 10.5720978, + 50.918488101 + ], + [ + 10.5729098, + 50.918298601 + ], + [ + 10.573616, + 50.918115101 + ], + [ + 10.574074, + 50.917985001 + ], + [ + 10.5741923, + 50.917951001 + ], + [ + 10.5744184, + 50.917884901 + ], + [ + 10.5749734, + 50.917716601 + ], + [ + 10.5756556, + 50.917496601 + ], + [ + 10.576478, + 50.917211001 + ], + [ + 10.5772948, + 50.916893401 + ], + [ + 10.5777255, + 50.916729401 + ], + [ + 10.5784797, + 50.916415301 + ], + [ + 10.579292, + 50.916061001 + ], + [ + 10.5800863, + 50.915676701 + ], + [ + 10.5807031, + 50.915362901 + ], + [ + 10.5811007, + 50.915144401 + ], + [ + 10.5818968, + 50.914704101 + ], + [ + 10.5828034, + 50.914170301 + ], + [ + 10.5855376, + 50.912588501 + ], + [ + 10.587149, + 50.911657301 + ], + [ + 10.5882677, + 50.911002501 + ], + [ + 10.589231, + 50.910464301 + ], + [ + 10.5900104, + 50.910048001 + ], + [ + 10.5906373, + 50.909743301 + ], + [ + 10.590791, + 50.909670101 + ], + [ + 10.5914276, + 50.909374401 + ], + [ + 10.5924919, + 50.908912601 + ], + [ + 10.5931535, + 50.908655401 + ], + [ + 10.5939931, + 50.908354701 + ], + [ + 10.5946704, + 50.908111601 + ], + [ + 10.5953385, + 50.907902501 + ], + [ + 10.5963318, + 50.907612801 + ], + [ + 10.5973304, + 50.907339501 + ], + [ + 10.5975847, + 50.907279801 + ], + [ + 10.5986843, + 50.907021401 + ], + [ + 10.5996662, + 50.906821501 + ], + [ + 10.6005607, + 50.906668001 + ], + [ + 10.601611, + 50.906504201 + ], + [ + 10.6028704, + 50.906345301 + ], + [ + 10.6039374, + 50.906233301 + ], + [ + 10.6041213, + 50.906219201 + ], + [ + 10.6050949, + 50.906144601 + ], + [ + 10.6059558, + 50.906102801 + ], + [ + 10.6072278, + 50.906063901 + ], + [ + 10.6075385, + 50.906063001 + ], + [ + 10.6079659, + 50.906057001 + ], + [ + 10.6082431, + 50.906057101 + ], + [ + 10.6087978, + 50.906069801 + ], + [ + 10.609034, + 50.906071901 + ], + [ + 10.6100112, + 50.906106101 + ], + [ + 10.6102207, + 50.906116301 + ], + [ + 10.6107857, + 50.906135001 + ], + [ + 10.6111973, + 50.906151601 + ], + [ + 10.6114466, + 50.906164101 + ], + [ + 10.6138425, + 50.906292301 + ], + [ + 10.6171329, + 50.906459801 + ], + [ + 10.618199, + 50.906512101 + ], + [ + 10.6193242, + 50.906576601 + ], + [ + 10.6197824, + 50.906603401 + ], + [ + 10.6209996, + 50.906661001 + ], + [ + 10.6225142, + 50.906727401 + ], + [ + 10.6251306, + 50.906809101 + ], + [ + 10.6253535, + 50.906813701 + ], + [ + 10.6304951, + 50.906908001 + ], + [ + 10.6327004, + 50.906948501 + ], + [ + 10.6328544, + 50.906950601 + ], + [ + 10.6342863, + 50.906988001 + ], + [ + 10.6355369, + 50.907038201 + ], + [ + 10.6370618, + 50.907122401 + ], + [ + 10.6395251, + 50.907292701 + ], + [ + 10.6396429, + 50.907299801 + ], + [ + 10.6398506, + 50.907317301 + ], + [ + 10.6398801, + 50.907319301 + ], + [ + 10.6402204, + 50.907341001 + ], + [ + 10.6404103, + 50.907355701 + ], + [ + 10.6431864, + 50.907557501 + ], + [ + 10.6472572, + 50.907851401 + ], + [ + 10.648188, + 50.907916701 + ], + [ + 10.6508148, + 50.908101001 + ], + [ + 10.6523298, + 50.908178501 + ], + [ + 10.6533235, + 50.908202201 + ], + [ + 10.6538523, + 50.908216001 + ], + [ + 10.6551497, + 50.908187201 + ], + [ + 10.6558931, + 50.908172601 + ], + [ + 10.6567031, + 50.908130901 + ], + [ + 10.6576859, + 50.908058701 + ], + [ + 10.6589311, + 50.907937101 + ], + [ + 10.6596927, + 50.907854901 + ], + [ + 10.6605765, + 50.907728601 + ], + [ + 10.6610724, + 50.907653701 + ], + [ + 10.6619326, + 50.907497201 + ], + [ + 10.663137, + 50.907262601 + ], + [ + 10.6639086, + 50.907089901 + ], + [ + 10.6650727, + 50.906823401 + ], + [ + 10.6669793, + 50.906365501 + ], + [ + 10.6678571, + 50.906156401 + ], + [ + 10.6689111, + 50.905905401 + ], + [ + 10.6710547, + 50.905388301 + ], + [ + 10.674227, + 50.904629601 + ], + [ + 10.6750936, + 50.904422401 + ], + [ + 10.6770253, + 50.903955401 + ], + [ + 10.679086, + 50.903466301 + ], + [ + 10.6795153, + 50.903364401 + ], + [ + 10.6816763, + 50.902876001 + ], + [ + 10.6833051, + 50.902535301 + ], + [ + 10.6847338, + 50.902265401 + ], + [ + 10.6857259, + 50.902100201 + ], + [ + 10.6864303, + 50.901991401 + ], + [ + 10.6869556, + 50.901917001 + ], + [ + 10.6870727, + 50.901901001 + ], + [ + 10.6879401, + 50.901783601 + ], + [ + 10.6890032, + 50.901653001 + ], + [ + 10.6899561, + 50.901559801 + ], + [ + 10.6917354, + 50.901391001 + ], + [ + 10.6931151, + 50.901307801 + ], + [ + 10.6949359, + 50.901222201 + ], + [ + 10.6964288, + 50.901188901 + ], + [ + 10.6983665, + 50.901189001 + ], + [ + 10.7001644, + 50.901194001 + ], + [ + 10.7008727, + 50.901196901 + ], + [ + 10.7014551, + 50.901203701 + ], + [ + 10.7026926, + 50.901215401 + ], + [ + 10.705025, + 50.901237501 + ], + [ + 10.7078907, + 50.901260301 + ], + [ + 10.7088242, + 50.901268401 + ], + [ + 10.7089216, + 50.901268901 + ], + [ + 10.7097196, + 50.901275201 + ], + [ + 10.7134691, + 50.901312801 + ], + [ + 10.7157576, + 50.901330101 + ], + [ + 10.7167722, + 50.901337801 + ], + [ + 10.7183532, + 50.901347001 + ], + [ + 10.7229388, + 50.901385701 + ], + [ + 10.7234767, + 50.901390301 + ], + [ + 10.7260389, + 50.901412401 + ], + [ + 10.7289836, + 50.901441101 + ], + [ + 10.7294167, + 50.901442601 + ], + [ + 10.7297587, + 50.901442801 + ], + [ + 10.7300296, + 50.901446501 + ], + [ + 10.731171, + 50.901456001 + ], + [ + 10.7321638, + 50.901458401 + ], + [ + 10.7331037, + 50.901445301 + ], + [ + 10.73347, + 50.901435601 + ], + [ + 10.7341923, + 50.901410601 + ], + [ + 10.7360296, + 50.901304001 + ], + [ + 10.736695084, + 50.901243063 + ] + ] + } + }, + { + "identifier": "2026-017107--vi-bs.2026-04-14_20-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.01633542268986,10.35156613308513,51.00845103530817,10.282508862362965", + "point": "51.01633542268986,10.35156613308513", + "startLcPosition": "66", + "impact": { + "lower": "Eisenach-West", + "upper": "Eisenach-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Eisenach-Ost - Eisenach-West", + "coordinate": { + "lat": 51.01633542268986, + "long": 10.35156613308513 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 4.5 km hinter AS Eisenach-Ost und 1.1 km vor AS Eisenach-West", + "", + "L\u00e4nge: 5 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 von Eisenach-Ost (AS) nach Eisenach-West (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.351566133, + 51.016335423 + ], + [ + 10.3504606, + 51.016133801 + ], + [ + 10.3477849, + 51.015641101 + ], + [ + 10.3469874, + 51.015505401 + ], + [ + 10.3462759, + 51.015377501 + ], + [ + 10.3447853, + 51.015164401 + ], + [ + 10.3440253, + 51.015058601 + ], + [ + 10.3431836, + 51.014963001 + ], + [ + 10.3422781, + 51.014876401 + ], + [ + 10.3415809, + 51.014819301 + ], + [ + 10.340467, + 51.014751101 + ], + [ + 10.3387606, + 51.014682601 + ], + [ + 10.337315, + 51.014672001 + ], + [ + 10.3358741, + 51.014691401 + ], + [ + 10.3348495, + 51.014728301 + ], + [ + 10.3319189, + 51.014890501 + ], + [ + 10.3297643, + 51.015006001 + ], + [ + 10.3287171, + 51.015056301 + ], + [ + 10.3276541, + 51.015107501 + ], + [ + 10.3264141, + 51.015161101 + ], + [ + 10.3255752, + 51.015184101 + ], + [ + 10.3249809, + 51.015200601 + ], + [ + 10.3228568, + 51.015227101 + ], + [ + 10.3208092, + 51.015225101 + ], + [ + 10.3187701, + 51.015186101 + ], + [ + 10.3171246, + 51.015132201 + ], + [ + 10.3144168, + 51.014990201 + ], + [ + 10.3123737, + 51.014839101 + ], + [ + 10.3106057, + 51.014689501 + ], + [ + 10.3088699, + 51.014504901 + ], + [ + 10.3083779, + 51.014453101 + ], + [ + 10.3075909, + 51.014360601 + ], + [ + 10.3058401, + 51.014140501 + ], + [ + 10.3040975, + 51.013894401 + ], + [ + 10.301864, + 51.013538201 + ], + [ + 10.3003752, + 51.013265701 + ], + [ + 10.2989135, + 51.012994601 + ], + [ + 10.2969486, + 51.012592301 + ], + [ + 10.2957156, + 51.012324901 + ], + [ + 10.2943085, + 51.011994001 + ], + [ + 10.2931141, + 51.011693901 + ], + [ + 10.2916914, + 51.011332701 + ], + [ + 10.2900342, + 51.010869301 + ], + [ + 10.289833, + 51.010809501 + ], + [ + 10.2894168, + 51.010687901 + ], + [ + 10.2886371, + 51.010465001 + ], + [ + 10.2870563, + 51.009979701 + ], + [ + 10.2856703, + 51.009537801 + ], + [ + 10.2846061, + 51.009170401 + ], + [ + 10.2843142, + 51.009069601 + ], + [ + 10.2831997, + 51.008688101 + ], + [ + 10.282508862, + 51.008451035 + ] + ] + } + }, + { + "identifier": "2026-017114--vi-bs.2026-04-16_20-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.01720796498341,10.358551594097742,51.00845103530817,10.282508862362965", + "point": "51.01720796498341,10.358551594097742", + "startLcPosition": "66", + "impact": { + "lower": "Eisenach-West", + "upper": "Eisenach-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Eisenach-Ost - Eisenach-West", + "coordinate": { + "lat": 51.01720796498341, + "long": 10.358551594097742 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 20:00 bis zum 17.04.26 06:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 06:00 Uhr.", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 4.0 km hinter AS Eisenach-Ost und 1.1 km vor AS Eisenach-West", + "", + "L\u00e4nge: 5.5 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 von Eisenach-Ost (AS) nach Eisenach-West (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.358551594, + 51.017207965 + ], + [ + 10.3581839, + 51.017186401 + ], + [ + 10.3569188, + 51.017086001 + ], + [ + 10.3559663, + 51.016987901 + ], + [ + 10.3546681, + 51.016833201 + ], + [ + 10.3540657, + 51.016742201 + ], + [ + 10.3534016, + 51.016640101 + ], + [ + 10.3519345, + 51.016402601 + ], + [ + 10.3504606, + 51.016133801 + ], + [ + 10.3477849, + 51.015641101 + ], + [ + 10.3469874, + 51.015505401 + ], + [ + 10.3462759, + 51.015377501 + ], + [ + 10.3447853, + 51.015164401 + ], + [ + 10.3440253, + 51.015058601 + ], + [ + 10.3431836, + 51.014963001 + ], + [ + 10.3422781, + 51.014876401 + ], + [ + 10.3415809, + 51.014819301 + ], + [ + 10.340467, + 51.014751101 + ], + [ + 10.3387606, + 51.014682601 + ], + [ + 10.337315, + 51.014672001 + ], + [ + 10.3358741, + 51.014691401 + ], + [ + 10.3348495, + 51.014728301 + ], + [ + 10.3319189, + 51.014890501 + ], + [ + 10.3297643, + 51.015006001 + ], + [ + 10.3287171, + 51.015056301 + ], + [ + 10.3276541, + 51.015107501 + ], + [ + 10.3264141, + 51.015161101 + ], + [ + 10.3255752, + 51.015184101 + ], + [ + 10.3249809, + 51.015200601 + ], + [ + 10.3228568, + 51.015227101 + ], + [ + 10.3208092, + 51.015225101 + ], + [ + 10.3187701, + 51.015186101 + ], + [ + 10.3171246, + 51.015132201 + ], + [ + 10.3144168, + 51.014990201 + ], + [ + 10.3123737, + 51.014839101 + ], + [ + 10.3106057, + 51.014689501 + ], + [ + 10.3088699, + 51.014504901 + ], + [ + 10.3083779, + 51.014453101 + ], + [ + 10.3075909, + 51.014360601 + ], + [ + 10.3058401, + 51.014140501 + ], + [ + 10.3040975, + 51.013894401 + ], + [ + 10.301864, + 51.013538201 + ], + [ + 10.3003752, + 51.013265701 + ], + [ + 10.2989135, + 51.012994601 + ], + [ + 10.2969486, + 51.012592301 + ], + [ + 10.2957156, + 51.012324901 + ], + [ + 10.2943085, + 51.011994001 + ], + [ + 10.2931141, + 51.011693901 + ], + [ + 10.2916914, + 51.011332701 + ], + [ + 10.2900342, + 51.010869301 + ], + [ + 10.289833, + 51.010809501 + ], + [ + 10.2894168, + 51.010687901 + ], + [ + 10.2886371, + 51.010465001 + ], + [ + 10.2870563, + 51.009979701 + ], + [ + 10.2856703, + 51.009537801 + ], + [ + 10.2846061, + 51.009170401 + ], + [ + 10.2843142, + 51.009069601 + ], + [ + 10.2831997, + 51.008688101 + ], + [ + 10.282508862, + 51.008451035 + ] + ] + } + }, + { + "identifier": "2026-016077--vi-bs.2026-04-10_20-00-00-000.devi-bs.2026-04-09_20-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.98109638828577,10.481051620280388,50.959840852535464,10.487366272416198", + "point": "50.98109638828577,10.481051620280388", + "startLcPosition": "67", + "impact": { + "lower": "S\u00e4ttelst\u00e4dt", + "upper": "Hainich", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Hainich - S\u00e4ttelst\u00e4dt", + "coordinate": { + "lat": 50.98109638828577, + "long": 10.481051620280388 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 3.0 km hinter Hainich und 1.5 km vor AS S\u00e4ttelst\u00e4dt", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 von Hainich (Rastplatz) nach S\u00e4ttelst\u00e4dt (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.48105162, + 50.981096388 + ], + [ + 10.4814596, + 50.980771201 + ], + [ + 10.4820484, + 50.980281001 + ], + [ + 10.4823275, + 50.980033401 + ], + [ + 10.4824976, + 50.979872601 + ], + [ + 10.4837041, + 50.978683201 + ], + [ + 10.4844516, + 50.977872301 + ], + [ + 10.4847109, + 50.977559201 + ], + [ + 10.4854575, + 50.976619101 + ], + [ + 10.4858208, + 50.976102601 + ], + [ + 10.4861688, + 50.975618001 + ], + [ + 10.4866048, + 50.974880301 + ], + [ + 10.4871062, + 50.973958501 + ], + [ + 10.4874681, + 50.973192001 + ], + [ + 10.4878489, + 50.972249201 + ], + [ + 10.4881867, + 50.971284101 + ], + [ + 10.4884365, + 50.970354701 + ], + [ + 10.4885315, + 50.969852801 + ], + [ + 10.4886523, + 50.969214901 + ], + [ + 10.4887509, + 50.968411601 + ], + [ + 10.4887968, + 50.967600501 + ], + [ + 10.488801, + 50.966632501 + ], + [ + 10.4887714, + 50.966158701 + ], + [ + 10.4887331, + 50.965683901 + ], + [ + 10.4886594, + 50.965138401 + ], + [ + 10.4886028, + 50.964719001 + ], + [ + 10.4883847, + 50.963605201 + ], + [ + 10.4882392, + 50.963019401 + ], + [ + 10.4882057, + 50.962896001 + ], + [ + 10.4880987, + 50.962501301 + ], + [ + 10.4876428, + 50.960850501 + ], + [ + 10.487366272, + 50.959840853 + ] + ] + } + }, + { + "identifier": "2026-016077--vi-bs.2026-04-09_20-00-00-000.devi-bs.2026-04-09_20-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.9773332901555,10.48489031481792,50.95984085253545,10.487366272416196", + "point": "50.9773332901555,10.48489031481792", + "startLcPosition": "67", + "impact": { + "lower": "S\u00e4ttelst\u00e4dt", + "upper": "Hainich", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Hainich - S\u00e4ttelst\u00e4dt", + "coordinate": { + "lat": 50.9773332901555, + "long": 10.48489031481792 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 3.5 km hinter Hainich und 1.5 km vor AS S\u00e4ttelst\u00e4dt", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 von Hainich (Rastplatz) nach S\u00e4ttelst\u00e4dt (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.484890315, + 50.97733329 + ], + [ + 10.4854575, + 50.976619101 + ], + [ + 10.4858208, + 50.976102601 + ], + [ + 10.4861688, + 50.975618001 + ], + [ + 10.4866048, + 50.974880301 + ], + [ + 10.4871062, + 50.973958501 + ], + [ + 10.4874681, + 50.973192001 + ], + [ + 10.4878489, + 50.972249201 + ], + [ + 10.4881867, + 50.971284101 + ], + [ + 10.4884365, + 50.970354701 + ], + [ + 10.4885315, + 50.969852801 + ], + [ + 10.4886523, + 50.969214901 + ], + [ + 10.4887509, + 50.968411601 + ], + [ + 10.4887968, + 50.967600501 + ], + [ + 10.488801, + 50.966632501 + ], + [ + 10.4887714, + 50.966158701 + ], + [ + 10.4887331, + 50.965683901 + ], + [ + 10.4886594, + 50.965138401 + ], + [ + 10.4886028, + 50.964719001 + ], + [ + 10.4883847, + 50.963605201 + ], + [ + 10.4882392, + 50.963019401 + ], + [ + 10.4882057, + 50.962896001 + ], + [ + 10.4880987, + 50.962501301 + ], + [ + 10.4876428, + 50.960850501 + ], + [ + 10.487366272, + 50.959840853 + ] + ] + } + }, + { + "identifier": "2026-017097--vi-bs.2026-04-13_20-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.94492522906798,10.48794077774859,50.96338173201076,10.488552329908032", + "point": "50.94492522906798,10.48794077774859", + "startLcPosition": "69", + "impact": { + "lower": "Hainich", + "upper": "Waltershausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Waltershausen - Hainich", + "coordinate": { + "lat": 50.94492522906798, + "long": 10.48794077774859 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 5.4 km hinter AS Waltershausen und 5.2 km vor Hainich", + "", + "L\u00e4nge: 2.09 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 von Waltershausen (AS) nach Hainich (Rastplatz) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.487940778, + 50.944925229 + ], + [ + 10.4879026, + 50.944985601 + ], + [ + 10.4875021, + 50.945703101 + ], + [ + 10.4871526, + 50.946403501 + ], + [ + 10.4869361, + 50.946900801 + ], + [ + 10.4868491, + 50.947116701 + ], + [ + 10.4867172, + 50.947495301 + ], + [ + 10.486554, + 50.947950401 + ], + [ + 10.4864269, + 50.948358301 + ], + [ + 10.4862933, + 50.948808401 + ], + [ + 10.4862473, + 50.949021801 + ], + [ + 10.4862055, + 50.949260801 + ], + [ + 10.4861338, + 50.949587301 + ], + [ + 10.486062, + 50.950026101 + ], + [ + 10.4860178, + 50.950296401 + ], + [ + 10.4859873, + 50.950586501 + ], + [ + 10.4859426, + 50.951015001 + ], + [ + 10.4859142, + 50.951481401 + ], + [ + 10.4859174, + 50.952057801 + ], + [ + 10.485947, + 50.952762201 + ], + [ + 10.4860016, + 50.953451601 + ], + [ + 10.4861131, + 50.954161901 + ], + [ + 10.4862107, + 50.954669501 + ], + [ + 10.486298, + 50.955042501 + ], + [ + 10.4863664, + 50.955361401 + ], + [ + 10.4865101, + 50.955907001 + ], + [ + 10.4865414, + 50.956034401 + ], + [ + 10.4870105, + 50.957736901 + ], + [ + 10.4873548, + 50.959011901 + ], + [ + 10.4878898, + 50.960894201 + ], + [ + 10.4883341, + 50.962500801 + ], + [ + 10.488427, + 50.962853801 + ], + [ + 10.4884605, + 50.962988101 + ], + [ + 10.48855233, + 50.963381732 + ] + ] + } + }, + { + "identifier": "2026-008529--vi-bs.2026-04-15_07-00-00-000.devi-bs.2026-04-13_07-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.906219431540336,10.6063380168637,50.90668111753687,10.601386889302537", + "point": "50.906219431540336,10.6063380168637", + "startLcPosition": "71", + "impact": { + "lower": "H\u00f6rselgau", + "upper": "Gotha-Boxberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Gotha-Boxberg - H\u00f6rselgau", + "coordinate": { + "lat": 50.906219431540336, + "long": 10.6063380168637 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:00 bis 17:00 Uhr", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 0.4 km hinter AS Gotha-Boxberg und 1.3 km vor H\u00f6rselgau", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 VST_2026-008529_bRF_238-248_Schlaglochsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.606338017, + 50.906219432 + ], + [ + 10.6061997, + 50.906223701 + ], + [ + 10.6054637, + 50.906265701 + ], + [ + 10.6041601, + 50.906352801 + ], + [ + 10.6029371, + 50.906474301 + ], + [ + 10.6016509, + 50.906640901 + ], + [ + 10.601386889, + 50.906681118 + ] + ] + } + }, + { + "identifier": "2026-008529--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.901403962432695,10.725059797780721,50.901002301575744,10.738783562367404", + "point": "50.901403962432695,10.725059797780721", + "startLcPosition": "71", + "impact": { + "lower": "Drei Gleichen", + "upper": "Gotha-Boxberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Gotha-Boxberg - Drei Gleichen", + "coordinate": { + "lat": 50.901403962432695, + "long": 10.725059797780721 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 18:00 Uhr", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 8.1 km hinter AS Gotha-Boxberg und 5.7 km vor Drei Gleichen", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 VST_2026-008529_bRF_238-248_Schlaglochsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.725059798, + 50.901403962 + ], + [ + 10.7260389, + 50.901412401 + ], + [ + 10.7289836, + 50.901441101 + ], + [ + 10.7294167, + 50.901442601 + ], + [ + 10.7297587, + 50.901442801 + ], + [ + 10.7300296, + 50.901446501 + ], + [ + 10.731171, + 50.901456001 + ], + [ + 10.7321638, + 50.901458401 + ], + [ + 10.7331037, + 50.901445301 + ], + [ + 10.73347, + 50.901435601 + ], + [ + 10.7341923, + 50.901410601 + ], + [ + 10.7360296, + 50.901304001 + ], + [ + 10.7369087, + 50.901223501 + ], + [ + 10.7373238, + 50.901185501 + ], + [ + 10.7384848, + 50.901045801 + ], + [ + 10.738783562, + 50.901002302 + ] + ] + } + }, + { + "identifier": "2026-008529--vi-bs.2026-04-15_07-00-00-000.devi-bs.2026-04-13_07-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.90143412873013,10.7116640654562,50.90133485466331,10.699622801387896", + "point": "50.90143412873013,10.7116640654562", + "startLcPosition": "72", + "impact": { + "lower": "Gotha-Boxberg", + "upper": "Gotha", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Gotha - Gotha-Boxberg", + "coordinate": { + "lat": 50.90143412873013, + "long": 10.7116640654562 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:00 bis 17:00 Uhr", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 1.2 km hinter AS Gotha und 6.3 km vor AS Gotha-Boxberg", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 VST_2026-008529_bRF_238-248_Schlaglochsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.711664065, + 50.901434129 + ], + [ + 10.7098356, + 50.901418001 + ], + [ + 10.7090683, + 50.901412601 + ], + [ + 10.7090245, + 50.901412301 + ], + [ + 10.7077882, + 50.901401501 + ], + [ + 10.7049931, + 50.901374201 + ], + [ + 10.7026723, + 50.901356701 + ], + [ + 10.700897, + 50.901339101 + ], + [ + 10.7001834, + 50.901336901 + ], + [ + 10.699622801, + 50.901334855 + ] + ] + } + }, + { + "identifier": "2026-008529--vi-bs.2026-04-14_07-00-00-000.devi-bs.2026-04-13_07-00-00-000.de4", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.90144272811942,10.729633983810817,50.90006516620613,10.74352553179162", + "point": "50.90144272811942,10.729633983810817", + "startLcPosition": "72", + "impact": { + "lower": "Drei Gleichen", + "upper": "Gotha", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kirchheimer Dreieck -> Erfurt", + "title": "A4 | Gotha - Drei Gleichen", + "coordinate": { + "lat": 50.90144272811942, + "long": 10.729633983810817 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:00 bis 18:00 Uhr", + "", + "A4: Kirchheimer Dreieck -> Erfurt, zwischen 0.1 km hinter AS Gotha und 5.4 km vor Drei Gleichen", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 VST_2026-008529_bRF_238-248_Schlaglochsanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.729633984, + 50.901442728 + ], + [ + 10.7297587, + 50.901442801 + ], + [ + 10.7300296, + 50.901446501 + ], + [ + 10.731171, + 50.901456001 + ], + [ + 10.7321638, + 50.901458401 + ], + [ + 10.7331037, + 50.901445301 + ], + [ + 10.73347, + 50.901435601 + ], + [ + 10.7341923, + 50.901410601 + ], + [ + 10.7360296, + 50.901304001 + ], + [ + 10.7369087, + 50.901223501 + ], + [ + 10.7373238, + 50.901185501 + ], + [ + 10.7384848, + 50.901045801 + ], + [ + 10.7396867, + 50.900870801 + ], + [ + 10.7409622, + 50.900640901 + ], + [ + 10.7421783, + 50.900395801 + ], + [ + 10.743525532, + 50.900065166 + ] + ] + } + }, + { + "identifier": "2024-060562--vi-bs.2026-04-07_07-00-00-000.devi-zus.2024-12-23_06-00-00-000_012.de265", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.90138873519761,10.736727062715062,51.007929084639926,10.202039951610166", + "point": "50.90138873519761,10.736727062715062", + "startLcPosition": "73", + "impact": { + "lower": "Werratal", + "upper": "Drei Gleichen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Drei Gleichen - Werratal", + "coordinate": { + "lat": 50.90138873519761, + "long": 10.736727062715062 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 5.9 km hinter Drei Gleichen und 1.5 km vor Werratal", + "", + "L\u00e4nge: 44.43 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "04 VST_Betriebsdienstleistungen_2025Q01" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.736727063, + 50.901388735 + ], + [ + 10.7357095, + 50.901474301 + ], + [ + 10.7342107, + 50.901554901 + ], + [ + 10.733093, + 50.901585901 + ], + [ + 10.7320994, + 50.901596801 + ], + [ + 10.7312188, + 50.901594501 + ], + [ + 10.7300358, + 50.901588001 + ], + [ + 10.7291895, + 50.901581401 + ], + [ + 10.7286067, + 50.901575001 + ], + [ + 10.7258023, + 50.901554701 + ], + [ + 10.7255222, + 50.901552101 + ], + [ + 10.723481, + 50.901535801 + ], + [ + 10.7228545, + 50.901529201 + ], + [ + 10.7184109, + 50.901485301 + ], + [ + 10.7157411, + 50.901460701 + ], + [ + 10.7134099, + 50.901449501 + ], + [ + 10.7098356, + 50.901418001 + ], + [ + 10.7090683, + 50.901412601 + ], + [ + 10.7090245, + 50.901412301 + ], + [ + 10.7077882, + 50.901401501 + ], + [ + 10.7049931, + 50.901374201 + ], + [ + 10.7026723, + 50.901356701 + ], + [ + 10.700897, + 50.901339101 + ], + [ + 10.7001834, + 50.901336901 + ], + [ + 10.6983506, + 50.901330201 + ], + [ + 10.6964401, + 50.901338701 + ], + [ + 10.694951, + 50.901362501 + ], + [ + 10.6931453, + 50.901436201 + ], + [ + 10.6917488, + 50.901537701 + ], + [ + 10.6899862, + 50.901683401 + ], + [ + 10.6889473, + 50.901796601 + ], + [ + 10.6879105, + 50.901924801 + ], + [ + 10.6870074, + 50.902052301 + ], + [ + 10.6864816, + 50.902125401 + ], + [ + 10.6858763, + 50.902220901 + ], + [ + 10.6848138, + 50.902399901 + ], + [ + 10.6833926, + 50.902658501 + ], + [ + 10.6817748, + 50.902999101 + ], + [ + 10.6795901, + 50.903489801 + ], + [ + 10.6791611, + 50.903592201 + ], + [ + 10.6771506, + 50.904076201 + ], + [ + 10.6743349, + 50.904750601 + ], + [ + 10.6711686, + 50.905504501 + ], + [ + 10.6690227, + 50.906021601 + ], + [ + 10.6679365, + 50.906280401 + ], + [ + 10.6670978, + 50.906484001 + ], + [ + 10.6651547, + 50.906946401 + ], + [ + 10.6639747, + 50.907224401 + ], + [ + 10.6632322, + 50.907388301 + ], + [ + 10.6620114, + 50.907630001 + ], + [ + 10.6611269, + 50.907790301 + ], + [ + 10.6606305, + 50.907863901 + ], + [ + 10.6597828, + 50.907979301 + ], + [ + 10.6590143, + 50.908072801 + ], + [ + 10.657736, + 50.908199901 + ], + [ + 10.6567485, + 50.908269101 + ], + [ + 10.6559706, + 50.908307001 + ], + [ + 10.6552148, + 50.908329501 + ], + [ + 10.6539242, + 50.908353201 + ], + [ + 10.6531732, + 50.908338901 + ], + [ + 10.6523774, + 50.908320101 + ], + [ + 10.6508379, + 50.908240001 + ], + [ + 10.6481767, + 50.908055501 + ], + [ + 10.6472914, + 50.907990401 + ], + [ + 10.6432183, + 50.907698801 + ], + [ + 10.640198, + 50.907478901 + ], + [ + 10.639858, + 50.907455401 + ], + [ + 10.6398265, + 50.907453501 + ], + [ + 10.6396291, + 50.907436901 + ], + [ + 10.6394321, + 50.907425801 + ], + [ + 10.6371138, + 50.907262501 + ], + [ + 10.6355771, + 50.907183101 + ], + [ + 10.6342954, + 50.907117901 + ], + [ + 10.6329298, + 50.907091801 + ], + [ + 10.6327059, + 50.907086801 + ], + [ + 10.6305812, + 50.907044701 + ], + [ + 10.6255958, + 50.906958601 + ], + [ + 10.6251577, + 50.906947601 + ], + [ + 10.6225512, + 50.906867901 + ], + [ + 10.6210693, + 50.906796901 + ], + [ + 10.6197658, + 50.906736101 + ], + [ + 10.6193069, + 50.906715101 + ], + [ + 10.6182437, + 50.906654701 + ], + [ + 10.617101, + 50.906603301 + ], + [ + 10.6151055, + 50.906496201 + ], + [ + 10.6147973, + 50.906484701 + ], + [ + 10.6141891, + 50.906452101 + ], + [ + 10.6119003, + 50.906331101 + ], + [ + 10.6115446, + 50.906314401 + ], + [ + 10.6110004, + 50.906286801 + ], + [ + 10.6100623, + 50.906246901 + ], + [ + 10.6090567, + 50.906210001 + ], + [ + 10.6085171, + 50.906200501 + ], + [ + 10.6078804, + 50.906196001 + ], + [ + 10.6075265, + 50.906189101 + ], + [ + 10.607246, + 50.906191401 + ], + [ + 10.6061997, + 50.906223701 + ], + [ + 10.6054637, + 50.906265701 + ], + [ + 10.6041601, + 50.906352801 + ], + [ + 10.6029371, + 50.906474301 + ], + [ + 10.6016509, + 50.906640901 + ], + [ + 10.6006793, + 50.906788901 + ], + [ + 10.59971, + 50.906955001 + ], + [ + 10.598782, + 50.907150401 + ], + [ + 10.5976559, + 50.907409401 + ], + [ + 10.5973583, + 50.907483401 + ], + [ + 10.5963888, + 50.907749501 + ], + [ + 10.595432, + 50.908033701 + ], + [ + 10.5947279, + 50.908258001 + ], + [ + 10.5940941, + 50.908478001 + ], + [ + 10.5932117, + 50.908796301 + ], + [ + 10.5925986, + 50.909035001 + ], + [ + 10.5914399, + 50.909539601 + ], + [ + 10.5911559, + 50.909662101 + ], + [ + 10.5910841, + 50.909695401 + ], + [ + 10.5907655, + 50.909841701 + ], + [ + 10.5906113, + 50.909921001 + ], + [ + 10.5901561, + 50.910152801 + ], + [ + 10.5894206, + 50.910542501 + ], + [ + 10.5884271, + 50.911098201 + ], + [ + 10.5873054, + 50.911746601 + ], + [ + 10.5856945, + 50.912679101 + ], + [ + 10.5835252, + 50.913933801 + ], + [ + 10.5832248, + 50.914107501 + ], + [ + 10.58294, + 50.914277401 + ], + [ + 10.5820257, + 50.914810401 + ], + [ + 10.5812648, + 50.915236201 + ], + [ + 10.5806712, + 50.915563401 + ], + [ + 10.5802693, + 50.915763901 + ], + [ + 10.5792945, + 50.916221701 + ], + [ + 10.5786096, + 50.916533801 + ], + [ + 10.5779066, + 50.916823901 + ], + [ + 10.5774883, + 50.916987001 + ], + [ + 10.5765654, + 50.917338301 + ], + [ + 10.5757952, + 50.917608301 + ], + [ + 10.5751033, + 50.917824801 + ], + [ + 10.5746182, + 50.917972901 + ], + [ + 10.5743048, + 50.918066301 + ], + [ + 10.5742353, + 50.918085801 + ], + [ + 10.5737323, + 50.918226101 + ], + [ + 10.5735084, + 50.918284401 + ], + [ + 10.5730078, + 50.918415901 + ], + [ + 10.5721662, + 50.918610601 + ], + [ + 10.5718414, + 50.918681001 + ], + [ + 10.570957, + 50.918871101 + ], + [ + 10.5697695, + 50.919086401 + ], + [ + 10.5686386, + 50.919258201 + ], + [ + 10.5674878, + 50.919402701 + ], + [ + 10.5660734, + 50.919539701 + ], + [ + 10.5646608, + 50.919624901 + ], + [ + 10.5633586, + 50.919675801 + ], + [ + 10.5596915, + 50.919769001 + ], + [ + 10.5533659, + 50.919910901 + ], + [ + 10.5502806, + 50.919986301 + ], + [ + 10.5472302, + 50.920065801 + ], + [ + 10.5467435, + 50.920082001 + ], + [ + 10.5457312, + 50.920115801 + ], + [ + 10.5446592, + 50.920148701 + ], + [ + 10.5437903, + 50.920175401 + ], + [ + 10.5420947, + 50.920250401 + ], + [ + 10.5415811, + 50.920273001 + ], + [ + 10.5411523, + 50.920296601 + ], + [ + 10.5406704, + 50.920321301 + ], + [ + 10.5404899, + 50.920330301 + ], + [ + 10.5399678, + 50.920356401 + ], + [ + 10.5398768, + 50.920361001 + ], + [ + 10.5387975, + 50.920433001 + ], + [ + 10.5374592, + 50.920537901 + ], + [ + 10.5361046, + 50.920652701 + ], + [ + 10.534696, + 50.920787101 + ], + [ + 10.5333627, + 50.920940101 + ], + [ + 10.5317422, + 50.921158001 + ], + [ + 10.5304328, + 50.921352001 + ], + [ + 10.5291959, + 50.921560801 + ], + [ + 10.528065, + 50.921772001 + ], + [ + 10.5268353, + 50.922025501 + ], + [ + 10.5255309, + 50.922320901 + ], + [ + 10.5252072, + 50.922394201 + ], + [ + 10.5251728, + 50.922402001 + ], + [ + 10.5242339, + 50.922638601 + ], + [ + 10.5235387, + 50.922817201 + ], + [ + 10.5223182, + 50.923154801 + ], + [ + 10.5208865, + 50.923589801 + ], + [ + 10.5197488, + 50.923957901 + ], + [ + 10.5184043, + 50.924426001 + ], + [ + 10.5173225, + 50.924830401 + ], + [ + 10.5164562, + 50.925164101 + ], + [ + 10.5153866, + 50.925605601 + ], + [ + 10.5143617, + 50.926050501 + ], + [ + 10.5130961, + 50.926644301 + ], + [ + 10.5127849, + 50.926799501 + ], + [ + 10.5121052, + 50.927131601 + ], + [ + 10.5109252, + 50.927751901 + ], + [ + 10.5095813, + 50.928497101 + ], + [ + 10.5082918, + 50.929287301 + ], + [ + 10.5077282, + 50.929653601 + ], + [ + 10.507105, + 50.930065601 + ], + [ + 10.5068694, + 50.930230301 + ], + [ + 10.5055081, + 50.931157501 + ], + [ + 10.5037996, + 50.932378501 + ], + [ + 10.5025892, + 50.933197401 + ], + [ + 10.5006032, + 50.934553701 + ], + [ + 10.4991456, + 50.935494801 + ], + [ + 10.4976856, + 50.936382601 + ], + [ + 10.4965943, + 50.937046101 + ], + [ + 10.4954723, + 50.937737601 + ], + [ + 10.4947878, + 50.938178301 + ], + [ + 10.4939187, + 50.938752501 + ], + [ + 10.4930816, + 50.939360601 + ], + [ + 10.4925539, + 50.939779301 + ], + [ + 10.4915484, + 50.940635001 + ], + [ + 10.490955, + 50.941189701 + ], + [ + 10.4904705, + 50.941669101 + ], + [ + 10.4901033, + 50.942068901 + ], + [ + 10.4895285, + 50.942719801 + ], + [ + 10.4891782, + 50.943147601 + ], + [ + 10.4888568, + 50.943563001 + ], + [ + 10.4885346, + 50.944010401 + ], + [ + 10.4882351, + 50.944459801 + ], + [ + 10.4879026, + 50.944985601 + ], + [ + 10.4875021, + 50.945703101 + ], + [ + 10.4871526, + 50.946403501 + ], + [ + 10.4869361, + 50.946900801 + ], + [ + 10.4868491, + 50.947116701 + ], + [ + 10.4867172, + 50.947495301 + ], + [ + 10.486554, + 50.947950401 + ], + [ + 10.4864269, + 50.948358301 + ], + [ + 10.4862933, + 50.948808401 + ], + [ + 10.4862473, + 50.949021801 + ], + [ + 10.4862055, + 50.949260801 + ], + [ + 10.4861338, + 50.949587301 + ], + [ + 10.486062, + 50.950026101 + ], + [ + 10.4860178, + 50.950296401 + ], + [ + 10.4859873, + 50.950586501 + ], + [ + 10.4859426, + 50.951015001 + ], + [ + 10.4859142, + 50.951481401 + ], + [ + 10.4859174, + 50.952057801 + ], + [ + 10.485947, + 50.952762201 + ], + [ + 10.4860016, + 50.953451601 + ], + [ + 10.4861131, + 50.954161901 + ], + [ + 10.4862107, + 50.954669501 + ], + [ + 10.486298, + 50.955042501 + ], + [ + 10.4863664, + 50.955361401 + ], + [ + 10.4865101, + 50.955907001 + ], + [ + 10.4865414, + 50.956034401 + ], + [ + 10.4870105, + 50.957736901 + ], + [ + 10.4873548, + 50.959011901 + ], + [ + 10.4878898, + 50.960894201 + ], + [ + 10.4883341, + 50.962500801 + ], + [ + 10.488427, + 50.962853801 + ], + [ + 10.4884605, + 50.962988101 + ], + [ + 10.4886057, + 50.963610501 + ], + [ + 10.4888797, + 50.965040901 + ], + [ + 10.4889522, + 50.965705501 + ], + [ + 10.4890015, + 50.966195101 + ], + [ + 10.4890242, + 50.966671201 + ], + [ + 10.4890189, + 50.967643301 + ], + [ + 10.4889627, + 50.968429801 + ], + [ + 10.4888617, + 50.969291001 + ], + [ + 10.4887488, + 50.969871501 + ], + [ + 10.488637, + 50.970416201 + ], + [ + 10.4883796, + 50.971386201 + ], + [ + 10.4880629, + 50.972322901 + ], + [ + 10.487673, + 50.973247301 + ], + [ + 10.487318, + 50.973999501 + ], + [ + 10.4868003, + 50.974942401 + ], + [ + 10.4863419, + 50.975720601 + ], + [ + 10.4860236, + 50.976152801 + ], + [ + 10.4848944, + 50.977627401 + ], + [ + 10.4846212, + 50.977949401 + ], + [ + 10.4838418, + 50.978799501 + ], + [ + 10.4826673, + 50.979944001 + ], + [ + 10.4825099, + 50.980085201 + ], + [ + 10.4820917, + 50.980476901 + ], + [ + 10.4812703, + 50.981137401 + ], + [ + 10.4802728, + 50.981896001 + ], + [ + 10.479579, + 50.982388101 + ], + [ + 10.4790513, + 50.982749401 + ], + [ + 10.4779525, + 50.983424601 + ], + [ + 10.4770026, + 50.983988101 + ], + [ + 10.4755044, + 50.984775201 + ], + [ + 10.4750067, + 50.985017301 + ], + [ + 10.4739638, + 50.985499901 + ], + [ + 10.4726436, + 50.986059601 + ], + [ + 10.4713304, + 50.986572801 + ], + [ + 10.4701841, + 50.986974201 + ], + [ + 10.469041, + 50.987345001 + ], + [ + 10.4678635, + 50.987698901 + ], + [ + 10.4666696, + 50.988017001 + ], + [ + 10.4654563, + 50.988311101 + ], + [ + 10.4642572, + 50.988582001 + ], + [ + 10.463033, + 50.988832701 + ], + [ + 10.4622835, + 50.988986101 + ], + [ + 10.4617719, + 50.989087701 + ], + [ + 10.4607992, + 50.989269901 + ], + [ + 10.4585372, + 50.989694901 + ], + [ + 10.4545396, + 50.990434601 + ], + [ + 10.4518175, + 50.990933401 + ], + [ + 10.4516481, + 50.990963101 + ], + [ + 10.4505118, + 50.991168001 + ], + [ + 10.4488014, + 50.991485701 + ], + [ + 10.4487369, + 50.991498901 + ], + [ + 10.4483045, + 50.991579201 + ], + [ + 10.4458222, + 50.992040301 + ], + [ + 10.4436104, + 50.992447801 + ], + [ + 10.4427024, + 50.992617201 + ], + [ + 10.4422686, + 50.992687801 + ], + [ + 10.4420416, + 50.992728701 + ], + [ + 10.4414832, + 50.992832701 + ], + [ + 10.4392692, + 50.993248101 + ], + [ + 10.4377227, + 50.993532401 + ], + [ + 10.4353967, + 50.993952301 + ], + [ + 10.4345113, + 50.994121301 + ], + [ + 10.4328195, + 50.994438601 + ], + [ + 10.4326528, + 50.994468601 + ], + [ + 10.4324412, + 50.994505501 + ], + [ + 10.4303365, + 50.994894201 + ], + [ + 10.4273849, + 50.995435301 + ], + [ + 10.425965, + 50.995702801 + ], + [ + 10.4249388, + 50.995897501 + ], + [ + 10.4237235, + 50.996112901 + ], + [ + 10.4224945, + 50.996338401 + ], + [ + 10.4217035, + 50.996484501 + ], + [ + 10.4203335, + 50.996737501 + ], + [ + 10.4181383, + 50.997176701 + ], + [ + 10.4161697, + 50.997629101 + ], + [ + 10.4152051, + 50.997889301 + ], + [ + 10.4149862, + 50.997948401 + ], + [ + 10.413748, + 50.998312501 + ], + [ + 10.4126133, + 50.998676701 + ], + [ + 10.4112318, + 50.999169401 + ], + [ + 10.410247, + 50.999552401 + ], + [ + 10.4088546, + 51.000120001 + ], + [ + 10.4087786, + 51.000151001 + ], + [ + 10.4083059, + 51.000345901 + ], + [ + 10.4072536, + 51.000779601 + ], + [ + 10.4065941, + 51.001051501 + ], + [ + 10.4062311, + 51.001215301 + ], + [ + 10.4056887, + 51.001438301 + ], + [ + 10.4045519, + 51.001908701 + ], + [ + 10.4032227, + 51.002463001 + ], + [ + 10.4000569, + 51.003778701 + ], + [ + 10.3981919, + 51.004583201 + ], + [ + 10.397616, + 51.004849101 + ], + [ + 10.3961348, + 51.005533201 + ], + [ + 10.3946252, + 51.006274501 + ], + [ + 10.3936173, + 51.006784901 + ], + [ + 10.3926488, + 51.007294201 + ], + [ + 10.3920914, + 51.007603401 + ], + [ + 10.391718, + 51.007806001 + ], + [ + 10.3916515, + 51.007843101 + ], + [ + 10.3912756, + 51.008049201 + ], + [ + 10.3897587, + 51.008914501 + ], + [ + 10.3886354, + 51.009589101 + ], + [ + 10.387372, + 51.010360201 + ], + [ + 10.3868115, + 51.010704001 + ], + [ + 10.3864348, + 51.010940001 + ], + [ + 10.3855015, + 51.011486301 + ], + [ + 10.3845259, + 51.012038001 + ], + [ + 10.3836365, + 51.012498501 + ], + [ + 10.3829814, + 51.012837601 + ], + [ + 10.3821671, + 51.013210501 + ], + [ + 10.3813002, + 51.013589301 + ], + [ + 10.3810728, + 51.013680301 + ], + [ + 10.3804349, + 51.013935801 + ], + [ + 10.3789028, + 51.014514201 + ], + [ + 10.3780062, + 51.014830801 + ], + [ + 10.376864, + 51.015188401 + ], + [ + 10.3754708, + 51.015582601 + ], + [ + 10.3745698, + 51.015816601 + ], + [ + 10.3743093, + 51.015884201 + ], + [ + 10.373309, + 51.016111101 + ], + [ + 10.3723363, + 51.016313801 + ], + [ + 10.3708587, + 51.016585501 + ], + [ + 10.3698943, + 51.016739801 + ], + [ + 10.3688912, + 51.016878801 + ], + [ + 10.3681129, + 51.016974401 + ], + [ + 10.3671173, + 51.017074501 + ], + [ + 10.3661242, + 51.017161201 + ], + [ + 10.3653224, + 51.017211301 + ], + [ + 10.364521, + 51.017265001 + ], + [ + 10.3640389, + 51.017279701 + ], + [ + 10.3632817, + 51.017304601 + ], + [ + 10.3620397, + 51.017313801 + ], + [ + 10.3612492, + 51.017311601 + ], + [ + 10.3602412, + 51.017294201 + ], + [ + 10.3592309, + 51.017247801 + ], + [ + 10.3581839, + 51.017186401 + ], + [ + 10.3569188, + 51.017086001 + ], + [ + 10.3559663, + 51.016987901 + ], + [ + 10.3546681, + 51.016833201 + ], + [ + 10.3540657, + 51.016742201 + ], + [ + 10.3534016, + 51.016640101 + ], + [ + 10.3519345, + 51.016402601 + ], + [ + 10.3504606, + 51.016133801 + ], + [ + 10.3477849, + 51.015641101 + ], + [ + 10.3469874, + 51.015505401 + ], + [ + 10.3462759, + 51.015377501 + ], + [ + 10.3447853, + 51.015164401 + ], + [ + 10.3440253, + 51.015058601 + ], + [ + 10.3431836, + 51.014963001 + ], + [ + 10.3422781, + 51.014876401 + ], + [ + 10.3415809, + 51.014819301 + ], + [ + 10.340467, + 51.014751101 + ], + [ + 10.3387606, + 51.014682601 + ], + [ + 10.337315, + 51.014672001 + ], + [ + 10.3358741, + 51.014691401 + ], + [ + 10.3348495, + 51.014728301 + ], + [ + 10.3319189, + 51.014890501 + ], + [ + 10.3297643, + 51.015006001 + ], + [ + 10.3287171, + 51.015056301 + ], + [ + 10.3276541, + 51.015107501 + ], + [ + 10.3264141, + 51.015161101 + ], + [ + 10.3255752, + 51.015184101 + ], + [ + 10.3249809, + 51.015200601 + ], + [ + 10.3228568, + 51.015227101 + ], + [ + 10.3208092, + 51.015225101 + ], + [ + 10.3187701, + 51.015186101 + ], + [ + 10.3171246, + 51.015132201 + ], + [ + 10.3144168, + 51.014990201 + ], + [ + 10.3123737, + 51.014839101 + ], + [ + 10.3106057, + 51.014689501 + ], + [ + 10.3088699, + 51.014504901 + ], + [ + 10.3083779, + 51.014453101 + ], + [ + 10.3075909, + 51.014360601 + ], + [ + 10.3058401, + 51.014140501 + ], + [ + 10.3040975, + 51.013894401 + ], + [ + 10.301864, + 51.013538201 + ], + [ + 10.3003752, + 51.013265701 + ], + [ + 10.2989135, + 51.012994601 + ], + [ + 10.2969486, + 51.012592301 + ], + [ + 10.2957156, + 51.012324901 + ], + [ + 10.2943085, + 51.011994001 + ], + [ + 10.2931141, + 51.011693901 + ], + [ + 10.2916914, + 51.011332701 + ], + [ + 10.2900342, + 51.010869301 + ], + [ + 10.289833, + 51.010809501 + ], + [ + 10.2894168, + 51.010687901 + ], + [ + 10.2886371, + 51.010465001 + ], + [ + 10.2870563, + 51.009979701 + ], + [ + 10.2856703, + 51.009537801 + ], + [ + 10.2846061, + 51.009170401 + ], + [ + 10.2843142, + 51.009069601 + ], + [ + 10.2831997, + 51.008688101 + ], + [ + 10.2807088, + 51.007833301 + ], + [ + 10.279156, + 51.007344101 + ], + [ + 10.2776352, + 51.006934701 + ], + [ + 10.276777, + 51.006717201 + ], + [ + 10.2758482, + 51.006511201 + ], + [ + 10.2754646, + 51.006434301 + ], + [ + 10.2750265, + 51.006343901 + ], + [ + 10.2746208, + 51.006267301 + ], + [ + 10.2735207, + 51.006077401 + ], + [ + 10.2726787, + 51.005947401 + ], + [ + 10.2719425, + 51.005842701 + ], + [ + 10.2711978, + 51.005756201 + ], + [ + 10.2704379, + 51.005675201 + ], + [ + 10.2698605, + 51.005622001 + ], + [ + 10.2697676, + 51.005613801 + ], + [ + 10.2694303, + 51.005588201 + ], + [ + 10.2691171, + 51.005564401 + ], + [ + 10.2684207, + 51.005528101 + ], + [ + 10.2678713, + 51.005502101 + ], + [ + 10.2676281, + 51.005492901 + ], + [ + 10.2675925, + 51.005490001 + ], + [ + 10.267016, + 51.005470301 + ], + [ + 10.2669615, + 51.005472501 + ], + [ + 10.2658122, + 51.005447401 + ], + [ + 10.2649282, + 51.005450601 + ], + [ + 10.2645695, + 51.005450801 + ], + [ + 10.263803, + 51.005472601 + ], + [ + 10.2631135, + 51.005498501 + ], + [ + 10.261827, + 51.005569201 + ], + [ + 10.2610035, + 51.005635501 + ], + [ + 10.2602238, + 51.005700101 + ], + [ + 10.2594979, + 51.005787301 + ], + [ + 10.2587356, + 51.005879201 + ], + [ + 10.2577674, + 51.006011801 + ], + [ + 10.2571363, + 51.006112001 + ], + [ + 10.2566589, + 51.006184501 + ], + [ + 10.2563985, + 51.006228801 + ], + [ + 10.256255, + 51.006255001 + ], + [ + 10.2554546, + 51.006400901 + ], + [ + 10.2548373, + 51.006509001 + ], + [ + 10.2515932, + 51.007115901 + ], + [ + 10.2495441, + 51.007512301 + ], + [ + 10.2484417, + 51.007704501 + ], + [ + 10.2467552, + 51.008024301 + ], + [ + 10.2461904, + 51.008122701 + ], + [ + 10.2453032, + 51.008295201 + ], + [ + 10.2446374, + 51.008412701 + ], + [ + 10.2441798, + 51.008491101 + ], + [ + 10.242974, + 51.008694701 + ], + [ + 10.2407656, + 51.009025101 + ], + [ + 10.2397601, + 51.009168501 + ], + [ + 10.2388034, + 51.009289301 + ], + [ + 10.2380516, + 51.009384901 + ], + [ + 10.237572, + 51.009439601 + ], + [ + 10.2372716, + 51.009472101 + ], + [ + 10.2367964, + 51.009512501 + ], + [ + 10.2362455, + 51.009573101 + ], + [ + 10.2355287, + 51.009652701 + ], + [ + 10.2286838, + 51.010412501 + ], + [ + 10.2258125, + 51.010731201 + ], + [ + 10.2251454, + 51.010805701 + ], + [ + 10.2224375, + 51.011102901 + ], + [ + 10.2217301, + 51.011169001 + ], + [ + 10.2209904, + 51.011224601 + ], + [ + 10.2203482, + 51.011270601 + ], + [ + 10.2197163, + 51.011305501 + ], + [ + 10.2189562, + 51.011338501 + ], + [ + 10.2184687, + 51.011347601 + ], + [ + 10.2174854, + 51.011351001 + ], + [ + 10.2167169, + 51.011340801 + ], + [ + 10.2161975, + 51.011324901 + ], + [ + 10.2149547, + 51.011243901 + ], + [ + 10.2139674, + 51.011167701 + ], + [ + 10.2130081, + 51.011058301 + ], + [ + 10.2124775, + 51.010999101 + ], + [ + 10.2117212, + 51.010878401 + ], + [ + 10.2105138, + 51.010672301 + ], + [ + 10.2097895, + 51.010527601 + ], + [ + 10.2090833, + 51.010370401 + ], + [ + 10.2083893, + 51.010195201 + ], + [ + 10.2078896, + 51.010062801 + ], + [ + 10.2072154, + 51.009878301 + ], + [ + 10.2069385, + 51.009791501 + ], + [ + 10.2067548, + 51.009734901 + ], + [ + 10.2063137, + 51.009598501 + ], + [ + 10.2056299, + 51.009371501 + ], + [ + 10.2045497, + 51.008976501 + ], + [ + 10.2038883, + 51.008716601 + ], + [ + 10.203048, + 51.008361201 + ], + [ + 10.2028897, + 51.008294801 + ], + [ + 10.202039952, + 51.007929085 + ] + ] + } + }, + { + "identifier": "2024-060562--vi-bs.2026-04-07_07-00-00-000.devi-zus.2024-12-23_06-00-00-000_012.de259", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.90138873519761,10.736727062715062,51.007929084639926,10.202039951610166", + "point": "50.90138873519761,10.736727062715062", + "startLcPosition": "73", + "impact": { + "lower": "Werratal", + "upper": "Drei Gleichen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Kirchheimer Dreieck", + "title": "A4 | Drei Gleichen - Werratal", + "coordinate": { + "lat": 50.90138873519761, + "long": 10.736727062715062 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A4: Erfurt -> Kirchheimer Dreieck, zwischen 5.9 km hinter Drei Gleichen und 1.5 km vor Werratal", + "", + "L\u00e4nge: 44.43 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "04 VST_Betriebsdienstleistungen_2025Q01" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.736727063, + 50.901388735 + ], + [ + 10.7357095, + 50.901474301 + ], + [ + 10.7342107, + 50.901554901 + ], + [ + 10.733093, + 50.901585901 + ], + [ + 10.7320994, + 50.901596801 + ], + [ + 10.7312188, + 50.901594501 + ], + [ + 10.7300358, + 50.901588001 + ], + [ + 10.7291895, + 50.901581401 + ], + [ + 10.7286067, + 50.901575001 + ], + [ + 10.7258023, + 50.901554701 + ], + [ + 10.7255222, + 50.901552101 + ], + [ + 10.723481, + 50.901535801 + ], + [ + 10.7228545, + 50.901529201 + ], + [ + 10.7184109, + 50.901485301 + ], + [ + 10.7157411, + 50.901460701 + ], + [ + 10.7134099, + 50.901449501 + ], + [ + 10.7098356, + 50.901418001 + ], + [ + 10.7090683, + 50.901412601 + ], + [ + 10.7090245, + 50.901412301 + ], + [ + 10.7077882, + 50.901401501 + ], + [ + 10.7049931, + 50.901374201 + ], + [ + 10.7026723, + 50.901356701 + ], + [ + 10.700897, + 50.901339101 + ], + [ + 10.7001834, + 50.901336901 + ], + [ + 10.6983506, + 50.901330201 + ], + [ + 10.6964401, + 50.901338701 + ], + [ + 10.694951, + 50.901362501 + ], + [ + 10.6931453, + 50.901436201 + ], + [ + 10.6917488, + 50.901537701 + ], + [ + 10.6899862, + 50.901683401 + ], + [ + 10.6889473, + 50.901796601 + ], + [ + 10.6879105, + 50.901924801 + ], + [ + 10.6870074, + 50.902052301 + ], + [ + 10.6864816, + 50.902125401 + ], + [ + 10.6858763, + 50.902220901 + ], + [ + 10.6848138, + 50.902399901 + ], + [ + 10.6833926, + 50.902658501 + ], + [ + 10.6817748, + 50.902999101 + ], + [ + 10.6795901, + 50.903489801 + ], + [ + 10.6791611, + 50.903592201 + ], + [ + 10.6771506, + 50.904076201 + ], + [ + 10.6743349, + 50.904750601 + ], + [ + 10.6711686, + 50.905504501 + ], + [ + 10.6690227, + 50.906021601 + ], + [ + 10.6679365, + 50.906280401 + ], + [ + 10.6670978, + 50.906484001 + ], + [ + 10.6651547, + 50.906946401 + ], + [ + 10.6639747, + 50.907224401 + ], + [ + 10.6632322, + 50.907388301 + ], + [ + 10.6620114, + 50.907630001 + ], + [ + 10.6611269, + 50.907790301 + ], + [ + 10.6606305, + 50.907863901 + ], + [ + 10.6597828, + 50.907979301 + ], + [ + 10.6590143, + 50.908072801 + ], + [ + 10.657736, + 50.908199901 + ], + [ + 10.6567485, + 50.908269101 + ], + [ + 10.6559706, + 50.908307001 + ], + [ + 10.6552148, + 50.908329501 + ], + [ + 10.6539242, + 50.908353201 + ], + [ + 10.6531732, + 50.908338901 + ], + [ + 10.6523774, + 50.908320101 + ], + [ + 10.6508379, + 50.908240001 + ], + [ + 10.6481767, + 50.908055501 + ], + [ + 10.6472914, + 50.907990401 + ], + [ + 10.6432183, + 50.907698801 + ], + [ + 10.640198, + 50.907478901 + ], + [ + 10.639858, + 50.907455401 + ], + [ + 10.6398265, + 50.907453501 + ], + [ + 10.6396291, + 50.907436901 + ], + [ + 10.6394321, + 50.907425801 + ], + [ + 10.6371138, + 50.907262501 + ], + [ + 10.6355771, + 50.907183101 + ], + [ + 10.6342954, + 50.907117901 + ], + [ + 10.6329298, + 50.907091801 + ], + [ + 10.6327059, + 50.907086801 + ], + [ + 10.6305812, + 50.907044701 + ], + [ + 10.6255958, + 50.906958601 + ], + [ + 10.6251577, + 50.906947601 + ], + [ + 10.6225512, + 50.906867901 + ], + [ + 10.6210693, + 50.906796901 + ], + [ + 10.6197658, + 50.906736101 + ], + [ + 10.6193069, + 50.906715101 + ], + [ + 10.6182437, + 50.906654701 + ], + [ + 10.617101, + 50.906603301 + ], + [ + 10.6151055, + 50.906496201 + ], + [ + 10.6147973, + 50.906484701 + ], + [ + 10.6141891, + 50.906452101 + ], + [ + 10.6119003, + 50.906331101 + ], + [ + 10.6115446, + 50.906314401 + ], + [ + 10.6110004, + 50.906286801 + ], + [ + 10.6100623, + 50.906246901 + ], + [ + 10.6090567, + 50.906210001 + ], + [ + 10.6085171, + 50.906200501 + ], + [ + 10.6078804, + 50.906196001 + ], + [ + 10.6075265, + 50.906189101 + ], + [ + 10.607246, + 50.906191401 + ], + [ + 10.6061997, + 50.906223701 + ], + [ + 10.6054637, + 50.906265701 + ], + [ + 10.6041601, + 50.906352801 + ], + [ + 10.6029371, + 50.906474301 + ], + [ + 10.6016509, + 50.906640901 + ], + [ + 10.6006793, + 50.906788901 + ], + [ + 10.59971, + 50.906955001 + ], + [ + 10.598782, + 50.907150401 + ], + [ + 10.5976559, + 50.907409401 + ], + [ + 10.5973583, + 50.907483401 + ], + [ + 10.5963888, + 50.907749501 + ], + [ + 10.595432, + 50.908033701 + ], + [ + 10.5947279, + 50.908258001 + ], + [ + 10.5940941, + 50.908478001 + ], + [ + 10.5932117, + 50.908796301 + ], + [ + 10.5925986, + 50.909035001 + ], + [ + 10.5914399, + 50.909539601 + ], + [ + 10.5911559, + 50.909662101 + ], + [ + 10.5910841, + 50.909695401 + ], + [ + 10.5907655, + 50.909841701 + ], + [ + 10.5906113, + 50.909921001 + ], + [ + 10.5901561, + 50.910152801 + ], + [ + 10.5894206, + 50.910542501 + ], + [ + 10.5884271, + 50.911098201 + ], + [ + 10.5873054, + 50.911746601 + ], + [ + 10.5856945, + 50.912679101 + ], + [ + 10.5835252, + 50.913933801 + ], + [ + 10.5832248, + 50.914107501 + ], + [ + 10.58294, + 50.914277401 + ], + [ + 10.5820257, + 50.914810401 + ], + [ + 10.5812648, + 50.915236201 + ], + [ + 10.5806712, + 50.915563401 + ], + [ + 10.5802693, + 50.915763901 + ], + [ + 10.5792945, + 50.916221701 + ], + [ + 10.5786096, + 50.916533801 + ], + [ + 10.5779066, + 50.916823901 + ], + [ + 10.5774883, + 50.916987001 + ], + [ + 10.5765654, + 50.917338301 + ], + [ + 10.5757952, + 50.917608301 + ], + [ + 10.5751033, + 50.917824801 + ], + [ + 10.5746182, + 50.917972901 + ], + [ + 10.5743048, + 50.918066301 + ], + [ + 10.5742353, + 50.918085801 + ], + [ + 10.5737323, + 50.918226101 + ], + [ + 10.5735084, + 50.918284401 + ], + [ + 10.5730078, + 50.918415901 + ], + [ + 10.5721662, + 50.918610601 + ], + [ + 10.5718414, + 50.918681001 + ], + [ + 10.570957, + 50.918871101 + ], + [ + 10.5697695, + 50.919086401 + ], + [ + 10.5686386, + 50.919258201 + ], + [ + 10.5674878, + 50.919402701 + ], + [ + 10.5660734, + 50.919539701 + ], + [ + 10.5646608, + 50.919624901 + ], + [ + 10.5633586, + 50.919675801 + ], + [ + 10.5596915, + 50.919769001 + ], + [ + 10.5533659, + 50.919910901 + ], + [ + 10.5502806, + 50.919986301 + ], + [ + 10.5472302, + 50.920065801 + ], + [ + 10.5467435, + 50.920082001 + ], + [ + 10.5457312, + 50.920115801 + ], + [ + 10.5446592, + 50.920148701 + ], + [ + 10.5437903, + 50.920175401 + ], + [ + 10.5420947, + 50.920250401 + ], + [ + 10.5415811, + 50.920273001 + ], + [ + 10.5411523, + 50.920296601 + ], + [ + 10.5406704, + 50.920321301 + ], + [ + 10.5404899, + 50.920330301 + ], + [ + 10.5399678, + 50.920356401 + ], + [ + 10.5398768, + 50.920361001 + ], + [ + 10.5387975, + 50.920433001 + ], + [ + 10.5374592, + 50.920537901 + ], + [ + 10.5361046, + 50.920652701 + ], + [ + 10.534696, + 50.920787101 + ], + [ + 10.5333627, + 50.920940101 + ], + [ + 10.5317422, + 50.921158001 + ], + [ + 10.5304328, + 50.921352001 + ], + [ + 10.5291959, + 50.921560801 + ], + [ + 10.528065, + 50.921772001 + ], + [ + 10.5268353, + 50.922025501 + ], + [ + 10.5255309, + 50.922320901 + ], + [ + 10.5252072, + 50.922394201 + ], + [ + 10.5251728, + 50.922402001 + ], + [ + 10.5242339, + 50.922638601 + ], + [ + 10.5235387, + 50.922817201 + ], + [ + 10.5223182, + 50.923154801 + ], + [ + 10.5208865, + 50.923589801 + ], + [ + 10.5197488, + 50.923957901 + ], + [ + 10.5184043, + 50.924426001 + ], + [ + 10.5173225, + 50.924830401 + ], + [ + 10.5164562, + 50.925164101 + ], + [ + 10.5153866, + 50.925605601 + ], + [ + 10.5143617, + 50.926050501 + ], + [ + 10.5130961, + 50.926644301 + ], + [ + 10.5127849, + 50.926799501 + ], + [ + 10.5121052, + 50.927131601 + ], + [ + 10.5109252, + 50.927751901 + ], + [ + 10.5095813, + 50.928497101 + ], + [ + 10.5082918, + 50.929287301 + ], + [ + 10.5077282, + 50.929653601 + ], + [ + 10.507105, + 50.930065601 + ], + [ + 10.5068694, + 50.930230301 + ], + [ + 10.5055081, + 50.931157501 + ], + [ + 10.5037996, + 50.932378501 + ], + [ + 10.5025892, + 50.933197401 + ], + [ + 10.5006032, + 50.934553701 + ], + [ + 10.4991456, + 50.935494801 + ], + [ + 10.4976856, + 50.936382601 + ], + [ + 10.4965943, + 50.937046101 + ], + [ + 10.4954723, + 50.937737601 + ], + [ + 10.4947878, + 50.938178301 + ], + [ + 10.4939187, + 50.938752501 + ], + [ + 10.4930816, + 50.939360601 + ], + [ + 10.4925539, + 50.939779301 + ], + [ + 10.4915484, + 50.940635001 + ], + [ + 10.490955, + 50.941189701 + ], + [ + 10.4904705, + 50.941669101 + ], + [ + 10.4901033, + 50.942068901 + ], + [ + 10.4895285, + 50.942719801 + ], + [ + 10.4891782, + 50.943147601 + ], + [ + 10.4888568, + 50.943563001 + ], + [ + 10.4885346, + 50.944010401 + ], + [ + 10.4882351, + 50.944459801 + ], + [ + 10.4879026, + 50.944985601 + ], + [ + 10.4875021, + 50.945703101 + ], + [ + 10.4871526, + 50.946403501 + ], + [ + 10.4869361, + 50.946900801 + ], + [ + 10.4868491, + 50.947116701 + ], + [ + 10.4867172, + 50.947495301 + ], + [ + 10.486554, + 50.947950401 + ], + [ + 10.4864269, + 50.948358301 + ], + [ + 10.4862933, + 50.948808401 + ], + [ + 10.4862473, + 50.949021801 + ], + [ + 10.4862055, + 50.949260801 + ], + [ + 10.4861338, + 50.949587301 + ], + [ + 10.486062, + 50.950026101 + ], + [ + 10.4860178, + 50.950296401 + ], + [ + 10.4859873, + 50.950586501 + ], + [ + 10.4859426, + 50.951015001 + ], + [ + 10.4859142, + 50.951481401 + ], + [ + 10.4859174, + 50.952057801 + ], + [ + 10.485947, + 50.952762201 + ], + [ + 10.4860016, + 50.953451601 + ], + [ + 10.4861131, + 50.954161901 + ], + [ + 10.4862107, + 50.954669501 + ], + [ + 10.486298, + 50.955042501 + ], + [ + 10.4863664, + 50.955361401 + ], + [ + 10.4865101, + 50.955907001 + ], + [ + 10.4865414, + 50.956034401 + ], + [ + 10.4870105, + 50.957736901 + ], + [ + 10.4873548, + 50.959011901 + ], + [ + 10.4878898, + 50.960894201 + ], + [ + 10.4883341, + 50.962500801 + ], + [ + 10.488427, + 50.962853801 + ], + [ + 10.4884605, + 50.962988101 + ], + [ + 10.4886057, + 50.963610501 + ], + [ + 10.4888797, + 50.965040901 + ], + [ + 10.4889522, + 50.965705501 + ], + [ + 10.4890015, + 50.966195101 + ], + [ + 10.4890242, + 50.966671201 + ], + [ + 10.4890189, + 50.967643301 + ], + [ + 10.4889627, + 50.968429801 + ], + [ + 10.4888617, + 50.969291001 + ], + [ + 10.4887488, + 50.969871501 + ], + [ + 10.488637, + 50.970416201 + ], + [ + 10.4883796, + 50.971386201 + ], + [ + 10.4880629, + 50.972322901 + ], + [ + 10.487673, + 50.973247301 + ], + [ + 10.487318, + 50.973999501 + ], + [ + 10.4868003, + 50.974942401 + ], + [ + 10.4863419, + 50.975720601 + ], + [ + 10.4860236, + 50.976152801 + ], + [ + 10.4848944, + 50.977627401 + ], + [ + 10.4846212, + 50.977949401 + ], + [ + 10.4838418, + 50.978799501 + ], + [ + 10.4826673, + 50.979944001 + ], + [ + 10.4825099, + 50.980085201 + ], + [ + 10.4820917, + 50.980476901 + ], + [ + 10.4812703, + 50.981137401 + ], + [ + 10.4802728, + 50.981896001 + ], + [ + 10.479579, + 50.982388101 + ], + [ + 10.4790513, + 50.982749401 + ], + [ + 10.4779525, + 50.983424601 + ], + [ + 10.4770026, + 50.983988101 + ], + [ + 10.4755044, + 50.984775201 + ], + [ + 10.4750067, + 50.985017301 + ], + [ + 10.4739638, + 50.985499901 + ], + [ + 10.4726436, + 50.986059601 + ], + [ + 10.4713304, + 50.986572801 + ], + [ + 10.4701841, + 50.986974201 + ], + [ + 10.469041, + 50.987345001 + ], + [ + 10.4678635, + 50.987698901 + ], + [ + 10.4666696, + 50.988017001 + ], + [ + 10.4654563, + 50.988311101 + ], + [ + 10.4642572, + 50.988582001 + ], + [ + 10.463033, + 50.988832701 + ], + [ + 10.4622835, + 50.988986101 + ], + [ + 10.4617719, + 50.989087701 + ], + [ + 10.4607992, + 50.989269901 + ], + [ + 10.4585372, + 50.989694901 + ], + [ + 10.4545396, + 50.990434601 + ], + [ + 10.4518175, + 50.990933401 + ], + [ + 10.4516481, + 50.990963101 + ], + [ + 10.4505118, + 50.991168001 + ], + [ + 10.4488014, + 50.991485701 + ], + [ + 10.4487369, + 50.991498901 + ], + [ + 10.4483045, + 50.991579201 + ], + [ + 10.4458222, + 50.992040301 + ], + [ + 10.4436104, + 50.992447801 + ], + [ + 10.4427024, + 50.992617201 + ], + [ + 10.4422686, + 50.992687801 + ], + [ + 10.4420416, + 50.992728701 + ], + [ + 10.4414832, + 50.992832701 + ], + [ + 10.4392692, + 50.993248101 + ], + [ + 10.4377227, + 50.993532401 + ], + [ + 10.4353967, + 50.993952301 + ], + [ + 10.4345113, + 50.994121301 + ], + [ + 10.4328195, + 50.994438601 + ], + [ + 10.4326528, + 50.994468601 + ], + [ + 10.4324412, + 50.994505501 + ], + [ + 10.4303365, + 50.994894201 + ], + [ + 10.4273849, + 50.995435301 + ], + [ + 10.425965, + 50.995702801 + ], + [ + 10.4249388, + 50.995897501 + ], + [ + 10.4237235, + 50.996112901 + ], + [ + 10.4224945, + 50.996338401 + ], + [ + 10.4217035, + 50.996484501 + ], + [ + 10.4203335, + 50.996737501 + ], + [ + 10.4181383, + 50.997176701 + ], + [ + 10.4161697, + 50.997629101 + ], + [ + 10.4152051, + 50.997889301 + ], + [ + 10.4149862, + 50.997948401 + ], + [ + 10.413748, + 50.998312501 + ], + [ + 10.4126133, + 50.998676701 + ], + [ + 10.4112318, + 50.999169401 + ], + [ + 10.410247, + 50.999552401 + ], + [ + 10.4088546, + 51.000120001 + ], + [ + 10.4087786, + 51.000151001 + ], + [ + 10.4083059, + 51.000345901 + ], + [ + 10.4072536, + 51.000779601 + ], + [ + 10.4065941, + 51.001051501 + ], + [ + 10.4062311, + 51.001215301 + ], + [ + 10.4056887, + 51.001438301 + ], + [ + 10.4045519, + 51.001908701 + ], + [ + 10.4032227, + 51.002463001 + ], + [ + 10.4000569, + 51.003778701 + ], + [ + 10.3981919, + 51.004583201 + ], + [ + 10.397616, + 51.004849101 + ], + [ + 10.3961348, + 51.005533201 + ], + [ + 10.3946252, + 51.006274501 + ], + [ + 10.3936173, + 51.006784901 + ], + [ + 10.3926488, + 51.007294201 + ], + [ + 10.3920914, + 51.007603401 + ], + [ + 10.391718, + 51.007806001 + ], + [ + 10.3916515, + 51.007843101 + ], + [ + 10.3912756, + 51.008049201 + ], + [ + 10.3897587, + 51.008914501 + ], + [ + 10.3886354, + 51.009589101 + ], + [ + 10.387372, + 51.010360201 + ], + [ + 10.3868115, + 51.010704001 + ], + [ + 10.3864348, + 51.010940001 + ], + [ + 10.3855015, + 51.011486301 + ], + [ + 10.3845259, + 51.012038001 + ], + [ + 10.3836365, + 51.012498501 + ], + [ + 10.3829814, + 51.012837601 + ], + [ + 10.3821671, + 51.013210501 + ], + [ + 10.3813002, + 51.013589301 + ], + [ + 10.3810728, + 51.013680301 + ], + [ + 10.3804349, + 51.013935801 + ], + [ + 10.3789028, + 51.014514201 + ], + [ + 10.3780062, + 51.014830801 + ], + [ + 10.376864, + 51.015188401 + ], + [ + 10.3754708, + 51.015582601 + ], + [ + 10.3745698, + 51.015816601 + ], + [ + 10.3743093, + 51.015884201 + ], + [ + 10.373309, + 51.016111101 + ], + [ + 10.3723363, + 51.016313801 + ], + [ + 10.3708587, + 51.016585501 + ], + [ + 10.3698943, + 51.016739801 + ], + [ + 10.3688912, + 51.016878801 + ], + [ + 10.3681129, + 51.016974401 + ], + [ + 10.3671173, + 51.017074501 + ], + [ + 10.3661242, + 51.017161201 + ], + [ + 10.3653224, + 51.017211301 + ], + [ + 10.364521, + 51.017265001 + ], + [ + 10.3640389, + 51.017279701 + ], + [ + 10.3632817, + 51.017304601 + ], + [ + 10.3620397, + 51.017313801 + ], + [ + 10.3612492, + 51.017311601 + ], + [ + 10.3602412, + 51.017294201 + ], + [ + 10.3592309, + 51.017247801 + ], + [ + 10.3581839, + 51.017186401 + ], + [ + 10.3569188, + 51.017086001 + ], + [ + 10.3559663, + 51.016987901 + ], + [ + 10.3546681, + 51.016833201 + ], + [ + 10.3540657, + 51.016742201 + ], + [ + 10.3534016, + 51.016640101 + ], + [ + 10.3519345, + 51.016402601 + ], + [ + 10.3504606, + 51.016133801 + ], + [ + 10.3477849, + 51.015641101 + ], + [ + 10.3469874, + 51.015505401 + ], + [ + 10.3462759, + 51.015377501 + ], + [ + 10.3447853, + 51.015164401 + ], + [ + 10.3440253, + 51.015058601 + ], + [ + 10.3431836, + 51.014963001 + ], + [ + 10.3422781, + 51.014876401 + ], + [ + 10.3415809, + 51.014819301 + ], + [ + 10.340467, + 51.014751101 + ], + [ + 10.3387606, + 51.014682601 + ], + [ + 10.337315, + 51.014672001 + ], + [ + 10.3358741, + 51.014691401 + ], + [ + 10.3348495, + 51.014728301 + ], + [ + 10.3319189, + 51.014890501 + ], + [ + 10.3297643, + 51.015006001 + ], + [ + 10.3287171, + 51.015056301 + ], + [ + 10.3276541, + 51.015107501 + ], + [ + 10.3264141, + 51.015161101 + ], + [ + 10.3255752, + 51.015184101 + ], + [ + 10.3249809, + 51.015200601 + ], + [ + 10.3228568, + 51.015227101 + ], + [ + 10.3208092, + 51.015225101 + ], + [ + 10.3187701, + 51.015186101 + ], + [ + 10.3171246, + 51.015132201 + ], + [ + 10.3144168, + 51.014990201 + ], + [ + 10.3123737, + 51.014839101 + ], + [ + 10.3106057, + 51.014689501 + ], + [ + 10.3088699, + 51.014504901 + ], + [ + 10.3083779, + 51.014453101 + ], + [ + 10.3075909, + 51.014360601 + ], + [ + 10.3058401, + 51.014140501 + ], + [ + 10.3040975, + 51.013894401 + ], + [ + 10.301864, + 51.013538201 + ], + [ + 10.3003752, + 51.013265701 + ], + [ + 10.2989135, + 51.012994601 + ], + [ + 10.2969486, + 51.012592301 + ], + [ + 10.2957156, + 51.012324901 + ], + [ + 10.2943085, + 51.011994001 + ], + [ + 10.2931141, + 51.011693901 + ], + [ + 10.2916914, + 51.011332701 + ], + [ + 10.2900342, + 51.010869301 + ], + [ + 10.289833, + 51.010809501 + ], + [ + 10.2894168, + 51.010687901 + ], + [ + 10.2886371, + 51.010465001 + ], + [ + 10.2870563, + 51.009979701 + ], + [ + 10.2856703, + 51.009537801 + ], + [ + 10.2846061, + 51.009170401 + ], + [ + 10.2843142, + 51.009069601 + ], + [ + 10.2831997, + 51.008688101 + ], + [ + 10.2807088, + 51.007833301 + ], + [ + 10.279156, + 51.007344101 + ], + [ + 10.2776352, + 51.006934701 + ], + [ + 10.276777, + 51.006717201 + ], + [ + 10.2758482, + 51.006511201 + ], + [ + 10.2754646, + 51.006434301 + ], + [ + 10.2750265, + 51.006343901 + ], + [ + 10.2746208, + 51.006267301 + ], + [ + 10.2735207, + 51.006077401 + ], + [ + 10.2726787, + 51.005947401 + ], + [ + 10.2719425, + 51.005842701 + ], + [ + 10.2711978, + 51.005756201 + ], + [ + 10.2704379, + 51.005675201 + ], + [ + 10.2698605, + 51.005622001 + ], + [ + 10.2697676, + 51.005613801 + ], + [ + 10.2694303, + 51.005588201 + ], + [ + 10.2691171, + 51.005564401 + ], + [ + 10.2684207, + 51.005528101 + ], + [ + 10.2678713, + 51.005502101 + ], + [ + 10.2676281, + 51.005492901 + ], + [ + 10.2675925, + 51.005490001 + ], + [ + 10.267016, + 51.005470301 + ], + [ + 10.2669615, + 51.005472501 + ], + [ + 10.2658122, + 51.005447401 + ], + [ + 10.2649282, + 51.005450601 + ], + [ + 10.2645695, + 51.005450801 + ], + [ + 10.263803, + 51.005472601 + ], + [ + 10.2631135, + 51.005498501 + ], + [ + 10.261827, + 51.005569201 + ], + [ + 10.2610035, + 51.005635501 + ], + [ + 10.2602238, + 51.005700101 + ], + [ + 10.2594979, + 51.005787301 + ], + [ + 10.2587356, + 51.005879201 + ], + [ + 10.2577674, + 51.006011801 + ], + [ + 10.2571363, + 51.006112001 + ], + [ + 10.2566589, + 51.006184501 + ], + [ + 10.2563985, + 51.006228801 + ], + [ + 10.256255, + 51.006255001 + ], + [ + 10.2554546, + 51.006400901 + ], + [ + 10.2548373, + 51.006509001 + ], + [ + 10.2515932, + 51.007115901 + ], + [ + 10.2495441, + 51.007512301 + ], + [ + 10.2484417, + 51.007704501 + ], + [ + 10.2467552, + 51.008024301 + ], + [ + 10.2461904, + 51.008122701 + ], + [ + 10.2453032, + 51.008295201 + ], + [ + 10.2446374, + 51.008412701 + ], + [ + 10.2441798, + 51.008491101 + ], + [ + 10.242974, + 51.008694701 + ], + [ + 10.2407656, + 51.009025101 + ], + [ + 10.2397601, + 51.009168501 + ], + [ + 10.2388034, + 51.009289301 + ], + [ + 10.2380516, + 51.009384901 + ], + [ + 10.237572, + 51.009439601 + ], + [ + 10.2372716, + 51.009472101 + ], + [ + 10.2367964, + 51.009512501 + ], + [ + 10.2362455, + 51.009573101 + ], + [ + 10.2355287, + 51.009652701 + ], + [ + 10.2286838, + 51.010412501 + ], + [ + 10.2258125, + 51.010731201 + ], + [ + 10.2251454, + 51.010805701 + ], + [ + 10.2224375, + 51.011102901 + ], + [ + 10.2217301, + 51.011169001 + ], + [ + 10.2209904, + 51.011224601 + ], + [ + 10.2203482, + 51.011270601 + ], + [ + 10.2197163, + 51.011305501 + ], + [ + 10.2189562, + 51.011338501 + ], + [ + 10.2184687, + 51.011347601 + ], + [ + 10.2174854, + 51.011351001 + ], + [ + 10.2167169, + 51.011340801 + ], + [ + 10.2161975, + 51.011324901 + ], + [ + 10.2149547, + 51.011243901 + ], + [ + 10.2139674, + 51.011167701 + ], + [ + 10.2130081, + 51.011058301 + ], + [ + 10.2124775, + 51.010999101 + ], + [ + 10.2117212, + 51.010878401 + ], + [ + 10.2105138, + 51.010672301 + ], + [ + 10.2097895, + 51.010527601 + ], + [ + 10.2090833, + 51.010370401 + ], + [ + 10.2083893, + 51.010195201 + ], + [ + 10.2078896, + 51.010062801 + ], + [ + 10.2072154, + 51.009878301 + ], + [ + 10.2069385, + 51.009791501 + ], + [ + 10.2067548, + 51.009734901 + ], + [ + 10.2063137, + 51.009598501 + ], + [ + 10.2056299, + 51.009371501 + ], + [ + 10.2045497, + 51.008976501 + ], + [ + 10.2038883, + 51.008716601 + ], + [ + 10.203048, + 51.008361201 + ], + [ + 10.2028897, + 51.008294801 + ], + [ + 10.202039952, + 51.007929085 + ] + ] + } + }, + { + "identifier": "2026-000548--vi-fbm.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.89943584016479,10.976738486290111,50.8930140770501,10.929161149675338", + "point": "50.89943584016479,10.976738486290111", + "startLcPosition": "77", + "impact": { + "lower": "Wandersleben", + "upper": "Erfurt-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Kirchheimer Dreieck", + "title": "A4 | Erfurt-West - Wandersleben", + "coordinate": { + "lat": 50.89943584016479, + "long": 10.976738486290111 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 27.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A4: Chemnitz -> Kirchheimer Dreieck, zwischen 2.3 km hinter AS Erfurt-West und 7.4 km vor AS Wandersleben", + "", + "L\u00e4nge: 3.48 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A71 AS Arnstadt-Nord in beiden FR, Sanierung BW auf der L1044n" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.976738486, + 50.89943584 + ], + [ + 10.9732056, + 50.898611301 + ], + [ + 10.9712029, + 50.898143601 + ], + [ + 10.9677563, + 50.897339601 + ], + [ + 10.9663733, + 50.897016001 + ], + [ + 10.964698, + 50.896624701 + ], + [ + 10.9635853, + 50.896364301 + ], + [ + 10.9630538, + 50.896240001 + ], + [ + 10.9617017, + 50.895924501 + ], + [ + 10.9608787, + 50.895732301 + ], + [ + 10.9606867, + 50.895687501 + ], + [ + 10.9599282, + 50.895510901 + ], + [ + 10.9584908, + 50.895176501 + ], + [ + 10.9570462, + 50.894838801 + ], + [ + 10.9559168, + 50.894574701 + ], + [ + 10.9546522, + 50.894280301 + ], + [ + 10.954269, + 50.894190601 + ], + [ + 10.9527151, + 50.893832501 + ], + [ + 10.9517553, + 50.893621101 + ], + [ + 10.9505073, + 50.893369101 + ], + [ + 10.949609, + 50.893206501 + ], + [ + 10.9488314, + 50.893079501 + ], + [ + 10.9478729, + 50.892936401 + ], + [ + 10.9473342, + 50.892864101 + ], + [ + 10.9468902, + 50.892807801 + ], + [ + 10.9453768, + 50.892650501 + ], + [ + 10.9448356, + 50.892602801 + ], + [ + 10.943786, + 50.892527201 + ], + [ + 10.9427531, + 50.892473101 + ], + [ + 10.9414207, + 50.892430001 + ], + [ + 10.9400162, + 50.892418901 + ], + [ + 10.9389598, + 50.892435301 + ], + [ + 10.9372277, + 50.892498401 + ], + [ + 10.9359737, + 50.892569701 + ], + [ + 10.9344581, + 50.892665901 + ], + [ + 10.9331287, + 50.892754901 + ], + [ + 10.9329362, + 50.892767501 + ], + [ + 10.932371, + 50.892805401 + ], + [ + 10.92916115, + 50.893014077 + ] + ] + } + }, + { + "identifier": "2025-042980--vi-bs.2025-10-06_08-00-00-000.devi-zus.2025-10-06_08-00-00-000_019.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.92267441741108,11.123925427770082,50.949304948659424,11.20605825082206", + "point": "50.92267441741108,11.123925427770082", + "startLcPosition": "78", + "impact": { + "lower": "Nohra", + "upper": "Willrodaer Forst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Willrodaer Forst - Nohra", + "coordinate": { + "lat": 50.92267441741108, + "long": 11.123925427770082 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 01.04.26 und dem 29.05.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 3.8 km hinter Willrodaer Forst und 2.5 km vor AS Nohra", + "", + "L\u00e4nge: 6.71 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 EF 2025-042980_bRF_202,8-209,5_Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.123925428, + 50.922674417 + ], + [ + 11.1244656, + 50.922735301 + ], + [ + 11.1248764, + 50.922784601 + ], + [ + 11.1274226, + 50.923079101 + ], + [ + 11.129077, + 50.923290801 + ], + [ + 11.1300616, + 50.923452601 + ], + [ + 11.130906, + 50.923620501 + ], + [ + 11.1318559, + 50.923848101 + ], + [ + 11.132521, + 50.924022701 + ], + [ + 11.1334658, + 50.924297201 + ], + [ + 11.1340762, + 50.924483501 + ], + [ + 11.1344415, + 50.924604301 + ], + [ + 11.1350426, + 50.924824601 + ], + [ + 11.136112, + 50.925244401 + ], + [ + 11.1364656, + 50.925398401 + ], + [ + 11.1366117, + 50.925461001 + ], + [ + 11.1369325, + 50.925597001 + ], + [ + 11.1371141, + 50.925678801 + ], + [ + 11.1389985, + 50.926488601 + ], + [ + 11.143076, + 50.928215901 + ], + [ + 11.1441344, + 50.928692301 + ], + [ + 11.145143, + 50.929172501 + ], + [ + 11.1459583, + 50.929612001 + ], + [ + 11.1464766, + 50.929928701 + ], + [ + 11.1470724, + 50.930293501 + ], + [ + 11.1473843, + 50.930500401 + ], + [ + 11.1476611, + 50.930691701 + ], + [ + 11.1479312, + 50.930888801 + ], + [ + 11.1484224, + 50.931257001 + ], + [ + 11.1489006, + 50.931649801 + ], + [ + 11.1494992, + 50.932162401 + ], + [ + 11.150106, + 50.932706201 + ], + [ + 11.1504993, + 50.933062901 + ], + [ + 11.1507217, + 50.933264601 + ], + [ + 11.151414, + 50.933886101 + ], + [ + 11.1518477, + 50.934290901 + ], + [ + 11.1522844, + 50.934670601 + ], + [ + 11.152743, + 50.935077601 + ], + [ + 11.1533492, + 50.935588201 + ], + [ + 11.1535866, + 50.935771701 + ], + [ + 11.1538264, + 50.935957101 + ], + [ + 11.1543406, + 50.936320801 + ], + [ + 11.1548686, + 50.936671001 + ], + [ + 11.1554637, + 50.937041101 + ], + [ + 11.1557981, + 50.937233001 + ], + [ + 11.1561716, + 50.937434401 + ], + [ + 11.1565668, + 50.937646301 + ], + [ + 11.1571588, + 50.937948201 + ], + [ + 11.1577904, + 50.938239601 + ], + [ + 11.1585551, + 50.938605801 + ], + [ + 11.1614615, + 50.939997401 + ], + [ + 11.1637736, + 50.941102701 + ], + [ + 11.1644166, + 50.941407901 + ], + [ + 11.164984, + 50.941674401 + ], + [ + 11.1658346, + 50.942060201 + ], + [ + 11.1661527, + 50.942191401 + ], + [ + 11.1670711, + 50.942586701 + ], + [ + 11.1677178, + 50.942834101 + ], + [ + 11.1682028, + 50.943017201 + ], + [ + 11.168811, + 50.943222701 + ], + [ + 11.1692435, + 50.943372001 + ], + [ + 11.1700161, + 50.943606601 + ], + [ + 11.1705282, + 50.943759301 + ], + [ + 11.1714836, + 50.944026501 + ], + [ + 11.1723017, + 50.944225301 + ], + [ + 11.1731831, + 50.944437101 + ], + [ + 11.1735105, + 50.944511801 + ], + [ + 11.1739972, + 50.944619801 + ], + [ + 11.1754643, + 50.944946201 + ], + [ + 11.1757974, + 50.945018201 + ], + [ + 11.1768678, + 50.945249701 + ], + [ + 11.1797761, + 50.945896101 + ], + [ + 11.1800492, + 50.945956901 + ], + [ + 11.1814878, + 50.946284501 + ], + [ + 11.1827233, + 50.946547701 + ], + [ + 11.1831268, + 50.946637201 + ], + [ + 11.1857966, + 50.947231001 + ], + [ + 11.1870301, + 50.947503201 + ], + [ + 11.1884538, + 50.947816501 + ], + [ + 11.1895546, + 50.948038901 + ], + [ + 11.1899812, + 50.948125101 + ], + [ + 11.1914729, + 50.948374701 + ], + [ + 11.1919951, + 50.948453601 + ], + [ + 11.1928419, + 50.948561901 + ], + [ + 11.1938436, + 50.948670301 + ], + [ + 11.1949356, + 50.948765601 + ], + [ + 11.1960179, + 50.948837401 + ], + [ + 11.1964087, + 50.948859001 + ], + [ + 11.1971703, + 50.948895901 + ], + [ + 11.1998377, + 50.949020401 + ], + [ + 11.201382, + 50.949095001 + ], + [ + 11.2021704, + 50.949133701 + ], + [ + 11.20293, + 50.949168401 + ], + [ + 11.2033024, + 50.949186501 + ], + [ + 11.2037816, + 50.949209101 + ], + [ + 11.2044578, + 50.949230501 + ], + [ + 11.206058251, + 50.949304949 + ] + ] + } + }, + { + "identifier": "2025-042980--vi-bs.2025-10-06_08-00-00-000.devi-zus.2025-10-06_08-00-00-000_019.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.92267441741108,11.123925427770082,50.949304948659424,11.20605825082206", + "point": "50.92267441741108,11.123925427770082", + "startLcPosition": "78", + "impact": { + "lower": "Nohra", + "upper": "Willrodaer Forst", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Willrodaer Forst - Nohra", + "coordinate": { + "lat": 50.92267441741108, + "long": 11.123925427770082 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 01.04.26 und dem 29.05.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 3.8 km hinter Willrodaer Forst und 2.5 km vor AS Nohra", + "", + "L\u00e4nge: 6.71 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 EF 2025-042980_bRF_202,8-209,5_Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.123925428, + 50.922674417 + ], + [ + 11.1244656, + 50.922735301 + ], + [ + 11.1248764, + 50.922784601 + ], + [ + 11.1274226, + 50.923079101 + ], + [ + 11.129077, + 50.923290801 + ], + [ + 11.1300616, + 50.923452601 + ], + [ + 11.130906, + 50.923620501 + ], + [ + 11.1318559, + 50.923848101 + ], + [ + 11.132521, + 50.924022701 + ], + [ + 11.1334658, + 50.924297201 + ], + [ + 11.1340762, + 50.924483501 + ], + [ + 11.1344415, + 50.924604301 + ], + [ + 11.1350426, + 50.924824601 + ], + [ + 11.136112, + 50.925244401 + ], + [ + 11.1364656, + 50.925398401 + ], + [ + 11.1366117, + 50.925461001 + ], + [ + 11.1369325, + 50.925597001 + ], + [ + 11.1371141, + 50.925678801 + ], + [ + 11.1389985, + 50.926488601 + ], + [ + 11.143076, + 50.928215901 + ], + [ + 11.1441344, + 50.928692301 + ], + [ + 11.145143, + 50.929172501 + ], + [ + 11.1459583, + 50.929612001 + ], + [ + 11.1464766, + 50.929928701 + ], + [ + 11.1470724, + 50.930293501 + ], + [ + 11.1473843, + 50.930500401 + ], + [ + 11.1476611, + 50.930691701 + ], + [ + 11.1479312, + 50.930888801 + ], + [ + 11.1484224, + 50.931257001 + ], + [ + 11.1489006, + 50.931649801 + ], + [ + 11.1494992, + 50.932162401 + ], + [ + 11.150106, + 50.932706201 + ], + [ + 11.1504993, + 50.933062901 + ], + [ + 11.1507217, + 50.933264601 + ], + [ + 11.151414, + 50.933886101 + ], + [ + 11.1518477, + 50.934290901 + ], + [ + 11.1522844, + 50.934670601 + ], + [ + 11.152743, + 50.935077601 + ], + [ + 11.1533492, + 50.935588201 + ], + [ + 11.1535866, + 50.935771701 + ], + [ + 11.1538264, + 50.935957101 + ], + [ + 11.1543406, + 50.936320801 + ], + [ + 11.1548686, + 50.936671001 + ], + [ + 11.1554637, + 50.937041101 + ], + [ + 11.1557981, + 50.937233001 + ], + [ + 11.1561716, + 50.937434401 + ], + [ + 11.1565668, + 50.937646301 + ], + [ + 11.1571588, + 50.937948201 + ], + [ + 11.1577904, + 50.938239601 + ], + [ + 11.1585551, + 50.938605801 + ], + [ + 11.1614615, + 50.939997401 + ], + [ + 11.1637736, + 50.941102701 + ], + [ + 11.1644166, + 50.941407901 + ], + [ + 11.164984, + 50.941674401 + ], + [ + 11.1658346, + 50.942060201 + ], + [ + 11.1661527, + 50.942191401 + ], + [ + 11.1670711, + 50.942586701 + ], + [ + 11.1677178, + 50.942834101 + ], + [ + 11.1682028, + 50.943017201 + ], + [ + 11.168811, + 50.943222701 + ], + [ + 11.1692435, + 50.943372001 + ], + [ + 11.1700161, + 50.943606601 + ], + [ + 11.1705282, + 50.943759301 + ], + [ + 11.1714836, + 50.944026501 + ], + [ + 11.1723017, + 50.944225301 + ], + [ + 11.1731831, + 50.944437101 + ], + [ + 11.1735105, + 50.944511801 + ], + [ + 11.1739972, + 50.944619801 + ], + [ + 11.1754643, + 50.944946201 + ], + [ + 11.1757974, + 50.945018201 + ], + [ + 11.1768678, + 50.945249701 + ], + [ + 11.1797761, + 50.945896101 + ], + [ + 11.1800492, + 50.945956901 + ], + [ + 11.1814878, + 50.946284501 + ], + [ + 11.1827233, + 50.946547701 + ], + [ + 11.1831268, + 50.946637201 + ], + [ + 11.1857966, + 50.947231001 + ], + [ + 11.1870301, + 50.947503201 + ], + [ + 11.1884538, + 50.947816501 + ], + [ + 11.1895546, + 50.948038901 + ], + [ + 11.1899812, + 50.948125101 + ], + [ + 11.1914729, + 50.948374701 + ], + [ + 11.1919951, + 50.948453601 + ], + [ + 11.1928419, + 50.948561901 + ], + [ + 11.1938436, + 50.948670301 + ], + [ + 11.1949356, + 50.948765601 + ], + [ + 11.1960179, + 50.948837401 + ], + [ + 11.1964087, + 50.948859001 + ], + [ + 11.1971703, + 50.948895901 + ], + [ + 11.1998377, + 50.949020401 + ], + [ + 11.201382, + 50.949095001 + ], + [ + 11.2021704, + 50.949133701 + ], + [ + 11.20293, + 50.949168401 + ], + [ + 11.2033024, + 50.949186501 + ], + [ + 11.2037816, + 50.949209101 + ], + [ + 11.2044578, + 50.949230501 + ], + [ + 11.206058251, + 50.949304949 + ] + ] + } + }, + { + "identifier": "2025-042933--vi-bs.2025-09-08_08-00-00-000.devi-zus.2025-09-08_08-00-00-000_036.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.94584421961977,11.286603517478085,50.92170558989277,11.4043173356618", + "point": "50.94584421961977,11.286603517478085", + "startLcPosition": "82", + "impact": { + "lower": "Magdala", + "upper": "Nohra", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Nohra - Magdala", + "coordinate": { + "lat": 50.94584421961977, + "long": 11.286603517478085 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 01.04.26 und dem 29.05.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 3.2 km hinter AS Nohra und 3.8 km vor AS Magdala", + "", + "L\u00e4nge: 9.07 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.286603517, + 50.94584422 + ], + [ + 11.2866304, + 50.945839801 + ], + [ + 11.2873497, + 50.945723401 + ], + [ + 11.2888539, + 50.945474001 + ], + [ + 11.2901479, + 50.945257401 + ], + [ + 11.2923528, + 50.944899101 + ], + [ + 11.2927258, + 50.944838801 + ], + [ + 11.2946427, + 50.944527001 + ], + [ + 11.2952702, + 50.944428501 + ], + [ + 11.2965669, + 50.944214601 + ], + [ + 11.2971177, + 50.944123601 + ], + [ + 11.2981743, + 50.943948801 + ], + [ + 11.3001209, + 50.943630901 + ], + [ + 11.3006618, + 50.943541601 + ], + [ + 11.3014448, + 50.943417401 + ], + [ + 11.3018658, + 50.943357201 + ], + [ + 11.3029609, + 50.943229401 + ], + [ + 11.303731, + 50.943174901 + ], + [ + 11.3042513, + 50.943152301 + ], + [ + 11.3053374, + 50.943143201 + ], + [ + 11.3077271, + 50.943154201 + ], + [ + 11.3078171, + 50.943153701 + ], + [ + 11.3091626, + 50.943158901 + ], + [ + 11.3108303, + 50.943169901 + ], + [ + 11.314, + 50.943166701 + ], + [ + 11.3155208, + 50.943131401 + ], + [ + 11.3161186, + 50.943111701 + ], + [ + 11.3172926, + 50.943053301 + ], + [ + 11.3185833, + 50.942968401 + ], + [ + 11.3198206, + 50.942868201 + ], + [ + 11.3210556, + 50.942750001 + ], + [ + 11.3227522, + 50.942555601 + ], + [ + 11.3234167, + 50.942472201 + ], + [ + 11.3249396, + 50.942240401 + ], + [ + 11.3264613, + 50.941986901 + ], + [ + 11.3269553, + 50.941887101 + ], + [ + 11.3274434, + 50.941793301 + ], + [ + 11.3276097, + 50.941760401 + ], + [ + 11.3283374, + 50.941619801 + ], + [ + 11.3290554, + 50.941464601 + ], + [ + 11.3297673, + 50.941307201 + ], + [ + 11.3303055, + 50.941183701 + ], + [ + 11.3307287, + 50.941087301 + ], + [ + 11.3311817, + 50.940980201 + ], + [ + 11.3360345, + 50.939848901 + ], + [ + 11.3393225, + 50.939079601 + ], + [ + 11.3394949, + 50.939039301 + ], + [ + 11.3396845, + 50.938996101 + ], + [ + 11.3412921, + 50.938630001 + ], + [ + 11.3419945, + 50.938460601 + ], + [ + 11.3423926, + 50.938373501 + ], + [ + 11.342897, + 50.938269401 + ], + [ + 11.343404, + 50.938170401 + ], + [ + 11.3443818, + 50.937999901 + ], + [ + 11.3453452, + 50.937854401 + ], + [ + 11.3463201, + 50.937729401 + ], + [ + 11.3475908, + 50.937603401 + ], + [ + 11.3488683, + 50.937507301 + ], + [ + 11.349742, + 50.937467401 + ], + [ + 11.3504107, + 50.937450901 + ], + [ + 11.3519339, + 50.937438601 + ], + [ + 11.3521664, + 50.937441101 + ], + [ + 11.3524121, + 50.937445401 + ], + [ + 11.3540333, + 50.937509301 + ], + [ + 11.3552587, + 50.937554201 + ], + [ + 11.356886, + 50.937619501 + ], + [ + 11.3580507, + 50.937662601 + ], + [ + 11.3587799, + 50.937691501 + ], + [ + 11.361309, + 50.937792101 + ], + [ + 11.3624758, + 50.937836801 + ], + [ + 11.3644217, + 50.937906801 + ], + [ + 11.3652791, + 50.937939301 + ], + [ + 11.3661523, + 50.937948601 + ], + [ + 11.3672925, + 50.937923001 + ], + [ + 11.3686787, + 50.937850801 + ], + [ + 11.3694423, + 50.937786501 + ], + [ + 11.3704784, + 50.937658701 + ], + [ + 11.370926, + 50.937600001 + ], + [ + 11.3711835, + 50.937556101 + ], + [ + 11.3720385, + 50.937412001 + ], + [ + 11.3728845, + 50.937250801 + ], + [ + 11.3765212, + 50.936529801 + ], + [ + 11.3777261, + 50.936293101 + ], + [ + 11.3789348, + 50.936049901 + ], + [ + 11.3793855, + 50.935949201 + ], + [ + 11.3800697, + 50.935786401 + ], + [ + 11.380723, + 50.935607001 + ], + [ + 11.3816498, + 50.935325801 + ], + [ + 11.382241, + 50.935125501 + ], + [ + 11.3828253, + 50.934916501 + ], + [ + 11.3835948, + 50.934615901 + ], + [ + 11.3841965, + 50.934354901 + ], + [ + 11.3844947, + 50.934217701 + ], + [ + 11.3849685, + 50.933993101 + ], + [ + 11.3855649, + 50.933686601 + ], + [ + 11.3861405, + 50.933372901 + ], + [ + 11.3864433, + 50.933199001 + ], + [ + 11.3871297, + 50.932786701 + ], + [ + 11.3878636, + 50.932324901 + ], + [ + 11.3881543, + 50.932143501 + ], + [ + 11.3887128, + 50.931791901 + ], + [ + 11.3890711, + 50.931571101 + ], + [ + 11.3896606, + 50.931197201 + ], + [ + 11.3902569, + 50.930814401 + ], + [ + 11.3905346, + 50.930636101 + ], + [ + 11.3914437, + 50.930050601 + ], + [ + 11.3934955, + 50.928785201 + ], + [ + 11.394628, + 50.928072501 + ], + [ + 11.3956506, + 50.927437901 + ], + [ + 11.3972347, + 50.926451501 + ], + [ + 11.3979384, + 50.926015301 + ], + [ + 11.3981783, + 50.925863901 + ], + [ + 11.3986727, + 50.925559001 + ], + [ + 11.3997073, + 50.924920501 + ], + [ + 11.4003492, + 50.924520401 + ], + [ + 11.4009782, + 50.924114501 + ], + [ + 11.4018436, + 50.923547101 + ], + [ + 11.4026831, + 50.922960301 + ], + [ + 11.4032165, + 50.922568001 + ], + [ + 11.4037472, + 50.922166801 + ], + [ + 11.404317336, + 50.92170559 + ] + ] + } + }, + { + "identifier": "2025-042980--vi-bs.2025-10-06_08-00-00-000.devi-zus.2025-10-06_08-00-00-000_019.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.949458967808326,11.206040380753166,50.92280960918937,11.123843813867634", + "point": "50.949458967808326,11.206040380753166", + "startLcPosition": "82", + "impact": { + "lower": "Willrodaer Forst", + "upper": "Nohra", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Nohra - Willrodaer Forst", + "coordinate": { + "lat": 50.949458967808326, + "long": 11.206040380753166 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 01.04.26 und dem 29.05.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 2.5 km hinter AS Nohra und 3.8 km vor Willrodaer Forst", + "", + "L\u00e4nge: 6.72 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 EF 2025-042980_bRF_202,8-209,5_Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.206040381, + 50.949458968 + ], + [ + 11.2042451, + 50.949376201 + ], + [ + 11.2036582, + 50.949352001 + ], + [ + 11.2031854, + 50.949329501 + ], + [ + 11.202951, + 50.949317701 + ], + [ + 11.2014606, + 50.949246401 + ], + [ + 11.1998479, + 50.949179801 + ], + [ + 11.1960015, + 50.948989101 + ], + [ + 11.1947882, + 50.948919201 + ], + [ + 11.1934991, + 50.948782401 + ], + [ + 11.1923234, + 50.948643801 + ], + [ + 11.1915618, + 50.948533901 + ], + [ + 11.1908284, + 50.948417801 + ], + [ + 11.1901805, + 50.948308601 + ], + [ + 11.188873, + 50.948055601 + ], + [ + 11.1878127, + 50.947822201 + ], + [ + 11.1869914, + 50.947636801 + ], + [ + 11.1855083, + 50.947312701 + ], + [ + 11.1843047, + 50.947043301 + ], + [ + 11.1831322, + 50.946786201 + ], + [ + 11.1827379, + 50.946702501 + ], + [ + 11.1814388, + 50.946414101 + ], + [ + 11.179825, + 50.946058301 + ], + [ + 11.1795939, + 50.946007101 + ], + [ + 11.1756873, + 50.945147901 + ], + [ + 11.1752678, + 50.945049201 + ], + [ + 11.1739493, + 50.944753701 + ], + [ + 11.1734411, + 50.944643001 + ], + [ + 11.1722011, + 50.944354901 + ], + [ + 11.1718419, + 50.944266501 + ], + [ + 11.1713973, + 50.944152301 + ], + [ + 11.1704506, + 50.943887301 + ], + [ + 11.1699141, + 50.943727601 + ], + [ + 11.1695521, + 50.943620201 + ], + [ + 11.1691591, + 50.943496101 + ], + [ + 11.1681982, + 50.943172101 + ], + [ + 11.1672567, + 50.942822901 + ], + [ + 11.1660175, + 50.942306901 + ], + [ + 11.1657132, + 50.942176501 + ], + [ + 11.1649002, + 50.941811801 + ], + [ + 11.1642766, + 50.941516701 + ], + [ + 11.1630158, + 50.940915501 + ], + [ + 11.1612349, + 50.940061601 + ], + [ + 11.1584238, + 50.938720501 + ], + [ + 11.1576236, + 50.938338701 + ], + [ + 11.1566438, + 50.937861501 + ], + [ + 11.1560695, + 50.937557401 + ], + [ + 11.15566, + 50.937339801 + ], + [ + 11.1553187, + 50.937134801 + ], + [ + 11.1547356, + 50.936779801 + ], + [ + 11.154193, + 50.936426101 + ], + [ + 11.1536846, + 50.936065201 + ], + [ + 11.1534068, + 50.935862401 + ], + [ + 11.1527423, + 50.935315901 + ], + [ + 11.1522973, + 50.934923401 + ], + [ + 11.1518418, + 50.934520401 + ], + [ + 11.1513934, + 50.934118101 + ], + [ + 11.1505289, + 50.933333401 + ], + [ + 11.1503246, + 50.933148701 + ], + [ + 11.1499773, + 50.932834701 + ], + [ + 11.1493538, + 50.932277301 + ], + [ + 11.1487578, + 50.931755301 + ], + [ + 11.1482902, + 50.931374501 + ], + [ + 11.1478043, + 50.931006801 + ], + [ + 11.1474995, + 50.930785301 + ], + [ + 11.1472215, + 50.930594801 + ], + [ + 11.1469419, + 50.930412001 + ], + [ + 11.1465875, + 50.930187201 + ], + [ + 11.1458376, + 50.929738001 + ], + [ + 11.1450531, + 50.929319601 + ], + [ + 11.1440955, + 50.928858001 + ], + [ + 11.1429379, + 50.928351201 + ], + [ + 11.1400179, + 50.927092401 + ], + [ + 11.1375311, + 50.926026701 + ], + [ + 11.1374241, + 50.925981801 + ], + [ + 11.1368384, + 50.925720501 + ], + [ + 11.1364665, + 50.925563301 + ], + [ + 11.1358268, + 50.925292801 + ], + [ + 11.1355883, + 50.925195201 + ], + [ + 11.1352841, + 50.925075901 + ], + [ + 11.1346637, + 50.924840401 + ], + [ + 11.1338514, + 50.924558001 + ], + [ + 11.1331824, + 50.924349101 + ], + [ + 11.1325699, + 50.924182701 + ], + [ + 11.1317566, + 50.923962501 + ], + [ + 11.1306552, + 50.923716201 + ], + [ + 11.1295032, + 50.923503001 + ], + [ + 11.1283067, + 50.923318901 + ], + [ + 11.1270474, + 50.923169701 + ], + [ + 11.1248249, + 50.922917601 + ], + [ + 11.1244272, + 50.922875801 + ], + [ + 11.123843814, + 50.922809609 + ] + ] + } + }, + { + "identifier": "2025-042980--vi-bs.2025-10-06_08-00-00-000.devi-zus.2025-10-06_08-00-00-000_019.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.949458967808326,11.206040380753166,50.92280960918937,11.123843813867634", + "point": "50.949458967808326,11.206040380753166", + "startLcPosition": "82", + "impact": { + "lower": "Willrodaer Forst", + "upper": "Nohra", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Nohra - Willrodaer Forst", + "coordinate": { + "lat": 50.949458967808326, + "long": 11.206040380753166 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 01.04.26 und dem 29.05.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 2.5 km hinter AS Nohra und 3.8 km vor Willrodaer Forst", + "", + "L\u00e4nge: 6.72 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 EF 2025-042980_bRF_202,8-209,5_Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.206040381, + 50.949458968 + ], + [ + 11.2042451, + 50.949376201 + ], + [ + 11.2036582, + 50.949352001 + ], + [ + 11.2031854, + 50.949329501 + ], + [ + 11.202951, + 50.949317701 + ], + [ + 11.2014606, + 50.949246401 + ], + [ + 11.1998479, + 50.949179801 + ], + [ + 11.1960015, + 50.948989101 + ], + [ + 11.1947882, + 50.948919201 + ], + [ + 11.1934991, + 50.948782401 + ], + [ + 11.1923234, + 50.948643801 + ], + [ + 11.1915618, + 50.948533901 + ], + [ + 11.1908284, + 50.948417801 + ], + [ + 11.1901805, + 50.948308601 + ], + [ + 11.188873, + 50.948055601 + ], + [ + 11.1878127, + 50.947822201 + ], + [ + 11.1869914, + 50.947636801 + ], + [ + 11.1855083, + 50.947312701 + ], + [ + 11.1843047, + 50.947043301 + ], + [ + 11.1831322, + 50.946786201 + ], + [ + 11.1827379, + 50.946702501 + ], + [ + 11.1814388, + 50.946414101 + ], + [ + 11.179825, + 50.946058301 + ], + [ + 11.1795939, + 50.946007101 + ], + [ + 11.1756873, + 50.945147901 + ], + [ + 11.1752678, + 50.945049201 + ], + [ + 11.1739493, + 50.944753701 + ], + [ + 11.1734411, + 50.944643001 + ], + [ + 11.1722011, + 50.944354901 + ], + [ + 11.1718419, + 50.944266501 + ], + [ + 11.1713973, + 50.944152301 + ], + [ + 11.1704506, + 50.943887301 + ], + [ + 11.1699141, + 50.943727601 + ], + [ + 11.1695521, + 50.943620201 + ], + [ + 11.1691591, + 50.943496101 + ], + [ + 11.1681982, + 50.943172101 + ], + [ + 11.1672567, + 50.942822901 + ], + [ + 11.1660175, + 50.942306901 + ], + [ + 11.1657132, + 50.942176501 + ], + [ + 11.1649002, + 50.941811801 + ], + [ + 11.1642766, + 50.941516701 + ], + [ + 11.1630158, + 50.940915501 + ], + [ + 11.1612349, + 50.940061601 + ], + [ + 11.1584238, + 50.938720501 + ], + [ + 11.1576236, + 50.938338701 + ], + [ + 11.1566438, + 50.937861501 + ], + [ + 11.1560695, + 50.937557401 + ], + [ + 11.15566, + 50.937339801 + ], + [ + 11.1553187, + 50.937134801 + ], + [ + 11.1547356, + 50.936779801 + ], + [ + 11.154193, + 50.936426101 + ], + [ + 11.1536846, + 50.936065201 + ], + [ + 11.1534068, + 50.935862401 + ], + [ + 11.1527423, + 50.935315901 + ], + [ + 11.1522973, + 50.934923401 + ], + [ + 11.1518418, + 50.934520401 + ], + [ + 11.1513934, + 50.934118101 + ], + [ + 11.1505289, + 50.933333401 + ], + [ + 11.1503246, + 50.933148701 + ], + [ + 11.1499773, + 50.932834701 + ], + [ + 11.1493538, + 50.932277301 + ], + [ + 11.1487578, + 50.931755301 + ], + [ + 11.1482902, + 50.931374501 + ], + [ + 11.1478043, + 50.931006801 + ], + [ + 11.1474995, + 50.930785301 + ], + [ + 11.1472215, + 50.930594801 + ], + [ + 11.1469419, + 50.930412001 + ], + [ + 11.1465875, + 50.930187201 + ], + [ + 11.1458376, + 50.929738001 + ], + [ + 11.1450531, + 50.929319601 + ], + [ + 11.1440955, + 50.928858001 + ], + [ + 11.1429379, + 50.928351201 + ], + [ + 11.1400179, + 50.927092401 + ], + [ + 11.1375311, + 50.926026701 + ], + [ + 11.1374241, + 50.925981801 + ], + [ + 11.1368384, + 50.925720501 + ], + [ + 11.1364665, + 50.925563301 + ], + [ + 11.1358268, + 50.925292801 + ], + [ + 11.1355883, + 50.925195201 + ], + [ + 11.1352841, + 50.925075901 + ], + [ + 11.1346637, + 50.924840401 + ], + [ + 11.1338514, + 50.924558001 + ], + [ + 11.1331824, + 50.924349101 + ], + [ + 11.1325699, + 50.924182701 + ], + [ + 11.1317566, + 50.923962501 + ], + [ + 11.1306552, + 50.923716201 + ], + [ + 11.1295032, + 50.923503001 + ], + [ + 11.1283067, + 50.923318901 + ], + [ + 11.1270474, + 50.923169701 + ], + [ + 11.1248249, + 50.922917601 + ], + [ + 11.1244272, + 50.922875801 + ], + [ + 11.123843814, + 50.922809609 + ] + ] + } + }, + { + "identifier": "2026-012396--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.945180058946804,11.29062387018356,50.872271729923554,11.594821917227767", + "point": "50.945180058946804,11.29062387018356", + "startLcPosition": "82", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Nohra", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Nohra - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.945180058946804, + "long": 11.29062387018356 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 19:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 3.5 km hinter AS Nohra und 0.2 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 24.28 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 von Jagdbergtunnel (Tunnel) nach Lobdeburg (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.29062387, + 50.945180059 + ], + [ + 11.2923528, + 50.944899101 + ], + [ + 11.2927258, + 50.944838801 + ], + [ + 11.2946427, + 50.944527001 + ], + [ + 11.2952702, + 50.944428501 + ], + [ + 11.2965669, + 50.944214601 + ], + [ + 11.2971177, + 50.944123601 + ], + [ + 11.2981743, + 50.943948801 + ], + [ + 11.3001209, + 50.943630901 + ], + [ + 11.3006618, + 50.943541601 + ], + [ + 11.3014448, + 50.943417401 + ], + [ + 11.3018658, + 50.943357201 + ], + [ + 11.3029609, + 50.943229401 + ], + [ + 11.303731, + 50.943174901 + ], + [ + 11.3042513, + 50.943152301 + ], + [ + 11.3053374, + 50.943143201 + ], + [ + 11.3077271, + 50.943154201 + ], + [ + 11.3078171, + 50.943153701 + ], + [ + 11.3091626, + 50.943158901 + ], + [ + 11.3108303, + 50.943169901 + ], + [ + 11.314, + 50.943166701 + ], + [ + 11.3155208, + 50.943131401 + ], + [ + 11.3161186, + 50.943111701 + ], + [ + 11.3172926, + 50.943053301 + ], + [ + 11.3185833, + 50.942968401 + ], + [ + 11.3198206, + 50.942868201 + ], + [ + 11.3210556, + 50.942750001 + ], + [ + 11.3227522, + 50.942555601 + ], + [ + 11.3234167, + 50.942472201 + ], + [ + 11.3249396, + 50.942240401 + ], + [ + 11.3264613, + 50.941986901 + ], + [ + 11.3269553, + 50.941887101 + ], + [ + 11.3274434, + 50.941793301 + ], + [ + 11.3276097, + 50.941760401 + ], + [ + 11.3283374, + 50.941619801 + ], + [ + 11.3290554, + 50.941464601 + ], + [ + 11.3297673, + 50.941307201 + ], + [ + 11.3303055, + 50.941183701 + ], + [ + 11.3307287, + 50.941087301 + ], + [ + 11.3311817, + 50.940980201 + ], + [ + 11.3360345, + 50.939848901 + ], + [ + 11.3393225, + 50.939079601 + ], + [ + 11.3394949, + 50.939039301 + ], + [ + 11.3396845, + 50.938996101 + ], + [ + 11.3412921, + 50.938630001 + ], + [ + 11.3419945, + 50.938460601 + ], + [ + 11.3423926, + 50.938373501 + ], + [ + 11.342897, + 50.938269401 + ], + [ + 11.343404, + 50.938170401 + ], + [ + 11.3443818, + 50.937999901 + ], + [ + 11.3453452, + 50.937854401 + ], + [ + 11.3463201, + 50.937729401 + ], + [ + 11.3475908, + 50.937603401 + ], + [ + 11.3488683, + 50.937507301 + ], + [ + 11.349742, + 50.937467401 + ], + [ + 11.3504107, + 50.937450901 + ], + [ + 11.3519339, + 50.937438601 + ], + [ + 11.3521664, + 50.937441101 + ], + [ + 11.3524121, + 50.937445401 + ], + [ + 11.3540333, + 50.937509301 + ], + [ + 11.3552587, + 50.937554201 + ], + [ + 11.356886, + 50.937619501 + ], + [ + 11.3580507, + 50.937662601 + ], + [ + 11.3587799, + 50.937691501 + ], + [ + 11.361309, + 50.937792101 + ], + [ + 11.3624758, + 50.937836801 + ], + [ + 11.3644217, + 50.937906801 + ], + [ + 11.3652791, + 50.937939301 + ], + [ + 11.3661523, + 50.937948601 + ], + [ + 11.3672925, + 50.937923001 + ], + [ + 11.3686787, + 50.937850801 + ], + [ + 11.3694423, + 50.937786501 + ], + [ + 11.3704784, + 50.937658701 + ], + [ + 11.370926, + 50.937600001 + ], + [ + 11.3711835, + 50.937556101 + ], + [ + 11.3720385, + 50.937412001 + ], + [ + 11.3728845, + 50.937250801 + ], + [ + 11.3765212, + 50.936529801 + ], + [ + 11.3777261, + 50.936293101 + ], + [ + 11.3789348, + 50.936049901 + ], + [ + 11.3793855, + 50.935949201 + ], + [ + 11.3800697, + 50.935786401 + ], + [ + 11.380723, + 50.935607001 + ], + [ + 11.3816498, + 50.935325801 + ], + [ + 11.382241, + 50.935125501 + ], + [ + 11.3828253, + 50.934916501 + ], + [ + 11.3835948, + 50.934615901 + ], + [ + 11.3841965, + 50.934354901 + ], + [ + 11.3844947, + 50.934217701 + ], + [ + 11.3849685, + 50.933993101 + ], + [ + 11.3855649, + 50.933686601 + ], + [ + 11.3861405, + 50.933372901 + ], + [ + 11.3864433, + 50.933199001 + ], + [ + 11.3871297, + 50.932786701 + ], + [ + 11.3878636, + 50.932324901 + ], + [ + 11.3881543, + 50.932143501 + ], + [ + 11.3887128, + 50.931791901 + ], + [ + 11.3890711, + 50.931571101 + ], + [ + 11.3896606, + 50.931197201 + ], + [ + 11.3902569, + 50.930814401 + ], + [ + 11.3905346, + 50.930636101 + ], + [ + 11.3914437, + 50.930050601 + ], + [ + 11.3934955, + 50.928785201 + ], + [ + 11.394628, + 50.928072501 + ], + [ + 11.3956506, + 50.927437901 + ], + [ + 11.3972347, + 50.926451501 + ], + [ + 11.3979384, + 50.926015301 + ], + [ + 11.3981783, + 50.925863901 + ], + [ + 11.3986727, + 50.925559001 + ], + [ + 11.3997073, + 50.924920501 + ], + [ + 11.4003492, + 50.924520401 + ], + [ + 11.4009782, + 50.924114501 + ], + [ + 11.4018436, + 50.923547101 + ], + [ + 11.4026831, + 50.922960301 + ], + [ + 11.4032165, + 50.922568001 + ], + [ + 11.4037472, + 50.922166801 + ], + [ + 11.4047564, + 50.921350401 + ], + [ + 11.4055545, + 50.920647201 + ], + [ + 11.4062764, + 50.919977801 + ], + [ + 11.4075838, + 50.918744901 + ], + [ + 11.408609, + 50.917778501 + ], + [ + 11.4092147, + 50.917200101 + ], + [ + 11.4103633, + 50.916127801 + ], + [ + 11.4112082, + 50.915324201 + ], + [ + 11.4114013, + 50.915146601 + ], + [ + 11.4128802, + 50.913745301 + ], + [ + 11.4132989, + 50.913351801 + ], + [ + 11.4142793, + 50.912434901 + ], + [ + 11.4152957, + 50.911523001 + ], + [ + 11.4154668, + 50.911364401 + ], + [ + 11.4156601, + 50.911184601 + ], + [ + 11.4161635, + 50.910706101 + ], + [ + 11.4166767, + 50.910232001 + ], + [ + 11.4172651, + 50.909700801 + ], + [ + 11.4180042, + 50.909069001 + ], + [ + 11.4187876, + 50.908443701 + ], + [ + 11.4196229, + 50.907808501 + ], + [ + 11.4197917, + 50.907681801 + ], + [ + 11.420506, + 50.907183201 + ], + [ + 11.4212384, + 50.906686501 + ], + [ + 11.4221562, + 50.906103601 + ], + [ + 11.4231157, + 50.905530401 + ], + [ + 11.4238467, + 50.905115901 + ], + [ + 11.4246079, + 50.904707501 + ], + [ + 11.4249497, + 50.904525801 + ], + [ + 11.4256773, + 50.904158501 + ], + [ + 11.4264175, + 50.903793301 + ], + [ + 11.427069, + 50.903478201 + ], + [ + 11.4276829, + 50.903183001 + ], + [ + 11.4282729, + 50.902900301 + ], + [ + 11.429572, + 50.902278001 + ], + [ + 11.4301459, + 50.901997601 + ], + [ + 11.4307274, + 50.901717501 + ], + [ + 11.4322247, + 50.900994701 + ], + [ + 11.4325725, + 50.900828601 + ], + [ + 11.4332616, + 50.900494901 + ], + [ + 11.4338549, + 50.900211701 + ], + [ + 11.4345916, + 50.899851601 + ], + [ + 11.4349424, + 50.899685501 + ], + [ + 11.4371362, + 50.898631001 + ], + [ + 11.4374789, + 50.898463601 + ], + [ + 11.4393506, + 50.897549501 + ], + [ + 11.4400131, + 50.897244201 + ], + [ + 11.4405955, + 50.896967301 + ], + [ + 11.4409557, + 50.896796701 + ], + [ + 11.4417813, + 50.896412101 + ], + [ + 11.4424778, + 50.896097801 + ], + [ + 11.4431897, + 50.895790101 + ], + [ + 11.4438335, + 50.895524001 + ], + [ + 11.4443196, + 50.895330901 + ], + [ + 11.4448544, + 50.895125201 + ], + [ + 11.4451566, + 50.895014201 + ], + [ + 11.4460078, + 50.894701601 + ], + [ + 11.4472724, + 50.894268801 + ], + [ + 11.4486068, + 50.893856401 + ], + [ + 11.4487134, + 50.893821701 + ], + [ + 11.4498192, + 50.893507101 + ], + [ + 11.450528, + 50.893315401 + ], + [ + 11.4510798, + 50.893174301 + ], + [ + 11.4530888, + 50.892693301 + ], + [ + 11.4536762, + 50.892556201 + ], + [ + 11.4546408, + 50.892343301 + ], + [ + 11.4549955, + 50.892264501 + ], + [ + 11.4597734, + 50.891247401 + ], + [ + 11.4626594, + 50.890609501 + ], + [ + 11.4642274, + 50.890242101 + ], + [ + 11.4656759, + 50.889887201 + ], + [ + 11.4669205, + 50.889566201 + ], + [ + 11.4680887, + 50.889244801 + ], + [ + 11.4681583, + 50.889225601 + ], + [ + 11.4688945, + 50.889019001 + ], + [ + 11.4704945, + 50.888546301 + ], + [ + 11.4720513, + 50.888060001 + ], + [ + 11.4725992, + 50.887878001 + ], + [ + 11.4732249, + 50.887672301 + ], + [ + 11.4745258, + 50.887227301 + ], + [ + 11.4756986, + 50.886808101 + ], + [ + 11.4778148, + 50.886017601 + ], + [ + 11.4793487, + 50.885420201 + ], + [ + 11.4808474, + 50.884826001 + ], + [ + 11.4842408, + 50.883463901 + ], + [ + 11.4860506, + 50.882733501 + ], + [ + 11.4885106, + 50.881747001 + ], + [ + 11.4891632, + 50.881484501 + ], + [ + 11.4909884, + 50.880753901 + ], + [ + 11.4914155, + 50.880582601 + ], + [ + 11.4921496, + 50.880284301 + ], + [ + 11.4945561, + 50.879312401 + ], + [ + 11.4980525, + 50.877905001 + ], + [ + 11.5000826, + 50.877097101 + ], + [ + 11.5005945, + 50.876911301 + ], + [ + 11.5012054, + 50.876689601 + ], + [ + 11.5019459, + 50.876442101 + ], + [ + 11.5030084, + 50.876130901 + ], + [ + 11.5037762, + 50.875930301 + ], + [ + 11.5047316, + 50.875704401 + ], + [ + 11.5054211, + 50.875567101 + ], + [ + 11.5061568, + 50.875428101 + ], + [ + 11.5071051, + 50.875279301 + ], + [ + 11.5081371, + 50.875148101 + ], + [ + 11.5094374, + 50.875019301 + ], + [ + 11.5100589, + 50.874978801 + ], + [ + 11.5110974, + 50.874928501 + ], + [ + 11.5113787, + 50.874918801 + ], + [ + 11.5116958, + 50.874912401 + ], + [ + 11.512631, + 50.874907301 + ], + [ + 11.5134461, + 50.874923801 + ], + [ + 11.5143562, + 50.874971601 + ], + [ + 11.5150976, + 50.875019901 + ], + [ + 11.515915, + 50.875091501 + ], + [ + 11.516179, + 50.875123001 + ], + [ + 11.516717, + 50.875187101 + ], + [ + 11.5172171, + 50.875258401 + ], + [ + 11.5177153, + 50.875332801 + ], + [ + 11.5183213, + 50.875434501 + ], + [ + 11.5190036, + 50.875554501 + ], + [ + 11.5197988, + 50.875721701 + ], + [ + 11.5205902, + 50.875918101 + ], + [ + 11.5213683, + 50.876121601 + ], + [ + 11.5221364, + 50.876337601 + ], + [ + 11.5226879, + 50.876502701 + ], + [ + 11.5247227, + 50.877133601 + ], + [ + 11.5252119, + 50.877283201 + ], + [ + 11.5255673, + 50.877391901 + ], + [ + 11.5268195, + 50.877741101 + ], + [ + 11.5277655, + 50.877977601 + ], + [ + 11.5286924, + 50.878174001 + ], + [ + 11.5294578, + 50.878311101 + ], + [ + 11.5299189, + 50.878390801 + ], + [ + 11.5308877, + 50.878526701 + ], + [ + 11.5314738, + 50.878598801 + ], + [ + 11.5324674, + 50.878694501 + ], + [ + 11.5330597, + 50.878736401 + ], + [ + 11.5336998, + 50.878772001 + ], + [ + 11.5344686, + 50.878802401 + ], + [ + 11.5353025, + 50.878813501 + ], + [ + 11.5354861, + 50.878813301 + ], + [ + 11.5357522, + 50.878811401 + ], + [ + 11.5361844, + 50.878805901 + ], + [ + 11.5365249, + 50.878796501 + ], + [ + 11.5374667, + 50.878760601 + ], + [ + 11.5386284, + 50.878638601 + ], + [ + 11.5399757, + 50.878437601 + ], + [ + 11.5409292, + 50.878282201 + ], + [ + 11.5455602, + 50.877422801 + ], + [ + 11.5530133, + 50.876039601 + ], + [ + 11.5549457, + 50.875681001 + ], + [ + 11.5565711, + 50.875379301 + ], + [ + 11.5581073, + 50.875094201 + ], + [ + 11.5584041, + 50.875039101 + ], + [ + 11.5598231, + 50.874771901 + ], + [ + 11.5666571, + 50.873485101 + ], + [ + 11.573472, + 50.872201801 + ], + [ + 11.5784302, + 50.871283701 + ], + [ + 11.5795201, + 50.871080601 + ], + [ + 11.5802457, + 50.870946301 + ], + [ + 11.5823494, + 50.870570301 + ], + [ + 11.5832636, + 50.870444801 + ], + [ + 11.5836638, + 50.870395501 + ], + [ + 11.5845577, + 50.870311701 + ], + [ + 11.585023, + 50.870282501 + ], + [ + 11.5864258, + 50.870259001 + ], + [ + 11.5872962, + 50.870291601 + ], + [ + 11.587561, + 50.870306701 + ], + [ + 11.5879314, + 50.870341701 + ], + [ + 11.5888642, + 50.870443301 + ], + [ + 11.5897453, + 50.870580201 + ], + [ + 11.5903657, + 50.870697001 + ], + [ + 11.5910918, + 50.870873701 + ], + [ + 11.5918103, + 50.871068401 + ], + [ + 11.5924762, + 50.871278101 + ], + [ + 11.5933343, + 50.871591601 + ], + [ + 11.5938441, + 50.871799801 + ], + [ + 11.5940765, + 50.871906601 + ], + [ + 11.5942921, + 50.872005501 + ], + [ + 11.5946934, + 50.872204701 + ], + [ + 11.594821917, + 50.87227173 + ] + ] + } + }, + { + "identifier": "2026-010626--vi-bs.2026-04-13_08-30-00-000.devi-zus.2026-04-13_08-30-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.94077860147911,11.332046556825478,50.93198009162464,11.388413869541512", + "point": "50.94077860147911,11.332046556825478", + "startLcPosition": "83", + "impact": { + "lower": "Apolda", + "upper": "Weimar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Weimar - Apolda", + "coordinate": { + "lat": 50.94077860147911, + "long": 11.332046556825478 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 16:00 Uhr", + "15.04.26 von 08:00 bis 16:00 Uhr", + "16.04.26 von 08:00 bis 12:30 Uhr", + "", + "A4: Erfurt -> Chemnitz, zwischen 2.5 km hinter AS Weimar und AS Apolda", + "", + "L\u00e4nge: 4.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.7 m", + "", + "A4 2026-010626" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.332046557, + 50.940778601 + ], + [ + 11.3360345, + 50.939848901 + ], + [ + 11.3393225, + 50.939079601 + ], + [ + 11.3394949, + 50.939039301 + ], + [ + 11.3396845, + 50.938996101 + ], + [ + 11.3412921, + 50.938630001 + ], + [ + 11.3419945, + 50.938460601 + ], + [ + 11.3423926, + 50.938373501 + ], + [ + 11.342897, + 50.938269401 + ], + [ + 11.343404, + 50.938170401 + ], + [ + 11.3443818, + 50.937999901 + ], + [ + 11.3453452, + 50.937854401 + ], + [ + 11.3463201, + 50.937729401 + ], + [ + 11.3475908, + 50.937603401 + ], + [ + 11.3488683, + 50.937507301 + ], + [ + 11.349742, + 50.937467401 + ], + [ + 11.3504107, + 50.937450901 + ], + [ + 11.3519339, + 50.937438601 + ], + [ + 11.3521664, + 50.937441101 + ], + [ + 11.3524121, + 50.937445401 + ], + [ + 11.3540333, + 50.937509301 + ], + [ + 11.3552587, + 50.937554201 + ], + [ + 11.356886, + 50.937619501 + ], + [ + 11.3580507, + 50.937662601 + ], + [ + 11.3587799, + 50.937691501 + ], + [ + 11.361309, + 50.937792101 + ], + [ + 11.3624758, + 50.937836801 + ], + [ + 11.3644217, + 50.937906801 + ], + [ + 11.3652791, + 50.937939301 + ], + [ + 11.3661523, + 50.937948601 + ], + [ + 11.3672925, + 50.937923001 + ], + [ + 11.3686787, + 50.937850801 + ], + [ + 11.3694423, + 50.937786501 + ], + [ + 11.3704784, + 50.937658701 + ], + [ + 11.370926, + 50.937600001 + ], + [ + 11.3711835, + 50.937556101 + ], + [ + 11.3720385, + 50.937412001 + ], + [ + 11.3728845, + 50.937250801 + ], + [ + 11.3765212, + 50.936529801 + ], + [ + 11.3777261, + 50.936293101 + ], + [ + 11.3789348, + 50.936049901 + ], + [ + 11.3793855, + 50.935949201 + ], + [ + 11.3800697, + 50.935786401 + ], + [ + 11.380723, + 50.935607001 + ], + [ + 11.3816498, + 50.935325801 + ], + [ + 11.382241, + 50.935125501 + ], + [ + 11.3828253, + 50.934916501 + ], + [ + 11.3835948, + 50.934615901 + ], + [ + 11.3841965, + 50.934354901 + ], + [ + 11.3844947, + 50.934217701 + ], + [ + 11.3849685, + 50.933993101 + ], + [ + 11.3855649, + 50.933686601 + ], + [ + 11.3861405, + 50.933372901 + ], + [ + 11.3864433, + 50.933199001 + ], + [ + 11.3871297, + 50.932786701 + ], + [ + 11.3878636, + 50.932324901 + ], + [ + 11.3881543, + 50.932143501 + ], + [ + 11.38841387, + 50.931980092 + ] + ] + } + }, + { + "identifier": "2026-010626--vi-bs.2026-04-13_08-30-00-000.devi-zus.2026-04-13_08-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.94077860147911,11.332046556825478,50.93198009162464,11.388413869541512", + "point": "50.94077860147911,11.332046556825478", + "startLcPosition": "83", + "impact": { + "lower": "Apolda", + "upper": "Weimar", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Weimar - Apolda", + "coordinate": { + "lat": 50.94077860147911, + "long": 11.332046556825478 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:30 bis 11:30 Uhr", + "", + "A4: Erfurt -> Chemnitz, zwischen 2.5 km hinter AS Weimar und AS Apolda", + "", + "L\u00e4nge: 4.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.7 m", + "", + "A4 2026-010626" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.332046557, + 50.940778601 + ], + [ + 11.3360345, + 50.939848901 + ], + [ + 11.3393225, + 50.939079601 + ], + [ + 11.3394949, + 50.939039301 + ], + [ + 11.3396845, + 50.938996101 + ], + [ + 11.3412921, + 50.938630001 + ], + [ + 11.3419945, + 50.938460601 + ], + [ + 11.3423926, + 50.938373501 + ], + [ + 11.342897, + 50.938269401 + ], + [ + 11.343404, + 50.938170401 + ], + [ + 11.3443818, + 50.937999901 + ], + [ + 11.3453452, + 50.937854401 + ], + [ + 11.3463201, + 50.937729401 + ], + [ + 11.3475908, + 50.937603401 + ], + [ + 11.3488683, + 50.937507301 + ], + [ + 11.349742, + 50.937467401 + ], + [ + 11.3504107, + 50.937450901 + ], + [ + 11.3519339, + 50.937438601 + ], + [ + 11.3521664, + 50.937441101 + ], + [ + 11.3524121, + 50.937445401 + ], + [ + 11.3540333, + 50.937509301 + ], + [ + 11.3552587, + 50.937554201 + ], + [ + 11.356886, + 50.937619501 + ], + [ + 11.3580507, + 50.937662601 + ], + [ + 11.3587799, + 50.937691501 + ], + [ + 11.361309, + 50.937792101 + ], + [ + 11.3624758, + 50.937836801 + ], + [ + 11.3644217, + 50.937906801 + ], + [ + 11.3652791, + 50.937939301 + ], + [ + 11.3661523, + 50.937948601 + ], + [ + 11.3672925, + 50.937923001 + ], + [ + 11.3686787, + 50.937850801 + ], + [ + 11.3694423, + 50.937786501 + ], + [ + 11.3704784, + 50.937658701 + ], + [ + 11.370926, + 50.937600001 + ], + [ + 11.3711835, + 50.937556101 + ], + [ + 11.3720385, + 50.937412001 + ], + [ + 11.3728845, + 50.937250801 + ], + [ + 11.3765212, + 50.936529801 + ], + [ + 11.3777261, + 50.936293101 + ], + [ + 11.3789348, + 50.936049901 + ], + [ + 11.3793855, + 50.935949201 + ], + [ + 11.3800697, + 50.935786401 + ], + [ + 11.380723, + 50.935607001 + ], + [ + 11.3816498, + 50.935325801 + ], + [ + 11.382241, + 50.935125501 + ], + [ + 11.3828253, + 50.934916501 + ], + [ + 11.3835948, + 50.934615901 + ], + [ + 11.3841965, + 50.934354901 + ], + [ + 11.3844947, + 50.934217701 + ], + [ + 11.3849685, + 50.933993101 + ], + [ + 11.3855649, + 50.933686601 + ], + [ + 11.3861405, + 50.933372901 + ], + [ + 11.3864433, + 50.933199001 + ], + [ + 11.3871297, + 50.932786701 + ], + [ + 11.3878636, + 50.932324901 + ], + [ + 11.3881543, + 50.932143501 + ], + [ + 11.38841387, + 50.931980092 + ] + ] + } + }, + { + "identifier": "2026-009463--vi-bs.2026-03-30_08-30-00-000.devi-zus.2026-03-30_08-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.94332260611139,11.31125451878296,50.92949032895037,11.145373212095409", + "point": "50.94332260611139,11.31125451878296", + "startLcPosition": "84", + "impact": { + "lower": "Erfurt-Ost", + "upper": "Habichtsfang", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Habichtsfang - Erfurt-Ost", + "coordinate": { + "lat": 50.94332260611139, + "long": 11.31125451878296 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "19.04.26 von 07:45 bis 17:15 Uhr", + "22.04.26 von 07:45 bis 17:15 Uhr", + "23.04.26 von 12:30 bis 17:15 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 3.2 km hinter Habichtsfang und 0.6 km vor AS Erfurt-Ost", + "", + "L\u00e4nge: 12.47 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.7 m", + "", + "Y A4 2026-009463" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.311254519, + 50.943322606 + ], + [ + 11.31058, + 50.943322001 + ], + [ + 11.3091622, + 50.943315401 + ], + [ + 11.3078495, + 50.943308401 + ], + [ + 11.3068026, + 50.943305801 + ], + [ + 11.3047857, + 50.943300201 + ], + [ + 11.3042636, + 50.943306101 + ], + [ + 11.3032553, + 50.943351201 + ], + [ + 11.3019568, + 50.943493701 + ], + [ + 11.2989063, + 50.943984501 + ], + [ + 11.2982702, + 50.944089201 + ], + [ + 11.2972455, + 50.944257801 + ], + [ + 11.2966926, + 50.944352201 + ], + [ + 11.295807, + 50.944498201 + ], + [ + 11.2946905, + 50.944682901 + ], + [ + 11.2934547, + 50.944881101 + ], + [ + 11.2927864, + 50.944990101 + ], + [ + 11.2927152, + 50.945002101 + ], + [ + 11.2924137, + 50.945051501 + ], + [ + 11.2908326, + 50.945310301 + ], + [ + 11.2902715, + 50.945402801 + ], + [ + 11.2889692, + 50.945613601 + ], + [ + 11.2874044, + 50.945873401 + ], + [ + 11.286729, + 50.945982001 + ], + [ + 11.2848935, + 50.946282901 + ], + [ + 11.2843354, + 50.946374401 + ], + [ + 11.28067, + 50.946973101 + ], + [ + 11.2785468, + 50.947312401 + ], + [ + 11.2771656, + 50.947499801 + ], + [ + 11.2760486, + 50.947618601 + ], + [ + 11.2753107, + 50.947682901 + ], + [ + 11.2745594, + 50.947732101 + ], + [ + 11.2735617, + 50.947779801 + ], + [ + 11.2717889, + 50.947848501 + ], + [ + 11.2700154, + 50.947914601 + ], + [ + 11.2694347, + 50.947934601 + ], + [ + 11.2662767, + 50.948050701 + ], + [ + 11.2628435, + 50.948187501 + ], + [ + 11.259026, + 50.948326801 + ], + [ + 11.258916, + 50.948332401 + ], + [ + 11.2583381, + 50.948358001 + ], + [ + 11.2565832, + 50.948449501 + ], + [ + 11.2554406, + 50.948525501 + ], + [ + 11.2524714, + 50.948769501 + ], + [ + 11.2491758, + 50.949048501 + ], + [ + 11.2479489, + 50.949156301 + ], + [ + 11.2459842, + 50.949317301 + ], + [ + 11.245382, + 50.949372401 + ], + [ + 11.2448546, + 50.949415501 + ], + [ + 11.2437053, + 50.949512401 + ], + [ + 11.2426186, + 50.949601301 + ], + [ + 11.2421168, + 50.949643001 + ], + [ + 11.2415618, + 50.949689601 + ], + [ + 11.2396781, + 50.949852101 + ], + [ + 11.2381077, + 50.949988801 + ], + [ + 11.2358866, + 50.950174401 + ], + [ + 11.2339249, + 50.950325201 + ], + [ + 11.2322196, + 50.950415801 + ], + [ + 11.231535, + 50.950441501 + ], + [ + 11.2302858, + 50.950463501 + ], + [ + 11.2290955, + 50.950464801 + ], + [ + 11.2285937, + 50.950459201 + ], + [ + 11.2277125, + 50.950436401 + ], + [ + 11.2265961, + 50.950402201 + ], + [ + 11.2242052, + 50.950287901 + ], + [ + 11.2204695, + 50.950117101 + ], + [ + 11.2200881, + 50.950100301 + ], + [ + 11.2170123, + 50.949960201 + ], + [ + 11.210899, + 50.949686501 + ], + [ + 11.2075621, + 50.949529101 + ], + [ + 11.2042451, + 50.949376201 + ], + [ + 11.2036582, + 50.949352001 + ], + [ + 11.2031854, + 50.949329501 + ], + [ + 11.202951, + 50.949317701 + ], + [ + 11.2014606, + 50.949246401 + ], + [ + 11.1998479, + 50.949179801 + ], + [ + 11.1960015, + 50.948989101 + ], + [ + 11.1947882, + 50.948919201 + ], + [ + 11.1934991, + 50.948782401 + ], + [ + 11.1923234, + 50.948643801 + ], + [ + 11.1915618, + 50.948533901 + ], + [ + 11.1908284, + 50.948417801 + ], + [ + 11.1901805, + 50.948308601 + ], + [ + 11.188873, + 50.948055601 + ], + [ + 11.1878127, + 50.947822201 + ], + [ + 11.1869914, + 50.947636801 + ], + [ + 11.1855083, + 50.947312701 + ], + [ + 11.1843047, + 50.947043301 + ], + [ + 11.1831322, + 50.946786201 + ], + [ + 11.1827379, + 50.946702501 + ], + [ + 11.1814388, + 50.946414101 + ], + [ + 11.179825, + 50.946058301 + ], + [ + 11.1795939, + 50.946007101 + ], + [ + 11.1756873, + 50.945147901 + ], + [ + 11.1752678, + 50.945049201 + ], + [ + 11.1739493, + 50.944753701 + ], + [ + 11.1734411, + 50.944643001 + ], + [ + 11.1722011, + 50.944354901 + ], + [ + 11.1718419, + 50.944266501 + ], + [ + 11.1713973, + 50.944152301 + ], + [ + 11.1704506, + 50.943887301 + ], + [ + 11.1699141, + 50.943727601 + ], + [ + 11.1695521, + 50.943620201 + ], + [ + 11.1691591, + 50.943496101 + ], + [ + 11.1681982, + 50.943172101 + ], + [ + 11.1672567, + 50.942822901 + ], + [ + 11.1660175, + 50.942306901 + ], + [ + 11.1657132, + 50.942176501 + ], + [ + 11.1649002, + 50.941811801 + ], + [ + 11.1642766, + 50.941516701 + ], + [ + 11.1630158, + 50.940915501 + ], + [ + 11.1612349, + 50.940061601 + ], + [ + 11.1584238, + 50.938720501 + ], + [ + 11.1576236, + 50.938338701 + ], + [ + 11.1566438, + 50.937861501 + ], + [ + 11.1560695, + 50.937557401 + ], + [ + 11.15566, + 50.937339801 + ], + [ + 11.1553187, + 50.937134801 + ], + [ + 11.1547356, + 50.936779801 + ], + [ + 11.154193, + 50.936426101 + ], + [ + 11.1536846, + 50.936065201 + ], + [ + 11.1534068, + 50.935862401 + ], + [ + 11.1527423, + 50.935315901 + ], + [ + 11.1522973, + 50.934923401 + ], + [ + 11.1518418, + 50.934520401 + ], + [ + 11.1513934, + 50.934118101 + ], + [ + 11.1505289, + 50.933333401 + ], + [ + 11.1503246, + 50.933148701 + ], + [ + 11.1499773, + 50.932834701 + ], + [ + 11.1493538, + 50.932277301 + ], + [ + 11.1487578, + 50.931755301 + ], + [ + 11.1482902, + 50.931374501 + ], + [ + 11.1478043, + 50.931006801 + ], + [ + 11.1474995, + 50.930785301 + ], + [ + 11.1472215, + 50.930594801 + ], + [ + 11.1469419, + 50.930412001 + ], + [ + 11.1465875, + 50.930187201 + ], + [ + 11.1458376, + 50.929738001 + ], + [ + 11.145373212, + 50.929490329 + ] + ] + } + }, + { + "identifier": "2025-050877--vi-bs.2025-10-20_08-00-00-000.devi-bs.2025-10-20_08-00-00-000_015.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.93070786887711,11.390422822719824,50.90030204290968,11.433665636304212", + "point": "50.93070786887711,11.390422822719824", + "startLcPosition": "85", + "impact": { + "lower": "Magdala", + "upper": "Apolda", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Apolda - Magdala", + "startTimestamp": "2025-10-20T08:00:00+02:00", + "coordinate": { + "lat": 50.93070786887711, + "long": 11.390422822719824 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.10.25 um 08:00 Uhr", + "Ende: 30.06.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A4: Erfurt -> Chemnitz, zwischen 0.2 km hinter AS Apolda und 0.6 km vor AS Magdala", + "", + "L\u00e4nge: 4.58 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "4 EF_2025-50877_DD_189,400-184,800_Absicherung-BSWF" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.390422823, + 50.930707869 + ], + [ + 11.3905346, + 50.930636101 + ], + [ + 11.3914437, + 50.930050601 + ], + [ + 11.3934955, + 50.928785201 + ], + [ + 11.394628, + 50.928072501 + ], + [ + 11.3956506, + 50.927437901 + ], + [ + 11.3972347, + 50.926451501 + ], + [ + 11.3979384, + 50.926015301 + ], + [ + 11.3981783, + 50.925863901 + ], + [ + 11.3986727, + 50.925559001 + ], + [ + 11.3997073, + 50.924920501 + ], + [ + 11.4003492, + 50.924520401 + ], + [ + 11.4009782, + 50.924114501 + ], + [ + 11.4018436, + 50.923547101 + ], + [ + 11.4026831, + 50.922960301 + ], + [ + 11.4032165, + 50.922568001 + ], + [ + 11.4037472, + 50.922166801 + ], + [ + 11.4047564, + 50.921350401 + ], + [ + 11.4055545, + 50.920647201 + ], + [ + 11.4062764, + 50.919977801 + ], + [ + 11.4075838, + 50.918744901 + ], + [ + 11.408609, + 50.917778501 + ], + [ + 11.4092147, + 50.917200101 + ], + [ + 11.4103633, + 50.916127801 + ], + [ + 11.4112082, + 50.915324201 + ], + [ + 11.4114013, + 50.915146601 + ], + [ + 11.4128802, + 50.913745301 + ], + [ + 11.4132989, + 50.913351801 + ], + [ + 11.4142793, + 50.912434901 + ], + [ + 11.4152957, + 50.911523001 + ], + [ + 11.4154668, + 50.911364401 + ], + [ + 11.4156601, + 50.911184601 + ], + [ + 11.4161635, + 50.910706101 + ], + [ + 11.4166767, + 50.910232001 + ], + [ + 11.4172651, + 50.909700801 + ], + [ + 11.4180042, + 50.909069001 + ], + [ + 11.4187876, + 50.908443701 + ], + [ + 11.4196229, + 50.907808501 + ], + [ + 11.4197917, + 50.907681801 + ], + [ + 11.420506, + 50.907183201 + ], + [ + 11.4212384, + 50.906686501 + ], + [ + 11.4221562, + 50.906103601 + ], + [ + 11.4231157, + 50.905530401 + ], + [ + 11.4238467, + 50.905115901 + ], + [ + 11.4246079, + 50.904707501 + ], + [ + 11.4249497, + 50.904525801 + ], + [ + 11.4256773, + 50.904158501 + ], + [ + 11.4264175, + 50.903793301 + ], + [ + 11.427069, + 50.903478201 + ], + [ + 11.4276829, + 50.903183001 + ], + [ + 11.4282729, + 50.902900301 + ], + [ + 11.429572, + 50.902278001 + ], + [ + 11.4301459, + 50.901997601 + ], + [ + 11.4307274, + 50.901717501 + ], + [ + 11.4322247, + 50.900994701 + ], + [ + 11.4325725, + 50.900828601 + ], + [ + 11.4332616, + 50.900494901 + ], + [ + 11.433665636, + 50.900302043 + ] + ] + } + }, + { + "identifier": "2025-042933--vi-bs.2025-09-08_08-00-00-000.devi-zus.2025-09-08_08-00-00-000_036.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.92180943380801,11.404527245233307,50.945992569114956,11.286664537135715", + "point": "50.92180943380801,11.404527245233307", + "startLcPosition": "86", + "impact": { + "lower": "Nohra", + "upper": "Magdala", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Magdala - Nohra", + "coordinate": { + "lat": 50.92180943380801, + "long": 11.404527245233307 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 01.04.26 und dem 29.05.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 3.8 km hinter AS Magdala und 3.2 km vor AS Nohra", + "", + "L\u00e4nge: 9.07 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.404527245, + 50.921809434 + ], + [ + 11.4037899, + 50.922403901 + ], + [ + 11.4027908, + 50.923135301 + ], + [ + 11.4019356, + 50.923735001 + ], + [ + 11.4011308, + 50.924261201 + ], + [ + 11.3999283, + 50.925014701 + ], + [ + 11.3987341, + 50.925757901 + ], + [ + 11.3983011, + 50.926029301 + ], + [ + 11.3980787, + 50.926168801 + ], + [ + 11.397336, + 50.926632101 + ], + [ + 11.3965861, + 50.927097401 + ], + [ + 11.3958473, + 50.927564601 + ], + [ + 11.3947815, + 50.928250201 + ], + [ + 11.3946632, + 50.928328501 + ], + [ + 11.3918885, + 50.930061201 + ], + [ + 11.3917096, + 50.930172301 + ], + [ + 11.3915778, + 50.930251601 + ], + [ + 11.3913574, + 50.930384201 + ], + [ + 11.3903701, + 50.930977901 + ], + [ + 11.389604, + 50.931439801 + ], + [ + 11.3891858, + 50.931697701 + ], + [ + 11.3888174, + 50.931929101 + ], + [ + 11.3871825, + 50.932935001 + ], + [ + 11.3867147, + 50.933217901 + ], + [ + 11.3861357, + 50.933552801 + ], + [ + 11.3855742, + 50.933858201 + ], + [ + 11.3849357, + 50.934173901 + ], + [ + 11.3846536, + 50.934309901 + ], + [ + 11.3838841, + 50.934653701 + ], + [ + 11.3829162, + 50.935039401 + ], + [ + 11.3817288, + 50.935446701 + ], + [ + 11.380805, + 50.935730201 + ], + [ + 11.3802078, + 50.935887801 + ], + [ + 11.3795962, + 50.936040901 + ], + [ + 11.3791363, + 50.936146901 + ], + [ + 11.3776475, + 50.936461601 + ], + [ + 11.3765533, + 50.936679601 + ], + [ + 11.3720247, + 50.937568501 + ], + [ + 11.3717755, + 50.937611801 + ], + [ + 11.3714995, + 50.937662901 + ], + [ + 11.371248, + 50.937703201 + ], + [ + 11.3708013, + 50.937772001 + ], + [ + 11.3703557, + 50.937832501 + ], + [ + 11.3694207, + 50.937939301 + ], + [ + 11.368629, + 50.938008701 + ], + [ + 11.3672371, + 50.938084201 + ], + [ + 11.3663857, + 50.938100201 + ], + [ + 11.3658822, + 50.938102601 + ], + [ + 11.365285, + 50.938092601 + ], + [ + 11.3644207, + 50.938068001 + ], + [ + 11.3611698, + 50.937939901 + ], + [ + 11.3581561, + 50.937817001 + ], + [ + 11.3568672, + 50.937774301 + ], + [ + 11.3553653, + 50.937708801 + ], + [ + 11.3540691, + 50.937659101 + ], + [ + 11.3525073, + 50.937606001 + ], + [ + 11.3521609, + 50.937602701 + ], + [ + 11.3520302, + 50.937600301 + ], + [ + 11.3519284, + 50.937599901 + ], + [ + 11.3509017, + 50.937600201 + ], + [ + 11.3497094, + 50.937628401 + ], + [ + 11.3487745, + 50.937667301 + ], + [ + 11.3475667, + 50.937757701 + ], + [ + 11.3463766, + 50.937878701 + ], + [ + 11.3453874, + 50.938006601 + ], + [ + 11.3444107, + 50.938148101 + ], + [ + 11.3436808, + 50.938278701 + ], + [ + 11.3429624, + 50.938417301 + ], + [ + 11.3425233, + 50.938507401 + ], + [ + 11.3421438, + 50.938591601 + ], + [ + 11.3412927, + 50.938793001 + ], + [ + 11.3395432, + 50.939195501 + ], + [ + 11.3361714, + 50.939995701 + ], + [ + 11.3312587, + 50.941140601 + ], + [ + 11.3307304, + 50.941253601 + ], + [ + 11.3302993, + 50.941349801 + ], + [ + 11.3298346, + 50.941460401 + ], + [ + 11.3283928, + 50.941775401 + ], + [ + 11.3272047, + 50.942003801 + ], + [ + 11.3269553, + 50.942051101 + ], + [ + 11.3265091, + 50.942140201 + ], + [ + 11.3249704, + 50.942396701 + ], + [ + 11.3234288, + 50.942625801 + ], + [ + 11.3228141, + 50.942706501 + ], + [ + 11.321095, + 50.942909201 + ], + [ + 11.3198461, + 50.943027101 + ], + [ + 11.3185934, + 50.943125601 + ], + [ + 11.3172443, + 50.943210501 + ], + [ + 11.3160574, + 50.943265601 + ], + [ + 11.3154876, + 50.943288401 + ], + [ + 11.3140046, + 50.943325101 + ], + [ + 11.3118093, + 50.943323101 + ], + [ + 11.31058, + 50.943322001 + ], + [ + 11.3091622, + 50.943315401 + ], + [ + 11.3078495, + 50.943308401 + ], + [ + 11.3068026, + 50.943305801 + ], + [ + 11.3047857, + 50.943300201 + ], + [ + 11.3042636, + 50.943306101 + ], + [ + 11.3032553, + 50.943351201 + ], + [ + 11.3019568, + 50.943493701 + ], + [ + 11.2989063, + 50.943984501 + ], + [ + 11.2982702, + 50.944089201 + ], + [ + 11.2972455, + 50.944257801 + ], + [ + 11.2966926, + 50.944352201 + ], + [ + 11.295807, + 50.944498201 + ], + [ + 11.2946905, + 50.944682901 + ], + [ + 11.2934547, + 50.944881101 + ], + [ + 11.2927864, + 50.944990101 + ], + [ + 11.2927152, + 50.945002101 + ], + [ + 11.2924137, + 50.945051501 + ], + [ + 11.2908326, + 50.945310301 + ], + [ + 11.2902715, + 50.945402801 + ], + [ + 11.2889692, + 50.945613601 + ], + [ + 11.2874044, + 50.945873401 + ], + [ + 11.286729, + 50.945982001 + ], + [ + 11.286664537, + 50.945992569 + ] + ] + } + }, + { + "identifier": "2026-010626--vi-bs.2026-04-13_08-30-00-000.devi-zus.2026-04-13_08-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.925137007081524,11.399731778096081,50.94328725546497,11.3155162284176", + "point": "50.925137007081524,11.399731778096081", + "startLcPosition": "86", + "impact": { + "lower": "Weimar", + "upper": "Magdala", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Magdala - Weimar", + "coordinate": { + "lat": 50.925137007081524, + "long": 11.399731778096081 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 12:30 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 4.3 km hinter AS Magdala und 1.3 km vor AS Weimar", + "", + "L\u00e4nge: 6.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.7 m", + "", + "A4 2026-010626" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.399731778, + 50.925137007 + ], + [ + 11.3987341, + 50.925757901 + ], + [ + 11.3983011, + 50.926029301 + ], + [ + 11.3980787, + 50.926168801 + ], + [ + 11.397336, + 50.926632101 + ], + [ + 11.3965861, + 50.927097401 + ], + [ + 11.3958473, + 50.927564601 + ], + [ + 11.3947815, + 50.928250201 + ], + [ + 11.3946632, + 50.928328501 + ], + [ + 11.3918885, + 50.930061201 + ], + [ + 11.3917096, + 50.930172301 + ], + [ + 11.3915778, + 50.930251601 + ], + [ + 11.3913574, + 50.930384201 + ], + [ + 11.3903701, + 50.930977901 + ], + [ + 11.389604, + 50.931439801 + ], + [ + 11.3891858, + 50.931697701 + ], + [ + 11.3888174, + 50.931929101 + ], + [ + 11.3871825, + 50.932935001 + ], + [ + 11.3867147, + 50.933217901 + ], + [ + 11.3861357, + 50.933552801 + ], + [ + 11.3855742, + 50.933858201 + ], + [ + 11.3849357, + 50.934173901 + ], + [ + 11.3846536, + 50.934309901 + ], + [ + 11.3838841, + 50.934653701 + ], + [ + 11.3829162, + 50.935039401 + ], + [ + 11.3817288, + 50.935446701 + ], + [ + 11.380805, + 50.935730201 + ], + [ + 11.3802078, + 50.935887801 + ], + [ + 11.3795962, + 50.936040901 + ], + [ + 11.3791363, + 50.936146901 + ], + [ + 11.3776475, + 50.936461601 + ], + [ + 11.3765533, + 50.936679601 + ], + [ + 11.3720247, + 50.937568501 + ], + [ + 11.3717755, + 50.937611801 + ], + [ + 11.3714995, + 50.937662901 + ], + [ + 11.371248, + 50.937703201 + ], + [ + 11.3708013, + 50.937772001 + ], + [ + 11.3703557, + 50.937832501 + ], + [ + 11.3694207, + 50.937939301 + ], + [ + 11.368629, + 50.938008701 + ], + [ + 11.3672371, + 50.938084201 + ], + [ + 11.3663857, + 50.938100201 + ], + [ + 11.3658822, + 50.938102601 + ], + [ + 11.365285, + 50.938092601 + ], + [ + 11.3644207, + 50.938068001 + ], + [ + 11.3611698, + 50.937939901 + ], + [ + 11.3581561, + 50.937817001 + ], + [ + 11.3568672, + 50.937774301 + ], + [ + 11.3553653, + 50.937708801 + ], + [ + 11.3540691, + 50.937659101 + ], + [ + 11.3525073, + 50.937606001 + ], + [ + 11.3521609, + 50.937602701 + ], + [ + 11.3520302, + 50.937600301 + ], + [ + 11.3519284, + 50.937599901 + ], + [ + 11.3509017, + 50.937600201 + ], + [ + 11.3497094, + 50.937628401 + ], + [ + 11.3487745, + 50.937667301 + ], + [ + 11.3475667, + 50.937757701 + ], + [ + 11.3463766, + 50.937878701 + ], + [ + 11.3453874, + 50.938006601 + ], + [ + 11.3444107, + 50.938148101 + ], + [ + 11.3436808, + 50.938278701 + ], + [ + 11.3429624, + 50.938417301 + ], + [ + 11.3425233, + 50.938507401 + ], + [ + 11.3421438, + 50.938591601 + ], + [ + 11.3412927, + 50.938793001 + ], + [ + 11.3395432, + 50.939195501 + ], + [ + 11.3361714, + 50.939995701 + ], + [ + 11.3312587, + 50.941140601 + ], + [ + 11.3307304, + 50.941253601 + ], + [ + 11.3302993, + 50.941349801 + ], + [ + 11.3298346, + 50.941460401 + ], + [ + 11.3283928, + 50.941775401 + ], + [ + 11.3272047, + 50.942003801 + ], + [ + 11.3269553, + 50.942051101 + ], + [ + 11.3265091, + 50.942140201 + ], + [ + 11.3249704, + 50.942396701 + ], + [ + 11.3234288, + 50.942625801 + ], + [ + 11.3228141, + 50.942706501 + ], + [ + 11.321095, + 50.942909201 + ], + [ + 11.3198461, + 50.943027101 + ], + [ + 11.3185934, + 50.943125601 + ], + [ + 11.3172443, + 50.943210501 + ], + [ + 11.3160574, + 50.943265601 + ], + [ + 11.315516228, + 50.943287255 + ] + ] + } + }, + { + "identifier": "2026-010626--vi-bs.2026-04-13_08-30-00-000.devi-zus.2026-04-13_08-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.925137007081524,11.399731778096081,50.94328725546497,11.3155162284176", + "point": "50.925137007081524,11.399731778096081", + "startLcPosition": "86", + "impact": { + "lower": "Weimar", + "upper": "Magdala", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Magdala - Weimar", + "coordinate": { + "lat": 50.925137007081524, + "long": 11.399731778096081 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 11:30 bis 15:00 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 4.3 km hinter AS Magdala und 1.3 km vor AS Weimar", + "", + "L\u00e4nge: 6.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.7 m", + "", + "A4 2026-010626" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.399731778, + 50.925137007 + ], + [ + 11.3987341, + 50.925757901 + ], + [ + 11.3983011, + 50.926029301 + ], + [ + 11.3980787, + 50.926168801 + ], + [ + 11.397336, + 50.926632101 + ], + [ + 11.3965861, + 50.927097401 + ], + [ + 11.3958473, + 50.927564601 + ], + [ + 11.3947815, + 50.928250201 + ], + [ + 11.3946632, + 50.928328501 + ], + [ + 11.3918885, + 50.930061201 + ], + [ + 11.3917096, + 50.930172301 + ], + [ + 11.3915778, + 50.930251601 + ], + [ + 11.3913574, + 50.930384201 + ], + [ + 11.3903701, + 50.930977901 + ], + [ + 11.389604, + 50.931439801 + ], + [ + 11.3891858, + 50.931697701 + ], + [ + 11.3888174, + 50.931929101 + ], + [ + 11.3871825, + 50.932935001 + ], + [ + 11.3867147, + 50.933217901 + ], + [ + 11.3861357, + 50.933552801 + ], + [ + 11.3855742, + 50.933858201 + ], + [ + 11.3849357, + 50.934173901 + ], + [ + 11.3846536, + 50.934309901 + ], + [ + 11.3838841, + 50.934653701 + ], + [ + 11.3829162, + 50.935039401 + ], + [ + 11.3817288, + 50.935446701 + ], + [ + 11.380805, + 50.935730201 + ], + [ + 11.3802078, + 50.935887801 + ], + [ + 11.3795962, + 50.936040901 + ], + [ + 11.3791363, + 50.936146901 + ], + [ + 11.3776475, + 50.936461601 + ], + [ + 11.3765533, + 50.936679601 + ], + [ + 11.3720247, + 50.937568501 + ], + [ + 11.3717755, + 50.937611801 + ], + [ + 11.3714995, + 50.937662901 + ], + [ + 11.371248, + 50.937703201 + ], + [ + 11.3708013, + 50.937772001 + ], + [ + 11.3703557, + 50.937832501 + ], + [ + 11.3694207, + 50.937939301 + ], + [ + 11.368629, + 50.938008701 + ], + [ + 11.3672371, + 50.938084201 + ], + [ + 11.3663857, + 50.938100201 + ], + [ + 11.3658822, + 50.938102601 + ], + [ + 11.365285, + 50.938092601 + ], + [ + 11.3644207, + 50.938068001 + ], + [ + 11.3611698, + 50.937939901 + ], + [ + 11.3581561, + 50.937817001 + ], + [ + 11.3568672, + 50.937774301 + ], + [ + 11.3553653, + 50.937708801 + ], + [ + 11.3540691, + 50.937659101 + ], + [ + 11.3525073, + 50.937606001 + ], + [ + 11.3521609, + 50.937602701 + ], + [ + 11.3520302, + 50.937600301 + ], + [ + 11.3519284, + 50.937599901 + ], + [ + 11.3509017, + 50.937600201 + ], + [ + 11.3497094, + 50.937628401 + ], + [ + 11.3487745, + 50.937667301 + ], + [ + 11.3475667, + 50.937757701 + ], + [ + 11.3463766, + 50.937878701 + ], + [ + 11.3453874, + 50.938006601 + ], + [ + 11.3444107, + 50.938148101 + ], + [ + 11.3436808, + 50.938278701 + ], + [ + 11.3429624, + 50.938417301 + ], + [ + 11.3425233, + 50.938507401 + ], + [ + 11.3421438, + 50.938591601 + ], + [ + 11.3412927, + 50.938793001 + ], + [ + 11.3395432, + 50.939195501 + ], + [ + 11.3361714, + 50.939995701 + ], + [ + 11.3312587, + 50.941140601 + ], + [ + 11.3307304, + 50.941253601 + ], + [ + 11.3302993, + 50.941349801 + ], + [ + 11.3298346, + 50.941460401 + ], + [ + 11.3283928, + 50.941775401 + ], + [ + 11.3272047, + 50.942003801 + ], + [ + 11.3269553, + 50.942051101 + ], + [ + 11.3265091, + 50.942140201 + ], + [ + 11.3249704, + 50.942396701 + ], + [ + 11.3234288, + 50.942625801 + ], + [ + 11.3228141, + 50.942706501 + ], + [ + 11.321095, + 50.942909201 + ], + [ + 11.3198461, + 50.943027101 + ], + [ + 11.3185934, + 50.943125601 + ], + [ + 11.3172443, + 50.943210501 + ], + [ + 11.3160574, + 50.943265601 + ], + [ + 11.315516228, + 50.943287255 + ] + ] + } + }, + { + "identifier": "2026-014793--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_003.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.88104346640836,11.490265016795666,50.87544939249054,11.556193496479121", + "point": "50.88104346640836,11.490265016795666", + "startLcPosition": "86", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Magdala", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Magdala - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.88104346640836, + "long": 11.490265016795666 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 02:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 4.0 km hinter AS Magdala und 3.0 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 4.94 km | Maximale Durchfahrtsbreite: 7 m", + "", + "BAB 4-W VMT km 174,860 - 174,710 (Jena-G\u00f6schwitz - Bucha) Tunnel Jagdberg FR beide - Wartung Messstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.490265017, + 50.881043466 + ], + [ + 11.4909884, + 50.880753901 + ], + [ + 11.4914155, + 50.880582601 + ], + [ + 11.4921496, + 50.880284301 + ], + [ + 11.4945561, + 50.879312401 + ], + [ + 11.4980525, + 50.877905001 + ], + [ + 11.5000826, + 50.877097101 + ], + [ + 11.5005945, + 50.876911301 + ], + [ + 11.5012054, + 50.876689601 + ], + [ + 11.5019459, + 50.876442101 + ], + [ + 11.5030084, + 50.876130901 + ], + [ + 11.5037762, + 50.875930301 + ], + [ + 11.5047316, + 50.875704401 + ], + [ + 11.5054211, + 50.875567101 + ], + [ + 11.5061568, + 50.875428101 + ], + [ + 11.5071051, + 50.875279301 + ], + [ + 11.5081371, + 50.875148101 + ], + [ + 11.5094374, + 50.875019301 + ], + [ + 11.5100589, + 50.874978801 + ], + [ + 11.5110974, + 50.874928501 + ], + [ + 11.5113787, + 50.874918801 + ], + [ + 11.5116958, + 50.874912401 + ], + [ + 11.512631, + 50.874907301 + ], + [ + 11.5134461, + 50.874923801 + ], + [ + 11.5143562, + 50.874971601 + ], + [ + 11.5150976, + 50.875019901 + ], + [ + 11.515915, + 50.875091501 + ], + [ + 11.516179, + 50.875123001 + ], + [ + 11.516717, + 50.875187101 + ], + [ + 11.5172171, + 50.875258401 + ], + [ + 11.5177153, + 50.875332801 + ], + [ + 11.5183213, + 50.875434501 + ], + [ + 11.5190036, + 50.875554501 + ], + [ + 11.5197988, + 50.875721701 + ], + [ + 11.5205902, + 50.875918101 + ], + [ + 11.5213683, + 50.876121601 + ], + [ + 11.5221364, + 50.876337601 + ], + [ + 11.5226879, + 50.876502701 + ], + [ + 11.5247227, + 50.877133601 + ], + [ + 11.5252119, + 50.877283201 + ], + [ + 11.5255673, + 50.877391901 + ], + [ + 11.5268195, + 50.877741101 + ], + [ + 11.5277655, + 50.877977601 + ], + [ + 11.5286924, + 50.878174001 + ], + [ + 11.5294578, + 50.878311101 + ], + [ + 11.5299189, + 50.878390801 + ], + [ + 11.5308877, + 50.878526701 + ], + [ + 11.5314738, + 50.878598801 + ], + [ + 11.5324674, + 50.878694501 + ], + [ + 11.5330597, + 50.878736401 + ], + [ + 11.5336998, + 50.878772001 + ], + [ + 11.5344686, + 50.878802401 + ], + [ + 11.5353025, + 50.878813501 + ], + [ + 11.5354861, + 50.878813301 + ], + [ + 11.5357522, + 50.878811401 + ], + [ + 11.5361844, + 50.878805901 + ], + [ + 11.5365249, + 50.878796501 + ], + [ + 11.5374667, + 50.878760601 + ], + [ + 11.5386284, + 50.878638601 + ], + [ + 11.5399757, + 50.878437601 + ], + [ + 11.5409292, + 50.878282201 + ], + [ + 11.5455602, + 50.877422801 + ], + [ + 11.5530133, + 50.876039601 + ], + [ + 11.5549457, + 50.875681001 + ], + [ + 11.556193496, + 50.875449392 + ] + ] + } + }, + { + "identifier": "2026-014793--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.88104346640836,11.490265016795666,50.87544939249054,11.556193496479121", + "point": "50.88104346640836,11.490265016795666", + "startLcPosition": "86", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Magdala", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Magdala - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.88104346640836, + "long": 11.490265016795666 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 02:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 4.0 km hinter AS Magdala und 3.0 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 4.94 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "BAB 4-W VMT km 174,860 - 174,710 (Jena-G\u00f6schwitz - Bucha) Tunnel Jagdberg FR beide - Wartung Messstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.490265017, + 50.881043466 + ], + [ + 11.4909884, + 50.880753901 + ], + [ + 11.4914155, + 50.880582601 + ], + [ + 11.4921496, + 50.880284301 + ], + [ + 11.4945561, + 50.879312401 + ], + [ + 11.4980525, + 50.877905001 + ], + [ + 11.5000826, + 50.877097101 + ], + [ + 11.5005945, + 50.876911301 + ], + [ + 11.5012054, + 50.876689601 + ], + [ + 11.5019459, + 50.876442101 + ], + [ + 11.5030084, + 50.876130901 + ], + [ + 11.5037762, + 50.875930301 + ], + [ + 11.5047316, + 50.875704401 + ], + [ + 11.5054211, + 50.875567101 + ], + [ + 11.5061568, + 50.875428101 + ], + [ + 11.5071051, + 50.875279301 + ], + [ + 11.5081371, + 50.875148101 + ], + [ + 11.5094374, + 50.875019301 + ], + [ + 11.5100589, + 50.874978801 + ], + [ + 11.5110974, + 50.874928501 + ], + [ + 11.5113787, + 50.874918801 + ], + [ + 11.5116958, + 50.874912401 + ], + [ + 11.512631, + 50.874907301 + ], + [ + 11.5134461, + 50.874923801 + ], + [ + 11.5143562, + 50.874971601 + ], + [ + 11.5150976, + 50.875019901 + ], + [ + 11.515915, + 50.875091501 + ], + [ + 11.516179, + 50.875123001 + ], + [ + 11.516717, + 50.875187101 + ], + [ + 11.5172171, + 50.875258401 + ], + [ + 11.5177153, + 50.875332801 + ], + [ + 11.5183213, + 50.875434501 + ], + [ + 11.5190036, + 50.875554501 + ], + [ + 11.5197988, + 50.875721701 + ], + [ + 11.5205902, + 50.875918101 + ], + [ + 11.5213683, + 50.876121601 + ], + [ + 11.5221364, + 50.876337601 + ], + [ + 11.5226879, + 50.876502701 + ], + [ + 11.5247227, + 50.877133601 + ], + [ + 11.5252119, + 50.877283201 + ], + [ + 11.5255673, + 50.877391901 + ], + [ + 11.5268195, + 50.877741101 + ], + [ + 11.5277655, + 50.877977601 + ], + [ + 11.5286924, + 50.878174001 + ], + [ + 11.5294578, + 50.878311101 + ], + [ + 11.5299189, + 50.878390801 + ], + [ + 11.5308877, + 50.878526701 + ], + [ + 11.5314738, + 50.878598801 + ], + [ + 11.5324674, + 50.878694501 + ], + [ + 11.5330597, + 50.878736401 + ], + [ + 11.5336998, + 50.878772001 + ], + [ + 11.5344686, + 50.878802401 + ], + [ + 11.5353025, + 50.878813501 + ], + [ + 11.5354861, + 50.878813301 + ], + [ + 11.5357522, + 50.878811401 + ], + [ + 11.5361844, + 50.878805901 + ], + [ + 11.5365249, + 50.878796501 + ], + [ + 11.5374667, + 50.878760601 + ], + [ + 11.5386284, + 50.878638601 + ], + [ + 11.5399757, + 50.878437601 + ], + [ + 11.5409292, + 50.878282201 + ], + [ + 11.5455602, + 50.877422801 + ], + [ + 11.5530133, + 50.876039601 + ], + [ + 11.5549457, + 50.875681001 + ], + [ + 11.556193496, + 50.875449392 + ] + ] + } + }, + { + "identifier": "2026-014793--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.88104346640836,11.490265016795666,50.87544939249054,11.556193496479121", + "point": "50.88104346640836,11.490265016795666", + "startLcPosition": "86", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Magdala", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Magdala - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.88104346640836, + "long": 11.490265016795666 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 02:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 4.0 km hinter AS Magdala und 3.0 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 4.94 km | Maximale Durchfahrtsbreite: 7 m", + "", + "BAB 4-W VMT km 174,860 - 174,710 (Jena-G\u00f6schwitz - Bucha) Tunnel Jagdberg FR beide - Wartung Messstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.490265017, + 50.881043466 + ], + [ + 11.4909884, + 50.880753901 + ], + [ + 11.4914155, + 50.880582601 + ], + [ + 11.4921496, + 50.880284301 + ], + [ + 11.4945561, + 50.879312401 + ], + [ + 11.4980525, + 50.877905001 + ], + [ + 11.5000826, + 50.877097101 + ], + [ + 11.5005945, + 50.876911301 + ], + [ + 11.5012054, + 50.876689601 + ], + [ + 11.5019459, + 50.876442101 + ], + [ + 11.5030084, + 50.876130901 + ], + [ + 11.5037762, + 50.875930301 + ], + [ + 11.5047316, + 50.875704401 + ], + [ + 11.5054211, + 50.875567101 + ], + [ + 11.5061568, + 50.875428101 + ], + [ + 11.5071051, + 50.875279301 + ], + [ + 11.5081371, + 50.875148101 + ], + [ + 11.5094374, + 50.875019301 + ], + [ + 11.5100589, + 50.874978801 + ], + [ + 11.5110974, + 50.874928501 + ], + [ + 11.5113787, + 50.874918801 + ], + [ + 11.5116958, + 50.874912401 + ], + [ + 11.512631, + 50.874907301 + ], + [ + 11.5134461, + 50.874923801 + ], + [ + 11.5143562, + 50.874971601 + ], + [ + 11.5150976, + 50.875019901 + ], + [ + 11.515915, + 50.875091501 + ], + [ + 11.516179, + 50.875123001 + ], + [ + 11.516717, + 50.875187101 + ], + [ + 11.5172171, + 50.875258401 + ], + [ + 11.5177153, + 50.875332801 + ], + [ + 11.5183213, + 50.875434501 + ], + [ + 11.5190036, + 50.875554501 + ], + [ + 11.5197988, + 50.875721701 + ], + [ + 11.5205902, + 50.875918101 + ], + [ + 11.5213683, + 50.876121601 + ], + [ + 11.5221364, + 50.876337601 + ], + [ + 11.5226879, + 50.876502701 + ], + [ + 11.5247227, + 50.877133601 + ], + [ + 11.5252119, + 50.877283201 + ], + [ + 11.5255673, + 50.877391901 + ], + [ + 11.5268195, + 50.877741101 + ], + [ + 11.5277655, + 50.877977601 + ], + [ + 11.5286924, + 50.878174001 + ], + [ + 11.5294578, + 50.878311101 + ], + [ + 11.5299189, + 50.878390801 + ], + [ + 11.5308877, + 50.878526701 + ], + [ + 11.5314738, + 50.878598801 + ], + [ + 11.5324674, + 50.878694501 + ], + [ + 11.5330597, + 50.878736401 + ], + [ + 11.5336998, + 50.878772001 + ], + [ + 11.5344686, + 50.878802401 + ], + [ + 11.5353025, + 50.878813501 + ], + [ + 11.5354861, + 50.878813301 + ], + [ + 11.5357522, + 50.878811401 + ], + [ + 11.5361844, + 50.878805901 + ], + [ + 11.5365249, + 50.878796501 + ], + [ + 11.5374667, + 50.878760601 + ], + [ + 11.5386284, + 50.878638601 + ], + [ + 11.5399757, + 50.878437601 + ], + [ + 11.5409292, + 50.878282201 + ], + [ + 11.5455602, + 50.877422801 + ], + [ + 11.5530133, + 50.876039601 + ], + [ + 11.5549457, + 50.875681001 + ], + [ + 11.556193496, + 50.875449392 + ] + ] + } + }, + { + "identifier": "2023-002920--vi-bs.2025-03-01_00-00-00-000.f.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.89200260498307,11.456225882120052,50.890842450742255,11.46160553011143", + "point": "50.89200260498307,11.456225882120052", + "startLcPosition": "86", + "impact": { + "lower": "Bucha", + "upper": "Magdala", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Magdala - Bucha", + "startTimestamp": "2026-03-02T00:00:00+01:00", + "coordinate": { + "lat": 50.89200260498307, + "long": 11.456225882120052 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 00:00 Uhr", + "Ende: 02.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.12.26)", + "", + "A4: Erfurt -> Chemnitz, zwischen 1.3 km hinter AS Magdala und 3.4 km vor AS Bucha", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 10 m", + "", + "4 EF_2023-002920_FFM_PWC-Amselberg-Neubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.456225882, + 50.892002605 + ], + [ + 11.4597734, + 50.891247401 + ], + [ + 11.46160553, + 50.890842451 + ] + ] + } + }, + { + "identifier": "2026-014008--vi-bs.2026-04-01_18-00-00-000.devi-zus.2026-04-01_18-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.87881286645176,11.535254821508678,50.870910779035405,11.580444453630884", + "point": "50.87881286645176,11.535254821508678", + "startLcPosition": "87", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Bucha", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Bucha - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.87881286645176, + "long": 11.535254821508678 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:30 bis zum 10.04.26 05:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 2.4 km hinter AS Bucha und 1.2 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 3.31 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 von Jagdbergtunnel (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.535254822, + 50.878812866 + ], + [ + 11.5353025, + 50.878813501 + ], + [ + 11.5354861, + 50.878813301 + ], + [ + 11.5357522, + 50.878811401 + ], + [ + 11.5361844, + 50.878805901 + ], + [ + 11.5365249, + 50.878796501 + ], + [ + 11.5374667, + 50.878760601 + ], + [ + 11.5386284, + 50.878638601 + ], + [ + 11.5399757, + 50.878437601 + ], + [ + 11.5409292, + 50.878282201 + ], + [ + 11.5455602, + 50.877422801 + ], + [ + 11.5530133, + 50.876039601 + ], + [ + 11.5549457, + 50.875681001 + ], + [ + 11.5565711, + 50.875379301 + ], + [ + 11.5581073, + 50.875094201 + ], + [ + 11.5584041, + 50.875039101 + ], + [ + 11.5598231, + 50.874771901 + ], + [ + 11.5666571, + 50.873485101 + ], + [ + 11.573472, + 50.872201801 + ], + [ + 11.5784302, + 50.871283701 + ], + [ + 11.5795201, + 50.871080601 + ], + [ + 11.5802457, + 50.870946301 + ], + [ + 11.580444454, + 50.870910779 + ] + ] + } + }, + { + "identifier": "2026-014008--vi-bs.2026-04-01_18-00-00-000.devi-zus.2026-04-01_18-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.87881286645176,11.535254821508678,50.870910779035405,11.580444453630884", + "point": "50.87881286645176,11.535254821508678", + "startLcPosition": "87", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Bucha", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Bucha - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.87881286645176, + "long": 11.535254821508678 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:30 bis zum 10.04.26 05:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 2.4 km hinter AS Bucha und 1.2 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 3.31 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 von Jagdbergtunnel (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.535254822, + 50.878812866 + ], + [ + 11.5353025, + 50.878813501 + ], + [ + 11.5354861, + 50.878813301 + ], + [ + 11.5357522, + 50.878811401 + ], + [ + 11.5361844, + 50.878805901 + ], + [ + 11.5365249, + 50.878796501 + ], + [ + 11.5374667, + 50.878760601 + ], + [ + 11.5386284, + 50.878638601 + ], + [ + 11.5399757, + 50.878437601 + ], + [ + 11.5409292, + 50.878282201 + ], + [ + 11.5455602, + 50.877422801 + ], + [ + 11.5530133, + 50.876039601 + ], + [ + 11.5549457, + 50.875681001 + ], + [ + 11.5565711, + 50.875379301 + ], + [ + 11.5581073, + 50.875094201 + ], + [ + 11.5584041, + 50.875039101 + ], + [ + 11.5598231, + 50.874771901 + ], + [ + 11.5666571, + 50.873485101 + ], + [ + 11.573472, + 50.872201801 + ], + [ + 11.5784302, + 50.871283701 + ], + [ + 11.5795201, + 50.871080601 + ], + [ + 11.5802457, + 50.870946301 + ], + [ + 11.580444454, + 50.870910779 + ] + ] + } + }, + { + "identifier": "2026-014207--vi-bs.2026-04-01_18-00-00-000.devi-bs.2026-04-01_18-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.87881286645176,11.535254821508678,50.870910779035405,11.580444453630884", + "point": "50.87881286645176,11.535254821508678", + "startLcPosition": "87", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Bucha", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Bucha - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.87881286645176, + "long": 11.535254821508678 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 2.4 km hinter AS Bucha und 1.2 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 3.31 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Y A4 von Bucha (AS) nach Jena-G\u00f6schwitz (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.535254822, + 50.878812866 + ], + [ + 11.5353025, + 50.878813501 + ], + [ + 11.5354861, + 50.878813301 + ], + [ + 11.5357522, + 50.878811401 + ], + [ + 11.5361844, + 50.878805901 + ], + [ + 11.5365249, + 50.878796501 + ], + [ + 11.5374667, + 50.878760601 + ], + [ + 11.5386284, + 50.878638601 + ], + [ + 11.5399757, + 50.878437601 + ], + [ + 11.5409292, + 50.878282201 + ], + [ + 11.5455602, + 50.877422801 + ], + [ + 11.5530133, + 50.876039601 + ], + [ + 11.5549457, + 50.875681001 + ], + [ + 11.5565711, + 50.875379301 + ], + [ + 11.5581073, + 50.875094201 + ], + [ + 11.5584041, + 50.875039101 + ], + [ + 11.5598231, + 50.874771901 + ], + [ + 11.5666571, + 50.873485101 + ], + [ + 11.573472, + 50.872201801 + ], + [ + 11.5784302, + 50.871283701 + ], + [ + 11.5795201, + 50.871080601 + ], + [ + 11.5802457, + 50.870946301 + ], + [ + 11.580444454, + 50.870910779 + ] + ] + } + }, + { + "identifier": "2026-014207--vi-bs.2026-04-01_18-00-00-000.devi-bs.2026-04-01_18-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.87881286645176,11.535254821508678,50.870910779035405,11.580444453630884", + "point": "50.87881286645176,11.535254821508678", + "startLcPosition": "87", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Bucha", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Bucha - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.87881286645176, + "long": 11.535254821508678 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 2.4 km hinter AS Bucha und 1.2 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 3.31 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Y A4 von Bucha (AS) nach Jena-G\u00f6schwitz (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.535254822, + 50.878812866 + ], + [ + 11.5353025, + 50.878813501 + ], + [ + 11.5354861, + 50.878813301 + ], + [ + 11.5357522, + 50.878811401 + ], + [ + 11.5361844, + 50.878805901 + ], + [ + 11.5365249, + 50.878796501 + ], + [ + 11.5374667, + 50.878760601 + ], + [ + 11.5386284, + 50.878638601 + ], + [ + 11.5399757, + 50.878437601 + ], + [ + 11.5409292, + 50.878282201 + ], + [ + 11.5455602, + 50.877422801 + ], + [ + 11.5530133, + 50.876039601 + ], + [ + 11.5549457, + 50.875681001 + ], + [ + 11.5565711, + 50.875379301 + ], + [ + 11.5581073, + 50.875094201 + ], + [ + 11.5584041, + 50.875039101 + ], + [ + 11.5598231, + 50.874771901 + ], + [ + 11.5666571, + 50.873485101 + ], + [ + 11.573472, + 50.872201801 + ], + [ + 11.5784302, + 50.871283701 + ], + [ + 11.5795201, + 50.871080601 + ], + [ + 11.5802457, + 50.870946301 + ], + [ + 11.580444454, + 50.870910779 + ] + ] + } + }, + { + "identifier": "2023-003062--vi-bs.2024-10-01_00-00-00-000_011.f.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.89390913893079,11.448940071854969,50.90140997794462,11.431729398481554", + "point": "50.89390913893079,11.448940071854969", + "startLcPosition": "87", + "impact": { + "lower": "Apolda", + "upper": "Bucha", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Bucha - Apolda", + "startTimestamp": "2026-03-02T00:00:00+01:00", + "coordinate": { + "lat": 50.89390913893079, + "long": 11.448940071854969 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 00:00 Uhr", + "Ende: 02.06.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.06.27)", + "", + "A4: Chemnitz -> Erfurt, zwischen 4.3 km hinter AS Bucha und 4.5 km vor AS Apolda", + "", + "L\u00e4nge: 1.48 km | Maximale Durchfahrtsbreite: 8.75 m", + "", + "4 EF_2023-003062_FFM_PWC-Pfingsttal-Neubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.448940072, + 50.893909139 + ], + [ + 11.4486921, + 50.893981501 + ], + [ + 11.4472617, + 50.894426101 + ], + [ + 11.4462408, + 50.894775801 + ], + [ + 11.4455867, + 50.895009801 + ], + [ + 11.4449403, + 50.895248001 + ], + [ + 11.443773, + 50.895715901 + ], + [ + 11.4434914, + 50.895829701 + ], + [ + 11.4431251, + 50.895978301 + ], + [ + 11.4427826, + 50.896133001 + ], + [ + 11.4422768, + 50.896353401 + ], + [ + 11.4422199, + 50.896379701 + ], + [ + 11.4417952, + 50.896571401 + ], + [ + 11.4413734, + 50.896773201 + ], + [ + 11.4410702, + 50.896914101 + ], + [ + 11.4405684, + 50.897154601 + ], + [ + 11.4394619, + 50.897685601 + ], + [ + 11.4386647, + 50.898063401 + ], + [ + 11.4378589, + 50.898458301 + ], + [ + 11.4374331, + 50.898660701 + ], + [ + 11.4350741, + 50.899796201 + ], + [ + 11.4347289, + 50.899967001 + ], + [ + 11.4335442, + 50.900535301 + ], + [ + 11.4323601, + 50.901105801 + ], + [ + 11.431729398, + 50.901409978 + ] + ] + } + }, + { + "identifier": "2026-013325--vi-bs.2026-04-07_00-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.87874563456207,11.533225717528886,50.870515238326036,11.582750508515414", + "point": "50.87874563456207,11.533225717528886", + "startLcPosition": "87", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Bucha", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Bucha - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.87874563456207, + "long": 11.533225717528886 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 00:00 bis 05:00 Uhr.", + "09.04.26 18:30 bis zum 10.04.26 05:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 2.2 km hinter AS Bucha und 1.1 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 3.62 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 von Jagdbergtunnel (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.533225718, + 50.878745635 + ], + [ + 11.5336998, + 50.878772001 + ], + [ + 11.5344686, + 50.878802401 + ], + [ + 11.5353025, + 50.878813501 + ], + [ + 11.5354861, + 50.878813301 + ], + [ + 11.5357522, + 50.878811401 + ], + [ + 11.5361844, + 50.878805901 + ], + [ + 11.5365249, + 50.878796501 + ], + [ + 11.5374667, + 50.878760601 + ], + [ + 11.5386284, + 50.878638601 + ], + [ + 11.5399757, + 50.878437601 + ], + [ + 11.5409292, + 50.878282201 + ], + [ + 11.5455602, + 50.877422801 + ], + [ + 11.5530133, + 50.876039601 + ], + [ + 11.5549457, + 50.875681001 + ], + [ + 11.5565711, + 50.875379301 + ], + [ + 11.5581073, + 50.875094201 + ], + [ + 11.5584041, + 50.875039101 + ], + [ + 11.5598231, + 50.874771901 + ], + [ + 11.5666571, + 50.873485101 + ], + [ + 11.573472, + 50.872201801 + ], + [ + 11.5784302, + 50.871283701 + ], + [ + 11.5795201, + 50.871080601 + ], + [ + 11.5802457, + 50.870946301 + ], + [ + 11.5823494, + 50.870570301 + ], + [ + 11.582750509, + 50.870515238 + ] + ] + } + }, + { + "identifier": "2026-012396--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.87173109881154,11.593675874376805,50.88002007638823,11.610332847226601", + "point": "50.87173109881154,11.593675874376805", + "startLcPosition": "88", + "impact": { + "lower": "Lobdeburg", + "upper": "Jagdbergtunnel", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Jagdbergtunnel - Lobdeburg", + "coordinate": { + "lat": 50.87173109881154, + "long": 11.593675874376805 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 19:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 3.6 km hinter Jagdbergtunnel und 0.1 km vor Lobdeburg", + "", + "L\u00e4nge: 1.5 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 von Jagdbergtunnel (Tunnel) nach Lobdeburg (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.593675874, + 50.871731099 + ], + [ + 11.5938441, + 50.871799801 + ], + [ + 11.5940765, + 50.871906601 + ], + [ + 11.5942921, + 50.872005501 + ], + [ + 11.5946934, + 50.872204701 + ], + [ + 11.595046, + 50.872388601 + ], + [ + 11.5951329, + 50.872425501 + ], + [ + 11.5963706, + 50.873096101 + ], + [ + 11.5976304, + 50.873783401 + ], + [ + 11.5980793, + 50.874040501 + ], + [ + 11.600079, + 50.875140601 + ], + [ + 11.6041147, + 50.877369201 + ], + [ + 11.6042786, + 50.877459701 + ], + [ + 11.6044502, + 50.877554501 + ], + [ + 11.60456, + 50.877615401 + ], + [ + 11.6049642, + 50.877848901 + ], + [ + 11.6061188, + 50.878466901 + ], + [ + 11.6066883, + 50.878759601 + ], + [ + 11.6073852, + 50.879093701 + ], + [ + 11.607925, + 50.879317101 + ], + [ + 11.6079511, + 50.879327901 + ], + [ + 11.6086159, + 50.879581301 + ], + [ + 11.609276, + 50.879782001 + ], + [ + 11.6097987, + 50.879911701 + ], + [ + 11.610332847, + 50.880020076 + ] + ] + } + }, + { + "identifier": "2026-012396--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.87173109881154,11.593675874376805,50.88002007638823,11.610332847226601", + "point": "50.87173109881154,11.593675874376805", + "startLcPosition": "88", + "impact": { + "lower": "Lobdeburg", + "upper": "Jagdbergtunnel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Jagdbergtunnel - Lobdeburg", + "coordinate": { + "lat": 50.87173109881154, + "long": 11.593675874376805 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 3.6 km hinter Jagdbergtunnel und 0.1 km vor Lobdeburg", + "", + "L\u00e4nge: 1.5 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 von Jagdbergtunnel (Tunnel) nach Lobdeburg (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.593675874, + 50.871731099 + ], + [ + 11.5938441, + 50.871799801 + ], + [ + 11.5940765, + 50.871906601 + ], + [ + 11.5942921, + 50.872005501 + ], + [ + 11.5946934, + 50.872204701 + ], + [ + 11.595046, + 50.872388601 + ], + [ + 11.5951329, + 50.872425501 + ], + [ + 11.5963706, + 50.873096101 + ], + [ + 11.5976304, + 50.873783401 + ], + [ + 11.5980793, + 50.874040501 + ], + [ + 11.600079, + 50.875140601 + ], + [ + 11.6041147, + 50.877369201 + ], + [ + 11.6042786, + 50.877459701 + ], + [ + 11.6044502, + 50.877554501 + ], + [ + 11.60456, + 50.877615401 + ], + [ + 11.6049642, + 50.877848901 + ], + [ + 11.6061188, + 50.878466901 + ], + [ + 11.6066883, + 50.878759601 + ], + [ + 11.6073852, + 50.879093701 + ], + [ + 11.607925, + 50.879317101 + ], + [ + 11.6079511, + 50.879327901 + ], + [ + 11.6086159, + 50.879581301 + ], + [ + 11.609276, + 50.879782001 + ], + [ + 11.6097987, + 50.879911701 + ], + [ + 11.610332847, + 50.880020076 + ] + ] + } + }, + { + "identifier": "2026-014008--vi-bs.2026-04-01_18-00-00-000.devi-zus.2026-04-01_18-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.87121189870782,11.58055318707525,50.878810420954345,11.539041920503095", + "point": "50.87121189870782,11.58055318707525", + "startLcPosition": "89", + "impact": { + "lower": "Bucha", + "upper": "Jena-G\u00f6schwitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Jena-G\u00f6schwitz - Bucha", + "coordinate": { + "lat": 50.87121189870782, + "long": 11.58055318707525 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:30 bis zum 10.04.26 05:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 1.2 km hinter AS Jena-G\u00f6schwitz und 2.6 km vor AS Bucha", + "", + "L\u00e4nge: 3.04 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 von Jagdbergtunnel (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.580553187, + 50.871211899 + ], + [ + 11.5804218, + 50.871237001 + ], + [ + 11.580273, + 50.871266901 + ], + [ + 11.5796705, + 50.871380101 + ], + [ + 11.578821, + 50.871541601 + ], + [ + 11.5785696, + 50.871591801 + ], + [ + 11.5736005, + 50.872502701 + ], + [ + 11.5667842, + 50.873764801 + ], + [ + 11.5599443, + 50.875031201 + ], + [ + 11.5586196, + 50.875276501 + ], + [ + 11.5583076, + 50.875330601 + ], + [ + 11.5559288, + 50.875767401 + ], + [ + 11.5543886, + 50.876050201 + ], + [ + 11.5531164, + 50.876283801 + ], + [ + 11.5456782, + 50.877648701 + ], + [ + 11.5419544, + 50.878332001 + ], + [ + 11.5410633, + 50.878495401 + ], + [ + 11.5400824, + 50.878655201 + ], + [ + 11.539041921, + 50.878810421 + ] + ] + } + }, + { + "identifier": "2026-014207--vi-bs.2026-04-01_18-00-00-000.devi-bs.2026-04-01_18-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.87121189870782,11.58055318707525,50.877660514656476,11.525820734728455", + "point": "50.87121189870782,11.58055318707525", + "startLcPosition": "89", + "impact": { + "lower": "Bucha", + "upper": "Jena-G\u00f6schwitz", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Jena-G\u00f6schwitz - Bucha", + "coordinate": { + "lat": 50.87121189870782, + "long": 11.58055318707525 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 1.2 km hinter AS Jena-G\u00f6schwitz und 1.7 km vor AS Bucha", + "", + "L\u00e4nge: 3.99 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Y A4 von Bucha (AS) nach Jena-G\u00f6schwitz (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.580553187, + 50.871211899 + ], + [ + 11.5804218, + 50.871237001 + ], + [ + 11.580273, + 50.871266901 + ], + [ + 11.5796705, + 50.871380101 + ], + [ + 11.578821, + 50.871541601 + ], + [ + 11.5785696, + 50.871591801 + ], + [ + 11.5736005, + 50.872502701 + ], + [ + 11.5667842, + 50.873764801 + ], + [ + 11.5599443, + 50.875031201 + ], + [ + 11.5586196, + 50.875276501 + ], + [ + 11.5583076, + 50.875330601 + ], + [ + 11.5559288, + 50.875767401 + ], + [ + 11.5543886, + 50.876050201 + ], + [ + 11.5531164, + 50.876283801 + ], + [ + 11.5456782, + 50.877648701 + ], + [ + 11.5419544, + 50.878332001 + ], + [ + 11.5410633, + 50.878495401 + ], + [ + 11.5400824, + 50.878655201 + ], + [ + 11.5386566, + 50.878867901 + ], + [ + 11.5374968, + 50.878989701 + ], + [ + 11.5365438, + 50.879036701 + ], + [ + 11.5357533, + 50.879045401 + ], + [ + 11.5351189, + 50.879045401 + ], + [ + 11.534473, + 50.879036501 + ], + [ + 11.5338553, + 50.879008701 + ], + [ + 11.5332674, + 50.878977201 + ], + [ + 11.5324377, + 50.878912501 + ], + [ + 11.531427, + 50.878810101 + ], + [ + 11.5303202, + 50.878662701 + ], + [ + 11.5294316, + 50.878516601 + ], + [ + 11.5286722, + 50.878372901 + ], + [ + 11.527708, + 50.878164801 + ], + [ + 11.5267614, + 50.877929801 + ], + [ + 11.525820735, + 50.877660515 + ] + ] + } + }, + { + "identifier": "2026-014207--vi-bs.2026-04-01_18-00-00-000.devi-bs.2026-04-01_18-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.87121189870782,11.58055318707525,50.877660514656476,11.525820734728455", + "point": "50.87121189870782,11.58055318707525", + "startLcPosition": "89", + "impact": { + "lower": "Bucha", + "upper": "Jena-G\u00f6schwitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Jena-G\u00f6schwitz - Bucha", + "coordinate": { + "lat": 50.87121189870782, + "long": 11.58055318707525 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 1.2 km hinter AS Jena-G\u00f6schwitz und 1.7 km vor AS Bucha", + "", + "L\u00e4nge: 3.99 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Y A4 von Bucha (AS) nach Jena-G\u00f6schwitz (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.580553187, + 50.871211899 + ], + [ + 11.5804218, + 50.871237001 + ], + [ + 11.580273, + 50.871266901 + ], + [ + 11.5796705, + 50.871380101 + ], + [ + 11.578821, + 50.871541601 + ], + [ + 11.5785696, + 50.871591801 + ], + [ + 11.5736005, + 50.872502701 + ], + [ + 11.5667842, + 50.873764801 + ], + [ + 11.5599443, + 50.875031201 + ], + [ + 11.5586196, + 50.875276501 + ], + [ + 11.5583076, + 50.875330601 + ], + [ + 11.5559288, + 50.875767401 + ], + [ + 11.5543886, + 50.876050201 + ], + [ + 11.5531164, + 50.876283801 + ], + [ + 11.5456782, + 50.877648701 + ], + [ + 11.5419544, + 50.878332001 + ], + [ + 11.5410633, + 50.878495401 + ], + [ + 11.5400824, + 50.878655201 + ], + [ + 11.5386566, + 50.878867901 + ], + [ + 11.5374968, + 50.878989701 + ], + [ + 11.5365438, + 50.879036701 + ], + [ + 11.5357533, + 50.879045401 + ], + [ + 11.5351189, + 50.879045401 + ], + [ + 11.534473, + 50.879036501 + ], + [ + 11.5338553, + 50.879008701 + ], + [ + 11.5332674, + 50.878977201 + ], + [ + 11.5324377, + 50.878912501 + ], + [ + 11.531427, + 50.878810101 + ], + [ + 11.5303202, + 50.878662701 + ], + [ + 11.5294316, + 50.878516601 + ], + [ + 11.5286722, + 50.878372901 + ], + [ + 11.527708, + 50.878164801 + ], + [ + 11.5267614, + 50.877929801 + ], + [ + 11.525820735, + 50.877660515 + ] + ] + } + }, + { + "identifier": "2026-014793--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_003.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.876556797624666,11.602158685393004,50.87594818939935,11.554944195364738", + "point": "50.876556797624666,11.602158685393004", + "startLcPosition": "90", + "impact": { + "lower": "Jagdbergtunnel", + "upper": "Lobdeburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Lobdeburg - Jagdbergtunnel", + "coordinate": { + "lat": 50.876556797624666, + "long": 11.602158685393004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 02:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 0.8 km hinter Lobdeburg und 0.7 km vor Jagdbergtunnel", + "", + "L\u00e4nge: 3.64 km | Maximale Durchfahrtsbreite: 7 m", + "", + "BAB 4-W VMT km 174,860 - 174,710 (Jena-G\u00f6schwitz - Bucha) Tunnel Jagdberg FR beide - Wartung Messstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.602158685, + 50.876556798 + ], + [ + 11.6001318, + 50.875436701 + ], + [ + 11.5981307, + 50.874333001 + ], + [ + 11.5965647, + 50.873460501 + ], + [ + 11.5960456, + 50.873182301 + ], + [ + 11.5950419, + 50.872630001 + ], + [ + 11.5947014, + 50.872452301 + ], + [ + 11.5943673, + 50.872281301 + ], + [ + 11.5939166, + 50.872075701 + ], + [ + 11.5935316, + 50.871909201 + ], + [ + 11.5928712, + 50.871653501 + ], + [ + 11.5923043, + 50.871458701 + ], + [ + 11.5918, + 50.871303801 + ], + [ + 11.5914249, + 50.871198301 + ], + [ + 11.5910207, + 50.871092001 + ], + [ + 11.5905953, + 50.870993601 + ], + [ + 11.5902328, + 50.870918001 + ], + [ + 11.5897605, + 50.870829301 + ], + [ + 11.5892365, + 50.870745301 + ], + [ + 11.5883608, + 50.870633701 + ], + [ + 11.5876109, + 50.870567501 + ], + [ + 11.5868896, + 50.870532601 + ], + [ + 11.5862243, + 50.870522301 + ], + [ + 11.5855853, + 50.870532701 + ], + [ + 11.5850662, + 50.870553801 + ], + [ + 11.5845293, + 50.870592001 + ], + [ + 11.5838842, + 50.870652401 + ], + [ + 11.5832802, + 50.870729101 + ], + [ + 11.582606, + 50.870831401 + ], + [ + 11.5812875, + 50.871071601 + ], + [ + 11.5804218, + 50.871237001 + ], + [ + 11.580273, + 50.871266901 + ], + [ + 11.5796705, + 50.871380101 + ], + [ + 11.578821, + 50.871541601 + ], + [ + 11.5785696, + 50.871591801 + ], + [ + 11.5736005, + 50.872502701 + ], + [ + 11.5667842, + 50.873764801 + ], + [ + 11.5599443, + 50.875031201 + ], + [ + 11.5586196, + 50.875276501 + ], + [ + 11.5583076, + 50.875330601 + ], + [ + 11.5559288, + 50.875767401 + ], + [ + 11.554944195, + 50.875948189 + ] + ] + } + }, + { + "identifier": "2026-014793--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_003.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.876556797624666,11.602158685393004,50.87594818939935,11.554944195364738", + "point": "50.876556797624666,11.602158685393004", + "startLcPosition": "90", + "impact": { + "lower": "Jagdbergtunnel", + "upper": "Lobdeburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Lobdeburg - Jagdbergtunnel", + "coordinate": { + "lat": 50.876556797624666, + "long": 11.602158685393004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 02:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 0.8 km hinter Lobdeburg und 0.7 km vor Jagdbergtunnel", + "", + "L\u00e4nge: 3.64 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "BAB 4-W VMT km 174,860 - 174,710 (Jena-G\u00f6schwitz - Bucha) Tunnel Jagdberg FR beide - Wartung Messstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.602158685, + 50.876556798 + ], + [ + 11.6001318, + 50.875436701 + ], + [ + 11.5981307, + 50.874333001 + ], + [ + 11.5965647, + 50.873460501 + ], + [ + 11.5960456, + 50.873182301 + ], + [ + 11.5950419, + 50.872630001 + ], + [ + 11.5947014, + 50.872452301 + ], + [ + 11.5943673, + 50.872281301 + ], + [ + 11.5939166, + 50.872075701 + ], + [ + 11.5935316, + 50.871909201 + ], + [ + 11.5928712, + 50.871653501 + ], + [ + 11.5923043, + 50.871458701 + ], + [ + 11.5918, + 50.871303801 + ], + [ + 11.5914249, + 50.871198301 + ], + [ + 11.5910207, + 50.871092001 + ], + [ + 11.5905953, + 50.870993601 + ], + [ + 11.5902328, + 50.870918001 + ], + [ + 11.5897605, + 50.870829301 + ], + [ + 11.5892365, + 50.870745301 + ], + [ + 11.5883608, + 50.870633701 + ], + [ + 11.5876109, + 50.870567501 + ], + [ + 11.5868896, + 50.870532601 + ], + [ + 11.5862243, + 50.870522301 + ], + [ + 11.5855853, + 50.870532701 + ], + [ + 11.5850662, + 50.870553801 + ], + [ + 11.5845293, + 50.870592001 + ], + [ + 11.5838842, + 50.870652401 + ], + [ + 11.5832802, + 50.870729101 + ], + [ + 11.582606, + 50.870831401 + ], + [ + 11.5812875, + 50.871071601 + ], + [ + 11.5804218, + 50.871237001 + ], + [ + 11.580273, + 50.871266901 + ], + [ + 11.5796705, + 50.871380101 + ], + [ + 11.578821, + 50.871541601 + ], + [ + 11.5785696, + 50.871591801 + ], + [ + 11.5736005, + 50.872502701 + ], + [ + 11.5667842, + 50.873764801 + ], + [ + 11.5599443, + 50.875031201 + ], + [ + 11.5586196, + 50.875276501 + ], + [ + 11.5583076, + 50.875330601 + ], + [ + 11.5559288, + 50.875767401 + ], + [ + 11.554944195, + 50.875948189 + ] + ] + } + }, + { + "identifier": "2026-014793--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_003.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.876556797624666,11.602158685393004,50.87594818939935,11.554944195364738", + "point": "50.876556797624666,11.602158685393004", + "startLcPosition": "90", + "impact": { + "lower": "Jagdbergtunnel", + "upper": "Lobdeburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Lobdeburg - Jagdbergtunnel", + "coordinate": { + "lat": 50.876556797624666, + "long": 11.602158685393004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 02:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 0.8 km hinter Lobdeburg und 0.7 km vor Jagdbergtunnel", + "", + "L\u00e4nge: 3.64 km | Maximale Durchfahrtsbreite: 7 m", + "", + "BAB 4-W VMT km 174,860 - 174,710 (Jena-G\u00f6schwitz - Bucha) Tunnel Jagdberg FR beide - Wartung Messstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.602158685, + 50.876556798 + ], + [ + 11.6001318, + 50.875436701 + ], + [ + 11.5981307, + 50.874333001 + ], + [ + 11.5965647, + 50.873460501 + ], + [ + 11.5960456, + 50.873182301 + ], + [ + 11.5950419, + 50.872630001 + ], + [ + 11.5947014, + 50.872452301 + ], + [ + 11.5943673, + 50.872281301 + ], + [ + 11.5939166, + 50.872075701 + ], + [ + 11.5935316, + 50.871909201 + ], + [ + 11.5928712, + 50.871653501 + ], + [ + 11.5923043, + 50.871458701 + ], + [ + 11.5918, + 50.871303801 + ], + [ + 11.5914249, + 50.871198301 + ], + [ + 11.5910207, + 50.871092001 + ], + [ + 11.5905953, + 50.870993601 + ], + [ + 11.5902328, + 50.870918001 + ], + [ + 11.5897605, + 50.870829301 + ], + [ + 11.5892365, + 50.870745301 + ], + [ + 11.5883608, + 50.870633701 + ], + [ + 11.5876109, + 50.870567501 + ], + [ + 11.5868896, + 50.870532601 + ], + [ + 11.5862243, + 50.870522301 + ], + [ + 11.5855853, + 50.870532701 + ], + [ + 11.5850662, + 50.870553801 + ], + [ + 11.5845293, + 50.870592001 + ], + [ + 11.5838842, + 50.870652401 + ], + [ + 11.5832802, + 50.870729101 + ], + [ + 11.582606, + 50.870831401 + ], + [ + 11.5812875, + 50.871071601 + ], + [ + 11.5804218, + 50.871237001 + ], + [ + 11.580273, + 50.871266901 + ], + [ + 11.5796705, + 50.871380101 + ], + [ + 11.578821, + 50.871541601 + ], + [ + 11.5785696, + 50.871591801 + ], + [ + 11.5736005, + 50.872502701 + ], + [ + 11.5667842, + 50.873764801 + ], + [ + 11.5599443, + 50.875031201 + ], + [ + 11.5586196, + 50.875276501 + ], + [ + 11.5583076, + 50.875330601 + ], + [ + 11.5559288, + 50.875767401 + ], + [ + 11.554944195, + 50.875948189 + ] + ] + } + }, + { + "identifier": "2023-002727--vi-bs.2026-04-07_00-00-00-000.devi-zus.2025-03-01_00-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.87795499664222,11.630929454489678,50.869534215376234,11.781256442909136", + "point": "50.87795499664222,11.630929454489678", + "startLcPosition": "91", + "impact": { + "lower": "Teufelstalschenke", + "upper": "Jena-Zentrum", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Jena-Zentrum - Teufelstalschenke", + "startTimestamp": "2026-04-07T00:00:00+02:00", + "coordinate": { + "lat": 50.87795499664222, + "long": 11.630929454489678 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 00:00 Uhr", + "Ende: 16.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.28)", + "", + "A4: Erfurt -> Chemnitz, zwischen 0.8 km hinter AS Jena-Zentrum und 2.4 km vor Teufelstalschenke", + "", + "L\u00e4nge: 11.02 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "4 HDF_2023-002727_bRF_ km 160,5-170,4_Fahrbahnerneuerung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.630929454, + 50.877954997 + ], + [ + 11.631852, + 50.877811201 + ], + [ + 11.6349861, + 50.877343701 + ], + [ + 11.6368975, + 50.877049101 + ], + [ + 11.6379414, + 50.876889701 + ], + [ + 11.6383441, + 50.876831601 + ], + [ + 11.6387638, + 50.876764601 + ], + [ + 11.6401993, + 50.876553401 + ], + [ + 11.6416784, + 50.876378101 + ], + [ + 11.642906, + 50.876251101 + ], + [ + 11.6440078, + 50.876149001 + ], + [ + 11.6453928, + 50.876045801 + ], + [ + 11.6466724, + 50.875971701 + ], + [ + 11.6479057, + 50.875922101 + ], + [ + 11.6491442, + 50.875887201 + ], + [ + 11.6507715, + 50.875881001 + ], + [ + 11.6523526, + 50.875896401 + ], + [ + 11.6536636, + 50.875937801 + ], + [ + 11.6550688, + 50.876017501 + ], + [ + 11.6576015, + 50.876207401 + ], + [ + 11.6579872, + 50.876242301 + ], + [ + 11.6593254, + 50.876370801 + ], + [ + 11.6595919, + 50.876396601 + ], + [ + 11.6615301, + 50.876632201 + ], + [ + 11.6665478, + 50.877389901 + ], + [ + 11.6683726, + 50.877665501 + ], + [ + 11.6699339, + 50.877838901 + ], + [ + 11.6706517, + 50.877882901 + ], + [ + 11.6710582, + 50.877900001 + ], + [ + 11.6721323, + 50.877927201 + ], + [ + 11.6732294, + 50.877908001 + ], + [ + 11.6738312, + 50.877881501 + ], + [ + 11.6749796, + 50.877789301 + ], + [ + 11.6768578, + 50.877629601 + ], + [ + 11.6810685, + 50.877275201 + ], + [ + 11.6812045, + 50.877263801 + ], + [ + 11.688214, + 50.876676201 + ], + [ + 11.6900825, + 50.876519601 + ], + [ + 11.6950343, + 50.876098201 + ], + [ + 11.6954723, + 50.876060901 + ], + [ + 11.6960513, + 50.876007701 + ], + [ + 11.696462, + 50.875975301 + ], + [ + 11.6993994, + 50.875732001 + ], + [ + 11.7019996, + 50.875512701 + ], + [ + 11.7027678, + 50.875449701 + ], + [ + 11.7049626, + 50.875263501 + ], + [ + 11.7054278, + 50.875221901 + ], + [ + 11.7083716, + 50.874970401 + ], + [ + 11.7088979, + 50.874925801 + ], + [ + 11.7092177, + 50.874898701 + ], + [ + 11.7126338, + 50.874610701 + ], + [ + 11.7129661, + 50.874582701 + ], + [ + 11.7129963, + 50.874580201 + ], + [ + 11.71337, + 50.874553701 + ], + [ + 11.7137299, + 50.874523001 + ], + [ + 11.7156893, + 50.874350701 + ], + [ + 11.7161611, + 50.874311401 + ], + [ + 11.7232529, + 50.873718801 + ], + [ + 11.7245944, + 50.873584101 + ], + [ + 11.725446, + 50.873486101 + ], + [ + 11.7261145, + 50.873376901 + ], + [ + 11.7273144, + 50.873147801 + ], + [ + 11.7286414, + 50.872817901 + ], + [ + 11.7293652, + 50.872599201 + ], + [ + 11.7294674, + 50.872567201 + ], + [ + 11.7299883, + 50.872403901 + ], + [ + 11.7307809, + 50.872117801 + ], + [ + 11.7316216, + 50.871767701 + ], + [ + 11.7328776, + 50.871151501 + ], + [ + 11.7341008, + 50.870497301 + ], + [ + 11.735784, + 50.869643201 + ], + [ + 11.7374058, + 50.868819301 + ], + [ + 11.7394433, + 50.867775801 + ], + [ + 11.7400009, + 50.867499401 + ], + [ + 11.7405987, + 50.867214201 + ], + [ + 11.741173, + 50.866964301 + ], + [ + 11.7417148, + 50.866737901 + ], + [ + 11.7422406, + 50.866534501 + ], + [ + 11.7428723, + 50.866307201 + ], + [ + 11.7435157, + 50.866091001 + ], + [ + 11.7441601, + 50.865896601 + ], + [ + 11.7447215, + 50.865735001 + ], + [ + 11.7452752, + 50.865593501 + ], + [ + 11.7459866, + 50.865423801 + ], + [ + 11.7467185, + 50.865270401 + ], + [ + 11.7474071, + 50.865141301 + ], + [ + 11.7480899, + 50.865027401 + ], + [ + 11.7486679, + 50.864940901 + ], + [ + 11.7493189, + 50.864858801 + ], + [ + 11.7500346, + 50.864786001 + ], + [ + 11.7506503, + 50.864733101 + ], + [ + 11.7510941, + 50.864704301 + ], + [ + 11.7516271, + 50.864674401 + ], + [ + 11.7521903, + 50.864651901 + ], + [ + 11.7529566, + 50.864639701 + ], + [ + 11.753924, + 50.864646801 + ], + [ + 11.754563, + 50.864667201 + ], + [ + 11.7552761, + 50.864705501 + ], + [ + 11.7559194, + 50.864753101 + ], + [ + 11.7566493, + 50.864820501 + ], + [ + 11.7572903, + 50.864892301 + ], + [ + 11.7579465, + 50.864980301 + ], + [ + 11.7590447, + 50.865148401 + ], + [ + 11.7602868, + 50.865370801 + ], + [ + 11.7641203, + 50.866113901 + ], + [ + 11.7645128, + 50.866192801 + ], + [ + 11.7671301, + 50.866710601 + ], + [ + 11.7702677, + 50.867322501 + ], + [ + 11.7729537, + 50.867847601 + ], + [ + 11.7735051, + 50.867956501 + ], + [ + 11.774459, + 50.868144901 + ], + [ + 11.7746904, + 50.868190601 + ], + [ + 11.7750472, + 50.868259901 + ], + [ + 11.7757854, + 50.868408601 + ], + [ + 11.7766728, + 50.868585301 + ], + [ + 11.7771883, + 50.868682801 + ], + [ + 11.7778455, + 50.868816001 + ], + [ + 11.7786306, + 50.868970201 + ], + [ + 11.7793995, + 50.869128001 + ], + [ + 11.77986, + 50.869223901 + ], + [ + 11.7804081, + 50.869339701 + ], + [ + 11.7809277, + 50.869456301 + ], + [ + 11.781256443, + 50.869534215 + ] + ] + } + }, + { + "identifier": "2026-012396--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.8797514855897,11.620054366823005,50.8777413183301,11.604289183953187", + "point": "50.8797514855897,11.620054366823005", + "startLcPosition": "92", + "impact": { + "lower": "Jena-G\u00f6schwitz", + "upper": "Rodablick", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Rodablick - Jena-G\u00f6schwitz", + "coordinate": { + "lat": 50.8797514855897, + "long": 11.620054366823005 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:00 bis zum 15.04.26 06:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 6.5 km hinter Rodablick und 0.7 km vor AS Jena-G\u00f6schwitz", + "", + "L\u00e4nge: 1.2 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 von Jagdbergtunnel (Tunnel) nach Lobdeburg (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.620054367, + 50.879751486 + ], + [ + 11.6180715, + 50.880058401 + ], + [ + 11.616994, + 50.880204701 + ], + [ + 11.6164175, + 50.880281601 + ], + [ + 11.6162406, + 50.880303501 + ], + [ + 11.6152091, + 50.880414301 + ], + [ + 11.6147699, + 50.880445901 + ], + [ + 11.6143388, + 50.880469001 + ], + [ + 11.6138672, + 50.880488101 + ], + [ + 11.6132904, + 50.880497301 + ], + [ + 11.6126473, + 50.880481001 + ], + [ + 11.6123232, + 50.880467701 + ], + [ + 11.6117838, + 50.880421601 + ], + [ + 11.6116751, + 50.880410801 + ], + [ + 11.6103435, + 50.880222601 + ], + [ + 11.6097121, + 50.880091601 + ], + [ + 11.6091738, + 50.879959301 + ], + [ + 11.6078017, + 50.879514201 + ], + [ + 11.6070635, + 50.879190601 + ], + [ + 11.6064725, + 50.878940501 + ], + [ + 11.6059027, + 50.878657101 + ], + [ + 11.6047704, + 50.878026301 + ], + [ + 11.6043357, + 50.877768601 + ], + [ + 11.604289184, + 50.877741318 + ] + ] + } + }, + { + "identifier": "2026-016503--vi-bs.2026-04-15_13-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.87704749244587,11.637877113756318,50.878300123580175,11.629614649507705", + "point": "50.87704749244587,11.637877113756318", + "startLcPosition": "92", + "impact": { + "lower": "Jena-Zentrum", + "upper": "Rodablick", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Rodablick - Jena-Zentrum", + "coordinate": { + "lat": 50.87704749244587, + "long": 11.637877113756318 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 13:00 bis 18:00 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 5.2 km hinter Rodablick und 0.7 km vor AS Jena-Zentrum", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A4 von Jena-Zentrum (AS) nach Wilsdruff (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.637877114, + 50.877047492 + ], + [ + 11.6366689, + 50.877232501 + ], + [ + 11.6339953, + 50.877636401 + ], + [ + 11.6323827, + 50.877879401 + ], + [ + 11.6320788, + 50.877926301 + ], + [ + 11.6298151, + 50.878269601 + ], + [ + 11.62961465, + 50.878300124 + ] + ] + } + }, + { + "identifier": "2025-063382--vi-bs.2026-01-07_08-00-00-000.devi-zus.2026-01-07_08-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.87198227317199,11.788860178024654,50.87829954434967,11.829780162406184", + "point": "50.87198227317199,11.788860178024654", + "startLcPosition": "93", + "impact": { + "lower": "Hermsdorfer Kreuz", + "upper": "Stadtroda", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Stadtroda - Hermsdorfer Kreuz", + "coordinate": { + "lat": 50.87198227317199, + "long": 11.788860178024654 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.01.26 und dem 30.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 0.9 km hinter AS Stadtroda und 1.2 km vor AK Hermsdorfer Kreuz", + "", + "L\u00e4nge: 3 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 HDF_2025-063382_bRF_157,4-149,2_Baugrunduntersuchung WB" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.788860178, + 50.871982273 + ], + [ + 11.7893472, + 50.872152601 + ], + [ + 11.794354, + 50.873942201 + ], + [ + 11.7949392, + 50.874151401 + ], + [ + 11.7972389, + 50.874874901 + ], + [ + 11.7976693, + 50.874988701 + ], + [ + 11.7990955, + 50.875313101 + ], + [ + 11.8000114, + 50.875499201 + ], + [ + 11.8003476, + 50.875555801 + ], + [ + 11.8014694, + 50.875752501 + ], + [ + 11.8025086, + 50.875893501 + ], + [ + 11.8032638, + 50.875977601 + ], + [ + 11.8036213, + 50.876009401 + ], + [ + 11.804624, + 50.876098701 + ], + [ + 11.8060891, + 50.876220001 + ], + [ + 11.8066982, + 50.876271701 + ], + [ + 11.8070415, + 50.876300901 + ], + [ + 11.8105394, + 50.876586201 + ], + [ + 11.8108558, + 50.876609701 + ], + [ + 11.8112086, + 50.876636301 + ], + [ + 11.8123219, + 50.876726201 + ], + [ + 11.8131122, + 50.876788901 + ], + [ + 11.8140512, + 50.876867601 + ], + [ + 11.8143741, + 50.876893401 + ], + [ + 11.8150782, + 50.876950901 + ], + [ + 11.8188487, + 50.877258301 + ], + [ + 11.8202871, + 50.877379001 + ], + [ + 11.8215403, + 50.877484201 + ], + [ + 11.8216061, + 50.877490101 + ], + [ + 11.8236642, + 50.877676201 + ], + [ + 11.8257243, + 50.877871201 + ], + [ + 11.8277774, + 50.878078701 + ], + [ + 11.8288444, + 50.878196901 + ], + [ + 11.8292456, + 50.878240201 + ], + [ + 11.829780162, + 50.878299544 + ] + ] + } + }, + { + "identifier": "2023-002727--vi-bs.2026-04-07_00-00-00-000.devi-zus.2025-03-01_00-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.86966510604304,11.781178533931172,50.87809259027916,11.63098233800629", + "point": "50.86966510604304,11.781178533931172", + "startLcPosition": "94", + "impact": { + "lower": "Jena-Zentrum", + "upper": "Teufelstalschenke", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Teufelstalschenke - Jena-Zentrum", + "startTimestamp": "2026-04-07T00:00:00+02:00", + "coordinate": { + "lat": 50.86966510604304, + "long": 11.781178533931172 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 00:00 Uhr", + "Ende: 16.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.28)", + "", + "A4: Chemnitz -> Erfurt, zwischen 2.4 km hinter Teufelstalschenke und 0.8 km vor AS Jena-Zentrum", + "", + "L\u00e4nge: 11.02 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "4 HDF_2023-002727_bRF_ km 160,5-170,4_Fahrbahnerneuerung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.781178534, + 50.869665106 + ], + [ + 11.7808426, + 50.869584501 + ], + [ + 11.7803388, + 50.869469501 + ], + [ + 11.7797845, + 50.869351801 + ], + [ + 11.7793336, + 50.869259201 + ], + [ + 11.7788769, + 50.869161301 + ], + [ + 11.7772539, + 50.868840701 + ], + [ + 11.7767138, + 50.868736201 + ], + [ + 11.776126, + 50.868620001 + ], + [ + 11.7754005, + 50.868477201 + ], + [ + 11.774899, + 50.868379101 + ], + [ + 11.774408, + 50.868277501 + ], + [ + 11.7736095, + 50.868120401 + ], + [ + 11.7729342, + 50.867995601 + ], + [ + 11.7707916, + 50.867572001 + ], + [ + 11.7670762, + 50.866837901 + ], + [ + 11.764499, + 50.866332001 + ], + [ + 11.7641052, + 50.866251601 + ], + [ + 11.7602417, + 50.865503101 + ], + [ + 11.7589948, + 50.865282801 + ], + [ + 11.7577196, + 50.865091001 + ], + [ + 11.7572638, + 50.865031101 + ], + [ + 11.7566095, + 50.864954501 + ], + [ + 11.7558842, + 50.864888501 + ], + [ + 11.7552572, + 50.864842001 + ], + [ + 11.7545577, + 50.864805101 + ], + [ + 11.7539124, + 50.864784601 + ], + [ + 11.7529445, + 50.864774501 + ], + [ + 11.7521884, + 50.864793601 + ], + [ + 11.7516365, + 50.864813301 + ], + [ + 11.751101, + 50.864841801 + ], + [ + 11.7506731, + 50.864871901 + ], + [ + 11.7500716, + 50.864920001 + ], + [ + 11.7493701, + 50.864994001 + ], + [ + 11.7487042, + 50.865078201 + ], + [ + 11.7481341, + 50.865161301 + ], + [ + 11.7474697, + 50.865272901 + ], + [ + 11.7467826, + 50.865400501 + ], + [ + 11.7460738, + 50.865550601 + ], + [ + 11.7453634, + 50.865721301 + ], + [ + 11.7448088, + 50.865861901 + ], + [ + 11.7442455, + 50.866021101 + ], + [ + 11.7436141, + 50.866215801 + ], + [ + 11.7429709, + 50.866430501 + ], + [ + 11.7423356, + 50.866660301 + ], + [ + 11.7418326, + 50.866854401 + ], + [ + 11.7412678, + 50.867092401 + ], + [ + 11.7407166, + 50.867335401 + ], + [ + 11.7401469, + 50.867602301 + ], + [ + 11.7395814, + 50.867881401 + ], + [ + 11.7375459, + 50.868927201 + ], + [ + 11.7359516, + 50.869743401 + ], + [ + 11.7342677, + 50.870625801 + ], + [ + 11.7339442, + 50.870787601 + ], + [ + 11.7330007, + 50.871268401 + ], + [ + 11.7316996, + 50.871896601 + ], + [ + 11.7306677, + 50.872308901 + ], + [ + 11.7300393, + 50.872547701 + ], + [ + 11.7294354, + 50.872751201 + ], + [ + 11.7286411, + 50.872996701 + ], + [ + 11.7273668, + 50.873300101 + ], + [ + 11.7261648, + 50.873526201 + ], + [ + 11.7254949, + 50.873633601 + ], + [ + 11.724604, + 50.873740701 + ], + [ + 11.7232968, + 50.873872601 + ], + [ + 11.7162293, + 50.874454001 + ], + [ + 11.7137562, + 50.874665501 + ], + [ + 11.7133958, + 50.874693301 + ], + [ + 11.7092486, + 50.875049301 + ], + [ + 11.7049946, + 50.875411201 + ], + [ + 11.7030709, + 50.875571801 + ], + [ + 11.7020298, + 50.875661001 + ], + [ + 11.6994091, + 50.875883401 + ], + [ + 11.6964315, + 50.876141301 + ], + [ + 11.6960182, + 50.876172101 + ], + [ + 11.6954226, + 50.876221601 + ], + [ + 11.6950827, + 50.876247901 + ], + [ + 11.6900856, + 50.876673401 + ], + [ + 11.6882592, + 50.876831001 + ], + [ + 11.6812274, + 50.877425701 + ], + [ + 11.6769819, + 50.877791001 + ], + [ + 11.6750277, + 50.877938201 + ], + [ + 11.6738578, + 50.878021701 + ], + [ + 11.6734492, + 50.878052901 + ], + [ + 11.6725685, + 50.878072101 + ], + [ + 11.6720926, + 50.878075001 + ], + [ + 11.6710552, + 50.878046501 + ], + [ + 11.670646, + 50.878025801 + ], + [ + 11.6704483, + 50.878015701 + ], + [ + 11.670166, + 50.877997901 + ], + [ + 11.6696571, + 50.877951401 + ], + [ + 11.6693428, + 50.877921001 + ], + [ + 11.6685138, + 50.877825101 + ], + [ + 11.6679804, + 50.877750201 + ], + [ + 11.6665045, + 50.877534301 + ], + [ + 11.6647181, + 50.877270901 + ], + [ + 11.6641358, + 50.877182201 + ], + [ + 11.663813, + 50.877132601 + ], + [ + 11.6629985, + 50.877016301 + ], + [ + 11.6624945, + 50.876937701 + ], + [ + 11.6606891, + 50.876677001 + ], + [ + 11.6596521, + 50.876546001 + ], + [ + 11.6587805, + 50.876445001 + ], + [ + 11.6579631, + 50.876365801 + ], + [ + 11.6575766, + 50.876335001 + ], + [ + 11.6568967, + 50.876274101 + ], + [ + 11.6562799, + 50.876223001 + ], + [ + 11.6556296, + 50.876179501 + ], + [ + 11.6550609, + 50.876142101 + ], + [ + 11.6536464, + 50.876078401 + ], + [ + 11.6532642, + 50.876062901 + ], + [ + 11.6528292, + 50.876050401 + ], + [ + 11.6517837, + 50.876027701 + ], + [ + 11.6508006, + 50.876014201 + ], + [ + 11.6499338, + 50.876019301 + ], + [ + 11.6491247, + 50.876033401 + ], + [ + 11.6479955, + 50.876056301 + ], + [ + 11.6466646, + 50.876114401 + ], + [ + 11.6454496, + 50.876181901 + ], + [ + 11.6440027, + 50.876288101 + ], + [ + 11.6429109, + 50.876387301 + ], + [ + 11.6413036, + 50.876563401 + ], + [ + 11.6402351, + 50.876697701 + ], + [ + 11.6392391, + 50.876839901 + ], + [ + 11.6388923, + 50.876892101 + ], + [ + 11.6385171, + 50.876949501 + ], + [ + 11.6381448, + 50.877006501 + ], + [ + 11.6366689, + 50.877232501 + ], + [ + 11.6339953, + 50.877636401 + ], + [ + 11.6323827, + 50.877879401 + ], + [ + 11.6320788, + 50.877926301 + ], + [ + 11.630982338, + 50.87809259 + ] + ] + } + }, + { + "identifier": "2026-014581--vi-bs.2026-03-22_23-00-00-000.devi-zus.2026-03-22_23-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.880555675273214,11.849160135632454,50.91083852100696,12.078221118572182", + "point": "50.880555675273214,11.849160135632454", + "startLcPosition": "95", + "impact": { + "lower": "Gera", + "upper": "Hermsdorfer Kreuz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Hermsdorfer Kreuz - Gera", + "coordinate": { + "lat": 50.880555675273214, + "long": 11.849160135632454 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "26.04.26 von 23:00 bis 24:00 Uhr", + "", + "A4: Erfurt -> Chemnitz, zwischen 0.2 km hinter AK Hermsdorfer Kreuz und 3.6 km vor AS Gera", + "", + "L\u00e4nge: 17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A4 von Hermsdorfer Kreuz (AK) nach Gera (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.849160136, + 50.880555675 + ], + [ + 11.8494054, + 50.880584101 + ], + [ + 11.8495273, + 50.880598201 + ], + [ + 11.8498828, + 50.880639301 + ], + [ + 11.8535587, + 50.881061801 + ], + [ + 11.8554995, + 50.881293101 + ], + [ + 11.8559947, + 50.881364701 + ], + [ + 11.8565841, + 50.881458301 + ], + [ + 11.8568809, + 50.881506701 + ], + [ + 11.8573862, + 50.881603201 + ], + [ + 11.8595168, + 50.882043601 + ], + [ + 11.8601752, + 50.882181501 + ], + [ + 11.8605899, + 50.882291801 + ], + [ + 11.861068, + 50.882435701 + ], + [ + 11.8613474, + 50.882526901 + ], + [ + 11.8618107, + 50.882678701 + ], + [ + 11.862112, + 50.882782901 + ], + [ + 11.8626306, + 50.882979701 + ], + [ + 11.8631588, + 50.883193801 + ], + [ + 11.8640167, + 50.883587001 + ], + [ + 11.8649615, + 50.884057601 + ], + [ + 11.8653004, + 50.884235601 + ], + [ + 11.8660374, + 50.884632301 + ], + [ + 11.8687394, + 50.886068201 + ], + [ + 11.8689953, + 50.886205201 + ], + [ + 11.8692146, + 50.886328301 + ], + [ + 11.8706931, + 50.887127501 + ], + [ + 11.8741321, + 50.888981201 + ], + [ + 11.8750544, + 50.889478801 + ], + [ + 11.8754984, + 50.889713101 + ], + [ + 11.8757064, + 50.889824601 + ], + [ + 11.8765344, + 50.890271201 + ], + [ + 11.8773453, + 50.890679201 + ], + [ + 11.8782126, + 50.891096301 + ], + [ + 11.8787503, + 50.891331501 + ], + [ + 11.8792617, + 50.891531601 + ], + [ + 11.8795066, + 50.891628501 + ], + [ + 11.8798203, + 50.891752701 + ], + [ + 11.880755, + 50.892076901 + ], + [ + 11.8816189, + 50.892343101 + ], + [ + 11.8824532, + 50.892572101 + ], + [ + 11.8829457, + 50.892691301 + ], + [ + 11.8837874, + 50.892881701 + ], + [ + 11.8847394, + 50.893062101 + ], + [ + 11.8857533, + 50.893226201 + ], + [ + 11.8863041, + 50.893301001 + ], + [ + 11.8871292, + 50.893390301 + ], + [ + 11.8878107, + 50.893446801 + ], + [ + 11.8892865, + 50.893520201 + ], + [ + 11.8905895, + 50.893532801 + ], + [ + 11.8912349, + 50.893521101 + ], + [ + 11.8937313, + 50.893401501 + ], + [ + 11.9003365, + 50.893022101 + ], + [ + 11.9005136, + 50.893012401 + ], + [ + 11.901108, + 50.892978901 + ], + [ + 11.9079248, + 50.892614701 + ], + [ + 11.9112115, + 50.892433001 + ], + [ + 11.912706, + 50.892318101 + ], + [ + 11.9139416, + 50.892179001 + ], + [ + 11.9147074, + 50.892071701 + ], + [ + 11.9212891, + 50.891006901 + ], + [ + 11.924816, + 50.890433301 + ], + [ + 11.9285167, + 50.889831201 + ], + [ + 11.9299386, + 50.889609501 + ], + [ + 11.9320727, + 50.889310601 + ], + [ + 11.9335217, + 50.889150901 + ], + [ + 11.9346588, + 50.889048701 + ], + [ + 11.9362031, + 50.888939101 + ], + [ + 11.9381718, + 50.888849501 + ], + [ + 11.9402523, + 50.888821001 + ], + [ + 11.9418668, + 50.888844901 + ], + [ + 11.9423615, + 50.888860401 + ], + [ + 11.9428471, + 50.888879201 + ], + [ + 11.9438029, + 50.888926901 + ], + [ + 11.9448486, + 50.888986601 + ], + [ + 11.9457093, + 50.889044701 + ], + [ + 11.9467685, + 50.889152801 + ], + [ + 11.9482016, + 50.889310001 + ], + [ + 11.9488039, + 50.889394901 + ], + [ + 11.9501799, + 50.889593701 + ], + [ + 11.9509765, + 50.889727301 + ], + [ + 11.9517355, + 50.889860701 + ], + [ + 11.9525757, + 50.890022501 + ], + [ + 11.9540736, + 50.890328801 + ], + [ + 11.9546572, + 50.890467601 + ], + [ + 11.955298, + 50.890618001 + ], + [ + 11.9556524, + 50.890703201 + ], + [ + 11.9573513, + 50.891170201 + ], + [ + 11.9589337, + 50.891645001 + ], + [ + 11.9611997, + 50.892378301 + ], + [ + 11.9624647, + 50.892823901 + ], + [ + 11.9637542, + 50.893273801 + ], + [ + 11.9641823, + 50.893424601 + ], + [ + 11.9666373, + 50.894296401 + ], + [ + 11.9688056, + 50.895061301 + ], + [ + 11.9691432, + 50.895180401 + ], + [ + 11.9711095, + 50.895867901 + ], + [ + 11.971579, + 50.896018801 + ], + [ + 11.9720796, + 50.896171601 + ], + [ + 11.972556, + 50.896305701 + ], + [ + 11.9730639, + 50.896443001 + ], + [ + 11.973841, + 50.896623801 + ], + [ + 11.9743977, + 50.896742201 + ], + [ + 11.9749245, + 50.896842701 + ], + [ + 11.9759152, + 50.897004301 + ], + [ + 11.9764146, + 50.897080101 + ], + [ + 11.9766286, + 50.897110601 + ], + [ + 11.9775187, + 50.897220101 + ], + [ + 11.978023, + 50.897285101 + ], + [ + 11.9785473, + 50.897352701 + ], + [ + 11.979239, + 50.897433701 + ], + [ + 11.9813355, + 50.897688101 + ], + [ + 11.9817226, + 50.897736501 + ], + [ + 11.9844769, + 50.898062601 + ], + [ + 11.9865775, + 50.898342101 + ], + [ + 11.9872748, + 50.898447501 + ], + [ + 11.9879532, + 50.898570201 + ], + [ + 11.9886897, + 50.898727801 + ], + [ + 11.9893463, + 50.898883701 + ], + [ + 11.9896892, + 50.898972201 + ], + [ + 11.9915175, + 50.899505001 + ], + [ + 11.9950432, + 50.900625101 + ], + [ + 11.999157, + 50.901915701 + ], + [ + 11.9995359, + 50.902027201 + ], + [ + 11.9999196, + 50.902132001 + ], + [ + 12.0003077, + 50.902230201 + ], + [ + 12.0007054, + 50.902322901 + ], + [ + 12.0011071, + 50.902408501 + ], + [ + 12.0015116, + 50.902488501 + ], + [ + 12.0018682, + 50.902559001 + ], + [ + 12.0022132, + 50.902627301 + ], + [ + 12.00439, + 50.903053401 + ], + [ + 12.0085376, + 50.903853401 + ], + [ + 12.0122992, + 50.904602901 + ], + [ + 12.0126557, + 50.904673201 + ], + [ + 12.0131599, + 50.904773601 + ], + [ + 12.0139465, + 50.904927301 + ], + [ + 12.0148833, + 50.905100901 + ], + [ + 12.0160563, + 50.905290101 + ], + [ + 12.0172664, + 50.905428701 + ], + [ + 12.0182443, + 50.905532301 + ], + [ + 12.0195406, + 50.905628201 + ], + [ + 12.0204466, + 50.905681301 + ], + [ + 12.0211964, + 50.905707201 + ], + [ + 12.0225359, + 50.905762901 + ], + [ + 12.0235405, + 50.905805701 + ], + [ + 12.0247937, + 50.905851001 + ], + [ + 12.0260427, + 50.905902801 + ], + [ + 12.0269102, + 50.905946501 + ], + [ + 12.027072, + 50.905954701 + ], + [ + 12.0280499, + 50.906002601 + ], + [ + 12.0291716, + 50.906057001 + ], + [ + 12.0300056, + 50.906097201 + ], + [ + 12.0304825, + 50.906121401 + ], + [ + 12.0308479, + 50.906139901 + ], + [ + 12.0318361, + 50.906193001 + ], + [ + 12.0327113, + 50.906242301 + ], + [ + 12.0342397, + 50.906325201 + ], + [ + 12.0353142, + 50.906384801 + ], + [ + 12.0357712, + 50.906404301 + ], + [ + 12.0372433, + 50.906483201 + ], + [ + 12.0381657, + 50.906528601 + ], + [ + 12.0390059, + 50.906568701 + ], + [ + 12.0407234, + 50.906650301 + ], + [ + 12.0417095, + 50.906693101 + ], + [ + 12.0424017, + 50.906730701 + ], + [ + 12.0428313, + 50.906747201 + ], + [ + 12.0438326, + 50.906785801 + ], + [ + 12.0463317, + 50.906915601 + ], + [ + 12.0467443, + 50.906934601 + ], + [ + 12.0481903, + 50.907005101 + ], + [ + 12.0482409, + 50.907008801 + ], + [ + 12.0496897, + 50.907117301 + ], + [ + 12.0524268, + 50.907414901 + ], + [ + 12.0546454, + 50.907674501 + ], + [ + 12.0566273, + 50.907902801 + ], + [ + 12.057837, + 50.908038501 + ], + [ + 12.0584381, + 50.908101601 + ], + [ + 12.0618384, + 50.908497801 + ], + [ + 12.0641855, + 50.908795801 + ], + [ + 12.0650846, + 50.908919001 + ], + [ + 12.0656691, + 50.909003701 + ], + [ + 12.0662638, + 50.909089901 + ], + [ + 12.0669076, + 50.909188601 + ], + [ + 12.0696716, + 50.909597501 + ], + [ + 12.0705279, + 50.909715301 + ], + [ + 12.0708962, + 50.909765901 + ], + [ + 12.0714634, + 50.909849101 + ], + [ + 12.0719894, + 50.909926201 + ], + [ + 12.072823, + 50.910045301 + ], + [ + 12.0746381, + 50.910313801 + ], + [ + 12.075498, + 50.910443001 + ], + [ + 12.0763588, + 50.910568701 + ], + [ + 12.0771642, + 50.910684001 + ], + [ + 12.0779798, + 50.910804401 + ], + [ + 12.078221119, + 50.910838521 + ] + ] + } + }, + { + "identifier": "2025-063382--vi-bs.2026-01-07_08-00-00-000.devi-zus.2026-01-07_08-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.882321769230096,11.86068946726691,50.89056413188019,11.877116597652533", + "point": "50.882321769230096,11.86068946726691", + "startLcPosition": "95", + "impact": { + "lower": "Hermsdorf-Ost", + "upper": "Hermsdorfer Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Hermsdorfer Kreuz - Hermsdorf-Ost", + "coordinate": { + "lat": 50.882321769230096, + "long": 11.86068946726691 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.01.26 und dem 30.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 1.0 km hinter AK Hermsdorfer Kreuz und 0.2 km vor AS Hermsdorf-Ost", + "", + "L\u00e4nge: 1.48 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "4 HDF_2025-063382_bRF_157,4-149,2_Baugrunduntersuchung WB" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.860689467, + 50.882321769 + ], + [ + 11.861068, + 50.882435701 + ], + [ + 11.8613474, + 50.882526901 + ], + [ + 11.8618107, + 50.882678701 + ], + [ + 11.862112, + 50.882782901 + ], + [ + 11.8626306, + 50.882979701 + ], + [ + 11.8631588, + 50.883193801 + ], + [ + 11.8640167, + 50.883587001 + ], + [ + 11.8649615, + 50.884057601 + ], + [ + 11.8653004, + 50.884235601 + ], + [ + 11.8660374, + 50.884632301 + ], + [ + 11.8687394, + 50.886068201 + ], + [ + 11.8689953, + 50.886205201 + ], + [ + 11.8692146, + 50.886328301 + ], + [ + 11.8706931, + 50.887127501 + ], + [ + 11.8741321, + 50.888981201 + ], + [ + 11.8750544, + 50.889478801 + ], + [ + 11.8754984, + 50.889713101 + ], + [ + 11.8757064, + 50.889824601 + ], + [ + 11.8765344, + 50.890271201 + ], + [ + 11.877116598, + 50.890564132 + ] + ] + } + }, + { + "identifier": "2025-063382--vi-bs.2026-01-07_08-00-00-000.devi-zus.2026-01-07_08-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.882321769230096,11.86068946726691,50.89056413188019,11.877116597652533", + "point": "50.882321769230096,11.86068946726691", + "startLcPosition": "95", + "impact": { + "lower": "Hermsdorf-Ost", + "upper": "Hermsdorfer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Hermsdorfer Kreuz - Hermsdorf-Ost", + "coordinate": { + "lat": 50.882321769230096, + "long": 11.86068946726691 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.01.26 und dem 30.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Erfurt -> Chemnitz, zwischen 1.0 km hinter AK Hermsdorfer Kreuz und 0.2 km vor AS Hermsdorf-Ost", + "", + "L\u00e4nge: 1.48 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 HDF_2025-063382_bRF_157,4-149,2_Baugrunduntersuchung WB" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.860689467, + 50.882321769 + ], + [ + 11.861068, + 50.882435701 + ], + [ + 11.8613474, + 50.882526901 + ], + [ + 11.8618107, + 50.882678701 + ], + [ + 11.862112, + 50.882782901 + ], + [ + 11.8626306, + 50.882979701 + ], + [ + 11.8631588, + 50.883193801 + ], + [ + 11.8640167, + 50.883587001 + ], + [ + 11.8649615, + 50.884057601 + ], + [ + 11.8653004, + 50.884235601 + ], + [ + 11.8660374, + 50.884632301 + ], + [ + 11.8687394, + 50.886068201 + ], + [ + 11.8689953, + 50.886205201 + ], + [ + 11.8692146, + 50.886328301 + ], + [ + 11.8706931, + 50.887127501 + ], + [ + 11.8741321, + 50.888981201 + ], + [ + 11.8750544, + 50.889478801 + ], + [ + 11.8754984, + 50.889713101 + ], + [ + 11.8757064, + 50.889824601 + ], + [ + 11.8765344, + 50.890271201 + ], + [ + 11.877116598, + 50.890564132 + ] + ] + } + }, + { + "identifier": "2026-017741--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_006.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.88883367653713,11.941108377611622,50.890402840563425,11.95438490586364", + "point": "50.88883367653713,11.941108377611622", + "startLcPosition": "96", + "impact": { + "lower": "R\u00fcdersdorf", + "upper": "Hermsdorf-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Hermsdorf-Ost - R\u00fcdersdorf", + "coordinate": { + "lat": 50.88883367653713, + "long": 11.941108377611622 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 15:30 Uhr", + "15.04.26 von 08:00 bis 15:30 Uhr", + "16.04.26 von 08:00 bis 15:30 Uhr", + "", + "A4: Erfurt -> Chemnitz, zwischen 4.5 km hinter AS Hermsdorf-Ost und 1.9 km vor AS R\u00fcdersdorf", + "", + "L\u00e4nge: 0.95 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "4HDF_2026-017741_bRF_138,8 bis 147,3_Voruntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.941108378, + 50.888833677 + ], + [ + 11.9418668, + 50.888844901 + ], + [ + 11.9423615, + 50.888860401 + ], + [ + 11.9428471, + 50.888879201 + ], + [ + 11.9438029, + 50.888926901 + ], + [ + 11.9448486, + 50.888986601 + ], + [ + 11.9457093, + 50.889044701 + ], + [ + 11.9467685, + 50.889152801 + ], + [ + 11.9482016, + 50.889310001 + ], + [ + 11.9488039, + 50.889394901 + ], + [ + 11.9501799, + 50.889593701 + ], + [ + 11.9509765, + 50.889727301 + ], + [ + 11.9517355, + 50.889860701 + ], + [ + 11.9525757, + 50.890022501 + ], + [ + 11.9540736, + 50.890328801 + ], + [ + 11.954384906, + 50.890402841 + ] + ] + } + }, + { + "identifier": "2026-017741--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.890518565873315,11.924291777362711,50.90658497260492,12.039348339681057", + "point": "50.890518565873315,11.924291777362711", + "startLcPosition": "96", + "impact": { + "lower": "Gera-Langenberg", + "upper": "Hermsdorf-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Hermsdorf-Ost - Gera-Langenberg", + "coordinate": { + "lat": 50.890518565873315, + "long": 11.924291777362711 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 15:30 Uhr", + "15.04.26 von 08:00 bis 15:30 Uhr", + "16.04.26 von 08:00 bis 15:30 Uhr", + "", + "A4: Erfurt -> Chemnitz, zwischen 3.3 km hinter AS Hermsdorf-Ost und 1.9 km vor AS Gera-Langenberg", + "", + "L\u00e4nge: 8.47 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "4HDF_2026-017741_bRF_138,8 bis 147,3_Voruntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.924291777, + 50.890518566 + ], + [ + 11.924816, + 50.890433301 + ], + [ + 11.9285167, + 50.889831201 + ], + [ + 11.9299386, + 50.889609501 + ], + [ + 11.9320727, + 50.889310601 + ], + [ + 11.9335217, + 50.889150901 + ], + [ + 11.9346588, + 50.889048701 + ], + [ + 11.9362031, + 50.888939101 + ], + [ + 11.9381718, + 50.888849501 + ], + [ + 11.9402523, + 50.888821001 + ], + [ + 11.9418668, + 50.888844901 + ], + [ + 11.9423615, + 50.888860401 + ], + [ + 11.9428471, + 50.888879201 + ], + [ + 11.9438029, + 50.888926901 + ], + [ + 11.9448486, + 50.888986601 + ], + [ + 11.9457093, + 50.889044701 + ], + [ + 11.9467685, + 50.889152801 + ], + [ + 11.9482016, + 50.889310001 + ], + [ + 11.9488039, + 50.889394901 + ], + [ + 11.9501799, + 50.889593701 + ], + [ + 11.9509765, + 50.889727301 + ], + [ + 11.9517355, + 50.889860701 + ], + [ + 11.9525757, + 50.890022501 + ], + [ + 11.9540736, + 50.890328801 + ], + [ + 11.9546572, + 50.890467601 + ], + [ + 11.955298, + 50.890618001 + ], + [ + 11.9556524, + 50.890703201 + ], + [ + 11.9573513, + 50.891170201 + ], + [ + 11.9589337, + 50.891645001 + ], + [ + 11.9611997, + 50.892378301 + ], + [ + 11.9624647, + 50.892823901 + ], + [ + 11.9637542, + 50.893273801 + ], + [ + 11.9641823, + 50.893424601 + ], + [ + 11.9666373, + 50.894296401 + ], + [ + 11.9688056, + 50.895061301 + ], + [ + 11.9691432, + 50.895180401 + ], + [ + 11.9711095, + 50.895867901 + ], + [ + 11.971579, + 50.896018801 + ], + [ + 11.9720796, + 50.896171601 + ], + [ + 11.972556, + 50.896305701 + ], + [ + 11.9730639, + 50.896443001 + ], + [ + 11.973841, + 50.896623801 + ], + [ + 11.9743977, + 50.896742201 + ], + [ + 11.9749245, + 50.896842701 + ], + [ + 11.9759152, + 50.897004301 + ], + [ + 11.9764146, + 50.897080101 + ], + [ + 11.9766286, + 50.897110601 + ], + [ + 11.9775187, + 50.897220101 + ], + [ + 11.978023, + 50.897285101 + ], + [ + 11.9785473, + 50.897352701 + ], + [ + 11.979239, + 50.897433701 + ], + [ + 11.9813355, + 50.897688101 + ], + [ + 11.9817226, + 50.897736501 + ], + [ + 11.9844769, + 50.898062601 + ], + [ + 11.9865775, + 50.898342101 + ], + [ + 11.9872748, + 50.898447501 + ], + [ + 11.9879532, + 50.898570201 + ], + [ + 11.9886897, + 50.898727801 + ], + [ + 11.9893463, + 50.898883701 + ], + [ + 11.9896892, + 50.898972201 + ], + [ + 11.9915175, + 50.899505001 + ], + [ + 11.9950432, + 50.900625101 + ], + [ + 11.999157, + 50.901915701 + ], + [ + 11.9995359, + 50.902027201 + ], + [ + 11.9999196, + 50.902132001 + ], + [ + 12.0003077, + 50.902230201 + ], + [ + 12.0007054, + 50.902322901 + ], + [ + 12.0011071, + 50.902408501 + ], + [ + 12.0015116, + 50.902488501 + ], + [ + 12.0018682, + 50.902559001 + ], + [ + 12.0022132, + 50.902627301 + ], + [ + 12.00439, + 50.903053401 + ], + [ + 12.0085376, + 50.903853401 + ], + [ + 12.0122992, + 50.904602901 + ], + [ + 12.0126557, + 50.904673201 + ], + [ + 12.0131599, + 50.904773601 + ], + [ + 12.0139465, + 50.904927301 + ], + [ + 12.0148833, + 50.905100901 + ], + [ + 12.0160563, + 50.905290101 + ], + [ + 12.0172664, + 50.905428701 + ], + [ + 12.0182443, + 50.905532301 + ], + [ + 12.0195406, + 50.905628201 + ], + [ + 12.0204466, + 50.905681301 + ], + [ + 12.0211964, + 50.905707201 + ], + [ + 12.0225359, + 50.905762901 + ], + [ + 12.0235405, + 50.905805701 + ], + [ + 12.0247937, + 50.905851001 + ], + [ + 12.0260427, + 50.905902801 + ], + [ + 12.0269102, + 50.905946501 + ], + [ + 12.027072, + 50.905954701 + ], + [ + 12.0280499, + 50.906002601 + ], + [ + 12.0291716, + 50.906057001 + ], + [ + 12.0300056, + 50.906097201 + ], + [ + 12.0304825, + 50.906121401 + ], + [ + 12.0308479, + 50.906139901 + ], + [ + 12.0318361, + 50.906193001 + ], + [ + 12.0327113, + 50.906242301 + ], + [ + 12.0342397, + 50.906325201 + ], + [ + 12.0353142, + 50.906384801 + ], + [ + 12.0357712, + 50.906404301 + ], + [ + 12.0372433, + 50.906483201 + ], + [ + 12.0381657, + 50.906528601 + ], + [ + 12.0390059, + 50.906568701 + ], + [ + 12.03934834, + 50.906584973 + ] + ] + } + }, + { + "identifier": "2025-063382--vi-bs.2026-01-07_08-00-00-000.devi-zus.2026-01-07_08-00-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.89331683645076,11.897697312558746,50.88162566193751,11.856754054953024", + "point": "50.89331683645076,11.897697312558746", + "startLcPosition": "97", + "impact": { + "lower": "Hermsdorfer Kreuz", + "upper": "T\u00fcmmelsberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | T\u00fcmmelsberg - Hermsdorfer Kreuz", + "coordinate": { + "lat": 50.89331683645076, + "long": 11.897697312558746 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.01.26 und dem 30.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 3.6 km hinter T\u00fcmmelsberg und 0.7 km vor AK Hermsdorfer Kreuz", + "", + "L\u00e4nge: 3.3 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 HDF_2025-063382_bRF_157,4-149,2_Baugrunduntersuchung WB" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.897697313, + 50.893316836 + ], + [ + 11.8937398, + 50.893542801 + ], + [ + 11.8918964, + 50.893629301 + ], + [ + 11.8905764, + 50.893665201 + ], + [ + 11.8892895, + 50.893656401 + ], + [ + 11.8877814, + 50.893576301 + ], + [ + 11.887089, + 50.893518901 + ], + [ + 11.8862704, + 50.893429501 + ], + [ + 11.8857264, + 50.893359901 + ], + [ + 11.88466, + 50.893189401 + ], + [ + 11.8837228, + 50.893011301 + ], + [ + 11.8822849, + 50.892678301 + ], + [ + 11.8815044, + 50.892462701 + ], + [ + 11.8808508, + 50.892263001 + ], + [ + 11.8800549, + 50.891992001 + ], + [ + 11.8797229, + 50.891875101 + ], + [ + 11.879132, + 50.891644301 + ], + [ + 11.8786135, + 50.891441801 + ], + [ + 11.8777649, + 50.891062801 + ], + [ + 11.8770602, + 50.890710401 + ], + [ + 11.8763701, + 50.890359301 + ], + [ + 11.8752803, + 50.889782301 + ], + [ + 11.8748426, + 50.889546001 + ], + [ + 11.8739649, + 50.889076901 + ], + [ + 11.8716768, + 50.887842701 + ], + [ + 11.8690187, + 50.886417501 + ], + [ + 11.8688092, + 50.886303201 + ], + [ + 11.8685929, + 50.886185701 + ], + [ + 11.8651698, + 50.884349301 + ], + [ + 11.8646248, + 50.884064401 + ], + [ + 11.8640698, + 50.883787201 + ], + [ + 11.8634868, + 50.883513101 + ], + [ + 11.8631758, + 50.883372701 + ], + [ + 11.8626088, + 50.883130401 + ], + [ + 11.8621538, + 50.882950701 + ], + [ + 11.8617148, + 50.882793801 + ], + [ + 11.8612614, + 50.882638801 + ], + [ + 11.8609792, + 50.882547301 + ], + [ + 11.8605182, + 50.882411501 + ], + [ + 11.8601151, + 50.882302401 + ], + [ + 11.8594318, + 50.882153501 + ], + [ + 11.8571562, + 50.881695501 + ], + [ + 11.856754055, + 50.881625662 + ] + ] + } + }, + { + "identifier": "2026-017741--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_006.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.89557201544958,11.970263227030912,50.89656700974524,11.973596901617048", + "point": "50.89557201544958,11.970263227030912", + "startLcPosition": "97", + "impact": { + "lower": "R\u00fcdersdorf", + "upper": "T\u00fcmmelsberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | T\u00fcmmelsberg - R\u00fcdersdorf", + "coordinate": { + "lat": 50.89557201544958, + "long": 11.970263227030912 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 15:30 Uhr", + "15.04.26 von 08:00 bis 15:30 Uhr", + "16.04.26 von 08:00 bis 15:30 Uhr", + "", + "A4: Erfurt -> Chemnitz, zwischen 1.7 km hinter T\u00fcmmelsberg und 0.4 km vor AS R\u00fcdersdorf", + "", + "L\u00e4nge: 0.26 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4HDF_2026-017741_bRF_138,8 bis 147,3_Voruntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.970263227, + 50.895572015 + ], + [ + 11.9711095, + 50.895867901 + ], + [ + 11.971579, + 50.896018801 + ], + [ + 11.9720796, + 50.896171601 + ], + [ + 11.972556, + 50.896305701 + ], + [ + 11.9730639, + 50.896443001 + ], + [ + 11.973596902, + 50.89656701 + ] + ] + } + }, + { + "identifier": "2026-017741--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_006.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.89053111448381,11.954308977972268,50.88896779974289,11.941119822657935", + "point": "50.89053111448381,11.954308977972268", + "startLcPosition": "98", + "impact": { + "lower": "Hermsdorf-Ost", + "upper": "R\u00fcdersdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | R\u00fcdersdorf - Hermsdorf-Ost", + "coordinate": { + "lat": 50.89053111448381, + "long": 11.954308977972268 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 15:30 Uhr", + "15.04.26 von 08:00 bis 15:30 Uhr", + "16.04.26 von 08:00 bis 15:30 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 1.9 km hinter AS R\u00fcdersdorf und 4.5 km vor AS Hermsdorf-Ost", + "", + "L\u00e4nge: 0.95 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4HDF_2026-017741_bRF_138,8 bis 147,3_Voruntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.954308978, + 50.890531114 + ], + [ + 11.9538611, + 50.890425601 + ], + [ + 11.9515376, + 50.889970901 + ], + [ + 11.9509179, + 50.889866401 + ], + [ + 11.9505577, + 50.889804401 + ], + [ + 11.9487637, + 50.889537801 + ], + [ + 11.9481675, + 50.889451201 + ], + [ + 11.9467221, + 50.889281201 + ], + [ + 11.9459021, + 50.889199301 + ], + [ + 11.9445627, + 50.889110501 + ], + [ + 11.943795, + 50.889062901 + ], + [ + 11.9430924, + 50.889027301 + ], + [ + 11.9425033, + 50.889003301 + ], + [ + 11.9419825, + 50.888986501 + ], + [ + 11.9418473, + 50.888982801 + ], + [ + 11.941121, + 50.888967801 + ], + [ + 11.941119823, + 50.8889678 + ] + ] + } + }, + { + "identifier": "2026-017741--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_006.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.897849882105355,11.98147730883482,50.89634981671644,11.972173467787856", + "point": "50.897849882105355,11.98147730883482", + "startLcPosition": "99", + "impact": { + "lower": "T\u00fcmmelsberg", + "upper": "Gera-Langenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Gera-Langenberg - T\u00fcmmelsberg", + "coordinate": { + "lat": 50.897849882105355, + "long": 11.98147730883482 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 15:30 Uhr", + "15.04.26 von 08:00 bis 15:30 Uhr", + "16.04.26 von 08:00 bis 15:30 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 6.2 km hinter AS Gera-Langenberg und 1.8 km vor T\u00fcmmelsberg", + "", + "L\u00e4nge: 0.68 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4HDF_2026-017741_bRF_138,8 bis 147,3_Voruntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.981477309, + 50.897849882 + ], + [ + 11.9813164, + 50.897830001 + ], + [ + 11.9765805, + 50.897244201 + ], + [ + 11.9753066, + 50.897054401 + ], + [ + 11.9748134, + 50.896964201 + ], + [ + 11.9743216, + 50.896874301 + ], + [ + 11.9737722, + 50.896757801 + ], + [ + 11.9732393, + 50.896631701 + ], + [ + 11.9727498, + 50.896505801 + ], + [ + 11.9724591, + 50.896429201 + ], + [ + 11.972173468, + 50.896349817 + ] + ] + } + }, + { + "identifier": "2026-017741--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.90672221064331,12.039331746522187,50.89065980762111,11.924319659111461", + "point": "50.90672221064331,12.039331746522187", + "startLcPosition": "99", + "impact": { + "lower": "Hermsdorf-Ost", + "upper": "Gera-Langenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Gera-Langenberg - Hermsdorf-Ost", + "coordinate": { + "lat": 50.90672221064331, + "long": 12.039331746522187 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 15:30 Uhr", + "15.04.26 von 08:00 bis 15:30 Uhr", + "16.04.26 von 08:00 bis 15:30 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 1.9 km hinter AS Gera-Langenberg und 3.3 km vor AS Hermsdorf-Ost", + "", + "L\u00e4nge: 8.48 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4HDF_2026-017741_bRF_138,8 bis 147,3_Voruntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.039331747, + 50.906722211 + ], + [ + 12.0352534, + 50.906520701 + ], + [ + 12.0288292, + 50.906185301 + ], + [ + 12.0225253, + 50.905913501 + ], + [ + 12.0211419, + 50.905848901 + ], + [ + 12.0186475, + 50.905696701 + ], + [ + 12.0171601, + 50.905573601 + ], + [ + 12.0171067, + 50.905567101 + ], + [ + 12.0156689, + 50.905355801 + ], + [ + 12.014613, + 50.905188501 + ], + [ + 12.01417, + 50.905109501 + ], + [ + 12.0140807, + 50.905092301 + ], + [ + 12.0125878, + 50.904804101 + ], + [ + 12.0122313, + 50.904733801 + ], + [ + 12.0118326, + 50.904654301 + ], + [ + 12.0110894, + 50.904524101 + ], + [ + 12.0110625, + 50.904518901 + ], + [ + 12.0103384, + 50.904379301 + ], + [ + 12.0097312, + 50.904249201 + ], + [ + 12.0088915, + 50.904088001 + ], + [ + 12.0084405, + 50.904002501 + ], + [ + 12.0083308, + 50.903981701 + ], + [ + 12.0074069, + 50.903797601 + ], + [ + 12.0065629, + 50.903630001 + ], + [ + 12.0056942, + 50.903461401 + ], + [ + 12.004827, + 50.903290101 + ], + [ + 12.0038972, + 50.903107801 + ], + [ + 12.002937, + 50.902918101 + ], + [ + 12.002148, + 50.902758901 + ], + [ + 12.0017988, + 50.902692301 + ], + [ + 12.0014505, + 50.902626401 + ], + [ + 12.0009767, + 50.902529201 + ], + [ + 12.0005072, + 50.902424201 + ], + [ + 12.0000422, + 50.902311401 + ], + [ + 11.9997084, + 50.902224901 + ], + [ + 11.9993773, + 50.902134301 + ], + [ + 11.999049, + 50.902039701 + ], + [ + 11.9949578, + 50.900754001 + ], + [ + 11.9914291, + 50.899658301 + ], + [ + 11.9896038, + 50.899107701 + ], + [ + 11.9892607, + 50.899019401 + ], + [ + 11.9885291, + 50.898850301 + ], + [ + 11.9874492, + 50.898624601 + ], + [ + 11.9863434, + 50.898451001 + ], + [ + 11.9813164, + 50.897830001 + ], + [ + 11.9765805, + 50.897244201 + ], + [ + 11.9753066, + 50.897054401 + ], + [ + 11.9748134, + 50.896964201 + ], + [ + 11.9743216, + 50.896874301 + ], + [ + 11.9737722, + 50.896757801 + ], + [ + 11.9732393, + 50.896631701 + ], + [ + 11.9727498, + 50.896505801 + ], + [ + 11.9724591, + 50.896429201 + ], + [ + 11.9719712, + 50.896293601 + ], + [ + 11.9714765, + 50.896143501 + ], + [ + 11.9709509, + 50.895960901 + ], + [ + 11.9704279, + 50.895780801 + ], + [ + 11.9690317, + 50.895303301 + ], + [ + 11.9683439, + 50.895063501 + ], + [ + 11.9665832, + 50.894438101 + ], + [ + 11.9639735, + 50.893508301 + ], + [ + 11.9635417, + 50.893357201 + ], + [ + 11.9620112, + 50.892833701 + ], + [ + 11.9611181, + 50.892510101 + ], + [ + 11.9581841, + 50.891556701 + ], + [ + 11.9555686, + 50.890834801 + ], + [ + 11.9552169, + 50.890745001 + ], + [ + 11.9538611, + 50.890425601 + ], + [ + 11.9515376, + 50.889970901 + ], + [ + 11.9509179, + 50.889866401 + ], + [ + 11.9505577, + 50.889804401 + ], + [ + 11.9487637, + 50.889537801 + ], + [ + 11.9481675, + 50.889451201 + ], + [ + 11.9467221, + 50.889281201 + ], + [ + 11.9459021, + 50.889199301 + ], + [ + 11.9445627, + 50.889110501 + ], + [ + 11.943795, + 50.889062901 + ], + [ + 11.9430924, + 50.889027301 + ], + [ + 11.9425033, + 50.889003301 + ], + [ + 11.9419825, + 50.888986501 + ], + [ + 11.9418473, + 50.888982801 + ], + [ + 11.941121, + 50.888967801 + ], + [ + 11.9392622, + 50.888965901 + ], + [ + 11.9381732, + 50.888989201 + ], + [ + 11.936215, + 50.889074701 + ], + [ + 11.934682, + 50.889183701 + ], + [ + 11.9327987, + 50.889367801 + ], + [ + 11.9308112, + 50.889624501 + ], + [ + 11.9299803, + 50.889745901 + ], + [ + 11.9279347, + 50.890076101 + ], + [ + 11.924319659, + 50.890659808 + ] + ] + } + }, + { + "identifier": "2026-014581--vi-bs.2026-03-22_23-00-00-000.devi-zus.2026-03-22_23-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.91098139015811,12.07816944028043,50.880665989053135,11.849128274852413", + "point": "50.91098139015811,12.07816944028043", + "startLcPosition": "100", + "impact": { + "lower": "Hermsdorfer Kreuz", + "upper": "Gera", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Gera - Hermsdorfer Kreuz", + "coordinate": { + "lat": 50.91098139015811, + "long": 12.07816944028043 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "26.04.26 von 23:00 bis 24:00 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 3.6 km hinter AS Gera und 0.2 km vor AK Hermsdorfer Kreuz", + "", + "L\u00e4nge: 17 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A4 von Hermsdorfer Kreuz (AK) nach Gera (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.07816944, + 50.91098139 + ], + [ + 12.0767453, + 50.910768501 + ], + [ + 12.0745997, + 50.910455801 + ], + [ + 12.0715241, + 50.910002101 + ], + [ + 12.0714151, + 50.909986201 + ], + [ + 12.069465, + 50.909695401 + ], + [ + 12.0686901, + 50.909585701 + ], + [ + 12.0668231, + 50.909319701 + ], + [ + 12.0661803, + 50.909220001 + ], + [ + 12.0655847, + 50.909132401 + ], + [ + 12.065003, + 50.909048701 + ], + [ + 12.064376, + 50.908957201 + ], + [ + 12.0641588, + 50.908928801 + ], + [ + 12.0631575, + 50.908813101 + ], + [ + 12.0619313, + 50.908661101 + ], + [ + 12.0607869, + 50.908528301 + ], + [ + 12.0596589, + 50.908396901 + ], + [ + 12.0586371, + 50.908277101 + ], + [ + 12.0576824, + 50.908171701 + ], + [ + 12.0564873, + 50.908023601 + ], + [ + 12.0544044, + 50.907786901 + ], + [ + 12.0521222, + 50.907521201 + ], + [ + 12.0511823, + 50.907418601 + ], + [ + 12.0501258, + 50.907306501 + ], + [ + 12.0496494, + 50.907250601 + ], + [ + 12.0489385, + 50.907191801 + ], + [ + 12.047906, + 50.907127401 + ], + [ + 12.0469485, + 50.907081801 + ], + [ + 12.0463156, + 50.907051901 + ], + [ + 12.0427917, + 50.906890501 + ], + [ + 12.0423854, + 50.906868501 + ], + [ + 12.0406041, + 50.906785101 + ], + [ + 12.0394753, + 50.906729301 + ], + [ + 12.0352534, + 50.906520701 + ], + [ + 12.0288292, + 50.906185301 + ], + [ + 12.0225253, + 50.905913501 + ], + [ + 12.0211419, + 50.905848901 + ], + [ + 12.0186475, + 50.905696701 + ], + [ + 12.0171601, + 50.905573601 + ], + [ + 12.0171067, + 50.905567101 + ], + [ + 12.0156689, + 50.905355801 + ], + [ + 12.014613, + 50.905188501 + ], + [ + 12.01417, + 50.905109501 + ], + [ + 12.0140807, + 50.905092301 + ], + [ + 12.0125878, + 50.904804101 + ], + [ + 12.0122313, + 50.904733801 + ], + [ + 12.0118326, + 50.904654301 + ], + [ + 12.0110894, + 50.904524101 + ], + [ + 12.0110625, + 50.904518901 + ], + [ + 12.0103384, + 50.904379301 + ], + [ + 12.0097312, + 50.904249201 + ], + [ + 12.0088915, + 50.904088001 + ], + [ + 12.0084405, + 50.904002501 + ], + [ + 12.0083308, + 50.903981701 + ], + [ + 12.0074069, + 50.903797601 + ], + [ + 12.0065629, + 50.903630001 + ], + [ + 12.0056942, + 50.903461401 + ], + [ + 12.004827, + 50.903290101 + ], + [ + 12.0038972, + 50.903107801 + ], + [ + 12.002937, + 50.902918101 + ], + [ + 12.002148, + 50.902758901 + ], + [ + 12.0017988, + 50.902692301 + ], + [ + 12.0014505, + 50.902626401 + ], + [ + 12.0009767, + 50.902529201 + ], + [ + 12.0005072, + 50.902424201 + ], + [ + 12.0000422, + 50.902311401 + ], + [ + 11.9997084, + 50.902224901 + ], + [ + 11.9993773, + 50.902134301 + ], + [ + 11.999049, + 50.902039701 + ], + [ + 11.9949578, + 50.900754001 + ], + [ + 11.9914291, + 50.899658301 + ], + [ + 11.9896038, + 50.899107701 + ], + [ + 11.9892607, + 50.899019401 + ], + [ + 11.9885291, + 50.898850301 + ], + [ + 11.9874492, + 50.898624601 + ], + [ + 11.9863434, + 50.898451001 + ], + [ + 11.9813164, + 50.897830001 + ], + [ + 11.9765805, + 50.897244201 + ], + [ + 11.9753066, + 50.897054401 + ], + [ + 11.9748134, + 50.896964201 + ], + [ + 11.9743216, + 50.896874301 + ], + [ + 11.9737722, + 50.896757801 + ], + [ + 11.9732393, + 50.896631701 + ], + [ + 11.9727498, + 50.896505801 + ], + [ + 11.9724591, + 50.896429201 + ], + [ + 11.9719712, + 50.896293601 + ], + [ + 11.9714765, + 50.896143501 + ], + [ + 11.9709509, + 50.895960901 + ], + [ + 11.9704279, + 50.895780801 + ], + [ + 11.9690317, + 50.895303301 + ], + [ + 11.9683439, + 50.895063501 + ], + [ + 11.9665832, + 50.894438101 + ], + [ + 11.9639735, + 50.893508301 + ], + [ + 11.9635417, + 50.893357201 + ], + [ + 11.9620112, + 50.892833701 + ], + [ + 11.9611181, + 50.892510101 + ], + [ + 11.9581841, + 50.891556701 + ], + [ + 11.9555686, + 50.890834801 + ], + [ + 11.9552169, + 50.890745001 + ], + [ + 11.9538611, + 50.890425601 + ], + [ + 11.9515376, + 50.889970901 + ], + [ + 11.9509179, + 50.889866401 + ], + [ + 11.9505577, + 50.889804401 + ], + [ + 11.9487637, + 50.889537801 + ], + [ + 11.9481675, + 50.889451201 + ], + [ + 11.9467221, + 50.889281201 + ], + [ + 11.9459021, + 50.889199301 + ], + [ + 11.9445627, + 50.889110501 + ], + [ + 11.943795, + 50.889062901 + ], + [ + 11.9430924, + 50.889027301 + ], + [ + 11.9425033, + 50.889003301 + ], + [ + 11.9419825, + 50.888986501 + ], + [ + 11.9418473, + 50.888982801 + ], + [ + 11.941121, + 50.888967801 + ], + [ + 11.9392622, + 50.888965901 + ], + [ + 11.9381732, + 50.888989201 + ], + [ + 11.936215, + 50.889074701 + ], + [ + 11.934682, + 50.889183701 + ], + [ + 11.9327987, + 50.889367801 + ], + [ + 11.9308112, + 50.889624501 + ], + [ + 11.9299803, + 50.889745901 + ], + [ + 11.9279347, + 50.890076101 + ], + [ + 11.9213668, + 50.891136501 + ], + [ + 11.9161692, + 50.891985101 + ], + [ + 11.9147467, + 50.892208101 + ], + [ + 11.9139692, + 50.892315401 + ], + [ + 11.913385, + 50.892387501 + ], + [ + 11.9119687, + 50.892520301 + ], + [ + 11.9078516, + 50.892763601 + ], + [ + 11.9011107, + 50.893125701 + ], + [ + 11.90052, + 50.893156301 + ], + [ + 11.9003412, + 50.893165801 + ], + [ + 11.8937398, + 50.893542801 + ], + [ + 11.8918964, + 50.893629301 + ], + [ + 11.8905764, + 50.893665201 + ], + [ + 11.8892895, + 50.893656401 + ], + [ + 11.8877814, + 50.893576301 + ], + [ + 11.887089, + 50.893518901 + ], + [ + 11.8862704, + 50.893429501 + ], + [ + 11.8857264, + 50.893359901 + ], + [ + 11.88466, + 50.893189401 + ], + [ + 11.8837228, + 50.893011301 + ], + [ + 11.8822849, + 50.892678301 + ], + [ + 11.8815044, + 50.892462701 + ], + [ + 11.8808508, + 50.892263001 + ], + [ + 11.8800549, + 50.891992001 + ], + [ + 11.8797229, + 50.891875101 + ], + [ + 11.879132, + 50.891644301 + ], + [ + 11.8786135, + 50.891441801 + ], + [ + 11.8777649, + 50.891062801 + ], + [ + 11.8770602, + 50.890710401 + ], + [ + 11.8763701, + 50.890359301 + ], + [ + 11.8752803, + 50.889782301 + ], + [ + 11.8748426, + 50.889546001 + ], + [ + 11.8739649, + 50.889076901 + ], + [ + 11.8716768, + 50.887842701 + ], + [ + 11.8690187, + 50.886417501 + ], + [ + 11.8688092, + 50.886303201 + ], + [ + 11.8685929, + 50.886185701 + ], + [ + 11.8651698, + 50.884349301 + ], + [ + 11.8646248, + 50.884064401 + ], + [ + 11.8640698, + 50.883787201 + ], + [ + 11.8634868, + 50.883513101 + ], + [ + 11.8631758, + 50.883372701 + ], + [ + 11.8626088, + 50.883130401 + ], + [ + 11.8621538, + 50.882950701 + ], + [ + 11.8617148, + 50.882793801 + ], + [ + 11.8612614, + 50.882638801 + ], + [ + 11.8609792, + 50.882547301 + ], + [ + 11.8605182, + 50.882411501 + ], + [ + 11.8601151, + 50.882302401 + ], + [ + 11.8594318, + 50.882153501 + ], + [ + 11.8571562, + 50.881695501 + ], + [ + 11.8566443, + 50.881606601 + ], + [ + 11.8564332, + 50.881568201 + ], + [ + 11.8554545, + 50.881424301 + ], + [ + 11.8547745, + 50.881328001 + ], + [ + 11.8543747, + 50.881278601 + ], + [ + 11.8498692, + 50.880752201 + ], + [ + 11.8495285, + 50.880712401 + ], + [ + 11.8493904, + 50.880696201 + ], + [ + 11.849128275, + 50.880665989 + ] + ] + } + }, + { + "identifier": "2026-009336--vi-fbm.2026-04-20_08-00-00-000.devi-zus.2026-03-31_08-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.89450045736552,12.140139989024913,50.84781459877112,12.339356849423458", + "point": "50.89450045736552,12.140139989024913", + "startLcPosition": "100", + "impact": { + "lower": "Landesgrenze", + "upper": "Gera", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Gera - Landesgrenze", + "coordinate": { + "lat": 50.89450045736552, + "long": 12.140139989024913 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 16:00 Uhr", + "", + "A4: Erfurt -> Chemnitz, zwischen 1.4 km hinter AS Gera und 1.4 km vor Landesgrenze", + "", + "L\u00e4nge: 15.49 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A4 Sperrung B7 im Bereich der AS Ronneburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.140139989, + 50.894500457 + ], + [ + 12.1402503, + 50.894411501 + ], + [ + 12.1438502, + 50.891508301 + ], + [ + 12.144554, + 50.890940701 + ], + [ + 12.1491137, + 50.887263201 + ], + [ + 12.1502539, + 50.886343901 + ], + [ + 12.1507636, + 50.885932901 + ], + [ + 12.1509731, + 50.885756801 + ], + [ + 12.1512752, + 50.885522001 + ], + [ + 12.1520363, + 50.884907301 + ], + [ + 12.1521191, + 50.884840501 + ], + [ + 12.1525875, + 50.884461601 + ], + [ + 12.1530455, + 50.884097901 + ], + [ + 12.1537587, + 50.883531601 + ], + [ + 12.1551325, + 50.882443601 + ], + [ + 12.155849, + 50.881923301 + ], + [ + 12.156238, + 50.881647401 + ], + [ + 12.1566927, + 50.881346701 + ], + [ + 12.1571472, + 50.881056801 + ], + [ + 12.1577425, + 50.880695701 + ], + [ + 12.157953, + 50.880571401 + ], + [ + 12.1583596, + 50.880345701 + ], + [ + 12.1588799, + 50.880065101 + ], + [ + 12.1594271, + 50.879784201 + ], + [ + 12.1600895, + 50.879463301 + ], + [ + 12.1607119, + 50.879183401 + ], + [ + 12.1613096, + 50.878924501 + ], + [ + 12.1619967, + 50.878646901 + ], + [ + 12.1625493, + 50.878433701 + ], + [ + 12.1632492, + 50.878183201 + ], + [ + 12.1636062, + 50.878064001 + ], + [ + 12.1640034, + 50.877934301 + ], + [ + 12.1644038, + 50.877806401 + ], + [ + 12.1647942, + 50.877690701 + ], + [ + 12.1655533, + 50.877474101 + ], + [ + 12.1663764, + 50.877259401 + ], + [ + 12.167168, + 50.877071301 + ], + [ + 12.1679143, + 50.876909501 + ], + [ + 12.168847, + 50.876729401 + ], + [ + 12.1695598, + 50.876604901 + ], + [ + 12.1706327, + 50.876443701 + ], + [ + 12.1716094, + 50.876321901 + ], + [ + 12.1727604, + 50.876196301 + ], + [ + 12.1737943, + 50.876093801 + ], + [ + 12.1776121, + 50.875741901 + ], + [ + 12.1842433, + 50.875128701 + ], + [ + 12.1851667, + 50.875042301 + ], + [ + 12.1863066, + 50.874935901 + ], + [ + 12.1867843, + 50.874892701 + ], + [ + 12.1918542, + 50.874419201 + ], + [ + 12.1985609, + 50.873811801 + ], + [ + 12.2058748, + 50.873117201 + ], + [ + 12.2094503, + 50.872785201 + ], + [ + 12.2118561, + 50.872561501 + ], + [ + 12.212312, + 50.872516501 + ], + [ + 12.2131027, + 50.872439801 + ], + [ + 12.2165039, + 50.872112301 + ], + [ + 12.2169193, + 50.872077601 + ], + [ + 12.2170632, + 50.872065601 + ], + [ + 12.2174117, + 50.872036501 + ], + [ + 12.2181429, + 50.871984101 + ], + [ + 12.2191031, + 50.871906201 + ], + [ + 12.2200228, + 50.871850101 + ], + [ + 12.2218184, + 50.871755301 + ], + [ + 12.2224349, + 50.871724601 + ], + [ + 12.2230023, + 50.871690101 + ], + [ + 12.223902, + 50.871644201 + ], + [ + 12.2244773, + 50.871619201 + ], + [ + 12.2251546, + 50.871589201 + ], + [ + 12.2274764, + 50.871472201 + ], + [ + 12.228674, + 50.871404101 + ], + [ + 12.2313216, + 50.871279801 + ], + [ + 12.2336591, + 50.871161001 + ], + [ + 12.2339234, + 50.871148101 + ], + [ + 12.2340713, + 50.871140501 + ], + [ + 12.2369069, + 50.870993901 + ], + [ + 12.2396729, + 50.870852601 + ], + [ + 12.2410468, + 50.870788201 + ], + [ + 12.2425904, + 50.870715801 + ], + [ + 12.2449286, + 50.870601301 + ], + [ + 12.2453569, + 50.870577301 + ], + [ + 12.2471076, + 50.870475901 + ], + [ + 12.248131, + 50.870402201 + ], + [ + 12.2489119, + 50.870346001 + ], + [ + 12.2509257, + 50.870201501 + ], + [ + 12.2522819, + 50.870095701 + ], + [ + 12.255341, + 50.869816801 + ], + [ + 12.2565469, + 50.869706901 + ], + [ + 12.2568606, + 50.869668601 + ], + [ + 12.2585632, + 50.869445201 + ], + [ + 12.2590264, + 50.869384101 + ], + [ + 12.2600589, + 50.869200201 + ], + [ + 12.2615273, + 50.868936901 + ], + [ + 12.262747, + 50.868653801 + ], + [ + 12.263349, + 50.868516801 + ], + [ + 12.264548, + 50.868211301 + ], + [ + 12.2659351, + 50.867822901 + ], + [ + 12.2668859, + 50.867563501 + ], + [ + 12.2684616, + 50.867101901 + ], + [ + 12.269416, + 50.866852401 + ], + [ + 12.2712587, + 50.866360901 + ], + [ + 12.272285, + 50.866097901 + ], + [ + 12.2732107, + 50.865882701 + ], + [ + 12.274692, + 50.865568301 + ], + [ + 12.2750453, + 50.865496601 + ], + [ + 12.2753219, + 50.865440401 + ], + [ + 12.2768507, + 50.865147501 + ], + [ + 12.2783462, + 50.864881001 + ], + [ + 12.2798071, + 50.864606301 + ], + [ + 12.2817476, + 50.864242901 + ], + [ + 12.2827447, + 50.864065901 + ], + [ + 12.2854244, + 50.863577801 + ], + [ + 12.2864011, + 50.863397001 + ], + [ + 12.2873752, + 50.863228001 + ], + [ + 12.2884731, + 50.863046301 + ], + [ + 12.2900926, + 50.862778401 + ], + [ + 12.2958202, + 50.861997401 + ], + [ + 12.2985509, + 50.861579601 + ], + [ + 12.301347, + 50.861078201 + ], + [ + 12.3024971, + 50.860831601 + ], + [ + 12.3030201, + 50.860720201 + ], + [ + 12.3031927, + 50.860683401 + ], + [ + 12.3058279, + 50.860047401 + ], + [ + 12.3077035, + 50.859547701 + ], + [ + 12.3081737, + 50.859423001 + ], + [ + 12.3095423, + 50.859005001 + ], + [ + 12.3109883, + 50.858542401 + ], + [ + 12.3116156, + 50.858334801 + ], + [ + 12.3125087, + 50.858049901 + ], + [ + 12.3142783, + 50.857428101 + ], + [ + 12.3156416, + 50.856945901 + ], + [ + 12.3174347, + 50.856307301 + ], + [ + 12.3178543, + 50.856157801 + ], + [ + 12.3184901, + 50.855934701 + ], + [ + 12.3206584, + 50.855196901 + ], + [ + 12.3222796, + 50.854680001 + ], + [ + 12.3249794, + 50.853905201 + ], + [ + 12.3277266, + 50.853132701 + ], + [ + 12.3284484, + 50.852904101 + ], + [ + 12.3298234, + 50.852468801 + ], + [ + 12.3313763, + 50.851923701 + ], + [ + 12.3329016, + 50.851314401 + ], + [ + 12.3340487, + 50.850806901 + ], + [ + 12.3346467, + 50.850515301 + ], + [ + 12.3353245, + 50.850183001 + ], + [ + 12.3355063, + 50.850082901 + ], + [ + 12.3366409, + 50.849439301 + ], + [ + 12.3369826, + 50.849237601 + ], + [ + 12.337439, + 50.848965401 + ], + [ + 12.3381722, + 50.848523001 + ], + [ + 12.3385336, + 50.848307901 + ], + [ + 12.3392646, + 50.847867301 + ], + [ + 12.339356849, + 50.847814599 + ] + ] + } + }, + { + "identifier": "2026-016446--vi-fbm.2026-04-20_22-00-00-000.devi-zus.2026-04-20_22-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.894943374964036,12.139880924710306,50.89842739109535,12.135383375637351", + "point": "50.894943374964036,12.139880924710306", + "startLcPosition": "101", + "impact": { + "lower": "Gera", + "upper": "Gera-Leumnitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Gera-Leumnitz - Gera", + "coordinate": { + "lat": 50.894943374964036, + "long": 12.139880924710306 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 22:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 22:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 22:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 22:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A4: Chemnitz -> Erfurt, zwischen 1.3 km hinter AS Gera-Leumnitz und 0.8 km vor AS Gera", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A4 AS Gera FR Aachen (km 132,0), GST-Umbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.139880925, + 50.894943375 + ], + [ + 12.1383596, + 50.896161101 + ], + [ + 12.1381689, + 50.896312301 + ], + [ + 12.137894, + 50.896530001 + ], + [ + 12.1367295, + 50.897457801 + ], + [ + 12.1365519, + 50.897595401 + ], + [ + 12.1360435, + 50.897971901 + ], + [ + 12.1358639, + 50.898101901 + ], + [ + 12.135383376, + 50.898427391 + ] + ] + } + }, + { + "identifier": "2023-001246--vi-bs.2025-12-08_08-00-00-000.devi-zus.2024-02-19_07-00-00-000.f_009.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.871713267319635,12.222621302061416,50.8360510384834,12.369951210871028", + "point": "50.871713267319635,12.222621302061416", + "startLcPosition": "101", + "impact": { + "lower": "Meerane", + "upper": "Gera-Leumnitz", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Gera-Leumnitz - Meerane", + "startTimestamp": "2025-12-08T08:00:00+01:00", + "coordinate": { + "lat": 50.871713267319635, + "long": 12.222621302061416 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.12.25 um 08:00 Uhr", + "Ende: 15.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.05.26)", + "", + "A4: Erfurt -> Chemnitz, zwischen 5.5 km hinter AS Gera-Leumnitz und 5.8 km vor AS Meerane", + "", + "L\u00e4nge: 11.32 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "4 HDF_2023-001246_bRF_km 114,1 - 123,0_ERN Beton-FB " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.222621302, + 50.871713267 + ], + [ + 12.2230023, + 50.871690101 + ], + [ + 12.223902, + 50.871644201 + ], + [ + 12.2244773, + 50.871619201 + ], + [ + 12.2251546, + 50.871589201 + ], + [ + 12.2274764, + 50.871472201 + ], + [ + 12.228674, + 50.871404101 + ], + [ + 12.2313216, + 50.871279801 + ], + [ + 12.2336591, + 50.871161001 + ], + [ + 12.2339234, + 50.871148101 + ], + [ + 12.2340713, + 50.871140501 + ], + [ + 12.2369069, + 50.870993901 + ], + [ + 12.2396729, + 50.870852601 + ], + [ + 12.2410468, + 50.870788201 + ], + [ + 12.2425904, + 50.870715801 + ], + [ + 12.2449286, + 50.870601301 + ], + [ + 12.2453569, + 50.870577301 + ], + [ + 12.2471076, + 50.870475901 + ], + [ + 12.248131, + 50.870402201 + ], + [ + 12.2489119, + 50.870346001 + ], + [ + 12.2509257, + 50.870201501 + ], + [ + 12.2522819, + 50.870095701 + ], + [ + 12.255341, + 50.869816801 + ], + [ + 12.2565469, + 50.869706901 + ], + [ + 12.2568606, + 50.869668601 + ], + [ + 12.2585632, + 50.869445201 + ], + [ + 12.2590264, + 50.869384101 + ], + [ + 12.2600589, + 50.869200201 + ], + [ + 12.2615273, + 50.868936901 + ], + [ + 12.262747, + 50.868653801 + ], + [ + 12.263349, + 50.868516801 + ], + [ + 12.264548, + 50.868211301 + ], + [ + 12.2659351, + 50.867822901 + ], + [ + 12.2668859, + 50.867563501 + ], + [ + 12.2684616, + 50.867101901 + ], + [ + 12.269416, + 50.866852401 + ], + [ + 12.2712587, + 50.866360901 + ], + [ + 12.272285, + 50.866097901 + ], + [ + 12.2732107, + 50.865882701 + ], + [ + 12.274692, + 50.865568301 + ], + [ + 12.2750453, + 50.865496601 + ], + [ + 12.2753219, + 50.865440401 + ], + [ + 12.2768507, + 50.865147501 + ], + [ + 12.2783462, + 50.864881001 + ], + [ + 12.2798071, + 50.864606301 + ], + [ + 12.2817476, + 50.864242901 + ], + [ + 12.2827447, + 50.864065901 + ], + [ + 12.2854244, + 50.863577801 + ], + [ + 12.2864011, + 50.863397001 + ], + [ + 12.2873752, + 50.863228001 + ], + [ + 12.2884731, + 50.863046301 + ], + [ + 12.2900926, + 50.862778401 + ], + [ + 12.2958202, + 50.861997401 + ], + [ + 12.2985509, + 50.861579601 + ], + [ + 12.301347, + 50.861078201 + ], + [ + 12.3024971, + 50.860831601 + ], + [ + 12.3030201, + 50.860720201 + ], + [ + 12.3031927, + 50.860683401 + ], + [ + 12.3058279, + 50.860047401 + ], + [ + 12.3077035, + 50.859547701 + ], + [ + 12.3081737, + 50.859423001 + ], + [ + 12.3095423, + 50.859005001 + ], + [ + 12.3109883, + 50.858542401 + ], + [ + 12.3116156, + 50.858334801 + ], + [ + 12.3125087, + 50.858049901 + ], + [ + 12.3142783, + 50.857428101 + ], + [ + 12.3156416, + 50.856945901 + ], + [ + 12.3174347, + 50.856307301 + ], + [ + 12.3178543, + 50.856157801 + ], + [ + 12.3184901, + 50.855934701 + ], + [ + 12.3206584, + 50.855196901 + ], + [ + 12.3222796, + 50.854680001 + ], + [ + 12.3249794, + 50.853905201 + ], + [ + 12.3277266, + 50.853132701 + ], + [ + 12.3284484, + 50.852904101 + ], + [ + 12.3298234, + 50.852468801 + ], + [ + 12.3313763, + 50.851923701 + ], + [ + 12.3329016, + 50.851314401 + ], + [ + 12.3340487, + 50.850806901 + ], + [ + 12.3346467, + 50.850515301 + ], + [ + 12.3353245, + 50.850183001 + ], + [ + 12.3355063, + 50.850082901 + ], + [ + 12.3366409, + 50.849439301 + ], + [ + 12.3369826, + 50.849237601 + ], + [ + 12.337439, + 50.848965401 + ], + [ + 12.3381722, + 50.848523001 + ], + [ + 12.3385336, + 50.848307901 + ], + [ + 12.3392646, + 50.847867301 + ], + [ + 12.3409549, + 50.846901601 + ], + [ + 12.3421459, + 50.846286101 + ], + [ + 12.3431063, + 50.845819501 + ], + [ + 12.3441114, + 50.845378801 + ], + [ + 12.3448322, + 50.845086901 + ], + [ + 12.3450118, + 50.845014201 + ], + [ + 12.3503644, + 50.842853701 + ], + [ + 12.3548182, + 50.841067801 + ], + [ + 12.3561187, + 50.840546301 + ], + [ + 12.3569256, + 50.840222701 + ], + [ + 12.3593701, + 50.839242301 + ], + [ + 12.3610023, + 50.838595101 + ], + [ + 12.3626574, + 50.837959301 + ], + [ + 12.3629741, + 50.837847701 + ], + [ + 12.3636664, + 50.837603601 + ], + [ + 12.3646708, + 50.837282301 + ], + [ + 12.3666905, + 50.836716201 + ], + [ + 12.3680969, + 50.836394301 + ], + [ + 12.3694199, + 50.836135801 + ], + [ + 12.3695463, + 50.836111101 + ], + [ + 12.369951211, + 50.836051038 + ] + ] + } + }, + { + "identifier": "2026-009336--vi-fbm.2026-04-20_08-00-00-000.devi-zus.2026-03-31_08-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.87094076811103,12.240888752073886,50.887515874549,12.149083762576844", + "point": "50.87094076811103,12.240888752073886", + "startLcPosition": "103", + "impact": { + "lower": "Gera", + "upper": "Altenburger Land", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Altenburger Land - Gera", + "coordinate": { + "lat": 50.87094076811103, + "long": 12.240888752073886 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 16:00 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 5.1 km hinter Altenburger Land und 2.4 km vor AS Gera", + "", + "L\u00e4nge: 6.99 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A4 Sperrung B7 im Bereich der AS Ronneburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.240888752, + 50.870940768 + ], + [ + 12.2392058, + 50.871025501 + ], + [ + 12.2363354, + 50.871166201 + ], + [ + 12.235451, + 50.871209601 + ], + [ + 12.2340002, + 50.871284401 + ], + [ + 12.2339657, + 50.871286201 + ], + [ + 12.233878, + 50.871288901 + ], + [ + 12.2335926, + 50.871300701 + ], + [ + 12.232779, + 50.871342201 + ], + [ + 12.2316262, + 50.871404801 + ], + [ + 12.2304336, + 50.871463101 + ], + [ + 12.2298485, + 50.871487601 + ], + [ + 12.2278646, + 50.871585001 + ], + [ + 12.2274701, + 50.871602901 + ], + [ + 12.2269985, + 50.871623601 + ], + [ + 12.2234335, + 50.871799601 + ], + [ + 12.2200582, + 50.871987101 + ], + [ + 12.219582, + 50.872013601 + ], + [ + 12.2174415, + 50.872175401 + ], + [ + 12.217098, + 50.872205401 + ], + [ + 12.2169543, + 50.872218001 + ], + [ + 12.2165581, + 50.872252601 + ], + [ + 12.2154078, + 50.872356001 + ], + [ + 12.2140808, + 50.872483801 + ], + [ + 12.213079, + 50.872591801 + ], + [ + 12.2123476, + 50.872672701 + ], + [ + 12.2118929, + 50.872716001 + ], + [ + 12.205837, + 50.873276001 + ], + [ + 12.2019199, + 50.873637601 + ], + [ + 12.1985629, + 50.873947501 + ], + [ + 12.1918309, + 50.874574901 + ], + [ + 12.1867597, + 50.875036101 + ], + [ + 12.1862838, + 50.875078801 + ], + [ + 12.1842595, + 50.875277001 + ], + [ + 12.1791669, + 50.875739801 + ], + [ + 12.1776582, + 50.875888101 + ], + [ + 12.1752025, + 50.876105701 + ], + [ + 12.1729471, + 50.876321801 + ], + [ + 12.1716428, + 50.876461801 + ], + [ + 12.1706774, + 50.876585001 + ], + [ + 12.1696166, + 50.876744101 + ], + [ + 12.1689013, + 50.876865301 + ], + [ + 12.167963, + 50.877046801 + ], + [ + 12.1672373, + 50.877204401 + ], + [ + 12.1664574, + 50.877390401 + ], + [ + 12.1656594, + 50.877597201 + ], + [ + 12.1648844, + 50.877818301 + ], + [ + 12.1644889, + 50.877941701 + ], + [ + 12.1641193, + 50.878055801 + ], + [ + 12.1637224, + 50.878183301 + ], + [ + 12.1633585, + 50.878309401 + ], + [ + 12.1626649, + 50.878557601 + ], + [ + 12.162117, + 50.878764101 + ], + [ + 12.1614312, + 50.879042101 + ], + [ + 12.160843, + 50.879293101 + ], + [ + 12.1602251, + 50.879578801 + ], + [ + 12.1595667, + 50.879892101 + ], + [ + 12.1590172, + 50.880172801 + ], + [ + 12.1584968, + 50.880454801 + ], + [ + 12.1581265, + 50.880664701 + ], + [ + 12.1578931, + 50.880798601 + ], + [ + 12.1573098, + 50.881149501 + ], + [ + 12.1568447, + 50.881448001 + ], + [ + 12.156414, + 50.881734401 + ], + [ + 12.1560116, + 50.882014301 + ], + [ + 12.155302, + 50.882535901 + ], + [ + 12.1535071, + 50.883946001 + ], + [ + 12.153438, + 50.884003401 + ], + [ + 12.152293, + 50.884926101 + ], + [ + 12.150606, + 50.886288001 + ], + [ + 12.1503319, + 50.886504901 + ], + [ + 12.1496255, + 50.887081701 + ], + [ + 12.1492585, + 50.887375201 + ], + [ + 12.1491276, + 50.887480601 + ], + [ + 12.149083763, + 50.887515875 + ] + ] + } + }, + { + "identifier": "2023-001246--vi-bs.2026-04-20_08-00-00-000.devi-zus.2024-02-19_07-00-00-000.f_009.de107", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.86765746627534,12.267180588122407,50.87014833136283,12.253298386342854", + "point": "50.86765746627534,12.267180588122407", + "startLcPosition": "103", + "impact": { + "lower": "Ronneburg", + "upper": "Altenburger Land", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Altenburger Land - Ronneburg", + "coordinate": { + "lat": 50.86765746627534, + "long": 12.267180588122407 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 13:00 bis 18:00 Uhr", + "23.04.26 von 08:00 bis 18:00 Uhr", + "24.04.26 von 08:00 bis 18:00 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 3.2 km hinter Altenburger Land und 1.8 km vor AS Ronneburg", + "", + "L\u00e4nge: 1.02 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 HDF_2023-001246_bRF_km 114,1 - 123,0_ERN Beton-FB " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.267180588, + 50.867657466 + ], + [ + 12.266971, + 50.867718701 + ], + [ + 12.2660693, + 50.868002301 + ], + [ + 12.2654155, + 50.868184401 + ], + [ + 12.2649051, + 50.868326501 + ], + [ + 12.2643019, + 50.868489401 + ], + [ + 12.2634757, + 50.868712401 + ], + [ + 12.2629459, + 50.868846801 + ], + [ + 12.2616906, + 50.869111801 + ], + [ + 12.2616112, + 50.869127801 + ], + [ + 12.259953, + 50.869445001 + ], + [ + 12.2592667, + 50.869548501 + ], + [ + 12.2588421, + 50.869607001 + ], + [ + 12.2568188, + 50.869856701 + ], + [ + 12.2564924, + 50.869887901 + ], + [ + 12.2554798, + 50.869979601 + ], + [ + 12.2553882, + 50.869988201 + ], + [ + 12.253298386, + 50.870148331 + ] + ] + } + }, + { + "identifier": "2023-001246--vi-bs.2026-04-20_08-00-00-000.devi-zus.2024-02-19_07-00-00-000.f_009.de105", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.86765746627534,12.267180588122407,50.87014833136283,12.253298386342854", + "point": "50.86765746627534,12.267180588122407", + "startLcPosition": "103", + "impact": { + "lower": "Ronneburg", + "upper": "Altenburger Land", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Altenburger Land - Ronneburg", + "coordinate": { + "lat": 50.86765746627534, + "long": 12.267180588122407 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 18:00 Uhr", + "21.04.26 von 08:00 bis 18:00 Uhr", + "22.04.26 von 08:00 bis 13:00 Uhr", + "", + "A4: Chemnitz -> Erfurt, zwischen 3.2 km hinter Altenburger Land und 1.8 km vor AS Ronneburg", + "", + "L\u00e4nge: 1.02 km | Maximale Durchfahrtsbreite: 7 m", + "", + "4 HDF_2023-001246_bRF_km 114,1 - 123,0_ERN Beton-FB " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.267180588, + 50.867657466 + ], + [ + 12.266971, + 50.867718701 + ], + [ + 12.2660693, + 50.868002301 + ], + [ + 12.2654155, + 50.868184401 + ], + [ + 12.2649051, + 50.868326501 + ], + [ + 12.2643019, + 50.868489401 + ], + [ + 12.2634757, + 50.868712401 + ], + [ + 12.2629459, + 50.868846801 + ], + [ + 12.2616906, + 50.869111801 + ], + [ + 12.2616112, + 50.869127801 + ], + [ + 12.259953, + 50.869445001 + ], + [ + 12.2592667, + 50.869548501 + ], + [ + 12.2588421, + 50.869607001 + ], + [ + 12.2568188, + 50.869856701 + ], + [ + 12.2564924, + 50.869887901 + ], + [ + 12.2554798, + 50.869979601 + ], + [ + 12.2553882, + 50.869988201 + ], + [ + 12.253298386, + 50.870148331 + ] + ] + } + }, + { + "identifier": "2023-001246--vi-bs.2025-12-08_08-00-00-000.devi-zus.2024-02-19_07-00-00-000.f_009.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.835104472893896,12.38340533924669,50.86163972103647,12.299078419767861", + "point": "50.835104472893896,12.38340533924669", + "startLcPosition": "106", + "impact": { + "lower": "Ronneburg", + "upper": "Meerane", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | Meerane - Ronneburg", + "startTimestamp": "2025-12-08T08:00:00+01:00", + "coordinate": { + "lat": 50.835104472893896, + "long": 12.38340533924669 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.12.25 um 08:00 Uhr", + "Ende: 15.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.05.26)", + "", + "A4: Chemnitz -> Erfurt, zwischen 4.8 km hinter AS Meerane und 5.2 km vor AS Ronneburg", + "", + "L\u00e4nge: 6.74 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "4 HDF_2023-001246_bRF_km 114,1 - 123,0_ERN Beton-FB " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.383405339, + 50.835104473 + ], + [ + 12.3733771, + 50.835776801 + ], + [ + 12.3714752, + 50.835972001 + ], + [ + 12.3701415, + 50.836162501 + ], + [ + 12.3696255, + 50.836247301 + ], + [ + 12.3695795, + 50.836256001 + ], + [ + 12.368193, + 50.836518901 + ], + [ + 12.3668088, + 50.836837401 + ], + [ + 12.3647645, + 50.837404301 + ], + [ + 12.3639105, + 50.837679601 + ], + [ + 12.3630977, + 50.837965401 + ], + [ + 12.3628065, + 50.838066401 + ], + [ + 12.3612482, + 50.838658601 + ], + [ + 12.3597217, + 50.839267001 + ], + [ + 12.356662, + 50.840489801 + ], + [ + 12.3562277, + 50.840660701 + ], + [ + 12.3505155, + 50.842947101 + ], + [ + 12.3491467, + 50.843504601 + ], + [ + 12.3452033, + 50.845110701 + ], + [ + 12.3449889, + 50.845206101 + ], + [ + 12.344249, + 50.845505701 + ], + [ + 12.3432462, + 50.845924801 + ], + [ + 12.3422898, + 50.846383501 + ], + [ + 12.340696, + 50.847227701 + ], + [ + 12.3394448, + 50.847957701 + ], + [ + 12.3382622, + 50.848652001 + ], + [ + 12.3374709, + 50.849129301 + ], + [ + 12.3365767, + 50.849664701 + ], + [ + 12.3365426, + 50.849685101 + ], + [ + 12.3359608, + 50.850019101 + ], + [ + 12.3356383, + 50.850189401 + ], + [ + 12.3354523, + 50.850286101 + ], + [ + 12.3348075, + 50.850603801 + ], + [ + 12.3339508, + 50.851022501 + ], + [ + 12.3337957, + 50.851091201 + ], + [ + 12.3330356, + 50.851427801 + ], + [ + 12.331502, + 50.852026301 + ], + [ + 12.3299176, + 50.852587801 + ], + [ + 12.3282494, + 50.853112001 + ], + [ + 12.327902, + 50.853221201 + ], + [ + 12.3251188, + 50.854017501 + ], + [ + 12.3225316, + 50.854771401 + ], + [ + 12.3223971, + 50.854810601 + ], + [ + 12.3217126, + 50.855025101 + ], + [ + 12.3202993, + 50.855468101 + ], + [ + 12.3183182, + 50.856141101 + ], + [ + 12.3157771, + 50.857052001 + ], + [ + 12.314324, + 50.857572801 + ], + [ + 12.3133984, + 50.857898401 + ], + [ + 12.3125544, + 50.858177401 + ], + [ + 12.3112372, + 50.858619701 + ], + [ + 12.3106568, + 50.858812901 + ], + [ + 12.3095718, + 50.859149701 + ], + [ + 12.3092078, + 50.859256401 + ], + [ + 12.3077407, + 50.859686401 + ], + [ + 12.3058434, + 50.860194901 + ], + [ + 12.3033308, + 50.860792301 + ], + [ + 12.3031927, + 50.860824701 + ], + [ + 12.3030293, + 50.860862501 + ], + [ + 12.3025844, + 50.860962801 + ], + [ + 12.3024222, + 50.860995301 + ], + [ + 12.3002295, + 50.861435201 + ], + [ + 12.29907842, + 50.861639721 + ] + ] + } + }, + { + "identifier": "2024-013510--vi-bs.2026-03-16_00-00-00-000.devi-zus.2024-04-08_07-00-00-000_001.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.83784293875669,12.496418267965565,50.81334485309176,12.678750091949391", + "point": "50.83784293875669,12.496418267965565", + "startLcPosition": "107", + "impact": { + "lower": "W\u00fcstenbrand", + "upper": "Glauchau-West", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Glauchau-West - W\u00fcstenbrand", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 50.83784293875669, + "long": 12.496418267965565 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 21.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.12.26)", + "", + "A4: Erfurt -> Chemnitz, zwischen 0.8 km hinter AS Glauchau-West und 5.8 km vor AS W\u00fcstenbrand", + "", + "L\u00e4nge: 13.86 km | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A4-West FBE zw. AS Glauchau-West bis AS Hohenstein-Ernstthal (km 101,70-91,00) RiFa Aachen - Teil 1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.496418268, + 50.837842939 + ], + [ + 12.4966425, + 50.837930701 + ], + [ + 12.4975323, + 50.838245401 + ], + [ + 12.4984496, + 50.838545101 + ], + [ + 12.4992462, + 50.838782801 + ], + [ + 12.5000492, + 50.839006401 + ], + [ + 12.5007973, + 50.839199901 + ], + [ + 12.5008475, + 50.839212101 + ], + [ + 12.5011306, + 50.839280201 + ], + [ + 12.5020748, + 50.839488601 + ], + [ + 12.5029042, + 50.839655401 + ], + [ + 12.5035727, + 50.839778701 + ], + [ + 12.5041223, + 50.839869801 + ], + [ + 12.5048733, + 50.839983101 + ], + [ + 12.5062922, + 50.840160601 + ], + [ + 12.5068268, + 50.840217201 + ], + [ + 12.5072975, + 50.840261801 + ], + [ + 12.5086621, + 50.840364701 + ], + [ + 12.5103006, + 50.840466301 + ], + [ + 12.5113733, + 50.840533101 + ], + [ + 12.5121298, + 50.840576901 + ], + [ + 12.5144353, + 50.840724801 + ], + [ + 12.5151933, + 50.840773301 + ], + [ + 12.5161237, + 50.840832801 + ], + [ + 12.5176633, + 50.840923301 + ], + [ + 12.5180823, + 50.840954401 + ], + [ + 12.518646, + 50.840990601 + ], + [ + 12.5200509, + 50.841080801 + ], + [ + 12.5214259, + 50.841181101 + ], + [ + 12.5220767, + 50.841228601 + ], + [ + 12.5258556, + 50.841556001 + ], + [ + 12.5288826, + 50.841858801 + ], + [ + 12.5296408, + 50.841939101 + ], + [ + 12.533626, + 50.842342701 + ], + [ + 12.5358272, + 50.842571001 + ], + [ + 12.5389287, + 50.842892601 + ], + [ + 12.5401836, + 50.843023501 + ], + [ + 12.5428884, + 50.843300301 + ], + [ + 12.5429195, + 50.843303701 + ], + [ + 12.5439681, + 50.843407601 + ], + [ + 12.5451518, + 50.843512701 + ], + [ + 12.5460895, + 50.843583501 + ], + [ + 12.5475394, + 50.843648901 + ], + [ + 12.5484423, + 50.843680401 + ], + [ + 12.5498981, + 50.843708901 + ], + [ + 12.5506178, + 50.843719601 + ], + [ + 12.5561372, + 50.843788701 + ], + [ + 12.5563209, + 50.843791001 + ], + [ + 12.5569773, + 50.843802201 + ], + [ + 12.5594448, + 50.843838001 + ], + [ + 12.5596937, + 50.843842701 + ], + [ + 12.5634531, + 50.843913701 + ], + [ + 12.5639208, + 50.843922001 + ], + [ + 12.5643057, + 50.843927601 + ], + [ + 12.5699637, + 50.843999301 + ], + [ + 12.5710847, + 50.843996701 + ], + [ + 12.5722403, + 50.843966101 + ], + [ + 12.5731729, + 50.843926001 + ], + [ + 12.57411, + 50.843858601 + ], + [ + 12.5752289, + 50.843746401 + ], + [ + 12.5763652, + 50.843619401 + ], + [ + 12.5771012, + 50.843524601 + ], + [ + 12.5778409, + 50.843408701 + ], + [ + 12.5788052, + 50.843235301 + ], + [ + 12.5794644, + 50.843101101 + ], + [ + 12.5805081, + 50.842864501 + ], + [ + 12.5818944, + 50.842521301 + ], + [ + 12.5836618, + 50.841986101 + ], + [ + 12.5851369, + 50.841448501 + ], + [ + 12.5865149, + 50.840884501 + ], + [ + 12.5880044, + 50.840206901 + ], + [ + 12.5893891, + 50.839471301 + ], + [ + 12.5900175, + 50.839104601 + ], + [ + 12.5906299, + 50.838722401 + ], + [ + 12.591275, + 50.838299901 + ], + [ + 12.591902, + 50.837868801 + ], + [ + 12.5951195, + 50.835599101 + ], + [ + 12.5952464, + 50.835509101 + ], + [ + 12.5964107, + 50.834686201 + ], + [ + 12.5988373, + 50.832971101 + ], + [ + 12.5995685, + 50.832473101 + ], + [ + 12.6000268, + 50.832175701 + ], + [ + 12.6003194, + 50.831985801 + ], + [ + 12.6015931, + 50.831227301 + ], + [ + 12.6024776, + 50.830754901 + ], + [ + 12.6033953, + 50.830304101 + ], + [ + 12.6045335, + 50.829794301 + ], + [ + 12.6056317, + 50.829351501 + ], + [ + 12.6064361, + 50.829051801 + ], + [ + 12.6080296, + 50.828523601 + ], + [ + 12.6096579, + 50.828065401 + ], + [ + 12.6107904, + 50.827791201 + ], + [ + 12.6119346, + 50.827538601 + ], + [ + 12.6169877, + 50.826490501 + ], + [ + 12.6224126, + 50.825360201 + ], + [ + 12.6238731, + 50.825061701 + ], + [ + 12.6251315, + 50.824775601 + ], + [ + 12.6259856, + 50.824559901 + ], + [ + 12.6269702, + 50.824300601 + ], + [ + 12.628136, + 50.823963401 + ], + [ + 12.6295777, + 50.823492801 + ], + [ + 12.6309912, + 50.822982301 + ], + [ + 12.6342577, + 50.821730401 + ], + [ + 12.6357901, + 50.821159901 + ], + [ + 12.6373701, + 50.820637201 + ], + [ + 12.6389693, + 50.820149501 + ], + [ + 12.6399563, + 50.819873801 + ], + [ + 12.6409592, + 50.819614901 + ], + [ + 12.6417755, + 50.819420501 + ], + [ + 12.6426, + 50.819235401 + ], + [ + 12.6440421, + 50.818943101 + ], + [ + 12.6455219, + 50.818681301 + ], + [ + 12.646036, + 50.818599501 + ], + [ + 12.6466463, + 50.818508101 + ], + [ + 12.6470432, + 50.818448701 + ], + [ + 12.6473254, + 50.818408201 + ], + [ + 12.6489519, + 50.818176901 + ], + [ + 12.6493434, + 50.818119201 + ], + [ + 12.6510071, + 50.817874101 + ], + [ + 12.6526707, + 50.817608701 + ], + [ + 12.6542104, + 50.817343401 + ], + [ + 12.65686, + 50.816856501 + ], + [ + 12.6587852, + 50.816465401 + ], + [ + 12.664271, + 50.815300001 + ], + [ + 12.667647, + 50.814582601 + ], + [ + 12.6681449, + 50.814477901 + ], + [ + 12.6695529, + 50.814177001 + ], + [ + 12.6710265, + 50.813895501 + ], + [ + 12.6724242, + 50.813680901 + ], + [ + 12.673317, + 50.813571801 + ], + [ + 12.6742166, + 50.813485801 + ], + [ + 12.6750683, + 50.813428101 + ], + [ + 12.6759307, + 50.813383001 + ], + [ + 12.6765965, + 50.813364201 + ], + [ + 12.6772641, + 50.813354901 + ], + [ + 12.6786267, + 50.813346001 + ], + [ + 12.678750092, + 50.813344853 + ] + ] + } + }, + { + "identifier": "2024-013510--vi-bs.2026-04-20_00-00-00-000.devi-zus.2024-04-08_07-00-00-000_001.de13", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.83784293875669,12.496418267965565,50.81334485309176,12.678750091949391", + "point": "50.83784293875669,12.496418267965565", + "startLcPosition": "107", + "impact": { + "lower": "W\u00fcstenbrand", + "upper": "Glauchau-West", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Glauchau-West - W\u00fcstenbrand", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 50.83784293875669, + "long": 12.496418267965565 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 07.07.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.12.26)", + "", + "A4: Erfurt -> Chemnitz, zwischen 0.8 km hinter AS Glauchau-West und 5.8 km vor AS W\u00fcstenbrand", + "", + "L\u00e4nge: 13.86 km | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A4-West FBE zw. AS Glauchau-West bis AS Hohenstein-Ernstthal (km 101,70-91,00) RiFa Aachen - Teil 1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.496418268, + 50.837842939 + ], + [ + 12.4966425, + 50.837930701 + ], + [ + 12.4975323, + 50.838245401 + ], + [ + 12.4984496, + 50.838545101 + ], + [ + 12.4992462, + 50.838782801 + ], + [ + 12.5000492, + 50.839006401 + ], + [ + 12.5007973, + 50.839199901 + ], + [ + 12.5008475, + 50.839212101 + ], + [ + 12.5011306, + 50.839280201 + ], + [ + 12.5020748, + 50.839488601 + ], + [ + 12.5029042, + 50.839655401 + ], + [ + 12.5035727, + 50.839778701 + ], + [ + 12.5041223, + 50.839869801 + ], + [ + 12.5048733, + 50.839983101 + ], + [ + 12.5062922, + 50.840160601 + ], + [ + 12.5068268, + 50.840217201 + ], + [ + 12.5072975, + 50.840261801 + ], + [ + 12.5086621, + 50.840364701 + ], + [ + 12.5103006, + 50.840466301 + ], + [ + 12.5113733, + 50.840533101 + ], + [ + 12.5121298, + 50.840576901 + ], + [ + 12.5144353, + 50.840724801 + ], + [ + 12.5151933, + 50.840773301 + ], + [ + 12.5161237, + 50.840832801 + ], + [ + 12.5176633, + 50.840923301 + ], + [ + 12.5180823, + 50.840954401 + ], + [ + 12.518646, + 50.840990601 + ], + [ + 12.5200509, + 50.841080801 + ], + [ + 12.5214259, + 50.841181101 + ], + [ + 12.5220767, + 50.841228601 + ], + [ + 12.5258556, + 50.841556001 + ], + [ + 12.5288826, + 50.841858801 + ], + [ + 12.5296408, + 50.841939101 + ], + [ + 12.533626, + 50.842342701 + ], + [ + 12.5358272, + 50.842571001 + ], + [ + 12.5389287, + 50.842892601 + ], + [ + 12.5401836, + 50.843023501 + ], + [ + 12.5428884, + 50.843300301 + ], + [ + 12.5429195, + 50.843303701 + ], + [ + 12.5439681, + 50.843407601 + ], + [ + 12.5451518, + 50.843512701 + ], + [ + 12.5460895, + 50.843583501 + ], + [ + 12.5475394, + 50.843648901 + ], + [ + 12.5484423, + 50.843680401 + ], + [ + 12.5498981, + 50.843708901 + ], + [ + 12.5506178, + 50.843719601 + ], + [ + 12.5561372, + 50.843788701 + ], + [ + 12.5563209, + 50.843791001 + ], + [ + 12.5569773, + 50.843802201 + ], + [ + 12.5594448, + 50.843838001 + ], + [ + 12.5596937, + 50.843842701 + ], + [ + 12.5634531, + 50.843913701 + ], + [ + 12.5639208, + 50.843922001 + ], + [ + 12.5643057, + 50.843927601 + ], + [ + 12.5699637, + 50.843999301 + ], + [ + 12.5710847, + 50.843996701 + ], + [ + 12.5722403, + 50.843966101 + ], + [ + 12.5731729, + 50.843926001 + ], + [ + 12.57411, + 50.843858601 + ], + [ + 12.5752289, + 50.843746401 + ], + [ + 12.5763652, + 50.843619401 + ], + [ + 12.5771012, + 50.843524601 + ], + [ + 12.5778409, + 50.843408701 + ], + [ + 12.5788052, + 50.843235301 + ], + [ + 12.5794644, + 50.843101101 + ], + [ + 12.5805081, + 50.842864501 + ], + [ + 12.5818944, + 50.842521301 + ], + [ + 12.5836618, + 50.841986101 + ], + [ + 12.5851369, + 50.841448501 + ], + [ + 12.5865149, + 50.840884501 + ], + [ + 12.5880044, + 50.840206901 + ], + [ + 12.5893891, + 50.839471301 + ], + [ + 12.5900175, + 50.839104601 + ], + [ + 12.5906299, + 50.838722401 + ], + [ + 12.591275, + 50.838299901 + ], + [ + 12.591902, + 50.837868801 + ], + [ + 12.5951195, + 50.835599101 + ], + [ + 12.5952464, + 50.835509101 + ], + [ + 12.5964107, + 50.834686201 + ], + [ + 12.5988373, + 50.832971101 + ], + [ + 12.5995685, + 50.832473101 + ], + [ + 12.6000268, + 50.832175701 + ], + [ + 12.6003194, + 50.831985801 + ], + [ + 12.6015931, + 50.831227301 + ], + [ + 12.6024776, + 50.830754901 + ], + [ + 12.6033953, + 50.830304101 + ], + [ + 12.6045335, + 50.829794301 + ], + [ + 12.6056317, + 50.829351501 + ], + [ + 12.6064361, + 50.829051801 + ], + [ + 12.6080296, + 50.828523601 + ], + [ + 12.6096579, + 50.828065401 + ], + [ + 12.6107904, + 50.827791201 + ], + [ + 12.6119346, + 50.827538601 + ], + [ + 12.6169877, + 50.826490501 + ], + [ + 12.6224126, + 50.825360201 + ], + [ + 12.6238731, + 50.825061701 + ], + [ + 12.6251315, + 50.824775601 + ], + [ + 12.6259856, + 50.824559901 + ], + [ + 12.6269702, + 50.824300601 + ], + [ + 12.628136, + 50.823963401 + ], + [ + 12.6295777, + 50.823492801 + ], + [ + 12.6309912, + 50.822982301 + ], + [ + 12.6342577, + 50.821730401 + ], + [ + 12.6357901, + 50.821159901 + ], + [ + 12.6373701, + 50.820637201 + ], + [ + 12.6389693, + 50.820149501 + ], + [ + 12.6399563, + 50.819873801 + ], + [ + 12.6409592, + 50.819614901 + ], + [ + 12.6417755, + 50.819420501 + ], + [ + 12.6426, + 50.819235401 + ], + [ + 12.6440421, + 50.818943101 + ], + [ + 12.6455219, + 50.818681301 + ], + [ + 12.646036, + 50.818599501 + ], + [ + 12.6466463, + 50.818508101 + ], + [ + 12.6470432, + 50.818448701 + ], + [ + 12.6473254, + 50.818408201 + ], + [ + 12.6489519, + 50.818176901 + ], + [ + 12.6493434, + 50.818119201 + ], + [ + 12.6510071, + 50.817874101 + ], + [ + 12.6526707, + 50.817608701 + ], + [ + 12.6542104, + 50.817343401 + ], + [ + 12.65686, + 50.816856501 + ], + [ + 12.6587852, + 50.816465401 + ], + [ + 12.664271, + 50.815300001 + ], + [ + 12.667647, + 50.814582601 + ], + [ + 12.6681449, + 50.814477901 + ], + [ + 12.6695529, + 50.814177001 + ], + [ + 12.6710265, + 50.813895501 + ], + [ + 12.6724242, + 50.813680901 + ], + [ + 12.673317, + 50.813571801 + ], + [ + 12.6742166, + 50.813485801 + ], + [ + 12.6750683, + 50.813428101 + ], + [ + 12.6759307, + 50.813383001 + ], + [ + 12.6765965, + 50.813364201 + ], + [ + 12.6772641, + 50.813354901 + ], + [ + 12.6786267, + 50.813346001 + ], + [ + 12.678750092, + 50.813344853 + ] + ] + } + }, + { + "identifier": "2024-013511--vi-bs.2026-03-16_08-00-00-000.devi-zus.2024-05-22_07-00-00-000.f_002.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.8390460826805,12.500202613565687,50.81334485309176,12.678750091949391", + "point": "50.8390460826805,12.500202613565687", + "startLcPosition": "107", + "impact": { + "lower": "W\u00fcstenbrand", + "upper": "Glauchau-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Chemnitz", + "title": "A4 | Glauchau-West - W\u00fcstenbrand", + "startTimestamp": "2026-03-16T08:00:00+01:00", + "coordinate": { + "lat": 50.8390460826805, + "long": 12.500202613565687 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 08:00 Uhr", + "Ende: 20.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "A4: Erfurt -> Chemnitz, zwischen 1.1 km hinter AS Glauchau-West und 5.8 km vor AS W\u00fcstenbrand", + "", + "L\u00e4nge: 13.56 km | Maximale Durchfahrtsbreite: 6.6 m", + "", + "A4-West FBE zw. AS Glauchau-West bis AS Hohenstein-Ernstthal (km 101,70-91,00) RiFa G\u00f6rlitz - Teil 2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.500202614, + 50.839046083 + ], + [ + 12.5007973, + 50.839199901 + ], + [ + 12.5008475, + 50.839212101 + ], + [ + 12.5011306, + 50.839280201 + ], + [ + 12.5020748, + 50.839488601 + ], + [ + 12.5029042, + 50.839655401 + ], + [ + 12.5035727, + 50.839778701 + ], + [ + 12.5041223, + 50.839869801 + ], + [ + 12.5048733, + 50.839983101 + ], + [ + 12.5062922, + 50.840160601 + ], + [ + 12.5068268, + 50.840217201 + ], + [ + 12.5072975, + 50.840261801 + ], + [ + 12.5086621, + 50.840364701 + ], + [ + 12.5103006, + 50.840466301 + ], + [ + 12.5113733, + 50.840533101 + ], + [ + 12.5121298, + 50.840576901 + ], + [ + 12.5144353, + 50.840724801 + ], + [ + 12.5151933, + 50.840773301 + ], + [ + 12.5161237, + 50.840832801 + ], + [ + 12.5176633, + 50.840923301 + ], + [ + 12.5180823, + 50.840954401 + ], + [ + 12.518646, + 50.840990601 + ], + [ + 12.5200509, + 50.841080801 + ], + [ + 12.5214259, + 50.841181101 + ], + [ + 12.5220767, + 50.841228601 + ], + [ + 12.5258556, + 50.841556001 + ], + [ + 12.5288826, + 50.841858801 + ], + [ + 12.5296408, + 50.841939101 + ], + [ + 12.533626, + 50.842342701 + ], + [ + 12.5358272, + 50.842571001 + ], + [ + 12.5389287, + 50.842892601 + ], + [ + 12.5401836, + 50.843023501 + ], + [ + 12.5428884, + 50.843300301 + ], + [ + 12.5429195, + 50.843303701 + ], + [ + 12.5439681, + 50.843407601 + ], + [ + 12.5451518, + 50.843512701 + ], + [ + 12.5460895, + 50.843583501 + ], + [ + 12.5475394, + 50.843648901 + ], + [ + 12.5484423, + 50.843680401 + ], + [ + 12.5498981, + 50.843708901 + ], + [ + 12.5506178, + 50.843719601 + ], + [ + 12.5561372, + 50.843788701 + ], + [ + 12.5563209, + 50.843791001 + ], + [ + 12.5569773, + 50.843802201 + ], + [ + 12.5594448, + 50.843838001 + ], + [ + 12.5596937, + 50.843842701 + ], + [ + 12.5634531, + 50.843913701 + ], + [ + 12.5639208, + 50.843922001 + ], + [ + 12.5643057, + 50.843927601 + ], + [ + 12.5699637, + 50.843999301 + ], + [ + 12.5710847, + 50.843996701 + ], + [ + 12.5722403, + 50.843966101 + ], + [ + 12.5731729, + 50.843926001 + ], + [ + 12.57411, + 50.843858601 + ], + [ + 12.5752289, + 50.843746401 + ], + [ + 12.5763652, + 50.843619401 + ], + [ + 12.5771012, + 50.843524601 + ], + [ + 12.5778409, + 50.843408701 + ], + [ + 12.5788052, + 50.843235301 + ], + [ + 12.5794644, + 50.843101101 + ], + [ + 12.5805081, + 50.842864501 + ], + [ + 12.5818944, + 50.842521301 + ], + [ + 12.5836618, + 50.841986101 + ], + [ + 12.5851369, + 50.841448501 + ], + [ + 12.5865149, + 50.840884501 + ], + [ + 12.5880044, + 50.840206901 + ], + [ + 12.5893891, + 50.839471301 + ], + [ + 12.5900175, + 50.839104601 + ], + [ + 12.5906299, + 50.838722401 + ], + [ + 12.591275, + 50.838299901 + ], + [ + 12.591902, + 50.837868801 + ], + [ + 12.5951195, + 50.835599101 + ], + [ + 12.5952464, + 50.835509101 + ], + [ + 12.5964107, + 50.834686201 + ], + [ + 12.5988373, + 50.832971101 + ], + [ + 12.5995685, + 50.832473101 + ], + [ + 12.6000268, + 50.832175701 + ], + [ + 12.6003194, + 50.831985801 + ], + [ + 12.6015931, + 50.831227301 + ], + [ + 12.6024776, + 50.830754901 + ], + [ + 12.6033953, + 50.830304101 + ], + [ + 12.6045335, + 50.829794301 + ], + [ + 12.6056317, + 50.829351501 + ], + [ + 12.6064361, + 50.829051801 + ], + [ + 12.6080296, + 50.828523601 + ], + [ + 12.6096579, + 50.828065401 + ], + [ + 12.6107904, + 50.827791201 + ], + [ + 12.6119346, + 50.827538601 + ], + [ + 12.6169877, + 50.826490501 + ], + [ + 12.6224126, + 50.825360201 + ], + [ + 12.6238731, + 50.825061701 + ], + [ + 12.6251315, + 50.824775601 + ], + [ + 12.6259856, + 50.824559901 + ], + [ + 12.6269702, + 50.824300601 + ], + [ + 12.628136, + 50.823963401 + ], + [ + 12.6295777, + 50.823492801 + ], + [ + 12.6309912, + 50.822982301 + ], + [ + 12.6342577, + 50.821730401 + ], + [ + 12.6357901, + 50.821159901 + ], + [ + 12.6373701, + 50.820637201 + ], + [ + 12.6389693, + 50.820149501 + ], + [ + 12.6399563, + 50.819873801 + ], + [ + 12.6409592, + 50.819614901 + ], + [ + 12.6417755, + 50.819420501 + ], + [ + 12.6426, + 50.819235401 + ], + [ + 12.6440421, + 50.818943101 + ], + [ + 12.6455219, + 50.818681301 + ], + [ + 12.646036, + 50.818599501 + ], + [ + 12.6466463, + 50.818508101 + ], + [ + 12.6470432, + 50.818448701 + ], + [ + 12.6473254, + 50.818408201 + ], + [ + 12.6489519, + 50.818176901 + ], + [ + 12.6493434, + 50.818119201 + ], + [ + 12.6510071, + 50.817874101 + ], + [ + 12.6526707, + 50.817608701 + ], + [ + 12.6542104, + 50.817343401 + ], + [ + 12.65686, + 50.816856501 + ], + [ + 12.6587852, + 50.816465401 + ], + [ + 12.664271, + 50.815300001 + ], + [ + 12.667647, + 50.814582601 + ], + [ + 12.6681449, + 50.814477901 + ], + [ + 12.6695529, + 50.814177001 + ], + [ + 12.6710265, + 50.813895501 + ], + [ + 12.6724242, + 50.813680901 + ], + [ + 12.673317, + 50.813571801 + ], + [ + 12.6742166, + 50.813485801 + ], + [ + 12.6750683, + 50.813428101 + ], + [ + 12.6759307, + 50.813383001 + ], + [ + 12.6765965, + 50.813364201 + ], + [ + 12.6772641, + 50.813354901 + ], + [ + 12.6786267, + 50.813346001 + ], + [ + 12.678750092, + 50.813344853 + ] + ] + } + }, + { + "identifier": "2024-013510--vi-bs.2026-03-16_00-00-00-000.devi-zus.2024-04-08_07-00-00-000_001.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.813479379275755,12.678753083183386,50.83796413245741,12.496301867367094", + "point": "50.813479379275755,12.678753083183386", + "startLcPosition": "112", + "impact": { + "lower": "Glauchau-West", + "upper": "W\u00fcstenbrand", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | W\u00fcstenbrand - Glauchau-West", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 50.813479379275755, + "long": 12.678753083183386 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 21.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.12.26)", + "", + "A4: Chemnitz -> Erfurt, zwischen 5.8 km hinter AS W\u00fcstenbrand und 0.8 km vor AS Glauchau-West", + "", + "L\u00e4nge: 13.86 km | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A4-West FBE zw. AS Glauchau-West bis AS Hohenstein-Ernstthal (km 101,70-91,00) RiFa Aachen - Teil 1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.678753083, + 50.813479379 + ], + [ + 12.6786102, + 50.813480601 + ], + [ + 12.6772123, + 50.813487901 + ], + [ + 12.6758825, + 50.813519301 + ], + [ + 12.6750435, + 50.813560101 + ], + [ + 12.6742217, + 50.813619401 + ], + [ + 12.6733187, + 50.813707201 + ], + [ + 12.6724231, + 50.813814301 + ], + [ + 12.6715142, + 50.813950101 + ], + [ + 12.6711409, + 50.814013001 + ], + [ + 12.6696847, + 50.814293601 + ], + [ + 12.6682406, + 50.814599401 + ], + [ + 12.6677775, + 50.814691501 + ], + [ + 12.6647745, + 50.815329301 + ], + [ + 12.6643682, + 50.815415601 + ], + [ + 12.6585154, + 50.816652401 + ], + [ + 12.6568844, + 50.816983901 + ], + [ + 12.6544654, + 50.817434101 + ], + [ + 12.6532264, + 50.817651001 + ], + [ + 12.651827, + 50.817879601 + ], + [ + 12.649424, + 50.818242801 + ], + [ + 12.6473275, + 50.818546401 + ], + [ + 12.6470727, + 50.818583501 + ], + [ + 12.6466351, + 50.818647701 + ], + [ + 12.6462103, + 50.818714701 + ], + [ + 12.6454437, + 50.818835701 + ], + [ + 12.6445498, + 50.818989601 + ], + [ + 12.6444386, + 50.819011101 + ], + [ + 12.6427757, + 50.819342401 + ], + [ + 12.641485, + 50.819631701 + ], + [ + 12.641023, + 50.819745201 + ], + [ + 12.6399985, + 50.820008001 + ], + [ + 12.6389911, + 50.820291401 + ], + [ + 12.63804, + 50.820575801 + ], + [ + 12.6358541, + 50.821296401 + ], + [ + 12.6345014, + 50.821801701 + ], + [ + 12.6330584, + 50.822357301 + ], + [ + 12.6318766, + 50.822811101 + ], + [ + 12.6306472, + 50.823273301 + ], + [ + 12.6297089, + 50.823600901 + ], + [ + 12.6283475, + 50.824048401 + ], + [ + 12.6270151, + 50.824443101 + ], + [ + 12.6258419, + 50.824747901 + ], + [ + 12.6256527, + 50.824793701 + ], + [ + 12.6253081, + 50.824881801 + ], + [ + 12.6243073, + 50.825107801 + ], + [ + 12.6231208, + 50.825362901 + ], + [ + 12.6188259, + 50.826253501 + ], + [ + 12.6170589, + 50.826615401 + ], + [ + 12.6121276, + 50.827639901 + ], + [ + 12.6108922, + 50.827910101 + ], + [ + 12.6096715, + 50.828208901 + ], + [ + 12.608121, + 50.828647001 + ], + [ + 12.6065552, + 50.829164301 + ], + [ + 12.6057132, + 50.829477101 + ], + [ + 12.6046436, + 50.829909101 + ], + [ + 12.6035085, + 50.830420901 + ], + [ + 12.6025916, + 50.830870601 + ], + [ + 12.6017128, + 50.831341701 + ], + [ + 12.6004551, + 50.832088401 + ], + [ + 12.6001805, + 50.832262601 + ], + [ + 12.5990213, + 50.833065001 + ], + [ + 12.5965755, + 50.834779001 + ], + [ + 12.5954174, + 50.835590601 + ], + [ + 12.5920549, + 50.837967401 + ], + [ + 12.5907642, + 50.838829101 + ], + [ + 12.5906256, + 50.838917801 + ], + [ + 12.5900694, + 50.839259901 + ], + [ + 12.5895002, + 50.839591101 + ], + [ + 12.5881333, + 50.840317001 + ], + [ + 12.5866214, + 50.841015301 + ], + [ + 12.5852587, + 50.841571201 + ], + [ + 12.5850828, + 50.841637101 + ], + [ + 12.5837245, + 50.842111201 + ], + [ + 12.5819748, + 50.842636201 + ], + [ + 12.5807162, + 50.842960401 + ], + [ + 12.5798753, + 50.843153301 + ], + [ + 12.5788989, + 50.843357801 + ], + [ + 12.5786276, + 50.843408101 + ], + [ + 12.5779167, + 50.843535201 + ], + [ + 12.5771515, + 50.843656601 + ], + [ + 12.5763774, + 50.843760001 + ], + [ + 12.5752661, + 50.843892201 + ], + [ + 12.5741275, + 50.843998201 + ], + [ + 12.5731676, + 50.844064601 + ], + [ + 12.5722077, + 50.844109001 + ], + [ + 12.5712959, + 50.844130801 + ], + [ + 12.5710642, + 50.844136401 + ], + [ + 12.5699424, + 50.844140201 + ], + [ + 12.5641639, + 50.844059101 + ], + [ + 12.5638893, + 50.844055301 + ], + [ + 12.5633777, + 50.844049001 + ], + [ + 12.559494, + 50.844009501 + ], + [ + 12.5593174, + 50.844007701 + ], + [ + 12.5562221, + 50.843960101 + ], + [ + 12.5559935, + 50.843956001 + ], + [ + 12.5506199, + 50.843858701 + ], + [ + 12.5475948, + 50.843792901 + ], + [ + 12.5461438, + 50.843720601 + ], + [ + 12.5451111, + 50.843652401 + ], + [ + 12.5446538, + 50.843611301 + ], + [ + 12.5428865, + 50.843438501 + ], + [ + 12.5420593, + 50.843352001 + ], + [ + 12.5413853, + 50.843281501 + ], + [ + 12.5396219, + 50.843109101 + ], + [ + 12.5393907, + 50.843080601 + ], + [ + 12.5365747, + 50.842792201 + ], + [ + 12.5358082, + 50.842709801 + ], + [ + 12.5336376, + 50.842476401 + ], + [ + 12.529645, + 50.842079101 + ], + [ + 12.5287986, + 50.841991301 + ], + [ + 12.5254386, + 50.841656801 + ], + [ + 12.5239886, + 50.841531801 + ], + [ + 12.5220808, + 50.841367401 + ], + [ + 12.5200843, + 50.841224401 + ], + [ + 12.518347, + 50.841110901 + ], + [ + 12.5181009, + 50.841094801 + ], + [ + 12.5176647, + 50.841071701 + ], + [ + 12.5151749, + 50.840914901 + ], + [ + 12.5144748, + 50.840870801 + ], + [ + 12.512449, + 50.840743701 + ], + [ + 12.5113513, + 50.840676501 + ], + [ + 12.5100296, + 50.840595501 + ], + [ + 12.5088511, + 50.840520401 + ], + [ + 12.5073781, + 50.840409901 + ], + [ + 12.5070752, + 50.840383301 + ], + [ + 12.506289, + 50.840299901 + ], + [ + 12.5050523, + 50.840150701 + ], + [ + 12.5042419, + 50.840031401 + ], + [ + 12.503322, + 50.839878901 + ], + [ + 12.5028039, + 50.839780701 + ], + [ + 12.5019295, + 50.839606601 + ], + [ + 12.5009971, + 50.839395301 + ], + [ + 12.5007993, + 50.839348301 + ], + [ + 12.5006651, + 50.839314801 + ], + [ + 12.5000943, + 50.839170101 + ], + [ + 12.4991711, + 50.838917101 + ], + [ + 12.4982649, + 50.838644801 + ], + [ + 12.4973801, + 50.838355501 + ], + [ + 12.4965171, + 50.838045601 + ], + [ + 12.496301867, + 50.837964132 + ] + ] + } + }, + { + "identifier": "2024-013510--vi-bs.2026-04-20_00-00-00-000.devi-zus.2024-04-08_07-00-00-000_001.de11", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.813479379275755,12.678753083183386,50.83796413245741,12.496301867367094", + "point": "50.813479379275755,12.678753083183386", + "startLcPosition": "112", + "impact": { + "lower": "Glauchau-West", + "upper": "W\u00fcstenbrand", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | W\u00fcstenbrand - Glauchau-West", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 50.813479379275755, + "long": 12.678753083183386 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 07.07.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.12.26)", + "", + "A4: Chemnitz -> Erfurt, zwischen 5.8 km hinter AS W\u00fcstenbrand und 0.8 km vor AS Glauchau-West", + "", + "L\u00e4nge: 13.86 km | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A4-West FBE zw. AS Glauchau-West bis AS Hohenstein-Ernstthal (km 101,70-91,00) RiFa Aachen - Teil 1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.678753083, + 50.813479379 + ], + [ + 12.6786102, + 50.813480601 + ], + [ + 12.6772123, + 50.813487901 + ], + [ + 12.6758825, + 50.813519301 + ], + [ + 12.6750435, + 50.813560101 + ], + [ + 12.6742217, + 50.813619401 + ], + [ + 12.6733187, + 50.813707201 + ], + [ + 12.6724231, + 50.813814301 + ], + [ + 12.6715142, + 50.813950101 + ], + [ + 12.6711409, + 50.814013001 + ], + [ + 12.6696847, + 50.814293601 + ], + [ + 12.6682406, + 50.814599401 + ], + [ + 12.6677775, + 50.814691501 + ], + [ + 12.6647745, + 50.815329301 + ], + [ + 12.6643682, + 50.815415601 + ], + [ + 12.6585154, + 50.816652401 + ], + [ + 12.6568844, + 50.816983901 + ], + [ + 12.6544654, + 50.817434101 + ], + [ + 12.6532264, + 50.817651001 + ], + [ + 12.651827, + 50.817879601 + ], + [ + 12.649424, + 50.818242801 + ], + [ + 12.6473275, + 50.818546401 + ], + [ + 12.6470727, + 50.818583501 + ], + [ + 12.6466351, + 50.818647701 + ], + [ + 12.6462103, + 50.818714701 + ], + [ + 12.6454437, + 50.818835701 + ], + [ + 12.6445498, + 50.818989601 + ], + [ + 12.6444386, + 50.819011101 + ], + [ + 12.6427757, + 50.819342401 + ], + [ + 12.641485, + 50.819631701 + ], + [ + 12.641023, + 50.819745201 + ], + [ + 12.6399985, + 50.820008001 + ], + [ + 12.6389911, + 50.820291401 + ], + [ + 12.63804, + 50.820575801 + ], + [ + 12.6358541, + 50.821296401 + ], + [ + 12.6345014, + 50.821801701 + ], + [ + 12.6330584, + 50.822357301 + ], + [ + 12.6318766, + 50.822811101 + ], + [ + 12.6306472, + 50.823273301 + ], + [ + 12.6297089, + 50.823600901 + ], + [ + 12.6283475, + 50.824048401 + ], + [ + 12.6270151, + 50.824443101 + ], + [ + 12.6258419, + 50.824747901 + ], + [ + 12.6256527, + 50.824793701 + ], + [ + 12.6253081, + 50.824881801 + ], + [ + 12.6243073, + 50.825107801 + ], + [ + 12.6231208, + 50.825362901 + ], + [ + 12.6188259, + 50.826253501 + ], + [ + 12.6170589, + 50.826615401 + ], + [ + 12.6121276, + 50.827639901 + ], + [ + 12.6108922, + 50.827910101 + ], + [ + 12.6096715, + 50.828208901 + ], + [ + 12.608121, + 50.828647001 + ], + [ + 12.6065552, + 50.829164301 + ], + [ + 12.6057132, + 50.829477101 + ], + [ + 12.6046436, + 50.829909101 + ], + [ + 12.6035085, + 50.830420901 + ], + [ + 12.6025916, + 50.830870601 + ], + [ + 12.6017128, + 50.831341701 + ], + [ + 12.6004551, + 50.832088401 + ], + [ + 12.6001805, + 50.832262601 + ], + [ + 12.5990213, + 50.833065001 + ], + [ + 12.5965755, + 50.834779001 + ], + [ + 12.5954174, + 50.835590601 + ], + [ + 12.5920549, + 50.837967401 + ], + [ + 12.5907642, + 50.838829101 + ], + [ + 12.5906256, + 50.838917801 + ], + [ + 12.5900694, + 50.839259901 + ], + [ + 12.5895002, + 50.839591101 + ], + [ + 12.5881333, + 50.840317001 + ], + [ + 12.5866214, + 50.841015301 + ], + [ + 12.5852587, + 50.841571201 + ], + [ + 12.5850828, + 50.841637101 + ], + [ + 12.5837245, + 50.842111201 + ], + [ + 12.5819748, + 50.842636201 + ], + [ + 12.5807162, + 50.842960401 + ], + [ + 12.5798753, + 50.843153301 + ], + [ + 12.5788989, + 50.843357801 + ], + [ + 12.5786276, + 50.843408101 + ], + [ + 12.5779167, + 50.843535201 + ], + [ + 12.5771515, + 50.843656601 + ], + [ + 12.5763774, + 50.843760001 + ], + [ + 12.5752661, + 50.843892201 + ], + [ + 12.5741275, + 50.843998201 + ], + [ + 12.5731676, + 50.844064601 + ], + [ + 12.5722077, + 50.844109001 + ], + [ + 12.5712959, + 50.844130801 + ], + [ + 12.5710642, + 50.844136401 + ], + [ + 12.5699424, + 50.844140201 + ], + [ + 12.5641639, + 50.844059101 + ], + [ + 12.5638893, + 50.844055301 + ], + [ + 12.5633777, + 50.844049001 + ], + [ + 12.559494, + 50.844009501 + ], + [ + 12.5593174, + 50.844007701 + ], + [ + 12.5562221, + 50.843960101 + ], + [ + 12.5559935, + 50.843956001 + ], + [ + 12.5506199, + 50.843858701 + ], + [ + 12.5475948, + 50.843792901 + ], + [ + 12.5461438, + 50.843720601 + ], + [ + 12.5451111, + 50.843652401 + ], + [ + 12.5446538, + 50.843611301 + ], + [ + 12.5428865, + 50.843438501 + ], + [ + 12.5420593, + 50.843352001 + ], + [ + 12.5413853, + 50.843281501 + ], + [ + 12.5396219, + 50.843109101 + ], + [ + 12.5393907, + 50.843080601 + ], + [ + 12.5365747, + 50.842792201 + ], + [ + 12.5358082, + 50.842709801 + ], + [ + 12.5336376, + 50.842476401 + ], + [ + 12.529645, + 50.842079101 + ], + [ + 12.5287986, + 50.841991301 + ], + [ + 12.5254386, + 50.841656801 + ], + [ + 12.5239886, + 50.841531801 + ], + [ + 12.5220808, + 50.841367401 + ], + [ + 12.5200843, + 50.841224401 + ], + [ + 12.518347, + 50.841110901 + ], + [ + 12.5181009, + 50.841094801 + ], + [ + 12.5176647, + 50.841071701 + ], + [ + 12.5151749, + 50.840914901 + ], + [ + 12.5144748, + 50.840870801 + ], + [ + 12.512449, + 50.840743701 + ], + [ + 12.5113513, + 50.840676501 + ], + [ + 12.5100296, + 50.840595501 + ], + [ + 12.5088511, + 50.840520401 + ], + [ + 12.5073781, + 50.840409901 + ], + [ + 12.5070752, + 50.840383301 + ], + [ + 12.506289, + 50.840299901 + ], + [ + 12.5050523, + 50.840150701 + ], + [ + 12.5042419, + 50.840031401 + ], + [ + 12.503322, + 50.839878901 + ], + [ + 12.5028039, + 50.839780701 + ], + [ + 12.5019295, + 50.839606601 + ], + [ + 12.5009971, + 50.839395301 + ], + [ + 12.5007993, + 50.839348301 + ], + [ + 12.5006651, + 50.839314801 + ], + [ + 12.5000943, + 50.839170101 + ], + [ + 12.4991711, + 50.838917101 + ], + [ + 12.4982649, + 50.838644801 + ], + [ + 12.4973801, + 50.838355501 + ], + [ + 12.4965171, + 50.838045601 + ], + [ + 12.496301867, + 50.837964132 + ] + ] + } + }, + { + "identifier": "2024-013511--vi-bs.2026-03-16_08-00-00-000.devi-zus.2024-05-22_07-00-00-000.f_002.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.813479379275755,12.678753083183386,50.839176446359076,12.500119330602358", + "point": "50.813479379275755,12.678753083183386", + "startLcPosition": "112", + "impact": { + "lower": "Glauchau-West", + "upper": "W\u00fcstenbrand", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Chemnitz -> Erfurt", + "title": "A4 | W\u00fcstenbrand - Glauchau-West", + "startTimestamp": "2026-03-16T08:00:00+01:00", + "coordinate": { + "lat": 50.813479379275755, + "long": 12.678753083183386 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 08:00 Uhr", + "Ende: 20.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "A4: Chemnitz -> Erfurt, zwischen 5.8 km hinter AS W\u00fcstenbrand und 1.1 km vor AS Glauchau-West", + "", + "L\u00e4nge: 13.56 km | Maximale Durchfahrtsbreite: 6.6 m", + "", + "A4-West FBE zw. AS Glauchau-West bis AS Hohenstein-Ernstthal (km 101,70-91,00) RiFa G\u00f6rlitz - Teil 2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.678753083, + 50.813479379 + ], + [ + 12.6786102, + 50.813480601 + ], + [ + 12.6772123, + 50.813487901 + ], + [ + 12.6758825, + 50.813519301 + ], + [ + 12.6750435, + 50.813560101 + ], + [ + 12.6742217, + 50.813619401 + ], + [ + 12.6733187, + 50.813707201 + ], + [ + 12.6724231, + 50.813814301 + ], + [ + 12.6715142, + 50.813950101 + ], + [ + 12.6711409, + 50.814013001 + ], + [ + 12.6696847, + 50.814293601 + ], + [ + 12.6682406, + 50.814599401 + ], + [ + 12.6677775, + 50.814691501 + ], + [ + 12.6647745, + 50.815329301 + ], + [ + 12.6643682, + 50.815415601 + ], + [ + 12.6585154, + 50.816652401 + ], + [ + 12.6568844, + 50.816983901 + ], + [ + 12.6544654, + 50.817434101 + ], + [ + 12.6532264, + 50.817651001 + ], + [ + 12.651827, + 50.817879601 + ], + [ + 12.649424, + 50.818242801 + ], + [ + 12.6473275, + 50.818546401 + ], + [ + 12.6470727, + 50.818583501 + ], + [ + 12.6466351, + 50.818647701 + ], + [ + 12.6462103, + 50.818714701 + ], + [ + 12.6454437, + 50.818835701 + ], + [ + 12.6445498, + 50.818989601 + ], + [ + 12.6444386, + 50.819011101 + ], + [ + 12.6427757, + 50.819342401 + ], + [ + 12.641485, + 50.819631701 + ], + [ + 12.641023, + 50.819745201 + ], + [ + 12.6399985, + 50.820008001 + ], + [ + 12.6389911, + 50.820291401 + ], + [ + 12.63804, + 50.820575801 + ], + [ + 12.6358541, + 50.821296401 + ], + [ + 12.6345014, + 50.821801701 + ], + [ + 12.6330584, + 50.822357301 + ], + [ + 12.6318766, + 50.822811101 + ], + [ + 12.6306472, + 50.823273301 + ], + [ + 12.6297089, + 50.823600901 + ], + [ + 12.6283475, + 50.824048401 + ], + [ + 12.6270151, + 50.824443101 + ], + [ + 12.6258419, + 50.824747901 + ], + [ + 12.6256527, + 50.824793701 + ], + [ + 12.6253081, + 50.824881801 + ], + [ + 12.6243073, + 50.825107801 + ], + [ + 12.6231208, + 50.825362901 + ], + [ + 12.6188259, + 50.826253501 + ], + [ + 12.6170589, + 50.826615401 + ], + [ + 12.6121276, + 50.827639901 + ], + [ + 12.6108922, + 50.827910101 + ], + [ + 12.6096715, + 50.828208901 + ], + [ + 12.608121, + 50.828647001 + ], + [ + 12.6065552, + 50.829164301 + ], + [ + 12.6057132, + 50.829477101 + ], + [ + 12.6046436, + 50.829909101 + ], + [ + 12.6035085, + 50.830420901 + ], + [ + 12.6025916, + 50.830870601 + ], + [ + 12.6017128, + 50.831341701 + ], + [ + 12.6004551, + 50.832088401 + ], + [ + 12.6001805, + 50.832262601 + ], + [ + 12.5990213, + 50.833065001 + ], + [ + 12.5965755, + 50.834779001 + ], + [ + 12.5954174, + 50.835590601 + ], + [ + 12.5920549, + 50.837967401 + ], + [ + 12.5907642, + 50.838829101 + ], + [ + 12.5906256, + 50.838917801 + ], + [ + 12.5900694, + 50.839259901 + ], + [ + 12.5895002, + 50.839591101 + ], + [ + 12.5881333, + 50.840317001 + ], + [ + 12.5866214, + 50.841015301 + ], + [ + 12.5852587, + 50.841571201 + ], + [ + 12.5850828, + 50.841637101 + ], + [ + 12.5837245, + 50.842111201 + ], + [ + 12.5819748, + 50.842636201 + ], + [ + 12.5807162, + 50.842960401 + ], + [ + 12.5798753, + 50.843153301 + ], + [ + 12.5788989, + 50.843357801 + ], + [ + 12.5786276, + 50.843408101 + ], + [ + 12.5779167, + 50.843535201 + ], + [ + 12.5771515, + 50.843656601 + ], + [ + 12.5763774, + 50.843760001 + ], + [ + 12.5752661, + 50.843892201 + ], + [ + 12.5741275, + 50.843998201 + ], + [ + 12.5731676, + 50.844064601 + ], + [ + 12.5722077, + 50.844109001 + ], + [ + 12.5712959, + 50.844130801 + ], + [ + 12.5710642, + 50.844136401 + ], + [ + 12.5699424, + 50.844140201 + ], + [ + 12.5641639, + 50.844059101 + ], + [ + 12.5638893, + 50.844055301 + ], + [ + 12.5633777, + 50.844049001 + ], + [ + 12.559494, + 50.844009501 + ], + [ + 12.5593174, + 50.844007701 + ], + [ + 12.5562221, + 50.843960101 + ], + [ + 12.5559935, + 50.843956001 + ], + [ + 12.5506199, + 50.843858701 + ], + [ + 12.5475948, + 50.843792901 + ], + [ + 12.5461438, + 50.843720601 + ], + [ + 12.5451111, + 50.843652401 + ], + [ + 12.5446538, + 50.843611301 + ], + [ + 12.5428865, + 50.843438501 + ], + [ + 12.5420593, + 50.843352001 + ], + [ + 12.5413853, + 50.843281501 + ], + [ + 12.5396219, + 50.843109101 + ], + [ + 12.5393907, + 50.843080601 + ], + [ + 12.5365747, + 50.842792201 + ], + [ + 12.5358082, + 50.842709801 + ], + [ + 12.5336376, + 50.842476401 + ], + [ + 12.529645, + 50.842079101 + ], + [ + 12.5287986, + 50.841991301 + ], + [ + 12.5254386, + 50.841656801 + ], + [ + 12.5239886, + 50.841531801 + ], + [ + 12.5220808, + 50.841367401 + ], + [ + 12.5200843, + 50.841224401 + ], + [ + 12.518347, + 50.841110901 + ], + [ + 12.5181009, + 50.841094801 + ], + [ + 12.5176647, + 50.841071701 + ], + [ + 12.5151749, + 50.840914901 + ], + [ + 12.5144748, + 50.840870801 + ], + [ + 12.512449, + 50.840743701 + ], + [ + 12.5113513, + 50.840676501 + ], + [ + 12.5100296, + 50.840595501 + ], + [ + 12.5088511, + 50.840520401 + ], + [ + 12.5073781, + 50.840409901 + ], + [ + 12.5070752, + 50.840383301 + ], + [ + 12.506289, + 50.840299901 + ], + [ + 12.5050523, + 50.840150701 + ], + [ + 12.5042419, + 50.840031401 + ], + [ + 12.503322, + 50.839878901 + ], + [ + 12.5028039, + 50.839780701 + ], + [ + 12.5019295, + 50.839606601 + ], + [ + 12.5009971, + 50.839395301 + ], + [ + 12.5007993, + 50.839348301 + ], + [ + 12.5006651, + 50.839314801 + ], + [ + 12.500119331, + 50.839176446 + ] + ] + } + }, + { + "identifier": "2024-013516--vi-bs.2026-03-04_08-00-00-000.devi-zus.2025-07-07_19-00-00-000_008.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.830178630063585,12.786981159965812,50.85227599169454,12.849586410834345", + "point": "50.830178630063585,12.786981159965812", + "startLcPosition": "113", + "impact": { + "lower": "Chemnitz-Mitte", + "upper": "Rabensteiner Wald", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Dresden", + "title": "A4 | Rabensteiner Wald - Chemnitz-Mitte", + "startTimestamp": "2026-03-04T08:00:00+01:00", + "coordinate": { + "lat": 50.830178630063585, + "long": 12.786981159965812 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.03.26 um 08:00 Uhr", + "Ende: 06.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A4: Erfurt -> Dresden, zwischen 1.9 km hinter Rabensteiner Wald und 1.5 km vor AS Chemnitz-Mitte", + "", + "L\u00e4nge: 5.4 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A4-West, FBE zw. AS Limbach-Oberfrohna bis AS Chemnitz-Gl\u00f6sa (Km 73,10-79,10), RiFa G\u00f6rlitz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.78698116, + 50.83017863 + ], + [ + 12.7874233, + 50.830370001 + ], + [ + 12.7879749, + 50.830634401 + ], + [ + 12.7885127, + 50.830907901 + ], + [ + 12.7891423, + 50.831253901 + ], + [ + 12.7894417, + 50.831428001 + ], + [ + 12.7903259, + 50.831988801 + ], + [ + 12.7915755, + 50.832875401 + ], + [ + 12.7924917, + 50.833671001 + ], + [ + 12.7935033, + 50.834744601 + ], + [ + 12.7938157, + 50.835118001 + ], + [ + 12.7941406, + 50.835535701 + ], + [ + 12.794779, + 50.836464701 + ], + [ + 12.7953827, + 50.837407001 + ], + [ + 12.7960466, + 50.838417301 + ], + [ + 12.7963531, + 50.838858001 + ], + [ + 12.7968069, + 50.839465201 + ], + [ + 12.7972702, + 50.840026801 + ], + [ + 12.7975802, + 50.840371001 + ], + [ + 12.7979044, + 50.840709501 + ], + [ + 12.7983427, + 50.841132901 + ], + [ + 12.7989382, + 50.841661001 + ], + [ + 12.7993846, + 50.842019701 + ], + [ + 12.7998566, + 50.842379001 + ], + [ + 12.8002894, + 50.842684801 + ], + [ + 12.8007382, + 50.842978101 + ], + [ + 12.801356, + 50.843363101 + ], + [ + 12.8020074, + 50.843730601 + ], + [ + 12.8025092, + 50.844001501 + ], + [ + 12.8030277, + 50.844255201 + ], + [ + 12.8033897, + 50.844420301 + ], + [ + 12.804605, + 50.844944501 + ], + [ + 12.8050161, + 50.845105101 + ], + [ + 12.8054742, + 50.845284001 + ], + [ + 12.8057035, + 50.845371101 + ], + [ + 12.8060572, + 50.845505501 + ], + [ + 12.8069956, + 50.845842501 + ], + [ + 12.8078628, + 50.846140301 + ], + [ + 12.8084355, + 50.846321601 + ], + [ + 12.8098988, + 50.846789001 + ], + [ + 12.8105532, + 50.846985301 + ], + [ + 12.8121808, + 50.847431401 + ], + [ + 12.8131318, + 50.847680201 + ], + [ + 12.813702, + 50.847811601 + ], + [ + 12.8147948, + 50.848063501 + ], + [ + 12.8157776, + 50.848277401 + ], + [ + 12.8167134, + 50.848461501 + ], + [ + 12.8177103, + 50.848651701 + ], + [ + 12.8185826, + 50.848800001 + ], + [ + 12.81996, + 50.849012101 + ], + [ + 12.8217921, + 50.849262901 + ], + [ + 12.8238905, + 50.849488801 + ], + [ + 12.8273797, + 50.849869901 + ], + [ + 12.8308481, + 50.850252501 + ], + [ + 12.8314029, + 50.850312001 + ], + [ + 12.831951, + 50.850370501 + ], + [ + 12.8325404, + 50.850433201 + ], + [ + 12.8330558, + 50.850489601 + ], + [ + 12.8343128, + 50.850624301 + ], + [ + 12.83736, + 50.850953101 + ], + [ + 12.8400397, + 50.851244501 + ], + [ + 12.8411284, + 50.851360501 + ], + [ + 12.8459641, + 50.851883001 + ], + [ + 12.8476305, + 50.852065301 + ], + [ + 12.8480041, + 50.852106101 + ], + [ + 12.849586411, + 50.852275992 + ] + ] + } + }, + { + "identifier": "2024-013516--vi-bs.2026-03-04_08-00-00-000.devi-zus.2025-07-07_19-00-00-000_008.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.85227599169454,12.849586410834345,50.86821226773732,12.88411585050434", + "point": "50.85227599169454,12.849586410834345", + "startLcPosition": "115", + "impact": { + "lower": "Chemnitz-Gl\u00f6sa", + "upper": "Chemnitz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Dresden", + "title": "A4 | Chemnitz - Chemnitz-Gl\u00f6sa", + "startTimestamp": "2026-03-04T08:00:00+01:00", + "coordinate": { + "lat": 50.85227599169454, + "long": 12.849586410834345 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.03.26 um 08:00 Uhr", + "Ende: 06.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A4: Erfurt -> Dresden, zwischen 0.6 km hinter AK Chemnitz und 1.8 km vor AS Chemnitz-Gl\u00f6sa", + "", + "L\u00e4nge: 3.07 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A4-West, FBE zw. AS Limbach-Oberfrohna bis AS Chemnitz-Gl\u00f6sa (Km 73,10-79,10), RiFa G\u00f6rlitz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.849586411, + 50.852275992 + ], + [ + 12.849634, + 50.852281101 + ], + [ + 12.8508387, + 50.852426601 + ], + [ + 12.8513577, + 50.852496401 + ], + [ + 12.8519056, + 50.852583201 + ], + [ + 12.8526809, + 50.852721501 + ], + [ + 12.8536363, + 50.852917901 + ], + [ + 12.8549314, + 50.853230801 + ], + [ + 12.8557635, + 50.853459401 + ], + [ + 12.85646, + 50.853672201 + ], + [ + 12.8571695, + 50.853910301 + ], + [ + 12.8582239, + 50.854292501 + ], + [ + 12.8593164, + 50.854734601 + ], + [ + 12.859664, + 50.854888601 + ], + [ + 12.8601274, + 50.855103901 + ], + [ + 12.8608189, + 50.855436701 + ], + [ + 12.861221, + 50.855633601 + ], + [ + 12.8617766, + 50.855934701 + ], + [ + 12.8619956, + 50.856056501 + ], + [ + 12.8626926, + 50.856471001 + ], + [ + 12.8636307, + 50.857063601 + ], + [ + 12.8648918, + 50.857917401 + ], + [ + 12.8650045, + 50.857993701 + ], + [ + 12.8670332, + 50.859460801 + ], + [ + 12.8674586, + 50.859767701 + ], + [ + 12.8684246, + 50.860462301 + ], + [ + 12.8695846, + 50.861281501 + ], + [ + 12.870864, + 50.862185101 + ], + [ + 12.8716378, + 50.862714501 + ], + [ + 12.8725062, + 50.863261301 + ], + [ + 12.8733802, + 50.863785501 + ], + [ + 12.8742666, + 50.864289001 + ], + [ + 12.8746097, + 50.864472501 + ], + [ + 12.8752086, + 50.864796001 + ], + [ + 12.8758285, + 50.865108701 + ], + [ + 12.8764867, + 50.865432601 + ], + [ + 12.8771502, + 50.865741301 + ], + [ + 12.8780455, + 50.866141601 + ], + [ + 12.8785515, + 50.866363701 + ], + [ + 12.8791834, + 50.866622401 + ], + [ + 12.8804426, + 50.867101501 + ], + [ + 12.8807816, + 50.867222801 + ], + [ + 12.8814259, + 50.867439101 + ], + [ + 12.8820064, + 50.867624001 + ], + [ + 12.882533, + 50.867782701 + ], + [ + 12.8831812, + 50.867968901 + ], + [ + 12.8838998, + 50.868158401 + ], + [ + 12.884115851, + 50.868212268 + ] + ] + } + }, + { + "identifier": "2024-013516--vi-bs.2026-03-04_08-00-00-000.devi-zus.2025-07-07_19-00-00-000_008.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.852408602707115,12.849550599350437,50.8302861754798,12.786864511479859", + "point": "50.852408602707115,12.849550599350437", + "startLcPosition": "116", + "impact": { + "lower": "Rabensteiner Wald", + "upper": "Chemnitz-Mitte", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Erfurt", + "title": "A4 | Chemnitz-Mitte - Rabensteiner Wald", + "startTimestamp": "2026-03-04T08:00:00+01:00", + "coordinate": { + "lat": 50.852408602707115, + "long": 12.849550599350437 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.03.26 um 08:00 Uhr", + "Ende: 06.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A4: Dresden -> Erfurt, zwischen 1.5 km hinter AS Chemnitz-Mitte und 1.9 km vor Rabensteiner Wald", + "", + "L\u00e4nge: 5.4 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A4-West, FBE zw. AS Limbach-Oberfrohna bis AS Chemnitz-Gl\u00f6sa (Km 73,10-79,10), RiFa G\u00f6rlitz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.849550599, + 50.852408603 + ], + [ + 12.8477671, + 50.852213901 + ], + [ + 12.8450392, + 50.851924801 + ], + [ + 12.8409774, + 50.851483701 + ], + [ + 12.8400081, + 50.851379901 + ], + [ + 12.8373867, + 50.851093301 + ], + [ + 12.8333421, + 50.850657701 + ], + [ + 12.8330053, + 50.850622301 + ], + [ + 12.8326623, + 50.850585201 + ], + [ + 12.8320982, + 50.850523701 + ], + [ + 12.8305952, + 50.850360101 + ], + [ + 12.8272746, + 50.849992801 + ], + [ + 12.8260211, + 50.849858701 + ], + [ + 12.8237528, + 50.849616001 + ], + [ + 12.8217449, + 50.849388101 + ], + [ + 12.8199244, + 50.849148701 + ], + [ + 12.8190465, + 50.849014701 + ], + [ + 12.8185195, + 50.848928701 + ], + [ + 12.8177794, + 50.848802701 + ], + [ + 12.8167685, + 50.848613001 + ], + [ + 12.8160541, + 50.848477101 + ], + [ + 12.8155649, + 50.848373001 + ], + [ + 12.8148026, + 50.848213101 + ], + [ + 12.8136239, + 50.847939501 + ], + [ + 12.8131282, + 50.847824501 + ], + [ + 12.8122687, + 50.847606401 + ], + [ + 12.8112779, + 50.847340201 + ], + [ + 12.8098518, + 50.846930101 + ], + [ + 12.8083266, + 50.846454301 + ], + [ + 12.8069191, + 50.845976201 + ], + [ + 12.806352, + 50.845775601 + ], + [ + 12.8059558, + 50.845625801 + ], + [ + 12.8056966, + 50.845528901 + ], + [ + 12.8055925, + 50.845488801 + ], + [ + 12.8053388, + 50.845391201 + ], + [ + 12.8048756, + 50.845213001 + ], + [ + 12.8036096, + 50.844690301 + ], + [ + 12.8029681, + 50.844396301 + ], + [ + 12.8023701, + 50.844102601 + ], + [ + 12.8017958, + 50.843795501 + ], + [ + 12.8012055, + 50.843459001 + ], + [ + 12.8006434, + 50.843111801 + ], + [ + 12.8000254, + 50.842700901 + ], + [ + 12.7997779, + 50.842527401 + ], + [ + 12.7992832, + 50.842154301 + ], + [ + 12.7988026, + 50.841769501 + ], + [ + 12.7982379, + 50.841279101 + ], + [ + 12.7976864, + 50.840746701 + ], + [ + 12.7974118, + 50.840461601 + ], + [ + 12.7971503, + 50.840170301 + ], + [ + 12.7966616, + 50.839585801 + ], + [ + 12.7961552, + 50.838909901 + ], + [ + 12.79593, + 50.838583501 + ], + [ + 12.7952361, + 50.837543301 + ], + [ + 12.7946112, + 50.836563401 + ], + [ + 12.7939488, + 50.835601901 + ], + [ + 12.7936453, + 50.835208601 + ], + [ + 12.7933281, + 50.834821801 + ], + [ + 12.7923694, + 50.833819001 + ], + [ + 12.7919088, + 50.833406901 + ], + [ + 12.7914326, + 50.833000301 + ], + [ + 12.7907996, + 50.832525101 + ], + [ + 12.7901714, + 50.832070901 + ], + [ + 12.7894253, + 50.831597501 + ], + [ + 12.7883615, + 50.830990901 + ], + [ + 12.7872897, + 50.830472001 + ], + [ + 12.786864511, + 50.830286175 + ] + ] + } + }, + { + "identifier": "2024-013516--vi-bs.2026-03-04_08-00-00-000.devi-zus.2025-07-07_19-00-00-000_008.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.86835013157333,12.884030365465717,50.852408602707115,12.849550599350437", + "point": "50.86835013157333,12.884030365465717", + "startLcPosition": "117", + "impact": { + "lower": "Chemnitz", + "upper": "Chemnitz-Gl\u00f6sa", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Erfurt", + "title": "A4 | Chemnitz-Gl\u00f6sa - Chemnitz", + "startTimestamp": "2026-03-04T08:00:00+01:00", + "coordinate": { + "lat": 50.86835013157333, + "long": 12.884030365465717 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.03.26 um 08:00 Uhr", + "Ende: 06.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A4: Dresden -> Erfurt, zwischen 1.8 km hinter AS Chemnitz-Gl\u00f6sa und 0.6 km vor AK Chemnitz", + "", + "L\u00e4nge: 3.07 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A4-West, FBE zw. AS Limbach-Oberfrohna bis AS Chemnitz-Gl\u00f6sa (Km 73,10-79,10), RiFa G\u00f6rlitz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.884030365, + 50.868350132 + ], + [ + 12.8837819, + 50.868288701 + ], + [ + 12.8830322, + 50.868087801 + ], + [ + 12.8822149, + 50.867860001 + ], + [ + 12.8817703, + 50.867722401 + ], + [ + 12.8812769, + 50.867562701 + ], + [ + 12.8806259, + 50.867342901 + ], + [ + 12.8802022, + 50.867189701 + ], + [ + 12.8790696, + 50.866757801 + ], + [ + 12.8779172, + 50.866274701 + ], + [ + 12.8766063, + 50.865680201 + ], + [ + 12.8752707, + 50.865020101 + ], + [ + 12.8746802, + 50.864711901 + ], + [ + 12.8744846, + 50.864602201 + ], + [ + 12.8735737, + 50.864104401 + ], + [ + 12.8732339, + 50.863913001 + ], + [ + 12.8722783, + 50.863327001 + ], + [ + 12.8715448, + 50.862858701 + ], + [ + 12.8706678, + 50.862278501 + ], + [ + 12.8682349, + 50.860560801 + ], + [ + 12.8672887, + 50.859863901 + ], + [ + 12.8668554, + 50.859564101 + ], + [ + 12.8653757, + 50.858495501 + ], + [ + 12.8634998, + 50.857189001 + ], + [ + 12.86247, + 50.856554001 + ], + [ + 12.8618167, + 50.856164701 + ], + [ + 12.8616804, + 50.856085301 + ], + [ + 12.861108, + 50.855777401 + ], + [ + 12.8599769, + 50.855219001 + ], + [ + 12.8593116, + 50.854916001 + ], + [ + 12.8590179, + 50.854795201 + ], + [ + 12.8579966, + 50.854384501 + ], + [ + 12.8572555, + 50.854109701 + ], + [ + 12.856794, + 50.853950101 + ], + [ + 12.855653, + 50.853597301 + ], + [ + 12.8546799, + 50.853332001 + ], + [ + 12.853626, + 50.853092901 + ], + [ + 12.8533107, + 50.853021401 + ], + [ + 12.8522751, + 50.852806601 + ], + [ + 12.8512437, + 50.852634701 + ], + [ + 12.8496028, + 50.852414301 + ], + [ + 12.849550599, + 50.852408603 + ] + ] + } + }, + { + "identifier": "2026-016940--vi-bs.2026-04-07_08-00-00-000_017.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.96257283637139,13.075014721894354,50.961714151535986,13.073244573888163", + "point": "50.96257283637139,13.075014721894354", + "startLcPosition": "121", + "impact": { + "lower": "Frankenberg", + "upper": "Rossauer Wald", + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Chemnitz", + "title": "A4 | Rossauer Wald - Frankenberg", + "coordinate": { + "lat": 50.96257283637139, + "long": 13.075014721894354 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "08.04.26 00:00 Uhr bis zum 24.04.26 24:00 Uhr.", + "", + "A4: Dresden -> Chemnitz, zwischen 0.4 km hinter Rossauer Wald und 4.0 km vor AS Frankenberg", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 4 m", + "", + "Von A4 Dresden - Chemnitz, zwischen 0.4 km hinter Rossauer Wald und AS Frankenberg nach Abfahrt von der A4 Rossauer Wald (aus Richtung Hainichen) Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.075014722, + 50.962572836 + ], + [ + 13.0749408, + 50.962500801 + ], + [ + 13.074694, + 50.962386701 + ], + [ + 13.0745053, + 50.962217901 + ], + [ + 13.0742768, + 50.962063101 + ], + [ + 13.0739402, + 50.961898801 + ], + [ + 13.0737254, + 50.961801101 + ], + [ + 13.0733497, + 50.961730601 + ], + [ + 13.073244574, + 50.961714152 + ] + ] + } + }, + { + "identifier": "2026-015902--vi-bs.2026-03-26_15-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.9994924079776,13.157915323148503,50.99198120770229,13.132097968269555", + "point": "50.9994924079776,13.157915323148503", + "startLcPosition": "123", + "impact": { + "lower": "Hainichen", + "upper": "Berbersdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Chemnitz", + "title": "A4 | Berbersdorf - Hainichen", + "startTimestamp": "2026-03-26T15:00:00+01:00", + "coordinate": { + "lat": 50.9994924079776, + "long": 13.157915323148503 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 15:00 Uhr", + "Ende: 10.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "A4: Dresden -> Chemnitz, zwischen 3.1 km hinter AS Berbersdorf und 2.6 km vor AS Hainichen", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A4 von Berbersdorf (AS) nach Hainichen (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.157915323, + 50.999492408 + ], + [ + 13.1559197, + 50.998970201 + ], + [ + 13.1515292, + 50.997807501 + ], + [ + 13.1513482, + 50.997759801 + ], + [ + 13.1511891, + 50.997716501 + ], + [ + 13.1493479, + 50.997175901 + ], + [ + 13.1482234, + 50.996825201 + ], + [ + 13.1443909, + 50.995593201 + ], + [ + 13.1397083, + 50.994086901 + ], + [ + 13.1373486, + 50.993324601 + ], + [ + 13.1364577, + 50.993039301 + ], + [ + 13.1355519, + 50.992763701 + ], + [ + 13.1343864, + 50.992445101 + ], + [ + 13.1336643, + 50.992271701 + ], + [ + 13.1323365, + 50.992016701 + ], + [ + 13.132211, + 50.991998001 + ], + [ + 13.132097968, + 50.991981208 + ] + ] + } + }, + { + "identifier": "2026-017222--vi-bs.2026-04-13_08-45-00-000.devi-zus.2026-04-13_08-45-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.03794286380309,13.322820939131741,51.04862956265361,13.346553710668827", + "point": "51.03794286380309,13.322820939131741", + "startLcPosition": "124", + "impact": { + "lower": "Nossen", + "upper": "Siebenlehn", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Dresden", + "title": "A4 | Siebenlehn - Nossen", + "coordinate": { + "lat": 51.03794286380309, + "long": 13.322820939131741 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:45 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "", + "A4: Chemnitz -> Dresden, zwischen 2.1 km hinter AS Siebenlehn und 1.6 km vor AD Nossen", + "", + "L\u00e4nge: 2.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A4 von Siebenlehn (AS) nach Nossen (AD) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.322820939, + 51.037942864 + ], + [ + 13.32306, + 51.037982001 + ], + [ + 13.3231914, + 51.038003601 + ], + [ + 13.3238581, + 51.038135701 + ], + [ + 13.3246448, + 51.038299501 + ], + [ + 13.3256552, + 51.038556801 + ], + [ + 13.3262947, + 51.038737801 + ], + [ + 13.3269953, + 51.038950501 + ], + [ + 13.3273686, + 51.039074301 + ], + [ + 13.3280572, + 51.039309501 + ], + [ + 13.3286918, + 51.039564401 + ], + [ + 13.3293087, + 51.039824301 + ], + [ + 13.3295271, + 51.039919601 + ], + [ + 13.3301702, + 51.040226201 + ], + [ + 13.3308015, + 51.040549901 + ], + [ + 13.3316802, + 51.041067701 + ], + [ + 13.3323234, + 51.041497501 + ], + [ + 13.3329314, + 51.041936701 + ], + [ + 13.333639, + 51.042494901 + ], + [ + 13.3343356, + 51.043060501 + ], + [ + 13.3349215, + 51.043531701 + ], + [ + 13.3360363, + 51.044436301 + ], + [ + 13.3369672, + 51.045172301 + ], + [ + 13.3373507, + 51.045473501 + ], + [ + 13.3377873, + 51.045772601 + ], + [ + 13.3381806, + 51.046006501 + ], + [ + 13.3385458, + 51.046204201 + ], + [ + 13.3387972, + 51.046335201 + ], + [ + 13.3393866, + 51.046637401 + ], + [ + 13.3398526, + 51.046858101 + ], + [ + 13.340376, + 51.047079101 + ], + [ + 13.3410789, + 51.047360001 + ], + [ + 13.3417606, + 51.047590001 + ], + [ + 13.3423709, + 51.047781701 + ], + [ + 13.3429327, + 51.047935801 + ], + [ + 13.3435061, + 51.048076401 + ], + [ + 13.3441261, + 51.048213501 + ], + [ + 13.3447423, + 51.048333601 + ], + [ + 13.3453265, + 51.048435201 + ], + [ + 13.3459132, + 51.048529001 + ], + [ + 13.3463516, + 51.048598501 + ], + [ + 13.346553711, + 51.048629563 + ] + ] + } + }, + { + "identifier": "2026-017222--vi-bs.2026-04-13_08-45-00-000.devi-zus.2026-04-13_08-45-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.03794286380309,13.322820939131741,51.04862956265361,13.346553710668827", + "point": "51.03794286380309,13.322820939131741", + "startLcPosition": "124", + "impact": { + "lower": "Nossen", + "upper": "Siebenlehn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Dresden", + "title": "A4 | Siebenlehn - Nossen", + "coordinate": { + "lat": 51.03794286380309, + "long": 13.322820939131741 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:45 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "", + "A4: Chemnitz -> Dresden, zwischen 2.1 km hinter AS Siebenlehn und 1.6 km vor AD Nossen", + "", + "L\u00e4nge: 2.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 von Siebenlehn (AS) nach Nossen (AD) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.322820939, + 51.037942864 + ], + [ + 13.32306, + 51.037982001 + ], + [ + 13.3231914, + 51.038003601 + ], + [ + 13.3238581, + 51.038135701 + ], + [ + 13.3246448, + 51.038299501 + ], + [ + 13.3256552, + 51.038556801 + ], + [ + 13.3262947, + 51.038737801 + ], + [ + 13.3269953, + 51.038950501 + ], + [ + 13.3273686, + 51.039074301 + ], + [ + 13.3280572, + 51.039309501 + ], + [ + 13.3286918, + 51.039564401 + ], + [ + 13.3293087, + 51.039824301 + ], + [ + 13.3295271, + 51.039919601 + ], + [ + 13.3301702, + 51.040226201 + ], + [ + 13.3308015, + 51.040549901 + ], + [ + 13.3316802, + 51.041067701 + ], + [ + 13.3323234, + 51.041497501 + ], + [ + 13.3329314, + 51.041936701 + ], + [ + 13.333639, + 51.042494901 + ], + [ + 13.3343356, + 51.043060501 + ], + [ + 13.3349215, + 51.043531701 + ], + [ + 13.3360363, + 51.044436301 + ], + [ + 13.3369672, + 51.045172301 + ], + [ + 13.3373507, + 51.045473501 + ], + [ + 13.3377873, + 51.045772601 + ], + [ + 13.3381806, + 51.046006501 + ], + [ + 13.3385458, + 51.046204201 + ], + [ + 13.3387972, + 51.046335201 + ], + [ + 13.3393866, + 51.046637401 + ], + [ + 13.3398526, + 51.046858101 + ], + [ + 13.340376, + 51.047079101 + ], + [ + 13.3410789, + 51.047360001 + ], + [ + 13.3417606, + 51.047590001 + ], + [ + 13.3423709, + 51.047781701 + ], + [ + 13.3429327, + 51.047935801 + ], + [ + 13.3435061, + 51.048076401 + ], + [ + 13.3441261, + 51.048213501 + ], + [ + 13.3447423, + 51.048333601 + ], + [ + 13.3453265, + 51.048435201 + ], + [ + 13.3459132, + 51.048529001 + ], + [ + 13.3463516, + 51.048598501 + ], + [ + 13.346553711, + 51.048629563 + ] + ] + } + }, + { + "identifier": "2023-003029--vi-fbm.2026-03-23_08-00-00-000.devi-zus.2024-04-29_08-30-00-000_002.de218", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.06026667346528,13.459700286207031,51.06234596642539,13.59460685864584", + "point": "51.06026667346528,13.459700286207031", + "startLcPosition": "126", + "impact": { + "lower": "Dresden-West", + "upper": "Nossen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Dresden", + "title": "A4 | Nossen - Dresden-West", + "coordinate": { + "lat": 51.06026667346528, + "long": 13.459700286207031 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 23.03.26 und dem 23.04.26 von 08:00 bis 16:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 27.03.26 und dem 24.04.26 von 08:00 bis 12:00 Uhr.", + "", + "A4: Chemnitz -> Dresden, zwischen 6.8 km hinter AD Nossen und 0.8 km vor AD Dresden-West", + "", + "L\u00e4nge: 9.49 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "FBE A4-West Km 23,50 - 15,30 Richtungsfahrbahn Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.459700286, + 51.060266673 + ], + [ + 13.4632526, + 51.060045501 + ], + [ + 13.4651665, + 51.059924501 + ], + [ + 13.4682941, + 51.059726101 + ], + [ + 13.4714437, + 51.059529401 + ], + [ + 13.4734241, + 51.059417701 + ], + [ + 13.4746354, + 51.059366501 + ], + [ + 13.4763079, + 51.059305301 + ], + [ + 13.4779837, + 51.059263501 + ], + [ + 13.4794415, + 51.059240101 + ], + [ + 13.4809359, + 51.059227801 + ], + [ + 13.4825777, + 51.059239801 + ], + [ + 13.4834426, + 51.059248001 + ], + [ + 13.4852596, + 51.059284301 + ], + [ + 13.4868451, + 51.059332001 + ], + [ + 13.4880312, + 51.059379801 + ], + [ + 13.4896043, + 51.059456701 + ], + [ + 13.4902693, + 51.059493401 + ], + [ + 13.4909329, + 51.059532901 + ], + [ + 13.4921226, + 51.059611301 + ], + [ + 13.4939738, + 51.059753501 + ], + [ + 13.4951216, + 51.059845801 + ], + [ + 13.4960391, + 51.059932301 + ], + [ + 13.4975353, + 51.060086001 + ], + [ + 13.4990312, + 51.060248701 + ], + [ + 13.5009978, + 51.060483601 + ], + [ + 13.5021581, + 51.060623201 + ], + [ + 13.5035305, + 51.060770001 + ], + [ + 13.5049125, + 51.060904901 + ], + [ + 13.5061121, + 51.060989801 + ], + [ + 13.5073411, + 51.061051701 + ], + [ + 13.5084915, + 51.061082801 + ], + [ + 13.5095665, + 51.061084701 + ], + [ + 13.5103212, + 51.061071701 + ], + [ + 13.5109294, + 51.061055501 + ], + [ + 13.5117336, + 51.061017101 + ], + [ + 13.5127797, + 51.060948401 + ], + [ + 13.5141901, + 51.060832301 + ], + [ + 13.5160238, + 51.060666501 + ], + [ + 13.5177319, + 51.060522501 + ], + [ + 13.5185543, + 51.060472401 + ], + [ + 13.5189913, + 51.060450801 + ], + [ + 13.5201281, + 51.060414101 + ], + [ + 13.5211477, + 51.060402701 + ], + [ + 13.522092, + 51.060423201 + ], + [ + 13.5234484, + 51.060459201 + ], + [ + 13.5246602, + 51.060491301 + ], + [ + 13.5262096, + 51.060533201 + ], + [ + 13.5282691, + 51.060587901 + ], + [ + 13.5300062, + 51.060641801 + ], + [ + 13.530282, + 51.060648601 + ], + [ + 13.5320275, + 51.060705701 + ], + [ + 13.5333028, + 51.060747501 + ], + [ + 13.5373516, + 51.060867501 + ], + [ + 13.5412132, + 51.060981901 + ], + [ + 13.5496517, + 51.061241801 + ], + [ + 13.5528529, + 51.061338201 + ], + [ + 13.5562909, + 51.061437101 + ], + [ + 13.5567358, + 51.061451201 + ], + [ + 13.5599585, + 51.061552101 + ], + [ + 13.5607467, + 51.061573801 + ], + [ + 13.5635634, + 51.061659401 + ], + [ + 13.5658189, + 51.061711401 + ], + [ + 13.5674594, + 51.061734301 + ], + [ + 13.5695251, + 51.061753101 + ], + [ + 13.5739361, + 51.061772801 + ], + [ + 13.5741476, + 51.061775501 + ], + [ + 13.5753525, + 51.061791001 + ], + [ + 13.5765667, + 51.061813101 + ], + [ + 13.578745, + 51.061871901 + ], + [ + 13.5795213, + 51.061895101 + ], + [ + 13.5804775, + 51.061926201 + ], + [ + 13.5809598, + 51.061940201 + ], + [ + 13.5843833, + 51.062041301 + ], + [ + 13.5875466, + 51.062134801 + ], + [ + 13.5882036, + 51.062158001 + ], + [ + 13.588779, + 51.062175901 + ], + [ + 13.5902653, + 51.062219101 + ], + [ + 13.5925442, + 51.062287501 + ], + [ + 13.5940016, + 51.062330201 + ], + [ + 13.594606859, + 51.062345966 + ] + ] + } + }, + { + "identifier": "2026-017222--vi-bs.2026-04-13_08-45-00-000.devi-zus.2026-04-13_08-45-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.049827232012014,13.35340987399114,51.03994433108825,13.329163669568157", + "point": "51.049827232012014,13.35340987399114", + "startLcPosition": "126", + "impact": { + "lower": "Am Steinberg", + "upper": "Nossen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Chemnitz", + "title": "A4 | Nossen - Am Steinberg", + "coordinate": { + "lat": 51.049827232012014, + "long": 13.35340987399114 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 08:45 bis 16:00 Uhr", + "", + "A4: Dresden -> Chemnitz, zwischen 1.1 km hinter AD Nossen und 0.3 km vor Am Steinberg", + "", + "L\u00e4nge: 2.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A4 von Siebenlehn (AS) nach Nossen (AD) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.353409874, + 51.049827232 + ], + [ + 13.3515899, + 51.049551401 + ], + [ + 13.3501722, + 51.049336401 + ], + [ + 13.3487592, + 51.049122301 + ], + [ + 13.346325, + 51.048752001 + ], + [ + 13.3458353, + 51.048675101 + ], + [ + 13.3452664, + 51.048586401 + ], + [ + 13.3445798, + 51.048464001 + ], + [ + 13.3440355, + 51.048356701 + ], + [ + 13.3434257, + 51.048221601 + ], + [ + 13.342819, + 51.048075201 + ], + [ + 13.3422307, + 51.047909101 + ], + [ + 13.3417028, + 51.047743401 + ], + [ + 13.3409395, + 51.047482301 + ], + [ + 13.3401931, + 51.047192001 + ], + [ + 13.3397089, + 51.046982001 + ], + [ + 13.3392421, + 51.046761401 + ], + [ + 13.3388708, + 51.046568601 + ], + [ + 13.338602, + 51.046427601 + ], + [ + 13.3383952, + 51.046319101 + ], + [ + 13.3380012, + 51.046115001 + ], + [ + 13.3376228, + 51.045880801 + ], + [ + 13.3371635, + 51.045575101 + ], + [ + 13.3367738, + 51.045271201 + ], + [ + 13.3358705, + 51.044553801 + ], + [ + 13.3341165, + 51.043131401 + ], + [ + 13.333463, + 51.042598501 + ], + [ + 13.3327644, + 51.042050801 + ], + [ + 13.3321697, + 51.041618701 + ], + [ + 13.3315509, + 51.041200601 + ], + [ + 13.3309173, + 51.040837601 + ], + [ + 13.3301325, + 51.040404101 + ], + [ + 13.329631, + 51.040156301 + ], + [ + 13.32916367, + 51.039944331 + ] + ] + } + }, + { + "identifier": "2026-017222--vi-bs.2026-04-13_08-45-00-000.devi-zus.2026-04-13_08-45-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.049827232012014,13.35340987399114,51.03994433108825,13.329163669568157", + "point": "51.049827232012014,13.35340987399114", + "startLcPosition": "126", + "impact": { + "lower": "Am Steinberg", + "upper": "Nossen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Chemnitz", + "title": "A4 | Nossen - Am Steinberg", + "coordinate": { + "lat": 51.049827232012014, + "long": 13.35340987399114 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 08:45 bis 16:00 Uhr", + "", + "A4: Dresden -> Chemnitz, zwischen 1.1 km hinter AD Nossen und 0.3 km vor Am Steinberg", + "", + "L\u00e4nge: 2.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A4 von Siebenlehn (AS) nach Nossen (AD) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.353409874, + 51.049827232 + ], + [ + 13.3515899, + 51.049551401 + ], + [ + 13.3501722, + 51.049336401 + ], + [ + 13.3487592, + 51.049122301 + ], + [ + 13.346325, + 51.048752001 + ], + [ + 13.3458353, + 51.048675101 + ], + [ + 13.3452664, + 51.048586401 + ], + [ + 13.3445798, + 51.048464001 + ], + [ + 13.3440355, + 51.048356701 + ], + [ + 13.3434257, + 51.048221601 + ], + [ + 13.342819, + 51.048075201 + ], + [ + 13.3422307, + 51.047909101 + ], + [ + 13.3417028, + 51.047743401 + ], + [ + 13.3409395, + 51.047482301 + ], + [ + 13.3401931, + 51.047192001 + ], + [ + 13.3397089, + 51.046982001 + ], + [ + 13.3392421, + 51.046761401 + ], + [ + 13.3388708, + 51.046568601 + ], + [ + 13.338602, + 51.046427601 + ], + [ + 13.3383952, + 51.046319101 + ], + [ + 13.3380012, + 51.046115001 + ], + [ + 13.3376228, + 51.045880801 + ], + [ + 13.3371635, + 51.045575101 + ], + [ + 13.3367738, + 51.045271201 + ], + [ + 13.3358705, + 51.044553801 + ], + [ + 13.3341165, + 51.043131401 + ], + [ + 13.333463, + 51.042598501 + ], + [ + 13.3327644, + 51.042050801 + ], + [ + 13.3321697, + 51.041618701 + ], + [ + 13.3315509, + 51.041200601 + ], + [ + 13.3309173, + 51.040837601 + ], + [ + 13.3301325, + 51.040404101 + ], + [ + 13.329631, + 51.040156301 + ], + [ + 13.32916367, + 51.039944331 + ] + ] + } + }, + { + "identifier": "2026-015892--vi-bs.2026-04-07_22-00-00-000.devi-bs.2026-04-07_22-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.106114879789146,13.731356758977947,51.100509733379894,13.710801238105706", + "point": "51.106114879789146,13.731356758977947", + "startLcPosition": "133", + "impact": { + "lower": "Dresden-Neustadt", + "upper": "Dresden-Hellerau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Chemnitz", + "title": "A4 | Dresden-Hellerau - Dresden-Neustadt", + "coordinate": { + "lat": 51.106114879789146, + "long": 13.731356758977947 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "Jeden Dienstag und Mittwoch zwischen dem 21.04.26 und dem 23.04.26 von 20:00 bis 00:00 Uhr.", + "Jeden Mittwoch und Donnerstag zwischen dem 22.04.26 und dem 23.04.26 von 00:00 bis 05:00 Uhr.", + "", + "A4: Dresden -> Chemnitz, zwischen 0.2 km hinter AS Dresden-Hellerau und 2.6 km vor AS Dresden-Neustadt", + "", + "L\u00e4nge: 1.58 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A4w Km 3,9 RF AC - AS DD Wilder Mann - Betonsanierung - 060-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.731356759, + 51.10611488 + ], + [ + 13.7306364, + 51.105782601 + ], + [ + 13.7298446, + 51.105455701 + ], + [ + 13.7290112, + 51.105127901 + ], + [ + 13.7281174, + 51.104804601 + ], + [ + 13.7275725, + 51.104618301 + ], + [ + 13.7269911, + 51.104426601 + ], + [ + 13.7262844, + 51.104207801 + ], + [ + 13.7258239, + 51.104074801 + ], + [ + 13.7256646, + 51.104028801 + ], + [ + 13.7248928, + 51.103812501 + ], + [ + 13.7243304, + 51.103663101 + ], + [ + 13.7234055, + 51.103430101 + ], + [ + 13.7229323, + 51.103319001 + ], + [ + 13.7217341, + 51.103037801 + ], + [ + 13.7192064, + 51.102470501 + ], + [ + 13.7173379, + 51.102035801 + ], + [ + 13.7144305, + 51.101363401 + ], + [ + 13.7137348, + 51.101202501 + ], + [ + 13.7134591, + 51.101138701 + ], + [ + 13.712024, + 51.100795801 + ], + [ + 13.710801238, + 51.100509733 + ] + ] + } + }, + { + "identifier": "2026-017502--vi-bs.2026-04-15_21-00-00-000.devi-bs.2026-04-15_21-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.13013736466989,13.749076662690754,51.1165599254548,13.744257505338929", + "point": "51.13013736466989,13.749076662690754", + "startLcPosition": "135", + "impact": { + "lower": "Dresden-Hellerau", + "upper": "Dresden-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Chemnitz", + "title": "A4 | Dresden-Nord - Dresden-Hellerau", + "coordinate": { + "lat": 51.13013736466989, + "long": 13.749076662690754 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 21:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A4: Dresden -> Chemnitz, zwischen 0.7 km hinter AD Dresden-Nord und 1.3 km vor AS Dresden-Hellerau", + "", + "L\u00e4nge: 1.55 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A4w km 0,2 RF AC - AS DD-Flughafen - Markierungsarbeiten - 066-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.749076663, + 51.130137365 + ], + [ + 13.7489254, + 51.129637701 + ], + [ + 13.7485313, + 51.128363201 + ], + [ + 13.7483054, + 51.127576201 + ], + [ + 13.7481184, + 51.126995401 + ], + [ + 13.7473456, + 51.124457101 + ], + [ + 13.7472081, + 51.124009901 + ], + [ + 13.7471285, + 51.123727801 + ], + [ + 13.74706, + 51.123487001 + ], + [ + 13.7467644, + 51.122583101 + ], + [ + 13.7466293, + 51.122059301 + ], + [ + 13.7464778, + 51.121582601 + ], + [ + 13.7462977, + 51.120992601 + ], + [ + 13.7460909, + 51.120415301 + ], + [ + 13.7458932, + 51.119892301 + ], + [ + 13.7458175, + 51.119710701 + ], + [ + 13.7453165, + 51.118640101 + ], + [ + 13.7451919, + 51.118378701 + ], + [ + 13.7447356, + 51.117475101 + ], + [ + 13.744257505, + 51.116559925 + ] + ] + } + }, + { + "identifier": "2026-012437--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-04-07_08-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.17082667739672,13.894832538275397,51.166839436197705,13.920066392977976", + "point": "51.17082667739672,13.894832538275397", + "startLcPosition": "138", + "impact": { + "lower": "Pulsnitz", + "upper": "Ottendorf-Okrilla", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> G\u00f6rlitz", + "title": "A4 | Ottendorf-Okrilla - Pulsnitz", + "startTimestamp": "2026-04-08T08:00:00+02:00", + "coordinate": { + "lat": 51.17082667739672, + "long": 13.894832538275397 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 08:00 Uhr", + "Ende: 26.06.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.06.26)", + "", + "A4: Dresden -> G\u00f6rlitz, zwischen 2.6 km hinter AS Ottendorf-Okrilla und 4.1 km vor AS Pulsnitz", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A4 - Instandsetzung BW 11\u00dc1 " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.894832538, + 51.170826677 + ], + [ + 13.899102, + 51.170695801 + ], + [ + 13.9005315, + 51.170652801 + ], + [ + 13.9008736, + 51.170640301 + ], + [ + 13.9025975, + 51.170589001 + ], + [ + 13.9040522, + 51.170545301 + ], + [ + 13.9053067, + 51.170506401 + ], + [ + 13.910037, + 51.170340201 + ], + [ + 13.9106598, + 51.170305301 + ], + [ + 13.9110611, + 51.170268401 + ], + [ + 13.9121009, + 51.170131201 + ], + [ + 13.9130925, + 51.169961001 + ], + [ + 13.9140728, + 51.169729401 + ], + [ + 13.9152236, + 51.169404001 + ], + [ + 13.9162875, + 51.169032901 + ], + [ + 13.9166279, + 51.168887201 + ], + [ + 13.9170754, + 51.168689501 + ], + [ + 13.9172741, + 51.168601801 + ], + [ + 13.9180204, + 51.168217001 + ], + [ + 13.9187263, + 51.167797001 + ], + [ + 13.9199805, + 51.166911801 + ], + [ + 13.920066393, + 51.166839436 + ] + ] + } + }, + { + "identifier": "2026-012437--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-04-07_08-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.16690715761468,13.920210250813192,51.170936087893125,13.894841036247776", + "point": "51.16690715761468,13.920210250813192", + "startLcPosition": "139", + "impact": { + "lower": "Ottendorf-Okrilla", + "upper": "Pulsnitz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | Pulsnitz - Ottendorf-Okrilla", + "startTimestamp": "2026-04-08T08:00:00+02:00", + "coordinate": { + "lat": 51.16690715761468, + "long": 13.920210250813192 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 08:00 Uhr", + "Ende: 26.06.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.06.26)", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 4.1 km hinter AS Pulsnitz und 2.6 km vor AS Ottendorf-Okrilla", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A4 - Instandsetzung BW 11\u00dc1 " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.920210251, + 51.166907158 + ], + [ + 13.9200925, + 51.167005701 + ], + [ + 13.9187876, + 51.167929301 + ], + [ + 13.9181314, + 51.168303601 + ], + [ + 13.9173518, + 51.168692701 + ], + [ + 13.9167584, + 51.168952601 + ], + [ + 13.9163767, + 51.169111401 + ], + [ + 13.9153022, + 51.169502701 + ], + [ + 13.9141112, + 51.169849301 + ], + [ + 13.9131178, + 51.170071901 + ], + [ + 13.9120985, + 51.170252201 + ], + [ + 13.9110662, + 51.170382401 + ], + [ + 13.9100412, + 51.170468001 + ], + [ + 13.9053369, + 51.170614901 + ], + [ + 13.9008812, + 51.170752201 + ], + [ + 13.9005115, + 51.170762301 + ], + [ + 13.8991082, + 51.170804801 + ], + [ + 13.8964658, + 51.170886101 + ], + [ + 13.894841036, + 51.170936088 + ] + ] + } + }, + { + "identifier": "2024-013524--vi-fbm.2026-04-24_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_015.de11", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.17558255215331,14.095658405939782,51.202177271713964,14.277137592168458", + "point": "51.17558255215331,14.095658405939782", + "startLcPosition": "141", + "impact": { + "lower": "Oberlausitz", + "upper": "R\u00f6dertal", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> G\u00f6rlitz", + "title": "A4 | R\u00f6dertal - Oberlausitz", + "startTimestamp": "2026-04-24T00:00:00+02:00", + "coordinate": { + "lat": 51.17558255215331, + "long": 14.095658405939782 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.04.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.09.26)", + "", + "A4: Dresden -> G\u00f6rlitz, zwischen 2.5 km hinter R\u00f6dertal und 3.8 km vor Oberlausitz", + "", + "L\u00e4nge: 13.57 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A4-Ost, FBE zw. AS Ohorn bis AS Salzenforst (km 30,90-38,10), RiFa G\u00f6rlitz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.095658406, + 51.175582552 + ], + [ + 14.0964426, + 51.175750801 + ], + [ + 14.0970367, + 51.175842201 + ], + [ + 14.0973637, + 51.175883901 + ], + [ + 14.0982035, + 51.175965201 + ], + [ + 14.099171, + 51.176012901 + ], + [ + 14.1001385, + 51.176003201 + ], + [ + 14.1004883, + 51.175983401 + ], + [ + 14.1008721, + 51.175961501 + ], + [ + 14.1011871, + 51.175934501 + ], + [ + 14.1018901, + 51.175856201 + ], + [ + 14.1023941, + 51.175781201 + ], + [ + 14.1027264, + 51.175716901 + ], + [ + 14.1034861, + 51.175573701 + ], + [ + 14.1067951, + 51.174809801 + ], + [ + 14.1086595, + 51.174387201 + ], + [ + 14.1091739, + 51.174283701 + ], + [ + 14.1102775, + 51.174089501 + ], + [ + 14.1118501, + 51.173917601 + ], + [ + 14.1124958, + 51.173866901 + ], + [ + 14.1134252, + 51.173801601 + ], + [ + 14.1141419, + 51.173759301 + ], + [ + 14.114559, + 51.173733501 + ], + [ + 14.1170302, + 51.173569001 + ], + [ + 14.117448, + 51.173544201 + ], + [ + 14.1193638, + 51.173409301 + ], + [ + 14.1219352, + 51.173241601 + ], + [ + 14.1224082, + 51.173217101 + ], + [ + 14.1228044, + 51.173200701 + ], + [ + 14.1232622, + 51.173191201 + ], + [ + 14.1238551, + 51.173191301 + ], + [ + 14.1243768, + 51.173211101 + ], + [ + 14.1248958, + 51.173243201 + ], + [ + 14.1253612, + 51.173283701 + ], + [ + 14.1258221, + 51.173340701 + ], + [ + 14.1261315, + 51.173381501 + ], + [ + 14.1269666, + 51.173514301 + ], + [ + 14.1289079, + 51.173882701 + ], + [ + 14.1296077, + 51.174011401 + ], + [ + 14.1303211, + 51.174122901 + ], + [ + 14.1312077, + 51.174232001 + ], + [ + 14.1320335, + 51.174285101 + ], + [ + 14.1341011, + 51.174406001 + ], + [ + 14.1349274, + 51.174450601 + ], + [ + 14.1362933, + 51.174560101 + ], + [ + 14.1370483, + 51.174661901 + ], + [ + 14.13733, + 51.174711001 + ], + [ + 14.1378997, + 51.174820001 + ], + [ + 14.1388514, + 51.175054501 + ], + [ + 14.1393747, + 51.175201101 + ], + [ + 14.1399083, + 51.175380501 + ], + [ + 14.1401401, + 51.175467001 + ], + [ + 14.1406198, + 51.175654001 + ], + [ + 14.1411129, + 51.175870501 + ], + [ + 14.1416428, + 51.176136901 + ], + [ + 14.142067, + 51.176379301 + ], + [ + 14.1427289, + 51.176799301 + ], + [ + 14.1430527, + 51.177024401 + ], + [ + 14.1435918, + 51.177443901 + ], + [ + 14.1442234, + 51.177928401 + ], + [ + 14.1448299, + 51.178384801 + ], + [ + 14.1451492, + 51.178627701 + ], + [ + 14.1454486, + 51.178849901 + ], + [ + 14.1456676, + 51.179005701 + ], + [ + 14.145903, + 51.179163601 + ], + [ + 14.1462065, + 51.179350501 + ], + [ + 14.1465146, + 51.179542101 + ], + [ + 14.1469009, + 51.179741201 + ], + [ + 14.1473085, + 51.179934201 + ], + [ + 14.1476891, + 51.180103501 + ], + [ + 14.1480472, + 51.180250301 + ], + [ + 14.1482975, + 51.180344701 + ], + [ + 14.1486597, + 51.180471801 + ], + [ + 14.1490541, + 51.180598201 + ], + [ + 14.149538, + 51.180742001 + ], + [ + 14.149928, + 51.180846501 + ], + [ + 14.1505002, + 51.180969101 + ], + [ + 14.1510478, + 51.181069801 + ], + [ + 14.1515885, + 51.181152601 + ], + [ + 14.15442, + 51.181514401 + ], + [ + 14.1605057, + 51.182280501 + ], + [ + 14.1607989, + 51.182317401 + ], + [ + 14.1653643, + 51.182892101 + ], + [ + 14.1658961, + 51.182960201 + ], + [ + 14.166746, + 51.183079301 + ], + [ + 14.1673203, + 51.183169701 + ], + [ + 14.1680486, + 51.183311701 + ], + [ + 14.1685209, + 51.183412501 + ], + [ + 14.1692219, + 51.183577001 + ], + [ + 14.1699488, + 51.183774001 + ], + [ + 14.1708405, + 51.184053501 + ], + [ + 14.1717106, + 51.184367601 + ], + [ + 14.1723333, + 51.184617801 + ], + [ + 14.1729416, + 51.184885601 + ], + [ + 14.1740476, + 51.185439601 + ], + [ + 14.1764149, + 51.186676001 + ], + [ + 14.1770651, + 51.187018501 + ], + [ + 14.1777247, + 51.187349401 + ], + [ + 14.1783863, + 51.187666201 + ], + [ + 14.1790676, + 51.187968301 + ], + [ + 14.1799572, + 51.188326201 + ], + [ + 14.1808766, + 51.188654101 + ], + [ + 14.1818483, + 51.188955401 + ], + [ + 14.1827983, + 51.189214001 + ], + [ + 14.1836142, + 51.189406701 + ], + [ + 14.1844317, + 51.189578101 + ], + [ + 14.186141, + 51.189913201 + ], + [ + 14.1897407, + 51.190640901 + ], + [ + 14.1899129, + 51.190680401 + ], + [ + 14.1902753, + 51.190771301 + ], + [ + 14.1909584, + 51.190946001 + ], + [ + 14.1919366, + 51.191218901 + ], + [ + 14.192605, + 51.191439201 + ], + [ + 14.1929341, + 51.191547601 + ], + [ + 14.1956013, + 51.192521001 + ], + [ + 14.1986009, + 51.193610601 + ], + [ + 14.1993441, + 51.193862801 + ], + [ + 14.2000189, + 51.194070601 + ], + [ + 14.2012833, + 51.194435201 + ], + [ + 14.2039119, + 51.195182801 + ], + [ + 14.206612, + 51.195953101 + ], + [ + 14.207799, + 51.196281501 + ], + [ + 14.2095584, + 51.196692101 + ], + [ + 14.2100094, + 51.196773601 + ], + [ + 14.2113896, + 51.196976601 + ], + [ + 14.2127909, + 51.197142201 + ], + [ + 14.2157005, + 51.197445801 + ], + [ + 14.219568, + 51.197856001 + ], + [ + 14.2201093, + 51.197910601 + ], + [ + 14.2205285, + 51.197955301 + ], + [ + 14.2221412, + 51.198133901 + ], + [ + 14.2252206, + 51.198463401 + ], + [ + 14.2255228, + 51.198493601 + ], + [ + 14.2263049, + 51.198570301 + ], + [ + 14.2276415, + 51.198713901 + ], + [ + 14.2279403, + 51.198746001 + ], + [ + 14.2290533, + 51.198861401 + ], + [ + 14.2328271, + 51.199257801 + ], + [ + 14.234199, + 51.199410201 + ], + [ + 14.234687, + 51.199462401 + ], + [ + 14.2355738, + 51.199569801 + ], + [ + 14.2365644, + 51.199720501 + ], + [ + 14.237635, + 51.199922801 + ], + [ + 14.2387054, + 51.200168901 + ], + [ + 14.2408556, + 51.200725601 + ], + [ + 14.2411709, + 51.200812401 + ], + [ + 14.2414092, + 51.200871701 + ], + [ + 14.2440407, + 51.201584301 + ], + [ + 14.2444428, + 51.201689401 + ], + [ + 14.2478837, + 51.202610501 + ], + [ + 14.2495839, + 51.203054001 + ], + [ + 14.2500175, + 51.203158901 + ], + [ + 14.2519937, + 51.203540101 + ], + [ + 14.2532451, + 51.203709401 + ], + [ + 14.2545187, + 51.203850501 + ], + [ + 14.255736, + 51.203919801 + ], + [ + 14.2569547, + 51.203952201 + ], + [ + 14.2580797, + 51.203946501 + ], + [ + 14.2590479, + 51.203906901 + ], + [ + 14.2592054, + 51.203900501 + ], + [ + 14.260342, + 51.203824701 + ], + [ + 14.2606917, + 51.203793801 + ], + [ + 14.261491, + 51.203710801 + ], + [ + 14.2621183, + 51.203647701 + ], + [ + 14.2640306, + 51.203462501 + ], + [ + 14.2690359, + 51.202974401 + ], + [ + 14.2717445, + 51.202717101 + ], + [ + 14.2721867, + 51.202672001 + ], + [ + 14.276096, + 51.202283001 + ], + [ + 14.277137592, + 51.202177272 + ] + ] + } + }, + { + "identifier": "2024-013524--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_00-00-00-000_015.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.177045154475664,14.143079370366182,51.179894202991235,14.147224027391388", + "point": "51.177045154475664,14.143079370366182", + "startLcPosition": "142", + "impact": { + "lower": "Uhyst", + "upper": "Burkau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> G\u00f6rlitz", + "title": "A4 | Burkau - Uhyst", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 51.177045154475664, + "long": 14.143079370366182 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 24.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.09.26)", + "", + "A4: Dresden -> G\u00f6rlitz, zwischen 0.3 km hinter AS Burkau und 5.6 km vor AS Uhyst", + "", + "L\u00e4nge: 0.43 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A4-Ost, FBE zw. AS Ohorn bis AS Salzenforst (km 30,90-38,10), RiFa G\u00f6rlitz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.14307937, + 51.177045154 + ], + [ + 14.1435918, + 51.177443901 + ], + [ + 14.1442234, + 51.177928401 + ], + [ + 14.1448299, + 51.178384801 + ], + [ + 14.1451492, + 51.178627701 + ], + [ + 14.1454486, + 51.178849901 + ], + [ + 14.1456676, + 51.179005701 + ], + [ + 14.145903, + 51.179163601 + ], + [ + 14.1462065, + 51.179350501 + ], + [ + 14.1465146, + 51.179542101 + ], + [ + 14.1469009, + 51.179741201 + ], + [ + 14.147224027, + 51.179894203 + ] + ] + } + }, + { + "identifier": "2026-015798--vi-bs.2026-03-30_07-00-00-000_014.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.20242327676328,14.297191151535554,51.19085085400068,14.364990316719943", + "point": "51.20242327676328,14.297191151535554", + "startLcPosition": "143", + "impact": { + "lower": "Bautzen-West", + "upper": "Uhyst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> G\u00f6rlitz", + "title": "A4 | Uhyst - Bautzen-West", + "coordinate": { + "lat": 51.20242327676328, + "long": 14.297191151535554 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 17:00 Uhr", + "", + "A4: Dresden -> G\u00f6rlitz, zwischen 5.5 km hinter AS Uhyst und 3.7 km vor AS Bautzen-West", + "", + "L\u00e4nge: 5.02 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A4-Ost Fahrbahnsanierung Asphalt nach Frostsch\u00e4den - Abschnittsweise im Km 43,0 bis 48,0 - LS - RF GR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.297191152, + 51.202423277 + ], + [ + 14.2974225, + 51.202450201 + ], + [ + 14.2982237, + 51.202547401 + ], + [ + 14.2988208, + 51.202615901 + ], + [ + 14.3014313, + 51.202917501 + ], + [ + 14.302731, + 51.203062301 + ], + [ + 14.3040329, + 51.203193701 + ], + [ + 14.3044515, + 51.203226801 + ], + [ + 14.3050277, + 51.203271601 + ], + [ + 14.3055832, + 51.203302301 + ], + [ + 14.3061859, + 51.203328901 + ], + [ + 14.306704, + 51.203344201 + ], + [ + 14.3072972, + 51.203354401 + ], + [ + 14.3082923, + 51.203357701 + ], + [ + 14.3090712, + 51.203342601 + ], + [ + 14.3096714, + 51.203324701 + ], + [ + 14.31035, + 51.203295901 + ], + [ + 14.3108689, + 51.203264801 + ], + [ + 14.3115007, + 51.203208601 + ], + [ + 14.3120591, + 51.203161201 + ], + [ + 14.312903, + 51.203073701 + ], + [ + 14.3137288, + 51.202972001 + ], + [ + 14.3144984, + 51.202860001 + ], + [ + 14.3152606, + 51.202735901 + ], + [ + 14.3160222, + 51.202599401 + ], + [ + 14.3167895, + 51.202443501 + ], + [ + 14.317556, + 51.202276001 + ], + [ + 14.3183801, + 51.202075401 + ], + [ + 14.3191445, + 51.201872101 + ], + [ + 14.319953, + 51.201642201 + ], + [ + 14.3221092, + 51.200965701 + ], + [ + 14.3245492, + 51.200191701 + ], + [ + 14.3249961, + 51.200066201 + ], + [ + 14.3250689, + 51.200046301 + ], + [ + 14.3266778, + 51.199618601 + ], + [ + 14.328232, + 51.199278101 + ], + [ + 14.3294478, + 51.199051201 + ], + [ + 14.3306719, + 51.198841901 + ], + [ + 14.3316254, + 51.198681801 + ], + [ + 14.332965, + 51.198447901 + ], + [ + 14.3348741, + 51.198125501 + ], + [ + 14.3354864, + 51.198026401 + ], + [ + 14.335968, + 51.197941901 + ], + [ + 14.3365429, + 51.197841801 + ], + [ + 14.3372486, + 51.197725001 + ], + [ + 14.3385179, + 51.197509901 + ], + [ + 14.3432481, + 51.196709201 + ], + [ + 14.343506, + 51.196666501 + ], + [ + 14.3454441, + 51.196329101 + ], + [ + 14.3459571, + 51.196235701 + ], + [ + 14.347241, + 51.195970401 + ], + [ + 14.3484764, + 51.195669501 + ], + [ + 14.3501451, + 51.195194901 + ], + [ + 14.3519229, + 51.194683401 + ], + [ + 14.3519907, + 51.194660801 + ], + [ + 14.3520588, + 51.194639601 + ], + [ + 14.3537943, + 51.194131901 + ], + [ + 14.3557542, + 51.193555701 + ], + [ + 14.3566383, + 51.193297501 + ], + [ + 14.3569176, + 51.193213401 + ], + [ + 14.3584651, + 51.192762501 + ], + [ + 14.3596161, + 51.192427101 + ], + [ + 14.3599126, + 51.192337501 + ], + [ + 14.3599494, + 51.192328101 + ], + [ + 14.3611191, + 51.191976001 + ], + [ + 14.3612358, + 51.191942301 + ], + [ + 14.3613271, + 51.191916601 + ], + [ + 14.3628739, + 51.191465101 + ], + [ + 14.364990317, + 51.190850854 + ] + ] + } + }, + { + "identifier": "2024-013524--vi-fbm.2026-04-24_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_015.de13", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.20232780832597,14.277175002639012,51.175679168123715,14.095606539615037", + "point": "51.20232780832597,14.277175002639012", + "startLcPosition": "144", + "impact": { + "lower": "R\u00f6dertal", + "upper": "Oberlausitz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | Oberlausitz - R\u00f6dertal", + "startTimestamp": "2026-04-24T00:00:00+02:00", + "coordinate": { + "lat": 51.20232780832597, + "long": 14.277175002639012 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.04.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.09.26)", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 3.8 km hinter Oberlausitz und 2.5 km vor R\u00f6dertal", + "", + "L\u00e4nge: 13.57 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4-Ost, FBE zw. AS Ohorn bis AS Salzenforst (km 30,90-38,10), RiFa G\u00f6rlitz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.277175003, + 51.202327808 + ], + [ + 14.2770518, + 51.202339601 + ], + [ + 14.2743139, + 51.202611701 + ], + [ + 14.2722177, + 51.202805301 + ], + [ + 14.271774, + 51.202844201 + ], + [ + 14.2710212, + 51.202929101 + ], + [ + 14.2699965, + 51.203031301 + ], + [ + 14.2681483, + 51.203186001 + ], + [ + 14.2640302, + 51.203578801 + ], + [ + 14.2621425, + 51.203764701 + ], + [ + 14.261292, + 51.203848501 + ], + [ + 14.2607183, + 51.203904401 + ], + [ + 14.2603686, + 51.203935401 + ], + [ + 14.259218, + 51.204009501 + ], + [ + 14.2580758, + 51.204063001 + ], + [ + 14.2569337, + 51.204064501 + ], + [ + 14.2556908, + 51.204035501 + ], + [ + 14.2544482, + 51.203958201 + ], + [ + 14.2531973, + 51.203826701 + ], + [ + 14.2519713, + 51.203654801 + ], + [ + 14.2510159, + 51.203486501 + ], + [ + 14.2500244, + 51.203275601 + ], + [ + 14.2495941, + 51.203177901 + ], + [ + 14.2478188, + 51.202716901 + ], + [ + 14.2443695, + 51.201796401 + ], + [ + 14.2439685, + 51.201689801 + ], + [ + 14.241377, + 51.200991101 + ], + [ + 14.2410999, + 51.200917401 + ], + [ + 14.2407846, + 51.200830401 + ], + [ + 14.2398714, + 51.200585301 + ], + [ + 14.2397047, + 51.200540101 + ], + [ + 14.2386271, + 51.200263801 + ], + [ + 14.2375651, + 51.200025601 + ], + [ + 14.2365015, + 51.199836301 + ], + [ + 14.2352706, + 51.199652601 + ], + [ + 14.2327543, + 51.199371401 + ], + [ + 14.2282824, + 51.198896101 + ], + [ + 14.2254952, + 51.198597901 + ], + [ + 14.2252593, + 51.198573201 + ], + [ + 14.2251935, + 51.198565701 + ], + [ + 14.2221653, + 51.198247801 + ], + [ + 14.2208168, + 51.198104401 + ], + [ + 14.2205654, + 51.198078001 + ], + [ + 14.2201418, + 51.198033801 + ], + [ + 14.2189021, + 51.197899501 + ], + [ + 14.2156448, + 51.197557301 + ], + [ + 14.2134931, + 51.197330801 + ], + [ + 14.2127467, + 51.197249001 + ], + [ + 14.2113233, + 51.197082601 + ], + [ + 14.2109342, + 51.197033201 + ], + [ + 14.2099373, + 51.196869601 + ], + [ + 14.209484, + 51.196780701 + ], + [ + 14.2077271, + 51.196389201 + ], + [ + 14.2063553, + 51.196005201 + ], + [ + 14.2038208, + 51.195283301 + ], + [ + 14.2012051, + 51.194535301 + ], + [ + 14.1999461, + 51.194171001 + ], + [ + 14.199263, + 51.193956901 + ], + [ + 14.198517, + 51.193708901 + ], + [ + 14.1955176, + 51.192621101 + ], + [ + 14.193909, + 51.192038901 + ], + [ + 14.1928107, + 51.191636501 + ], + [ + 14.1924704, + 51.191515601 + ], + [ + 14.1918916, + 51.191328801 + ], + [ + 14.1908701, + 51.191041301 + ], + [ + 14.1902178, + 51.190865101 + ], + [ + 14.1898536, + 51.190777401 + ], + [ + 14.189573, + 51.190715101 + ], + [ + 14.1873957, + 51.190274801 + ], + [ + 14.186052, + 51.190013101 + ], + [ + 14.1856272, + 51.189929801 + ], + [ + 14.1839105, + 51.189588301 + ], + [ + 14.1827476, + 51.189321901 + ], + [ + 14.1817231, + 51.189043401 + ], + [ + 14.1807252, + 51.188732301 + ], + [ + 14.1798462, + 51.188416401 + ], + [ + 14.1789961, + 51.188067701 + ], + [ + 14.1782966, + 51.187762401 + ], + [ + 14.1776176, + 51.187439201 + ], + [ + 14.1769508, + 51.187105101 + ], + [ + 14.1762971, + 51.186759001 + ], + [ + 14.1750094, + 51.186089901 + ], + [ + 14.1739351, + 51.185526001 + ], + [ + 14.1728492, + 51.184984801 + ], + [ + 14.1722326, + 51.184711701 + ], + [ + 14.1715984, + 51.184454001 + ], + [ + 14.1707463, + 51.184147801 + ], + [ + 14.1698721, + 51.183872501 + ], + [ + 14.1691725, + 51.183684801 + ], + [ + 14.1689997, + 51.183639901 + ], + [ + 14.1685097, + 51.183519801 + ], + [ + 14.1680459, + 51.183421901 + ], + [ + 14.1674609, + 51.183312401 + ], + [ + 14.1671583, + 51.183258001 + ], + [ + 14.1666254, + 51.183177201 + ], + [ + 14.165359, + 51.183006601 + ], + [ + 14.1620355, + 51.182586001 + ], + [ + 14.1605672, + 51.182400801 + ], + [ + 14.160257, + 51.182361601 + ], + [ + 14.1550866, + 51.181709301 + ], + [ + 14.1543767, + 51.181623201 + ], + [ + 14.1522628, + 51.181382501 + ], + [ + 14.1515405, + 51.181292001 + ], + [ + 14.1509861, + 51.181207701 + ], + [ + 14.1503842, + 51.181093701 + ], + [ + 14.1498063, + 51.180960701 + ], + [ + 14.149376, + 51.180850701 + ], + [ + 14.1489441, + 51.180728901 + ], + [ + 14.1485496, + 51.180605001 + ], + [ + 14.1484409, + 51.180567201 + ], + [ + 14.1481763, + 51.180475101 + ], + [ + 14.1479122, + 51.180374501 + ], + [ + 14.1475526, + 51.180230701 + ], + [ + 14.1471691, + 51.180060301 + ], + [ + 14.1467353, + 51.179850501 + ], + [ + 14.1463526, + 51.179648001 + ], + [ + 14.1461471, + 51.179535301 + ], + [ + 14.1457292, + 51.179273901 + ], + [ + 14.1454885, + 51.179114701 + ], + [ + 14.145253, + 51.178949101 + ], + [ + 14.1449477, + 51.178720501 + ], + [ + 14.1443328, + 51.178251801 + ], + [ + 14.1440127, + 51.177998001 + ], + [ + 14.1435228, + 51.177618901 + ], + [ + 14.1432679, + 51.177423801 + ], + [ + 14.1428849, + 51.177130601 + ], + [ + 14.1425311, + 51.176880201 + ], + [ + 14.1423137, + 51.176731701 + ], + [ + 14.1419124, + 51.176488401 + ], + [ + 14.1412864, + 51.176146201 + ], + [ + 14.1407898, + 51.175909001 + ], + [ + 14.1401479, + 51.175635901 + ], + [ + 14.1398938, + 51.175536101 + ], + [ + 14.1396055, + 51.175432801 + ], + [ + 14.1390404, + 51.175264001 + ], + [ + 14.1384276, + 51.175095101 + ], + [ + 14.1378568, + 51.174963501 + ], + [ + 14.1371273, + 51.174825401 + ], + [ + 14.1362099, + 51.174700101 + ], + [ + 14.1351976, + 51.174614401 + ], + [ + 14.1340726, + 51.174549301 + ], + [ + 14.1318769, + 51.174424601 + ], + [ + 14.1312825, + 51.174378901 + ], + [ + 14.13059, + 51.174306101 + ], + [ + 14.1302685, + 51.174264901 + ], + [ + 14.1295489, + 51.174152901 + ], + [ + 14.1288358, + 51.174024501 + ], + [ + 14.1275679, + 51.173789701 + ], + [ + 14.1268683, + 51.173660201 + ], + [ + 14.1260807, + 51.173529401 + ], + [ + 14.1257683, + 51.173484701 + ], + [ + 14.1253308, + 51.173432301 + ], + [ + 14.1248759, + 51.173390501 + ], + [ + 14.1243579, + 51.173356201 + ], + [ + 14.1238521, + 51.173339201 + ], + [ + 14.1232597, + 51.173330001 + ], + [ + 14.1227919, + 51.173331301 + ], + [ + 14.1224138, + 51.173337201 + ], + [ + 14.1219629, + 51.173353401 + ], + [ + 14.117407, + 51.173653301 + ], + [ + 14.1169893, + 51.173684401 + ], + [ + 14.1145796, + 51.173843701 + ], + [ + 14.1141629, + 51.173871501 + ], + [ + 14.1134331, + 51.173916401 + ], + [ + 14.1119481, + 51.174028201 + ], + [ + 14.110436, + 51.174180701 + ], + [ + 14.1092265, + 51.174394901 + ], + [ + 14.108754, + 51.174490501 + ], + [ + 14.1068747, + 51.174914201 + ], + [ + 14.1036208, + 51.175660201 + ], + [ + 14.1027836, + 51.175826101 + ], + [ + 14.1019292, + 51.175961701 + ], + [ + 14.1013475, + 51.176026601 + ], + [ + 14.1008883, + 51.176066401 + ], + [ + 14.1005048, + 51.176089301 + ], + [ + 14.1001465, + 51.176110801 + ], + [ + 14.0996642, + 51.176121001 + ], + [ + 14.099168, + 51.176120301 + ], + [ + 14.0981847, + 51.176070501 + ], + [ + 14.0973428, + 51.175996601 + ], + [ + 14.0969878, + 51.175949401 + ], + [ + 14.0963748, + 51.175839401 + ], + [ + 14.09560654, + 51.175679168 + ] + ] + } + }, + { + "identifier": "2026-017821--vi-bs.2026-04-10_15-15-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.203150745491385,14.268569528732897,51.173680405316844,14.12697744893253", + "point": "51.203150745491385,14.268569528732897", + "startLcPosition": "144", + "impact": { + "lower": "R\u00f6dertal", + "upper": "Oberlausitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | Oberlausitz - R\u00f6dertal", + "coordinate": { + "lat": 51.203150745491385, + "long": 14.268569528732897 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 15:15 bis 21:00 Uhr", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 4.4 km hinter Oberlausitz und 4.7 km vor R\u00f6dertal", + "", + "L\u00e4nge: 10.71 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A4 von Uhyst (AS) Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.268569529, + 51.203150745 + ], + [ + 14.2681483, + 51.203186001 + ], + [ + 14.2640302, + 51.203578801 + ], + [ + 14.2621425, + 51.203764701 + ], + [ + 14.261292, + 51.203848501 + ], + [ + 14.2607183, + 51.203904401 + ], + [ + 14.2603686, + 51.203935401 + ], + [ + 14.259218, + 51.204009501 + ], + [ + 14.2580758, + 51.204063001 + ], + [ + 14.2569337, + 51.204064501 + ], + [ + 14.2556908, + 51.204035501 + ], + [ + 14.2544482, + 51.203958201 + ], + [ + 14.2531973, + 51.203826701 + ], + [ + 14.2519713, + 51.203654801 + ], + [ + 14.2510159, + 51.203486501 + ], + [ + 14.2500244, + 51.203275601 + ], + [ + 14.2495941, + 51.203177901 + ], + [ + 14.2478188, + 51.202716901 + ], + [ + 14.2443695, + 51.201796401 + ], + [ + 14.2439685, + 51.201689801 + ], + [ + 14.241377, + 51.200991101 + ], + [ + 14.2410999, + 51.200917401 + ], + [ + 14.2407846, + 51.200830401 + ], + [ + 14.2398714, + 51.200585301 + ], + [ + 14.2397047, + 51.200540101 + ], + [ + 14.2386271, + 51.200263801 + ], + [ + 14.2375651, + 51.200025601 + ], + [ + 14.2365015, + 51.199836301 + ], + [ + 14.2352706, + 51.199652601 + ], + [ + 14.2327543, + 51.199371401 + ], + [ + 14.2282824, + 51.198896101 + ], + [ + 14.2254952, + 51.198597901 + ], + [ + 14.2252593, + 51.198573201 + ], + [ + 14.2251935, + 51.198565701 + ], + [ + 14.2221653, + 51.198247801 + ], + [ + 14.2208168, + 51.198104401 + ], + [ + 14.2205654, + 51.198078001 + ], + [ + 14.2201418, + 51.198033801 + ], + [ + 14.2189021, + 51.197899501 + ], + [ + 14.2156448, + 51.197557301 + ], + [ + 14.2134931, + 51.197330801 + ], + [ + 14.2127467, + 51.197249001 + ], + [ + 14.2113233, + 51.197082601 + ], + [ + 14.2109342, + 51.197033201 + ], + [ + 14.2099373, + 51.196869601 + ], + [ + 14.209484, + 51.196780701 + ], + [ + 14.2077271, + 51.196389201 + ], + [ + 14.2063553, + 51.196005201 + ], + [ + 14.2038208, + 51.195283301 + ], + [ + 14.2012051, + 51.194535301 + ], + [ + 14.1999461, + 51.194171001 + ], + [ + 14.199263, + 51.193956901 + ], + [ + 14.198517, + 51.193708901 + ], + [ + 14.1955176, + 51.192621101 + ], + [ + 14.193909, + 51.192038901 + ], + [ + 14.1928107, + 51.191636501 + ], + [ + 14.1924704, + 51.191515601 + ], + [ + 14.1918916, + 51.191328801 + ], + [ + 14.1908701, + 51.191041301 + ], + [ + 14.1902178, + 51.190865101 + ], + [ + 14.1898536, + 51.190777401 + ], + [ + 14.189573, + 51.190715101 + ], + [ + 14.1873957, + 51.190274801 + ], + [ + 14.186052, + 51.190013101 + ], + [ + 14.1856272, + 51.189929801 + ], + [ + 14.1839105, + 51.189588301 + ], + [ + 14.1827476, + 51.189321901 + ], + [ + 14.1817231, + 51.189043401 + ], + [ + 14.1807252, + 51.188732301 + ], + [ + 14.1798462, + 51.188416401 + ], + [ + 14.1789961, + 51.188067701 + ], + [ + 14.1782966, + 51.187762401 + ], + [ + 14.1776176, + 51.187439201 + ], + [ + 14.1769508, + 51.187105101 + ], + [ + 14.1762971, + 51.186759001 + ], + [ + 14.1750094, + 51.186089901 + ], + [ + 14.1739351, + 51.185526001 + ], + [ + 14.1728492, + 51.184984801 + ], + [ + 14.1722326, + 51.184711701 + ], + [ + 14.1715984, + 51.184454001 + ], + [ + 14.1707463, + 51.184147801 + ], + [ + 14.1698721, + 51.183872501 + ], + [ + 14.1691725, + 51.183684801 + ], + [ + 14.1689997, + 51.183639901 + ], + [ + 14.1685097, + 51.183519801 + ], + [ + 14.1680459, + 51.183421901 + ], + [ + 14.1674609, + 51.183312401 + ], + [ + 14.1671583, + 51.183258001 + ], + [ + 14.1666254, + 51.183177201 + ], + [ + 14.165359, + 51.183006601 + ], + [ + 14.1620355, + 51.182586001 + ], + [ + 14.1605672, + 51.182400801 + ], + [ + 14.160257, + 51.182361601 + ], + [ + 14.1550866, + 51.181709301 + ], + [ + 14.1543767, + 51.181623201 + ], + [ + 14.1522628, + 51.181382501 + ], + [ + 14.1515405, + 51.181292001 + ], + [ + 14.1509861, + 51.181207701 + ], + [ + 14.1503842, + 51.181093701 + ], + [ + 14.1498063, + 51.180960701 + ], + [ + 14.149376, + 51.180850701 + ], + [ + 14.1489441, + 51.180728901 + ], + [ + 14.1485496, + 51.180605001 + ], + [ + 14.1484409, + 51.180567201 + ], + [ + 14.1481763, + 51.180475101 + ], + [ + 14.1479122, + 51.180374501 + ], + [ + 14.1475526, + 51.180230701 + ], + [ + 14.1471691, + 51.180060301 + ], + [ + 14.1467353, + 51.179850501 + ], + [ + 14.1463526, + 51.179648001 + ], + [ + 14.1461471, + 51.179535301 + ], + [ + 14.1457292, + 51.179273901 + ], + [ + 14.1454885, + 51.179114701 + ], + [ + 14.145253, + 51.178949101 + ], + [ + 14.1449477, + 51.178720501 + ], + [ + 14.1443328, + 51.178251801 + ], + [ + 14.1440127, + 51.177998001 + ], + [ + 14.1435228, + 51.177618901 + ], + [ + 14.1432679, + 51.177423801 + ], + [ + 14.1428849, + 51.177130601 + ], + [ + 14.1425311, + 51.176880201 + ], + [ + 14.1423137, + 51.176731701 + ], + [ + 14.1419124, + 51.176488401 + ], + [ + 14.1412864, + 51.176146201 + ], + [ + 14.1407898, + 51.175909001 + ], + [ + 14.1401479, + 51.175635901 + ], + [ + 14.1398938, + 51.175536101 + ], + [ + 14.1396055, + 51.175432801 + ], + [ + 14.1390404, + 51.175264001 + ], + [ + 14.1384276, + 51.175095101 + ], + [ + 14.1378568, + 51.174963501 + ], + [ + 14.1371273, + 51.174825401 + ], + [ + 14.1362099, + 51.174700101 + ], + [ + 14.1351976, + 51.174614401 + ], + [ + 14.1340726, + 51.174549301 + ], + [ + 14.1318769, + 51.174424601 + ], + [ + 14.1312825, + 51.174378901 + ], + [ + 14.13059, + 51.174306101 + ], + [ + 14.1302685, + 51.174264901 + ], + [ + 14.1295489, + 51.174152901 + ], + [ + 14.1288358, + 51.174024501 + ], + [ + 14.1275679, + 51.173789701 + ], + [ + 14.126977449, + 51.173680405 + ] + ] + } + }, + { + "identifier": "2026-016691--vi-bs.2026-04-09_06-00-00-000.devi-zus.2026-04-09_06-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.19000947181669,14.368306258039484,51.20364289359424,14.251903703344345", + "point": "51.19000947181669,14.368306258039484", + "startLcPosition": "146", + "impact": { + "lower": "Uhyst", + "upper": "Bautzen-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | Bautzen-West - Uhyst", + "coordinate": { + "lat": 51.19000947181669, + "long": 14.368306258039484 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 06:00 bis 18:00 Uhr", + "10.04.26 von 06:00 bis 18:00 Uhr", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 3.4 km hinter AS Bautzen-West und 2.3 km vor AS Uhyst", + "", + "L\u00e4nge: 8.47 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A4-Ost Fahrbahnsanierung Asphalt nach Frostsch\u00e4den - Abschnittsweise im Km 48,25 bis 39,8 - LS und \u00dcS - RF DD" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.368306258, + 51.190009472 + ], + [ + 14.3659476, + 51.190704201 + ], + [ + 14.3658156, + 51.190741101 + ], + [ + 14.3626893, + 51.191655701 + ], + [ + 14.361955, + 51.191872301 + ], + [ + 14.3614107, + 51.192030401 + ], + [ + 14.3612049, + 51.192092701 + ], + [ + 14.3603614, + 51.192339801 + ], + [ + 14.3598374, + 51.192488601 + ], + [ + 14.3564652, + 51.193472201 + ], + [ + 14.3530361, + 51.194479301 + ], + [ + 14.3520734, + 51.194771201 + ], + [ + 14.3519395, + 51.194808101 + ], + [ + 14.3502567, + 51.195296401 + ], + [ + 14.3485911, + 51.195763801 + ], + [ + 14.3473068, + 51.196081801 + ], + [ + 14.3463831, + 51.196274601 + ], + [ + 14.3460089, + 51.196352101 + ], + [ + 14.3433747, + 51.196811501 + ], + [ + 14.3431365, + 51.196849101 + ], + [ + 14.3385702, + 51.197623001 + ], + [ + 14.3361286, + 51.198038101 + ], + [ + 14.3356452, + 51.198120101 + ], + [ + 14.3354673, + 51.198150201 + ], + [ + 14.3331372, + 51.198545401 + ], + [ + 14.3316738, + 51.198789501 + ], + [ + 14.3307191, + 51.198948801 + ], + [ + 14.329495, + 51.199165301 + ], + [ + 14.3282774, + 51.199394601 + ], + [ + 14.3273242, + 51.199597401 + ], + [ + 14.3263545, + 51.199830401 + ], + [ + 14.3262944, + 51.199845901 + ], + [ + 14.3256502, + 51.200011601 + ], + [ + 14.3250797, + 51.200177701 + ], + [ + 14.3249495, + 51.200213801 + ], + [ + 14.324638, + 51.200309901 + ], + [ + 14.3240786, + 51.200480201 + ], + [ + 14.3200463, + 51.201742301 + ], + [ + 14.3192062, + 51.201981301 + ], + [ + 14.3184503, + 51.202181501 + ], + [ + 14.3176198, + 51.202381301 + ], + [ + 14.3168405, + 51.202556101 + ], + [ + 14.316083, + 51.202707501 + ], + [ + 14.3153143, + 51.202846801 + ], + [ + 14.314566, + 51.202968601 + ], + [ + 14.3137553, + 51.203084201 + ], + [ + 14.3129379, + 51.203188001 + ], + [ + 14.3120821, + 51.203275501 + ], + [ + 14.3115243, + 51.203325801 + ], + [ + 14.3107699, + 51.203385901 + ], + [ + 14.3102517, + 51.203415401 + ], + [ + 14.3096447, + 51.203439001 + ], + [ + 14.3090755, + 51.203460201 + ], + [ + 14.3082949, + 51.203473701 + ], + [ + 14.3072986, + 51.203471101 + ], + [ + 14.3067092, + 51.203462801 + ], + [ + 14.3061399, + 51.203443201 + ], + [ + 14.3055537, + 51.203416501 + ], + [ + 14.3049817, + 51.203381901 + ], + [ + 14.3039664, + 51.203306801 + ], + [ + 14.30268, + 51.203179601 + ], + [ + 14.3013971, + 51.203033501 + ], + [ + 14.2997598, + 51.202833601 + ], + [ + 14.2988797, + 51.202736501 + ], + [ + 14.2982875, + 51.202667401 + ], + [ + 14.2967736, + 51.202496901 + ], + [ + 14.2952206, + 51.202321901 + ], + [ + 14.2939385, + 51.202187501 + ], + [ + 14.2919202, + 51.201949201 + ], + [ + 14.2902648, + 51.201781101 + ], + [ + 14.2896589, + 51.201731501 + ], + [ + 14.2893251, + 51.201706601 + ], + [ + 14.2884756, + 51.201666401 + ], + [ + 14.287442, + 51.201626301 + ], + [ + 14.2867576, + 51.201625001 + ], + [ + 14.2861666, + 51.201625701 + ], + [ + 14.2856909, + 51.201635201 + ], + [ + 14.2850205, + 51.201655301 + ], + [ + 14.283722, + 51.201720201 + ], + [ + 14.2815992, + 51.201894701 + ], + [ + 14.2795683, + 51.202098701 + ], + [ + 14.2770518, + 51.202339601 + ], + [ + 14.2743139, + 51.202611701 + ], + [ + 14.2722177, + 51.202805301 + ], + [ + 14.271774, + 51.202844201 + ], + [ + 14.2710212, + 51.202929101 + ], + [ + 14.2699965, + 51.203031301 + ], + [ + 14.2681483, + 51.203186001 + ], + [ + 14.2640302, + 51.203578801 + ], + [ + 14.2621425, + 51.203764701 + ], + [ + 14.261292, + 51.203848501 + ], + [ + 14.2607183, + 51.203904401 + ], + [ + 14.2603686, + 51.203935401 + ], + [ + 14.259218, + 51.204009501 + ], + [ + 14.2580758, + 51.204063001 + ], + [ + 14.2569337, + 51.204064501 + ], + [ + 14.2556908, + 51.204035501 + ], + [ + 14.2544482, + 51.203958201 + ], + [ + 14.2531973, + 51.203826701 + ], + [ + 14.2519713, + 51.203654801 + ], + [ + 14.251903703, + 51.203642894 + ] + ] + } + }, + { + "identifier": "2026-016691--vi-bs.2026-04-09_06-00-00-000.devi-zus.2026-04-09_06-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.19000947181669,14.368306258039484,51.20364289359424,14.251903703344345", + "point": "51.19000947181669,14.368306258039484", + "startLcPosition": "146", + "impact": { + "lower": "Uhyst", + "upper": "Bautzen-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | Bautzen-West - Uhyst", + "coordinate": { + "lat": 51.19000947181669, + "long": 14.368306258039484 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 06:00 bis 18:00 Uhr", + "10.04.26 von 06:00 bis 18:00 Uhr", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 3.4 km hinter AS Bautzen-West und 2.3 km vor AS Uhyst", + "", + "L\u00e4nge: 8.47 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A4-Ost Fahrbahnsanierung Asphalt nach Frostsch\u00e4den - Abschnittsweise im Km 48,25 bis 39,8 - LS und \u00dcS - RF DD" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.368306258, + 51.190009472 + ], + [ + 14.3659476, + 51.190704201 + ], + [ + 14.3658156, + 51.190741101 + ], + [ + 14.3626893, + 51.191655701 + ], + [ + 14.361955, + 51.191872301 + ], + [ + 14.3614107, + 51.192030401 + ], + [ + 14.3612049, + 51.192092701 + ], + [ + 14.3603614, + 51.192339801 + ], + [ + 14.3598374, + 51.192488601 + ], + [ + 14.3564652, + 51.193472201 + ], + [ + 14.3530361, + 51.194479301 + ], + [ + 14.3520734, + 51.194771201 + ], + [ + 14.3519395, + 51.194808101 + ], + [ + 14.3502567, + 51.195296401 + ], + [ + 14.3485911, + 51.195763801 + ], + [ + 14.3473068, + 51.196081801 + ], + [ + 14.3463831, + 51.196274601 + ], + [ + 14.3460089, + 51.196352101 + ], + [ + 14.3433747, + 51.196811501 + ], + [ + 14.3431365, + 51.196849101 + ], + [ + 14.3385702, + 51.197623001 + ], + [ + 14.3361286, + 51.198038101 + ], + [ + 14.3356452, + 51.198120101 + ], + [ + 14.3354673, + 51.198150201 + ], + [ + 14.3331372, + 51.198545401 + ], + [ + 14.3316738, + 51.198789501 + ], + [ + 14.3307191, + 51.198948801 + ], + [ + 14.329495, + 51.199165301 + ], + [ + 14.3282774, + 51.199394601 + ], + [ + 14.3273242, + 51.199597401 + ], + [ + 14.3263545, + 51.199830401 + ], + [ + 14.3262944, + 51.199845901 + ], + [ + 14.3256502, + 51.200011601 + ], + [ + 14.3250797, + 51.200177701 + ], + [ + 14.3249495, + 51.200213801 + ], + [ + 14.324638, + 51.200309901 + ], + [ + 14.3240786, + 51.200480201 + ], + [ + 14.3200463, + 51.201742301 + ], + [ + 14.3192062, + 51.201981301 + ], + [ + 14.3184503, + 51.202181501 + ], + [ + 14.3176198, + 51.202381301 + ], + [ + 14.3168405, + 51.202556101 + ], + [ + 14.316083, + 51.202707501 + ], + [ + 14.3153143, + 51.202846801 + ], + [ + 14.314566, + 51.202968601 + ], + [ + 14.3137553, + 51.203084201 + ], + [ + 14.3129379, + 51.203188001 + ], + [ + 14.3120821, + 51.203275501 + ], + [ + 14.3115243, + 51.203325801 + ], + [ + 14.3107699, + 51.203385901 + ], + [ + 14.3102517, + 51.203415401 + ], + [ + 14.3096447, + 51.203439001 + ], + [ + 14.3090755, + 51.203460201 + ], + [ + 14.3082949, + 51.203473701 + ], + [ + 14.3072986, + 51.203471101 + ], + [ + 14.3067092, + 51.203462801 + ], + [ + 14.3061399, + 51.203443201 + ], + [ + 14.3055537, + 51.203416501 + ], + [ + 14.3049817, + 51.203381901 + ], + [ + 14.3039664, + 51.203306801 + ], + [ + 14.30268, + 51.203179601 + ], + [ + 14.3013971, + 51.203033501 + ], + [ + 14.2997598, + 51.202833601 + ], + [ + 14.2988797, + 51.202736501 + ], + [ + 14.2982875, + 51.202667401 + ], + [ + 14.2967736, + 51.202496901 + ], + [ + 14.2952206, + 51.202321901 + ], + [ + 14.2939385, + 51.202187501 + ], + [ + 14.2919202, + 51.201949201 + ], + [ + 14.2902648, + 51.201781101 + ], + [ + 14.2896589, + 51.201731501 + ], + [ + 14.2893251, + 51.201706601 + ], + [ + 14.2884756, + 51.201666401 + ], + [ + 14.287442, + 51.201626301 + ], + [ + 14.2867576, + 51.201625001 + ], + [ + 14.2861666, + 51.201625701 + ], + [ + 14.2856909, + 51.201635201 + ], + [ + 14.2850205, + 51.201655301 + ], + [ + 14.283722, + 51.201720201 + ], + [ + 14.2815992, + 51.201894701 + ], + [ + 14.2795683, + 51.202098701 + ], + [ + 14.2770518, + 51.202339601 + ], + [ + 14.2743139, + 51.202611701 + ], + [ + 14.2722177, + 51.202805301 + ], + [ + 14.271774, + 51.202844201 + ], + [ + 14.2710212, + 51.202929101 + ], + [ + 14.2699965, + 51.203031301 + ], + [ + 14.2681483, + 51.203186001 + ], + [ + 14.2640302, + 51.203578801 + ], + [ + 14.2621425, + 51.203764701 + ], + [ + 14.261292, + 51.203848501 + ], + [ + 14.2607183, + 51.203904401 + ], + [ + 14.2603686, + 51.203935401 + ], + [ + 14.259218, + 51.204009501 + ], + [ + 14.2580758, + 51.204063001 + ], + [ + 14.2569337, + 51.204064501 + ], + [ + 14.2556908, + 51.204035501 + ], + [ + 14.2544482, + 51.203958201 + ], + [ + 14.2531973, + 51.203826701 + ], + [ + 14.2519713, + 51.203654801 + ], + [ + 14.251903703, + 51.203642894 + ] + ] + } + }, + { + "identifier": "2025-002315--vi-fbm.2025-01-29_00-00-00-000.devi-bs.2025-01-29_21-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.21344191937021,14.715892900261307,51.20766159907527,14.788764977733395", + "point": "51.21344191937021,14.715892900261307", + "startLcPosition": "150", + "impact": { + "lower": "K\u00f6nigshainer Berge", + "upper": "Am Wacheberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> G\u00f6rlitz", + "title": "A4 | Am Wacheberg - K\u00f6nigshainer Berge", + "startTimestamp": "2025-01-29T00:00:00+01:00", + "coordinate": { + "lat": 51.21344191937021, + "long": 14.715892900261307 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.01.25 um 00:00 Uhr", + "Ende: 08.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.11.26)", + "", + "A4: Dresden -> G\u00f6rlitz, zwischen 2.3 km hinter Am Wacheberg und 3.3 km vor K\u00f6nigshainer Berge", + "", + "L\u00e4nge: 5.45 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Nachr\u00fcstung Tunnel KHB A4 Km 80,87 - 84,17 beide Richtungsfahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.7158929, + 51.213441919 + ], + [ + 14.7169036, + 51.213467001 + ], + [ + 14.717688, + 51.213460401 + ], + [ + 14.718206201, + 51.213440201 + ], + [ + 14.718396701, + 51.213431601 + ], + [ + 14.718753101, + 51.213409601 + ], + [ + 14.719296801, + 51.213372301 + ], + [ + 14.720814801, + 51.213207201 + ], + [ + 14.722555601, + 51.212897901 + ], + [ + 14.723971401, + 51.212549501 + ], + [ + 14.725434401, + 51.212088701 + ], + [ + 14.726816001, + 51.211560501 + ], + [ + 14.731351001, + 51.209618001 + ], + [ + 14.732580501, + 51.209120001 + ], + [ + 14.734831601, + 51.208277501 + ], + [ + 14.737256401, + 51.207457401 + ], + [ + 14.738628701, + 51.207024901 + ], + [ + 14.740735501, + 51.206413401 + ], + [ + 14.742371401, + 51.205979501 + ], + [ + 14.744131601, + 51.205546001 + ], + [ + 14.746461501, + 51.205033301 + ], + [ + 14.749402601, + 51.204470501 + ], + [ + 14.751335401, + 51.204146501 + ], + [ + 14.754474101, + 51.203715201 + ], + [ + 14.756399001, + 51.203505801 + ], + [ + 14.757780101, + 51.203377501 + ], + [ + 14.758363401, + 51.203334901 + ], + [ + 14.758958701, + 51.203291401 + ], + [ + 14.759487601, + 51.203259601 + ], + [ + 14.759900001, + 51.203235801 + ], + [ + 14.759996401, + 51.203232501 + ], + [ + 14.761493701, + 51.203182001 + ], + [ + 14.763281201, + 51.203151201 + ], + [ + 14.763972601, + 51.203144401 + ], + [ + 14.764646001, + 51.203144501 + ], + [ + 14.765284601, + 51.203162101 + ], + [ + 14.765314001, + 51.203162901 + ], + [ + 14.766148801, + 51.203185801 + ], + [ + 14.768722001, + 51.203315101 + ], + [ + 14.769886501, + 51.203400801 + ], + [ + 14.772274401, + 51.203636101 + ], + [ + 14.773003701, + 51.203725801 + ], + [ + 14.773790401, + 51.203828201 + ], + [ + 14.774537201, + 51.203934901 + ], + [ + 14.776715601, + 51.204270301 + ], + [ + 14.779251001, + 51.204795801 + ], + [ + 14.781824301, + 51.205406801 + ], + [ + 14.783123701, + 51.205758901 + ], + [ + 14.785535101, + 51.206492901 + ], + [ + 14.787673201, + 51.207235301 + ], + [ + 14.788764978, + 51.207661599 + ] + ] + } + }, + { + "identifier": "2026-012891--vi-bs.2026-03-16_07-00-00-000.devi-bs.2026-03-16_07-00-00-000_009.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.21032291797306,14.794872113664438,51.219193800961435,14.859601619434121", + "point": "51.21032291797306,14.794872113664438", + "startLcPosition": "151", + "impact": { + "lower": "Wiesaer Forst", + "upper": "Nieder Seifersdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> G\u00f6rlitz", + "title": "A4 | Nieder Seifersdorf - Wiesaer Forst", + "coordinate": { + "lat": 51.21032291797306, + "long": 14.794872113664438 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 16.03.26 und dem 12.05.26 von 07:00 bis 18:00 Uhr.", + "", + "A4: Dresden -> G\u00f6rlitz, zwischen 2.6 km hinter AS Nieder Seifersdorf und 0.9 km vor Wiesaer Forst", + "", + "L\u00e4nge: 4.71 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A4 - Kanalreinigung und TV-Inspektion " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.794872114, + 51.210322918 + ], + [ + 14.795413601, + 51.210568201 + ], + [ + 14.795615401, + 51.210659901 + ], + [ + 14.797088501, + 51.211308101 + ], + [ + 14.797804401, + 51.211610701 + ], + [ + 14.799159301, + 51.212152301 + ], + [ + 14.800065801, + 51.212485701 + ], + [ + 14.800950901, + 51.212789401 + ], + [ + 14.802242401, + 51.213192301 + ], + [ + 14.803268001, + 51.213470801 + ], + [ + 14.804061101, + 51.213671001 + ], + [ + 14.804539101, + 51.213780001 + ], + [ + 14.804867501, + 51.213854901 + ], + [ + 14.806162101, + 51.214114501 + ], + [ + 14.807794101, + 51.214384301 + ], + [ + 14.808311401, + 51.214454401 + ], + [ + 14.809122401, + 51.214549301 + ], + [ + 14.809936401, + 51.214627901 + ], + [ + 14.810780101, + 51.214692501 + ], + [ + 14.810961101, + 51.214706801 + ], + [ + 14.811776401, + 51.214743401 + ], + [ + 14.814568701, + 51.214808401 + ], + [ + 14.818047101, + 51.214830001 + ], + [ + 14.825147001, + 51.214806201 + ], + [ + 14.827964501, + 51.214904101 + ], + [ + 14.830768101, + 51.215076501 + ], + [ + 14.832165301, + 51.215190701 + ], + [ + 14.833919301, + 51.215361001 + ], + [ + 14.835665901, + 51.215560601 + ], + [ + 14.837403401, + 51.215789501 + ], + [ + 14.839134701, + 51.216048001 + ], + [ + 14.845947301, + 51.217308301 + ], + [ + 14.852789701, + 51.218538201 + ], + [ + 14.854093601, + 51.218719801 + ], + [ + 14.855410101, + 51.218867101 + ], + [ + 14.858299401, + 51.219095001 + ], + [ + 14.859139301, + 51.219159701 + ], + [ + 14.859601619, + 51.219193801 + ] + ] + } + }, + { + "identifier": "2026-012891--vi-bs.2026-03-16_07-00-00-000.devi-bs.2026-03-16_07-00-00-000_009.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.21032291797306,14.794872113664438,51.219193800961435,14.859601619434121", + "point": "51.21032291797306,14.794872113664438", + "startLcPosition": "151", + "impact": { + "lower": "Wiesaer Forst", + "upper": "Nieder Seifersdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> G\u00f6rlitz", + "title": "A4 | Nieder Seifersdorf - Wiesaer Forst", + "coordinate": { + "lat": 51.21032291797306, + "long": 14.794872113664438 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 16.03.26 und dem 12.05.26 von 07:00 bis 18:00 Uhr.", + "", + "A4: Dresden -> G\u00f6rlitz, zwischen 2.6 km hinter AS Nieder Seifersdorf und 0.9 km vor Wiesaer Forst", + "", + "L\u00e4nge: 4.71 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A4 - Kanalreinigung und TV-Inspektion " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.794872114, + 51.210322918 + ], + [ + 14.795413601, + 51.210568201 + ], + [ + 14.795615401, + 51.210659901 + ], + [ + 14.797088501, + 51.211308101 + ], + [ + 14.797804401, + 51.211610701 + ], + [ + 14.799159301, + 51.212152301 + ], + [ + 14.800065801, + 51.212485701 + ], + [ + 14.800950901, + 51.212789401 + ], + [ + 14.802242401, + 51.213192301 + ], + [ + 14.803268001, + 51.213470801 + ], + [ + 14.804061101, + 51.213671001 + ], + [ + 14.804539101, + 51.213780001 + ], + [ + 14.804867501, + 51.213854901 + ], + [ + 14.806162101, + 51.214114501 + ], + [ + 14.807794101, + 51.214384301 + ], + [ + 14.808311401, + 51.214454401 + ], + [ + 14.809122401, + 51.214549301 + ], + [ + 14.809936401, + 51.214627901 + ], + [ + 14.810780101, + 51.214692501 + ], + [ + 14.810961101, + 51.214706801 + ], + [ + 14.811776401, + 51.214743401 + ], + [ + 14.814568701, + 51.214808401 + ], + [ + 14.818047101, + 51.214830001 + ], + [ + 14.825147001, + 51.214806201 + ], + [ + 14.827964501, + 51.214904101 + ], + [ + 14.830768101, + 51.215076501 + ], + [ + 14.832165301, + 51.215190701 + ], + [ + 14.833919301, + 51.215361001 + ], + [ + 14.835665901, + 51.215560601 + ], + [ + 14.837403401, + 51.215789501 + ], + [ + 14.839134701, + 51.216048001 + ], + [ + 14.845947301, + 51.217308301 + ], + [ + 14.852789701, + 51.218538201 + ], + [ + 14.854093601, + 51.218719801 + ], + [ + 14.855410101, + 51.218867101 + ], + [ + 14.858299401, + 51.219095001 + ], + [ + 14.859139301, + 51.219159701 + ], + [ + 14.859601619, + 51.219193801 + ] + ] + } + }, + { + "identifier": "2026-012891--vi-bs.2026-03-16_07-00-00-000.devi-bs.2026-03-16_07-00-00-000_009.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.21971659045554,14.87865573632016,51.21470312869729,14.809386971645589", + "point": "51.21971659045554,14.87865573632016", + "startLcPosition": "154", + "impact": { + "lower": "Nieder Seifersdorf", + "upper": "Kodersdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | Kodersdorf - Nieder Seifersdorf", + "coordinate": { + "lat": 51.21971659045554, + "long": 14.87865573632016 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 17.03.26 und dem 12.05.26 von 07:00 bis 18:00 Uhr.", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 2.3 km hinter AS Kodersdorf und 3.8 km vor AS Nieder Seifersdorf", + "", + "L\u00e4nge: 4.91 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A4 - Kanalreinigung und TV-Inspektion " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.878655736, + 51.21971659 + ], + [ + 14.878505801, + 51.219705301 + ], + [ + 14.877919301, + 51.219668501 + ], + [ + 14.877205801, + 51.219630901 + ], + [ + 14.876552201, + 51.219598601 + ], + [ + 14.875787901, + 51.219574401 + ], + [ + 14.874423901, + 51.219546301 + ], + [ + 14.874102801, + 51.219546301 + ], + [ + 14.871522401, + 51.219546701 + ], + [ + 14.868621201, + 51.219555101 + ], + [ + 14.867181001, + 51.219562201 + ], + [ + 14.867021401, + 51.219561601 + ], + [ + 14.865618701, + 51.219556701 + ], + [ + 14.864776701, + 51.219550201 + ], + [ + 14.863939001, + 51.219542201 + ], + [ + 14.862487101, + 51.219513801 + ], + [ + 14.860700501, + 51.219446701 + ], + [ + 14.859832601, + 51.219403001 + ], + [ + 14.859424401, + 51.219382101 + ], + [ + 14.858906401, + 51.219350101 + ], + [ + 14.858253601, + 51.219307501 + ], + [ + 14.855362101, + 51.219071501 + ], + [ + 14.854028801, + 51.218922401 + ], + [ + 14.852706601, + 51.218738201 + ], + [ + 14.845856301, + 51.217506901 + ], + [ + 14.839049601, + 51.216247701 + ], + [ + 14.837331201, + 51.215991101 + ], + [ + 14.835602401, + 51.215763401 + ], + [ + 14.833864501, + 51.215564701 + ], + [ + 14.832118701, + 51.215395301 + ], + [ + 14.829335501, + 51.215186601 + ], + [ + 14.827939201, + 51.215110101 + ], + [ + 14.825140501, + 51.215012901 + ], + [ + 14.818043401, + 51.215036601 + ], + [ + 14.812977801, + 51.214949401 + ], + [ + 14.811763001, + 51.214906701 + ], + [ + 14.810606601, + 51.214824401 + ], + [ + 14.810302801, + 51.214798701 + ], + [ + 14.809906201, + 51.214760701 + ], + [ + 14.809386972, + 51.214703129 + ] + ] + } + }, + { + "identifier": "2026-012891--vi-bs.2026-03-16_07-00-00-000.devi-bs.2026-03-16_07-00-00-000_009.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.21971659045554,14.87865573632016,51.21470312869729,14.809386971645589", + "point": "51.21971659045554,14.87865573632016", + "startLcPosition": "154", + "impact": { + "lower": "Nieder Seifersdorf", + "upper": "Kodersdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | Kodersdorf - Nieder Seifersdorf", + "coordinate": { + "lat": 51.21971659045554, + "long": 14.87865573632016 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 17.03.26 und dem 12.05.26 von 07:00 bis 18:00 Uhr.", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 2.3 km hinter AS Kodersdorf und 3.8 km vor AS Nieder Seifersdorf", + "", + "L\u00e4nge: 4.91 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A4 - Kanalreinigung und TV-Inspektion " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.878655736, + 51.21971659 + ], + [ + 14.878505801, + 51.219705301 + ], + [ + 14.877919301, + 51.219668501 + ], + [ + 14.877205801, + 51.219630901 + ], + [ + 14.876552201, + 51.219598601 + ], + [ + 14.875787901, + 51.219574401 + ], + [ + 14.874423901, + 51.219546301 + ], + [ + 14.874102801, + 51.219546301 + ], + [ + 14.871522401, + 51.219546701 + ], + [ + 14.868621201, + 51.219555101 + ], + [ + 14.867181001, + 51.219562201 + ], + [ + 14.867021401, + 51.219561601 + ], + [ + 14.865618701, + 51.219556701 + ], + [ + 14.864776701, + 51.219550201 + ], + [ + 14.863939001, + 51.219542201 + ], + [ + 14.862487101, + 51.219513801 + ], + [ + 14.860700501, + 51.219446701 + ], + [ + 14.859832601, + 51.219403001 + ], + [ + 14.859424401, + 51.219382101 + ], + [ + 14.858906401, + 51.219350101 + ], + [ + 14.858253601, + 51.219307501 + ], + [ + 14.855362101, + 51.219071501 + ], + [ + 14.854028801, + 51.218922401 + ], + [ + 14.852706601, + 51.218738201 + ], + [ + 14.845856301, + 51.217506901 + ], + [ + 14.839049601, + 51.216247701 + ], + [ + 14.837331201, + 51.215991101 + ], + [ + 14.835602401, + 51.215763401 + ], + [ + 14.833864501, + 51.215564701 + ], + [ + 14.832118701, + 51.215395301 + ], + [ + 14.829335501, + 51.215186601 + ], + [ + 14.827939201, + 51.215110101 + ], + [ + 14.825140501, + 51.215012901 + ], + [ + 14.818043401, + 51.215036601 + ], + [ + 14.812977801, + 51.214949401 + ], + [ + 14.811763001, + 51.214906701 + ], + [ + 14.810606601, + 51.214824401 + ], + [ + 14.810302801, + 51.214798701 + ], + [ + 14.809906201, + 51.214760701 + ], + [ + 14.809386972, + 51.214703129 + ] + ] + } + }, + { + "identifier": "2025-063440--vi-bs.2026-04-22_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.22019118306842,14.922742921190885,51.2193162044778,14.858386968093178", + "point": "51.22019118306842,14.922742921190885", + "startLcPosition": "155", + "impact": { + "lower": "K\u00f6nigshainer Berge", + "upper": "G\u00f6rlitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | G\u00f6rlitz - K\u00f6nigshainer Berge", + "coordinate": { + "lat": 51.22019118306842, + "long": 14.922742921190885 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch, Donnerstag und Freitag zwischen dem 22.04.26 und dem 24.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 3.8 km hinter AS G\u00f6rlitz und 1.9 km vor K\u00f6nigshainer Berge", + "", + "L\u00e4nge: 4.62 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A4o Km 89,00 - 84,30 RF AC - Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.922742921, + 51.220191183 + ], + [ + 14.922394901, + 51.220314901 + ], + [ + 14.921767101, + 51.220527001 + ], + [ + 14.921245301, + 51.220697701 + ], + [ + 14.920684301, + 51.220872601 + ], + [ + 14.919888001, + 51.221109301 + ], + [ + 14.919134701, + 51.221323201 + ], + [ + 14.918314701, + 51.221542201 + ], + [ + 14.917565001, + 51.221726501 + ], + [ + 14.916868401, + 51.221890201 + ], + [ + 14.916087601, + 51.222056301 + ], + [ + 14.915367801, + 51.222208101 + ], + [ + 14.914644501, + 51.222348901 + ], + [ + 14.913886801, + 51.222484801 + ], + [ + 14.912673001, + 51.222678201 + ], + [ + 14.911820401, + 51.222805001 + ], + [ + 14.910526601, + 51.222962901 + ], + [ + 14.909741101, + 51.223047601 + ], + [ + 14.909248401, + 51.223093801 + ], + [ + 14.909023701, + 51.223111901 + ], + [ + 14.908525801, + 51.223152101 + ], + [ + 14.907596701, + 51.223218701 + ], + [ + 14.906025801, + 51.223297501 + ], + [ + 14.904585701, + 51.223337601 + ], + [ + 14.903618401, + 51.223344601 + ], + [ + 14.902678401, + 51.223337601 + ], + [ + 14.901710301, + 51.223310601 + ], + [ + 14.900887101, + 51.223286101 + ], + [ + 14.900072101, + 51.223238701 + ], + [ + 14.899028401, + 51.223170501 + ], + [ + 14.897989001, + 51.223082301 + ], + [ + 14.897340001, + 51.223023501 + ], + [ + 14.896693101, + 51.222956401 + ], + [ + 14.896048601, + 51.222880901 + ], + [ + 14.895406601, + 51.222797001 + ], + [ + 14.894767601, + 51.222704901 + ], + [ + 14.894131701, + 51.222604601 + ], + [ + 14.893499301, + 51.222496101 + ], + [ + 14.892870501, + 51.222379401 + ], + [ + 14.892245801, + 51.222254601 + ], + [ + 14.891203701, + 51.222048401 + ], + [ + 14.890135301, + 51.221813201 + ], + [ + 14.887886401, + 51.221276901 + ], + [ + 14.885327901, + 51.220669001 + ], + [ + 14.883800401, + 51.220352801 + ], + [ + 14.881600901, + 51.220010401 + ], + [ + 14.879788201, + 51.219803101 + ], + [ + 14.878794001, + 51.219727001 + ], + [ + 14.878505801, + 51.219705301 + ], + [ + 14.877919301, + 51.219668501 + ], + [ + 14.877205801, + 51.219630901 + ], + [ + 14.876552201, + 51.219598601 + ], + [ + 14.875787901, + 51.219574401 + ], + [ + 14.874423901, + 51.219546301 + ], + [ + 14.874102801, + 51.219546301 + ], + [ + 14.871522401, + 51.219546701 + ], + [ + 14.868621201, + 51.219555101 + ], + [ + 14.867181001, + 51.219562201 + ], + [ + 14.867021401, + 51.219561601 + ], + [ + 14.865618701, + 51.219556701 + ], + [ + 14.864776701, + 51.219550201 + ], + [ + 14.863939001, + 51.219542201 + ], + [ + 14.862487101, + 51.219513801 + ], + [ + 14.860700501, + 51.219446701 + ], + [ + 14.859832601, + 51.219403001 + ], + [ + 14.859424401, + 51.219382101 + ], + [ + 14.858906401, + 51.219350101 + ], + [ + 14.858386968, + 51.219316204 + ] + ] + } + }, + { + "identifier": "2026-010677--vi-bs.2026-04-15_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.22019118306842,14.922742921190885,51.219218530672855,14.85716341863544", + "point": "51.22019118306842,14.922742921190885", + "startLcPosition": "155", + "impact": { + "lower": "K\u00f6nigshainer Berge", + "upper": "G\u00f6rlitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | G\u00f6rlitz - K\u00f6nigshainer Berge", + "coordinate": { + "lat": 51.22019118306842, + "long": 14.922742921190885 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 16:00 Uhr", + "16.04.26 von 08:00 bis 16:00 Uhr", + "17.04.26 von 08:00 bis 16:00 Uhr", + "22.04.26 von 08:00 bis 16:00 Uhr", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 3.8 km hinter AS G\u00f6rlitz und 1.8 km vor K\u00f6nigshainer Berge", + "", + "L\u00e4nge: 4.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A4-Ost Vermessungsarbeiten Km 89,0 bis 84,3 RF Dresden - Lastspur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.922742921, + 51.220191183 + ], + [ + 14.922394901, + 51.220314901 + ], + [ + 14.921767101, + 51.220527001 + ], + [ + 14.921245301, + 51.220697701 + ], + [ + 14.920684301, + 51.220872601 + ], + [ + 14.919888001, + 51.221109301 + ], + [ + 14.919134701, + 51.221323201 + ], + [ + 14.918314701, + 51.221542201 + ], + [ + 14.917565001, + 51.221726501 + ], + [ + 14.916868401, + 51.221890201 + ], + [ + 14.916087601, + 51.222056301 + ], + [ + 14.915367801, + 51.222208101 + ], + [ + 14.914644501, + 51.222348901 + ], + [ + 14.913886801, + 51.222484801 + ], + [ + 14.912673001, + 51.222678201 + ], + [ + 14.911820401, + 51.222805001 + ], + [ + 14.910526601, + 51.222962901 + ], + [ + 14.909741101, + 51.223047601 + ], + [ + 14.909248401, + 51.223093801 + ], + [ + 14.909023701, + 51.223111901 + ], + [ + 14.908525801, + 51.223152101 + ], + [ + 14.907596701, + 51.223218701 + ], + [ + 14.906025801, + 51.223297501 + ], + [ + 14.904585701, + 51.223337601 + ], + [ + 14.903618401, + 51.223344601 + ], + [ + 14.902678401, + 51.223337601 + ], + [ + 14.901710301, + 51.223310601 + ], + [ + 14.900887101, + 51.223286101 + ], + [ + 14.900072101, + 51.223238701 + ], + [ + 14.899028401, + 51.223170501 + ], + [ + 14.897989001, + 51.223082301 + ], + [ + 14.897340001, + 51.223023501 + ], + [ + 14.896693101, + 51.222956401 + ], + [ + 14.896048601, + 51.222880901 + ], + [ + 14.895406601, + 51.222797001 + ], + [ + 14.894767601, + 51.222704901 + ], + [ + 14.894131701, + 51.222604601 + ], + [ + 14.893499301, + 51.222496101 + ], + [ + 14.892870501, + 51.222379401 + ], + [ + 14.892245801, + 51.222254601 + ], + [ + 14.891203701, + 51.222048401 + ], + [ + 14.890135301, + 51.221813201 + ], + [ + 14.887886401, + 51.221276901 + ], + [ + 14.885327901, + 51.220669001 + ], + [ + 14.883800401, + 51.220352801 + ], + [ + 14.881600901, + 51.220010401 + ], + [ + 14.879788201, + 51.219803101 + ], + [ + 14.878794001, + 51.219727001 + ], + [ + 14.878505801, + 51.219705301 + ], + [ + 14.877919301, + 51.219668501 + ], + [ + 14.877205801, + 51.219630901 + ], + [ + 14.876552201, + 51.219598601 + ], + [ + 14.875787901, + 51.219574401 + ], + [ + 14.874423901, + 51.219546301 + ], + [ + 14.874102801, + 51.219546301 + ], + [ + 14.871522401, + 51.219546701 + ], + [ + 14.868621201, + 51.219555101 + ], + [ + 14.867181001, + 51.219562201 + ], + [ + 14.867021401, + 51.219561601 + ], + [ + 14.865618701, + 51.219556701 + ], + [ + 14.864776701, + 51.219550201 + ], + [ + 14.863939001, + 51.219542201 + ], + [ + 14.862487101, + 51.219513801 + ], + [ + 14.860700501, + 51.219446701 + ], + [ + 14.859832601, + 51.219403001 + ], + [ + 14.859424401, + 51.219382101 + ], + [ + 14.858906401, + 51.219350101 + ], + [ + 14.858253601, + 51.219307501 + ], + [ + 14.857163419, + 51.219218531 + ] + ] + } + }, + { + "identifier": "2025-002315--vi-fbm.2025-01-29_00-00-00-000.devi-bs.2025-01-29_21-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.2021435464547,14.95428007061865,51.21971124968316,14.878584805203896", + "point": "51.2021435464547,14.95428007061865", + "startLcPosition": "155", + "impact": { + "lower": "Wiesaer Forst", + "upper": "G\u00f6rlitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | G\u00f6rlitz - Wiesaer Forst", + "startTimestamp": "2025-01-29T00:00:00+01:00", + "coordinate": { + "lat": 51.2021435464547, + "long": 14.95428007061865 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.01.25 um 00:00 Uhr", + "Ende: 08.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.11.26)", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen 0.8 km hinter AS G\u00f6rlitz und 0.5 km vor Wiesaer Forst", + "", + "L\u00e4nge: 6.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Nachr\u00fcstung Tunnel KHB A4 Km 80,87 - 84,17 beide Richtungsfahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.954280071, + 51.202143546 + ], + [ + 14.953943101, + 51.202321701 + ], + [ + 14.951675701, + 51.203596201 + ], + [ + 14.948685201, + 51.205408401 + ], + [ + 14.946499801, + 51.206775301 + ], + [ + 14.944119301, + 51.208304701 + ], + [ + 14.943967501, + 51.208402201 + ], + [ + 14.943763701, + 51.208530401 + ], + [ + 14.942694601, + 51.209212501 + ], + [ + 14.938791101, + 51.211706801 + ], + [ + 14.935395501, + 51.213856601 + ], + [ + 14.933542301, + 51.214980101 + ], + [ + 14.933344901, + 51.215098401 + ], + [ + 14.932343701, + 51.215677801 + ], + [ + 14.931384401, + 51.216222001 + ], + [ + 14.928686801, + 51.217649301 + ], + [ + 14.927520301, + 51.218213801 + ], + [ + 14.925356001, + 51.219179401 + ], + [ + 14.923934401, + 51.219748801 + ], + [ + 14.923139501, + 51.220050201 + ], + [ + 14.922394901, + 51.220314901 + ], + [ + 14.921767101, + 51.220527001 + ], + [ + 14.921245301, + 51.220697701 + ], + [ + 14.920684301, + 51.220872601 + ], + [ + 14.919888001, + 51.221109301 + ], + [ + 14.919134701, + 51.221323201 + ], + [ + 14.918314701, + 51.221542201 + ], + [ + 14.917565001, + 51.221726501 + ], + [ + 14.916868401, + 51.221890201 + ], + [ + 14.916087601, + 51.222056301 + ], + [ + 14.915367801, + 51.222208101 + ], + [ + 14.914644501, + 51.222348901 + ], + [ + 14.913886801, + 51.222484801 + ], + [ + 14.912673001, + 51.222678201 + ], + [ + 14.911820401, + 51.222805001 + ], + [ + 14.910526601, + 51.222962901 + ], + [ + 14.909741101, + 51.223047601 + ], + [ + 14.909248401, + 51.223093801 + ], + [ + 14.909023701, + 51.223111901 + ], + [ + 14.908525801, + 51.223152101 + ], + [ + 14.907596701, + 51.223218701 + ], + [ + 14.906025801, + 51.223297501 + ], + [ + 14.904585701, + 51.223337601 + ], + [ + 14.903618401, + 51.223344601 + ], + [ + 14.902678401, + 51.223337601 + ], + [ + 14.901710301, + 51.223310601 + ], + [ + 14.900887101, + 51.223286101 + ], + [ + 14.900072101, + 51.223238701 + ], + [ + 14.899028401, + 51.223170501 + ], + [ + 14.897989001, + 51.223082301 + ], + [ + 14.897340001, + 51.223023501 + ], + [ + 14.896693101, + 51.222956401 + ], + [ + 14.896048601, + 51.222880901 + ], + [ + 14.895406601, + 51.222797001 + ], + [ + 14.894767601, + 51.222704901 + ], + [ + 14.894131701, + 51.222604601 + ], + [ + 14.893499301, + 51.222496101 + ], + [ + 14.892870501, + 51.222379401 + ], + [ + 14.892245801, + 51.222254601 + ], + [ + 14.891203701, + 51.222048401 + ], + [ + 14.890135301, + 51.221813201 + ], + [ + 14.887886401, + 51.221276901 + ], + [ + 14.885327901, + 51.220669001 + ], + [ + 14.883800401, + 51.220352801 + ], + [ + 14.881600901, + 51.220010401 + ], + [ + 14.879788201, + 51.219803101 + ], + [ + 14.878794001, + 51.219727001 + ], + [ + 14.878584805, + 51.21971125 + ] + ] + } + }, + { + "identifier": "2026-017819--vi-bs.2026-04-10_07-30-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.18091485243293,15.008504048496288,51.21933382361124,14.858656960585739", + "point": "51.18091485243293,15.008504048496288", + "startLcPosition": "157", + "impact": { + "lower": "K\u00f6nigshainer Berge", + "upper": "Ludwigsdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6rlitz -> Dresden", + "title": "A4 | Ludwigsdorf - K\u00f6nigshainer Berge", + "coordinate": { + "lat": 51.18091485243293, + "long": 15.008504048496288 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 13:30 Uhr", + "", + "A4: G\u00f6rlitz -> Dresden, zwischen Ludwigsdorf und 1.9 km vor K\u00f6nigshainer Berge", + "", + "L\u00e4nge: 12.08 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A4 von An der Nei\u00dfe (Rastplatz) Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 15.008504048, + 51.180914852 + ], + [ + 15.008245601, + 51.181019001 + ], + [ + 15.008030901, + 51.181103601 + ], + [ + 15.008016501, + 51.181109201 + ], + [ + 15.007754801, + 51.181212301 + ], + [ + 15.007487401, + 51.181310701 + ], + [ + 15.007278001, + 51.181397101 + ], + [ + 15.006779801, + 51.181587001 + ], + [ + 15.006475301, + 51.181698401 + ], + [ + 15.005998201, + 51.181877001 + ], + [ + 15.005608601, + 51.182020901 + ], + [ + 15.005234801, + 51.182154101 + ], + [ + 15.005099401, + 51.182202401 + ], + [ + 15.005037301, + 51.182223601 + ], + [ + 15.004165501, + 51.182521501 + ], + [ + 15.003548101, + 51.182736901 + ], + [ + 15.003213201, + 51.182848401 + ], + [ + 15.001827901, + 51.183296001 + ], + [ + 15.001439001, + 51.183417701 + ], + [ + 15.001194301, + 51.183491501 + ], + [ + 15.000597901, + 51.183667901 + ], + [ + 14.999471001, + 51.183994301 + ], + [ + 14.999310001, + 51.184041001 + ], + [ + 14.998414401, + 51.184300401 + ], + [ + 14.996507701, + 51.184812301 + ], + [ + 14.995342601, + 51.185121601 + ], + [ + 14.994934501, + 51.185227601 + ], + [ + 14.992902001, + 51.185757601 + ], + [ + 14.990841501, + 51.186327401 + ], + [ + 14.990582101, + 51.186400401 + ], + [ + 14.989494201, + 51.186736501 + ], + [ + 14.989006501, + 51.186893001 + ], + [ + 14.988092301, + 51.187205201 + ], + [ + 14.987261501, + 51.187512001 + ], + [ + 14.985849201, + 51.188056801 + ], + [ + 14.985258301, + 51.188299801 + ], + [ + 14.984384001, + 51.188675101 + ], + [ + 14.983227901, + 51.189171401 + ], + [ + 14.982952101, + 51.189294401 + ], + [ + 14.982918501, + 51.189309401 + ], + [ + 14.981881901, + 51.189756001 + ], + [ + 14.977376101, + 51.191694801 + ], + [ + 14.977248101, + 51.191749901 + ], + [ + 14.977086701, + 51.191819301 + ], + [ + 14.977005901, + 51.191854501 + ], + [ + 14.976732001, + 51.191973901 + ], + [ + 14.972856201, + 51.193644901 + ], + [ + 14.970985101, + 51.194458601 + ], + [ + 14.969557701, + 51.195069401 + ], + [ + 14.967792101, + 51.195829401 + ], + [ + 14.965790701, + 51.196696401 + ], + [ + 14.965015101, + 51.197036301 + ], + [ + 14.964261101, + 51.197366701 + ], + [ + 14.963992901, + 51.197483301 + ], + [ + 14.963652601, + 51.197628201 + ], + [ + 14.962517801, + 51.198129001 + ], + [ + 14.962215401, + 51.198264501 + ], + [ + 14.961093801, + 51.198767201 + ], + [ + 14.959611501, + 51.199455901 + ], + [ + 14.959527801, + 51.199494201 + ], + [ + 14.959138701, + 51.199672401 + ], + [ + 14.958657601, + 51.199912201 + ], + [ + 14.958175401, + 51.200143601 + ], + [ + 14.957376401, + 51.200537201 + ], + [ + 14.956591201, + 51.200921601 + ], + [ + 14.953943101, + 51.202321701 + ], + [ + 14.951675701, + 51.203596201 + ], + [ + 14.948685201, + 51.205408401 + ], + [ + 14.946499801, + 51.206775301 + ], + [ + 14.944119301, + 51.208304701 + ], + [ + 14.943967501, + 51.208402201 + ], + [ + 14.943763701, + 51.208530401 + ], + [ + 14.942694601, + 51.209212501 + ], + [ + 14.938791101, + 51.211706801 + ], + [ + 14.935395501, + 51.213856601 + ], + [ + 14.933542301, + 51.214980101 + ], + [ + 14.933344901, + 51.215098401 + ], + [ + 14.932343701, + 51.215677801 + ], + [ + 14.931384401, + 51.216222001 + ], + [ + 14.928686801, + 51.217649301 + ], + [ + 14.927520301, + 51.218213801 + ], + [ + 14.925356001, + 51.219179401 + ], + [ + 14.923934401, + 51.219748801 + ], + [ + 14.923139501, + 51.220050201 + ], + [ + 14.922394901, + 51.220314901 + ], + [ + 14.921767101, + 51.220527001 + ], + [ + 14.921245301, + 51.220697701 + ], + [ + 14.920684301, + 51.220872601 + ], + [ + 14.919888001, + 51.221109301 + ], + [ + 14.919134701, + 51.221323201 + ], + [ + 14.918314701, + 51.221542201 + ], + [ + 14.917565001, + 51.221726501 + ], + [ + 14.916868401, + 51.221890201 + ], + [ + 14.916087601, + 51.222056301 + ], + [ + 14.915367801, + 51.222208101 + ], + [ + 14.914644501, + 51.222348901 + ], + [ + 14.913886801, + 51.222484801 + ], + [ + 14.912673001, + 51.222678201 + ], + [ + 14.911820401, + 51.222805001 + ], + [ + 14.910526601, + 51.222962901 + ], + [ + 14.909741101, + 51.223047601 + ], + [ + 14.909248401, + 51.223093801 + ], + [ + 14.909023701, + 51.223111901 + ], + [ + 14.908525801, + 51.223152101 + ], + [ + 14.907596701, + 51.223218701 + ], + [ + 14.906025801, + 51.223297501 + ], + [ + 14.904585701, + 51.223337601 + ], + [ + 14.903618401, + 51.223344601 + ], + [ + 14.902678401, + 51.223337601 + ], + [ + 14.901710301, + 51.223310601 + ], + [ + 14.900887101, + 51.223286101 + ], + [ + 14.900072101, + 51.223238701 + ], + [ + 14.899028401, + 51.223170501 + ], + [ + 14.897989001, + 51.223082301 + ], + [ + 14.897340001, + 51.223023501 + ], + [ + 14.896693101, + 51.222956401 + ], + [ + 14.896048601, + 51.222880901 + ], + [ + 14.895406601, + 51.222797001 + ], + [ + 14.894767601, + 51.222704901 + ], + [ + 14.894131701, + 51.222604601 + ], + [ + 14.893499301, + 51.222496101 + ], + [ + 14.892870501, + 51.222379401 + ], + [ + 14.892245801, + 51.222254601 + ], + [ + 14.891203701, + 51.222048401 + ], + [ + 14.890135301, + 51.221813201 + ], + [ + 14.887886401, + 51.221276901 + ], + [ + 14.885327901, + 51.220669001 + ], + [ + 14.883800401, + 51.220352801 + ], + [ + 14.881600901, + 51.220010401 + ], + [ + 14.879788201, + 51.219803101 + ], + [ + 14.878794001, + 51.219727001 + ], + [ + 14.878505801, + 51.219705301 + ], + [ + 14.877919301, + 51.219668501 + ], + [ + 14.877205801, + 51.219630901 + ], + [ + 14.876552201, + 51.219598601 + ], + [ + 14.875787901, + 51.219574401 + ], + [ + 14.874423901, + 51.219546301 + ], + [ + 14.874102801, + 51.219546301 + ], + [ + 14.871522401, + 51.219546701 + ], + [ + 14.868621201, + 51.219555101 + ], + [ + 14.867181001, + 51.219562201 + ], + [ + 14.867021401, + 51.219561601 + ], + [ + 14.865618701, + 51.219556701 + ], + [ + 14.864776701, + 51.219550201 + ], + [ + 14.863939001, + 51.219542201 + ], + [ + 14.862487101, + 51.219513801 + ], + [ + 14.860700501, + 51.219446701 + ], + [ + 14.859832601, + 51.219403001 + ], + [ + 14.859424401, + 51.219382101 + ], + [ + 14.858906401, + 51.219350101 + ], + [ + 14.858656961, + 51.219333824 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-fbm.2026-04-08_08-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de330", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.83959357309571,9.585280200405702,50.83933344701264,9.583436586502147", + "point": "50.83959357309571,9.585280200405702", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AD Kirchheimer Dreieck (aus Richtung Bad Hersfeld)", + "title": "A7 Umbau Kirchheimer-Dreieck", + "coordinate": { + "lat": 50.83959357309571, + "long": 9.585280200405702 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 00:00 bis zum 10.04.26 18:00 Uhr.", + "", + "Abfahrt von der A4: AD Kirchheimer Dreieck (aus Richtung Bad Hersfeld)", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.5852802, + 50.839593573 + ], + [ + 9.5852192, + 50.839584201 + ], + [ + 9.5849334, + 50.839541601 + ], + [ + 9.5840488, + 50.839429501 + ], + [ + 9.583436587, + 50.839333447 + ] + ] + } + }, + { + "identifier": "2026-017502--vi-bs.2026-04-15_21-00-00-000.devi-bs.2026-04-15_21-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.13910564952594,13.749931729319266,51.13149531442723,13.749490678499548", + "point": "51.13910564952594,13.749931729319266", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AD Dresden-Nord (aus Richtung Marsdorf) nach A4", + "title": "A4w km 0,2 RF AC - AS DD-Flughafen - Markierungsarbeiten - 066-26", + "coordinate": { + "lat": 51.13910564952594, + "long": 13.749931729319266 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 21:00 bis zum 16.04.26 05:00 Uhr.", + "", + "Von Abfahrt von der A13: AD Dresden-Nord (aus Richtung Marsdorf) nach A4: Dresden -> Chemnitz, zwischen AD Dresden-Nord und 0.9 km vor AS Dresden-Flughafen", + "", + "L\u00e4nge: 0.86 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A4w km 0,2 RF AC - AS DD-Flughafen - Markierungsarbeiten - 066-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.749931729, + 51.13910565 + ], + [ + 13.7500045, + 51.138949201 + ], + [ + 13.7500724, + 51.138827701 + ], + [ + 13.7501279, + 51.138717901 + ], + [ + 13.7502803, + 51.138394501 + ], + [ + 13.7504105, + 51.138060001 + ], + [ + 13.7506073, + 51.137338301 + ], + [ + 13.750677, + 51.136718101 + ], + [ + 13.7506767, + 51.136412301 + ], + [ + 13.7506765, + 51.136249701 + ], + [ + 13.7506369, + 51.135882801 + ], + [ + 13.7505625, + 51.135473001 + ], + [ + 13.7503412, + 51.134693301 + ], + [ + 13.7501579, + 51.134077601 + ], + [ + 13.7499671, + 51.133442901 + ], + [ + 13.7499015, + 51.132745101 + ], + [ + 13.7495559, + 51.131708501 + ], + [ + 13.749490678, + 51.131495314 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-bs.2025-12-15_10-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de320", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.839614776494244,9.585418207454188,50.83602149594886,9.57754693444527", + "point": "50.839614776494244,9.585418207454188", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Kirchheimer Dreieck (aus Richtung Bad Hersfeld)", + "title": "A7 Umbau Kirchheimer-Dreieck", + "startTimestamp": "2025-12-15T10:00:00+01:00", + "coordinate": { + "lat": 50.839614776494244, + "long": 9.585418207454188 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 10:00 Uhr", + "Ende: 15.04.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "Abfahrt von der A4: AD Kirchheimer Dreieck (aus Richtung Bad Hersfeld)", + "", + "L\u00e4nge: 0.72 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.585418207, + 50.839614776 + ], + [ + 9.5852192, + 50.839584201 + ], + [ + 9.5849334, + 50.839541601 + ], + [ + 9.5840488, + 50.839429501 + ], + [ + 9.5832999, + 50.839312001 + ], + [ + 9.5828022, + 50.839213001 + ], + [ + 9.5822358, + 50.839077201 + ], + [ + 9.5818206, + 50.838952601 + ], + [ + 9.5812143, + 50.838756001 + ], + [ + 9.5807524, + 50.838581401 + ], + [ + 9.5803225, + 50.838405301 + ], + [ + 9.5798722, + 50.838182701 + ], + [ + 9.5795972, + 50.838027601 + ], + [ + 9.5793172, + 50.837852301 + ], + [ + 9.578979, + 50.837604801 + ], + [ + 9.5786102, + 50.837320001 + ], + [ + 9.5782662, + 50.837019101 + ], + [ + 9.5780891, + 50.836843501 + ], + [ + 9.5779253, + 50.836651801 + ], + [ + 9.577813, + 50.836482401 + ], + [ + 9.5777011, + 50.836303301 + ], + [ + 9.577592, + 50.836110001 + ], + [ + 9.577546934, + 50.836021496 + ] + ] + } + }, + { + "identifier": "2026-015892--vi-bs.2026-04-07_22-00-00-000.devi-bs.2026-04-07_22-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.10770831279709,13.73202746474769,51.104127878042554,13.726007673579353", + "point": "51.10770831279709,13.73202746474769", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Dresden-Hellerau (aus Richtung Dresden-Flughafen) nach A4", + "title": "A4w Km 3,9 RF AC - AS DD Wilder Mann - Betonsanierung - 060-26", + "coordinate": { + "lat": 51.10770831279709, + "long": 13.73202746474769 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch, Donnerstag und Freitag zwischen dem 08.04.26 und dem 10.04.26 von 00:00 bis 05:00 Uhr.", + "09.04.26 von 20:00 bis 24:00 Uhr", + "", + "Von Auffahrt auf die A4: AS Dresden-Hellerau (aus Richtung Dresden-Flughafen) nach A4: Dresden -> Chemnitz, zwischen AS Dresden-Hellerau und 0.9 km vor AS Dresden-Wilder Mann", + "", + "L\u00e4nge: 0.62 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A4w Km 3,9 RF AC - AS DD Wilder Mann - Betonsanierung - 060-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.732027465, + 51.107708313 + ], + [ + 13.7320166, + 51.107691301 + ], + [ + 13.7319862, + 51.107585801 + ], + [ + 13.7319773, + 51.107484401 + ], + [ + 13.7319922, + 51.107376001 + ], + [ + 13.7320447, + 51.107150601 + ], + [ + 13.7320545, + 51.106965001 + ], + [ + 13.7320104, + 51.106795701 + ], + [ + 13.7319285, + 51.106650401 + ], + [ + 13.7318088, + 51.106502801 + ], + [ + 13.73146, + 51.106162501 + ], + [ + 13.7306364, + 51.105782601 + ], + [ + 13.7298446, + 51.105455701 + ], + [ + 13.7290112, + 51.105127901 + ], + [ + 13.7281174, + 51.104804601 + ], + [ + 13.7275725, + 51.104618301 + ], + [ + 13.7269911, + 51.104426601 + ], + [ + 13.7262844, + 51.104207801 + ], + [ + 13.726007674, + 51.104127878 + ] + ] + } + }, + { + "identifier": "2026-016413--vi-bs.2026-04-06_00-00-00-000.devi-zus.2026-04-06_00-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95645797828997,10.042060223735973,50.95704318153167,10.039149733039977", + "point": "50.95645797828997,10.042060223735973", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wildeck-Obersuhl (aus Richtung Wildeck-H\u00f6nebach)", + "title": "A4 AS Gerstungen", + "startTimestamp": "2026-04-06T00:00:00+02:00", + "coordinate": { + "lat": 50.95645797828997, + "long": 10.042060223735973 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.04.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.05.26)", + "", + "Auffahrt auf die A4: AS Wildeck-Obersuhl (aus Richtung Wildeck-H\u00f6nebach)", + "", + "L\u00e4nge: 0.22 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A4 AS Gerstungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.042060224, + 50.956457978 + ], + [ + 10.0420412, + 50.956455801 + ], + [ + 10.0418995, + 50.956442001 + ], + [ + 10.04176, + 50.956430801 + ], + [ + 10.0416225, + 50.956425601 + ], + [ + 10.0414678, + 50.956423201 + ], + [ + 10.0412463, + 50.956430401 + ], + [ + 10.0410268, + 50.956448101 + ], + [ + 10.0408234, + 50.956475301 + ], + [ + 10.0406161, + 50.956514701 + ], + [ + 10.0404055, + 50.956565601 + ], + [ + 10.0402039, + 50.956626401 + ], + [ + 10.0400087, + 50.956691201 + ], + [ + 10.0395311, + 50.956882901 + ], + [ + 10.039149733, + 50.957043182 + ] + ] + } + }, + { + "identifier": "2026-016413--vi-bs.2026-04-06_00-00-00-000.devi-zus.2026-04-06_00-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.96274226601859,10.052006003228245,50.96233059867603,10.043269301929028", + "point": "50.96274226601859,10.052006003228245", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Gerstungen (aus Richtung Wommener Dreieck)", + "title": "A4 AS Gerstungen", + "startTimestamp": "2026-04-06T00:00:00+02:00", + "coordinate": { + "lat": 50.96274226601859, + "long": 10.052006003228245 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.04.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.05.26)", + "", + "Abfahrt von der A4: AS Gerstungen (aus Richtung Wommener Dreieck)", + "", + "L\u00e4nge: 0.62 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A4 AS Gerstungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.052006003, + 50.962742266 + ], + [ + 10.051245, + 50.962674401 + ], + [ + 10.0484798, + 50.962440901 + ], + [ + 10.0474795, + 50.962382301 + ], + [ + 10.0465089, + 50.962344101 + ], + [ + 10.0453891, + 50.962330001 + ], + [ + 10.0441376, + 50.962329601 + ], + [ + 10.0439935, + 50.962329601 + ], + [ + 10.043269302, + 50.962330599 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de81", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80358734372073,6.153596018978553,50.80390585002974,6.148776090187643", + "point": "50.80358734372073,6.153596018978553", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Toresberg (aus Richtung Aachen) nach A4", + "title": "Instandsetzung Grenze NL_D - AK Aachen", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.80358734372073, + "long": 6.153596018978553 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "Von Auffahrt auf die A4: Toresberg (aus Richtung Aachen) nach A4: K\u00f6ln -> Heerlen/Aachen, zwischen AK Aachen und 0.8 km vor Toresberg", + "", + "L\u00e4nge: 0.34 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.153596019, + 50.803587344 + ], + [ + 6.1532806, + 50.803593501 + ], + [ + 6.1530306, + 50.803589201 + ], + [ + 6.152832, + 50.803579401 + ], + [ + 6.1523357, + 50.803554901 + ], + [ + 6.1516151, + 50.803540101 + ], + [ + 6.1512464, + 50.803581401 + ], + [ + 6.1506245, + 50.803656601 + ], + [ + 6.1489373, + 50.803887101 + ], + [ + 6.14877609, + 50.80390585 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de83", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.805227799090076,6.1680467755984525,50.80406798410168,6.159256499682392", + "point": "50.805227799090076,6.1680467755984525", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Aachen (aus Richtung Aachener Land) nach A4", + "title": "Instandsetzung Grenze NL_D - AK Aachen", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.805227799090076, + "long": 6.1680467755984525 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "Von Auffahrt auf die A4: AK Aachen (aus Richtung Aachener Land) nach A4: K\u00f6ln -> Heerlen/Aachen, zwischen AK Aachen und 1.5 km vor Toresberg", + "", + "L\u00e4nge: 0.64 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.168046776, + 50.805227799 + ], + [ + 6.1679841, + 50.805207501 + ], + [ + 6.1678212, + 50.805161301 + ], + [ + 6.1676518, + 50.805123101 + ], + [ + 6.1674962, + 50.805093701 + ], + [ + 6.1672648, + 50.805059701 + ], + [ + 6.1669771, + 50.805030201 + ], + [ + 6.1667305, + 50.805012801 + ], + [ + 6.1665732, + 50.805003301 + ], + [ + 6.1660006, + 50.804995701 + ], + [ + 6.1652929, + 50.804997701 + ], + [ + 6.1648964, + 50.804992301 + ], + [ + 6.1645196, + 50.804976601 + ], + [ + 6.1640838, + 50.804958401 + ], + [ + 6.1636042, + 50.804924801 + ], + [ + 6.1631634, + 50.804878001 + ], + [ + 6.1626917, + 50.804813401 + ], + [ + 6.1620143, + 50.804697801 + ], + [ + 6.161565, + 50.804606001 + ], + [ + 6.1608973, + 50.804448601 + ], + [ + 6.1606284, + 50.804376901 + ], + [ + 6.1603295, + 50.804283501 + ], + [ + 6.1596819, + 50.804158801 + ], + [ + 6.1592565, + 50.804067984 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-bs.2025-12-15_10-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de322", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.83748417428095,9.580050736014977,50.83944109410256,9.585013989681073", + "point": "50.83748417428095,9.580050736014977", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 Umbau Kirchheimer-Dreieck", + "startTimestamp": "2025-12-15T10:00:00+01:00", + "coordinate": { + "lat": 50.83748417428095, + "long": 9.580050736014977 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 10:00 Uhr", + "Ende: 15.04.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "Von A7: Kassel -> Fulda, 0.6 km vor AS Kirchheim, aus Richtung Kirchheimer Dreieck; in A7: AD Kirchheimer Dreieck auf die A4 in Richtung Erfurt; nach A4: Kirchheimer Dreieck -> Erfurt, 10.2 km vor AS Bad Hersfeld, aus Richtung Kirchheimer Dreieck", + "", + "L\u00e4nge: 1.02 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.580050736, + 50.837484174 + ], + [ + 9.5792774, + 50.835996201 + ], + [ + 9.5789261, + 50.835682401 + ], + [ + 9.5788169, + 50.835616101 + ], + [ + 9.5786754, + 50.835557701 + ], + [ + 9.5785155, + 50.835523101 + ], + [ + 9.578347, + 50.835514301 + ], + [ + 9.5781802, + 50.835532001 + ], + [ + 9.5780255, + 50.835575001 + ], + [ + 9.5778922, + 50.835640601 + ], + [ + 9.5777885, + 50.835725001 + ], + [ + 9.5777209, + 50.835822901 + ], + [ + 9.5776934, + 50.835928201 + ], + [ + 9.5777077, + 50.836034601 + ], + [ + 9.5777651, + 50.836204601 + ], + [ + 9.577839, + 50.836344901 + ], + [ + 9.5781085, + 50.836686001 + ], + [ + 9.5785037, + 50.837050001 + ], + [ + 9.5788717, + 50.837350301 + ], + [ + 9.5793533, + 50.837689101 + ], + [ + 9.5798545, + 50.837987901 + ], + [ + 9.580179, + 50.838156101 + ], + [ + 9.5806299, + 50.838373801 + ], + [ + 9.5811243, + 50.838575501 + ], + [ + 9.5813987, + 50.838666101 + ], + [ + 9.5818794, + 50.838824901 + ], + [ + 9.5826374, + 50.839018601 + ], + [ + 9.5834627, + 50.839202801 + ], + [ + 9.5842605, + 50.839329401 + ], + [ + 9.5849922, + 50.839437701 + ], + [ + 9.58501399, + 50.839441094 + ] + ] + } + }, + { + "identifier": "2026-015456--vi-bs.2026-04-20_09-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.123277418033275,13.746819546940042,51.123658007602906,13.74554679194683", + "point": "51.123277418033275,13.746819546940042", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Dresden-Flughafen (aus Richtung Dresden-Nord)", + "title": "A4 AS Dresden-Flughafen RF Chemnitz - Wiederherstellung Auslegermast - 058-26", + "startTimestamp": "2026-04-20T09:00:00+02:00", + "coordinate": { + "lat": 51.123277418033275, + "long": 13.746819546940042 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 09:00 Uhr", + "Ende: 05.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.05.26)", + "", + "Abfahrt von der A4: AS Dresden-Flughafen (aus Richtung Dresden-Nord)", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A4 AS Dresden-Flughafen RF Chemnitz - Wiederherstellung Auslegermast - 058-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.746819547, + 51.123277418 + ], + [ + 13.7468162, + 51.123274501 + ], + [ + 13.7466927, + 51.123191001 + ], + [ + 13.7465493, + 51.123129301 + ], + [ + 13.7464151, + 51.123093801 + ], + [ + 13.7462689, + 51.123081001 + ], + [ + 13.7461399, + 51.123083001 + ], + [ + 13.7459973, + 51.123103401 + ], + [ + 13.7459229, + 51.123121901 + ], + [ + 13.7458565, + 51.123144301 + ], + [ + 13.7457546, + 51.123189201 + ], + [ + 13.7456721, + 51.123249001 + ], + [ + 13.7456015, + 51.123314301 + ], + [ + 13.7455635, + 51.123363501 + ], + [ + 13.745538, + 51.123415601 + ], + [ + 13.7455259, + 51.123460701 + ], + [ + 13.7455204, + 51.123509301 + ], + [ + 13.7455239, + 51.123584801 + ], + [ + 13.745538, + 51.123640401 + ], + [ + 13.745546792, + 51.123658008 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de91", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80454633606305,6.1096505233387735,50.80467813974812,6.109024806836501", + "point": "50.80454633606305,6.1096505233387735", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Aachen-Zentrum (aus Richtung Toresberg)", + "title": "Instandsetzung Grenze NL_D - AK Aachen", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.80454633606305, + "long": 6.1096505233387735 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "Abfahrt von der A4: AS Aachen-Zentrum (aus Richtung Toresberg)", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.109650523, + 50.804546336 + ], + [ + 6.1095414, + 50.804558601 + ], + [ + 6.109343, + 50.804590101 + ], + [ + 6.109218, + 50.804619701 + ], + [ + 6.1091117, + 50.804649201 + ], + [ + 6.109024807, + 50.80467814 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de89", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80481460982838,6.10771482487457,50.804597765610815,6.106554395743428", + "point": "50.80481460982838,6.10771482487457", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Aachen-Zentrum (aus Richtung Toresberg)", + "title": "Instandsetzung Grenze NL_D - AK Aachen", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.80481460982838, + "long": 6.10771482487457 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "Auffahrt auf die A4: AS Aachen-Zentrum (aus Richtung Toresberg)", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.107714825, + 50.80481461 + ], + [ + 6.1076272, + 50.804773301 + ], + [ + 6.1075087, + 50.804732201 + ], + [ + 6.107374, + 50.804692401 + ], + [ + 6.1072285, + 50.804657601 + ], + [ + 6.1070746, + 50.804634401 + ], + [ + 6.1069046, + 50.804616201 + ], + [ + 6.106731, + 50.804603701 + ], + [ + 6.1065573, + 50.804598001 + ], + [ + 6.106554396, + 50.804597766 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de87", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.8043645812434,6.104729543458688,50.804236439107534,6.105603920191936", + "point": "50.8043645812434,6.104729543458688", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Aachen-Zentrum (aus Richtung Aachen-Laurensberg)", + "title": "Instandsetzung Grenze NL_D - AK Aachen", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.8043645812434, + "long": 6.104729543458688 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "Abfahrt von der A4: AS Aachen-Zentrum (aus Richtung Aachen-Laurensberg)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.104729543, + 50.804364581 + ], + [ + 6.1047803, + 50.804346201 + ], + [ + 6.1051106, + 50.804322201 + ], + [ + 6.1054222, + 50.804277901 + ], + [ + 6.10560392, + 50.804236439 + ] + ] + } + }, + { + "identifier": "2023-001281--vi-bs.2026-02-23_09-00-00-000.devi-zus.2022-10-04_09-00-00-000.de85", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80424847733391,6.1076007192874044,50.80432966802084,6.108728592820204", + "point": "50.80424847733391,6.1076007192874044", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Aachen-Zentrum (aus Richtung Aachen-Laurensberg)", + "title": "Instandsetzung Grenze NL_D - AK Aachen", + "startTimestamp": "2026-02-23T09:00:00+01:00", + "coordinate": { + "lat": 50.80424847733391, + "long": 6.1076007192874044 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:00 Uhr", + "Ende: 31.07.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.27)", + "", + "Auffahrt auf die A4: AS Aachen-Zentrum (aus Richtung Aachen-Laurensberg)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Instandsetzung Grenze NL_D - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.107600719, + 50.804248477 + ], + [ + 6.1077234, + 50.804279201 + ], + [ + 6.1078756, + 50.804307901 + ], + [ + 6.1080064, + 50.804319701 + ], + [ + 6.1084004, + 50.804331501 + ], + [ + 6.108728593, + 50.804329668 + ] + ] + } + } + ] + }, + "A5": { + "roadworks": [ + { + "identifier": "2026-016267--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.60864188277538,7.596651737313103,47.59932397798081,7.6026034657545285", + "point": "47.60864188277538,7.596651737313103", + "startLcPosition": "3", + "impact": { + "lower": "Weil am Rhein", + "upper": "Krebsbach", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Krebsbach - Weil am Rhein", + "coordinate": { + "lat": 47.60864188277538, + "long": 7.596651737313103 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 0.6 km hinter Krebsbach und 0.2 km vor Weil am Rhein", + "", + "L\u00e4nge: 1.14 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Weil am Rhein (AD) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.596651737, + 47.608641883 + ], + [ + 7.5966819, + 47.608615501 + ], + [ + 7.5973035, + 47.608020501 + ], + [ + 7.5979091, + 47.607403101 + ], + [ + 7.5981766, + 47.607108801 + ], + [ + 7.5985604, + 47.606678701 + ], + [ + 7.5990762, + 47.606069801 + ], + [ + 7.5994671, + 47.605552301 + ], + [ + 7.5998533, + 47.605022201 + ], + [ + 7.6003477, + 47.604293501 + ], + [ + 7.600485, + 47.604074801 + ], + [ + 7.6010356, + 47.603149901 + ], + [ + 7.6012646, + 47.602718201 + ], + [ + 7.6014979, + 47.602246901 + ], + [ + 7.6017078, + 47.601776001 + ], + [ + 7.6017842, + 47.601624301 + ], + [ + 7.601865, + 47.601430201 + ], + [ + 7.60218, + 47.600619001 + ], + [ + 7.6024754, + 47.599729601 + ], + [ + 7.602603466, + 47.599323978 + ] + ] + } + }, + { + "identifier": "2025-062919--vi-bs.2026-04-22_00-00-00-000.devi-zus.2026-04-19_20-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.704356936831864,7.523304394872492,47.70804048620811,7.526611536729464", + "point": "47.704356936831864,7.523304394872492", + "startLcPosition": "5", + "impact": { + "lower": "Bad Bellingen", + "upper": "Efringen-Kirchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Efringen-Kirchen - Bad Bellingen", + "coordinate": { + "lat": 47.704356936831864, + "long": 7.523304394872492 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 00:00 Uhr bis zum 26.04.26 24:00 Uhr.", + "", + "A5: Basel -> Karlsruhe, zwischen 3.0 km hinter AS Efringen-Kirchen und 3.9 km vor Bad Bellingen", + "", + "L\u00e4nge: 0.48 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A5 Sanierung LSW Rheinweiler" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.523304395, + 47.704356937 + ], + [ + 7.523825, + 47.705152101 + ], + [ + 7.5242561, + 47.705693301 + ], + [ + 7.5247147, + 47.706237401 + ], + [ + 7.5250292, + 47.706585801 + ], + [ + 7.5255057, + 47.707054801 + ], + [ + 7.5260297, + 47.707541501 + ], + [ + 7.5265497, + 47.707993501 + ], + [ + 7.526611537, + 47.708040486 + ] + ] + } + }, + { + "identifier": "2026-016267--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.67616057406978,7.523507728816573,47.60938404430172,7.595793977147987", + "point": "47.67616057406978,7.523507728816573", + "startLcPosition": "5", + "impact": { + "lower": "Weil am Rhein/H\u00fcningen", + "upper": "Efringen-Kirchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Efringen-Kirchen - Weil am Rhein/H\u00fcningen", + "coordinate": { + "lat": 47.67616057406978, + "long": 7.523507728816573 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 0.2 km hinter AS Efringen-Kirchen und 1.0 km vor AS Weil am Rhein/H\u00fcningen", + "", + "L\u00e4nge: 9.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Weil am Rhein (AD) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.523507729, + 47.676160574 + ], + [ + 7.5235364, + 47.675517201 + ], + [ + 7.5235574, + 47.674827401 + ], + [ + 7.5235801, + 47.674078801 + ], + [ + 7.5236378, + 47.672166201 + ], + [ + 7.5236792, + 47.671482701 + ], + [ + 7.523788, + 47.670228801 + ], + [ + 7.5239486, + 47.669207901 + ], + [ + 7.5241465, + 47.668241601 + ], + [ + 7.5243027, + 47.667634801 + ], + [ + 7.5243739, + 47.667382401 + ], + [ + 7.5244956, + 47.666987101 + ], + [ + 7.5246973, + 47.666392901 + ], + [ + 7.5249094, + 47.665842201 + ], + [ + 7.5252978, + 47.664965101 + ], + [ + 7.525726, + 47.664143101 + ], + [ + 7.5260359, + 47.663604401 + ], + [ + 7.5263794, + 47.663049101 + ], + [ + 7.5268812, + 47.662267701 + ], + [ + 7.5277224, + 47.661109901 + ], + [ + 7.5280375, + 47.660719201 + ], + [ + 7.5282407, + 47.660470701 + ], + [ + 7.5285299, + 47.660115101 + ], + [ + 7.5293787, + 47.659149201 + ], + [ + 7.529527, + 47.658981401 + ], + [ + 7.5296523, + 47.658846601 + ], + [ + 7.5300145, + 47.658457101 + ], + [ + 7.5310115, + 47.657439301 + ], + [ + 7.5318106, + 47.656677001 + ], + [ + 7.5324459, + 47.656078701 + ], + [ + 7.5330534, + 47.655534901 + ], + [ + 7.534305, + 47.654479801 + ], + [ + 7.5352264, + 47.653730401 + ], + [ + 7.5365224, + 47.652771401 + ], + [ + 7.5374416, + 47.652112601 + ], + [ + 7.538264, + 47.651552501 + ], + [ + 7.539433, + 47.650805301 + ], + [ + 7.5396436, + 47.650675601 + ], + [ + 7.5409954, + 47.649844801 + ], + [ + 7.5421236, + 47.649209201 + ], + [ + 7.5434572, + 47.648480301 + ], + [ + 7.5447837, + 47.647790301 + ], + [ + 7.546298, + 47.647061501 + ], + [ + 7.5466804, + 47.646877601 + ], + [ + 7.5479951, + 47.646281501 + ], + [ + 7.5515349, + 47.644698101 + ], + [ + 7.5534114, + 47.643863601 + ], + [ + 7.5553525, + 47.642964101 + ], + [ + 7.5565733, + 47.642355401 + ], + [ + 7.5577851, + 47.641718201 + ], + [ + 7.5588321, + 47.641137601 + ], + [ + 7.5594618, + 47.640771001 + ], + [ + 7.5612186, + 47.639688601 + ], + [ + 7.5619609, + 47.639202301 + ], + [ + 7.562164, + 47.639064401 + ], + [ + 7.5630002, + 47.638491101 + ], + [ + 7.564156, + 47.637656301 + ], + [ + 7.5651826, + 47.636847301 + ], + [ + 7.5660592, + 47.636144201 + ], + [ + 7.5669431, + 47.635363001 + ], + [ + 7.5678605, + 47.634513101 + ], + [ + 7.5687325, + 47.633651301 + ], + [ + 7.5693113, + 47.633057401 + ], + [ + 7.5700413, + 47.632254001 + ], + [ + 7.5708091, + 47.631362301 + ], + [ + 7.5711307, + 47.630984101 + ], + [ + 7.5718203, + 47.630129801 + ], + [ + 7.5725008, + 47.629254001 + ], + [ + 7.5731852, + 47.628349301 + ], + [ + 7.5737831, + 47.627557001 + ], + [ + 7.5747032, + 47.626341801 + ], + [ + 7.5748728, + 47.626121601 + ], + [ + 7.5752706, + 47.625602001 + ], + [ + 7.576099, + 47.624572001 + ], + [ + 7.5761704, + 47.624489301 + ], + [ + 7.5767171, + 47.623825001 + ], + [ + 7.5775478, + 47.622883901 + ], + [ + 7.5790134, + 47.621341501 + ], + [ + 7.5795115, + 47.620877701 + ], + [ + 7.5801421, + 47.620289701 + ], + [ + 7.5803451, + 47.620110301 + ], + [ + 7.5807888, + 47.619721301 + ], + [ + 7.5811812, + 47.619377201 + ], + [ + 7.5829627, + 47.617946101 + ], + [ + 7.5837293, + 47.617377701 + ], + [ + 7.5846205, + 47.616741901 + ], + [ + 7.5854085, + 47.616208801 + ], + [ + 7.5859322, + 47.615866501 + ], + [ + 7.5861948, + 47.615695601 + ], + [ + 7.5871593, + 47.615076301 + ], + [ + 7.5891155, + 47.613886301 + ], + [ + 7.5901264, + 47.613275801 + ], + [ + 7.5908448, + 47.612840301 + ], + [ + 7.5922481, + 47.611960001 + ], + [ + 7.5932023, + 47.611336801 + ], + [ + 7.5941703, + 47.610654801 + ], + [ + 7.5950024, + 47.610027301 + ], + [ + 7.595793977, + 47.609384044 + ] + ] + } + }, + { + "identifier": "2026-016314--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_004.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.676232511651776,7.52350452294546,47.60101098435511,7.602027788808752", + "point": "47.676232511651776,7.52350452294546", + "startLcPosition": "5", + "impact": { + "lower": "Weil am Rhein", + "upper": "Efringen-Kirchen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Efringen-Kirchen - Weil am Rhein", + "coordinate": { + "lat": 47.676232511651776, + "long": 7.52350452294546 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:15 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "17.04.26 von 09:00 bis 16:00 Uhr", + "20.04.26 von 09:00 bis 16:00 Uhr", + "21.04.26 von 09:00 bis 16:00 Uhr", + "22.04.26 von 09:00 bis 16:00 Uhr", + "23.04.26 von 09:00 bis 16:00 Uhr", + "24.04.26 von 09:00 bis 16:00 Uhr", + "27.04.26 von 09:00 bis 16:00 Uhr", + "28.04.26 von 09:00 bis 16:00 Uhr", + "29.04.26 von 09:00 bis 16:00 Uhr", + "30.04.26 von 09:00 bis 16:00 Uhr", + "01.05.26 von 09:00 bis 16:00 Uhr", + "04.05.26 von 09:00 bis 16:00 Uhr", + "05.05.26 von 09:00 bis 16:00 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 0.2 km hinter AS Efringen-Kirchen und 0.4 km vor Weil am Rhein", + "", + "L\u00e4nge: 10.57 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Efringen-Kirchen (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.523504523, + 47.676232512 + ], + [ + 7.5235364, + 47.675517201 + ], + [ + 7.5235574, + 47.674827401 + ], + [ + 7.5235801, + 47.674078801 + ], + [ + 7.5236378, + 47.672166201 + ], + [ + 7.5236792, + 47.671482701 + ], + [ + 7.523788, + 47.670228801 + ], + [ + 7.5239486, + 47.669207901 + ], + [ + 7.5241465, + 47.668241601 + ], + [ + 7.5243027, + 47.667634801 + ], + [ + 7.5243739, + 47.667382401 + ], + [ + 7.5244956, + 47.666987101 + ], + [ + 7.5246973, + 47.666392901 + ], + [ + 7.5249094, + 47.665842201 + ], + [ + 7.5252978, + 47.664965101 + ], + [ + 7.525726, + 47.664143101 + ], + [ + 7.5260359, + 47.663604401 + ], + [ + 7.5263794, + 47.663049101 + ], + [ + 7.5268812, + 47.662267701 + ], + [ + 7.5277224, + 47.661109901 + ], + [ + 7.5280375, + 47.660719201 + ], + [ + 7.5282407, + 47.660470701 + ], + [ + 7.5285299, + 47.660115101 + ], + [ + 7.5293787, + 47.659149201 + ], + [ + 7.529527, + 47.658981401 + ], + [ + 7.5296523, + 47.658846601 + ], + [ + 7.5300145, + 47.658457101 + ], + [ + 7.5310115, + 47.657439301 + ], + [ + 7.5318106, + 47.656677001 + ], + [ + 7.5324459, + 47.656078701 + ], + [ + 7.5330534, + 47.655534901 + ], + [ + 7.534305, + 47.654479801 + ], + [ + 7.5352264, + 47.653730401 + ], + [ + 7.5365224, + 47.652771401 + ], + [ + 7.5374416, + 47.652112601 + ], + [ + 7.538264, + 47.651552501 + ], + [ + 7.539433, + 47.650805301 + ], + [ + 7.5396436, + 47.650675601 + ], + [ + 7.5409954, + 47.649844801 + ], + [ + 7.5421236, + 47.649209201 + ], + [ + 7.5434572, + 47.648480301 + ], + [ + 7.5447837, + 47.647790301 + ], + [ + 7.546298, + 47.647061501 + ], + [ + 7.5466804, + 47.646877601 + ], + [ + 7.5479951, + 47.646281501 + ], + [ + 7.5515349, + 47.644698101 + ], + [ + 7.5534114, + 47.643863601 + ], + [ + 7.5553525, + 47.642964101 + ], + [ + 7.5565733, + 47.642355401 + ], + [ + 7.5577851, + 47.641718201 + ], + [ + 7.5588321, + 47.641137601 + ], + [ + 7.5594618, + 47.640771001 + ], + [ + 7.5612186, + 47.639688601 + ], + [ + 7.5619609, + 47.639202301 + ], + [ + 7.562164, + 47.639064401 + ], + [ + 7.5630002, + 47.638491101 + ], + [ + 7.564156, + 47.637656301 + ], + [ + 7.5651826, + 47.636847301 + ], + [ + 7.5660592, + 47.636144201 + ], + [ + 7.5669431, + 47.635363001 + ], + [ + 7.5678605, + 47.634513101 + ], + [ + 7.5687325, + 47.633651301 + ], + [ + 7.5693113, + 47.633057401 + ], + [ + 7.5700413, + 47.632254001 + ], + [ + 7.5708091, + 47.631362301 + ], + [ + 7.5711307, + 47.630984101 + ], + [ + 7.5718203, + 47.630129801 + ], + [ + 7.5725008, + 47.629254001 + ], + [ + 7.5731852, + 47.628349301 + ], + [ + 7.5737831, + 47.627557001 + ], + [ + 7.5747032, + 47.626341801 + ], + [ + 7.5748728, + 47.626121601 + ], + [ + 7.5752706, + 47.625602001 + ], + [ + 7.576099, + 47.624572001 + ], + [ + 7.5761704, + 47.624489301 + ], + [ + 7.5767171, + 47.623825001 + ], + [ + 7.5775478, + 47.622883901 + ], + [ + 7.5790134, + 47.621341501 + ], + [ + 7.5795115, + 47.620877701 + ], + [ + 7.5801421, + 47.620289701 + ], + [ + 7.5803451, + 47.620110301 + ], + [ + 7.5807888, + 47.619721301 + ], + [ + 7.5811812, + 47.619377201 + ], + [ + 7.5829627, + 47.617946101 + ], + [ + 7.5837293, + 47.617377701 + ], + [ + 7.5846205, + 47.616741901 + ], + [ + 7.5854085, + 47.616208801 + ], + [ + 7.5859322, + 47.615866501 + ], + [ + 7.5861948, + 47.615695601 + ], + [ + 7.5871593, + 47.615076301 + ], + [ + 7.5891155, + 47.613886301 + ], + [ + 7.5901264, + 47.613275801 + ], + [ + 7.5908448, + 47.612840301 + ], + [ + 7.5922481, + 47.611960001 + ], + [ + 7.5932023, + 47.611336801 + ], + [ + 7.5941703, + 47.610654801 + ], + [ + 7.5950024, + 47.610027301 + ], + [ + 7.5959241, + 47.609278301 + ], + [ + 7.5966819, + 47.608615501 + ], + [ + 7.5973035, + 47.608020501 + ], + [ + 7.5979091, + 47.607403101 + ], + [ + 7.5981766, + 47.607108801 + ], + [ + 7.5985604, + 47.606678701 + ], + [ + 7.5990762, + 47.606069801 + ], + [ + 7.5994671, + 47.605552301 + ], + [ + 7.5998533, + 47.605022201 + ], + [ + 7.6003477, + 47.604293501 + ], + [ + 7.600485, + 47.604074801 + ], + [ + 7.6010356, + 47.603149901 + ], + [ + 7.6012646, + 47.602718201 + ], + [ + 7.6014979, + 47.602246901 + ], + [ + 7.6017078, + 47.601776001 + ], + [ + 7.6017842, + 47.601624301 + ], + [ + 7.601865, + 47.601430201 + ], + [ + 7.602027789, + 47.601010984 + ] + ] + } + }, + { + "identifier": "2026-012083--vi-bs.2026-04-23_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.88680387813746,7.578839497515911,47.88170991231761,7.574583445739012", + "point": "47.88680387813746,7.578839497515911", + "startLcPosition": "17", + "impact": { + "lower": "K\u00f6pfle", + "upper": "Hartheim/Heitersheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Hartheim/Heitersheim - K\u00f6pfle", + "coordinate": { + "lat": 47.88680387813746, + "long": 7.578839497515911 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 18:00 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 2.5 km hinter AS Hartheim/Heitersheim und 0.8 km vor K\u00f6pfle", + "", + "L\u00e4nge: 0.65 km | Max. 120 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 von HartheimHeitersheim (AS) nach K\u00f6pfle (Parkplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.578839498, + 47.886803878 + ], + [ + 7.5784663, + 47.886325801 + ], + [ + 7.5776487, + 47.885324401 + ], + [ + 7.5764696, + 47.883931201 + ], + [ + 7.574583446, + 47.881709912 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-13_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.02332599628655,7.783532898307941,48.06149798967073,7.812733121486185", + "point": "48.02332599628655,7.783532898307941", + "startLcPosition": "26", + "impact": { + "lower": "Teningen", + "upper": "Schlatthof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Schlatthof - Teningen", + "coordinate": { + "lat": 48.02332599628655, + "long": 7.783532898307941 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 00:00 bis zum 14.04.26 24:00 Uhr.", + "15.04.26 00:00 bis zum 16.04.26 24:00 Uhr.", + "17.04.26 von 00:00 bis 24:00 Uhr", + "", + "A5: Basel -> Karlsruhe, zwischen 4.7 km hinter Schlatthof und 6.3 km vor AS Teningen", + "", + "L\u00e4nge: 4.99 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.783532898, + 48.023325996 + ], + [ + 7.7839082, + 48.023522901 + ], + [ + 7.7842698, + 48.023708401 + ], + [ + 7.7855026, + 48.024339101 + ], + [ + 7.7876054, + 48.025435001 + ], + [ + 7.7887656, + 48.026066801 + ], + [ + 7.7896915, + 48.026589701 + ], + [ + 7.790349, + 48.026968501 + ], + [ + 7.7912223, + 48.027478501 + ], + [ + 7.7919741, + 48.027935001 + ], + [ + 7.7932527, + 48.028727401 + ], + [ + 7.7945041, + 48.029550701 + ], + [ + 7.7958531, + 48.030494301 + ], + [ + 7.7970936, + 48.031408601 + ], + [ + 7.7982355, + 48.032298001 + ], + [ + 7.7995135, + 48.033331401 + ], + [ + 7.8001052, + 48.033834401 + ], + [ + 7.8006765, + 48.034343801 + ], + [ + 7.8009989, + 48.034636601 + ], + [ + 7.8013337, + 48.034929801 + ], + [ + 7.8016989, + 48.035279001 + ], + [ + 7.8019219, + 48.035486801 + ], + [ + 7.803094, + 48.036640601 + ], + [ + 7.8039656, + 48.037552001 + ], + [ + 7.8048935, + 48.038619101 + ], + [ + 7.8057317, + 48.039617501 + ], + [ + 7.8062405, + 48.040265901 + ], + [ + 7.8067254, + 48.040917201 + ], + [ + 7.8077055, + 48.042325301 + ], + [ + 7.8087559, + 48.044013201 + ], + [ + 7.8093421, + 48.045088501 + ], + [ + 7.8097623, + 48.045899801 + ], + [ + 7.8099656, + 48.046329301 + ], + [ + 7.8104015, + 48.047267801 + ], + [ + 7.8108838, + 48.048442001 + ], + [ + 7.8112727, + 48.049467601 + ], + [ + 7.8116074, + 48.050469801 + ], + [ + 7.811852, + 48.051307501 + ], + [ + 7.8120706, + 48.052144501 + ], + [ + 7.8122541, + 48.052972101 + ], + [ + 7.8124753, + 48.054060301 + ], + [ + 7.8126286, + 48.055076101 + ], + [ + 7.8127118, + 48.055838601 + ], + [ + 7.8127843, + 48.056618601 + ], + [ + 7.8128461, + 48.057601301 + ], + [ + 7.8128679, + 48.058157201 + ], + [ + 7.8128679, + 48.058934101 + ], + [ + 7.8128458, + 48.059691001 + ], + [ + 7.8128113, + 48.060625501 + ], + [ + 7.8127513, + 48.061309001 + ], + [ + 7.8127384, + 48.061456001 + ], + [ + 7.812733121, + 48.06149799 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-13_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.02332599628655,7.783532898307941,48.06149798967073,7.812733121486185", + "point": "48.02332599628655,7.783532898307941", + "startLcPosition": "26", + "impact": { + "lower": "Teningen", + "upper": "Schlatthof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Schlatthof - Teningen", + "coordinate": { + "lat": 48.02332599628655, + "long": 7.783532898307941 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:30 bis 15:00 Uhr", + "14.04.26 von 10:30 bis 15:00 Uhr", + "15.04.26 von 10:30 bis 15:00 Uhr", + "16.04.26 von 10:30 bis 15:00 Uhr", + "", + "A5: Basel -> Karlsruhe, zwischen 4.7 km hinter Schlatthof und 6.3 km vor AS Teningen", + "", + "L\u00e4nge: 4.99 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.783532898, + 48.023325996 + ], + [ + 7.7839082, + 48.023522901 + ], + [ + 7.7842698, + 48.023708401 + ], + [ + 7.7855026, + 48.024339101 + ], + [ + 7.7876054, + 48.025435001 + ], + [ + 7.7887656, + 48.026066801 + ], + [ + 7.7896915, + 48.026589701 + ], + [ + 7.790349, + 48.026968501 + ], + [ + 7.7912223, + 48.027478501 + ], + [ + 7.7919741, + 48.027935001 + ], + [ + 7.7932527, + 48.028727401 + ], + [ + 7.7945041, + 48.029550701 + ], + [ + 7.7958531, + 48.030494301 + ], + [ + 7.7970936, + 48.031408601 + ], + [ + 7.7982355, + 48.032298001 + ], + [ + 7.7995135, + 48.033331401 + ], + [ + 7.8001052, + 48.033834401 + ], + [ + 7.8006765, + 48.034343801 + ], + [ + 7.8009989, + 48.034636601 + ], + [ + 7.8013337, + 48.034929801 + ], + [ + 7.8016989, + 48.035279001 + ], + [ + 7.8019219, + 48.035486801 + ], + [ + 7.803094, + 48.036640601 + ], + [ + 7.8039656, + 48.037552001 + ], + [ + 7.8048935, + 48.038619101 + ], + [ + 7.8057317, + 48.039617501 + ], + [ + 7.8062405, + 48.040265901 + ], + [ + 7.8067254, + 48.040917201 + ], + [ + 7.8077055, + 48.042325301 + ], + [ + 7.8087559, + 48.044013201 + ], + [ + 7.8093421, + 48.045088501 + ], + [ + 7.8097623, + 48.045899801 + ], + [ + 7.8099656, + 48.046329301 + ], + [ + 7.8104015, + 48.047267801 + ], + [ + 7.8108838, + 48.048442001 + ], + [ + 7.8112727, + 48.049467601 + ], + [ + 7.8116074, + 48.050469801 + ], + [ + 7.811852, + 48.051307501 + ], + [ + 7.8120706, + 48.052144501 + ], + [ + 7.8122541, + 48.052972101 + ], + [ + 7.8124753, + 48.054060301 + ], + [ + 7.8126286, + 48.055076101 + ], + [ + 7.8127118, + 48.055838601 + ], + [ + 7.8127843, + 48.056618601 + ], + [ + 7.8128461, + 48.057601301 + ], + [ + 7.8128679, + 48.058157201 + ], + [ + 7.8128679, + 48.058934101 + ], + [ + 7.8128458, + 48.059691001 + ], + [ + 7.8128113, + 48.060625501 + ], + [ + 7.8127513, + 48.061309001 + ], + [ + 7.8127384, + 48.061456001 + ], + [ + 7.812733121, + 48.06149799 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-13_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.02332599628655,7.783532898307941,48.06149798967073,7.812733121486185", + "point": "48.02332599628655,7.783532898307941", + "startLcPosition": "26", + "impact": { + "lower": "Teningen", + "upper": "Schlatthof", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Schlatthof - Teningen", + "coordinate": { + "lat": 48.02332599628655, + "long": 7.783532898307941 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:30 bis 15:00 Uhr", + "14.04.26 von 10:30 bis 15:00 Uhr", + "15.04.26 von 10:30 bis 15:00 Uhr", + "16.04.26 von 10:30 bis 15:00 Uhr", + "", + "A5: Basel -> Karlsruhe, zwischen 4.7 km hinter Schlatthof und 6.3 km vor AS Teningen", + "", + "L\u00e4nge: 4.99 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.783532898, + 48.023325996 + ], + [ + 7.7839082, + 48.023522901 + ], + [ + 7.7842698, + 48.023708401 + ], + [ + 7.7855026, + 48.024339101 + ], + [ + 7.7876054, + 48.025435001 + ], + [ + 7.7887656, + 48.026066801 + ], + [ + 7.7896915, + 48.026589701 + ], + [ + 7.790349, + 48.026968501 + ], + [ + 7.7912223, + 48.027478501 + ], + [ + 7.7919741, + 48.027935001 + ], + [ + 7.7932527, + 48.028727401 + ], + [ + 7.7945041, + 48.029550701 + ], + [ + 7.7958531, + 48.030494301 + ], + [ + 7.7970936, + 48.031408601 + ], + [ + 7.7982355, + 48.032298001 + ], + [ + 7.7995135, + 48.033331401 + ], + [ + 7.8001052, + 48.033834401 + ], + [ + 7.8006765, + 48.034343801 + ], + [ + 7.8009989, + 48.034636601 + ], + [ + 7.8013337, + 48.034929801 + ], + [ + 7.8016989, + 48.035279001 + ], + [ + 7.8019219, + 48.035486801 + ], + [ + 7.803094, + 48.036640601 + ], + [ + 7.8039656, + 48.037552001 + ], + [ + 7.8048935, + 48.038619101 + ], + [ + 7.8057317, + 48.039617501 + ], + [ + 7.8062405, + 48.040265901 + ], + [ + 7.8067254, + 48.040917201 + ], + [ + 7.8077055, + 48.042325301 + ], + [ + 7.8087559, + 48.044013201 + ], + [ + 7.8093421, + 48.045088501 + ], + [ + 7.8097623, + 48.045899801 + ], + [ + 7.8099656, + 48.046329301 + ], + [ + 7.8104015, + 48.047267801 + ], + [ + 7.8108838, + 48.048442001 + ], + [ + 7.8112727, + 48.049467601 + ], + [ + 7.8116074, + 48.050469801 + ], + [ + 7.811852, + 48.051307501 + ], + [ + 7.8120706, + 48.052144501 + ], + [ + 7.8122541, + 48.052972101 + ], + [ + 7.8124753, + 48.054060301 + ], + [ + 7.8126286, + 48.055076101 + ], + [ + 7.8127118, + 48.055838601 + ], + [ + 7.8127843, + 48.056618601 + ], + [ + 7.8128461, + 48.057601301 + ], + [ + 7.8128679, + 48.058157201 + ], + [ + 7.8128679, + 48.058934101 + ], + [ + 7.8128458, + 48.059691001 + ], + [ + 7.8128113, + 48.060625501 + ], + [ + 7.8127513, + 48.061309001 + ], + [ + 7.8127384, + 48.061456001 + ], + [ + 7.812733121, + 48.06149799 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-08_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.00616393141372,7.762207967801503,48.02332599628655,7.783532898307941", + "point": "48.00616393141372,7.762207967801503", + "startLcPosition": "26", + "impact": { + "lower": "Freiburg-Mitte", + "upper": "Schlatthof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Schlatthof - Freiburg-Mitte", + "coordinate": { + "lat": 48.00616393141372, + "long": 7.762207967801503 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 00:00 bis zum 10.04.26 24:00 Uhr.", + "", + "A5: Basel -> Karlsruhe, zwischen 2.2 km hinter Schlatthof und 0.1 km vor AS Freiburg-Mitte", + "", + "L\u00e4nge: 2.51 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.762207968, + 48.006163931 + ], + [ + 7.7629448, + 48.007054601 + ], + [ + 7.7641293, + 48.008471001 + ], + [ + 7.7647991, + 48.009220901 + ], + [ + 7.7655318, + 48.010018401 + ], + [ + 7.7656716, + 48.010171401 + ], + [ + 7.7666381, + 48.011186901 + ], + [ + 7.7677884, + 48.012315101 + ], + [ + 7.7689641, + 48.013404801 + ], + [ + 7.7700611, + 48.014377901 + ], + [ + 7.7706906, + 48.014916801 + ], + [ + 7.771332, + 48.015446101 + ], + [ + 7.7725299, + 48.016405301 + ], + [ + 7.7732183, + 48.016934101 + ], + [ + 7.7739075, + 48.017458001 + ], + [ + 7.7745884, + 48.017938201 + ], + [ + 7.7752098, + 48.018376501 + ], + [ + 7.7764124, + 48.019198501 + ], + [ + 7.77779, + 48.020083101 + ], + [ + 7.7792058, + 48.020946601 + ], + [ + 7.7801393, + 48.021487301 + ], + [ + 7.7810003, + 48.021968801 + ], + [ + 7.7818535, + 48.022440501 + ], + [ + 7.7827223, + 48.022900701 + ], + [ + 7.783532898, + 48.023325996 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-08_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.00616393141372,7.762207967801503,48.02332599628655,7.783532898307941", + "point": "48.00616393141372,7.762207967801503", + "startLcPosition": "26", + "impact": { + "lower": "Freiburg-Mitte", + "upper": "Schlatthof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Schlatthof - Freiburg-Mitte", + "coordinate": { + "lat": 48.00616393141372, + "long": 7.762207967801503 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 10:00 bis 16:00 Uhr", + "", + "A5: Basel -> Karlsruhe, zwischen 2.2 km hinter Schlatthof und 0.1 km vor AS Freiburg-Mitte", + "", + "L\u00e4nge: 2.51 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.762207968, + 48.006163931 + ], + [ + 7.7629448, + 48.007054601 + ], + [ + 7.7641293, + 48.008471001 + ], + [ + 7.7647991, + 48.009220901 + ], + [ + 7.7655318, + 48.010018401 + ], + [ + 7.7656716, + 48.010171401 + ], + [ + 7.7666381, + 48.011186901 + ], + [ + 7.7677884, + 48.012315101 + ], + [ + 7.7689641, + 48.013404801 + ], + [ + 7.7700611, + 48.014377901 + ], + [ + 7.7706906, + 48.014916801 + ], + [ + 7.771332, + 48.015446101 + ], + [ + 7.7725299, + 48.016405301 + ], + [ + 7.7732183, + 48.016934101 + ], + [ + 7.7739075, + 48.017458001 + ], + [ + 7.7745884, + 48.017938201 + ], + [ + 7.7752098, + 48.018376501 + ], + [ + 7.7764124, + 48.019198501 + ], + [ + 7.77779, + 48.020083101 + ], + [ + 7.7792058, + 48.020946601 + ], + [ + 7.7801393, + 48.021487301 + ], + [ + 7.7810003, + 48.021968801 + ], + [ + 7.7818535, + 48.022440501 + ], + [ + 7.7827223, + 48.022900701 + ], + [ + 7.783532898, + 48.023325996 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-08_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.00616393141372,7.762207967801503,48.02332599628655,7.783532898307941", + "point": "48.00616393141372,7.762207967801503", + "startLcPosition": "26", + "impact": { + "lower": "Freiburg-Mitte", + "upper": "Schlatthof", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Schlatthof - Freiburg-Mitte", + "coordinate": { + "lat": 48.00616393141372, + "long": 7.762207967801503 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 10:00 bis 16:00 Uhr", + "", + "A5: Basel -> Karlsruhe, zwischen 2.2 km hinter Schlatthof und 0.1 km vor AS Freiburg-Mitte", + "", + "L\u00e4nge: 2.51 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.762207968, + 48.006163931 + ], + [ + 7.7629448, + 48.007054601 + ], + [ + 7.7641293, + 48.008471001 + ], + [ + 7.7647991, + 48.009220901 + ], + [ + 7.7655318, + 48.010018401 + ], + [ + 7.7656716, + 48.010171401 + ], + [ + 7.7666381, + 48.011186901 + ], + [ + 7.7677884, + 48.012315101 + ], + [ + 7.7689641, + 48.013404801 + ], + [ + 7.7700611, + 48.014377901 + ], + [ + 7.7706906, + 48.014916801 + ], + [ + 7.771332, + 48.015446101 + ], + [ + 7.7725299, + 48.016405301 + ], + [ + 7.7732183, + 48.016934101 + ], + [ + 7.7739075, + 48.017458001 + ], + [ + 7.7745884, + 48.017938201 + ], + [ + 7.7752098, + 48.018376501 + ], + [ + 7.7764124, + 48.019198501 + ], + [ + 7.77779, + 48.020083101 + ], + [ + 7.7792058, + 48.020946601 + ], + [ + 7.7801393, + 48.021487301 + ], + [ + 7.7810003, + 48.021968801 + ], + [ + 7.7818535, + 48.022440501 + ], + [ + 7.7827223, + 48.022900701 + ], + [ + 7.783532898, + 48.023325996 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-08_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.02341104332925,7.783417592910895,48.0062843599742,7.7619399093339565", + "point": "48.02341104332925,7.783417592910895", + "startLcPosition": "27", + "impact": { + "lower": "Schlatthof", + "upper": "Freiburg-Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Freiburg-Mitte - Schlatthof", + "coordinate": { + "lat": 48.02341104332925, + "long": 7.783417592910895 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 00:00 bis zum 10.04.26 24:00 Uhr.", + "", + "A5: Karlsruhe -> Basel, zwischen 0.1 km hinter AS Freiburg-Mitte und 2.2 km vor Schlatthof", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.783417593, + 48.023411043 + ], + [ + 7.7826333, + 48.023003901 + ], + [ + 7.7814874, + 48.022394401 + ], + [ + 7.7808709, + 48.022052401 + ], + [ + 7.7800656, + 48.021598401 + ], + [ + 7.7792941, + 48.021154401 + ], + [ + 7.7781219, + 48.020440401 + ], + [ + 7.7768308, + 48.019630901 + ], + [ + 7.776287, + 48.019273001 + ], + [ + 7.7750727, + 48.018456801 + ], + [ + 7.7737283, + 48.017521801 + ], + [ + 7.7723048, + 48.016473501 + ], + [ + 7.7711339, + 48.015574401 + ], + [ + 7.7704569, + 48.015036301 + ], + [ + 7.7697955, + 48.014484901 + ], + [ + 7.7686859, + 48.013512801 + ], + [ + 7.7676013, + 48.012509701 + ], + [ + 7.766375, + 48.011304301 + ], + [ + 7.7654106, + 48.010296001 + ], + [ + 7.7652421, + 48.010120801 + ], + [ + 7.7645267, + 48.009333701 + ], + [ + 7.7638654, + 48.008588001 + ], + [ + 7.7626376, + 48.007127901 + ], + [ + 7.761939909, + 48.00628436 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-08_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.02341104332925,7.783417592910895,48.0062843599742,7.7619399093339565", + "point": "48.02341104332925,7.783417592910895", + "startLcPosition": "27", + "impact": { + "lower": "Schlatthof", + "upper": "Freiburg-Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Freiburg-Mitte - Schlatthof", + "coordinate": { + "lat": 48.02341104332925, + "long": 7.783417592910895 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:30 bis 16:30 Uhr", + "10.04.26 von 09:30 bis 16:30 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 0.1 km hinter AS Freiburg-Mitte und 2.2 km vor Schlatthof", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.783417593, + 48.023411043 + ], + [ + 7.7826333, + 48.023003901 + ], + [ + 7.7814874, + 48.022394401 + ], + [ + 7.7808709, + 48.022052401 + ], + [ + 7.7800656, + 48.021598401 + ], + [ + 7.7792941, + 48.021154401 + ], + [ + 7.7781219, + 48.020440401 + ], + [ + 7.7768308, + 48.019630901 + ], + [ + 7.776287, + 48.019273001 + ], + [ + 7.7750727, + 48.018456801 + ], + [ + 7.7737283, + 48.017521801 + ], + [ + 7.7723048, + 48.016473501 + ], + [ + 7.7711339, + 48.015574401 + ], + [ + 7.7704569, + 48.015036301 + ], + [ + 7.7697955, + 48.014484901 + ], + [ + 7.7686859, + 48.013512801 + ], + [ + 7.7676013, + 48.012509701 + ], + [ + 7.766375, + 48.011304301 + ], + [ + 7.7654106, + 48.010296001 + ], + [ + 7.7652421, + 48.010120801 + ], + [ + 7.7645267, + 48.009333701 + ], + [ + 7.7638654, + 48.008588001 + ], + [ + 7.7626376, + 48.007127901 + ], + [ + 7.761939909, + 48.00628436 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-08_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.02341104332925,7.783417592910895,48.0062843599742,7.7619399093339565", + "point": "48.02341104332925,7.783417592910895", + "startLcPosition": "27", + "impact": { + "lower": "Schlatthof", + "upper": "Freiburg-Mitte", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Freiburg-Mitte - Schlatthof", + "coordinate": { + "lat": 48.02341104332925, + "long": 7.783417592910895 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:30 bis 16:30 Uhr", + "10.04.26 von 09:30 bis 16:30 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 0.1 km hinter AS Freiburg-Mitte und 2.2 km vor Schlatthof", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.783417593, + 48.023411043 + ], + [ + 7.7826333, + 48.023003901 + ], + [ + 7.7814874, + 48.022394401 + ], + [ + 7.7808709, + 48.022052401 + ], + [ + 7.7800656, + 48.021598401 + ], + [ + 7.7792941, + 48.021154401 + ], + [ + 7.7781219, + 48.020440401 + ], + [ + 7.7768308, + 48.019630901 + ], + [ + 7.776287, + 48.019273001 + ], + [ + 7.7750727, + 48.018456801 + ], + [ + 7.7737283, + 48.017521801 + ], + [ + 7.7723048, + 48.016473501 + ], + [ + 7.7711339, + 48.015574401 + ], + [ + 7.7704569, + 48.015036301 + ], + [ + 7.7697955, + 48.014484901 + ], + [ + 7.7686859, + 48.013512801 + ], + [ + 7.7676013, + 48.012509701 + ], + [ + 7.766375, + 48.011304301 + ], + [ + 7.7654106, + 48.010296001 + ], + [ + 7.7652421, + 48.010120801 + ], + [ + 7.7645267, + 48.009333701 + ], + [ + 7.7638654, + 48.008588001 + ], + [ + 7.7626376, + 48.007127901 + ], + [ + 7.761939909, + 48.00628436 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-13_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.061488580307035,7.812558609977033,48.02341104332925,7.783417592910895", + "point": "48.061488580307035,7.812558609977033", + "startLcPosition": "30", + "impact": { + "lower": "Schlatthof", + "upper": "Teningen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Teningen - Schlatthof", + "coordinate": { + "lat": 48.061488580307035, + "long": 7.812558609977033 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 00:00 bis zum 14.04.26 24:00 Uhr.", + "15.04.26 00:00 bis zum 16.04.26 24:00 Uhr.", + "17.04.26 von 00:00 bis 24:00 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 6.3 km hinter AS Teningen und 4.7 km vor Schlatthof", + "", + "L\u00e4nge: 4.99 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.81255861, + 48.06148858 + ], + [ + 7.8125619, + 48.061459601 + ], + [ + 7.8125791, + 48.061308101 + ], + [ + 7.8126284, + 48.060745801 + ], + [ + 7.8126633, + 48.060205701 + ], + [ + 7.8126772, + 48.059659901 + ], + [ + 7.8126899, + 48.058915201 + ], + [ + 7.8126845, + 48.058141601 + ], + [ + 7.812673, + 48.057579601 + ], + [ + 7.8126121, + 48.056621801 + ], + [ + 7.8125394, + 48.055844601 + ], + [ + 7.8124546, + 48.055091501 + ], + [ + 7.8122962, + 48.054060501 + ], + [ + 7.8121989, + 48.053558201 + ], + [ + 7.8120855, + 48.053008701 + ], + [ + 7.8118586, + 48.052042701 + ], + [ + 7.8116846, + 48.051335301 + ], + [ + 7.8114399, + 48.050528101 + ], + [ + 7.8110901, + 48.049476901 + ], + [ + 7.8107241, + 48.048478101 + ], + [ + 7.8104706, + 48.047857701 + ], + [ + 7.8100201, + 48.046826601 + ], + [ + 7.809729, + 48.046221101 + ], + [ + 7.8095929, + 48.045928901 + ], + [ + 7.809168, + 48.045110501 + ], + [ + 7.8085745, + 48.044042101 + ], + [ + 7.8075341, + 48.042366401 + ], + [ + 7.8065642, + 48.040972201 + ], + [ + 7.8060797, + 48.040318201 + ], + [ + 7.8055642, + 48.039666401 + ], + [ + 7.8047316, + 48.038658601 + ], + [ + 7.8038171, + 48.037616801 + ], + [ + 7.8029442, + 48.036702201 + ], + [ + 7.8017979, + 48.035571601 + ], + [ + 7.8015761, + 48.035358701 + ], + [ + 7.8011802, + 48.034979001 + ], + [ + 7.8008623, + 48.034700301 + ], + [ + 7.8005343, + 48.034410101 + ], + [ + 7.7999651, + 48.033907101 + ], + [ + 7.7993808, + 48.033412001 + ], + [ + 7.7981314, + 48.032393201 + ], + [ + 7.7968694, + 48.031420501 + ], + [ + 7.7957044, + 48.030567301 + ], + [ + 7.7943459, + 48.029631001 + ], + [ + 7.7931201, + 48.028810701 + ], + [ + 7.7918903, + 48.028040401 + ], + [ + 7.7911445, + 48.027587001 + ], + [ + 7.7902759, + 48.027076401 + ], + [ + 7.7898793, + 48.026848001 + ], + [ + 7.7886374, + 48.026145701 + ], + [ + 7.7873086, + 48.025426901 + ], + [ + 7.7864193, + 48.024961001 + ], + [ + 7.7854184, + 48.024441401 + ], + [ + 7.784136, + 48.023785601 + ], + [ + 7.7837658, + 48.023591801 + ], + [ + 7.783417593, + 48.023411043 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-13_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.061488580307035,7.812558609977033,48.02341104332925,7.783417592910895", + "point": "48.061488580307035,7.812558609977033", + "startLcPosition": "30", + "impact": { + "lower": "Schlatthof", + "upper": "Teningen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Teningen - Schlatthof", + "coordinate": { + "lat": 48.061488580307035, + "long": 7.812558609977033 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:30 bis 16:00 Uhr", + "14.04.26 von 10:30 bis 16:30 Uhr", + "15.04.26 von 10:30 bis 16:30 Uhr", + "16.04.26 von 10:30 bis 16:30 Uhr", + "17.04.26 von 10:00 bis 13:30 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 6.3 km hinter AS Teningen und 4.7 km vor Schlatthof", + "", + "L\u00e4nge: 4.99 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.81255861, + 48.06148858 + ], + [ + 7.8125619, + 48.061459601 + ], + [ + 7.8125791, + 48.061308101 + ], + [ + 7.8126284, + 48.060745801 + ], + [ + 7.8126633, + 48.060205701 + ], + [ + 7.8126772, + 48.059659901 + ], + [ + 7.8126899, + 48.058915201 + ], + [ + 7.8126845, + 48.058141601 + ], + [ + 7.812673, + 48.057579601 + ], + [ + 7.8126121, + 48.056621801 + ], + [ + 7.8125394, + 48.055844601 + ], + [ + 7.8124546, + 48.055091501 + ], + [ + 7.8122962, + 48.054060501 + ], + [ + 7.8121989, + 48.053558201 + ], + [ + 7.8120855, + 48.053008701 + ], + [ + 7.8118586, + 48.052042701 + ], + [ + 7.8116846, + 48.051335301 + ], + [ + 7.8114399, + 48.050528101 + ], + [ + 7.8110901, + 48.049476901 + ], + [ + 7.8107241, + 48.048478101 + ], + [ + 7.8104706, + 48.047857701 + ], + [ + 7.8100201, + 48.046826601 + ], + [ + 7.809729, + 48.046221101 + ], + [ + 7.8095929, + 48.045928901 + ], + [ + 7.809168, + 48.045110501 + ], + [ + 7.8085745, + 48.044042101 + ], + [ + 7.8075341, + 48.042366401 + ], + [ + 7.8065642, + 48.040972201 + ], + [ + 7.8060797, + 48.040318201 + ], + [ + 7.8055642, + 48.039666401 + ], + [ + 7.8047316, + 48.038658601 + ], + [ + 7.8038171, + 48.037616801 + ], + [ + 7.8029442, + 48.036702201 + ], + [ + 7.8017979, + 48.035571601 + ], + [ + 7.8015761, + 48.035358701 + ], + [ + 7.8011802, + 48.034979001 + ], + [ + 7.8008623, + 48.034700301 + ], + [ + 7.8005343, + 48.034410101 + ], + [ + 7.7999651, + 48.033907101 + ], + [ + 7.7993808, + 48.033412001 + ], + [ + 7.7981314, + 48.032393201 + ], + [ + 7.7968694, + 48.031420501 + ], + [ + 7.7957044, + 48.030567301 + ], + [ + 7.7943459, + 48.029631001 + ], + [ + 7.7931201, + 48.028810701 + ], + [ + 7.7918903, + 48.028040401 + ], + [ + 7.7911445, + 48.027587001 + ], + [ + 7.7902759, + 48.027076401 + ], + [ + 7.7898793, + 48.026848001 + ], + [ + 7.7886374, + 48.026145701 + ], + [ + 7.7873086, + 48.025426901 + ], + [ + 7.7864193, + 48.024961001 + ], + [ + 7.7854184, + 48.024441401 + ], + [ + 7.784136, + 48.023785601 + ], + [ + 7.7837658, + 48.023591801 + ], + [ + 7.783417593, + 48.023411043 + ] + ] + } + }, + { + "identifier": "2026-016284--vi-bs.2026-04-13_00-00-00-000.devi-bs.2026-04-06_10-30-00-000.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.061488580307035,7.812558609977033,48.02341104332925,7.783417592910895", + "point": "48.061488580307035,7.812558609977033", + "startLcPosition": "30", + "impact": { + "lower": "Schlatthof", + "upper": "Teningen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Teningen - Schlatthof", + "coordinate": { + "lat": 48.061488580307035, + "long": 7.812558609977033 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:15 bis 16:00 Uhr", + "14.04.26 von 10:15 bis 16:30 Uhr", + "15.04.26 von 10:15 bis 16:30 Uhr", + "16.04.26 von 10:15 bis 16:30 Uhr", + "17.04.26 von 10:00 bis 13:30 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 6.3 km hinter AS Teningen und 4.7 km vor Schlatthof", + "", + "L\u00e4nge: 4.99 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A5 Bodenuntersuchungen FDE Hochdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.81255861, + 48.06148858 + ], + [ + 7.8125619, + 48.061459601 + ], + [ + 7.8125791, + 48.061308101 + ], + [ + 7.8126284, + 48.060745801 + ], + [ + 7.8126633, + 48.060205701 + ], + [ + 7.8126772, + 48.059659901 + ], + [ + 7.8126899, + 48.058915201 + ], + [ + 7.8126845, + 48.058141601 + ], + [ + 7.812673, + 48.057579601 + ], + [ + 7.8126121, + 48.056621801 + ], + [ + 7.8125394, + 48.055844601 + ], + [ + 7.8124546, + 48.055091501 + ], + [ + 7.8122962, + 48.054060501 + ], + [ + 7.8121989, + 48.053558201 + ], + [ + 7.8120855, + 48.053008701 + ], + [ + 7.8118586, + 48.052042701 + ], + [ + 7.8116846, + 48.051335301 + ], + [ + 7.8114399, + 48.050528101 + ], + [ + 7.8110901, + 48.049476901 + ], + [ + 7.8107241, + 48.048478101 + ], + [ + 7.8104706, + 48.047857701 + ], + [ + 7.8100201, + 48.046826601 + ], + [ + 7.809729, + 48.046221101 + ], + [ + 7.8095929, + 48.045928901 + ], + [ + 7.809168, + 48.045110501 + ], + [ + 7.8085745, + 48.044042101 + ], + [ + 7.8075341, + 48.042366401 + ], + [ + 7.8065642, + 48.040972201 + ], + [ + 7.8060797, + 48.040318201 + ], + [ + 7.8055642, + 48.039666401 + ], + [ + 7.8047316, + 48.038658601 + ], + [ + 7.8038171, + 48.037616801 + ], + [ + 7.8029442, + 48.036702201 + ], + [ + 7.8017979, + 48.035571601 + ], + [ + 7.8015761, + 48.035358701 + ], + [ + 7.8011802, + 48.034979001 + ], + [ + 7.8008623, + 48.034700301 + ], + [ + 7.8005343, + 48.034410101 + ], + [ + 7.7999651, + 48.033907101 + ], + [ + 7.7993808, + 48.033412001 + ], + [ + 7.7981314, + 48.032393201 + ], + [ + 7.7968694, + 48.031420501 + ], + [ + 7.7957044, + 48.030567301 + ], + [ + 7.7943459, + 48.029631001 + ], + [ + 7.7931201, + 48.028810701 + ], + [ + 7.7918903, + 48.028040401 + ], + [ + 7.7911445, + 48.027587001 + ], + [ + 7.7902759, + 48.027076401 + ], + [ + 7.7898793, + 48.026848001 + ], + [ + 7.7886374, + 48.026145701 + ], + [ + 7.7873086, + 48.025426901 + ], + [ + 7.7864193, + 48.024961001 + ], + [ + 7.7854184, + 48.024441401 + ], + [ + 7.784136, + 48.023785601 + ], + [ + 7.7837658, + 48.023591801 + ], + [ + 7.783417593, + 48.023411043 + ] + ] + } + }, + { + "identifier": "2026-017002--vi-bs.2026-04-14_10-00-00-000.devi-bs.2026-04-14_10-30-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.11791222912011,7.786656326035799,48.258625040502366,7.765663876668409", + "point": "48.11791222912011,7.786656326035799", + "startLcPosition": "30", + "impact": { + "lower": "Ettenheim", + "upper": "Teningen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Teningen - Ettenheim", + "coordinate": { + "lat": 48.11791222912011, + "long": 7.786656326035799 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 10:00 bis 16:00 Uhr", + "15.04.26 von 10:00 bis 16:00 Uhr", + "", + "A5: Basel -> Karlsruhe, zwischen 0.3 km hinter AS Teningen und 2.5 km vor AS Ettenheim", + "", + "L\u00e4nge: 16.49 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A5 von Ettenheim (AS) nach Teningen (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.786656326, + 48.117912229 + ], + [ + 7.7861391, + 48.119066501 + ], + [ + 7.785167, + 48.121170801 + ], + [ + 7.7842811, + 48.122869901 + ], + [ + 7.7837814, + 48.123813701 + ], + [ + 7.7822978, + 48.126473201 + ], + [ + 7.7808636, + 48.128913201 + ], + [ + 7.7802539, + 48.129832001 + ], + [ + 7.7788976, + 48.131891401 + ], + [ + 7.77732, + 48.134157701 + ], + [ + 7.7761884, + 48.135694201 + ], + [ + 7.7744596, + 48.137928201 + ], + [ + 7.7733563, + 48.139284701 + ], + [ + 7.7720398, + 48.140884101 + ], + [ + 7.7719107, + 48.141042101 + ], + [ + 7.7716076, + 48.141390101 + ], + [ + 7.7708317, + 48.142263601 + ], + [ + 7.7706063, + 48.142520101 + ], + [ + 7.7703171, + 48.142849201 + ], + [ + 7.7690866, + 48.144249401 + ], + [ + 7.7668026, + 48.146648401 + ], + [ + 7.7647598, + 48.148805301 + ], + [ + 7.7645323, + 48.149056401 + ], + [ + 7.7644387, + 48.149159801 + ], + [ + 7.7631478, + 48.150584601 + ], + [ + 7.7622204, + 48.151690401 + ], + [ + 7.7613742, + 48.152748001 + ], + [ + 7.7603716, + 48.154147801 + ], + [ + 7.7601272, + 48.154433501 + ], + [ + 7.7600667, + 48.154527401 + ], + [ + 7.7592258, + 48.155805701 + ], + [ + 7.7589815, + 48.156213601 + ], + [ + 7.7582202, + 48.157417401 + ], + [ + 7.7570655, + 48.159467801 + ], + [ + 7.7563047, + 48.160910201 + ], + [ + 7.7555527, + 48.162376201 + ], + [ + 7.7545209, + 48.164512501 + ], + [ + 7.7542888, + 48.165022001 + ], + [ + 7.754008, + 48.165558601 + ], + [ + 7.7537488, + 48.166129501 + ], + [ + 7.7535719, + 48.166533001 + ], + [ + 7.7535022, + 48.166686201 + ], + [ + 7.7532316, + 48.167324901 + ], + [ + 7.7524631, + 48.169150301 + ], + [ + 7.7518865, + 48.170596101 + ], + [ + 7.7509968, + 48.172976401 + ], + [ + 7.7502002, + 48.175304801 + ], + [ + 7.7496184, + 48.177069901 + ], + [ + 7.7488337, + 48.179837301 + ], + [ + 7.7484254, + 48.181364101 + ], + [ + 7.7480534, + 48.182870701 + ], + [ + 7.7473917, + 48.185934301 + ], + [ + 7.746968, + 48.188284801 + ], + [ + 7.7467446, + 48.189654601 + ], + [ + 7.746541, + 48.191100601 + ], + [ + 7.7462533, + 48.193543201 + ], + [ + 7.7459814, + 48.196559301 + ], + [ + 7.745906, + 48.197696301 + ], + [ + 7.745837, + 48.198939701 + ], + [ + 7.7457817, + 48.201319301 + ], + [ + 7.745806, + 48.204026101 + ], + [ + 7.7458259, + 48.205241401 + ], + [ + 7.7458778, + 48.206468801 + ], + [ + 7.746021, + 48.208699501 + ], + [ + 7.7461956, + 48.210638301 + ], + [ + 7.7462395, + 48.211115001 + ], + [ + 7.7463375, + 48.212018601 + ], + [ + 7.7465318, + 48.213712001 + ], + [ + 7.7467831, + 48.215342001 + ], + [ + 7.7470183, + 48.216757001 + ], + [ + 7.7472776, + 48.218157301 + ], + [ + 7.7475465, + 48.219592901 + ], + [ + 7.7475729, + 48.219691101 + ], + [ + 7.7475802, + 48.219750101 + ], + [ + 7.747916, + 48.221279901 + ], + [ + 7.7485277, + 48.223797701 + ], + [ + 7.7491439, + 48.226040701 + ], + [ + 7.7494444, + 48.226999901 + ], + [ + 7.7499781, + 48.228696101 + ], + [ + 7.7501764, + 48.229371901 + ], + [ + 7.7505303, + 48.230410601 + ], + [ + 7.7510802, + 48.231955701 + ], + [ + 7.7519253, + 48.234176701 + ], + [ + 7.7522917, + 48.235130901 + ], + [ + 7.7527266, + 48.236196001 + ], + [ + 7.7534796, + 48.237936901 + ], + [ + 7.754194, + 48.239558201 + ], + [ + 7.7545612, + 48.240348401 + ], + [ + 7.7547906, + 48.240797301 + ], + [ + 7.7557485, + 48.242722701 + ], + [ + 7.757009, + 48.245131301 + ], + [ + 7.758381, + 48.247575701 + ], + [ + 7.759416, + 48.249337701 + ], + [ + 7.7603429, + 48.250890001 + ], + [ + 7.7608687, + 48.251655401 + ], + [ + 7.761604, + 48.252846401 + ], + [ + 7.762372, + 48.254014701 + ], + [ + 7.7626293, + 48.254396501 + ], + [ + 7.7627906, + 48.254621901 + ], + [ + 7.7651478, + 48.257933101 + ], + [ + 7.765663877, + 48.258625041 + ] + ] + } + }, + { + "identifier": "2026-017002--vi-bs.2026-04-14_10-00-00-000.devi-bs.2026-04-14_10-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.11791222912011,7.786656326035799,48.258625040502366,7.765663876668409", + "point": "48.11791222912011,7.786656326035799", + "startLcPosition": "30", + "impact": { + "lower": "Ettenheim", + "upper": "Teningen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Teningen - Ettenheim", + "coordinate": { + "lat": 48.11791222912011, + "long": 7.786656326035799 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 10:00 bis 16:00 Uhr", + "15.04.26 von 10:00 bis 16:00 Uhr", + "", + "A5: Basel -> Karlsruhe, zwischen 0.3 km hinter AS Teningen und 2.5 km vor AS Ettenheim", + "", + "L\u00e4nge: 16.49 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Ettenheim (AS) nach Teningen (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.786656326, + 48.117912229 + ], + [ + 7.7861391, + 48.119066501 + ], + [ + 7.785167, + 48.121170801 + ], + [ + 7.7842811, + 48.122869901 + ], + [ + 7.7837814, + 48.123813701 + ], + [ + 7.7822978, + 48.126473201 + ], + [ + 7.7808636, + 48.128913201 + ], + [ + 7.7802539, + 48.129832001 + ], + [ + 7.7788976, + 48.131891401 + ], + [ + 7.77732, + 48.134157701 + ], + [ + 7.7761884, + 48.135694201 + ], + [ + 7.7744596, + 48.137928201 + ], + [ + 7.7733563, + 48.139284701 + ], + [ + 7.7720398, + 48.140884101 + ], + [ + 7.7719107, + 48.141042101 + ], + [ + 7.7716076, + 48.141390101 + ], + [ + 7.7708317, + 48.142263601 + ], + [ + 7.7706063, + 48.142520101 + ], + [ + 7.7703171, + 48.142849201 + ], + [ + 7.7690866, + 48.144249401 + ], + [ + 7.7668026, + 48.146648401 + ], + [ + 7.7647598, + 48.148805301 + ], + [ + 7.7645323, + 48.149056401 + ], + [ + 7.7644387, + 48.149159801 + ], + [ + 7.7631478, + 48.150584601 + ], + [ + 7.7622204, + 48.151690401 + ], + [ + 7.7613742, + 48.152748001 + ], + [ + 7.7603716, + 48.154147801 + ], + [ + 7.7601272, + 48.154433501 + ], + [ + 7.7600667, + 48.154527401 + ], + [ + 7.7592258, + 48.155805701 + ], + [ + 7.7589815, + 48.156213601 + ], + [ + 7.7582202, + 48.157417401 + ], + [ + 7.7570655, + 48.159467801 + ], + [ + 7.7563047, + 48.160910201 + ], + [ + 7.7555527, + 48.162376201 + ], + [ + 7.7545209, + 48.164512501 + ], + [ + 7.7542888, + 48.165022001 + ], + [ + 7.754008, + 48.165558601 + ], + [ + 7.7537488, + 48.166129501 + ], + [ + 7.7535719, + 48.166533001 + ], + [ + 7.7535022, + 48.166686201 + ], + [ + 7.7532316, + 48.167324901 + ], + [ + 7.7524631, + 48.169150301 + ], + [ + 7.7518865, + 48.170596101 + ], + [ + 7.7509968, + 48.172976401 + ], + [ + 7.7502002, + 48.175304801 + ], + [ + 7.7496184, + 48.177069901 + ], + [ + 7.7488337, + 48.179837301 + ], + [ + 7.7484254, + 48.181364101 + ], + [ + 7.7480534, + 48.182870701 + ], + [ + 7.7473917, + 48.185934301 + ], + [ + 7.746968, + 48.188284801 + ], + [ + 7.7467446, + 48.189654601 + ], + [ + 7.746541, + 48.191100601 + ], + [ + 7.7462533, + 48.193543201 + ], + [ + 7.7459814, + 48.196559301 + ], + [ + 7.745906, + 48.197696301 + ], + [ + 7.745837, + 48.198939701 + ], + [ + 7.7457817, + 48.201319301 + ], + [ + 7.745806, + 48.204026101 + ], + [ + 7.7458259, + 48.205241401 + ], + [ + 7.7458778, + 48.206468801 + ], + [ + 7.746021, + 48.208699501 + ], + [ + 7.7461956, + 48.210638301 + ], + [ + 7.7462395, + 48.211115001 + ], + [ + 7.7463375, + 48.212018601 + ], + [ + 7.7465318, + 48.213712001 + ], + [ + 7.7467831, + 48.215342001 + ], + [ + 7.7470183, + 48.216757001 + ], + [ + 7.7472776, + 48.218157301 + ], + [ + 7.7475465, + 48.219592901 + ], + [ + 7.7475729, + 48.219691101 + ], + [ + 7.7475802, + 48.219750101 + ], + [ + 7.747916, + 48.221279901 + ], + [ + 7.7485277, + 48.223797701 + ], + [ + 7.7491439, + 48.226040701 + ], + [ + 7.7494444, + 48.226999901 + ], + [ + 7.7499781, + 48.228696101 + ], + [ + 7.7501764, + 48.229371901 + ], + [ + 7.7505303, + 48.230410601 + ], + [ + 7.7510802, + 48.231955701 + ], + [ + 7.7519253, + 48.234176701 + ], + [ + 7.7522917, + 48.235130901 + ], + [ + 7.7527266, + 48.236196001 + ], + [ + 7.7534796, + 48.237936901 + ], + [ + 7.754194, + 48.239558201 + ], + [ + 7.7545612, + 48.240348401 + ], + [ + 7.7547906, + 48.240797301 + ], + [ + 7.7557485, + 48.242722701 + ], + [ + 7.757009, + 48.245131301 + ], + [ + 7.758381, + 48.247575701 + ], + [ + 7.759416, + 48.249337701 + ], + [ + 7.7603429, + 48.250890001 + ], + [ + 7.7608687, + 48.251655401 + ], + [ + 7.761604, + 48.252846401 + ], + [ + 7.762372, + 48.254014701 + ], + [ + 7.7626293, + 48.254396501 + ], + [ + 7.7627906, + 48.254621901 + ], + [ + 7.7651478, + 48.257933101 + ], + [ + 7.765663877, + 48.258625041 + ] + ] + } + }, + { + "identifier": "2026-001477--vi-bs.2026-03-16_00-00-00-000.devi-zus.2026-02-02_00-00-00-000_002.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.196074340603836,7.746025121348625,48.23964281821039,7.754233320448716", + "point": "48.196074340603836,7.746025121348625", + "startLcPosition": "31", + "impact": { + "lower": "Rust", + "upper": "Riegel", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Riegel - Rust", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 48.196074340603836, + "long": 7.746025121348625 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 19.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.07.26)", + "", + "A5: Basel -> Karlsruhe, zwischen 4.8 km hinter AS Riegel und 1.5 km vor AS Rust", + "", + "L\u00e4nge: 4.91 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A5 von Rust (AS) nach Riegel (AS) Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.746025121, + 48.196074341 + ], + [ + 7.7459814, + 48.196559301 + ], + [ + 7.745906, + 48.197696301 + ], + [ + 7.745837, + 48.198939701 + ], + [ + 7.7457817, + 48.201319301 + ], + [ + 7.745806, + 48.204026101 + ], + [ + 7.7458259, + 48.205241401 + ], + [ + 7.7458778, + 48.206468801 + ], + [ + 7.746021, + 48.208699501 + ], + [ + 7.7461956, + 48.210638301 + ], + [ + 7.7462395, + 48.211115001 + ], + [ + 7.7463375, + 48.212018601 + ], + [ + 7.7465318, + 48.213712001 + ], + [ + 7.7467831, + 48.215342001 + ], + [ + 7.7470183, + 48.216757001 + ], + [ + 7.7472776, + 48.218157301 + ], + [ + 7.7475465, + 48.219592901 + ], + [ + 7.7475729, + 48.219691101 + ], + [ + 7.7475802, + 48.219750101 + ], + [ + 7.747916, + 48.221279901 + ], + [ + 7.7485277, + 48.223797701 + ], + [ + 7.7491439, + 48.226040701 + ], + [ + 7.7494444, + 48.226999901 + ], + [ + 7.7499781, + 48.228696101 + ], + [ + 7.7501764, + 48.229371901 + ], + [ + 7.7505303, + 48.230410601 + ], + [ + 7.7510802, + 48.231955701 + ], + [ + 7.7519253, + 48.234176701 + ], + [ + 7.7522917, + 48.235130901 + ], + [ + 7.7527266, + 48.236196001 + ], + [ + 7.7534796, + 48.237936901 + ], + [ + 7.754194, + 48.239558201 + ], + [ + 7.75423332, + 48.239642818 + ] + ] + } + }, + { + "identifier": "2026-001477--vi-bs.2026-03-16_00-00-00-000.devi-zus.2026-02-02_00-00-00-000_002.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.239677783302355,7.7540650703846445,48.19606674999783,7.745834267997912", + "point": "48.239677783302355,7.7540650703846445", + "startLcPosition": "33", + "impact": { + "lower": "Riegel", + "upper": "Rust", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Rust - Riegel", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 48.239677783302355, + "long": 7.7540650703846445 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 19.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.07.26)", + "", + "A5: Karlsruhe -> Basel, zwischen 1.5 km hinter AS Rust und 4.8 km vor AS Riegel", + "", + "L\u00e4nge: 4.91 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A5 von Rust (AS) nach Riegel (AS) Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.75406507, + 48.239677783 + ], + [ + 7.754024, + 48.239589801 + ], + [ + 7.7532956, + 48.237957901 + ], + [ + 7.7525164, + 48.236222401 + ], + [ + 7.7520871, + 48.235170801 + ], + [ + 7.7516934, + 48.234218601 + ], + [ + 7.7511287, + 48.232665701 + ], + [ + 7.7508689, + 48.231996501 + ], + [ + 7.7501883, + 48.230075401 + ], + [ + 7.7500883, + 48.229766801 + ], + [ + 7.7496691, + 48.228409801 + ], + [ + 7.749056, + 48.226359301 + ], + [ + 7.7489658, + 48.226057601 + ], + [ + 7.7483669, + 48.223828301 + ], + [ + 7.7477478, + 48.221284801 + ], + [ + 7.7474096, + 48.219753801 + ], + [ + 7.7473904, + 48.219652801 + ], + [ + 7.747092, + 48.218183601 + ], + [ + 7.7468383, + 48.216766701 + ], + [ + 7.7466057, + 48.215341201 + ], + [ + 7.7463762, + 48.213727801 + ], + [ + 7.7461596, + 48.212047401 + ], + [ + 7.7460639, + 48.211192701 + ], + [ + 7.7460191, + 48.210676901 + ], + [ + 7.7458432, + 48.208699201 + ], + [ + 7.7457047, + 48.206489501 + ], + [ + 7.7456528, + 48.205247901 + ], + [ + 7.7456216, + 48.204034301 + ], + [ + 7.745607, + 48.201332101 + ], + [ + 7.745659, + 48.198949501 + ], + [ + 7.7457937, + 48.196527301 + ], + [ + 7.745834268, + 48.19606675 + ] + ] + } + }, + { + "identifier": "2026-017002--vi-bs.2026-04-14_10-00-00-000.devi-bs.2026-04-14_10-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.25867872375292,7.7655026215654495,48.11787866772056,7.786488853176873", + "point": "48.25867872375292,7.7655026215654495", + "startLcPosition": "34", + "impact": { + "lower": "Teningen", + "upper": "Ettenheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Ettenheim - Teningen", + "coordinate": { + "lat": 48.25867872375292, + "long": 7.7655026215654495 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 10:30 bis 16:30 Uhr", + "15.04.26 von 10:30 bis 16:30 Uhr", + "17.04.26 von 10:00 bis 13:30 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 2.5 km hinter AS Ettenheim und 0.3 km vor AS Teningen", + "", + "L\u00e4nge: 16.49 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A5 von Ettenheim (AS) nach Teningen (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.765502622, + 48.258678724 + ], + [ + 7.7649552, + 48.257946701 + ], + [ + 7.7646423, + 48.257522401 + ], + [ + 7.7626147, + 48.254642401 + ], + [ + 7.7624758, + 48.254442901 + ], + [ + 7.7621594, + 48.253954801 + ], + [ + 7.7613917, + 48.252829501 + ], + [ + 7.7612177, + 48.252559501 + ], + [ + 7.7601766, + 48.250933001 + ], + [ + 7.7590339, + 48.249043701 + ], + [ + 7.7575351, + 48.246450401 + ], + [ + 7.7566052, + 48.244759101 + ], + [ + 7.7557228, + 48.243071501 + ], + [ + 7.7550521, + 48.241747001 + ], + [ + 7.7543953, + 48.240385201 + ], + [ + 7.754024, + 48.239589801 + ], + [ + 7.7532956, + 48.237957901 + ], + [ + 7.7525164, + 48.236222401 + ], + [ + 7.7520871, + 48.235170801 + ], + [ + 7.7516934, + 48.234218601 + ], + [ + 7.7511287, + 48.232665701 + ], + [ + 7.7508689, + 48.231996501 + ], + [ + 7.7501883, + 48.230075401 + ], + [ + 7.7500883, + 48.229766801 + ], + [ + 7.7496691, + 48.228409801 + ], + [ + 7.749056, + 48.226359301 + ], + [ + 7.7489658, + 48.226057601 + ], + [ + 7.7483669, + 48.223828301 + ], + [ + 7.7477478, + 48.221284801 + ], + [ + 7.7474096, + 48.219753801 + ], + [ + 7.7473904, + 48.219652801 + ], + [ + 7.747092, + 48.218183601 + ], + [ + 7.7468383, + 48.216766701 + ], + [ + 7.7466057, + 48.215341201 + ], + [ + 7.7463762, + 48.213727801 + ], + [ + 7.7461596, + 48.212047401 + ], + [ + 7.7460639, + 48.211192701 + ], + [ + 7.7460191, + 48.210676901 + ], + [ + 7.7458432, + 48.208699201 + ], + [ + 7.7457047, + 48.206489501 + ], + [ + 7.7456528, + 48.205247901 + ], + [ + 7.7456216, + 48.204034301 + ], + [ + 7.745607, + 48.201332101 + ], + [ + 7.745659, + 48.198949501 + ], + [ + 7.7457937, + 48.196527301 + ], + [ + 7.7460556, + 48.193553901 + ], + [ + 7.7463575, + 48.191112501 + ], + [ + 7.7465393, + 48.189683801 + ], + [ + 7.7467622, + 48.188222801 + ], + [ + 7.7472192, + 48.185921601 + ], + [ + 7.747879, + 48.182861501 + ], + [ + 7.7482445, + 48.181337001 + ], + [ + 7.7486405, + 48.179810401 + ], + [ + 7.7494356, + 48.177060401 + ], + [ + 7.7500099, + 48.175285201 + ], + [ + 7.7508106, + 48.172937101 + ], + [ + 7.75147, + 48.171116401 + ], + [ + 7.7516936, + 48.170565301 + ], + [ + 7.7522761, + 48.169126601 + ], + [ + 7.7526197, + 48.168295801 + ], + [ + 7.7533423, + 48.166616301 + ], + [ + 7.7534124, + 48.166461401 + ], + [ + 7.753596, + 48.166034401 + ], + [ + 7.7542928, + 48.164505401 + ], + [ + 7.7553533, + 48.162339701 + ], + [ + 7.7561111, + 48.160864601 + ], + [ + 7.7568773, + 48.159425201 + ], + [ + 7.7580555, + 48.157340701 + ], + [ + 7.7586675, + 48.156328201 + ], + [ + 7.759067, + 48.155733801 + ], + [ + 7.7599053, + 48.154466501 + ], + [ + 7.759925, + 48.154441301 + ], + [ + 7.7601516, + 48.154136601 + ], + [ + 7.7603137, + 48.153881901 + ], + [ + 7.7610824, + 48.152869101 + ], + [ + 7.7620798, + 48.151632301 + ], + [ + 7.7629863, + 48.150517501 + ], + [ + 7.7642764, + 48.149083901 + ], + [ + 7.764369, + 48.148981001 + ], + [ + 7.7645906, + 48.148734801 + ], + [ + 7.7665984, + 48.146594601 + ], + [ + 7.7677283, + 48.145438401 + ], + [ + 7.7689215, + 48.144182701 + ], + [ + 7.7700937, + 48.142872301 + ], + [ + 7.770374, + 48.142559001 + ], + [ + 7.7705711, + 48.142338701 + ], + [ + 7.7713797, + 48.141416901 + ], + [ + 7.7717312, + 48.140996501 + ], + [ + 7.7718595, + 48.140839201 + ], + [ + 7.7722183, + 48.140421701 + ], + [ + 7.7731629, + 48.139192501 + ], + [ + 7.7742722, + 48.137856301 + ], + [ + 7.7753756, + 48.136546801 + ], + [ + 7.7767705, + 48.134682601 + ], + [ + 7.7793462, + 48.130975401 + ], + [ + 7.7806937, + 48.128860501 + ], + [ + 7.7821284, + 48.126428901 + ], + [ + 7.7828929, + 48.125103801 + ], + [ + 7.783748, + 48.123528001 + ], + [ + 7.7843418, + 48.122358601 + ], + [ + 7.7849546, + 48.121143101 + ], + [ + 7.7855901, + 48.119862401 + ], + [ + 7.7863543, + 48.118180601 + ], + [ + 7.786488853, + 48.117878668 + ] + ] + } + }, + { + "identifier": "2026-017002--vi-bs.2026-04-14_10-00-00-000.devi-bs.2026-04-14_10-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.25867872375292,7.7655026215654495,48.11787866772056,7.786488853176873", + "point": "48.25867872375292,7.7655026215654495", + "startLcPosition": "34", + "impact": { + "lower": "Teningen", + "upper": "Ettenheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Ettenheim - Teningen", + "coordinate": { + "lat": 48.25867872375292, + "long": 7.7655026215654495 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 10:30 bis 16:30 Uhr", + "15.04.26 von 10:30 bis 16:30 Uhr", + "17.04.26 von 10:00 bis 13:30 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 2.5 km hinter AS Ettenheim und 0.3 km vor AS Teningen", + "", + "L\u00e4nge: 16.49 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Ettenheim (AS) nach Teningen (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.765502622, + 48.258678724 + ], + [ + 7.7649552, + 48.257946701 + ], + [ + 7.7646423, + 48.257522401 + ], + [ + 7.7626147, + 48.254642401 + ], + [ + 7.7624758, + 48.254442901 + ], + [ + 7.7621594, + 48.253954801 + ], + [ + 7.7613917, + 48.252829501 + ], + [ + 7.7612177, + 48.252559501 + ], + [ + 7.7601766, + 48.250933001 + ], + [ + 7.7590339, + 48.249043701 + ], + [ + 7.7575351, + 48.246450401 + ], + [ + 7.7566052, + 48.244759101 + ], + [ + 7.7557228, + 48.243071501 + ], + [ + 7.7550521, + 48.241747001 + ], + [ + 7.7543953, + 48.240385201 + ], + [ + 7.754024, + 48.239589801 + ], + [ + 7.7532956, + 48.237957901 + ], + [ + 7.7525164, + 48.236222401 + ], + [ + 7.7520871, + 48.235170801 + ], + [ + 7.7516934, + 48.234218601 + ], + [ + 7.7511287, + 48.232665701 + ], + [ + 7.7508689, + 48.231996501 + ], + [ + 7.7501883, + 48.230075401 + ], + [ + 7.7500883, + 48.229766801 + ], + [ + 7.7496691, + 48.228409801 + ], + [ + 7.749056, + 48.226359301 + ], + [ + 7.7489658, + 48.226057601 + ], + [ + 7.7483669, + 48.223828301 + ], + [ + 7.7477478, + 48.221284801 + ], + [ + 7.7474096, + 48.219753801 + ], + [ + 7.7473904, + 48.219652801 + ], + [ + 7.747092, + 48.218183601 + ], + [ + 7.7468383, + 48.216766701 + ], + [ + 7.7466057, + 48.215341201 + ], + [ + 7.7463762, + 48.213727801 + ], + [ + 7.7461596, + 48.212047401 + ], + [ + 7.7460639, + 48.211192701 + ], + [ + 7.7460191, + 48.210676901 + ], + [ + 7.7458432, + 48.208699201 + ], + [ + 7.7457047, + 48.206489501 + ], + [ + 7.7456528, + 48.205247901 + ], + [ + 7.7456216, + 48.204034301 + ], + [ + 7.745607, + 48.201332101 + ], + [ + 7.745659, + 48.198949501 + ], + [ + 7.7457937, + 48.196527301 + ], + [ + 7.7460556, + 48.193553901 + ], + [ + 7.7463575, + 48.191112501 + ], + [ + 7.7465393, + 48.189683801 + ], + [ + 7.7467622, + 48.188222801 + ], + [ + 7.7472192, + 48.185921601 + ], + [ + 7.747879, + 48.182861501 + ], + [ + 7.7482445, + 48.181337001 + ], + [ + 7.7486405, + 48.179810401 + ], + [ + 7.7494356, + 48.177060401 + ], + [ + 7.7500099, + 48.175285201 + ], + [ + 7.7508106, + 48.172937101 + ], + [ + 7.75147, + 48.171116401 + ], + [ + 7.7516936, + 48.170565301 + ], + [ + 7.7522761, + 48.169126601 + ], + [ + 7.7526197, + 48.168295801 + ], + [ + 7.7533423, + 48.166616301 + ], + [ + 7.7534124, + 48.166461401 + ], + [ + 7.753596, + 48.166034401 + ], + [ + 7.7542928, + 48.164505401 + ], + [ + 7.7553533, + 48.162339701 + ], + [ + 7.7561111, + 48.160864601 + ], + [ + 7.7568773, + 48.159425201 + ], + [ + 7.7580555, + 48.157340701 + ], + [ + 7.7586675, + 48.156328201 + ], + [ + 7.759067, + 48.155733801 + ], + [ + 7.7599053, + 48.154466501 + ], + [ + 7.759925, + 48.154441301 + ], + [ + 7.7601516, + 48.154136601 + ], + [ + 7.7603137, + 48.153881901 + ], + [ + 7.7610824, + 48.152869101 + ], + [ + 7.7620798, + 48.151632301 + ], + [ + 7.7629863, + 48.150517501 + ], + [ + 7.7642764, + 48.149083901 + ], + [ + 7.764369, + 48.148981001 + ], + [ + 7.7645906, + 48.148734801 + ], + [ + 7.7665984, + 48.146594601 + ], + [ + 7.7677283, + 48.145438401 + ], + [ + 7.7689215, + 48.144182701 + ], + [ + 7.7700937, + 48.142872301 + ], + [ + 7.770374, + 48.142559001 + ], + [ + 7.7705711, + 48.142338701 + ], + [ + 7.7713797, + 48.141416901 + ], + [ + 7.7717312, + 48.140996501 + ], + [ + 7.7718595, + 48.140839201 + ], + [ + 7.7722183, + 48.140421701 + ], + [ + 7.7731629, + 48.139192501 + ], + [ + 7.7742722, + 48.137856301 + ], + [ + 7.7753756, + 48.136546801 + ], + [ + 7.7767705, + 48.134682601 + ], + [ + 7.7793462, + 48.130975401 + ], + [ + 7.7806937, + 48.128860501 + ], + [ + 7.7821284, + 48.126428901 + ], + [ + 7.7828929, + 48.125103801 + ], + [ + 7.783748, + 48.123528001 + ], + [ + 7.7843418, + 48.122358601 + ], + [ + 7.7849546, + 48.121143101 + ], + [ + 7.7855901, + 48.119862401 + ], + [ + 7.7863543, + 48.118180601 + ], + [ + 7.786488853, + 48.117878668 + ] + ] + } + }, + { + "identifier": "2026-016027--vi-bs.2026-04-08_08-00-00-000.devi-bs.2026-04-08_08-00-00-000_008.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.453152292839185,7.903333069667601,48.89639052754628,8.318181138259035", + "point": "48.453152292839185,7.903333069667601", + "startLcPosition": "38", + "impact": { + "lower": "Karlsruhe-S\u00fcd", + "upper": "Unditz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Unditz - Karlsruhe-S\u00fcd", + "coordinate": { + "lat": 48.453152292839185, + "long": 7.903333069667601 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch, Donnerstag, Freitag, Samstag und Sonntag zwischen dem 08.04.26 und dem 12.04.26 von 08:00 bis 20:00 Uhr.", + "", + "A5: Basel -> Karlsruhe, zwischen 6.7 km hinter Unditz und 8.8 km vor AS Karlsruhe-S\u00fcd", + "", + "L\u00e4nge: 59.97 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "ZEB-Messung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.90333307, + 48.453152293 + ], + [ + 7.9034247, + 48.453432501 + ], + [ + 7.9035406, + 48.453787001 + ], + [ + 7.9038808, + 48.454904901 + ], + [ + 7.9039769, + 48.455220301 + ], + [ + 7.9040657, + 48.455531701 + ], + [ + 7.9042429, + 48.456182101 + ], + [ + 7.9044955, + 48.457215001 + ], + [ + 7.9046409, + 48.457867201 + ], + [ + 7.9047558, + 48.458491401 + ], + [ + 7.9048676, + 48.459140501 + ], + [ + 7.9049535, + 48.459724301 + ], + [ + 7.90506, + 48.460541401 + ], + [ + 7.9051394, + 48.461302701 + ], + [ + 7.9052041, + 48.462398601 + ], + [ + 7.9052375, + 48.463148901 + ], + [ + 7.9052495, + 48.463747401 + ], + [ + 7.905232, + 48.464768901 + ], + [ + 7.905205, + 48.465436401 + ], + [ + 7.9051934, + 48.465599101 + ], + [ + 7.9051226, + 48.466562701 + ], + [ + 7.9049909, + 48.467775001 + ], + [ + 7.9047767, + 48.469196601 + ], + [ + 7.9046937, + 48.469604601 + ], + [ + 7.9046064, + 48.470066501 + ], + [ + 7.9045117, + 48.470513101 + ], + [ + 7.9043329, + 48.471315801 + ], + [ + 7.904201, + 48.471836701 + ], + [ + 7.9038552, + 48.473239101 + ], + [ + 7.9036945, + 48.473899501 + ], + [ + 7.9034993, + 48.474638301 + ], + [ + 7.9033424, + 48.475237901 + ], + [ + 7.9032921, + 48.475442401 + ], + [ + 7.9032088, + 48.475789401 + ], + [ + 7.9029051, + 48.476990401 + ], + [ + 7.9027406, + 48.477647101 + ], + [ + 7.9026157, + 48.478155601 + ], + [ + 7.9023588, + 48.479271801 + ], + [ + 7.9022095, + 48.479888001 + ], + [ + 7.9020773, + 48.480507701 + ], + [ + 7.9019652, + 48.481073801 + ], + [ + 7.9018716, + 48.481614101 + ], + [ + 7.9017863, + 48.482149601 + ], + [ + 7.9017108, + 48.482743801 + ], + [ + 7.9016445, + 48.483271801 + ], + [ + 7.9015831, + 48.483857201 + ], + [ + 7.9015267, + 48.484343201 + ], + [ + 7.9015025, + 48.484883001 + ], + [ + 7.9014943, + 48.485536001 + ], + [ + 7.9014685, + 48.486193401 + ], + [ + 7.9014607, + 48.487480301 + ], + [ + 7.9014983, + 48.488245801 + ], + [ + 7.9015429, + 48.488889701 + ], + [ + 7.9015965, + 48.489534101 + ], + [ + 7.9016565, + 48.490138301 + ], + [ + 7.9018465, + 48.491378301 + ], + [ + 7.9019779, + 48.492080001 + ], + [ + 7.9020972, + 48.492678701 + ], + [ + 7.9022129, + 48.493240401 + ], + [ + 7.9022856, + 48.493559601 + ], + [ + 7.9023824, + 48.493959801 + ], + [ + 7.9025105, + 48.494431601 + ], + [ + 7.9025571, + 48.494616201 + ], + [ + 7.9026106, + 48.494782101 + ], + [ + 7.9026777, + 48.495020001 + ], + [ + 7.9028011, + 48.495525301 + ], + [ + 7.9029987, + 48.496158901 + ], + [ + 7.9033429, + 48.497144701 + ], + [ + 7.9034093, + 48.497321001 + ], + [ + 7.9036258, + 48.497932801 + ], + [ + 7.9045558, + 48.500166301 + ], + [ + 7.9049508, + 48.501032101 + ], + [ + 7.905097, + 48.501383801 + ], + [ + 7.905575, + 48.502369201 + ], + [ + 7.9057864, + 48.502772601 + ], + [ + 7.9061422, + 48.503439301 + ], + [ + 7.9066085, + 48.504299001 + ], + [ + 7.907084, + 48.505208401 + ], + [ + 7.9075982, + 48.506115401 + ], + [ + 7.9079713, + 48.506773101 + ], + [ + 7.9086952, + 48.507897601 + ], + [ + 7.9092807, + 48.508801401 + ], + [ + 7.9096047, + 48.509292001 + ], + [ + 7.9100956, + 48.509965301 + ], + [ + 7.910418, + 48.510431201 + ], + [ + 7.9108418, + 48.511028301 + ], + [ + 7.9111376, + 48.511446201 + ], + [ + 7.9116129, + 48.512084401 + ], + [ + 7.9118578, + 48.512413901 + ], + [ + 7.9120515, + 48.512688301 + ], + [ + 7.9133384, + 48.514327301 + ], + [ + 7.9138274, + 48.514907101 + ], + [ + 7.9141953, + 48.515335601 + ], + [ + 7.914544, + 48.515717301 + ], + [ + 7.9148595, + 48.516076201 + ], + [ + 7.9152481, + 48.516506001 + ], + [ + 7.9158253, + 48.517120901 + ], + [ + 7.916255, + 48.517597001 + ], + [ + 7.9167086, + 48.518082801 + ], + [ + 7.9171147, + 48.518525001 + ], + [ + 7.9177764, + 48.519211301 + ], + [ + 7.9186266, + 48.520042901 + ], + [ + 7.919953, + 48.521367901 + ], + [ + 7.9209384, + 48.522332501 + ], + [ + 7.9220502, + 48.523389201 + ], + [ + 7.9228138, + 48.524139701 + ], + [ + 7.9249505, + 48.526103401 + ], + [ + 7.9259365, + 48.527012301 + ], + [ + 7.9266215, + 48.527624301 + ], + [ + 7.927128, + 48.528066401 + ], + [ + 7.9279929, + 48.528824001 + ], + [ + 7.9284825, + 48.529249101 + ], + [ + 7.928795, + 48.529554301 + ], + [ + 7.9294034, + 48.530117301 + ], + [ + 7.9303033, + 48.530905401 + ], + [ + 7.9311107, + 48.531614801 + ], + [ + 7.9328714, + 48.533133401 + ], + [ + 7.9340574, + 48.534156901 + ], + [ + 7.9352323, + 48.535145901 + ], + [ + 7.9366866, + 48.536407101 + ], + [ + 7.9379949, + 48.537535601 + ], + [ + 7.9397014, + 48.538984301 + ], + [ + 7.9408039, + 48.539933101 + ], + [ + 7.9415054, + 48.540523701 + ], + [ + 7.9424336, + 48.541319901 + ], + [ + 7.9429482, + 48.541759701 + ], + [ + 7.9436653, + 48.542387901 + ], + [ + 7.9444053, + 48.543062301 + ], + [ + 7.9454661, + 48.544076201 + ], + [ + 7.9463692, + 48.545030201 + ], + [ + 7.9471854, + 48.545899501 + ], + [ + 7.9479508, + 48.546784601 + ], + [ + 7.9484072, + 48.547365701 + ], + [ + 7.948814, + 48.547940401 + ], + [ + 7.9490507, + 48.548251801 + ], + [ + 7.9492328, + 48.548512301 + ], + [ + 7.9495294, + 48.548929801 + ], + [ + 7.9497999, + 48.549326901 + ], + [ + 7.9501594, + 48.549889901 + ], + [ + 7.9505407, + 48.550509801 + ], + [ + 7.950855, + 48.551050001 + ], + [ + 7.951178, + 48.551664301 + ], + [ + 7.9515337, + 48.552378701 + ], + [ + 7.9518873, + 48.553056001 + ], + [ + 7.9521027, + 48.553463701 + ], + [ + 7.952314, + 48.553902701 + ], + [ + 7.9527524, + 48.554789101 + ], + [ + 7.9529902, + 48.555263801 + ], + [ + 7.9532344, + 48.555759701 + ], + [ + 7.9535447, + 48.556389101 + ], + [ + 7.9540066, + 48.557301201 + ], + [ + 7.9543359, + 48.557940601 + ], + [ + 7.9545778, + 48.558394501 + ], + [ + 7.9549267, + 48.559034101 + ], + [ + 7.9551994, + 48.559553701 + ], + [ + 7.9554695, + 48.560055101 + ], + [ + 7.9557343, + 48.560525301 + ], + [ + 7.9560568, + 48.561085401 + ], + [ + 7.9564401, + 48.561759401 + ], + [ + 7.9580529, + 48.564537001 + ], + [ + 7.9590235, + 48.566086201 + ], + [ + 7.9592578, + 48.566432801 + ], + [ + 7.9597798, + 48.567209801 + ], + [ + 7.9607534, + 48.568725501 + ], + [ + 7.961448, + 48.569689701 + ], + [ + 7.9624352, + 48.571052301 + ], + [ + 7.9631755, + 48.572120801 + ], + [ + 7.963859, + 48.573065001 + ], + [ + 7.9647815, + 48.574346101 + ], + [ + 7.9654192, + 48.575218501 + ], + [ + 7.966005, + 48.576023601 + ], + [ + 7.9679981, + 48.578622401 + ], + [ + 7.9689695, + 48.579808501 + ], + [ + 7.9699891, + 48.581076501 + ], + [ + 7.9707994, + 48.582083801 + ], + [ + 7.9714506, + 48.582856001 + ], + [ + 7.9721089, + 48.583620001 + ], + [ + 7.9726829, + 48.584285601 + ], + [ + 7.9733896, + 48.585106701 + ], + [ + 7.9739449, + 48.585746901 + ], + [ + 7.9745938, + 48.586503301 + ], + [ + 7.9752633, + 48.587249401 + ], + [ + 7.9759235, + 48.587983301 + ], + [ + 7.9765598, + 48.588664801 + ], + [ + 7.9777782, + 48.589976201 + ], + [ + 7.9787072, + 48.590973001 + ], + [ + 7.9799383, + 48.592242101 + ], + [ + 7.9810008, + 48.593344001 + ], + [ + 7.9816426, + 48.594001601 + ], + [ + 7.9823139, + 48.594661001 + ], + [ + 7.9833752, + 48.595688001 + ], + [ + 7.9845768, + 48.596904501 + ], + [ + 7.9858573, + 48.598135101 + ], + [ + 7.9872724, + 48.599479201 + ], + [ + 7.9881681, + 48.600307901 + ], + [ + 7.9889334, + 48.601002001 + ], + [ + 7.990105, + 48.602067901 + ], + [ + 7.9910067, + 48.602860301 + ], + [ + 7.9918284, + 48.603558201 + ], + [ + 7.9926768, + 48.604293801 + ], + [ + 7.9934246, + 48.604930601 + ], + [ + 7.9941331, + 48.605556801 + ], + [ + 7.9948818, + 48.606185601 + ], + [ + 7.9955049, + 48.606711601 + ], + [ + 7.9966173, + 48.607660201 + ], + [ + 7.9983647, + 48.609063901 + ], + [ + 7.9995698, + 48.609990101 + ], + [ + 7.9998485, + 48.610206801 + ], + [ + 8.0006521, + 48.610807701 + ], + [ + 8.0014749, + 48.611426401 + ], + [ + 8.0022492, + 48.611991501 + ], + [ + 8.0029095, + 48.612488501 + ], + [ + 8.0041628, + 48.613433801 + ], + [ + 8.0052539, + 48.614247801 + ], + [ + 8.0064795, + 48.615182301 + ], + [ + 8.0071543, + 48.615718201 + ], + [ + 8.0082203, + 48.616587601 + ], + [ + 8.009151, + 48.617362801 + ], + [ + 8.0096827, + 48.617817001 + ], + [ + 8.0103686, + 48.618400401 + ], + [ + 8.0110414, + 48.618984001 + ], + [ + 8.0116168, + 48.619511601 + ], + [ + 8.0123614, + 48.620190001 + ], + [ + 8.0130303, + 48.620811201 + ], + [ + 8.0135765, + 48.621339401 + ], + [ + 8.0143696, + 48.622117001 + ], + [ + 8.0155425, + 48.623334601 + ], + [ + 8.016402, + 48.624259601 + ], + [ + 8.0173774, + 48.625328801 + ], + [ + 8.0180316, + 48.626071201 + ], + [ + 8.0188319, + 48.627030201 + ], + [ + 8.0198762, + 48.628281401 + ], + [ + 8.0203502, + 48.628878801 + ], + [ + 8.0208617, + 48.629563501 + ], + [ + 8.0215913, + 48.630504901 + ], + [ + 8.0222728, + 48.631455301 + ], + [ + 8.0228544, + 48.632244401 + ], + [ + 8.0233082, + 48.632918901 + ], + [ + 8.0238303, + 48.633709701 + ], + [ + 8.0244225, + 48.634695701 + ], + [ + 8.0248395, + 48.635427401 + ], + [ + 8.0252737, + 48.636181001 + ], + [ + 8.0256764, + 48.636956101 + ], + [ + 8.025761, + 48.637106701 + ], + [ + 8.0264283, + 48.638335601 + ], + [ + 8.0267613, + 48.638961901 + ], + [ + 8.027046, + 48.639522501 + ], + [ + 8.0273678, + 48.640196001 + ], + [ + 8.0275229, + 48.640526301 + ], + [ + 8.0281352, + 48.641828501 + ], + [ + 8.0285735, + 48.642768101 + ], + [ + 8.0287462, + 48.643128801 + ], + [ + 8.0289095, + 48.643473201 + ], + [ + 8.0291076, + 48.643883701 + ], + [ + 8.0292772, + 48.644217101 + ], + [ + 8.0294957, + 48.644650401 + ], + [ + 8.029914, + 48.645537601 + ], + [ + 8.0301672, + 48.646092401 + ], + [ + 8.0303918, + 48.646566101 + ], + [ + 8.0310859, + 48.647959201 + ], + [ + 8.0315445, + 48.648932001 + ], + [ + 8.03215, + 48.650188701 + ], + [ + 8.0327665, + 48.651429001 + ], + [ + 8.0334723, + 48.652756101 + ], + [ + 8.0339379, + 48.653588501 + ], + [ + 8.0343414, + 48.654243401 + ], + [ + 8.0350422, + 48.655405501 + ], + [ + 8.0357624, + 48.656529801 + ], + [ + 8.0362537, + 48.657243701 + ], + [ + 8.03701, + 48.658244401 + ], + [ + 8.0376853, + 48.659077701 + ], + [ + 8.0381645, + 48.659669201 + ], + [ + 8.0386314, + 48.660219001 + ], + [ + 8.0391498, + 48.660759801 + ], + [ + 8.0395271, + 48.661167401 + ], + [ + 8.0401415, + 48.661834801 + ], + [ + 8.04064, + 48.662354401 + ], + [ + 8.0412599, + 48.662965101 + ], + [ + 8.0418811, + 48.663577001 + ], + [ + 8.0425331, + 48.664192901 + ], + [ + 8.0432869, + 48.664847201 + ], + [ + 8.0440435, + 48.665501901 + ], + [ + 8.0449537, + 48.666272701 + ], + [ + 8.0458213, + 48.666988401 + ], + [ + 8.0464992, + 48.667551301 + ], + [ + 8.0472266, + 48.668150101 + ], + [ + 8.0479574, + 48.668748901 + ], + [ + 8.0483859, + 48.669108401 + ], + [ + 8.0491192, + 48.669718301 + ], + [ + 8.0498187, + 48.670305001 + ], + [ + 8.0503796, + 48.670768901 + ], + [ + 8.0509016, + 48.671211201 + ], + [ + 8.0516053, + 48.671817301 + ], + [ + 8.0523312, + 48.672439301 + ], + [ + 8.0534117, + 48.673416401 + ], + [ + 8.0542378, + 48.674170201 + ], + [ + 8.0556568, + 48.675497201 + ], + [ + 8.0564283, + 48.676244801 + ], + [ + 8.0571681, + 48.676943801 + ], + [ + 8.0579218, + 48.677707601 + ], + [ + 8.0593828, + 48.679211301 + ], + [ + 8.0610323, + 48.681007501 + ], + [ + 8.062071, + 48.682173001 + ], + [ + 8.0629269, + 48.683216901 + ], + [ + 8.0637341, + 48.684196301 + ], + [ + 8.0656678, + 48.686724801 + ], + [ + 8.0665601, + 48.687956701 + ], + [ + 8.0671592, + 48.688821501 + ], + [ + 8.0679133, + 48.689956501 + ], + [ + 8.0687954, + 48.691311701 + ], + [ + 8.0695376, + 48.692538901 + ], + [ + 8.0704976, + 48.694170001 + ], + [ + 8.0710184, + 48.695073201 + ], + [ + 8.0717867, + 48.696388401 + ], + [ + 8.072561, + 48.697730701 + ], + [ + 8.0734026, + 48.699151901 + ], + [ + 8.0740589, + 48.700202601 + ], + [ + 8.0747444, + 48.701262101 + ], + [ + 8.0755077, + 48.702348101 + ], + [ + 8.0758738, + 48.702843101 + ], + [ + 8.0765249, + 48.703669401 + ], + [ + 8.0772609, + 48.704586401 + ], + [ + 8.0779918, + 48.705433601 + ], + [ + 8.0788579, + 48.706417501 + ], + [ + 8.0793124, + 48.706912601 + ], + [ + 8.0800624, + 48.707719001 + ], + [ + 8.0808117, + 48.708503601 + ], + [ + 8.0817506, + 48.709461301 + ], + [ + 8.0826197, + 48.710335101 + ], + [ + 8.0833357, + 48.711045701 + ], + [ + 8.0843129, + 48.712017601 + ], + [ + 8.0845491, + 48.712236901 + ], + [ + 8.0860175, + 48.713566701 + ], + [ + 8.0874782, + 48.714856001 + ], + [ + 8.0883575, + 48.715614101 + ], + [ + 8.0895313, + 48.716598201 + ], + [ + 8.0898853, + 48.716898801 + ], + [ + 8.091655, + 48.718323501 + ], + [ + 8.0928775, + 48.719272301 + ], + [ + 8.0944508, + 48.720463801 + ], + [ + 8.0959608, + 48.721596201 + ], + [ + 8.0967198, + 48.722133201 + ], + [ + 8.0973064, + 48.722545301 + ], + [ + 8.0976523, + 48.722783401 + ], + [ + 8.0986974, + 48.723519701 + ], + [ + 8.0994997, + 48.724061201 + ], + [ + 8.1020099, + 48.725830401 + ], + [ + 8.1031745, + 48.726689601 + ], + [ + 8.1035991, + 48.727001201 + ], + [ + 8.1041238, + 48.727401401 + ], + [ + 8.104476, + 48.727668401 + ], + [ + 8.1055768, + 48.728534301 + ], + [ + 8.1062472, + 48.729082501 + ], + [ + 8.1070703, + 48.729766201 + ], + [ + 8.1076189, + 48.730236201 + ], + [ + 8.1080409, + 48.730597701 + ], + [ + 8.1092469, + 48.731680701 + ], + [ + 8.1099137, + 48.732304401 + ], + [ + 8.1108836, + 48.733221201 + ], + [ + 8.1118264, + 48.734147601 + ], + [ + 8.1127743, + 48.735127801 + ], + [ + 8.1139216, + 48.736372001 + ], + [ + 8.1155707, + 48.738254701 + ], + [ + 8.1161401, + 48.738924401 + ], + [ + 8.1168676, + 48.739765801 + ], + [ + 8.1174429, + 48.740428101 + ], + [ + 8.1186917, + 48.741807001 + ], + [ + 8.1196655, + 48.742880101 + ], + [ + 8.1202644, + 48.743487301 + ], + [ + 8.1210359, + 48.744258901 + ], + [ + 8.1217147, + 48.744906701 + ], + [ + 8.1226838, + 48.745820201 + ], + [ + 8.1234643, + 48.746566601 + ], + [ + 8.1241089, + 48.747158001 + ], + [ + 8.1242807, + 48.747315701 + ], + [ + 8.1254784, + 48.748447201 + ], + [ + 8.1273726, + 48.750281201 + ], + [ + 8.128679, + 48.751651101 + ], + [ + 8.1304622, + 48.753635301 + ], + [ + 8.1313178, + 48.754653901 + ], + [ + 8.1322416, + 48.755827401 + ], + [ + 8.1326644, + 48.756357901 + ], + [ + 8.1333217, + 48.757216701 + ], + [ + 8.133903, + 48.758030701 + ], + [ + 8.1347092, + 48.759182701 + ], + [ + 8.1355239, + 48.760434501 + ], + [ + 8.1363664, + 48.761836501 + ], + [ + 8.1373742, + 48.763417001 + ], + [ + 8.1375646, + 48.763717901 + ], + [ + 8.1379402, + 48.764361101 + ], + [ + 8.1383751, + 48.765091601 + ], + [ + 8.1394674, + 48.766859301 + ], + [ + 8.1402781, + 48.768211201 + ], + [ + 8.1413439, + 48.769924701 + ], + [ + 8.1423892, + 48.771655901 + ], + [ + 8.1425639, + 48.771923401 + ], + [ + 8.1432885, + 48.773145501 + ], + [ + 8.1441904, + 48.774628501 + ], + [ + 8.1448451, + 48.775692101 + ], + [ + 8.1451072, + 48.776102401 + ], + [ + 8.1454878, + 48.776698201 + ], + [ + 8.1461182, + 48.777698701 + ], + [ + 8.1467637, + 48.778717801 + ], + [ + 8.1474222, + 48.779716501 + ], + [ + 8.1477614, + 48.780250601 + ], + [ + 8.1481013, + 48.780710201 + ], + [ + 8.1488409, + 48.781754401 + ], + [ + 8.14964, + 48.782767401 + ], + [ + 8.1503882, + 48.783630501 + ], + [ + 8.1508555, + 48.784156501 + ], + [ + 8.1511571, + 48.784480001 + ], + [ + 8.1516516, + 48.784991501 + ], + [ + 8.1521489, + 48.785492001 + ], + [ + 8.1531188, + 48.786421901 + ], + [ + 8.1538098, + 48.787055401 + ], + [ + 8.1541195, + 48.787330101 + ], + [ + 8.1543051, + 48.787494801 + ], + [ + 8.1547153, + 48.787833301 + ], + [ + 8.156118, + 48.788968401 + ], + [ + 8.1586094, + 48.790851201 + ], + [ + 8.1593056, + 48.791363701 + ], + [ + 8.1606437, + 48.792352801 + ], + [ + 8.1617044, + 48.793123601 + ], + [ + 8.1635038, + 48.794452301 + ], + [ + 8.1639165, + 48.794768001 + ], + [ + 8.1645316, + 48.795215601 + ], + [ + 8.1651147, + 48.795667001 + ], + [ + 8.1667514, + 48.796847001 + ], + [ + 8.1670967, + 48.797105801 + ], + [ + 8.1682155, + 48.797921601 + ], + [ + 8.1695564, + 48.798895701 + ], + [ + 8.1714758, + 48.800311101 + ], + [ + 8.172794, + 48.801274801 + ], + [ + 8.1734811, + 48.801777101 + ], + [ + 8.175526, + 48.803289701 + ], + [ + 8.1773473, + 48.804618501 + ], + [ + 8.1784029, + 48.805396301 + ], + [ + 8.1801334, + 48.806667101 + ], + [ + 8.1806418, + 48.807043801 + ], + [ + 8.1813752, + 48.807587301 + ], + [ + 8.1820333, + 48.808074901 + ], + [ + 8.1821278, + 48.808148401 + ], + [ + 8.1836285, + 48.809204601 + ], + [ + 8.1845043, + 48.809823001 + ], + [ + 8.1856272, + 48.810594201 + ], + [ + 8.1865588, + 48.811235601 + ], + [ + 8.1877375, + 48.812046001 + ], + [ + 8.1914436, + 48.814514801 + ], + [ + 8.1939878, + 48.816149101 + ], + [ + 8.1963357, + 48.817614301 + ], + [ + 8.1969191, + 48.817978201 + ], + [ + 8.1988124, + 48.819125301 + ], + [ + 8.2007234, + 48.820268801 + ], + [ + 8.2013562, + 48.820640601 + ], + [ + 8.2022497, + 48.821165701 + ], + [ + 8.2037329, + 48.822022301 + ], + [ + 8.2038571, + 48.822098001 + ], + [ + 8.205036, + 48.822769801 + ], + [ + 8.2051714, + 48.822846301 + ], + [ + 8.2057283, + 48.823163201 + ], + [ + 8.2059107, + 48.823266501 + ], + [ + 8.2064105, + 48.823541401 + ], + [ + 8.2080851, + 48.824462401 + ], + [ + 8.2091617, + 48.825051101 + ], + [ + 8.2095819, + 48.825275001 + ], + [ + 8.2099266, + 48.825457401 + ], + [ + 8.211655, + 48.826431001 + ], + [ + 8.2120336, + 48.826633901 + ], + [ + 8.2132383, + 48.827338601 + ], + [ + 8.2139444, + 48.827778801 + ], + [ + 8.2149194, + 48.828388401 + ], + [ + 8.2163208, + 48.829330201 + ], + [ + 8.2167422, + 48.829634301 + ], + [ + 8.2174224, + 48.830127001 + ], + [ + 8.2181437, + 48.830668901 + ], + [ + 8.2185388, + 48.830986401 + ], + [ + 8.2189196, + 48.831291501 + ], + [ + 8.2194577, + 48.831737401 + ], + [ + 8.2199841, + 48.832184801 + ], + [ + 8.220503, + 48.832640101 + ], + [ + 8.2210124, + 48.833122701 + ], + [ + 8.2214742, + 48.833538701 + ], + [ + 8.2219188, + 48.833971301 + ], + [ + 8.2222861, + 48.834335801 + ], + [ + 8.2227754, + 48.834836301 + ], + [ + 8.2237763, + 48.835934101 + ], + [ + 8.2243439, + 48.836587401 + ], + [ + 8.2245221, + 48.836795901 + ], + [ + 8.2245863, + 48.836871201 + ], + [ + 8.2254393, + 48.837872301 + ], + [ + 8.2261421, + 48.838712901 + ], + [ + 8.2263104, + 48.838914101 + ], + [ + 8.226885, + 48.839601401 + ], + [ + 8.2279036, + 48.840824601 + ], + [ + 8.2281601, + 48.841132601 + ], + [ + 8.2286826, + 48.841756101 + ], + [ + 8.2296493, + 48.842910701 + ], + [ + 8.231312, + 48.844886401 + ], + [ + 8.2316045, + 48.845234001 + ], + [ + 8.2322035, + 48.845953501 + ], + [ + 8.2325109, + 48.846312601 + ], + [ + 8.2332686, + 48.847227701 + ], + [ + 8.2340359, + 48.848145801 + ], + [ + 8.2344799, + 48.848677501 + ], + [ + 8.235562, + 48.849973401 + ], + [ + 8.2377272, + 48.852554201 + ], + [ + 8.2379456, + 48.852814501 + ], + [ + 8.2410372, + 48.856507801 + ], + [ + 8.2418202, + 48.857432101 + ], + [ + 8.2430411, + 48.858916901 + ], + [ + 8.2444625, + 48.860609401 + ], + [ + 8.2446022, + 48.860775801 + ], + [ + 8.2456389, + 48.861995901 + ], + [ + 8.245973, + 48.862389201 + ], + [ + 8.2472464, + 48.863915201 + ], + [ + 8.2476361, + 48.864379501 + ], + [ + 8.2483802, + 48.865272501 + ], + [ + 8.2483952, + 48.865290501 + ], + [ + 8.2488315, + 48.865797901 + ], + [ + 8.2501394, + 48.867353301 + ], + [ + 8.2507416, + 48.868075101 + ], + [ + 8.2509598, + 48.868335301 + ], + [ + 8.2519074, + 48.869465201 + ], + [ + 8.2522713, + 48.869896001 + ], + [ + 8.2532802, + 48.871117201 + ], + [ + 8.2539078, + 48.871865101 + ], + [ + 8.2542759, + 48.872295301 + ], + [ + 8.254939, + 48.873070301 + ], + [ + 8.2556046, + 48.873775501 + ], + [ + 8.2562962, + 48.874479501 + ], + [ + 8.256741, + 48.874907001 + ], + [ + 8.2572076, + 48.875323001 + ], + [ + 8.257628, + 48.875682501 + ], + [ + 8.2580644, + 48.876036101 + ], + [ + 8.2586657, + 48.876492301 + ], + [ + 8.2594869, + 48.877060401 + ], + [ + 8.2599155, + 48.877342001 + ], + [ + 8.26036, + 48.877613801 + ], + [ + 8.2608995, + 48.877936001 + ], + [ + 8.2614687, + 48.878249901 + ], + [ + 8.2622375, + 48.878656401 + ], + [ + 8.2629868, + 48.879017501 + ], + [ + 8.2637898, + 48.879384301 + ], + [ + 8.2645679, + 48.879726701 + ], + [ + 8.2655751, + 48.880147001 + ], + [ + 8.2669741, + 48.880724001 + ], + [ + 8.2687332, + 48.881419301 + ], + [ + 8.2690589, + 48.881548001 + ], + [ + 8.2709983, + 48.882326101 + ], + [ + 8.2729692, + 48.883091801 + ], + [ + 8.2743857, + 48.883639301 + ], + [ + 8.2749387, + 48.883853101 + ], + [ + 8.27693, + 48.884601001 + ], + [ + 8.2788892, + 48.885331501 + ], + [ + 8.2805709, + 48.885946001 + ], + [ + 8.2808639, + 48.886053101 + ], + [ + 8.2818093, + 48.886389801 + ], + [ + 8.282746, + 48.886713601 + ], + [ + 8.2841633, + 48.887182401 + ], + [ + 8.2857942, + 48.887700301 + ], + [ + 8.2865772, + 48.887922501 + ], + [ + 8.2893546, + 48.888723601 + ], + [ + 8.2915969, + 48.889331501 + ], + [ + 8.2925652, + 48.889576501 + ], + [ + 8.2928962, + 48.889661701 + ], + [ + 8.2938913, + 48.889917801 + ], + [ + 8.2967224, + 48.890652201 + ], + [ + 8.2992263, + 48.891317901 + ], + [ + 8.3002512, + 48.891590401 + ], + [ + 8.304814, + 48.892814201 + ], + [ + 8.3056143, + 48.893029801 + ], + [ + 8.3068287, + 48.893357101 + ], + [ + 8.3088571, + 48.893892901 + ], + [ + 8.3121425, + 48.894775301 + ], + [ + 8.3126994, + 48.894924901 + ], + [ + 8.3160975, + 48.895841401 + ], + [ + 8.318181138, + 48.896390528 + ] + ] + } + }, + { + "identifier": "2026-016027--vi-bs.2026-04-08_08-00-00-000.devi-bs.2026-04-08_08-00-00-000_008.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.453152292839185,7.903333069667601,48.89639052754628,8.318181138259035", + "point": "48.453152292839185,7.903333069667601", + "startLcPosition": "38", + "impact": { + "lower": "Karlsruhe-S\u00fcd", + "upper": "Unditz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Unditz - Karlsruhe-S\u00fcd", + "coordinate": { + "lat": 48.453152292839185, + "long": 7.903333069667601 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch, Donnerstag, Freitag, Samstag und Sonntag zwischen dem 08.04.26 und dem 12.04.26 von 08:00 bis 18:00 Uhr.", + "", + "A5: Basel -> Karlsruhe, zwischen 6.7 km hinter Unditz und 8.8 km vor AS Karlsruhe-S\u00fcd", + "", + "L\u00e4nge: 59.97 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "ZEB-Messung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.90333307, + 48.453152293 + ], + [ + 7.9034247, + 48.453432501 + ], + [ + 7.9035406, + 48.453787001 + ], + [ + 7.9038808, + 48.454904901 + ], + [ + 7.9039769, + 48.455220301 + ], + [ + 7.9040657, + 48.455531701 + ], + [ + 7.9042429, + 48.456182101 + ], + [ + 7.9044955, + 48.457215001 + ], + [ + 7.9046409, + 48.457867201 + ], + [ + 7.9047558, + 48.458491401 + ], + [ + 7.9048676, + 48.459140501 + ], + [ + 7.9049535, + 48.459724301 + ], + [ + 7.90506, + 48.460541401 + ], + [ + 7.9051394, + 48.461302701 + ], + [ + 7.9052041, + 48.462398601 + ], + [ + 7.9052375, + 48.463148901 + ], + [ + 7.9052495, + 48.463747401 + ], + [ + 7.905232, + 48.464768901 + ], + [ + 7.905205, + 48.465436401 + ], + [ + 7.9051934, + 48.465599101 + ], + [ + 7.9051226, + 48.466562701 + ], + [ + 7.9049909, + 48.467775001 + ], + [ + 7.9047767, + 48.469196601 + ], + [ + 7.9046937, + 48.469604601 + ], + [ + 7.9046064, + 48.470066501 + ], + [ + 7.9045117, + 48.470513101 + ], + [ + 7.9043329, + 48.471315801 + ], + [ + 7.904201, + 48.471836701 + ], + [ + 7.9038552, + 48.473239101 + ], + [ + 7.9036945, + 48.473899501 + ], + [ + 7.9034993, + 48.474638301 + ], + [ + 7.9033424, + 48.475237901 + ], + [ + 7.9032921, + 48.475442401 + ], + [ + 7.9032088, + 48.475789401 + ], + [ + 7.9029051, + 48.476990401 + ], + [ + 7.9027406, + 48.477647101 + ], + [ + 7.9026157, + 48.478155601 + ], + [ + 7.9023588, + 48.479271801 + ], + [ + 7.9022095, + 48.479888001 + ], + [ + 7.9020773, + 48.480507701 + ], + [ + 7.9019652, + 48.481073801 + ], + [ + 7.9018716, + 48.481614101 + ], + [ + 7.9017863, + 48.482149601 + ], + [ + 7.9017108, + 48.482743801 + ], + [ + 7.9016445, + 48.483271801 + ], + [ + 7.9015831, + 48.483857201 + ], + [ + 7.9015267, + 48.484343201 + ], + [ + 7.9015025, + 48.484883001 + ], + [ + 7.9014943, + 48.485536001 + ], + [ + 7.9014685, + 48.486193401 + ], + [ + 7.9014607, + 48.487480301 + ], + [ + 7.9014983, + 48.488245801 + ], + [ + 7.9015429, + 48.488889701 + ], + [ + 7.9015965, + 48.489534101 + ], + [ + 7.9016565, + 48.490138301 + ], + [ + 7.9018465, + 48.491378301 + ], + [ + 7.9019779, + 48.492080001 + ], + [ + 7.9020972, + 48.492678701 + ], + [ + 7.9022129, + 48.493240401 + ], + [ + 7.9022856, + 48.493559601 + ], + [ + 7.9023824, + 48.493959801 + ], + [ + 7.9025105, + 48.494431601 + ], + [ + 7.9025571, + 48.494616201 + ], + [ + 7.9026106, + 48.494782101 + ], + [ + 7.9026777, + 48.495020001 + ], + [ + 7.9028011, + 48.495525301 + ], + [ + 7.9029987, + 48.496158901 + ], + [ + 7.9033429, + 48.497144701 + ], + [ + 7.9034093, + 48.497321001 + ], + [ + 7.9036258, + 48.497932801 + ], + [ + 7.9045558, + 48.500166301 + ], + [ + 7.9049508, + 48.501032101 + ], + [ + 7.905097, + 48.501383801 + ], + [ + 7.905575, + 48.502369201 + ], + [ + 7.9057864, + 48.502772601 + ], + [ + 7.9061422, + 48.503439301 + ], + [ + 7.9066085, + 48.504299001 + ], + [ + 7.907084, + 48.505208401 + ], + [ + 7.9075982, + 48.506115401 + ], + [ + 7.9079713, + 48.506773101 + ], + [ + 7.9086952, + 48.507897601 + ], + [ + 7.9092807, + 48.508801401 + ], + [ + 7.9096047, + 48.509292001 + ], + [ + 7.9100956, + 48.509965301 + ], + [ + 7.910418, + 48.510431201 + ], + [ + 7.9108418, + 48.511028301 + ], + [ + 7.9111376, + 48.511446201 + ], + [ + 7.9116129, + 48.512084401 + ], + [ + 7.9118578, + 48.512413901 + ], + [ + 7.9120515, + 48.512688301 + ], + [ + 7.9133384, + 48.514327301 + ], + [ + 7.9138274, + 48.514907101 + ], + [ + 7.9141953, + 48.515335601 + ], + [ + 7.914544, + 48.515717301 + ], + [ + 7.9148595, + 48.516076201 + ], + [ + 7.9152481, + 48.516506001 + ], + [ + 7.9158253, + 48.517120901 + ], + [ + 7.916255, + 48.517597001 + ], + [ + 7.9167086, + 48.518082801 + ], + [ + 7.9171147, + 48.518525001 + ], + [ + 7.9177764, + 48.519211301 + ], + [ + 7.9186266, + 48.520042901 + ], + [ + 7.919953, + 48.521367901 + ], + [ + 7.9209384, + 48.522332501 + ], + [ + 7.9220502, + 48.523389201 + ], + [ + 7.9228138, + 48.524139701 + ], + [ + 7.9249505, + 48.526103401 + ], + [ + 7.9259365, + 48.527012301 + ], + [ + 7.9266215, + 48.527624301 + ], + [ + 7.927128, + 48.528066401 + ], + [ + 7.9279929, + 48.528824001 + ], + [ + 7.9284825, + 48.529249101 + ], + [ + 7.928795, + 48.529554301 + ], + [ + 7.9294034, + 48.530117301 + ], + [ + 7.9303033, + 48.530905401 + ], + [ + 7.9311107, + 48.531614801 + ], + [ + 7.9328714, + 48.533133401 + ], + [ + 7.9340574, + 48.534156901 + ], + [ + 7.9352323, + 48.535145901 + ], + [ + 7.9366866, + 48.536407101 + ], + [ + 7.9379949, + 48.537535601 + ], + [ + 7.9397014, + 48.538984301 + ], + [ + 7.9408039, + 48.539933101 + ], + [ + 7.9415054, + 48.540523701 + ], + [ + 7.9424336, + 48.541319901 + ], + [ + 7.9429482, + 48.541759701 + ], + [ + 7.9436653, + 48.542387901 + ], + [ + 7.9444053, + 48.543062301 + ], + [ + 7.9454661, + 48.544076201 + ], + [ + 7.9463692, + 48.545030201 + ], + [ + 7.9471854, + 48.545899501 + ], + [ + 7.9479508, + 48.546784601 + ], + [ + 7.9484072, + 48.547365701 + ], + [ + 7.948814, + 48.547940401 + ], + [ + 7.9490507, + 48.548251801 + ], + [ + 7.9492328, + 48.548512301 + ], + [ + 7.9495294, + 48.548929801 + ], + [ + 7.9497999, + 48.549326901 + ], + [ + 7.9501594, + 48.549889901 + ], + [ + 7.9505407, + 48.550509801 + ], + [ + 7.950855, + 48.551050001 + ], + [ + 7.951178, + 48.551664301 + ], + [ + 7.9515337, + 48.552378701 + ], + [ + 7.9518873, + 48.553056001 + ], + [ + 7.9521027, + 48.553463701 + ], + [ + 7.952314, + 48.553902701 + ], + [ + 7.9527524, + 48.554789101 + ], + [ + 7.9529902, + 48.555263801 + ], + [ + 7.9532344, + 48.555759701 + ], + [ + 7.9535447, + 48.556389101 + ], + [ + 7.9540066, + 48.557301201 + ], + [ + 7.9543359, + 48.557940601 + ], + [ + 7.9545778, + 48.558394501 + ], + [ + 7.9549267, + 48.559034101 + ], + [ + 7.9551994, + 48.559553701 + ], + [ + 7.9554695, + 48.560055101 + ], + [ + 7.9557343, + 48.560525301 + ], + [ + 7.9560568, + 48.561085401 + ], + [ + 7.9564401, + 48.561759401 + ], + [ + 7.9580529, + 48.564537001 + ], + [ + 7.9590235, + 48.566086201 + ], + [ + 7.9592578, + 48.566432801 + ], + [ + 7.9597798, + 48.567209801 + ], + [ + 7.9607534, + 48.568725501 + ], + [ + 7.961448, + 48.569689701 + ], + [ + 7.9624352, + 48.571052301 + ], + [ + 7.9631755, + 48.572120801 + ], + [ + 7.963859, + 48.573065001 + ], + [ + 7.9647815, + 48.574346101 + ], + [ + 7.9654192, + 48.575218501 + ], + [ + 7.966005, + 48.576023601 + ], + [ + 7.9679981, + 48.578622401 + ], + [ + 7.9689695, + 48.579808501 + ], + [ + 7.9699891, + 48.581076501 + ], + [ + 7.9707994, + 48.582083801 + ], + [ + 7.9714506, + 48.582856001 + ], + [ + 7.9721089, + 48.583620001 + ], + [ + 7.9726829, + 48.584285601 + ], + [ + 7.9733896, + 48.585106701 + ], + [ + 7.9739449, + 48.585746901 + ], + [ + 7.9745938, + 48.586503301 + ], + [ + 7.9752633, + 48.587249401 + ], + [ + 7.9759235, + 48.587983301 + ], + [ + 7.9765598, + 48.588664801 + ], + [ + 7.9777782, + 48.589976201 + ], + [ + 7.9787072, + 48.590973001 + ], + [ + 7.9799383, + 48.592242101 + ], + [ + 7.9810008, + 48.593344001 + ], + [ + 7.9816426, + 48.594001601 + ], + [ + 7.9823139, + 48.594661001 + ], + [ + 7.9833752, + 48.595688001 + ], + [ + 7.9845768, + 48.596904501 + ], + [ + 7.9858573, + 48.598135101 + ], + [ + 7.9872724, + 48.599479201 + ], + [ + 7.9881681, + 48.600307901 + ], + [ + 7.9889334, + 48.601002001 + ], + [ + 7.990105, + 48.602067901 + ], + [ + 7.9910067, + 48.602860301 + ], + [ + 7.9918284, + 48.603558201 + ], + [ + 7.9926768, + 48.604293801 + ], + [ + 7.9934246, + 48.604930601 + ], + [ + 7.9941331, + 48.605556801 + ], + [ + 7.9948818, + 48.606185601 + ], + [ + 7.9955049, + 48.606711601 + ], + [ + 7.9966173, + 48.607660201 + ], + [ + 7.9983647, + 48.609063901 + ], + [ + 7.9995698, + 48.609990101 + ], + [ + 7.9998485, + 48.610206801 + ], + [ + 8.0006521, + 48.610807701 + ], + [ + 8.0014749, + 48.611426401 + ], + [ + 8.0022492, + 48.611991501 + ], + [ + 8.0029095, + 48.612488501 + ], + [ + 8.0041628, + 48.613433801 + ], + [ + 8.0052539, + 48.614247801 + ], + [ + 8.0064795, + 48.615182301 + ], + [ + 8.0071543, + 48.615718201 + ], + [ + 8.0082203, + 48.616587601 + ], + [ + 8.009151, + 48.617362801 + ], + [ + 8.0096827, + 48.617817001 + ], + [ + 8.0103686, + 48.618400401 + ], + [ + 8.0110414, + 48.618984001 + ], + [ + 8.0116168, + 48.619511601 + ], + [ + 8.0123614, + 48.620190001 + ], + [ + 8.0130303, + 48.620811201 + ], + [ + 8.0135765, + 48.621339401 + ], + [ + 8.0143696, + 48.622117001 + ], + [ + 8.0155425, + 48.623334601 + ], + [ + 8.016402, + 48.624259601 + ], + [ + 8.0173774, + 48.625328801 + ], + [ + 8.0180316, + 48.626071201 + ], + [ + 8.0188319, + 48.627030201 + ], + [ + 8.0198762, + 48.628281401 + ], + [ + 8.0203502, + 48.628878801 + ], + [ + 8.0208617, + 48.629563501 + ], + [ + 8.0215913, + 48.630504901 + ], + [ + 8.0222728, + 48.631455301 + ], + [ + 8.0228544, + 48.632244401 + ], + [ + 8.0233082, + 48.632918901 + ], + [ + 8.0238303, + 48.633709701 + ], + [ + 8.0244225, + 48.634695701 + ], + [ + 8.0248395, + 48.635427401 + ], + [ + 8.0252737, + 48.636181001 + ], + [ + 8.0256764, + 48.636956101 + ], + [ + 8.025761, + 48.637106701 + ], + [ + 8.0264283, + 48.638335601 + ], + [ + 8.0267613, + 48.638961901 + ], + [ + 8.027046, + 48.639522501 + ], + [ + 8.0273678, + 48.640196001 + ], + [ + 8.0275229, + 48.640526301 + ], + [ + 8.0281352, + 48.641828501 + ], + [ + 8.0285735, + 48.642768101 + ], + [ + 8.0287462, + 48.643128801 + ], + [ + 8.0289095, + 48.643473201 + ], + [ + 8.0291076, + 48.643883701 + ], + [ + 8.0292772, + 48.644217101 + ], + [ + 8.0294957, + 48.644650401 + ], + [ + 8.029914, + 48.645537601 + ], + [ + 8.0301672, + 48.646092401 + ], + [ + 8.0303918, + 48.646566101 + ], + [ + 8.0310859, + 48.647959201 + ], + [ + 8.0315445, + 48.648932001 + ], + [ + 8.03215, + 48.650188701 + ], + [ + 8.0327665, + 48.651429001 + ], + [ + 8.0334723, + 48.652756101 + ], + [ + 8.0339379, + 48.653588501 + ], + [ + 8.0343414, + 48.654243401 + ], + [ + 8.0350422, + 48.655405501 + ], + [ + 8.0357624, + 48.656529801 + ], + [ + 8.0362537, + 48.657243701 + ], + [ + 8.03701, + 48.658244401 + ], + [ + 8.0376853, + 48.659077701 + ], + [ + 8.0381645, + 48.659669201 + ], + [ + 8.0386314, + 48.660219001 + ], + [ + 8.0391498, + 48.660759801 + ], + [ + 8.0395271, + 48.661167401 + ], + [ + 8.0401415, + 48.661834801 + ], + [ + 8.04064, + 48.662354401 + ], + [ + 8.0412599, + 48.662965101 + ], + [ + 8.0418811, + 48.663577001 + ], + [ + 8.0425331, + 48.664192901 + ], + [ + 8.0432869, + 48.664847201 + ], + [ + 8.0440435, + 48.665501901 + ], + [ + 8.0449537, + 48.666272701 + ], + [ + 8.0458213, + 48.666988401 + ], + [ + 8.0464992, + 48.667551301 + ], + [ + 8.0472266, + 48.668150101 + ], + [ + 8.0479574, + 48.668748901 + ], + [ + 8.0483859, + 48.669108401 + ], + [ + 8.0491192, + 48.669718301 + ], + [ + 8.0498187, + 48.670305001 + ], + [ + 8.0503796, + 48.670768901 + ], + [ + 8.0509016, + 48.671211201 + ], + [ + 8.0516053, + 48.671817301 + ], + [ + 8.0523312, + 48.672439301 + ], + [ + 8.0534117, + 48.673416401 + ], + [ + 8.0542378, + 48.674170201 + ], + [ + 8.0556568, + 48.675497201 + ], + [ + 8.0564283, + 48.676244801 + ], + [ + 8.0571681, + 48.676943801 + ], + [ + 8.0579218, + 48.677707601 + ], + [ + 8.0593828, + 48.679211301 + ], + [ + 8.0610323, + 48.681007501 + ], + [ + 8.062071, + 48.682173001 + ], + [ + 8.0629269, + 48.683216901 + ], + [ + 8.0637341, + 48.684196301 + ], + [ + 8.0656678, + 48.686724801 + ], + [ + 8.0665601, + 48.687956701 + ], + [ + 8.0671592, + 48.688821501 + ], + [ + 8.0679133, + 48.689956501 + ], + [ + 8.0687954, + 48.691311701 + ], + [ + 8.0695376, + 48.692538901 + ], + [ + 8.0704976, + 48.694170001 + ], + [ + 8.0710184, + 48.695073201 + ], + [ + 8.0717867, + 48.696388401 + ], + [ + 8.072561, + 48.697730701 + ], + [ + 8.0734026, + 48.699151901 + ], + [ + 8.0740589, + 48.700202601 + ], + [ + 8.0747444, + 48.701262101 + ], + [ + 8.0755077, + 48.702348101 + ], + [ + 8.0758738, + 48.702843101 + ], + [ + 8.0765249, + 48.703669401 + ], + [ + 8.0772609, + 48.704586401 + ], + [ + 8.0779918, + 48.705433601 + ], + [ + 8.0788579, + 48.706417501 + ], + [ + 8.0793124, + 48.706912601 + ], + [ + 8.0800624, + 48.707719001 + ], + [ + 8.0808117, + 48.708503601 + ], + [ + 8.0817506, + 48.709461301 + ], + [ + 8.0826197, + 48.710335101 + ], + [ + 8.0833357, + 48.711045701 + ], + [ + 8.0843129, + 48.712017601 + ], + [ + 8.0845491, + 48.712236901 + ], + [ + 8.0860175, + 48.713566701 + ], + [ + 8.0874782, + 48.714856001 + ], + [ + 8.0883575, + 48.715614101 + ], + [ + 8.0895313, + 48.716598201 + ], + [ + 8.0898853, + 48.716898801 + ], + [ + 8.091655, + 48.718323501 + ], + [ + 8.0928775, + 48.719272301 + ], + [ + 8.0944508, + 48.720463801 + ], + [ + 8.0959608, + 48.721596201 + ], + [ + 8.0967198, + 48.722133201 + ], + [ + 8.0973064, + 48.722545301 + ], + [ + 8.0976523, + 48.722783401 + ], + [ + 8.0986974, + 48.723519701 + ], + [ + 8.0994997, + 48.724061201 + ], + [ + 8.1020099, + 48.725830401 + ], + [ + 8.1031745, + 48.726689601 + ], + [ + 8.1035991, + 48.727001201 + ], + [ + 8.1041238, + 48.727401401 + ], + [ + 8.104476, + 48.727668401 + ], + [ + 8.1055768, + 48.728534301 + ], + [ + 8.1062472, + 48.729082501 + ], + [ + 8.1070703, + 48.729766201 + ], + [ + 8.1076189, + 48.730236201 + ], + [ + 8.1080409, + 48.730597701 + ], + [ + 8.1092469, + 48.731680701 + ], + [ + 8.1099137, + 48.732304401 + ], + [ + 8.1108836, + 48.733221201 + ], + [ + 8.1118264, + 48.734147601 + ], + [ + 8.1127743, + 48.735127801 + ], + [ + 8.1139216, + 48.736372001 + ], + [ + 8.1155707, + 48.738254701 + ], + [ + 8.1161401, + 48.738924401 + ], + [ + 8.1168676, + 48.739765801 + ], + [ + 8.1174429, + 48.740428101 + ], + [ + 8.1186917, + 48.741807001 + ], + [ + 8.1196655, + 48.742880101 + ], + [ + 8.1202644, + 48.743487301 + ], + [ + 8.1210359, + 48.744258901 + ], + [ + 8.1217147, + 48.744906701 + ], + [ + 8.1226838, + 48.745820201 + ], + [ + 8.1234643, + 48.746566601 + ], + [ + 8.1241089, + 48.747158001 + ], + [ + 8.1242807, + 48.747315701 + ], + [ + 8.1254784, + 48.748447201 + ], + [ + 8.1273726, + 48.750281201 + ], + [ + 8.128679, + 48.751651101 + ], + [ + 8.1304622, + 48.753635301 + ], + [ + 8.1313178, + 48.754653901 + ], + [ + 8.1322416, + 48.755827401 + ], + [ + 8.1326644, + 48.756357901 + ], + [ + 8.1333217, + 48.757216701 + ], + [ + 8.133903, + 48.758030701 + ], + [ + 8.1347092, + 48.759182701 + ], + [ + 8.1355239, + 48.760434501 + ], + [ + 8.1363664, + 48.761836501 + ], + [ + 8.1373742, + 48.763417001 + ], + [ + 8.1375646, + 48.763717901 + ], + [ + 8.1379402, + 48.764361101 + ], + [ + 8.1383751, + 48.765091601 + ], + [ + 8.1394674, + 48.766859301 + ], + [ + 8.1402781, + 48.768211201 + ], + [ + 8.1413439, + 48.769924701 + ], + [ + 8.1423892, + 48.771655901 + ], + [ + 8.1425639, + 48.771923401 + ], + [ + 8.1432885, + 48.773145501 + ], + [ + 8.1441904, + 48.774628501 + ], + [ + 8.1448451, + 48.775692101 + ], + [ + 8.1451072, + 48.776102401 + ], + [ + 8.1454878, + 48.776698201 + ], + [ + 8.1461182, + 48.777698701 + ], + [ + 8.1467637, + 48.778717801 + ], + [ + 8.1474222, + 48.779716501 + ], + [ + 8.1477614, + 48.780250601 + ], + [ + 8.1481013, + 48.780710201 + ], + [ + 8.1488409, + 48.781754401 + ], + [ + 8.14964, + 48.782767401 + ], + [ + 8.1503882, + 48.783630501 + ], + [ + 8.1508555, + 48.784156501 + ], + [ + 8.1511571, + 48.784480001 + ], + [ + 8.1516516, + 48.784991501 + ], + [ + 8.1521489, + 48.785492001 + ], + [ + 8.1531188, + 48.786421901 + ], + [ + 8.1538098, + 48.787055401 + ], + [ + 8.1541195, + 48.787330101 + ], + [ + 8.1543051, + 48.787494801 + ], + [ + 8.1547153, + 48.787833301 + ], + [ + 8.156118, + 48.788968401 + ], + [ + 8.1586094, + 48.790851201 + ], + [ + 8.1593056, + 48.791363701 + ], + [ + 8.1606437, + 48.792352801 + ], + [ + 8.1617044, + 48.793123601 + ], + [ + 8.1635038, + 48.794452301 + ], + [ + 8.1639165, + 48.794768001 + ], + [ + 8.1645316, + 48.795215601 + ], + [ + 8.1651147, + 48.795667001 + ], + [ + 8.1667514, + 48.796847001 + ], + [ + 8.1670967, + 48.797105801 + ], + [ + 8.1682155, + 48.797921601 + ], + [ + 8.1695564, + 48.798895701 + ], + [ + 8.1714758, + 48.800311101 + ], + [ + 8.172794, + 48.801274801 + ], + [ + 8.1734811, + 48.801777101 + ], + [ + 8.175526, + 48.803289701 + ], + [ + 8.1773473, + 48.804618501 + ], + [ + 8.1784029, + 48.805396301 + ], + [ + 8.1801334, + 48.806667101 + ], + [ + 8.1806418, + 48.807043801 + ], + [ + 8.1813752, + 48.807587301 + ], + [ + 8.1820333, + 48.808074901 + ], + [ + 8.1821278, + 48.808148401 + ], + [ + 8.1836285, + 48.809204601 + ], + [ + 8.1845043, + 48.809823001 + ], + [ + 8.1856272, + 48.810594201 + ], + [ + 8.1865588, + 48.811235601 + ], + [ + 8.1877375, + 48.812046001 + ], + [ + 8.1914436, + 48.814514801 + ], + [ + 8.1939878, + 48.816149101 + ], + [ + 8.1963357, + 48.817614301 + ], + [ + 8.1969191, + 48.817978201 + ], + [ + 8.1988124, + 48.819125301 + ], + [ + 8.2007234, + 48.820268801 + ], + [ + 8.2013562, + 48.820640601 + ], + [ + 8.2022497, + 48.821165701 + ], + [ + 8.2037329, + 48.822022301 + ], + [ + 8.2038571, + 48.822098001 + ], + [ + 8.205036, + 48.822769801 + ], + [ + 8.2051714, + 48.822846301 + ], + [ + 8.2057283, + 48.823163201 + ], + [ + 8.2059107, + 48.823266501 + ], + [ + 8.2064105, + 48.823541401 + ], + [ + 8.2080851, + 48.824462401 + ], + [ + 8.2091617, + 48.825051101 + ], + [ + 8.2095819, + 48.825275001 + ], + [ + 8.2099266, + 48.825457401 + ], + [ + 8.211655, + 48.826431001 + ], + [ + 8.2120336, + 48.826633901 + ], + [ + 8.2132383, + 48.827338601 + ], + [ + 8.2139444, + 48.827778801 + ], + [ + 8.2149194, + 48.828388401 + ], + [ + 8.2163208, + 48.829330201 + ], + [ + 8.2167422, + 48.829634301 + ], + [ + 8.2174224, + 48.830127001 + ], + [ + 8.2181437, + 48.830668901 + ], + [ + 8.2185388, + 48.830986401 + ], + [ + 8.2189196, + 48.831291501 + ], + [ + 8.2194577, + 48.831737401 + ], + [ + 8.2199841, + 48.832184801 + ], + [ + 8.220503, + 48.832640101 + ], + [ + 8.2210124, + 48.833122701 + ], + [ + 8.2214742, + 48.833538701 + ], + [ + 8.2219188, + 48.833971301 + ], + [ + 8.2222861, + 48.834335801 + ], + [ + 8.2227754, + 48.834836301 + ], + [ + 8.2237763, + 48.835934101 + ], + [ + 8.2243439, + 48.836587401 + ], + [ + 8.2245221, + 48.836795901 + ], + [ + 8.2245863, + 48.836871201 + ], + [ + 8.2254393, + 48.837872301 + ], + [ + 8.2261421, + 48.838712901 + ], + [ + 8.2263104, + 48.838914101 + ], + [ + 8.226885, + 48.839601401 + ], + [ + 8.2279036, + 48.840824601 + ], + [ + 8.2281601, + 48.841132601 + ], + [ + 8.2286826, + 48.841756101 + ], + [ + 8.2296493, + 48.842910701 + ], + [ + 8.231312, + 48.844886401 + ], + [ + 8.2316045, + 48.845234001 + ], + [ + 8.2322035, + 48.845953501 + ], + [ + 8.2325109, + 48.846312601 + ], + [ + 8.2332686, + 48.847227701 + ], + [ + 8.2340359, + 48.848145801 + ], + [ + 8.2344799, + 48.848677501 + ], + [ + 8.235562, + 48.849973401 + ], + [ + 8.2377272, + 48.852554201 + ], + [ + 8.2379456, + 48.852814501 + ], + [ + 8.2410372, + 48.856507801 + ], + [ + 8.2418202, + 48.857432101 + ], + [ + 8.2430411, + 48.858916901 + ], + [ + 8.2444625, + 48.860609401 + ], + [ + 8.2446022, + 48.860775801 + ], + [ + 8.2456389, + 48.861995901 + ], + [ + 8.245973, + 48.862389201 + ], + [ + 8.2472464, + 48.863915201 + ], + [ + 8.2476361, + 48.864379501 + ], + [ + 8.2483802, + 48.865272501 + ], + [ + 8.2483952, + 48.865290501 + ], + [ + 8.2488315, + 48.865797901 + ], + [ + 8.2501394, + 48.867353301 + ], + [ + 8.2507416, + 48.868075101 + ], + [ + 8.2509598, + 48.868335301 + ], + [ + 8.2519074, + 48.869465201 + ], + [ + 8.2522713, + 48.869896001 + ], + [ + 8.2532802, + 48.871117201 + ], + [ + 8.2539078, + 48.871865101 + ], + [ + 8.2542759, + 48.872295301 + ], + [ + 8.254939, + 48.873070301 + ], + [ + 8.2556046, + 48.873775501 + ], + [ + 8.2562962, + 48.874479501 + ], + [ + 8.256741, + 48.874907001 + ], + [ + 8.2572076, + 48.875323001 + ], + [ + 8.257628, + 48.875682501 + ], + [ + 8.2580644, + 48.876036101 + ], + [ + 8.2586657, + 48.876492301 + ], + [ + 8.2594869, + 48.877060401 + ], + [ + 8.2599155, + 48.877342001 + ], + [ + 8.26036, + 48.877613801 + ], + [ + 8.2608995, + 48.877936001 + ], + [ + 8.2614687, + 48.878249901 + ], + [ + 8.2622375, + 48.878656401 + ], + [ + 8.2629868, + 48.879017501 + ], + [ + 8.2637898, + 48.879384301 + ], + [ + 8.2645679, + 48.879726701 + ], + [ + 8.2655751, + 48.880147001 + ], + [ + 8.2669741, + 48.880724001 + ], + [ + 8.2687332, + 48.881419301 + ], + [ + 8.2690589, + 48.881548001 + ], + [ + 8.2709983, + 48.882326101 + ], + [ + 8.2729692, + 48.883091801 + ], + [ + 8.2743857, + 48.883639301 + ], + [ + 8.2749387, + 48.883853101 + ], + [ + 8.27693, + 48.884601001 + ], + [ + 8.2788892, + 48.885331501 + ], + [ + 8.2805709, + 48.885946001 + ], + [ + 8.2808639, + 48.886053101 + ], + [ + 8.2818093, + 48.886389801 + ], + [ + 8.282746, + 48.886713601 + ], + [ + 8.2841633, + 48.887182401 + ], + [ + 8.2857942, + 48.887700301 + ], + [ + 8.2865772, + 48.887922501 + ], + [ + 8.2893546, + 48.888723601 + ], + [ + 8.2915969, + 48.889331501 + ], + [ + 8.2925652, + 48.889576501 + ], + [ + 8.2928962, + 48.889661701 + ], + [ + 8.2938913, + 48.889917801 + ], + [ + 8.2967224, + 48.890652201 + ], + [ + 8.2992263, + 48.891317901 + ], + [ + 8.3002512, + 48.891590401 + ], + [ + 8.304814, + 48.892814201 + ], + [ + 8.3056143, + 48.893029801 + ], + [ + 8.3068287, + 48.893357101 + ], + [ + 8.3088571, + 48.893892901 + ], + [ + 8.3121425, + 48.894775301 + ], + [ + 8.3126994, + 48.894924901 + ], + [ + 8.3160975, + 48.895841401 + ], + [ + 8.318181138, + 48.896390528 + ] + ] + } + }, + { + "identifier": "2026-016746--vi-bs.2026-04-20_10-00-00-000.devi-zus.2026-04-20_10-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.61700610475686,8.00872274827011,48.6278894454559,8.019549052397068", + "point": "48.61700610475686,8.00872274827011", + "startLcPosition": "43", + "impact": { + "lower": "Achern", + "upper": "Renchtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Renchtal - Achern", + "coordinate": { + "lat": 48.61700610475686, + "long": 8.00872274827011 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 12:00 bis 15:30 Uhr", + "", + "A5: Basel -> Karlsruhe, zwischen 7.1 km hinter Renchtal und 1.9 km vor AS Achern", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 von Renchtal (Raststaette) nach Achern (AS) - Bauwerkspr\u00fcfung Beschilderung Autohof Achern" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.008722748, + 48.617006105 + ], + [ + 8.009151, + 48.617362801 + ], + [ + 8.0096827, + 48.617817001 + ], + [ + 8.0103686, + 48.618400401 + ], + [ + 8.0110414, + 48.618984001 + ], + [ + 8.0116168, + 48.619511601 + ], + [ + 8.0123614, + 48.620190001 + ], + [ + 8.0130303, + 48.620811201 + ], + [ + 8.0135765, + 48.621339401 + ], + [ + 8.0143696, + 48.622117001 + ], + [ + 8.0155425, + 48.623334601 + ], + [ + 8.016402, + 48.624259601 + ], + [ + 8.0173774, + 48.625328801 + ], + [ + 8.0180316, + 48.626071201 + ], + [ + 8.0188319, + 48.627030201 + ], + [ + 8.019549052, + 48.627889445 + ] + ] + } + }, + { + "identifier": "2026-016017--vi-bs.2026-04-07_19-00-00-000.devi-zus.2026-04-07_19-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.66522040404166,8.043718186753361,48.722252268097094,8.096889283637505", + "point": "48.66522040404166,8.043718186753361", + "startLcPosition": "45", + "impact": { + "lower": "B\u00fchl", + "upper": "Feldmatt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 | Feldmatt - B\u00fchl", + "coordinate": { + "lat": 48.66522040404166, + "long": 8.043718186753361 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 07.04.26 und dem 15.04.26 von 19:00 bis 20:00 Uhr.", + "Jeden Tag zwischen dem 08.04.26 und dem 16.04.26 von 05:00 bis 05:30 Uhr.", + "", + "A5: Basel -> Karlsruhe, zwischen 0.9 km hinter Feldmatt und 0.6 km vor AS B\u00fchl", + "", + "L\u00e4nge: 7.5 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Fugenpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.043718187, + 48.665220404 + ], + [ + 8.0440435, + 48.665501901 + ], + [ + 8.0449537, + 48.666272701 + ], + [ + 8.0458213, + 48.666988401 + ], + [ + 8.0464992, + 48.667551301 + ], + [ + 8.0472266, + 48.668150101 + ], + [ + 8.0479574, + 48.668748901 + ], + [ + 8.0483859, + 48.669108401 + ], + [ + 8.0491192, + 48.669718301 + ], + [ + 8.0498187, + 48.670305001 + ], + [ + 8.0503796, + 48.670768901 + ], + [ + 8.0509016, + 48.671211201 + ], + [ + 8.0516053, + 48.671817301 + ], + [ + 8.0523312, + 48.672439301 + ], + [ + 8.0534117, + 48.673416401 + ], + [ + 8.0542378, + 48.674170201 + ], + [ + 8.0556568, + 48.675497201 + ], + [ + 8.0564283, + 48.676244801 + ], + [ + 8.0571681, + 48.676943801 + ], + [ + 8.0579218, + 48.677707601 + ], + [ + 8.0593828, + 48.679211301 + ], + [ + 8.0610323, + 48.681007501 + ], + [ + 8.062071, + 48.682173001 + ], + [ + 8.0629269, + 48.683216901 + ], + [ + 8.0637341, + 48.684196301 + ], + [ + 8.0656678, + 48.686724801 + ], + [ + 8.0665601, + 48.687956701 + ], + [ + 8.0671592, + 48.688821501 + ], + [ + 8.0679133, + 48.689956501 + ], + [ + 8.0687954, + 48.691311701 + ], + [ + 8.0695376, + 48.692538901 + ], + [ + 8.0704976, + 48.694170001 + ], + [ + 8.0710184, + 48.695073201 + ], + [ + 8.0717867, + 48.696388401 + ], + [ + 8.072561, + 48.697730701 + ], + [ + 8.0734026, + 48.699151901 + ], + [ + 8.0740589, + 48.700202601 + ], + [ + 8.0747444, + 48.701262101 + ], + [ + 8.0755077, + 48.702348101 + ], + [ + 8.0758738, + 48.702843101 + ], + [ + 8.0765249, + 48.703669401 + ], + [ + 8.0772609, + 48.704586401 + ], + [ + 8.0779918, + 48.705433601 + ], + [ + 8.0788579, + 48.706417501 + ], + [ + 8.0793124, + 48.706912601 + ], + [ + 8.0800624, + 48.707719001 + ], + [ + 8.0808117, + 48.708503601 + ], + [ + 8.0817506, + 48.709461301 + ], + [ + 8.0826197, + 48.710335101 + ], + [ + 8.0833357, + 48.711045701 + ], + [ + 8.0843129, + 48.712017601 + ], + [ + 8.0845491, + 48.712236901 + ], + [ + 8.0860175, + 48.713566701 + ], + [ + 8.0874782, + 48.714856001 + ], + [ + 8.0883575, + 48.715614101 + ], + [ + 8.0895313, + 48.716598201 + ], + [ + 8.0898853, + 48.716898801 + ], + [ + 8.091655, + 48.718323501 + ], + [ + 8.0928775, + 48.719272301 + ], + [ + 8.0944508, + 48.720463801 + ], + [ + 8.0959608, + 48.721596201 + ], + [ + 8.0967198, + 48.722133201 + ], + [ + 8.096889284, + 48.722252268 + ] + ] + } + }, + { + "identifier": "2026-016746--vi-bs.2026-04-20_10-00-00-000.devi-zus.2026-04-20_10-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.66777239192768,8.046487527901927,48.656865882260526,8.0357745377921", + "point": "48.66777239192768,8.046487527901927", + "startLcPosition": "46", + "impact": { + "lower": "Achern", + "upper": "Brachfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Brachfeld - Achern", + "coordinate": { + "lat": 48.66777239192768, + "long": 8.046487527901927 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 10:00 bis 13:00 Uhr", + "", + "A5: Karlsruhe -> Basel, zwischen 1.1 km hinter Brachfeld und 1.5 km vor AS Achern", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 von Renchtal (Raststaette) nach Achern (AS) - Bauwerkspr\u00fcfung Beschilderung Autohof Achern" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.046487528, + 48.667772392 + ], + [ + 8.0463207, + 48.667637401 + ], + [ + 8.0456439, + 48.667064201 + ], + [ + 8.0447821, + 48.666361801 + ], + [ + 8.0438684, + 48.665590101 + ], + [ + 8.0431016, + 48.664923101 + ], + [ + 8.0423507, + 48.664265501 + ], + [ + 8.0417122, + 48.663658301 + ], + [ + 8.0410785, + 48.663045201 + ], + [ + 8.0404798, + 48.662434801 + ], + [ + 8.0399505, + 48.661894801 + ], + [ + 8.0393561, + 48.661263701 + ], + [ + 8.0389882, + 48.660867601 + ], + [ + 8.0386821, + 48.660546601 + ], + [ + 8.0379786, + 48.659720001 + ], + [ + 8.0375134, + 48.659153701 + ], + [ + 8.0368413, + 48.658315201 + ], + [ + 8.0360589, + 48.657278501 + ], + [ + 8.035774538, + 48.656865882 + ] + ] + } + }, + { + "identifier": "2026-016017--vi-bs.2026-04-07_19-00-00-000.devi-zus.2026-04-07_19-00-00-000_002.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.72235777358783,8.096719165413921,48.66530108629581,8.043536138287044", + "point": "48.72235777358783,8.096719165413921", + "startLcPosition": "47", + "impact": { + "lower": "Feldmatt", + "upper": "B\u00fchl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | B\u00fchl - Feldmatt", + "coordinate": { + "lat": 48.72235777358783, + "long": 8.096719165413921 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 07.04.26 und dem 15.04.26 von 19:00 bis 20:00 Uhr.", + "Jeden Tag zwischen dem 08.04.26 und dem 16.04.26 von 05:00 bis 05:30 Uhr.", + "", + "A5: Karlsruhe -> Basel, zwischen 0.6 km hinter AS B\u00fchl und 0.9 km vor Feldmatt", + "", + "L\u00e4nge: 7.5 km | Maximale Durchfahrtsbreite: 11.5 m", + "", + "Fugenpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.096719165, + 48.722357774 + ], + [ + 8.0961438, + 48.721949701 + ], + [ + 8.0959685, + 48.721825401 + ], + [ + 8.0943114, + 48.720573501 + ], + [ + 8.0927202, + 48.719364801 + ], + [ + 8.0914795, + 48.718395501 + ], + [ + 8.0896646, + 48.716931301 + ], + [ + 8.0893309, + 48.716664701 + ], + [ + 8.0881848, + 48.715682501 + ], + [ + 8.0872961, + 48.714922501 + ], + [ + 8.0858046, + 48.713604101 + ], + [ + 8.0843417, + 48.712281901 + ], + [ + 8.0840998, + 48.712054701 + ], + [ + 8.0831745, + 48.711133401 + ], + [ + 8.0824345, + 48.710407901 + ], + [ + 8.0815689, + 48.709519601 + ], + [ + 8.0806363, + 48.708580601 + ], + [ + 8.0798757, + 48.707788701 + ], + [ + 8.0791243, + 48.706975801 + ], + [ + 8.0787038, + 48.706515301 + ], + [ + 8.0778125, + 48.705500401 + ], + [ + 8.0770806, + 48.704662501 + ], + [ + 8.0763111, + 48.703709501 + ], + [ + 8.0757039, + 48.702912201 + ], + [ + 8.0753198, + 48.702401501 + ], + [ + 8.0745524, + 48.701308501 + ], + [ + 8.0738713, + 48.700266601 + ], + [ + 8.0732262, + 48.699199201 + ], + [ + 8.0723671, + 48.697786401 + ], + [ + 8.0715915, + 48.696443701 + ], + [ + 8.0708227, + 48.695135601 + ], + [ + 8.0700226, + 48.693792401 + ], + [ + 8.0693384, + 48.692591401 + ], + [ + 8.0685998, + 48.691372101 + ], + [ + 8.0677167, + 48.690011801 + ], + [ + 8.0669605, + 48.688866101 + ], + [ + 8.0663585, + 48.688007901 + ], + [ + 8.0654816, + 48.686793601 + ], + [ + 8.0646901, + 48.685761501 + ], + [ + 8.0641013, + 48.684993801 + ], + [ + 8.0627387, + 48.683281901 + ], + [ + 8.0618761, + 48.682238201 + ], + [ + 8.0608354, + 48.681066101 + ], + [ + 8.0592076, + 48.679295001 + ], + [ + 8.0577555, + 48.677799701 + ], + [ + 8.0570238, + 48.677048501 + ], + [ + 8.0554666, + 48.675563601 + ], + [ + 8.0540573, + 48.674251901 + ], + [ + 8.0532509, + 48.673523201 + ], + [ + 8.0522348, + 48.672606301 + ], + [ + 8.0514372, + 48.671905401 + ], + [ + 8.050706, + 48.671275701 + ], + [ + 8.0501973, + 48.670841401 + ], + [ + 8.0496563, + 48.670405701 + ], + [ + 8.0489557, + 48.669807601 + ], + [ + 8.0482077, + 48.669187801 + ], + [ + 8.0477921, + 48.668845001 + ], + [ + 8.0470658, + 48.668240301 + ], + [ + 8.0463207, + 48.667637401 + ], + [ + 8.0456439, + 48.667064201 + ], + [ + 8.0447821, + 48.666361801 + ], + [ + 8.0438684, + 48.665590101 + ], + [ + 8.043536138, + 48.665301086 + ] + ] + } + }, + { + "identifier": "2026-016017--vi-bs.2026-04-07_19-00-00-000.devi-zus.2026-04-07_19-00-00-000_002.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.72235777358783,8.096719165413921,48.66530108629581,8.043536138287044", + "point": "48.72235777358783,8.096719165413921", + "startLcPosition": "47", + "impact": { + "lower": "Feldmatt", + "upper": "B\u00fchl", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | B\u00fchl - Feldmatt", + "coordinate": { + "lat": 48.72235777358783, + "long": 8.096719165413921 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 07.04.26 und dem 15.04.26 von 19:00 bis 20:00 Uhr.", + "Jeden Tag zwischen dem 08.04.26 und dem 16.04.26 von 05:00 bis 05:30 Uhr.", + "", + "A5: Karlsruhe -> Basel, zwischen 0.6 km hinter AS B\u00fchl und 0.9 km vor Feldmatt", + "", + "L\u00e4nge: 7.5 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Fugenpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.096719165, + 48.722357774 + ], + [ + 8.0961438, + 48.721949701 + ], + [ + 8.0959685, + 48.721825401 + ], + [ + 8.0943114, + 48.720573501 + ], + [ + 8.0927202, + 48.719364801 + ], + [ + 8.0914795, + 48.718395501 + ], + [ + 8.0896646, + 48.716931301 + ], + [ + 8.0893309, + 48.716664701 + ], + [ + 8.0881848, + 48.715682501 + ], + [ + 8.0872961, + 48.714922501 + ], + [ + 8.0858046, + 48.713604101 + ], + [ + 8.0843417, + 48.712281901 + ], + [ + 8.0840998, + 48.712054701 + ], + [ + 8.0831745, + 48.711133401 + ], + [ + 8.0824345, + 48.710407901 + ], + [ + 8.0815689, + 48.709519601 + ], + [ + 8.0806363, + 48.708580601 + ], + [ + 8.0798757, + 48.707788701 + ], + [ + 8.0791243, + 48.706975801 + ], + [ + 8.0787038, + 48.706515301 + ], + [ + 8.0778125, + 48.705500401 + ], + [ + 8.0770806, + 48.704662501 + ], + [ + 8.0763111, + 48.703709501 + ], + [ + 8.0757039, + 48.702912201 + ], + [ + 8.0753198, + 48.702401501 + ], + [ + 8.0745524, + 48.701308501 + ], + [ + 8.0738713, + 48.700266601 + ], + [ + 8.0732262, + 48.699199201 + ], + [ + 8.0723671, + 48.697786401 + ], + [ + 8.0715915, + 48.696443701 + ], + [ + 8.0708227, + 48.695135601 + ], + [ + 8.0700226, + 48.693792401 + ], + [ + 8.0693384, + 48.692591401 + ], + [ + 8.0685998, + 48.691372101 + ], + [ + 8.0677167, + 48.690011801 + ], + [ + 8.0669605, + 48.688866101 + ], + [ + 8.0663585, + 48.688007901 + ], + [ + 8.0654816, + 48.686793601 + ], + [ + 8.0646901, + 48.685761501 + ], + [ + 8.0641013, + 48.684993801 + ], + [ + 8.0627387, + 48.683281901 + ], + [ + 8.0618761, + 48.682238201 + ], + [ + 8.0608354, + 48.681066101 + ], + [ + 8.0592076, + 48.679295001 + ], + [ + 8.0577555, + 48.677799701 + ], + [ + 8.0570238, + 48.677048501 + ], + [ + 8.0554666, + 48.675563601 + ], + [ + 8.0540573, + 48.674251901 + ], + [ + 8.0532509, + 48.673523201 + ], + [ + 8.0522348, + 48.672606301 + ], + [ + 8.0514372, + 48.671905401 + ], + [ + 8.050706, + 48.671275701 + ], + [ + 8.0501973, + 48.670841401 + ], + [ + 8.0496563, + 48.670405701 + ], + [ + 8.0489557, + 48.669807601 + ], + [ + 8.0482077, + 48.669187801 + ], + [ + 8.0477921, + 48.668845001 + ], + [ + 8.0470658, + 48.668240301 + ], + [ + 8.0463207, + 48.667637401 + ], + [ + 8.0456439, + 48.667064201 + ], + [ + 8.0447821, + 48.666361801 + ], + [ + 8.0438684, + 48.665590101 + ], + [ + 8.043536138, + 48.665301086 + ] + ] + } + }, + { + "identifier": "2026-016017--vi-bs.2026-04-07_19-00-00-000.devi-zus.2026-04-07_19-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.7129607231896,8.08509274603757,48.66530108629581,8.043536138287044", + "point": "48.7129607231896,8.08509274603757", + "startLcPosition": "47", + "impact": { + "lower": "Feldmatt", + "upper": "B\u00fchl", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | B\u00fchl - Feldmatt", + "coordinate": { + "lat": 48.7129607231896, + "long": 8.08509274603757 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 07.04.26 und dem 16.04.26 von 20:00 bis 00:00 Uhr.", + "Jeden Tag zwischen dem 08.04.26 und dem 16.04.26 von 00:00 bis 05:00 Uhr.", + "", + "A5: Karlsruhe -> Basel, zwischen 2.0 km hinter AS B\u00fchl und 0.9 km vor Feldmatt", + "", + "L\u00e4nge: 6.15 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "Fugenpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.085092746, + 48.712960723 + ], + [ + 8.0843417, + 48.712281901 + ], + [ + 8.0840998, + 48.712054701 + ], + [ + 8.0831745, + 48.711133401 + ], + [ + 8.0824345, + 48.710407901 + ], + [ + 8.0815689, + 48.709519601 + ], + [ + 8.0806363, + 48.708580601 + ], + [ + 8.0798757, + 48.707788701 + ], + [ + 8.0791243, + 48.706975801 + ], + [ + 8.0787038, + 48.706515301 + ], + [ + 8.0778125, + 48.705500401 + ], + [ + 8.0770806, + 48.704662501 + ], + [ + 8.0763111, + 48.703709501 + ], + [ + 8.0757039, + 48.702912201 + ], + [ + 8.0753198, + 48.702401501 + ], + [ + 8.0745524, + 48.701308501 + ], + [ + 8.0738713, + 48.700266601 + ], + [ + 8.0732262, + 48.699199201 + ], + [ + 8.0723671, + 48.697786401 + ], + [ + 8.0715915, + 48.696443701 + ], + [ + 8.0708227, + 48.695135601 + ], + [ + 8.0700226, + 48.693792401 + ], + [ + 8.0693384, + 48.692591401 + ], + [ + 8.0685998, + 48.691372101 + ], + [ + 8.0677167, + 48.690011801 + ], + [ + 8.0669605, + 48.688866101 + ], + [ + 8.0663585, + 48.688007901 + ], + [ + 8.0654816, + 48.686793601 + ], + [ + 8.0646901, + 48.685761501 + ], + [ + 8.0641013, + 48.684993801 + ], + [ + 8.0627387, + 48.683281901 + ], + [ + 8.0618761, + 48.682238201 + ], + [ + 8.0608354, + 48.681066101 + ], + [ + 8.0592076, + 48.679295001 + ], + [ + 8.0577555, + 48.677799701 + ], + [ + 8.0570238, + 48.677048501 + ], + [ + 8.0554666, + 48.675563601 + ], + [ + 8.0540573, + 48.674251901 + ], + [ + 8.0532509, + 48.673523201 + ], + [ + 8.0522348, + 48.672606301 + ], + [ + 8.0514372, + 48.671905401 + ], + [ + 8.050706, + 48.671275701 + ], + [ + 8.0501973, + 48.670841401 + ], + [ + 8.0496563, + 48.670405701 + ], + [ + 8.0489557, + 48.669807601 + ], + [ + 8.0482077, + 48.669187801 + ], + [ + 8.0477921, + 48.668845001 + ], + [ + 8.0470658, + 48.668240301 + ], + [ + 8.0463207, + 48.667637401 + ], + [ + 8.0456439, + 48.667064201 + ], + [ + 8.0447821, + 48.666361801 + ], + [ + 8.0438684, + 48.665590101 + ], + [ + 8.043536138, + 48.665301086 + ] + ] + } + }, + { + "identifier": "2026-016017--vi-bs.2026-04-07_19-00-00-000.devi-zus.2026-04-07_19-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.7129607231896,8.08509274603757,48.66530108629581,8.043536138287044", + "point": "48.7129607231896,8.08509274603757", + "startLcPosition": "47", + "impact": { + "lower": "Feldmatt", + "upper": "B\u00fchl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | B\u00fchl - Feldmatt", + "coordinate": { + "lat": 48.7129607231896, + "long": 8.08509274603757 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 07.04.26 und dem 16.04.26 von 19:30 bis 00:00 Uhr.", + "Jeden Tag zwischen dem 08.04.26 und dem 16.04.26 von 00:00 bis 05:00 Uhr.", + "", + "A5: Karlsruhe -> Basel, zwischen 2.0 km hinter AS B\u00fchl und 0.9 km vor Feldmatt", + "", + "L\u00e4nge: 6.15 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "Fugenpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.085092746, + 48.712960723 + ], + [ + 8.0843417, + 48.712281901 + ], + [ + 8.0840998, + 48.712054701 + ], + [ + 8.0831745, + 48.711133401 + ], + [ + 8.0824345, + 48.710407901 + ], + [ + 8.0815689, + 48.709519601 + ], + [ + 8.0806363, + 48.708580601 + ], + [ + 8.0798757, + 48.707788701 + ], + [ + 8.0791243, + 48.706975801 + ], + [ + 8.0787038, + 48.706515301 + ], + [ + 8.0778125, + 48.705500401 + ], + [ + 8.0770806, + 48.704662501 + ], + [ + 8.0763111, + 48.703709501 + ], + [ + 8.0757039, + 48.702912201 + ], + [ + 8.0753198, + 48.702401501 + ], + [ + 8.0745524, + 48.701308501 + ], + [ + 8.0738713, + 48.700266601 + ], + [ + 8.0732262, + 48.699199201 + ], + [ + 8.0723671, + 48.697786401 + ], + [ + 8.0715915, + 48.696443701 + ], + [ + 8.0708227, + 48.695135601 + ], + [ + 8.0700226, + 48.693792401 + ], + [ + 8.0693384, + 48.692591401 + ], + [ + 8.0685998, + 48.691372101 + ], + [ + 8.0677167, + 48.690011801 + ], + [ + 8.0669605, + 48.688866101 + ], + [ + 8.0663585, + 48.688007901 + ], + [ + 8.0654816, + 48.686793601 + ], + [ + 8.0646901, + 48.685761501 + ], + [ + 8.0641013, + 48.684993801 + ], + [ + 8.0627387, + 48.683281901 + ], + [ + 8.0618761, + 48.682238201 + ], + [ + 8.0608354, + 48.681066101 + ], + [ + 8.0592076, + 48.679295001 + ], + [ + 8.0577555, + 48.677799701 + ], + [ + 8.0570238, + 48.677048501 + ], + [ + 8.0554666, + 48.675563601 + ], + [ + 8.0540573, + 48.674251901 + ], + [ + 8.0532509, + 48.673523201 + ], + [ + 8.0522348, + 48.672606301 + ], + [ + 8.0514372, + 48.671905401 + ], + [ + 8.050706, + 48.671275701 + ], + [ + 8.0501973, + 48.670841401 + ], + [ + 8.0496563, + 48.670405701 + ], + [ + 8.0489557, + 48.669807601 + ], + [ + 8.0482077, + 48.669187801 + ], + [ + 8.0477921, + 48.668845001 + ], + [ + 8.0470658, + 48.668240301 + ], + [ + 8.0463207, + 48.667637401 + ], + [ + 8.0456439, + 48.667064201 + ], + [ + 8.0447821, + 48.666361801 + ], + [ + 8.0438684, + 48.665590101 + ], + [ + 8.043536138, + 48.665301086 + ] + ] + } + }, + { + "identifier": "2026-016027--vi-bs.2026-04-08_08-00-00-000.devi-bs.2026-04-08_08-00-00-000_008.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.896533415930385,8.31808021625035,48.45318427176402,7.903118277352331", + "point": "48.896533415930385,8.31808021625035", + "startLcPosition": "56", + "impact": { + "lower": "Unditz", + "upper": "Karlsruhe-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Karlsruhe-S\u00fcd - Unditz", + "coordinate": { + "lat": 48.896533415930385, + "long": 8.31808021625035 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch, Donnerstag, Freitag, Samstag und Sonntag zwischen dem 08.04.26 und dem 12.04.26 von 08:00 bis 20:00 Uhr.", + "", + "A5: Karlsruhe -> Basel, zwischen 8.8 km hinter AS Karlsruhe-S\u00fcd und 6.7 km vor Unditz", + "", + "L\u00e4nge: 59.97 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "ZEB-Messung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.318080216, + 48.896533416 + ], + [ + 8.3159171, + 48.895969401 + ], + [ + 8.312599, + 48.895069901 + ], + [ + 8.3087785, + 48.894041201 + ], + [ + 8.3067691, + 48.893507001 + ], + [ + 8.3047484, + 48.892964001 + ], + [ + 8.3001761, + 48.891738401 + ], + [ + 8.2966369, + 48.890794001 + ], + [ + 8.2938949, + 48.890076501 + ], + [ + 8.2925214, + 48.889727401 + ], + [ + 8.2918773, + 48.889555601 + ], + [ + 8.2892751, + 48.888860301 + ], + [ + 8.2865162, + 48.888086901 + ], + [ + 8.2856886, + 48.887835301 + ], + [ + 8.2844817, + 48.887449501 + ], + [ + 8.2826481, + 48.886843301 + ], + [ + 8.2817219, + 48.886524501 + ], + [ + 8.2807608, + 48.886189901 + ], + [ + 8.2787853, + 48.885474101 + ], + [ + 8.2768129, + 48.884739501 + ], + [ + 8.2748152, + 48.883987501 + ], + [ + 8.2728457, + 48.883235801 + ], + [ + 8.2708897, + 48.882470301 + ], + [ + 8.2689512, + 48.881697801 + ], + [ + 8.2668627, + 48.880866701 + ], + [ + 8.2654001, + 48.880250201 + ], + [ + 8.2644332, + 48.879849901 + ], + [ + 8.2636291, + 48.879497301 + ], + [ + 8.2628449, + 48.879142601 + ], + [ + 8.2621136, + 48.878783801 + ], + [ + 8.2613344, + 48.878379601 + ], + [ + 8.260752, + 48.878068701 + ], + [ + 8.2601837, + 48.877739501 + ], + [ + 8.2597408, + 48.877465801 + ], + [ + 8.2593123, + 48.877183201 + ], + [ + 8.2584822, + 48.876611501 + ], + [ + 8.2578837, + 48.876156901 + ], + [ + 8.2574262, + 48.875785501 + ], + [ + 8.256991, + 48.875409601 + ], + [ + 8.2565196, + 48.874997101 + ], + [ + 8.2560636, + 48.874563501 + ], + [ + 8.2553863, + 48.873861701 + ], + [ + 8.2547372, + 48.873152501 + ], + [ + 8.2534699, + 48.871664601 + ], + [ + 8.252872, + 48.870956701 + ], + [ + 8.2519445, + 48.869854401 + ], + [ + 8.251619, + 48.869457601 + ], + [ + 8.2505245, + 48.868152101 + ], + [ + 8.2499651, + 48.867479001 + ], + [ + 8.2485732, + 48.865822201 + ], + [ + 8.2469278, + 48.863855801 + ], + [ + 8.2456046, + 48.862277101 + ], + [ + 8.2454888, + 48.862138801 + ], + [ + 8.2454167, + 48.862053201 + ], + [ + 8.2443982, + 48.860844001 + ], + [ + 8.2428154, + 48.858959001 + ], + [ + 8.2416451, + 48.857539101 + ], + [ + 8.2377429, + 48.852893901 + ], + [ + 8.2360555, + 48.850886201 + ], + [ + 8.2353487, + 48.850045201 + ], + [ + 8.2330343, + 48.847271801 + ], + [ + 8.2323452, + 48.846446401 + ], + [ + 8.2320483, + 48.846092201 + ], + [ + 8.2313917, + 48.845316701 + ], + [ + 8.2294424, + 48.842983201 + ], + [ + 8.2284589, + 48.841810401 + ], + [ + 8.2278987, + 48.841163701 + ], + [ + 8.2266803, + 48.839680601 + ], + [ + 8.2260905, + 48.838974901 + ], + [ + 8.2259193, + 48.838770001 + ], + [ + 8.2252312, + 48.837946501 + ], + [ + 8.2243215, + 48.836877001 + ], + [ + 8.2241466, + 48.836674801 + ], + [ + 8.2233996, + 48.835819701 + ], + [ + 8.2225751, + 48.834916501 + ], + [ + 8.2221196, + 48.834457101 + ], + [ + 8.2217188, + 48.834057601 + ], + [ + 8.2212624, + 48.833616901 + ], + [ + 8.2208278, + 48.833230301 + ], + [ + 8.2203254, + 48.832751801 + ], + [ + 8.2198046, + 48.832291601 + ], + [ + 8.2192707, + 48.831840101 + ], + [ + 8.2187307, + 48.831385501 + ], + [ + 8.2183456, + 48.831078301 + ], + [ + 8.2179724, + 48.830784701 + ], + [ + 8.2172105, + 48.830203901 + ], + [ + 8.2165396, + 48.829718501 + ], + [ + 8.2161599, + 48.829447401 + ], + [ + 8.2149464, + 48.828629001 + ], + [ + 8.2139752, + 48.828006501 + ], + [ + 8.2130626, + 48.827446601 + ], + [ + 8.2117333, + 48.826673001 + ], + [ + 8.2108279, + 48.826172401 + ], + [ + 8.2094554, + 48.825412401 + ], + [ + 8.2089609, + 48.825145501 + ], + [ + 8.2084997, + 48.824906301 + ], + [ + 8.2065864, + 48.823829901 + ], + [ + 8.2058374, + 48.823429701 + ], + [ + 8.2056561, + 48.823328901 + ], + [ + 8.2051198, + 48.823025901 + ], + [ + 8.2049825, + 48.822948501 + ], + [ + 8.2044862, + 48.822662601 + ], + [ + 8.2037818, + 48.822256801 + ], + [ + 8.2036585, + 48.822182601 + ], + [ + 8.2030655, + 48.821842801 + ], + [ + 8.2021033, + 48.821291301 + ], + [ + 8.2014036, + 48.820877501 + ], + [ + 8.2005689, + 48.820385201 + ], + [ + 8.1986576, + 48.819243701 + ], + [ + 8.1967599, + 48.818097001 + ], + [ + 8.1938528, + 48.816262401 + ], + [ + 8.1912768, + 48.814627501 + ], + [ + 8.1888498, + 48.813022701 + ], + [ + 8.1876538, + 48.812225601 + ], + [ + 8.1874675, + 48.812100901 + ], + [ + 8.1854287, + 48.810694901 + ], + [ + 8.1843271, + 48.809928101 + ], + [ + 8.1817912, + 48.808078601 + ], + [ + 8.179962, + 48.806776201 + ], + [ + 8.1794206, + 48.806377701 + ], + [ + 8.1784924, + 48.805686801 + ], + [ + 8.1771299, + 48.804688901 + ], + [ + 8.1753355, + 48.803371001 + ], + [ + 8.1732959, + 48.801877901 + ], + [ + 8.1713471, + 48.800447101 + ], + [ + 8.1693772, + 48.799003501 + ], + [ + 8.1680515, + 48.798015701 + ], + [ + 8.167756, + 48.797795501 + ], + [ + 8.1662582, + 48.796761401 + ], + [ + 8.1649503, + 48.795776701 + ], + [ + 8.1643776, + 48.795335201 + ], + [ + 8.1637494, + 48.794868301 + ], + [ + 8.1632468, + 48.794494701 + ], + [ + 8.1618095, + 48.793442101 + ], + [ + 8.1604567, + 48.792454401 + ], + [ + 8.1591362, + 48.791467101 + ], + [ + 8.1583801, + 48.790910901 + ], + [ + 8.1572737, + 48.790079801 + ], + [ + 8.1559455, + 48.789063301 + ], + [ + 8.1558232, + 48.788967001 + ], + [ + 8.1546328, + 48.788003701 + ], + [ + 8.1545397, + 48.787924401 + ], + [ + 8.1542175, + 48.787639401 + ], + [ + 8.1540157, + 48.787471401 + ], + [ + 8.1537047, + 48.787198301 + ], + [ + 8.1529163, + 48.786492101 + ], + [ + 8.1519589, + 48.785567001 + ], + [ + 8.1514619, + 48.785062501 + ], + [ + 8.1509779, + 48.784553701 + ], + [ + 8.1506709, + 48.784218101 + ], + [ + 8.1501984, + 48.783701801 + ], + [ + 8.1494667, + 48.782848301 + ], + [ + 8.1486383, + 48.781809701 + ], + [ + 8.1478848, + 48.780774901 + ], + [ + 8.1475534, + 48.780295101 + ], + [ + 8.1472263, + 48.779799701 + ], + [ + 8.1465474, + 48.778761701 + ], + [ + 8.145885, + 48.777748801 + ], + [ + 8.1452645, + 48.776745301 + ], + [ + 8.1448996, + 48.776147901 + ], + [ + 8.1446523, + 48.775743101 + ], + [ + 8.1437415, + 48.774273501 + ], + [ + 8.1430873, + 48.773196801 + ], + [ + 8.1423678, + 48.771973701 + ], + [ + 8.1421979, + 48.771711401 + ], + [ + 8.1411588, + 48.769988301 + ], + [ + 8.1400818, + 48.768266901 + ], + [ + 8.139322, + 48.766998501 + ], + [ + 8.1392738, + 48.766918101 + ], + [ + 8.1381987, + 48.765168201 + ], + [ + 8.1377437, + 48.764405501 + ], + [ + 8.1371975, + 48.763516801 + ], + [ + 8.1361746, + 48.761862301 + ], + [ + 8.1353332, + 48.760497001 + ], + [ + 8.1345086, + 48.759244701 + ], + [ + 8.1337001, + 48.758087101 + ], + [ + 8.1331173, + 48.757283601 + ], + [ + 8.1325154, + 48.756475401 + ], + [ + 8.1319162, + 48.755714101 + ], + [ + 8.13113, + 48.754706901 + ], + [ + 8.1302798, + 48.753681301 + ], + [ + 8.1297128, + 48.753051101 + ], + [ + 8.1285474, + 48.751755701 + ], + [ + 8.1272768, + 48.750446801 + ], + [ + 8.1253023, + 48.748528001 + ], + [ + 8.1240618, + 48.747364601 + ], + [ + 8.1232846, + 48.746640901 + ], + [ + 8.1224874, + 48.745874401 + ], + [ + 8.1215467, + 48.744995301 + ], + [ + 8.1208424, + 48.744316401 + ], + [ + 8.1201035, + 48.743575801 + ], + [ + 8.1194919, + 48.742963401 + ], + [ + 8.1185082, + 48.741871001 + ], + [ + 8.1173468, + 48.740608401 + ], + [ + 8.1166746, + 48.739821101 + ], + [ + 8.115438, + 48.738376801 + ], + [ + 8.1135651, + 48.736241801 + ], + [ + 8.1125839, + 48.735206901 + ], + [ + 8.1120958, + 48.734698601 + ], + [ + 8.111654, + 48.734230501 + ], + [ + 8.1106929, + 48.733286901 + ], + [ + 8.1101906, + 48.732810601 + ], + [ + 8.1097259, + 48.732372501 + ], + [ + 8.1090745, + 48.731757101 + ], + [ + 8.1078981, + 48.730709701 + ], + [ + 8.1076206, + 48.730469001 + ], + [ + 8.1068936, + 48.729838701 + ], + [ + 8.1061055, + 48.729181001 + ], + [ + 8.1052009, + 48.728441701 + ], + [ + 8.1041813, + 48.727652701 + ], + [ + 8.1038572, + 48.727404801 + ], + [ + 8.1030244, + 48.726785801 + ], + [ + 8.1018264, + 48.725903501 + ], + [ + 8.1000653, + 48.724656801 + ], + [ + 8.0991518, + 48.724031301 + ], + [ + 8.0985707, + 48.723629401 + ], + [ + 8.0974437, + 48.722857401 + ], + [ + 8.096778, + 48.722399501 + ], + [ + 8.0961438, + 48.721949701 + ], + [ + 8.0959685, + 48.721825401 + ], + [ + 8.0943114, + 48.720573501 + ], + [ + 8.0927202, + 48.719364801 + ], + [ + 8.0914795, + 48.718395501 + ], + [ + 8.0896646, + 48.716931301 + ], + [ + 8.0893309, + 48.716664701 + ], + [ + 8.0881848, + 48.715682501 + ], + [ + 8.0872961, + 48.714922501 + ], + [ + 8.0858046, + 48.713604101 + ], + [ + 8.0843417, + 48.712281901 + ], + [ + 8.0840998, + 48.712054701 + ], + [ + 8.0831745, + 48.711133401 + ], + [ + 8.0824345, + 48.710407901 + ], + [ + 8.0815689, + 48.709519601 + ], + [ + 8.0806363, + 48.708580601 + ], + [ + 8.0798757, + 48.707788701 + ], + [ + 8.0791243, + 48.706975801 + ], + [ + 8.0787038, + 48.706515301 + ], + [ + 8.0778125, + 48.705500401 + ], + [ + 8.0770806, + 48.704662501 + ], + [ + 8.0763111, + 48.703709501 + ], + [ + 8.0757039, + 48.702912201 + ], + [ + 8.0753198, + 48.702401501 + ], + [ + 8.0745524, + 48.701308501 + ], + [ + 8.0738713, + 48.700266601 + ], + [ + 8.0732262, + 48.699199201 + ], + [ + 8.0723671, + 48.697786401 + ], + [ + 8.0715915, + 48.696443701 + ], + [ + 8.0708227, + 48.695135601 + ], + [ + 8.0700226, + 48.693792401 + ], + [ + 8.0693384, + 48.692591401 + ], + [ + 8.0685998, + 48.691372101 + ], + [ + 8.0677167, + 48.690011801 + ], + [ + 8.0669605, + 48.688866101 + ], + [ + 8.0663585, + 48.688007901 + ], + [ + 8.0654816, + 48.686793601 + ], + [ + 8.0646901, + 48.685761501 + ], + [ + 8.0641013, + 48.684993801 + ], + [ + 8.0627387, + 48.683281901 + ], + [ + 8.0618761, + 48.682238201 + ], + [ + 8.0608354, + 48.681066101 + ], + [ + 8.0592076, + 48.679295001 + ], + [ + 8.0577555, + 48.677799701 + ], + [ + 8.0570238, + 48.677048501 + ], + [ + 8.0554666, + 48.675563601 + ], + [ + 8.0540573, + 48.674251901 + ], + [ + 8.0532509, + 48.673523201 + ], + [ + 8.0522348, + 48.672606301 + ], + [ + 8.0514372, + 48.671905401 + ], + [ + 8.050706, + 48.671275701 + ], + [ + 8.0501973, + 48.670841401 + ], + [ + 8.0496563, + 48.670405701 + ], + [ + 8.0489557, + 48.669807601 + ], + [ + 8.0482077, + 48.669187801 + ], + [ + 8.0477921, + 48.668845001 + ], + [ + 8.0470658, + 48.668240301 + ], + [ + 8.0463207, + 48.667637401 + ], + [ + 8.0456439, + 48.667064201 + ], + [ + 8.0447821, + 48.666361801 + ], + [ + 8.0438684, + 48.665590101 + ], + [ + 8.0431016, + 48.664923101 + ], + [ + 8.0423507, + 48.664265501 + ], + [ + 8.0417122, + 48.663658301 + ], + [ + 8.0410785, + 48.663045201 + ], + [ + 8.0404798, + 48.662434801 + ], + [ + 8.0399505, + 48.661894801 + ], + [ + 8.0393561, + 48.661263701 + ], + [ + 8.0389882, + 48.660867601 + ], + [ + 8.0386821, + 48.660546601 + ], + [ + 8.0379786, + 48.659720001 + ], + [ + 8.0375134, + 48.659153701 + ], + [ + 8.0368413, + 48.658315201 + ], + [ + 8.0360589, + 48.657278501 + ], + [ + 8.0354849, + 48.656445601 + ], + [ + 8.0353564, + 48.656218501 + ], + [ + 8.0348393, + 48.655449001 + ], + [ + 8.0345574, + 48.654959901 + ], + [ + 8.0341445, + 48.654283101 + ], + [ + 8.033719, + 48.653593401 + ], + [ + 8.0332965, + 48.652833901 + ], + [ + 8.0325741, + 48.651475201 + ], + [ + 8.0319546, + 48.650220501 + ], + [ + 8.0313578, + 48.648971101 + ], + [ + 8.0309965, + 48.648264301 + ], + [ + 8.0304438, + 48.647116301 + ], + [ + 8.0299285, + 48.646058101 + ], + [ + 8.0297279, + 48.645596301 + ], + [ + 8.0290329, + 48.644202901 + ], + [ + 8.0289179, + 48.643950001 + ], + [ + 8.0287241, + 48.643549201 + ], + [ + 8.0285538, + 48.643189901 + ], + [ + 8.0283803, + 48.642832201 + ], + [ + 8.027932, + 48.641878701 + ], + [ + 8.0275237, + 48.640989801 + ], + [ + 8.0271783, + 48.640252001 + ], + [ + 8.0268941, + 48.639637901 + ], + [ + 8.0265766, + 48.638992901 + ], + [ + 8.0262423, + 48.638367801 + ], + [ + 8.0256093, + 48.637198301 + ], + [ + 8.0255232, + 48.637046001 + ], + [ + 8.025078, + 48.636233001 + ], + [ + 8.0246249, + 48.635462901 + ], + [ + 8.0242104, + 48.634735001 + ], + [ + 8.023627, + 48.633756301 + ], + [ + 8.0231066, + 48.632966101 + ], + [ + 8.0226641, + 48.632287801 + ], + [ + 8.022082, + 48.631517001 + ], + [ + 8.0213901, + 48.630554501 + ], + [ + 8.0206523, + 48.629607101 + ], + [ + 8.0201681, + 48.628973301 + ], + [ + 8.0196912, + 48.628345101 + ], + [ + 8.0186417, + 48.627074401 + ], + [ + 8.0178645, + 48.626156201 + ], + [ + 8.0171849, + 48.625383201 + ], + [ + 8.0161828, + 48.624292201 + ], + [ + 8.0153621, + 48.623400901 + ], + [ + 8.0141841, + 48.622187401 + ], + [ + 8.0133843, + 48.621409401 + ], + [ + 8.0128243, + 48.620867301 + ], + [ + 8.0121738, + 48.620259801 + ], + [ + 8.0114492, + 48.619600801 + ], + [ + 8.0108651, + 48.619062201 + ], + [ + 8.0102157, + 48.618502901 + ], + [ + 8.0095258, + 48.617908201 + ], + [ + 8.0089704, + 48.617444601 + ], + [ + 8.0080626, + 48.616686801 + ], + [ + 8.0070058, + 48.615812801 + ], + [ + 8.0063161, + 48.615278601 + ], + [ + 8.0050951, + 48.614341101 + ], + [ + 8.0040141, + 48.613520501 + ], + [ + 8.0027945, + 48.612612401 + ], + [ + 8.0020811, + 48.612090501 + ], + [ + 8.0013327, + 48.611539901 + ], + [ + 8.000505, + 48.610914501 + ], + [ + 7.9996763, + 48.610299701 + ], + [ + 7.9994228, + 48.610109101 + ], + [ + 7.9981994, + 48.609145901 + ], + [ + 7.9974116, + 48.608518501 + ], + [ + 7.9964634, + 48.607749601 + ], + [ + 7.9953555, + 48.606823701 + ], + [ + 7.9947119, + 48.606276001 + ], + [ + 7.9939753, + 48.605654301 + ], + [ + 7.9932843, + 48.605039201 + ], + [ + 7.9924878, + 48.604363701 + ], + [ + 7.9916755, + 48.603662901 + ], + [ + 7.9908296, + 48.602939001 + ], + [ + 7.9899172, + 48.602130801 + ], + [ + 7.9887373, + 48.601060301 + ], + [ + 7.9879835, + 48.600369001 + ], + [ + 7.987126, + 48.599568901 + ], + [ + 7.9856684, + 48.598215301 + ], + [ + 7.9844132, + 48.596984301 + ], + [ + 7.9831807, + 48.595756201 + ], + [ + 7.9821328, + 48.594734501 + ], + [ + 7.9814735, + 48.594078601 + ], + [ + 7.9807953, + 48.593390301 + ], + [ + 7.9797496, + 48.592312401 + ], + [ + 7.9785389, + 48.591047501 + ], + [ + 7.9775934, + 48.590040901 + ], + [ + 7.9764012, + 48.588775501 + ], + [ + 7.975759, + 48.588076401 + ], + [ + 7.9750802, + 48.587321001 + ], + [ + 7.974435, + 48.586590101 + ], + [ + 7.9737489, + 48.585809401 + ], + [ + 7.9731664, + 48.585148301 + ], + [ + 7.9724921, + 48.584340501 + ], + [ + 7.97196, + 48.583718201 + ], + [ + 7.9712776, + 48.582925301 + ], + [ + 7.9706119, + 48.582154201 + ], + [ + 7.9697904, + 48.581129601 + ], + [ + 7.9687867, + 48.579879401 + ], + [ + 7.9678224, + 48.578681601 + ], + [ + 7.9658195, + 48.576085701 + ], + [ + 7.9652262, + 48.575279701 + ], + [ + 7.9645882, + 48.574400001 + ], + [ + 7.9636478, + 48.573115401 + ], + [ + 7.962977, + 48.572177501 + ], + [ + 7.9622311, + 48.571100801 + ], + [ + 7.9612631, + 48.569751401 + ], + [ + 7.9605667, + 48.568784801 + ], + [ + 7.9595752, + 48.567262601 + ], + [ + 7.9588958, + 48.566244201 + ], + [ + 7.9581687, + 48.565070101 + ], + [ + 7.956179, + 48.561742601 + ], + [ + 7.9558447, + 48.561130401 + ], + [ + 7.9555451, + 48.560593901 + ], + [ + 7.9552693, + 48.560093901 + ], + [ + 7.9549991, + 48.559603701 + ], + [ + 7.9547003, + 48.559042701 + ], + [ + 7.9543737, + 48.558423301 + ], + [ + 7.9541281, + 48.557963101 + ], + [ + 7.9538088, + 48.557360401 + ], + [ + 7.9533509, + 48.556431401 + ], + [ + 7.9530209, + 48.555781001 + ], + [ + 7.9527946, + 48.555306901 + ], + [ + 7.9525539, + 48.554828101 + ], + [ + 7.9521141, + 48.553932701 + ], + [ + 7.9518892, + 48.553473701 + ], + [ + 7.9516757, + 48.553064701 + ], + [ + 7.9513432, + 48.552401901 + ], + [ + 7.9509929, + 48.551708701 + ], + [ + 7.950663, + 48.551105201 + ], + [ + 7.9503559, + 48.550575701 + ], + [ + 7.9499662, + 48.549930601 + ], + [ + 7.9496116, + 48.549373201 + ], + [ + 7.9493481, + 48.548997601 + ], + [ + 7.9490817, + 48.548617401 + ], + [ + 7.9488445, + 48.548294501 + ], + [ + 7.9486103, + 48.547992601 + ], + [ + 7.9482302, + 48.547433201 + ], + [ + 7.947776, + 48.546862101 + ], + [ + 7.9470217, + 48.545994601 + ], + [ + 7.9461808, + 48.545083601 + ], + [ + 7.9453121, + 48.544181401 + ], + [ + 7.944194, + 48.543123501 + ], + [ + 7.9435015, + 48.542479001 + ], + [ + 7.9427696, + 48.541843101 + ], + [ + 7.9422484, + 48.541388301 + ], + [ + 7.9413708, + 48.540622801 + ], + [ + 7.9404598, + 48.539852201 + ], + [ + 7.9400521, + 48.539506201 + ], + [ + 7.9397264, + 48.539240401 + ], + [ + 7.939505, + 48.539050601 + ], + [ + 7.9378316, + 48.537616701 + ], + [ + 7.9365309, + 48.536496501 + ], + [ + 7.935069, + 48.535227901 + ], + [ + 7.9338777, + 48.534231501 + ], + [ + 7.9327126, + 48.533215501 + ], + [ + 7.9309219, + 48.531684501 + ], + [ + 7.9301028, + 48.530963401 + ], + [ + 7.9292307, + 48.530206301 + ], + [ + 7.9282682, + 48.529412801 + ], + [ + 7.9269309, + 48.528202701 + ], + [ + 7.9261308, + 48.527485301 + ], + [ + 7.925202, + 48.526615201 + ], + [ + 7.9236405, + 48.525190501 + ], + [ + 7.9227663, + 48.524407201 + ], + [ + 7.9220003, + 48.523665401 + ], + [ + 7.9211696, + 48.522874001 + ], + [ + 7.9204468, + 48.522163901 + ], + [ + 7.9195737, + 48.521320301 + ], + [ + 7.9181334, + 48.519878401 + ], + [ + 7.9170876, + 48.518797301 + ], + [ + 7.9164441, + 48.518131401 + ], + [ + 7.9161311, + 48.517799601 + ], + [ + 7.9154517, + 48.517064601 + ], + [ + 7.9146452, + 48.516178201 + ], + [ + 7.9142823, + 48.515777901 + ], + [ + 7.9135502, + 48.514946901 + ], + [ + 7.9130898, + 48.514382701 + ], + [ + 7.9122833, + 48.513362101 + ], + [ + 7.9118211, + 48.512716201 + ], + [ + 7.911639, + 48.512483201 + ], + [ + 7.9105624, + 48.511081901 + ], + [ + 7.9090054, + 48.508818901 + ], + [ + 7.9084005, + 48.507897501 + ], + [ + 7.9077737, + 48.506791201 + ], + [ + 7.9072712, + 48.505958301 + ], + [ + 7.9068868, + 48.505300601 + ], + [ + 7.906121, + 48.503898601 + ], + [ + 7.905855, + 48.503386801 + ], + [ + 7.9055528, + 48.502774601 + ], + [ + 7.9052878, + 48.502225301 + ], + [ + 7.9049209, + 48.501421701 + ], + [ + 7.9047674, + 48.501074301 + ], + [ + 7.9042927, + 48.500090901 + ], + [ + 7.9036854, + 48.498686601 + ], + [ + 7.9034344, + 48.497980401 + ], + [ + 7.9031715, + 48.497287401 + ], + [ + 7.9027829, + 48.496201401 + ], + [ + 7.9026104, + 48.495663601 + ], + [ + 7.9025412, + 48.495430601 + ], + [ + 7.902468, + 48.495174801 + ], + [ + 7.9023358, + 48.494734001 + ], + [ + 7.9020412, + 48.493501501 + ], + [ + 7.9019283, + 48.493011201 + ], + [ + 7.9018021, + 48.492395401 + ], + [ + 7.9016846, + 48.491763901 + ], + [ + 7.9015524, + 48.490954101 + ], + [ + 7.9014463, + 48.490154401 + ], + [ + 7.9013805, + 48.489550001 + ], + [ + 7.9013303, + 48.488909001 + ], + [ + 7.9012867, + 48.488266101 + ], + [ + 7.9012505, + 48.487464901 + ], + [ + 7.9012466, + 48.486153201 + ], + [ + 7.9012627, + 48.485504401 + ], + [ + 7.9012869, + 48.484869201 + ], + [ + 7.9013216, + 48.484340401 + ], + [ + 7.9013619, + 48.483846701 + ], + [ + 7.9014307, + 48.483258701 + ], + [ + 7.9014981, + 48.482727601 + ], + [ + 7.9015834, + 48.482130801 + ], + [ + 7.9016659, + 48.481604201 + ], + [ + 7.9017623, + 48.481075201 + ], + [ + 7.9018689, + 48.480483601 + ], + [ + 7.9020001, + 48.479854701 + ], + [ + 7.9021498, + 48.479236601 + ], + [ + 7.9024293, + 48.478071801 + ], + [ + 7.9027353, + 48.476871901 + ], + [ + 7.9031004, + 48.475427301 + ], + [ + 7.9031303, + 48.475297101 + ], + [ + 7.9032913, + 48.474639701 + ], + [ + 7.9036506, + 48.473221701 + ], + [ + 7.9038183, + 48.472525701 + ], + [ + 7.904, + 48.471790001 + ], + [ + 7.9041218, + 48.471311401 + ], + [ + 7.9043043, + 48.470505101 + ], + [ + 7.9043653, + 48.470211701 + ], + [ + 7.9044213, + 48.469891501 + ], + [ + 7.9044921, + 48.469550901 + ], + [ + 7.9045574, + 48.469185301 + ], + [ + 7.9047972, + 48.467637001 + ], + [ + 7.9048504, + 48.467155601 + ], + [ + 7.9049189, + 48.466537301 + ], + [ + 7.9049849, + 48.465606201 + ], + [ + 7.9049976, + 48.465413501 + ], + [ + 7.9050256, + 48.464797301 + ], + [ + 7.9050365, + 48.464257601 + ], + [ + 7.9050372, + 48.463782501 + ], + [ + 7.9050236, + 48.463131901 + ], + [ + 7.9049957, + 48.462401701 + ], + [ + 7.9049595, + 48.461848701 + ], + [ + 7.9048705, + 48.460967801 + ], + [ + 7.9048447, + 48.460543601 + ], + [ + 7.9047949, + 48.460134501 + ], + [ + 7.9047458, + 48.459753501 + ], + [ + 7.904643, + 48.459098001 + ], + [ + 7.9045307, + 48.458436001 + ], + [ + 7.9043937, + 48.457711901 + ], + [ + 7.9043309, + 48.457444101 + ], + [ + 7.9041662, + 48.456731401 + ], + [ + 7.9040436, + 48.456229101 + ], + [ + 7.9038776, + 48.455640901 + ], + [ + 7.9036871, + 48.454977301 + ], + [ + 7.9035926, + 48.454675101 + ], + [ + 7.9034931, + 48.454356901 + ], + [ + 7.9034046, + 48.454054901 + ], + [ + 7.9033179, + 48.453759301 + ], + [ + 7.903118277, + 48.453184272 + ] + ] + } + }, + { + "identifier": "2026-016027--vi-bs.2026-04-08_08-00-00-000.devi-bs.2026-04-08_08-00-00-000_008.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.896533415930385,8.31808021625035,48.45318427176402,7.903118277352331", + "point": "48.896533415930385,8.31808021625035", + "startLcPosition": "56", + "impact": { + "lower": "Unditz", + "upper": "Karlsruhe-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Basel", + "title": "A5 | Karlsruhe-S\u00fcd - Unditz", + "coordinate": { + "lat": 48.896533415930385, + "long": 8.31808021625035 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch, Donnerstag, Freitag, Samstag und Sonntag zwischen dem 08.04.26 und dem 12.04.26 von 08:00 bis 18:00 Uhr.", + "", + "A5: Karlsruhe -> Basel, zwischen 8.8 km hinter AS Karlsruhe-S\u00fcd und 6.7 km vor Unditz", + "", + "L\u00e4nge: 59.97 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "ZEB-Messung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.318080216, + 48.896533416 + ], + [ + 8.3159171, + 48.895969401 + ], + [ + 8.312599, + 48.895069901 + ], + [ + 8.3087785, + 48.894041201 + ], + [ + 8.3067691, + 48.893507001 + ], + [ + 8.3047484, + 48.892964001 + ], + [ + 8.3001761, + 48.891738401 + ], + [ + 8.2966369, + 48.890794001 + ], + [ + 8.2938949, + 48.890076501 + ], + [ + 8.2925214, + 48.889727401 + ], + [ + 8.2918773, + 48.889555601 + ], + [ + 8.2892751, + 48.888860301 + ], + [ + 8.2865162, + 48.888086901 + ], + [ + 8.2856886, + 48.887835301 + ], + [ + 8.2844817, + 48.887449501 + ], + [ + 8.2826481, + 48.886843301 + ], + [ + 8.2817219, + 48.886524501 + ], + [ + 8.2807608, + 48.886189901 + ], + [ + 8.2787853, + 48.885474101 + ], + [ + 8.2768129, + 48.884739501 + ], + [ + 8.2748152, + 48.883987501 + ], + [ + 8.2728457, + 48.883235801 + ], + [ + 8.2708897, + 48.882470301 + ], + [ + 8.2689512, + 48.881697801 + ], + [ + 8.2668627, + 48.880866701 + ], + [ + 8.2654001, + 48.880250201 + ], + [ + 8.2644332, + 48.879849901 + ], + [ + 8.2636291, + 48.879497301 + ], + [ + 8.2628449, + 48.879142601 + ], + [ + 8.2621136, + 48.878783801 + ], + [ + 8.2613344, + 48.878379601 + ], + [ + 8.260752, + 48.878068701 + ], + [ + 8.2601837, + 48.877739501 + ], + [ + 8.2597408, + 48.877465801 + ], + [ + 8.2593123, + 48.877183201 + ], + [ + 8.2584822, + 48.876611501 + ], + [ + 8.2578837, + 48.876156901 + ], + [ + 8.2574262, + 48.875785501 + ], + [ + 8.256991, + 48.875409601 + ], + [ + 8.2565196, + 48.874997101 + ], + [ + 8.2560636, + 48.874563501 + ], + [ + 8.2553863, + 48.873861701 + ], + [ + 8.2547372, + 48.873152501 + ], + [ + 8.2534699, + 48.871664601 + ], + [ + 8.252872, + 48.870956701 + ], + [ + 8.2519445, + 48.869854401 + ], + [ + 8.251619, + 48.869457601 + ], + [ + 8.2505245, + 48.868152101 + ], + [ + 8.2499651, + 48.867479001 + ], + [ + 8.2485732, + 48.865822201 + ], + [ + 8.2469278, + 48.863855801 + ], + [ + 8.2456046, + 48.862277101 + ], + [ + 8.2454888, + 48.862138801 + ], + [ + 8.2454167, + 48.862053201 + ], + [ + 8.2443982, + 48.860844001 + ], + [ + 8.2428154, + 48.858959001 + ], + [ + 8.2416451, + 48.857539101 + ], + [ + 8.2377429, + 48.852893901 + ], + [ + 8.2360555, + 48.850886201 + ], + [ + 8.2353487, + 48.850045201 + ], + [ + 8.2330343, + 48.847271801 + ], + [ + 8.2323452, + 48.846446401 + ], + [ + 8.2320483, + 48.846092201 + ], + [ + 8.2313917, + 48.845316701 + ], + [ + 8.2294424, + 48.842983201 + ], + [ + 8.2284589, + 48.841810401 + ], + [ + 8.2278987, + 48.841163701 + ], + [ + 8.2266803, + 48.839680601 + ], + [ + 8.2260905, + 48.838974901 + ], + [ + 8.2259193, + 48.838770001 + ], + [ + 8.2252312, + 48.837946501 + ], + [ + 8.2243215, + 48.836877001 + ], + [ + 8.2241466, + 48.836674801 + ], + [ + 8.2233996, + 48.835819701 + ], + [ + 8.2225751, + 48.834916501 + ], + [ + 8.2221196, + 48.834457101 + ], + [ + 8.2217188, + 48.834057601 + ], + [ + 8.2212624, + 48.833616901 + ], + [ + 8.2208278, + 48.833230301 + ], + [ + 8.2203254, + 48.832751801 + ], + [ + 8.2198046, + 48.832291601 + ], + [ + 8.2192707, + 48.831840101 + ], + [ + 8.2187307, + 48.831385501 + ], + [ + 8.2183456, + 48.831078301 + ], + [ + 8.2179724, + 48.830784701 + ], + [ + 8.2172105, + 48.830203901 + ], + [ + 8.2165396, + 48.829718501 + ], + [ + 8.2161599, + 48.829447401 + ], + [ + 8.2149464, + 48.828629001 + ], + [ + 8.2139752, + 48.828006501 + ], + [ + 8.2130626, + 48.827446601 + ], + [ + 8.2117333, + 48.826673001 + ], + [ + 8.2108279, + 48.826172401 + ], + [ + 8.2094554, + 48.825412401 + ], + [ + 8.2089609, + 48.825145501 + ], + [ + 8.2084997, + 48.824906301 + ], + [ + 8.2065864, + 48.823829901 + ], + [ + 8.2058374, + 48.823429701 + ], + [ + 8.2056561, + 48.823328901 + ], + [ + 8.2051198, + 48.823025901 + ], + [ + 8.2049825, + 48.822948501 + ], + [ + 8.2044862, + 48.822662601 + ], + [ + 8.2037818, + 48.822256801 + ], + [ + 8.2036585, + 48.822182601 + ], + [ + 8.2030655, + 48.821842801 + ], + [ + 8.2021033, + 48.821291301 + ], + [ + 8.2014036, + 48.820877501 + ], + [ + 8.2005689, + 48.820385201 + ], + [ + 8.1986576, + 48.819243701 + ], + [ + 8.1967599, + 48.818097001 + ], + [ + 8.1938528, + 48.816262401 + ], + [ + 8.1912768, + 48.814627501 + ], + [ + 8.1888498, + 48.813022701 + ], + [ + 8.1876538, + 48.812225601 + ], + [ + 8.1874675, + 48.812100901 + ], + [ + 8.1854287, + 48.810694901 + ], + [ + 8.1843271, + 48.809928101 + ], + [ + 8.1817912, + 48.808078601 + ], + [ + 8.179962, + 48.806776201 + ], + [ + 8.1794206, + 48.806377701 + ], + [ + 8.1784924, + 48.805686801 + ], + [ + 8.1771299, + 48.804688901 + ], + [ + 8.1753355, + 48.803371001 + ], + [ + 8.1732959, + 48.801877901 + ], + [ + 8.1713471, + 48.800447101 + ], + [ + 8.1693772, + 48.799003501 + ], + [ + 8.1680515, + 48.798015701 + ], + [ + 8.167756, + 48.797795501 + ], + [ + 8.1662582, + 48.796761401 + ], + [ + 8.1649503, + 48.795776701 + ], + [ + 8.1643776, + 48.795335201 + ], + [ + 8.1637494, + 48.794868301 + ], + [ + 8.1632468, + 48.794494701 + ], + [ + 8.1618095, + 48.793442101 + ], + [ + 8.1604567, + 48.792454401 + ], + [ + 8.1591362, + 48.791467101 + ], + [ + 8.1583801, + 48.790910901 + ], + [ + 8.1572737, + 48.790079801 + ], + [ + 8.1559455, + 48.789063301 + ], + [ + 8.1558232, + 48.788967001 + ], + [ + 8.1546328, + 48.788003701 + ], + [ + 8.1545397, + 48.787924401 + ], + [ + 8.1542175, + 48.787639401 + ], + [ + 8.1540157, + 48.787471401 + ], + [ + 8.1537047, + 48.787198301 + ], + [ + 8.1529163, + 48.786492101 + ], + [ + 8.1519589, + 48.785567001 + ], + [ + 8.1514619, + 48.785062501 + ], + [ + 8.1509779, + 48.784553701 + ], + [ + 8.1506709, + 48.784218101 + ], + [ + 8.1501984, + 48.783701801 + ], + [ + 8.1494667, + 48.782848301 + ], + [ + 8.1486383, + 48.781809701 + ], + [ + 8.1478848, + 48.780774901 + ], + [ + 8.1475534, + 48.780295101 + ], + [ + 8.1472263, + 48.779799701 + ], + [ + 8.1465474, + 48.778761701 + ], + [ + 8.145885, + 48.777748801 + ], + [ + 8.1452645, + 48.776745301 + ], + [ + 8.1448996, + 48.776147901 + ], + [ + 8.1446523, + 48.775743101 + ], + [ + 8.1437415, + 48.774273501 + ], + [ + 8.1430873, + 48.773196801 + ], + [ + 8.1423678, + 48.771973701 + ], + [ + 8.1421979, + 48.771711401 + ], + [ + 8.1411588, + 48.769988301 + ], + [ + 8.1400818, + 48.768266901 + ], + [ + 8.139322, + 48.766998501 + ], + [ + 8.1392738, + 48.766918101 + ], + [ + 8.1381987, + 48.765168201 + ], + [ + 8.1377437, + 48.764405501 + ], + [ + 8.1371975, + 48.763516801 + ], + [ + 8.1361746, + 48.761862301 + ], + [ + 8.1353332, + 48.760497001 + ], + [ + 8.1345086, + 48.759244701 + ], + [ + 8.1337001, + 48.758087101 + ], + [ + 8.1331173, + 48.757283601 + ], + [ + 8.1325154, + 48.756475401 + ], + [ + 8.1319162, + 48.755714101 + ], + [ + 8.13113, + 48.754706901 + ], + [ + 8.1302798, + 48.753681301 + ], + [ + 8.1297128, + 48.753051101 + ], + [ + 8.1285474, + 48.751755701 + ], + [ + 8.1272768, + 48.750446801 + ], + [ + 8.1253023, + 48.748528001 + ], + [ + 8.1240618, + 48.747364601 + ], + [ + 8.1232846, + 48.746640901 + ], + [ + 8.1224874, + 48.745874401 + ], + [ + 8.1215467, + 48.744995301 + ], + [ + 8.1208424, + 48.744316401 + ], + [ + 8.1201035, + 48.743575801 + ], + [ + 8.1194919, + 48.742963401 + ], + [ + 8.1185082, + 48.741871001 + ], + [ + 8.1173468, + 48.740608401 + ], + [ + 8.1166746, + 48.739821101 + ], + [ + 8.115438, + 48.738376801 + ], + [ + 8.1135651, + 48.736241801 + ], + [ + 8.1125839, + 48.735206901 + ], + [ + 8.1120958, + 48.734698601 + ], + [ + 8.111654, + 48.734230501 + ], + [ + 8.1106929, + 48.733286901 + ], + [ + 8.1101906, + 48.732810601 + ], + [ + 8.1097259, + 48.732372501 + ], + [ + 8.1090745, + 48.731757101 + ], + [ + 8.1078981, + 48.730709701 + ], + [ + 8.1076206, + 48.730469001 + ], + [ + 8.1068936, + 48.729838701 + ], + [ + 8.1061055, + 48.729181001 + ], + [ + 8.1052009, + 48.728441701 + ], + [ + 8.1041813, + 48.727652701 + ], + [ + 8.1038572, + 48.727404801 + ], + [ + 8.1030244, + 48.726785801 + ], + [ + 8.1018264, + 48.725903501 + ], + [ + 8.1000653, + 48.724656801 + ], + [ + 8.0991518, + 48.724031301 + ], + [ + 8.0985707, + 48.723629401 + ], + [ + 8.0974437, + 48.722857401 + ], + [ + 8.096778, + 48.722399501 + ], + [ + 8.0961438, + 48.721949701 + ], + [ + 8.0959685, + 48.721825401 + ], + [ + 8.0943114, + 48.720573501 + ], + [ + 8.0927202, + 48.719364801 + ], + [ + 8.0914795, + 48.718395501 + ], + [ + 8.0896646, + 48.716931301 + ], + [ + 8.0893309, + 48.716664701 + ], + [ + 8.0881848, + 48.715682501 + ], + [ + 8.0872961, + 48.714922501 + ], + [ + 8.0858046, + 48.713604101 + ], + [ + 8.0843417, + 48.712281901 + ], + [ + 8.0840998, + 48.712054701 + ], + [ + 8.0831745, + 48.711133401 + ], + [ + 8.0824345, + 48.710407901 + ], + [ + 8.0815689, + 48.709519601 + ], + [ + 8.0806363, + 48.708580601 + ], + [ + 8.0798757, + 48.707788701 + ], + [ + 8.0791243, + 48.706975801 + ], + [ + 8.0787038, + 48.706515301 + ], + [ + 8.0778125, + 48.705500401 + ], + [ + 8.0770806, + 48.704662501 + ], + [ + 8.0763111, + 48.703709501 + ], + [ + 8.0757039, + 48.702912201 + ], + [ + 8.0753198, + 48.702401501 + ], + [ + 8.0745524, + 48.701308501 + ], + [ + 8.0738713, + 48.700266601 + ], + [ + 8.0732262, + 48.699199201 + ], + [ + 8.0723671, + 48.697786401 + ], + [ + 8.0715915, + 48.696443701 + ], + [ + 8.0708227, + 48.695135601 + ], + [ + 8.0700226, + 48.693792401 + ], + [ + 8.0693384, + 48.692591401 + ], + [ + 8.0685998, + 48.691372101 + ], + [ + 8.0677167, + 48.690011801 + ], + [ + 8.0669605, + 48.688866101 + ], + [ + 8.0663585, + 48.688007901 + ], + [ + 8.0654816, + 48.686793601 + ], + [ + 8.0646901, + 48.685761501 + ], + [ + 8.0641013, + 48.684993801 + ], + [ + 8.0627387, + 48.683281901 + ], + [ + 8.0618761, + 48.682238201 + ], + [ + 8.0608354, + 48.681066101 + ], + [ + 8.0592076, + 48.679295001 + ], + [ + 8.0577555, + 48.677799701 + ], + [ + 8.0570238, + 48.677048501 + ], + [ + 8.0554666, + 48.675563601 + ], + [ + 8.0540573, + 48.674251901 + ], + [ + 8.0532509, + 48.673523201 + ], + [ + 8.0522348, + 48.672606301 + ], + [ + 8.0514372, + 48.671905401 + ], + [ + 8.050706, + 48.671275701 + ], + [ + 8.0501973, + 48.670841401 + ], + [ + 8.0496563, + 48.670405701 + ], + [ + 8.0489557, + 48.669807601 + ], + [ + 8.0482077, + 48.669187801 + ], + [ + 8.0477921, + 48.668845001 + ], + [ + 8.0470658, + 48.668240301 + ], + [ + 8.0463207, + 48.667637401 + ], + [ + 8.0456439, + 48.667064201 + ], + [ + 8.0447821, + 48.666361801 + ], + [ + 8.0438684, + 48.665590101 + ], + [ + 8.0431016, + 48.664923101 + ], + [ + 8.0423507, + 48.664265501 + ], + [ + 8.0417122, + 48.663658301 + ], + [ + 8.0410785, + 48.663045201 + ], + [ + 8.0404798, + 48.662434801 + ], + [ + 8.0399505, + 48.661894801 + ], + [ + 8.0393561, + 48.661263701 + ], + [ + 8.0389882, + 48.660867601 + ], + [ + 8.0386821, + 48.660546601 + ], + [ + 8.0379786, + 48.659720001 + ], + [ + 8.0375134, + 48.659153701 + ], + [ + 8.0368413, + 48.658315201 + ], + [ + 8.0360589, + 48.657278501 + ], + [ + 8.0354849, + 48.656445601 + ], + [ + 8.0353564, + 48.656218501 + ], + [ + 8.0348393, + 48.655449001 + ], + [ + 8.0345574, + 48.654959901 + ], + [ + 8.0341445, + 48.654283101 + ], + [ + 8.033719, + 48.653593401 + ], + [ + 8.0332965, + 48.652833901 + ], + [ + 8.0325741, + 48.651475201 + ], + [ + 8.0319546, + 48.650220501 + ], + [ + 8.0313578, + 48.648971101 + ], + [ + 8.0309965, + 48.648264301 + ], + [ + 8.0304438, + 48.647116301 + ], + [ + 8.0299285, + 48.646058101 + ], + [ + 8.0297279, + 48.645596301 + ], + [ + 8.0290329, + 48.644202901 + ], + [ + 8.0289179, + 48.643950001 + ], + [ + 8.0287241, + 48.643549201 + ], + [ + 8.0285538, + 48.643189901 + ], + [ + 8.0283803, + 48.642832201 + ], + [ + 8.027932, + 48.641878701 + ], + [ + 8.0275237, + 48.640989801 + ], + [ + 8.0271783, + 48.640252001 + ], + [ + 8.0268941, + 48.639637901 + ], + [ + 8.0265766, + 48.638992901 + ], + [ + 8.0262423, + 48.638367801 + ], + [ + 8.0256093, + 48.637198301 + ], + [ + 8.0255232, + 48.637046001 + ], + [ + 8.025078, + 48.636233001 + ], + [ + 8.0246249, + 48.635462901 + ], + [ + 8.0242104, + 48.634735001 + ], + [ + 8.023627, + 48.633756301 + ], + [ + 8.0231066, + 48.632966101 + ], + [ + 8.0226641, + 48.632287801 + ], + [ + 8.022082, + 48.631517001 + ], + [ + 8.0213901, + 48.630554501 + ], + [ + 8.0206523, + 48.629607101 + ], + [ + 8.0201681, + 48.628973301 + ], + [ + 8.0196912, + 48.628345101 + ], + [ + 8.0186417, + 48.627074401 + ], + [ + 8.0178645, + 48.626156201 + ], + [ + 8.0171849, + 48.625383201 + ], + [ + 8.0161828, + 48.624292201 + ], + [ + 8.0153621, + 48.623400901 + ], + [ + 8.0141841, + 48.622187401 + ], + [ + 8.0133843, + 48.621409401 + ], + [ + 8.0128243, + 48.620867301 + ], + [ + 8.0121738, + 48.620259801 + ], + [ + 8.0114492, + 48.619600801 + ], + [ + 8.0108651, + 48.619062201 + ], + [ + 8.0102157, + 48.618502901 + ], + [ + 8.0095258, + 48.617908201 + ], + [ + 8.0089704, + 48.617444601 + ], + [ + 8.0080626, + 48.616686801 + ], + [ + 8.0070058, + 48.615812801 + ], + [ + 8.0063161, + 48.615278601 + ], + [ + 8.0050951, + 48.614341101 + ], + [ + 8.0040141, + 48.613520501 + ], + [ + 8.0027945, + 48.612612401 + ], + [ + 8.0020811, + 48.612090501 + ], + [ + 8.0013327, + 48.611539901 + ], + [ + 8.000505, + 48.610914501 + ], + [ + 7.9996763, + 48.610299701 + ], + [ + 7.9994228, + 48.610109101 + ], + [ + 7.9981994, + 48.609145901 + ], + [ + 7.9974116, + 48.608518501 + ], + [ + 7.9964634, + 48.607749601 + ], + [ + 7.9953555, + 48.606823701 + ], + [ + 7.9947119, + 48.606276001 + ], + [ + 7.9939753, + 48.605654301 + ], + [ + 7.9932843, + 48.605039201 + ], + [ + 7.9924878, + 48.604363701 + ], + [ + 7.9916755, + 48.603662901 + ], + [ + 7.9908296, + 48.602939001 + ], + [ + 7.9899172, + 48.602130801 + ], + [ + 7.9887373, + 48.601060301 + ], + [ + 7.9879835, + 48.600369001 + ], + [ + 7.987126, + 48.599568901 + ], + [ + 7.9856684, + 48.598215301 + ], + [ + 7.9844132, + 48.596984301 + ], + [ + 7.9831807, + 48.595756201 + ], + [ + 7.9821328, + 48.594734501 + ], + [ + 7.9814735, + 48.594078601 + ], + [ + 7.9807953, + 48.593390301 + ], + [ + 7.9797496, + 48.592312401 + ], + [ + 7.9785389, + 48.591047501 + ], + [ + 7.9775934, + 48.590040901 + ], + [ + 7.9764012, + 48.588775501 + ], + [ + 7.975759, + 48.588076401 + ], + [ + 7.9750802, + 48.587321001 + ], + [ + 7.974435, + 48.586590101 + ], + [ + 7.9737489, + 48.585809401 + ], + [ + 7.9731664, + 48.585148301 + ], + [ + 7.9724921, + 48.584340501 + ], + [ + 7.97196, + 48.583718201 + ], + [ + 7.9712776, + 48.582925301 + ], + [ + 7.9706119, + 48.582154201 + ], + [ + 7.9697904, + 48.581129601 + ], + [ + 7.9687867, + 48.579879401 + ], + [ + 7.9678224, + 48.578681601 + ], + [ + 7.9658195, + 48.576085701 + ], + [ + 7.9652262, + 48.575279701 + ], + [ + 7.9645882, + 48.574400001 + ], + [ + 7.9636478, + 48.573115401 + ], + [ + 7.962977, + 48.572177501 + ], + [ + 7.9622311, + 48.571100801 + ], + [ + 7.9612631, + 48.569751401 + ], + [ + 7.9605667, + 48.568784801 + ], + [ + 7.9595752, + 48.567262601 + ], + [ + 7.9588958, + 48.566244201 + ], + [ + 7.9581687, + 48.565070101 + ], + [ + 7.956179, + 48.561742601 + ], + [ + 7.9558447, + 48.561130401 + ], + [ + 7.9555451, + 48.560593901 + ], + [ + 7.9552693, + 48.560093901 + ], + [ + 7.9549991, + 48.559603701 + ], + [ + 7.9547003, + 48.559042701 + ], + [ + 7.9543737, + 48.558423301 + ], + [ + 7.9541281, + 48.557963101 + ], + [ + 7.9538088, + 48.557360401 + ], + [ + 7.9533509, + 48.556431401 + ], + [ + 7.9530209, + 48.555781001 + ], + [ + 7.9527946, + 48.555306901 + ], + [ + 7.9525539, + 48.554828101 + ], + [ + 7.9521141, + 48.553932701 + ], + [ + 7.9518892, + 48.553473701 + ], + [ + 7.9516757, + 48.553064701 + ], + [ + 7.9513432, + 48.552401901 + ], + [ + 7.9509929, + 48.551708701 + ], + [ + 7.950663, + 48.551105201 + ], + [ + 7.9503559, + 48.550575701 + ], + [ + 7.9499662, + 48.549930601 + ], + [ + 7.9496116, + 48.549373201 + ], + [ + 7.9493481, + 48.548997601 + ], + [ + 7.9490817, + 48.548617401 + ], + [ + 7.9488445, + 48.548294501 + ], + [ + 7.9486103, + 48.547992601 + ], + [ + 7.9482302, + 48.547433201 + ], + [ + 7.947776, + 48.546862101 + ], + [ + 7.9470217, + 48.545994601 + ], + [ + 7.9461808, + 48.545083601 + ], + [ + 7.9453121, + 48.544181401 + ], + [ + 7.944194, + 48.543123501 + ], + [ + 7.9435015, + 48.542479001 + ], + [ + 7.9427696, + 48.541843101 + ], + [ + 7.9422484, + 48.541388301 + ], + [ + 7.9413708, + 48.540622801 + ], + [ + 7.9404598, + 48.539852201 + ], + [ + 7.9400521, + 48.539506201 + ], + [ + 7.9397264, + 48.539240401 + ], + [ + 7.939505, + 48.539050601 + ], + [ + 7.9378316, + 48.537616701 + ], + [ + 7.9365309, + 48.536496501 + ], + [ + 7.935069, + 48.535227901 + ], + [ + 7.9338777, + 48.534231501 + ], + [ + 7.9327126, + 48.533215501 + ], + [ + 7.9309219, + 48.531684501 + ], + [ + 7.9301028, + 48.530963401 + ], + [ + 7.9292307, + 48.530206301 + ], + [ + 7.9282682, + 48.529412801 + ], + [ + 7.9269309, + 48.528202701 + ], + [ + 7.9261308, + 48.527485301 + ], + [ + 7.925202, + 48.526615201 + ], + [ + 7.9236405, + 48.525190501 + ], + [ + 7.9227663, + 48.524407201 + ], + [ + 7.9220003, + 48.523665401 + ], + [ + 7.9211696, + 48.522874001 + ], + [ + 7.9204468, + 48.522163901 + ], + [ + 7.9195737, + 48.521320301 + ], + [ + 7.9181334, + 48.519878401 + ], + [ + 7.9170876, + 48.518797301 + ], + [ + 7.9164441, + 48.518131401 + ], + [ + 7.9161311, + 48.517799601 + ], + [ + 7.9154517, + 48.517064601 + ], + [ + 7.9146452, + 48.516178201 + ], + [ + 7.9142823, + 48.515777901 + ], + [ + 7.9135502, + 48.514946901 + ], + [ + 7.9130898, + 48.514382701 + ], + [ + 7.9122833, + 48.513362101 + ], + [ + 7.9118211, + 48.512716201 + ], + [ + 7.911639, + 48.512483201 + ], + [ + 7.9105624, + 48.511081901 + ], + [ + 7.9090054, + 48.508818901 + ], + [ + 7.9084005, + 48.507897501 + ], + [ + 7.9077737, + 48.506791201 + ], + [ + 7.9072712, + 48.505958301 + ], + [ + 7.9068868, + 48.505300601 + ], + [ + 7.906121, + 48.503898601 + ], + [ + 7.905855, + 48.503386801 + ], + [ + 7.9055528, + 48.502774601 + ], + [ + 7.9052878, + 48.502225301 + ], + [ + 7.9049209, + 48.501421701 + ], + [ + 7.9047674, + 48.501074301 + ], + [ + 7.9042927, + 48.500090901 + ], + [ + 7.9036854, + 48.498686601 + ], + [ + 7.9034344, + 48.497980401 + ], + [ + 7.9031715, + 48.497287401 + ], + [ + 7.9027829, + 48.496201401 + ], + [ + 7.9026104, + 48.495663601 + ], + [ + 7.9025412, + 48.495430601 + ], + [ + 7.902468, + 48.495174801 + ], + [ + 7.9023358, + 48.494734001 + ], + [ + 7.9020412, + 48.493501501 + ], + [ + 7.9019283, + 48.493011201 + ], + [ + 7.9018021, + 48.492395401 + ], + [ + 7.9016846, + 48.491763901 + ], + [ + 7.9015524, + 48.490954101 + ], + [ + 7.9014463, + 48.490154401 + ], + [ + 7.9013805, + 48.489550001 + ], + [ + 7.9013303, + 48.488909001 + ], + [ + 7.9012867, + 48.488266101 + ], + [ + 7.9012505, + 48.487464901 + ], + [ + 7.9012466, + 48.486153201 + ], + [ + 7.9012627, + 48.485504401 + ], + [ + 7.9012869, + 48.484869201 + ], + [ + 7.9013216, + 48.484340401 + ], + [ + 7.9013619, + 48.483846701 + ], + [ + 7.9014307, + 48.483258701 + ], + [ + 7.9014981, + 48.482727601 + ], + [ + 7.9015834, + 48.482130801 + ], + [ + 7.9016659, + 48.481604201 + ], + [ + 7.9017623, + 48.481075201 + ], + [ + 7.9018689, + 48.480483601 + ], + [ + 7.9020001, + 48.479854701 + ], + [ + 7.9021498, + 48.479236601 + ], + [ + 7.9024293, + 48.478071801 + ], + [ + 7.9027353, + 48.476871901 + ], + [ + 7.9031004, + 48.475427301 + ], + [ + 7.9031303, + 48.475297101 + ], + [ + 7.9032913, + 48.474639701 + ], + [ + 7.9036506, + 48.473221701 + ], + [ + 7.9038183, + 48.472525701 + ], + [ + 7.904, + 48.471790001 + ], + [ + 7.9041218, + 48.471311401 + ], + [ + 7.9043043, + 48.470505101 + ], + [ + 7.9043653, + 48.470211701 + ], + [ + 7.9044213, + 48.469891501 + ], + [ + 7.9044921, + 48.469550901 + ], + [ + 7.9045574, + 48.469185301 + ], + [ + 7.9047972, + 48.467637001 + ], + [ + 7.9048504, + 48.467155601 + ], + [ + 7.9049189, + 48.466537301 + ], + [ + 7.9049849, + 48.465606201 + ], + [ + 7.9049976, + 48.465413501 + ], + [ + 7.9050256, + 48.464797301 + ], + [ + 7.9050365, + 48.464257601 + ], + [ + 7.9050372, + 48.463782501 + ], + [ + 7.9050236, + 48.463131901 + ], + [ + 7.9049957, + 48.462401701 + ], + [ + 7.9049595, + 48.461848701 + ], + [ + 7.9048705, + 48.460967801 + ], + [ + 7.9048447, + 48.460543601 + ], + [ + 7.9047949, + 48.460134501 + ], + [ + 7.9047458, + 48.459753501 + ], + [ + 7.904643, + 48.459098001 + ], + [ + 7.9045307, + 48.458436001 + ], + [ + 7.9043937, + 48.457711901 + ], + [ + 7.9043309, + 48.457444101 + ], + [ + 7.9041662, + 48.456731401 + ], + [ + 7.9040436, + 48.456229101 + ], + [ + 7.9038776, + 48.455640901 + ], + [ + 7.9036871, + 48.454977301 + ], + [ + 7.9035926, + 48.454675101 + ], + [ + 7.9034931, + 48.454356901 + ], + [ + 7.9034046, + 48.454054901 + ], + [ + 7.9033179, + 48.453759301 + ], + [ + 7.903118277, + 48.453184272 + ] + ] + } + }, + { + "identifier": "2026-016954--vi-bs.2026-04-07_20-00-00-000.devi-bs.2026-04-07_20-00-00-000_013.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.02566226753257,8.476601002274185,48.95974070064926,8.399805442691731", + "point": "49.02566226753257,8.476601002274185", + "startLcPosition": "62", + "impact": { + "lower": "Karlsruhe-S\u00fcd", + "upper": "Kreuzlach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heidelberg -> Basel", + "title": "A5 | Kreuzlach - Karlsruhe-S\u00fcd", + "coordinate": { + "lat": 49.02566226753257, + "long": 8.476601002274185 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A5: Heidelberg -> Basel, zwischen 5.4 km hinter Kreuzlach und 1.2 km vor AS Karlsruhe-S\u00fcd", + "", + "L\u00e4nge: 10.02 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 von H\u00f6llberg (Rastplatz) nach Pforzheim (Raststaette) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.476601002, + 49.025662268 + ], + [ + 8.4765396, + 49.025598201 + ], + [ + 8.4759336, + 49.025006001 + ], + [ + 8.4754662, + 49.024560301 + ], + [ + 8.4752594, + 49.024363001 + ], + [ + 8.474385, + 49.023523901 + ], + [ + 8.4738814, + 49.023043901 + ], + [ + 8.473101, + 49.022304701 + ], + [ + 8.4724498, + 49.021676801 + ], + [ + 8.4717599, + 49.021019001 + ], + [ + 8.4715406, + 49.020807101 + ], + [ + 8.4704548, + 49.019767501 + ], + [ + 8.4702362, + 49.019559501 + ], + [ + 8.4680534, + 49.017464901 + ], + [ + 8.4668332, + 49.016302501 + ], + [ + 8.4661068, + 49.015603501 + ], + [ + 8.4654003, + 49.014934701 + ], + [ + 8.4646341, + 49.014197101 + ], + [ + 8.4639055, + 49.013500601 + ], + [ + 8.462915, + 49.012565501 + ], + [ + 8.462501, + 49.012174401 + ], + [ + 8.4620394, + 49.011721501 + ], + [ + 8.4617412, + 49.011440101 + ], + [ + 8.4610082, + 49.010728601 + ], + [ + 8.460493, + 49.010257901 + ], + [ + 8.4598509, + 49.009681401 + ], + [ + 8.4588446, + 49.008840401 + ], + [ + 8.4586981, + 49.008712401 + ], + [ + 8.4581605, + 49.008266301 + ], + [ + 8.4570815, + 49.007439301 + ], + [ + 8.4567979, + 49.007224001 + ], + [ + 8.4555731, + 49.006343901 + ], + [ + 8.4553237, + 49.006168501 + ], + [ + 8.4549889, + 49.005927901 + ], + [ + 8.4534478, + 49.004909701 + ], + [ + 8.4527242, + 49.004444601 + ], + [ + 8.4519946, + 49.003979801 + ], + [ + 8.4505399, + 49.003047401 + ], + [ + 8.4482783, + 49.001601901 + ], + [ + 8.4475491, + 49.001132001 + ], + [ + 8.4460166, + 49.000148701 + ], + [ + 8.4457637, + 48.999984701 + ], + [ + 8.4452579, + 48.999662301 + ], + [ + 8.4432861, + 48.998400801 + ], + [ + 8.4421026, + 48.997647401 + ], + [ + 8.4405791, + 48.996679401 + ], + [ + 8.4401618, + 48.996406201 + ], + [ + 8.4397664, + 48.996154201 + ], + [ + 8.4392433, + 48.995770101 + ], + [ + 8.4389036, + 48.995503601 + ], + [ + 8.4385307, + 48.995189001 + ], + [ + 8.4381845, + 48.994860701 + ], + [ + 8.4378706, + 48.994526901 + ], + [ + 8.43761, + 48.994243501 + ], + [ + 8.4372332, + 48.993736101 + ], + [ + 8.437112, + 48.993557501 + ], + [ + 8.437018, + 48.993418901 + ], + [ + 8.4368722, + 48.993172801 + ], + [ + 8.4367161, + 48.992884001 + ], + [ + 8.4365823, + 48.992614701 + ], + [ + 8.4364342, + 48.992291801 + ], + [ + 8.4363284, + 48.992012701 + ], + [ + 8.4361997, + 48.991588001 + ], + [ + 8.4360911, + 48.991116101 + ], + [ + 8.436062, + 48.990881701 + ], + [ + 8.4360387, + 48.990618001 + ], + [ + 8.4360213, + 48.990195501 + ], + [ + 8.4360326, + 48.989638901 + ], + [ + 8.43611, + 48.988812101 + ], + [ + 8.4361649, + 48.988013001 + ], + [ + 8.4362376, + 48.987215001 + ], + [ + 8.4363033, + 48.986394701 + ], + [ + 8.4363506, + 48.985803501 + ], + [ + 8.4363562, + 48.985730401 + ], + [ + 8.4363754, + 48.985479001 + ], + [ + 8.4364325, + 48.984834101 + ], + [ + 8.436511, + 48.983913501 + ], + [ + 8.4365794, + 48.983057901 + ], + [ + 8.4366644, + 48.982043501 + ], + [ + 8.4367236, + 48.981336001 + ], + [ + 8.4367597, + 48.980833701 + ], + [ + 8.4368482, + 48.979600201 + ], + [ + 8.4368923, + 48.979332501 + ], + [ + 8.436915, + 48.979003701 + ], + [ + 8.4370061, + 48.977880701 + ], + [ + 8.4370525, + 48.977308901 + ], + [ + 8.4371288, + 48.976220701 + ], + [ + 8.4371322, + 48.975888601 + ], + [ + 8.4371179, + 48.975638701 + ], + [ + 8.4370866, + 48.975381101 + ], + [ + 8.4370003, + 48.974983301 + ], + [ + 8.4369461, + 48.974755101 + ], + [ + 8.4368888, + 48.974543401 + ], + [ + 8.4366964, + 48.974058901 + ], + [ + 8.4364984, + 48.973641001 + ], + [ + 8.4362152, + 48.973190301 + ], + [ + 8.4360605, + 48.972974901 + ], + [ + 8.435889, + 48.972745201 + ], + [ + 8.4356268, + 48.972438201 + ], + [ + 8.4353538, + 48.972146401 + ], + [ + 8.4352324, + 48.972025301 + ], + [ + 8.4349596, + 48.971770401 + ], + [ + 8.434642, + 48.971514901 + ], + [ + 8.4343245, + 48.971270401 + ], + [ + 8.4340578, + 48.971084401 + ], + [ + 8.4337915, + 48.970914301 + ], + [ + 8.4334719, + 48.970720801 + ], + [ + 8.4331941, + 48.970561401 + ], + [ + 8.4329796, + 48.970450601 + ], + [ + 8.4326646, + 48.970296901 + ], + [ + 8.4322675, + 48.970114901 + ], + [ + 8.431873, + 48.969945701 + ], + [ + 8.4306924, + 48.969440401 + ], + [ + 8.4273422, + 48.968006601 + ], + [ + 8.4246305, + 48.966833401 + ], + [ + 8.4240588, + 48.966597701 + ], + [ + 8.4228791, + 48.966129401 + ], + [ + 8.4213844, + 48.965572601 + ], + [ + 8.4192304, + 48.964759401 + ], + [ + 8.4188515, + 48.964621201 + ], + [ + 8.4135133, + 48.962589701 + ], + [ + 8.4127297, + 48.962303001 + ], + [ + 8.4126157, + 48.962261301 + ], + [ + 8.4117316, + 48.961966901 + ], + [ + 8.4109304, + 48.961716901 + ], + [ + 8.410257, + 48.961534101 + ], + [ + 8.4100213, + 48.961481901 + ], + [ + 8.40893, + 48.961226301 + ], + [ + 8.4085009, + 48.961145001 + ], + [ + 8.4080162, + 48.961056601 + ], + [ + 8.4074825, + 48.960965601 + ], + [ + 8.4067538, + 48.960847201 + ], + [ + 8.4047034, + 48.960510201 + ], + [ + 8.4032798, + 48.960275801 + ], + [ + 8.399805443, + 48.959740701 + ] + ] + } + }, + { + "identifier": "2026-015854--vi-bs.2026-04-17_07-00-00-000.devi-zus.2026-03-29_14-00-00-000.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.35152159447189,8.631436118068319,49.353220469864745,8.631528512973434", + "point": "49.35152159447189,8.631436118068319", + "startLcPosition": "71", + "impact": { + "lower": "Heidelberg/Schwetzingen", + "upper": "Hardtwald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Heidelberg", + "title": "A5 | Hardtwald - Heidelberg/Schwetzingen", + "coordinate": { + "lat": 49.35152159447189, + "long": 8.631436118068319 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 07:00 bis 11:00 Uhr", + "17.04.26 von 15:30 bis 18:00 Uhr", + "", + "A5: Karlsruhe -> Heidelberg, zwischen 0.2 km hinter Hardtwald und 1.9 km vor AS Heidelberg/Schwetzingen", + "", + "L\u00e4nge: 0.19 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Aufbau der Beschilderung im Bereich AK HD-Schwetzingen bzgl. der Bauma\u00dfnahme auf der B535" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.631436118, + 49.351521594 + ], + [ + 8.6314459, + 49.351711601 + ], + [ + 8.6314791, + 49.352305401 + ], + [ + 8.6315091, + 49.352859901 + ], + [ + 8.631528513, + 49.35322047 + ] + ] + } + }, + { + "identifier": "2026-015854--vi-bs.2026-03-29_14-00-00-000.devi-zus.2026-03-29_14-00-00-000.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.35152159447189,8.631436118068319,49.353220469864745,8.631528512973434", + "point": "49.35152159447189,8.631436118068319", + "startLcPosition": "71", + "impact": { + "lower": "Heidelberg/Schwetzingen", + "upper": "Hardtwald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Heidelberg", + "title": "A5 | Hardtwald - Heidelberg/Schwetzingen", + "startTimestamp": "2026-03-29T14:00:00+02:00", + "coordinate": { + "lat": 49.35152159447189, + "long": 8.631436118068319 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.03.26 um 14:00 Uhr", + "Ende: 18.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.26)", + "", + "A5: Karlsruhe -> Heidelberg, zwischen 0.2 km hinter Hardtwald und 1.9 km vor AS Heidelberg/Schwetzingen", + "", + "L\u00e4nge: 0.19 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Aufbau der Beschilderung im Bereich AK HD-Schwetzingen bzgl. der Bauma\u00dfnahme auf der B535" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.631436118, + 49.351521594 + ], + [ + 8.6314459, + 49.351711601 + ], + [ + 8.6314791, + 49.352305401 + ], + [ + 8.6315091, + 49.352859901 + ], + [ + 8.631528513, + 49.35322047 + ] + ] + } + }, + { + "identifier": "2026-015854--vi-bs.2026-04-17_07-00-00-000.devi-zus.2026-03-29_14-00-00-000.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.38506738716476,8.637787674302688,49.383617891414715,8.637065009723035", + "point": "49.38506738716476,8.637787674302688", + "startLcPosition": "73", + "impact": { + "lower": "Heidelberg/Schwetzingen", + "upper": "Heidelberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Karlsruhe", + "title": "A5 | Heidelberg - Heidelberg/Schwetzingen", + "coordinate": { + "lat": 49.38506738716476, + "long": 8.637787674302688 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 07:00 bis 11:00 Uhr", + "17.04.26 von 15:30 bis 18:00 Uhr", + "", + "A5: Darmstadt -> Karlsruhe, zwischen 3.7 km hinter AK Heidelberg und 1.5 km vor AS Heidelberg/Schwetzingen", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Aufbau der Beschilderung im Bereich AK HD-Schwetzingen bzgl. der Bauma\u00dfnahme auf der B535" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.637787674, + 49.385067387 + ], + [ + 8.6376109, + 49.384669101 + ], + [ + 8.6373993, + 49.384233501 + ], + [ + 8.6372232, + 49.383901601 + ], + [ + 8.63706501, + 49.383617891 + ] + ] + } + }, + { + "identifier": "2026-015854--vi-bs.2026-03-29_14-00-00-000.devi-zus.2026-03-29_14-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.38506738716476,8.637787674302688,49.383617891414715,8.637065009723035", + "point": "49.38506738716476,8.637787674302688", + "startLcPosition": "73", + "impact": { + "lower": "Heidelberg/Schwetzingen", + "upper": "Heidelberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Karlsruhe", + "title": "A5 | Heidelberg - Heidelberg/Schwetzingen", + "startTimestamp": "2026-03-29T14:00:00+02:00", + "coordinate": { + "lat": 49.38506738716476, + "long": 8.637787674302688 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.03.26 um 14:00 Uhr", + "Ende: 18.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.26)", + "", + "A5: Darmstadt -> Karlsruhe, zwischen 3.7 km hinter AK Heidelberg und 1.5 km vor AS Heidelberg/Schwetzingen", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Aufbau der Beschilderung im Bereich AK HD-Schwetzingen bzgl. der Bauma\u00dfnahme auf der B535" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.637787674, + 49.385067387 + ], + [ + 8.6376109, + 49.384669101 + ], + [ + 8.6373993, + 49.384233501 + ], + [ + 8.6372232, + 49.383901601 + ], + [ + 8.63706501, + 49.383617891 + ] + ] + } + }, + { + "identifier": "2026-013977--vi-fbm.2026-03-20_06-00-00-000.devi-zus.2026-03-19_09-00-00-000_007.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.485686284849905,8.638850817464839,49.530117343824244,8.633999489636395", + "point": "49.485686284849905,8.638850817464839", + "startLcPosition": "75", + "impact": { + "lower": "Fliegwiese", + "upper": "Ladenburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heidelberg -> Darmstadt", + "title": "A5 | Ladenburg - Fliegwiese", + "startTimestamp": "2026-03-20T06:00:00+01:00", + "coordinate": { + "lat": 49.485686284849905, + "long": 8.638850817464839 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 06:00 Uhr", + "Ende: 20.11.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.11.26)", + "", + "A5: Heidelberg -> Darmstadt, zwischen 0.9 km hinter AS Ladenburg und 0.2 km vor Fliegwiese", + "", + "L\u00e4nge: 4.98 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 FBE AK Weinheim, Fahrtrichtung Heidelberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.638850817, + 49.485686285 + ], + [ + 8.6388478, + 49.485736201 + ], + [ + 8.6388133, + 49.486730301 + ], + [ + 8.6387976, + 49.487619501 + ], + [ + 8.6388504, + 49.489570101 + ], + [ + 8.6389241, + 49.490873801 + ], + [ + 8.6390179, + 49.492143301 + ], + [ + 8.6392548, + 49.494791601 + ], + [ + 8.6395257, + 49.497429901 + ], + [ + 8.6397658, + 49.500558101 + ], + [ + 8.6398397, + 49.502440301 + ], + [ + 8.6398446, + 49.502897001 + ], + [ + 8.6398597, + 49.504303601 + ], + [ + 8.6398601, + 49.505223101 + ], + [ + 8.6397993, + 49.507138801 + ], + [ + 8.6397181, + 49.508306001 + ], + [ + 8.6396775, + 49.508918401 + ], + [ + 8.6394888, + 49.510836901 + ], + [ + 8.6393968, + 49.511597101 + ], + [ + 8.6393823, + 49.511707501 + ], + [ + 8.6392108, + 49.512879601 + ], + [ + 8.6391456, + 49.513323201 + ], + [ + 8.6388789, + 49.514899001 + ], + [ + 8.6387703, + 49.515510101 + ], + [ + 8.6385635, + 49.516471401 + ], + [ + 8.6383303, + 49.517496401 + ], + [ + 8.6378688, + 49.519228401 + ], + [ + 8.637352, + 49.521110201 + ], + [ + 8.637297, + 49.521290501 + ], + [ + 8.6370944, + 49.521954901 + ], + [ + 8.6368997, + 49.522556301 + ], + [ + 8.6364987, + 49.523747301 + ], + [ + 8.6359581, + 49.525284501 + ], + [ + 8.6357675, + 49.525845201 + ], + [ + 8.6350486, + 49.527663801 + ], + [ + 8.6349253, + 49.527954801 + ], + [ + 8.6342905, + 49.529450801 + ], + [ + 8.63399949, + 49.530117344 + ] + ] + } + }, + { + "identifier": "2026-013977--vi-bs.2026-03-30_05-00-00-000.devi-zus.2026-03-19_09-00-00-000_007.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.53102580388712,8.633602845652657,49.556562109425705,8.628304521607006", + "point": "49.53102580388712,8.633602845652657", + "startLcPosition": "76", + "impact": { + "lower": "Hemsbach", + "upper": "Hirschberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heidelberg -> Darmstadt", + "title": "A5 | Hirschberg - Hemsbach", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 49.53102580388712, + "long": 8.633602845652657 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 20.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.11.26)", + "", + "A5: Heidelberg -> Darmstadt, zwischen 2.5 km hinter AS Hirschberg und 4.2 km vor AS Hemsbach", + "", + "L\u00e4nge: 2.89 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.95 m", + "", + "A5 FBE AK Weinheim, Fahrtrichtung Heidelberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.633602846, + 49.531025804 + ], + [ + 8.6334113, + 49.531464501 + ], + [ + 8.6323119, + 49.533989301 + ], + [ + 8.631592, + 49.535639101 + ], + [ + 8.6310534, + 49.536919401 + ], + [ + 8.6310095, + 49.537025201 + ], + [ + 8.6306992, + 49.537830201 + ], + [ + 8.6306617, + 49.537926701 + ], + [ + 8.6301962, + 49.539098701 + ], + [ + 8.6297575, + 49.540261301 + ], + [ + 8.6296844, + 49.540463101 + ], + [ + 8.6294095, + 49.541254201 + ], + [ + 8.629008, + 49.542508601 + ], + [ + 8.628498, + 49.544296601 + ], + [ + 8.6283554, + 49.544890701 + ], + [ + 8.6282754, + 49.545255301 + ], + [ + 8.6282051, + 49.545583101 + ], + [ + 8.6279168, + 49.547081401 + ], + [ + 8.6278083, + 49.547925301 + ], + [ + 8.6276983, + 49.548895301 + ], + [ + 8.6276733, + 49.549244601 + ], + [ + 8.6276238, + 49.550193401 + ], + [ + 8.6276146, + 49.551055501 + ], + [ + 8.6276631, + 49.552429101 + ], + [ + 8.6277217, + 49.553085201 + ], + [ + 8.6277995, + 49.553830701 + ], + [ + 8.6279756, + 49.554982001 + ], + [ + 8.6281748, + 49.555987401 + ], + [ + 8.628304522, + 49.556562109 + ] + ] + } + }, + { + "identifier": "2026-015097--vi-bs.2026-03-24_07-00-00-000_025.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.5326279064743,8.63271038581204,49.52941158779634,8.634123184130814", + "point": "49.5326279064743,8.63271038581204", + "startLcPosition": "79", + "impact": { + "lower": "Hirschberg", + "upper": "Weinheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Heidelberg", + "title": "A5 | Weinheim - Hirschberg", + "coordinate": { + "lat": 49.5326279064743, + "long": 8.63271038581204 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 24.03.26 und dem 30.04.26 von 07:00 bis 17:00 Uhr.", + "", + "A5: Darmstadt -> Heidelberg, zwischen 1.9 km hinter AK Weinheim und 2.3 km vor AS Hirschberg", + "", + "L\u00e4nge: 0.37 km | Maximale Durchfahrtsbreite: 10 m", + "", + "Arbeiten an PWC Fliegwiese" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.632710386, + 49.532627906 + ], + [ + 8.6332333, + 49.531433801 + ], + [ + 8.6341179, + 49.529424201 + ], + [ + 8.634123184, + 49.529411588 + ] + ] + } + }, + { + "identifier": "2026-014231--vi-bs.2026-03-30_20-00-00-000.devi-bs.2026-03-30_20-00-00-000_004.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.59112575837689,8.632114133456078,49.55594725281707,8.627979608790577", + "point": "49.59112575837689,8.632114133456078", + "startLcPosition": "80", + "impact": { + "lower": "Weinheim", + "upper": "Hemsbach", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Heidelberg", + "title": "A5 | Hemsbach - Weinheim", + "coordinate": { + "lat": 49.59112575837689, + "long": 8.632114133456078 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A5: Darmstadt -> Heidelberg, zwischen 0.3 km hinter AS Hemsbach und 0.8 km vor AK Weinheim", + "", + "L\u00e4nge: 4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A5 von Hemsbach (AS) nach Weinheim (AK) Fugensanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.632114133, + 49.591125758 + ], + [ + 8.632431, + 49.590163001 + ], + [ + 8.6326505, + 49.589539601 + ], + [ + 8.6329084, + 49.588814801 + ], + [ + 8.6334461, + 49.587230701 + ], + [ + 8.6337338, + 49.586385601 + ], + [ + 8.6340132, + 49.585509101 + ], + [ + 8.6342864, + 49.584597501 + ], + [ + 8.6345038, + 49.583774601 + ], + [ + 8.6346849, + 49.582998001 + ], + [ + 8.6348139, + 49.582360801 + ], + [ + 8.6350298, + 49.580966201 + ], + [ + 8.6351266, + 49.580059301 + ], + [ + 8.6351768, + 49.579329401 + ], + [ + 8.6351952, + 49.578955301 + ], + [ + 8.6352146, + 49.578148301 + ], + [ + 8.6351922, + 49.577048101 + ], + [ + 8.6351588, + 49.576408401 + ], + [ + 8.6350641, + 49.575403901 + ], + [ + 8.6349819, + 49.574759501 + ], + [ + 8.6348494, + 49.573920201 + ], + [ + 8.6347174, + 49.573234901 + ], + [ + 8.6344253, + 49.571989301 + ], + [ + 8.6342361, + 49.571302801 + ], + [ + 8.634082, + 49.570812501 + ], + [ + 8.6338968, + 49.570264301 + ], + [ + 8.6336852, + 49.569654101 + ], + [ + 8.6333647, + 49.568831401 + ], + [ + 8.6327847, + 49.567491201 + ], + [ + 8.6326087, + 49.567102801 + ], + [ + 8.6323755, + 49.566618601 + ], + [ + 8.6320506, + 49.565944401 + ], + [ + 8.6303311, + 49.562486101 + ], + [ + 8.6302669, + 49.562356901 + ], + [ + 8.6295192, + 49.560701601 + ], + [ + 8.6291358, + 49.559768101 + ], + [ + 8.6286399, + 49.558389401 + ], + [ + 8.6282895, + 49.557215201 + ], + [ + 8.6281117, + 49.556566001 + ], + [ + 8.627979609, + 49.555947253 + ] + ] + } + }, + { + "identifier": "2026-014231--vi-bs.2026-03-30_20-00-00-000.devi-bs.2026-03-30_20-00-00-000_004.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.59112575837689,8.632114133456078,49.55594725281707,8.627979608790577", + "point": "49.59112575837689,8.632114133456078", + "startLcPosition": "80", + "impact": { + "lower": "Weinheim", + "upper": "Hemsbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Heidelberg", + "title": "A5 | Hemsbach - Weinheim", + "coordinate": { + "lat": 49.59112575837689, + "long": 8.632114133456078 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A5: Darmstadt -> Heidelberg, zwischen 0.3 km hinter AS Hemsbach und 0.8 km vor AK Weinheim", + "", + "L\u00e4nge: 4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A5 von Hemsbach (AS) nach Weinheim (AK) Fugensanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.632114133, + 49.591125758 + ], + [ + 8.632431, + 49.590163001 + ], + [ + 8.6326505, + 49.589539601 + ], + [ + 8.6329084, + 49.588814801 + ], + [ + 8.6334461, + 49.587230701 + ], + [ + 8.6337338, + 49.586385601 + ], + [ + 8.6340132, + 49.585509101 + ], + [ + 8.6342864, + 49.584597501 + ], + [ + 8.6345038, + 49.583774601 + ], + [ + 8.6346849, + 49.582998001 + ], + [ + 8.6348139, + 49.582360801 + ], + [ + 8.6350298, + 49.580966201 + ], + [ + 8.6351266, + 49.580059301 + ], + [ + 8.6351768, + 49.579329401 + ], + [ + 8.6351952, + 49.578955301 + ], + [ + 8.6352146, + 49.578148301 + ], + [ + 8.6351922, + 49.577048101 + ], + [ + 8.6351588, + 49.576408401 + ], + [ + 8.6350641, + 49.575403901 + ], + [ + 8.6349819, + 49.574759501 + ], + [ + 8.6348494, + 49.573920201 + ], + [ + 8.6347174, + 49.573234901 + ], + [ + 8.6344253, + 49.571989301 + ], + [ + 8.6342361, + 49.571302801 + ], + [ + 8.634082, + 49.570812501 + ], + [ + 8.6338968, + 49.570264301 + ], + [ + 8.6336852, + 49.569654101 + ], + [ + 8.6333647, + 49.568831401 + ], + [ + 8.6327847, + 49.567491201 + ], + [ + 8.6326087, + 49.567102801 + ], + [ + 8.6323755, + 49.566618601 + ], + [ + 8.6320506, + 49.565944401 + ], + [ + 8.6303311, + 49.562486101 + ], + [ + 8.6302669, + 49.562356901 + ], + [ + 8.6295192, + 49.560701601 + ], + [ + 8.6291358, + 49.559768101 + ], + [ + 8.6286399, + 49.558389401 + ], + [ + 8.6282895, + 49.557215201 + ], + [ + 8.6281117, + 49.556566001 + ], + [ + 8.627979609, + 49.555947253 + ] + ] + } + }, + { + "identifier": "2026-000550--vi-bs.2026-04-01_00-00-00-000.devi-zus.2026-01-09_00-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.55040531925007,8.627442091110701,49.537012034576634,8.63082723849126", + "point": "49.55040531925007,8.627442091110701", + "startLcPosition": "80", + "impact": { + "lower": "Wachenburg", + "upper": "Hemsbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Heidelberg", + "title": "A5 | Hemsbach - Wachenburg", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 49.55040531925007, + "long": 8.627442091110701 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 20.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "A5: Darmstadt -> Heidelberg, zwischen 4.9 km hinter AS Hemsbach und 0.6 km vor Wachenburg", + "", + "L\u00e4nge: 1.51 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 FBE AK Weinheim FR Nord - Absicherung Mittelstreifen\u00fcberfahrten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.627442091, + 49.550405319 + ], + [ + 8.6274449, + 49.550196701 + ], + [ + 8.6274908, + 49.549243501 + ], + [ + 8.6275169, + 49.548894101 + ], + [ + 8.6276245, + 49.547915901 + ], + [ + 8.6277432, + 49.547063501 + ], + [ + 8.628009, + 49.545599601 + ], + [ + 8.6280885, + 49.545270601 + ], + [ + 8.6282279, + 49.544640801 + ], + [ + 8.6283485, + 49.544132001 + ], + [ + 8.628823, + 49.542481601 + ], + [ + 8.629191, + 49.541302401 + ], + [ + 8.6294964, + 49.540461001 + ], + [ + 8.6295674, + 49.540259001 + ], + [ + 8.6300148, + 49.539058501 + ], + [ + 8.6303174, + 49.538271101 + ], + [ + 8.630455, + 49.537931501 + ], + [ + 8.6304892, + 49.537839901 + ], + [ + 8.630827238, + 49.537012035 + ] + ] + } + }, + { + "identifier": "2026-013977--vi-fbm.2026-03-20_06-00-00-000.devi-zus.2026-03-19_09-00-00-000_007.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.60402554075088,8.630340369446095,49.562508146916755,8.630342060661915", + "point": "49.60402554075088,8.630340369446095", + "startLcPosition": "81", + "impact": { + "lower": "Weinheim", + "upper": "Fuchsbuckel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Heidelberg", + "title": "A5 | Fuchsbuckel - Weinheim", + "startTimestamp": "2026-03-20T06:00:00+01:00", + "coordinate": { + "lat": 49.60402554075088, + "long": 8.630340369446095 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 06:00 Uhr", + "Ende: 20.11.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.11.26)", + "", + "A5: Darmstadt -> Heidelberg, zwischen 2.1 km hinter Fuchsbuckel und 1.5 km vor AK Weinheim", + "", + "L\u00e4nge: 4.69 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 FBE AK Weinheim, Fahrtrichtung Heidelberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.630340369, + 49.604025541 + ], + [ + 8.6303412, + 49.604021401 + ], + [ + 8.6304931, + 49.602871601 + ], + [ + 8.6306181, + 49.601336101 + ], + [ + 8.6307141, + 49.599874901 + ], + [ + 8.6307904, + 49.598275801 + ], + [ + 8.6308817, + 49.597035401 + ], + [ + 8.6309457, + 49.596359201 + ], + [ + 8.6311158, + 49.595165801 + ], + [ + 8.6313971, + 49.593684201 + ], + [ + 8.631632, + 49.592763401 + ], + [ + 8.6319912, + 49.591513801 + ], + [ + 8.6321052, + 49.591152901 + ], + [ + 8.632431, + 49.590163001 + ], + [ + 8.6326505, + 49.589539601 + ], + [ + 8.6329084, + 49.588814801 + ], + [ + 8.6334461, + 49.587230701 + ], + [ + 8.6337338, + 49.586385601 + ], + [ + 8.6340132, + 49.585509101 + ], + [ + 8.6342864, + 49.584597501 + ], + [ + 8.6345038, + 49.583774601 + ], + [ + 8.6346849, + 49.582998001 + ], + [ + 8.6348139, + 49.582360801 + ], + [ + 8.6350298, + 49.580966201 + ], + [ + 8.6351266, + 49.580059301 + ], + [ + 8.6351768, + 49.579329401 + ], + [ + 8.6351952, + 49.578955301 + ], + [ + 8.6352146, + 49.578148301 + ], + [ + 8.6351922, + 49.577048101 + ], + [ + 8.6351588, + 49.576408401 + ], + [ + 8.6350641, + 49.575403901 + ], + [ + 8.6349819, + 49.574759501 + ], + [ + 8.6348494, + 49.573920201 + ], + [ + 8.6347174, + 49.573234901 + ], + [ + 8.6344253, + 49.571989301 + ], + [ + 8.6342361, + 49.571302801 + ], + [ + 8.634082, + 49.570812501 + ], + [ + 8.6338968, + 49.570264301 + ], + [ + 8.6336852, + 49.569654101 + ], + [ + 8.6333647, + 49.568831401 + ], + [ + 8.6327847, + 49.567491201 + ], + [ + 8.6326087, + 49.567102801 + ], + [ + 8.6323755, + 49.566618601 + ], + [ + 8.6320506, + 49.565944401 + ], + [ + 8.630342061, + 49.562508147 + ] + ] + } + }, + { + "identifier": "2026-016654--vi-bs.2026-04-06_20-00-00-000.devi-zus.2026-04-06_20-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.6471652539683,8.609685280968408,49.85126164765626,8.606836466052714", + "point": "49.6471652539683,8.609685280968408", + "startLcPosition": "82", + "impact": { + "lower": "Darmst\u00e4dter Kreuz", + "upper": "Heppenheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heidelberg -> Darmstadt", + "title": "A5 | Heppenheim - Darmst\u00e4dter Kreuz", + "coordinate": { + "lat": 49.6471652539683, + "long": 8.609685280968408 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A5: Heidelberg -> Darmstadt, zwischen AS Heppenheim und 1.0 km vor AK Darmst\u00e4dter Kreuz", + "", + "L\u00e4nge: 24.49 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Darmst\u00e4dter Kreuz (AK) nach Heppenheim (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.609685281, + 49.647165254 + ], + [ + 8.6097295, + 49.647737101 + ], + [ + 8.6097709, + 49.648252401 + ], + [ + 8.6098099, + 49.648803701 + ], + [ + 8.609841, + 49.649403301 + ], + [ + 8.6098674, + 49.650468001 + ], + [ + 8.6098687, + 49.650532801 + ], + [ + 8.6098571, + 49.651618701 + ], + [ + 8.6098216, + 49.652187301 + ], + [ + 8.6098154, + 49.652266501 + ], + [ + 8.6097656, + 49.652993801 + ], + [ + 8.609731, + 49.653270401 + ], + [ + 8.6096731, + 49.653672601 + ], + [ + 8.6095898, + 49.654150401 + ], + [ + 8.6094911, + 49.654625801 + ], + [ + 8.6091603, + 49.655897601 + ], + [ + 8.6087919, + 49.656958901 + ], + [ + 8.6083918, + 49.657939701 + ], + [ + 8.6075996, + 49.659515901 + ], + [ + 8.6074883, + 49.659710301 + ], + [ + 8.607413, + 49.659842601 + ], + [ + 8.6071511, + 49.660306701 + ], + [ + 8.6068819, + 49.660771201 + ], + [ + 8.6062952, + 49.661676801 + ], + [ + 8.606172, + 49.661864401 + ], + [ + 8.6053939, + 49.663045801 + ], + [ + 8.6044917, + 49.664401901 + ], + [ + 8.6033769, + 49.666070501 + ], + [ + 8.6032388, + 49.666280501 + ], + [ + 8.6027288, + 49.667099101 + ], + [ + 8.6023253, + 49.667833901 + ], + [ + 8.6022409, + 49.667986801 + ], + [ + 8.6016891, + 49.669029701 + ], + [ + 8.601302, + 49.669820901 + ], + [ + 8.6010464, + 49.670467001 + ], + [ + 8.6007042, + 49.671303201 + ], + [ + 8.6002796, + 49.672563701 + ], + [ + 8.6001939, + 49.672837101 + ], + [ + 8.6000721, + 49.673266701 + ], + [ + 8.6000086, + 49.673531601 + ], + [ + 8.5999539, + 49.673741101 + ], + [ + 8.5998514, + 49.674126701 + ], + [ + 8.5997449, + 49.674613001 + ], + [ + 8.599649, + 49.675158001 + ], + [ + 8.5994897, + 49.676271901 + ], + [ + 8.5994113, + 49.677075301 + ], + [ + 8.5993944, + 49.677582401 + ], + [ + 8.5993933, + 49.677725501 + ], + [ + 8.5993722, + 49.678263101 + ], + [ + 8.5993893, + 49.678642601 + ], + [ + 8.5994179, + 49.679201001 + ], + [ + 8.5994744, + 49.679742901 + ], + [ + 8.5995355, + 49.680247101 + ], + [ + 8.5996197, + 49.680776901 + ], + [ + 8.5997708, + 49.681468301 + ], + [ + 8.599913, + 49.682044801 + ], + [ + 8.6001003, + 49.682716801 + ], + [ + 8.6003024, + 49.683344401 + ], + [ + 8.6004944, + 49.683883301 + ], + [ + 8.6008769, + 49.684874301 + ], + [ + 8.601324, + 49.685917901 + ], + [ + 8.601657, + 49.686738301 + ], + [ + 8.6020767, + 49.687782601 + ], + [ + 8.6023179, + 49.688517501 + ], + [ + 8.6025392, + 49.689220301 + ], + [ + 8.6027759, + 49.690071401 + ], + [ + 8.6029359, + 49.690804301 + ], + [ + 8.6030498, + 49.691387101 + ], + [ + 8.6031286, + 49.691992801 + ], + [ + 8.6032266, + 49.693040601 + ], + [ + 8.603236, + 49.693745201 + ], + [ + 8.6032088, + 49.694373001 + ], + [ + 8.6031886, + 49.694841201 + ], + [ + 8.6031239, + 49.695639401 + ], + [ + 8.6030621, + 49.696027401 + ], + [ + 8.602929, + 49.696776501 + ], + [ + 8.6027593, + 49.697545001 + ], + [ + 8.6025929, + 49.698154201 + ], + [ + 8.6023566, + 49.698894701 + ], + [ + 8.6020471, + 49.699751401 + ], + [ + 8.6015745, + 49.700961101 + ], + [ + 8.601175, + 49.701934701 + ], + [ + 8.5998732, + 49.704914401 + ], + [ + 8.5992392, + 49.706481201 + ], + [ + 8.5984801, + 49.708377601 + ], + [ + 8.5977953, + 49.710168701 + ], + [ + 8.5967374, + 49.713105801 + ], + [ + 8.5963382, + 49.714367801 + ], + [ + 8.5962983, + 49.714484501 + ], + [ + 8.5958579, + 49.715825801 + ], + [ + 8.5953109, + 49.717525901 + ], + [ + 8.5948618, + 49.719089701 + ], + [ + 8.5944133, + 49.720669201 + ], + [ + 8.5938194, + 49.722977901 + ], + [ + 8.5935799, + 49.723832101 + ], + [ + 8.5932944, + 49.725084501 + ], + [ + 8.5928875, + 49.726819001 + ], + [ + 8.5926375, + 49.728109501 + ], + [ + 8.5924886, + 49.728959401 + ], + [ + 8.5923846, + 49.729583501 + ], + [ + 8.592301, + 49.730159201 + ], + [ + 8.5922184, + 49.730743301 + ], + [ + 8.5921366, + 49.731405801 + ], + [ + 8.5920628, + 49.732051601 + ], + [ + 8.5919974, + 49.732710401 + ], + [ + 8.5918795, + 49.734326001 + ], + [ + 8.5917974, + 49.736281101 + ], + [ + 8.5917771, + 49.737095401 + ], + [ + 8.5917696, + 49.738439901 + ], + [ + 8.5918399, + 49.740518101 + ], + [ + 8.5919369, + 49.741928301 + ], + [ + 8.5920182, + 49.742867901 + ], + [ + 8.5921091, + 49.743619801 + ], + [ + 8.5922154, + 49.744529801 + ], + [ + 8.5923482, + 49.745473501 + ], + [ + 8.5924568, + 49.746139001 + ], + [ + 8.5926023, + 49.747042201 + ], + [ + 8.5929513, + 49.748794101 + ], + [ + 8.5930688, + 49.749347801 + ], + [ + 8.5930955, + 49.749473601 + ], + [ + 8.5932039, + 49.749918101 + ], + [ + 8.5932916, + 49.750277501 + ], + [ + 8.5934406, + 49.750892601 + ], + [ + 8.593696, + 49.751852401 + ], + [ + 8.5939618, + 49.752792301 + ], + [ + 8.5942258, + 49.753676701 + ], + [ + 8.5944475, + 49.754354801 + ], + [ + 8.5948997, + 49.755670901 + ], + [ + 8.5952778, + 49.756633501 + ], + [ + 8.5956578, + 49.757524501 + ], + [ + 8.5959812, + 49.758225901 + ], + [ + 8.5960542, + 49.758384301 + ], + [ + 8.5962911, + 49.758836401 + ], + [ + 8.5964765, + 49.759190301 + ], + [ + 8.5969324, + 49.760017301 + ], + [ + 8.597591, + 49.761056201 + ], + [ + 8.5979811, + 49.761650601 + ], + [ + 8.5984103, + 49.762242101 + ], + [ + 8.5988118, + 49.762772801 + ], + [ + 8.5992733, + 49.763346901 + ], + [ + 8.5998474, + 49.764029801 + ], + [ + 8.6003452, + 49.764575301 + ], + [ + 8.6008726, + 49.765128401 + ], + [ + 8.6015746, + 49.765837801 + ], + [ + 8.6020446, + 49.766270801 + ], + [ + 8.6026202, + 49.766786201 + ], + [ + 8.603213, + 49.767299301 + ], + [ + 8.6038985, + 49.767866601 + ], + [ + 8.6044471, + 49.768291401 + ], + [ + 8.6050479, + 49.768748601 + ], + [ + 8.6056869, + 49.769215301 + ], + [ + 8.6062667, + 49.769617301 + ], + [ + 8.6068062, + 49.769979001 + ], + [ + 8.6075402, + 49.770468801 + ], + [ + 8.6080881, + 49.770831601 + ], + [ + 8.6095568, + 49.771834201 + ], + [ + 8.6102598, + 49.772330301 + ], + [ + 8.6114042, + 49.773174201 + ], + [ + 8.6123754, + 49.773998701 + ], + [ + 8.6130343, + 49.774620001 + ], + [ + 8.6136471, + 49.775252801 + ], + [ + 8.6141517, + 49.775829101 + ], + [ + 8.6146107, + 49.776383301 + ], + [ + 8.6151037, + 49.777060601 + ], + [ + 8.6155627, + 49.777731701 + ], + [ + 8.6159137, + 49.778314801 + ], + [ + 8.6162789, + 49.779032901 + ], + [ + 8.6165868, + 49.779678301 + ], + [ + 8.6167601, + 49.780053701 + ], + [ + 8.6169366, + 49.780550401 + ], + [ + 8.6172051, + 49.781371501 + ], + [ + 8.617449, + 49.782211301 + ], + [ + 8.6176793, + 49.783223201 + ], + [ + 8.6178939, + 49.784299801 + ], + [ + 8.6180434, + 49.785216801 + ], + [ + 8.6181809, + 49.786105101 + ], + [ + 8.6183372, + 49.787216001 + ], + [ + 8.6185045, + 49.788300201 + ], + [ + 8.6186996, + 49.789452501 + ], + [ + 8.618886, + 49.790434601 + ], + [ + 8.6190221, + 49.791015901 + ], + [ + 8.6191736, + 49.791643601 + ], + [ + 8.6193786, + 49.792384801 + ], + [ + 8.6196714, + 49.793238701 + ], + [ + 8.6198225, + 49.793663001 + ], + [ + 8.6200045, + 49.794094001 + ], + [ + 8.6202035, + 49.794562801 + ], + [ + 8.6205128, + 49.795210501 + ], + [ + 8.6208376, + 49.795850801 + ], + [ + 8.6212014, + 49.796512001 + ], + [ + 8.6216432, + 49.797260001 + ], + [ + 8.62213, + 49.798000801 + ], + [ + 8.6225043, + 49.798545401 + ], + [ + 8.6229443, + 49.799157501 + ], + [ + 8.623454, + 49.799861501 + ], + [ + 8.623885, + 49.800447801 + ], + [ + 8.624323, + 49.801034901 + ], + [ + 8.6252584, + 49.802308801 + ], + [ + 8.6262705, + 49.803766401 + ], + [ + 8.6266692, + 49.804401701 + ], + [ + 8.6270068, + 49.804979501 + ], + [ + 8.6272109, + 49.805339601 + ], + [ + 8.6274127, + 49.805733501 + ], + [ + 8.6278097, + 49.806537501 + ], + [ + 8.627946, + 49.806868401 + ], + [ + 8.628117, + 49.807306201 + ], + [ + 8.6282709, + 49.807746501 + ], + [ + 8.6284076, + 49.808189301 + ], + [ + 8.628527, + 49.808634101 + ], + [ + 8.628629, + 49.809080601 + ], + [ + 8.6287212, + 49.809574501 + ], + [ + 8.6287922, + 49.810069801 + ], + [ + 8.6288419, + 49.810566201 + ], + [ + 8.6288716, + 49.810899401 + ], + [ + 8.6288906, + 49.811278801 + ], + [ + 8.6288927, + 49.811486301 + ], + [ + 8.6288594, + 49.812170501 + ], + [ + 8.6288361, + 49.812754001 + ], + [ + 8.628804, + 49.813499701 + ], + [ + 8.6287911, + 49.813676001 + ], + [ + 8.6287423, + 49.814394301 + ], + [ + 8.628723, + 49.814758601 + ], + [ + 8.6287185, + 49.815230401 + ], + [ + 8.6287117, + 49.815449801 + ], + [ + 8.6287093, + 49.815954201 + ], + [ + 8.6287193, + 49.816288501 + ], + [ + 8.6287324, + 49.816664501 + ], + [ + 8.6287361, + 49.816748501 + ], + [ + 8.628752, + 49.816955501 + ], + [ + 8.6288136, + 49.817471501 + ], + [ + 8.6289094, + 49.818071801 + ], + [ + 8.6289775, + 49.818393501 + ], + [ + 8.6290487, + 49.818706401 + ], + [ + 8.6291911, + 49.819232801 + ], + [ + 8.6293405, + 49.819708301 + ], + [ + 8.62944, + 49.819998501 + ], + [ + 8.6295126, + 49.820201101 + ], + [ + 8.629696, + 49.820655001 + ], + [ + 8.6299604, + 49.821239601 + ], + [ + 8.6301058, + 49.821532401 + ], + [ + 8.6303133, + 49.821921201 + ], + [ + 8.6305255, + 49.822306201 + ], + [ + 8.6308224, + 49.822796101 + ], + [ + 8.6311973, + 49.823397301 + ], + [ + 8.6315116, + 49.823888301 + ], + [ + 8.6318372, + 49.824396801 + ], + [ + 8.6322217, + 49.824998701 + ], + [ + 8.6324011, + 49.825291201 + ], + [ + 8.6327309, + 49.825824901 + ], + [ + 8.6327744, + 49.825900201 + ], + [ + 8.6329264, + 49.826169301 + ], + [ + 8.6330826, + 49.826449001 + ], + [ + 8.6332195, + 49.826706601 + ], + [ + 8.6333491, + 49.826965301 + ], + [ + 8.6334474, + 49.827167701 + ], + [ + 8.633566, + 49.827429101 + ], + [ + 8.6336526, + 49.827635301 + ], + [ + 8.6337554, + 49.827897601 + ], + [ + 8.6338384, + 49.828108101 + ], + [ + 8.6339274, + 49.828372201 + ], + [ + 8.6339892, + 49.828580001 + ], + [ + 8.6340691, + 49.828847201 + ], + [ + 8.6341291, + 49.829085901 + ], + [ + 8.6341993, + 49.829402801 + ], + [ + 8.6342677, + 49.829774601 + ], + [ + 8.6343024, + 49.830019501 + ], + [ + 8.6343311, + 49.830303301 + ], + [ + 8.63435, + 49.830535601 + ], + [ + 8.6343635, + 49.830788601 + ], + [ + 8.6343701, + 49.831059801 + ], + [ + 8.6343694, + 49.831292201 + ], + [ + 8.6343391, + 49.831754401 + ], + [ + 8.6342443, + 49.832578901 + ], + [ + 8.6341745, + 49.833016901 + ], + [ + 8.6340818, + 49.833409701 + ], + [ + 8.6340116, + 49.833672501 + ], + [ + 8.6339653, + 49.833835401 + ], + [ + 8.6338753, + 49.834092601 + ], + [ + 8.6337689, + 49.834383501 + ], + [ + 8.6335918, + 49.834815801 + ], + [ + 8.6334521, + 49.835123301 + ], + [ + 8.6332661, + 49.835489401 + ], + [ + 8.6331604, + 49.835692501 + ], + [ + 8.6330464, + 49.835893101 + ], + [ + 8.6328863, + 49.836158301 + ], + [ + 8.6326756, + 49.836490001 + ], + [ + 8.6325038, + 49.836743601 + ], + [ + 8.6323712, + 49.836932001 + ], + [ + 8.6321505, + 49.837225601 + ], + [ + 8.6319246, + 49.837508901 + ], + [ + 8.6316699, + 49.837805701 + ], + [ + 8.6315042, + 49.837993701 + ], + [ + 8.631308, + 49.838208001 + ], + [ + 8.6311253, + 49.838397401 + ], + [ + 8.6308692, + 49.838655801 + ], + [ + 8.6306147, + 49.838892601 + ], + [ + 8.630375, + 49.839112501 + ], + [ + 8.6300771, + 49.839370301 + ], + [ + 8.6299223, + 49.839500801 + ], + [ + 8.6297214, + 49.839664001 + ], + [ + 8.6294013, + 49.839913401 + ], + [ + 8.6291197, + 49.840125701 + ], + [ + 8.6287957, + 49.840357301 + ], + [ + 8.6285672, + 49.840513201 + ], + [ + 8.6282716, + 49.840708501 + ], + [ + 8.6280388, + 49.840857501 + ], + [ + 8.6277281, + 49.841048201 + ], + [ + 8.6274232, + 49.841229801 + ], + [ + 8.6270701, + 49.841426401 + ], + [ + 8.6266447, + 49.841660501 + ], + [ + 8.6263392, + 49.841816601 + ], + [ + 8.6260794, + 49.841948101 + ], + [ + 8.6257561, + 49.842106101 + ], + [ + 8.6253492, + 49.842300101 + ], + [ + 8.6249243, + 49.842494401 + ], + [ + 8.6241748, + 49.842825601 + ], + [ + 8.6234111, + 49.843151101 + ], + [ + 8.6224002, + 49.843573201 + ], + [ + 8.620109, + 49.844541401 + ], + [ + 8.6187026, + 49.845137901 + ], + [ + 8.617827, + 49.845509601 + ], + [ + 8.6168016, + 49.845955701 + ], + [ + 8.6156666, + 49.846464001 + ], + [ + 8.6147623, + 49.846876501 + ], + [ + 8.613905, + 49.847283901 + ], + [ + 8.6131115, + 49.847674601 + ], + [ + 8.6122288, + 49.848121801 + ], + [ + 8.6118219, + 49.848335501 + ], + [ + 8.6112008, + 49.848666301 + ], + [ + 8.6102032, + 49.849222101 + ], + [ + 8.6089098, + 49.849967201 + ], + [ + 8.6080325, + 49.850504901 + ], + [ + 8.6072778, + 49.850974201 + ], + [ + 8.606836466, + 49.851261648 + ] + ] + } + }, + { + "identifier": "2026-016396--vi-bs.2026-04-20_20-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.76971935482468,8.60641891907139,49.7736804573095,8.612000527503078", + "point": "49.76971935482468,8.60641891907139", + "startLcPosition": "90", + "impact": { + "lower": "Seeheim-Jugenheim", + "upper": "Erlensee", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heidelberg -> Darmstadt", + "title": "A5 | Erlensee - Seeheim-Jugenheim", + "coordinate": { + "lat": 49.76971935482468, + "long": 8.60641891907139 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 05:00 Uhr.", + "", + "A5: Heidelberg -> Darmstadt, zwischen 0.3 km hinter Erlensee und 0.3 km vor AS Seeheim-Jugenheim", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Erlensee (Parkplatz) nach Seeheim-Jugenheim (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.606418919, + 49.769719355 + ], + [ + 8.6068062, + 49.769979001 + ], + [ + 8.6075402, + 49.770468801 + ], + [ + 8.6080881, + 49.770831601 + ], + [ + 8.6095568, + 49.771834201 + ], + [ + 8.6102598, + 49.772330301 + ], + [ + 8.6114042, + 49.773174201 + ], + [ + 8.612000528, + 49.773680457 + ] + ] + } + }, + { + "identifier": "2026-016654--vi-bs.2026-04-06_20-00-00-000.devi-zus.2026-04-06_20-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.851220820403626,8.60663614069658,49.647162236547636,8.609507956863899", + "point": "49.851220820403626,8.60663614069658", + "startLcPosition": "94", + "impact": { + "lower": "Heppenheim", + "upper": "Darmst\u00e4dter Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Heidelberg", + "title": "A5 | Darmst\u00e4dter Kreuz - Heppenheim", + "coordinate": { + "lat": 49.851220820403626, + "long": 8.60663614069658 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A5: Darmstadt -> Heidelberg, zwischen 1.0 km hinter AK Darmst\u00e4dter Kreuz und AS Heppenheim", + "", + "L\u00e4nge: 24.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Darmst\u00e4dter Kreuz (AK) nach Heppenheim (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.606636141, + 49.85122082 + ], + [ + 8.6071493, + 49.850894001 + ], + [ + 8.6078926, + 49.850426601 + ], + [ + 8.6080771, + 49.850313301 + ], + [ + 8.6086187, + 49.849982801 + ], + [ + 8.6088435, + 49.849850901 + ], + [ + 8.6093981, + 49.849523401 + ], + [ + 8.6099544, + 49.849203901 + ], + [ + 8.6104694, + 49.848913801 + ], + [ + 8.6110894, + 49.848574801 + ], + [ + 8.6121012, + 49.848038501 + ], + [ + 8.6130475, + 49.847557001 + ], + [ + 8.6138195, + 49.847173701 + ], + [ + 8.6146674, + 49.846775301 + ], + [ + 8.6157022, + 49.846301901 + ], + [ + 8.6166856, + 49.845863201 + ], + [ + 8.617721, + 49.845415201 + ], + [ + 8.6192571, + 49.844762401 + ], + [ + 8.6200166, + 49.844440501 + ], + [ + 8.6212159, + 49.843934701 + ], + [ + 8.6222971, + 49.843480601 + ], + [ + 8.6227555, + 49.843290801 + ], + [ + 8.6232094, + 49.843098801 + ], + [ + 8.6240938, + 49.842720801 + ], + [ + 8.6244573, + 49.842561701 + ], + [ + 8.6248248, + 49.842396901 + ], + [ + 8.6254283, + 49.842120001 + ], + [ + 8.6258313, + 49.841925201 + ], + [ + 8.6262243, + 49.841727801 + ], + [ + 8.6264717, + 49.841602601 + ], + [ + 8.6267253, + 49.841468001 + ], + [ + 8.6269679, + 49.841332901 + ], + [ + 8.6273179, + 49.841137201 + ], + [ + 8.6275569, + 49.840995701 + ], + [ + 8.6278637, + 49.840806001 + ], + [ + 8.6280955, + 49.840657301 + ], + [ + 8.628417, + 49.840449701 + ], + [ + 8.6287328, + 49.840230401 + ], + [ + 8.6290386, + 49.840006801 + ], + [ + 8.6293436, + 49.839778501 + ], + [ + 8.6294845, + 49.839670801 + ], + [ + 8.6296313, + 49.839554001 + ], + [ + 8.629909, + 49.839321101 + ], + [ + 8.6301792, + 49.839088701 + ], + [ + 8.630451, + 49.838843301 + ], + [ + 8.6307793, + 49.838530001 + ], + [ + 8.6310312, + 49.838277301 + ], + [ + 8.6312661, + 49.838027001 + ], + [ + 8.6315179, + 49.837746601 + ], + [ + 8.631755, + 49.837466901 + ], + [ + 8.6319472, + 49.837227101 + ], + [ + 8.6321318, + 49.836987301 + ], + [ + 8.6322585, + 49.836817801 + ], + [ + 8.6324152, + 49.836589201 + ], + [ + 8.6325422, + 49.836398301 + ], + [ + 8.6327362, + 49.836096401 + ], + [ + 8.6329991, + 49.835641401 + ], + [ + 8.6331895, + 49.835274201 + ], + [ + 8.6333093, + 49.835028601 + ], + [ + 8.6334284, + 49.834764101 + ], + [ + 8.6335138, + 49.834557601 + ], + [ + 8.6336187, + 49.834293201 + ], + [ + 8.6337472, + 49.833923101 + ], + [ + 8.6338557, + 49.833577701 + ], + [ + 8.6338759, + 49.833501401 + ], + [ + 8.6339369, + 49.833244901 + ], + [ + 8.6339624, + 49.833138701 + ], + [ + 8.6340348, + 49.832811501 + ], + [ + 8.6340861, + 49.832528901 + ], + [ + 8.6341448, + 49.832051101 + ], + [ + 8.6341651, + 49.831775701 + ], + [ + 8.6341837, + 49.831513101 + ], + [ + 8.6341918, + 49.831209201 + ], + [ + 8.634182, + 49.830754601 + ], + [ + 8.6341582, + 49.830382801 + ], + [ + 8.634128, + 49.830108201 + ], + [ + 8.6340853, + 49.829785701 + ], + [ + 8.6340382, + 49.829542401 + ], + [ + 8.6339988, + 49.829324501 + ], + [ + 8.6339036, + 49.828932101 + ], + [ + 8.6337671, + 49.828454101 + ], + [ + 8.6336761, + 49.828183801 + ], + [ + 8.6335921, + 49.827946301 + ], + [ + 8.6334997, + 49.827711401 + ], + [ + 8.6333645, + 49.827401201 + ], + [ + 8.6332671, + 49.827193201 + ], + [ + 8.6331652, + 49.826976401 + ], + [ + 8.6329021, + 49.826464801 + ], + [ + 8.6326105, + 49.825950701 + ], + [ + 8.6325663, + 49.825876501 + ], + [ + 8.6321653, + 49.825212401 + ], + [ + 8.6318609, + 49.824736601 + ], + [ + 8.6315878, + 49.824310201 + ], + [ + 8.631039, + 49.823457801 + ], + [ + 8.6306706, + 49.822857601 + ], + [ + 8.6303705, + 49.822357801 + ], + [ + 8.6301363, + 49.821946301 + ], + [ + 8.6299806, + 49.821646301 + ], + [ + 8.6297895, + 49.821266001 + ], + [ + 8.6296508, + 49.820974201 + ], + [ + 8.6295138, + 49.820660701 + ], + [ + 8.6294053, + 49.820398301 + ], + [ + 8.6292854, + 49.820083301 + ], + [ + 8.6291695, + 49.819751501 + ], + [ + 8.6291036, + 49.819559501 + ], + [ + 8.6290146, + 49.819265501 + ], + [ + 8.6289306, + 49.818974501 + ], + [ + 8.6288784, + 49.818755701 + ], + [ + 8.6287381, + 49.818126501 + ], + [ + 8.6286397, + 49.817530801 + ], + [ + 8.6285797, + 49.816998101 + ], + [ + 8.6285531, + 49.816671101 + ], + [ + 8.6285506, + 49.816614501 + ], + [ + 8.6285283, + 49.816025101 + ], + [ + 8.6285251, + 49.815423301 + ], + [ + 8.628538, + 49.815205601 + ], + [ + 8.6285534, + 49.814760101 + ], + [ + 8.6285734, + 49.814392401 + ], + [ + 8.628597, + 49.814002801 + ], + [ + 8.6286147, + 49.813685301 + ], + [ + 8.6286259, + 49.813507401 + ], + [ + 8.6286597, + 49.813067301 + ], + [ + 8.6286768, + 49.812788101 + ], + [ + 8.6286932, + 49.812460201 + ], + [ + 8.6286995, + 49.812110101 + ], + [ + 8.6287118, + 49.811467901 + ], + [ + 8.6287076, + 49.811262301 + ], + [ + 8.6286932, + 49.810894201 + ], + [ + 8.6286797, + 49.810642201 + ], + [ + 8.6286554, + 49.810366001 + ], + [ + 8.6286052, + 49.809932601 + ], + [ + 8.6285739, + 49.809724601 + ], + [ + 8.6285283, + 49.809451401 + ], + [ + 8.628488, + 49.809238301 + ], + [ + 8.6284396, + 49.808996501 + ], + [ + 8.6283281, + 49.808587001 + ], + [ + 8.6282196, + 49.808188401 + ], + [ + 8.6281304, + 49.807852001 + ], + [ + 8.6278905, + 49.807204101 + ], + [ + 8.6277746, + 49.806909401 + ], + [ + 8.6276358, + 49.806580901 + ], + [ + 8.6273782, + 49.806005801 + ], + [ + 8.627214, + 49.805670201 + ], + [ + 8.6270866, + 49.805438301 + ], + [ + 8.6270262, + 49.805328801 + ], + [ + 8.6268546, + 49.805021001 + ], + [ + 8.6264947, + 49.804428701 + ], + [ + 8.626304, + 49.804110501 + ], + [ + 8.6261035, + 49.803801001 + ], + [ + 8.6256429, + 49.803114701 + ], + [ + 8.6251084, + 49.802347701 + ], + [ + 8.6241584, + 49.801062401 + ], + [ + 8.6237371, + 49.800489401 + ], + [ + 8.6235099, + 49.800185501 + ], + [ + 8.6232897, + 49.799890801 + ], + [ + 8.623076, + 49.799601601 + ], + [ + 8.6228312, + 49.799262801 + ], + [ + 8.6225751, + 49.798907001 + ], + [ + 8.6223601, + 49.798591901 + ], + [ + 8.6220044, + 49.798082001 + ], + [ + 8.6216176, + 49.797496401 + ], + [ + 8.6215048, + 49.797318101 + ], + [ + 8.6210303, + 49.796523101 + ], + [ + 8.6206664, + 49.795869901 + ], + [ + 8.6205004, + 49.795550701 + ], + [ + 8.6203542, + 49.795258301 + ], + [ + 8.6200811, + 49.794678101 + ], + [ + 8.6198212, + 49.794086701 + ], + [ + 8.619648, + 49.793687501 + ], + [ + 8.6194862, + 49.793262701 + ], + [ + 8.6191621, + 49.792231901 + ], + [ + 8.6189917, + 49.791650101 + ], + [ + 8.6188393, + 49.791010101 + ], + [ + 8.6187244, + 49.790484001 + ], + [ + 8.6186235, + 49.790005101 + ], + [ + 8.6185357, + 49.789523201 + ], + [ + 8.6184482, + 49.789036601 + ], + [ + 8.6183317, + 49.788319701 + ], + [ + 8.6181921, + 49.787379701 + ], + [ + 8.6181635, + 49.787191401 + ], + [ + 8.6181399, + 49.787035901 + ], + [ + 8.6180784, + 49.786630101 + ], + [ + 8.6179992, + 49.786116701 + ], + [ + 8.6179148, + 49.785510101 + ], + [ + 8.6178135, + 49.784872401 + ], + [ + 8.6177197, + 49.784307001 + ], + [ + 8.6174972, + 49.783225601 + ], + [ + 8.6172587, + 49.782238401 + ], + [ + 8.6170231, + 49.781393601 + ], + [ + 8.6169116, + 49.781033701 + ], + [ + 8.6167682, + 49.780563801 + ], + [ + 8.6165916, + 49.780139901 + ], + [ + 8.616475, + 49.779866001 + ], + [ + 8.6164126, + 49.779721201 + ], + [ + 8.6161265, + 49.779066501 + ], + [ + 8.6156604, + 49.778219101 + ], + [ + 8.6152475, + 49.777556301 + ], + [ + 8.6149497, + 49.777108501 + ], + [ + 8.6144533, + 49.776436301 + ], + [ + 8.6142376, + 49.776169201 + ], + [ + 8.6140909, + 49.775987601 + ], + [ + 8.613795, + 49.775636801 + ], + [ + 8.6134952, + 49.775310601 + ], + [ + 8.6129034, + 49.774693901 + ], + [ + 8.6119576, + 49.773820001 + ], + [ + 8.6113089, + 49.773280701 + ], + [ + 8.6101002, + 49.772376901 + ], + [ + 8.6094317, + 49.771906401 + ], + [ + 8.6081844, + 49.771068901 + ], + [ + 8.6076275, + 49.770698701 + ], + [ + 8.6067245, + 49.770093601 + ], + [ + 8.6061433, + 49.769695801 + ], + [ + 8.6055372, + 49.769277801 + ], + [ + 8.6049227, + 49.768824601 + ], + [ + 8.6043553, + 49.768394601 + ], + [ + 8.6037631, + 49.767936301 + ], + [ + 8.6030748, + 49.767364001 + ], + [ + 8.6024704, + 49.766850701 + ], + [ + 8.6018881, + 49.766330501 + ], + [ + 8.6014191, + 49.765878001 + ], + [ + 8.6006907, + 49.765152301 + ], + [ + 8.6002115, + 49.764654601 + ], + [ + 8.5996805, + 49.764065901 + ], + [ + 8.5991099, + 49.763394601 + ], + [ + 8.5986487, + 49.762816901 + ], + [ + 8.5982456, + 49.762275901 + ], + [ + 8.5978217, + 49.761694401 + ], + [ + 8.5972978, + 49.760914501 + ], + [ + 8.596759, + 49.760038801 + ], + [ + 8.5962953, + 49.759211601 + ], + [ + 8.5958807, + 49.758395801 + ], + [ + 8.5954861, + 49.757541401 + ], + [ + 8.5951145, + 49.756679401 + ], + [ + 8.5947568, + 49.755761901 + ], + [ + 8.5942641, + 49.754370201 + ], + [ + 8.5940536, + 49.753706001 + ], + [ + 8.5937873, + 49.752808101 + ], + [ + 8.5935201, + 49.751862301 + ], + [ + 8.5932676, + 49.750917301 + ], + [ + 8.5931116, + 49.750282001 + ], + [ + 8.5929235, + 49.749476201 + ], + [ + 8.5927607, + 49.748775401 + ], + [ + 8.5924247, + 49.747057501 + ], + [ + 8.5922749, + 49.746156701 + ], + [ + 8.5921724, + 49.745493801 + ], + [ + 8.5920331, + 49.744529901 + ], + [ + 8.5919288, + 49.743622901 + ], + [ + 8.5918399, + 49.742840901 + ], + [ + 8.5917493, + 49.741913501 + ], + [ + 8.5916586, + 49.740511101 + ], + [ + 8.5915946, + 49.738448401 + ], + [ + 8.591593, + 49.738120101 + ], + [ + 8.5915879, + 49.737069401 + ], + [ + 8.5916058, + 49.736294301 + ], + [ + 8.5916826, + 49.734532401 + ], + [ + 8.5917304, + 49.733822101 + ], + [ + 8.5918235, + 49.732747901 + ], + [ + 8.5918831, + 49.732040501 + ], + [ + 8.5919575, + 49.731395401 + ], + [ + 8.592042, + 49.730733001 + ], + [ + 8.5921206, + 49.730151101 + ], + [ + 8.5922085, + 49.729574601 + ], + [ + 8.5923126, + 49.728952001 + ], + [ + 8.592457, + 49.728107301 + ], + [ + 8.5925132, + 49.727824701 + ], + [ + 8.5927143, + 49.726795801 + ], + [ + 8.5931076, + 49.725068501 + ], + [ + 8.5937316, + 49.722594701 + ], + [ + 8.5939308, + 49.721825501 + ], + [ + 8.594266, + 49.720556701 + ], + [ + 8.5946948, + 49.719068901 + ], + [ + 8.5950105, + 49.718027401 + ], + [ + 8.5956712, + 49.715781701 + ], + [ + 8.5960976, + 49.714521301 + ], + [ + 8.5961376, + 49.714410601 + ], + [ + 8.5965671, + 49.713078401 + ], + [ + 8.5974762, + 49.710548901 + ], + [ + 8.5976219, + 49.710143401 + ], + [ + 8.59828, + 49.708336201 + ], + [ + 8.5990611, + 49.706439301 + ], + [ + 8.5996933, + 49.704882601 + ], + [ + 8.60099, + 49.701921301 + ], + [ + 8.6014045, + 49.700928301 + ], + [ + 8.6022799, + 49.698572901 + ], + [ + 8.6024091, + 49.698161901 + ], + [ + 8.6025765, + 49.697544901 + ], + [ + 8.6027484, + 49.696764401 + ], + [ + 8.6028512, + 49.696191501 + ], + [ + 8.6029005, + 49.695845201 + ], + [ + 8.6030077, + 49.694777401 + ], + [ + 8.6030366, + 49.694086701 + ], + [ + 8.6030521, + 49.693715001 + ], + [ + 8.6030093, + 49.692562201 + ], + [ + 8.6029589, + 49.691984101 + ], + [ + 8.6028657, + 49.691370501 + ], + [ + 8.6027526, + 49.690795601 + ], + [ + 8.6025962, + 49.690065801 + ], + [ + 8.6024852, + 49.689666201 + ], + [ + 8.6023665, + 49.689239001 + ], + [ + 8.6022198, + 49.688778601 + ], + [ + 8.6021436, + 49.688539301 + ], + [ + 8.6014893, + 49.686791601 + ], + [ + 8.6010819, + 49.685817801 + ], + [ + 8.6007092, + 49.684917701 + ], + [ + 8.6003308, + 49.683907301 + ], + [ + 8.6001434, + 49.683391101 + ], + [ + 8.5999304, + 49.682736501 + ], + [ + 8.5997474, + 49.682092701 + ], + [ + 8.5995976, + 49.681498301 + ], + [ + 8.5994578, + 49.680809301 + ], + [ + 8.5993713, + 49.680260101 + ], + [ + 8.5993114, + 49.679751901 + ], + [ + 8.5992515, + 49.679213601 + ], + [ + 8.5992149, + 49.678662301 + ], + [ + 8.5991995, + 49.678259501 + ], + [ + 8.599214, + 49.677698201 + ], + [ + 8.5992213, + 49.677556101 + ], + [ + 8.5992267, + 49.677089101 + ], + [ + 8.5992628, + 49.676623001 + ], + [ + 8.5993394, + 49.676003401 + ], + [ + 8.5994388, + 49.675337401 + ], + [ + 8.5995697, + 49.674594101 + ], + [ + 8.5997327, + 49.673804001 + ], + [ + 8.5999516, + 49.673050001 + ], + [ + 8.6000398, + 49.672786701 + ], + [ + 8.600112, + 49.672512101 + ], + [ + 8.6002767, + 49.672005201 + ], + [ + 8.6006881, + 49.670878301 + ], + [ + 8.6009327, + 49.670257701 + ], + [ + 8.6016898, + 49.668656201 + ], + [ + 8.6020659, + 49.667954401 + ], + [ + 8.6021487, + 49.667804801 + ], + [ + 8.6025686, + 49.667056301 + ], + [ + 8.6030782, + 49.666225101 + ], + [ + 8.6032147, + 49.666022501 + ], + [ + 8.603854, + 49.665030101 + ], + [ + 8.6052294, + 49.662992601 + ], + [ + 8.6060001, + 49.661835801 + ], + [ + 8.6067093, + 49.660698701 + ], + [ + 8.6068319, + 49.660505601 + ], + [ + 8.6072041, + 49.659881401 + ], + [ + 8.607276, + 49.659748001 + ], + [ + 8.6073485, + 49.659615701 + ], + [ + 8.6075398, + 49.659250601 + ], + [ + 8.6079418, + 49.658479301 + ], + [ + 8.6081295, + 49.658083401 + ], + [ + 8.6083154, + 49.657681101 + ], + [ + 8.6085131, + 49.657188301 + ], + [ + 8.6086986, + 49.656676801 + ], + [ + 8.6088846, + 49.656174301 + ], + [ + 8.6090454, + 49.655652901 + ], + [ + 8.6093637, + 49.654369301 + ], + [ + 8.6094476, + 49.653898601 + ], + [ + 8.6095244, + 49.653420701 + ], + [ + 8.6095779, + 49.653014301 + ], + [ + 8.6096209, + 49.652553601 + ], + [ + 8.6096409, + 49.652287301 + ], + [ + 8.6096421, + 49.652207901 + ], + [ + 8.6096603, + 49.651874901 + ], + [ + 8.609687, + 49.651370801 + ], + [ + 8.6096891, + 49.650564701 + ], + [ + 8.609686, + 49.650499001 + ], + [ + 8.6096817, + 49.650091601 + ], + [ + 8.609624, + 49.648814201 + ], + [ + 8.6095866, + 49.648252901 + ], + [ + 8.6095563, + 49.647745701 + ], + [ + 8.609507957, + 49.647162237 + ] + ] + } + }, + { + "identifier": "2023-001863--vi-bs.2025-05-31_05-00-00-000.devi-zus.2023-04-17_15-30-00-000_001.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.85946748553965,8.598079400667112,49.85374323422023,8.602862591037995", + "point": "49.85946748553965,8.598079400667112", + "startLcPosition": "95", + "impact": { + "lower": "Darmstadt-Eberstadt", + "upper": "Darmst\u00e4dter Nordkreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Heidelberg", + "title": "A5 | Darmst\u00e4dter Nordkreuz - Darmstadt-Eberstadt", + "startTimestamp": "2025-05-31T05:00:00+02:00", + "coordinate": { + "lat": 49.85946748553965, + "long": 8.598079400667112 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.05.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A5: Darmstadt -> Heidelberg, zwischen 1.2 km hinter AK Darmst\u00e4dter Nordkreuz und 5.9 km vor AS Darmstadt-Eberstadt", + "", + "L\u00e4nge: 0.88 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A5 A67 ENB Darmst\u00e4dter Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.598079401, + 49.859467486 + ], + [ + 8.5979015, + 49.858989501 + ], + [ + 8.5978582, + 49.858885201 + ], + [ + 8.5977124, + 49.858556301 + ], + [ + 8.5975431, + 49.858130001 + ], + [ + 8.5973715, + 49.857674301 + ], + [ + 8.5972671, + 49.857393201 + ], + [ + 8.5972077, + 49.857138601 + ], + [ + 8.5971784, + 49.856863001 + ], + [ + 8.5971712, + 49.856628101 + ], + [ + 8.5971927, + 49.856477501 + ], + [ + 8.5972116, + 49.856365901 + ], + [ + 8.5973057, + 49.856130801 + ], + [ + 8.5974015, + 49.855953701 + ], + [ + 8.5975174, + 49.855799701 + ], + [ + 8.5976317, + 49.855673601 + ], + [ + 8.5977885, + 49.855506601 + ], + [ + 8.5980837, + 49.855286301 + ], + [ + 8.5983158, + 49.855145801 + ], + [ + 8.5984977, + 49.855049501 + ], + [ + 8.5987347, + 49.854940301 + ], + [ + 8.5989892, + 49.854834001 + ], + [ + 8.5992224, + 49.854747501 + ], + [ + 8.5994547, + 49.854670601 + ], + [ + 8.6000714, + 49.854512601 + ], + [ + 8.6005658, + 49.854396401 + ], + [ + 8.6010333, + 49.854296601 + ], + [ + 8.6014321, + 49.854217601 + ], + [ + 8.6018407, + 49.854129701 + ], + [ + 8.6021791, + 49.854032501 + ], + [ + 8.6025214, + 49.853906501 + ], + [ + 8.6027725, + 49.853793201 + ], + [ + 8.602862591, + 49.853743234 + ] + ] + } + }, + { + "identifier": "2026-017363--vi-bs.2026-04-09_08-00-00-000_008.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.94640887958865,8.61086448668544,49.947239021423925,8.610667841925867", + "point": "49.94640887958865,8.61086448668544", + "startLcPosition": "98", + "impact": { + "lower": "Bornbruch", + "upper": "T\u00e4ubchesh\u00f6hle", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Frankfurt", + "title": "A5 | T\u00e4ubchesh\u00f6hle - Bornbruch", + "coordinate": { + "lat": 49.94640887958865, + "long": 8.61086448668544 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "", + "A5: Darmstadt -> Frankfurt, zwischen 4.3 km hinter T\u00e4ubchesh\u00f6hle und 3.1 km vor Bornbruch", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 14.8 m", + "", + "Kontrollma\u00dfnahme TuR Gr\u00e4fenhausen Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.610864487, + 49.94640888 + ], + [ + 8.6108466, + 49.946484401 + ], + [ + 8.610667842, + 49.947239021 + ] + ] + } + }, + { + "identifier": "2026-016669--vi-bs.2026-04-22_20-00-00-000.devi-zus.2026-04-22_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.031778793710586,8.594106778193913,50.04641721498435,8.601016909472595", + "point": "50.031778793710586,8.594106778193913", + "startLcPosition": "103", + "impact": { + "lower": "Frankfurter Kreuz", + "upper": "Kaiserstein", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Frankfurt", + "title": "A5 | Kaiserstein - Frankfurter Kreuz", + "coordinate": { + "lat": 50.031778793710586, + "long": 8.594106778193913 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A5: Darmstadt -> Frankfurt, zwischen 3.2 km hinter Kaiserstein und 0.8 km vor AK Frankfurter Kreuz", + "", + "L\u00e4nge: 1.7 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A5 von Frankfurter Kreuz (AK) nach Kaiserstein (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.594106778, + 50.031778794 + ], + [ + 8.5943699, + 50.032521001 + ], + [ + 8.5947924, + 50.033586901 + ], + [ + 8.5952553, + 50.034703301 + ], + [ + 8.5954043, + 50.035035001 + ], + [ + 8.5956322, + 50.035528301 + ], + [ + 8.5958211, + 50.035923501 + ], + [ + 8.5960649, + 50.036434101 + ], + [ + 8.5962916, + 50.036906501 + ], + [ + 8.5967336, + 50.037798601 + ], + [ + 8.597408, + 50.039185701 + ], + [ + 8.5980413, + 50.040433301 + ], + [ + 8.5995623, + 50.043474401 + ], + [ + 8.600646, + 50.045664301 + ], + [ + 8.6008163, + 50.046008501 + ], + [ + 8.601016909, + 50.046417215 + ] + ] + } + }, + { + "identifier": "2026-015514--vi-bs.2026-04-07_19-30-00-000.devi-bs.2026-04-07_19-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.04560729338405,8.600317837132422,50.03961351338538,8.597330139237588", + "point": "50.04560729338405,8.600317837132422", + "startLcPosition": "105", + "impact": { + "lower": "Zeppelinheim", + "upper": "Frankfurter Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> Darmstadt", + "title": "A5 | Frankfurter Kreuz - Zeppelinheim", + "coordinate": { + "lat": 50.04560729338405, + "long": 8.600317837132422 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:45 bis zum 10.04.26 06:00 Uhr.", + "", + "A5: Frankfurt -> Darmstadt, zwischen 0.9 km hinter AK Frankfurter Kreuz und 0.6 km vor AS Zeppelinheim", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A5 von Frankfurter Kreuz (AK) nach Zeppelinheim (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.600317837, + 50.045607293 + ], + [ + 8.6000028, + 50.044975801 + ], + [ + 8.5973353, + 50.039623601 + ], + [ + 8.597330139, + 50.039613513 + ] + ] + } + }, + { + "identifier": "2026-016669--vi-bs.2026-04-22_20-00-00-000.devi-zus.2026-04-22_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.04647213337319,8.600749300091753,50.03181693420176,8.593835415333293", + "point": "50.04647213337319,8.600749300091753", + "startLcPosition": "105", + "impact": { + "lower": "Kaiserstein", + "upper": "Frankfurter Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> Darmstadt", + "title": "A5 | Frankfurter Kreuz - Kaiserstein", + "coordinate": { + "lat": 50.04647213337319, + "long": 8.600749300091753 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A5: Frankfurt -> Darmstadt, zwischen 0.8 km hinter AK Frankfurter Kreuz und 3.2 km vor Kaiserstein", + "", + "L\u00e4nge: 1.7 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A5 von Frankfurter Kreuz (AK) nach Kaiserstein (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.6007493, + 50.046472133 + ], + [ + 8.6000028, + 50.044975801 + ], + [ + 8.5973353, + 50.039623601 + ], + [ + 8.5971036, + 50.039170701 + ], + [ + 8.5964303, + 50.037800901 + ], + [ + 8.5957365, + 50.036401401 + ], + [ + 8.5953917, + 50.035670501 + ], + [ + 8.595056, + 50.034941301 + ], + [ + 8.5949308, + 50.034664301 + ], + [ + 8.5945436, + 50.033712901 + ], + [ + 8.5943142, + 50.033156401 + ], + [ + 8.5941155, + 50.032633901 + ], + [ + 8.5938858, + 50.031972701 + ], + [ + 8.593835415, + 50.031816934 + ] + ] + } + }, + { + "identifier": "2026-017446--vi-bs.2026-04-13_18-45-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.09059820623665,8.617185958475487,50.08353209194437,8.618216067351522", + "point": "50.09059820623665,8.617185958475487", + "startLcPosition": "108", + "impact": { + "lower": "Frankfurt am Main-Flughafen-Nord", + "upper": "Frankfurt am Main-Westhafen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Darmstadt", + "title": "A5 | Frankfurt am Main-Westhafen - Frankfurt am Main-Flughafen-Nord", + "coordinate": { + "lat": 50.09059820623665, + "long": 8.617185958475487 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 17.04.26 von 18:45 bis 00:00 Uhr.", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 14.04.26 und dem 17.04.26 von 00:00 bis 06:45 Uhr.", + "", + "A5: Kassel -> Darmstadt, zwischen 0.3 km hinter AS Frankfurt am Main-Westhafen und 3.0 km vor AS Frankfurt am Main-Flughafen-Nord", + "", + "L\u00e4nge: 0.79 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A5 von Frankfurt am Main-Westhafen (AS) nach Frankfurt am Main-Flughafen-Nord (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.617185958, + 50.090598206 + ], + [ + 8.6171937, + 50.090561201 + ], + [ + 8.6177521, + 50.087798301 + ], + [ + 8.6179435, + 50.086944301 + ], + [ + 8.6180635, + 50.086265301 + ], + [ + 8.6181401, + 50.085799401 + ], + [ + 8.6181783, + 50.085488201 + ], + [ + 8.618209, + 50.085147701 + ], + [ + 8.6182372, + 50.084650001 + ], + [ + 8.6182302, + 50.083702601 + ], + [ + 8.618216067, + 50.083532092 + ] + ] + } + }, + { + "identifier": "2023-000361--vi-bs.2026-02-23_09-30-00-000.devi-zus.2025-03-01_09-30-00-000.f_001.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.13221253878334,8.59027691554093,50.135684873525754,8.591453292227152", + "point": "50.13221253878334,8.59027691554093", + "startLcPosition": "109", + "impact": { + "lower": "Taunusblick", + "upper": "Westkreuz Frankfurt am Main", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> Kassel", + "title": "A5 | Westkreuz Frankfurt am Main - Taunusblick", + "startTimestamp": "2026-02-23T09:30:00+01:00", + "coordinate": { + "lat": 50.13221253878334, + "long": 8.59027691554093 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:30 Uhr", + "Ende: 17.08.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.11.26)", + "", + "A5: Frankfurt -> Kassel, zwischen 2.1 km hinter AK Westkreuz Frankfurt am Main und 2.2 km vor Taunusblick", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A5 BRI Nordwestkreuz Frankfurt" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.590276916, + 50.132212539 + ], + [ + 8.5902786, + 50.132227401 + ], + [ + 8.590302, + 50.132543301 + ], + [ + 8.5903396, + 50.132755401 + ], + [ + 8.5904047, + 50.133051801 + ], + [ + 8.5905361, + 50.133554401 + ], + [ + 8.5906277, + 50.133833701 + ], + [ + 8.5907395, + 50.134156101 + ], + [ + 8.5908228, + 50.134389701 + ], + [ + 8.5911153, + 50.135040601 + ], + [ + 8.5913133, + 50.135428201 + ], + [ + 8.591453292, + 50.135684874 + ] + ] + } + }, + { + "identifier": "2026-017308--vi-bs.2026-04-12_07-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.698442653757986,9.04466462775796,50.70018346222303,9.046346234482264", + "point": "50.698442653757986,9.04466462775796", + "startLcPosition": "130", + "impact": { + "lower": "Ohmtal-Dreieck", + "upper": "Homberg (Ohm)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> Kassel", + "title": "A5 | Homberg (Ohm) - Ohmtal-Dreieck", + "coordinate": { + "lat": 50.698442653757986, + "long": 9.04466462775796 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "12.04.26 von 07:00 bis 18:00 Uhr", + "", + "A5: Frankfurt -> Kassel, zwischen 7.4 km hinter AS Homberg (Ohm) und 1.9 km vor AD Ohmtal-Dreieck", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A5 Frankfurt - Kassel, zwischen 7.4 km hinter AS Homberg (Ohm) und 1.9 km vor AD Ohmtal-Dreieck Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.044664628, + 50.698442654 + ], + [ + 9.0447481, + 50.698545901 + ], + [ + 9.0452273, + 50.699087301 + ], + [ + 9.0455643, + 50.699428801 + ], + [ + 9.0461827, + 50.700035101 + ], + [ + 9.046346234, + 50.700183462 + ] + ] + } + }, + { + "identifier": "2026-017543--vi-bs.2026-04-13_08-00-00-000_016.de0", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.69877718811069,9.04495281363787,50.69983224132966,9.045975789743283", + "point": "50.69877718811069,9.04495281363787", + "startLcPosition": "130", + "impact": { + "lower": "Ohmtal-Dreieck", + "upper": "Homberg (Ohm)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> Kassel", + "title": "A5 | Homberg (Ohm) - Ohmtal-Dreieck", + "startTimestamp": "2026-04-13T08:00:00+02:00", + "coordinate": { + "lat": 50.69877718811069, + "long": 9.04495281363787 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 08:00 Uhr", + "Ende: 17.04.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.04.26)", + "", + "A5: Frankfurt -> Kassel, zwischen 7.4 km hinter AS Homberg (Ohm) und 2.0 km vor AD Ohmtal-Dreieck", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 3 m", + "", + "A5 Frankfurt - Kassel, Notinstandsetzung \u00dcko zw. 411,7 km und 411,5 - Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.044952814, + 50.698777188 + ], + [ + 9.0452273, + 50.699087301 + ], + [ + 9.0455643, + 50.699428801 + ], + [ + 9.04597579, + 50.699832241 + ] + ] + } + }, + { + "identifier": "2026-015689--vi-bs.2026-04-14_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.71523806855605,9.13217121826123,50.715460866458976,9.125627723160886", + "point": "50.71523806855605,9.13217121826123", + "startLcPosition": "134", + "impact": { + "lower": "Dottenberg", + "upper": "Pfefferh\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Frankfurt", + "title": "A5 | Pfefferh\u00f6he - Dottenberg", + "coordinate": { + "lat": 50.71523806855605, + "long": 9.13217121826123 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "", + "A5: Kassel -> Frankfurt, zwischen 8.4 km hinter Pfefferh\u00f6he und 0.9 km vor Dottenberg", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 7 m", + "", + "A5 Kassel - Frankfurt, zwischen 8.4 km hinter Pfefferh\u00f6he und 0.9 km vor Dottenberg Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.132171218, + 50.715238069 + ], + [ + 9.1315892, + 50.715256901 + ], + [ + 9.1288706, + 50.715347401 + ], + [ + 9.126321, + 50.715437201 + ], + [ + 9.125627723, + 50.715460866 + ] + ] + } + }, + { + "identifier": "2024-034747--vi-bs.2024-10-08_00-00-00-000.devi-zus.2024-07-29_08-00-00-000.f_005.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.74544898050357,9.295294392276992,50.745442430416205,9.295284682204695", + "point": "50.74544898050357,9.295294392276992", + "startLcPosition": "136", + "impact": { + "lower": "Alsfeld-West", + "upper": "Alsfeld-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Frankfurt", + "title": "A5 | Alsfeld-Ost - Alsfeld-West", + "startTimestamp": "2024-10-08T00:00:00+02:00", + "coordinate": { + "lat": 50.74544898050357, + "long": 9.295294392276992 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.24 um 00:00 Uhr", + "Ende: 03.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.04.27)", + "", + "A5: Kassel -> Frankfurt, zwischen 0.6 km hinter AS Alsfeld-Ost und 4.0 km vor AS Alsfeld-West", + "", + "L\u00e4nge: 0 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.295294392, + 50.745448981 + ], + [ + 9.295284682, + 50.74544243 + ] + ] + } + }, + { + "identifier": "2026-016005--vi-bs.2026-04-15_08-00-00-000.devi-bs.2026-04-15_08-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.78651792243501,9.432117222283397,50.768777025511056,9.378723498900111", + "point": "50.78651792243501,9.432117222283397", + "startLcPosition": "139", + "impact": { + "lower": "Berfa", + "upper": "Frohnkreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Frankfurt", + "title": "A5 | Frohnkreuz - Berfa", + "coordinate": { + "lat": 50.78651792243501, + "long": 9.432117222283397 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 15.04.26 und dem 24.04.26 von 08:00 bis 15:00 Uhr.", + "", + "A5: Kassel -> Frankfurt, zwischen 1.0 km hinter Frohnkreuz und 1.7 km vor Berfa", + "", + "L\u00e4nge: 4.3 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A5 von Frohnkreuz (Parkplatz) nach Berfa (Raststaette) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.432117222, + 50.786517922 + ], + [ + 9.4313192, + 50.786355501 + ], + [ + 9.4298195, + 50.786034001 + ], + [ + 9.4283951, + 50.785710601 + ], + [ + 9.4268283, + 50.785315801 + ], + [ + 9.4249454, + 50.784844601 + ], + [ + 9.4230571, + 50.784367901 + ], + [ + 9.420446, + 50.783734901 + ], + [ + 9.4191423, + 50.783434501 + ], + [ + 9.4185578, + 50.783303801 + ], + [ + 9.4174569, + 50.783056901 + ], + [ + 9.4172991, + 50.783021501 + ], + [ + 9.414917, + 50.782501201 + ], + [ + 9.4130664, + 50.782079901 + ], + [ + 9.4111551, + 50.781665401 + ], + [ + 9.4091983, + 50.781225701 + ], + [ + 9.408253, + 50.781007001 + ], + [ + 9.4070576, + 50.780715101 + ], + [ + 9.4063458, + 50.780532501 + ], + [ + 9.4049692, + 50.780191201 + ], + [ + 9.4037307, + 50.779885601 + ], + [ + 9.4025492, + 50.779594201 + ], + [ + 9.4016166, + 50.779356201 + ], + [ + 9.4010031, + 50.779177801 + ], + [ + 9.400473, + 50.779000401 + ], + [ + 9.3996838, + 50.778694201 + ], + [ + 9.3990391, + 50.778423801 + ], + [ + 9.398181, + 50.778003101 + ], + [ + 9.3974373, + 50.777580401 + ], + [ + 9.3969479, + 50.777267001 + ], + [ + 9.3965492, + 50.776987101 + ], + [ + 9.395606, + 50.776329501 + ], + [ + 9.3950516, + 50.775935401 + ], + [ + 9.3944736, + 50.775552301 + ], + [ + 9.3937968, + 50.775159601 + ], + [ + 9.393019, + 50.774769701 + ], + [ + 9.392333, + 50.774471301 + ], + [ + 9.3913284, + 50.774053601 + ], + [ + 9.3901993, + 50.773596001 + ], + [ + 9.3889236, + 50.773070901 + ], + [ + 9.3870303, + 50.772301601 + ], + [ + 9.386165, + 50.771944501 + ], + [ + 9.385108, + 50.771517301 + ], + [ + 9.3834325, + 50.770806001 + ], + [ + 9.3820224, + 50.770199501 + ], + [ + 9.3806995, + 50.769634201 + ], + [ + 9.3794421, + 50.769094701 + ], + [ + 9.3788344, + 50.768828201 + ], + [ + 9.378723499, + 50.768777026 + ] + ] + } + }, + { + "identifier": "2026-016005--vi-bs.2026-04-15_08-00-00-000.devi-bs.2026-04-15_08-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.78651792243501,9.432117222283397,50.768777025511056,9.378723498900111", + "point": "50.78651792243501,9.432117222283397", + "startLcPosition": "139", + "impact": { + "lower": "Berfa", + "upper": "Frohnkreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Frankfurt", + "title": "A5 | Frohnkreuz - Berfa", + "coordinate": { + "lat": 50.78651792243501, + "long": 9.432117222283397 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 15.04.26 und dem 24.04.26 von 08:00 bis 15:00 Uhr.", + "", + "A5: Kassel -> Frankfurt, zwischen 1.0 km hinter Frohnkreuz und 1.7 km vor Berfa", + "", + "L\u00e4nge: 4.3 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A5 von Frohnkreuz (Parkplatz) nach Berfa (Raststaette) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.432117222, + 50.786517922 + ], + [ + 9.4313192, + 50.786355501 + ], + [ + 9.4298195, + 50.786034001 + ], + [ + 9.4283951, + 50.785710601 + ], + [ + 9.4268283, + 50.785315801 + ], + [ + 9.4249454, + 50.784844601 + ], + [ + 9.4230571, + 50.784367901 + ], + [ + 9.420446, + 50.783734901 + ], + [ + 9.4191423, + 50.783434501 + ], + [ + 9.4185578, + 50.783303801 + ], + [ + 9.4174569, + 50.783056901 + ], + [ + 9.4172991, + 50.783021501 + ], + [ + 9.414917, + 50.782501201 + ], + [ + 9.4130664, + 50.782079901 + ], + [ + 9.4111551, + 50.781665401 + ], + [ + 9.4091983, + 50.781225701 + ], + [ + 9.408253, + 50.781007001 + ], + [ + 9.4070576, + 50.780715101 + ], + [ + 9.4063458, + 50.780532501 + ], + [ + 9.4049692, + 50.780191201 + ], + [ + 9.4037307, + 50.779885601 + ], + [ + 9.4025492, + 50.779594201 + ], + [ + 9.4016166, + 50.779356201 + ], + [ + 9.4010031, + 50.779177801 + ], + [ + 9.400473, + 50.779000401 + ], + [ + 9.3996838, + 50.778694201 + ], + [ + 9.3990391, + 50.778423801 + ], + [ + 9.398181, + 50.778003101 + ], + [ + 9.3974373, + 50.777580401 + ], + [ + 9.3969479, + 50.777267001 + ], + [ + 9.3965492, + 50.776987101 + ], + [ + 9.395606, + 50.776329501 + ], + [ + 9.3950516, + 50.775935401 + ], + [ + 9.3944736, + 50.775552301 + ], + [ + 9.3937968, + 50.775159601 + ], + [ + 9.393019, + 50.774769701 + ], + [ + 9.392333, + 50.774471301 + ], + [ + 9.3913284, + 50.774053601 + ], + [ + 9.3901993, + 50.773596001 + ], + [ + 9.3889236, + 50.773070901 + ], + [ + 9.3870303, + 50.772301601 + ], + [ + 9.386165, + 50.771944501 + ], + [ + 9.385108, + 50.771517301 + ], + [ + 9.3834325, + 50.770806001 + ], + [ + 9.3820224, + 50.770199501 + ], + [ + 9.3806995, + 50.769634201 + ], + [ + 9.3794421, + 50.769094701 + ], + [ + 9.3788344, + 50.768828201 + ], + [ + 9.378723499, + 50.768777026 + ] + ] + } + }, + { + "identifier": "2026-016005--vi-bs.2026-04-15_08-00-00-000.devi-bs.2026-04-15_08-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.78651792243501,9.432117222283397,50.768777025511056,9.378723498900111", + "point": "50.78651792243501,9.432117222283397", + "startLcPosition": "139", + "impact": { + "lower": "Berfa", + "upper": "Frohnkreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Frankfurt", + "title": "A5 | Frohnkreuz - Berfa", + "coordinate": { + "lat": 50.78651792243501, + "long": 9.432117222283397 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 15.04.26 und dem 24.04.26 von 08:00 bis 15:00 Uhr.", + "", + "A5: Kassel -> Frankfurt, zwischen 1.0 km hinter Frohnkreuz und 1.7 km vor Berfa", + "", + "L\u00e4nge: 4.3 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Frohnkreuz (Parkplatz) nach Berfa (Raststaette) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.432117222, + 50.786517922 + ], + [ + 9.4313192, + 50.786355501 + ], + [ + 9.4298195, + 50.786034001 + ], + [ + 9.4283951, + 50.785710601 + ], + [ + 9.4268283, + 50.785315801 + ], + [ + 9.4249454, + 50.784844601 + ], + [ + 9.4230571, + 50.784367901 + ], + [ + 9.420446, + 50.783734901 + ], + [ + 9.4191423, + 50.783434501 + ], + [ + 9.4185578, + 50.783303801 + ], + [ + 9.4174569, + 50.783056901 + ], + [ + 9.4172991, + 50.783021501 + ], + [ + 9.414917, + 50.782501201 + ], + [ + 9.4130664, + 50.782079901 + ], + [ + 9.4111551, + 50.781665401 + ], + [ + 9.4091983, + 50.781225701 + ], + [ + 9.408253, + 50.781007001 + ], + [ + 9.4070576, + 50.780715101 + ], + [ + 9.4063458, + 50.780532501 + ], + [ + 9.4049692, + 50.780191201 + ], + [ + 9.4037307, + 50.779885601 + ], + [ + 9.4025492, + 50.779594201 + ], + [ + 9.4016166, + 50.779356201 + ], + [ + 9.4010031, + 50.779177801 + ], + [ + 9.400473, + 50.779000401 + ], + [ + 9.3996838, + 50.778694201 + ], + [ + 9.3990391, + 50.778423801 + ], + [ + 9.398181, + 50.778003101 + ], + [ + 9.3974373, + 50.777580401 + ], + [ + 9.3969479, + 50.777267001 + ], + [ + 9.3965492, + 50.776987101 + ], + [ + 9.395606, + 50.776329501 + ], + [ + 9.3950516, + 50.775935401 + ], + [ + 9.3944736, + 50.775552301 + ], + [ + 9.3937968, + 50.775159601 + ], + [ + 9.393019, + 50.774769701 + ], + [ + 9.392333, + 50.774471301 + ], + [ + 9.3913284, + 50.774053601 + ], + [ + 9.3901993, + 50.773596001 + ], + [ + 9.3889236, + 50.773070901 + ], + [ + 9.3870303, + 50.772301601 + ], + [ + 9.386165, + 50.771944501 + ], + [ + 9.385108, + 50.771517301 + ], + [ + 9.3834325, + 50.770806001 + ], + [ + 9.3820224, + 50.770199501 + ], + [ + 9.3806995, + 50.769634201 + ], + [ + 9.3794421, + 50.769094701 + ], + [ + 9.3788344, + 50.768828201 + ], + [ + 9.378723499, + 50.768777026 + ] + ] + } + }, + { + "identifier": "2026-015977--vi-bs.2026-04-14_08-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.78651792243501,9.432117222283397,50.768777025511056,9.378723498900111", + "point": "50.78651792243501,9.432117222283397", + "startLcPosition": "139", + "impact": { + "lower": "Berfa", + "upper": "Frohnkreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Frankfurt", + "title": "A5 | Frohnkreuz - Berfa", + "coordinate": { + "lat": 50.78651792243501, + "long": 9.432117222283397 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 12:30 Uhr", + "15.04.26 von 08:00 bis 12:30 Uhr", + "16.04.26 von 08:00 bis 12:30 Uhr", + "22.04.26 von 08:00 bis 12:30 Uhr", + "23.04.26 von 08:00 bis 12:30 Uhr", + "24.04.26 von 08:00 bis 11:00 Uhr", + "", + "A5: Kassel -> Frankfurt, zwischen 1.0 km hinter Frohnkreuz und 1.7 km vor Berfa", + "", + "L\u00e4nge: 4.3 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A5 von Frohnkreuz (Parkplatz) nach Berfa (Raststaette) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.432117222, + 50.786517922 + ], + [ + 9.4313192, + 50.786355501 + ], + [ + 9.4298195, + 50.786034001 + ], + [ + 9.4283951, + 50.785710601 + ], + [ + 9.4268283, + 50.785315801 + ], + [ + 9.4249454, + 50.784844601 + ], + [ + 9.4230571, + 50.784367901 + ], + [ + 9.420446, + 50.783734901 + ], + [ + 9.4191423, + 50.783434501 + ], + [ + 9.4185578, + 50.783303801 + ], + [ + 9.4174569, + 50.783056901 + ], + [ + 9.4172991, + 50.783021501 + ], + [ + 9.414917, + 50.782501201 + ], + [ + 9.4130664, + 50.782079901 + ], + [ + 9.4111551, + 50.781665401 + ], + [ + 9.4091983, + 50.781225701 + ], + [ + 9.408253, + 50.781007001 + ], + [ + 9.4070576, + 50.780715101 + ], + [ + 9.4063458, + 50.780532501 + ], + [ + 9.4049692, + 50.780191201 + ], + [ + 9.4037307, + 50.779885601 + ], + [ + 9.4025492, + 50.779594201 + ], + [ + 9.4016166, + 50.779356201 + ], + [ + 9.4010031, + 50.779177801 + ], + [ + 9.400473, + 50.779000401 + ], + [ + 9.3996838, + 50.778694201 + ], + [ + 9.3990391, + 50.778423801 + ], + [ + 9.398181, + 50.778003101 + ], + [ + 9.3974373, + 50.777580401 + ], + [ + 9.3969479, + 50.777267001 + ], + [ + 9.3965492, + 50.776987101 + ], + [ + 9.395606, + 50.776329501 + ], + [ + 9.3950516, + 50.775935401 + ], + [ + 9.3944736, + 50.775552301 + ], + [ + 9.3937968, + 50.775159601 + ], + [ + 9.393019, + 50.774769701 + ], + [ + 9.392333, + 50.774471301 + ], + [ + 9.3913284, + 50.774053601 + ], + [ + 9.3901993, + 50.773596001 + ], + [ + 9.3889236, + 50.773070901 + ], + [ + 9.3870303, + 50.772301601 + ], + [ + 9.386165, + 50.771944501 + ], + [ + 9.385108, + 50.771517301 + ], + [ + 9.3834325, + 50.770806001 + ], + [ + 9.3820224, + 50.770199501 + ], + [ + 9.3806995, + 50.769634201 + ], + [ + 9.3794421, + 50.769094701 + ], + [ + 9.3788344, + 50.768828201 + ], + [ + 9.378723499, + 50.768777026 + ] + ] + } + }, + { + "identifier": "2025-016180--vi-bs.2026-04-11_20-00-00-000.devi-zus.2025-10-25_23-30-00-000.de75", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.807565525241856,9.5281180956133,50.809576565027456,9.53792244436185", + "point": "50.807565525241856,9.5281180956133", + "startLcPosition": "141", + "impact": { + "lower": "Hattenbacher Dreieck", + "upper": "Barnholz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> Kassel", + "title": "A5 | Barnholz - Hattenbacher Dreieck", + "startTimestamp": "2026-04-11T20:00:00+02:00", + "coordinate": { + "lat": 50.807565525241856, + "long": 9.5281180956133 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 20:00 Uhr", + "Ende: 04.05.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A5: Frankfurt -> Kassel, zwischen 2.4 km hinter Barnholz und 0.4 km vor AD Hattenbacher Dreieck", + "", + "L\u00e4nge: 0.74 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A7 Erneuerung an der Decke__AS Kirchheim -- AS Hattenbacher Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.528118096, + 50.807565525 + ], + [ + 9.5297424, + 50.807693401 + ], + [ + 9.5306588, + 50.807765201 + ], + [ + 9.5316314, + 50.807836801 + ], + [ + 9.5326712, + 50.807938301 + ], + [ + 9.5332805, + 50.808029301 + ], + [ + 9.5338697, + 50.808133501 + ], + [ + 9.5346802, + 50.808319401 + ], + [ + 9.5351248, + 50.808437701 + ], + [ + 9.5356151, + 50.808596201 + ], + [ + 9.5361412, + 50.808776301 + ], + [ + 9.5366125, + 50.808960501 + ], + [ + 9.5371368, + 50.809182601 + ], + [ + 9.5376851, + 50.809452301 + ], + [ + 9.537922444, + 50.809576565 + ] + ] + } + }, + { + "identifier": "2025-016180--vi-bs.2026-03-26_06-00-00-000.devi-zus.2025-10-25_23-30-00-000.de22", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.807565525241856,9.5281180956133,50.809576565027456,9.53792244436185", + "point": "50.807565525241856,9.5281180956133", + "startLcPosition": "141", + "impact": { + "lower": "Hattenbacher Dreieck", + "upper": "Barnholz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> Kassel", + "title": "A5 | Barnholz - Hattenbacher Dreieck", + "startTimestamp": "2026-03-26T06:00:00+01:00", + "coordinate": { + "lat": 50.807565525241856, + "long": 9.5281180956133 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 06:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A5: Frankfurt -> Kassel, zwischen 2.4 km hinter Barnholz und 0.4 km vor AD Hattenbacher Dreieck", + "", + "L\u00e4nge: 0.74 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A7 Erneuerung an der Decke__AS Kirchheim -- AS Hattenbacher Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.528118096, + 50.807565525 + ], + [ + 9.5297424, + 50.807693401 + ], + [ + 9.5306588, + 50.807765201 + ], + [ + 9.5316314, + 50.807836801 + ], + [ + 9.5326712, + 50.807938301 + ], + [ + 9.5332805, + 50.808029301 + ], + [ + 9.5338697, + 50.808133501 + ], + [ + 9.5346802, + 50.808319401 + ], + [ + 9.5351248, + 50.808437701 + ], + [ + 9.5356151, + 50.808596201 + ], + [ + 9.5361412, + 50.808776301 + ], + [ + 9.5366125, + 50.808960501 + ], + [ + 9.5371368, + 50.809182601 + ], + [ + 9.5376851, + 50.809452301 + ], + [ + 9.537922444, + 50.809576565 + ] + ] + } + }, + { + "identifier": "2025-016180--vi-bs.2026-04-11_20-00-00-000.devi-zus.2025-10-25_23-30-00-000.de73", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.80966166967561,9.537812336384732,50.80770340882414,9.528091219353604", + "point": "50.80966166967561,9.537812336384732", + "startLcPosition": "142", + "impact": { + "lower": "Barnholz", + "upper": "Hattenbacher Dreieck", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Frankfurt", + "title": "A5 | Hattenbacher Dreieck - Barnholz", + "startTimestamp": "2026-04-11T20:00:00+02:00", + "coordinate": { + "lat": 50.80966166967561, + "long": 9.537812336384732 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 20:00 Uhr", + "Ende: 04.05.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A5: Kassel -> Frankfurt, zwischen 0.3 km hinter AD Hattenbacher Dreieck und 2.4 km vor Barnholz", + "", + "L\u00e4nge: 0.74 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A7 Erneuerung an der Decke__AS Kirchheim -- AS Hattenbacher Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.537812336, + 50.80966167 + ], + [ + 9.5375003, + 50.809500701 + ], + [ + 9.5371305, + 50.809319101 + ], + [ + 9.5365714, + 50.809075401 + ], + [ + 9.5360973, + 50.808893701 + ], + [ + 9.5356232, + 50.808720101 + ], + [ + 9.5350775, + 50.808548601 + ], + [ + 9.5346406, + 50.808429101 + ], + [ + 9.5338522, + 50.808245401 + ], + [ + 9.533247, + 50.808138401 + ], + [ + 9.5326671, + 50.808053501 + ], + [ + 9.532084, + 50.808000101 + ], + [ + 9.5312977, + 50.807948201 + ], + [ + 9.5296436, + 50.807822301 + ], + [ + 9.5286253, + 50.807745001 + ], + [ + 9.528091219, + 50.807703409 + ] + ] + } + }, + { + "identifier": "2025-016180--vi-bs.2026-03-26_06-00-00-000.devi-zus.2025-10-25_23-30-00-000.de20", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80966166967561,9.537812336384732,50.80770340882414,9.528091219353604", + "point": "50.80966166967561,9.537812336384732", + "startLcPosition": "142", + "impact": { + "lower": "Barnholz", + "upper": "Hattenbacher Dreieck", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Frankfurt", + "title": "A5 | Hattenbacher Dreieck - Barnholz", + "startTimestamp": "2026-03-26T06:00:00+01:00", + "coordinate": { + "lat": 50.80966166967561, + "long": 9.537812336384732 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 06:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A5: Kassel -> Frankfurt, zwischen 0.3 km hinter AD Hattenbacher Dreieck und 2.4 km vor Barnholz", + "", + "L\u00e4nge: 0.74 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A7 Erneuerung an der Decke__AS Kirchheim -- AS Hattenbacher Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.537812336, + 50.80966167 + ], + [ + 9.5375003, + 50.809500701 + ], + [ + 9.5371305, + 50.809319101 + ], + [ + 9.5365714, + 50.809075401 + ], + [ + 9.5360973, + 50.808893701 + ], + [ + 9.5356232, + 50.808720101 + ], + [ + 9.5350775, + 50.808548601 + ], + [ + 9.5346406, + 50.808429101 + ], + [ + 9.5338522, + 50.808245401 + ], + [ + 9.533247, + 50.808138401 + ], + [ + 9.5326671, + 50.808053501 + ], + [ + 9.532084, + 50.808000101 + ], + [ + 9.5312977, + 50.807948201 + ], + [ + 9.5296436, + 50.807822301 + ], + [ + 9.5286253, + 50.807745001 + ], + [ + 9.528091219, + 50.807703409 + ] + ] + } + }, + { + "identifier": "2026-017470--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000_003.de2", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.961438596631645,8.409621356767676,48.96185041747923,8.407748262993836", + "point": "48.961438596631645,8.409621356767676", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Ettlingen (aus Richtung Karlsruhe)", + "title": "A5 Beseitigung Unfallfolgen innerhalb von 4 ASen, 09.04.-10.04.2026", + "coordinate": { + "lat": 48.961438596631645, + "long": 8.409621356767676 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "Abfahrt von der A5: AS Ettlingen (aus Richtung Karlsruhe)", + "", + "L\u00e4nge: 0.15 km", + "", + "A5 Beseitigung Unfallfolgen innerhalb von 4 ASen, 09.04.-10.04.2026" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.409621357, + 48.961438597 + ], + [ + 8.4094293, + 48.961417801 + ], + [ + 8.4091197, + 48.961390901 + ], + [ + 8.4089679, + 48.961393201 + ], + [ + 8.4088441, + 48.961404401 + ], + [ + 8.4087395, + 48.961422801 + ], + [ + 8.4086405, + 48.961448401 + ], + [ + 8.4085415, + 48.961478901 + ], + [ + 8.4084625, + 48.961509001 + ], + [ + 8.4079155, + 48.961771401 + ], + [ + 8.4077869, + 48.961835201 + ], + [ + 8.407748263, + 48.961850417 + ] + ] + } + }, + { + "identifier": "2023-000361--vi-bs.2026-03-01_09-30-00-000.devi-zus.2025-03-01_09-30-00-000.f_001.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.13530842225481,8.590727277535159,50.133240357141155,8.59022175406608", + "point": "50.13530842225481,8.590727277535159", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Nordwestkreuz Frankfurt am Main (aus Richtung Taunusblick) nach A5", + "title": "A5 BRI Nordwestkreuz Frankfurt", + "startTimestamp": "2026-03-01T09:30:00+01:00", + "coordinate": { + "lat": 50.13530842225481, + "long": 8.590727277535159 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.26 um 09:30 Uhr", + "Ende: 18.05.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.11.26)", + "", + "Von Auffahrt auf die A5: AK Nordwestkreuz Frankfurt am Main (aus Richtung Taunusblick) nach A5: Kassel -> Frankfurt, zwischen AK Nordwestkreuz Frankfurt am Main und 2.3 km vor AK Westkreuz Frankfurt am Main", + "", + "L\u00e4nge: 0.23 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A5 BRI Nordwestkreuz Frankfurt" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.590727278, + 50.135308422 + ], + [ + 8.5906095, + 50.135039901 + ], + [ + 8.5904224, + 50.134549401 + ], + [ + 8.5903964, + 50.134175701 + ], + [ + 8.5904246, + 50.133918701 + ], + [ + 8.5903516, + 50.133718601 + ], + [ + 8.590221754, + 50.133240357 + ] + ] + } + }, + { + "identifier": "2026-017470--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000_003.de6", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.98924903111236,8.438254649975912,48.99065364138652,8.437487897334583", + "point": "48.98924903111236,8.438254649975912", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Karlsruhe-Mitte (aus Richtung Karlsruhe-Durlach)", + "title": "A5 Beseitigung Unfallfolgen innerhalb von 4 ASen, 09.04.-10.04.2026", + "coordinate": { + "lat": 48.98924903111236, + "long": 8.438254649975912 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "Auffahrt auf die A5: AS Karlsruhe-Mitte (aus Richtung Karlsruhe-Durlach)", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A5 Beseitigung Unfallfolgen innerhalb von 4 ASen, 09.04.-10.04.2026" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.43825465, + 48.989249031 + ], + [ + 8.4384094, + 48.989300701 + ], + [ + 8.4385155, + 48.989340801 + ], + [ + 8.438615, + 48.989379501 + ], + [ + 8.4387033, + 48.989420101 + ], + [ + 8.4387994, + 48.989471001 + ], + [ + 8.4388756, + 48.989518001 + ], + [ + 8.4389285, + 48.989552001 + ], + [ + 8.439001, + 48.989615001 + ], + [ + 8.4390472, + 48.989664901 + ], + [ + 8.4390946, + 48.989727201 + ], + [ + 8.4391272, + 48.989782601 + ], + [ + 8.439155, + 48.989848901 + ], + [ + 8.4391726, + 48.989908301 + ], + [ + 8.4391809, + 48.989966801 + ], + [ + 8.4391795, + 48.990021401 + ], + [ + 8.4391741, + 48.990068501 + ], + [ + 8.4391626, + 48.990111201 + ], + [ + 8.4391419, + 48.990170901 + ], + [ + 8.4390995, + 48.990251101 + ], + [ + 8.4390572, + 48.990307601 + ], + [ + 8.4390163, + 48.990356201 + ], + [ + 8.4389448, + 48.990418201 + ], + [ + 8.4388697, + 48.990474601 + ], + [ + 8.4387756, + 48.990526701 + ], + [ + 8.4387156, + 48.990554001 + ], + [ + 8.4386621, + 48.990575501 + ], + [ + 8.4386032, + 48.990595401 + ], + [ + 8.4385243, + 48.990616601 + ], + [ + 8.438434, + 48.990635801 + ], + [ + 8.4383555, + 48.990648401 + ], + [ + 8.4382896, + 48.990656201 + ], + [ + 8.4381591, + 48.990663101 + ], + [ + 8.43806, + 48.990663601 + ], + [ + 8.437811, + 48.990656601 + ], + [ + 8.4377077, + 48.990652901 + ], + [ + 8.4375905, + 48.990651901 + ], + [ + 8.4375077, + 48.990652401 + ], + [ + 8.437487897, + 48.990653641 + ] + ] + } + }, + { + "identifier": "2026-017470--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000_003.de4", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.99266100226913,8.434557792707693,48.99111067837652,8.434762984976487", + "point": "48.99266100226913,8.434557792707693", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Karlsruhe-Mitte (aus Richtung Karlsruhe-Durlach)", + "title": "A5 Beseitigung Unfallfolgen innerhalb von 4 ASen, 09.04.-10.04.2026", + "coordinate": { + "lat": 48.99266100226913, + "long": 8.434557792707693 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "Abfahrt von der A5: AS Karlsruhe-Mitte (aus Richtung Karlsruhe-Durlach)", + "", + "L\u00e4nge: 0.34 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A5 Beseitigung Unfallfolgen innerhalb von 4 ASen, 09.04.-10.04.2026" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.434557793, + 48.992661002 + ], + [ + 8.4343196, + 48.992643801 + ], + [ + 8.4340043, + 48.992607001 + ], + [ + 8.4338013, + 48.992566401 + ], + [ + 8.433599, + 48.992510601 + ], + [ + 8.4334505, + 48.992447101 + ], + [ + 8.4333107, + 48.992377801 + ], + [ + 8.4331754, + 48.992270401 + ], + [ + 8.4330721, + 48.992152501 + ], + [ + 8.4330175, + 48.992052801 + ], + [ + 8.432983, + 48.991952001 + ], + [ + 8.4329803, + 48.991838101 + ], + [ + 8.4329939, + 48.991725601 + ], + [ + 8.4330373, + 48.991628801 + ], + [ + 8.433096, + 48.991533701 + ], + [ + 8.4331573, + 48.991466801 + ], + [ + 8.4332336, + 48.991405301 + ], + [ + 8.4333557, + 48.991326701 + ], + [ + 8.4335053, + 48.991253601 + ], + [ + 8.433649, + 48.991207401 + ], + [ + 8.4338556, + 48.991168701 + ], + [ + 8.4342277, + 48.991151801 + ], + [ + 8.4345324, + 48.991134901 + ], + [ + 8.434762985, + 48.991110678 + ] + ] + } + }, + { + "identifier": "2026-017481--vi-bs.2026-04-12_00-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.671480515478464,8.59876190659523,49.67199388570394,8.598387400063588", + "point": "49.671480515478464,8.59876190659523", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Bensheim (aus Richtung Bensheim-West)", + "title": "A5 Einbau von Vogelschutzmarkern auf der B47", + "coordinate": { + "lat": 49.671480515478464, + "long": 8.59876190659523 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "12.04.26 von 00:00 bis 04:00 Uhr", + "", + "Auffahrt auf die B47: AS Bensheim (aus Richtung Bensheim-West)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A5 Einbau von Vogelschutzmarkern auf der B47" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.598761907, + 49.671480515 + ], + [ + 8.598749, + 49.671493501 + ], + [ + 8.5985416, + 49.671757801 + ], + [ + 8.5984219, + 49.671926501 + ], + [ + 8.5983874, + 49.671993886 + ] + ] + } + }, + { + "identifier": "2025-063533--vi-bs.2026-01-18_22-00-00-000.devi-zus.2026-01-19_08-00-00-000_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.1345624245172,8.594255055114118,50.134997435706175,8.587052659442339", + "point": "50.1345624245172,8.594255055114118", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Nordwestkreuz Frankfurt am Main (aus Richtung Frankfurt am Main-Ludwig-Landmann-Stra\u00dfe)", + "title": "A5 Freileitungsarbeiten ", + "startTimestamp": "2026-01-18T22:00:00+01:00", + "coordinate": { + "lat": 50.1345624245172, + "long": 8.594255055114118 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.01.26 um 22:00 Uhr", + "Ende: 05.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.07.26)", + "", + "Abfahrt von der A66: AK Nordwestkreuz Frankfurt am Main (aus Richtung Frankfurt am Main-Ludwig-Landmann-Stra\u00dfe)", + "", + "L\u00e4nge: 0.52 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A5 Freileitungsarbeiten " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.594255055, + 50.134562425 + ], + [ + 8.5940331, + 50.134607701 + ], + [ + 8.5937839, + 50.134654901 + ], + [ + 8.5934872, + 50.134688601 + ], + [ + 8.5931636, + 50.134743401 + ], + [ + 8.5927835, + 50.134793201 + ], + [ + 8.5924697, + 50.134827301 + ], + [ + 8.5920654, + 50.134869301 + ], + [ + 8.5917042, + 50.134899001 + ], + [ + 8.5914757, + 50.134913701 + ], + [ + 8.590688, + 50.134952701 + ], + [ + 8.5903775, + 50.134959101 + ], + [ + 8.5896516, + 50.134971801 + ], + [ + 8.587052659, + 50.134997436 + ] + ] + } + }, + { + "identifier": "2023-000361--vi-bs.2026-02-23_09-30-00-000.devi-zus.2025-03-01_09-30-00-000.f_001.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.13430968210504,8.59105779318404,50.13562005650983,8.591551676511282", + "point": "50.13430968210504,8.59105779318404", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Nordwestkreuz Frankfurt am Main (aus Richtung Westkreuz Frankfurt am Main)", + "title": "A5 BRI Nordwestkreuz Frankfurt", + "startTimestamp": "2026-02-23T09:30:00+01:00", + "coordinate": { + "lat": 50.13430968210504, + "long": 8.59105779318404 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 09:30 Uhr", + "Ende: 17.08.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.11.26)", + "", + "Auffahrt auf die A5: AK Nordwestkreuz Frankfurt am Main (aus Richtung Westkreuz Frankfurt am Main)", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A5 BRI Nordwestkreuz Frankfurt" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.591057793, + 50.134309682 + ], + [ + 8.5910616, + 50.134336301 + ], + [ + 8.5911147, + 50.134530501 + ], + [ + 8.5912949, + 50.134959001 + ], + [ + 8.5913542, + 50.135070801 + ], + [ + 8.5915372, + 50.135587101 + ], + [ + 8.591551677, + 50.135620057 + ] + ] + } + }, + { + "identifier": "2026-016051--vi-bs.2026-03-30_07-00-00-000_026.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.15980824366658,8.568027912310955,49.16330003144249,8.570121422030304", + "point": "49.15980824366658,8.568027912310955", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bruchsal (aus Richtung Bruchsal)", + "title": "A5 Tiefbauarbeiten neben der Fahrbahn", + "coordinate": { + "lat": 49.15980824366658, + "long": 8.568027912310955 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 18:00 Uhr", + "10.04.26 von 07:00 bis 18:00 Uhr", + "13.04.26 von 07:00 bis 18:00 Uhr", + "14.04.26 von 07:00 bis 18:00 Uhr", + "15.04.26 von 07:00 bis 18:00 Uhr", + "16.04.26 von 07:00 bis 18:00 Uhr", + "17.04.26 von 07:00 bis 18:00 Uhr", + "20.04.26 von 07:00 bis 18:00 Uhr", + "21.04.26 von 07:00 bis 18:00 Uhr", + "22.04.26 von 07:00 bis 18:00 Uhr", + "23.04.26 von 07:00 bis 18:00 Uhr", + "24.04.26 von 07:00 bis 18:00 Uhr", + "27.04.26 von 07:00 bis 18:00 Uhr", + "28.04.26 von 07:00 bis 18:00 Uhr", + "29.04.26 von 07:00 bis 18:00 Uhr", + "30.04.26 von 07:00 bis 18:00 Uhr", + "", + "Auffahrt auf die A5: Bruchsal (aus Richtung Bruchsal)", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A5 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.568027912, + 49.159808244 + ], + [ + 8.5682184, + 49.160126101 + ], + [ + 8.5683122, + 49.160289201 + ], + [ + 8.5685495, + 49.160684801 + ], + [ + 8.5688689, + 49.161195801 + ], + [ + 8.5690296, + 49.161365101 + ], + [ + 8.5690526, + 49.161389901 + ], + [ + 8.5690739, + 49.161415101 + ], + [ + 8.5690938, + 49.161441601 + ], + [ + 8.5691146, + 49.161473201 + ], + [ + 8.5691346, + 49.161507801 + ], + [ + 8.5691806, + 49.161612401 + ], + [ + 8.5692047, + 49.161708301 + ], + [ + 8.5692335, + 49.161774401 + ], + [ + 8.5692576, + 49.161821501 + ], + [ + 8.570121422, + 49.163300031 + ] + ] + } + }, + { + "identifier": "2026-012703--vi-bs.2026-03-24_00-00-00-000.devi-zus.2026-03-23_00-00-00-000_003.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.612348454199,7.59162886989275,47.58621883433995,7.6020910869506695", + "point": "47.612348454199,7.59162886989275", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 810.86 --> km 814.05", + "title": "A5 Weil am Rhein- Modernisierung Grenzzollanlage Weil am Rhein", + "startTimestamp": "2026-03-24T00:00:00+01:00", + "coordinate": { + "lat": 47.612348454199, + "long": 7.59162886989275 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 00:00 Uhr", + "Ende: 06.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.07.26)", + "", + "A5: km 810.86 --> km 814.05", + "", + "L\u00e4nge: 3.18 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A5 Weil am Rhein- Modernisierung Grenzzollanlage Weil am Rhein" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.59162887, + 47.612348454 + ], + [ + 7.5922481, + 47.611960001 + ], + [ + 7.5932023, + 47.611336801 + ], + [ + 7.5941703, + 47.610654801 + ], + [ + 7.5950024, + 47.610027301 + ], + [ + 7.5959241, + 47.609278301 + ], + [ + 7.5966819, + 47.608615501 + ], + [ + 7.5973035, + 47.608020501 + ], + [ + 7.5979091, + 47.607403101 + ], + [ + 7.5981766, + 47.607108801 + ], + [ + 7.5985604, + 47.606678701 + ], + [ + 7.5990762, + 47.606069801 + ], + [ + 7.5994671, + 47.605552301 + ], + [ + 7.5998533, + 47.605022201 + ], + [ + 7.6003477, + 47.604293501 + ], + [ + 7.600485, + 47.604074801 + ], + [ + 7.6010356, + 47.603149901 + ], + [ + 7.6012646, + 47.602718201 + ], + [ + 7.6014979, + 47.602246901 + ], + [ + 7.6017078, + 47.601776001 + ], + [ + 7.6017842, + 47.601624301 + ], + [ + 7.601865, + 47.601430201 + ], + [ + 7.60218, + 47.600619001 + ], + [ + 7.6024754, + 47.599729601 + ], + [ + 7.6026559, + 47.599157901 + ], + [ + 7.6027982, + 47.598703601 + ], + [ + 7.6029111, + 47.598352001 + ], + [ + 7.6030663, + 47.597871201 + ], + [ + 7.6034406, + 47.596700101 + ], + [ + 7.6035053, + 47.596509101 + ], + [ + 7.6035294, + 47.596432001 + ], + [ + 7.6035636, + 47.596329401 + ], + [ + 7.6036995, + 47.595884401 + ], + [ + 7.6037961, + 47.595580401 + ], + [ + 7.6038363, + 47.595398001 + ], + [ + 7.6039072, + 47.594990801 + ], + [ + 7.6039216, + 47.594873901 + ], + [ + 7.603938, + 47.594757501 + ], + [ + 7.6039659, + 47.594176101 + ], + [ + 7.6039448, + 47.593678801 + ], + [ + 7.6039092, + 47.593344801 + ], + [ + 7.6038587, + 47.593024501 + ], + [ + 7.6036162, + 47.592040501 + ], + [ + 7.6033376, + 47.590945801 + ], + [ + 7.603272, + 47.590715501 + ], + [ + 7.6026, + 47.588275801 + ], + [ + 7.6022374, + 47.586805701 + ], + [ + 7.602102, + 47.586261201 + ], + [ + 7.602091087, + 47.586218834 + ] + ] + } + }, + { + "identifier": "2023-000361--vi-bs.2026-03-01_09-30-00-000.devi-zus.2025-03-01_09-30-00-000.f_001.de35", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.13684310947787,8.591311435072903,50.136329883362016,8.590114363785608", + "point": "50.13684310947787,8.591311435072903", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Nordwestkreuz Frankfurt am Main (aus Richtung Taunusblick)", + "title": "A5 BRI Nordwestkreuz Frankfurt", + "startTimestamp": "2026-03-01T09:30:00+01:00", + "coordinate": { + "lat": 50.13684310947787, + "long": 8.591311435072903 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.26 um 09:30 Uhr", + "Ende: 18.05.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.11.26)", + "", + "Abfahrt von der A5: AK Nordwestkreuz Frankfurt am Main (aus Richtung Taunusblick)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A5 BRI Nordwestkreuz Frankfurt" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.591311435, + 50.136843109 + ], + [ + 8.5912529, + 50.136800601 + ], + [ + 8.5911473, + 50.136733101 + ], + [ + 8.5910139, + 50.136656801 + ], + [ + 8.5908555, + 50.136575401 + ], + [ + 8.5907124, + 50.136508901 + ], + [ + 8.590538, + 50.136439701 + ], + [ + 8.590311, + 50.136363101 + ], + [ + 8.590114364, + 50.136329883 + ] + ] + } + }, + { + "identifier": "2025-062819--vi-bs.2026-04-13_06-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.70112847478414,7.521854366854556,47.71228544793641,7.533871385261346", + "point": "47.70112847478414,7.521854366854556", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Basel -> Karlsruhe", + "title": "A5 von Rheinaue (Rastplatz) Bauwerksarbeiten", + "coordinate": { + "lat": 47.70112847478414, + "long": 7.521854366854556 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 06:00 bis 18:00 Uhr", + "14.04.26 von 06:00 bis 18:00 Uhr", + "15.04.26 von 06:00 bis 18:00 Uhr", + "16.04.26 von 06:00 bis 18:00 Uhr", + "17.04.26 von 06:00 bis 18:00 Uhr", + "", + "Von A5: Basel -> Karlsruhe, zwischen 2.6 km hinter AS Efringen-Kirchen und Rheinaue nach A5: Basel -> Karlsruhe, zwischen Fischergrund und 3.2 km vor Bad Bellingen", + "", + "L\u00e4nge: 1.58 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A5 von Rheinaue (Rastplatz) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.521854367, + 47.701128475 + ], + [ + 7.5219034, + 47.701282201 + ], + [ + 7.52214, + 47.701968001 + ], + [ + 7.5224917, + 47.702822901 + ], + [ + 7.5227575, + 47.703404201 + ], + [ + 7.5230457, + 47.703923701 + ], + [ + 7.5232645, + 47.704296001 + ], + [ + 7.523825, + 47.705152101 + ], + [ + 7.5242561, + 47.705693301 + ], + [ + 7.5247455, + 47.706062901 + ], + [ + 7.5253, + 47.706533001 + ], + [ + 7.5255324, + 47.706797901 + ], + [ + 7.5259327, + 47.707304801 + ], + [ + 7.5261226, + 47.707524401 + ], + [ + 7.52639, + 47.707780401 + ], + [ + 7.5265497, + 47.707993501 + ], + [ + 7.527148, + 47.708448101 + ], + [ + 7.5277731, + 47.708891701 + ], + [ + 7.5284194, + 47.709336801 + ], + [ + 7.529276, + 47.709878801 + ], + [ + 7.5303776, + 47.710498801 + ], + [ + 7.5326511, + 47.711661801 + ], + [ + 7.533871385, + 47.712285448 + ] + ] + } + }, + { + "identifier": "2026-010718--vi-bs.2026-03-23_23-00-00-000.devi-bs.2026-03-23_20-00-00-000.de2", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.113806266677216,8.600056438466448,50.11262660094064,8.60077679999989", + "point": "50.113806266677216,8.600056438466448", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westkreuz Frankfurt am Main (aus Richtung Frankfurt am Main-Westhafen)", + "title": "A648 auf die A5 FR Kassel - Arbeiten an den Traversen der Hochspannungsmasten ", + "startTimestamp": "2026-03-23T23:00:00+01:00", + "coordinate": { + "lat": 50.113806266677216, + "long": 8.600056438466448 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 23:00 Uhr", + "Ende: 17.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.04.26)", + "", + "Auffahrt auf die A5: AK Westkreuz Frankfurt am Main (aus Richtung Frankfurt am Main-Westhafen)", + "", + "L\u00e4nge: 0.26 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A648 auf die A5 FR Kassel - Arbeiten an den Traversen der Hochspannungsmasten " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.600056438, + 50.113806267 + ], + [ + 8.6001244, + 50.113803301 + ], + [ + 8.6006275, + 50.113800301 + ], + [ + 8.600973, + 50.113795501 + ], + [ + 8.6011245, + 50.113773701 + ], + [ + 8.6012603, + 50.113742801 + ], + [ + 8.6014098, + 50.113666601 + ], + [ + 8.6014985, + 50.113597901 + ], + [ + 8.6015736, + 50.113512801 + ], + [ + 8.6016175, + 50.113416601 + ], + [ + 8.6016292, + 50.113357101 + ], + [ + 8.6016229, + 50.113299901 + ], + [ + 8.601597, + 50.113215801 + ], + [ + 8.6014714, + 50.112916501 + ], + [ + 8.6014055, + 50.112794201 + ], + [ + 8.6013467, + 50.112723001 + ], + [ + 8.6012751, + 50.112667501 + ], + [ + 8.6011812, + 50.112623401 + ], + [ + 8.6010874, + 50.112605601 + ], + [ + 8.6010056, + 50.112601901 + ], + [ + 8.6008985, + 50.112606901 + ], + [ + 8.6007768, + 50.112626601 + ] + ] + } + }, + { + "identifier": "2025-063533--vi-bs.2026-01-12_05-00-00-000.devi-zus.2026-01-19_08-00-00-000_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.134144371301446,8.58698426236319,50.13333672871371,8.58809089679295", + "point": "50.134144371301446,8.58698426236319", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Nordwestkreuz Frankfurt am Main (aus Richtung Taunusblick)", + "title": "A5 Freileitungsarbeiten ", + "startTimestamp": "2026-01-12T05:00:00+01:00", + "coordinate": { + "lat": 50.134144371301446, + "long": 8.58698426236319 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.01.26 um 05:00 Uhr", + "Ende: 08.05.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.07.26)", + "", + "Auffahrt auf die A5: AK Nordwestkreuz Frankfurt am Main (aus Richtung Taunusblick)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A5 Freileitungsarbeiten " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.586984262, + 50.134144371 + ], + [ + 8.5870294, + 50.134139801 + ], + [ + 8.5871199, + 50.134126901 + ], + [ + 8.5872112, + 50.134106701 + ], + [ + 8.5872895, + 50.134084701 + ], + [ + 8.5873646, + 50.134056501 + ], + [ + 8.5874331, + 50.134023401 + ], + [ + 8.5874898, + 50.133985901 + ], + [ + 8.5875496, + 50.133943001 + ], + [ + 8.5876124, + 50.133889101 + ], + [ + 8.5876647, + 50.133833801 + ], + [ + 8.5879369, + 50.133478801 + ], + [ + 8.5879935, + 50.133417901 + ], + [ + 8.5880561, + 50.133362701 + ], + [ + 8.588090897, + 50.133336729 + ] + ] + } + } + ] + }, + "A6": { + "roadworks": [ + { + "identifier": "2023-000528--vi-bs.2016-04-05_00-00-00-000.f.devi-zus.2016-11-01_00-00-00-000.f_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.204264442942936,7.050310957992571,49.20655310552416,7.057606512004704", + "point": "49.204264442942936,7.050310957992571", + "startLcPosition": "3", + "impact": { + "lower": "Bischmisheim", + "upper": "Saarbr\u00fccken", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Metz/Saarbr\u00fccken -> Kaiserslautern", + "title": "A6 | Saarbr\u00fccken - Bischmisheim", + "startTimestamp": "2016-04-05T00:00:00+02:00", + "coordinate": { + "lat": 49.204264442942936, + "long": 7.050310957992571 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.04.16 um 00:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A6: Metz/Saarbr\u00fccken -> Kaiserslautern, zwischen 1.6 km hinter AD Saarbr\u00fccken und 2.1 km vor Bischmisheim", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A6 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.050310958, + 49.204264443 + ], + [ + 7.0508622, + 49.204334901 + ], + [ + 7.0515713, + 49.204441101 + ], + [ + 7.0518577, + 49.204495001 + ], + [ + 7.052356, + 49.204603301 + ], + [ + 7.0528757, + 49.204723801 + ], + [ + 7.0537494, + 49.204954801 + ], + [ + 7.0546476, + 49.205243801 + ], + [ + 7.0550616, + 49.205388401 + ], + [ + 7.0555801, + 49.205588701 + ], + [ + 7.0561336, + 49.205829601 + ], + [ + 7.0565148, + 49.206012601 + ], + [ + 7.0570784, + 49.206288701 + ], + [ + 7.0574736, + 49.206479801 + ], + [ + 7.057606512, + 49.206553106 + ] + ] + } + }, + { + "identifier": "2023-000532--vi-bs.2024-01-18_00-00-00-000.devi-zus.2019-04-01_00-00-00-000.f_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.24593367584349,7.0895221923139395,49.25420411092419,7.093973058281843", + "point": "49.24593367584349,7.0895221923139395", + "startLcPosition": "5", + "impact": { + "lower": "Sankt Ingbert-West", + "upper": "Bischmisheim", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Metz/Saarbr\u00fccken -> Kaiserslautern", + "title": "A6 | Bischmisheim - Sankt Ingbert-West", + "startTimestamp": "2024-01-18T00:00:00+01:00", + "coordinate": { + "lat": 49.24593367584349, + "long": 7.0895221923139395 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.01.24 um 00:00 Uhr", + "Ende: 16.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.12.26)", + "", + "A6: Metz/Saarbr\u00fccken -> Kaiserslautern, zwischen 3.1 km hinter Bischmisheim und 0.7 km vor AS Sankt Ingbert-West", + "", + "L\u00e4nge: 0.98 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A6 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.089522192, + 49.245933676 + ], + [ + 7.0900402, + 49.247573201 + ], + [ + 7.0902826, + 49.248327801 + ], + [ + 7.0903906, + 49.248642101 + ], + [ + 7.0905254, + 49.249034601 + ], + [ + 7.090752, + 49.249631301 + ], + [ + 7.0909957, + 49.250201901 + ], + [ + 7.0913364, + 49.250889301 + ], + [ + 7.0918708, + 49.251763201 + ], + [ + 7.0919546, + 49.251900201 + ], + [ + 7.0922702, + 49.252342401 + ], + [ + 7.092589, + 49.252748701 + ], + [ + 7.0928455, + 49.253051501 + ], + [ + 7.0931026, + 49.253342801 + ], + [ + 7.0934503, + 49.253704501 + ], + [ + 7.0938, + 49.254044201 + ], + [ + 7.093973058, + 49.254204111 + ] + ] + } + }, + { + "identifier": "2023-000528--vi-bs.2016-04-05_00-00-00-000.f.devi-zus.2016-11-01_00-00-00-000.f_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.20663451981762,7.057501873363146,49.20436383759483,7.050281154142048", + "point": "49.20663451981762,7.057501873363146", + "startLcPosition": "5", + "impact": { + "lower": "Saarbr\u00fccken", + "upper": "Bischmisheim", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kaiserslautern -> Metz/Saarbr\u00fccken", + "title": "A6 | Bischmisheim - Saarbr\u00fccken", + "startTimestamp": "2016-04-05T00:00:00+02:00", + "coordinate": { + "lat": 49.20663451981762, + "long": 7.057501873363146 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.04.16 um 00:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A6: Kaiserslautern -> Metz/Saarbr\u00fccken, zwischen 2.1 km hinter Bischmisheim und 1.6 km vor AD Saarbr\u00fccken", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A6 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.057501873, + 49.20663452 + ], + [ + 7.0573478, + 49.206549401 + ], + [ + 7.0569738, + 49.206363101 + ], + [ + 7.056428, + 49.206087901 + ], + [ + 7.0560397, + 49.205905801 + ], + [ + 7.0554673, + 49.205679601 + ], + [ + 7.0549832, + 49.205474801 + ], + [ + 7.0545658, + 49.205327101 + ], + [ + 7.0536765, + 49.205038401 + ], + [ + 7.0528253, + 49.204817401 + ], + [ + 7.0523238, + 49.204703301 + ], + [ + 7.0518321, + 49.204597401 + ], + [ + 7.051532, + 49.204537701 + ], + [ + 7.0508179, + 49.204433301 + ], + [ + 7.050281154, + 49.204363838 + ] + ] + } + }, + { + "identifier": "2023-000532--vi-bs.2024-01-18_00-00-00-000.devi-zus.2019-04-01_00-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.25426898263724,7.093833410573328,49.24595392178117,7.089367991671033", + "point": "49.25426898263724,7.093833410573328", + "startLcPosition": "6", + "impact": { + "lower": "Bischmisheim", + "upper": "Sankt Ingbert-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kaiserslautern -> Metz/Saarbr\u00fccken", + "title": "A6 | Sankt Ingbert-West - Bischmisheim", + "startTimestamp": "2024-01-18T00:00:00+01:00", + "coordinate": { + "lat": 49.25426898263724, + "long": 7.093833410573328 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.01.24 um 00:00 Uhr", + "Ende: 16.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.12.26)", + "", + "A6: Kaiserslautern -> Metz/Saarbr\u00fccken, zwischen 0.7 km hinter AS Sankt Ingbert-West und 3.1 km vor Bischmisheim", + "", + "L\u00e4nge: 0.98 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A6 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.093833411, + 49.254268983 + ], + [ + 7.0936633, + 49.254112501 + ], + [ + 7.0933135, + 49.253774501 + ], + [ + 7.0929525, + 49.253397301 + ], + [ + 7.092698, + 49.253112801 + ], + [ + 7.0924415, + 49.252809901 + ], + [ + 7.0921173, + 49.252392301 + ], + [ + 7.0917937, + 49.251941501 + ], + [ + 7.0911674, + 49.250934801 + ], + [ + 7.0908312, + 49.250236201 + ], + [ + 7.090583, + 49.249657601 + ], + [ + 7.0903522, + 49.249050501 + ], + [ + 7.0901029, + 49.248347001 + ], + [ + 7.0898692, + 49.247603601 + ], + [ + 7.089367992, + 49.245953922 + ] + ] + } + }, + { + "identifier": "2026-017542--vi-bs.2026-04-13_09-00-00-000_014.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.384587173216595,7.4289152545316455,49.38215201747534,7.42337391557792", + "point": "49.384587173216595,7.4289152545316455", + "startLcPosition": "18", + "impact": { + "lower": "Reissberg", + "upper": "Bruchm\u00fchlbach-Miesau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kaiserslautern -> Metz/Saarbr\u00fccken", + "title": "A6 | Bruchm\u00fchlbach-Miesau - Reissberg", + "coordinate": { + "lat": 49.384587173216595, + "long": 7.4289152545316455 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:30 Uhr", + "", + "A6: Kaiserslautern -> Metz/Saarbr\u00fccken, zwischen 1.0 km hinter AS Bruchm\u00fchlbach-Miesau und 0.3 km vor Reissberg", + "", + "L\u00e4nge: 0.48 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A6 von Bruchm\u00fchlbach-Miesau (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.428915255, + 49.384587173 + ], + [ + 7.4287536, + 49.384515001 + ], + [ + 7.426135, + 49.383351901 + ], + [ + 7.4252571, + 49.382965601 + ], + [ + 7.423373916, + 49.382152017 + ] + ] + } + }, + { + "identifier": "2026-017103--vi-bs.2026-04-15_09-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.42041796547481,7.543991285420743,49.420820609226084,7.546745851979932", + "point": "49.42041796547481,7.543991285420743", + "startLcPosition": "21", + "impact": { + "lower": "Ramstein-Miesenbach", + "upper": "Landstuhl-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Metz/Saarbr\u00fccken -> Kaiserslautern", + "title": "A6 | Landstuhl-West - Ramstein-Miesenbach", + "coordinate": { + "lat": 49.42041796547481, + "long": 7.543991285420743 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 11:30 Uhr", + "", + "A6: Metz/Saarbr\u00fccken -> Kaiserslautern, zwischen 1.2 km hinter AK Landstuhl-West und 1.0 km vor AS Ramstein-Miesenbach", + "", + "L\u00e4nge: 0.21 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A6 von Ramstein-Miesenbach (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.543991285, + 49.420417965 + ], + [ + 7.5445731, + 49.420512201 + ], + [ + 7.5457929, + 49.420690001 + ], + [ + 7.546745852, + 49.420820609 + ] + ] + } + }, + { + "identifier": "2026-017118--vi-bs.2026-04-20_12-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.43154556863656,7.628054375381864,49.432269909164006,7.629512828426437", + "point": "49.43154556863656,7.628054375381864", + "startLcPosition": "23", + "impact": { + "lower": "Kaiserslautern-Einsiedlerhof", + "upper": "H\u00f6llenplacken", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Metz/Saarbr\u00fccken -> Kaiserslautern", + "title": "A6 | H\u00f6llenplacken - Kaiserslautern-Einsiedlerhof", + "coordinate": { + "lat": 49.43154556863656, + "long": 7.628054375381864 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 12:30 bis 14:00 Uhr", + "", + "A6: Metz/Saarbr\u00fccken -> Kaiserslautern, zwischen 1.6 km hinter H\u00f6llenplacken und 1.8 km vor AS Kaiserslautern-Einsiedlerhof", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A6 von Kaiserslautern-Einsiedlerhof (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.628054375, + 49.431545569 + ], + [ + 7.6283435, + 49.431691201 + ], + [ + 7.629512828, + 49.432269909 + ] + ] + } + }, + { + "identifier": "2026-015338--vi-bs.2026-04-14_19-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.55009601260736,8.220280229253728,49.55252261186217,8.18179733621701", + "point": "49.55009601260736,8.220280229253728", + "startLcPosition": "40", + "impact": { + "lower": "Gr\u00fcnstadt", + "upper": "Dirmsteiner Pfad", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mannheim -> Kaiserslautern", + "title": "A6 | Dirmsteiner Pfad - Gr\u00fcnstadt", + "coordinate": { + "lat": 49.55009601260736, + "long": 8.220280229253728 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:30 bis zum 15.04.26 05:00 Uhr.", + "", + "A6: Mannheim -> Kaiserslautern, zwischen 2.6 km hinter Dirmsteiner Pfad und AS Gr\u00fcnstadt", + "", + "L\u00e4nge: 2.8 km | Maximale Durchfahrtsbreite: 3.4 m", + "", + "A6 von Dirmsteiner Pfad (Parkplatz) nach Gr\u00fcnstadt (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.220280229, + 49.550096013 + ], + [ + 8.2183623, + 49.550292201 + ], + [ + 8.2179576, + 49.550333601 + ], + [ + 8.2172095, + 49.550410101 + ], + [ + 8.2118212, + 49.550967601 + ], + [ + 8.2116163, + 49.550985301 + ], + [ + 8.2106215, + 49.551072701 + ], + [ + 8.2095607, + 49.551143001 + ], + [ + 8.2087876, + 49.551180501 + ], + [ + 8.1992629, + 49.551202501 + ], + [ + 8.1982935, + 49.551213501 + ], + [ + 8.1976825, + 49.551225901 + ], + [ + 8.1962429, + 49.551274001 + ], + [ + 8.1954135, + 49.551313201 + ], + [ + 8.1945726, + 49.551375901 + ], + [ + 8.18975, + 49.551807801 + ], + [ + 8.188318, + 49.551947501 + ], + [ + 8.1882179, + 49.551956801 + ], + [ + 8.1873022, + 49.552040901 + ], + [ + 8.1869674, + 49.552071401 + ], + [ + 8.1842361, + 49.552307101 + ], + [ + 8.1826613, + 49.552445401 + ], + [ + 8.181797336, + 49.552522612 + ] + ] + } + }, + { + "identifier": "2025-012076--vi-bs.2025-08-14_00-00-00-000.devi-zus.2025-03-17_00-00-00-000_007.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.55362211816224,8.340013419670242,49.555132361510644,8.366195346098522", + "point": "49.55362211816224,8.340013419670242", + "startLcPosition": "41", + "impact": { + "lower": "Ludwigshafen-Nord", + "upper": "Frankenthal", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kaiserslautern -> Mannheim", + "title": "A6 | Frankenthal - Ludwigshafen-Nord", + "startTimestamp": "2025-08-14T00:00:00+02:00", + "coordinate": { + "lat": 49.55362211816224, + "long": 8.340013419670242 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.08.25 um 00:00 Uhr", + "Ende: 18.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.01.27)", + "", + "A6: Kaiserslautern -> Mannheim, zwischen 1.9 km hinter AK Frankenthal und 2.3 km vor AS Ludwigshafen-Nord", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 6 m", + "", + "Ersatzneubau BW 6416707 AS Frankenthal" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.34001342, + 49.553622118 + ], + [ + 8.3445792, + 49.553882601 + ], + [ + 8.3460402, + 49.553965901 + ], + [ + 8.3461397, + 49.553971001 + ], + [ + 8.3462521, + 49.553977701 + ], + [ + 8.3476985, + 49.554067401 + ], + [ + 8.3498445, + 49.554206201 + ], + [ + 8.3498655, + 49.554207401 + ], + [ + 8.3500463, + 49.554217201 + ], + [ + 8.3522776, + 49.554345701 + ], + [ + 8.3526706, + 49.554368201 + ], + [ + 8.3529751, + 49.554386601 + ], + [ + 8.3532508, + 49.554402501 + ], + [ + 8.3545612, + 49.554471501 + ], + [ + 8.3562169, + 49.554559301 + ], + [ + 8.3573711, + 49.554627901 + ], + [ + 8.3585437, + 49.554691001 + ], + [ + 8.3598942, + 49.554768801 + ], + [ + 8.3614064, + 49.554857101 + ], + [ + 8.36234, + 49.554906401 + ], + [ + 8.366195346, + 49.555132362 + ] + ] + } + }, + { + "identifier": "2025-012076--vi-bs.2025-08-14_00-00-00-000.devi-zus.2025-03-17_00-00-00-000_007.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.55523684337329,8.366181062542308,49.55373635394675,8.339997944004809", + "point": "49.55523684337329,8.366181062542308", + "startLcPosition": "43", + "impact": { + "lower": "Frankenthal", + "upper": "Ludwigshafen-Nord", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Mannheim -> Kaiserslautern", + "title": "A6 | Ludwigshafen-Nord - Frankenthal", + "startTimestamp": "2025-08-14T00:00:00+02:00", + "coordinate": { + "lat": 49.55523684337329, + "long": 8.366181062542308 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.08.25 um 00:00 Uhr", + "Ende: 18.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.01.27)", + "", + "A6: Mannheim -> Kaiserslautern, zwischen 2.3 km hinter AS Ludwigshafen-Nord und 1.9 km vor AK Frankenthal", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Ersatzneubau BW 6416707 AS Frankenthal" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.366181063, + 49.555236843 + ], + [ + 8.3643226, + 49.555130501 + ], + [ + 8.3631502, + 49.555062801 + ], + [ + 8.3622452, + 49.555012001 + ], + [ + 8.3594893, + 49.554854801 + ], + [ + 8.3579134, + 49.554759701 + ], + [ + 8.355612, + 49.554620901 + ], + [ + 8.3544106, + 49.554549901 + ], + [ + 8.3532444, + 49.554479101 + ], + [ + 8.3529684, + 49.554465701 + ], + [ + 8.3527622, + 49.554453501 + ], + [ + 8.3501596, + 49.554302201 + ], + [ + 8.3500475, + 49.554296701 + ], + [ + 8.3498665, + 49.554286101 + ], + [ + 8.3481988, + 49.554203601 + ], + [ + 8.3466717, + 49.554120401 + ], + [ + 8.3461248, + 49.554089401 + ], + [ + 8.3460255, + 49.554083101 + ], + [ + 8.339997944, + 49.553736354 + ] + ] + } + }, + { + "identifier": "2026-017796--vi-bs.2026-04-10_09-00-00-000.devi-zus.2026-04-10_09-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.51665397497342,8.560154556497599,49.47339218846596,8.54225851411863", + "point": "49.51665397497342,8.560154556497599", + "startLcPosition": "48", + "impact": { + "lower": "Mannheim", + "upper": "Viernheimer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mannheim -> Heilbronn", + "title": "A6 | Viernheimer Kreuz - Mannheim", + "coordinate": { + "lat": 49.51665397497342, + "long": 8.560154556497599 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "11.04.26 von 08:00 bis 16:00 Uhr", + "", + "A6: Mannheim -> Heilbronn, zwischen 0.7 km hinter AK Viernheimer Kreuz und 1.4 km vor AK Mannheim", + "", + "L\u00e4nge: 5.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A6 von Linsenb\u00fchl (Rastplatz) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.560154556, + 49.516653975 + ], + [ + 8.5601773, + 49.516084201 + ], + [ + 8.5602413, + 49.514716501 + ], + [ + 8.5602862, + 49.513741501 + ], + [ + 8.5602961, + 49.513528501 + ], + [ + 8.560375, + 49.511767101 + ], + [ + 8.5604569, + 49.509908901 + ], + [ + 8.5605826, + 49.507132001 + ], + [ + 8.5606087, + 49.506582501 + ], + [ + 8.5606206, + 49.506054401 + ], + [ + 8.5606434, + 49.505466901 + ], + [ + 8.5606442, + 49.504957801 + ], + [ + 8.5606377, + 49.504704701 + ], + [ + 8.560616, + 49.504249401 + ], + [ + 8.5605857, + 49.503877601 + ], + [ + 8.5605461, + 49.503512901 + ], + [ + 8.5605012, + 49.503193301 + ], + [ + 8.5604503, + 49.502886601 + ], + [ + 8.5603589, + 49.502422401 + ], + [ + 8.5602827, + 49.502088901 + ], + [ + 8.5601053, + 49.501454901 + ], + [ + 8.5599545, + 49.500993701 + ], + [ + 8.5597871, + 49.500542901 + ], + [ + 8.5596838, + 49.500289001 + ], + [ + 8.5595142, + 49.499895901 + ], + [ + 8.559265, + 49.499369201 + ], + [ + 8.5589807, + 49.498829501 + ], + [ + 8.5587054, + 49.498362101 + ], + [ + 8.5584358, + 49.497924901 + ], + [ + 8.558043, + 49.497346601 + ], + [ + 8.5576469, + 49.496813901 + ], + [ + 8.5572507, + 49.496319401 + ], + [ + 8.5568254, + 49.495812001 + ], + [ + 8.5562791, + 49.495190001 + ], + [ + 8.5556411, + 49.494490101 + ], + [ + 8.5554311, + 49.494266301 + ], + [ + 8.5550319, + 49.493821801 + ], + [ + 8.5544407, + 49.493161401 + ], + [ + 8.5539595, + 49.492609501 + ], + [ + 8.5535509, + 49.492133901 + ], + [ + 8.5530902, + 49.491586001 + ], + [ + 8.5527424, + 49.491165901 + ], + [ + 8.5520621, + 49.490343901 + ], + [ + 8.5504672, + 49.488417001 + ], + [ + 8.5497888, + 49.487597601 + ], + [ + 8.5491017, + 49.486763901 + ], + [ + 8.5487035, + 49.486270201 + ], + [ + 8.5484263, + 49.485926601 + ], + [ + 8.547764, + 49.485086201 + ], + [ + 8.5474802, + 49.484712601 + ], + [ + 8.5473917, + 49.484601001 + ], + [ + 8.5470274, + 49.484116701 + ], + [ + 8.5466798, + 49.483655801 + ], + [ + 8.5464333, + 49.483317701 + ], + [ + 8.5463579, + 49.483214301 + ], + [ + 8.5461534, + 49.482929401 + ], + [ + 8.5459425, + 49.482620201 + ], + [ + 8.5458354, + 49.482462701 + ], + [ + 8.5456981, + 49.482247601 + ], + [ + 8.5455915, + 49.482080801 + ], + [ + 8.5453821, + 49.481732401 + ], + [ + 8.5452378, + 49.481481501 + ], + [ + 8.54507, + 49.481166801 + ], + [ + 8.5448978, + 49.480825101 + ], + [ + 8.5446992, + 49.480402801 + ], + [ + 8.5445604, + 49.480090201 + ], + [ + 8.5444339, + 49.479780801 + ], + [ + 8.5442497, + 49.479297301 + ], + [ + 8.5441948, + 49.479143501 + ], + [ + 8.5441784, + 49.479097701 + ], + [ + 8.5440181, + 49.478650901 + ], + [ + 8.5428038, + 49.475035101 + ], + [ + 8.5426316, + 49.474512601 + ], + [ + 8.5425328, + 49.474225501 + ], + [ + 8.5423974, + 49.473813001 + ], + [ + 8.5423546, + 49.473683801 + ], + [ + 8.542324, + 49.473584801 + ], + [ + 8.542258514, + 49.473392188 + ] + ] + } + }, + { + "identifier": "2026-017226--vi-zus.2026-04-08_08-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.516348261964026,8.560166759625236,49.46992004010754,8.541047986510591", + "point": "49.516348261964026,8.560166759625236", + "startLcPosition": "48", + "impact": { + "lower": "Mannheim", + "upper": "Viernheimer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mannheim -> Heilbronn", + "title": "A6 | Viernheimer Kreuz - Mannheim", + "coordinate": { + "lat": 49.516348261964026, + "long": 8.560166759625236 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Mittwoch, Donnerstag, Freitag, Samstag und Sonntag zwischen dem 08.04.26 und dem 13.04.26 von 08:00 bis 18:00 Uhr.", + "", + "A6: Mannheim -> Heilbronn, zwischen 0.8 km hinter AK Viernheimer Kreuz und 1.0 km vor AK Mannheim", + "", + "L\u00e4nge: 5.46 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A6 von Mannheim (AK) nach Linsenb\u00fchl (Rastplatz) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.56016676, + 49.516348262 + ], + [ + 8.5601773, + 49.516084201 + ], + [ + 8.5602413, + 49.514716501 + ], + [ + 8.5602862, + 49.513741501 + ], + [ + 8.5602961, + 49.513528501 + ], + [ + 8.560375, + 49.511767101 + ], + [ + 8.5604569, + 49.509908901 + ], + [ + 8.5605826, + 49.507132001 + ], + [ + 8.5606087, + 49.506582501 + ], + [ + 8.5606206, + 49.506054401 + ], + [ + 8.5606434, + 49.505466901 + ], + [ + 8.5606442, + 49.504957801 + ], + [ + 8.5606377, + 49.504704701 + ], + [ + 8.560616, + 49.504249401 + ], + [ + 8.5605857, + 49.503877601 + ], + [ + 8.5605461, + 49.503512901 + ], + [ + 8.5605012, + 49.503193301 + ], + [ + 8.5604503, + 49.502886601 + ], + [ + 8.5603589, + 49.502422401 + ], + [ + 8.5602827, + 49.502088901 + ], + [ + 8.5601053, + 49.501454901 + ], + [ + 8.5599545, + 49.500993701 + ], + [ + 8.5597871, + 49.500542901 + ], + [ + 8.5596838, + 49.500289001 + ], + [ + 8.5595142, + 49.499895901 + ], + [ + 8.559265, + 49.499369201 + ], + [ + 8.5589807, + 49.498829501 + ], + [ + 8.5587054, + 49.498362101 + ], + [ + 8.5584358, + 49.497924901 + ], + [ + 8.558043, + 49.497346601 + ], + [ + 8.5576469, + 49.496813901 + ], + [ + 8.5572507, + 49.496319401 + ], + [ + 8.5568254, + 49.495812001 + ], + [ + 8.5562791, + 49.495190001 + ], + [ + 8.5556411, + 49.494490101 + ], + [ + 8.5554311, + 49.494266301 + ], + [ + 8.5550319, + 49.493821801 + ], + [ + 8.5544407, + 49.493161401 + ], + [ + 8.5539595, + 49.492609501 + ], + [ + 8.5535509, + 49.492133901 + ], + [ + 8.5530902, + 49.491586001 + ], + [ + 8.5527424, + 49.491165901 + ], + [ + 8.5520621, + 49.490343901 + ], + [ + 8.5504672, + 49.488417001 + ], + [ + 8.5497888, + 49.487597601 + ], + [ + 8.5491017, + 49.486763901 + ], + [ + 8.5487035, + 49.486270201 + ], + [ + 8.5484263, + 49.485926601 + ], + [ + 8.547764, + 49.485086201 + ], + [ + 8.5474802, + 49.484712601 + ], + [ + 8.5473917, + 49.484601001 + ], + [ + 8.5470274, + 49.484116701 + ], + [ + 8.5466798, + 49.483655801 + ], + [ + 8.5464333, + 49.483317701 + ], + [ + 8.5463579, + 49.483214301 + ], + [ + 8.5461534, + 49.482929401 + ], + [ + 8.5459425, + 49.482620201 + ], + [ + 8.5458354, + 49.482462701 + ], + [ + 8.5456981, + 49.482247601 + ], + [ + 8.5455915, + 49.482080801 + ], + [ + 8.5453821, + 49.481732401 + ], + [ + 8.5452378, + 49.481481501 + ], + [ + 8.54507, + 49.481166801 + ], + [ + 8.5448978, + 49.480825101 + ], + [ + 8.5446992, + 49.480402801 + ], + [ + 8.5445604, + 49.480090201 + ], + [ + 8.5444339, + 49.479780801 + ], + [ + 8.5442497, + 49.479297301 + ], + [ + 8.5441948, + 49.479143501 + ], + [ + 8.5441784, + 49.479097701 + ], + [ + 8.5440181, + 49.478650901 + ], + [ + 8.5428038, + 49.475035101 + ], + [ + 8.5426316, + 49.474512601 + ], + [ + 8.5425328, + 49.474225501 + ], + [ + 8.5423974, + 49.473813001 + ], + [ + 8.5423546, + 49.473683801 + ], + [ + 8.542324, + 49.473584801 + ], + [ + 8.5417748, + 49.471969401 + ], + [ + 8.5417086, + 49.471777901 + ], + [ + 8.5415361, + 49.471284001 + ], + [ + 8.5411062, + 49.470078401 + ], + [ + 8.541047987, + 49.46992004 + ] + ] + } + }, + { + "identifier": "2026-017796--vi-bs.2026-04-10_09-00-00-000.devi-zus.2026-04-10_09-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.478254664724446,8.544122585594737,49.502260008309776,8.5605291775615", + "point": "49.478254664724446,8.544122585594737", + "startLcPosition": "50", + "impact": { + "lower": "Linsenb\u00fchl", + "upper": "Mannheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> Mannheim", + "title": "A6 | Mannheim - Linsenb\u00fchl", + "coordinate": { + "lat": 49.478254664724446, + "long": 8.544122585594737 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "11.04.26 von 08:00 bis 16:00 Uhr", + "", + "A6: Heilbronn -> Mannheim, zwischen 1.9 km hinter AK Mannheim und 0.6 km vor Linsenb\u00fchl", + "", + "L\u00e4nge: 2.94 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A6 von Linsenb\u00fchl (Rastplatz) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.544122586, + 49.478254665 + ], + [ + 8.5442582, + 49.478657601 + ], + [ + 8.544448, + 49.479221401 + ], + [ + 8.5446478, + 49.479768101 + ], + [ + 8.5447633, + 49.480061401 + ], + [ + 8.544895, + 49.480361901 + ], + [ + 8.545054, + 49.480701501 + ], + [ + 8.5451593, + 49.480919001 + ], + [ + 8.5452715, + 49.481130201 + ], + [ + 8.5454221, + 49.481409201 + ], + [ + 8.5455885, + 49.481704901 + ], + [ + 8.5457827, + 49.482026901 + ], + [ + 8.5460302, + 49.482407801 + ], + [ + 8.5461381, + 49.482565101 + ], + [ + 8.5463324, + 49.482854601 + ], + [ + 8.546547, + 49.483156501 + ], + [ + 8.5467033, + 49.483369601 + ], + [ + 8.5468958, + 49.483627901 + ], + [ + 8.5472232, + 49.484065701 + ], + [ + 8.5475994, + 49.484556201 + ], + [ + 8.5480019, + 49.485086501 + ], + [ + 8.5485963, + 49.485837301 + ], + [ + 8.5492866, + 49.486696601 + ], + [ + 8.5499599, + 49.487515001 + ], + [ + 8.5506517, + 49.488348801 + ], + [ + 8.5518442, + 49.489790101 + ], + [ + 8.5529319, + 49.491102801 + ], + [ + 8.5532519, + 49.491489501 + ], + [ + 8.5537374, + 49.492067701 + ], + [ + 8.5541965, + 49.492600901 + ], + [ + 8.5546689, + 49.493140301 + ], + [ + 8.5552212, + 49.493756601 + ], + [ + 8.5558281, + 49.494424201 + ], + [ + 8.556978, + 49.495709601 + ], + [ + 8.5572082, + 49.495978901 + ], + [ + 8.5574344, + 49.496250601 + ], + [ + 8.557621, + 49.496477501 + ], + [ + 8.5578021, + 49.496709001 + ], + [ + 8.5580116, + 49.496983801 + ], + [ + 8.5582178, + 49.497267601 + ], + [ + 8.5584299, + 49.497568801 + ], + [ + 8.558609, + 49.497836101 + ], + [ + 8.5588675, + 49.498247401 + ], + [ + 8.5591796, + 49.498781201 + ], + [ + 8.5594847, + 49.499365001 + ], + [ + 8.5597214, + 49.499864001 + ], + [ + 8.5598923, + 49.500267701 + ], + [ + 8.5600138, + 49.500572001 + ], + [ + 8.5601928, + 49.501060901 + ], + [ + 8.5602978, + 49.501394501 + ], + [ + 8.5603943, + 49.501725901 + ], + [ + 8.5604834, + 49.502063601 + ], + [ + 8.560529178, + 49.502260008 + ] + ] + } + }, + { + "identifier": "2026-015003--vi-bs.2026-04-16_08-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.274359878565505,8.64058082185784,49.27204608697183,8.654409961351602", + "point": "49.274359878565505,8.64058082185784", + "startLcPosition": "55", + "impact": { + "lower": "Wiesloch/Rauenberg", + "upper": "Walldorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mannheim -> Heilbronn", + "title": "A6 | Walldorf - Wiesloch/Rauenberg", + "coordinate": { + "lat": 49.274359878565505, + "long": 8.64058082185784 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 18:00 Uhr", + "", + "A6: Mannheim -> Heilbronn, zwischen 1.6 km hinter AK Walldorf und 2.9 km vor AS Wiesloch/Rauenberg", + "", + "L\u00e4nge: 1.04 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A6 von Walldorf (AK) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.640580822, + 49.274359879 + ], + [ + 8.640625, + 49.274348801 + ], + [ + 8.6413579, + 49.274170101 + ], + [ + 8.6421365, + 49.273988501 + ], + [ + 8.6428083, + 49.273836701 + ], + [ + 8.6436598, + 49.273650101 + ], + [ + 8.6443104, + 49.273513301 + ], + [ + 8.6458165, + 49.273211901 + ], + [ + 8.646263, + 49.273127701 + ], + [ + 8.6467021, + 49.273048901 + ], + [ + 8.6475864, + 49.272894301 + ], + [ + 8.6484336, + 49.272756901 + ], + [ + 8.649339, + 49.272620801 + ], + [ + 8.6504234, + 49.272468301 + ], + [ + 8.6516708, + 49.272319101 + ], + [ + 8.6527881, + 49.272195901 + ], + [ + 8.6529224, + 49.272181401 + ], + [ + 8.6531767, + 49.272154801 + ], + [ + 8.6539782, + 49.272081101 + ], + [ + 8.6543633, + 49.272049901 + ], + [ + 8.654409961, + 49.272046087 + ] + ] + } + }, + { + "identifier": "2026-010954--vi-bs.2026-04-16_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.27199885664727,8.657275436005284,49.2724659197524,8.651600007948266", + "point": "49.27199885664727,8.657275436005284", + "startLcPosition": "58", + "impact": { + "lower": "Wei\u00dfer Stock", + "upper": "Wiesloch/Rauenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> Mannheim", + "title": "A6 | Wiesloch/Rauenberg - Wei\u00dfer Stock", + "coordinate": { + "lat": 49.27199885664727, + "long": 8.657275436005284 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 14:00 Uhr", + "", + "A6: Heilbronn -> Mannheim, zwischen 2.7 km hinter AS Wiesloch/Rauenberg und 0.3 km vor Wei\u00dfer Stock", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A6 von Wei\u00dfer Stock (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.657275436, + 49.271998857 + ], + [ + 8.6565622, + 49.272029801 + ], + [ + 8.6556314, + 49.272085901 + ], + [ + 8.6543884, + 49.272190401 + ], + [ + 8.6543149, + 49.272196601 + ], + [ + 8.6536751, + 49.272252301 + ], + [ + 8.6532245, + 49.272293201 + ], + [ + 8.6529519, + 49.272321401 + ], + [ + 8.6519645, + 49.272426101 + ], + [ + 8.651600008, + 49.27246592 + ] + ] + } + }, + { + "identifier": "2026-016842--vi-bs.2026-04-10_00-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.22251185188365,8.960656453224994,49.22231681478684,8.964744617403335", + "point": "49.22251185188365,8.960656453224994", + "startLcPosition": "62", + "impact": { + "lower": "Bauernwald", + "upper": "Sinsheim-Steinsfurt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mannheim -> Heilbronn", + "title": "A6 | Sinsheim-Steinsfurt - Bauernwald", + "coordinate": { + "lat": 49.22251185188365, + "long": 8.960656453224994 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 00:00 bis 04:00 Uhr", + "", + "A6: Mannheim -> Heilbronn, zwischen 3.1 km hinter AS Sinsheim-Steinsfurt und 0.6 km vor Bauernwald", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A6 von Sinsheim-Steinsfurt (AS) nach Bauernwald (Rastplatz) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.960656453, + 49.222511852 + ], + [ + 8.9610366, + 49.222483701 + ], + [ + 8.9618639, + 49.222440101 + ], + [ + 8.9630963, + 49.222372101 + ], + [ + 8.963533, + 49.222356101 + ], + [ + 8.964744617, + 49.222316815 + ] + ] + } + }, + { + "identifier": "2025-055298--vi-bs.2025-11-09_09-00-00-000.devi-fbm.2025-11-08_21-00-00-000.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.230994221602494,8.905239886185937,49.23756948526525,8.896596638750168", + "point": "49.230994221602494,8.905239886185937", + "startLcPosition": "62", + "impact": { + "lower": "Sinsheim-S\u00fcd", + "upper": "Sinsheim-Steinsfurt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> Mannheim", + "title": "A6 | Sinsheim-Steinsfurt - Sinsheim-S\u00fcd", + "startTimestamp": "2025-11-09T09:00:00+01:00", + "coordinate": { + "lat": 49.230994221602494, + "long": 8.905239886185937 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.11.25 um 09:00 Uhr", + "Ende: 18.12.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.26)", + "", + "A6: Heilbronn -> Mannheim, zwischen 1.2 km hinter AS Sinsheim-Steinsfurt und 0.7 km vor AS Sinsheim-S\u00fcd", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 9.75 m", + "", + "A6 Umleitungsbeschilderung Sinsheim f\u00fcr die Sanierung L533 der Stadtwerke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.905239886, + 49.230994222 + ], + [ + 8.9052023, + 49.231025601 + ], + [ + 8.9046651, + 49.231509101 + ], + [ + 8.9045456, + 49.231618801 + ], + [ + 8.9031997, + 49.232823601 + ], + [ + 8.9028568, + 49.233127001 + ], + [ + 8.9025067, + 49.233425001 + ], + [ + 8.9020578, + 49.233817001 + ], + [ + 8.9015895, + 49.234200001 + ], + [ + 8.9008595, + 49.234773601 + ], + [ + 8.9000975, + 49.235337101 + ], + [ + 8.8993264, + 49.235870701 + ], + [ + 8.8989376, + 49.236132501 + ], + [ + 8.8985358, + 49.236395001 + ], + [ + 8.897967, + 49.236753701 + ], + [ + 8.8972707, + 49.237175301 + ], + [ + 8.896596639, + 49.237569485 + ] + ] + } + }, + { + "identifier": "2026-016858--vi-bs.2026-04-10_02-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.22251185188365,8.960656453224994,49.22231681478684,8.964744617403335", + "point": "49.22251185188365,8.960656453224994", + "startLcPosition": "62", + "impact": { + "lower": "Bauernwald", + "upper": "Sinsheim-Steinsfurt", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mannheim -> Heilbronn", + "title": "A6 | Sinsheim-Steinsfurt - Bauernwald", + "coordinate": { + "lat": 49.22251185188365, + "long": 8.960656453224994 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 02:00 bis 06:00 Uhr", + "", + "A6: Mannheim -> Heilbronn, zwischen 3.1 km hinter AS Sinsheim-Steinsfurt und 0.6 km vor Bauernwald", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A6 von Sinsheim-Steinsfurt (AS) nach Bauernwald (Rastplatz) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.960656453, + 49.222511852 + ], + [ + 8.9610366, + 49.222483701 + ], + [ + 8.9618639, + 49.222440101 + ], + [ + 8.9630963, + 49.222372101 + ], + [ + 8.963533, + 49.222356101 + ], + [ + 8.964744617, + 49.222316815 + ] + ] + } + }, + { + "identifier": "2026-017133--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_009.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.163230477408405,9.275691357815086,49.19667185967763,9.702169938969822", + "point": "49.163230477408405,9.275691357815086", + "startLcPosition": "69", + "impact": { + "lower": "Schw\u00e4bisch Hall", + "upper": "Sulmtal", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Sulmtal - Schw\u00e4bisch Hall", + "coordinate": { + "lat": 49.163230477408405, + "long": 9.275691357815086 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 23.04.26 von 08:00 bis 16:30 Uhr.", + "Jeden Freitag und Freitag zwischen dem 17.04.26 und dem 24.04.26 von 08:00 bis 12:00 Uhr.", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 1.5 km hinter Sulmtal und 3.0 km vor AS Schw\u00e4bisch Hall", + "", + "L\u00e4nge: 34.04 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A6 von Sulmtal (Rastplatz) nach Schw\u00e4bisch Hall (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.275691358, + 49.163230477 + ], + [ + 9.2763459, + 49.163034601 + ], + [ + 9.2795519, + 49.162045501 + ], + [ + 9.2796692, + 49.162007701 + ], + [ + 9.2814065, + 49.161477501 + ], + [ + 9.2820534, + 49.161275401 + ], + [ + 9.2824558, + 49.161092401 + ], + [ + 9.2828089, + 49.160950101 + ], + [ + 9.2831901, + 49.160816401 + ], + [ + 9.2839465, + 49.160521801 + ], + [ + 9.2845313, + 49.160283001 + ], + [ + 9.2847949, + 49.160175301 + ], + [ + 9.2854563, + 49.159894201 + ], + [ + 9.2857909, + 49.159750101 + ], + [ + 9.2861232, + 49.159608801 + ], + [ + 9.2866646, + 49.159373501 + ], + [ + 9.2871762, + 49.159170801 + ], + [ + 9.2880207, + 49.158868201 + ], + [ + 9.2888262, + 49.158613801 + ], + [ + 9.2894506, + 49.158445401 + ], + [ + 9.2900369, + 49.158310901 + ], + [ + 9.2905166, + 49.158209301 + ], + [ + 9.2910959, + 49.158094701 + ], + [ + 9.2917589, + 49.157989201 + ], + [ + 9.2920996, + 49.157948401 + ], + [ + 9.2925147, + 49.157910001 + ], + [ + 9.292863, + 49.157877701 + ], + [ + 9.2931879, + 49.157852301 + ], + [ + 9.2942721, + 49.157768701 + ], + [ + 9.2951959, + 49.157700201 + ], + [ + 9.2955438, + 49.157675001 + ], + [ + 9.2958359, + 49.157651201 + ], + [ + 9.2962465, + 49.157612901 + ], + [ + 9.2967791, + 49.157559001 + ], + [ + 9.2971716, + 49.157519401 + ], + [ + 9.2976415, + 49.157466801 + ], + [ + 9.2981612, + 49.157396201 + ], + [ + 9.2987392, + 49.157320401 + ], + [ + 9.3003799, + 49.157106701 + ], + [ + 9.3017819, + 49.156932801 + ], + [ + 9.3024956, + 49.156850301 + ], + [ + 9.303726, + 49.156721901 + ], + [ + 9.3044865, + 49.156655201 + ], + [ + 9.3050698, + 49.156601101 + ], + [ + 9.3057174, + 49.156550401 + ], + [ + 9.3067805, + 49.156476301 + ], + [ + 9.3070065, + 49.156462601 + ], + [ + 9.3077165, + 49.156419201 + ], + [ + 9.3085335, + 49.156384101 + ], + [ + 9.3091555, + 49.156367001 + ], + [ + 9.3097498, + 49.156364201 + ], + [ + 9.3102677, + 49.156365901 + ], + [ + 9.3107839, + 49.156374701 + ], + [ + 9.3112477, + 49.156397001 + ], + [ + 9.3119412, + 49.156437901 + ], + [ + 9.3124483, + 49.156480001 + ], + [ + 9.3129032, + 49.156531501 + ], + [ + 9.3132861, + 49.156582401 + ], + [ + 9.3136678, + 49.156639801 + ], + [ + 9.3142044, + 49.156725401 + ], + [ + 9.3149556, + 49.156880301 + ], + [ + 9.3153596, + 49.156968301 + ], + [ + 9.3157773, + 49.157075901 + ], + [ + 9.3161899, + 49.157191301 + ], + [ + 9.3165705, + 49.157303301 + ], + [ + 9.3169505, + 49.157419601 + ], + [ + 9.3172905, + 49.157534901 + ], + [ + 9.3176094, + 49.157644001 + ], + [ + 9.3180669, + 49.157824301 + ], + [ + 9.3185669, + 49.158030401 + ], + [ + 9.3188634, + 49.158164501 + ], + [ + 9.3191526, + 49.158301501 + ], + [ + 9.319512, + 49.158477601 + ], + [ + 9.3198643, + 49.158661801 + ], + [ + 9.3205296, + 49.159025201 + ], + [ + 9.3214486, + 49.159587101 + ], + [ + 9.3223025, + 49.160104701 + ], + [ + 9.3223695, + 49.160142401 + ], + [ + 9.322994, + 49.160491001 + ], + [ + 9.32348, + 49.160731901 + ], + [ + 9.3239805, + 49.160966301 + ], + [ + 9.3244746, + 49.161174701 + ], + [ + 9.3249668, + 49.161370201 + ], + [ + 9.3255154, + 49.161559301 + ], + [ + 9.3260751, + 49.161733201 + ], + [ + 9.3266236, + 49.161880501 + ], + [ + 9.3271793, + 49.162009901 + ], + [ + 9.3276299, + 49.162111401 + ], + [ + 9.3280909, + 49.162198701 + ], + [ + 9.3286801, + 49.162287801 + ], + [ + 9.329271, + 49.162359301 + ], + [ + 9.3297608, + 49.162406301 + ], + [ + 9.3302501, + 49.162442101 + ], + [ + 9.3308142, + 49.162467101 + ], + [ + 9.3313824, + 49.162477101 + ], + [ + 9.3319686, + 49.162467101 + ], + [ + 9.3325438, + 49.162443701 + ], + [ + 9.3333074, + 49.162385301 + ], + [ + 9.3340629, + 49.162302701 + ], + [ + 9.3347552, + 49.162212301 + ], + [ + 9.335427, + 49.162110601 + ], + [ + 9.3360934, + 49.162007101 + ], + [ + 9.3381522, + 49.161655301 + ], + [ + 9.3422489, + 49.160998901 + ], + [ + 9.3451608, + 49.160512201 + ], + [ + 9.3461709, + 49.160353901 + ], + [ + 9.3468924, + 49.160255701 + ], + [ + 9.3475426, + 49.160178001 + ], + [ + 9.3485209, + 49.160088001 + ], + [ + 9.349517, + 49.160028701 + ], + [ + 9.3505083, + 49.159999401 + ], + [ + 9.3513018, + 49.160005901 + ], + [ + 9.3519399, + 49.160017401 + ], + [ + 9.3525656, + 49.160041001 + ], + [ + 9.3535009, + 49.160091501 + ], + [ + 9.3543513, + 49.160156801 + ], + [ + 9.3552294, + 49.160229801 + ], + [ + 9.3575753, + 49.160449901 + ], + [ + 9.3623609, + 49.160871301 + ], + [ + 9.3630153, + 49.160942601 + ], + [ + 9.3637101, + 49.161027501 + ], + [ + 9.3643436, + 49.161111301 + ], + [ + 9.3649422, + 49.161210901 + ], + [ + 9.3654705, + 49.161313201 + ], + [ + 9.3660298, + 49.161434601 + ], + [ + 9.3664982, + 49.161543701 + ], + [ + 9.367087, + 49.161693101 + ], + [ + 9.3676498, + 49.161864701 + ], + [ + 9.368053, + 49.161992901 + ], + [ + 9.3686455, + 49.162196701 + ], + [ + 9.3692396, + 49.162424601 + ], + [ + 9.3697337, + 49.162632301 + ], + [ + 9.3702773, + 49.162874501 + ], + [ + 9.3706819, + 49.163073701 + ], + [ + 9.3711536, + 49.163318301 + ], + [ + 9.3715122, + 49.163520501 + ], + [ + 9.3720116, + 49.163819601 + ], + [ + 9.3721312, + 49.163896001 + ], + [ + 9.3727795, + 49.164325401 + ], + [ + 9.373225, + 49.164649201 + ], + [ + 9.3734934, + 49.164867801 + ], + [ + 9.3737754, + 49.165104601 + ], + [ + 9.3740366, + 49.165339501 + ], + [ + 9.3743717, + 49.165635501 + ], + [ + 9.3746859, + 49.165956301 + ], + [ + 9.3749747, + 49.166284301 + ], + [ + 9.3753482, + 49.166742801 + ], + [ + 9.3756965, + 49.167206501 + ], + [ + 9.376368, + 49.168151601 + ], + [ + 9.3767614, + 49.168692401 + ], + [ + 9.3769744, + 49.168954601 + ], + [ + 9.377214, + 49.169216001 + ], + [ + 9.3773168, + 49.169337301 + ], + [ + 9.3776389, + 49.169687001 + ], + [ + 9.377921, + 49.169958001 + ], + [ + 9.3782257, + 49.170237101 + ], + [ + 9.3785849, + 49.170534401 + ], + [ + 9.3789774, + 49.170832401 + ], + [ + 9.3793433, + 49.171097901 + ], + [ + 9.3797542, + 49.171362701 + ], + [ + 9.3801973, + 49.171619501 + ], + [ + 9.380656, + 49.171884701 + ], + [ + 9.3812879, + 49.172196901 + ], + [ + 9.3817586, + 49.172411301 + ], + [ + 9.3822488, + 49.172605801 + ], + [ + 9.3828568, + 49.172832101 + ], + [ + 9.3836724, + 49.173074501 + ], + [ + 9.3838851, + 49.173132801 + ], + [ + 9.384696, + 49.173340601 + ], + [ + 9.3853339, + 49.173475901 + ], + [ + 9.3859296, + 49.173571201 + ], + [ + 9.3864717, + 49.173655101 + ], + [ + 9.387011, + 49.173720501 + ], + [ + 9.3874932, + 49.173771501 + ], + [ + 9.3879759, + 49.173808101 + ], + [ + 9.3884907, + 49.173841701 + ], + [ + 9.3900283, + 49.173930201 + ], + [ + 9.3909507, + 49.173986401 + ], + [ + 9.3919289, + 49.174061901 + ], + [ + 9.3929091, + 49.174169201 + ], + [ + 9.3937074, + 49.174276801 + ], + [ + 9.394429, + 49.174383701 + ], + [ + 9.3951424, + 49.174503201 + ], + [ + 9.3962436, + 49.174719501 + ], + [ + 9.3974045, + 49.174993501 + ], + [ + 9.3982227, + 49.175212201 + ], + [ + 9.3990022, + 49.175426001 + ], + [ + 9.4001273, + 49.175751701 + ], + [ + 9.4007309, + 49.175925701 + ], + [ + 9.4012347, + 49.176069701 + ], + [ + 9.4021423, + 49.176310301 + ], + [ + 9.403025, + 49.176536901 + ], + [ + 9.4037405, + 49.176717301 + ], + [ + 9.4044471, + 49.176876101 + ], + [ + 9.4048937, + 49.176971801 + ], + [ + 9.4058617, + 49.177179301 + ], + [ + 9.4065747, + 49.177346401 + ], + [ + 9.4071808, + 49.177496101 + ], + [ + 9.407786, + 49.177666901 + ], + [ + 9.4083955, + 49.177848601 + ], + [ + 9.4088996, + 49.178023801 + ], + [ + 9.4093284, + 49.178185201 + ], + [ + 9.4097192, + 49.178345401 + ], + [ + 9.410131, + 49.178528301 + ], + [ + 9.4103436, + 49.178631201 + ], + [ + 9.4108817, + 49.178907701 + ], + [ + 9.4112751, + 49.179129501 + ], + [ + 9.4116341, + 49.179346301 + ], + [ + 9.4121649, + 49.179689401 + ], + [ + 9.412354, + 49.179824301 + ], + [ + 9.4128426, + 49.180194001 + ], + [ + 9.413344, + 49.180621601 + ], + [ + 9.4137309, + 49.180987401 + ], + [ + 9.4139355, + 49.181200501 + ], + [ + 9.4141334, + 49.181428501 + ], + [ + 9.4144477, + 49.181790601 + ], + [ + 9.4147297, + 49.182196501 + ], + [ + 9.4151134, + 49.182809801 + ], + [ + 9.4153121, + 49.183212001 + ], + [ + 9.4155486, + 49.183755101 + ], + [ + 9.4157727, + 49.184427401 + ], + [ + 9.4158991, + 49.184864901 + ], + [ + 9.4161704, + 49.185830001 + ], + [ + 9.4163013, + 49.186261001 + ], + [ + 9.416419, + 49.186612001 + ], + [ + 9.4164463, + 49.186693401 + ], + [ + 9.416533, + 49.186904201 + ], + [ + 9.4166187, + 49.187112601 + ], + [ + 9.416812, + 49.187517701 + ], + [ + 9.4170163, + 49.187899101 + ], + [ + 9.4172609, + 49.188297001 + ], + [ + 9.4175057, + 49.188665201 + ], + [ + 9.417782, + 49.189035301 + ], + [ + 9.4180913, + 49.189413101 + ], + [ + 9.4182792, + 49.189627501 + ], + [ + 9.4184448, + 49.189800901 + ], + [ + 9.4188279, + 49.190193401 + ], + [ + 9.4192812, + 49.190601801 + ], + [ + 9.4197142, + 49.190957101 + ], + [ + 9.4201613, + 49.191300101 + ], + [ + 9.4206734, + 49.191655901 + ], + [ + 9.4211793, + 49.191980201 + ], + [ + 9.4217096, + 49.192290301 + ], + [ + 9.4223907, + 49.192651001 + ], + [ + 9.4230737, + 49.192975401 + ], + [ + 9.4237933, + 49.193279101 + ], + [ + 9.42428, + 49.193467801 + ], + [ + 9.4247642, + 49.193644401 + ], + [ + 9.4249805, + 49.193711801 + ], + [ + 9.4252644, + 49.193806001 + ], + [ + 9.4256186, + 49.193912601 + ], + [ + 9.4261606, + 49.194067301 + ], + [ + 9.4267862, + 49.194219801 + ], + [ + 9.4274556, + 49.194370101 + ], + [ + 9.4285133, + 49.194559301 + ], + [ + 9.429097, + 49.194640101 + ], + [ + 9.4296919, + 49.194723601 + ], + [ + 9.4299754, + 49.194763401 + ], + [ + 9.4309556, + 49.194881601 + ], + [ + 9.4317883, + 49.194989201 + ], + [ + 9.4328802, + 49.195100901 + ], + [ + 9.4331762, + 49.195127101 + ], + [ + 9.434629, + 49.195263301 + ], + [ + 9.4355645, + 49.195355801 + ], + [ + 9.4384378, + 49.195615701 + ], + [ + 9.4393726, + 49.195699401 + ], + [ + 9.4407669, + 49.195824301 + ], + [ + 9.4418077, + 49.195913901 + ], + [ + 9.4432741, + 49.196046401 + ], + [ + 9.4439976, + 49.196119001 + ], + [ + 9.4447133, + 49.196193301 + ], + [ + 9.4454353, + 49.196271001 + ], + [ + 9.4461676, + 49.196353801 + ], + [ + 9.4469962, + 49.196460101 + ], + [ + 9.4477494, + 49.196561301 + ], + [ + 9.4485534, + 49.196671301 + ], + [ + 9.4493221, + 49.196788601 + ], + [ + 9.4498875, + 49.196883001 + ], + [ + 9.45051, + 49.196990301 + ], + [ + 9.4511256, + 49.197104201 + ], + [ + 9.4520251, + 49.197282901 + ], + [ + 9.4529613, + 49.197496301 + ], + [ + 9.4534652, + 49.197608401 + ], + [ + 9.4546337, + 49.197890201 + ], + [ + 9.4553604, + 49.198079801 + ], + [ + 9.4560751, + 49.198278401 + ], + [ + 9.4567847, + 49.198486401 + ], + [ + 9.4574883, + 49.198700301 + ], + [ + 9.4582988, + 49.198954001 + ], + [ + 9.4591008, + 49.199220801 + ], + [ + 9.4602195, + 49.199619001 + ], + [ + 9.4607751, + 49.199822401 + ], + [ + 9.4613284, + 49.200035001 + ], + [ + 9.4620214, + 49.200320501 + ], + [ + 9.463424, + 49.200898301 + ], + [ + 9.464475, + 49.201325901 + ], + [ + 9.4655231, + 49.201745801 + ], + [ + 9.465729, + 49.201827201 + ], + [ + 9.4666815, + 49.202201201 + ], + [ + 9.4676185, + 49.202549601 + ], + [ + 9.4686117, + 49.202898101 + ], + [ + 9.4695785, + 49.203207601 + ], + [ + 9.4705627, + 49.203507301 + ], + [ + 9.4716166, + 49.203810901 + ], + [ + 9.4719833, + 49.203909101 + ], + [ + 9.4726442, + 49.204069201 + ], + [ + 9.4735829, + 49.204307101 + ], + [ + 9.4741941, + 49.204438201 + ], + [ + 9.4749324, + 49.204595601 + ], + [ + 9.4772576, + 49.205032401 + ], + [ + 9.4784195, + 49.205230601 + ], + [ + 9.4804553, + 49.205563601 + ], + [ + 9.4819729, + 49.205843501 + ], + [ + 9.4833747, + 49.206102001 + ], + [ + 9.4842484, + 49.206249601 + ], + [ + 9.4850891, + 49.206429201 + ], + [ + 9.4858193, + 49.206594701 + ], + [ + 9.4874598, + 49.207010601 + ], + [ + 9.488811, + 49.207414001 + ], + [ + 9.4899875, + 49.207783901 + ], + [ + 9.4917977, + 49.208366601 + ], + [ + 9.4933576, + 49.208849701 + ], + [ + 9.4947427, + 49.209283101 + ], + [ + 9.4961828, + 49.209695301 + ], + [ + 9.4976445, + 49.210084401 + ], + [ + 9.4985229, + 49.210308701 + ], + [ + 9.4994025, + 49.210512101 + ], + [ + 9.5002949, + 49.210708201 + ], + [ + 9.5011896, + 49.210892301 + ], + [ + 9.5020557, + 49.211062601 + ], + [ + 9.5029228, + 49.211218001 + ], + [ + 9.5037981, + 49.211378001 + ], + [ + 9.5046736, + 49.211518701 + ], + [ + 9.505387, + 49.211628301 + ], + [ + 9.5061019, + 49.211729501 + ], + [ + 9.5068162, + 49.211814401 + ], + [ + 9.5075286, + 49.211886301 + ], + [ + 9.50821, + 49.211941001 + ], + [ + 9.5089048, + 49.211986201 + ], + [ + 9.5097763, + 49.212037301 + ], + [ + 9.5106565, + 49.212071801 + ], + [ + 9.5113958, + 49.212092801 + ], + [ + 9.5130369, + 49.212096901 + ], + [ + 9.5139211, + 49.212080901 + ], + [ + 9.5147724, + 49.212049801 + ], + [ + 9.5156474, + 49.211994901 + ], + [ + 9.5159471, + 49.211973101 + ], + [ + 9.5169273, + 49.211901801 + ], + [ + 9.5176067, + 49.211860301 + ], + [ + 9.5217707, + 49.211509701 + ], + [ + 9.5225909, + 49.211440501 + ], + [ + 9.5234107, + 49.211377201 + ], + [ + 9.5242469, + 49.211322701 + ], + [ + 9.5250826, + 49.211277401 + ], + [ + 9.5260268, + 49.211235501 + ], + [ + 9.526977, + 49.211206701 + ], + [ + 9.5284935, + 49.211180101 + ], + [ + 9.5297157, + 49.211188701 + ], + [ + 9.5305438, + 49.211200601 + ], + [ + 9.531921, + 49.211250201 + ], + [ + 9.5329273, + 49.211295301 + ], + [ + 9.5338409, + 49.211346401 + ], + [ + 9.5359606, + 49.211532801 + ], + [ + 9.5366989, + 49.211612601 + ], + [ + 9.5375266, + 49.211704301 + ], + [ + 9.5384784, + 49.211826401 + ], + [ + 9.539778, + 49.212012901 + ], + [ + 9.5405951, + 49.212139701 + ], + [ + 9.541518, + 49.212311501 + ], + [ + 9.5421026, + 49.212415501 + ], + [ + 9.5430456, + 49.212601901 + ], + [ + 9.5438499, + 49.212766801 + ], + [ + 9.5446337, + 49.212935701 + ], + [ + 9.5455203, + 49.213147201 + ], + [ + 9.5464039, + 49.213366801 + ], + [ + 9.547895, + 49.213772301 + ], + [ + 9.5489477, + 49.214073101 + ], + [ + 9.5495645, + 49.214249301 + ], + [ + 9.5504774, + 49.214520901 + ], + [ + 9.5522171, + 49.215043901 + ], + [ + 9.5530969, + 49.215305901 + ], + [ + 9.5539687, + 49.215562601 + ], + [ + 9.5552645, + 49.215901301 + ], + [ + 9.5559147, + 49.216069101 + ], + [ + 9.5565733, + 49.216224701 + ], + [ + 9.5575439, + 49.216432101 + ], + [ + 9.5583215, + 49.216582401 + ], + [ + 9.5591035, + 49.216723101 + ], + [ + 9.5599414, + 49.216862801 + ], + [ + 9.5607811, + 49.216988601 + ], + [ + 9.5616141, + 49.217100201 + ], + [ + 9.5624636, + 49.217192101 + ], + [ + 9.563194, + 49.217264301 + ], + [ + 9.56394, + 49.217319601 + ], + [ + 9.5646822, + 49.217370801 + ], + [ + 9.5654257, + 49.217410901 + ], + [ + 9.5662643, + 49.217440901 + ], + [ + 9.5670977, + 49.217457701 + ], + [ + 9.5679349, + 49.217464401 + ], + [ + 9.5687734, + 49.217457401 + ], + [ + 9.5697719, + 49.217420001 + ], + [ + 9.5709878, + 49.217360401 + ], + [ + 9.5715895, + 49.217322501 + ], + [ + 9.5721915, + 49.217277701 + ], + [ + 9.5731449, + 49.217186601 + ], + [ + 9.5740886, + 49.217087001 + ], + [ + 9.5750292, + 49.216979001 + ], + [ + 9.5759751, + 49.216855101 + ], + [ + 9.5772012, + 49.216688201 + ], + [ + 9.5780344, + 49.216574801 + ], + [ + 9.5800913, + 49.216281501 + ], + [ + 9.5817773, + 49.216054001 + ], + [ + 9.5826273, + 49.215949201 + ], + [ + 9.5834831, + 49.215851401 + ], + [ + 9.5845324, + 49.215733301 + ], + [ + 9.5855966, + 49.215623201 + ], + [ + 9.5864986, + 49.215552001 + ], + [ + 9.5878617, + 49.215458601 + ], + [ + 9.5881585, + 49.215439601 + ], + [ + 9.588748, + 49.215404601 + ], + [ + 9.5901558, + 49.215333401 + ], + [ + 9.5910399, + 49.215288501 + ], + [ + 9.591399, + 49.215275701 + ], + [ + 9.5922824, + 49.215236501 + ], + [ + 9.59334, + 49.215197101 + ], + [ + 9.5954608, + 49.215117501 + ], + [ + 9.5971102, + 49.215047601 + ], + [ + 9.5985218, + 49.214970301 + ], + [ + 9.5994114, + 49.214911601 + ], + [ + 9.600291, + 49.214843001 + ], + [ + 9.6011292, + 49.214768801 + ], + [ + 9.6020509, + 49.214682801 + ], + [ + 9.6028172, + 49.214606901 + ], + [ + 9.6035821, + 49.214526801 + ], + [ + 9.6041804, + 49.214454501 + ], + [ + 9.6045233, + 49.214413801 + ], + [ + 9.6050908, + 49.214342501 + ], + [ + 9.6057438, + 49.214258901 + ], + [ + 9.6063902, + 49.214166001 + ], + [ + 9.6074436, + 49.214012401 + ], + [ + 9.6084733, + 49.213848401 + ], + [ + 9.6092047, + 49.213729701 + ], + [ + 9.6100103, + 49.213590001 + ], + [ + 9.6107576, + 49.213456701 + ], + [ + 9.6115032, + 49.213313501 + ], + [ + 9.6125435, + 49.213107101 + ], + [ + 9.6135932, + 49.212886201 + ], + [ + 9.6146249, + 49.212657601 + ], + [ + 9.6154088, + 49.212476201 + ], + [ + 9.6165329, + 49.212200501 + ], + [ + 9.6174098, + 49.211972601 + ], + [ + 9.6187772, + 49.211605301 + ], + [ + 9.6188766, + 49.211577801 + ], + [ + 9.6191745, + 49.211495101 + ], + [ + 9.6215631, + 49.210796401 + ], + [ + 9.6230396, + 49.210344401 + ], + [ + 9.6239267, + 49.210065901 + ], + [ + 9.6262784, + 49.209329401 + ], + [ + 9.6274669, + 49.208968401 + ], + [ + 9.6286622, + 49.208612901 + ], + [ + 9.6296432, + 49.208332501 + ], + [ + 9.6306261, + 49.208058101 + ], + [ + 9.6313867, + 49.207856201 + ], + [ + 9.632002, + 49.207700901 + ], + [ + 9.632566, + 49.207565801 + ], + [ + 9.6333065, + 49.207379801 + ], + [ + 9.6338769, + 49.207244901 + ], + [ + 9.6354025, + 49.206899301 + ], + [ + 9.6368944, + 49.206598501 + ], + [ + 9.6377695, + 49.206431601 + ], + [ + 9.6381464, + 49.206360101 + ], + [ + 9.6386455, + 49.206265401 + ], + [ + 9.6395257, + 49.206113201 + ], + [ + 9.6404125, + 49.205968901 + ], + [ + 9.6421621, + 49.205703201 + ], + [ + 9.6433993, + 49.205531901 + ], + [ + 9.644799, + 49.205360701 + ], + [ + 9.6458872, + 49.205239901 + ], + [ + 9.6476543, + 49.205084501 + ], + [ + 9.6491133, + 49.204964401 + ], + [ + 9.6501159, + 49.204895201 + ], + [ + 9.65112, + 49.204834001 + ], + [ + 9.6521365, + 49.204783301 + ], + [ + 9.653135, + 49.204740501 + ], + [ + 9.6537562, + 49.204723401 + ], + [ + 9.6546503, + 49.204698701 + ], + [ + 9.6579635, + 49.204641101 + ], + [ + 9.6616247, + 49.204625801 + ], + [ + 9.6634535, + 49.204610201 + ], + [ + 9.6647154, + 49.204579601 + ], + [ + 9.6652873, + 49.204565801 + ], + [ + 9.6664803, + 49.204521901 + ], + [ + 9.6676657, + 49.204467201 + ], + [ + 9.6688435, + 49.204394001 + ], + [ + 9.6694552, + 49.204344801 + ], + [ + 9.6695936, + 49.204332901 + ], + [ + 9.6711375, + 49.204200201 + ], + [ + 9.6722136, + 49.204077101 + ], + [ + 9.6732921, + 49.203957001 + ], + [ + 9.6743501, + 49.203820501 + ], + [ + 9.6751477, + 49.203703201 + ], + [ + 9.6759188, + 49.203586601 + ], + [ + 9.6766799, + 49.203460901 + ], + [ + 9.6774493, + 49.203330901 + ], + [ + 9.6781098, + 49.203211901 + ], + [ + 9.6788002, + 49.203078501 + ], + [ + 9.6803936, + 49.202742601 + ], + [ + 9.6805955, + 49.202697701 + ], + [ + 9.6810258, + 49.202600501 + ], + [ + 9.6824812, + 49.202261201 + ], + [ + 9.6832842, + 49.202056301 + ], + [ + 9.6837497, + 49.201937001 + ], + [ + 9.6857297, + 49.201418201 + ], + [ + 9.6863346, + 49.201259601 + ], + [ + 9.6869847, + 49.201083601 + ], + [ + 9.6883538, + 49.200691601 + ], + [ + 9.6896361, + 49.200326501 + ], + [ + 9.6925187, + 49.199493901 + ], + [ + 9.6927366, + 49.199424001 + ], + [ + 9.7018524, + 49.196761701 + ], + [ + 9.702169939, + 49.19667186 + ] + ] + } + }, + { + "identifier": "2026-017133--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_009.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.163230477408405,9.275691357815086,49.19667185967763,9.702169938969822", + "point": "49.163230477408405,9.275691357815086", + "startLcPosition": "69", + "impact": { + "lower": "Schw\u00e4bisch Hall", + "upper": "Sulmtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Sulmtal - Schw\u00e4bisch Hall", + "coordinate": { + "lat": 49.163230477408405, + "long": 9.275691357815086 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 23.04.26 von 08:00 bis 16:30 Uhr.", + "Jeden Freitag und Freitag zwischen dem 17.04.26 und dem 24.04.26 von 08:00 bis 12:00 Uhr.", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 1.5 km hinter Sulmtal und 3.0 km vor AS Schw\u00e4bisch Hall", + "", + "L\u00e4nge: 34.04 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A6 von Sulmtal (Rastplatz) nach Schw\u00e4bisch Hall (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.275691358, + 49.163230477 + ], + [ + 9.2763459, + 49.163034601 + ], + [ + 9.2795519, + 49.162045501 + ], + [ + 9.2796692, + 49.162007701 + ], + [ + 9.2814065, + 49.161477501 + ], + [ + 9.2820534, + 49.161275401 + ], + [ + 9.2824558, + 49.161092401 + ], + [ + 9.2828089, + 49.160950101 + ], + [ + 9.2831901, + 49.160816401 + ], + [ + 9.2839465, + 49.160521801 + ], + [ + 9.2845313, + 49.160283001 + ], + [ + 9.2847949, + 49.160175301 + ], + [ + 9.2854563, + 49.159894201 + ], + [ + 9.2857909, + 49.159750101 + ], + [ + 9.2861232, + 49.159608801 + ], + [ + 9.2866646, + 49.159373501 + ], + [ + 9.2871762, + 49.159170801 + ], + [ + 9.2880207, + 49.158868201 + ], + [ + 9.2888262, + 49.158613801 + ], + [ + 9.2894506, + 49.158445401 + ], + [ + 9.2900369, + 49.158310901 + ], + [ + 9.2905166, + 49.158209301 + ], + [ + 9.2910959, + 49.158094701 + ], + [ + 9.2917589, + 49.157989201 + ], + [ + 9.2920996, + 49.157948401 + ], + [ + 9.2925147, + 49.157910001 + ], + [ + 9.292863, + 49.157877701 + ], + [ + 9.2931879, + 49.157852301 + ], + [ + 9.2942721, + 49.157768701 + ], + [ + 9.2951959, + 49.157700201 + ], + [ + 9.2955438, + 49.157675001 + ], + [ + 9.2958359, + 49.157651201 + ], + [ + 9.2962465, + 49.157612901 + ], + [ + 9.2967791, + 49.157559001 + ], + [ + 9.2971716, + 49.157519401 + ], + [ + 9.2976415, + 49.157466801 + ], + [ + 9.2981612, + 49.157396201 + ], + [ + 9.2987392, + 49.157320401 + ], + [ + 9.3003799, + 49.157106701 + ], + [ + 9.3017819, + 49.156932801 + ], + [ + 9.3024956, + 49.156850301 + ], + [ + 9.303726, + 49.156721901 + ], + [ + 9.3044865, + 49.156655201 + ], + [ + 9.3050698, + 49.156601101 + ], + [ + 9.3057174, + 49.156550401 + ], + [ + 9.3067805, + 49.156476301 + ], + [ + 9.3070065, + 49.156462601 + ], + [ + 9.3077165, + 49.156419201 + ], + [ + 9.3085335, + 49.156384101 + ], + [ + 9.3091555, + 49.156367001 + ], + [ + 9.3097498, + 49.156364201 + ], + [ + 9.3102677, + 49.156365901 + ], + [ + 9.3107839, + 49.156374701 + ], + [ + 9.3112477, + 49.156397001 + ], + [ + 9.3119412, + 49.156437901 + ], + [ + 9.3124483, + 49.156480001 + ], + [ + 9.3129032, + 49.156531501 + ], + [ + 9.3132861, + 49.156582401 + ], + [ + 9.3136678, + 49.156639801 + ], + [ + 9.3142044, + 49.156725401 + ], + [ + 9.3149556, + 49.156880301 + ], + [ + 9.3153596, + 49.156968301 + ], + [ + 9.3157773, + 49.157075901 + ], + [ + 9.3161899, + 49.157191301 + ], + [ + 9.3165705, + 49.157303301 + ], + [ + 9.3169505, + 49.157419601 + ], + [ + 9.3172905, + 49.157534901 + ], + [ + 9.3176094, + 49.157644001 + ], + [ + 9.3180669, + 49.157824301 + ], + [ + 9.3185669, + 49.158030401 + ], + [ + 9.3188634, + 49.158164501 + ], + [ + 9.3191526, + 49.158301501 + ], + [ + 9.319512, + 49.158477601 + ], + [ + 9.3198643, + 49.158661801 + ], + [ + 9.3205296, + 49.159025201 + ], + [ + 9.3214486, + 49.159587101 + ], + [ + 9.3223025, + 49.160104701 + ], + [ + 9.3223695, + 49.160142401 + ], + [ + 9.322994, + 49.160491001 + ], + [ + 9.32348, + 49.160731901 + ], + [ + 9.3239805, + 49.160966301 + ], + [ + 9.3244746, + 49.161174701 + ], + [ + 9.3249668, + 49.161370201 + ], + [ + 9.3255154, + 49.161559301 + ], + [ + 9.3260751, + 49.161733201 + ], + [ + 9.3266236, + 49.161880501 + ], + [ + 9.3271793, + 49.162009901 + ], + [ + 9.3276299, + 49.162111401 + ], + [ + 9.3280909, + 49.162198701 + ], + [ + 9.3286801, + 49.162287801 + ], + [ + 9.329271, + 49.162359301 + ], + [ + 9.3297608, + 49.162406301 + ], + [ + 9.3302501, + 49.162442101 + ], + [ + 9.3308142, + 49.162467101 + ], + [ + 9.3313824, + 49.162477101 + ], + [ + 9.3319686, + 49.162467101 + ], + [ + 9.3325438, + 49.162443701 + ], + [ + 9.3333074, + 49.162385301 + ], + [ + 9.3340629, + 49.162302701 + ], + [ + 9.3347552, + 49.162212301 + ], + [ + 9.335427, + 49.162110601 + ], + [ + 9.3360934, + 49.162007101 + ], + [ + 9.3381522, + 49.161655301 + ], + [ + 9.3422489, + 49.160998901 + ], + [ + 9.3451608, + 49.160512201 + ], + [ + 9.3461709, + 49.160353901 + ], + [ + 9.3468924, + 49.160255701 + ], + [ + 9.3475426, + 49.160178001 + ], + [ + 9.3485209, + 49.160088001 + ], + [ + 9.349517, + 49.160028701 + ], + [ + 9.3505083, + 49.159999401 + ], + [ + 9.3513018, + 49.160005901 + ], + [ + 9.3519399, + 49.160017401 + ], + [ + 9.3525656, + 49.160041001 + ], + [ + 9.3535009, + 49.160091501 + ], + [ + 9.3543513, + 49.160156801 + ], + [ + 9.3552294, + 49.160229801 + ], + [ + 9.3575753, + 49.160449901 + ], + [ + 9.3623609, + 49.160871301 + ], + [ + 9.3630153, + 49.160942601 + ], + [ + 9.3637101, + 49.161027501 + ], + [ + 9.3643436, + 49.161111301 + ], + [ + 9.3649422, + 49.161210901 + ], + [ + 9.3654705, + 49.161313201 + ], + [ + 9.3660298, + 49.161434601 + ], + [ + 9.3664982, + 49.161543701 + ], + [ + 9.367087, + 49.161693101 + ], + [ + 9.3676498, + 49.161864701 + ], + [ + 9.368053, + 49.161992901 + ], + [ + 9.3686455, + 49.162196701 + ], + [ + 9.3692396, + 49.162424601 + ], + [ + 9.3697337, + 49.162632301 + ], + [ + 9.3702773, + 49.162874501 + ], + [ + 9.3706819, + 49.163073701 + ], + [ + 9.3711536, + 49.163318301 + ], + [ + 9.3715122, + 49.163520501 + ], + [ + 9.3720116, + 49.163819601 + ], + [ + 9.3721312, + 49.163896001 + ], + [ + 9.3727795, + 49.164325401 + ], + [ + 9.373225, + 49.164649201 + ], + [ + 9.3734934, + 49.164867801 + ], + [ + 9.3737754, + 49.165104601 + ], + [ + 9.3740366, + 49.165339501 + ], + [ + 9.3743717, + 49.165635501 + ], + [ + 9.3746859, + 49.165956301 + ], + [ + 9.3749747, + 49.166284301 + ], + [ + 9.3753482, + 49.166742801 + ], + [ + 9.3756965, + 49.167206501 + ], + [ + 9.376368, + 49.168151601 + ], + [ + 9.3767614, + 49.168692401 + ], + [ + 9.3769744, + 49.168954601 + ], + [ + 9.377214, + 49.169216001 + ], + [ + 9.3773168, + 49.169337301 + ], + [ + 9.3776389, + 49.169687001 + ], + [ + 9.377921, + 49.169958001 + ], + [ + 9.3782257, + 49.170237101 + ], + [ + 9.3785849, + 49.170534401 + ], + [ + 9.3789774, + 49.170832401 + ], + [ + 9.3793433, + 49.171097901 + ], + [ + 9.3797542, + 49.171362701 + ], + [ + 9.3801973, + 49.171619501 + ], + [ + 9.380656, + 49.171884701 + ], + [ + 9.3812879, + 49.172196901 + ], + [ + 9.3817586, + 49.172411301 + ], + [ + 9.3822488, + 49.172605801 + ], + [ + 9.3828568, + 49.172832101 + ], + [ + 9.3836724, + 49.173074501 + ], + [ + 9.3838851, + 49.173132801 + ], + [ + 9.384696, + 49.173340601 + ], + [ + 9.3853339, + 49.173475901 + ], + [ + 9.3859296, + 49.173571201 + ], + [ + 9.3864717, + 49.173655101 + ], + [ + 9.387011, + 49.173720501 + ], + [ + 9.3874932, + 49.173771501 + ], + [ + 9.3879759, + 49.173808101 + ], + [ + 9.3884907, + 49.173841701 + ], + [ + 9.3900283, + 49.173930201 + ], + [ + 9.3909507, + 49.173986401 + ], + [ + 9.3919289, + 49.174061901 + ], + [ + 9.3929091, + 49.174169201 + ], + [ + 9.3937074, + 49.174276801 + ], + [ + 9.394429, + 49.174383701 + ], + [ + 9.3951424, + 49.174503201 + ], + [ + 9.3962436, + 49.174719501 + ], + [ + 9.3974045, + 49.174993501 + ], + [ + 9.3982227, + 49.175212201 + ], + [ + 9.3990022, + 49.175426001 + ], + [ + 9.4001273, + 49.175751701 + ], + [ + 9.4007309, + 49.175925701 + ], + [ + 9.4012347, + 49.176069701 + ], + [ + 9.4021423, + 49.176310301 + ], + [ + 9.403025, + 49.176536901 + ], + [ + 9.4037405, + 49.176717301 + ], + [ + 9.4044471, + 49.176876101 + ], + [ + 9.4048937, + 49.176971801 + ], + [ + 9.4058617, + 49.177179301 + ], + [ + 9.4065747, + 49.177346401 + ], + [ + 9.4071808, + 49.177496101 + ], + [ + 9.407786, + 49.177666901 + ], + [ + 9.4083955, + 49.177848601 + ], + [ + 9.4088996, + 49.178023801 + ], + [ + 9.4093284, + 49.178185201 + ], + [ + 9.4097192, + 49.178345401 + ], + [ + 9.410131, + 49.178528301 + ], + [ + 9.4103436, + 49.178631201 + ], + [ + 9.4108817, + 49.178907701 + ], + [ + 9.4112751, + 49.179129501 + ], + [ + 9.4116341, + 49.179346301 + ], + [ + 9.4121649, + 49.179689401 + ], + [ + 9.412354, + 49.179824301 + ], + [ + 9.4128426, + 49.180194001 + ], + [ + 9.413344, + 49.180621601 + ], + [ + 9.4137309, + 49.180987401 + ], + [ + 9.4139355, + 49.181200501 + ], + [ + 9.4141334, + 49.181428501 + ], + [ + 9.4144477, + 49.181790601 + ], + [ + 9.4147297, + 49.182196501 + ], + [ + 9.4151134, + 49.182809801 + ], + [ + 9.4153121, + 49.183212001 + ], + [ + 9.4155486, + 49.183755101 + ], + [ + 9.4157727, + 49.184427401 + ], + [ + 9.4158991, + 49.184864901 + ], + [ + 9.4161704, + 49.185830001 + ], + [ + 9.4163013, + 49.186261001 + ], + [ + 9.416419, + 49.186612001 + ], + [ + 9.4164463, + 49.186693401 + ], + [ + 9.416533, + 49.186904201 + ], + [ + 9.4166187, + 49.187112601 + ], + [ + 9.416812, + 49.187517701 + ], + [ + 9.4170163, + 49.187899101 + ], + [ + 9.4172609, + 49.188297001 + ], + [ + 9.4175057, + 49.188665201 + ], + [ + 9.417782, + 49.189035301 + ], + [ + 9.4180913, + 49.189413101 + ], + [ + 9.4182792, + 49.189627501 + ], + [ + 9.4184448, + 49.189800901 + ], + [ + 9.4188279, + 49.190193401 + ], + [ + 9.4192812, + 49.190601801 + ], + [ + 9.4197142, + 49.190957101 + ], + [ + 9.4201613, + 49.191300101 + ], + [ + 9.4206734, + 49.191655901 + ], + [ + 9.4211793, + 49.191980201 + ], + [ + 9.4217096, + 49.192290301 + ], + [ + 9.4223907, + 49.192651001 + ], + [ + 9.4230737, + 49.192975401 + ], + [ + 9.4237933, + 49.193279101 + ], + [ + 9.42428, + 49.193467801 + ], + [ + 9.4247642, + 49.193644401 + ], + [ + 9.4249805, + 49.193711801 + ], + [ + 9.4252644, + 49.193806001 + ], + [ + 9.4256186, + 49.193912601 + ], + [ + 9.4261606, + 49.194067301 + ], + [ + 9.4267862, + 49.194219801 + ], + [ + 9.4274556, + 49.194370101 + ], + [ + 9.4285133, + 49.194559301 + ], + [ + 9.429097, + 49.194640101 + ], + [ + 9.4296919, + 49.194723601 + ], + [ + 9.4299754, + 49.194763401 + ], + [ + 9.4309556, + 49.194881601 + ], + [ + 9.4317883, + 49.194989201 + ], + [ + 9.4328802, + 49.195100901 + ], + [ + 9.4331762, + 49.195127101 + ], + [ + 9.434629, + 49.195263301 + ], + [ + 9.4355645, + 49.195355801 + ], + [ + 9.4384378, + 49.195615701 + ], + [ + 9.4393726, + 49.195699401 + ], + [ + 9.4407669, + 49.195824301 + ], + [ + 9.4418077, + 49.195913901 + ], + [ + 9.4432741, + 49.196046401 + ], + [ + 9.4439976, + 49.196119001 + ], + [ + 9.4447133, + 49.196193301 + ], + [ + 9.4454353, + 49.196271001 + ], + [ + 9.4461676, + 49.196353801 + ], + [ + 9.4469962, + 49.196460101 + ], + [ + 9.4477494, + 49.196561301 + ], + [ + 9.4485534, + 49.196671301 + ], + [ + 9.4493221, + 49.196788601 + ], + [ + 9.4498875, + 49.196883001 + ], + [ + 9.45051, + 49.196990301 + ], + [ + 9.4511256, + 49.197104201 + ], + [ + 9.4520251, + 49.197282901 + ], + [ + 9.4529613, + 49.197496301 + ], + [ + 9.4534652, + 49.197608401 + ], + [ + 9.4546337, + 49.197890201 + ], + [ + 9.4553604, + 49.198079801 + ], + [ + 9.4560751, + 49.198278401 + ], + [ + 9.4567847, + 49.198486401 + ], + [ + 9.4574883, + 49.198700301 + ], + [ + 9.4582988, + 49.198954001 + ], + [ + 9.4591008, + 49.199220801 + ], + [ + 9.4602195, + 49.199619001 + ], + [ + 9.4607751, + 49.199822401 + ], + [ + 9.4613284, + 49.200035001 + ], + [ + 9.4620214, + 49.200320501 + ], + [ + 9.463424, + 49.200898301 + ], + [ + 9.464475, + 49.201325901 + ], + [ + 9.4655231, + 49.201745801 + ], + [ + 9.465729, + 49.201827201 + ], + [ + 9.4666815, + 49.202201201 + ], + [ + 9.4676185, + 49.202549601 + ], + [ + 9.4686117, + 49.202898101 + ], + [ + 9.4695785, + 49.203207601 + ], + [ + 9.4705627, + 49.203507301 + ], + [ + 9.4716166, + 49.203810901 + ], + [ + 9.4719833, + 49.203909101 + ], + [ + 9.4726442, + 49.204069201 + ], + [ + 9.4735829, + 49.204307101 + ], + [ + 9.4741941, + 49.204438201 + ], + [ + 9.4749324, + 49.204595601 + ], + [ + 9.4772576, + 49.205032401 + ], + [ + 9.4784195, + 49.205230601 + ], + [ + 9.4804553, + 49.205563601 + ], + [ + 9.4819729, + 49.205843501 + ], + [ + 9.4833747, + 49.206102001 + ], + [ + 9.4842484, + 49.206249601 + ], + [ + 9.4850891, + 49.206429201 + ], + [ + 9.4858193, + 49.206594701 + ], + [ + 9.4874598, + 49.207010601 + ], + [ + 9.488811, + 49.207414001 + ], + [ + 9.4899875, + 49.207783901 + ], + [ + 9.4917977, + 49.208366601 + ], + [ + 9.4933576, + 49.208849701 + ], + [ + 9.4947427, + 49.209283101 + ], + [ + 9.4961828, + 49.209695301 + ], + [ + 9.4976445, + 49.210084401 + ], + [ + 9.4985229, + 49.210308701 + ], + [ + 9.4994025, + 49.210512101 + ], + [ + 9.5002949, + 49.210708201 + ], + [ + 9.5011896, + 49.210892301 + ], + [ + 9.5020557, + 49.211062601 + ], + [ + 9.5029228, + 49.211218001 + ], + [ + 9.5037981, + 49.211378001 + ], + [ + 9.5046736, + 49.211518701 + ], + [ + 9.505387, + 49.211628301 + ], + [ + 9.5061019, + 49.211729501 + ], + [ + 9.5068162, + 49.211814401 + ], + [ + 9.5075286, + 49.211886301 + ], + [ + 9.50821, + 49.211941001 + ], + [ + 9.5089048, + 49.211986201 + ], + [ + 9.5097763, + 49.212037301 + ], + [ + 9.5106565, + 49.212071801 + ], + [ + 9.5113958, + 49.212092801 + ], + [ + 9.5130369, + 49.212096901 + ], + [ + 9.5139211, + 49.212080901 + ], + [ + 9.5147724, + 49.212049801 + ], + [ + 9.5156474, + 49.211994901 + ], + [ + 9.5159471, + 49.211973101 + ], + [ + 9.5169273, + 49.211901801 + ], + [ + 9.5176067, + 49.211860301 + ], + [ + 9.5217707, + 49.211509701 + ], + [ + 9.5225909, + 49.211440501 + ], + [ + 9.5234107, + 49.211377201 + ], + [ + 9.5242469, + 49.211322701 + ], + [ + 9.5250826, + 49.211277401 + ], + [ + 9.5260268, + 49.211235501 + ], + [ + 9.526977, + 49.211206701 + ], + [ + 9.5284935, + 49.211180101 + ], + [ + 9.5297157, + 49.211188701 + ], + [ + 9.5305438, + 49.211200601 + ], + [ + 9.531921, + 49.211250201 + ], + [ + 9.5329273, + 49.211295301 + ], + [ + 9.5338409, + 49.211346401 + ], + [ + 9.5359606, + 49.211532801 + ], + [ + 9.5366989, + 49.211612601 + ], + [ + 9.5375266, + 49.211704301 + ], + [ + 9.5384784, + 49.211826401 + ], + [ + 9.539778, + 49.212012901 + ], + [ + 9.5405951, + 49.212139701 + ], + [ + 9.541518, + 49.212311501 + ], + [ + 9.5421026, + 49.212415501 + ], + [ + 9.5430456, + 49.212601901 + ], + [ + 9.5438499, + 49.212766801 + ], + [ + 9.5446337, + 49.212935701 + ], + [ + 9.5455203, + 49.213147201 + ], + [ + 9.5464039, + 49.213366801 + ], + [ + 9.547895, + 49.213772301 + ], + [ + 9.5489477, + 49.214073101 + ], + [ + 9.5495645, + 49.214249301 + ], + [ + 9.5504774, + 49.214520901 + ], + [ + 9.5522171, + 49.215043901 + ], + [ + 9.5530969, + 49.215305901 + ], + [ + 9.5539687, + 49.215562601 + ], + [ + 9.5552645, + 49.215901301 + ], + [ + 9.5559147, + 49.216069101 + ], + [ + 9.5565733, + 49.216224701 + ], + [ + 9.5575439, + 49.216432101 + ], + [ + 9.5583215, + 49.216582401 + ], + [ + 9.5591035, + 49.216723101 + ], + [ + 9.5599414, + 49.216862801 + ], + [ + 9.5607811, + 49.216988601 + ], + [ + 9.5616141, + 49.217100201 + ], + [ + 9.5624636, + 49.217192101 + ], + [ + 9.563194, + 49.217264301 + ], + [ + 9.56394, + 49.217319601 + ], + [ + 9.5646822, + 49.217370801 + ], + [ + 9.5654257, + 49.217410901 + ], + [ + 9.5662643, + 49.217440901 + ], + [ + 9.5670977, + 49.217457701 + ], + [ + 9.5679349, + 49.217464401 + ], + [ + 9.5687734, + 49.217457401 + ], + [ + 9.5697719, + 49.217420001 + ], + [ + 9.5709878, + 49.217360401 + ], + [ + 9.5715895, + 49.217322501 + ], + [ + 9.5721915, + 49.217277701 + ], + [ + 9.5731449, + 49.217186601 + ], + [ + 9.5740886, + 49.217087001 + ], + [ + 9.5750292, + 49.216979001 + ], + [ + 9.5759751, + 49.216855101 + ], + [ + 9.5772012, + 49.216688201 + ], + [ + 9.5780344, + 49.216574801 + ], + [ + 9.5800913, + 49.216281501 + ], + [ + 9.5817773, + 49.216054001 + ], + [ + 9.5826273, + 49.215949201 + ], + [ + 9.5834831, + 49.215851401 + ], + [ + 9.5845324, + 49.215733301 + ], + [ + 9.5855966, + 49.215623201 + ], + [ + 9.5864986, + 49.215552001 + ], + [ + 9.5878617, + 49.215458601 + ], + [ + 9.5881585, + 49.215439601 + ], + [ + 9.588748, + 49.215404601 + ], + [ + 9.5901558, + 49.215333401 + ], + [ + 9.5910399, + 49.215288501 + ], + [ + 9.591399, + 49.215275701 + ], + [ + 9.5922824, + 49.215236501 + ], + [ + 9.59334, + 49.215197101 + ], + [ + 9.5954608, + 49.215117501 + ], + [ + 9.5971102, + 49.215047601 + ], + [ + 9.5985218, + 49.214970301 + ], + [ + 9.5994114, + 49.214911601 + ], + [ + 9.600291, + 49.214843001 + ], + [ + 9.6011292, + 49.214768801 + ], + [ + 9.6020509, + 49.214682801 + ], + [ + 9.6028172, + 49.214606901 + ], + [ + 9.6035821, + 49.214526801 + ], + [ + 9.6041804, + 49.214454501 + ], + [ + 9.6045233, + 49.214413801 + ], + [ + 9.6050908, + 49.214342501 + ], + [ + 9.6057438, + 49.214258901 + ], + [ + 9.6063902, + 49.214166001 + ], + [ + 9.6074436, + 49.214012401 + ], + [ + 9.6084733, + 49.213848401 + ], + [ + 9.6092047, + 49.213729701 + ], + [ + 9.6100103, + 49.213590001 + ], + [ + 9.6107576, + 49.213456701 + ], + [ + 9.6115032, + 49.213313501 + ], + [ + 9.6125435, + 49.213107101 + ], + [ + 9.6135932, + 49.212886201 + ], + [ + 9.6146249, + 49.212657601 + ], + [ + 9.6154088, + 49.212476201 + ], + [ + 9.6165329, + 49.212200501 + ], + [ + 9.6174098, + 49.211972601 + ], + [ + 9.6187772, + 49.211605301 + ], + [ + 9.6188766, + 49.211577801 + ], + [ + 9.6191745, + 49.211495101 + ], + [ + 9.6215631, + 49.210796401 + ], + [ + 9.6230396, + 49.210344401 + ], + [ + 9.6239267, + 49.210065901 + ], + [ + 9.6262784, + 49.209329401 + ], + [ + 9.6274669, + 49.208968401 + ], + [ + 9.6286622, + 49.208612901 + ], + [ + 9.6296432, + 49.208332501 + ], + [ + 9.6306261, + 49.208058101 + ], + [ + 9.6313867, + 49.207856201 + ], + [ + 9.632002, + 49.207700901 + ], + [ + 9.632566, + 49.207565801 + ], + [ + 9.6333065, + 49.207379801 + ], + [ + 9.6338769, + 49.207244901 + ], + [ + 9.6354025, + 49.206899301 + ], + [ + 9.6368944, + 49.206598501 + ], + [ + 9.6377695, + 49.206431601 + ], + [ + 9.6381464, + 49.206360101 + ], + [ + 9.6386455, + 49.206265401 + ], + [ + 9.6395257, + 49.206113201 + ], + [ + 9.6404125, + 49.205968901 + ], + [ + 9.6421621, + 49.205703201 + ], + [ + 9.6433993, + 49.205531901 + ], + [ + 9.644799, + 49.205360701 + ], + [ + 9.6458872, + 49.205239901 + ], + [ + 9.6476543, + 49.205084501 + ], + [ + 9.6491133, + 49.204964401 + ], + [ + 9.6501159, + 49.204895201 + ], + [ + 9.65112, + 49.204834001 + ], + [ + 9.6521365, + 49.204783301 + ], + [ + 9.653135, + 49.204740501 + ], + [ + 9.6537562, + 49.204723401 + ], + [ + 9.6546503, + 49.204698701 + ], + [ + 9.6579635, + 49.204641101 + ], + [ + 9.6616247, + 49.204625801 + ], + [ + 9.6634535, + 49.204610201 + ], + [ + 9.6647154, + 49.204579601 + ], + [ + 9.6652873, + 49.204565801 + ], + [ + 9.6664803, + 49.204521901 + ], + [ + 9.6676657, + 49.204467201 + ], + [ + 9.6688435, + 49.204394001 + ], + [ + 9.6694552, + 49.204344801 + ], + [ + 9.6695936, + 49.204332901 + ], + [ + 9.6711375, + 49.204200201 + ], + [ + 9.6722136, + 49.204077101 + ], + [ + 9.6732921, + 49.203957001 + ], + [ + 9.6743501, + 49.203820501 + ], + [ + 9.6751477, + 49.203703201 + ], + [ + 9.6759188, + 49.203586601 + ], + [ + 9.6766799, + 49.203460901 + ], + [ + 9.6774493, + 49.203330901 + ], + [ + 9.6781098, + 49.203211901 + ], + [ + 9.6788002, + 49.203078501 + ], + [ + 9.6803936, + 49.202742601 + ], + [ + 9.6805955, + 49.202697701 + ], + [ + 9.6810258, + 49.202600501 + ], + [ + 9.6824812, + 49.202261201 + ], + [ + 9.6832842, + 49.202056301 + ], + [ + 9.6837497, + 49.201937001 + ], + [ + 9.6857297, + 49.201418201 + ], + [ + 9.6863346, + 49.201259601 + ], + [ + 9.6869847, + 49.201083601 + ], + [ + 9.6883538, + 49.200691601 + ], + [ + 9.6896361, + 49.200326501 + ], + [ + 9.6925187, + 49.199493901 + ], + [ + 9.6927366, + 49.199424001 + ], + [ + 9.7018524, + 49.196761701 + ], + [ + 9.702169939, + 49.19667186 + ] + ] + } + }, + { + "identifier": "2026-016819--vi-fbm.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000_007.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.16848509262452,9.256220178755207,49.160375437415574,9.356781583383771", + "point": "49.16848509262452,9.256220178755207", + "startLcPosition": "69", + "impact": { + "lower": "Bretzfeld", + "upper": "Sulmtal", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Sulmtal - Bretzfeld", + "coordinate": { + "lat": 49.16848509262452, + "long": 9.256220178755207 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen Sulmtal und 4.8 km vor AS Bretzfeld", + "", + "L\u00e4nge: 7.82 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Aufbau Stauwarnanlage und Aufbau BA1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.256220179, + 49.168485093 + ], + [ + 9.2563157, + 49.168449901 + ], + [ + 9.256888, + 49.168268101 + ], + [ + 9.2573736, + 49.168107201 + ], + [ + 9.2579313, + 49.167930601 + ], + [ + 9.2587297, + 49.167697101 + ], + [ + 9.259492, + 49.167480801 + ], + [ + 9.2610223, + 49.167071101 + ], + [ + 9.2621927, + 49.166778201 + ], + [ + 9.2634423, + 49.166470401 + ], + [ + 9.2647132, + 49.166157401 + ], + [ + 9.2650167, + 49.166084501 + ], + [ + 9.267659, + 49.165435201 + ], + [ + 9.2682713, + 49.165283201 + ], + [ + 9.2701218, + 49.164817501 + ], + [ + 9.2718647, + 49.164346001 + ], + [ + 9.2732602, + 49.163957201 + ], + [ + 9.2745144, + 49.163587001 + ], + [ + 9.2747957, + 49.163498501 + ], + [ + 9.2763459, + 49.163034601 + ], + [ + 9.2795519, + 49.162045501 + ], + [ + 9.2796692, + 49.162007701 + ], + [ + 9.2814065, + 49.161477501 + ], + [ + 9.2820534, + 49.161275401 + ], + [ + 9.2824558, + 49.161092401 + ], + [ + 9.2828089, + 49.160950101 + ], + [ + 9.2831901, + 49.160816401 + ], + [ + 9.2839465, + 49.160521801 + ], + [ + 9.2845313, + 49.160283001 + ], + [ + 9.2847949, + 49.160175301 + ], + [ + 9.2854563, + 49.159894201 + ], + [ + 9.2857909, + 49.159750101 + ], + [ + 9.2861232, + 49.159608801 + ], + [ + 9.2866646, + 49.159373501 + ], + [ + 9.2871762, + 49.159170801 + ], + [ + 9.2880207, + 49.158868201 + ], + [ + 9.2888262, + 49.158613801 + ], + [ + 9.2894506, + 49.158445401 + ], + [ + 9.2900369, + 49.158310901 + ], + [ + 9.2905166, + 49.158209301 + ], + [ + 9.2910959, + 49.158094701 + ], + [ + 9.2917589, + 49.157989201 + ], + [ + 9.2920996, + 49.157948401 + ], + [ + 9.2925147, + 49.157910001 + ], + [ + 9.292863, + 49.157877701 + ], + [ + 9.2931879, + 49.157852301 + ], + [ + 9.2942721, + 49.157768701 + ], + [ + 9.2951959, + 49.157700201 + ], + [ + 9.2955438, + 49.157675001 + ], + [ + 9.2958359, + 49.157651201 + ], + [ + 9.2962465, + 49.157612901 + ], + [ + 9.2967791, + 49.157559001 + ], + [ + 9.2971716, + 49.157519401 + ], + [ + 9.2976415, + 49.157466801 + ], + [ + 9.2981612, + 49.157396201 + ], + [ + 9.2987392, + 49.157320401 + ], + [ + 9.3003799, + 49.157106701 + ], + [ + 9.3017819, + 49.156932801 + ], + [ + 9.3024956, + 49.156850301 + ], + [ + 9.303726, + 49.156721901 + ], + [ + 9.3044865, + 49.156655201 + ], + [ + 9.3050698, + 49.156601101 + ], + [ + 9.3057174, + 49.156550401 + ], + [ + 9.3067805, + 49.156476301 + ], + [ + 9.3070065, + 49.156462601 + ], + [ + 9.3077165, + 49.156419201 + ], + [ + 9.3085335, + 49.156384101 + ], + [ + 9.3091555, + 49.156367001 + ], + [ + 9.3097498, + 49.156364201 + ], + [ + 9.3102677, + 49.156365901 + ], + [ + 9.3107839, + 49.156374701 + ], + [ + 9.3112477, + 49.156397001 + ], + [ + 9.3119412, + 49.156437901 + ], + [ + 9.3124483, + 49.156480001 + ], + [ + 9.3129032, + 49.156531501 + ], + [ + 9.3132861, + 49.156582401 + ], + [ + 9.3136678, + 49.156639801 + ], + [ + 9.3142044, + 49.156725401 + ], + [ + 9.3149556, + 49.156880301 + ], + [ + 9.3153596, + 49.156968301 + ], + [ + 9.3157773, + 49.157075901 + ], + [ + 9.3161899, + 49.157191301 + ], + [ + 9.3165705, + 49.157303301 + ], + [ + 9.3169505, + 49.157419601 + ], + [ + 9.3172905, + 49.157534901 + ], + [ + 9.3176094, + 49.157644001 + ], + [ + 9.3180669, + 49.157824301 + ], + [ + 9.3185669, + 49.158030401 + ], + [ + 9.3188634, + 49.158164501 + ], + [ + 9.3191526, + 49.158301501 + ], + [ + 9.319512, + 49.158477601 + ], + [ + 9.3198643, + 49.158661801 + ], + [ + 9.3205296, + 49.159025201 + ], + [ + 9.3214486, + 49.159587101 + ], + [ + 9.3223025, + 49.160104701 + ], + [ + 9.3223695, + 49.160142401 + ], + [ + 9.322994, + 49.160491001 + ], + [ + 9.32348, + 49.160731901 + ], + [ + 9.3239805, + 49.160966301 + ], + [ + 9.3244746, + 49.161174701 + ], + [ + 9.3249668, + 49.161370201 + ], + [ + 9.3255154, + 49.161559301 + ], + [ + 9.3260751, + 49.161733201 + ], + [ + 9.3266236, + 49.161880501 + ], + [ + 9.3271793, + 49.162009901 + ], + [ + 9.3276299, + 49.162111401 + ], + [ + 9.3280909, + 49.162198701 + ], + [ + 9.3286801, + 49.162287801 + ], + [ + 9.329271, + 49.162359301 + ], + [ + 9.3297608, + 49.162406301 + ], + [ + 9.3302501, + 49.162442101 + ], + [ + 9.3308142, + 49.162467101 + ], + [ + 9.3313824, + 49.162477101 + ], + [ + 9.3319686, + 49.162467101 + ], + [ + 9.3325438, + 49.162443701 + ], + [ + 9.3333074, + 49.162385301 + ], + [ + 9.3340629, + 49.162302701 + ], + [ + 9.3347552, + 49.162212301 + ], + [ + 9.335427, + 49.162110601 + ], + [ + 9.3360934, + 49.162007101 + ], + [ + 9.3381522, + 49.161655301 + ], + [ + 9.3422489, + 49.160998901 + ], + [ + 9.3451608, + 49.160512201 + ], + [ + 9.3461709, + 49.160353901 + ], + [ + 9.3468924, + 49.160255701 + ], + [ + 9.3475426, + 49.160178001 + ], + [ + 9.3485209, + 49.160088001 + ], + [ + 9.349517, + 49.160028701 + ], + [ + 9.3505083, + 49.159999401 + ], + [ + 9.3513018, + 49.160005901 + ], + [ + 9.3519399, + 49.160017401 + ], + [ + 9.3525656, + 49.160041001 + ], + [ + 9.3535009, + 49.160091501 + ], + [ + 9.3543513, + 49.160156801 + ], + [ + 9.3552294, + 49.160229801 + ], + [ + 9.356781583, + 49.160375437 + ] + ] + } + }, + { + "identifier": "2026-016819--vi-fbm.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000_007.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.16848509262452,9.256220178755207,49.160375437415574,9.356781583383771", + "point": "49.16848509262452,9.256220178755207", + "startLcPosition": "69", + "impact": { + "lower": "Bretzfeld", + "upper": "Sulmtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Sulmtal - Bretzfeld", + "coordinate": { + "lat": 49.16848509262452, + "long": 9.256220178755207 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen Sulmtal und 4.8 km vor AS Bretzfeld", + "", + "L\u00e4nge: 7.82 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Aufbau Stauwarnanlage und Aufbau BA1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.256220179, + 49.168485093 + ], + [ + 9.2563157, + 49.168449901 + ], + [ + 9.256888, + 49.168268101 + ], + [ + 9.2573736, + 49.168107201 + ], + [ + 9.2579313, + 49.167930601 + ], + [ + 9.2587297, + 49.167697101 + ], + [ + 9.259492, + 49.167480801 + ], + [ + 9.2610223, + 49.167071101 + ], + [ + 9.2621927, + 49.166778201 + ], + [ + 9.2634423, + 49.166470401 + ], + [ + 9.2647132, + 49.166157401 + ], + [ + 9.2650167, + 49.166084501 + ], + [ + 9.267659, + 49.165435201 + ], + [ + 9.2682713, + 49.165283201 + ], + [ + 9.2701218, + 49.164817501 + ], + [ + 9.2718647, + 49.164346001 + ], + [ + 9.2732602, + 49.163957201 + ], + [ + 9.2745144, + 49.163587001 + ], + [ + 9.2747957, + 49.163498501 + ], + [ + 9.2763459, + 49.163034601 + ], + [ + 9.2795519, + 49.162045501 + ], + [ + 9.2796692, + 49.162007701 + ], + [ + 9.2814065, + 49.161477501 + ], + [ + 9.2820534, + 49.161275401 + ], + [ + 9.2824558, + 49.161092401 + ], + [ + 9.2828089, + 49.160950101 + ], + [ + 9.2831901, + 49.160816401 + ], + [ + 9.2839465, + 49.160521801 + ], + [ + 9.2845313, + 49.160283001 + ], + [ + 9.2847949, + 49.160175301 + ], + [ + 9.2854563, + 49.159894201 + ], + [ + 9.2857909, + 49.159750101 + ], + [ + 9.2861232, + 49.159608801 + ], + [ + 9.2866646, + 49.159373501 + ], + [ + 9.2871762, + 49.159170801 + ], + [ + 9.2880207, + 49.158868201 + ], + [ + 9.2888262, + 49.158613801 + ], + [ + 9.2894506, + 49.158445401 + ], + [ + 9.2900369, + 49.158310901 + ], + [ + 9.2905166, + 49.158209301 + ], + [ + 9.2910959, + 49.158094701 + ], + [ + 9.2917589, + 49.157989201 + ], + [ + 9.2920996, + 49.157948401 + ], + [ + 9.2925147, + 49.157910001 + ], + [ + 9.292863, + 49.157877701 + ], + [ + 9.2931879, + 49.157852301 + ], + [ + 9.2942721, + 49.157768701 + ], + [ + 9.2951959, + 49.157700201 + ], + [ + 9.2955438, + 49.157675001 + ], + [ + 9.2958359, + 49.157651201 + ], + [ + 9.2962465, + 49.157612901 + ], + [ + 9.2967791, + 49.157559001 + ], + [ + 9.2971716, + 49.157519401 + ], + [ + 9.2976415, + 49.157466801 + ], + [ + 9.2981612, + 49.157396201 + ], + [ + 9.2987392, + 49.157320401 + ], + [ + 9.3003799, + 49.157106701 + ], + [ + 9.3017819, + 49.156932801 + ], + [ + 9.3024956, + 49.156850301 + ], + [ + 9.303726, + 49.156721901 + ], + [ + 9.3044865, + 49.156655201 + ], + [ + 9.3050698, + 49.156601101 + ], + [ + 9.3057174, + 49.156550401 + ], + [ + 9.3067805, + 49.156476301 + ], + [ + 9.3070065, + 49.156462601 + ], + [ + 9.3077165, + 49.156419201 + ], + [ + 9.3085335, + 49.156384101 + ], + [ + 9.3091555, + 49.156367001 + ], + [ + 9.3097498, + 49.156364201 + ], + [ + 9.3102677, + 49.156365901 + ], + [ + 9.3107839, + 49.156374701 + ], + [ + 9.3112477, + 49.156397001 + ], + [ + 9.3119412, + 49.156437901 + ], + [ + 9.3124483, + 49.156480001 + ], + [ + 9.3129032, + 49.156531501 + ], + [ + 9.3132861, + 49.156582401 + ], + [ + 9.3136678, + 49.156639801 + ], + [ + 9.3142044, + 49.156725401 + ], + [ + 9.3149556, + 49.156880301 + ], + [ + 9.3153596, + 49.156968301 + ], + [ + 9.3157773, + 49.157075901 + ], + [ + 9.3161899, + 49.157191301 + ], + [ + 9.3165705, + 49.157303301 + ], + [ + 9.3169505, + 49.157419601 + ], + [ + 9.3172905, + 49.157534901 + ], + [ + 9.3176094, + 49.157644001 + ], + [ + 9.3180669, + 49.157824301 + ], + [ + 9.3185669, + 49.158030401 + ], + [ + 9.3188634, + 49.158164501 + ], + [ + 9.3191526, + 49.158301501 + ], + [ + 9.319512, + 49.158477601 + ], + [ + 9.3198643, + 49.158661801 + ], + [ + 9.3205296, + 49.159025201 + ], + [ + 9.3214486, + 49.159587101 + ], + [ + 9.3223025, + 49.160104701 + ], + [ + 9.3223695, + 49.160142401 + ], + [ + 9.322994, + 49.160491001 + ], + [ + 9.32348, + 49.160731901 + ], + [ + 9.3239805, + 49.160966301 + ], + [ + 9.3244746, + 49.161174701 + ], + [ + 9.3249668, + 49.161370201 + ], + [ + 9.3255154, + 49.161559301 + ], + [ + 9.3260751, + 49.161733201 + ], + [ + 9.3266236, + 49.161880501 + ], + [ + 9.3271793, + 49.162009901 + ], + [ + 9.3276299, + 49.162111401 + ], + [ + 9.3280909, + 49.162198701 + ], + [ + 9.3286801, + 49.162287801 + ], + [ + 9.329271, + 49.162359301 + ], + [ + 9.3297608, + 49.162406301 + ], + [ + 9.3302501, + 49.162442101 + ], + [ + 9.3308142, + 49.162467101 + ], + [ + 9.3313824, + 49.162477101 + ], + [ + 9.3319686, + 49.162467101 + ], + [ + 9.3325438, + 49.162443701 + ], + [ + 9.3333074, + 49.162385301 + ], + [ + 9.3340629, + 49.162302701 + ], + [ + 9.3347552, + 49.162212301 + ], + [ + 9.335427, + 49.162110601 + ], + [ + 9.3360934, + 49.162007101 + ], + [ + 9.3381522, + 49.161655301 + ], + [ + 9.3422489, + 49.160998901 + ], + [ + 9.3451608, + 49.160512201 + ], + [ + 9.3461709, + 49.160353901 + ], + [ + 9.3468924, + 49.160255701 + ], + [ + 9.3475426, + 49.160178001 + ], + [ + 9.3485209, + 49.160088001 + ], + [ + 9.349517, + 49.160028701 + ], + [ + 9.3505083, + 49.159999401 + ], + [ + 9.3513018, + 49.160005901 + ], + [ + 9.3519399, + 49.160017401 + ], + [ + 9.3525656, + 49.160041001 + ], + [ + 9.3535009, + 49.160091501 + ], + [ + 9.3543513, + 49.160156801 + ], + [ + 9.3552294, + 49.160229801 + ], + [ + 9.356781583, + 49.160375437 + ] + ] + } + }, + { + "identifier": "2026-016819--vi-fbm.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.16848509262452,9.256220178755207,49.160375437415574,9.356781583383771", + "point": "49.16848509262452,9.256220178755207", + "startLcPosition": "69", + "impact": { + "lower": "Bretzfeld", + "upper": "Sulmtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Sulmtal - Bretzfeld", + "coordinate": { + "lat": 49.16848509262452, + "long": 9.256220178755207 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 20:00 Uhr", + "10.04.26 von 09:00 bis 20:00 Uhr", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen Sulmtal und 4.8 km vor AS Bretzfeld", + "", + "L\u00e4nge: 7.82 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Aufbau Stauwarnanlage und Aufbau BA1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.256220179, + 49.168485093 + ], + [ + 9.2563157, + 49.168449901 + ], + [ + 9.256888, + 49.168268101 + ], + [ + 9.2573736, + 49.168107201 + ], + [ + 9.2579313, + 49.167930601 + ], + [ + 9.2587297, + 49.167697101 + ], + [ + 9.259492, + 49.167480801 + ], + [ + 9.2610223, + 49.167071101 + ], + [ + 9.2621927, + 49.166778201 + ], + [ + 9.2634423, + 49.166470401 + ], + [ + 9.2647132, + 49.166157401 + ], + [ + 9.2650167, + 49.166084501 + ], + [ + 9.267659, + 49.165435201 + ], + [ + 9.2682713, + 49.165283201 + ], + [ + 9.2701218, + 49.164817501 + ], + [ + 9.2718647, + 49.164346001 + ], + [ + 9.2732602, + 49.163957201 + ], + [ + 9.2745144, + 49.163587001 + ], + [ + 9.2747957, + 49.163498501 + ], + [ + 9.2763459, + 49.163034601 + ], + [ + 9.2795519, + 49.162045501 + ], + [ + 9.2796692, + 49.162007701 + ], + [ + 9.2814065, + 49.161477501 + ], + [ + 9.2820534, + 49.161275401 + ], + [ + 9.2824558, + 49.161092401 + ], + [ + 9.2828089, + 49.160950101 + ], + [ + 9.2831901, + 49.160816401 + ], + [ + 9.2839465, + 49.160521801 + ], + [ + 9.2845313, + 49.160283001 + ], + [ + 9.2847949, + 49.160175301 + ], + [ + 9.2854563, + 49.159894201 + ], + [ + 9.2857909, + 49.159750101 + ], + [ + 9.2861232, + 49.159608801 + ], + [ + 9.2866646, + 49.159373501 + ], + [ + 9.2871762, + 49.159170801 + ], + [ + 9.2880207, + 49.158868201 + ], + [ + 9.2888262, + 49.158613801 + ], + [ + 9.2894506, + 49.158445401 + ], + [ + 9.2900369, + 49.158310901 + ], + [ + 9.2905166, + 49.158209301 + ], + [ + 9.2910959, + 49.158094701 + ], + [ + 9.2917589, + 49.157989201 + ], + [ + 9.2920996, + 49.157948401 + ], + [ + 9.2925147, + 49.157910001 + ], + [ + 9.292863, + 49.157877701 + ], + [ + 9.2931879, + 49.157852301 + ], + [ + 9.2942721, + 49.157768701 + ], + [ + 9.2951959, + 49.157700201 + ], + [ + 9.2955438, + 49.157675001 + ], + [ + 9.2958359, + 49.157651201 + ], + [ + 9.2962465, + 49.157612901 + ], + [ + 9.2967791, + 49.157559001 + ], + [ + 9.2971716, + 49.157519401 + ], + [ + 9.2976415, + 49.157466801 + ], + [ + 9.2981612, + 49.157396201 + ], + [ + 9.2987392, + 49.157320401 + ], + [ + 9.3003799, + 49.157106701 + ], + [ + 9.3017819, + 49.156932801 + ], + [ + 9.3024956, + 49.156850301 + ], + [ + 9.303726, + 49.156721901 + ], + [ + 9.3044865, + 49.156655201 + ], + [ + 9.3050698, + 49.156601101 + ], + [ + 9.3057174, + 49.156550401 + ], + [ + 9.3067805, + 49.156476301 + ], + [ + 9.3070065, + 49.156462601 + ], + [ + 9.3077165, + 49.156419201 + ], + [ + 9.3085335, + 49.156384101 + ], + [ + 9.3091555, + 49.156367001 + ], + [ + 9.3097498, + 49.156364201 + ], + [ + 9.3102677, + 49.156365901 + ], + [ + 9.3107839, + 49.156374701 + ], + [ + 9.3112477, + 49.156397001 + ], + [ + 9.3119412, + 49.156437901 + ], + [ + 9.3124483, + 49.156480001 + ], + [ + 9.3129032, + 49.156531501 + ], + [ + 9.3132861, + 49.156582401 + ], + [ + 9.3136678, + 49.156639801 + ], + [ + 9.3142044, + 49.156725401 + ], + [ + 9.3149556, + 49.156880301 + ], + [ + 9.3153596, + 49.156968301 + ], + [ + 9.3157773, + 49.157075901 + ], + [ + 9.3161899, + 49.157191301 + ], + [ + 9.3165705, + 49.157303301 + ], + [ + 9.3169505, + 49.157419601 + ], + [ + 9.3172905, + 49.157534901 + ], + [ + 9.3176094, + 49.157644001 + ], + [ + 9.3180669, + 49.157824301 + ], + [ + 9.3185669, + 49.158030401 + ], + [ + 9.3188634, + 49.158164501 + ], + [ + 9.3191526, + 49.158301501 + ], + [ + 9.319512, + 49.158477601 + ], + [ + 9.3198643, + 49.158661801 + ], + [ + 9.3205296, + 49.159025201 + ], + [ + 9.3214486, + 49.159587101 + ], + [ + 9.3223025, + 49.160104701 + ], + [ + 9.3223695, + 49.160142401 + ], + [ + 9.322994, + 49.160491001 + ], + [ + 9.32348, + 49.160731901 + ], + [ + 9.3239805, + 49.160966301 + ], + [ + 9.3244746, + 49.161174701 + ], + [ + 9.3249668, + 49.161370201 + ], + [ + 9.3255154, + 49.161559301 + ], + [ + 9.3260751, + 49.161733201 + ], + [ + 9.3266236, + 49.161880501 + ], + [ + 9.3271793, + 49.162009901 + ], + [ + 9.3276299, + 49.162111401 + ], + [ + 9.3280909, + 49.162198701 + ], + [ + 9.3286801, + 49.162287801 + ], + [ + 9.329271, + 49.162359301 + ], + [ + 9.3297608, + 49.162406301 + ], + [ + 9.3302501, + 49.162442101 + ], + [ + 9.3308142, + 49.162467101 + ], + [ + 9.3313824, + 49.162477101 + ], + [ + 9.3319686, + 49.162467101 + ], + [ + 9.3325438, + 49.162443701 + ], + [ + 9.3333074, + 49.162385301 + ], + [ + 9.3340629, + 49.162302701 + ], + [ + 9.3347552, + 49.162212301 + ], + [ + 9.335427, + 49.162110601 + ], + [ + 9.3360934, + 49.162007101 + ], + [ + 9.3381522, + 49.161655301 + ], + [ + 9.3422489, + 49.160998901 + ], + [ + 9.3451608, + 49.160512201 + ], + [ + 9.3461709, + 49.160353901 + ], + [ + 9.3468924, + 49.160255701 + ], + [ + 9.3475426, + 49.160178001 + ], + [ + 9.3485209, + 49.160088001 + ], + [ + 9.349517, + 49.160028701 + ], + [ + 9.3505083, + 49.159999401 + ], + [ + 9.3513018, + 49.160005901 + ], + [ + 9.3519399, + 49.160017401 + ], + [ + 9.3525656, + 49.160041001 + ], + [ + 9.3535009, + 49.160091501 + ], + [ + 9.3543513, + 49.160156801 + ], + [ + 9.3552294, + 49.160229801 + ], + [ + 9.356781583, + 49.160375437 + ] + ] + } + }, + { + "identifier": "2025-053074--vi-bs.2026-04-09_00-00-00-000.devi-zus.2026-04-06_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.15667951210561,9.304209315873262,49.16110013464989,9.364259184901996", + "point": "49.15667951210561,9.304209315873262", + "startLcPosition": "70", + "impact": { + "lower": "Bretzfeld", + "upper": "Weinsberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Weinsberg - Bretzfeld", + "startTimestamp": "2026-04-09T00:00:00+02:00", + "coordinate": { + "lat": 49.15667951210561, + "long": 9.304209315873262 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 00:00 Uhr", + "Ende: 02.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.10.26)", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 0.3 km hinter AK Weinsberg und 4.3 km vor AS Bretzfeld", + "", + "L\u00e4nge: 4.61 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A6 Wimmentalbr\u00fccke Instandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.304209316, + 49.156679512 + ], + [ + 9.3044865, + 49.156655201 + ], + [ + 9.3050698, + 49.156601101 + ], + [ + 9.3057174, + 49.156550401 + ], + [ + 9.3067805, + 49.156476301 + ], + [ + 9.3070065, + 49.156462601 + ], + [ + 9.3077165, + 49.156419201 + ], + [ + 9.3085335, + 49.156384101 + ], + [ + 9.3091555, + 49.156367001 + ], + [ + 9.3097498, + 49.156364201 + ], + [ + 9.3102677, + 49.156365901 + ], + [ + 9.3107839, + 49.156374701 + ], + [ + 9.3112477, + 49.156397001 + ], + [ + 9.3119412, + 49.156437901 + ], + [ + 9.3124483, + 49.156480001 + ], + [ + 9.3129032, + 49.156531501 + ], + [ + 9.3132861, + 49.156582401 + ], + [ + 9.3136678, + 49.156639801 + ], + [ + 9.3142044, + 49.156725401 + ], + [ + 9.3149556, + 49.156880301 + ], + [ + 9.3153596, + 49.156968301 + ], + [ + 9.3157773, + 49.157075901 + ], + [ + 9.3161899, + 49.157191301 + ], + [ + 9.3165705, + 49.157303301 + ], + [ + 9.3169505, + 49.157419601 + ], + [ + 9.3172905, + 49.157534901 + ], + [ + 9.3176094, + 49.157644001 + ], + [ + 9.3180669, + 49.157824301 + ], + [ + 9.3185669, + 49.158030401 + ], + [ + 9.3188634, + 49.158164501 + ], + [ + 9.3191526, + 49.158301501 + ], + [ + 9.319512, + 49.158477601 + ], + [ + 9.3198643, + 49.158661801 + ], + [ + 9.3205296, + 49.159025201 + ], + [ + 9.3214486, + 49.159587101 + ], + [ + 9.3223025, + 49.160104701 + ], + [ + 9.3223695, + 49.160142401 + ], + [ + 9.322994, + 49.160491001 + ], + [ + 9.32348, + 49.160731901 + ], + [ + 9.3239805, + 49.160966301 + ], + [ + 9.3244746, + 49.161174701 + ], + [ + 9.3249668, + 49.161370201 + ], + [ + 9.3255154, + 49.161559301 + ], + [ + 9.3260751, + 49.161733201 + ], + [ + 9.3266236, + 49.161880501 + ], + [ + 9.3271793, + 49.162009901 + ], + [ + 9.3276299, + 49.162111401 + ], + [ + 9.3280909, + 49.162198701 + ], + [ + 9.3286801, + 49.162287801 + ], + [ + 9.329271, + 49.162359301 + ], + [ + 9.3297608, + 49.162406301 + ], + [ + 9.3302501, + 49.162442101 + ], + [ + 9.3308142, + 49.162467101 + ], + [ + 9.3313824, + 49.162477101 + ], + [ + 9.3319686, + 49.162467101 + ], + [ + 9.3325438, + 49.162443701 + ], + [ + 9.3333074, + 49.162385301 + ], + [ + 9.3340629, + 49.162302701 + ], + [ + 9.3347552, + 49.162212301 + ], + [ + 9.335427, + 49.162110601 + ], + [ + 9.3360934, + 49.162007101 + ], + [ + 9.3381522, + 49.161655301 + ], + [ + 9.3422489, + 49.160998901 + ], + [ + 9.3451608, + 49.160512201 + ], + [ + 9.3461709, + 49.160353901 + ], + [ + 9.3468924, + 49.160255701 + ], + [ + 9.3475426, + 49.160178001 + ], + [ + 9.3485209, + 49.160088001 + ], + [ + 9.349517, + 49.160028701 + ], + [ + 9.3505083, + 49.159999401 + ], + [ + 9.3513018, + 49.160005901 + ], + [ + 9.3519399, + 49.160017401 + ], + [ + 9.3525656, + 49.160041001 + ], + [ + 9.3535009, + 49.160091501 + ], + [ + 9.3543513, + 49.160156801 + ], + [ + 9.3552294, + 49.160229801 + ], + [ + 9.3575753, + 49.160449901 + ], + [ + 9.3623609, + 49.160871301 + ], + [ + 9.3630153, + 49.160942601 + ], + [ + 9.3637101, + 49.161027501 + ], + [ + 9.364259185, + 49.161100135 + ] + ] + } + }, + { + "identifier": "2025-053074--vi-bs.2026-04-09_00-00-00-000.devi-zus.2026-04-06_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.161228688911095,9.36421807397135,49.156793137890006,9.304233079558033", + "point": "49.161228688911095,9.36421807397135", + "startLcPosition": "71", + "impact": { + "lower": "Weinsberg", + "upper": "Bretzfeld", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Bretzfeld - Weinsberg", + "startTimestamp": "2026-04-09T00:00:00+02:00", + "coordinate": { + "lat": 49.161228688911095, + "long": 9.36421807397135 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 00:00 Uhr", + "Ende: 02.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.10.26)", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 4.2 km hinter AS Bretzfeld und 0.3 km vor AK Weinsberg", + "", + "L\u00e4nge: 4.61 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A6 Wimmentalbr\u00fccke Instandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.364218074, + 49.161228689 + ], + [ + 9.363647, + 49.161149201 + ], + [ + 9.3630018, + 49.161068701 + ], + [ + 9.3623613, + 49.161001201 + ], + [ + 9.3572528, + 49.160549801 + ], + [ + 9.3551438, + 49.160355201 + ], + [ + 9.3543497, + 49.160280601 + ], + [ + 9.3535144, + 49.160217701 + ], + [ + 9.3525641, + 49.160162501 + ], + [ + 9.3519351, + 49.160137001 + ], + [ + 9.3513098, + 49.160131701 + ], + [ + 9.3505063, + 49.160116301 + ], + [ + 9.3495619, + 49.160147201 + ], + [ + 9.3485717, + 49.160205501 + ], + [ + 9.3475706, + 49.160294801 + ], + [ + 9.3469772, + 49.160364501 + ], + [ + 9.3463207, + 49.160455101 + ], + [ + 9.3451198, + 49.160640801 + ], + [ + 9.3443913, + 49.160767101 + ], + [ + 9.3424623, + 49.161081201 + ], + [ + 9.3381272, + 49.161795201 + ], + [ + 9.3363134, + 49.162096701 + ], + [ + 9.3352281, + 49.162273101 + ], + [ + 9.3348049, + 49.162325501 + ], + [ + 9.3340959, + 49.162419201 + ], + [ + 9.3333426, + 49.162500601 + ], + [ + 9.3325576, + 49.162562101 + ], + [ + 9.3319766, + 49.162585501 + ], + [ + 9.3313853, + 49.162591301 + ], + [ + 9.3308078, + 49.162583401 + ], + [ + 9.3302166, + 49.162561701 + ], + [ + 9.3297431, + 49.162527901 + ], + [ + 9.3292436, + 49.162480401 + ], + [ + 9.3286497, + 49.162405201 + ], + [ + 9.3280445, + 49.162316101 + ], + [ + 9.3275799, + 49.162224701 + ], + [ + 9.3271189, + 49.162119801 + ], + [ + 9.3265697, + 49.161989501 + ], + [ + 9.3259828, + 49.161836001 + ], + [ + 9.32545, + 49.161665001 + ], + [ + 9.3248896, + 49.161472801 + ], + [ + 9.3243812, + 49.161275401 + ], + [ + 9.3238833, + 49.161062401 + ], + [ + 9.3233754, + 49.160824501 + ], + [ + 9.3230379, + 49.160659101 + ], + [ + 9.3228858, + 49.160580701 + ], + [ + 9.3222522, + 49.160229701 + ], + [ + 9.3221843, + 49.160192801 + ], + [ + 9.3213256, + 49.159665701 + ], + [ + 9.3204216, + 49.159130701 + ], + [ + 9.3197341, + 49.158745101 + ], + [ + 9.3194006, + 49.158568601 + ], + [ + 9.3190574, + 49.158401001 + ], + [ + 9.3187693, + 49.158263701 + ], + [ + 9.3184671, + 49.158126201 + ], + [ + 9.3181868, + 49.158008701 + ], + [ + 9.3178883, + 49.157892601 + ], + [ + 9.3175306, + 49.157753601 + ], + [ + 9.3172032, + 49.157635401 + ], + [ + 9.3168786, + 49.157527601 + ], + [ + 9.316515, + 49.157415201 + ], + [ + 9.3161446, + 49.157308601 + ], + [ + 9.3157252, + 49.157192001 + ], + [ + 9.3153024, + 49.157082701 + ], + [ + 9.3149009, + 49.156991101 + ], + [ + 9.3144961, + 49.156904601 + ], + [ + 9.3140086, + 49.156815001 + ], + [ + 9.3136305, + 49.156756101 + ], + [ + 9.3132545, + 49.156701001 + ], + [ + 9.312873, + 49.156649201 + ], + [ + 9.3124917, + 49.156604701 + ], + [ + 9.3119186, + 49.156558601 + ], + [ + 9.3112421, + 49.156518301 + ], + [ + 9.31078, + 49.156494801 + ], + [ + 9.3102711, + 49.156483401 + ], + [ + 9.3097599, + 49.156483401 + ], + [ + 9.3091631, + 49.156489301 + ], + [ + 9.3085522, + 49.156500701 + ], + [ + 9.3077312, + 49.156536101 + ], + [ + 9.3067938, + 49.156592501 + ], + [ + 9.3057553, + 49.156664801 + ], + [ + 9.305084, + 49.156718301 + ], + [ + 9.3045155, + 49.156767301 + ], + [ + 9.30423308, + 49.156793138 + ] + ] + } + }, + { + "identifier": "2026-014157--vi-bs.2026-03-30_08-00-00-000.devi-bs.2026-03-30_08-00-00-000_002.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.18406212340025,9.415650940036784,49.18755469744635,9.416831817328593", + "point": "49.18406212340025,9.415650940036784", + "startLcPosition": "71", + "impact": { + "lower": "Sommerhalden", + "upper": "Bretzfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Bretzfeld - Sommerhalden", + "coordinate": { + "lat": 49.18406212340025, + "long": 9.415650940036784 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 08:00 bis 16:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 03.04.26 und dem 10.04.26 von 08:00 bis 14:00 Uhr.", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 0.5 km hinter AS Bretzfeld und 1.3 km vor Sommerhalden", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A6 Erneuerung Gro\u00dfbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.41565094, + 49.184062123 + ], + [ + 9.4157727, + 49.184427401 + ], + [ + 9.4158991, + 49.184864901 + ], + [ + 9.4161704, + 49.185830001 + ], + [ + 9.4163013, + 49.186261001 + ], + [ + 9.416419, + 49.186612001 + ], + [ + 9.4164463, + 49.186693401 + ], + [ + 9.416533, + 49.186904201 + ], + [ + 9.4166187, + 49.187112601 + ], + [ + 9.416812, + 49.187517701 + ], + [ + 9.416831817, + 49.187554697 + ] + ] + } + }, + { + "identifier": "2026-016819--vi-fbm.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000_007.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.1933956030173,9.423672111583564,49.16139411130587,9.340562580193888", + "point": "49.1933956030173,9.423672111583564", + "startLcPosition": "72", + "impact": { + "lower": "Weinsberg", + "upper": "Sommerhalden", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Sommerhalden - Weinsberg", + "coordinate": { + "lat": 49.1933956030173, + "long": 9.423672111583564 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 0.5 km hinter Sommerhalden und 3.2 km vor AK Weinsberg", + "", + "L\u00e4nge: 7.78 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Aufbau Stauwarnanlage und Aufbau BA1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.423672112, + 49.193395603 + ], + [ + 9.4229689, + 49.193096801 + ], + [ + 9.4222797, + 49.192773701 + ], + [ + 9.4215872, + 49.192403901 + ], + [ + 9.4210577, + 49.192093901 + ], + [ + 9.4205211, + 49.191752201 + ], + [ + 9.4199881, + 49.191381501 + ], + [ + 9.4195118, + 49.191016101 + ], + [ + 9.4191152, + 49.190684101 + ], + [ + 9.4186556, + 49.190265801 + ], + [ + 9.4182757, + 49.189891501 + ], + [ + 9.4180059, + 49.189596201 + ], + [ + 9.4176042, + 49.189118001 + ], + [ + 9.4173113, + 49.188722401 + ], + [ + 9.417061, + 49.188346301 + ], + [ + 9.4168164, + 49.187948001 + ], + [ + 9.416621, + 49.187575901 + ], + [ + 9.4164235, + 49.187156801 + ], + [ + 9.4163184, + 49.186908801 + ], + [ + 9.4162471, + 49.186740601 + ], + [ + 9.4161579, + 49.186482701 + ], + [ + 9.4160961, + 49.186304301 + ], + [ + 9.4159622, + 49.185872701 + ], + [ + 9.4155771, + 49.184452601 + ], + [ + 9.415358, + 49.183791301 + ], + [ + 9.4151219, + 49.183242801 + ], + [ + 9.4149034, + 49.182829201 + ], + [ + 9.4145292, + 49.182237501 + ], + [ + 9.4142545, + 49.181856301 + ], + [ + 9.4139314, + 49.181483801 + ], + [ + 9.4135871, + 49.181105101 + ], + [ + 9.4131874, + 49.180723901 + ], + [ + 9.4130275, + 49.180577201 + ], + [ + 9.4127016, + 49.180299401 + ], + [ + 9.412193, + 49.179897701 + ], + [ + 9.4120012, + 49.179763701 + ], + [ + 9.4114855, + 49.179436101 + ], + [ + 9.4111487, + 49.179217801 + ], + [ + 9.4106353, + 49.178930301 + ], + [ + 9.4100494, + 49.178631001 + ], + [ + 9.4097138, + 49.178477401 + ], + [ + 9.4092807, + 49.178291601 + ], + [ + 9.4088282, + 49.178110201 + ], + [ + 9.4083394, + 49.177939501 + ], + [ + 9.4077332, + 49.177753301 + ], + [ + 9.4071194, + 49.177577401 + ], + [ + 9.4065207, + 49.177431601 + ], + [ + 9.4058067, + 49.177272501 + ], + [ + 9.404991, + 49.177099301 + ], + [ + 9.4037341, + 49.176819201 + ], + [ + 9.4028816, + 49.176613301 + ], + [ + 9.4019825, + 49.176394301 + ], + [ + 9.4001337, + 49.175886601 + ], + [ + 9.3993553, + 49.175665601 + ], + [ + 9.398962, + 49.175554301 + ], + [ + 9.3981317, + 49.175316401 + ], + [ + 9.397207, + 49.175066701 + ], + [ + 9.3965208, + 49.174909301 + ], + [ + 9.3958532, + 49.174769701 + ], + [ + 9.3951007, + 49.174608401 + ], + [ + 9.3943825, + 49.174494901 + ], + [ + 9.3936721, + 49.174395301 + ], + [ + 9.3928784, + 49.174290501 + ], + [ + 9.3918952, + 49.174181401 + ], + [ + 9.3909394, + 49.174103801 + ], + [ + 9.3900171, + 49.174049401 + ], + [ + 9.3884826, + 49.173963301 + ], + [ + 9.3879566, + 49.173929801 + ], + [ + 9.3874707, + 49.173892001 + ], + [ + 9.3869875, + 49.173837601 + ], + [ + 9.3864396, + 49.173770401 + ], + [ + 9.3858943, + 49.173690701 + ], + [ + 9.3853146, + 49.173590501 + ], + [ + 9.3846536, + 49.173452501 + ], + [ + 9.3839445, + 49.173277601 + ], + [ + 9.3837302, + 49.173219401 + ], + [ + 9.3828071, + 49.172945401 + ], + [ + 9.3821368, + 49.172700001 + ], + [ + 9.3816398, + 49.172502101 + ], + [ + 9.3811659, + 49.172292401 + ], + [ + 9.3805462, + 49.171986901 + ], + [ + 9.3800883, + 49.171727501 + ], + [ + 9.379654, + 49.171454401 + ], + [ + 9.379229, + 49.171181801 + ], + [ + 9.3788256, + 49.170903501 + ], + [ + 9.3784301, + 49.170606001 + ], + [ + 9.3780505, + 49.170300001 + ], + [ + 9.3777458, + 49.170015601 + ], + [ + 9.3774737, + 49.169731101 + ], + [ + 9.3771754, + 49.169396501 + ], + [ + 9.377061, + 49.169268501 + ], + [ + 9.3768291, + 49.169015201 + ], + [ + 9.3766111, + 49.168746501 + ], + [ + 9.3762108, + 49.168207301 + ], + [ + 9.3755412, + 49.167267101 + ], + [ + 9.3751954, + 49.166805101 + ], + [ + 9.3748272, + 49.166339901 + ], + [ + 9.3745416, + 49.166018101 + ], + [ + 9.3742274, + 49.165699401 + ], + [ + 9.3739051, + 49.165392301 + ], + [ + 9.3735649, + 49.165094101 + ], + [ + 9.3732091, + 49.164809001 + ], + [ + 9.3728403, + 49.164534301 + ], + [ + 9.3724667, + 49.164274301 + ], + [ + 9.3719269, + 49.163929301 + ], + [ + 9.3718085, + 49.163854101 + ], + [ + 9.3713714, + 49.163607501 + ], + [ + 9.3710027, + 49.163400901 + ], + [ + 9.3706179, + 49.163203801 + ], + [ + 9.370215, + 49.163012401 + ], + [ + 9.3696975, + 49.162776601 + ], + [ + 9.3691639, + 49.162549801 + ], + [ + 9.3685325, + 49.162311701 + ], + [ + 9.368054, + 49.162145101 + ], + [ + 9.3675502, + 49.161976001 + ], + [ + 9.3669929, + 49.161810601 + ], + [ + 9.3664804, + 49.161673501 + ], + [ + 9.3659558, + 49.161552701 + ], + [ + 9.3654312, + 49.161438601 + ], + [ + 9.3649027, + 49.161335901 + ], + [ + 9.3642742, + 49.161236501 + ], + [ + 9.363647, + 49.161149201 + ], + [ + 9.3630018, + 49.161068701 + ], + [ + 9.3623613, + 49.161001201 + ], + [ + 9.3572528, + 49.160549801 + ], + [ + 9.3551438, + 49.160355201 + ], + [ + 9.3543497, + 49.160280601 + ], + [ + 9.3535144, + 49.160217701 + ], + [ + 9.3525641, + 49.160162501 + ], + [ + 9.3519351, + 49.160137001 + ], + [ + 9.3513098, + 49.160131701 + ], + [ + 9.3505063, + 49.160116301 + ], + [ + 9.3495619, + 49.160147201 + ], + [ + 9.3485717, + 49.160205501 + ], + [ + 9.3475706, + 49.160294801 + ], + [ + 9.3469772, + 49.160364501 + ], + [ + 9.3463207, + 49.160455101 + ], + [ + 9.3451198, + 49.160640801 + ], + [ + 9.3443913, + 49.160767101 + ], + [ + 9.3424623, + 49.161081201 + ], + [ + 9.34056258, + 49.161394111 + ] + ] + } + }, + { + "identifier": "2026-016819--vi-fbm.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000_007.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.1933956030173,9.423672111583564,49.16139411130587,9.340562580193888", + "point": "49.1933956030173,9.423672111583564", + "startLcPosition": "72", + "impact": { + "lower": "Weinsberg", + "upper": "Sommerhalden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Sommerhalden - Weinsberg", + "coordinate": { + "lat": 49.1933956030173, + "long": 9.423672111583564 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 0.5 km hinter Sommerhalden und 3.2 km vor AK Weinsberg", + "", + "L\u00e4nge: 7.78 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Aufbau Stauwarnanlage und Aufbau BA1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.423672112, + 49.193395603 + ], + [ + 9.4229689, + 49.193096801 + ], + [ + 9.4222797, + 49.192773701 + ], + [ + 9.4215872, + 49.192403901 + ], + [ + 9.4210577, + 49.192093901 + ], + [ + 9.4205211, + 49.191752201 + ], + [ + 9.4199881, + 49.191381501 + ], + [ + 9.4195118, + 49.191016101 + ], + [ + 9.4191152, + 49.190684101 + ], + [ + 9.4186556, + 49.190265801 + ], + [ + 9.4182757, + 49.189891501 + ], + [ + 9.4180059, + 49.189596201 + ], + [ + 9.4176042, + 49.189118001 + ], + [ + 9.4173113, + 49.188722401 + ], + [ + 9.417061, + 49.188346301 + ], + [ + 9.4168164, + 49.187948001 + ], + [ + 9.416621, + 49.187575901 + ], + [ + 9.4164235, + 49.187156801 + ], + [ + 9.4163184, + 49.186908801 + ], + [ + 9.4162471, + 49.186740601 + ], + [ + 9.4161579, + 49.186482701 + ], + [ + 9.4160961, + 49.186304301 + ], + [ + 9.4159622, + 49.185872701 + ], + [ + 9.4155771, + 49.184452601 + ], + [ + 9.415358, + 49.183791301 + ], + [ + 9.4151219, + 49.183242801 + ], + [ + 9.4149034, + 49.182829201 + ], + [ + 9.4145292, + 49.182237501 + ], + [ + 9.4142545, + 49.181856301 + ], + [ + 9.4139314, + 49.181483801 + ], + [ + 9.4135871, + 49.181105101 + ], + [ + 9.4131874, + 49.180723901 + ], + [ + 9.4130275, + 49.180577201 + ], + [ + 9.4127016, + 49.180299401 + ], + [ + 9.412193, + 49.179897701 + ], + [ + 9.4120012, + 49.179763701 + ], + [ + 9.4114855, + 49.179436101 + ], + [ + 9.4111487, + 49.179217801 + ], + [ + 9.4106353, + 49.178930301 + ], + [ + 9.4100494, + 49.178631001 + ], + [ + 9.4097138, + 49.178477401 + ], + [ + 9.4092807, + 49.178291601 + ], + [ + 9.4088282, + 49.178110201 + ], + [ + 9.4083394, + 49.177939501 + ], + [ + 9.4077332, + 49.177753301 + ], + [ + 9.4071194, + 49.177577401 + ], + [ + 9.4065207, + 49.177431601 + ], + [ + 9.4058067, + 49.177272501 + ], + [ + 9.404991, + 49.177099301 + ], + [ + 9.4037341, + 49.176819201 + ], + [ + 9.4028816, + 49.176613301 + ], + [ + 9.4019825, + 49.176394301 + ], + [ + 9.4001337, + 49.175886601 + ], + [ + 9.3993553, + 49.175665601 + ], + [ + 9.398962, + 49.175554301 + ], + [ + 9.3981317, + 49.175316401 + ], + [ + 9.397207, + 49.175066701 + ], + [ + 9.3965208, + 49.174909301 + ], + [ + 9.3958532, + 49.174769701 + ], + [ + 9.3951007, + 49.174608401 + ], + [ + 9.3943825, + 49.174494901 + ], + [ + 9.3936721, + 49.174395301 + ], + [ + 9.3928784, + 49.174290501 + ], + [ + 9.3918952, + 49.174181401 + ], + [ + 9.3909394, + 49.174103801 + ], + [ + 9.3900171, + 49.174049401 + ], + [ + 9.3884826, + 49.173963301 + ], + [ + 9.3879566, + 49.173929801 + ], + [ + 9.3874707, + 49.173892001 + ], + [ + 9.3869875, + 49.173837601 + ], + [ + 9.3864396, + 49.173770401 + ], + [ + 9.3858943, + 49.173690701 + ], + [ + 9.3853146, + 49.173590501 + ], + [ + 9.3846536, + 49.173452501 + ], + [ + 9.3839445, + 49.173277601 + ], + [ + 9.3837302, + 49.173219401 + ], + [ + 9.3828071, + 49.172945401 + ], + [ + 9.3821368, + 49.172700001 + ], + [ + 9.3816398, + 49.172502101 + ], + [ + 9.3811659, + 49.172292401 + ], + [ + 9.3805462, + 49.171986901 + ], + [ + 9.3800883, + 49.171727501 + ], + [ + 9.379654, + 49.171454401 + ], + [ + 9.379229, + 49.171181801 + ], + [ + 9.3788256, + 49.170903501 + ], + [ + 9.3784301, + 49.170606001 + ], + [ + 9.3780505, + 49.170300001 + ], + [ + 9.3777458, + 49.170015601 + ], + [ + 9.3774737, + 49.169731101 + ], + [ + 9.3771754, + 49.169396501 + ], + [ + 9.377061, + 49.169268501 + ], + [ + 9.3768291, + 49.169015201 + ], + [ + 9.3766111, + 49.168746501 + ], + [ + 9.3762108, + 49.168207301 + ], + [ + 9.3755412, + 49.167267101 + ], + [ + 9.3751954, + 49.166805101 + ], + [ + 9.3748272, + 49.166339901 + ], + [ + 9.3745416, + 49.166018101 + ], + [ + 9.3742274, + 49.165699401 + ], + [ + 9.3739051, + 49.165392301 + ], + [ + 9.3735649, + 49.165094101 + ], + [ + 9.3732091, + 49.164809001 + ], + [ + 9.3728403, + 49.164534301 + ], + [ + 9.3724667, + 49.164274301 + ], + [ + 9.3719269, + 49.163929301 + ], + [ + 9.3718085, + 49.163854101 + ], + [ + 9.3713714, + 49.163607501 + ], + [ + 9.3710027, + 49.163400901 + ], + [ + 9.3706179, + 49.163203801 + ], + [ + 9.370215, + 49.163012401 + ], + [ + 9.3696975, + 49.162776601 + ], + [ + 9.3691639, + 49.162549801 + ], + [ + 9.3685325, + 49.162311701 + ], + [ + 9.368054, + 49.162145101 + ], + [ + 9.3675502, + 49.161976001 + ], + [ + 9.3669929, + 49.161810601 + ], + [ + 9.3664804, + 49.161673501 + ], + [ + 9.3659558, + 49.161552701 + ], + [ + 9.3654312, + 49.161438601 + ], + [ + 9.3649027, + 49.161335901 + ], + [ + 9.3642742, + 49.161236501 + ], + [ + 9.363647, + 49.161149201 + ], + [ + 9.3630018, + 49.161068701 + ], + [ + 9.3623613, + 49.161001201 + ], + [ + 9.3572528, + 49.160549801 + ], + [ + 9.3551438, + 49.160355201 + ], + [ + 9.3543497, + 49.160280601 + ], + [ + 9.3535144, + 49.160217701 + ], + [ + 9.3525641, + 49.160162501 + ], + [ + 9.3519351, + 49.160137001 + ], + [ + 9.3513098, + 49.160131701 + ], + [ + 9.3505063, + 49.160116301 + ], + [ + 9.3495619, + 49.160147201 + ], + [ + 9.3485717, + 49.160205501 + ], + [ + 9.3475706, + 49.160294801 + ], + [ + 9.3469772, + 49.160364501 + ], + [ + 9.3463207, + 49.160455101 + ], + [ + 9.3451198, + 49.160640801 + ], + [ + 9.3443913, + 49.160767101 + ], + [ + 9.3424623, + 49.161081201 + ], + [ + 9.34056258, + 49.161394111 + ] + ] + } + }, + { + "identifier": "2026-016819--vi-fbm.2026-04-07_09-00-00-000.devi-zus.2026-04-07_09-00-00-000_007.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.1933956030173,9.423672111583564,49.16139411130587,9.340562580193888", + "point": "49.1933956030173,9.423672111583564", + "startLcPosition": "72", + "impact": { + "lower": "Weinsberg", + "upper": "Sommerhalden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Sommerhalden - Weinsberg", + "coordinate": { + "lat": 49.1933956030173, + "long": 9.423672111583564 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 20:00 Uhr", + "10.04.26 von 09:00 bis 20:00 Uhr", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 0.5 km hinter Sommerhalden und 3.2 km vor AK Weinsberg", + "", + "L\u00e4nge: 7.78 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Aufbau Stauwarnanlage und Aufbau BA1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.423672112, + 49.193395603 + ], + [ + 9.4229689, + 49.193096801 + ], + [ + 9.4222797, + 49.192773701 + ], + [ + 9.4215872, + 49.192403901 + ], + [ + 9.4210577, + 49.192093901 + ], + [ + 9.4205211, + 49.191752201 + ], + [ + 9.4199881, + 49.191381501 + ], + [ + 9.4195118, + 49.191016101 + ], + [ + 9.4191152, + 49.190684101 + ], + [ + 9.4186556, + 49.190265801 + ], + [ + 9.4182757, + 49.189891501 + ], + [ + 9.4180059, + 49.189596201 + ], + [ + 9.4176042, + 49.189118001 + ], + [ + 9.4173113, + 49.188722401 + ], + [ + 9.417061, + 49.188346301 + ], + [ + 9.4168164, + 49.187948001 + ], + [ + 9.416621, + 49.187575901 + ], + [ + 9.4164235, + 49.187156801 + ], + [ + 9.4163184, + 49.186908801 + ], + [ + 9.4162471, + 49.186740601 + ], + [ + 9.4161579, + 49.186482701 + ], + [ + 9.4160961, + 49.186304301 + ], + [ + 9.4159622, + 49.185872701 + ], + [ + 9.4155771, + 49.184452601 + ], + [ + 9.415358, + 49.183791301 + ], + [ + 9.4151219, + 49.183242801 + ], + [ + 9.4149034, + 49.182829201 + ], + [ + 9.4145292, + 49.182237501 + ], + [ + 9.4142545, + 49.181856301 + ], + [ + 9.4139314, + 49.181483801 + ], + [ + 9.4135871, + 49.181105101 + ], + [ + 9.4131874, + 49.180723901 + ], + [ + 9.4130275, + 49.180577201 + ], + [ + 9.4127016, + 49.180299401 + ], + [ + 9.412193, + 49.179897701 + ], + [ + 9.4120012, + 49.179763701 + ], + [ + 9.4114855, + 49.179436101 + ], + [ + 9.4111487, + 49.179217801 + ], + [ + 9.4106353, + 49.178930301 + ], + [ + 9.4100494, + 49.178631001 + ], + [ + 9.4097138, + 49.178477401 + ], + [ + 9.4092807, + 49.178291601 + ], + [ + 9.4088282, + 49.178110201 + ], + [ + 9.4083394, + 49.177939501 + ], + [ + 9.4077332, + 49.177753301 + ], + [ + 9.4071194, + 49.177577401 + ], + [ + 9.4065207, + 49.177431601 + ], + [ + 9.4058067, + 49.177272501 + ], + [ + 9.404991, + 49.177099301 + ], + [ + 9.4037341, + 49.176819201 + ], + [ + 9.4028816, + 49.176613301 + ], + [ + 9.4019825, + 49.176394301 + ], + [ + 9.4001337, + 49.175886601 + ], + [ + 9.3993553, + 49.175665601 + ], + [ + 9.398962, + 49.175554301 + ], + [ + 9.3981317, + 49.175316401 + ], + [ + 9.397207, + 49.175066701 + ], + [ + 9.3965208, + 49.174909301 + ], + [ + 9.3958532, + 49.174769701 + ], + [ + 9.3951007, + 49.174608401 + ], + [ + 9.3943825, + 49.174494901 + ], + [ + 9.3936721, + 49.174395301 + ], + [ + 9.3928784, + 49.174290501 + ], + [ + 9.3918952, + 49.174181401 + ], + [ + 9.3909394, + 49.174103801 + ], + [ + 9.3900171, + 49.174049401 + ], + [ + 9.3884826, + 49.173963301 + ], + [ + 9.3879566, + 49.173929801 + ], + [ + 9.3874707, + 49.173892001 + ], + [ + 9.3869875, + 49.173837601 + ], + [ + 9.3864396, + 49.173770401 + ], + [ + 9.3858943, + 49.173690701 + ], + [ + 9.3853146, + 49.173590501 + ], + [ + 9.3846536, + 49.173452501 + ], + [ + 9.3839445, + 49.173277601 + ], + [ + 9.3837302, + 49.173219401 + ], + [ + 9.3828071, + 49.172945401 + ], + [ + 9.3821368, + 49.172700001 + ], + [ + 9.3816398, + 49.172502101 + ], + [ + 9.3811659, + 49.172292401 + ], + [ + 9.3805462, + 49.171986901 + ], + [ + 9.3800883, + 49.171727501 + ], + [ + 9.379654, + 49.171454401 + ], + [ + 9.379229, + 49.171181801 + ], + [ + 9.3788256, + 49.170903501 + ], + [ + 9.3784301, + 49.170606001 + ], + [ + 9.3780505, + 49.170300001 + ], + [ + 9.3777458, + 49.170015601 + ], + [ + 9.3774737, + 49.169731101 + ], + [ + 9.3771754, + 49.169396501 + ], + [ + 9.377061, + 49.169268501 + ], + [ + 9.3768291, + 49.169015201 + ], + [ + 9.3766111, + 49.168746501 + ], + [ + 9.3762108, + 49.168207301 + ], + [ + 9.3755412, + 49.167267101 + ], + [ + 9.3751954, + 49.166805101 + ], + [ + 9.3748272, + 49.166339901 + ], + [ + 9.3745416, + 49.166018101 + ], + [ + 9.3742274, + 49.165699401 + ], + [ + 9.3739051, + 49.165392301 + ], + [ + 9.3735649, + 49.165094101 + ], + [ + 9.3732091, + 49.164809001 + ], + [ + 9.3728403, + 49.164534301 + ], + [ + 9.3724667, + 49.164274301 + ], + [ + 9.3719269, + 49.163929301 + ], + [ + 9.3718085, + 49.163854101 + ], + [ + 9.3713714, + 49.163607501 + ], + [ + 9.3710027, + 49.163400901 + ], + [ + 9.3706179, + 49.163203801 + ], + [ + 9.370215, + 49.163012401 + ], + [ + 9.3696975, + 49.162776601 + ], + [ + 9.3691639, + 49.162549801 + ], + [ + 9.3685325, + 49.162311701 + ], + [ + 9.368054, + 49.162145101 + ], + [ + 9.3675502, + 49.161976001 + ], + [ + 9.3669929, + 49.161810601 + ], + [ + 9.3664804, + 49.161673501 + ], + [ + 9.3659558, + 49.161552701 + ], + [ + 9.3654312, + 49.161438601 + ], + [ + 9.3649027, + 49.161335901 + ], + [ + 9.3642742, + 49.161236501 + ], + [ + 9.363647, + 49.161149201 + ], + [ + 9.3630018, + 49.161068701 + ], + [ + 9.3623613, + 49.161001201 + ], + [ + 9.3572528, + 49.160549801 + ], + [ + 9.3551438, + 49.160355201 + ], + [ + 9.3543497, + 49.160280601 + ], + [ + 9.3535144, + 49.160217701 + ], + [ + 9.3525641, + 49.160162501 + ], + [ + 9.3519351, + 49.160137001 + ], + [ + 9.3513098, + 49.160131701 + ], + [ + 9.3505063, + 49.160116301 + ], + [ + 9.3495619, + 49.160147201 + ], + [ + 9.3485717, + 49.160205501 + ], + [ + 9.3475706, + 49.160294801 + ], + [ + 9.3469772, + 49.160364501 + ], + [ + 9.3463207, + 49.160455101 + ], + [ + 9.3451198, + 49.160640801 + ], + [ + 9.3443913, + 49.160767101 + ], + [ + 9.3424623, + 49.161081201 + ], + [ + 9.34056258, + 49.161394111 + ] + ] + } + }, + { + "identifier": "2026-012388--vi-bs.2026-03-11_20-00-00-000.devi-zus.2026-03-11_20-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.21647811331363,9.579563971425236,49.21240437486745,9.54124405306179", + "point": "49.21647811331363,9.579563971425236", + "startLcPosition": "75", + "impact": { + "lower": "\u00d6hringen", + "upper": "Neuenstein", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Neuenstein - \u00d6hringen", + "startTimestamp": "2026-03-11T20:00:00+01:00", + "coordinate": { + "lat": 49.21647811331363, + "long": 9.579563971425236 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.03.26 um 20:00 Uhr", + "Ende: 10.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.06.26)", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 0.6 km hinter AS Neuenstein und 4.3 km vor AS \u00d6hringen", + "", + "L\u00e4nge: 2.9 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.8 m", + "", + "A6 von Neuenstein (AS) nach \u00d6hringen (AS) Akute Verkehrsgef\u00e4hrdung, Hangrutsch" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.579563971, + 49.216478113 + ], + [ + 9.5780724, + 49.216690901 + ], + [ + 9.5763786, + 49.216925301 + ], + [ + 9.5752165, + 49.217075901 + ], + [ + 9.5750741, + 49.217094401 + ], + [ + 9.574869, + 49.217118501 + ], + [ + 9.5741207, + 49.217206501 + ], + [ + 9.5731722, + 49.217307201 + ], + [ + 9.572217, + 49.217395801 + ], + [ + 9.5716152, + 49.217439901 + ], + [ + 9.5710074, + 49.217480501 + ], + [ + 9.5697891, + 49.217539601 + ], + [ + 9.5687755, + 49.217573101 + ], + [ + 9.5679323, + 49.217581801 + ], + [ + 9.5670912, + 49.217581001 + ], + [ + 9.5662553, + 49.217561701 + ], + [ + 9.5654149, + 49.217529301 + ], + [ + 9.5646591, + 49.217491601 + ], + [ + 9.5641995, + 49.217462401 + ], + [ + 9.5639194, + 49.217444601 + ], + [ + 9.5631683, + 49.217384201 + ], + [ + 9.5624334, + 49.217311201 + ], + [ + 9.5616595, + 49.217221601 + ], + [ + 9.5607346, + 49.217101901 + ], + [ + 9.5598887, + 49.216981101 + ], + [ + 9.5590516, + 49.216840801 + ], + [ + 9.558266, + 49.216698401 + ], + [ + 9.5574929, + 49.216550701 + ], + [ + 9.5565046, + 49.216336301 + ], + [ + 9.555849, + 49.216179801 + ], + [ + 9.5551998, + 49.216014101 + ], + [ + 9.5539066, + 49.215676101 + ], + [ + 9.5530159, + 49.215428801 + ], + [ + 9.5521395, + 49.215170601 + ], + [ + 9.5504483, + 49.214663501 + ], + [ + 9.5494701, + 49.214371601 + ], + [ + 9.5478061, + 49.213896701 + ], + [ + 9.5463351, + 49.213496001 + ], + [ + 9.5454412, + 49.213272901 + ], + [ + 9.5445549, + 49.213065101 + ], + [ + 9.5437489, + 49.212887901 + ], + [ + 9.5429843, + 49.212728601 + ], + [ + 9.5421916, + 49.212573901 + ], + [ + 9.5416278, + 49.212470501 + ], + [ + 9.541244053, + 49.212404375 + ] + ] + } + }, + { + "identifier": "2026-014157--vi-bs.2026-03-30_08-00-00-000.devi-bs.2026-03-30_08-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.20475158372404,9.661890980490863,49.20480407417203,9.65640193856749", + "point": "49.20475158372404,9.661890980490863", + "startLcPosition": "77", + "impact": { + "lower": "Hohenlohe", + "upper": "Kupferzell", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Kupferzell - Hohenlohe", + "coordinate": { + "lat": 49.20475158372404, + "long": 9.661890980490863 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 08:00 bis 16:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 03.04.26 und dem 10.04.26 von 08:00 bis 14:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 1.9 km hinter AS Kupferzell und 1.2 km vor Hohenlohe", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A6 Erneuerung Gro\u00dfbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.66189098, + 49.204751584 + ], + [ + 9.6616324, + 49.204753301 + ], + [ + 9.6586104, + 49.204775801 + ], + [ + 9.656401939, + 49.204804074 + ] + ] + } + }, + { + "identifier": "2026-017133--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_009.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.196778714808694,9.702239308334049,49.16334369713014,9.275770718456265", + "point": "49.196778714808694,9.702239308334049", + "startLcPosition": "78", + "impact": { + "lower": "Sulmtal", + "upper": "Schw\u00e4bisch Hall", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Schw\u00e4bisch Hall - Sulmtal", + "coordinate": { + "lat": 49.196778714808694, + "long": 9.702239308334049 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 23.04.26 von 08:00 bis 16:30 Uhr.", + "Jeden Freitag und Freitag zwischen dem 17.04.26 und dem 24.04.26 von 08:00 bis 12:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 3.0 km hinter AS Schw\u00e4bisch Hall und 1.5 km vor Sulmtal", + "", + "L\u00e4nge: 34.01 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A6 von Sulmtal (Rastplatz) nach Schw\u00e4bisch Hall (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.702239308, + 49.196778715 + ], + [ + 9.7019313, + 49.196863901 + ], + [ + 9.6928017, + 49.199539301 + ], + [ + 9.6925973, + 49.199600401 + ], + [ + 9.6920515, + 49.199758701 + ], + [ + 9.6896544, + 49.200458901 + ], + [ + 9.6888658, + 49.200684901 + ], + [ + 9.6881545, + 49.200878101 + ], + [ + 9.6868561, + 49.201261901 + ], + [ + 9.6862125, + 49.201442701 + ], + [ + 9.6840809, + 49.202005501 + ], + [ + 9.6833751, + 49.202184601 + ], + [ + 9.6829272, + 49.202296601 + ], + [ + 9.6822164, + 49.202466001 + ], + [ + 9.6814767, + 49.202637101 + ], + [ + 9.680661, + 49.202825101 + ], + [ + 9.6804583, + 49.202868501 + ], + [ + 9.6788623, + 49.203200801 + ], + [ + 9.6781621, + 49.203340601 + ], + [ + 9.6775085, + 49.203457901 + ], + [ + 9.6767345, + 49.203586801 + ], + [ + 9.6759631, + 49.203714701 + ], + [ + 9.6751944, + 49.203835301 + ], + [ + 9.6744144, + 49.203944301 + ], + [ + 9.6733267, + 49.204085001 + ], + [ + 9.6722447, + 49.204213701 + ], + [ + 9.671162, + 49.204330201 + ], + [ + 9.6697477, + 49.204459101 + ], + [ + 9.6696089, + 49.204470601 + ], + [ + 9.6688717, + 49.204524701 + ], + [ + 9.6676864, + 49.204599801 + ], + [ + 9.6664839, + 49.204653201 + ], + [ + 9.6652912, + 49.204696801 + ], + [ + 9.6634676, + 49.204741101 + ], + [ + 9.6616324, + 49.204753301 + ], + [ + 9.6586104, + 49.204775801 + ], + [ + 9.6546478, + 49.204826501 + ], + [ + 9.6531458, + 49.204866101 + ], + [ + 9.6521481, + 49.204905801 + ], + [ + 9.6511431, + 49.204955601 + ], + [ + 9.650139, + 49.205009301 + ], + [ + 9.6491376, + 49.205072801 + ], + [ + 9.6476774, + 49.205202801 + ], + [ + 9.646017, + 49.205360701 + ], + [ + 9.6447793, + 49.205494001 + ], + [ + 9.6434255, + 49.205668601 + ], + [ + 9.6421878, + 49.205834901 + ], + [ + 9.6404534, + 49.206099601 + ], + [ + 9.6395773, + 49.206241401 + ], + [ + 9.6387154, + 49.206391401 + ], + [ + 9.6378278, + 49.206556701 + ], + [ + 9.6369481, + 49.206722801 + ], + [ + 9.635691, + 49.206979901 + ], + [ + 9.6339398, + 49.207373801 + ], + [ + 9.6333376, + 49.207515601 + ], + [ + 9.6320806, + 49.207825701 + ], + [ + 9.6314681, + 49.207979001 + ], + [ + 9.6307102, + 49.208181401 + ], + [ + 9.6297325, + 49.208453101 + ], + [ + 9.6287528, + 49.208735401 + ], + [ + 9.6275503, + 49.209089001 + ], + [ + 9.6263696, + 49.209450101 + ], + [ + 9.6240098, + 49.210186901 + ], + [ + 9.6216494, + 49.210918801 + ], + [ + 9.6192544, + 49.211617001 + ], + [ + 9.6189583, + 49.211700701 + ], + [ + 9.6188594, + 49.211729001 + ], + [ + 9.6175049, + 49.212096101 + ], + [ + 9.6166169, + 49.212325901 + ], + [ + 9.6155324, + 49.212587601 + ], + [ + 9.6145343, + 49.212820901 + ], + [ + 9.6136652, + 49.213012401 + ], + [ + 9.6126254, + 49.213232201 + ], + [ + 9.6115693, + 49.213443701 + ], + [ + 9.610823, + 49.213584801 + ], + [ + 9.6100681, + 49.213723701 + ], + [ + 9.6093104, + 49.213856501 + ], + [ + 9.6085432, + 49.213976201 + ], + [ + 9.6074952, + 49.214142801 + ], + [ + 9.6064391, + 49.214296501 + ], + [ + 9.6057862, + 49.214388801 + ], + [ + 9.6051305, + 49.214473301 + ], + [ + 9.6043035, + 49.214572301 + ], + [ + 9.6036226, + 49.214651901 + ], + [ + 9.6028571, + 49.214735901 + ], + [ + 9.6020894, + 49.214815601 + ], + [ + 9.601164, + 49.214898101 + ], + [ + 9.6003238, + 49.214970201 + ], + [ + 9.5994358, + 49.215035001 + ], + [ + 9.5985561, + 49.215094501 + ], + [ + 9.5971302, + 49.215174901 + ], + [ + 9.5958828, + 49.215234301 + ], + [ + 9.5947072, + 49.215281601 + ], + [ + 9.5918699, + 49.215389801 + ], + [ + 9.5894374, + 49.215492801 + ], + [ + 9.5892351, + 49.215503901 + ], + [ + 9.588223, + 49.215562401 + ], + [ + 9.5879251, + 49.215578501 + ], + [ + 9.5869315, + 49.215646801 + ], + [ + 9.5856319, + 49.215743801 + ], + [ + 9.5845677, + 49.215853901 + ], + [ + 9.5835095, + 49.215971801 + ], + [ + 9.5826607, + 49.216067401 + ], + [ + 9.5818171, + 49.216171401 + ], + [ + 9.5801297, + 49.216397401 + ], + [ + 9.5780724, + 49.216690901 + ], + [ + 9.5763786, + 49.216925301 + ], + [ + 9.5752165, + 49.217075901 + ], + [ + 9.5750741, + 49.217094401 + ], + [ + 9.574869, + 49.217118501 + ], + [ + 9.5741207, + 49.217206501 + ], + [ + 9.5731722, + 49.217307201 + ], + [ + 9.572217, + 49.217395801 + ], + [ + 9.5716152, + 49.217439901 + ], + [ + 9.5710074, + 49.217480501 + ], + [ + 9.5697891, + 49.217539601 + ], + [ + 9.5687755, + 49.217573101 + ], + [ + 9.5679323, + 49.217581801 + ], + [ + 9.5670912, + 49.217581001 + ], + [ + 9.5662553, + 49.217561701 + ], + [ + 9.5654149, + 49.217529301 + ], + [ + 9.5646591, + 49.217491601 + ], + [ + 9.5641995, + 49.217462401 + ], + [ + 9.5639194, + 49.217444601 + ], + [ + 9.5631683, + 49.217384201 + ], + [ + 9.5624334, + 49.217311201 + ], + [ + 9.5616595, + 49.217221601 + ], + [ + 9.5607346, + 49.217101901 + ], + [ + 9.5598887, + 49.216981101 + ], + [ + 9.5590516, + 49.216840801 + ], + [ + 9.558266, + 49.216698401 + ], + [ + 9.5574929, + 49.216550701 + ], + [ + 9.5565046, + 49.216336301 + ], + [ + 9.555849, + 49.216179801 + ], + [ + 9.5551998, + 49.216014101 + ], + [ + 9.5539066, + 49.215676101 + ], + [ + 9.5530159, + 49.215428801 + ], + [ + 9.5521395, + 49.215170601 + ], + [ + 9.5504483, + 49.214663501 + ], + [ + 9.5494701, + 49.214371601 + ], + [ + 9.5478061, + 49.213896701 + ], + [ + 9.5463351, + 49.213496001 + ], + [ + 9.5454412, + 49.213272901 + ], + [ + 9.5445549, + 49.213065101 + ], + [ + 9.5437489, + 49.212887901 + ], + [ + 9.5429843, + 49.212728601 + ], + [ + 9.5421916, + 49.212573901 + ], + [ + 9.5416278, + 49.212470501 + ], + [ + 9.5405194, + 49.212279501 + ], + [ + 9.5394554, + 49.212107801 + ], + [ + 9.5384223, + 49.211963201 + ], + [ + 9.5370452, + 49.211783501 + ], + [ + 9.5366825, + 49.211743101 + ], + [ + 9.5359418, + 49.211664601 + ], + [ + 9.5341957, + 49.211509301 + ], + [ + 9.5337227, + 49.211471901 + ], + [ + 9.5328688, + 49.211426501 + ], + [ + 9.5318795, + 49.211379301 + ], + [ + 9.5308128, + 49.211342701 + ], + [ + 9.5304036, + 49.211335101 + ], + [ + 9.5297111, + 49.211321201 + ], + [ + 9.52848, + 49.211311101 + ], + [ + 9.5269883, + 49.211324801 + ], + [ + 9.5260442, + 49.211353001 + ], + [ + 9.525105, + 49.211397301 + ], + [ + 9.5242758, + 49.211442301 + ], + [ + 9.5234476, + 49.211499901 + ], + [ + 9.5226196, + 49.211558601 + ], + [ + 9.5217993, + 49.211629301 + ], + [ + 9.5198635, + 49.211801901 + ], + [ + 9.5188084, + 49.211901101 + ], + [ + 9.5179245, + 49.211966001 + ], + [ + 9.5165212, + 49.212058101 + ], + [ + 9.5156935, + 49.212107001 + ], + [ + 9.5147957, + 49.212153301 + ], + [ + 9.5139143, + 49.212190401 + ], + [ + 9.5130409, + 49.212205801 + ], + [ + 9.5114054, + 49.212207701 + ], + [ + 9.5106563, + 49.212192901 + ], + [ + 9.509772, + 49.212161601 + ], + [ + 9.5088809, + 49.212114801 + ], + [ + 9.5081858, + 49.212066301 + ], + [ + 9.5075087, + 49.212010001 + ], + [ + 9.5067916, + 49.211933501 + ], + [ + 9.5060603, + 49.211847501 + ], + [ + 9.5053549, + 49.211748201 + ], + [ + 9.5046342, + 49.211639001 + ], + [ + 9.5037559, + 49.211491401 + ], + [ + 9.503064, + 49.211380301 + ], + [ + 9.5020146, + 49.211182501 + ], + [ + 9.5011494, + 49.211009201 + ], + [ + 9.5003299, + 49.210842701 + ], + [ + 9.4993559, + 49.210625401 + ], + [ + 9.4984683, + 49.210419901 + ], + [ + 9.4975828, + 49.210203001 + ], + [ + 9.4956787, + 49.209698201 + ], + [ + 9.494663, + 49.209414801 + ], + [ + 9.493477, + 49.209054301 + ], + [ + 9.4932818, + 49.208994901 + ], + [ + 9.4917035, + 49.208484701 + ], + [ + 9.4902566, + 49.208022801 + ], + [ + 9.4896328, + 49.207827701 + ], + [ + 9.488717, + 49.207545901 + ], + [ + 9.4871072, + 49.207083401 + ], + [ + 9.4859874, + 49.206793101 + ], + [ + 9.4850925, + 49.206572801 + ], + [ + 9.4840303, + 49.206342601 + ], + [ + 9.4834921, + 49.206234901 + ], + [ + 9.4812245, + 49.205839601 + ], + [ + 9.4799729, + 49.205640401 + ], + [ + 9.4790677, + 49.205491101 + ], + [ + 9.4772232, + 49.205180301 + ], + [ + 9.4765119, + 49.205054401 + ], + [ + 9.475478, + 49.204859601 + ], + [ + 9.4748804, + 49.204742901 + ], + [ + 9.4747275, + 49.204713601 + ], + [ + 9.4731914, + 49.204354001 + ], + [ + 9.4724995, + 49.204186701 + ], + [ + 9.4714952, + 49.203916601 + ], + [ + 9.4707961, + 49.203719601 + ], + [ + 9.4701899, + 49.203542901 + ], + [ + 9.4697508, + 49.203412701 + ], + [ + 9.4684993, + 49.203010901 + ], + [ + 9.467625, + 49.202704201 + ], + [ + 9.4666695, + 49.202345401 + ], + [ + 9.465638, + 49.201950901 + ], + [ + 9.4654431, + 49.201874301 + ], + [ + 9.4643652, + 49.201444301 + ], + [ + 9.4633082, + 49.201003201 + ], + [ + 9.461836, + 49.200386101 + ], + [ + 9.4606909, + 49.199919701 + ], + [ + 9.4601363, + 49.199713701 + ], + [ + 9.4590238, + 49.199324401 + ], + [ + 9.4582218, + 49.199060701 + ], + [ + 9.4573819, + 49.198801301 + ], + [ + 9.4567118, + 49.198593101 + ], + [ + 9.4560022, + 49.198384401 + ], + [ + 9.4552854, + 49.198187801 + ], + [ + 9.4545663, + 49.197996801 + ], + [ + 9.4534005, + 49.197716501 + ], + [ + 9.4529271, + 49.197612201 + ], + [ + 9.4522278, + 49.197452101 + ], + [ + 9.4510694, + 49.197220601 + ], + [ + 9.4504844, + 49.197106101 + ], + [ + 9.4499046, + 49.197002301 + ], + [ + 9.4493407, + 49.196911201 + ], + [ + 9.4485047, + 49.196791901 + ], + [ + 9.4477433, + 49.196691501 + ], + [ + 9.4469517, + 49.196587201 + ], + [ + 9.4461518, + 49.196491101 + ], + [ + 9.4454218, + 49.196410701 + ], + [ + 9.4446796, + 49.196324001 + ], + [ + 9.4439736, + 49.196254501 + ], + [ + 9.4432471, + 49.196182301 + ], + [ + 9.4421033, + 49.196073201 + ], + [ + 9.4409085, + 49.195958601 + ], + [ + 9.4384024, + 49.195731901 + ], + [ + 9.4355404, + 49.195467601 + ], + [ + 9.4345428, + 49.195371501 + ], + [ + 9.4338017, + 49.195305801 + ], + [ + 9.4328327, + 49.195214201 + ], + [ + 9.4317309, + 49.195113201 + ], + [ + 9.4309541, + 49.195034101 + ], + [ + 9.429936, + 49.194916101 + ], + [ + 9.4290302, + 49.194792601 + ], + [ + 9.4281959, + 49.194656101 + ], + [ + 9.4273951, + 49.194502401 + ], + [ + 9.4267601, + 49.194363401 + ], + [ + 9.4260789, + 49.194189501 + ], + [ + 9.4256188, + 49.194062501 + ], + [ + 9.4251928, + 49.193938301 + ], + [ + 9.4246825, + 49.193769601 + ], + [ + 9.4241746, + 49.193588101 + ], + [ + 9.4236947, + 49.193405201 + ], + [ + 9.4229689, + 49.193096801 + ], + [ + 9.4222797, + 49.192773701 + ], + [ + 9.4215872, + 49.192403901 + ], + [ + 9.4210577, + 49.192093901 + ], + [ + 9.4205211, + 49.191752201 + ], + [ + 9.4199881, + 49.191381501 + ], + [ + 9.4195118, + 49.191016101 + ], + [ + 9.4191152, + 49.190684101 + ], + [ + 9.4186556, + 49.190265801 + ], + [ + 9.4182757, + 49.189891501 + ], + [ + 9.4180059, + 49.189596201 + ], + [ + 9.4176042, + 49.189118001 + ], + [ + 9.4173113, + 49.188722401 + ], + [ + 9.417061, + 49.188346301 + ], + [ + 9.4168164, + 49.187948001 + ], + [ + 9.416621, + 49.187575901 + ], + [ + 9.4164235, + 49.187156801 + ], + [ + 9.4163184, + 49.186908801 + ], + [ + 9.4162471, + 49.186740601 + ], + [ + 9.4161579, + 49.186482701 + ], + [ + 9.4160961, + 49.186304301 + ], + [ + 9.4159622, + 49.185872701 + ], + [ + 9.4155771, + 49.184452601 + ], + [ + 9.415358, + 49.183791301 + ], + [ + 9.4151219, + 49.183242801 + ], + [ + 9.4149034, + 49.182829201 + ], + [ + 9.4145292, + 49.182237501 + ], + [ + 9.4142545, + 49.181856301 + ], + [ + 9.4139314, + 49.181483801 + ], + [ + 9.4135871, + 49.181105101 + ], + [ + 9.4131874, + 49.180723901 + ], + [ + 9.4130275, + 49.180577201 + ], + [ + 9.4127016, + 49.180299401 + ], + [ + 9.412193, + 49.179897701 + ], + [ + 9.4120012, + 49.179763701 + ], + [ + 9.4114855, + 49.179436101 + ], + [ + 9.4111487, + 49.179217801 + ], + [ + 9.4106353, + 49.178930301 + ], + [ + 9.4100494, + 49.178631001 + ], + [ + 9.4097138, + 49.178477401 + ], + [ + 9.4092807, + 49.178291601 + ], + [ + 9.4088282, + 49.178110201 + ], + [ + 9.4083394, + 49.177939501 + ], + [ + 9.4077332, + 49.177753301 + ], + [ + 9.4071194, + 49.177577401 + ], + [ + 9.4065207, + 49.177431601 + ], + [ + 9.4058067, + 49.177272501 + ], + [ + 9.404991, + 49.177099301 + ], + [ + 9.4037341, + 49.176819201 + ], + [ + 9.4028816, + 49.176613301 + ], + [ + 9.4019825, + 49.176394301 + ], + [ + 9.4001337, + 49.175886601 + ], + [ + 9.3993553, + 49.175665601 + ], + [ + 9.398962, + 49.175554301 + ], + [ + 9.3981317, + 49.175316401 + ], + [ + 9.397207, + 49.175066701 + ], + [ + 9.3965208, + 49.174909301 + ], + [ + 9.3958532, + 49.174769701 + ], + [ + 9.3951007, + 49.174608401 + ], + [ + 9.3943825, + 49.174494901 + ], + [ + 9.3936721, + 49.174395301 + ], + [ + 9.3928784, + 49.174290501 + ], + [ + 9.3918952, + 49.174181401 + ], + [ + 9.3909394, + 49.174103801 + ], + [ + 9.3900171, + 49.174049401 + ], + [ + 9.3884826, + 49.173963301 + ], + [ + 9.3879566, + 49.173929801 + ], + [ + 9.3874707, + 49.173892001 + ], + [ + 9.3869875, + 49.173837601 + ], + [ + 9.3864396, + 49.173770401 + ], + [ + 9.3858943, + 49.173690701 + ], + [ + 9.3853146, + 49.173590501 + ], + [ + 9.3846536, + 49.173452501 + ], + [ + 9.3839445, + 49.173277601 + ], + [ + 9.3837302, + 49.173219401 + ], + [ + 9.3828071, + 49.172945401 + ], + [ + 9.3821368, + 49.172700001 + ], + [ + 9.3816398, + 49.172502101 + ], + [ + 9.3811659, + 49.172292401 + ], + [ + 9.3805462, + 49.171986901 + ], + [ + 9.3800883, + 49.171727501 + ], + [ + 9.379654, + 49.171454401 + ], + [ + 9.379229, + 49.171181801 + ], + [ + 9.3788256, + 49.170903501 + ], + [ + 9.3784301, + 49.170606001 + ], + [ + 9.3780505, + 49.170300001 + ], + [ + 9.3777458, + 49.170015601 + ], + [ + 9.3774737, + 49.169731101 + ], + [ + 9.3771754, + 49.169396501 + ], + [ + 9.377061, + 49.169268501 + ], + [ + 9.3768291, + 49.169015201 + ], + [ + 9.3766111, + 49.168746501 + ], + [ + 9.3762108, + 49.168207301 + ], + [ + 9.3755412, + 49.167267101 + ], + [ + 9.3751954, + 49.166805101 + ], + [ + 9.3748272, + 49.166339901 + ], + [ + 9.3745416, + 49.166018101 + ], + [ + 9.3742274, + 49.165699401 + ], + [ + 9.3739051, + 49.165392301 + ], + [ + 9.3735649, + 49.165094101 + ], + [ + 9.3732091, + 49.164809001 + ], + [ + 9.3728403, + 49.164534301 + ], + [ + 9.3724667, + 49.164274301 + ], + [ + 9.3719269, + 49.163929301 + ], + [ + 9.3718085, + 49.163854101 + ], + [ + 9.3713714, + 49.163607501 + ], + [ + 9.3710027, + 49.163400901 + ], + [ + 9.3706179, + 49.163203801 + ], + [ + 9.370215, + 49.163012401 + ], + [ + 9.3696975, + 49.162776601 + ], + [ + 9.3691639, + 49.162549801 + ], + [ + 9.3685325, + 49.162311701 + ], + [ + 9.368054, + 49.162145101 + ], + [ + 9.3675502, + 49.161976001 + ], + [ + 9.3669929, + 49.161810601 + ], + [ + 9.3664804, + 49.161673501 + ], + [ + 9.3659558, + 49.161552701 + ], + [ + 9.3654312, + 49.161438601 + ], + [ + 9.3649027, + 49.161335901 + ], + [ + 9.3642742, + 49.161236501 + ], + [ + 9.363647, + 49.161149201 + ], + [ + 9.3630018, + 49.161068701 + ], + [ + 9.3623613, + 49.161001201 + ], + [ + 9.3572528, + 49.160549801 + ], + [ + 9.3551438, + 49.160355201 + ], + [ + 9.3543497, + 49.160280601 + ], + [ + 9.3535144, + 49.160217701 + ], + [ + 9.3525641, + 49.160162501 + ], + [ + 9.3519351, + 49.160137001 + ], + [ + 9.3513098, + 49.160131701 + ], + [ + 9.3505063, + 49.160116301 + ], + [ + 9.3495619, + 49.160147201 + ], + [ + 9.3485717, + 49.160205501 + ], + [ + 9.3475706, + 49.160294801 + ], + [ + 9.3469772, + 49.160364501 + ], + [ + 9.3463207, + 49.160455101 + ], + [ + 9.3451198, + 49.160640801 + ], + [ + 9.3443913, + 49.160767101 + ], + [ + 9.3424623, + 49.161081201 + ], + [ + 9.3381272, + 49.161795201 + ], + [ + 9.3363134, + 49.162096701 + ], + [ + 9.3352281, + 49.162273101 + ], + [ + 9.3348049, + 49.162325501 + ], + [ + 9.3340959, + 49.162419201 + ], + [ + 9.3333426, + 49.162500601 + ], + [ + 9.3325576, + 49.162562101 + ], + [ + 9.3319766, + 49.162585501 + ], + [ + 9.3313853, + 49.162591301 + ], + [ + 9.3308078, + 49.162583401 + ], + [ + 9.3302166, + 49.162561701 + ], + [ + 9.3297431, + 49.162527901 + ], + [ + 9.3292436, + 49.162480401 + ], + [ + 9.3286497, + 49.162405201 + ], + [ + 9.3280445, + 49.162316101 + ], + [ + 9.3275799, + 49.162224701 + ], + [ + 9.3271189, + 49.162119801 + ], + [ + 9.3265697, + 49.161989501 + ], + [ + 9.3259828, + 49.161836001 + ], + [ + 9.32545, + 49.161665001 + ], + [ + 9.3248896, + 49.161472801 + ], + [ + 9.3243812, + 49.161275401 + ], + [ + 9.3238833, + 49.161062401 + ], + [ + 9.3233754, + 49.160824501 + ], + [ + 9.3230379, + 49.160659101 + ], + [ + 9.3228858, + 49.160580701 + ], + [ + 9.3222522, + 49.160229701 + ], + [ + 9.3221843, + 49.160192801 + ], + [ + 9.3213256, + 49.159665701 + ], + [ + 9.3204216, + 49.159130701 + ], + [ + 9.3197341, + 49.158745101 + ], + [ + 9.3194006, + 49.158568601 + ], + [ + 9.3190574, + 49.158401001 + ], + [ + 9.3187693, + 49.158263701 + ], + [ + 9.3184671, + 49.158126201 + ], + [ + 9.3181868, + 49.158008701 + ], + [ + 9.3178883, + 49.157892601 + ], + [ + 9.3175306, + 49.157753601 + ], + [ + 9.3172032, + 49.157635401 + ], + [ + 9.3168786, + 49.157527601 + ], + [ + 9.316515, + 49.157415201 + ], + [ + 9.3161446, + 49.157308601 + ], + [ + 9.3157252, + 49.157192001 + ], + [ + 9.3153024, + 49.157082701 + ], + [ + 9.3149009, + 49.156991101 + ], + [ + 9.3144961, + 49.156904601 + ], + [ + 9.3140086, + 49.156815001 + ], + [ + 9.3136305, + 49.156756101 + ], + [ + 9.3132545, + 49.156701001 + ], + [ + 9.312873, + 49.156649201 + ], + [ + 9.3124917, + 49.156604701 + ], + [ + 9.3119186, + 49.156558601 + ], + [ + 9.3112421, + 49.156518301 + ], + [ + 9.31078, + 49.156494801 + ], + [ + 9.3102711, + 49.156483401 + ], + [ + 9.3097599, + 49.156483401 + ], + [ + 9.3091631, + 49.156489301 + ], + [ + 9.3085522, + 49.156500701 + ], + [ + 9.3077312, + 49.156536101 + ], + [ + 9.3067938, + 49.156592501 + ], + [ + 9.3057553, + 49.156664801 + ], + [ + 9.305084, + 49.156718301 + ], + [ + 9.3045155, + 49.156767301 + ], + [ + 9.3037536, + 49.156837001 + ], + [ + 9.3025403, + 49.156961201 + ], + [ + 9.3018058, + 49.157044201 + ], + [ + 9.3000628, + 49.157264501 + ], + [ + 9.2987933, + 49.157444801 + ], + [ + 9.2976724, + 49.157621601 + ], + [ + 9.2965803, + 49.157797001 + ], + [ + 9.2954535, + 49.157993901 + ], + [ + 9.2951329, + 49.158049901 + ], + [ + 9.2938773, + 49.158296801 + ], + [ + 9.2933487, + 49.158400801 + ], + [ + 9.2928109, + 49.158513701 + ], + [ + 9.2921722, + 49.158650601 + ], + [ + 9.291755, + 49.158740501 + ], + [ + 9.2912741, + 49.158853401 + ], + [ + 9.29019, + 49.159104101 + ], + [ + 9.2893037, + 49.159323001 + ], + [ + 9.2884847, + 49.159534501 + ], + [ + 9.2880936, + 49.159646801 + ], + [ + 9.2876288, + 49.159725101 + ], + [ + 9.2846512, + 49.160634201 + ], + [ + 9.2825398, + 49.161279501 + ], + [ + 9.281546, + 49.161583201 + ], + [ + 9.2805048, + 49.161899201 + ], + [ + 9.2799363, + 49.162073701 + ], + [ + 9.2798123, + 49.162111701 + ], + [ + 9.279684, + 49.162150901 + ], + [ + 9.2779175, + 49.162693501 + ], + [ + 9.2767232, + 49.163054301 + ], + [ + 9.275770718, + 49.163343697 + ] + ] + } + }, + { + "identifier": "2026-017133--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_009.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.196778714808694,9.702239308334049,49.16334369713014,9.275770718456265", + "point": "49.196778714808694,9.702239308334049", + "startLcPosition": "78", + "impact": { + "lower": "Sulmtal", + "upper": "Schw\u00e4bisch Hall", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Schw\u00e4bisch Hall - Sulmtal", + "coordinate": { + "lat": 49.196778714808694, + "long": 9.702239308334049 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 23.04.26 von 08:00 bis 16:30 Uhr.", + "Jeden Freitag und Freitag zwischen dem 17.04.26 und dem 24.04.26 von 08:00 bis 12:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 3.0 km hinter AS Schw\u00e4bisch Hall und 1.5 km vor Sulmtal", + "", + "L\u00e4nge: 34.01 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A6 von Sulmtal (Rastplatz) nach Schw\u00e4bisch Hall (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.702239308, + 49.196778715 + ], + [ + 9.7019313, + 49.196863901 + ], + [ + 9.6928017, + 49.199539301 + ], + [ + 9.6925973, + 49.199600401 + ], + [ + 9.6920515, + 49.199758701 + ], + [ + 9.6896544, + 49.200458901 + ], + [ + 9.6888658, + 49.200684901 + ], + [ + 9.6881545, + 49.200878101 + ], + [ + 9.6868561, + 49.201261901 + ], + [ + 9.6862125, + 49.201442701 + ], + [ + 9.6840809, + 49.202005501 + ], + [ + 9.6833751, + 49.202184601 + ], + [ + 9.6829272, + 49.202296601 + ], + [ + 9.6822164, + 49.202466001 + ], + [ + 9.6814767, + 49.202637101 + ], + [ + 9.680661, + 49.202825101 + ], + [ + 9.6804583, + 49.202868501 + ], + [ + 9.6788623, + 49.203200801 + ], + [ + 9.6781621, + 49.203340601 + ], + [ + 9.6775085, + 49.203457901 + ], + [ + 9.6767345, + 49.203586801 + ], + [ + 9.6759631, + 49.203714701 + ], + [ + 9.6751944, + 49.203835301 + ], + [ + 9.6744144, + 49.203944301 + ], + [ + 9.6733267, + 49.204085001 + ], + [ + 9.6722447, + 49.204213701 + ], + [ + 9.671162, + 49.204330201 + ], + [ + 9.6697477, + 49.204459101 + ], + [ + 9.6696089, + 49.204470601 + ], + [ + 9.6688717, + 49.204524701 + ], + [ + 9.6676864, + 49.204599801 + ], + [ + 9.6664839, + 49.204653201 + ], + [ + 9.6652912, + 49.204696801 + ], + [ + 9.6634676, + 49.204741101 + ], + [ + 9.6616324, + 49.204753301 + ], + [ + 9.6586104, + 49.204775801 + ], + [ + 9.6546478, + 49.204826501 + ], + [ + 9.6531458, + 49.204866101 + ], + [ + 9.6521481, + 49.204905801 + ], + [ + 9.6511431, + 49.204955601 + ], + [ + 9.650139, + 49.205009301 + ], + [ + 9.6491376, + 49.205072801 + ], + [ + 9.6476774, + 49.205202801 + ], + [ + 9.646017, + 49.205360701 + ], + [ + 9.6447793, + 49.205494001 + ], + [ + 9.6434255, + 49.205668601 + ], + [ + 9.6421878, + 49.205834901 + ], + [ + 9.6404534, + 49.206099601 + ], + [ + 9.6395773, + 49.206241401 + ], + [ + 9.6387154, + 49.206391401 + ], + [ + 9.6378278, + 49.206556701 + ], + [ + 9.6369481, + 49.206722801 + ], + [ + 9.635691, + 49.206979901 + ], + [ + 9.6339398, + 49.207373801 + ], + [ + 9.6333376, + 49.207515601 + ], + [ + 9.6320806, + 49.207825701 + ], + [ + 9.6314681, + 49.207979001 + ], + [ + 9.6307102, + 49.208181401 + ], + [ + 9.6297325, + 49.208453101 + ], + [ + 9.6287528, + 49.208735401 + ], + [ + 9.6275503, + 49.209089001 + ], + [ + 9.6263696, + 49.209450101 + ], + [ + 9.6240098, + 49.210186901 + ], + [ + 9.6216494, + 49.210918801 + ], + [ + 9.6192544, + 49.211617001 + ], + [ + 9.6189583, + 49.211700701 + ], + [ + 9.6188594, + 49.211729001 + ], + [ + 9.6175049, + 49.212096101 + ], + [ + 9.6166169, + 49.212325901 + ], + [ + 9.6155324, + 49.212587601 + ], + [ + 9.6145343, + 49.212820901 + ], + [ + 9.6136652, + 49.213012401 + ], + [ + 9.6126254, + 49.213232201 + ], + [ + 9.6115693, + 49.213443701 + ], + [ + 9.610823, + 49.213584801 + ], + [ + 9.6100681, + 49.213723701 + ], + [ + 9.6093104, + 49.213856501 + ], + [ + 9.6085432, + 49.213976201 + ], + [ + 9.6074952, + 49.214142801 + ], + [ + 9.6064391, + 49.214296501 + ], + [ + 9.6057862, + 49.214388801 + ], + [ + 9.6051305, + 49.214473301 + ], + [ + 9.6043035, + 49.214572301 + ], + [ + 9.6036226, + 49.214651901 + ], + [ + 9.6028571, + 49.214735901 + ], + [ + 9.6020894, + 49.214815601 + ], + [ + 9.601164, + 49.214898101 + ], + [ + 9.6003238, + 49.214970201 + ], + [ + 9.5994358, + 49.215035001 + ], + [ + 9.5985561, + 49.215094501 + ], + [ + 9.5971302, + 49.215174901 + ], + [ + 9.5958828, + 49.215234301 + ], + [ + 9.5947072, + 49.215281601 + ], + [ + 9.5918699, + 49.215389801 + ], + [ + 9.5894374, + 49.215492801 + ], + [ + 9.5892351, + 49.215503901 + ], + [ + 9.588223, + 49.215562401 + ], + [ + 9.5879251, + 49.215578501 + ], + [ + 9.5869315, + 49.215646801 + ], + [ + 9.5856319, + 49.215743801 + ], + [ + 9.5845677, + 49.215853901 + ], + [ + 9.5835095, + 49.215971801 + ], + [ + 9.5826607, + 49.216067401 + ], + [ + 9.5818171, + 49.216171401 + ], + [ + 9.5801297, + 49.216397401 + ], + [ + 9.5780724, + 49.216690901 + ], + [ + 9.5763786, + 49.216925301 + ], + [ + 9.5752165, + 49.217075901 + ], + [ + 9.5750741, + 49.217094401 + ], + [ + 9.574869, + 49.217118501 + ], + [ + 9.5741207, + 49.217206501 + ], + [ + 9.5731722, + 49.217307201 + ], + [ + 9.572217, + 49.217395801 + ], + [ + 9.5716152, + 49.217439901 + ], + [ + 9.5710074, + 49.217480501 + ], + [ + 9.5697891, + 49.217539601 + ], + [ + 9.5687755, + 49.217573101 + ], + [ + 9.5679323, + 49.217581801 + ], + [ + 9.5670912, + 49.217581001 + ], + [ + 9.5662553, + 49.217561701 + ], + [ + 9.5654149, + 49.217529301 + ], + [ + 9.5646591, + 49.217491601 + ], + [ + 9.5641995, + 49.217462401 + ], + [ + 9.5639194, + 49.217444601 + ], + [ + 9.5631683, + 49.217384201 + ], + [ + 9.5624334, + 49.217311201 + ], + [ + 9.5616595, + 49.217221601 + ], + [ + 9.5607346, + 49.217101901 + ], + [ + 9.5598887, + 49.216981101 + ], + [ + 9.5590516, + 49.216840801 + ], + [ + 9.558266, + 49.216698401 + ], + [ + 9.5574929, + 49.216550701 + ], + [ + 9.5565046, + 49.216336301 + ], + [ + 9.555849, + 49.216179801 + ], + [ + 9.5551998, + 49.216014101 + ], + [ + 9.5539066, + 49.215676101 + ], + [ + 9.5530159, + 49.215428801 + ], + [ + 9.5521395, + 49.215170601 + ], + [ + 9.5504483, + 49.214663501 + ], + [ + 9.5494701, + 49.214371601 + ], + [ + 9.5478061, + 49.213896701 + ], + [ + 9.5463351, + 49.213496001 + ], + [ + 9.5454412, + 49.213272901 + ], + [ + 9.5445549, + 49.213065101 + ], + [ + 9.5437489, + 49.212887901 + ], + [ + 9.5429843, + 49.212728601 + ], + [ + 9.5421916, + 49.212573901 + ], + [ + 9.5416278, + 49.212470501 + ], + [ + 9.5405194, + 49.212279501 + ], + [ + 9.5394554, + 49.212107801 + ], + [ + 9.5384223, + 49.211963201 + ], + [ + 9.5370452, + 49.211783501 + ], + [ + 9.5366825, + 49.211743101 + ], + [ + 9.5359418, + 49.211664601 + ], + [ + 9.5341957, + 49.211509301 + ], + [ + 9.5337227, + 49.211471901 + ], + [ + 9.5328688, + 49.211426501 + ], + [ + 9.5318795, + 49.211379301 + ], + [ + 9.5308128, + 49.211342701 + ], + [ + 9.5304036, + 49.211335101 + ], + [ + 9.5297111, + 49.211321201 + ], + [ + 9.52848, + 49.211311101 + ], + [ + 9.5269883, + 49.211324801 + ], + [ + 9.5260442, + 49.211353001 + ], + [ + 9.525105, + 49.211397301 + ], + [ + 9.5242758, + 49.211442301 + ], + [ + 9.5234476, + 49.211499901 + ], + [ + 9.5226196, + 49.211558601 + ], + [ + 9.5217993, + 49.211629301 + ], + [ + 9.5198635, + 49.211801901 + ], + [ + 9.5188084, + 49.211901101 + ], + [ + 9.5179245, + 49.211966001 + ], + [ + 9.5165212, + 49.212058101 + ], + [ + 9.5156935, + 49.212107001 + ], + [ + 9.5147957, + 49.212153301 + ], + [ + 9.5139143, + 49.212190401 + ], + [ + 9.5130409, + 49.212205801 + ], + [ + 9.5114054, + 49.212207701 + ], + [ + 9.5106563, + 49.212192901 + ], + [ + 9.509772, + 49.212161601 + ], + [ + 9.5088809, + 49.212114801 + ], + [ + 9.5081858, + 49.212066301 + ], + [ + 9.5075087, + 49.212010001 + ], + [ + 9.5067916, + 49.211933501 + ], + [ + 9.5060603, + 49.211847501 + ], + [ + 9.5053549, + 49.211748201 + ], + [ + 9.5046342, + 49.211639001 + ], + [ + 9.5037559, + 49.211491401 + ], + [ + 9.503064, + 49.211380301 + ], + [ + 9.5020146, + 49.211182501 + ], + [ + 9.5011494, + 49.211009201 + ], + [ + 9.5003299, + 49.210842701 + ], + [ + 9.4993559, + 49.210625401 + ], + [ + 9.4984683, + 49.210419901 + ], + [ + 9.4975828, + 49.210203001 + ], + [ + 9.4956787, + 49.209698201 + ], + [ + 9.494663, + 49.209414801 + ], + [ + 9.493477, + 49.209054301 + ], + [ + 9.4932818, + 49.208994901 + ], + [ + 9.4917035, + 49.208484701 + ], + [ + 9.4902566, + 49.208022801 + ], + [ + 9.4896328, + 49.207827701 + ], + [ + 9.488717, + 49.207545901 + ], + [ + 9.4871072, + 49.207083401 + ], + [ + 9.4859874, + 49.206793101 + ], + [ + 9.4850925, + 49.206572801 + ], + [ + 9.4840303, + 49.206342601 + ], + [ + 9.4834921, + 49.206234901 + ], + [ + 9.4812245, + 49.205839601 + ], + [ + 9.4799729, + 49.205640401 + ], + [ + 9.4790677, + 49.205491101 + ], + [ + 9.4772232, + 49.205180301 + ], + [ + 9.4765119, + 49.205054401 + ], + [ + 9.475478, + 49.204859601 + ], + [ + 9.4748804, + 49.204742901 + ], + [ + 9.4747275, + 49.204713601 + ], + [ + 9.4731914, + 49.204354001 + ], + [ + 9.4724995, + 49.204186701 + ], + [ + 9.4714952, + 49.203916601 + ], + [ + 9.4707961, + 49.203719601 + ], + [ + 9.4701899, + 49.203542901 + ], + [ + 9.4697508, + 49.203412701 + ], + [ + 9.4684993, + 49.203010901 + ], + [ + 9.467625, + 49.202704201 + ], + [ + 9.4666695, + 49.202345401 + ], + [ + 9.465638, + 49.201950901 + ], + [ + 9.4654431, + 49.201874301 + ], + [ + 9.4643652, + 49.201444301 + ], + [ + 9.4633082, + 49.201003201 + ], + [ + 9.461836, + 49.200386101 + ], + [ + 9.4606909, + 49.199919701 + ], + [ + 9.4601363, + 49.199713701 + ], + [ + 9.4590238, + 49.199324401 + ], + [ + 9.4582218, + 49.199060701 + ], + [ + 9.4573819, + 49.198801301 + ], + [ + 9.4567118, + 49.198593101 + ], + [ + 9.4560022, + 49.198384401 + ], + [ + 9.4552854, + 49.198187801 + ], + [ + 9.4545663, + 49.197996801 + ], + [ + 9.4534005, + 49.197716501 + ], + [ + 9.4529271, + 49.197612201 + ], + [ + 9.4522278, + 49.197452101 + ], + [ + 9.4510694, + 49.197220601 + ], + [ + 9.4504844, + 49.197106101 + ], + [ + 9.4499046, + 49.197002301 + ], + [ + 9.4493407, + 49.196911201 + ], + [ + 9.4485047, + 49.196791901 + ], + [ + 9.4477433, + 49.196691501 + ], + [ + 9.4469517, + 49.196587201 + ], + [ + 9.4461518, + 49.196491101 + ], + [ + 9.4454218, + 49.196410701 + ], + [ + 9.4446796, + 49.196324001 + ], + [ + 9.4439736, + 49.196254501 + ], + [ + 9.4432471, + 49.196182301 + ], + [ + 9.4421033, + 49.196073201 + ], + [ + 9.4409085, + 49.195958601 + ], + [ + 9.4384024, + 49.195731901 + ], + [ + 9.4355404, + 49.195467601 + ], + [ + 9.4345428, + 49.195371501 + ], + [ + 9.4338017, + 49.195305801 + ], + [ + 9.4328327, + 49.195214201 + ], + [ + 9.4317309, + 49.195113201 + ], + [ + 9.4309541, + 49.195034101 + ], + [ + 9.429936, + 49.194916101 + ], + [ + 9.4290302, + 49.194792601 + ], + [ + 9.4281959, + 49.194656101 + ], + [ + 9.4273951, + 49.194502401 + ], + [ + 9.4267601, + 49.194363401 + ], + [ + 9.4260789, + 49.194189501 + ], + [ + 9.4256188, + 49.194062501 + ], + [ + 9.4251928, + 49.193938301 + ], + [ + 9.4246825, + 49.193769601 + ], + [ + 9.4241746, + 49.193588101 + ], + [ + 9.4236947, + 49.193405201 + ], + [ + 9.4229689, + 49.193096801 + ], + [ + 9.4222797, + 49.192773701 + ], + [ + 9.4215872, + 49.192403901 + ], + [ + 9.4210577, + 49.192093901 + ], + [ + 9.4205211, + 49.191752201 + ], + [ + 9.4199881, + 49.191381501 + ], + [ + 9.4195118, + 49.191016101 + ], + [ + 9.4191152, + 49.190684101 + ], + [ + 9.4186556, + 49.190265801 + ], + [ + 9.4182757, + 49.189891501 + ], + [ + 9.4180059, + 49.189596201 + ], + [ + 9.4176042, + 49.189118001 + ], + [ + 9.4173113, + 49.188722401 + ], + [ + 9.417061, + 49.188346301 + ], + [ + 9.4168164, + 49.187948001 + ], + [ + 9.416621, + 49.187575901 + ], + [ + 9.4164235, + 49.187156801 + ], + [ + 9.4163184, + 49.186908801 + ], + [ + 9.4162471, + 49.186740601 + ], + [ + 9.4161579, + 49.186482701 + ], + [ + 9.4160961, + 49.186304301 + ], + [ + 9.4159622, + 49.185872701 + ], + [ + 9.4155771, + 49.184452601 + ], + [ + 9.415358, + 49.183791301 + ], + [ + 9.4151219, + 49.183242801 + ], + [ + 9.4149034, + 49.182829201 + ], + [ + 9.4145292, + 49.182237501 + ], + [ + 9.4142545, + 49.181856301 + ], + [ + 9.4139314, + 49.181483801 + ], + [ + 9.4135871, + 49.181105101 + ], + [ + 9.4131874, + 49.180723901 + ], + [ + 9.4130275, + 49.180577201 + ], + [ + 9.4127016, + 49.180299401 + ], + [ + 9.412193, + 49.179897701 + ], + [ + 9.4120012, + 49.179763701 + ], + [ + 9.4114855, + 49.179436101 + ], + [ + 9.4111487, + 49.179217801 + ], + [ + 9.4106353, + 49.178930301 + ], + [ + 9.4100494, + 49.178631001 + ], + [ + 9.4097138, + 49.178477401 + ], + [ + 9.4092807, + 49.178291601 + ], + [ + 9.4088282, + 49.178110201 + ], + [ + 9.4083394, + 49.177939501 + ], + [ + 9.4077332, + 49.177753301 + ], + [ + 9.4071194, + 49.177577401 + ], + [ + 9.4065207, + 49.177431601 + ], + [ + 9.4058067, + 49.177272501 + ], + [ + 9.404991, + 49.177099301 + ], + [ + 9.4037341, + 49.176819201 + ], + [ + 9.4028816, + 49.176613301 + ], + [ + 9.4019825, + 49.176394301 + ], + [ + 9.4001337, + 49.175886601 + ], + [ + 9.3993553, + 49.175665601 + ], + [ + 9.398962, + 49.175554301 + ], + [ + 9.3981317, + 49.175316401 + ], + [ + 9.397207, + 49.175066701 + ], + [ + 9.3965208, + 49.174909301 + ], + [ + 9.3958532, + 49.174769701 + ], + [ + 9.3951007, + 49.174608401 + ], + [ + 9.3943825, + 49.174494901 + ], + [ + 9.3936721, + 49.174395301 + ], + [ + 9.3928784, + 49.174290501 + ], + [ + 9.3918952, + 49.174181401 + ], + [ + 9.3909394, + 49.174103801 + ], + [ + 9.3900171, + 49.174049401 + ], + [ + 9.3884826, + 49.173963301 + ], + [ + 9.3879566, + 49.173929801 + ], + [ + 9.3874707, + 49.173892001 + ], + [ + 9.3869875, + 49.173837601 + ], + [ + 9.3864396, + 49.173770401 + ], + [ + 9.3858943, + 49.173690701 + ], + [ + 9.3853146, + 49.173590501 + ], + [ + 9.3846536, + 49.173452501 + ], + [ + 9.3839445, + 49.173277601 + ], + [ + 9.3837302, + 49.173219401 + ], + [ + 9.3828071, + 49.172945401 + ], + [ + 9.3821368, + 49.172700001 + ], + [ + 9.3816398, + 49.172502101 + ], + [ + 9.3811659, + 49.172292401 + ], + [ + 9.3805462, + 49.171986901 + ], + [ + 9.3800883, + 49.171727501 + ], + [ + 9.379654, + 49.171454401 + ], + [ + 9.379229, + 49.171181801 + ], + [ + 9.3788256, + 49.170903501 + ], + [ + 9.3784301, + 49.170606001 + ], + [ + 9.3780505, + 49.170300001 + ], + [ + 9.3777458, + 49.170015601 + ], + [ + 9.3774737, + 49.169731101 + ], + [ + 9.3771754, + 49.169396501 + ], + [ + 9.377061, + 49.169268501 + ], + [ + 9.3768291, + 49.169015201 + ], + [ + 9.3766111, + 49.168746501 + ], + [ + 9.3762108, + 49.168207301 + ], + [ + 9.3755412, + 49.167267101 + ], + [ + 9.3751954, + 49.166805101 + ], + [ + 9.3748272, + 49.166339901 + ], + [ + 9.3745416, + 49.166018101 + ], + [ + 9.3742274, + 49.165699401 + ], + [ + 9.3739051, + 49.165392301 + ], + [ + 9.3735649, + 49.165094101 + ], + [ + 9.3732091, + 49.164809001 + ], + [ + 9.3728403, + 49.164534301 + ], + [ + 9.3724667, + 49.164274301 + ], + [ + 9.3719269, + 49.163929301 + ], + [ + 9.3718085, + 49.163854101 + ], + [ + 9.3713714, + 49.163607501 + ], + [ + 9.3710027, + 49.163400901 + ], + [ + 9.3706179, + 49.163203801 + ], + [ + 9.370215, + 49.163012401 + ], + [ + 9.3696975, + 49.162776601 + ], + [ + 9.3691639, + 49.162549801 + ], + [ + 9.3685325, + 49.162311701 + ], + [ + 9.368054, + 49.162145101 + ], + [ + 9.3675502, + 49.161976001 + ], + [ + 9.3669929, + 49.161810601 + ], + [ + 9.3664804, + 49.161673501 + ], + [ + 9.3659558, + 49.161552701 + ], + [ + 9.3654312, + 49.161438601 + ], + [ + 9.3649027, + 49.161335901 + ], + [ + 9.3642742, + 49.161236501 + ], + [ + 9.363647, + 49.161149201 + ], + [ + 9.3630018, + 49.161068701 + ], + [ + 9.3623613, + 49.161001201 + ], + [ + 9.3572528, + 49.160549801 + ], + [ + 9.3551438, + 49.160355201 + ], + [ + 9.3543497, + 49.160280601 + ], + [ + 9.3535144, + 49.160217701 + ], + [ + 9.3525641, + 49.160162501 + ], + [ + 9.3519351, + 49.160137001 + ], + [ + 9.3513098, + 49.160131701 + ], + [ + 9.3505063, + 49.160116301 + ], + [ + 9.3495619, + 49.160147201 + ], + [ + 9.3485717, + 49.160205501 + ], + [ + 9.3475706, + 49.160294801 + ], + [ + 9.3469772, + 49.160364501 + ], + [ + 9.3463207, + 49.160455101 + ], + [ + 9.3451198, + 49.160640801 + ], + [ + 9.3443913, + 49.160767101 + ], + [ + 9.3424623, + 49.161081201 + ], + [ + 9.3381272, + 49.161795201 + ], + [ + 9.3363134, + 49.162096701 + ], + [ + 9.3352281, + 49.162273101 + ], + [ + 9.3348049, + 49.162325501 + ], + [ + 9.3340959, + 49.162419201 + ], + [ + 9.3333426, + 49.162500601 + ], + [ + 9.3325576, + 49.162562101 + ], + [ + 9.3319766, + 49.162585501 + ], + [ + 9.3313853, + 49.162591301 + ], + [ + 9.3308078, + 49.162583401 + ], + [ + 9.3302166, + 49.162561701 + ], + [ + 9.3297431, + 49.162527901 + ], + [ + 9.3292436, + 49.162480401 + ], + [ + 9.3286497, + 49.162405201 + ], + [ + 9.3280445, + 49.162316101 + ], + [ + 9.3275799, + 49.162224701 + ], + [ + 9.3271189, + 49.162119801 + ], + [ + 9.3265697, + 49.161989501 + ], + [ + 9.3259828, + 49.161836001 + ], + [ + 9.32545, + 49.161665001 + ], + [ + 9.3248896, + 49.161472801 + ], + [ + 9.3243812, + 49.161275401 + ], + [ + 9.3238833, + 49.161062401 + ], + [ + 9.3233754, + 49.160824501 + ], + [ + 9.3230379, + 49.160659101 + ], + [ + 9.3228858, + 49.160580701 + ], + [ + 9.3222522, + 49.160229701 + ], + [ + 9.3221843, + 49.160192801 + ], + [ + 9.3213256, + 49.159665701 + ], + [ + 9.3204216, + 49.159130701 + ], + [ + 9.3197341, + 49.158745101 + ], + [ + 9.3194006, + 49.158568601 + ], + [ + 9.3190574, + 49.158401001 + ], + [ + 9.3187693, + 49.158263701 + ], + [ + 9.3184671, + 49.158126201 + ], + [ + 9.3181868, + 49.158008701 + ], + [ + 9.3178883, + 49.157892601 + ], + [ + 9.3175306, + 49.157753601 + ], + [ + 9.3172032, + 49.157635401 + ], + [ + 9.3168786, + 49.157527601 + ], + [ + 9.316515, + 49.157415201 + ], + [ + 9.3161446, + 49.157308601 + ], + [ + 9.3157252, + 49.157192001 + ], + [ + 9.3153024, + 49.157082701 + ], + [ + 9.3149009, + 49.156991101 + ], + [ + 9.3144961, + 49.156904601 + ], + [ + 9.3140086, + 49.156815001 + ], + [ + 9.3136305, + 49.156756101 + ], + [ + 9.3132545, + 49.156701001 + ], + [ + 9.312873, + 49.156649201 + ], + [ + 9.3124917, + 49.156604701 + ], + [ + 9.3119186, + 49.156558601 + ], + [ + 9.3112421, + 49.156518301 + ], + [ + 9.31078, + 49.156494801 + ], + [ + 9.3102711, + 49.156483401 + ], + [ + 9.3097599, + 49.156483401 + ], + [ + 9.3091631, + 49.156489301 + ], + [ + 9.3085522, + 49.156500701 + ], + [ + 9.3077312, + 49.156536101 + ], + [ + 9.3067938, + 49.156592501 + ], + [ + 9.3057553, + 49.156664801 + ], + [ + 9.305084, + 49.156718301 + ], + [ + 9.3045155, + 49.156767301 + ], + [ + 9.3037536, + 49.156837001 + ], + [ + 9.3025403, + 49.156961201 + ], + [ + 9.3018058, + 49.157044201 + ], + [ + 9.3000628, + 49.157264501 + ], + [ + 9.2987933, + 49.157444801 + ], + [ + 9.2976724, + 49.157621601 + ], + [ + 9.2965803, + 49.157797001 + ], + [ + 9.2954535, + 49.157993901 + ], + [ + 9.2951329, + 49.158049901 + ], + [ + 9.2938773, + 49.158296801 + ], + [ + 9.2933487, + 49.158400801 + ], + [ + 9.2928109, + 49.158513701 + ], + [ + 9.2921722, + 49.158650601 + ], + [ + 9.291755, + 49.158740501 + ], + [ + 9.2912741, + 49.158853401 + ], + [ + 9.29019, + 49.159104101 + ], + [ + 9.2893037, + 49.159323001 + ], + [ + 9.2884847, + 49.159534501 + ], + [ + 9.2880936, + 49.159646801 + ], + [ + 9.2876288, + 49.159725101 + ], + [ + 9.2846512, + 49.160634201 + ], + [ + 9.2825398, + 49.161279501 + ], + [ + 9.281546, + 49.161583201 + ], + [ + 9.2805048, + 49.161899201 + ], + [ + 9.2799363, + 49.162073701 + ], + [ + 9.2798123, + 49.162111701 + ], + [ + 9.279684, + 49.162150901 + ], + [ + 9.2779175, + 49.162693501 + ], + [ + 9.2767232, + 49.163054301 + ], + [ + 9.275770718, + 49.163343697 + ] + ] + } + }, + { + "identifier": "2026-014157--vi-bs.2026-03-30_08-00-00-000.devi-bs.2026-03-30_08-00-00-000_002.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.18114265871978,9.76143460044665,49.180944277392506,9.768279302971354", + "point": "49.18114265871978,9.76143460044665", + "startLcPosition": "78", + "impact": { + "lower": "Kochertalbr\u00fccke", + "upper": "Schw\u00e4bisch Hall", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Schw\u00e4bisch Hall - Kochertalbr\u00fccke", + "coordinate": { + "lat": 49.18114265871978, + "long": 9.76143460044665 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 08:00 bis 16:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 03.04.26 und dem 10.04.26 von 08:00 bis 14:00 Uhr.", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 1.7 km hinter AS Schw\u00e4bisch Hall und 1.1 km vor Kochertalbr\u00fccke", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A6 Erneuerung Gro\u00dfbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.7614346, + 49.181142659 + ], + [ + 9.7623098, + 49.181130901 + ], + [ + 9.7643876, + 49.181093401 + ], + [ + 9.7652396, + 49.181078001 + ], + [ + 9.7662512, + 49.181052201 + ], + [ + 9.7672429, + 49.181009001 + ], + [ + 9.7677598, + 49.180979301 + ], + [ + 9.768279303, + 49.180944277 + ] + ] + } + }, + { + "identifier": "2025-053022--vi-bs.2026-03-31_00-00-00-000.devi-zus.2026-01-31_20-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.1743444800743,9.849948607168114,49.17443869887546,9.867447358986425", + "point": "49.1743444800743,9.849948607168114", + "startLcPosition": "80", + "impact": { + "lower": "Kirchberg", + "upper": "Kochertalbr\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Kochertalbr\u00fccke - Kirchberg", + "startTimestamp": "2026-03-31T00:00:00+02:00", + "coordinate": { + "lat": 49.1743444800743, + "long": 9.849948607168114 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.03.26 um 00:00 Uhr", + "Ende: 03.07.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 3.9 km hinter Kochertalbr\u00fccke und 6.8 km vor AS Kirchberg", + "", + "L\u00e4nge: 1.28 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A6 Bauwerksinstandsetzung AS Ilshofen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.849948607, + 49.17434448 + ], + [ + 9.8520626, + 49.174308601 + ], + [ + 9.8545309, + 49.174286801 + ], + [ + 9.8564703, + 49.174266801 + ], + [ + 9.8583158, + 49.174254601 + ], + [ + 9.8614861, + 49.174264801 + ], + [ + 9.8630285, + 49.174284001 + ], + [ + 9.8632986, + 49.174285601 + ], + [ + 9.8646059, + 49.174321601 + ], + [ + 9.8656863, + 49.174366501 + ], + [ + 9.8663759, + 49.174380501 + ], + [ + 9.867447359, + 49.174438699 + ] + ] + } + }, + { + "identifier": "2025-053022--vi-bs.2026-03-31_00-00-00-000.devi-zus.2026-01-31_20-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.1768488799433,9.88944100222167,49.174384508830386,9.862005092827866", + "point": "49.1768488799433,9.88944100222167", + "startLcPosition": "82", + "impact": { + "lower": "Kochertalbr\u00fccke", + "upper": "Kirchberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Kirchberg - Kochertalbr\u00fccke", + "startTimestamp": "2026-03-31T00:00:00+02:00", + "coordinate": { + "lat": 49.1768488799433, + "long": 9.88944100222167 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.03.26 um 00:00 Uhr", + "Ende: 03.07.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 5.2 km hinter AS Kirchberg und 4.7 km vor Kochertalbr\u00fccke", + "", + "L\u00e4nge: 2.02 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A6 Bauwerksinstandsetzung AS Ilshofen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.889441002, + 49.17684888 + ], + [ + 9.887426, + 49.176632101 + ], + [ + 9.8865332, + 49.176531001 + ], + [ + 9.8845546, + 49.176268101 + ], + [ + 9.8839604, + 49.176197301 + ], + [ + 9.8797092, + 49.175664001 + ], + [ + 9.8772778, + 49.175381001 + ], + [ + 9.8749408, + 49.175130601 + ], + [ + 9.8737712, + 49.175010501 + ], + [ + 9.8725938, + 49.174898201 + ], + [ + 9.870322, + 49.174718401 + ], + [ + 9.8691826, + 49.174640501 + ], + [ + 9.8680437, + 49.174568701 + ], + [ + 9.8663776, + 49.174495501 + ], + [ + 9.8645957, + 49.174430701 + ], + [ + 9.8635034, + 49.174405001 + ], + [ + 9.862005093, + 49.174384509 + ] + ] + } + }, + { + "identifier": "2026-014157--vi-bs.2026-03-30_08-00-00-000.devi-bs.2026-03-30_08-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.17641191386328,9.971379881448449,49.177012305573655,9.965953866997715", + "point": "49.17641191386328,9.971379881448449", + "startLcPosition": "83", + "impact": { + "lower": "Kirchberg", + "upper": "Reu\u00dfenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Reu\u00dfenberg - Kirchberg", + "coordinate": { + "lat": 49.17641191386328, + "long": 9.971379881448449 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 08:00 bis 16:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 03.04.26 und dem 10.04.26 von 08:00 bis 14:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 1.8 km hinter Reu\u00dfenberg und 0.4 km vor AS Kirchberg", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A6 Erneuerung Gro\u00dfbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.971379881, + 49.176411914 + ], + [ + 9.9692401, + 49.176645501 + ], + [ + 9.9672261, + 49.176872501 + ], + [ + 9.9662198, + 49.176985501 + ], + [ + 9.965953867, + 49.177012306 + ] + ] + } + }, + { + "identifier": "2026-014157--vi-bs.2026-03-30_08-00-00-000.devi-bs.2026-03-30_08-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.17418296550841,9.991674939622229,49.17478934184871,9.986265819724544", + "point": "49.17418296550841,9.991674939622229", + "startLcPosition": "83", + "impact": { + "lower": "Kirchberg", + "upper": "Reu\u00dfenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Reu\u00dfenberg - Kirchberg", + "coordinate": { + "lat": 49.17418296550841, + "long": 9.991674939622229 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 08:00 bis 16:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 03.04.26 und dem 10.04.26 von 08:00 bis 14:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 0.3 km hinter Reu\u00dfenberg und 1.9 km vor AS Kirchberg", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A6 Erneuerung Gro\u00dfbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.99167494, + 49.174182966 + ], + [ + 9.9896729, + 49.174408301 + ], + [ + 9.98626582, + 49.174789342 + ] + ] + } + }, + { + "identifier": "2026-014157--vi-bs.2026-03-30_08-00-00-000.devi-bs.2026-03-30_08-00-00-000_002.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.172731183110066,10.009316767280273,49.17289206128453,10.003857238011612", + "point": "49.172731183110066,10.009316767280273", + "startLcPosition": "84", + "impact": { + "lower": "Reu\u00dfenberg", + "upper": "Crailsheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Crailsheim - Reu\u00dfenberg", + "coordinate": { + "lat": 49.172731183110066, + "long": 10.009316767280273 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 08:00 bis 16:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 03.04.26 und dem 10.04.26 von 08:00 bis 14:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 4.9 km hinter AS Crailsheim und 0.6 km vor Reu\u00dfenberg", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A6 Erneuerung Gro\u00dfbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.009316767, + 49.172731183 + ], + [ + 10.0082313, + 49.172720901 + ], + [ + 10.0074711, + 49.172725501 + ], + [ + 10.0065114, + 49.172749501 + ], + [ + 10.0054, + 49.172787701 + ], + [ + 10.0046113, + 49.172836101 + ], + [ + 10.003857238, + 49.172892061 + ] + ] + } + }, + { + "identifier": "2026-013345--vi-bs.2026-04-13_09-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.172780160921015,10.010685696465153,49.172747569525754,10.006588644436523", + "point": "49.172780160921015,10.010685696465153", + "startLcPosition": "84", + "impact": { + "lower": "Reu\u00dfenberg", + "upper": "Crailsheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Crailsheim - Reu\u00dfenberg", + "coordinate": { + "lat": 49.172780160921015, + "long": 10.010685696465153 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 4.8 km hinter AS Crailsheim und 0.8 km vor Reu\u00dfenberg", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A6 von Crailsheim (AS) nach Reu\u00dfenberg (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.010685696, + 49.172780161 + ], + [ + 10.0102319, + 49.172757801 + ], + [ + 10.0093609, + 49.172731601 + ], + [ + 10.0082313, + 49.172720901 + ], + [ + 10.0074711, + 49.172725501 + ], + [ + 10.006588644, + 49.17274757 + ] + ] + } + }, + { + "identifier": "2025-052223--vi-bs.2026-04-01_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.21039297689306,10.158811740534984,49.20535469762037,10.216686437640899", + "point": "49.21039297689306,10.158811740534984", + "startLcPosition": "87", + "impact": { + "lower": "Feuchtwangen/Crailsheim", + "upper": "Schleehardt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Schleehardt - Feuchtwangen/Crailsheim", + "startTimestamp": "2026-03-09T00:00:00+01:00", + "coordinate": { + "lat": 49.21039297689306, + "long": 10.158811740534984 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 00:00 Uhr", + "Ende: 06.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 06.12.26)", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 0.8 km hinter Schleehardt und 1.3 km vor AK Feuchtwangen/Crailsheim", + "", + "L\u00e4nge: 4.37 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A6 von Schleehardt (Parkplatz) nach FeuchtwangenCrailsheim (AK) Schallschutzarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.158811741, + 49.210392977 + ], + [ + 10.1592579, + 49.210458701 + ], + [ + 10.1605202, + 49.210637201 + ], + [ + 10.1617888, + 49.210790801 + ], + [ + 10.1626162, + 49.210876201 + ], + [ + 10.1634411, + 49.210947101 + ], + [ + 10.1642732, + 49.211009401 + ], + [ + 10.1659217, + 49.211078201 + ], + [ + 10.1674285, + 49.211108101 + ], + [ + 10.1681447, + 49.211106901 + ], + [ + 10.1690087, + 49.211104301 + ], + [ + 10.1696287, + 49.211094001 + ], + [ + 10.1705454, + 49.211059901 + ], + [ + 10.1715675, + 49.211010901 + ], + [ + 10.171878, + 49.210986801 + ], + [ + 10.1726807, + 49.210927601 + ], + [ + 10.173325, + 49.210860601 + ], + [ + 10.173815, + 49.210815601 + ], + [ + 10.1745342, + 49.210730301 + ], + [ + 10.1755233, + 49.210604901 + ], + [ + 10.1762528, + 49.210497101 + ], + [ + 10.1770225, + 49.210359401 + ], + [ + 10.1772694, + 49.210318701 + ], + [ + 10.1777712, + 49.210220701 + ], + [ + 10.1782641, + 49.210127201 + ], + [ + 10.1787132, + 49.210037701 + ], + [ + 10.1794353, + 49.209882901 + ], + [ + 10.1803386, + 49.209676701 + ], + [ + 10.181531, + 49.209350501 + ], + [ + 10.1822747, + 49.209123801 + ], + [ + 10.1830071, + 49.208900701 + ], + [ + 10.184407, + 49.208435501 + ], + [ + 10.1850957, + 49.208191101 + ], + [ + 10.1857773, + 49.207953601 + ], + [ + 10.1867938, + 49.207581801 + ], + [ + 10.1878572, + 49.207196201 + ], + [ + 10.1888484, + 49.206820801 + ], + [ + 10.1898104, + 49.206491201 + ], + [ + 10.1905949, + 49.206222901 + ], + [ + 10.1913387, + 49.205991701 + ], + [ + 10.1917249, + 49.205872801 + ], + [ + 10.1922365, + 49.205735701 + ], + [ + 10.1926911, + 49.205612801 + ], + [ + 10.1937671, + 49.205356101 + ], + [ + 10.194309, + 49.205247401 + ], + [ + 10.1949611, + 49.205137201 + ], + [ + 10.1953728, + 49.205068401 + ], + [ + 10.1959864, + 49.204981301 + ], + [ + 10.1965544, + 49.204914601 + ], + [ + 10.1972063, + 49.204859601 + ], + [ + 10.1976594, + 49.204825501 + ], + [ + 10.1981051, + 49.204800701 + ], + [ + 10.1987198, + 49.204785401 + ], + [ + 10.1995511, + 49.204791901 + ], + [ + 10.2001029, + 49.204811201 + ], + [ + 10.200824, + 49.204844701 + ], + [ + 10.2012857, + 49.204876301 + ], + [ + 10.202024, + 49.204938001 + ], + [ + 10.2025487, + 49.204981901 + ], + [ + 10.2045235, + 49.205213901 + ], + [ + 10.2052645, + 49.205293801 + ], + [ + 10.2058787, + 49.205356701 + ], + [ + 10.207116, + 49.205485101 + ], + [ + 10.2076839, + 49.205535801 + ], + [ + 10.208173, + 49.205583301 + ], + [ + 10.2090049, + 49.205649601 + ], + [ + 10.209724, + 49.205683701 + ], + [ + 10.2104732, + 49.205702601 + ], + [ + 10.211221, + 49.205714401 + ], + [ + 10.2120499, + 49.205711901 + ], + [ + 10.2128436, + 49.205686401 + ], + [ + 10.2136314, + 49.205646201 + ], + [ + 10.214639, + 49.205576501 + ], + [ + 10.2154624, + 49.205501401 + ], + [ + 10.2162796, + 49.205411101 + ], + [ + 10.216686438, + 49.205354698 + ] + ] + } + }, + { + "identifier": "2026-017722--vi-bs.2026-04-13_20-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.25629340385091,10.592967078530823,49.25005220253457,10.618412536226026", + "point": "49.25629340385091,10.592967078530823", + "startLcPosition": "100", + "impact": { + "lower": "Kohnweiher", + "upper": "Ansbach", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Ansbach - Kohnweiher", + "coordinate": { + "lat": 49.25629340385091, + "long": 10.592967078530823 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 06:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 06:00 Uhr.", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 0.3 km hinter AS Ansbach und 3.1 km vor Kohnweiher", + "", + "L\u00e4nge: 1.98 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A6 von Hohe Fichte (Parkplatz) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.592967079, + 49.256293404 + ], + [ + 10.5933096, + 49.256217901 + ], + [ + 10.5943724, + 49.255961001 + ], + [ + 10.5951929, + 49.255757301 + ], + [ + 10.596011, + 49.255546101 + ], + [ + 10.5968263, + 49.255328001 + ], + [ + 10.5976333, + 49.255103801 + ], + [ + 10.5987338, + 49.254787901 + ], + [ + 10.5998085, + 49.254452601 + ], + [ + 10.6019634, + 49.253776901 + ], + [ + 10.6041177, + 49.253106301 + ], + [ + 10.6052048, + 49.252777201 + ], + [ + 10.6063075, + 49.252455601 + ], + [ + 10.6069578, + 49.252269401 + ], + [ + 10.6076178, + 49.252086001 + ], + [ + 10.6086937, + 49.251805201 + ], + [ + 10.6097726, + 49.251534701 + ], + [ + 10.610792, + 49.251299501 + ], + [ + 10.6118203, + 49.251077801 + ], + [ + 10.6131173, + 49.250825601 + ], + [ + 10.6140626, + 49.250656901 + ], + [ + 10.6150163, + 49.250500001 + ], + [ + 10.6159906, + 49.250354001 + ], + [ + 10.6169727, + 49.250221801 + ], + [ + 10.618412536, + 49.250052203 + ] + ] + } + }, + { + "identifier": "2024-001206--vi-bs.2025-08-21_00-00-00-000.devi-zus.2024-02-12_00-00-00-000_009.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.268846960857985,10.701993903574305,49.280280729537196,10.720993702405973", + "point": "49.268846960857985,10.701993903574305", + "startLcPosition": "104", + "impact": { + "lower": "Lerchenbuck", + "upper": "Geisberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Geisberg - Lerchenbuck", + "startTimestamp": "2025-08-21T00:00:00+02:00", + "coordinate": { + "lat": 49.268846960857985, + "long": 10.701993903574305 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.08.25 um 00:00 Uhr", + "Ende: 18.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.09.26)", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 0.8 km hinter Geisberg und 4.1 km vor Lerchenbuck", + "", + "L\u00e4nge: 1.88 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A6 Br\u00fcckenneubau Bw 753a" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.701993904, + 49.268846961 + ], + [ + 10.7029454, + 49.269278901 + ], + [ + 10.7041995, + 49.269877701 + ], + [ + 10.7054361, + 49.270495801 + ], + [ + 10.7066726, + 49.271119001 + ], + [ + 10.7078833, + 49.271749901 + ], + [ + 10.7098635, + 49.272856001 + ], + [ + 10.7118141, + 49.273993701 + ], + [ + 10.7126867, + 49.274519601 + ], + [ + 10.713557, + 49.275059901 + ], + [ + 10.7142694, + 49.275507901 + ], + [ + 10.7153209, + 49.276193201 + ], + [ + 10.7175431, + 49.277717701 + ], + [ + 10.7178741, + 49.277950201 + ], + [ + 10.7185797, + 49.278451701 + ], + [ + 10.7200483, + 49.279556501 + ], + [ + 10.7202319, + 49.279698301 + ], + [ + 10.7208859, + 49.280197301 + ], + [ + 10.720993702, + 49.28028073 + ] + ] + } + }, + { + "identifier": "2024-001206--vi-bs.2025-08-21_00-00-00-000.devi-zus.2024-02-12_00-00-00-000_009.f.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.280349818837706,10.720869040430973,49.26896009723467,10.701874477412222", + "point": "49.280349818837706,10.720869040430973", + "startLcPosition": "106", + "impact": { + "lower": "Geisberg", + "upper": "Lerchenbuck", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Lerchenbuck - Geisberg", + "startTimestamp": "2025-08-21T00:00:00+02:00", + "coordinate": { + "lat": 49.280349818837706, + "long": 10.720869040430973 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.08.25 um 00:00 Uhr", + "Ende: 18.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.09.26)", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 4.1 km hinter Lerchenbuck und 0.8 km vor Geisberg", + "", + "L\u00e4nge: 1.88 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A6 Br\u00fcckenneubau Bw 753a" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.72086904, + 49.280349819 + ], + [ + 10.7200634, + 49.279729101 + ], + [ + 10.7198996, + 49.279608801 + ], + [ + 10.7190406, + 49.278957801 + ], + [ + 10.7184325, + 49.278514701 + ], + [ + 10.7178713, + 49.278123301 + ], + [ + 10.7174062, + 49.277796001 + ], + [ + 10.7166384, + 49.277276501 + ], + [ + 10.7151727, + 49.276284601 + ], + [ + 10.7142966, + 49.275705101 + ], + [ + 10.7134171, + 49.275146701 + ], + [ + 10.7125523, + 49.274606001 + ], + [ + 10.7116802, + 49.274074401 + ], + [ + 10.7097203, + 49.272955001 + ], + [ + 10.7077297, + 49.271861901 + ], + [ + 10.706524, + 49.271220301 + ], + [ + 10.7053078, + 49.270600301 + ], + [ + 10.7040573, + 49.269992201 + ], + [ + 10.7028156, + 49.269383201 + ], + [ + 10.701874477, + 49.268960097 + ] + ] + } + }, + { + "identifier": "2026-017427--vi-bs.2026-04-16_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_002.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.30455728157949,10.764296705337365,49.29904542417375,10.748567476552559", + "point": "49.30455728157949,10.764296705337365", + "startLcPosition": "107", + "impact": { + "lower": "Lichtenau", + "upper": "Klosterwald", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Klosterwald - Lichtenau", + "coordinate": { + "lat": 49.30455728157949, + "long": 10.764296705337365 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 20:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 1.4 km hinter Klosterwald und 3.0 km vor AS Lichtenau", + "", + "L\u00e4nge: 1.3 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A6 von Neuendettelsau (AS) nach Lerchenbuck (Parkplatz) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.764296705, + 49.304557282 + ], + [ + 10.7642383, + 49.304544801 + ], + [ + 10.763117, + 49.304279901 + ], + [ + 10.7623512, + 49.304089801 + ], + [ + 10.7617042, + 49.303921201 + ], + [ + 10.7608147, + 49.303686001 + ], + [ + 10.7600707, + 49.303461501 + ], + [ + 10.7586559, + 49.303015601 + ], + [ + 10.7572494, + 49.302561201 + ], + [ + 10.7558709, + 49.302073201 + ], + [ + 10.7545299, + 49.301563801 + ], + [ + 10.7531869, + 49.301050401 + ], + [ + 10.7525212, + 49.300782601 + ], + [ + 10.7518639, + 49.300507801 + ], + [ + 10.7515632, + 49.300383101 + ], + [ + 10.7506446, + 49.299978701 + ], + [ + 10.7497328, + 49.299573501 + ], + [ + 10.748567477, + 49.299045424 + ] + ] + } + }, + { + "identifier": "2026-017427--vi-bs.2026-04-15_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.3052910586487,10.768273024069657,49.302791998233346,10.757963774716352", + "point": "49.3052910586487,10.768273024069657", + "startLcPosition": "107", + "impact": { + "lower": "Lichtenau", + "upper": "Klosterwald", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Klosterwald - Lichtenau", + "coordinate": { + "lat": 49.3052910586487, + "long": 10.768273024069657 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 1.1 km hinter Klosterwald und 3.8 km vor AS Lichtenau", + "", + "L\u00e4nge: 0.8 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A6 von Neuendettelsau (AS) nach Lerchenbuck (Parkplatz) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.768273024, + 49.305291059 + ], + [ + 10.7673025, + 49.305138801 + ], + [ + 10.7663248, + 49.304969301 + ], + [ + 10.7653549, + 49.304783401 + ], + [ + 10.7642383, + 49.304544801 + ], + [ + 10.763117, + 49.304279901 + ], + [ + 10.7623512, + 49.304089801 + ], + [ + 10.7617042, + 49.303921201 + ], + [ + 10.7608147, + 49.303686001 + ], + [ + 10.7600707, + 49.303461501 + ], + [ + 10.7586559, + 49.303015601 + ], + [ + 10.757963775, + 49.302791998 + ] + ] + } + }, + { + "identifier": "2026-017427--vi-bs.2026-04-14_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.30561933521842,10.770984825273644,49.30357394185987,10.760443329850293", + "point": "49.30561933521842,10.770984825273644", + "startLcPosition": "107", + "impact": { + "lower": "Lichtenau", + "upper": "Klosterwald", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Klosterwald - Lichtenau", + "coordinate": { + "lat": 49.30561933521842, + "long": 10.770984825273644 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 0.9 km hinter Klosterwald und 4.0 km vor AS Lichtenau", + "", + "L\u00e4nge: 0.8 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A6 von Neuendettelsau (AS) nach Lerchenbuck (Parkplatz) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.770984825, + 49.305619335 + ], + [ + 10.7708645, + 49.305608201 + ], + [ + 10.7702732, + 49.305548501 + ], + [ + 10.7696776, + 49.305480301 + ], + [ + 10.769092, + 49.305410401 + ], + [ + 10.7684913, + 49.305325301 + ], + [ + 10.7673025, + 49.305138801 + ], + [ + 10.7663248, + 49.304969301 + ], + [ + 10.7653549, + 49.304783401 + ], + [ + 10.7642383, + 49.304544801 + ], + [ + 10.763117, + 49.304279901 + ], + [ + 10.7623512, + 49.304089801 + ], + [ + 10.7617042, + 49.303921201 + ], + [ + 10.7608147, + 49.303686001 + ], + [ + 10.76044333, + 49.303573942 + ] + ] + } + }, + { + "identifier": "2026-017427--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.30547300740884,10.783983207203496,49.3052910586487,10.768273024069657", + "point": "49.30547300740884,10.783983207203496", + "startLcPosition": "108", + "impact": { + "lower": "Lerchenbuck", + "upper": "Neuendettelsau", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Neuendettelsau - Lerchenbuck", + "coordinate": { + "lat": 49.30547300740884, + "long": 10.783983207203496 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 0.6 km hinter AS Neuendettelsau und 0.4 km vor Lerchenbuck", + "", + "L\u00e4nge: 1.15 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A6 von Neuendettelsau (AS) nach Lerchenbuck (Parkplatz) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.783983207, + 49.305473007 + ], + [ + 10.7829992, + 49.305547401 + ], + [ + 10.7821199, + 49.305617601 + ], + [ + 10.7814047, + 49.305663901 + ], + [ + 10.7805324, + 49.305722401 + ], + [ + 10.779106, + 49.305796001 + ], + [ + 10.7780642, + 49.305842301 + ], + [ + 10.7776649, + 49.305850601 + ], + [ + 10.7771006, + 49.305862301 + ], + [ + 10.7765748, + 49.305865501 + ], + [ + 10.7759741, + 49.305866501 + ], + [ + 10.774775, + 49.305860401 + ], + [ + 10.7746272, + 49.305855101 + ], + [ + 10.7739597, + 49.305828301 + ], + [ + 10.7733223, + 49.305794201 + ], + [ + 10.7726845, + 49.305761801 + ], + [ + 10.7720479, + 49.305717701 + ], + [ + 10.7708645, + 49.305608201 + ], + [ + 10.7702732, + 49.305548501 + ], + [ + 10.7696776, + 49.305480301 + ], + [ + 10.769092, + 49.305410401 + ], + [ + 10.7684913, + 49.305325301 + ], + [ + 10.768273024, + 49.305291059 + ] + ] + } + }, + { + "identifier": "2025-050027--vi-bs.2026-04-20_00-00-00-000.devi-zus.2026-04-20_00-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.31479772739951,10.846464131086027,49.30959070305833,10.9076865369805", + "point": "49.31479772739951,10.846464131086027", + "startLcPosition": "109", + "impact": { + "lower": "Dechenwald", + "upper": "Auergr\u00fcndel", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> N\u00fcrnberg", + "title": "A6 | Auergr\u00fcndel - Dechenwald", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 49.31479772739951, + "long": 10.846464131086027 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 05.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.12.26)", + "", + "A6: Heilbronn -> N\u00fcrnberg, zwischen 1.6 km hinter Auergr\u00fcndel und 0.2 km vor Dechenwald", + "", + "L\u00e4nge: 4.6 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A6 Br\u00fcckenneubau Gr\u00fcnbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.846464131, + 49.314797727 + ], + [ + 10.848038, + 49.315009901 + ], + [ + 10.8488361, + 49.315106501 + ], + [ + 10.8496361, + 49.315195301 + ], + [ + 10.850896, + 49.315321501 + ], + [ + 10.8521515, + 49.315429701 + ], + [ + 10.8546713, + 49.315611401 + ], + [ + 10.8559432, + 49.315690301 + ], + [ + 10.8572216, + 49.315764701 + ], + [ + 10.8597513, + 49.315884401 + ], + [ + 10.8600103, + 49.315891601 + ], + [ + 10.861726, + 49.315946001 + ], + [ + 10.8634448, + 49.315989701 + ], + [ + 10.8650008, + 49.316011701 + ], + [ + 10.8665705, + 49.316028301 + ], + [ + 10.8676973, + 49.316032001 + ], + [ + 10.8688329, + 49.316028701 + ], + [ + 10.8699645, + 49.316021301 + ], + [ + 10.8710986, + 49.316004601 + ], + [ + 10.8722938, + 49.315972601 + ], + [ + 10.8734754, + 49.315942001 + ], + [ + 10.8746638, + 49.315905701 + ], + [ + 10.8758591, + 49.315862201 + ], + [ + 10.8773869, + 49.315795101 + ], + [ + 10.8781526, + 49.315760201 + ], + [ + 10.8801958, + 49.315658201 + ], + [ + 10.8820266, + 49.315515701 + ], + [ + 10.8823353, + 49.315492901 + ], + [ + 10.8838745, + 49.315365201 + ], + [ + 10.8850407, + 49.315251901 + ], + [ + 10.8862052, + 49.315130901 + ], + [ + 10.8864758, + 49.315098401 + ], + [ + 10.8874835, + 49.314977401 + ], + [ + 10.8885378, + 49.314838601 + ], + [ + 10.8896009, + 49.314686501 + ], + [ + 10.8911277, + 49.314436701 + ], + [ + 10.8918884, + 49.314305401 + ], + [ + 10.892642, + 49.314164501 + ], + [ + 10.893454, + 49.314005701 + ], + [ + 10.8942608, + 49.313837301 + ], + [ + 10.8950594, + 49.313660901 + ], + [ + 10.8958544, + 49.313478001 + ], + [ + 10.8966123, + 49.313295001 + ], + [ + 10.8973745, + 49.313105301 + ], + [ + 10.8981135, + 49.312905201 + ], + [ + 10.8988589, + 49.312697501 + ], + [ + 10.8997143, + 49.312456401 + ], + [ + 10.9005563, + 49.312206001 + ], + [ + 10.9013902, + 49.311945301 + ], + [ + 10.9022191, + 49.311679001 + ], + [ + 10.9029601, + 49.311425101 + ], + [ + 10.9036957, + 49.311167701 + ], + [ + 10.9051466, + 49.310628101 + ], + [ + 10.9059534, + 49.310308301 + ], + [ + 10.9067496, + 49.309983401 + ], + [ + 10.9075458, + 49.309651601 + ], + [ + 10.907686537, + 49.309590703 + ] + ] + } + }, + { + "identifier": "2025-050027--vi-bs.2026-04-20_00-00-00-000.devi-zus.2026-04-20_00-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.309684922529364,10.907782780808791,49.31492617321829,10.846423352329372", + "point": "49.309684922529364,10.907782780808791", + "startLcPosition": "110", + "impact": { + "lower": "Auergr\u00fcndel", + "upper": "Dechenwald", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Heilbronn", + "title": "A6 | Dechenwald - Auergr\u00fcndel", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 49.309684922529364, + "long": 10.907782780808791 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 05.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.12.26)", + "", + "A6: N\u00fcrnberg -> Heilbronn, zwischen 0.2 km hinter Dechenwald und 1.6 km vor Auergr\u00fcndel", + "", + "L\u00e4nge: 4.6 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A6 Br\u00fcckenneubau Gr\u00fcnbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.907782781, + 49.309684923 + ], + [ + 10.9076449, + 49.309745801 + ], + [ + 10.9068523, + 49.310078901 + ], + [ + 10.9060212, + 49.310415701 + ], + [ + 10.9052415, + 49.310720001 + ], + [ + 10.9037904, + 49.311265701 + ], + [ + 10.9030523, + 49.311526501 + ], + [ + 10.9023077, + 49.311782701 + ], + [ + 10.9014816, + 49.312051101 + ], + [ + 10.9006461, + 49.312310701 + ], + [ + 10.8997983, + 49.312561101 + ], + [ + 10.8989355, + 49.312803601 + ], + [ + 10.8981876, + 49.313012001 + ], + [ + 10.8974414, + 49.313214001 + ], + [ + 10.8966854, + 49.313403001 + ], + [ + 10.8959216, + 49.313586301 + ], + [ + 10.8951178, + 49.313770401 + ], + [ + 10.8943143, + 49.313947401 + ], + [ + 10.8935026, + 49.314115201 + ], + [ + 10.8926876, + 49.314275301 + ], + [ + 10.8919336, + 49.314414101 + ], + [ + 10.891174, + 49.314547401 + ], + [ + 10.8896407, + 49.314797601 + ], + [ + 10.888579, + 49.314951001 + ], + [ + 10.8875032, + 49.315087701 + ], + [ + 10.8874004, + 49.315100501 + ], + [ + 10.8862388, + 49.315245001 + ], + [ + 10.8850729, + 49.315367301 + ], + [ + 10.8839067, + 49.315477401 + ], + [ + 10.8823505, + 49.315610101 + ], + [ + 10.8820434, + 49.315632401 + ], + [ + 10.8802146, + 49.315771901 + ], + [ + 10.8784602, + 49.315867701 + ], + [ + 10.8774017, + 49.315908901 + ], + [ + 10.8758721, + 49.315976201 + ], + [ + 10.8746813, + 49.316018401 + ], + [ + 10.8736224, + 49.316049601 + ], + [ + 10.873495, + 49.316053401 + ], + [ + 10.8723082, + 49.316084701 + ], + [ + 10.8711046, + 49.316120201 + ], + [ + 10.8699717, + 49.316134001 + ], + [ + 10.868835, + 49.316142101 + ], + [ + 10.8676973, + 49.316144001 + ], + [ + 10.8665619, + 49.316140901 + ], + [ + 10.8649969, + 49.316130001 + ], + [ + 10.8634347, + 49.316104101 + ], + [ + 10.8617158, + 49.316060701 + ], + [ + 10.8601466, + 49.316014001 + ], + [ + 10.8599979, + 49.316009601 + ], + [ + 10.8597404, + 49.316002201 + ], + [ + 10.8571959, + 49.315879001 + ], + [ + 10.8559207, + 49.315813001 + ], + [ + 10.8546534, + 49.315743801 + ], + [ + 10.8521232, + 49.315559701 + ], + [ + 10.85086, + 49.315450701 + ], + [ + 10.8496028, + 49.315327001 + ], + [ + 10.848799, + 49.315238001 + ], + [ + 10.8479917, + 49.315140701 + ], + [ + 10.846423352, + 49.314926173 + ] + ] + } + }, + { + "identifier": "2026-017524--vi-bs.2026-04-09_07-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.41017518657567,11.758967495847465,49.39853072834005,11.84566803526203", + "point": "49.41017518657567,11.758967495847465", + "startLcPosition": "135", + "impact": { + "lower": "Laubenschlag", + "upper": "Brunnberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Pilsen", + "title": "A6 | Brunnberg - Laubenschlag", + "coordinate": { + "lat": 49.41017518657567, + "long": 11.758967495847465 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 20:00 Uhr", + "", + "A6: N\u00fcrnberg -> Pilsen, zwischen 1.1 km hinter Brunnberg und 1.0 km vor Laubenschlag", + "", + "L\u00e4nge: 6.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A6 von Brunnberg (Parkplatz) nach Laubenschlag (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.758967496, + 49.410175187 + ], + [ + 11.760051, + 49.409773901 + ], + [ + 11.7616078, + 49.409192301 + ], + [ + 11.7622536, + 49.408980101 + ], + [ + 11.7627027, + 49.408845301 + ], + [ + 11.7637849, + 49.408563901 + ], + [ + 11.7645094, + 49.408404701 + ], + [ + 11.7654445, + 49.408238701 + ], + [ + 11.7661877, + 49.408130801 + ], + [ + 11.7668726, + 49.408042901 + ], + [ + 11.7677497, + 49.407965301 + ], + [ + 11.7684002, + 49.407922401 + ], + [ + 11.769154, + 49.407888001 + ], + [ + 11.7715212, + 49.407786001 + ], + [ + 11.7721535, + 49.407751101 + ], + [ + 11.7727859, + 49.407710701 + ], + [ + 11.773821, + 49.407612501 + ], + [ + 11.7756207, + 49.407330101 + ], + [ + 11.776605, + 49.407129401 + ], + [ + 11.7775053, + 49.406892101 + ], + [ + 11.7791243, + 49.406347501 + ], + [ + 11.7806764, + 49.405701301 + ], + [ + 11.7823841, + 49.404754901 + ], + [ + 11.7832723, + 49.404191301 + ], + [ + 11.7840877, + 49.403526501 + ], + [ + 11.7843761, + 49.403307301 + ], + [ + 11.7848602, + 49.402914601 + ], + [ + 11.7863712, + 49.401602901 + ], + [ + 11.7875801, + 49.400560901 + ], + [ + 11.7880039, + 49.400220401 + ], + [ + 11.7886231, + 49.399769301 + ], + [ + 11.7897461, + 49.399012101 + ], + [ + 11.7901592, + 49.398748601 + ], + [ + 11.7908216, + 49.398394301 + ], + [ + 11.7921774, + 49.397787101 + ], + [ + 11.7928208, + 49.397548001 + ], + [ + 11.7936243, + 49.397288601 + ], + [ + 11.7946158, + 49.397033701 + ], + [ + 11.7951984, + 49.396904001 + ], + [ + 11.796164, + 49.396730301 + ], + [ + 11.7966938, + 49.396654301 + ], + [ + 11.7974199, + 49.396576901 + ], + [ + 11.7982814, + 49.396515901 + ], + [ + 11.7990926, + 49.396494601 + ], + [ + 11.7999688, + 49.396498001 + ], + [ + 11.8006647, + 49.396522701 + ], + [ + 11.8014349, + 49.396591401 + ], + [ + 11.8026594, + 49.396753501 + ], + [ + 11.8040434, + 49.397007201 + ], + [ + 11.8056101, + 49.397374001 + ], + [ + 11.8065737, + 49.397658601 + ], + [ + 11.8074785, + 49.397958401 + ], + [ + 11.8084212, + 49.398300701 + ], + [ + 11.8093393, + 49.398673001 + ], + [ + 11.8116679, + 49.399703401 + ], + [ + 11.8129142, + 49.400212401 + ], + [ + 11.8140262, + 49.400580801 + ], + [ + 11.8151238, + 49.400886001 + ], + [ + 11.816028, + 49.401105401 + ], + [ + 11.8171151, + 49.401349301 + ], + [ + 11.8181639, + 49.401528801 + ], + [ + 11.8191496, + 49.401666401 + ], + [ + 11.8201805, + 49.401771701 + ], + [ + 11.820828, + 49.401819001 + ], + [ + 11.8222148, + 49.401892301 + ], + [ + 11.8233887, + 49.401883801 + ], + [ + 11.8245681, + 49.401858501 + ], + [ + 11.8256239, + 49.401782701 + ], + [ + 11.8269484, + 49.401635901 + ], + [ + 11.8282127, + 49.401444701 + ], + [ + 11.8294208, + 49.401214301 + ], + [ + 11.8301878, + 49.401038901 + ], + [ + 11.8313249, + 49.400745101 + ], + [ + 11.8337488, + 49.400101201 + ], + [ + 11.8358395, + 49.399604201 + ], + [ + 11.8384887, + 49.399135201 + ], + [ + 11.8396677, + 49.398983101 + ], + [ + 11.8402161, + 49.398929001 + ], + [ + 11.8419427, + 49.398775301 + ], + [ + 11.8447246, + 49.398594701 + ], + [ + 11.845668035, + 49.398530728 + ] + ] + } + }, + { + "identifier": "2024-015162--vi-bs.2025-05-17_00-00-00-000.devi-zus.2024-04-08_00-00-00-000_044.f.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.3978955731076,11.852475865349126,49.39522739726455,11.865609503217458", + "point": "49.3978955731076,11.852475865349126", + "startLcPosition": "136", + "impact": { + "lower": "Amberg-S\u00fcd", + "upper": "Amberg-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Pilsen", + "title": "A6 | Amberg-West - Amberg-S\u00fcd", + "startTimestamp": "2025-05-17T00:00:00+02:00", + "coordinate": { + "lat": 49.3978955731076, + "long": 11.852475865349126 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.05.25 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A6: N\u00fcrnberg -> Pilsen, zwischen 6.9 km hinter AS Amberg-West und 3.5 km vor AS Amberg-S\u00fcd", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A6 Absicherung Baustellenzufahrt PWC Laubenschlag" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.852475865, + 49.397895573 + ], + [ + 11.8525918, + 49.397881401 + ], + [ + 11.8539155, + 49.397696301 + ], + [ + 11.8543437, + 49.397632001 + ], + [ + 11.8552682, + 49.397483601 + ], + [ + 11.8569473, + 49.397188501 + ], + [ + 11.8587794, + 49.396819801 + ], + [ + 11.8604794, + 49.396449001 + ], + [ + 11.862866, + 49.395881301 + ], + [ + 11.8629819, + 49.395860601 + ], + [ + 11.863119, + 49.395823001 + ], + [ + 11.8636963, + 49.395680801 + ], + [ + 11.8646917, + 49.395444901 + ], + [ + 11.865609503, + 49.395227397 + ] + ] + } + }, + { + "identifier": "2024-015162--vi-bs.2025-05-17_00-00-00-000.devi-zus.2024-04-08_00-00-00-000_044.f.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.39532290207851,11.86566166207528,49.39801443484682,11.852508923342743", + "point": "49.39532290207851,11.86566166207528", + "startLcPosition": "138", + "impact": { + "lower": "Amberg-West", + "upper": "Amberg-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Pilsen -> N\u00fcrnberg", + "title": "A6 | Amberg-S\u00fcd - Amberg-West", + "startTimestamp": "2025-05-17T00:00:00+02:00", + "coordinate": { + "lat": 49.39532290207851, + "long": 11.86566166207528 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.05.25 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A6: Pilsen -> N\u00fcrnberg, zwischen 3.5 km hinter AS Amberg-S\u00fcd und 6.9 km vor AS Amberg-West", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A6 Absicherung Baustellenzufahrt PWC Laubenschlag" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.865661662, + 49.395322902 + ], + [ + 11.8655804, + 49.395341201 + ], + [ + 11.8648335, + 49.395529701 + ], + [ + 11.8643254, + 49.395658001 + ], + [ + 11.8632172, + 49.395923301 + ], + [ + 11.8630443, + 49.395964701 + ], + [ + 11.8627093, + 49.396044901 + ], + [ + 11.8622344, + 49.396165101 + ], + [ + 11.8605179, + 49.396556001 + ], + [ + 11.8588376, + 49.396928001 + ], + [ + 11.857376, + 49.397223201 + ], + [ + 11.8565514, + 49.397380201 + ], + [ + 11.8552171, + 49.397620101 + ], + [ + 11.8543664, + 49.397753101 + ], + [ + 11.8526388, + 49.397999601 + ], + [ + 11.852508923, + 49.398014435 + ] + ] + } + }, + { + "identifier": "2024-027078--vi-fbm.2025-03-16_06-00-00-000.devi-zus.2024-06-11_06-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.20382468133219,6.958449381095849,49.20641121763748,6.963080314886089", + "point": "49.20382468133219,6.958449381095849", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 687.28 --> km 686.83", + "title": "A6 Grenzkontrollen", + "startTimestamp": "2025-03-16T06:00:00+01:00", + "coordinate": { + "lat": 49.20382468133219, + "long": 6.958449381095849 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.25 um 06:00 Uhr", + "Ende: 15.09.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.09.26)", + "", + "A6: km 687.28 --> km 686.83", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A6 Grenzkontrollen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.958449381, + 49.203824681 + ], + [ + 6.9588928, + 49.204014301 + ], + [ + 6.9592295, + 49.204172301 + ], + [ + 6.9595273, + 49.204315201 + ], + [ + 6.95988, + 49.204497101 + ], + [ + 6.9602312, + 49.204685001 + ], + [ + 6.9604709, + 49.204823901 + ], + [ + 6.9608302, + 49.205029801 + ], + [ + 6.9612173, + 49.205262801 + ], + [ + 6.9618955, + 49.205680801 + ], + [ + 6.9626675, + 49.206156601 + ], + [ + 6.9629569, + 49.206334901 + ], + [ + 6.963080315, + 49.206411218 + ] + ] + } + }, + { + "identifier": "2025-012076--vi-bs.2026-03-30_12-00-00-000.devi-zus.2025-03-17_00-00-00-000_007.de70", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.5540554351689,8.350874496910256,49.55314951143348,8.352604037260571", + "point": "49.5540554351689,8.350874496910256", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "Ersatzneubau BW 6416707 AS Frankenthal", + "startTimestamp": "2026-03-30T12:00:00+02:00", + "coordinate": { + "lat": 49.5540554351689, + "long": 8.350874496910256 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 12:00 Uhr", + "Ende: 17.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.01.27)", + "", + "Auffahrt auf die L523", + "", + "L\u00e4nge: 0.16 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Ersatzneubau BW 6416707 AS Frankenthal" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.350874497, + 49.554055435 + ], + [ + 8.3509607, + 49.553993701 + ], + [ + 8.3512115, + 49.553771901 + ], + [ + 8.3514228, + 49.553626001 + ], + [ + 8.352604037, + 49.553149511 + ] + ] + } + }, + { + "identifier": "2025-012076--vi-bs.2025-06-24_00-00-00-000.devi-zus.2025-03-17_00-00-00-000_007.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.55523994535314,8.35627773936572,49.55470549458175,8.35539627510427", + "point": "49.55523994535314,8.35627773936572", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Frankenthal (aus Richtung Ludwigshafen-Nord)", + "title": "Ersatzneubau BW 6416707 AS Frankenthal", + "startTimestamp": "2025-06-24T00:00:00+02:00", + "coordinate": { + "lat": 49.55523994535314, + "long": 8.35627773936572 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.06.25 um 00:00 Uhr", + "Ende: 21.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.01.27)", + "", + "Auffahrt auf die A6: AS Frankenthal (aus Richtung Ludwigshafen-Nord)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 4 m", + "", + "Ersatzneubau BW 6416707 AS Frankenthal" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.356277739, + 49.555239945 + ], + [ + 8.3562852, + 49.555175701 + ], + [ + 8.3562561, + 49.555069701 + ], + [ + 8.3561873, + 49.554969201 + ], + [ + 8.3560803, + 49.554886001 + ], + [ + 8.3559262, + 49.554813801 + ], + [ + 8.3556552, + 49.554744101 + ], + [ + 8.355396275, + 49.554705495 + ] + ] + } + }, + { + "identifier": "2025-012076--vi-bs.2025-06-24_00-00-00-000.devi-zus.2025-03-17_00-00-00-000_007.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.55449519754422,8.352561285593998,49.55574974392918,8.352869858557474", + "point": "49.55449519754422,8.352561285593998", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Frankenthal (aus Richtung Ludwigshafen-Nord)", + "title": "Ersatzneubau BW 6416707 AS Frankenthal", + "startTimestamp": "2025-06-24T00:00:00+02:00", + "coordinate": { + "lat": 49.55449519754422, + "long": 8.352561285593998 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.06.25 um 00:00 Uhr", + "Ende: 21.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.01.27)", + "", + "Abfahrt von der A6: AS Frankenthal (aus Richtung Ludwigshafen-Nord)", + "", + "L\u00e4nge: 0.33 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Ersatzneubau BW 6416707 AS Frankenthal" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.352561286, + 49.554495198 + ], + [ + 8.3525212, + 49.554494001 + ], + [ + 8.3515114, + 49.554562001 + ], + [ + 8.3513458, + 49.554601401 + ], + [ + 8.3512278, + 49.554651201 + ], + [ + 8.351132, + 49.554712301 + ], + [ + 8.3510352, + 49.554797601 + ], + [ + 8.3509789, + 49.554890101 + ], + [ + 8.3509433, + 49.555022301 + ], + [ + 8.3509669, + 49.555165901 + ], + [ + 8.3510946, + 49.555316801 + ], + [ + 8.3512754, + 49.555423101 + ], + [ + 8.3522902, + 49.555825801 + ], + [ + 8.3524092, + 49.555857401 + ], + [ + 8.3525424, + 49.555865501 + ], + [ + 8.3527029, + 49.555840001 + ], + [ + 8.3528271, + 49.555785001 + ], + [ + 8.352869859, + 49.555749744 + ] + ] + } + } + ] + }, + "A7": { + "roadworks": [ + { + "identifier": "2026-017586--vi-bs.2026-04-09_07-30-00-000.devi-zus.2026-04-09_07-30-00-000_001.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "47.675190707014224,10.380392022035583,47.675953576897584,10.378133776105187", + "point": "47.675190707014224,10.380392022035583", + "startLcPosition": "5", + "impact": { + "lower": "Allg\u00e4u", + "upper": "Rottachtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " F\u00fcssen/Reutte -> Ulm", + "title": "A7 | Rottachtal - Allg\u00e4u", + "coordinate": { + "lat": 47.675190707014224, + "long": 10.380392022035583 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 14:00 bis 18:00 Uhr", + "", + "A7: F\u00fcssen/Reutte -> Ulm, zwischen 3.7 km hinter Rottachtal und 1.5 km vor AD Allg\u00e4u", + "", + "L\u00e4nge: 0.19 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A7 von Allg\u00e4u (AD) nach Rottachtal (Rastplatz) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.380392022, + 47.675190707 + ], + [ + 10.379856, + 47.675330601 + ], + [ + 10.3792347, + 47.675535801 + ], + [ + 10.3785499, + 47.675782801 + ], + [ + 10.3781772, + 47.675935601 + ], + [ + 10.378133776, + 47.675953577 + ] + ] + } + }, + { + "identifier": "2026-017586--vi-bs.2026-04-09_07-30-00-000.devi-zus.2026-04-09_07-30-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "47.67530579261299,10.406827548454077,47.675976725781815,10.405079955623894", + "point": "47.67530579261299,10.406827548454077", + "startLcPosition": "5", + "impact": { + "lower": "Allg\u00e4u", + "upper": "Rottachtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " F\u00fcssen/Reutte -> Ulm", + "title": "A7 | Rottachtal - Allg\u00e4u", + "coordinate": { + "lat": 47.67530579261299, + "long": 10.406827548454077 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 13:00 bis 17:00 Uhr", + "", + "A7: F\u00fcssen/Reutte -> Ulm, zwischen 1.6 km hinter Rottachtal und 3.6 km vor AD Allg\u00e4u", + "", + "L\u00e4nge: 0.15 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A7 von Allg\u00e4u (AD) nach Rottachtal (Rastplatz) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.406827548, + 47.675305793 + ], + [ + 10.406337, + 47.675525201 + ], + [ + 10.405511, + 47.675840701 + ], + [ + 10.405079956, + 47.675976726 + ] + ] + } + }, + { + "identifier": "2026-017586--vi-bs.2026-04-09_07-30-00-000.devi-zus.2026-04-09_07-30-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "47.672601374318305,10.410917731595493,47.67392435884783,10.409299574260686", + "point": "47.672601374318305,10.410917731595493", + "startLcPosition": "5", + "impact": { + "lower": "Allg\u00e4u", + "upper": "Rottachtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " F\u00fcssen/Reutte -> Ulm", + "title": "A7 | Rottachtal - Allg\u00e4u", + "coordinate": { + "lat": 47.672601374318305, + "long": 10.410917731595493 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 12:00 bis 16:00 Uhr", + "", + "A7: F\u00fcssen/Reutte -> Ulm, zwischen 1.2 km hinter Rottachtal und 4.0 km vor AD Allg\u00e4u", + "", + "L\u00e4nge: 0.19 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A7 von Allg\u00e4u (AD) nach Rottachtal (Rastplatz) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.410917732, + 47.672601374 + ], + [ + 10.4107782, + 47.672742501 + ], + [ + 10.4103909, + 47.673085701 + ], + [ + 10.4097169, + 47.673626501 + ], + [ + 10.409299574, + 47.673924359 + ] + ] + } + }, + { + "identifier": "2026-017583--vi-bs.2026-04-09_07-30-00-000_008.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "47.654563566839386,10.437999140058308,47.65394242330671,10.460570827781622", + "point": "47.654563566839386,10.437999140058308", + "startLcPosition": "5", + "impact": { + "lower": "Oy-Mittelberg", + "upper": "Rottachtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> F\u00fcssen/Reutte", + "title": "A7 | Rottachtal - Oy-Mittelberg", + "coordinate": { + "lat": 47.654563566839386, + "long": 10.437999140058308 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 16:00 Uhr", + "", + "A7: Ulm -> F\u00fcssen/Reutte, zwischen 1.8 km hinter Rottachtal und 0.4 km vor AS Oy-Mittelberg", + "", + "L\u00e4nge: 1.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Rottachtal (Rastplatz) nach Oy-Mittelberg (AS) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.43799914, + 47.654563567 + ], + [ + 10.4385521, + 47.654481901 + ], + [ + 10.4389613, + 47.654432501 + ], + [ + 10.4397922, + 47.654342301 + ], + [ + 10.4404631, + 47.654277001 + ], + [ + 10.441134, + 47.654223201 + ], + [ + 10.4424938, + 47.654129601 + ], + [ + 10.4443356, + 47.654064401 + ], + [ + 10.4469182, + 47.654022001 + ], + [ + 10.4476926, + 47.654031001 + ], + [ + 10.4479528, + 47.654034001 + ], + [ + 10.4540656, + 47.654104801 + ], + [ + 10.4558043, + 47.654102601 + ], + [ + 10.4574423, + 47.654088201 + ], + [ + 10.4580942, + 47.654070001 + ], + [ + 10.4597329, + 47.653993801 + ], + [ + 10.4603141, + 47.653960401 + ], + [ + 10.460570828, + 47.653942423 + ] + ] + } + }, + { + "identifier": "2026-017596--vi-bs.2026-04-09_07-30-00-000_011.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "47.74551740343818,10.336412202577943,47.679988471041,10.372518138146882", + "point": "47.74551740343818,10.336412202577943", + "startLcPosition": "10", + "impact": { + "lower": "Rottachtal", + "upper": "Kempten-Leubas", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> F\u00fcssen/Reutte", + "title": "A7 | Kempten-Leubas - Rottachtal", + "coordinate": { + "lat": 47.74551740343818, + "long": 10.336412202577943 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 16:00 Uhr", + "", + "A7: Ulm -> F\u00fcssen/Reutte, zwischen 1.1 km hinter AS Kempten-Leubas und 4.5 km vor Rottachtal", + "", + "L\u00e4nge: 7.99 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Kempten-Leubas (AS) nach Rottachtal (Rastplatz) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.336412203, + 47.745517403 + ], + [ + 10.3365278, + 47.745388101 + ], + [ + 10.3377357, + 47.744058801 + ], + [ + 10.3378953, + 47.743877301 + ], + [ + 10.3389981, + 47.742678201 + ], + [ + 10.3412903, + 47.740142501 + ], + [ + 10.3417189, + 47.739679701 + ], + [ + 10.3441966, + 47.736945801 + ], + [ + 10.3446425, + 47.736474301 + ], + [ + 10.3449759, + 47.736102001 + ], + [ + 10.3452791, + 47.735749801 + ], + [ + 10.3465387, + 47.734376401 + ], + [ + 10.3468385, + 47.734041001 + ], + [ + 10.3505359, + 47.729965301 + ], + [ + 10.3513605, + 47.729078601 + ], + [ + 10.3525423, + 47.727887601 + ], + [ + 10.3532795, + 47.727225901 + ], + [ + 10.3542367, + 47.726407701 + ], + [ + 10.3552504, + 47.725573801 + ], + [ + 10.355708, + 47.725193901 + ], + [ + 10.3564677, + 47.724562601 + ], + [ + 10.3571462, + 47.723999801 + ], + [ + 10.357731, + 47.723485401 + ], + [ + 10.358281, + 47.722977101 + ], + [ + 10.3586394, + 47.722613501 + ], + [ + 10.3588722, + 47.722359301 + ], + [ + 10.3591451, + 47.722051601 + ], + [ + 10.3593789, + 47.721756901 + ], + [ + 10.3595529, + 47.721518801 + ], + [ + 10.3597135, + 47.721288001 + ], + [ + 10.3599216, + 47.720984601 + ], + [ + 10.360222, + 47.720461501 + ], + [ + 10.3604992, + 47.719909401 + ], + [ + 10.3606527, + 47.719525101 + ], + [ + 10.360828, + 47.719069801 + ], + [ + 10.3609946, + 47.718425301 + ], + [ + 10.3611017, + 47.717798901 + ], + [ + 10.3612196, + 47.716811801 + ], + [ + 10.3612273, + 47.716773501 + ], + [ + 10.3612797, + 47.716297101 + ], + [ + 10.3614277, + 47.715165001 + ], + [ + 10.3615212, + 47.714677601 + ], + [ + 10.3616186, + 47.714275601 + ], + [ + 10.3617967, + 47.713703601 + ], + [ + 10.3619717, + 47.713185101 + ], + [ + 10.3621392, + 47.712777801 + ], + [ + 10.3623023, + 47.712396601 + ], + [ + 10.3625678, + 47.711899101 + ], + [ + 10.3630796, + 47.711037401 + ], + [ + 10.3638939, + 47.709841801 + ], + [ + 10.3643932, + 47.709137701 + ], + [ + 10.3647036, + 47.708680001 + ], + [ + 10.3652497, + 47.707856801 + ], + [ + 10.3657674, + 47.707010301 + ], + [ + 10.366058, + 47.706455601 + ], + [ + 10.3662692, + 47.705961501 + ], + [ + 10.3664512, + 47.705466501 + ], + [ + 10.3665842, + 47.705022501 + ], + [ + 10.3666957, + 47.704467201 + ], + [ + 10.3667901, + 47.703760001 + ], + [ + 10.3668231, + 47.703340301 + ], + [ + 10.3668153, + 47.702675101 + ], + [ + 10.366786, + 47.702282701 + ], + [ + 10.3667189, + 47.701853601 + ], + [ + 10.366586, + 47.701172401 + ], + [ + 10.3662974, + 47.699821301 + ], + [ + 10.3660751, + 47.698243601 + ], + [ + 10.3660022, + 47.697278501 + ], + [ + 10.3659844, + 47.696297101 + ], + [ + 10.3659948, + 47.695495901 + ], + [ + 10.3660756, + 47.694386201 + ], + [ + 10.3661161, + 47.693672401 + ], + [ + 10.3661358, + 47.693476701 + ], + [ + 10.3661655, + 47.693249801 + ], + [ + 10.3662793, + 47.692573301 + ], + [ + 10.3664165, + 47.691916101 + ], + [ + 10.3665008, + 47.691495801 + ], + [ + 10.366632, + 47.690891001 + ], + [ + 10.3666942, + 47.690627101 + ], + [ + 10.3667235, + 47.690499201 + ], + [ + 10.3668778, + 47.689980501 + ], + [ + 10.367224, + 47.688847001 + ], + [ + 10.3676386, + 47.687762501 + ], + [ + 10.3679105, + 47.687103201 + ], + [ + 10.3684237, + 47.686021801 + ], + [ + 10.369036, + 47.684850401 + ], + [ + 10.3697258, + 47.683712401 + ], + [ + 10.3702975, + 47.682862001 + ], + [ + 10.3705859, + 47.682420301 + ], + [ + 10.371127, + 47.681658401 + ], + [ + 10.3716215, + 47.681059701 + ], + [ + 10.3721484, + 47.680421801 + ], + [ + 10.372518138, + 47.679988471 + ] + ] + } + }, + { + "identifier": "2024-019219--vi-fbm.2026-04-13_20-00-00-000.devi-zus.2025-09-19_19-00-00-000_006.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.97450988795416,10.161878817276083,47.99544360300141,10.15084482591288", + "point": "47.97450988795416,10.161878817276083", + "startLcPosition": "19", + "impact": { + "lower": "Memmingen", + "upper": "Memmingen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " F\u00fcssen/Reutte -> Ulm", + "title": "A7 | Memmingen-S\u00fcd - Memmingen", + "coordinate": { + "lat": 47.97450988795416, + "long": 10.161878817276083 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 20:00 bis zum 24.04.26 05:30 Uhr.", + "24.04.26 20:00 bis zum 25.04.26 05:30 Uhr.", + "25.04.26 20:00 bis zum 26.04.26 05:30 Uhr.", + "26.04.26 20:00 bis zum 27.04.26 05:30 Uhr.", + "27.04.26 20:00 bis zum 28.04.26 05:30 Uhr.", + "", + "A7: F\u00fcssen/Reutte -> Ulm, zwischen 2.0 km hinter AS Memmingen-S\u00fcd und 0.1 km vor AK Memmingen", + "", + "L\u00e4nge: 2.61 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A.K.006 VZB AK Memmingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.161878817, + 47.974509888 + ], + [ + 10.1615861, + 47.974646901 + ], + [ + 10.1607674, + 47.975058201 + ], + [ + 10.1600135, + 47.975474701 + ], + [ + 10.159595, + 47.975721401 + ], + [ + 10.1592245, + 47.975943301 + ], + [ + 10.1587833, + 47.976222701 + ], + [ + 10.15814, + 47.976653501 + ], + [ + 10.1573565, + 47.977214701 + ], + [ + 10.1566319, + 47.977785901 + ], + [ + 10.1559455, + 47.978364501 + ], + [ + 10.155279, + 47.978985801 + ], + [ + 10.1548174, + 47.979452501 + ], + [ + 10.1543632, + 47.979945801 + ], + [ + 10.153929, + 47.980449701 + ], + [ + 10.153497, + 47.980980101 + ], + [ + 10.1530988, + 47.981524401 + ], + [ + 10.1528142, + 47.981959301 + ], + [ + 10.1524586, + 47.982528101 + ], + [ + 10.1522074, + 47.982959701 + ], + [ + 10.1519952, + 47.983353001 + ], + [ + 10.1516911, + 47.983995301 + ], + [ + 10.1514272, + 47.984625101 + ], + [ + 10.1512289, + 47.985189501 + ], + [ + 10.1511462, + 47.985446601 + ], + [ + 10.1509716, + 47.986019901 + ], + [ + 10.1508167, + 47.986627501 + ], + [ + 10.1507811, + 47.986843301 + ], + [ + 10.1507074, + 47.987285801 + ], + [ + 10.1506492, + 47.987692401 + ], + [ + 10.1506083, + 47.988080001 + ], + [ + 10.1505786, + 47.988514901 + ], + [ + 10.1505618, + 47.988955901 + ], + [ + 10.1505617, + 47.989380201 + ], + [ + 10.1505668, + 47.989766101 + ], + [ + 10.1505876, + 47.990335001 + ], + [ + 10.1506187, + 47.990795601 + ], + [ + 10.150646, + 47.991136101 + ], + [ + 10.150685, + 47.991677401 + ], + [ + 10.1507277, + 47.992194201 + ], + [ + 10.1507529, + 47.992537201 + ], + [ + 10.1507567, + 47.992617801 + ], + [ + 10.1508023, + 47.993120401 + ], + [ + 10.1508619, + 47.994236301 + ], + [ + 10.1508697, + 47.995071801 + ], + [ + 10.150844826, + 47.995443603 + ] + ] + } + }, + { + "identifier": "2024-019219--vi-fbm.2026-04-13_20-00-00-000.devi-zus.2025-09-19_19-00-00-000_006.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.999880883521904,10.149790961328058,47.98239968008534,10.152353054660704", + "point": "47.999880883521904,10.149790961328058", + "startLcPosition": "22", + "impact": { + "lower": "Memmingen-S\u00fcd", + "upper": "Aum\u00fchle", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> F\u00fcssen/Reutte", + "title": "A7 | Aum\u00fchle - Memmingen-S\u00fcd", + "coordinate": { + "lat": 47.999880883521904, + "long": 10.149790961328058 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "28.04.26 20:00 bis zum 29.04.26 05:30 Uhr.", + "29.04.26 20:00 bis zum 30.04.26 05:30 Uhr.", + "30.04.26 von 20:00 bis 24:00 Uhr", + "04.05.26 von 00:00 bis 05:30 Uhr", + "04.05.26 20:00 bis zum 05.05.26 05:30 Uhr.", + "05.05.26 20:00 bis zum 06.05.26 05:30 Uhr.", + "", + "A7: Ulm -> F\u00fcssen/Reutte, zwischen 1.7 km hinter Aum\u00fchle und 3.2 km vor AS Memmingen-S\u00fcd", + "", + "L\u00e4nge: 1.97 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A.K.006 VZB AK Memmingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.149790961, + 47.999880884 + ], + [ + 10.1498352, + 47.999772701 + ], + [ + 10.1499963, + 47.999255501 + ], + [ + 10.1501578, + 47.998722101 + ], + [ + 10.1503013, + 47.998140401 + ], + [ + 10.1504997, + 47.997144801 + ], + [ + 10.1506165, + 47.996232801 + ], + [ + 10.1506518, + 47.995781401 + ], + [ + 10.1506798, + 47.995077401 + ], + [ + 10.1506818, + 47.994252001 + ], + [ + 10.1506231, + 47.993122601 + ], + [ + 10.1505712, + 47.992540601 + ], + [ + 10.1505489, + 47.992195301 + ], + [ + 10.1504844, + 47.991363001 + ], + [ + 10.1504447, + 47.990869701 + ], + [ + 10.1504141, + 47.990432501 + ], + [ + 10.1503973, + 47.990005701 + ], + [ + 10.1503847, + 47.989525501 + ], + [ + 10.1503754, + 47.989232701 + ], + [ + 10.1503793, + 47.988914701 + ], + [ + 10.1504172, + 47.988221201 + ], + [ + 10.1504743, + 47.987621501 + ], + [ + 10.1505343, + 47.987237301 + ], + [ + 10.150662, + 47.986542201 + ], + [ + 10.1507397, + 47.986169601 + ], + [ + 10.1508801, + 47.985663201 + ], + [ + 10.1509629, + 47.985447201 + ], + [ + 10.1511595, + 47.984855601 + ], + [ + 10.1512563, + 47.984585901 + ], + [ + 10.1515008, + 47.984010401 + ], + [ + 10.1517716, + 47.983435201 + ], + [ + 10.152133, + 47.982761801 + ], + [ + 10.152353055, + 47.98239968 + ] + ] + } + }, + { + "identifier": "2026-008299--vi-bs.2026-03-02_19-00-00-000.devi-bs.2026-03-02_19-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.085794745416145,10.136566158664293,48.1309461700814,10.110138782395842", + "point": "48.085794745416145,10.136566158664293", + "startLcPosition": "25", + "impact": { + "lower": "Altenstadt an der Iller", + "upper": "Br\u00fchl-West", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " F\u00fcssen/Reutte -> Ulm", + "title": "A7 | Br\u00fchl-West - Altenstadt an der Iller", + "coordinate": { + "lat": 48.085794745416145, + "long": 10.136566158664293 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 02.03.26 und dem 01.05.26 von 19:00 bis 00:00 Uhr.", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 03.03.26 und dem 30.04.26 von 00:00 bis 06:00 Uhr.", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26", + "", + "A7: F\u00fcssen/Reutte -> Ulm, zwischen 0.1 km hinter Br\u00fchl-West und 2.1 km vor AS Altenstadt an der Iller", + "", + "L\u00e4nge: 5.51 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "Arbeiten an Schutzeinrichtungen (Umr\u00fcstung)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.136566159, + 48.085794745 + ], + [ + 10.13631, + 48.086985201 + ], + [ + 10.13582, + 48.089096901 + ], + [ + 10.1352344, + 48.091201101 + ], + [ + 10.1346516, + 48.093284601 + ], + [ + 10.134069, + 48.095284501 + ], + [ + 10.1332107, + 48.097759601 + ], + [ + 10.1321968, + 48.100045301 + ], + [ + 10.131035, + 48.102078501 + ], + [ + 10.1300551, + 48.103423901 + ], + [ + 10.1296456, + 48.103974201 + ], + [ + 10.1288429, + 48.104932201 + ], + [ + 10.1282014, + 48.105633401 + ], + [ + 10.1278889, + 48.105955701 + ], + [ + 10.1273125, + 48.106540701 + ], + [ + 10.1265555, + 48.107270101 + ], + [ + 10.1261738, + 48.107603101 + ], + [ + 10.1256738, + 48.108032301 + ], + [ + 10.1248443, + 48.108726401 + ], + [ + 10.1241732, + 48.109267101 + ], + [ + 10.1223767, + 48.110679701 + ], + [ + 10.1200686, + 48.112483701 + ], + [ + 10.1189697, + 48.113366401 + ], + [ + 10.1178104, + 48.114390701 + ], + [ + 10.1169196, + 48.115254101 + ], + [ + 10.1160589, + 48.116170301 + ], + [ + 10.1153487, + 48.116991601 + ], + [ + 10.114602, + 48.117912901 + ], + [ + 10.1137443, + 48.119105601 + ], + [ + 10.1134422, + 48.119578001 + ], + [ + 10.1127102, + 48.120789801 + ], + [ + 10.1123009, + 48.121568001 + ], + [ + 10.1120005, + 48.122173301 + ], + [ + 10.1117159, + 48.122812101 + ], + [ + 10.1114621, + 48.123429701 + ], + [ + 10.111279, + 48.123920401 + ], + [ + 10.1108823, + 48.125140701 + ], + [ + 10.1107139, + 48.125752901 + ], + [ + 10.1104708, + 48.126784501 + ], + [ + 10.1103684, + 48.127380601 + ], + [ + 10.1102885, + 48.127911601 + ], + [ + 10.1102272, + 48.128382401 + ], + [ + 10.1101857, + 48.128858701 + ], + [ + 10.1101674, + 48.129105201 + ], + [ + 10.1101492, + 48.129350101 + ], + [ + 10.1101279, + 48.129856601 + ], + [ + 10.11012, + 48.130552501 + ], + [ + 10.110138782, + 48.13094617 + ] + ] + } + }, + { + "identifier": "2026-008299--vi-bs.2026-03-02_19-00-00-000.devi-bs.2026-03-02_19-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.13094925559576,10.109947176080562,48.08577667683917,10.136383917541284", + "point": "48.13094925559576,10.109947176080562", + "startLcPosition": "28", + "impact": { + "lower": "Br\u00fchl-West", + "upper": "Altenstadt an der Iller", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> F\u00fcssen/Reutte", + "title": "A7 | Altenstadt an der Iller - Br\u00fchl-West", + "coordinate": { + "lat": 48.13094925559576, + "long": 10.109947176080562 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 02.03.26 und dem 01.05.26 von 19:00 bis 00:00 Uhr.", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 03.03.26 und dem 30.04.26 von 00:00 bis 06:00 Uhr.", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26", + "", + "A7: Ulm -> F\u00fcssen/Reutte, zwischen 2.1 km hinter AS Altenstadt an der Iller und 0.1 km vor Br\u00fchl-West", + "", + "L\u00e4nge: 5.51 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "Arbeiten an Schutzeinrichtungen (Umr\u00fcstung)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.109947176, + 48.130949256 + ], + [ + 10.1099382, + 48.130552901 + ], + [ + 10.1099488, + 48.129861001 + ], + [ + 10.1099595, + 48.129569101 + ], + [ + 10.1099774, + 48.129259801 + ], + [ + 10.1100025, + 48.128858801 + ], + [ + 10.1100505, + 48.128385201 + ], + [ + 10.1101065, + 48.127905801 + ], + [ + 10.1101857, + 48.127360801 + ], + [ + 10.1103201, + 48.126666701 + ], + [ + 10.1103842, + 48.126355501 + ], + [ + 10.1105308, + 48.125736401 + ], + [ + 10.110701, + 48.125127201 + ], + [ + 10.1110543, + 48.124026601 + ], + [ + 10.1112537, + 48.123530301 + ], + [ + 10.1115431, + 48.122786201 + ], + [ + 10.1118285, + 48.122137701 + ], + [ + 10.1121281, + 48.121526801 + ], + [ + 10.1124667, + 48.120883501 + ], + [ + 10.1130326, + 48.119920401 + ], + [ + 10.1133078, + 48.119478801 + ], + [ + 10.1136484, + 48.118959101 + ], + [ + 10.1140462, + 48.118393601 + ], + [ + 10.114473, + 48.117820101 + ], + [ + 10.1149459, + 48.117206001 + ], + [ + 10.1154022, + 48.116662601 + ], + [ + 10.1159889, + 48.116002401 + ], + [ + 10.1167799, + 48.115162501 + ], + [ + 10.1177583, + 48.114228501 + ], + [ + 10.1188327, + 48.113264801 + ], + [ + 10.1199457, + 48.112357801 + ], + [ + 10.122097, + 48.110679501 + ], + [ + 10.1239255, + 48.109279801 + ], + [ + 10.1247024, + 48.108657501 + ], + [ + 10.1257627, + 48.107776401 + ], + [ + 10.1260165, + 48.107546601 + ], + [ + 10.1266623, + 48.106962501 + ], + [ + 10.1271706, + 48.106470001 + ], + [ + 10.1277328, + 48.105899901 + ], + [ + 10.1281549, + 48.105459601 + ], + [ + 10.1286677, + 48.104885301 + ], + [ + 10.1293171, + 48.104124801 + ], + [ + 10.1298881, + 48.103380001 + ], + [ + 10.1305046, + 48.102536801 + ], + [ + 10.1308888, + 48.101967801 + ], + [ + 10.1316192, + 48.100722401 + ], + [ + 10.1320064, + 48.100011601 + ], + [ + 10.1324163, + 48.099148801 + ], + [ + 10.1330506, + 48.097660001 + ], + [ + 10.1335188, + 48.096338101 + ], + [ + 10.1338718, + 48.095265701 + ], + [ + 10.1344629, + 48.093280801 + ], + [ + 10.1350673, + 48.091134101 + ], + [ + 10.1356162, + 48.089066701 + ], + [ + 10.1358507, + 48.088103701 + ], + [ + 10.1361053, + 48.087006601 + ], + [ + 10.136383918, + 48.085776677 + ] + ] + } + }, + { + "identifier": "2025-009385--vi-bs.2026-03-12_06-00-00-000.devi-zus.2026-03-04_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.31843804383755,10.090916624285498,48.329464077431865,10.088639614988827", + "point": "48.31843804383755,10.090916624285498", + "startLcPosition": "36", + "impact": { + "lower": "Buchwald", + "upper": "Buchenberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " F\u00fcssen/Reutte -> Ulm", + "title": "A7 | Buchenberg - Buchwald", + "startTimestamp": "2026-03-12T06:00:00+01:00", + "coordinate": { + "lat": 48.31843804383755, + "long": 10.090916624285498 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 06:00 Uhr", + "Ende: 03.07.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.11.26)", + "", + "A7: F\u00fcssen/Reutte -> Ulm, zwischen 0.9 km hinter Buchenberg und 3.5 km vor Buchwald", + "", + "L\u00e4nge: 1.24 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "B.K.036 E BW15-1 AD Hittist. FR 1 u. 2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.090916624, + 48.318438044 + ], + [ + 10.0906651, + 48.319005701 + ], + [ + 10.0903198, + 48.319874701 + ], + [ + 10.0900388, + 48.320670601 + ], + [ + 10.0897922, + 48.321475701 + ], + [ + 10.089459, + 48.322797201 + ], + [ + 10.0892798, + 48.323722001 + ], + [ + 10.0891302, + 48.324771401 + ], + [ + 10.0890171, + 48.325477501 + ], + [ + 10.0888744, + 48.326506901 + ], + [ + 10.0887821, + 48.327675801 + ], + [ + 10.0887422, + 48.328117201 + ], + [ + 10.0886999, + 48.328684401 + ], + [ + 10.088639615, + 48.329464077 + ] + ] + } + }, + { + "identifier": "2026-017657--vi-bs.2026-04-14_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_019.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.33257258917783,10.08837609436933,48.35289832977675,10.082685714992088", + "point": "48.33257258917783,10.08837609436933", + "startLcPosition": "37", + "impact": { + "lower": "Buchwald", + "upper": "Hittistetten", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " F\u00fcssen/Reutte -> Ulm", + "title": "A7 | Hittistetten - Buchwald", + "coordinate": { + "lat": 48.33257258917783, + "long": 10.08837609436933 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: F\u00fcssen/Reutte -> Ulm, zwischen 0.8 km hinter AD Hittistetten und 0.9 km vor Buchwald", + "", + "L\u00e4nge: 2.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A7 von Hahnenberg (Parkplatz) nach Buchwald (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.088376094, + 48.332572589 + ], + [ + 10.0882907, + 48.333409101 + ], + [ + 10.0882477, + 48.333927301 + ], + [ + 10.0882319, + 48.334100901 + ], + [ + 10.0880413, + 48.335456101 + ], + [ + 10.0877454, + 48.336991801 + ], + [ + 10.0873961, + 48.338522101 + ], + [ + 10.0870154, + 48.339976001 + ], + [ + 10.0865496, + 48.341562601 + ], + [ + 10.0856441, + 48.344252801 + ], + [ + 10.0846531, + 48.346939301 + ], + [ + 10.0844995, + 48.347385701 + ], + [ + 10.0834996, + 48.350243801 + ], + [ + 10.0828077, + 48.352465201 + ], + [ + 10.082685715, + 48.35289833 + ] + ] + } + }, + { + "identifier": "2026-017657--vi-bs.2026-04-14_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_019.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.33257258917783,10.08837609436933,48.35289832977675,10.082685714992088", + "point": "48.33257258917783,10.08837609436933", + "startLcPosition": "37", + "impact": { + "lower": "Buchwald", + "upper": "Hittistetten", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " F\u00fcssen/Reutte -> Ulm", + "title": "A7 | Hittistetten - Buchwald", + "coordinate": { + "lat": 48.33257258917783, + "long": 10.08837609436933 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: F\u00fcssen/Reutte -> Ulm, zwischen 0.8 km hinter AD Hittistetten und 0.9 km vor Buchwald", + "", + "L\u00e4nge: 2.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A7 von Hahnenberg (Parkplatz) nach Buchwald (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.088376094, + 48.332572589 + ], + [ + 10.0882907, + 48.333409101 + ], + [ + 10.0882477, + 48.333927301 + ], + [ + 10.0882319, + 48.334100901 + ], + [ + 10.0880413, + 48.335456101 + ], + [ + 10.0877454, + 48.336991801 + ], + [ + 10.0873961, + 48.338522101 + ], + [ + 10.0870154, + 48.339976001 + ], + [ + 10.0865496, + 48.341562601 + ], + [ + 10.0856441, + 48.344252801 + ], + [ + 10.0846531, + 48.346939301 + ], + [ + 10.0844995, + 48.347385701 + ], + [ + 10.0834996, + 48.350243801 + ], + [ + 10.0828077, + 48.352465201 + ], + [ + 10.082685715, + 48.35289833 + ] + ] + } + }, + { + "identifier": "2025-009385--vi-bs.2026-03-12_06-00-00-000.devi-zus.2026-03-04_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.32945793618449,10.08845479554175,48.31840455322743,10.09074605665558", + "point": "48.32945793618449,10.08845479554175", + "startLcPosition": "38", + "impact": { + "lower": "Buchenberg", + "upper": "Buchwald", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ulm -> F\u00fcssen/Reutte", + "title": "A7 | Buchwald - Buchenberg", + "startTimestamp": "2026-03-12T06:00:00+01:00", + "coordinate": { + "lat": 48.32945793618449, + "long": 10.08845479554175 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 06:00 Uhr", + "Ende: 03.07.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.11.26)", + "", + "A7: Ulm -> F\u00fcssen/Reutte, zwischen 3.5 km hinter Buchwald und 0.9 km vor Buchenberg", + "", + "L\u00e4nge: 1.24 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "B.K.036 E BW15-1 AD Hittist. FR 1 u. 2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.088454796, + 48.329457936 + ], + [ + 10.0884877, + 48.329000201 + ], + [ + 10.0885352, + 48.328252701 + ], + [ + 10.0885845, + 48.327670501 + ], + [ + 10.0888271, + 48.325318901 + ], + [ + 10.088915, + 48.324771701 + ], + [ + 10.0891102, + 48.323698101 + ], + [ + 10.0893014, + 48.322577901 + ], + [ + 10.0894995, + 48.321833501 + ], + [ + 10.0896722, + 48.321250401 + ], + [ + 10.089864, + 48.320641601 + ], + [ + 10.090142, + 48.319853801 + ], + [ + 10.0904946, + 48.318976201 + ], + [ + 10.090746057, + 48.318404553 + ] + ] + } + }, + { + "identifier": "2026-017657--vi-bs.2026-04-14_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_019.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.379599380046955,10.085429313948374,48.36807660877558,10.082627703213536", + "point": "48.379599380046955,10.085429313948374", + "startLcPosition": "39", + "impact": { + "lower": "Buchwald", + "upper": "Hahnenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> F\u00fcssen/Reutte", + "title": "A7 | Hahnenberg - Buchwald", + "coordinate": { + "lat": 48.379599380046955, + "long": 10.085429313948374 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: Ulm -> F\u00fcssen/Reutte, zwischen 0.9 km hinter Hahnenberg und 0.8 km vor Buchwald", + "", + "L\u00e4nge: 1.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A7 von Hahnenberg (Parkplatz) nach Buchwald (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.085429314, + 48.37959938 + ], + [ + 10.0853894, + 48.378949001 + ], + [ + 10.0852566, + 48.377588601 + ], + [ + 10.0850479, + 48.376222901 + ], + [ + 10.0847335, + 48.374768601 + ], + [ + 10.0843384, + 48.373314901 + ], + [ + 10.0831395, + 48.369645701 + ], + [ + 10.0826282, + 48.368078301 + ], + [ + 10.082627703, + 48.368076609 + ] + ] + } + }, + { + "identifier": "2026-017657--vi-bs.2026-04-14_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_019.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.379599380046955,10.085429313948374,48.36807660877558,10.082627703213536", + "point": "48.379599380046955,10.085429313948374", + "startLcPosition": "39", + "impact": { + "lower": "Buchwald", + "upper": "Hahnenberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> F\u00fcssen/Reutte", + "title": "A7 | Hahnenberg - Buchwald", + "coordinate": { + "lat": 48.379599380046955, + "long": 10.085429313948374 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: Ulm -> F\u00fcssen/Reutte, zwischen 0.9 km hinter Hahnenberg und 0.8 km vor Buchwald", + "", + "L\u00e4nge: 1.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A7 von Hahnenberg (Parkplatz) nach Buchwald (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.085429314, + 48.37959938 + ], + [ + 10.0853894, + 48.378949001 + ], + [ + 10.0852566, + 48.377588601 + ], + [ + 10.0850479, + 48.376222901 + ], + [ + 10.0847335, + 48.374768601 + ], + [ + 10.0843384, + 48.373314901 + ], + [ + 10.0831395, + 48.369645701 + ], + [ + 10.0826282, + 48.368078301 + ], + [ + 10.082627703, + 48.368076609 + ] + ] + } + }, + { + "identifier": "2026-017657--vi-bs.2026-04-13_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_019.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.370715012087544,10.083488875413254,48.36807660877558,10.082627703213536", + "point": "48.370715012087544,10.083488875413254", + "startLcPosition": "39", + "impact": { + "lower": "Buchwald", + "upper": "Hahnenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> F\u00fcssen/Reutte", + "title": "A7 | Hahnenberg - Buchwald", + "coordinate": { + "lat": 48.370715012087544, + "long": 10.083488875413254 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 18:00 Uhr", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: Ulm -> F\u00fcssen/Reutte, zwischen 1.9 km hinter Hahnenberg und 0.8 km vor Buchwald", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A7 von Hahnenberg (Parkplatz) nach Buchwald (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.083488875, + 48.370715012 + ], + [ + 10.0831395, + 48.369645701 + ], + [ + 10.0826282, + 48.368078301 + ], + [ + 10.082627703, + 48.368076609 + ] + ] + } + }, + { + "identifier": "2025-058576--vi-bs.2025-11-26_07-00-00-000.devi-zus.2025-11-26_07-00-00-000_007.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.479532766457,10.10486112172002,48.48828736605539,10.093224476541216", + "point": "48.479532766457,10.10486112172002", + "startLcPosition": "42", + "impact": { + "lower": "Langenau", + "upper": "Ulm/Elchingen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " F\u00fcssen/Reutte -> W\u00fcrzburg", + "title": "A7 | Ulm/Elchingen - Langenau", + "coordinate": { + "lat": 48.479532766457, + "long": 10.10486112172002 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 09.04.26 von 07:00 bis 17:00 Uhr.", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 07:00 bis 17:00 Uhr.", + "", + "A7: F\u00fcssen/Reutte -> W\u00fcrzburg, zwischen 1.8 km hinter AK Ulm/Elchingen und 0.7 km vor AS Langenau", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 Langenau Pr\u00fcfung Entw\u00e4sserung - Reinigung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.104861122, + 48.479532766 + ], + [ + 10.1024394, + 48.481393901 + ], + [ + 10.0998965, + 48.483193501 + ], + [ + 10.0973484, + 48.484997901 + ], + [ + 10.0963868, + 48.485714701 + ], + [ + 10.0954287, + 48.486452001 + ], + [ + 10.0945009, + 48.487197601 + ], + [ + 10.0935909, + 48.487968501 + ], + [ + 10.0932957, + 48.488223501 + ], + [ + 10.093224477, + 48.488287366 + ] + ] + } + }, + { + "identifier": "2025-058576--vi-bs.2025-11-26_07-00-00-000.devi-zus.2025-11-26_07-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.48822349145266,10.093091620819942,48.479453270012655,10.104723272711004", + "point": "48.48822349145266,10.093091620819942", + "startLcPosition": "43", + "impact": { + "lower": "Ulm/Elchingen", + "upper": "Langenau", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> F\u00fcssen/Reutte", + "title": "A7 | Langenau - Ulm/Elchingen", + "coordinate": { + "lat": 48.48822349145266, + "long": 10.093091620819942 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 09.04.26 von 07:00 bis 17:00 Uhr.", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 07:00 bis 17:00 Uhr.", + "", + "A7: W\u00fcrzburg -> F\u00fcssen/Reutte, zwischen 0.7 km hinter AS Langenau und 1.8 km vor AK Ulm/Elchingen", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 Langenau Pr\u00fcfung Entw\u00e4sserung - Reinigung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.093091621, + 48.488223491 + ], + [ + 10.0931589, + 48.488160101 + ], + [ + 10.0934443, + 48.487909301 + ], + [ + 10.0943472, + 48.487134401 + ], + [ + 10.0953042, + 48.486365701 + ], + [ + 10.0962681, + 48.485623601 + ], + [ + 10.0972408, + 48.484901701 + ], + [ + 10.099776, + 48.483110601 + ], + [ + 10.1022821, + 48.481320601 + ], + [ + 10.104723273, + 48.47945327 + ] + ] + } + }, + { + "identifier": "2025-003675--vi-bs.2026-02-05_18-00-00-000.devi-zus.2025-05-26_06-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.050800174899635,10.177340347872148,49.07066541254295,10.19304518931244", + "point": "49.050800174899635,10.177340347872148", + "startLcPosition": "57", + "impact": { + "lower": "Dinkelsb\u00fchl/Fichtenau", + "upper": "Virngrundtunnel", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ulm -> W\u00fcrzburg", + "title": "A7 | Virngrundtunnel - Dinkelsb\u00fchl/Fichtenau", + "startTimestamp": "2026-02-05T18:00:00+01:00", + "coordinate": { + "lat": 49.050800174899635, + "long": 10.177340347872148 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 18:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.12.27)", + "", + "A7: Ulm -> W\u00fcrzburg, zwischen 3.5 km hinter Virngrundtunnel und 2.9 km vor AS Dinkelsb\u00fchl/Fichtenau", + "", + "L\u00e4nge: 2.57 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A7 Br\u00fcckeninstandsetzung Buchbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.177340348, + 49.050800175 + ], + [ + 10.1772588, + 49.051567501 + ], + [ + 10.1772497, + 49.052479001 + ], + [ + 10.1772568, + 49.052814501 + ], + [ + 10.1774447, + 49.054203401 + ], + [ + 10.1777797, + 49.055425701 + ], + [ + 10.1780443, + 49.056068601 + ], + [ + 10.1784337, + 49.057089801 + ], + [ + 10.1793759, + 49.058660801 + ], + [ + 10.179972, + 49.059487001 + ], + [ + 10.1805854, + 49.060192101 + ], + [ + 10.181203, + 49.060849301 + ], + [ + 10.1819258, + 49.061575001 + ], + [ + 10.1827859, + 49.062389001 + ], + [ + 10.1834695, + 49.062947101 + ], + [ + 10.18589, + 49.064923101 + ], + [ + 10.1897555, + 49.068024501 + ], + [ + 10.1910202, + 49.069035201 + ], + [ + 10.193045189, + 49.070665413 + ] + ] + } + }, + { + "identifier": "2026-015730--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.13631310042941,10.260856302005239,49.65042519935048,10.1447684982025", + "point": "49.13631310042941,10.260856302005239", + "startLcPosition": "58", + "impact": { + "lower": "Wolfsgraben-Ost", + "upper": "Dinkelsb\u00fchl/Fichtenau", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> W\u00fcrzburg", + "title": "A7 | Dinkelsb\u00fchl/Fichtenau - Wolfsgraben-Ost", + "coordinate": { + "lat": 49.13631310042941, + "long": 10.260856302005239 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 09.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A7: Ulm -> W\u00fcrzburg, zwischen 6.5 km hinter AS Dinkelsb\u00fchl/Fichtenau und 6.2 km vor Wolfsgraben-Ost", + "", + "L\u00e4nge: 64.46 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Wolfsgraben-Ost (Rastplatz) nach Dinkelsb\u00fchlFichtenau (AS) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.260856302, + 49.1363131 + ], + [ + 10.2609717, + 49.136869401 + ], + [ + 10.2610087, + 49.137029301 + ], + [ + 10.2611414, + 49.137542101 + ], + [ + 10.2616239, + 49.138958401 + ], + [ + 10.262448, + 49.140655001 + ], + [ + 10.2634945, + 49.142652001 + ], + [ + 10.2645099, + 49.144668501 + ], + [ + 10.2650599, + 49.146085901 + ], + [ + 10.2652934, + 49.146792701 + ], + [ + 10.2656426, + 49.148243901 + ], + [ + 10.2657592, + 49.148708001 + ], + [ + 10.2658588, + 49.149367201 + ], + [ + 10.2659835, + 49.151008001 + ], + [ + 10.2659374, + 49.152616201 + ], + [ + 10.2656985, + 49.153979101 + ], + [ + 10.265483, + 49.155010301 + ], + [ + 10.2653141, + 49.155541401 + ], + [ + 10.2649765, + 49.156557301 + ], + [ + 10.2643997, + 49.157859601 + ], + [ + 10.2642378, + 49.158200701 + ], + [ + 10.2639019, + 49.158908401 + ], + [ + 10.2632421, + 49.159929401 + ], + [ + 10.2631005, + 49.160148601 + ], + [ + 10.26286, + 49.160520701 + ], + [ + 10.2618772, + 49.161784201 + ], + [ + 10.2616371, + 49.162092801 + ], + [ + 10.2605434, + 49.163279301 + ], + [ + 10.258866, + 49.164842901 + ], + [ + 10.258326, + 49.165302101 + ], + [ + 10.258072, + 49.165507001 + ], + [ + 10.2574645, + 49.165996301 + ], + [ + 10.2568033, + 49.166528801 + ], + [ + 10.2554021, + 49.167558601 + ], + [ + 10.2546676, + 49.168062501 + ], + [ + 10.252158, + 49.169784201 + ], + [ + 10.2506977, + 49.170786001 + ], + [ + 10.2489679, + 49.172011201 + ], + [ + 10.2483097, + 49.172492301 + ], + [ + 10.2479453, + 49.172762201 + ], + [ + 10.2477871, + 49.172881001 + ], + [ + 10.2472963, + 49.173249801 + ], + [ + 10.2466934, + 49.173727301 + ], + [ + 10.2459223, + 49.174359401 + ], + [ + 10.2455935, + 49.174642001 + ], + [ + 10.2450575, + 49.175108101 + ], + [ + 10.2442735, + 49.175853901 + ], + [ + 10.2436814, + 49.176454801 + ], + [ + 10.2431394, + 49.177018801 + ], + [ + 10.2426003, + 49.177629201 + ], + [ + 10.2418895, + 49.178469101 + ], + [ + 10.2412846, + 49.179268801 + ], + [ + 10.2407717, + 49.180036601 + ], + [ + 10.2399061, + 49.181385201 + ], + [ + 10.239284, + 49.182543501 + ], + [ + 10.2387724, + 49.183658101 + ], + [ + 10.238642, + 49.183947101 + ], + [ + 10.23828, + 49.184902101 + ], + [ + 10.2379119, + 49.186108401 + ], + [ + 10.2376335, + 49.187209001 + ], + [ + 10.2373289, + 49.188761201 + ], + [ + 10.2371462, + 49.189924201 + ], + [ + 10.2369987, + 49.190907201 + ], + [ + 10.2369083, + 49.191536901 + ], + [ + 10.2368211, + 49.192207201 + ], + [ + 10.2366551, + 49.193378201 + ], + [ + 10.2366465, + 49.193439001 + ], + [ + 10.2365747, + 49.193907701 + ], + [ + 10.2364718, + 49.194566601 + ], + [ + 10.2363651, + 49.195191401 + ], + [ + 10.2361215, + 49.196477001 + ], + [ + 10.2360246, + 49.196906701 + ], + [ + 10.2359136, + 49.197348901 + ], + [ + 10.2356836, + 49.198191301 + ], + [ + 10.2355422, + 49.198680201 + ], + [ + 10.2352087, + 49.199715301 + ], + [ + 10.2350306, + 49.200237201 + ], + [ + 10.2348646, + 49.200709201 + ], + [ + 10.2346728, + 49.201187401 + ], + [ + 10.2344926, + 49.201664801 + ], + [ + 10.2343141, + 49.202096901 + ], + [ + 10.2340538, + 49.202689601 + ], + [ + 10.2338102, + 49.203219801 + ], + [ + 10.2334818, + 49.203903601 + ], + [ + 10.233191, + 49.204480901 + ], + [ + 10.2328078, + 49.205197601 + ], + [ + 10.2323867, + 49.205953801 + ], + [ + 10.2321354, + 49.206389501 + ], + [ + 10.2316424, + 49.207179601 + ], + [ + 10.2312238, + 49.207821401 + ], + [ + 10.2306559, + 49.208666001 + ], + [ + 10.2301451, + 49.209364601 + ], + [ + 10.2299734, + 49.209590601 + ], + [ + 10.2296586, + 49.210019501 + ], + [ + 10.2288376, + 49.211080201 + ], + [ + 10.2280959, + 49.211975801 + ], + [ + 10.2271975, + 49.212968101 + ], + [ + 10.2266284, + 49.213596601 + ], + [ + 10.2258996, + 49.214375801 + ], + [ + 10.2253978, + 49.214865401 + ], + [ + 10.2247049, + 49.215538701 + ], + [ + 10.2240462, + 49.216155801 + ], + [ + 10.2227023, + 49.217354601 + ], + [ + 10.2212365, + 49.218599101 + ], + [ + 10.2202817, + 49.219401201 + ], + [ + 10.2191052, + 49.220422501 + ], + [ + 10.2178489, + 49.221589301 + ], + [ + 10.2172733, + 49.222137401 + ], + [ + 10.2167448, + 49.222677401 + ], + [ + 10.2161177, + 49.223374301 + ], + [ + 10.2156772, + 49.223897901 + ], + [ + 10.2153108, + 49.224365501 + ], + [ + 10.2147043, + 49.225243901 + ], + [ + 10.2142399, + 49.225992501 + ], + [ + 10.2139221, + 49.226600201 + ], + [ + 10.2135784, + 49.227313701 + ], + [ + 10.2132125, + 49.228249901 + ], + [ + 10.2129465, + 49.229084101 + ], + [ + 10.2127666, + 49.229813701 + ], + [ + 10.2125946, + 49.230831101 + ], + [ + 10.2125171, + 49.231624401 + ], + [ + 10.2124926, + 49.232383401 + ], + [ + 10.2126082, + 49.233984201 + ], + [ + 10.2127946, + 49.234930701 + ], + [ + 10.2130668, + 49.235883801 + ], + [ + 10.2134185, + 49.236873501 + ], + [ + 10.2138196, + 49.237789701 + ], + [ + 10.214249, + 49.238639201 + ], + [ + 10.2146261, + 49.239385101 + ], + [ + 10.2147592, + 49.239612301 + ], + [ + 10.2154449, + 49.240727301 + ], + [ + 10.2169048, + 49.242860501 + ], + [ + 10.2182575, + 49.244645101 + ], + [ + 10.2192227, + 49.245824301 + ], + [ + 10.2203129, + 49.247086801 + ], + [ + 10.2213338, + 49.248200001 + ], + [ + 10.2225441, + 49.249450201 + ], + [ + 10.2234444, + 49.250337301 + ], + [ + 10.2254869, + 49.252296301 + ], + [ + 10.2270716, + 49.253828801 + ], + [ + 10.2276135, + 49.254390901 + ], + [ + 10.2285956, + 49.255409801 + ], + [ + 10.2299994, + 49.257014701 + ], + [ + 10.2312838, + 49.258602501 + ], + [ + 10.2321722, + 49.259819201 + ], + [ + 10.2326756, + 49.260535701 + ], + [ + 10.2330873, + 49.261172501 + ], + [ + 10.2332764, + 49.261445501 + ], + [ + 10.2336364, + 49.262009601 + ], + [ + 10.2338022, + 49.262301701 + ], + [ + 10.2341735, + 49.262921001 + ], + [ + 10.235084, + 49.264704201 + ], + [ + 10.2354869, + 49.265585501 + ], + [ + 10.2358031, + 49.266437601 + ], + [ + 10.2360674, + 49.267319801 + ], + [ + 10.2362752, + 49.268161601 + ], + [ + 10.2363896, + 49.268889801 + ], + [ + 10.2364737, + 49.269649201 + ], + [ + 10.2364982, + 49.270339901 + ], + [ + 10.2364683, + 49.271047601 + ], + [ + 10.2363902, + 49.271741401 + ], + [ + 10.2362376, + 49.272496601 + ], + [ + 10.236023, + 49.273246501 + ], + [ + 10.235846, + 49.273746101 + ], + [ + 10.2356285, + 49.274246001 + ], + [ + 10.2353992, + 49.274711601 + ], + [ + 10.2351383, + 49.275190701 + ], + [ + 10.2348245, + 49.275693501 + ], + [ + 10.2346015, + 49.276036801 + ], + [ + 10.234183, + 49.276606801 + ], + [ + 10.2336296, + 49.277260101 + ], + [ + 10.2326293, + 49.278446001 + ], + [ + 10.2317333, + 49.279336701 + ], + [ + 10.2280468, + 49.282850301 + ], + [ + 10.2257906, + 49.284880301 + ], + [ + 10.2238422, + 49.286737501 + ], + [ + 10.2228359, + 49.287662101 + ], + [ + 10.2222399, + 49.288245001 + ], + [ + 10.2209379, + 49.289535201 + ], + [ + 10.2206036, + 49.289866401 + ], + [ + 10.2192878, + 49.291228801 + ], + [ + 10.217894, + 49.292759201 + ], + [ + 10.216526, + 49.294356001 + ], + [ + 10.2150786, + 49.296162001 + ], + [ + 10.2135908, + 49.298140001 + ], + [ + 10.2128541, + 49.299206001 + ], + [ + 10.2122433, + 49.300089701 + ], + [ + 10.2114521, + 49.301329301 + ], + [ + 10.2111333, + 49.301828801 + ], + [ + 10.2107207, + 49.302528901 + ], + [ + 10.2105528, + 49.302813801 + ], + [ + 10.210225, + 49.303367901 + ], + [ + 10.2096071, + 49.304475201 + ], + [ + 10.2090057, + 49.305587901 + ], + [ + 10.208262, + 49.307089301 + ], + [ + 10.2079641, + 49.307735201 + ], + [ + 10.2069782, + 49.310028201 + ], + [ + 10.2065503, + 49.311117401 + ], + [ + 10.2062491, + 49.311884101 + ], + [ + 10.2056498, + 49.313753701 + ], + [ + 10.2053858, + 49.314891501 + ], + [ + 10.2051845, + 49.316070001 + ], + [ + 10.2050506, + 49.317381701 + ], + [ + 10.2050699, + 49.318522501 + ], + [ + 10.2051839, + 49.319594801 + ], + [ + 10.2052411, + 49.320003601 + ], + [ + 10.2054488, + 49.321065301 + ], + [ + 10.2055737, + 49.321471201 + ], + [ + 10.2059241, + 49.322504901 + ], + [ + 10.2062166, + 49.323158301 + ], + [ + 10.2066314, + 49.323959401 + ], + [ + 10.2070654, + 49.324670601 + ], + [ + 10.2074001, + 49.325183201 + ], + [ + 10.2077581, + 49.325691901 + ], + [ + 10.2082461, + 49.326317701 + ], + [ + 10.2087741, + 49.326929401 + ], + [ + 10.2100242, + 49.328199001 + ], + [ + 10.21088, + 49.328969601 + ], + [ + 10.2119334, + 49.329832801 + ], + [ + 10.2137053, + 49.331234101 + ], + [ + 10.2153152, + 49.332533701 + ], + [ + 10.2162043, + 49.333314501 + ], + [ + 10.216969, + 49.334009401 + ], + [ + 10.2174019, + 49.334483201 + ], + [ + 10.2178465, + 49.334921101 + ], + [ + 10.2183185, + 49.335491801 + ], + [ + 10.2190901, + 49.336461301 + ], + [ + 10.2197183, + 49.337327201 + ], + [ + 10.220303, + 49.338253001 + ], + [ + 10.2207664, + 49.339193101 + ], + [ + 10.2215325, + 49.340916801 + ], + [ + 10.2218541, + 49.341805401 + ], + [ + 10.2220941, + 49.342671301 + ], + [ + 10.2223607, + 49.343958801 + ], + [ + 10.2225395, + 49.345577201 + ], + [ + 10.2225003, + 49.347521601 + ], + [ + 10.2223885, + 49.348493901 + ], + [ + 10.2222012, + 49.349458701 + ], + [ + 10.2216742, + 49.351138701 + ], + [ + 10.2208809, + 49.352828401 + ], + [ + 10.2205944, + 49.353325901 + ], + [ + 10.2201614, + 49.353997201 + ], + [ + 10.2193544, + 49.355154301 + ], + [ + 10.2188927, + 49.355785701 + ], + [ + 10.2179958, + 49.356969101 + ], + [ + 10.2167026, + 49.358638201 + ], + [ + 10.2161145, + 49.359450301 + ], + [ + 10.2158113, + 49.359934401 + ], + [ + 10.2150568, + 49.361130101 + ], + [ + 10.2148226, + 49.361582201 + ], + [ + 10.2144286, + 49.362400301 + ], + [ + 10.213907, + 49.363668301 + ], + [ + 10.2136803, + 49.364380801 + ], + [ + 10.2134749, + 49.365066601 + ], + [ + 10.2133825, + 49.365476001 + ], + [ + 10.2132059, + 49.366341101 + ], + [ + 10.2131618, + 49.366584801 + ], + [ + 10.2130777, + 49.367075601 + ], + [ + 10.213027, + 49.367648401 + ], + [ + 10.2129887, + 49.368832801 + ], + [ + 10.2130109, + 49.369866501 + ], + [ + 10.2131215, + 49.370921601 + ], + [ + 10.2132814, + 49.371772601 + ], + [ + 10.2133222, + 49.371989801 + ], + [ + 10.2133954, + 49.372290201 + ], + [ + 10.2136126, + 49.373072301 + ], + [ + 10.2139322, + 49.374073301 + ], + [ + 10.2140803, + 49.374439001 + ], + [ + 10.2144318, + 49.375245901 + ], + [ + 10.214773, + 49.375964801 + ], + [ + 10.2148243, + 49.376070901 + ], + [ + 10.2149772, + 49.376358601 + ], + [ + 10.2152087, + 49.376757001 + ], + [ + 10.2157233, + 49.377568901 + ], + [ + 10.2161558, + 49.378218401 + ], + [ + 10.2163612, + 49.378504301 + ], + [ + 10.2168372, + 49.379140901 + ], + [ + 10.2172054, + 49.379577601 + ], + [ + 10.2178779, + 49.380324501 + ], + [ + 10.2183397, + 49.380813901 + ], + [ + 10.219038, + 49.381478601 + ], + [ + 10.2192971, + 49.381712501 + ], + [ + 10.2199265, + 49.382250001 + ], + [ + 10.2202219, + 49.382480601 + ], + [ + 10.2206808, + 49.382839001 + ], + [ + 10.2215017, + 49.383423801 + ], + [ + 10.2228149, + 49.384249201 + ], + [ + 10.223422, + 49.384597301 + ], + [ + 10.2241533, + 49.384988401 + ], + [ + 10.2248114, + 49.385316701 + ], + [ + 10.2255607, + 49.385673801 + ], + [ + 10.2263215, + 49.386016801 + ], + [ + 10.227085, + 49.386348901 + ], + [ + 10.2284405, + 49.386874101 + ], + [ + 10.2297818, + 49.387409601 + ], + [ + 10.2309547, + 49.387870201 + ], + [ + 10.2319099, + 49.388265701 + ], + [ + 10.232771, + 49.388654701 + ], + [ + 10.2337217, + 49.389107201 + ], + [ + 10.2347063, + 49.389625401 + ], + [ + 10.2357173, + 49.390194801 + ], + [ + 10.2362594, + 49.390526501 + ], + [ + 10.2372059, + 49.391174301 + ], + [ + 10.2378135, + 49.391623201 + ], + [ + 10.2385246, + 49.392174401 + ], + [ + 10.2390942, + 49.392665201 + ], + [ + 10.2396491, + 49.393178501 + ], + [ + 10.2401537, + 49.393676001 + ], + [ + 10.2406337, + 49.394163101 + ], + [ + 10.2412185, + 49.394828201 + ], + [ + 10.2417472, + 49.395499001 + ], + [ + 10.2422994, + 49.396268301 + ], + [ + 10.2427935, + 49.397027401 + ], + [ + 10.2429834, + 49.397338401 + ], + [ + 10.2434068, + 49.398106901 + ], + [ + 10.2437666, + 49.398822201 + ], + [ + 10.2441248, + 49.399582001 + ], + [ + 10.2445632, + 49.400677801 + ], + [ + 10.2449667, + 49.401855801 + ], + [ + 10.2451935, + 49.402693701 + ], + [ + 10.2453697, + 49.403463301 + ], + [ + 10.2455055, + 49.404230001 + ], + [ + 10.2456255, + 49.405127401 + ], + [ + 10.2457755, + 49.406901701 + ], + [ + 10.2458793, + 49.408404601 + ], + [ + 10.2459633, + 49.409324001 + ], + [ + 10.2461065, + 49.410357901 + ], + [ + 10.2461806, + 49.410765501 + ], + [ + 10.2462637, + 49.411180901 + ], + [ + 10.2463785, + 49.411656801 + ], + [ + 10.2464458, + 49.411935701 + ], + [ + 10.2467205, + 49.412852901 + ], + [ + 10.2469879, + 49.413569901 + ], + [ + 10.2472678, + 49.414176701 + ], + [ + 10.2476238, + 49.414872301 + ], + [ + 10.2479321, + 49.415396901 + ], + [ + 10.2482002, + 49.415820601 + ], + [ + 10.2485436, + 49.416318201 + ], + [ + 10.2488959, + 49.416800201 + ], + [ + 10.2493046, + 49.417310501 + ], + [ + 10.2497168, + 49.417793701 + ], + [ + 10.2502495, + 49.418358001 + ], + [ + 10.2508415, + 49.418938101 + ], + [ + 10.2513653, + 49.419397901 + ], + [ + 10.251682, + 49.419683201 + ], + [ + 10.2520422, + 49.419983201 + ], + [ + 10.2536029, + 49.421218801 + ], + [ + 10.2551897, + 49.422510701 + ], + [ + 10.2558178, + 49.423053201 + ], + [ + 10.2564423, + 49.423645101 + ], + [ + 10.2568504, + 49.424052901 + ], + [ + 10.2572502, + 49.424516201 + ], + [ + 10.2575934, + 49.424946201 + ], + [ + 10.2579153, + 49.425392801 + ], + [ + 10.2582468, + 49.425892401 + ], + [ + 10.2585563, + 49.426429101 + ], + [ + 10.2588246, + 49.426970601 + ], + [ + 10.2590471, + 49.427477501 + ], + [ + 10.2592866, + 49.428122901 + ], + [ + 10.2595307, + 49.428965201 + ], + [ + 10.2596887, + 49.429776801 + ], + [ + 10.2597479, + 49.430401501 + ], + [ + 10.2597619, + 49.430920501 + ], + [ + 10.2597472, + 49.431556101 + ], + [ + 10.2596953, + 49.432093401 + ], + [ + 10.2596158, + 49.432602701 + ], + [ + 10.259534, + 49.433124501 + ], + [ + 10.2593901, + 49.433770701 + ], + [ + 10.2592403, + 49.434338301 + ], + [ + 10.2590349, + 49.434964701 + ], + [ + 10.2588084, + 49.435564501 + ], + [ + 10.2586025, + 49.436054601 + ], + [ + 10.2585464, + 49.436191201 + ], + [ + 10.2582951, + 49.436803201 + ], + [ + 10.2579887, + 49.437455901 + ], + [ + 10.2576604, + 49.438091901 + ], + [ + 10.2572526, + 49.438816601 + ], + [ + 10.2569577, + 49.439347701 + ], + [ + 10.2564411, + 49.440163601 + ], + [ + 10.2562166, + 49.440491301 + ], + [ + 10.2555782, + 49.441423101 + ], + [ + 10.2544879, + 49.442909801 + ], + [ + 10.2542108, + 49.443262801 + ], + [ + 10.2535431, + 49.444104501 + ], + [ + 10.2533292, + 49.444374101 + ], + [ + 10.2532711, + 49.444451101 + ], + [ + 10.2519919, + 49.445951201 + ], + [ + 10.2518481, + 49.446100401 + ], + [ + 10.2514162, + 49.446553201 + ], + [ + 10.2507285, + 49.447267001 + ], + [ + 10.2505459, + 49.447452901 + ], + [ + 10.2502808, + 49.447727801 + ], + [ + 10.2498066, + 49.448217701 + ], + [ + 10.2494249, + 49.448607901 + ], + [ + 10.2489329, + 49.449104701 + ], + [ + 10.2472196, + 49.450872601 + ], + [ + 10.2457297, + 49.452396801 + ], + [ + 10.2424399, + 49.455827901 + ], + [ + 10.2407541, + 49.457692101 + ], + [ + 10.2390296, + 49.459613801 + ], + [ + 10.2381172, + 49.460735201 + ], + [ + 10.2375269, + 49.461474401 + ], + [ + 10.2368914, + 49.462288501 + ], + [ + 10.2357596, + 49.463794401 + ], + [ + 10.23457, + 49.465444601 + ], + [ + 10.2335073, + 49.467087701 + ], + [ + 10.2323899, + 49.468812501 + ], + [ + 10.2304173, + 49.471886801 + ], + [ + 10.2288605, + 49.474254201 + ], + [ + 10.2274346, + 49.476027501 + ], + [ + 10.226091, + 49.477411501 + ], + [ + 10.2245969, + 49.478640401 + ], + [ + 10.2230318, + 49.479701301 + ], + [ + 10.2226745, + 49.479943401 + ], + [ + 10.2217624, + 49.480497701 + ], + [ + 10.2211869, + 49.480828401 + ], + [ + 10.2195032, + 49.481703401 + ], + [ + 10.2176371, + 49.482626801 + ], + [ + 10.2146056, + 49.484037101 + ], + [ + 10.2132082, + 49.484671501 + ], + [ + 10.2124085, + 49.485056901 + ], + [ + 10.2118275, + 49.485336901 + ], + [ + 10.2100832, + 49.486218001 + ], + [ + 10.209155, + 49.486748101 + ], + [ + 10.2077399, + 49.487600601 + ], + [ + 10.206077, + 49.488761101 + ], + [ + 10.2040021, + 49.490475901 + ], + [ + 10.2029636, + 49.491460701 + ], + [ + 10.2020794, + 49.492419701 + ], + [ + 10.2010867, + 49.493631501 + ], + [ + 10.2006613, + 49.494248301 + ], + [ + 10.1999815, + 49.495233701 + ], + [ + 10.1995423, + 49.496017701 + ], + [ + 10.1991425, + 49.496800401 + ], + [ + 10.1985067, + 49.498227601 + ], + [ + 10.1980413, + 49.499813601 + ], + [ + 10.1977211, + 49.501192401 + ], + [ + 10.1975114, + 49.502678201 + ], + [ + 10.1974893, + 49.503079001 + ], + [ + 10.1974466, + 49.503852901 + ], + [ + 10.1973964, + 49.504813101 + ], + [ + 10.1973644, + 49.506579101 + ], + [ + 10.1973743, + 49.507653901 + ], + [ + 10.1973749, + 49.508789201 + ], + [ + 10.1973719, + 49.509338801 + ], + [ + 10.1973199, + 49.510844501 + ], + [ + 10.197303, + 49.511124701 + ], + [ + 10.1972718, + 49.512072301 + ], + [ + 10.1971913, + 49.512978701 + ], + [ + 10.1970356, + 49.514166701 + ], + [ + 10.1969134, + 49.514970701 + ], + [ + 10.1967858, + 49.515626401 + ], + [ + 10.1966691, + 49.516194301 + ], + [ + 10.1964463, + 49.517163601 + ], + [ + 10.1962922, + 49.517742601 + ], + [ + 10.1960798, + 49.518503501 + ], + [ + 10.1958811, + 49.519168201 + ], + [ + 10.195526, + 49.520145901 + ], + [ + 10.1952964, + 49.520784101 + ], + [ + 10.1948823, + 49.521802601 + ], + [ + 10.1946366, + 49.522351201 + ], + [ + 10.1942503, + 49.523162601 + ], + [ + 10.1939915, + 49.523667601 + ], + [ + 10.1936737, + 49.524254201 + ], + [ + 10.1933572, + 49.524787001 + ], + [ + 10.1930426, + 49.525304201 + ], + [ + 10.1926893, + 49.525831601 + ], + [ + 10.192329, + 49.526342701 + ], + [ + 10.1920271, + 49.526745801 + ], + [ + 10.1915896, + 49.527302401 + ], + [ + 10.191147, + 49.527821601 + ], + [ + 10.1907643, + 49.528256101 + ], + [ + 10.1903638, + 49.528671201 + ], + [ + 10.1900276, + 49.529006301 + ], + [ + 10.1897487, + 49.529279701 + ], + [ + 10.1891697, + 49.529790701 + ], + [ + 10.1878286, + 49.530882701 + ], + [ + 10.1868045, + 49.531587201 + ], + [ + 10.1857787, + 49.532253101 + ], + [ + 10.1846234, + 49.532922901 + ], + [ + 10.18347, + 49.533511201 + ], + [ + 10.182393, + 49.534019301 + ], + [ + 10.1812634, + 49.534508101 + ], + [ + 10.1795017, + 49.535270401 + ], + [ + 10.1761773, + 49.536672101 + ], + [ + 10.1741469, + 49.537624301 + ], + [ + 10.1725387, + 49.538505901 + ], + [ + 10.1704031, + 49.539871401 + ], + [ + 10.169845, + 49.540288801 + ], + [ + 10.1690695, + 49.540910401 + ], + [ + 10.1683706, + 49.541529701 + ], + [ + 10.1676319, + 49.542239801 + ], + [ + 10.1669023, + 49.543022101 + ], + [ + 10.1662827, + 49.543782801 + ], + [ + 10.1653014, + 49.545202201 + ], + [ + 10.1649231, + 49.545867601 + ], + [ + 10.1645201, + 49.546627901 + ], + [ + 10.1641826, + 49.547414301 + ], + [ + 10.1639521, + 49.548043501 + ], + [ + 10.1637206, + 49.548829601 + ], + [ + 10.163539, + 49.549636401 + ], + [ + 10.1633601, + 49.551239701 + ], + [ + 10.1633483, + 49.552645901 + ], + [ + 10.1634394, + 49.553502701 + ], + [ + 10.163696, + 49.554693101 + ], + [ + 10.1638752, + 49.555418201 + ], + [ + 10.163985, + 49.555755401 + ], + [ + 10.1642476, + 49.556467001 + ], + [ + 10.1647445, + 49.557510901 + ], + [ + 10.1653456, + 49.558602701 + ], + [ + 10.1656891, + 49.559112401 + ], + [ + 10.1662345, + 49.559921501 + ], + [ + 10.1670148, + 49.560942801 + ], + [ + 10.1681564, + 49.562384701 + ], + [ + 10.1686742, + 49.563022901 + ], + [ + 10.1689328, + 49.563341601 + ], + [ + 10.1693118, + 49.563833101 + ], + [ + 10.170282, + 49.565183301 + ], + [ + 10.1708527, + 49.566077601 + ], + [ + 10.1712708, + 49.566829601 + ], + [ + 10.1718156, + 49.568012601 + ], + [ + 10.1722164, + 49.569143101 + ], + [ + 10.1724919, + 49.570298501 + ], + [ + 10.1725717, + 49.570734901 + ], + [ + 10.1726852, + 49.571611601 + ], + [ + 10.1727073, + 49.571872101 + ], + [ + 10.1727215, + 49.572552801 + ], + [ + 10.1726767, + 49.573535001 + ], + [ + 10.1725664, + 49.574663801 + ], + [ + 10.1721941, + 49.576913001 + ], + [ + 10.1718349, + 49.579106601 + ], + [ + 10.1717666, + 49.579655001 + ], + [ + 10.1716905, + 49.580722301 + ], + [ + 10.1716668, + 49.581602401 + ], + [ + 10.1716806, + 49.581970701 + ], + [ + 10.1717065, + 49.582382301 + ], + [ + 10.1717869, + 49.583223401 + ], + [ + 10.1718758, + 49.583847301 + ], + [ + 10.171962, + 49.584452301 + ], + [ + 10.1719947, + 49.584616801 + ], + [ + 10.1721552, + 49.585382501 + ], + [ + 10.1722851, + 49.585978201 + ], + [ + 10.1725084, + 49.586860301 + ], + [ + 10.1726485, + 49.587406101 + ], + [ + 10.1728865, + 49.588255801 + ], + [ + 10.1731089, + 49.589038701 + ], + [ + 10.1732885, + 49.589661401 + ], + [ + 10.1733423, + 49.589859901 + ], + [ + 10.1733968, + 49.590061001 + ], + [ + 10.1736499, + 49.590913001 + ], + [ + 10.1738172, + 49.591530201 + ], + [ + 10.1740336, + 49.592334301 + ], + [ + 10.1744252, + 49.594089401 + ], + [ + 10.1744771, + 49.594366401 + ], + [ + 10.1746021, + 49.595046301 + ], + [ + 10.1747791, + 49.596725301 + ], + [ + 10.174792, + 49.598494501 + ], + [ + 10.1747062, + 49.599777801 + ], + [ + 10.1745858, + 49.600676001 + ], + [ + 10.174421, + 49.601645701 + ], + [ + 10.1740811, + 49.603232301 + ], + [ + 10.1734783, + 49.605623601 + ], + [ + 10.1730826, + 49.607195001 + ], + [ + 10.1729036, + 49.607906101 + ], + [ + 10.1725868, + 49.609290301 + ], + [ + 10.1723444, + 49.610635101 + ], + [ + 10.1721384, + 49.612569201 + ], + [ + 10.1721248, + 49.614002101 + ], + [ + 10.1722296, + 49.615301401 + ], + [ + 10.1724366, + 49.616495901 + ], + [ + 10.1726118, + 49.617220701 + ], + [ + 10.1728945, + 49.618170801 + ], + [ + 10.1733623, + 49.619421001 + ], + [ + 10.1739752, + 49.620826801 + ], + [ + 10.1748793, + 49.622781201 + ], + [ + 10.1755401, + 49.624353001 + ], + [ + 10.1757012, + 49.624813301 + ], + [ + 10.1760008, + 49.625669501 + ], + [ + 10.1762409, + 49.626609001 + ], + [ + 10.1763756, + 49.627351901 + ], + [ + 10.1764824, + 49.628367401 + ], + [ + 10.1765049, + 49.629176801 + ], + [ + 10.1764881, + 49.629772501 + ], + [ + 10.1764051, + 49.630635401 + ], + [ + 10.1762491, + 49.631549601 + ], + [ + 10.1758608, + 49.632963401 + ], + [ + 10.175532, + 49.633821901 + ], + [ + 10.1752869, + 49.634380301 + ], + [ + 10.1745162, + 49.635792001 + ], + [ + 10.1735862, + 49.637114801 + ], + [ + 10.173144, + 49.637686001 + ], + [ + 10.1726281, + 49.638281301 + ], + [ + 10.1724643, + 49.638449301 + ], + [ + 10.171148, + 49.639733401 + ], + [ + 10.1704233, + 49.640341101 + ], + [ + 10.1696354, + 49.640956901 + ], + [ + 10.1687158, + 49.641604401 + ], + [ + 10.1682906, + 49.641886301 + ], + [ + 10.1678096, + 49.642180801 + ], + [ + 10.1675323, + 49.642350601 + ], + [ + 10.1667686, + 49.642786401 + ], + [ + 10.1655897, + 49.643411301 + ], + [ + 10.1638903, + 49.644200301 + ], + [ + 10.1633209, + 49.644440601 + ], + [ + 10.1626505, + 49.644723601 + ], + [ + 10.1615838, + 49.645156701 + ], + [ + 10.159538, + 49.645883901 + ], + [ + 10.1573317, + 49.646570901 + ], + [ + 10.1551833, + 49.647208501 + ], + [ + 10.1506656, + 49.648531001 + ], + [ + 10.1493332, + 49.648932801 + ], + [ + 10.1475698, + 49.649471201 + ], + [ + 10.1468915, + 49.649694801 + ], + [ + 10.1460494, + 49.649984201 + ], + [ + 10.145161, + 49.650289701 + ], + [ + 10.1448081, + 49.650411001 + ], + [ + 10.144768498, + 49.650425199 + ] + ] + } + }, + { + "identifier": "2026-017679--vi-bs.2026-04-10_08-00-00-000.devi-zus.2026-04-10_08-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.17265606633879,10.248088596135519,49.3699965416819,10.213024531135442", + "point": "49.17265606633879,10.248088596135519", + "startLcPosition": "58", + "impact": { + "lower": "Rothenburg ob der Tauber", + "upper": "Dinkelsb\u00fchl/Fichtenau", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> W\u00fcrzburg", + "title": "A7 | Dinkelsb\u00fchl/Fichtenau - Rothenburg ob der Tauber", + "coordinate": { + "lat": 49.17265606633879, + "long": 10.248088596135519 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A7: Ulm -> W\u00fcrzburg, zwischen 11.0 km hinter AS Dinkelsb\u00fchl/Fichtenau und 0.7 km vor AS Rothenburg ob der Tauber", + "", + "L\u00e4nge: 24 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 von Rothenburg ob der Tauber (AS) nach Dinkelsb\u00fchlFichtenau (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.248088596, + 49.172656066 + ], + [ + 10.2479453, + 49.172762201 + ], + [ + 10.2477871, + 49.172881001 + ], + [ + 10.2472963, + 49.173249801 + ], + [ + 10.2466934, + 49.173727301 + ], + [ + 10.2459223, + 49.174359401 + ], + [ + 10.2455935, + 49.174642001 + ], + [ + 10.2450575, + 49.175108101 + ], + [ + 10.2442735, + 49.175853901 + ], + [ + 10.2436814, + 49.176454801 + ], + [ + 10.2431394, + 49.177018801 + ], + [ + 10.2426003, + 49.177629201 + ], + [ + 10.2418895, + 49.178469101 + ], + [ + 10.2412846, + 49.179268801 + ], + [ + 10.2407717, + 49.180036601 + ], + [ + 10.2399061, + 49.181385201 + ], + [ + 10.239284, + 49.182543501 + ], + [ + 10.2387724, + 49.183658101 + ], + [ + 10.238642, + 49.183947101 + ], + [ + 10.23828, + 49.184902101 + ], + [ + 10.2379119, + 49.186108401 + ], + [ + 10.2376335, + 49.187209001 + ], + [ + 10.2373289, + 49.188761201 + ], + [ + 10.2371462, + 49.189924201 + ], + [ + 10.2369987, + 49.190907201 + ], + [ + 10.2369083, + 49.191536901 + ], + [ + 10.2368211, + 49.192207201 + ], + [ + 10.2366551, + 49.193378201 + ], + [ + 10.2366465, + 49.193439001 + ], + [ + 10.2365747, + 49.193907701 + ], + [ + 10.2364718, + 49.194566601 + ], + [ + 10.2363651, + 49.195191401 + ], + [ + 10.2361215, + 49.196477001 + ], + [ + 10.2360246, + 49.196906701 + ], + [ + 10.2359136, + 49.197348901 + ], + [ + 10.2356836, + 49.198191301 + ], + [ + 10.2355422, + 49.198680201 + ], + [ + 10.2352087, + 49.199715301 + ], + [ + 10.2350306, + 49.200237201 + ], + [ + 10.2348646, + 49.200709201 + ], + [ + 10.2346728, + 49.201187401 + ], + [ + 10.2344926, + 49.201664801 + ], + [ + 10.2343141, + 49.202096901 + ], + [ + 10.2340538, + 49.202689601 + ], + [ + 10.2338102, + 49.203219801 + ], + [ + 10.2334818, + 49.203903601 + ], + [ + 10.233191, + 49.204480901 + ], + [ + 10.2328078, + 49.205197601 + ], + [ + 10.2323867, + 49.205953801 + ], + [ + 10.2321354, + 49.206389501 + ], + [ + 10.2316424, + 49.207179601 + ], + [ + 10.2312238, + 49.207821401 + ], + [ + 10.2306559, + 49.208666001 + ], + [ + 10.2301451, + 49.209364601 + ], + [ + 10.2299734, + 49.209590601 + ], + [ + 10.2296586, + 49.210019501 + ], + [ + 10.2288376, + 49.211080201 + ], + [ + 10.2280959, + 49.211975801 + ], + [ + 10.2271975, + 49.212968101 + ], + [ + 10.2266284, + 49.213596601 + ], + [ + 10.2258996, + 49.214375801 + ], + [ + 10.2253978, + 49.214865401 + ], + [ + 10.2247049, + 49.215538701 + ], + [ + 10.2240462, + 49.216155801 + ], + [ + 10.2227023, + 49.217354601 + ], + [ + 10.2212365, + 49.218599101 + ], + [ + 10.2202817, + 49.219401201 + ], + [ + 10.2191052, + 49.220422501 + ], + [ + 10.2178489, + 49.221589301 + ], + [ + 10.2172733, + 49.222137401 + ], + [ + 10.2167448, + 49.222677401 + ], + [ + 10.2161177, + 49.223374301 + ], + [ + 10.2156772, + 49.223897901 + ], + [ + 10.2153108, + 49.224365501 + ], + [ + 10.2147043, + 49.225243901 + ], + [ + 10.2142399, + 49.225992501 + ], + [ + 10.2139221, + 49.226600201 + ], + [ + 10.2135784, + 49.227313701 + ], + [ + 10.2132125, + 49.228249901 + ], + [ + 10.2129465, + 49.229084101 + ], + [ + 10.2127666, + 49.229813701 + ], + [ + 10.2125946, + 49.230831101 + ], + [ + 10.2125171, + 49.231624401 + ], + [ + 10.2124926, + 49.232383401 + ], + [ + 10.2126082, + 49.233984201 + ], + [ + 10.2127946, + 49.234930701 + ], + [ + 10.2130668, + 49.235883801 + ], + [ + 10.2134185, + 49.236873501 + ], + [ + 10.2138196, + 49.237789701 + ], + [ + 10.214249, + 49.238639201 + ], + [ + 10.2146261, + 49.239385101 + ], + [ + 10.2147592, + 49.239612301 + ], + [ + 10.2154449, + 49.240727301 + ], + [ + 10.2169048, + 49.242860501 + ], + [ + 10.2182575, + 49.244645101 + ], + [ + 10.2192227, + 49.245824301 + ], + [ + 10.2203129, + 49.247086801 + ], + [ + 10.2213338, + 49.248200001 + ], + [ + 10.2225441, + 49.249450201 + ], + [ + 10.2234444, + 49.250337301 + ], + [ + 10.2254869, + 49.252296301 + ], + [ + 10.2270716, + 49.253828801 + ], + [ + 10.2276135, + 49.254390901 + ], + [ + 10.2285956, + 49.255409801 + ], + [ + 10.2299994, + 49.257014701 + ], + [ + 10.2312838, + 49.258602501 + ], + [ + 10.2321722, + 49.259819201 + ], + [ + 10.2326756, + 49.260535701 + ], + [ + 10.2330873, + 49.261172501 + ], + [ + 10.2332764, + 49.261445501 + ], + [ + 10.2336364, + 49.262009601 + ], + [ + 10.2338022, + 49.262301701 + ], + [ + 10.2341735, + 49.262921001 + ], + [ + 10.235084, + 49.264704201 + ], + [ + 10.2354869, + 49.265585501 + ], + [ + 10.2358031, + 49.266437601 + ], + [ + 10.2360674, + 49.267319801 + ], + [ + 10.2362752, + 49.268161601 + ], + [ + 10.2363896, + 49.268889801 + ], + [ + 10.2364737, + 49.269649201 + ], + [ + 10.2364982, + 49.270339901 + ], + [ + 10.2364683, + 49.271047601 + ], + [ + 10.2363902, + 49.271741401 + ], + [ + 10.2362376, + 49.272496601 + ], + [ + 10.236023, + 49.273246501 + ], + [ + 10.235846, + 49.273746101 + ], + [ + 10.2356285, + 49.274246001 + ], + [ + 10.2353992, + 49.274711601 + ], + [ + 10.2351383, + 49.275190701 + ], + [ + 10.2348245, + 49.275693501 + ], + [ + 10.2346015, + 49.276036801 + ], + [ + 10.234183, + 49.276606801 + ], + [ + 10.2336296, + 49.277260101 + ], + [ + 10.2326293, + 49.278446001 + ], + [ + 10.2317333, + 49.279336701 + ], + [ + 10.2280468, + 49.282850301 + ], + [ + 10.2257906, + 49.284880301 + ], + [ + 10.2238422, + 49.286737501 + ], + [ + 10.2228359, + 49.287662101 + ], + [ + 10.2222399, + 49.288245001 + ], + [ + 10.2209379, + 49.289535201 + ], + [ + 10.2206036, + 49.289866401 + ], + [ + 10.2192878, + 49.291228801 + ], + [ + 10.217894, + 49.292759201 + ], + [ + 10.216526, + 49.294356001 + ], + [ + 10.2150786, + 49.296162001 + ], + [ + 10.2135908, + 49.298140001 + ], + [ + 10.2128541, + 49.299206001 + ], + [ + 10.2122433, + 49.300089701 + ], + [ + 10.2114521, + 49.301329301 + ], + [ + 10.2111333, + 49.301828801 + ], + [ + 10.2107207, + 49.302528901 + ], + [ + 10.2105528, + 49.302813801 + ], + [ + 10.210225, + 49.303367901 + ], + [ + 10.2096071, + 49.304475201 + ], + [ + 10.2090057, + 49.305587901 + ], + [ + 10.208262, + 49.307089301 + ], + [ + 10.2079641, + 49.307735201 + ], + [ + 10.2069782, + 49.310028201 + ], + [ + 10.2065503, + 49.311117401 + ], + [ + 10.2062491, + 49.311884101 + ], + [ + 10.2056498, + 49.313753701 + ], + [ + 10.2053858, + 49.314891501 + ], + [ + 10.2051845, + 49.316070001 + ], + [ + 10.2050506, + 49.317381701 + ], + [ + 10.2050699, + 49.318522501 + ], + [ + 10.2051839, + 49.319594801 + ], + [ + 10.2052411, + 49.320003601 + ], + [ + 10.2054488, + 49.321065301 + ], + [ + 10.2055737, + 49.321471201 + ], + [ + 10.2059241, + 49.322504901 + ], + [ + 10.2062166, + 49.323158301 + ], + [ + 10.2066314, + 49.323959401 + ], + [ + 10.2070654, + 49.324670601 + ], + [ + 10.2074001, + 49.325183201 + ], + [ + 10.2077581, + 49.325691901 + ], + [ + 10.2082461, + 49.326317701 + ], + [ + 10.2087741, + 49.326929401 + ], + [ + 10.2100242, + 49.328199001 + ], + [ + 10.21088, + 49.328969601 + ], + [ + 10.2119334, + 49.329832801 + ], + [ + 10.2137053, + 49.331234101 + ], + [ + 10.2153152, + 49.332533701 + ], + [ + 10.2162043, + 49.333314501 + ], + [ + 10.216969, + 49.334009401 + ], + [ + 10.2174019, + 49.334483201 + ], + [ + 10.2178465, + 49.334921101 + ], + [ + 10.2183185, + 49.335491801 + ], + [ + 10.2190901, + 49.336461301 + ], + [ + 10.2197183, + 49.337327201 + ], + [ + 10.220303, + 49.338253001 + ], + [ + 10.2207664, + 49.339193101 + ], + [ + 10.2215325, + 49.340916801 + ], + [ + 10.2218541, + 49.341805401 + ], + [ + 10.2220941, + 49.342671301 + ], + [ + 10.2223607, + 49.343958801 + ], + [ + 10.2225395, + 49.345577201 + ], + [ + 10.2225003, + 49.347521601 + ], + [ + 10.2223885, + 49.348493901 + ], + [ + 10.2222012, + 49.349458701 + ], + [ + 10.2216742, + 49.351138701 + ], + [ + 10.2208809, + 49.352828401 + ], + [ + 10.2205944, + 49.353325901 + ], + [ + 10.2201614, + 49.353997201 + ], + [ + 10.2193544, + 49.355154301 + ], + [ + 10.2188927, + 49.355785701 + ], + [ + 10.2179958, + 49.356969101 + ], + [ + 10.2167026, + 49.358638201 + ], + [ + 10.2161145, + 49.359450301 + ], + [ + 10.2158113, + 49.359934401 + ], + [ + 10.2150568, + 49.361130101 + ], + [ + 10.2148226, + 49.361582201 + ], + [ + 10.2144286, + 49.362400301 + ], + [ + 10.213907, + 49.363668301 + ], + [ + 10.2136803, + 49.364380801 + ], + [ + 10.2134749, + 49.365066601 + ], + [ + 10.2133825, + 49.365476001 + ], + [ + 10.2132059, + 49.366341101 + ], + [ + 10.2131618, + 49.366584801 + ], + [ + 10.2130777, + 49.367075601 + ], + [ + 10.213027, + 49.367648401 + ], + [ + 10.2129887, + 49.368832801 + ], + [ + 10.2130109, + 49.369866501 + ], + [ + 10.213024531, + 49.369996542 + ] + ] + } + }, + { + "identifier": "2025-003675--vi-bs.2026-02-05_18-00-00-000.devi-zus.2025-05-26_06-00-00-000.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.070750032640014,10.192887484318002,49.05079232375995,10.177175534851557", + "point": "49.070750032640014,10.192887484318002", + "startLcPosition": "58", + "impact": { + "lower": "Virngrundtunnel", + "upper": "Dinkelsb\u00fchl/Fichtenau", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Dinkelsb\u00fchl/Fichtenau - Virngrundtunnel", + "startTimestamp": "2026-02-05T18:00:00+01:00", + "coordinate": { + "lat": 49.070750032640014, + "long": 10.192887484318002 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 18:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.12.27)", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 2.9 km hinter AS Dinkelsb\u00fchl/Fichtenau und 3.5 km vor Virngrundtunnel", + "", + "L\u00e4nge: 2.57 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A7 Br\u00fcckeninstandsetzung Buchbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.192887484, + 49.070750033 + ], + [ + 10.1895819, + 49.068093101 + ], + [ + 10.1883211, + 49.067089701 + ], + [ + 10.1866584, + 49.065766301 + ], + [ + 10.1857147, + 49.065015201 + ], + [ + 10.1832889, + 49.063029701 + ], + [ + 10.1826044, + 49.062426701 + ], + [ + 10.1816867, + 49.061585101 + ], + [ + 10.1809825, + 49.060927301 + ], + [ + 10.1803393, + 49.060233501 + ], + [ + 10.1797397, + 49.059519401 + ], + [ + 10.1791697, + 49.058719401 + ], + [ + 10.1782133, + 49.057076001 + ], + [ + 10.1779838, + 49.056507901 + ], + [ + 10.1775773, + 49.055370501 + ], + [ + 10.1773109, + 49.054205601 + ], + [ + 10.1771024, + 49.052773401 + ], + [ + 10.1770901, + 49.051526701 + ], + [ + 10.177175535, + 49.050792324 + ] + ] + } + }, + { + "identifier": "2025-003675--vi-bs.2026-02-05_18-00-00-000.devi-zus.2025-05-26_06-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.07086145310423,10.193026116929374,49.05611473892319,10.177843284010528", + "point": "49.07086145310423,10.193026116929374", + "startLcPosition": "58", + "impact": { + "lower": "Virngrundtunnel", + "upper": "Dinkelsb\u00fchl/Fichtenau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Dinkelsb\u00fchl/Fichtenau - Virngrundtunnel", + "startTimestamp": "2026-02-05T18:00:00+01:00", + "coordinate": { + "lat": 49.07086145310423, + "long": 10.193026116929374 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 18:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.12.27)", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 2.9 km hinter AS Dinkelsb\u00fchl/Fichtenau und 4.1 km vor Virngrundtunnel", + "", + "L\u00e4nge: 1.99 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A7 Br\u00fcckeninstandsetzung Buchbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.193026117, + 49.070861453 + ], + [ + 10.1895819, + 49.068093101 + ], + [ + 10.1883211, + 49.067089701 + ], + [ + 10.1866584, + 49.065766301 + ], + [ + 10.1857147, + 49.065015201 + ], + [ + 10.1832889, + 49.063029701 + ], + [ + 10.1826044, + 49.062426701 + ], + [ + 10.1816867, + 49.061585101 + ], + [ + 10.1809825, + 49.060927301 + ], + [ + 10.1803393, + 49.060233501 + ], + [ + 10.1797397, + 49.059519401 + ], + [ + 10.1791697, + 49.058719401 + ], + [ + 10.1782133, + 49.057076001 + ], + [ + 10.1779838, + 49.056507901 + ], + [ + 10.177843284, + 49.056114739 + ] + ] + } + }, + { + "identifier": "2025-050271--vi-bs.2026-02-23_00-00-00-000.devi-zus.2026-02-23_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.20974617401488,10.229859214632315,49.24373954526035,10.21757108846955", + "point": "49.20974617401488,10.229859214632315", + "startLcPosition": "60", + "impact": { + "lower": "Kurzmandl", + "upper": "Feuchtwangen/Crailsheim", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ulm -> W\u00fcrzburg", + "title": "A7 | Feuchtwangen/Crailsheim - Kurzmandl", + "startTimestamp": "2026-02-23T00:00:00+01:00", + "coordinate": { + "lat": 49.20974617401488, + "long": 10.229859214632315 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 00:00 Uhr", + "Ende: 08.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.11.26)", + "", + "A7: Ulm -> W\u00fcrzburg, zwischen 0.8 km hinter AK Feuchtwangen/Crailsheim und 0.3 km vor Kurzmandl", + "", + "L\u00e4nge: 4.2 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Erneuerung an der Decke D736" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.229859215, + 49.209746174 + ], + [ + 10.2296586, + 49.210019501 + ], + [ + 10.2288376, + 49.211080201 + ], + [ + 10.2280959, + 49.211975801 + ], + [ + 10.2271975, + 49.212968101 + ], + [ + 10.2266284, + 49.213596601 + ], + [ + 10.2258996, + 49.214375801 + ], + [ + 10.2253978, + 49.214865401 + ], + [ + 10.2247049, + 49.215538701 + ], + [ + 10.2240462, + 49.216155801 + ], + [ + 10.2227023, + 49.217354601 + ], + [ + 10.2212365, + 49.218599101 + ], + [ + 10.2202817, + 49.219401201 + ], + [ + 10.2191052, + 49.220422501 + ], + [ + 10.2178489, + 49.221589301 + ], + [ + 10.2172733, + 49.222137401 + ], + [ + 10.2167448, + 49.222677401 + ], + [ + 10.2161177, + 49.223374301 + ], + [ + 10.2156772, + 49.223897901 + ], + [ + 10.2153108, + 49.224365501 + ], + [ + 10.2147043, + 49.225243901 + ], + [ + 10.2142399, + 49.225992501 + ], + [ + 10.2139221, + 49.226600201 + ], + [ + 10.2135784, + 49.227313701 + ], + [ + 10.2132125, + 49.228249901 + ], + [ + 10.2129465, + 49.229084101 + ], + [ + 10.2127666, + 49.229813701 + ], + [ + 10.2125946, + 49.230831101 + ], + [ + 10.2125171, + 49.231624401 + ], + [ + 10.2124926, + 49.232383401 + ], + [ + 10.2126082, + 49.233984201 + ], + [ + 10.2127946, + 49.234930701 + ], + [ + 10.2130668, + 49.235883801 + ], + [ + 10.2134185, + 49.236873501 + ], + [ + 10.2138196, + 49.237789701 + ], + [ + 10.214249, + 49.238639201 + ], + [ + 10.2146261, + 49.239385101 + ], + [ + 10.2147592, + 49.239612301 + ], + [ + 10.2154449, + 49.240727301 + ], + [ + 10.2169048, + 49.242860501 + ], + [ + 10.217571088, + 49.243739545 + ] + ] + } + }, + { + "identifier": "2025-050271--vi-bs.2026-02-23_00-00-00-000.devi-zus.2026-02-23_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.243793086865864,10.2174072786966,49.20969970456881,10.229711609214021", + "point": "49.243793086865864,10.2174072786966", + "startLcPosition": "61", + "impact": { + "lower": "Feuchtwangen/Crailsheim", + "upper": "Kurzmandl", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Kurzmandl - Feuchtwangen/Crailsheim", + "startTimestamp": "2026-02-23T00:00:00+01:00", + "coordinate": { + "lat": 49.243793086865864, + "long": 10.2174072786966 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 00:00 Uhr", + "Ende: 08.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.11.26)", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 0.4 km hinter Kurzmandl und 0.8 km vor AK Feuchtwangen/Crailsheim", + "", + "L\u00e4nge: 4.2 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Erneuerung an der Decke D736" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.217407279, + 49.243793087 + ], + [ + 10.2170603, + 49.243341701 + ], + [ + 10.2152887, + 49.240803501 + ], + [ + 10.2146089, + 49.239644101 + ], + [ + 10.2144697, + 49.239397001 + ], + [ + 10.2140912, + 49.238672901 + ], + [ + 10.2136982, + 49.237921001 + ], + [ + 10.2132567, + 49.236905501 + ], + [ + 10.2129191, + 49.235950201 + ], + [ + 10.2126259, + 49.234955401 + ], + [ + 10.2124458, + 49.233998001 + ], + [ + 10.2123212, + 49.232386601 + ], + [ + 10.2123468, + 49.231638801 + ], + [ + 10.2124132, + 49.230827701 + ], + [ + 10.2125947, + 49.229810701 + ], + [ + 10.2127868, + 49.229025101 + ], + [ + 10.2130312, + 49.228238601 + ], + [ + 10.2134035, + 49.227295901 + ], + [ + 10.2137313, + 49.226595001 + ], + [ + 10.2140805, + 49.225950901 + ], + [ + 10.214545, + 49.225189301 + ], + [ + 10.2151295, + 49.224356101 + ], + [ + 10.2155558, + 49.223801101 + ], + [ + 10.2159501, + 49.223327401 + ], + [ + 10.216576, + 49.222637301 + ], + [ + 10.2171051, + 49.222096001 + ], + [ + 10.217677, + 49.221542901 + ], + [ + 10.2189255, + 49.220389301 + ], + [ + 10.220195, + 49.219298201 + ], + [ + 10.221146, + 49.218491801 + ], + [ + 10.2225871, + 49.217266001 + ], + [ + 10.2238768, + 49.216116601 + ], + [ + 10.2245835, + 49.215461401 + ], + [ + 10.2252607, + 49.214797801 + ], + [ + 10.2257411, + 49.214316601 + ], + [ + 10.2264778, + 49.213542001 + ], + [ + 10.2279722, + 49.211885201 + ], + [ + 10.2282404, + 49.211560501 + ], + [ + 10.2287081, + 49.210994401 + ], + [ + 10.2290618, + 49.210546501 + ], + [ + 10.2295477, + 49.209923301 + ], + [ + 10.229711609, + 49.209699705 + ] + ] + } + }, + { + "identifier": "2024-052628--vi-bs.2025-10-08_00-15-00-000.devi-zus.2025-03-07_00-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.301233239865034,10.211513414469506,49.3094791578352,10.207214275496508", + "point": "49.301233239865034,10.211513414469506", + "startLcPosition": "62", + "impact": { + "lower": "Kreuzfeld", + "upper": "W\u00f6rnitz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ulm -> W\u00fcrzburg", + "title": "A7 | W\u00f6rnitz - Kreuzfeld", + "startTimestamp": "2025-10-08T00:15:00+02:00", + "coordinate": { + "lat": 49.301233239865034, + "long": 10.211513414469506 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.25 um 00:15 Uhr", + "Ende: 13.07.30 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.07.30)", + "", + "A7: Ulm -> W\u00fcrzburg, zwischen 5.0 km hinter AS W\u00f6rnitz und 5.9 km vor Kreuzfeld", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Br\u00fcckenneubau Bw Pfefferm\u00fchle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.211513414, + 49.30123324 + ], + [ + 10.2114521, + 49.301329301 + ], + [ + 10.2111333, + 49.301828801 + ], + [ + 10.2107207, + 49.302528901 + ], + [ + 10.2105528, + 49.302813801 + ], + [ + 10.210225, + 49.303367901 + ], + [ + 10.2096071, + 49.304475201 + ], + [ + 10.2090057, + 49.305587901 + ], + [ + 10.208262, + 49.307089301 + ], + [ + 10.2079641, + 49.307735201 + ], + [ + 10.207214275, + 49.309479158 + ] + ] + } + }, + { + "identifier": "2024-052628--vi-bs.2025-10-08_00-15-00-000.devi-zus.2025-03-07_00-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.30944677497995,10.207031447821429,49.30119054896934,10.211356850818497", + "point": "49.30944677497995,10.207031447821429", + "startLcPosition": "63", + "impact": { + "lower": "W\u00f6rnitz", + "upper": "Kreuzfeld", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Kreuzfeld - W\u00f6rnitz", + "startTimestamp": "2025-10-08T00:15:00+02:00", + "coordinate": { + "lat": 49.30944677497995, + "long": 10.207031447821429 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.25 um 00:15 Uhr", + "Ende: 13.07.30 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.07.30)", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 5.9 km hinter Kreuzfeld und 5.0 km vor AS W\u00f6rnitz", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Br\u00fcckenneubau Bw Pfefferm\u00fchle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.207031448, + 49.309446775 + ], + [ + 10.2071309, + 49.309195801 + ], + [ + 10.2077875, + 49.307719401 + ], + [ + 10.2080933, + 49.307056601 + ], + [ + 10.2088343, + 49.305553501 + ], + [ + 10.2094437, + 49.304441901 + ], + [ + 10.2100675, + 49.303331801 + ], + [ + 10.2103997, + 49.302774201 + ], + [ + 10.2105666, + 49.302489601 + ], + [ + 10.2109992, + 49.301752001 + ], + [ + 10.211356851, + 49.301190549 + ] + ] + } + }, + { + "identifier": "2026-014347--vi-zus.2026-03-23_07-00-00-000_010.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.3699965416819,10.213024531135442,49.44677505254768,10.251202462911113", + "point": "49.3699965416819,10.213024531135442", + "startLcPosition": "63", + "impact": { + "lower": "Bad Windsheim", + "upper": "Kreuzfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> W\u00fcrzburg", + "title": "A7 | Kreuzfeld - Bad Windsheim", + "coordinate": { + "lat": 49.3699965416819, + "long": 10.213024531135442 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 09.04.26 von 07:00 bis 19:00 Uhr.", + "", + "A7: Ulm -> W\u00fcrzburg, zwischen 1.3 km hinter Kreuzfeld und 0.1 km vor AS Bad Windsheim", + "", + "L\u00e4nge: 9.79 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 von Ohrenbach (Raststaette) nach W\u00f6rnitz (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.213024531, + 49.369996542 + ], + [ + 10.2131215, + 49.370921601 + ], + [ + 10.2132814, + 49.371772601 + ], + [ + 10.2133222, + 49.371989801 + ], + [ + 10.2133954, + 49.372290201 + ], + [ + 10.2136126, + 49.373072301 + ], + [ + 10.2139322, + 49.374073301 + ], + [ + 10.2140803, + 49.374439001 + ], + [ + 10.2144318, + 49.375245901 + ], + [ + 10.214773, + 49.375964801 + ], + [ + 10.2148243, + 49.376070901 + ], + [ + 10.2149772, + 49.376358601 + ], + [ + 10.2152087, + 49.376757001 + ], + [ + 10.2157233, + 49.377568901 + ], + [ + 10.2161558, + 49.378218401 + ], + [ + 10.2163612, + 49.378504301 + ], + [ + 10.2168372, + 49.379140901 + ], + [ + 10.2172054, + 49.379577601 + ], + [ + 10.2178779, + 49.380324501 + ], + [ + 10.2183397, + 49.380813901 + ], + [ + 10.219038, + 49.381478601 + ], + [ + 10.2192971, + 49.381712501 + ], + [ + 10.2199265, + 49.382250001 + ], + [ + 10.2202219, + 49.382480601 + ], + [ + 10.2206808, + 49.382839001 + ], + [ + 10.2215017, + 49.383423801 + ], + [ + 10.2228149, + 49.384249201 + ], + [ + 10.223422, + 49.384597301 + ], + [ + 10.2241533, + 49.384988401 + ], + [ + 10.2248114, + 49.385316701 + ], + [ + 10.2255607, + 49.385673801 + ], + [ + 10.2263215, + 49.386016801 + ], + [ + 10.227085, + 49.386348901 + ], + [ + 10.2284405, + 49.386874101 + ], + [ + 10.2297818, + 49.387409601 + ], + [ + 10.2309547, + 49.387870201 + ], + [ + 10.2319099, + 49.388265701 + ], + [ + 10.232771, + 49.388654701 + ], + [ + 10.2337217, + 49.389107201 + ], + [ + 10.2347063, + 49.389625401 + ], + [ + 10.2357173, + 49.390194801 + ], + [ + 10.2362594, + 49.390526501 + ], + [ + 10.2372059, + 49.391174301 + ], + [ + 10.2378135, + 49.391623201 + ], + [ + 10.2385246, + 49.392174401 + ], + [ + 10.2390942, + 49.392665201 + ], + [ + 10.2396491, + 49.393178501 + ], + [ + 10.2401537, + 49.393676001 + ], + [ + 10.2406337, + 49.394163101 + ], + [ + 10.2412185, + 49.394828201 + ], + [ + 10.2417472, + 49.395499001 + ], + [ + 10.2422994, + 49.396268301 + ], + [ + 10.2427935, + 49.397027401 + ], + [ + 10.2429834, + 49.397338401 + ], + [ + 10.2434068, + 49.398106901 + ], + [ + 10.2437666, + 49.398822201 + ], + [ + 10.2441248, + 49.399582001 + ], + [ + 10.2445632, + 49.400677801 + ], + [ + 10.2449667, + 49.401855801 + ], + [ + 10.2451935, + 49.402693701 + ], + [ + 10.2453697, + 49.403463301 + ], + [ + 10.2455055, + 49.404230001 + ], + [ + 10.2456255, + 49.405127401 + ], + [ + 10.2457755, + 49.406901701 + ], + [ + 10.2458793, + 49.408404601 + ], + [ + 10.2459633, + 49.409324001 + ], + [ + 10.2461065, + 49.410357901 + ], + [ + 10.2461806, + 49.410765501 + ], + [ + 10.2462637, + 49.411180901 + ], + [ + 10.2463785, + 49.411656801 + ], + [ + 10.2464458, + 49.411935701 + ], + [ + 10.2467205, + 49.412852901 + ], + [ + 10.2469879, + 49.413569901 + ], + [ + 10.2472678, + 49.414176701 + ], + [ + 10.2476238, + 49.414872301 + ], + [ + 10.2479321, + 49.415396901 + ], + [ + 10.2482002, + 49.415820601 + ], + [ + 10.2485436, + 49.416318201 + ], + [ + 10.2488959, + 49.416800201 + ], + [ + 10.2493046, + 49.417310501 + ], + [ + 10.2497168, + 49.417793701 + ], + [ + 10.2502495, + 49.418358001 + ], + [ + 10.2508415, + 49.418938101 + ], + [ + 10.2513653, + 49.419397901 + ], + [ + 10.251682, + 49.419683201 + ], + [ + 10.2520422, + 49.419983201 + ], + [ + 10.2536029, + 49.421218801 + ], + [ + 10.2551897, + 49.422510701 + ], + [ + 10.2558178, + 49.423053201 + ], + [ + 10.2564423, + 49.423645101 + ], + [ + 10.2568504, + 49.424052901 + ], + [ + 10.2572502, + 49.424516201 + ], + [ + 10.2575934, + 49.424946201 + ], + [ + 10.2579153, + 49.425392801 + ], + [ + 10.2582468, + 49.425892401 + ], + [ + 10.2585563, + 49.426429101 + ], + [ + 10.2588246, + 49.426970601 + ], + [ + 10.2590471, + 49.427477501 + ], + [ + 10.2592866, + 49.428122901 + ], + [ + 10.2595307, + 49.428965201 + ], + [ + 10.2596887, + 49.429776801 + ], + [ + 10.2597479, + 49.430401501 + ], + [ + 10.2597619, + 49.430920501 + ], + [ + 10.2597472, + 49.431556101 + ], + [ + 10.2596953, + 49.432093401 + ], + [ + 10.2596158, + 49.432602701 + ], + [ + 10.259534, + 49.433124501 + ], + [ + 10.2593901, + 49.433770701 + ], + [ + 10.2592403, + 49.434338301 + ], + [ + 10.2590349, + 49.434964701 + ], + [ + 10.2588084, + 49.435564501 + ], + [ + 10.2586025, + 49.436054601 + ], + [ + 10.2585464, + 49.436191201 + ], + [ + 10.2582951, + 49.436803201 + ], + [ + 10.2579887, + 49.437455901 + ], + [ + 10.2576604, + 49.438091901 + ], + [ + 10.2572526, + 49.438816601 + ], + [ + 10.2569577, + 49.439347701 + ], + [ + 10.2564411, + 49.440163601 + ], + [ + 10.2562166, + 49.440491301 + ], + [ + 10.2555782, + 49.441423101 + ], + [ + 10.2544879, + 49.442909801 + ], + [ + 10.2542108, + 49.443262801 + ], + [ + 10.2535431, + 49.444104501 + ], + [ + 10.2533292, + 49.444374101 + ], + [ + 10.2532711, + 49.444451101 + ], + [ + 10.2519919, + 49.445951201 + ], + [ + 10.2518481, + 49.446100401 + ], + [ + 10.2514162, + 49.446553201 + ], + [ + 10.251202463, + 49.446775053 + ] + ] + } + }, + { + "identifier": "2026-017679--vi-bs.2026-04-10_08-00-00-000.devi-zus.2026-04-10_08-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.37000666189482,10.212824822264114,49.172581114277044,10.247959687590924", + "point": "49.37000666189482,10.212824822264114", + "startLcPosition": "64", + "impact": { + "lower": "Dinkelsb\u00fchl/Fichtenau", + "upper": "Rothenburg ob der Tauber", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Rothenburg ob der Tauber - Dinkelsb\u00fchl/Fichtenau", + "coordinate": { + "lat": 49.37000666189482, + "long": 10.212824822264114 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 0.7 km hinter AS Rothenburg ob der Tauber und 11.0 km vor AS Dinkelsb\u00fchl/Fichtenau", + "", + "L\u00e4nge: 24 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 von Rothenburg ob der Tauber (AS) nach Dinkelsb\u00fchlFichtenau (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.212824822, + 49.370006662 + ], + [ + 10.212803, + 49.369838801 + ], + [ + 10.2127699, + 49.368835901 + ], + [ + 10.2128223, + 49.367608501 + ], + [ + 10.2128469, + 49.367305901 + ], + [ + 10.2128673, + 49.366995701 + ], + [ + 10.212952, + 49.366450601 + ], + [ + 10.2129958, + 49.366186901 + ], + [ + 10.2131492, + 49.365451501 + ], + [ + 10.213247, + 49.365039001 + ], + [ + 10.2134523, + 49.364347601 + ], + [ + 10.2136922, + 49.363628501 + ], + [ + 10.2140127, + 49.362799601 + ], + [ + 10.2144141, + 49.361909401 + ], + [ + 10.2145844, + 49.361578601 + ], + [ + 10.2148761, + 49.361037201 + ], + [ + 10.2156096, + 49.359838201 + ], + [ + 10.2159212, + 49.359379101 + ], + [ + 10.2164937, + 49.358565701 + ], + [ + 10.2174042, + 49.357374601 + ], + [ + 10.2187043, + 49.355731501 + ], + [ + 10.2199867, + 49.353975601 + ], + [ + 10.2204294, + 49.353282001 + ], + [ + 10.2207098, + 49.352792101 + ], + [ + 10.2215068, + 49.351098201 + ], + [ + 10.2220265, + 49.349424901 + ], + [ + 10.2222146, + 49.348470701 + ], + [ + 10.2223245, + 49.347520701 + ], + [ + 10.2223685, + 49.345610601 + ], + [ + 10.222177, + 49.343956001 + ], + [ + 10.2219248, + 49.342701701 + ], + [ + 10.2216542, + 49.341761101 + ], + [ + 10.2213872, + 49.340979001 + ], + [ + 10.22061, + 49.339185401 + ], + [ + 10.2201114, + 49.338299801 + ], + [ + 10.2195094, + 49.337355301 + ], + [ + 10.2188889, + 49.336508101 + ], + [ + 10.218125, + 49.335553001 + ], + [ + 10.2176189, + 49.334972201 + ], + [ + 10.217237, + 49.334538901 + ], + [ + 10.2167816, + 49.334094201 + ], + [ + 10.2160363, + 49.333368301 + ], + [ + 10.2151606, + 49.332589001 + ], + [ + 10.2135953, + 49.331323701 + ], + [ + 10.2118491, + 49.329955301 + ], + [ + 10.2107674, + 49.329041201 + ], + [ + 10.2099112, + 49.328298701 + ], + [ + 10.208586, + 49.326940401 + ], + [ + 10.2080905, + 49.326370201 + ], + [ + 10.2076047, + 49.325748001 + ], + [ + 10.2072455, + 49.325231401 + ], + [ + 10.206886, + 49.324692001 + ], + [ + 10.2064866, + 49.323996201 + ], + [ + 10.2060424, + 49.323188601 + ], + [ + 10.2057632, + 49.322543101 + ], + [ + 10.2053885, + 49.321486201 + ], + [ + 10.2052651, + 49.321069601 + ], + [ + 10.2050588, + 49.320016001 + ], + [ + 10.2049986, + 49.319579301 + ], + [ + 10.2048894, + 49.318518601 + ], + [ + 10.2048745, + 49.317399601 + ], + [ + 10.2050049, + 49.316076001 + ], + [ + 10.2052206, + 49.314852801 + ], + [ + 10.2053482, + 49.314310601 + ], + [ + 10.2054898, + 49.313708601 + ], + [ + 10.2059794, + 49.312157101 + ], + [ + 10.2063923, + 49.311087801 + ], + [ + 10.2068165, + 49.309989201 + ], + [ + 10.2071309, + 49.309195801 + ], + [ + 10.2077875, + 49.307719401 + ], + [ + 10.2080933, + 49.307056601 + ], + [ + 10.2088343, + 49.305553501 + ], + [ + 10.2094437, + 49.304441901 + ], + [ + 10.2100675, + 49.303331801 + ], + [ + 10.2103997, + 49.302774201 + ], + [ + 10.2105666, + 49.302489601 + ], + [ + 10.2109992, + 49.301752001 + ], + [ + 10.2120819, + 49.300052301 + ], + [ + 10.2134485, + 49.298057801 + ], + [ + 10.2148863, + 49.296143201 + ], + [ + 10.2163455, + 49.294299201 + ], + [ + 10.2177131, + 49.292679701 + ], + [ + 10.2190896, + 49.291151201 + ], + [ + 10.220382, + 49.289816101 + ], + [ + 10.2220566, + 49.288148601 + ], + [ + 10.2227152, + 49.287519801 + ], + [ + 10.2236353, + 49.286667901 + ], + [ + 10.2280188, + 49.282560801 + ], + [ + 10.2315276, + 49.279247801 + ], + [ + 10.2325101, + 49.278230401 + ], + [ + 10.2329975, + 49.277695301 + ], + [ + 10.2334697, + 49.277135601 + ], + [ + 10.2339784, + 49.276518101 + ], + [ + 10.2343766, + 49.275968701 + ], + [ + 10.2345958, + 49.275641301 + ], + [ + 10.2349016, + 49.275148701 + ], + [ + 10.2351763, + 49.274663001 + ], + [ + 10.2354181, + 49.274211401 + ], + [ + 10.2356368, + 49.273712901 + ], + [ + 10.2358203, + 49.273223601 + ], + [ + 10.2360445, + 49.272465101 + ], + [ + 10.2361986, + 49.271735101 + ], + [ + 10.2362806, + 49.271051101 + ], + [ + 10.2363113, + 49.270344101 + ], + [ + 10.2362886, + 49.269649201 + ], + [ + 10.2362262, + 49.268895901 + ], + [ + 10.2361169, + 49.268170301 + ], + [ + 10.2358987, + 49.267340401 + ], + [ + 10.2356368, + 49.266469101 + ], + [ + 10.2353127, + 49.265607001 + ], + [ + 10.2348876, + 49.264683501 + ], + [ + 10.2341908, + 49.263321501 + ], + [ + 10.2336227, + 49.262329301 + ], + [ + 10.2332212, + 49.261681601 + ], + [ + 10.232849, + 49.261097701 + ], + [ + 10.2324299, + 49.260469301 + ], + [ + 10.2321161, + 49.260040901 + ], + [ + 10.2315445, + 49.259212301 + ], + [ + 10.2311531, + 49.258698901 + ], + [ + 10.2298065, + 49.257022401 + ], + [ + 10.2284359, + 49.255463801 + ], + [ + 10.2274456, + 49.254454401 + ], + [ + 10.2269013, + 49.253899501 + ], + [ + 10.2253469, + 49.252382401 + ], + [ + 10.2232616, + 49.250396401 + ], + [ + 10.2225577, + 49.249670801 + ], + [ + 10.2212665, + 49.248348701 + ], + [ + 10.2201599, + 49.247134901 + ], + [ + 10.219039, + 49.245842901 + ], + [ + 10.2182791, + 49.244927201 + ], + [ + 10.2170603, + 49.243341701 + ], + [ + 10.2152887, + 49.240803501 + ], + [ + 10.2146089, + 49.239644101 + ], + [ + 10.2144697, + 49.239397001 + ], + [ + 10.2140912, + 49.238672901 + ], + [ + 10.2136982, + 49.237921001 + ], + [ + 10.2132567, + 49.236905501 + ], + [ + 10.2129191, + 49.235950201 + ], + [ + 10.2126259, + 49.234955401 + ], + [ + 10.2124458, + 49.233998001 + ], + [ + 10.2123212, + 49.232386601 + ], + [ + 10.2123468, + 49.231638801 + ], + [ + 10.2124132, + 49.230827701 + ], + [ + 10.2125947, + 49.229810701 + ], + [ + 10.2127868, + 49.229025101 + ], + [ + 10.2130312, + 49.228238601 + ], + [ + 10.2134035, + 49.227295901 + ], + [ + 10.2137313, + 49.226595001 + ], + [ + 10.2140805, + 49.225950901 + ], + [ + 10.214545, + 49.225189301 + ], + [ + 10.2151295, + 49.224356101 + ], + [ + 10.2155558, + 49.223801101 + ], + [ + 10.2159501, + 49.223327401 + ], + [ + 10.216576, + 49.222637301 + ], + [ + 10.2171051, + 49.222096001 + ], + [ + 10.217677, + 49.221542901 + ], + [ + 10.2189255, + 49.220389301 + ], + [ + 10.220195, + 49.219298201 + ], + [ + 10.221146, + 49.218491801 + ], + [ + 10.2225871, + 49.217266001 + ], + [ + 10.2238768, + 49.216116601 + ], + [ + 10.2245835, + 49.215461401 + ], + [ + 10.2252607, + 49.214797801 + ], + [ + 10.2257411, + 49.214316601 + ], + [ + 10.2264778, + 49.213542001 + ], + [ + 10.2279722, + 49.211885201 + ], + [ + 10.2282404, + 49.211560501 + ], + [ + 10.2287081, + 49.210994401 + ], + [ + 10.2290618, + 49.210546501 + ], + [ + 10.2295477, + 49.209923301 + ], + [ + 10.2299489, + 49.209376001 + ], + [ + 10.230315, + 49.208896401 + ], + [ + 10.2305187, + 49.208602901 + ], + [ + 10.2310924, + 49.207709601 + ], + [ + 10.2319672, + 49.206344001 + ], + [ + 10.2322192, + 49.205929801 + ], + [ + 10.2326631, + 49.205149201 + ], + [ + 10.2332, + 49.204081201 + ], + [ + 10.2336312, + 49.203204801 + ], + [ + 10.2338723, + 49.202680201 + ], + [ + 10.2341351, + 49.202072401 + ], + [ + 10.2343193, + 49.201650201 + ], + [ + 10.2345071, + 49.201171301 + ], + [ + 10.2346846, + 49.200699801 + ], + [ + 10.2348593, + 49.200231601 + ], + [ + 10.2351262, + 49.199449301 + ], + [ + 10.2353746, + 49.198672001 + ], + [ + 10.2355856, + 49.197922001 + ], + [ + 10.2357378, + 49.197353401 + ], + [ + 10.2359565, + 49.196383301 + ], + [ + 10.2360204, + 49.196092001 + ], + [ + 10.2361947, + 49.195166601 + ], + [ + 10.236302, + 49.194549601 + ], + [ + 10.2364067, + 49.193896901 + ], + [ + 10.2364658, + 49.193501101 + ], + [ + 10.2364858, + 49.193367501 + ], + [ + 10.2365161, + 49.193167101 + ], + [ + 10.2366526, + 49.192203701 + ], + [ + 10.2368273, + 49.190904601 + ], + [ + 10.2369662, + 49.189906801 + ], + [ + 10.2371639, + 49.188750801 + ], + [ + 10.2374525, + 49.187181501 + ], + [ + 10.2377452, + 49.186087601 + ], + [ + 10.2381123, + 49.184875901 + ], + [ + 10.2384442, + 49.183969001 + ], + [ + 10.2385768, + 49.183678501 + ], + [ + 10.2391275, + 49.182493601 + ], + [ + 10.2397199, + 49.181379201 + ], + [ + 10.2406203, + 49.179975801 + ], + [ + 10.2411443, + 49.179205301 + ], + [ + 10.2417202, + 49.178445801 + ], + [ + 10.2424321, + 49.177589201 + ], + [ + 10.2429803, + 49.176973901 + ], + [ + 10.2435063, + 49.176381501 + ], + [ + 10.2447728, + 49.175179901 + ], + [ + 10.2454044, + 49.174612401 + ], + [ + 10.2458213, + 49.174254801 + ], + [ + 10.2469495, + 49.173342201 + ], + [ + 10.2477928, + 49.172704301 + ], + [ + 10.247959688, + 49.172581114 + ] + ] + } + }, + { + "identifier": "2026-017743--vi-bs.2026-04-09_12-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.44822742324279,10.249588179269546,49.44439974501356,10.25311347223615", + "point": "49.44822742324279,10.249588179269546", + "startLcPosition": "66", + "impact": { + "lower": "Rothenburg ob der Tauber", + "upper": "Ohrenbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Ohrenbach - Rothenburg ob der Tauber", + "coordinate": { + "lat": 49.44822742324279, + "long": 10.249588179269546 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 12:00 bis 16:00 Uhr", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 4.9 km hinter Ohrenbach und 8.8 km vor AS Rothenburg ob der Tauber", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 von Ohrenbach (Raststaette) nach Rothenburg ob der Tauber (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.249588179, + 49.448227423 + ], + [ + 10.2496486, + 49.448165401 + ], + [ + 10.2499569, + 49.447854601 + ], + [ + 10.2501261, + 49.447682101 + ], + [ + 10.2503762, + 49.447416301 + ], + [ + 10.2513208, + 49.446435101 + ], + [ + 10.251897, + 49.445816201 + ], + [ + 10.2530305, + 49.444504201 + ], + [ + 10.253113472, + 49.444399745 + ] + ] + } + }, + { + "identifier": "2026-017420--vi-bs.2026-04-08_08-30-00-000.devi-zus.2026-04-08_08-30-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.6495927115716,10.147201194658441,50.00166375511251,10.078591162034511", + "point": "49.6495927115716,10.147201194658441", + "startLcPosition": "69", + "impact": { + "lower": "Eckartshausen", + "upper": "Fuchsloch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> Fulda", + "title": "A7 | Fuchsloch - Eckartshausen", + "coordinate": { + "lat": 49.6495927115716, + "long": 10.147201194658441 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 15:45 Uhr", + "10.04.26 von 08:30 bis 11:30 Uhr", + "", + "A7: Ulm -> Fulda, zwischen 3.8 km hinter Fuchsloch und 1.4 km vor Eckartshausen", + "", + "L\u00e4nge: 45.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 von Eckartshausen (Parkplatz) nach Marktbreit (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.147201195, + 49.649592712 + ], + [ + 10.1468915, + 49.649694801 + ], + [ + 10.1460494, + 49.649984201 + ], + [ + 10.145161, + 49.650289701 + ], + [ + 10.1448081, + 49.650411001 + ], + [ + 10.1445554, + 49.650501601 + ], + [ + 10.1429816, + 49.651120301 + ], + [ + 10.1421783, + 49.651463801 + ], + [ + 10.1415786, + 49.651735101 + ], + [ + 10.1408782, + 49.652056901 + ], + [ + 10.1400737, + 49.652460501 + ], + [ + 10.1394072, + 49.652826301 + ], + [ + 10.1390546, + 49.653018001 + ], + [ + 10.1381898, + 49.653516501 + ], + [ + 10.1376384, + 49.653864801 + ], + [ + 10.1371065, + 49.654223101 + ], + [ + 10.1365926, + 49.654592301 + ], + [ + 10.1360972, + 49.654971901 + ], + [ + 10.1356191, + 49.655363101 + ], + [ + 10.1346048, + 49.656268701 + ], + [ + 10.1336855, + 49.657190901 + ], + [ + 10.1331609, + 49.657787301 + ], + [ + 10.1326686, + 49.658380101 + ], + [ + 10.1324193, + 49.658708101 + ], + [ + 10.1317403, + 49.659704501 + ], + [ + 10.1313342, + 49.660387501 + ], + [ + 10.1310533, + 49.660943201 + ], + [ + 10.1308537, + 49.661370901 + ], + [ + 10.1306078, + 49.661910401 + ], + [ + 10.1303896, + 49.662471701 + ], + [ + 10.1302341, + 49.662893601 + ], + [ + 10.1300813, + 49.663305301 + ], + [ + 10.1298293, + 49.664048701 + ], + [ + 10.1296021, + 49.664719001 + ], + [ + 10.1295476, + 49.664872901 + ], + [ + 10.126695, + 49.672934001 + ], + [ + 10.1264732, + 49.673557001 + ], + [ + 10.1262677, + 49.674106201 + ], + [ + 10.1260372, + 49.674728601 + ], + [ + 10.125846, + 49.675184901 + ], + [ + 10.1256726, + 49.675595001 + ], + [ + 10.1253256, + 49.676356001 + ], + [ + 10.1247253, + 49.677543201 + ], + [ + 10.1245712, + 49.677831901 + ], + [ + 10.1243035, + 49.678333301 + ], + [ + 10.1232972, + 49.680030801 + ], + [ + 10.122387, + 49.681433901 + ], + [ + 10.121844, + 49.682177901 + ], + [ + 10.1212329, + 49.683015301 + ], + [ + 10.1199781, + 49.684618401 + ], + [ + 10.1188473, + 49.685958201 + ], + [ + 10.1174726, + 49.687531401 + ], + [ + 10.1155417, + 49.689700201 + ], + [ + 10.1150008, + 49.690340701 + ], + [ + 10.1136381, + 49.691911701 + ], + [ + 10.1123348, + 49.693516401 + ], + [ + 10.1111793, + 49.695003201 + ], + [ + 10.110821, + 49.695501401 + ], + [ + 10.1100288, + 49.696655501 + ], + [ + 10.1092478, + 49.697854501 + ], + [ + 10.1090978, + 49.698103001 + ], + [ + 10.1082869, + 49.699446701 + ], + [ + 10.1079117, + 49.700102901 + ], + [ + 10.1071852, + 49.701488901 + ], + [ + 10.1063406, + 49.703231901 + ], + [ + 10.1062448, + 49.703424501 + ], + [ + 10.1058434, + 49.704320101 + ], + [ + 10.1055168, + 49.705092901 + ], + [ + 10.1049003, + 49.706631001 + ], + [ + 10.1047517, + 49.707001701 + ], + [ + 10.1041022, + 49.708919001 + ], + [ + 10.1036843, + 49.710426001 + ], + [ + 10.1031319, + 49.712858401 + ], + [ + 10.1027432, + 49.715268801 + ], + [ + 10.102607, + 49.716576001 + ], + [ + 10.1025291, + 49.717878801 + ], + [ + 10.1024904, + 49.720327501 + ], + [ + 10.1026534, + 49.723046301 + ], + [ + 10.1028493, + 49.724488101 + ], + [ + 10.103005, + 49.725633501 + ], + [ + 10.1035252, + 49.728381801 + ], + [ + 10.1041349, + 49.730963901 + ], + [ + 10.104694, + 49.733125501 + ], + [ + 10.1050729, + 49.734594601 + ], + [ + 10.1052121, + 49.735129601 + ], + [ + 10.1053107, + 49.735505301 + ], + [ + 10.1055009, + 49.736231001 + ], + [ + 10.1057274, + 49.737125301 + ], + [ + 10.1060926, + 49.738571601 + ], + [ + 10.1065469, + 49.740582601 + ], + [ + 10.1066967, + 49.741311001 + ], + [ + 10.1068839, + 49.742261701 + ], + [ + 10.1070485, + 49.743188301 + ], + [ + 10.1072063, + 49.744222401 + ], + [ + 10.1073455, + 49.745297201 + ], + [ + 10.1073766, + 49.745673101 + ], + [ + 10.1074061, + 49.746001701 + ], + [ + 10.1074709, + 49.746692501 + ], + [ + 10.1075005, + 49.747144701 + ], + [ + 10.1075503, + 49.748164101 + ], + [ + 10.1075532, + 49.748379901 + ], + [ + 10.1075566, + 49.748747501 + ], + [ + 10.1075548, + 49.750267801 + ], + [ + 10.1074797, + 49.751226901 + ], + [ + 10.1072783, + 49.753033001 + ], + [ + 10.1072224, + 49.753385201 + ], + [ + 10.1069554, + 49.754834201 + ], + [ + 10.1066083, + 49.756323401 + ], + [ + 10.1063321, + 49.757346501 + ], + [ + 10.1061838, + 49.757835801 + ], + [ + 10.1058735, + 49.758780701 + ], + [ + 10.1055174, + 49.759793101 + ], + [ + 10.105453, + 49.759956301 + ], + [ + 10.1053813, + 49.760136001 + ], + [ + 10.1052979, + 49.760345001 + ], + [ + 10.1049261, + 49.761200401 + ], + [ + 10.1046451, + 49.761826301 + ], + [ + 10.1040859, + 49.762996301 + ], + [ + 10.1037841, + 49.763558201 + ], + [ + 10.103509, + 49.764068301 + ], + [ + 10.1034187, + 49.764230201 + ], + [ + 10.1031166, + 49.764768001 + ], + [ + 10.1028688, + 49.765182101 + ], + [ + 10.1022765, + 49.766126201 + ], + [ + 10.1016809, + 49.767051501 + ], + [ + 10.1010499, + 49.767986401 + ], + [ + 10.1007223, + 49.768441701 + ], + [ + 10.1003932, + 49.768899101 + ], + [ + 10.0998406, + 49.769649001 + ], + [ + 10.0992508, + 49.770415701 + ], + [ + 10.0986708, + 49.771163201 + ], + [ + 10.0977309, + 49.772331101 + ], + [ + 10.0969082, + 49.773317001 + ], + [ + 10.0954979, + 49.774959601 + ], + [ + 10.0948293, + 49.775719201 + ], + [ + 10.0942528, + 49.776368701 + ], + [ + 10.0922172, + 49.778592301 + ], + [ + 10.0915523, + 49.779302201 + ], + [ + 10.0906205, + 49.780285501 + ], + [ + 10.0899322, + 49.780995101 + ], + [ + 10.0893089, + 49.781633001 + ], + [ + 10.0886508, + 49.782266701 + ], + [ + 10.0877179, + 49.783093001 + ], + [ + 10.0865569, + 49.783996701 + ], + [ + 10.085772, + 49.784554701 + ], + [ + 10.0849185, + 49.785095801 + ], + [ + 10.0841115, + 49.785548201 + ], + [ + 10.0832709, + 49.785973401 + ], + [ + 10.082271, + 49.786433501 + ], + [ + 10.0814123, + 49.786780501 + ], + [ + 10.0805776, + 49.787084001 + ], + [ + 10.0798664, + 49.787312801 + ], + [ + 10.079238, + 49.787504501 + ], + [ + 10.0785383, + 49.787697601 + ], + [ + 10.077436, + 49.787971701 + ], + [ + 10.075992, + 49.788292501 + ], + [ + 10.0749113, + 49.788521201 + ], + [ + 10.0744916, + 49.788609801 + ], + [ + 10.0733533, + 49.788842001 + ], + [ + 10.0730089, + 49.788912201 + ], + [ + 10.0715605, + 49.789222101 + ], + [ + 10.0709072, + 49.789374701 + ], + [ + 10.070108, + 49.789561401 + ], + [ + 10.0686756, + 49.789932501 + ], + [ + 10.0676573, + 49.790226301 + ], + [ + 10.0671297, + 49.790375901 + ], + [ + 10.0666876, + 49.790511201 + ], + [ + 10.0648093, + 49.791146401 + ], + [ + 10.0643169, + 49.791329201 + ], + [ + 10.0639632, + 49.791462101 + ], + [ + 10.0630161, + 49.791818001 + ], + [ + 10.0625908, + 49.791992301 + ], + [ + 10.0620188, + 49.792222501 + ], + [ + 10.0608817, + 49.792744701 + ], + [ + 10.0586068, + 49.793844401 + ], + [ + 10.0572586, + 49.794584701 + ], + [ + 10.0559836, + 49.795345901 + ], + [ + 10.0547171, + 49.796175401 + ], + [ + 10.054033, + 49.796642101 + ], + [ + 10.0535483, + 49.797001401 + ], + [ + 10.0530946, + 49.797339601 + ], + [ + 10.0525207, + 49.797792601 + ], + [ + 10.0523382, + 49.797939801 + ], + [ + 10.0516117, + 49.798525901 + ], + [ + 10.0504944, + 49.799550201 + ], + [ + 10.0499391, + 49.800090701 + ], + [ + 10.0494188, + 49.800610301 + ], + [ + 10.0491214, + 49.800927901 + ], + [ + 10.048844, + 49.801229201 + ], + [ + 10.0484674, + 49.801667601 + ], + [ + 10.0483476, + 49.801814701 + ], + [ + 10.0479773, + 49.802268401 + ], + [ + 10.0475418, + 49.802828001 + ], + [ + 10.0468283, + 49.803768001 + ], + [ + 10.0462954, + 49.804602401 + ], + [ + 10.0460321, + 49.805034301 + ], + [ + 10.0454959, + 49.805933001 + ], + [ + 10.0451447, + 49.806623401 + ], + [ + 10.0446464, + 49.807768801 + ], + [ + 10.0445633, + 49.807959701 + ], + [ + 10.0442924, + 49.808695401 + ], + [ + 10.0439472, + 49.809790901 + ], + [ + 10.043827, + 49.810247801 + ], + [ + 10.0437026, + 49.810720301 + ], + [ + 10.0434871, + 49.811753401 + ], + [ + 10.0434169, + 49.812341401 + ], + [ + 10.0433436, + 49.812955901 + ], + [ + 10.0433104, + 49.813244901 + ], + [ + 10.0432753, + 49.813950301 + ], + [ + 10.0432674, + 49.814442901 + ], + [ + 10.0432636, + 49.815004801 + ], + [ + 10.0433197, + 49.816082201 + ], + [ + 10.0433553, + 49.816698601 + ], + [ + 10.0434365, + 49.817615401 + ], + [ + 10.0434994, + 49.818437801 + ], + [ + 10.0435296, + 49.819094201 + ], + [ + 10.0435584, + 49.819859901 + ], + [ + 10.0435747, + 49.820695701 + ], + [ + 10.0435571, + 49.821352801 + ], + [ + 10.043518, + 49.821862701 + ], + [ + 10.0434029, + 49.822795601 + ], + [ + 10.0432844, + 49.823447801 + ], + [ + 10.0432255, + 49.823705501 + ], + [ + 10.0430966, + 49.824269001 + ], + [ + 10.0430377, + 49.824486901 + ], + [ + 10.042662, + 49.825666401 + ], + [ + 10.0424742, + 49.826157001 + ], + [ + 10.0422144, + 49.826755801 + ], + [ + 10.0419378, + 49.827331101 + ], + [ + 10.0415584, + 49.827996301 + ], + [ + 10.0415178, + 49.828063001 + ], + [ + 10.0411509, + 49.828665301 + ], + [ + 10.0405882, + 49.829481301 + ], + [ + 10.0395881, + 49.830730001 + ], + [ + 10.0388278, + 49.831557401 + ], + [ + 10.038458, + 49.831938301 + ], + [ + 10.038295, + 49.832092001 + ], + [ + 10.0378667, + 49.832496001 + ], + [ + 10.0375326, + 49.832810901 + ], + [ + 10.0365516, + 49.833670201 + ], + [ + 10.0349863, + 49.834896201 + ], + [ + 10.034311, + 49.835404601 + ], + [ + 10.034081, + 49.835572301 + ], + [ + 10.0335665, + 49.835947401 + ], + [ + 10.0333197, + 49.836115301 + ], + [ + 10.0315777, + 49.837300601 + ], + [ + 10.0304961, + 49.837965301 + ], + [ + 10.0293339, + 49.838679501 + ], + [ + 10.0290921, + 49.838821901 + ], + [ + 10.0283223, + 49.839275301 + ], + [ + 10.0269362, + 49.840021101 + ], + [ + 10.0246571, + 49.841221301 + ], + [ + 10.023697, + 49.841678301 + ], + [ + 10.0223735, + 49.842313101 + ], + [ + 10.020574, + 49.843093001 + ], + [ + 10.019625, + 49.843488101 + ], + [ + 10.0191769, + 49.843672501 + ], + [ + 10.0187329, + 49.843851601 + ], + [ + 10.0179197, + 49.844168301 + ], + [ + 10.0165309, + 49.844709101 + ], + [ + 10.0158186, + 49.844970301 + ], + [ + 10.0146649, + 49.845394601 + ], + [ + 10.0142111, + 49.845557401 + ], + [ + 10.0137291, + 49.845733501 + ], + [ + 10.0118774, + 49.846400701 + ], + [ + 10.0107244, + 49.846808601 + ], + [ + 10.010154, + 49.847017501 + ], + [ + 10.0092925, + 49.847344201 + ], + [ + 10.0090092, + 49.847451701 + ], + [ + 10.0077712, + 49.847949101 + ], + [ + 10.0069416, + 49.848303101 + ], + [ + 10.0059401, + 49.848767001 + ], + [ + 10.0055203, + 49.848979301 + ], + [ + 10.0049632, + 49.849265801 + ], + [ + 10.0041674, + 49.849704301 + ], + [ + 10.0037189, + 49.849967301 + ], + [ + 10.0033466, + 49.850191801 + ], + [ + 10.002915, + 49.850468701 + ], + [ + 10.0023646, + 49.850829701 + ], + [ + 10.0017878, + 49.851241801 + ], + [ + 10.0011333, + 49.851745901 + ], + [ + 10.0000629, + 49.852607101 + ], + [ + 9.999027, + 49.853670401 + ], + [ + 9.998095, + 49.854663401 + ], + [ + 9.9969937, + 49.856027901 + ], + [ + 9.9959827, + 49.857462201 + ], + [ + 9.9954577, + 49.858246501 + ], + [ + 9.9952044, + 49.858635601 + ], + [ + 9.9948513, + 49.859277301 + ], + [ + 9.9945242, + 49.859883801 + ], + [ + 9.9942395, + 49.860472901 + ], + [ + 9.9940828, + 49.860822701 + ], + [ + 9.9936817, + 49.861780501 + ], + [ + 9.9933663, + 49.862588601 + ], + [ + 9.9930701, + 49.863453801 + ], + [ + 9.9928664, + 49.864143701 + ], + [ + 9.9928138, + 49.864321801 + ], + [ + 9.992727, + 49.864682501 + ], + [ + 9.9925512, + 49.865447801 + ], + [ + 9.9924532, + 49.865874201 + ], + [ + 9.9923429, + 49.866470501 + ], + [ + 9.9922086, + 49.867446101 + ], + [ + 9.9921221, + 49.868217001 + ], + [ + 9.9921076, + 49.868541101 + ], + [ + 9.9920881, + 49.868978501 + ], + [ + 9.9920876, + 49.869751801 + ], + [ + 9.9921084, + 49.870630901 + ], + [ + 9.9921462, + 49.871586901 + ], + [ + 9.9922127, + 49.872226101 + ], + [ + 9.9923027, + 49.872828801 + ], + [ + 9.9923467, + 49.873108101 + ], + [ + 9.9924423, + 49.873714801 + ], + [ + 9.992619, + 49.874600101 + ], + [ + 9.992811, + 49.875340301 + ], + [ + 9.9930399, + 49.876108801 + ], + [ + 9.993312, + 49.876941101 + ], + [ + 9.9935181, + 49.877488501 + ], + [ + 9.9936325, + 49.877792301 + ], + [ + 9.9940217, + 49.878689701 + ], + [ + 9.9944467, + 49.879583901 + ], + [ + 9.9946832, + 49.880042701 + ], + [ + 9.9950522, + 49.880741701 + ], + [ + 9.9955791, + 49.881687301 + ], + [ + 9.9956741, + 49.881857701 + ], + [ + 9.9966291, + 49.883481801 + ], + [ + 9.9971583, + 49.884375601 + ], + [ + 9.9980496, + 49.885921301 + ], + [ + 9.9988657, + 49.887446601 + ], + [ + 9.9991997, + 49.888099101 + ], + [ + 9.9995114, + 49.888765501 + ], + [ + 10.0000671, + 49.890046701 + ], + [ + 10.0003881, + 49.890938001 + ], + [ + 10.0006708, + 49.891824101 + ], + [ + 10.0009103, + 49.892701501 + ], + [ + 10.0010826, + 49.893489001 + ], + [ + 10.0012872, + 49.894560301 + ], + [ + 10.0013544, + 49.895078801 + ], + [ + 10.0014068, + 49.895558301 + ], + [ + 10.0014567, + 49.896108801 + ], + [ + 10.0014923, + 49.896656801 + ], + [ + 10.0015236, + 49.897501201 + ], + [ + 10.0015155, + 49.898495301 + ], + [ + 10.0014998, + 49.898713001 + ], + [ + 10.0014632, + 49.899201901 + ], + [ + 10.0014349, + 49.899579001 + ], + [ + 10.0013168, + 49.900592401 + ], + [ + 10.0011597, + 49.901520701 + ], + [ + 10.0009622, + 49.902437101 + ], + [ + 10.0007382, + 49.903337401 + ], + [ + 10.0006504, + 49.903641301 + ], + [ + 10.0003625, + 49.904637401 + ], + [ + 9.9994957, + 49.907164201 + ], + [ + 9.9991946, + 49.908007401 + ], + [ + 9.998688, + 49.909426301 + ], + [ + 9.9985558, + 49.909784901 + ], + [ + 9.9983948, + 49.910274201 + ], + [ + 9.9982108, + 49.910855701 + ], + [ + 9.9980881, + 49.911271501 + ], + [ + 9.9977707, + 49.912433801 + ], + [ + 9.9977556, + 49.912497101 + ], + [ + 9.997663, + 49.912885101 + ], + [ + 9.9976219, + 49.913056701 + ], + [ + 9.9975468, + 49.913410501 + ], + [ + 9.9974275, + 49.914058101 + ], + [ + 9.9973026, + 49.914722801 + ], + [ + 9.997132, + 49.915920001 + ], + [ + 9.9970543, + 49.916763101 + ], + [ + 9.9970436, + 49.916902701 + ], + [ + 9.9969865, + 49.917647701 + ], + [ + 9.9969534, + 49.918962701 + ], + [ + 9.9969924, + 49.920316701 + ], + [ + 9.9970319, + 49.920895301 + ], + [ + 9.9970697, + 49.921352101 + ], + [ + 9.9970812, + 49.921491301 + ], + [ + 9.997228, + 49.922667301 + ], + [ + 9.9974622, + 49.924036801 + ], + [ + 9.9975625, + 49.924525601 + ], + [ + 9.9977488, + 49.925333001 + ], + [ + 9.9978921, + 49.925854201 + ], + [ + 9.9979684, + 49.926131901 + ], + [ + 9.9982438, + 49.927023801 + ], + [ + 9.9984039, + 49.927490601 + ], + [ + 9.9987009, + 49.928258601 + ], + [ + 9.9987823, + 49.928461301 + ], + [ + 9.9989659, + 49.928904401 + ], + [ + 9.9993347, + 49.929694001 + ], + [ + 9.9995498, + 49.930119301 + ], + [ + 9.999598, + 49.930214701 + ], + [ + 10.0000385, + 49.931016201 + ], + [ + 10.0006789, + 49.932010801 + ], + [ + 10.0009407, + 49.932416901 + ], + [ + 10.0012571, + 49.932842701 + ], + [ + 10.0017334, + 49.933454301 + ], + [ + 10.0022931, + 49.934135301 + ], + [ + 10.0023482, + 49.934196701 + ], + [ + 10.0026025, + 49.934479701 + ], + [ + 10.003058, + 49.934976401 + ], + [ + 10.0035028, + 49.935433601 + ], + [ + 10.0042377, + 49.936133201 + ], + [ + 10.0048858, + 49.936703001 + ], + [ + 10.0054483, + 49.937166801 + ], + [ + 10.0060558, + 49.937651001 + ], + [ + 10.0064569, + 49.937950701 + ], + [ + 10.0066054, + 49.938061701 + ], + [ + 10.0071807, + 49.938474201 + ], + [ + 10.0080486, + 49.939053001 + ], + [ + 10.00896, + 49.939618201 + ], + [ + 10.0097776, + 49.940093601 + ], + [ + 10.0105119, + 49.940494801 + ], + [ + 10.010835, + 49.940665401 + ], + [ + 10.011343, + 49.940927401 + ], + [ + 10.0114719, + 49.940992501 + ], + [ + 10.0117486, + 49.941135801 + ], + [ + 10.0127158, + 49.941619101 + ], + [ + 10.013273, + 49.941879701 + ], + [ + 10.0141728, + 49.942285401 + ], + [ + 10.0150444, + 49.942681801 + ], + [ + 10.0157804, + 49.943011301 + ], + [ + 10.0165655, + 49.943377501 + ], + [ + 10.0170682, + 49.943623801 + ], + [ + 10.0171096, + 49.943644101 + ], + [ + 10.0177724, + 49.943968901 + ], + [ + 10.0185579, + 49.944369501 + ], + [ + 10.019345, + 49.944798601 + ], + [ + 10.0195667, + 49.944931201 + ], + [ + 10.0200563, + 49.945223901 + ], + [ + 10.020774, + 49.945672601 + ], + [ + 10.0214879, + 49.946152601 + ], + [ + 10.0220024, + 49.946516801 + ], + [ + 10.0222219, + 49.946682301 + ], + [ + 10.0223999, + 49.946816401 + ], + [ + 10.0230482, + 49.947290601 + ], + [ + 10.0232501, + 49.947452501 + ], + [ + 10.023455, + 49.947609901 + ], + [ + 10.0240421, + 49.948097201 + ], + [ + 10.024614, + 49.948601101 + ], + [ + 10.0249084, + 49.948856501 + ], + [ + 10.0252056, + 49.949148701 + ], + [ + 10.0254872, + 49.949426201 + ], + [ + 10.0258577, + 49.949792601 + ], + [ + 10.0265271, + 49.950506401 + ], + [ + 10.027247, + 49.951357501 + ], + [ + 10.0281583, + 49.952549401 + ], + [ + 10.0288939, + 49.953698701 + ], + [ + 10.0292639, + 49.954335901 + ], + [ + 10.0295808, + 49.954973301 + ], + [ + 10.0298659, + 49.955582201 + ], + [ + 10.0301255, + 49.956217301 + ], + [ + 10.0304147, + 49.957007601 + ], + [ + 10.03062, + 49.957755601 + ], + [ + 10.030857, + 49.958801801 + ], + [ + 10.0310942, + 49.959953901 + ], + [ + 10.0313785, + 49.961186201 + ], + [ + 10.032127, + 49.964028301 + ], + [ + 10.0322516, + 49.964529201 + ], + [ + 10.0325038, + 49.965542501 + ], + [ + 10.0326688, + 49.966185801 + ], + [ + 10.0327913, + 49.966669501 + ], + [ + 10.0329182, + 49.967132201 + ], + [ + 10.0332829, + 49.968355601 + ], + [ + 10.0334934, + 49.968970401 + ], + [ + 10.0336271, + 49.969301901 + ], + [ + 10.033865, + 49.969871001 + ], + [ + 10.0340819, + 49.970344301 + ], + [ + 10.0343092, + 49.970811401 + ], + [ + 10.0345417, + 49.971240001 + ], + [ + 10.0346567, + 49.971460901 + ], + [ + 10.0353118, + 49.972651301 + ], + [ + 10.0360162, + 49.973712501 + ], + [ + 10.0365341, + 49.974417801 + ], + [ + 10.0370994, + 49.975145101 + ], + [ + 10.0376507, + 49.975790801 + ], + [ + 10.038241, + 49.976450101 + ], + [ + 10.0388669, + 49.977103201 + ], + [ + 10.0395209, + 49.977733701 + ], + [ + 10.0401773, + 49.978347001 + ], + [ + 10.0404326, + 49.978576901 + ], + [ + 10.040816, + 49.978912001 + ], + [ + 10.0422779, + 49.980083801 + ], + [ + 10.0430093, + 49.980632401 + ], + [ + 10.0437852, + 49.981183301 + ], + [ + 10.0451472, + 49.982078001 + ], + [ + 10.045968, + 49.982565601 + ], + [ + 10.046255, + 49.982730701 + ], + [ + 10.0467685, + 49.983026201 + ], + [ + 10.0477352, + 49.983551301 + ], + [ + 10.0482908, + 49.983835201 + ], + [ + 10.0488378, + 49.984114701 + ], + [ + 10.0496937, + 49.984521301 + ], + [ + 10.0506082, + 49.984937601 + ], + [ + 10.0514312, + 49.985282801 + ], + [ + 10.0523205, + 49.985659501 + ], + [ + 10.0530003, + 49.985916001 + ], + [ + 10.05354, + 49.986111001 + ], + [ + 10.0544892, + 49.986453201 + ], + [ + 10.0552401, + 49.986704901 + ], + [ + 10.056281, + 49.987016001 + ], + [ + 10.0568056, + 49.987176201 + ], + [ + 10.0582222, + 49.987587801 + ], + [ + 10.0584189, + 49.987642301 + ], + [ + 10.0599419, + 49.988064501 + ], + [ + 10.0617763, + 49.988567901 + ], + [ + 10.0627041, + 49.988924201 + ], + [ + 10.063954, + 49.989267401 + ], + [ + 10.0663117, + 49.989982201 + ], + [ + 10.0670868, + 49.990251201 + ], + [ + 10.0683743, + 49.990711601 + ], + [ + 10.0694793, + 49.991146201 + ], + [ + 10.0705951, + 49.991616901 + ], + [ + 10.0715205, + 49.992054901 + ], + [ + 10.0723708, + 49.992491201 + ], + [ + 10.0729635, + 49.992829201 + ], + [ + 10.0737146, + 49.993289601 + ], + [ + 10.0743288, + 49.993715501 + ], + [ + 10.0748976, + 49.994151601 + ], + [ + 10.0751522, + 49.994369001 + ], + [ + 10.0755599, + 49.994722501 + ], + [ + 10.0761339, + 49.995319101 + ], + [ + 10.0767007, + 49.995959101 + ], + [ + 10.0769573, + 49.996301901 + ], + [ + 10.0774589, + 49.997036401 + ], + [ + 10.0777457, + 49.997383901 + ], + [ + 10.077819, + 49.997520101 + ], + [ + 10.0780986, + 49.998098201 + ], + [ + 10.0781871, + 49.998334701 + ], + [ + 10.0783495, + 49.998838001 + ], + [ + 10.0784041, + 49.999049401 + ], + [ + 10.0784797, + 49.999342301 + ], + [ + 10.0785774, + 49.999888901 + ], + [ + 10.0785999, + 50.000172801 + ], + [ + 10.0786175, + 50.000373401 + ], + [ + 10.0786332, + 50.000780801 + ], + [ + 10.0786337, + 50.001201101 + ], + [ + 10.078591162, + 50.001663755 + ] + ] + } + }, + { + "identifier": "2024-052623--vi-bs.2026-02-18_00-00-00-000.devi-zus.2025-08-17_00-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.66376214371205,10.129926438956616,49.676880067600486,10.125060612832112", + "point": "49.66376214371205,10.129926438956616", + "startLcPosition": "70", + "impact": { + "lower": "Wolfsgraben-Ost", + "upper": "Marktbreit", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ulm -> W\u00fcrzburg", + "title": "A7 | Marktbreit - Wolfsgraben-Ost", + "startTimestamp": "2026-02-18T00:00:00+01:00", + "coordinate": { + "lat": 49.66376214371205, + "long": 10.129926438956616 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.26 um 00:00 Uhr", + "Ende: 06.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.05.33)", + "", + "A7: Ulm -> W\u00fcrzburg, zwischen 1.9 km hinter AS Marktbreit und 2.8 km vor Wolfsgraben-Ost", + "", + "L\u00e4nge: 1.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 Br\u00fcckenneubau Talbr\u00fccke Marktbreit" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.129926439, + 49.663762144 + ], + [ + 10.1298293, + 49.664048701 + ], + [ + 10.1296021, + 49.664719001 + ], + [ + 10.1295476, + 49.664872901 + ], + [ + 10.126695, + 49.672934001 + ], + [ + 10.1264732, + 49.673557001 + ], + [ + 10.1262677, + 49.674106201 + ], + [ + 10.1260372, + 49.674728601 + ], + [ + 10.125846, + 49.675184901 + ], + [ + 10.1256726, + 49.675595001 + ], + [ + 10.1253256, + 49.676356001 + ], + [ + 10.125060613, + 49.676880068 + ] + ] + } + }, + { + "identifier": "2026-015730--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.65032192204607,10.144679639218676,49.1363299832757,10.260671295204748", + "point": "49.65032192204607,10.144679639218676", + "startLcPosition": "71", + "impact": { + "lower": "Dinkelsb\u00fchl/Fichtenau", + "upper": "Wolfsgraben-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Wolfsgraben-Ost - Dinkelsb\u00fchl/Fichtenau", + "coordinate": { + "lat": 49.65032192204607, + "long": 10.144679639218676 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 09.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 6.2 km hinter Wolfsgraben-Ost und 6.5 km vor AS Dinkelsb\u00fchl/Fichtenau", + "", + "L\u00e4nge: 64.46 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Wolfsgraben-Ost (Rastplatz) nach Dinkelsb\u00fchlFichtenau (AS) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.144679639, + 49.650321922 + ], + [ + 10.1447205, + 49.650307001 + ], + [ + 10.1449996, + 49.650212601 + ], + [ + 10.1459593, + 49.649880001 + ], + [ + 10.146809, + 49.649597601 + ], + [ + 10.1476274, + 49.649330601 + ], + [ + 10.1492496, + 49.648819201 + ], + [ + 10.1505804, + 49.648420701 + ], + [ + 10.1515695, + 49.648131601 + ], + [ + 10.155125, + 49.647104401 + ], + [ + 10.1572588, + 49.646467201 + ], + [ + 10.1594667, + 49.645747401 + ], + [ + 10.1618444, + 49.644898701 + ], + [ + 10.1638031, + 49.644097501 + ], + [ + 10.1654854, + 49.643314701 + ], + [ + 10.1668073, + 49.642623401 + ], + [ + 10.1681432, + 49.641813601 + ], + [ + 10.1685744, + 49.641518201 + ], + [ + 10.1695383, + 49.640857901 + ], + [ + 10.1703281, + 49.640234601 + ], + [ + 10.1710184, + 49.639652101 + ], + [ + 10.1723214, + 49.638376101 + ], + [ + 10.17247, + 49.638205201 + ], + [ + 10.1729822, + 49.637635401 + ], + [ + 10.1734789, + 49.637000401 + ], + [ + 10.17437, + 49.635719801 + ], + [ + 10.1751258, + 49.634325501 + ], + [ + 10.1753388, + 49.633791501 + ], + [ + 10.1756925, + 49.632904801 + ], + [ + 10.1760689, + 49.631504301 + ], + [ + 10.1762227, + 49.630626201 + ], + [ + 10.1763127, + 49.629733801 + ], + [ + 10.1763253, + 49.629186001 + ], + [ + 10.1763132, + 49.628440201 + ], + [ + 10.1761941, + 49.627264001 + ], + [ + 10.1760707, + 49.626610301 + ], + [ + 10.1758489, + 49.625693601 + ], + [ + 10.1755366, + 49.624834001 + ], + [ + 10.1753736, + 49.624385601 + ], + [ + 10.1746737, + 49.622737201 + ], + [ + 10.1737927, + 49.620815001 + ], + [ + 10.1731794, + 49.619435301 + ], + [ + 10.1727155, + 49.618210301 + ], + [ + 10.1724307, + 49.617223401 + ], + [ + 10.1722594, + 49.616505801 + ], + [ + 10.1720554, + 49.615306401 + ], + [ + 10.1719453, + 49.614014501 + ], + [ + 10.1719575, + 49.612553201 + ], + [ + 10.1721673, + 49.610613701 + ], + [ + 10.1724227, + 49.609249901 + ], + [ + 10.1727169, + 49.607900801 + ], + [ + 10.1729022, + 49.607172301 + ], + [ + 10.1733098, + 49.605569301 + ], + [ + 10.17391, + 49.603183001 + ], + [ + 10.1742511, + 49.601573201 + ], + [ + 10.1744133, + 49.600636901 + ], + [ + 10.1745237, + 49.599761101 + ], + [ + 10.1745857, + 49.598480701 + ], + [ + 10.174611, + 49.597153801 + ], + [ + 10.1745912, + 49.596537801 + ], + [ + 10.1744217, + 49.595182801 + ], + [ + 10.1742974, + 49.594376901 + ], + [ + 10.1742443, + 49.594101801 + ], + [ + 10.1741232, + 49.593499501 + ], + [ + 10.1740468, + 49.593128701 + ], + [ + 10.1738202, + 49.592203001 + ], + [ + 10.1734688, + 49.590916801 + ], + [ + 10.1731744, + 49.589877801 + ], + [ + 10.1731315, + 49.589726501 + ], + [ + 10.1728999, + 49.588932001 + ], + [ + 10.1727131, + 49.588280001 + ], + [ + 10.1724923, + 49.587491501 + ], + [ + 10.1723601, + 49.586971201 + ], + [ + 10.1719558, + 49.585334201 + ], + [ + 10.1718941, + 49.584994101 + ], + [ + 10.1717964, + 49.584491101 + ], + [ + 10.171611, + 49.583215201 + ], + [ + 10.1715288, + 49.582338301 + ], + [ + 10.1715049, + 49.581938301 + ], + [ + 10.1714952, + 49.581569501 + ], + [ + 10.1715067, + 49.580719901 + ], + [ + 10.1715886, + 49.579609101 + ], + [ + 10.1716564, + 49.579068701 + ], + [ + 10.1720069, + 49.576936501 + ], + [ + 10.1723888, + 49.574655601 + ], + [ + 10.1725011, + 49.573575501 + ], + [ + 10.1725455, + 49.572563201 + ], + [ + 10.1725199, + 49.571857701 + ], + [ + 10.1724994, + 49.571614201 + ], + [ + 10.1723993, + 49.570750801 + ], + [ + 10.1723128, + 49.570285001 + ], + [ + 10.1720336, + 49.569167801 + ], + [ + 10.171639, + 49.568038801 + ], + [ + 10.1711145, + 49.566888401 + ], + [ + 10.1706902, + 49.566122301 + ], + [ + 10.1701387, + 49.565255601 + ], + [ + 10.1691626, + 49.563903901 + ], + [ + 10.168765, + 49.563393101 + ], + [ + 10.168513, + 49.563077801 + ], + [ + 10.1680017, + 49.562438301 + ], + [ + 10.1672055, + 49.561452401 + ], + [ + 10.1657466, + 49.559509301 + ], + [ + 10.1651748, + 49.558650901 + ], + [ + 10.1647458, + 49.557917401 + ], + [ + 10.16407, + 49.556480701 + ], + [ + 10.1638692, + 49.555962901 + ], + [ + 10.1637125, + 49.555472901 + ], + [ + 10.1635248, + 49.554728501 + ], + [ + 10.1632666, + 49.553528701 + ], + [ + 10.1631505, + 49.552648701 + ], + [ + 10.1631628, + 49.551231401 + ], + [ + 10.1633599, + 49.549601701 + ], + [ + 10.1635518, + 49.548793101 + ], + [ + 10.1637685, + 49.548047901 + ], + [ + 10.1640138, + 49.547366001 + ], + [ + 10.1643383, + 49.546619401 + ], + [ + 10.1647464, + 49.545854601 + ], + [ + 10.1651115, + 49.545176601 + ], + [ + 10.166119, + 49.543733601 + ], + [ + 10.1667496, + 49.542967401 + ], + [ + 10.1674851, + 49.542169901 + ], + [ + 10.1681898, + 49.541493201 + ], + [ + 10.1689395, + 49.540831801 + ], + [ + 10.1697204, + 49.540197601 + ], + [ + 10.1702898, + 49.539777901 + ], + [ + 10.172399, + 49.538436401 + ], + [ + 10.173973, + 49.537556601 + ], + [ + 10.1760087, + 49.536601001 + ], + [ + 10.1793809, + 49.535183701 + ], + [ + 10.1823345, + 49.533909201 + ], + [ + 10.1833792, + 49.533412701 + ], + [ + 10.1845176, + 49.532824801 + ], + [ + 10.1860081, + 49.531958801 + ], + [ + 10.186834, + 49.531407901 + ], + [ + 10.1876949, + 49.530795201 + ], + [ + 10.1890612, + 49.529695901 + ], + [ + 10.189597, + 49.529219301 + ], + [ + 10.1898881, + 49.528941001 + ], + [ + 10.1902099, + 49.528613901 + ], + [ + 10.1906052, + 49.528195901 + ], + [ + 10.1909968, + 49.527764101 + ], + [ + 10.1914377, + 49.527240501 + ], + [ + 10.1918642, + 49.526703801 + ], + [ + 10.1921717, + 49.526290601 + ], + [ + 10.192531, + 49.525781101 + ], + [ + 10.1928636, + 49.525281001 + ], + [ + 10.1931909, + 49.524752201 + ], + [ + 10.1935101, + 49.524212301 + ], + [ + 10.1938244, + 49.523633701 + ], + [ + 10.1940788, + 49.523132301 + ], + [ + 10.1944717, + 49.522312801 + ], + [ + 10.1947138, + 49.521761001 + ], + [ + 10.1951272, + 49.520739301 + ], + [ + 10.1952594, + 49.520376001 + ], + [ + 10.1957148, + 49.519124701 + ], + [ + 10.1959078, + 49.518472201 + ], + [ + 10.1961088, + 49.517724701 + ], + [ + 10.1962784, + 49.517113101 + ], + [ + 10.1964918, + 49.516183501 + ], + [ + 10.1966931, + 49.515156401 + ], + [ + 10.1968574, + 49.514178901 + ], + [ + 10.1969997, + 49.513104301 + ], + [ + 10.1971023, + 49.512092101 + ], + [ + 10.1971356, + 49.511373801 + ], + [ + 10.1971994, + 49.509722801 + ], + [ + 10.1972022, + 49.508789201 + ], + [ + 10.1972054, + 49.507695701 + ], + [ + 10.1971711, + 49.506574001 + ], + [ + 10.197192, + 49.505473701 + ], + [ + 10.1971983, + 49.505139201 + ], + [ + 10.1972542, + 49.503857901 + ], + [ + 10.1973501, + 49.502626801 + ], + [ + 10.197477, + 49.501448001 + ], + [ + 10.1978129, + 49.499796501 + ], + [ + 10.1983259, + 49.498187501 + ], + [ + 10.1989617, + 49.496730101 + ], + [ + 10.1993398, + 49.496030001 + ], + [ + 10.1998325, + 49.495175801 + ], + [ + 10.2009328, + 49.493568901 + ], + [ + 10.2018944, + 49.492347201 + ], + [ + 10.2028061, + 49.491398901 + ], + [ + 10.203881, + 49.490378601 + ], + [ + 10.2056953, + 49.488853201 + ], + [ + 10.2073258, + 49.487705101 + ], + [ + 10.2080538, + 49.487244401 + ], + [ + 10.2090685, + 49.486644901 + ], + [ + 10.2100021, + 49.486122201 + ], + [ + 10.211732, + 49.485236501 + ], + [ + 10.2123053, + 49.484962301 + ], + [ + 10.2131271, + 49.484569301 + ], + [ + 10.2153302, + 49.483548001 + ], + [ + 10.2173244, + 49.482631601 + ], + [ + 10.2210778, + 49.480708401 + ], + [ + 10.2216077, + 49.480425901 + ], + [ + 10.2226256, + 49.479811301 + ], + [ + 10.2229037, + 49.479618701 + ], + [ + 10.2244901, + 49.478519801 + ], + [ + 10.2259335, + 49.477282201 + ], + [ + 10.2273161, + 49.475889101 + ], + [ + 10.2287278, + 49.474130301 + ], + [ + 10.2302529, + 49.471780301 + ], + [ + 10.2321879, + 49.468706801 + ], + [ + 10.2332782, + 49.467012201 + ], + [ + 10.2343879, + 49.465379701 + ], + [ + 10.2355666, + 49.463733801 + ], + [ + 10.2367188, + 49.462210101 + ], + [ + 10.2373435, + 49.461413501 + ], + [ + 10.237938, + 49.460676201 + ], + [ + 10.238828, + 49.459584801 + ], + [ + 10.2405767, + 49.457571701 + ], + [ + 10.2422501, + 49.455757001 + ], + [ + 10.2455823, + 49.452342801 + ], + [ + 10.2470414, + 49.450841301 + ], + [ + 10.2484998, + 49.449345901 + ], + [ + 10.2487746, + 49.449067501 + ], + [ + 10.249275, + 49.448548901 + ], + [ + 10.2496486, + 49.448165401 + ], + [ + 10.2499569, + 49.447854601 + ], + [ + 10.2501261, + 49.447682101 + ], + [ + 10.2503762, + 49.447416301 + ], + [ + 10.2513208, + 49.446435101 + ], + [ + 10.251897, + 49.445816201 + ], + [ + 10.2530305, + 49.444504201 + ], + [ + 10.2531761, + 49.444320901 + ], + [ + 10.2543364, + 49.442859901 + ], + [ + 10.2554161, + 49.441374901 + ], + [ + 10.2560447, + 49.440445101 + ], + [ + 10.2562911, + 49.440080601 + ], + [ + 10.2567767, + 49.439301501 + ], + [ + 10.2570811, + 49.438775601 + ], + [ + 10.2574806, + 49.438055401 + ], + [ + 10.2577946, + 49.437418601 + ], + [ + 10.2581164, + 49.436755801 + ], + [ + 10.2583676, + 49.436171401 + ], + [ + 10.2584255, + 49.436036601 + ], + [ + 10.2586395, + 49.435538401 + ], + [ + 10.2588547, + 49.434944001 + ], + [ + 10.2590632, + 49.434317401 + ], + [ + 10.2592184, + 49.433763101 + ], + [ + 10.259356, + 49.433114401 + ], + [ + 10.2594361, + 49.432595701 + ], + [ + 10.2595, + 49.432092301 + ], + [ + 10.259546, + 49.431559601 + ], + [ + 10.2595667, + 49.430927301 + ], + [ + 10.2595514, + 49.430411801 + ], + [ + 10.259494, + 49.429782101 + ], + [ + 10.2593524, + 49.428985001 + ], + [ + 10.2591034, + 49.428132501 + ], + [ + 10.2588835, + 49.427514201 + ], + [ + 10.2586557, + 49.426989101 + ], + [ + 10.25839, + 49.426472701 + ], + [ + 10.2580784, + 49.425922901 + ], + [ + 10.2577516, + 49.425424201 + ], + [ + 10.2574325, + 49.424977601 + ], + [ + 10.2570947, + 49.424553501 + ], + [ + 10.2567083, + 49.424100001 + ], + [ + 10.256309, + 49.423700601 + ], + [ + 10.2556917, + 49.423116001 + ], + [ + 10.2550795, + 49.422570201 + ], + [ + 10.2534838, + 49.421285301 + ], + [ + 10.2519152, + 49.420043701 + ], + [ + 10.2515301, + 49.419725701 + ], + [ + 10.2512071, + 49.419459001 + ], + [ + 10.2506943, + 49.418996901 + ], + [ + 10.250102, + 49.418417301 + ], + [ + 10.2495808, + 49.417856701 + ], + [ + 10.2491498, + 49.417365201 + ], + [ + 10.2487253, + 49.416842901 + ], + [ + 10.2483773, + 49.416365301 + ], + [ + 10.2480357, + 49.415874401 + ], + [ + 10.247755, + 49.415437001 + ], + [ + 10.2474488, + 49.414921901 + ], + [ + 10.2470778, + 49.414228201 + ], + [ + 10.2468029, + 49.413615201 + ], + [ + 10.2465268, + 49.412915201 + ], + [ + 10.2462695, + 49.411966001 + ], + [ + 10.2461864, + 49.411654601 + ], + [ + 10.2460841, + 49.411201901 + ], + [ + 10.2459875, + 49.410781201 + ], + [ + 10.2459311, + 49.410386001 + ], + [ + 10.2457863, + 49.409341401 + ], + [ + 10.2456987, + 49.408412701 + ], + [ + 10.2455878, + 49.406898201 + ], + [ + 10.2454411, + 49.405133101 + ], + [ + 10.2453005, + 49.404232001 + ], + [ + 10.2451764, + 49.403473201 + ], + [ + 10.2449951, + 49.402702401 + ], + [ + 10.244765, + 49.401867001 + ], + [ + 10.2445927, + 49.401267601 + ], + [ + 10.2443899, + 49.400702901 + ], + [ + 10.244185, + 49.400157501 + ], + [ + 10.2439481, + 49.399604901 + ], + [ + 10.2435976, + 49.398853601 + ], + [ + 10.2432357, + 49.398145101 + ], + [ + 10.2427876, + 49.397383801 + ], + [ + 10.2426158, + 49.397077501 + ], + [ + 10.2421251, + 49.396317201 + ], + [ + 10.2415542, + 49.395529401 + ], + [ + 10.2410334, + 49.394885801 + ], + [ + 10.2404582, + 49.394230301 + ], + [ + 10.2400061, + 49.393754601 + ], + [ + 10.2394881, + 49.393242801 + ], + [ + 10.2389359, + 49.392738501 + ], + [ + 10.238374, + 49.392240801 + ], + [ + 10.2376789, + 49.391692601 + ], + [ + 10.2370772, + 49.391251101 + ], + [ + 10.2361598, + 49.390596801 + ], + [ + 10.2355993, + 49.390273401 + ], + [ + 10.2346126, + 49.389709101 + ], + [ + 10.2336305, + 49.389203201 + ], + [ + 10.2326832, + 49.388733401 + ], + [ + 10.2317865, + 49.388348601 + ], + [ + 10.2308475, + 49.387963301 + ], + [ + 10.2297167, + 49.387488201 + ], + [ + 10.2283372, + 49.386976301 + ], + [ + 10.226996, + 49.386433501 + ], + [ + 10.2262115, + 49.386102401 + ], + [ + 10.2254578, + 49.385760901 + ], + [ + 10.2247095, + 49.385416201 + ], + [ + 10.2240341, + 49.385066901 + ], + [ + 10.2233255, + 49.384693401 + ], + [ + 10.2227074, + 49.384335401 + ], + [ + 10.2213727, + 49.383498501 + ], + [ + 10.2205387, + 49.382901901 + ], + [ + 10.2200696, + 49.382548701 + ], + [ + 10.2197933, + 49.382320201 + ], + [ + 10.2192358, + 49.381845601 + ], + [ + 10.2189921, + 49.381638101 + ], + [ + 10.2181992, + 49.380877301 + ], + [ + 10.2177089, + 49.380373401 + ], + [ + 10.2170487, + 49.379616901 + ], + [ + 10.2167025, + 49.379199801 + ], + [ + 10.2162012, + 49.378552901 + ], + [ + 10.2159962, + 49.378275501 + ], + [ + 10.2155605, + 49.377617801 + ], + [ + 10.2151986, + 49.377052701 + ], + [ + 10.2147882, + 49.376344701 + ], + [ + 10.2146979, + 49.376192501 + ], + [ + 10.2146272, + 49.376057801 + ], + [ + 10.2142425, + 49.375230701 + ], + [ + 10.2140783, + 49.374882201 + ], + [ + 10.2138963, + 49.374435601 + ], + [ + 10.2136513, + 49.373777901 + ], + [ + 10.2133674, + 49.372895301 + ], + [ + 10.2131421, + 49.372010501 + ], + [ + 10.2129436, + 49.370920301 + ], + [ + 10.212803, + 49.369838801 + ], + [ + 10.2127699, + 49.368835901 + ], + [ + 10.2128223, + 49.367608501 + ], + [ + 10.2128469, + 49.367305901 + ], + [ + 10.2128673, + 49.366995701 + ], + [ + 10.212952, + 49.366450601 + ], + [ + 10.2129958, + 49.366186901 + ], + [ + 10.2131492, + 49.365451501 + ], + [ + 10.213247, + 49.365039001 + ], + [ + 10.2134523, + 49.364347601 + ], + [ + 10.2136922, + 49.363628501 + ], + [ + 10.2140127, + 49.362799601 + ], + [ + 10.2144141, + 49.361909401 + ], + [ + 10.2145844, + 49.361578601 + ], + [ + 10.2148761, + 49.361037201 + ], + [ + 10.2156096, + 49.359838201 + ], + [ + 10.2159212, + 49.359379101 + ], + [ + 10.2164937, + 49.358565701 + ], + [ + 10.2174042, + 49.357374601 + ], + [ + 10.2187043, + 49.355731501 + ], + [ + 10.2199867, + 49.353975601 + ], + [ + 10.2204294, + 49.353282001 + ], + [ + 10.2207098, + 49.352792101 + ], + [ + 10.2215068, + 49.351098201 + ], + [ + 10.2220265, + 49.349424901 + ], + [ + 10.2222146, + 49.348470701 + ], + [ + 10.2223245, + 49.347520701 + ], + [ + 10.2223685, + 49.345610601 + ], + [ + 10.222177, + 49.343956001 + ], + [ + 10.2219248, + 49.342701701 + ], + [ + 10.2216542, + 49.341761101 + ], + [ + 10.2213872, + 49.340979001 + ], + [ + 10.22061, + 49.339185401 + ], + [ + 10.2201114, + 49.338299801 + ], + [ + 10.2195094, + 49.337355301 + ], + [ + 10.2188889, + 49.336508101 + ], + [ + 10.218125, + 49.335553001 + ], + [ + 10.2176189, + 49.334972201 + ], + [ + 10.217237, + 49.334538901 + ], + [ + 10.2167816, + 49.334094201 + ], + [ + 10.2160363, + 49.333368301 + ], + [ + 10.2151606, + 49.332589001 + ], + [ + 10.2135953, + 49.331323701 + ], + [ + 10.2118491, + 49.329955301 + ], + [ + 10.2107674, + 49.329041201 + ], + [ + 10.2099112, + 49.328298701 + ], + [ + 10.208586, + 49.326940401 + ], + [ + 10.2080905, + 49.326370201 + ], + [ + 10.2076047, + 49.325748001 + ], + [ + 10.2072455, + 49.325231401 + ], + [ + 10.206886, + 49.324692001 + ], + [ + 10.2064866, + 49.323996201 + ], + [ + 10.2060424, + 49.323188601 + ], + [ + 10.2057632, + 49.322543101 + ], + [ + 10.2053885, + 49.321486201 + ], + [ + 10.2052651, + 49.321069601 + ], + [ + 10.2050588, + 49.320016001 + ], + [ + 10.2049986, + 49.319579301 + ], + [ + 10.2048894, + 49.318518601 + ], + [ + 10.2048745, + 49.317399601 + ], + [ + 10.2050049, + 49.316076001 + ], + [ + 10.2052206, + 49.314852801 + ], + [ + 10.2053482, + 49.314310601 + ], + [ + 10.2054898, + 49.313708601 + ], + [ + 10.2059794, + 49.312157101 + ], + [ + 10.2063923, + 49.311087801 + ], + [ + 10.2068165, + 49.309989201 + ], + [ + 10.2071309, + 49.309195801 + ], + [ + 10.2077875, + 49.307719401 + ], + [ + 10.2080933, + 49.307056601 + ], + [ + 10.2088343, + 49.305553501 + ], + [ + 10.2094437, + 49.304441901 + ], + [ + 10.2100675, + 49.303331801 + ], + [ + 10.2103997, + 49.302774201 + ], + [ + 10.2105666, + 49.302489601 + ], + [ + 10.2109992, + 49.301752001 + ], + [ + 10.2120819, + 49.300052301 + ], + [ + 10.2134485, + 49.298057801 + ], + [ + 10.2148863, + 49.296143201 + ], + [ + 10.2163455, + 49.294299201 + ], + [ + 10.2177131, + 49.292679701 + ], + [ + 10.2190896, + 49.291151201 + ], + [ + 10.220382, + 49.289816101 + ], + [ + 10.2220566, + 49.288148601 + ], + [ + 10.2227152, + 49.287519801 + ], + [ + 10.2236353, + 49.286667901 + ], + [ + 10.2280188, + 49.282560801 + ], + [ + 10.2315276, + 49.279247801 + ], + [ + 10.2325101, + 49.278230401 + ], + [ + 10.2329975, + 49.277695301 + ], + [ + 10.2334697, + 49.277135601 + ], + [ + 10.2339784, + 49.276518101 + ], + [ + 10.2343766, + 49.275968701 + ], + [ + 10.2345958, + 49.275641301 + ], + [ + 10.2349016, + 49.275148701 + ], + [ + 10.2351763, + 49.274663001 + ], + [ + 10.2354181, + 49.274211401 + ], + [ + 10.2356368, + 49.273712901 + ], + [ + 10.2358203, + 49.273223601 + ], + [ + 10.2360445, + 49.272465101 + ], + [ + 10.2361986, + 49.271735101 + ], + [ + 10.2362806, + 49.271051101 + ], + [ + 10.2363113, + 49.270344101 + ], + [ + 10.2362886, + 49.269649201 + ], + [ + 10.2362262, + 49.268895901 + ], + [ + 10.2361169, + 49.268170301 + ], + [ + 10.2358987, + 49.267340401 + ], + [ + 10.2356368, + 49.266469101 + ], + [ + 10.2353127, + 49.265607001 + ], + [ + 10.2348876, + 49.264683501 + ], + [ + 10.2341908, + 49.263321501 + ], + [ + 10.2336227, + 49.262329301 + ], + [ + 10.2332212, + 49.261681601 + ], + [ + 10.232849, + 49.261097701 + ], + [ + 10.2324299, + 49.260469301 + ], + [ + 10.2321161, + 49.260040901 + ], + [ + 10.2315445, + 49.259212301 + ], + [ + 10.2311531, + 49.258698901 + ], + [ + 10.2298065, + 49.257022401 + ], + [ + 10.2284359, + 49.255463801 + ], + [ + 10.2274456, + 49.254454401 + ], + [ + 10.2269013, + 49.253899501 + ], + [ + 10.2253469, + 49.252382401 + ], + [ + 10.2232616, + 49.250396401 + ], + [ + 10.2225577, + 49.249670801 + ], + [ + 10.2212665, + 49.248348701 + ], + [ + 10.2201599, + 49.247134901 + ], + [ + 10.219039, + 49.245842901 + ], + [ + 10.2182791, + 49.244927201 + ], + [ + 10.2170603, + 49.243341701 + ], + [ + 10.2152887, + 49.240803501 + ], + [ + 10.2146089, + 49.239644101 + ], + [ + 10.2144697, + 49.239397001 + ], + [ + 10.2140912, + 49.238672901 + ], + [ + 10.2136982, + 49.237921001 + ], + [ + 10.2132567, + 49.236905501 + ], + [ + 10.2129191, + 49.235950201 + ], + [ + 10.2126259, + 49.234955401 + ], + [ + 10.2124458, + 49.233998001 + ], + [ + 10.2123212, + 49.232386601 + ], + [ + 10.2123468, + 49.231638801 + ], + [ + 10.2124132, + 49.230827701 + ], + [ + 10.2125947, + 49.229810701 + ], + [ + 10.2127868, + 49.229025101 + ], + [ + 10.2130312, + 49.228238601 + ], + [ + 10.2134035, + 49.227295901 + ], + [ + 10.2137313, + 49.226595001 + ], + [ + 10.2140805, + 49.225950901 + ], + [ + 10.214545, + 49.225189301 + ], + [ + 10.2151295, + 49.224356101 + ], + [ + 10.2155558, + 49.223801101 + ], + [ + 10.2159501, + 49.223327401 + ], + [ + 10.216576, + 49.222637301 + ], + [ + 10.2171051, + 49.222096001 + ], + [ + 10.217677, + 49.221542901 + ], + [ + 10.2189255, + 49.220389301 + ], + [ + 10.220195, + 49.219298201 + ], + [ + 10.221146, + 49.218491801 + ], + [ + 10.2225871, + 49.217266001 + ], + [ + 10.2238768, + 49.216116601 + ], + [ + 10.2245835, + 49.215461401 + ], + [ + 10.2252607, + 49.214797801 + ], + [ + 10.2257411, + 49.214316601 + ], + [ + 10.2264778, + 49.213542001 + ], + [ + 10.2279722, + 49.211885201 + ], + [ + 10.2282404, + 49.211560501 + ], + [ + 10.2287081, + 49.210994401 + ], + [ + 10.2290618, + 49.210546501 + ], + [ + 10.2295477, + 49.209923301 + ], + [ + 10.2299489, + 49.209376001 + ], + [ + 10.230315, + 49.208896401 + ], + [ + 10.2305187, + 49.208602901 + ], + [ + 10.2310924, + 49.207709601 + ], + [ + 10.2319672, + 49.206344001 + ], + [ + 10.2322192, + 49.205929801 + ], + [ + 10.2326631, + 49.205149201 + ], + [ + 10.2332, + 49.204081201 + ], + [ + 10.2336312, + 49.203204801 + ], + [ + 10.2338723, + 49.202680201 + ], + [ + 10.2341351, + 49.202072401 + ], + [ + 10.2343193, + 49.201650201 + ], + [ + 10.2345071, + 49.201171301 + ], + [ + 10.2346846, + 49.200699801 + ], + [ + 10.2348593, + 49.200231601 + ], + [ + 10.2351262, + 49.199449301 + ], + [ + 10.2353746, + 49.198672001 + ], + [ + 10.2355856, + 49.197922001 + ], + [ + 10.2357378, + 49.197353401 + ], + [ + 10.2359565, + 49.196383301 + ], + [ + 10.2360204, + 49.196092001 + ], + [ + 10.2361947, + 49.195166601 + ], + [ + 10.236302, + 49.194549601 + ], + [ + 10.2364067, + 49.193896901 + ], + [ + 10.2364658, + 49.193501101 + ], + [ + 10.2364858, + 49.193367501 + ], + [ + 10.2365161, + 49.193167101 + ], + [ + 10.2366526, + 49.192203701 + ], + [ + 10.2368273, + 49.190904601 + ], + [ + 10.2369662, + 49.189906801 + ], + [ + 10.2371639, + 49.188750801 + ], + [ + 10.2374525, + 49.187181501 + ], + [ + 10.2377452, + 49.186087601 + ], + [ + 10.2381123, + 49.184875901 + ], + [ + 10.2384442, + 49.183969001 + ], + [ + 10.2385768, + 49.183678501 + ], + [ + 10.2391275, + 49.182493601 + ], + [ + 10.2397199, + 49.181379201 + ], + [ + 10.2406203, + 49.179975801 + ], + [ + 10.2411443, + 49.179205301 + ], + [ + 10.2417202, + 49.178445801 + ], + [ + 10.2424321, + 49.177589201 + ], + [ + 10.2429803, + 49.176973901 + ], + [ + 10.2435063, + 49.176381501 + ], + [ + 10.2447728, + 49.175179901 + ], + [ + 10.2454044, + 49.174612401 + ], + [ + 10.2458213, + 49.174254801 + ], + [ + 10.2469495, + 49.173342201 + ], + [ + 10.2477928, + 49.172704301 + ], + [ + 10.2481766, + 49.172421001 + ], + [ + 10.2486701, + 49.172056701 + ], + [ + 10.2505583, + 49.170721101 + ], + [ + 10.2536201, + 49.168593101 + ], + [ + 10.2552619, + 49.167452101 + ], + [ + 10.2566319, + 49.166433701 + ], + [ + 10.2572853, + 49.165914301 + ], + [ + 10.257811, + 49.165496501 + ], + [ + 10.2585974, + 49.164850401 + ], + [ + 10.2601055, + 49.163460101 + ], + [ + 10.2614422, + 49.162019601 + ], + [ + 10.2626642, + 49.160453601 + ], + [ + 10.2628909, + 49.160101801 + ], + [ + 10.2630428, + 49.159866101 + ], + [ + 10.2637102, + 49.158830601 + ], + [ + 10.2640243, + 49.158159601 + ], + [ + 10.2641834, + 49.157819701 + ], + [ + 10.2647714, + 49.156526801 + ], + [ + 10.2650463, + 49.155764001 + ], + [ + 10.2652783, + 49.154960001 + ], + [ + 10.2655028, + 49.153943101 + ], + [ + 10.2657131, + 49.152606601 + ], + [ + 10.2657784, + 49.151001901 + ], + [ + 10.2656524, + 49.149376901 + ], + [ + 10.2655556, + 49.148748101 + ], + [ + 10.2654497, + 49.148094201 + ], + [ + 10.2650939, + 49.146767601 + ], + [ + 10.264875, + 49.146112901 + ], + [ + 10.2643183, + 49.144704301 + ], + [ + 10.2632808, + 49.142697601 + ], + [ + 10.2622516, + 49.140684201 + ], + [ + 10.2614442, + 49.138971201 + ], + [ + 10.2609492, + 49.137565001 + ], + [ + 10.2608344, + 49.137051301 + ], + [ + 10.2607927, + 49.136887801 + ], + [ + 10.260671295, + 49.136329983 + ] + ] + } + }, + { + "identifier": "2024-052623--vi-bs.2026-02-18_00-00-00-000.devi-zus.2025-08-17_00-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.67683971183888,10.124873004164199,49.66373666375201,10.129747931647197", + "point": "49.67683971183888,10.124873004164199", + "startLcPosition": "71", + "impact": { + "lower": "Marktbreit", + "upper": "Wolfsgraben-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Wolfsgraben-Ost - Marktbreit", + "startTimestamp": "2026-02-18T00:00:00+01:00", + "coordinate": { + "lat": 49.67683971183888, + "long": 10.124873004164199 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.26 um 00:00 Uhr", + "Ende: 06.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.05.33)", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 2.8 km hinter Wolfsgraben-Ost und 1.9 km vor AS Marktbreit", + "", + "L\u00e4nge: 1.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Br\u00fcckenneubau Talbr\u00fccke Marktbreit" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.124873004, + 49.676839712 + ], + [ + 10.1251378, + 49.676325701 + ], + [ + 10.1255108, + 49.675545501 + ], + [ + 10.1256885, + 49.675147201 + ], + [ + 10.1258707, + 49.674695501 + ], + [ + 10.1261253, + 49.674072801 + ], + [ + 10.1263182, + 49.673533101 + ], + [ + 10.1265357, + 49.672908401 + ], + [ + 10.129362, + 49.664849701 + ], + [ + 10.1294018, + 49.664729001 + ], + [ + 10.1295476, + 49.664328501 + ], + [ + 10.129747932, + 49.663736664 + ] + ] + } + }, + { + "identifier": "2025-051907--vi-bs.2025-10-07_00-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.65179464604416,10.141175625159187,49.65152612364052,10.141764077852372", + "point": "49.65179464604416,10.141175625159187", + "startLcPosition": "71", + "impact": { + "lower": "Marktbreit", + "upper": "Wolfsgraben-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Wolfsgraben-Ost - Marktbreit", + "coordinate": { + "lat": 49.65179464604416, + "long": 10.141175625159187 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 00:00 bis zum 10.04.26 24:00 Uhr.", + "11.04.26 00:00 bis zum 12.04.26 24:00 Uhr.", + "13.04.26 00:00 bis zum 14.04.26 24:00 Uhr.", + "15.04.26 00:00 bis zum 16.04.26 24:00 Uhr.", + "17.04.26 00:15 bis zum 18.04.26 24:00 Uhr.", + "19.04.26 00:00 bis zum 20.04.26 24:00 Uhr.", + "21.04.26 00:00 bis zum 22.04.26 24:00 Uhr.", + "23.04.26 00:00 bis zum 24.04.26 24:00 Uhr.", + "25.04.26 von 00:00 bis 23:45 Uhr", + "26.04.26 00:00 bis zum 27.04.26 24:00 Uhr.", + "28.04.26 00:00 bis zum 29.04.26 24:00 Uhr.", + "30.04.26 00:00 bis zum 01.05.26 24:00 Uhr.", + "02.05.26 00:00 bis zum 03.05.26 24:00 Uhr.", + "04.05.26 00:00 bis zum 05.05.26 24:00 Uhr.", + "06.05.26 00:00 bis zum 07.05.26 24:00 Uhr.", + "08.05.26 00:00 bis zum 09.05.26 24:00 Uhr.", + "10.05.26 von 00:00 bis 24:00 Uhr", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 5.9 km hinter Wolfsgraben-Ost und 0.3 km vor AS Marktbreit", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A7 von Wolfsgraben-Ost (Rastplatz) nach Marktbreit (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.141175625, + 49.651794646 + ], + [ + 10.1414853, + 49.651651701 + ], + [ + 10.141764078, + 49.651526124 + ] + ] + } + }, + { + "identifier": "2025-040899--vi-bs.2026-04-01_00-00-00-000.devi-zus.2025-09-08_00-00-00-000_007.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.75279293957335,10.107305070285793,49.76422568830269,10.103421216941307", + "point": "49.75279293957335,10.107305070285793", + "startLcPosition": "72", + "impact": { + "lower": "Biebelried", + "upper": "Wolfsgraben-West", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ulm -> W\u00fcrzburg", + "title": "A7 | Wolfsgraben-West - Biebelried", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 49.75279293957335, + "long": 10.107305070285793 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 23.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 23.11.26)", + "", + "A7: Ulm -> W\u00fcrzburg, zwischen 5.1 km hinter Wolfsgraben-West und 1.8 km vor AK Biebelried", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Br\u00fcckenneubau Bw 671a, 672a" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.10730507, + 49.75279294 + ], + [ + 10.1072783, + 49.753033001 + ], + [ + 10.1072224, + 49.753385201 + ], + [ + 10.1069554, + 49.754834201 + ], + [ + 10.1066083, + 49.756323401 + ], + [ + 10.1063321, + 49.757346501 + ], + [ + 10.1061838, + 49.757835801 + ], + [ + 10.1058735, + 49.758780701 + ], + [ + 10.1055174, + 49.759793101 + ], + [ + 10.105453, + 49.759956301 + ], + [ + 10.1053813, + 49.760136001 + ], + [ + 10.1052979, + 49.760345001 + ], + [ + 10.1049261, + 49.761200401 + ], + [ + 10.1046451, + 49.761826301 + ], + [ + 10.1040859, + 49.762996301 + ], + [ + 10.1037841, + 49.763558201 + ], + [ + 10.103509, + 49.764068301 + ], + [ + 10.103421217, + 49.764225688 + ] + ] + } + }, + { + "identifier": "2026-002278--vi-bs.2026-01-12_00-00-00-000.devi-zus.2026-01-12_00-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.72867674600763,10.10359484065058,49.737551666502775,10.105835057659904", + "point": "49.72867674600763,10.10359484065058", + "startLcPosition": "72", + "impact": { + "lower": "Kitzingen", + "upper": "Wolfsgraben-West", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ulm -> W\u00fcrzburg", + "title": "A7 | Wolfsgraben-West - Kitzingen", + "coordinate": { + "lat": 49.72867674600763, + "long": 10.10359484065058 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "30.03.26 00:00 Uhr bis zum 10.05.26 24:00 Uhr.", + "", + "A7: Ulm -> W\u00fcrzburg, zwischen 2.4 km hinter Wolfsgraben-West und 2.5 km vor AS Kitzingen", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7.7 m", + "", + "A7 von Kitzingen (AS) nach Wolfsgraben-West (Parkplatz) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.103594841, + 49.728676746 + ], + [ + 10.1041349, + 49.730963901 + ], + [ + 10.104694, + 49.733125501 + ], + [ + 10.1050729, + 49.734594601 + ], + [ + 10.1052121, + 49.735129601 + ], + [ + 10.1053107, + 49.735505301 + ], + [ + 10.1055009, + 49.736231001 + ], + [ + 10.1057274, + 49.737125301 + ], + [ + 10.105835058, + 49.737551667 + ] + ] + } + }, + { + "identifier": "2026-002278--vi-bs.2026-01-12_00-00-00-000.devi-zus.2026-01-12_00-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.737570108952625,10.10566092832079,49.72869340197747,10.10342588880946", + "point": "49.737570108952625,10.10566092832079", + "startLcPosition": "73", + "impact": { + "lower": "Wolfsgraben-West", + "upper": "Kitzingen", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Kitzingen - Wolfsgraben-West", + "coordinate": { + "lat": 49.737570108952625, + "long": 10.10566092832079 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "30.03.26 00:00 Uhr bis zum 10.05.26 24:00 Uhr.", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 2.5 km hinter AS Kitzingen und 2.4 km vor Wolfsgraben-West", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7.7 m", + "", + "A7 von Kitzingen (AS) nach Wolfsgraben-West (Parkplatz) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.105660928, + 49.737570109 + ], + [ + 10.1055533, + 49.737142601 + ], + [ + 10.1053248, + 49.736250401 + ], + [ + 10.1051947, + 49.735761001 + ], + [ + 10.1050928, + 49.735374401 + ], + [ + 10.1048992, + 49.734613701 + ], + [ + 10.104518, + 49.733142001 + ], + [ + 10.1039595, + 49.730981201 + ], + [ + 10.103425889, + 49.728693402 + ] + ] + } + }, + { + "identifier": "2026-006363--vi-bs.2026-02-09_20-00-00-000_014.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.735796384683205,10.10520410617035,49.7313610997532,10.104057688323365", + "point": "49.735796384683205,10.10520410617035", + "startLcPosition": "73", + "impact": { + "lower": "Wolfsgraben-West", + "upper": "Kitzingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Kitzingen - Wolfsgraben-West", + "coordinate": { + "lat": 49.735796384683205, + "long": 10.10520410617035 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "29.03.26 00:00 Uhr bis zum 10.05.26 24:00 Uhr.", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 2.7 km hinter AS Kitzingen und 2.7 km vor Wolfsgraben-West", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7.7 m", + "", + "A7 von Kitzingen (AS) nach Wolfsgraben-West (Parkplatz) Akute Verkehrsgef\u00e4hrdung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.105204106, + 49.735796385 + ], + [ + 10.1051947, + 49.735761001 + ], + [ + 10.1050928, + 49.735374401 + ], + [ + 10.1048992, + 49.734613701 + ], + [ + 10.104518, + 49.733142001 + ], + [ + 10.104057688, + 49.7313611 + ] + ] + } + }, + { + "identifier": "2025-040899--vi-bs.2026-04-01_00-00-00-000.devi-zus.2025-09-08_00-00-00-000_007.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.764187016229876,10.10325644663598,49.75278415237381,10.10712167016292", + "point": "49.764187016229876,10.10325644663598", + "startLcPosition": "74", + "impact": { + "lower": "Wolfsgraben-West", + "upper": "Biebelried", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Biebelried - Wolfsgraben-West", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 49.764187016229876, + "long": 10.10325644663598 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 23.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 23.11.26)", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 1.8 km hinter AK Biebelried und 5.1 km vor Wolfsgraben-West", + "", + "L\u00e4nge: 1.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Br\u00fcckenneubau Bw 671a, 672a" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.103256447, + 49.764187016 + ], + [ + 10.1033365, + 49.764041601 + ], + [ + 10.1036058, + 49.763558201 + ], + [ + 10.1039003, + 49.762997101 + ], + [ + 10.1042786, + 49.762221401 + ], + [ + 10.1050934, + 49.760346401 + ], + [ + 10.1051994, + 49.760089901 + ], + [ + 10.105268, + 49.759900401 + ], + [ + 10.1058551, + 49.758333301 + ], + [ + 10.1058957, + 49.758199801 + ], + [ + 10.1061592, + 49.757330901 + ], + [ + 10.1064307, + 49.756347101 + ], + [ + 10.1067805, + 49.754814001 + ], + [ + 10.1070418, + 49.753386201 + ], + [ + 10.1070942, + 49.753018501 + ], + [ + 10.10712167, + 49.752784152 + ] + ] + } + }, + { + "identifier": "2026-002280--vi-bs.2026-01-15_09-45-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.80575179668191,10.045425059173441,49.7762982798264,10.094112373148574", + "point": "49.80575179668191,10.045425059173441", + "startLcPosition": "76", + "impact": { + "lower": "Kitzingen", + "upper": "Masuren", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Ulm", + "title": "A7 | Masuren - Kitzingen", + "coordinate": { + "lat": 49.80575179668191, + "long": 10.045425059173441 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "29.03.26 00:00 Uhr bis zum 10.05.26 24:00 Uhr.", + "", + "A7: W\u00fcrzburg -> Ulm, zwischen 0.9 km hinter Masuren und 2.0 km vor AS Kitzingen", + "", + "L\u00e4nge: 4.98 km | Maximale Durchfahrtsbreite: 7.7 m", + "", + "A7 von Masuren (Parkplatz) nach Kitzingen (AS) Akute Verkehrsgef\u00e4hrdung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.045425059, + 49.805751797 + ], + [ + 10.0458574, + 49.804994801 + ], + [ + 10.0461173, + 49.804590201 + ], + [ + 10.0466997, + 49.803693301 + ], + [ + 10.0473698, + 49.802789001 + ], + [ + 10.0478017, + 49.802222201 + ], + [ + 10.0481706, + 49.801765201 + ], + [ + 10.0483052, + 49.801611901 + ], + [ + 10.0484949, + 49.801392301 + ], + [ + 10.0492714, + 49.800554401 + ], + [ + 10.0498462, + 49.799970801 + ], + [ + 10.0501246, + 49.799696701 + ], + [ + 10.0505771, + 49.799251201 + ], + [ + 10.0507253, + 49.799114101 + ], + [ + 10.0513999, + 49.798512401 + ], + [ + 10.0520518, + 49.797982301 + ], + [ + 10.0524589, + 49.797651301 + ], + [ + 10.0534437, + 49.796907301 + ], + [ + 10.0546219, + 49.796075601 + ], + [ + 10.0558518, + 49.795263501 + ], + [ + 10.0567213, + 49.794745901 + ], + [ + 10.0571401, + 49.794496601 + ], + [ + 10.0584523, + 49.793757801 + ], + [ + 10.060761, + 49.792639301 + ], + [ + 10.0623783, + 49.791945901 + ], + [ + 10.062536, + 49.791878301 + ], + [ + 10.0629297, + 49.791715501 + ], + [ + 10.0636088, + 49.791452801 + ], + [ + 10.0645017, + 49.791118301 + ], + [ + 10.0647785, + 49.791017401 + ], + [ + 10.065959, + 49.790624101 + ], + [ + 10.0666195, + 49.790404001 + ], + [ + 10.0676007, + 49.790116701 + ], + [ + 10.0686144, + 49.789820701 + ], + [ + 10.0700379, + 49.789455301 + ], + [ + 10.0714918, + 49.789113201 + ], + [ + 10.0729496, + 49.788799101 + ], + [ + 10.0744264, + 49.788494401 + ], + [ + 10.0748562, + 49.788404501 + ], + [ + 10.0750797, + 49.788359301 + ], + [ + 10.0759632, + 49.788180801 + ], + [ + 10.0774687, + 49.787845901 + ], + [ + 10.0784502, + 49.787597901 + ], + [ + 10.0791098, + 49.787422401 + ], + [ + 10.0795739, + 49.787280001 + ], + [ + 10.0803247, + 49.787039201 + ], + [ + 10.0809469, + 49.786826601 + ], + [ + 10.0811973, + 49.786733101 + ], + [ + 10.0813477, + 49.786676901 + ], + [ + 10.0816733, + 49.786537701 + ], + [ + 10.0825722, + 49.786156401 + ], + [ + 10.0833316, + 49.785800201 + ], + [ + 10.0840314, + 49.785455001 + ], + [ + 10.0848012, + 49.785004701 + ], + [ + 10.0856705, + 49.784446501 + ], + [ + 10.0863356, + 49.783971601 + ], + [ + 10.0875342, + 49.783013601 + ], + [ + 10.0884546, + 49.782175001 + ], + [ + 10.0891319, + 49.781537701 + ], + [ + 10.0897333, + 49.780946901 + ], + [ + 10.0904596, + 49.780230101 + ], + [ + 10.0909998, + 49.779660601 + ], + [ + 10.0913951, + 49.779251201 + ], + [ + 10.0920607, + 49.778542601 + ], + [ + 10.0922646, + 49.778319701 + ], + [ + 10.093227, + 49.777279801 + ], + [ + 10.0937322, + 49.776733901 + ], + [ + 10.0940191, + 49.776403101 + ], + [ + 10.094112373, + 49.77629828 + ] + ] + } + }, + { + "identifier": "2023-001336--vi-bs.2024-04-09_00-00-00-000.devi-zus.2021-09-21_00-00-00-000.f_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.988287323539616,10.060753852304801,50.003440400927,10.07814927642569", + "point": "49.988287323539616,10.060753852304801", + "startLcPosition": "89", + "impact": { + "lower": "Eckartshausen", + "upper": "Schraudenbachbr\u00fccke", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Fulda", + "title": "A7 | Schraudenbachbr\u00fccke - Eckartshausen", + "startTimestamp": "2024-04-09T00:00:00+02:00", + "coordinate": { + "lat": 49.988287323539616, + "long": 10.060753852304801 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.24 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "A7: W\u00fcrzburg -> Fulda, zwischen 0.2 km hinter Schraudenbachbr\u00fccke und 1.2 km vor Eckartshausen", + "", + "L\u00e4nge: 2.3 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Br\u00fcckenneubau Stettbachbr\u00fccke Bw 639b" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.060753852, + 49.988287324 + ], + [ + 10.0617763, + 49.988567901 + ], + [ + 10.0627041, + 49.988924201 + ], + [ + 10.063954, + 49.989267401 + ], + [ + 10.0663117, + 49.989982201 + ], + [ + 10.0670868, + 49.990251201 + ], + [ + 10.0683743, + 49.990711601 + ], + [ + 10.0694793, + 49.991146201 + ], + [ + 10.0705951, + 49.991616901 + ], + [ + 10.0715205, + 49.992054901 + ], + [ + 10.0723708, + 49.992491201 + ], + [ + 10.0729635, + 49.992829201 + ], + [ + 10.0737146, + 49.993289601 + ], + [ + 10.0743288, + 49.993715501 + ], + [ + 10.0748976, + 49.994151601 + ], + [ + 10.0751522, + 49.994369001 + ], + [ + 10.0755599, + 49.994722501 + ], + [ + 10.0761339, + 49.995319101 + ], + [ + 10.0767007, + 49.995959101 + ], + [ + 10.0769573, + 49.996301901 + ], + [ + 10.0774589, + 49.997036401 + ], + [ + 10.0777457, + 49.997383901 + ], + [ + 10.077819, + 49.997520101 + ], + [ + 10.0780986, + 49.998098201 + ], + [ + 10.0781871, + 49.998334701 + ], + [ + 10.0783495, + 49.998838001 + ], + [ + 10.0784041, + 49.999049401 + ], + [ + 10.0784797, + 49.999342301 + ], + [ + 10.0785774, + 49.999888901 + ], + [ + 10.0785999, + 50.000172801 + ], + [ + 10.0786175, + 50.000373401 + ], + [ + 10.0786332, + 50.000780801 + ], + [ + 10.0786337, + 50.001201101 + ], + [ + 10.0785836, + 50.001746001 + ], + [ + 10.078568, + 50.001888601 + ], + [ + 10.078495, + 50.002301101 + ], + [ + 10.0783662, + 50.002805901 + ], + [ + 10.0782698, + 50.003101601 + ], + [ + 10.078149276, + 50.003440401 + ] + ] + } + }, + { + "identifier": "2023-001336--vi-bs.2024-04-09_00-00-00-000.devi-zus.2021-09-21_00-00-00-000.f_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.00340446982837,10.077925676137005,49.988393323130744,10.060683775856264", + "point": "50.00340446982837,10.077925676137005", + "startLcPosition": "91", + "impact": { + "lower": "Schraudenbachbr\u00fccke", + "upper": "Eckartshausen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> W\u00fcrzburg", + "title": "A7 | Eckartshausen - Schraudenbachbr\u00fccke", + "startTimestamp": "2024-04-09T00:00:00+02:00", + "coordinate": { + "lat": 50.00340446982837, + "long": 10.077925676137005 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.24 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "A7: Fulda -> W\u00fcrzburg, zwischen 1.2 km hinter Eckartshausen und 0.2 km vor Schraudenbachbr\u00fccke", + "", + "L\u00e4nge: 2.3 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Br\u00fcckenneubau Stettbachbr\u00fccke Bw 639b" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.077925676, + 50.00340447 + ], + [ + 10.0779394, + 50.003371501 + ], + [ + 10.0780651, + 50.003011501 + ], + [ + 10.0781843, + 50.002596401 + ], + [ + 10.0782456, + 50.002300301 + ], + [ + 10.0783025, + 50.002085201 + ], + [ + 10.0783515, + 50.001793901 + ], + [ + 10.0783856, + 50.001512201 + ], + [ + 10.0784036, + 50.001264101 + ], + [ + 10.0784232, + 50.001024501 + ], + [ + 10.0784244, + 50.000851301 + ], + [ + 10.0784291, + 50.000636801 + ], + [ + 10.0784176, + 50.000356301 + ], + [ + 10.0783931, + 50.000066801 + ], + [ + 10.0783665, + 49.999834201 + ], + [ + 10.0782841, + 49.999318801 + ], + [ + 10.0782171, + 49.999070001 + ], + [ + 10.078109, + 49.998668401 + ], + [ + 10.0779144, + 49.998121401 + ], + [ + 10.0777716, + 49.997799301 + ], + [ + 10.0776068, + 49.997450301 + ], + [ + 10.0774256, + 49.997123001 + ], + [ + 10.0772906, + 49.996879201 + ], + [ + 10.0771574, + 49.996674101 + ], + [ + 10.07707, + 49.996539401 + ], + [ + 10.0766481, + 49.995977101 + ], + [ + 10.0763475, + 49.995631501 + ], + [ + 10.0759838, + 49.995241901 + ], + [ + 10.0754958, + 49.994752301 + ], + [ + 10.0748565, + 49.994172801 + ], + [ + 10.0744107, + 49.993823801 + ], + [ + 10.0740579, + 49.993592201 + ], + [ + 10.0736086, + 49.993283501 + ], + [ + 10.073221, + 49.993037001 + ], + [ + 10.0724861, + 49.992612801 + ], + [ + 10.0718625, + 49.992269601 + ], + [ + 10.0711423, + 49.991915301 + ], + [ + 10.0707574, + 49.991737601 + ], + [ + 10.0704543, + 49.991604901 + ], + [ + 10.0699997, + 49.991397101 + ], + [ + 10.0692219, + 49.991076301 + ], + [ + 10.0684762, + 49.990794401 + ], + [ + 10.0675763, + 49.990464201 + ], + [ + 10.0668347, + 49.990209801 + ], + [ + 10.0660193, + 49.989940801 + ], + [ + 10.0651436, + 49.989680401 + ], + [ + 10.0647211, + 49.989555401 + ], + [ + 10.0640707, + 49.989363101 + ], + [ + 10.0626678, + 49.988967201 + ], + [ + 10.0622152, + 49.988813801 + ], + [ + 10.0613497, + 49.988576601 + ], + [ + 10.060683776, + 49.988393323 + ] + ] + } + }, + { + "identifier": "2026-017420--vi-bs.2026-04-08_08-30-00-000.devi-zus.2026-04-08_08-30-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.00165386226758,10.078368451835615,49.65032192204607,10.144679639218676", + "point": "50.00165386226758,10.078368451835615", + "startLcPosition": "91", + "impact": { + "lower": "Marktbreit", + "upper": "Eckartshausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Ulm", + "title": "A7 | Eckartshausen - Marktbreit", + "coordinate": { + "lat": 50.00165386226758, + "long": 10.078368451835615 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 15:45 Uhr", + "10.04.26 von 08:30 bis 11:30 Uhr", + "", + "A7: Fulda -> Ulm, zwischen 1.4 km hinter Eckartshausen und AS Marktbreit", + "", + "L\u00e4nge: 45.79 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 von Eckartshausen (Parkplatz) nach Marktbreit (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.078368452, + 50.001653862 + ], + [ + 10.0783856, + 50.001512201 + ], + [ + 10.0784036, + 50.001264101 + ], + [ + 10.0784232, + 50.001024501 + ], + [ + 10.0784244, + 50.000851301 + ], + [ + 10.0784291, + 50.000636801 + ], + [ + 10.0784176, + 50.000356301 + ], + [ + 10.0783931, + 50.000066801 + ], + [ + 10.0783665, + 49.999834201 + ], + [ + 10.0782841, + 49.999318801 + ], + [ + 10.0782171, + 49.999070001 + ], + [ + 10.078109, + 49.998668401 + ], + [ + 10.0779144, + 49.998121401 + ], + [ + 10.0777716, + 49.997799301 + ], + [ + 10.0776068, + 49.997450301 + ], + [ + 10.0774256, + 49.997123001 + ], + [ + 10.0772906, + 49.996879201 + ], + [ + 10.0771574, + 49.996674101 + ], + [ + 10.07707, + 49.996539401 + ], + [ + 10.0766481, + 49.995977101 + ], + [ + 10.0763475, + 49.995631501 + ], + [ + 10.0759838, + 49.995241901 + ], + [ + 10.0754958, + 49.994752301 + ], + [ + 10.0748565, + 49.994172801 + ], + [ + 10.0744107, + 49.993823801 + ], + [ + 10.0740579, + 49.993592201 + ], + [ + 10.0736086, + 49.993283501 + ], + [ + 10.073221, + 49.993037001 + ], + [ + 10.0724861, + 49.992612801 + ], + [ + 10.0718625, + 49.992269601 + ], + [ + 10.0711423, + 49.991915301 + ], + [ + 10.0707574, + 49.991737601 + ], + [ + 10.0704543, + 49.991604901 + ], + [ + 10.0699997, + 49.991397101 + ], + [ + 10.0692219, + 49.991076301 + ], + [ + 10.0684762, + 49.990794401 + ], + [ + 10.0675763, + 49.990464201 + ], + [ + 10.0668347, + 49.990209801 + ], + [ + 10.0660193, + 49.989940801 + ], + [ + 10.0651436, + 49.989680401 + ], + [ + 10.0647211, + 49.989555401 + ], + [ + 10.0640707, + 49.989363101 + ], + [ + 10.0626678, + 49.988967201 + ], + [ + 10.0622152, + 49.988813801 + ], + [ + 10.0613497, + 49.988576601 + ], + [ + 10.0598593, + 49.988166401 + ], + [ + 10.0590218, + 49.987942301 + ], + [ + 10.0583538, + 49.987755101 + ], + [ + 10.0581532, + 49.987698901 + ], + [ + 10.0567242, + 49.987280501 + ], + [ + 10.0554279, + 49.986894701 + ], + [ + 10.0551621, + 49.986804201 + ], + [ + 10.0543828, + 49.986543201 + ], + [ + 10.053419, + 49.986202101 + ], + [ + 10.0529048, + 49.986009701 + ], + [ + 10.0522285, + 49.985754801 + ], + [ + 10.0513555, + 49.985389401 + ], + [ + 10.0504756, + 49.985021701 + ], + [ + 10.0496004, + 49.984617601 + ], + [ + 10.0487197, + 49.984200701 + ], + [ + 10.0476154, + 49.983647901 + ], + [ + 10.0466618, + 49.983126201 + ], + [ + 10.0462677, + 49.982898601 + ], + [ + 10.0458388, + 49.982651001 + ], + [ + 10.0450167, + 49.982150901 + ], + [ + 10.044597, + 49.981900901 + ], + [ + 10.0435387, + 49.981177801 + ], + [ + 10.0421631, + 49.980195901 + ], + [ + 10.0407356, + 49.979034601 + ], + [ + 10.040432, + 49.978775601 + ], + [ + 10.0400293, + 49.978415301 + ], + [ + 10.039366, + 49.977803601 + ], + [ + 10.0386903, + 49.977141901 + ], + [ + 10.0380646, + 49.976505801 + ], + [ + 10.0374929, + 49.975850101 + ], + [ + 10.0369453, + 49.975209201 + ], + [ + 10.0363823, + 49.974477201 + ], + [ + 10.0358534, + 49.973762801 + ], + [ + 10.035153, + 49.972691801 + ], + [ + 10.034753, + 49.971972701 + ], + [ + 10.0344956, + 49.971509901 + ], + [ + 10.0343714, + 49.971288101 + ], + [ + 10.0342797, + 49.971116201 + ], + [ + 10.0341342, + 49.970843301 + ], + [ + 10.033909, + 49.970369501 + ], + [ + 10.0336637, + 49.969802801 + ], + [ + 10.0334872, + 49.969362601 + ], + [ + 10.0333395, + 49.969005501 + ], + [ + 10.0332777, + 49.968827201 + ], + [ + 10.0331638, + 49.968492401 + ], + [ + 10.0329698, + 49.967922501 + ], + [ + 10.032742, + 49.967145401 + ], + [ + 10.0326101, + 49.966666301 + ], + [ + 10.0323944, + 49.965811201 + ], + [ + 10.0321477, + 49.964835401 + ], + [ + 10.0319491, + 49.964045101 + ], + [ + 10.0315805, + 49.962534301 + ], + [ + 10.031199, + 49.961193601 + ], + [ + 10.0309135, + 49.959973201 + ], + [ + 10.0304394, + 49.957760801 + ], + [ + 10.0302345, + 49.956999701 + ], + [ + 10.0299804, + 49.956287501 + ], + [ + 10.029698, + 49.955640101 + ], + [ + 10.0294136, + 49.955012601 + ], + [ + 10.0290673, + 49.954338501 + ], + [ + 10.0287001, + 49.953694801 + ], + [ + 10.0280088, + 49.952615701 + ], + [ + 10.0271026, + 49.951426701 + ], + [ + 10.0267764, + 49.951036901 + ], + [ + 10.026398, + 49.950584801 + ], + [ + 10.0257019, + 49.949841801 + ], + [ + 10.0250311, + 49.949181701 + ], + [ + 10.0248358, + 49.949003301 + ], + [ + 10.0246602, + 49.948838701 + ], + [ + 10.02387, + 49.948158101 + ], + [ + 10.023506, + 49.947855101 + ], + [ + 10.0233224, + 49.947702301 + ], + [ + 10.0229325, + 49.947388801 + ], + [ + 10.0222663, + 49.946907901 + ], + [ + 10.0220583, + 49.946759501 + ], + [ + 10.021854, + 49.946613701 + ], + [ + 10.0213351, + 49.946268901 + ], + [ + 10.0206218, + 49.945815101 + ], + [ + 10.0198971, + 49.945385301 + ], + [ + 10.0191649, + 49.944951901 + ], + [ + 10.0183554, + 49.944516401 + ], + [ + 10.0175693, + 49.944107301 + ], + [ + 10.016895, + 49.943764301 + ], + [ + 10.0164362, + 49.943530901 + ], + [ + 10.0156737, + 49.943158601 + ], + [ + 10.0149135, + 49.942792001 + ], + [ + 10.0138617, + 49.942290701 + ], + [ + 10.0132228, + 49.941990101 + ], + [ + 10.0116343, + 49.941223601 + ], + [ + 10.0113527, + 49.941084701 + ], + [ + 10.0112152, + 49.941016901 + ], + [ + 10.0107093, + 49.940751501 + ], + [ + 10.0103506, + 49.940562601 + ], + [ + 10.0097302, + 49.940222801 + ], + [ + 10.0088154, + 49.939700701 + ], + [ + 10.007901, + 49.939122501 + ], + [ + 10.0070395, + 49.938545901 + ], + [ + 10.0064269, + 49.938105701 + ], + [ + 10.0063236, + 49.938027101 + ], + [ + 10.0058482, + 49.937665701 + ], + [ + 10.0052675, + 49.937210101 + ], + [ + 10.0047325, + 49.936762501 + ], + [ + 10.0040837, + 49.936194001 + ], + [ + 10.0033649, + 49.935510201 + ], + [ + 10.0029288, + 49.935063601 + ], + [ + 10.002437, + 49.934533201 + ], + [ + 10.0021876, + 49.934250201 + ], + [ + 10.0021267, + 49.934181201 + ], + [ + 10.0015712, + 49.933508701 + ], + [ + 10.0011125, + 49.932910401 + ], + [ + 10.0007894, + 49.932465501 + ], + [ + 10.0005182, + 49.932056401 + ], + [ + 9.9999282, + 49.931138101 + ], + [ + 9.9994246, + 49.930237101 + ], + [ + 9.9993816, + 49.930153701 + ], + [ + 9.9991627, + 49.929728501 + ], + [ + 9.9988037, + 49.928951401 + ], + [ + 9.9985793, + 49.928433001 + ], + [ + 9.9982298, + 49.927508601 + ], + [ + 9.998065, + 49.927041301 + ], + [ + 9.9977976, + 49.926161301 + ], + [ + 9.9977164, + 49.925868001 + ], + [ + 9.9975472, + 49.925256401 + ], + [ + 9.9972809, + 49.924042701 + ], + [ + 9.9970447, + 49.922678301 + ], + [ + 9.9969064, + 49.921518701 + ], + [ + 9.9968922, + 49.921359901 + ], + [ + 9.9968526, + 49.920918301 + ], + [ + 9.9968127, + 49.920341101 + ], + [ + 9.9967786, + 49.918967101 + ], + [ + 9.9968066, + 49.917656201 + ], + [ + 9.9968579, + 49.916902801 + ], + [ + 9.9968683, + 49.916750101 + ], + [ + 9.9969474, + 49.915921401 + ], + [ + 9.9971232, + 49.914715701 + ], + [ + 9.9972479, + 49.914031501 + ], + [ + 9.9973663, + 49.913403801 + ], + [ + 9.9974722, + 49.912904301 + ], + [ + 9.9975792, + 49.912481301 + ], + [ + 9.9976551, + 49.912181401 + ], + [ + 9.99791, + 49.911264301 + ], + [ + 9.9980364, + 49.910833801 + ], + [ + 9.9982208, + 49.910250501 + ], + [ + 9.9983794, + 49.909768501 + ], + [ + 9.9984966, + 49.909437401 + ], + [ + 9.9985943, + 49.909163301 + ], + [ + 9.9990139, + 49.907993401 + ], + [ + 9.9993232, + 49.907130701 + ], + [ + 10.0001886, + 49.904605601 + ], + [ + 10.0004694, + 49.903625801 + ], + [ + 10.0005557, + 49.903324501 + ], + [ + 10.0007821, + 49.902423001 + ], + [ + 10.0009845, + 49.901521601 + ], + [ + 10.0011283, + 49.900611501 + ], + [ + 10.0011669, + 49.900277201 + ], + [ + 10.0012603, + 49.899536801 + ], + [ + 10.001282, + 49.899207801 + ], + [ + 10.0013177, + 49.898666801 + ], + [ + 10.0013381, + 49.897789301 + ], + [ + 10.001322, + 49.896687401 + ], + [ + 10.0012845, + 49.896117401 + ], + [ + 10.0012336, + 49.895581301 + ], + [ + 10.0011795, + 49.895097901 + ], + [ + 10.0011041, + 49.894569001 + ], + [ + 10.0008997, + 49.893505501 + ], + [ + 10.00073, + 49.892705001 + ], + [ + 10.000485, + 49.891815401 + ], + [ + 10.0002159, + 49.890958801 + ], + [ + 9.9998752, + 49.890046701 + ], + [ + 9.9993453, + 49.888794001 + ], + [ + 9.9990317, + 49.888141301 + ], + [ + 9.9987113, + 49.887483101 + ], + [ + 9.9978672, + 49.885962701 + ], + [ + 9.9969906, + 49.884426901 + ], + [ + 9.9964102, + 49.883433601 + ], + [ + 9.9958367, + 49.882469001 + ], + [ + 9.9954196, + 49.881735201 + ], + [ + 9.9949736, + 49.880950601 + ], + [ + 9.9944487, + 49.879982801 + ], + [ + 9.9942468, + 49.879576501 + ], + [ + 9.9938338, + 49.878667301 + ], + [ + 9.9935578, + 49.878031501 + ], + [ + 9.9934701, + 49.877829601 + ], + [ + 9.99335, + 49.877515501 + ], + [ + 9.9931381, + 49.876961201 + ], + [ + 9.9928768, + 49.876127201 + ], + [ + 9.9926441, + 49.875353701 + ], + [ + 9.9924592, + 49.874592101 + ], + [ + 9.9923728, + 49.874206101 + ], + [ + 9.9922614, + 49.873708101 + ], + [ + 9.9921599, + 49.873122801 + ], + [ + 9.9921128, + 49.872850901 + ], + [ + 9.9920457, + 49.872246201 + ], + [ + 9.9919512, + 49.871582001 + ], + [ + 9.9919274, + 49.870611701 + ], + [ + 9.9918877, + 49.869721401 + ], + [ + 9.9918746, + 49.869006201 + ], + [ + 9.9919189, + 49.868534601 + ], + [ + 9.9919499, + 49.868204301 + ], + [ + 9.99202, + 49.867477501 + ], + [ + 9.9920795, + 49.867007101 + ], + [ + 9.9921499, + 49.866451001 + ], + [ + 9.992271, + 49.865836601 + ], + [ + 9.992431, + 49.865099501 + ], + [ + 9.9926192, + 49.864322401 + ], + [ + 9.9926804, + 49.864124101 + ], + [ + 9.9928919, + 49.863438301 + ], + [ + 9.9932016, + 49.862551201 + ], + [ + 9.9936488, + 49.861445601 + ], + [ + 9.9940871, + 49.860449501 + ], + [ + 9.9943677, + 49.859854401 + ], + [ + 9.9946866, + 49.859239101 + ], + [ + 9.9950521, + 49.858600001 + ], + [ + 9.9953081, + 49.858209901 + ], + [ + 9.9958362, + 49.857422401 + ], + [ + 9.9967066, + 49.856194801 + ], + [ + 9.996816, + 49.856040501 + ], + [ + 9.9968534, + 49.855987701 + ], + [ + 9.9979156, + 49.854655901 + ], + [ + 9.9986336, + 49.853849101 + ], + [ + 9.998835, + 49.853622901 + ], + [ + 9.9999235, + 49.852548901 + ], + [ + 10.0001703, + 49.852348401 + ], + [ + 10.000402, + 49.852160001 + ], + [ + 10.0010039, + 49.851666201 + ], + [ + 10.0016643, + 49.851158501 + ], + [ + 10.0019493, + 49.850956101 + ], + [ + 10.0022572, + 49.850737301 + ], + [ + 10.0025651, + 49.850533201 + ], + [ + 10.0034294, + 49.849980301 + ], + [ + 10.005205, + 49.848985601 + ], + [ + 10.005783, + 49.848696801 + ], + [ + 10.0068181, + 49.848209901 + ], + [ + 10.0076883, + 49.847841901 + ], + [ + 10.0089075, + 49.847354201 + ], + [ + 10.0100975, + 49.846903301 + ], + [ + 10.0106696, + 49.846695901 + ], + [ + 10.0117533, + 49.846308601 + ], + [ + 10.0136455, + 49.845632401 + ], + [ + 10.0145422, + 49.845306001 + ], + [ + 10.0157459, + 49.844864701 + ], + [ + 10.016891, + 49.844431401 + ], + [ + 10.0178296, + 49.844077801 + ], + [ + 10.0186403, + 49.843760301 + ], + [ + 10.0190949, + 49.843577801 + ], + [ + 10.0195525, + 49.843392201 + ], + [ + 10.0204685, + 49.843000701 + ], + [ + 10.0224385, + 49.842127701 + ], + [ + 10.023592, + 49.841581801 + ], + [ + 10.0240476, + 49.841362201 + ], + [ + 10.0245326, + 49.841115501 + ], + [ + 10.0251505, + 49.840816101 + ], + [ + 10.0260653, + 49.840336801 + ], + [ + 10.0270415, + 49.839806001 + ], + [ + 10.0283115, + 49.839091501 + ], + [ + 10.0289492, + 49.838709001 + ], + [ + 10.0291231, + 49.838604601 + ], + [ + 10.0314777, + 49.837150601 + ], + [ + 10.0333291, + 49.835873101 + ], + [ + 10.0338618, + 49.835492801 + ], + [ + 10.0340389, + 49.835366401 + ], + [ + 10.0343825, + 49.835113801 + ], + [ + 10.034812, + 49.834798101 + ], + [ + 10.036329, + 49.833602101 + ], + [ + 10.0372933, + 49.832758901 + ], + [ + 10.0380721, + 49.832028101 + ], + [ + 10.0382689, + 49.831843401 + ], + [ + 10.0387036, + 49.831400701 + ], + [ + 10.0394131, + 49.830637401 + ], + [ + 10.0404283, + 49.829347601 + ], + [ + 10.0408418, + 49.828747201 + ], + [ + 10.041285, + 49.828025401 + ], + [ + 10.0413613, + 49.827901201 + ], + [ + 10.041728, + 49.827264801 + ], + [ + 10.0420407, + 49.826644901 + ], + [ + 10.042431, + 49.825733901 + ], + [ + 10.042642, + 49.825190201 + ], + [ + 10.0428614, + 49.824467001 + ], + [ + 10.0429197, + 49.824247801 + ], + [ + 10.0430459, + 49.823702101 + ], + [ + 10.043097, + 49.823481301 + ], + [ + 10.043246, + 49.822653301 + ], + [ + 10.043345, + 49.821868301 + ], + [ + 10.0433898, + 49.821228001 + ], + [ + 10.0433844, + 49.820070601 + ], + [ + 10.0433305, + 49.819093301 + ], + [ + 10.0432597, + 49.818444701 + ], + [ + 10.0431514, + 49.817069201 + ], + [ + 10.0430707, + 49.816045201 + ], + [ + 10.0430499, + 49.815428501 + ], + [ + 10.0430348, + 49.814982701 + ], + [ + 10.0430425, + 49.814420501 + ], + [ + 10.0430512, + 49.813959601 + ], + [ + 10.0430918, + 49.813390101 + ], + [ + 10.043153, + 49.812869901 + ], + [ + 10.0431674, + 49.812721401 + ], + [ + 10.0433134, + 49.811764501 + ], + [ + 10.0433777, + 49.811427701 + ], + [ + 10.0434482, + 49.811034801 + ], + [ + 10.0435164, + 49.810744201 + ], + [ + 10.0436297, + 49.810261001 + ], + [ + 10.043867, + 49.809454401 + ], + [ + 10.0439421, + 49.809221901 + ], + [ + 10.0441105, + 49.808701101 + ], + [ + 10.0445544, + 49.807524001 + ], + [ + 10.0450351, + 49.806462001 + ], + [ + 10.0451813, + 49.806178501 + ], + [ + 10.0453399, + 49.805900901 + ], + [ + 10.0458574, + 49.804994801 + ], + [ + 10.0461173, + 49.804590201 + ], + [ + 10.0466997, + 49.803693301 + ], + [ + 10.0473698, + 49.802789001 + ], + [ + 10.0478017, + 49.802222201 + ], + [ + 10.0481706, + 49.801765201 + ], + [ + 10.0483052, + 49.801611901 + ], + [ + 10.0484949, + 49.801392301 + ], + [ + 10.0492714, + 49.800554401 + ], + [ + 10.0498462, + 49.799970801 + ], + [ + 10.0501246, + 49.799696701 + ], + [ + 10.0505771, + 49.799251201 + ], + [ + 10.0507253, + 49.799114101 + ], + [ + 10.0513999, + 49.798512401 + ], + [ + 10.0520518, + 49.797982301 + ], + [ + 10.0524589, + 49.797651301 + ], + [ + 10.0534437, + 49.796907301 + ], + [ + 10.0546219, + 49.796075601 + ], + [ + 10.0558518, + 49.795263501 + ], + [ + 10.0567213, + 49.794745901 + ], + [ + 10.0571401, + 49.794496601 + ], + [ + 10.0584523, + 49.793757801 + ], + [ + 10.060761, + 49.792639301 + ], + [ + 10.0623783, + 49.791945901 + ], + [ + 10.062536, + 49.791878301 + ], + [ + 10.0629297, + 49.791715501 + ], + [ + 10.0636088, + 49.791452801 + ], + [ + 10.0645017, + 49.791118301 + ], + [ + 10.0647785, + 49.791017401 + ], + [ + 10.065959, + 49.790624101 + ], + [ + 10.0666195, + 49.790404001 + ], + [ + 10.0676007, + 49.790116701 + ], + [ + 10.0686144, + 49.789820701 + ], + [ + 10.0700379, + 49.789455301 + ], + [ + 10.0714918, + 49.789113201 + ], + [ + 10.0729496, + 49.788799101 + ], + [ + 10.0744264, + 49.788494401 + ], + [ + 10.0748562, + 49.788404501 + ], + [ + 10.0750797, + 49.788359301 + ], + [ + 10.0759632, + 49.788180801 + ], + [ + 10.0774687, + 49.787845901 + ], + [ + 10.0784502, + 49.787597901 + ], + [ + 10.0791098, + 49.787422401 + ], + [ + 10.0795739, + 49.787280001 + ], + [ + 10.0803247, + 49.787039201 + ], + [ + 10.0809469, + 49.786826601 + ], + [ + 10.0811973, + 49.786733101 + ], + [ + 10.0813477, + 49.786676901 + ], + [ + 10.0816733, + 49.786537701 + ], + [ + 10.0825722, + 49.786156401 + ], + [ + 10.0833316, + 49.785800201 + ], + [ + 10.0840314, + 49.785455001 + ], + [ + 10.0848012, + 49.785004701 + ], + [ + 10.0856705, + 49.784446501 + ], + [ + 10.0863356, + 49.783971601 + ], + [ + 10.0875342, + 49.783013601 + ], + [ + 10.0884546, + 49.782175001 + ], + [ + 10.0891319, + 49.781537701 + ], + [ + 10.0897333, + 49.780946901 + ], + [ + 10.0904596, + 49.780230101 + ], + [ + 10.0909998, + 49.779660601 + ], + [ + 10.0913951, + 49.779251201 + ], + [ + 10.0920607, + 49.778542601 + ], + [ + 10.0922646, + 49.778319701 + ], + [ + 10.093227, + 49.777279801 + ], + [ + 10.0937322, + 49.776733901 + ], + [ + 10.0940191, + 49.776403101 + ], + [ + 10.0944528, + 49.775915701 + ], + [ + 10.0946479, + 49.775691301 + ], + [ + 10.0947948, + 49.775524201 + ], + [ + 10.0954046, + 49.774821601 + ], + [ + 10.096181, + 49.773927101 + ], + [ + 10.0967431, + 49.773282101 + ], + [ + 10.0970112, + 49.772958101 + ], + [ + 10.0979239, + 49.771855301 + ], + [ + 10.0985178, + 49.771112201 + ], + [ + 10.0991076, + 49.770351901 + ], + [ + 10.099695, + 49.769585201 + ], + [ + 10.1002522, + 49.768836601 + ], + [ + 10.1005661, + 49.768395001 + ], + [ + 10.1009018, + 49.767922701 + ], + [ + 10.1015392, + 49.766989101 + ], + [ + 10.1021407, + 49.766070401 + ], + [ + 10.102717, + 49.765125001 + ], + [ + 10.1032564, + 49.764187101 + ], + [ + 10.1033365, + 49.764041601 + ], + [ + 10.1036058, + 49.763558201 + ], + [ + 10.1039003, + 49.762997101 + ], + [ + 10.1042786, + 49.762221401 + ], + [ + 10.1050934, + 49.760346401 + ], + [ + 10.1051994, + 49.760089901 + ], + [ + 10.105268, + 49.759900401 + ], + [ + 10.1058551, + 49.758333301 + ], + [ + 10.1058957, + 49.758199801 + ], + [ + 10.1061592, + 49.757330901 + ], + [ + 10.1064307, + 49.756347101 + ], + [ + 10.1067805, + 49.754814001 + ], + [ + 10.1070418, + 49.753386201 + ], + [ + 10.1070942, + 49.753018501 + ], + [ + 10.1073052, + 49.751218401 + ], + [ + 10.1073802, + 49.750245901 + ], + [ + 10.1073796, + 49.748695001 + ], + [ + 10.1073344, + 49.747165101 + ], + [ + 10.1073127, + 49.746846601 + ], + [ + 10.1072606, + 49.746320501 + ], + [ + 10.1071964, + 49.745603201 + ], + [ + 10.1071193, + 49.744978401 + ], + [ + 10.1070212, + 49.744202501 + ], + [ + 10.1068655, + 49.743147601 + ], + [ + 10.1067055, + 49.742270501 + ], + [ + 10.1065324, + 49.741364001 + ], + [ + 10.1059139, + 49.738574901 + ], + [ + 10.1055533, + 49.737142601 + ], + [ + 10.1053248, + 49.736250401 + ], + [ + 10.1051947, + 49.735761001 + ], + [ + 10.1050928, + 49.735374401 + ], + [ + 10.1048992, + 49.734613701 + ], + [ + 10.104518, + 49.733142001 + ], + [ + 10.1039595, + 49.730981201 + ], + [ + 10.1033482, + 49.728360301 + ], + [ + 10.1028236, + 49.725619101 + ], + [ + 10.1026745, + 49.724495401 + ], + [ + 10.1024817, + 49.723042101 + ], + [ + 10.102309, + 49.720341501 + ], + [ + 10.1023423, + 49.717904301 + ], + [ + 10.1024287, + 49.716601401 + ], + [ + 10.1025655, + 49.715249001 + ], + [ + 10.1027548, + 49.713977201 + ], + [ + 10.1029491, + 49.712831901 + ], + [ + 10.103501, + 49.710427901 + ], + [ + 10.1039547, + 49.708828201 + ], + [ + 10.1045751, + 49.706969901 + ], + [ + 10.1047227, + 49.706603601 + ], + [ + 10.1053396, + 49.705073101 + ], + [ + 10.1056704, + 49.704283601 + ], + [ + 10.1061677, + 49.703195401 + ], + [ + 10.1070281, + 49.701425701 + ], + [ + 10.1077216, + 49.700121101 + ], + [ + 10.1081201, + 49.699403501 + ], + [ + 10.1089249, + 49.698061601 + ], + [ + 10.109109, + 49.697754601 + ], + [ + 10.109836, + 49.696642701 + ], + [ + 10.1106539, + 49.695465601 + ], + [ + 10.1110371, + 49.694938901 + ], + [ + 10.1124161, + 49.693136101 + ], + [ + 10.1134647, + 49.691872801 + ], + [ + 10.1148727, + 49.690266801 + ], + [ + 10.1153896, + 49.689644001 + ], + [ + 10.1173285, + 49.687465501 + ], + [ + 10.1186783, + 49.685912201 + ], + [ + 10.1198518, + 49.684513801 + ], + [ + 10.1202685, + 49.683988201 + ], + [ + 10.1211043, + 49.682933901 + ], + [ + 10.1216896, + 49.682126701 + ], + [ + 10.122204, + 49.681404701 + ], + [ + 10.1226883, + 49.680666201 + ], + [ + 10.1231513, + 49.679960201 + ], + [ + 10.1241005, + 49.678339201 + ], + [ + 10.1251378, + 49.676325701 + ], + [ + 10.1255108, + 49.675545501 + ], + [ + 10.1256885, + 49.675147201 + ], + [ + 10.1258707, + 49.674695501 + ], + [ + 10.1261253, + 49.674072801 + ], + [ + 10.1263182, + 49.673533101 + ], + [ + 10.1265357, + 49.672908401 + ], + [ + 10.129362, + 49.664849701 + ], + [ + 10.1294018, + 49.664729001 + ], + [ + 10.1295476, + 49.664328501 + ], + [ + 10.1299022, + 49.663280901 + ], + [ + 10.1300409, + 49.662872701 + ], + [ + 10.1302169, + 49.662445301 + ], + [ + 10.130434, + 49.661878201 + ], + [ + 10.1306739, + 49.661332801 + ], + [ + 10.1308754, + 49.660898701 + ], + [ + 10.1311656, + 49.660347101 + ], + [ + 10.1315848, + 49.659655101 + ], + [ + 10.1322467, + 49.658653801 + ], + [ + 10.1325007, + 49.658320501 + ], + [ + 10.1330027, + 49.657721601 + ], + [ + 10.133543, + 49.657132301 + ], + [ + 10.1344556, + 49.656206001 + ], + [ + 10.1354644, + 49.655286501 + ], + [ + 10.1359441, + 49.654893901 + ], + [ + 10.1364431, + 49.654511501 + ], + [ + 10.1369607, + 49.654139701 + ], + [ + 10.1374965, + 49.653778801 + ], + [ + 10.1380499, + 49.653429101 + ], + [ + 10.1389163, + 49.652949401 + ], + [ + 10.1393087, + 49.652743601 + ], + [ + 10.1400095, + 49.652370601 + ], + [ + 10.140794, + 49.651970801 + ], + [ + 10.1414853, + 49.651651701 + ], + [ + 10.1420949, + 49.651377101 + ], + [ + 10.1427088, + 49.651112201 + ], + [ + 10.1437738, + 49.650665301 + ], + [ + 10.1439871, + 49.650576301 + ], + [ + 10.1441498, + 49.650515401 + ], + [ + 10.144679639, + 49.650321922 + ] + ] + } + }, + { + "identifier": "2025-027895--vi-bs.2024-01-18_00-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.141777920263046,9.949758498580747,50.1460414645774,9.95131248120921", + "point": "50.141777920263046,9.949758498580747", + "startLcPosition": "99", + "impact": { + "lower": "Saalebr\u00fccke", + "upper": "Hammelburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Fulda", + "title": "A7 | Hammelburg - Saalebr\u00fccke", + "coordinate": { + "lat": 50.141777920263046, + "long": 9.949758498580747 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "01.01.26 00:00 Uhr bis zum 31.12.26 24:00 Uhr.", + "", + "A7: W\u00fcrzburg -> Fulda, zwischen 2.1 km hinter AS Hammelburg und 0.2 km vor Saalebr\u00fccke", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A7 Akute Verkehrsgef\u00e4hrdung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.949758499, + 50.14177792 + ], + [ + 9.94975, + 50.141826601 + ], + [ + 9.9497244, + 50.142100801 + ], + [ + 9.9497091, + 50.142466201 + ], + [ + 9.9497116, + 50.142885601 + ], + [ + 9.949753, + 50.143158201 + ], + [ + 9.9498278, + 50.143609901 + ], + [ + 9.9499831, + 50.144054801 + ], + [ + 9.9501823, + 50.144492301 + ], + [ + 9.9504247, + 50.144920901 + ], + [ + 9.9507092, + 50.145338601 + ], + [ + 9.9510347, + 50.145743901 + ], + [ + 9.951312481, + 50.146041465 + ] + ] + } + }, + { + "identifier": "2023-001187--vi-bs.2023-10-28_00-00-00-000.devi-zus.2023-10-28_00-00-00-000.f_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.1861206373944,9.947746069382154,50.19410009974478,9.941244293637123", + "point": "50.1861206373944,9.947746069382154", + "startLcPosition": "101", + "impact": { + "lower": "Bad Kissingen/Oberthulba", + "upper": "Elfershausen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Fulda", + "title": "A7 | Elfershausen - Bad Kissingen/Oberthulba", + "startTimestamp": "2023-10-28T00:00:00+02:00", + "coordinate": { + "lat": 50.1861206373944, + "long": 9.947746069382154 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.10.23 um 00:00 Uhr", + "Ende: 31.12.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A7: W\u00fcrzburg -> Fulda, zwischen 3.9 km hinter Elfershausen und 0.5 km vor AS Bad Kissingen/Oberthulba", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A7 Br\u00fcckenneubau Thulbabr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.947746069, + 50.186120637 + ], + [ + 9.947376, + 50.186459901 + ], + [ + 9.9463257, + 50.187497101 + ], + [ + 9.9460703, + 50.187763401 + ], + [ + 9.9452832, + 50.188584001 + ], + [ + 9.944554, + 50.189413101 + ], + [ + 9.9440577, + 50.189932601 + ], + [ + 9.9434072, + 50.190766701 + ], + [ + 9.9429454, + 50.191394201 + ], + [ + 9.9425148, + 50.191995701 + ], + [ + 9.94196, + 50.192842701 + ], + [ + 9.9414397, + 50.193737501 + ], + [ + 9.941244294, + 50.1941001 + ] + ] + } + }, + { + "identifier": "2023-001187--vi-bs.2023-10-28_00-00-00-000.devi-zus.2023-10-28_00-00-00-000.f_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.19405903255311,9.941060386543874,50.18604287888571,9.947572154122991", + "point": "50.19405903255311,9.941060386543874", + "startLcPosition": "102", + "impact": { + "lower": "Elfershausen", + "upper": "Bad Kissingen/Oberthulba", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> W\u00fcrzburg", + "title": "A7 | Bad Kissingen/Oberthulba - Elfershausen", + "startTimestamp": "2023-10-28T00:00:00+02:00", + "coordinate": { + "lat": 50.19405903255311, + "long": 9.941060386543874 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.10.23 um 00:00 Uhr", + "Ende: 31.12.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A7: Fulda -> W\u00fcrzburg, zwischen 0.5 km hinter AS Bad Kissingen/Oberthulba und 3.9 km vor Elfershausen", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A7 Br\u00fcckenneubau Thulbabr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.941060387, + 50.194059033 + ], + [ + 9.9412638, + 50.193685401 + ], + [ + 9.9417656, + 50.192793501 + ], + [ + 9.9423172, + 50.191948401 + ], + [ + 9.942747, + 50.191346001 + ], + [ + 9.9432088, + 50.190716601 + ], + [ + 9.9438613, + 50.189876701 + ], + [ + 9.9451658, + 50.188444601 + ], + [ + 9.9461541, + 50.187430101 + ], + [ + 9.947208, + 50.186381401 + ], + [ + 9.947572154, + 50.186042879 + ] + ] + } + }, + { + "identifier": "2023-001180--vi-bs.2025-03-02_00-00-00-000.devi-zus.2023-03-23_00-00-00-000.f_001.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.31943286604209,9.838007135033546,50.323688010296415,9.813926434050055", + "point": "50.31943286604209,9.838007135033546", + "startLcPosition": "111", + "impact": { + "lower": "Rehhecke", + "upper": "Riedenberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Fulda", + "title": "A7 | Riedenberg - Rehhecke", + "startTimestamp": "2025-03-02T00:00:00+01:00", + "coordinate": { + "lat": 50.31943286604209, + "long": 9.838007135033546 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.25 um 00:00 Uhr", + "Ende: 15.04.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.04.28)", + "", + "A7: W\u00fcrzburg -> Fulda, zwischen 1.4 km hinter Riedenberg und 2.3 km vor Rehhecke", + "", + "L\u00e4nge: 1.8 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 Br\u00fcckenneubau TB R\u00f6mershag" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.838007135, + 50.319432866 + ], + [ + 9.8376753, + 50.319532001 + ], + [ + 9.836883, + 50.319743701 + ], + [ + 9.8362256, + 50.319897701 + ], + [ + 9.8356909, + 50.320011401 + ], + [ + 9.8347558, + 50.320186601 + ], + [ + 9.8332148, + 50.320437701 + ], + [ + 9.8317813, + 50.320684401 + ], + [ + 9.8307638, + 50.320869501 + ], + [ + 9.8300589, + 50.321021301 + ], + [ + 9.8293838, + 50.321182201 + ], + [ + 9.8285917, + 50.321393401 + ], + [ + 9.8279063, + 50.321586701 + ], + [ + 9.827104, + 50.321845901 + ], + [ + 9.8262772, + 50.322119201 + ], + [ + 9.825313, + 50.322447401 + ], + [ + 9.824697, + 50.322650201 + ], + [ + 9.8239969, + 50.322859201 + ], + [ + 9.8235017, + 50.322998501 + ], + [ + 9.8229782, + 50.323128701 + ], + [ + 9.8223071, + 50.323277801 + ], + [ + 9.8217174, + 50.323396301 + ], + [ + 9.8209477, + 50.323521501 + ], + [ + 9.8202038, + 50.323628001 + ], + [ + 9.8194395, + 50.323721901 + ], + [ + 9.8187583, + 50.323783701 + ], + [ + 9.8181811, + 50.323818101 + ], + [ + 9.8176835, + 50.323835601 + ], + [ + 9.8174545, + 50.323841701 + ], + [ + 9.8168768, + 50.323845401 + ], + [ + 9.8163017, + 50.323839001 + ], + [ + 9.8157217, + 50.323821701 + ], + [ + 9.8151147, + 50.323789501 + ], + [ + 9.8144167, + 50.323732601 + ], + [ + 9.813926434, + 50.32368801 + ] + ] + } + }, + { + "identifier": "2023-001180--vi-bs.2025-03-02_00-00-00-000.devi-zus.2023-03-23_00-00-00-000.f_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.323688010296415,9.813926434050055,50.333697850769894,9.774848061402043", + "point": "50.323688010296415,9.813926434050055", + "startLcPosition": "111", + "impact": { + "lower": "Bad Br\u00fcckenau-Volkers", + "upper": "Riedenberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Fulda", + "title": "A7 | Riedenberg - Bad Br\u00fcckenau-Volkers", + "startTimestamp": "2025-03-02T00:00:00+01:00", + "coordinate": { + "lat": 50.323688010296415, + "long": 9.813926434050055 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.25 um 00:00 Uhr", + "Ende: 15.04.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.04.28)", + "", + "A7: W\u00fcrzburg -> Fulda, zwischen 3.2 km hinter Riedenberg und 0.3 km vor AS Bad Br\u00fcckenau-Volkers", + "", + "L\u00e4nge: 3.27 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 Br\u00fcckenneubau TB R\u00f6mershag" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.813926434, + 50.32368801 + ], + [ + 9.8135965, + 50.323658001 + ], + [ + 9.8128149, + 50.323576101 + ], + [ + 9.810176, + 50.323255201 + ], + [ + 9.8094319, + 50.323170801 + ], + [ + 9.8086664, + 50.323089401 + ], + [ + 9.8077781, + 50.323003101 + ], + [ + 9.8068067, + 50.322919701 + ], + [ + 9.8057279, + 50.322859401 + ], + [ + 9.804828, + 50.322823601 + ], + [ + 9.8039972, + 50.322799701 + ], + [ + 9.8031602, + 50.322793601 + ], + [ + 9.8022194, + 50.322799001 + ], + [ + 9.8012668, + 50.322821701 + ], + [ + 9.8004059, + 50.322851301 + ], + [ + 9.7995592, + 50.322901201 + ], + [ + 9.7987853, + 50.322957801 + ], + [ + 9.7981175, + 50.323016101 + ], + [ + 9.7973867, + 50.323088301 + ], + [ + 9.796441, + 50.323195601 + ], + [ + 9.795509, + 50.323311901 + ], + [ + 9.7947479, + 50.323428201 + ], + [ + 9.794001, + 50.323548101 + ], + [ + 9.7929473, + 50.323741901 + ], + [ + 9.7918487, + 50.323971001 + ], + [ + 9.7908044, + 50.324218301 + ], + [ + 9.7899138, + 50.324456001 + ], + [ + 9.7889984, + 50.324719801 + ], + [ + 9.7876244, + 50.325163601 + ], + [ + 9.786774, + 50.325471701 + ], + [ + 9.7859154, + 50.325809701 + ], + [ + 9.7849357, + 50.326230601 + ], + [ + 9.7844328, + 50.326460201 + ], + [ + 9.7828033, + 50.327281801 + ], + [ + 9.7820346, + 50.327715701 + ], + [ + 9.7814421, + 50.328080401 + ], + [ + 9.7808826, + 50.328434501 + ], + [ + 9.7798347, + 50.329150601 + ], + [ + 9.779286, + 50.329554501 + ], + [ + 9.7787924, + 50.329929801 + ], + [ + 9.7782656, + 50.330344401 + ], + [ + 9.7776007, + 50.330905901 + ], + [ + 9.7769496, + 50.331476201 + ], + [ + 9.7762709, + 50.332161501 + ], + [ + 9.775883, + 50.332550601 + ], + [ + 9.7755378, + 50.332923801 + ], + [ + 9.7751626, + 50.333337401 + ], + [ + 9.774848061, + 50.333697851 + ] + ] + } + }, + { + "identifier": "2023-001180--vi-bs.2025-03-02_00-00-00-000.devi-zus.2023-03-23_00-00-00-000.f_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.323564249155524,9.813955984387858,50.31932898779894,9.837932276697483", + "point": "50.323564249155524,9.813955984387858", + "startLcPosition": "112", + "impact": { + "lower": "Riedenberg", + "upper": "Rehhecke", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> W\u00fcrzburg", + "title": "A7 | Rehhecke - Riedenberg", + "startTimestamp": "2025-03-02T00:00:00+01:00", + "coordinate": { + "lat": 50.323564249155524, + "long": 9.813955984387858 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.25 um 00:00 Uhr", + "Ende: 15.04.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.04.28)", + "", + "A7: Fulda -> W\u00fcrzburg, zwischen 2.3 km hinter Rehhecke und 1.3 km vor Riedenberg", + "", + "L\u00e4nge: 1.8 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 Br\u00fcckenneubau TB R\u00f6mershag" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.813955984, + 50.323564249 + ], + [ + 9.8144785, + 50.323618501 + ], + [ + 9.8151435, + 50.323673901 + ], + [ + 9.8157324, + 50.323704501 + ], + [ + 9.8162919, + 50.323723601 + ], + [ + 9.8168969, + 50.323731101 + ], + [ + 9.8174546, + 50.323723301 + ], + [ + 9.8176667, + 50.323716901 + ], + [ + 9.8181753, + 50.323697301 + ], + [ + 9.8187391, + 50.323660901 + ], + [ + 9.8194103, + 50.323601701 + ], + [ + 9.8201709, + 50.323510801 + ], + [ + 9.8209013, + 50.323404901 + ], + [ + 9.821666, + 50.323278501 + ], + [ + 9.8222638, + 50.323165101 + ], + [ + 9.8229142, + 50.323020501 + ], + [ + 9.8234276, + 50.322889601 + ], + [ + 9.8239416, + 50.322746601 + ], + [ + 9.8246138, + 50.322540901 + ], + [ + 9.8252196, + 50.322344201 + ], + [ + 9.8262111, + 50.322011501 + ], + [ + 9.8270282, + 50.321738201 + ], + [ + 9.8278501, + 50.321478901 + ], + [ + 9.828519, + 50.321283701 + ], + [ + 9.8293055, + 50.321072801 + ], + [ + 9.8299953, + 50.320912001 + ], + [ + 9.8307165, + 50.320760901 + ], + [ + 9.8320648, + 50.320525301 + ], + [ + 9.8339058, + 50.320221801 + ], + [ + 9.8348206, + 50.320068201 + ], + [ + 9.8357789, + 50.319879601 + ], + [ + 9.8364853, + 50.319721101 + ], + [ + 9.8372524, + 50.319527701 + ], + [ + 9.837932277, + 50.319328988 + ] + ] + } + }, + { + "identifier": "2023-001180--vi-bs.2025-03-02_00-00-00-000.devi-zus.2023-03-23_00-00-00-000.f_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.33364173621078,9.774690857539037,50.323564249155524,9.813955984387858", + "point": "50.33364173621078,9.774690857539037", + "startLcPosition": "114", + "impact": { + "lower": "Riedenberg", + "upper": "Bad Br\u00fcckenau-Volkers", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> W\u00fcrzburg", + "title": "A7 | Bad Br\u00fcckenau-Volkers - Riedenberg", + "startTimestamp": "2025-03-02T00:00:00+01:00", + "coordinate": { + "lat": 50.33364173621078, + "long": 9.774690857539037 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.25 um 00:00 Uhr", + "Ende: 15.04.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.04.28)", + "", + "A7: Fulda -> W\u00fcrzburg, zwischen 0.3 km hinter AS Bad Br\u00fcckenau-Volkers und 3.1 km vor Riedenberg", + "", + "L\u00e4nge: 3.27 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 Br\u00fcckenneubau TB R\u00f6mershag" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.774690858, + 50.333641736 + ], + [ + 9.7750046, + 50.333281201 + ], + [ + 9.7753699, + 50.332871601 + ], + [ + 9.7757768, + 50.332450501 + ], + [ + 9.7763189, + 50.331874901 + ], + [ + 9.7768403, + 50.331365301 + ], + [ + 9.7771691, + 50.331056201 + ], + [ + 9.7779047, + 50.330417901 + ], + [ + 9.7784709, + 50.329943001 + ], + [ + 9.7791142, + 50.329440101 + ], + [ + 9.7798498, + 50.328903701 + ], + [ + 9.7806465, + 50.328360701 + ], + [ + 9.7810641, + 50.328084801 + ], + [ + 9.7818883, + 50.327590601 + ], + [ + 9.782418, + 50.327286001 + ], + [ + 9.7835039, + 50.326708501 + ], + [ + 9.7843884, + 50.326279501 + ], + [ + 9.7848633, + 50.326069401 + ], + [ + 9.7858337, + 50.325653401 + ], + [ + 9.7866552, + 50.325327901 + ], + [ + 9.787479, + 50.325033901 + ], + [ + 9.7888944, + 50.324572901 + ], + [ + 9.7897778, + 50.324318501 + ], + [ + 9.7907303, + 50.324068201 + ], + [ + 9.7917547, + 50.323825701 + ], + [ + 9.792831, + 50.323601401 + ], + [ + 9.7939254, + 50.323401901 + ], + [ + 9.7946884, + 50.323279001 + ], + [ + 9.795478, + 50.323161701 + ], + [ + 9.7964021, + 50.323043501 + ], + [ + 9.7973501, + 50.322933901 + ], + [ + 9.7980887, + 50.322861401 + ], + [ + 9.7987724, + 50.322802401 + ], + [ + 9.7995449, + 50.322748101 + ], + [ + 9.8003838, + 50.322696701 + ], + [ + 9.8012668, + 50.322668601 + ], + [ + 9.8022226, + 50.322641801 + ], + [ + 9.8031683, + 50.322637001 + ], + [ + 9.8040132, + 50.322646201 + ], + [ + 9.8048566, + 50.322669001 + ], + [ + 9.8057621, + 50.322705201 + ], + [ + 9.8068227, + 50.322766101 + ], + [ + 9.8078216, + 50.322846601 + ], + [ + 9.8086818, + 50.322931401 + ], + [ + 9.809465, + 50.323013901 + ], + [ + 9.8102062, + 50.323103401 + ], + [ + 9.8128652, + 50.323438501 + ], + [ + 9.8136194, + 50.323529301 + ], + [ + 9.813955984, + 50.323564249 + ] + ] + } + }, + { + "identifier": "2025-038640--vi-bs.2021-04-19_00-00-00-000.devi-zus.2021-04-19_00-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.34732964366924,9.751747562001418,50.35732393213519,9.736192861016242", + "point": "50.34732964366924,9.751747562001418", + "startLcPosition": "116", + "impact": { + "lower": "Am Forsthaus", + "upper": "Speicherz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Fulda", + "title": "A7 | Speicherz - Am Forsthaus", + "coordinate": { + "lat": 50.34732964366924, + "long": 9.751747562001418 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "01.01.26 00:00 Uhr bis zum 31.12.26 24:00 Uhr.", + "", + "A7: W\u00fcrzburg -> Fulda, zwischen 0.2 km hinter Speicherz und 3.0 km vor Am Forsthaus", + "", + "L\u00e4nge: 1.61 km | Maximale Durchfahrtsbreite: 7.75 m", + "", + "A7 Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.751747562, + 50.347329644 + ], + [ + 9.749897, + 50.347969201 + ], + [ + 9.7486929, + 50.348396901 + ], + [ + 9.7469706, + 50.349050001 + ], + [ + 9.7458815, + 50.349527301 + ], + [ + 9.7449006, + 50.350010501 + ], + [ + 9.7435564, + 50.350712801 + ], + [ + 9.7427538, + 50.351177101 + ], + [ + 9.7418853, + 50.351727401 + ], + [ + 9.7405076, + 50.352726201 + ], + [ + 9.7393982, + 50.353651801 + ], + [ + 9.7380778, + 50.354946001 + ], + [ + 9.7375359, + 50.355540301 + ], + [ + 9.736746, + 50.356484601 + ], + [ + 9.7363274, + 50.357112901 + ], + [ + 9.736192861, + 50.357323932 + ] + ] + } + }, + { + "identifier": "2024-018478--vi-bs.2025-02-24_17-15-00-000.devi-zus.2024-09-01_00-00-00-000_002.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.39823599142501,9.731320954612043,50.42358992210145,9.738793831755878", + "point": "50.39823599142501,9.731320954612043", + "startLcPosition": "117", + "impact": { + "lower": "Lohm\u00fchle", + "upper": "Am Forsthaus", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Fulda", + "title": "A7 | Am Forsthaus - Lohm\u00fchle", + "startTimestamp": "2025-02-24T17:15:00+01:00", + "coordinate": { + "lat": 50.39823599142501, + "long": 9.731320954612043 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.25 um 17:15 Uhr", + "Ende: 29.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.30)", + "", + "A7: W\u00fcrzburg -> Fulda, zwischen 1.6 km hinter Am Forsthaus und 1.5 km vor Lohm\u00fchle", + "", + "L\u00e4nge: 2.9 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A7 Br\u00fcckenneubau - TB Uttrichshausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.731320955, + 50.398235991 + ], + [ + 9.7312968, + 50.398467701 + ], + [ + 9.7311931, + 50.399649301 + ], + [ + 9.7311573, + 50.400194701 + ], + [ + 9.7311328, + 50.400876801 + ], + [ + 9.7311364, + 50.401695601 + ], + [ + 9.7311325, + 50.402088801 + ], + [ + 9.7311474, + 50.402672401 + ], + [ + 9.7311736, + 50.403164601 + ], + [ + 9.7311958, + 50.403527601 + ], + [ + 9.731249, + 50.404151701 + ], + [ + 9.7313588, + 50.405221301 + ], + [ + 9.7315465, + 50.406437701 + ], + [ + 9.7317598, + 50.407560801 + ], + [ + 9.7320076, + 50.408680901 + ], + [ + 9.7322899, + 50.409797801 + ], + [ + 9.7326065, + 50.410910801 + ], + [ + 9.7329573, + 50.412019601 + ], + [ + 9.7333422, + 50.413123901 + ], + [ + 9.7337611, + 50.414223001 + ], + [ + 9.733911, + 50.414651301 + ], + [ + 9.7346074, + 50.416240101 + ], + [ + 9.7354716, + 50.418027801 + ], + [ + 9.7358778, + 50.418813901 + ], + [ + 9.7363708, + 50.419716101 + ], + [ + 9.7370491, + 50.420882901 + ], + [ + 9.7376952, + 50.421945101 + ], + [ + 9.7385351, + 50.423215901 + ], + [ + 9.738793832, + 50.423589922 + ] + ] + } + }, + { + "identifier": "2025-038640--vi-bs.2021-04-19_00-00-00-000.devi-zus.2021-04-19_00-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.35727962093108,9.736020276857847,50.3471872490323,9.751627502206693", + "point": "50.35727962093108,9.736020276857847", + "startLcPosition": "117", + "impact": { + "lower": "Speicherz", + "upper": "Am Forsthaus", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> W\u00fcrzburg", + "title": "A7 | Am Forsthaus - Speicherz", + "coordinate": { + "lat": 50.35727962093108, + "long": 9.736020276857847 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "01.01.26 00:00 Uhr bis zum 31.12.26 24:00 Uhr.", + "", + "A7: Fulda -> W\u00fcrzburg, zwischen 3.0 km hinter Am Forsthaus und 0.2 km vor Speicherz", + "", + "L\u00e4nge: 1.61 km | Maximale Durchfahrtsbreite: 7.75 m", + "", + "A7 Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.736020277, + 50.357279621 + ], + [ + 9.7362392, + 50.356925801 + ], + [ + 9.7365717, + 50.356439501 + ], + [ + 9.7373366, + 50.355493601 + ], + [ + 9.7378843, + 50.354896101 + ], + [ + 9.7392009, + 50.353592501 + ], + [ + 9.7402927, + 50.352668201 + ], + [ + 9.7417381, + 50.351655301 + ], + [ + 9.7426064, + 50.351091501 + ], + [ + 9.7434455, + 50.350635001 + ], + [ + 9.7447811, + 50.349914601 + ], + [ + 9.7458403, + 50.349405601 + ], + [ + 9.7468751, + 50.348942501 + ], + [ + 9.7478627, + 50.348551201 + ], + [ + 9.7485789, + 50.348267401 + ], + [ + 9.7501718, + 50.347689201 + ], + [ + 9.751627502, + 50.347187249 + ] + ] + } + }, + { + "identifier": "2025-024823--vi-bs.2025-10-24_11-00-00-000.devi-zus.2025-06-02_08-00-00-000_006.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.433554958074616,9.744335044465245,50.451776806663155,9.732802726984612", + "point": "50.433554958074616,9.744335044465245", + "startLcPosition": "119", + "impact": { + "lower": "Steinborntal", + "upper": "Uttrichshausen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Fulda", + "title": "A7 | Uttrichshausen - Steinborntal", + "startTimestamp": "2025-10-24T11:00:00+02:00", + "coordinate": { + "lat": 50.433554958074616, + "long": 9.744335044465245 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.10.25 um 11:00 Uhr", + "Ende: 31.01.29 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.31)", + "", + "A7: W\u00fcrzburg -> Fulda, zwischen 1.8 km hinter Uttrichshausen und Steinborntal", + "", + "L\u00e4nge: 2.27 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.744335044, + 50.433554958 + ], + [ + 9.7444009, + 50.433836201 + ], + [ + 9.7444617, + 50.434154001 + ], + [ + 9.744514, + 50.434472401 + ], + [ + 9.7445578, + 50.434791301 + ], + [ + 9.7445908, + 50.435087601 + ], + [ + 9.7446164, + 50.435384201 + ], + [ + 9.7446346, + 50.435681001 + ], + [ + 9.7446438, + 50.436458701 + ], + [ + 9.7446245, + 50.436957601 + ], + [ + 9.7445792, + 50.437544901 + ], + [ + 9.744503, + 50.438044301 + ], + [ + 9.744446, + 50.438409201 + ], + [ + 9.7443193, + 50.438959701 + ], + [ + 9.7442058, + 50.439392201 + ], + [ + 9.7440923, + 50.439743001 + ], + [ + 9.7440321, + 50.439959801 + ], + [ + 9.7436357, + 50.441030901 + ], + [ + 9.7432743, + 50.441788701 + ], + [ + 9.7429334, + 50.442449701 + ], + [ + 9.7425476, + 50.443101301 + ], + [ + 9.7421452, + 50.443687001 + ], + [ + 9.7418305, + 50.444063001 + ], + [ + 9.741507, + 50.444481101 + ], + [ + 9.7411636, + 50.444890301 + ], + [ + 9.7407961, + 50.445328201 + ], + [ + 9.7400795, + 50.446077001 + ], + [ + 9.7392289, + 50.446868901 + ], + [ + 9.7376438, + 50.448181801 + ], + [ + 9.736879, + 50.448787101 + ], + [ + 9.7359481, + 50.449480901 + ], + [ + 9.7340404, + 50.450863501 + ], + [ + 9.732802727, + 50.451776807 + ] + ] + } + }, + { + "identifier": "2024-018478--vi-bs.2025-02-24_17-15-00-000.devi-zus.2024-09-01_00-00-00-000_002.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.42363632285194,9.73863296249423,50.39822668893815,9.731108603648767", + "point": "50.42363632285194,9.73863296249423", + "startLcPosition": "120", + "impact": { + "lower": "Am Forsthaus", + "upper": "Lohm\u00fchle", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> W\u00fcrzburg", + "title": "A7 | Lohm\u00fchle - Am Forsthaus", + "startTimestamp": "2025-02-24T17:15:00+01:00", + "coordinate": { + "lat": 50.42363632285194, + "long": 9.73863296249423 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.25 um 17:15 Uhr", + "Ende: 29.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.30)", + "", + "A7: Fulda -> W\u00fcrzburg, zwischen 1.5 km hinter Lohm\u00fchle und 1.6 km vor Am Forsthaus", + "", + "L\u00e4nge: 2.9 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A7 Br\u00fcckenneubau - TB Uttrichshausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.738632962, + 50.423636323 + ], + [ + 9.7385381, + 50.423505301 + ], + [ + 9.7383614, + 50.423238101 + ], + [ + 9.7373185, + 50.421630001 + ], + [ + 9.7369947, + 50.421121801 + ], + [ + 9.736329, + 50.419990601 + ], + [ + 9.7357006, + 50.418856701 + ], + [ + 9.7352888, + 50.418051001 + ], + [ + 9.7343077, + 50.416059501 + ], + [ + 9.7340828, + 50.415486501 + ], + [ + 9.7337451, + 50.414704801 + ], + [ + 9.7335599, + 50.414255901 + ], + [ + 9.733129, + 50.413155601 + ], + [ + 9.7327372, + 50.412049301 + ], + [ + 9.7323845, + 50.410937701 + ], + [ + 9.7320713, + 50.409821301 + ], + [ + 9.7317976, + 50.408700601 + ], + [ + 9.7315636, + 50.407576301 + ], + [ + 9.7313694, + 50.406448801 + ], + [ + 9.7311736, + 50.405239901 + ], + [ + 9.7310372, + 50.404164701 + ], + [ + 9.7309992, + 50.403747101 + ], + [ + 9.7309503, + 50.403173501 + ], + [ + 9.7309137, + 50.402671301 + ], + [ + 9.7309031, + 50.402092101 + ], + [ + 9.7309003, + 50.401505801 + ], + [ + 9.7309231, + 50.400880001 + ], + [ + 9.7309476, + 50.400198601 + ], + [ + 9.7309891, + 50.399642101 + ], + [ + 9.7310835, + 50.398456001 + ], + [ + 9.731108604, + 50.398226689 + ] + ] + } + }, + { + "identifier": "2025-024823--vi-bs.2025-10-24_11-00-00-000.devi-zus.2025-06-02_08-00-00-000_006.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.45170328591952,9.732669361259465,50.43357202446708,9.744151111371968", + "point": "50.45170328591952,9.732669361259465", + "startLcPosition": "122", + "impact": { + "lower": "Uttrichshausen", + "upper": "Steinborntal", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> W\u00fcrzburg", + "title": "A7 | Steinborntal - Uttrichshausen", + "startTimestamp": "2025-10-24T11:00:00+02:00", + "coordinate": { + "lat": 50.45170328591952, + "long": 9.732669361259465 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.10.25 um 11:00 Uhr", + "Ende: 31.01.29 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.31)", + "", + "A7: Fulda -> W\u00fcrzburg, zwischen Steinborntal und 1.8 km vor Uttrichshausen", + "", + "L\u00e4nge: 2.27 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.732669361, + 50.451703286 + ], + [ + 9.7339076, + 50.450784901 + ], + [ + 9.7358671, + 50.449367501 + ], + [ + 9.7366932, + 50.448745401 + ], + [ + 9.7374963, + 50.448113901 + ], + [ + 9.7390785, + 50.446809001 + ], + [ + 9.7399211, + 50.446005701 + ], + [ + 9.7405213, + 50.445384001 + ], + [ + 9.7406975, + 50.445201401 + ], + [ + 9.7413367, + 50.444438501 + ], + [ + 9.7416578, + 50.444025901 + ], + [ + 9.7419736, + 50.443642501 + ], + [ + 9.7423763, + 50.443062501 + ], + [ + 9.7427658, + 50.442410401 + ], + [ + 9.7431083, + 50.441753001 + ], + [ + 9.7434684, + 50.441004601 + ], + [ + 9.7439177, + 50.439724301 + ], + [ + 9.7440253, + 50.439371601 + ], + [ + 9.7441384, + 50.438941601 + ], + [ + 9.7442557, + 50.438391101 + ], + [ + 9.744349, + 50.437873101 + ], + [ + 9.7443863, + 50.437543701 + ], + [ + 9.7444343, + 50.436951201 + ], + [ + 9.7444557, + 50.436445301 + ], + [ + 9.744457, + 50.435682001 + ], + [ + 9.7444356, + 50.435385201 + ], + [ + 9.7444071, + 50.435088701 + ], + [ + 9.7443717, + 50.434792501 + ], + [ + 9.7443255, + 50.434472601 + ], + [ + 9.7442711, + 50.434153201 + ], + [ + 9.7442086, + 50.433834401 + ], + [ + 9.744151111, + 50.433572024 + ] + ] + } + }, + { + "identifier": "2026-014796--vi-bs.2026-04-13_06-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.47545239453244,9.71194606054611,50.48806933998935,9.715915180375076", + "point": "50.47545239453244,9.71194606054611", + "startLcPosition": "124", + "impact": { + "lower": "Pilgerzell", + "upper": "Steinhauk", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Kassel", + "title": "A7 | Steinhauk - Pilgerzell", + "coordinate": { + "lat": 50.47545239453244, + "long": 9.71194606054611 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 06:30 bis 16:15 Uhr", + "14.04.26 von 06:30 bis 18:30 Uhr", + "15.04.26 von 06:30 bis 13:30 Uhr", + "16.04.26 von 06:30 bis 15:00 Uhr", + "", + "A7: W\u00fcrzburg -> Kassel, zwischen 0.3 km hinter Steinhauk und 2.9 km vor Pilgerzell", + "", + "L\u00e4nge: 1.47 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 von Steinhauk (Parkplatz) nach Pilgerzell (Parkplatz) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.711946061, + 50.475452395 + ], + [ + 9.7117251, + 50.476210001 + ], + [ + 9.7116255, + 50.476728401 + ], + [ + 9.7115516, + 50.477248501 + ], + [ + 9.7115033, + 50.477769801 + ], + [ + 9.7114808, + 50.478291801 + ], + [ + 9.7114841, + 50.478813901 + ], + [ + 9.7115132, + 50.479335801 + ], + [ + 9.711568, + 50.479856801 + ], + [ + 9.7116486, + 50.480376501 + ], + [ + 9.7117547, + 50.480894201 + ], + [ + 9.7118864, + 50.481409601 + ], + [ + 9.7120434, + 50.481922101 + ], + [ + 9.7122257, + 50.482431201 + ], + [ + 9.712433, + 50.482936501 + ], + [ + 9.7126652, + 50.483437301 + ], + [ + 9.712922, + 50.483933201 + ], + [ + 9.7132032, + 50.484423701 + ], + [ + 9.7137804, + 50.485373901 + ], + [ + 9.7141275, + 50.485881901 + ], + [ + 9.7146485, + 50.486565001 + ], + [ + 9.715167, + 50.487191701 + ], + [ + 9.7157292, + 50.487865201 + ], + [ + 9.71591518, + 50.48806934 + ] + ] + } + }, + { + "identifier": "2026-014790--vi-bs.2026-04-13_06-30-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.488143853464635,9.715770317286642,50.47543642601362,9.711725802282363", + "point": "50.488143853464635,9.715770317286642", + "startLcPosition": "126", + "impact": { + "lower": "Steinhauk", + "upper": "Pilgerzell", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> W\u00fcrzburg", + "title": "A7 | Pilgerzell - Steinhauk", + "coordinate": { + "lat": 50.488143853464635, + "long": 9.715770317286642 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 06:30 bis 18:30 Uhr", + "14.04.26 von 06:30 bis 18:30 Uhr", + "15.04.26 von 06:30 bis 16:30 Uhr", + "16.04.26 von 06:30 bis 15:45 Uhr", + "", + "A7: Kassel -> W\u00fcrzburg, zwischen 2.9 km hinter Pilgerzell und 0.3 km vor Steinhauk", + "", + "L\u00e4nge: 1.47 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 von Pilgerzell (Parkplatz) nach Steinhauk (Parkplatz) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.715770317, + 50.488143853 + ], + [ + 9.7155551, + 50.487907601 + ], + [ + 9.7149763, + 50.487242001 + ], + [ + 9.7144846, + 50.486622001 + ], + [ + 9.7140664, + 50.486055401 + ], + [ + 9.7135423, + 50.485298701 + ], + [ + 9.7133543, + 50.485018101 + ], + [ + 9.7130351, + 50.484462501 + ], + [ + 9.7127534, + 50.483968401 + ], + [ + 9.7124959, + 50.483469001 + ], + [ + 9.7122629, + 50.482964701 + ], + [ + 9.7120547, + 50.482456001 + ], + [ + 9.7118714, + 50.481943501 + ], + [ + 9.7117132, + 50.481427601 + ], + [ + 9.7115804, + 50.480908801 + ], + [ + 9.7114729, + 50.480387601 + ], + [ + 9.711391, + 50.479864501 + ], + [ + 9.7113346, + 50.479340101 + ], + [ + 9.7113039, + 50.478814801 + ], + [ + 9.7112989, + 50.478289101 + ], + [ + 9.7113195, + 50.477763601 + ], + [ + 9.7113658, + 50.477238801 + ], + [ + 9.7114378, + 50.476715101 + ], + [ + 9.7115353, + 50.476193001 + ], + [ + 9.7116254, + 50.475813701 + ], + [ + 9.711725802, + 50.475436426 + ] + ] + } + }, + { + "identifier": "2026-016991--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_010.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.54806519519929,9.731308112269655,50.55564137165866,9.73111961038028", + "point": "50.54806519519929,9.731308112269655", + "startLcPosition": "127", + "impact": { + "lower": "Petersberg", + "upper": "R\u00f6ther Tannen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | R\u00f6ther Tannen - Petersberg", + "coordinate": { + "lat": 50.54806519519929, + "long": 9.731308112269655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A7: Fulda -> Kassel, zwischen 0.4 km hinter R\u00f6ther Tannen und 0.3 km vor Petersberg", + "", + "L\u00e4nge: 0.84 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 von Rauschenberg (Parkplatz) nach Gei\u00dfhecke (Parkplatz) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.731308112, + 50.548065195 + ], + [ + 9.7313262, + 50.548205701 + ], + [ + 9.7314386, + 50.549124701 + ], + [ + 9.7314992, + 50.549995601 + ], + [ + 9.7315333, + 50.550825101 + ], + [ + 9.7315151, + 50.551634201 + ], + [ + 9.7314774, + 50.552945601 + ], + [ + 9.7314045, + 50.553724401 + ], + [ + 9.7313481, + 50.554181301 + ], + [ + 9.7312165, + 50.555090201 + ], + [ + 9.7311504, + 50.555466801 + ], + [ + 9.73111961, + 50.555641372 + ] + ] + } + }, + { + "identifier": "2026-000690--vi-bs.2026-04-07_00-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.60654195712724,9.680823549044344,50.60510953391705,9.680423273659224", + "point": "50.60654195712724,9.680823549044344", + "startLcPosition": "133", + "impact": { + "lower": "Gei\u00dfhecke", + "upper": "Hummelskopf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Hummelskopf - Gei\u00dfhecke", + "startTimestamp": "2026-04-07T00:00:00+02:00", + "coordinate": { + "lat": 50.60654195712724, + "long": 9.680823549044344 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 00:00 Uhr", + "Ende: 06.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 06.06.26)", + "", + "A7: Kassel -> Fulda, zwischen 0.1 km hinter Hummelskopf und 2.3 km vor Gei\u00dfhecke", + "", + "L\u00e4nge: 0.16 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A7 PWC Hummelskopf (Parkplatz) Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.680823549, + 50.606541957 + ], + [ + 9.6806756, + 50.606144401 + ], + [ + 9.6804396, + 50.605205401 + ], + [ + 9.680423274, + 50.605109534 + ] + ] + } + }, + { + "identifier": "2024-034747--vi-bs.2024-10-08_00-00-00-000.devi-zus.2024-07-29_08-00-00-000.f_005.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.66183855088211,9.676937115698275,50.661847494617845,9.676935640326187", + "point": "50.66183855088211,9.676937115698275", + "startLcPosition": "136", + "impact": { + "lower": "G\u00fcnterswald", + "upper": "H\u00fcnfeld/Schlitz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | H\u00fcnfeld/Schlitz - G\u00fcnterswald", + "startTimestamp": "2024-10-08T00:00:00+02:00", + "coordinate": { + "lat": 50.66183855088211, + "long": 9.676937115698275 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.24 um 00:00 Uhr", + "Ende: 03.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.04.27)", + "", + "A7: Fulda -> Kassel, zwischen AS H\u00fcnfeld/Schlitz und 2.6 km vor G\u00fcnterswald", + "", + "L\u00e4nge: 0 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.676937116, + 50.661838551 + ], + [ + 9.67693564, + 50.661847495 + ] + ] + } + }, + { + "identifier": "2024-034747--vi-bs.2024-10-08_00-00-00-000.devi-zus.2024-07-29_08-00-00-000.f_005.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.661834063237805,9.676721068063518,50.66182511030035,9.676722391373529", + "point": "50.661834063237805,9.676721068063518", + "startLcPosition": "137", + "impact": { + "lower": "H\u00fcnfeld/Schlitz", + "upper": "G\u00fcnterswald", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | G\u00fcnterswald - H\u00fcnfeld/Schlitz", + "startTimestamp": "2024-10-08T00:00:00+02:00", + "coordinate": { + "lat": 50.661834063237805, + "long": 9.676721068063518 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.24 um 00:00 Uhr", + "Ende: 03.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.04.27)", + "", + "A7: Kassel -> Fulda, zwischen 2.6 km hinter G\u00fcnterswald und AS H\u00fcnfeld/Schlitz", + "", + "L\u00e4nge: 0 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.676721068, + 50.661834063 + ], + [ + 9.676722391, + 50.66182511 + ] + ] + } + }, + { + "identifier": "2024-034747--vi-bs.2024-10-08_00-00-00-000.devi-zus.2024-07-29_08-00-00-000.f_005.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.76096476027191,9.600597799492743,50.78146162663031,9.568665787314272", + "point": "50.76096476027191,9.600597799492743", + "startLcPosition": "141", + "impact": { + "lower": "Strampen", + "upper": "Richtgraben", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Richtgraben - Strampen", + "startTimestamp": "2024-10-08T00:00:00+02:00", + "coordinate": { + "lat": 50.76096476027191, + "long": 9.600597799492743 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.24 um 00:00 Uhr", + "Ende: 03.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.04.27)", + "", + "A7: Fulda -> Kassel, zwischen Richtgraben und 0.9 km vor Strampen", + "", + "L\u00e4nge: 3.48 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.600597799, + 50.76096476 + ], + [ + 9.6003327, + 50.761032101 + ], + [ + 9.5990861, + 50.761364501 + ], + [ + 9.5984315, + 50.761547501 + ], + [ + 9.5972487, + 50.761906601 + ], + [ + 9.5965628, + 50.762130801 + ], + [ + 9.5959021, + 50.762369901 + ], + [ + 9.5954678, + 50.762539801 + ], + [ + 9.5950812, + 50.762699901 + ], + [ + 9.5945755, + 50.762929701 + ], + [ + 9.5940041, + 50.763208901 + ], + [ + 9.5934917, + 50.763487901 + ], + [ + 9.5930633, + 50.763745301 + ], + [ + 9.5926122, + 50.764037301 + ], + [ + 9.5922068, + 50.764328201 + ], + [ + 9.5918458, + 50.764613401 + ], + [ + 9.5915039, + 50.764896701 + ], + [ + 9.5908966, + 50.765473801 + ], + [ + 9.5904291, + 50.766013501 + ], + [ + 9.5898819, + 50.766776601 + ], + [ + 9.5896994, + 50.767082901 + ], + [ + 9.5895299, + 50.767403601 + ], + [ + 9.5893596, + 50.767755401 + ], + [ + 9.5892152, + 50.768123201 + ], + [ + 9.589025, + 50.768795101 + ], + [ + 9.5887386, + 50.770235901 + ], + [ + 9.5885572, + 50.771437401 + ], + [ + 9.588452, + 50.772049301 + ], + [ + 9.5882668, + 50.772630201 + ], + [ + 9.5879444, + 50.773293501 + ], + [ + 9.5875806, + 50.773889301 + ], + [ + 9.5873731, + 50.774163701 + ], + [ + 9.5871247, + 50.774457901 + ], + [ + 9.5868935, + 50.774716801 + ], + [ + 9.5866306, + 50.774975401 + ], + [ + 9.5864699, + 50.775136701 + ], + [ + 9.5862559, + 50.775316701 + ], + [ + 9.5857195, + 50.775733001 + ], + [ + 9.5853434, + 50.775991101 + ], + [ + 9.5851006, + 50.776147301 + ], + [ + 9.5849304, + 50.776249401 + ], + [ + 9.5845949, + 50.776447301 + ], + [ + 9.5843753, + 50.776570201 + ], + [ + 9.5841309, + 50.776693301 + ], + [ + 9.5837377, + 50.776882701 + ], + [ + 9.5832871, + 50.777069301 + ], + [ + 9.5829787, + 50.777192501 + ], + [ + 9.5826065, + 50.777326301 + ], + [ + 9.5819707, + 50.777538101 + ], + [ + 9.5815563, + 50.777657001 + ], + [ + 9.5809295, + 50.777815601 + ], + [ + 9.5805561, + 50.777898401 + ], + [ + 9.5801597, + 50.777979201 + ], + [ + 9.5796831, + 50.778058801 + ], + [ + 9.579236, + 50.778123301 + ], + [ + 9.5787648, + 50.778178601 + ], + [ + 9.5780841, + 50.778249201 + ], + [ + 9.5769629, + 50.778364601 + ], + [ + 9.5763482, + 50.778429001 + ], + [ + 9.5756687, + 50.778523301 + ], + [ + 9.5749806, + 50.778643601 + ], + [ + 9.5744059, + 50.778766401 + ], + [ + 9.573852, + 50.778912801 + ], + [ + 9.5735166, + 50.779010701 + ], + [ + 9.5730588, + 50.779158501 + ], + [ + 9.5726524, + 50.779305101 + ], + [ + 9.5722723, + 50.779458501 + ], + [ + 9.5718462, + 50.779642001 + ], + [ + 9.5714303, + 50.779837501 + ], + [ + 9.5709431, + 50.780098901 + ], + [ + 9.5704339, + 50.780389401 + ], + [ + 9.5699502, + 50.780682201 + ], + [ + 9.5689564, + 50.781298601 + ], + [ + 9.568665787, + 50.781461627 + ] + ] + } + }, + { + "identifier": "2024-034747--vi-bs.2024-10-08_00-00-00-000.devi-zus.2024-07-29_08-00-00-000.f_005.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.78160454044593,9.568404445172215,50.7816102149457,9.568393447856586", + "point": "50.78160454044593,9.568404445172215", + "startLcPosition": "142", + "impact": { + "lower": "Strampen", + "upper": "Niederaula", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Niederaula - Strampen", + "startTimestamp": "2024-10-08T00:00:00+02:00", + "coordinate": { + "lat": 50.78160454044593, + "long": 9.568404445172215 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.24 um 00:00 Uhr", + "Ende: 03.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.04.27)", + "", + "A7: Fulda -> Kassel, zwischen 1.4 km hinter AS Niederaula und 0.9 km vor Strampen", + "", + "L\u00e4nge: 0 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.568404445, + 50.78160454 + ], + [ + 9.568393448, + 50.781610215 + ] + ] + } + }, + { + "identifier": "2024-034747--vi-bs.2024-10-08_00-00-00-000.devi-zus.2024-07-29_08-00-00-000.f_005.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.78136041877326,9.568523652894354,50.76084561191351,9.600520963995884", + "point": "50.78136041877326,9.568523652894354", + "startLcPosition": "143", + "impact": { + "lower": "Richtgraben", + "upper": "Strampen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Strampen - Richtgraben", + "startTimestamp": "2024-10-08T00:00:00+02:00", + "coordinate": { + "lat": 50.78136041877326, + "long": 9.568523652894354 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.24 um 00:00 Uhr", + "Ende: 03.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.04.27)", + "", + "A7: Kassel -> Fulda, zwischen 0.9 km hinter Strampen und Richtgraben", + "", + "L\u00e4nge: 3.48 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.568523653, + 50.781360419 + ], + [ + 9.5688368, + 50.781182401 + ], + [ + 9.5698003, + 50.780590601 + ], + [ + 9.5703041, + 50.780283501 + ], + [ + 9.5707808, + 50.780011001 + ], + [ + 9.5713113, + 50.779726301 + ], + [ + 9.5717318, + 50.779528201 + ], + [ + 9.5721651, + 50.779339101 + ], + [ + 9.5725069, + 50.779202501 + ], + [ + 9.5729774, + 50.779031601 + ], + [ + 9.5734434, + 50.778882501 + ], + [ + 9.5737711, + 50.778787701 + ], + [ + 9.5742845, + 50.778648601 + ], + [ + 9.5746148, + 50.778573101 + ], + [ + 9.5749249, + 50.778511501 + ], + [ + 9.5753131, + 50.778438101 + ], + [ + 9.5756093, + 50.778388901 + ], + [ + 9.5762169, + 50.778303001 + ], + [ + 9.5769526, + 50.778214001 + ], + [ + 9.577335, + 50.778172501 + ], + [ + 9.5779109, + 50.778114301 + ], + [ + 9.5783413, + 50.778070201 + ], + [ + 9.5791289, + 50.777982801 + ], + [ + 9.5797004, + 50.777904201 + ], + [ + 9.5800686, + 50.777844001 + ], + [ + 9.5804131, + 50.777782001 + ], + [ + 9.5808484, + 50.777689501 + ], + [ + 9.5813239, + 50.777576501 + ], + [ + 9.5816741, + 50.777483401 + ], + [ + 9.5820107, + 50.777384701 + ], + [ + 9.5824838, + 50.777232901 + ], + [ + 9.5829325, + 50.777073101 + ], + [ + 9.5831847, + 50.776972901 + ], + [ + 9.5836127, + 50.776793801 + ], + [ + 9.5840009, + 50.776610401 + ], + [ + 9.58431, + 50.776452501 + ], + [ + 9.584555, + 50.776317301 + ], + [ + 9.5848111, + 50.776167501 + ], + [ + 9.5852055, + 50.775917801 + ], + [ + 9.5855835, + 50.775659301 + ], + [ + 9.5860288, + 50.775318001 + ], + [ + 9.5863336, + 50.775062401 + ], + [ + 9.5865191, + 50.774887901 + ], + [ + 9.5867818, + 50.774618501 + ], + [ + 9.587009, + 50.774368801 + ], + [ + 9.5872297, + 50.774096701 + ], + [ + 9.5874184, + 50.773841001 + ], + [ + 9.5877615, + 50.773265601 + ], + [ + 9.5880717, + 50.772575101 + ], + [ + 9.5882628, + 50.772021401 + ], + [ + 9.5883778, + 50.771426601 + ], + [ + 9.5884378, + 50.771029101 + ], + [ + 9.5885592, + 50.770225101 + ], + [ + 9.5888236, + 50.768771801 + ], + [ + 9.5890072, + 50.768093301 + ], + [ + 9.589139, + 50.767722401 + ], + [ + 9.5893096, + 50.767356001 + ], + [ + 9.5894977, + 50.767009701 + ], + [ + 9.5896727, + 50.766723101 + ], + [ + 9.5897265, + 50.766628601 + ], + [ + 9.5902183, + 50.765929701 + ], + [ + 9.5907, + 50.765396601 + ], + [ + 9.5908349, + 50.765267101 + ], + [ + 9.5913023, + 50.764826301 + ], + [ + 9.591668, + 50.764529501 + ], + [ + 9.5920577, + 50.764240601 + ], + [ + 9.5924701, + 50.763946301 + ], + [ + 9.592934, + 50.763643801 + ], + [ + 9.5933788, + 50.763379601 + ], + [ + 9.5938765, + 50.763108301 + ], + [ + 9.5944636, + 50.762824401 + ], + [ + 9.5949903, + 50.762583301 + ], + [ + 9.5953861, + 50.762421301 + ], + [ + 9.5958123, + 50.762254501 + ], + [ + 9.5964701, + 50.762019801 + ], + [ + 9.5971707, + 50.761787201 + ], + [ + 9.5983536, + 50.761432301 + ], + [ + 9.599007, + 50.761249901 + ], + [ + 9.6002579, + 50.760914901 + ], + [ + 9.600520964, + 50.760845612 + ] + ] + } + }, + { + "identifier": "2024-034747--vi-bs.2024-10-08_00-00-00-000.devi-zus.2024-07-29_08-00-00-000.f_005.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.78150623137384,9.568258603133453,50.78150048143951,9.568269506725224", + "point": "50.78150623137384,9.568258603133453", + "startLcPosition": "143", + "impact": { + "lower": "Niederaula", + "upper": "Strampen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Strampen - Niederaula", + "startTimestamp": "2024-10-08T00:00:00+02:00", + "coordinate": { + "lat": 50.78150623137384, + "long": 9.568258603133453 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.24 um 00:00 Uhr", + "Ende: 03.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.04.27)", + "", + "A7: Kassel -> Fulda, zwischen 0.9 km hinter Strampen und 1.4 km vor AS Niederaula", + "", + "L\u00e4nge: 0 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.568258603, + 50.781506231 + ], + [ + 9.568269507, + 50.781500481 + ] + ] + } + }, + { + "identifier": "2025-016180--vi-bs.2026-04-11_20-00-00-000.devi-zus.2025-10-25_23-30-00-000.de71", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.81345895445937,9.54328411037028,50.819156545459485,9.565171285946366", + "point": "50.81345895445937,9.54328411037028", + "startLcPosition": "145", + "impact": { + "lower": "Kirchheim", + "upper": "Hattenbacher Dreieck", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Hattenbacher Dreieck - Kirchheim", + "startTimestamp": "2026-04-11T20:00:00+02:00", + "coordinate": { + "lat": 50.81345895445937, + "long": 9.54328411037028 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 20:00 Uhr", + "Ende: 04.05.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A7: Fulda -> Kassel, zwischen 1.1 km hinter AD Hattenbacher Dreieck und 1.5 km vor Kirchheim", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 8.1 m", + "", + "A7 Erneuerung an der Decke__AS Kirchheim -- AS Hattenbacher Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.54328411, + 50.813458954 + ], + [ + 9.5435574, + 50.813666701 + ], + [ + 9.5440368, + 50.813977901 + ], + [ + 9.5444729, + 50.814268901 + ], + [ + 9.544768, + 50.814463901 + ], + [ + 9.5451296, + 50.814692601 + ], + [ + 9.5456703, + 50.815021401 + ], + [ + 9.5465145, + 50.815483201 + ], + [ + 9.5499698, + 50.817369001 + ], + [ + 9.5505579, + 50.817654101 + ], + [ + 9.5511897, + 50.817898101 + ], + [ + 9.5519569, + 50.818130101 + ], + [ + 9.5524873, + 50.818265801 + ], + [ + 9.5528472, + 50.818337801 + ], + [ + 9.5532322, + 50.818409301 + ], + [ + 9.5535862, + 50.818455301 + ], + [ + 9.5541065, + 50.818514501 + ], + [ + 9.5547425, + 50.818548901 + ], + [ + 9.555359, + 50.818558201 + ], + [ + 9.5557721, + 50.818550501 + ], + [ + 9.5562462, + 50.818517501 + ], + [ + 9.5568792, + 50.818457101 + ], + [ + 9.5575016, + 50.818379001 + ], + [ + 9.5586726, + 50.818245101 + ], + [ + 9.5592193, + 50.818200401 + ], + [ + 9.559802, + 50.818179001 + ], + [ + 9.560429, + 50.818179001 + ], + [ + 9.5607661, + 50.818192401 + ], + [ + 9.5612499, + 50.818210501 + ], + [ + 9.5616545, + 50.818251601 + ], + [ + 9.5621513, + 50.818311001 + ], + [ + 9.5626375, + 50.818390601 + ], + [ + 9.563042, + 50.818469501 + ], + [ + 9.5633494, + 50.818536401 + ], + [ + 9.5637623, + 50.818650101 + ], + [ + 9.5644089, + 50.818860501 + ], + [ + 9.5651087, + 50.819131101 + ], + [ + 9.565171286, + 50.819156545 + ] + ] + } + }, + { + "identifier": "2025-016180--vi-bs.2026-04-11_20-00-00-000.devi-zus.2025-10-25_23-30-00-000.de77", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.80673207417353,9.536126477653855,50.8133085958346,9.543113853040536", + "point": "50.80673207417353,9.536126477653855", + "startLcPosition": "145", + "impact": { + "lower": "Kirchheim", + "upper": "Hattenbacher Dreieck", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Hattenbacher Dreieck - Kirchheim", + "startTimestamp": "2026-04-11T20:00:00+02:00", + "coordinate": { + "lat": 50.80673207417353, + "long": 9.536126477653855 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 20:00 Uhr", + "Ende: 04.05.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A7: Fulda -> Kassel, zwischen 0.2 km hinter AD Hattenbacher Dreieck und 3.3 km vor Kirchheim", + "", + "L\u00e4nge: 0.88 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A7 Erneuerung an der Decke__AS Kirchheim -- AS Hattenbacher Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.536126478, + 50.806732074 + ], + [ + 9.5370263, + 50.807738801 + ], + [ + 9.5374324, + 50.808167101 + ], + [ + 9.537911, + 50.808623201 + ], + [ + 9.5384933, + 50.809192601 + ], + [ + 9.5389927, + 50.809703101 + ], + [ + 9.5392105, + 50.809925401 + ], + [ + 9.5395454, + 50.810250801 + ], + [ + 9.5406008, + 50.811206701 + ], + [ + 9.5415509, + 50.812007001 + ], + [ + 9.5424334, + 50.812726201 + ], + [ + 9.5428596, + 50.813069401 + ], + [ + 9.543113853, + 50.813308596 + ] + ] + } + }, + { + "identifier": "2025-016180--vi-bs.2026-03-26_06-00-00-000.devi-zus.2025-10-25_23-30-00-000.de24", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80673207417353,9.536126477653855,50.8133085958346,9.543113853040536", + "point": "50.80673207417353,9.536126477653855", + "startLcPosition": "145", + "impact": { + "lower": "Kirchheim", + "upper": "Hattenbacher Dreieck", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Hattenbacher Dreieck - Kirchheim", + "startTimestamp": "2026-03-26T06:00:00+01:00", + "coordinate": { + "lat": 50.80673207417353, + "long": 9.536126477653855 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 06:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A7: Fulda -> Kassel, zwischen 0.2 km hinter AD Hattenbacher Dreieck und 3.3 km vor Kirchheim", + "", + "L\u00e4nge: 0.88 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A7 Erneuerung an der Decke__AS Kirchheim -- AS Hattenbacher Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.536126478, + 50.806732074 + ], + [ + 9.5370263, + 50.807738801 + ], + [ + 9.5374324, + 50.808167101 + ], + [ + 9.537911, + 50.808623201 + ], + [ + 9.5384933, + 50.809192601 + ], + [ + 9.5389927, + 50.809703101 + ], + [ + 9.5392105, + 50.809925401 + ], + [ + 9.5395454, + 50.810250801 + ], + [ + 9.5406008, + 50.811206701 + ], + [ + 9.5415509, + 50.812007001 + ], + [ + 9.5424334, + 50.812726201 + ], + [ + 9.5428596, + 50.813069401 + ], + [ + 9.543113853, + 50.813308596 + ] + ] + } + }, + { + "identifier": "2025-016180--vi-bs.2026-04-11_20-00-00-000.devi-zus.2025-10-25_23-30-00-000.de69", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.81928699511596,9.565039390968296,50.81358326289033,9.543056347339675", + "point": "50.81928699511596,9.565039390968296", + "startLcPosition": "146", + "impact": { + "lower": "Hattenbacher Dreieck", + "upper": "Kirchheim", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Kirchheim - Hattenbacher Dreieck", + "startTimestamp": "2026-04-11T20:00:00+02:00", + "coordinate": { + "lat": 50.81928699511596, + "long": 9.565039390968296 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 20:00 Uhr", + "Ende: 04.05.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A7: Kassel -> Fulda, zwischen 1.5 km hinter Kirchheim und 1.1 km vor AD Hattenbacher Dreieck", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 Erneuerung an der Decke__AS Kirchheim -- AS Hattenbacher Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.565039391, + 50.819286995 + ], + [ + 9.5649589, + 50.819254401 + ], + [ + 9.5642922, + 50.819003201 + ], + [ + 9.5636226, + 50.818790101 + ], + [ + 9.5631623, + 50.818671901 + ], + [ + 9.5629024, + 50.818614701 + ], + [ + 9.5626281, + 50.818559101 + ], + [ + 9.562176, + 50.818485801 + ], + [ + 9.561691, + 50.818426501 + ], + [ + 9.5611949, + 50.818381301 + ], + [ + 9.5607595, + 50.818355001 + ], + [ + 9.5605115, + 50.818349101 + ], + [ + 9.560278, + 50.818349201 + ], + [ + 9.5596711, + 50.818368101 + ], + [ + 9.5591782, + 50.818397201 + ], + [ + 9.5586601, + 50.818447801 + ], + [ + 9.5574118, + 50.818595501 + ], + [ + 9.556902, + 50.818653001 + ], + [ + 9.5563848, + 50.818708001 + ], + [ + 9.5558486, + 50.818745701 + ], + [ + 9.5553731, + 50.818755301 + ], + [ + 9.5546706, + 50.818738601 + ], + [ + 9.5541046, + 50.818706701 + ], + [ + 9.5536364, + 50.818654501 + ], + [ + 9.5531921, + 50.818598101 + ], + [ + 9.5527848, + 50.818531401 + ], + [ + 9.5524607, + 50.818465101 + ], + [ + 9.5520558, + 50.818367001 + ], + [ + 9.5515907, + 50.818242901 + ], + [ + 9.5509409, + 50.818032001 + ], + [ + 9.5503595, + 50.817808801 + ], + [ + 9.5497022, + 50.817487101 + ], + [ + 9.5489325, + 50.817063401 + ], + [ + 9.5488684, + 50.817025701 + ], + [ + 9.5465891, + 50.815771201 + ], + [ + 9.5455916, + 50.815232401 + ], + [ + 9.545382, + 50.815109001 + ], + [ + 9.5448688, + 50.814808401 + ], + [ + 9.5446419, + 50.814663001 + ], + [ + 9.5443752, + 50.814491201 + ], + [ + 9.5433798, + 50.813811601 + ], + [ + 9.5433204, + 50.813771101 + ], + [ + 9.5430649, + 50.813589401 + ], + [ + 9.543056347, + 50.813583263 + ] + ] + } + }, + { + "identifier": "2025-016180--vi-bs.2026-03-26_06-00-00-000.devi-zus.2025-10-25_23-30-00-000.de18", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.81857411083428,9.553045604578077,50.81358194202469,9.543054506866145", + "point": "50.81857411083428,9.553045604578077", + "startLcPosition": "146", + "impact": { + "lower": "Hattenbacher Dreieck", + "upper": "Kirchheim", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Kirchheim - Hattenbacher Dreieck", + "startTimestamp": "2026-03-26T06:00:00+01:00", + "coordinate": { + "lat": 50.81857411083428, + "long": 9.553045604578077 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 06:00 Uhr", + "Ende: 11.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A7: Kassel -> Fulda, zwischen 2.4 km hinter Kirchheim und 1.1 km vor AD Hattenbacher Dreieck", + "", + "L\u00e4nge: 0.91 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A7 Erneuerung an der Decke__AS Kirchheim -- AS Hattenbacher Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.553045605, + 50.818574111 + ], + [ + 9.5527848, + 50.818531401 + ], + [ + 9.5524607, + 50.818465101 + ], + [ + 9.5520558, + 50.818367001 + ], + [ + 9.5515907, + 50.818242901 + ], + [ + 9.5509409, + 50.818032001 + ], + [ + 9.5503595, + 50.817808801 + ], + [ + 9.5497022, + 50.817487101 + ], + [ + 9.5489325, + 50.817063401 + ], + [ + 9.5488684, + 50.817025701 + ], + [ + 9.5465891, + 50.815771201 + ], + [ + 9.5455916, + 50.815232401 + ], + [ + 9.545382, + 50.815109001 + ], + [ + 9.5448688, + 50.814808401 + ], + [ + 9.5446419, + 50.814663001 + ], + [ + 9.5443752, + 50.814491201 + ], + [ + 9.5433798, + 50.813811601 + ], + [ + 9.5433204, + 50.813771101 + ], + [ + 9.5430649, + 50.813589401 + ], + [ + 9.543054507, + 50.813581942 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-bs.2025-12-15_10-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de318", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.83025837207379,9.575217883266024,50.829371245629744,9.574525375865159", + "point": "50.83025837207379,9.575217883266024", + "startLcPosition": "146", + "impact": { + "lower": "Hattenbacher Dreieck", + "upper": "Kirchheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Kirchheim - Hattenbacher Dreieck", + "startTimestamp": "2025-12-15T10:00:00+01:00", + "coordinate": { + "lat": 50.83025837207379, + "long": 9.575217883266024 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 10:00 Uhr", + "Ende: 15.04.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A7: Kassel -> Fulda, zwischen Kirchheim und 4.2 km vor AD Hattenbacher Dreieck", + "", + "L\u00e4nge: 0.11 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.575217883, + 50.830258372 + ], + [ + 9.574751, + 50.829663101 + ], + [ + 9.574525376, + 50.829371246 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-bs.2025-12-15_10-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de324", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.829371245629744,9.574525375865159,50.8260375860799,9.572404845688059", + "point": "50.829371245629744,9.574525375865159", + "startLcPosition": "146", + "impact": { + "lower": "Hattenbacher Dreieck", + "upper": "Kirchheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Kirchheim - Hattenbacher Dreieck", + "startTimestamp": "2025-12-15T10:00:00+01:00", + "coordinate": { + "lat": 50.829371245629744, + "long": 9.574525375865159 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 10:00 Uhr", + "Ende: 15.04.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A7: Kassel -> Fulda, zwischen 0.1 km hinter Kirchheim und 3.8 km vor AD Hattenbacher Dreieck", + "", + "L\u00e4nge: 0.4 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.574525376, + 50.829371246 + ], + [ + 9.574301, + 50.829081001 + ], + [ + 9.5735748, + 50.828047601 + ], + [ + 9.5733609, + 50.827735701 + ], + [ + 9.5730824, + 50.827291501 + ], + [ + 9.5729109, + 50.826980101 + ], + [ + 9.5726745, + 50.826540101 + ], + [ + 9.572404846, + 50.826037586 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-bs.2025-12-15_10-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de316", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.83122470110299,9.57597633883232,50.83025837207379,9.575217883266024", + "point": "50.83122470110299,9.57597633883232", + "startLcPosition": "147", + "impact": { + "lower": "Hattenbacher Dreieck", + "upper": "Kirchheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Kirchheim - Hattenbacher Dreieck", + "startTimestamp": "2025-12-15T10:00:00+01:00", + "coordinate": { + "lat": 50.83122470110299, + "long": 9.57597633883232 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 10:00 Uhr", + "Ende: 15.04.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A7: Kassel -> Fulda, zwischen 0.1 km hinter AS Kirchheim und 4.3 km vor AD Hattenbacher Dreieck", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 10.25 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.575976339, + 50.831224701 + ], + [ + 9.5757613, + 50.830951201 + ], + [ + 9.575217883, + 50.830258372 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-bs.2025-12-15_10-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de314", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.835733915319004,9.579140903540655,50.83122470110299,9.57597633883232", + "point": "50.835733915319004,9.579140903540655", + "startLcPosition": "148", + "impact": { + "lower": "Kirchheim", + "upper": "Kirchheimer Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "ARROW_UP", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Kirchheimer Dreieck - Kirchheim", + "startTimestamp": "2025-12-15T10:00:00+01:00", + "coordinate": { + "lat": 50.835733915319004, + "long": 9.579140903540655 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 10:00 Uhr", + "Ende: 15.04.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A7: Kassel -> Fulda, zwischen 0.4 km hinter AD Kirchheimer Dreieck und 0.1 km vor Kirchheim", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 5.55 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.579140904, + 50.835733915 + ], + [ + 9.578877, + 50.835226801 + ], + [ + 9.5787716, + 50.835020901 + ], + [ + 9.5787146, + 50.834910501 + ], + [ + 9.5785914, + 50.834691501 + ], + [ + 9.5784607, + 50.834474201 + ], + [ + 9.5783227, + 50.834258701 + ], + [ + 9.5781773, + 50.834045201 + ], + [ + 9.5780225, + 50.833830701 + ], + [ + 9.5778604, + 50.833618401 + ], + [ + 9.5777484, + 50.833475201 + ], + [ + 9.5775651, + 50.833240701 + ], + [ + 9.5773056, + 50.832917101 + ], + [ + 9.5767739, + 50.832232701 + ], + [ + 9.5766405, + 50.832069401 + ], + [ + 9.575976339, + 50.831224701 + ] + ] + } + }, + { + "identifier": "2026-017694--vi-fbm.2026-04-14_18-00-00-000.devi-zus.2026-04-14_18-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.839935150840994,9.581579517847542,50.84250316802137,9.582888259721548", + "point": "50.839935150840994,9.581579517847542", + "startLcPosition": "148", + "impact": { + "lower": "Bad Hersfeld-West", + "upper": "Kirchheimer Dreieck", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Kirchheimer Dreieck - Bad Hersfeld-West", + "coordinate": { + "lat": 50.839935150840994, + "long": 9.581579517847542 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 18:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A7: Fulda -> Kassel, zwischen 0.1 km hinter AD Kirchheimer Dreieck und 9.2 km vor AS Bad Hersfeld-West", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 von Kirchheimer Dreieck (AD) nach Bad Hersfeld-West (AS) \u00c4nderung Verkehrsf\u00fchrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.581579518, + 50.839935151 + ], + [ + 9.5821311, + 50.840996801 + ], + [ + 9.58288826, + 50.842503168 + ] + ] + } + }, + { + "identifier": "2026-017816--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_010.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.915921371672816,9.56556494627136,50.91955282831008,9.55929895248972", + "point": "50.915921371672816,9.56556494627136", + "startLcPosition": "149", + "impact": { + "lower": "Pommer", + "upper": "Bad Hersfeld-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Bad Hersfeld-West - Pommer", + "coordinate": { + "lat": 50.915921371672816, + "long": 9.56556494627136 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A7: Fulda -> Kassel, zwischen 0.9 km hinter AS Bad Hersfeld-West und 2.6 km vor Pommer", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A7 von Bad Hersfeld-West (AS) nach Pommer (Rastplatz) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.565564946, + 50.915921372 + ], + [ + 9.5641641, + 50.916642801 + ], + [ + 9.5632979, + 50.917093201 + ], + [ + 9.5622375, + 50.917636201 + ], + [ + 9.5618736, + 50.917833901 + ], + [ + 9.5613858, + 50.918105101 + ], + [ + 9.560837, + 50.918446201 + ], + [ + 9.5601272, + 50.918928101 + ], + [ + 9.5594772, + 50.919412501 + ], + [ + 9.559298952, + 50.919552828 + ] + ] + } + }, + { + "identifier": "2026-017816--vi-bs.2026-04-15_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_010.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.916489333057896,9.564462104949408,50.91955282831008,9.55929895248972", + "point": "50.916489333057896,9.564462104949408", + "startLcPosition": "149", + "impact": { + "lower": "Pommer", + "upper": "Bad Hersfeld-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Bad Hersfeld-West - Pommer", + "coordinate": { + "lat": 50.916489333057896, + "long": 9.564462104949408 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "", + "A7: Fulda -> Kassel, zwischen 1.0 km hinter AS Bad Hersfeld-West und 2.6 km vor Pommer", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A7 von Bad Hersfeld-West (AS) nach Pommer (Rastplatz) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.564462105, + 50.916489333 + ], + [ + 9.5641641, + 50.916642801 + ], + [ + 9.5632979, + 50.917093201 + ], + [ + 9.5622375, + 50.917636201 + ], + [ + 9.5618736, + 50.917833901 + ], + [ + 9.5613858, + 50.918105101 + ], + [ + 9.560837, + 50.918446201 + ], + [ + 9.5601272, + 50.918928101 + ], + [ + 9.5594772, + 50.919412501 + ], + [ + 9.559298952, + 50.919552828 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-bs.2025-12-15_10-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de312", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.842112582887374,9.582481175489512,50.835733915319004,9.579140903540655", + "point": "50.842112582887374,9.582481175489512", + "startLcPosition": "149", + "impact": { + "lower": "Kirchheim", + "upper": "Bad Hersfeld-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Bad Hersfeld-West - Kirchheim", + "startTimestamp": "2025-12-15T10:00:00+01:00", + "coordinate": { + "lat": 50.842112582887374, + "long": 9.582481175489512 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 10:00 Uhr", + "Ende: 15.04.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A7: Kassel -> Fulda, zwischen 9.3 km hinter AS Bad Hersfeld-West und 0.4 km vor AS Kirchheim", + "", + "L\u00e4nge: 0.75 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.582481175, + 50.842112583 + ], + [ + 9.5824519, + 50.842051701 + ], + [ + 9.5819295, + 50.841110101 + ], + [ + 9.5812232, + 50.839742101 + ], + [ + 9.5810475, + 50.839401701 + ], + [ + 9.580285, + 50.837934901 + ], + [ + 9.5792774, + 50.835996201 + ], + [ + 9.579140904, + 50.835733915 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-bs.2025-12-15_10-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de310", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.84684209112343,9.584738266859741,50.842112582887374,9.582481175489512", + "point": "50.84684209112343,9.584738266859741", + "startLcPosition": "149", + "impact": { + "lower": "Kirchheimer Dreieck", + "upper": "Bad Hersfeld-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Bad Hersfeld-West - Kirchheimer Dreieck", + "startTimestamp": "2025-12-15T10:00:00+01:00", + "coordinate": { + "lat": 50.84684209112343, + "long": 9.584738266859741 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 10:00 Uhr", + "Ende: 15.04.26 um 23:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A7: Kassel -> Fulda, zwischen 8.7 km hinter AS Bad Hersfeld-West und 0.4 km vor AD Kirchheimer Dreieck", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 9.25 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.584738267, + 50.846842091 + ], + [ + 9.5846974, + 50.846736001 + ], + [ + 9.5844802, + 50.846269401 + ], + [ + 9.582481175, + 50.842112583 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-fbm.2026-04-14_20-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de337", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.84297278395098,9.58289481750345,50.839564433933084,9.581131495510236", + "point": "50.84297278395098,9.58289481750345", + "startLcPosition": "149", + "impact": { + "lower": "Kirchheimer Dreieck", + "upper": "Bad Hersfeld-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Bad Hersfeld-West - Kirchheimer Dreieck", + "coordinate": { + "lat": 50.84297278395098, + "long": 9.58289481750345 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A7: Kassel -> Fulda, zwischen 9.2 km hinter AS Bad Hersfeld-West und 0.1 km vor AD Kirchheimer Dreieck", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.582894818, + 50.842972784 + ], + [ + 9.5824519, + 50.842051701 + ], + [ + 9.5819295, + 50.841110101 + ], + [ + 9.5812232, + 50.839742101 + ], + [ + 9.581131496, + 50.839564434 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-fbm.2026-04-14_20-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de335", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.84297278395098,9.58289481750345,50.839564433933084,9.581131495510236", + "point": "50.84297278395098,9.58289481750345", + "startLcPosition": "149", + "impact": { + "lower": "Kirchheimer Dreieck", + "upper": "Bad Hersfeld-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Bad Hersfeld-West - Kirchheimer Dreieck", + "coordinate": { + "lat": 50.84297278395098, + "long": 9.58289481750345 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A7: Kassel -> Fulda, zwischen 9.2 km hinter AS Bad Hersfeld-West und 0.1 km vor AD Kirchheimer Dreieck", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.582894818, + 50.842972784 + ], + [ + 9.5824519, + 50.842051701 + ], + [ + 9.5819295, + 50.841110101 + ], + [ + 9.5812232, + 50.839742101 + ], + [ + 9.581131496, + 50.839564434 + ] + ] + } + }, + { + "identifier": "2023-004988--vi-fbm.2026-04-08_08-00-00-000.devi-zus.2023-10-10_21-00-00-000_018.f.de332", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.839658457678496,9.581180026655497,50.837698456400815,9.580162107978486", + "point": "50.839658457678496,9.581180026655497", + "startLcPosition": "149", + "impact": { + "lower": "Kirchheim", + "upper": "Bad Hersfeld-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Bad Hersfeld-West - Kirchheim", + "coordinate": { + "lat": 50.839658457678496, + "long": 9.581180026655497 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 00:00 bis zum 10.04.26 18:00 Uhr.", + "", + "A7: Kassel -> Fulda, zwischen 9.5 km hinter AS Bad Hersfeld-West und 0.7 km vor AS Kirchheim", + "", + "L\u00e4nge: 0.23 km | Maximale Durchfahrtsbreite: 6.05 m", + "", + "A7 Umbau Kirchheimer-Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.581180027, + 50.839658458 + ], + [ + 9.5810475, + 50.839401701 + ], + [ + 9.580285, + 50.837934901 + ], + [ + 9.580162108, + 50.837698456 + ] + ] + } + }, + { + "identifier": "2026-017694--vi-fbm.2026-04-14_18-00-00-000.devi-zus.2026-04-14_18-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.84684209112343,9.584738266859741,50.8434028839642,9.583101644306497", + "point": "50.84684209112343,9.584738266859741", + "startLcPosition": "149", + "impact": { + "lower": "Kirchheimer Dreieck", + "upper": "Bad Hersfeld-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Bad Hersfeld-West - Kirchheimer Dreieck", + "coordinate": { + "lat": 50.84684209112343, + "long": 9.584738266859741 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 18:00 bis 20:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 8.7 km hinter AS Bad Hersfeld-West und 0.5 km vor AD Kirchheimer Dreieck", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 von Kirchheimer Dreieck (AD) nach Bad Hersfeld-West (AS) \u00c4nderung Verkehrsf\u00fchrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.584738267, + 50.846842091 + ], + [ + 9.5846974, + 50.846736001 + ], + [ + 9.5844802, + 50.846269401 + ], + [ + 9.583101644, + 50.843402884 + ] + ] + } + }, + { + "identifier": "2026-017816--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_010.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.91945293382118,9.559106989615024,50.9158038742731,9.565413839134003", + "point": "50.91945293382118,9.559106989615024", + "startLcPosition": "150", + "impact": { + "lower": "Bad Hersfeld-West", + "upper": "Pommer", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Pommer - Bad Hersfeld-West", + "coordinate": { + "lat": 50.91945293382118, + "long": 9.559106989615024 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 2.7 km hinter Pommer und 0.9 km vor AS Bad Hersfeld-West", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A7 von Bad Hersfeld-West (AS) nach Pommer (Rastplatz) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.55910699, + 50.919452934 + ], + [ + 9.5600088, + 50.918775301 + ], + [ + 9.5607083, + 50.918310001 + ], + [ + 9.5611196, + 50.918046901 + ], + [ + 9.5614557, + 50.917857501 + ], + [ + 9.5618905, + 50.917619901 + ], + [ + 9.56313, + 50.916979801 + ], + [ + 9.5641111, + 50.916472201 + ], + [ + 9.565413839, + 50.915803874 + ] + ] + } + }, + { + "identifier": "2026-017737--vi-bs.2026-04-10_08-00-00-000.devi-zus.2026-04-10_08-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.941706893257454,9.539950681752924,50.94460936421516,9.532930080829807", + "point": "50.941706893257454,9.539950681752924", + "startLcPosition": "150", + "impact": { + "lower": "Fuchsrain", + "upper": "Pommer", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Pommer - Fuchsrain", + "coordinate": { + "lat": 50.941706893257454, + "long": 9.539950681752924 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 11:00 Uhr", + "", + "A7: Fulda -> Kassel, zwischen 0.4 km hinter Pommer und 0.1 km vor Fuchsrain", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Pommer (Rastplatz) nach Fuchsrain (Rastplatz) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.539950682, + 50.941706893 + ], + [ + 9.5392619, + 50.942268301 + ], + [ + 9.5384538, + 50.942798501 + ], + [ + 9.5376226, + 50.943247901 + ], + [ + 9.5371195, + 50.943483801 + ], + [ + 9.5366375, + 50.943676601 + ], + [ + 9.53617, + 50.943850301 + ], + [ + 9.535628, + 50.944030901 + ], + [ + 9.535429, + 50.944084001 + ], + [ + 9.5351361, + 50.944170101 + ], + [ + 9.5351138, + 50.944175501 + ], + [ + 9.5341707, + 50.944401801 + ], + [ + 9.5333272, + 50.944553201 + ], + [ + 9.532930081, + 50.944609364 + ] + ] + } + }, + { + "identifier": "2026-017816--vi-bs.2026-04-16_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_010.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.91944605496153,9.559116144347405,50.916376180033154,9.564298273268736", + "point": "50.91944605496153,9.559116144347405", + "startLcPosition": "150", + "impact": { + "lower": "Bad Hersfeld-West", + "upper": "Pommer", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Pommer - Bad Hersfeld-West", + "coordinate": { + "lat": 50.91944605496153, + "long": 9.559116144347405 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 2.7 km hinter Pommer und 1.0 km vor AS Bad Hersfeld-West", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A7 von Bad Hersfeld-West (AS) nach Pommer (Rastplatz) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.559116144, + 50.919446055 + ], + [ + 9.5600088, + 50.918775301 + ], + [ + 9.5607083, + 50.918310001 + ], + [ + 9.5611196, + 50.918046901 + ], + [ + 9.5614557, + 50.917857501 + ], + [ + 9.5618905, + 50.917619901 + ], + [ + 9.56313, + 50.916979801 + ], + [ + 9.5641111, + 50.916472201 + ], + [ + 9.564298273, + 50.91637618 + ] + ] + } + }, + { + "identifier": "2026-017816--vi-bs.2026-04-17_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_010.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.91944605496153,9.559116144347405,50.916376180033154,9.564298273268736", + "point": "50.91944605496153,9.559116144347405", + "startLcPosition": "150", + "impact": { + "lower": "Bad Hersfeld-West", + "upper": "Pommer", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Pommer - Bad Hersfeld-West", + "coordinate": { + "lat": 50.91944605496153, + "long": 9.559116144347405 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 09:00 bis 16:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 2.7 km hinter Pommer und 1.0 km vor AS Bad Hersfeld-West", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A7 von Bad Hersfeld-West (AS) nach Pommer (Rastplatz) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.559116144, + 50.919446055 + ], + [ + 9.5600088, + 50.918775301 + ], + [ + 9.5607083, + 50.918310001 + ], + [ + 9.5611196, + 50.918046901 + ], + [ + 9.5614557, + 50.917857501 + ], + [ + 9.5618905, + 50.917619901 + ], + [ + 9.56313, + 50.916979801 + ], + [ + 9.5641111, + 50.916472201 + ], + [ + 9.564298273, + 50.91637618 + ] + ] + } + }, + { + "identifier": "2026-017737--vi-bs.2026-04-10_10-30-00-000.devi-zus.2026-04-10_08-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.948094388445575,9.516075980524858,50.952205112608326,9.508814439233008", + "point": "50.948094388445575,9.516075980524858", + "startLcPosition": "151", + "impact": { + "lower": "Homberg (Efze)", + "upper": "Fuchsrain", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Fuchsrain - Homberg (Efze)", + "coordinate": { + "lat": 50.948094388445575, + "long": 9.516075980524858 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 10:30 bis 14:00 Uhr", + "", + "A7: Fulda -> Kassel, zwischen 1.2 km hinter Fuchsrain und 7.1 km vor AS Homberg (Efze)", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Pommer (Rastplatz) nach Fuchsrain (Rastplatz) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.516075981, + 50.948094388 + ], + [ + 9.5157828, + 50.948171901 + ], + [ + 9.5146631, + 50.948484701 + ], + [ + 9.5136486, + 50.948822401 + ], + [ + 9.5130787, + 50.949066601 + ], + [ + 9.5126195, + 50.949294801 + ], + [ + 9.5122868, + 50.949481501 + ], + [ + 9.511951, + 50.949696601 + ], + [ + 9.5113862, + 50.950117901 + ], + [ + 9.510577, + 50.950773801 + ], + [ + 9.5097084, + 50.951479001 + ], + [ + 9.5090892, + 50.951976901 + ], + [ + 9.508814439, + 50.952205113 + ] + ] + } + }, + { + "identifier": "2026-017737--vi-bs.2026-04-10_08-00-00-000.devi-zus.2026-04-10_08-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.94446320296011,9.53287792759348,50.9416141494273,9.539755840245634", + "point": "50.94446320296011,9.53287792759348", + "startLcPosition": "151", + "impact": { + "lower": "Pommer", + "upper": "Fuchsrain", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Fuchsrain - Pommer", + "coordinate": { + "lat": 50.94446320296011, + "long": 9.53287792759348 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 11:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 0.1 km hinter Fuchsrain und 0.3 km vor Pommer", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Pommer (Rastplatz) nach Fuchsrain (Rastplatz) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.532877928, + 50.944463203 + ], + [ + 9.533262, + 50.944408201 + ], + [ + 9.5343417, + 50.944198801 + ], + [ + 9.5349146, + 50.944061501 + ], + [ + 9.5355228, + 50.943893801 + ], + [ + 9.5360467, + 50.943724801 + ], + [ + 9.5365051, + 50.943550301 + ], + [ + 9.5370209, + 50.943333501 + ], + [ + 9.5375025, + 50.943115001 + ], + [ + 9.5381115, + 50.942787701 + ], + [ + 9.5383223, + 50.942663901 + ], + [ + 9.5388885, + 50.942292601 + ], + [ + 9.5393403, + 50.941975701 + ], + [ + 9.5394645, + 50.941865101 + ], + [ + 9.53975584, + 50.941614149 + ] + ] + } + }, + { + "identifier": "2026-015451--vi-bs.2026-04-20_07-00-00-000.devi-zus.2026-04-20_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.0040035794062,9.481387315998123,51.33661140832263,9.588730640871313", + "point": "51.0040035794062,9.481387315998123", + "startLcPosition": "152", + "impact": { + "lower": "Staufenberg", + "upper": "Homberg (Efze)", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Hannover", + "title": "A7 | Homberg (Efze) - Staufenberg", + "coordinate": { + "lat": 51.0040035794062, + "long": 9.481387315998123 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 20.04.26 und dem 27.04.26 von 07:00 bis 18:00 Uhr.", + "", + "A7: Fulda -> Hannover, zwischen 0.1 km hinter AS Homberg (Efze) und 1.9 km vor Staufenberg", + "", + "L\u00e4nge: 41.38 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "Abfallsammlung freie Strecke - Wanderbaustelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.481387316, + 51.004003579 + ], + [ + 9.4822491, + 51.004539101 + ], + [ + 9.4824596, + 51.004671201 + ], + [ + 9.4845899, + 51.005998301 + ], + [ + 9.4853289, + 51.006536401 + ], + [ + 9.4860465, + 51.007075901 + ], + [ + 9.4865858, + 51.007552801 + ], + [ + 9.4868609, + 51.007808601 + ], + [ + 9.4871383, + 51.008087001 + ], + [ + 9.4875676, + 51.008579801 + ], + [ + 9.4877593, + 51.008832901 + ], + [ + 9.4879375, + 51.009087901 + ], + [ + 9.4882617, + 51.009625001 + ], + [ + 9.4884138, + 51.009916201 + ], + [ + 9.4885651, + 51.010214801 + ], + [ + 9.488764, + 51.010730601 + ], + [ + 9.4889021, + 51.011227101 + ], + [ + 9.48901, + 51.011702401 + ], + [ + 9.4890714, + 51.012153801 + ], + [ + 9.4890996, + 51.012621701 + ], + [ + 9.4891333, + 51.013093701 + ], + [ + 9.4891586, + 51.013540601 + ], + [ + 9.4892056, + 51.014223001 + ], + [ + 9.489247, + 51.014899801 + ], + [ + 9.4893362, + 51.016429001 + ], + [ + 9.4894425, + 51.018013201 + ], + [ + 9.4895656, + 51.019938401 + ], + [ + 9.489597, + 51.020475401 + ], + [ + 9.4896224, + 51.021102101 + ], + [ + 9.489604, + 51.021412501 + ], + [ + 9.489565, + 51.021738501 + ], + [ + 9.4895178, + 51.022001401 + ], + [ + 9.4894499, + 51.022286301 + ], + [ + 9.4893168, + 51.022678801 + ], + [ + 9.4891401, + 51.023090001 + ], + [ + 9.4888403, + 51.023634901 + ], + [ + 9.488597, + 51.023992301 + ], + [ + 9.4883244, + 51.024355301 + ], + [ + 9.4879513, + 51.024768901 + ], + [ + 9.4875014, + 51.025235701 + ], + [ + 9.4871692, + 51.025594901 + ], + [ + 9.4863002, + 51.026500201 + ], + [ + 9.4860083, + 51.026830401 + ], + [ + 9.485916, + 51.026934601 + ], + [ + 9.4855924, + 51.027344701 + ], + [ + 9.4853385, + 51.027749101 + ], + [ + 9.4851105, + 51.028174001 + ], + [ + 9.4849054, + 51.028661401 + ], + [ + 9.4847789, + 51.029095401 + ], + [ + 9.4846882, + 51.029498501 + ], + [ + 9.4846556, + 51.029958601 + ], + [ + 9.484649, + 51.030401201 + ], + [ + 9.4847185, + 51.031034701 + ], + [ + 9.48485, + 51.031610101 + ], + [ + 9.4851132, + 51.032270401 + ], + [ + 9.4852869, + 51.032579101 + ], + [ + 9.4856419, + 51.033139001 + ], + [ + 9.4859976, + 51.033590301 + ], + [ + 9.4862826, + 51.033920601 + ], + [ + 9.4873383, + 51.035097501 + ], + [ + 9.4880199, + 51.035854501 + ], + [ + 9.4888667, + 51.036795401 + ], + [ + 9.4897087, + 51.037741301 + ], + [ + 9.490237, + 51.038318301 + ], + [ + 9.4916207, + 51.039873201 + ], + [ + 9.492451, + 51.040790401 + ], + [ + 9.4931809, + 51.041626101 + ], + [ + 9.4944236, + 51.043011701 + ], + [ + 9.4956339, + 51.044367801 + ], + [ + 9.4961251, + 51.044977701 + ], + [ + 9.4965282, + 51.045553701 + ], + [ + 9.4967459, + 51.045978601 + ], + [ + 9.4969479, + 51.046413001 + ], + [ + 9.4970928, + 51.046791901 + ], + [ + 9.4972492, + 51.047405301 + ], + [ + 9.497323, + 51.047822701 + ], + [ + 9.4973569, + 51.048266201 + ], + [ + 9.4973577, + 51.048663601 + ], + [ + 9.497325, + 51.049110001 + ], + [ + 9.4972622, + 51.049522701 + ], + [ + 9.497155, + 51.050012201 + ], + [ + 9.4969669, + 51.050929501 + ], + [ + 9.4966629, + 51.052503201 + ], + [ + 9.4964747, + 51.053391801 + ], + [ + 9.4962749, + 51.054279901 + ], + [ + 9.4958805, + 51.056060701 + ], + [ + 9.4956956, + 51.056918901 + ], + [ + 9.4955038, + 51.057796501 + ], + [ + 9.4951412, + 51.059534601 + ], + [ + 9.4947366, + 51.060886601 + ], + [ + 9.4942585, + 51.062238401 + ], + [ + 9.4938086, + 51.063485401 + ], + [ + 9.4933685, + 51.064735201 + ], + [ + 9.4924744, + 51.067213301 + ], + [ + 9.4915887, + 51.069659401 + ], + [ + 9.4906871, + 51.072158901 + ], + [ + 9.4903616, + 51.072941801 + ], + [ + 9.490025, + 51.073683801 + ], + [ + 9.4897977, + 51.074138901 + ], + [ + 9.4895394, + 51.074605101 + ], + [ + 9.4890285, + 51.075526801 + ], + [ + 9.4881104, + 51.077132901 + ], + [ + 9.4871862, + 51.078764001 + ], + [ + 9.4868325, + 51.079365301 + ], + [ + 9.4864931, + 51.079974601 + ], + [ + 9.4861564, + 51.080589401 + ], + [ + 9.4858501, + 51.081276501 + ], + [ + 9.485678, + 51.081721501 + ], + [ + 9.4855338, + 51.082154501 + ], + [ + 9.4854183, + 51.082587801 + ], + [ + 9.4853128, + 51.083035401 + ], + [ + 9.48496, + 51.084972201 + ], + [ + 9.484741, + 51.086268501 + ], + [ + 9.484447, + 51.087956901 + ], + [ + 9.4844082, + 51.088158401 + ], + [ + 9.4841437, + 51.089652401 + ], + [ + 9.4838696, + 51.091250001 + ], + [ + 9.4838096, + 51.091612501 + ], + [ + 9.4836906, + 51.092240501 + ], + [ + 9.4834915, + 51.093417901 + ], + [ + 9.4832911, + 51.094567201 + ], + [ + 9.4832534, + 51.095074801 + ], + [ + 9.4832511, + 51.095307801 + ], + [ + 9.4832615, + 51.095592401 + ], + [ + 9.4832819, + 51.095850801 + ], + [ + 9.483319, + 51.096113501 + ], + [ + 9.4833999, + 51.096449301 + ], + [ + 9.4835325, + 51.096933201 + ], + [ + 9.483639, + 51.097218301 + ], + [ + 9.4837717, + 51.097524101 + ], + [ + 9.4840584, + 51.098063901 + ], + [ + 9.4843237, + 51.098520401 + ], + [ + 9.4846054, + 51.098971301 + ], + [ + 9.4848617, + 51.099450101 + ], + [ + 9.4849548, + 51.099660201 + ], + [ + 9.4850639, + 51.099902901 + ], + [ + 9.4851476, + 51.100169601 + ], + [ + 9.4852339, + 51.100467301 + ], + [ + 9.48531, + 51.100933801 + ], + [ + 9.4853309, + 51.101253801 + ], + [ + 9.4853218, + 51.101599101 + ], + [ + 9.4852876, + 51.101903001 + ], + [ + 9.485227, + 51.102232701 + ], + [ + 9.4851293, + 51.102570101 + ], + [ + 9.4850274, + 51.102880001 + ], + [ + 9.4847031, + 51.103571201 + ], + [ + 9.4842156, + 51.104636001 + ], + [ + 9.4837089, + 51.105717601 + ], + [ + 9.4834565, + 51.106226601 + ], + [ + 9.4832489, + 51.106744301 + ], + [ + 9.4831023, + 51.107237601 + ], + [ + 9.4830385, + 51.107597601 + ], + [ + 9.4830069, + 51.107978301 + ], + [ + 9.4830046, + 51.108496401 + ], + [ + 9.4830554, + 51.108953301 + ], + [ + 9.4831524, + 51.109400301 + ], + [ + 9.4833779, + 51.110136301 + ], + [ + 9.4837988, + 51.111393501 + ], + [ + 9.4841314, + 51.112378001 + ], + [ + 9.4844761, + 51.113410701 + ], + [ + 9.4845774, + 51.113778301 + ], + [ + 9.4846826, + 51.114187101 + ], + [ + 9.4847607, + 51.114589201 + ], + [ + 9.4848383, + 51.115265901 + ], + [ + 9.4848624, + 51.115557401 + ], + [ + 9.4848753, + 51.115900401 + ], + [ + 9.4848624, + 51.116217401 + ], + [ + 9.4848305, + 51.116558501 + ], + [ + 9.484777, + 51.116983501 + ], + [ + 9.484731, + 51.117237701 + ], + [ + 9.4846558, + 51.117555101 + ], + [ + 9.4845173, + 51.118002701 + ], + [ + 9.4843742, + 51.118387701 + ], + [ + 9.4842073, + 51.118771501 + ], + [ + 9.4840148, + 51.119175601 + ], + [ + 9.4837752, + 51.119606701 + ], + [ + 9.4835159, + 51.120015701 + ], + [ + 9.4832502, + 51.120387301 + ], + [ + 9.4829982, + 51.120716101 + ], + [ + 9.4827181, + 51.121047001 + ], + [ + 9.482405, + 51.121384201 + ], + [ + 9.4822392, + 51.121561301 + ], + [ + 9.4818393, + 51.121947101 + ], + [ + 9.4812441, + 51.122451801 + ], + [ + 9.4808996, + 51.122738001 + ], + [ + 9.480446, + 51.123062101 + ], + [ + 9.4793989, + 51.123755801 + ], + [ + 9.4789199, + 51.124073101 + ], + [ + 9.4787037, + 51.124216001 + ], + [ + 9.4783135, + 51.124464501 + ], + [ + 9.4776007, + 51.124940101 + ], + [ + 9.4772554, + 51.125180101 + ], + [ + 9.4768942, + 51.125446901 + ], + [ + 9.4765899, + 51.125687501 + ], + [ + 9.4762473, + 51.125968501 + ], + [ + 9.4759621, + 51.126236301 + ], + [ + 9.475646, + 51.126551201 + ], + [ + 9.4755541, + 51.126647601 + ], + [ + 9.4752678, + 51.126966301 + ], + [ + 9.4750028, + 51.127292201 + ], + [ + 9.4747595, + 51.127624701 + ], + [ + 9.4745383, + 51.127963201 + ], + [ + 9.4743397, + 51.128307101 + ], + [ + 9.4741639, + 51.128655901 + ], + [ + 9.4740112, + 51.129009001 + ], + [ + 9.473882, + 51.129365801 + ], + [ + 9.4737764, + 51.129725601 + ], + [ + 9.4736947, + 51.130087801 + ], + [ + 9.4736369, + 51.130451801 + ], + [ + 9.4736031, + 51.130817101 + ], + [ + 9.4735935, + 51.131182901 + ], + [ + 9.473608, + 51.131548601 + ], + [ + 9.4736466, + 51.131913601 + ], + [ + 9.4737093, + 51.132277301 + ], + [ + 9.4737959, + 51.132639101 + ], + [ + 9.4739047, + 51.133025701 + ], + [ + 9.4740861, + 51.133569901 + ], + [ + 9.4741931, + 51.133882101 + ], + [ + 9.4744067, + 51.134554001 + ], + [ + 9.4746055, + 51.135227701 + ], + [ + 9.4747896, + 51.135903101 + ], + [ + 9.4749588, + 51.136579901 + ], + [ + 9.4751132, + 51.137258201 + ], + [ + 9.4752088, + 51.137715501 + ], + [ + 9.4752976, + 51.138173201 + ], + [ + 9.4753796, + 51.138631501 + ], + [ + 9.4754549, + 51.139090201 + ], + [ + 9.4755234, + 51.139549401 + ], + [ + 9.4755852, + 51.140008901 + ], + [ + 9.4756493, + 51.140551401 + ], + [ + 9.475704, + 51.141094301 + ], + [ + 9.4757492, + 51.141637601 + ], + [ + 9.4758366, + 51.143448801 + ], + [ + 9.4758526, + 51.144302801 + ], + [ + 9.4758538, + 51.144414701 + ], + [ + 9.4758819, + 51.147068601 + ], + [ + 9.4758857, + 51.147656201 + ], + [ + 9.4759066, + 51.148072601 + ], + [ + 9.4759525, + 51.148385101 + ], + [ + 9.4760213, + 51.148751401 + ], + [ + 9.4761001, + 51.149068401 + ], + [ + 9.476211, + 51.149426501 + ], + [ + 9.4763354, + 51.149768501 + ], + [ + 9.476477, + 51.150141401 + ], + [ + 9.4766387, + 51.150445001 + ], + [ + 9.4768673, + 51.150863901 + ], + [ + 9.4772193, + 51.151377201 + ], + [ + 9.4775565, + 51.151774801 + ], + [ + 9.4781034, + 51.152341501 + ], + [ + 9.4785337, + 51.152787101 + ], + [ + 9.4796826, + 51.153874001 + ], + [ + 9.4801387, + 51.154323301 + ], + [ + 9.4803764, + 51.154573801 + ], + [ + 9.4806078, + 51.154832901 + ], + [ + 9.4807975, + 51.155095301 + ], + [ + 9.4809426, + 51.155326101 + ], + [ + 9.4811167, + 51.155626901 + ], + [ + 9.4812886, + 51.155963001 + ], + [ + 9.4815111, + 51.156498101 + ], + [ + 9.4816731, + 51.157049401 + ], + [ + 9.4817671, + 51.157606901 + ], + [ + 9.4817924, + 51.158167201 + ], + [ + 9.4817489, + 51.158727101 + ], + [ + 9.4816369, + 51.159283201 + ], + [ + 9.481554, + 51.159564001 + ], + [ + 9.481457, + 51.159832301 + ], + [ + 9.4813036, + 51.160180201 + ], + [ + 9.4811305, + 51.160525601 + ], + [ + 9.4808982, + 51.160896301 + ], + [ + 9.4802426, + 51.161864301 + ], + [ + 9.4772685, + 51.166282901 + ], + [ + 9.4766124, + 51.167252301 + ], + [ + 9.4745331, + 51.170315601 + ], + [ + 9.4743326, + 51.170619501 + ], + [ + 9.474144, + 51.170926401 + ], + [ + 9.4739676, + 51.171236201 + ], + [ + 9.4738034, + 51.171548501 + ], + [ + 9.4736516, + 51.171863401 + ], + [ + 9.4735121, + 51.172180401 + ], + [ + 9.4733852, + 51.172499601 + ], + [ + 9.4732709, + 51.172820601 + ], + [ + 9.4731693, + 51.173143201 + ], + [ + 9.4730803, + 51.173467401 + ], + [ + 9.4730247, + 51.173699201 + ], + [ + 9.4729756, + 51.173931701 + ], + [ + 9.4729408, + 51.174119701 + ], + [ + 9.4729102, + 51.174308101 + ], + [ + 9.4728655, + 51.174651001 + ], + [ + 9.4728349, + 51.174994501 + ], + [ + 9.4728185, + 51.175338401 + ], + [ + 9.4728162, + 51.175682501 + ], + [ + 9.4728281, + 51.176026501 + ], + [ + 9.4728541, + 51.176370101 + ], + [ + 9.4728943, + 51.176713201 + ], + [ + 9.4729486, + 51.177055601 + ], + [ + 9.4730685, + 51.177687901 + ], + [ + 9.4733098, + 51.178746201 + ], + [ + 9.4739885, + 51.181747101 + ], + [ + 9.4740446, + 51.182253001 + ], + [ + 9.4740739, + 51.183460901 + ], + [ + 9.4740366, + 51.183820101 + ], + [ + 9.4739883, + 51.184210701 + ], + [ + 9.473936, + 51.184561401 + ], + [ + 9.4738831, + 51.184839101 + ], + [ + 9.4738207, + 51.185116001 + ], + [ + 9.473749, + 51.185392001 + ], + [ + 9.4736678, + 51.185666901 + ], + [ + 9.4735622, + 51.185983901 + ], + [ + 9.4734441, + 51.186299101 + ], + [ + 9.4733136, + 51.186612401 + ], + [ + 9.4731707, + 51.186923601 + ], + [ + 9.4721644, + 51.189032001 + ], + [ + 9.4720729, + 51.189215701 + ], + [ + 9.471474, + 51.190443501 + ], + [ + 9.4688518, + 51.195871701 + ], + [ + 9.4678749, + 51.197882601 + ], + [ + 9.4676408, + 51.198347701 + ], + [ + 9.4673908, + 51.198892701 + ], + [ + 9.4671662, + 51.199463301 + ], + [ + 9.4670888, + 51.199718401 + ], + [ + 9.4669648, + 51.200198001 + ], + [ + 9.4668848, + 51.200724401 + ], + [ + 9.4668538, + 51.201228201 + ], + [ + 9.4668733, + 51.201728701 + ], + [ + 9.4669617, + 51.202387801 + ], + [ + 9.4671246, + 51.203037301 + ], + [ + 9.4673097, + 51.203509401 + ], + [ + 9.4675538, + 51.204013501 + ], + [ + 9.4681791, + 51.205074501 + ], + [ + 9.469312, + 51.206933301 + ], + [ + 9.4702028, + 51.208401801 + ], + [ + 9.4702316, + 51.208439101 + ], + [ + 9.4710983, + 51.209829601 + ], + [ + 9.4784474, + 51.221771801 + ], + [ + 9.4788876, + 51.222490801 + ], + [ + 9.4793466, + 51.223218501 + ], + [ + 9.4797373, + 51.223774601 + ], + [ + 9.4800009, + 51.224131901 + ], + [ + 9.4803247, + 51.224545201 + ], + [ + 9.4808962, + 51.225200001 + ], + [ + 9.4813634, + 51.225686801 + ], + [ + 9.4817221, + 51.226054601 + ], + [ + 9.4822201, + 51.226514501 + ], + [ + 9.4827709, + 51.227000901 + ], + [ + 9.4833375, + 51.227457801 + ], + [ + 9.4840427, + 51.227992801 + ], + [ + 9.4850569, + 51.228702401 + ], + [ + 9.4863049, + 51.229551101 + ], + [ + 9.490072, + 51.232129501 + ], + [ + 9.5003111, + 51.239106501 + ], + [ + 9.5012688, + 51.239767601 + ], + [ + 9.5023769, + 51.240478301 + ], + [ + 9.5040258, + 51.241458701 + ], + [ + 9.5053731, + 51.242202401 + ], + [ + 9.5074451, + 51.243353401 + ], + [ + 9.5092192, + 51.244343101 + ], + [ + 9.5113066, + 51.245495701 + ], + [ + 9.5134834, + 51.246706401 + ], + [ + 9.513765, + 51.246865401 + ], + [ + 9.5140156, + 51.247010301 + ], + [ + 9.5142604, + 51.247162101 + ], + [ + 9.5145326, + 51.247343401 + ], + [ + 9.5148509, + 51.247576501 + ], + [ + 9.5150997, + 51.247768501 + ], + [ + 9.5153554, + 51.247984301 + ], + [ + 9.5156142, + 51.248231201 + ], + [ + 9.5158835, + 51.248504101 + ], + [ + 9.5160949, + 51.248737801 + ], + [ + 9.5162836, + 51.248962701 + ], + [ + 9.516455, + 51.249190201 + ], + [ + 9.5166269, + 51.249432601 + ], + [ + 9.5167754, + 51.249671001 + ], + [ + 9.5169645, + 51.250016401 + ], + [ + 9.5171187, + 51.250361601 + ], + [ + 9.5172346, + 51.250658401 + ], + [ + 9.5173212, + 51.250916001 + ], + [ + 9.517391, + 51.251177101 + ], + [ + 9.5174722, + 51.251488701 + ], + [ + 9.5175226, + 51.252315901 + ], + [ + 9.5174735, + 51.252963701 + ], + [ + 9.5173538, + 51.254716901 + ], + [ + 9.5172335, + 51.256479001 + ], + [ + 9.5172056, + 51.256907401 + ], + [ + 9.5170503, + 51.259128701 + ], + [ + 9.5168436, + 51.262083901 + ], + [ + 9.5167107, + 51.264055601 + ], + [ + 9.5166787, + 51.264588501 + ], + [ + 9.5166757, + 51.264871401 + ], + [ + 9.5166895, + 51.265212801 + ], + [ + 9.5167261, + 51.265609401 + ], + [ + 9.5167968, + 51.265976501 + ], + [ + 9.5168725, + 51.266358501 + ], + [ + 9.5169738, + 51.266671301 + ], + [ + 9.517073, + 51.266939801 + ], + [ + 9.5172257, + 51.267300401 + ], + [ + 9.5174083, + 51.267661401 + ], + [ + 9.5176542, + 51.268077401 + ], + [ + 9.5178589, + 51.268399801 + ], + [ + 9.518087, + 51.268704401 + ], + [ + 9.5183936, + 51.269080401 + ], + [ + 9.5187092, + 51.269431901 + ], + [ + 9.5190445, + 51.269757501 + ], + [ + 9.519325, + 51.270009401 + ], + [ + 9.5195997, + 51.270247501 + ], + [ + 9.5198646, + 51.270454301 + ], + [ + 9.52034, + 51.270808001 + ], + [ + 9.5207064, + 51.271046901 + ], + [ + 9.5211364, + 51.271310801 + ], + [ + 9.5233943, + 51.272585101 + ], + [ + 9.5273651, + 51.274846101 + ], + [ + 9.5287182, + 51.275611401 + ], + [ + 9.5338612, + 51.278529801 + ], + [ + 9.5367795, + 51.280219201 + ], + [ + 9.5430749, + 51.283796201 + ], + [ + 9.544693, + 51.284711501 + ], + [ + 9.5454143, + 51.285109401 + ], + [ + 9.5522458, + 51.288930501 + ], + [ + 9.5527837, + 51.289232401 + ], + [ + 9.5581445, + 51.292241301 + ], + [ + 9.5583783, + 51.292381601 + ], + [ + 9.5585916, + 51.292510001 + ], + [ + 9.5590514, + 51.292814901 + ], + [ + 9.5594859, + 51.293121401 + ], + [ + 9.5598536, + 51.293403801 + ], + [ + 9.5600888, + 51.293615501 + ], + [ + 9.5604398, + 51.293937801 + ], + [ + 9.5606017, + 51.294089201 + ], + [ + 9.5608586, + 51.294349301 + ], + [ + 9.5610462, + 51.294553701 + ], + [ + 9.5611918, + 51.294722401 + ], + [ + 9.5614, + 51.294978401 + ], + [ + 9.5614854, + 51.295089501 + ], + [ + 9.5615989, + 51.295243401 + ], + [ + 9.5617219, + 51.295419201 + ], + [ + 9.5619602, + 51.295792401 + ], + [ + 9.5621744, + 51.296208101 + ], + [ + 9.5623071, + 51.296466201 + ], + [ + 9.5624167, + 51.296732901 + ], + [ + 9.5625037, + 51.296951101 + ], + [ + 9.5625947, + 51.297209701 + ], + [ + 9.5626577, + 51.297439301 + ], + [ + 9.5627283, + 51.297740201 + ], + [ + 9.5627811, + 51.298031901 + ], + [ + 9.5628241, + 51.298353601 + ], + [ + 9.5628479, + 51.298637901 + ], + [ + 9.5628531, + 51.298918201 + ], + [ + 9.5628543, + 51.299192601 + ], + [ + 9.5628372, + 51.299452701 + ], + [ + 9.5627952, + 51.299767201 + ], + [ + 9.5627405, + 51.300079601 + ], + [ + 9.5626821, + 51.300342301 + ], + [ + 9.5625976, + 51.300641701 + ], + [ + 9.5624925, + 51.300976401 + ], + [ + 9.5617777, + 51.303101701 + ], + [ + 9.5612964, + 51.304393901 + ], + [ + 9.5610708, + 51.305022801 + ], + [ + 9.5609598, + 51.305341301 + ], + [ + 9.5603014, + 51.307225001 + ], + [ + 9.5601665, + 51.307687301 + ], + [ + 9.5601012, + 51.307999501 + ], + [ + 9.5600396, + 51.308307401 + ], + [ + 9.5599921, + 51.308764401 + ], + [ + 9.5599701, + 51.309247201 + ], + [ + 9.5599801, + 51.309645901 + ], + [ + 9.5600376, + 51.310137301 + ], + [ + 9.5601238, + 51.310648001 + ], + [ + 9.5602124, + 51.310972801 + ], + [ + 9.560292, + 51.311239501 + ], + [ + 9.5606268, + 51.312030701 + ], + [ + 9.5609328, + 51.312703201 + ], + [ + 9.5613658, + 51.313745301 + ], + [ + 9.5630229, + 51.317372801 + ], + [ + 9.5632902, + 51.317958801 + ], + [ + 9.563514, + 51.318378401 + ], + [ + 9.5637463, + 51.318760701 + ], + [ + 9.5641475, + 51.319288701 + ], + [ + 9.5645847, + 51.319772101 + ], + [ + 9.5649289, + 51.320101901 + ], + [ + 9.5652743, + 51.320398301 + ], + [ + 9.5656913, + 51.320725301 + ], + [ + 9.5661776, + 51.321091301 + ], + [ + 9.5691229, + 51.323131301 + ], + [ + 9.5863861, + 51.335011501 + ], + [ + 9.5885788, + 51.336506801 + ], + [ + 9.588730641, + 51.336611408 + ] + ] + } + }, + { + "identifier": "2026-017737--vi-bs.2026-04-10_10-30-00-000.devi-zus.2026-04-10_08-00-00-000_002.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.952109952281795,9.508619241397598,50.947952044522104,9.515979739246195", + "point": "50.952109952281795,9.508619241397598", + "startLcPosition": "152", + "impact": { + "lower": "Fuchsrain", + "upper": "Homberg (Efze)", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Homberg (Efze) - Fuchsrain", + "coordinate": { + "lat": 50.952109952281795, + "long": 9.508619241397598 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 10:30 bis 14:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 7.1 km hinter AS Homberg (Efze) und 1.2 km vor Fuchsrain", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Pommer (Rastplatz) nach Fuchsrain (Rastplatz) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.508619241, + 50.952109952 + ], + [ + 9.5089199, + 50.951866701 + ], + [ + 9.5096389, + 50.951277801 + ], + [ + 9.5104715, + 50.950606001 + ], + [ + 9.5113444, + 50.949909701 + ], + [ + 9.5117706, + 50.949591701 + ], + [ + 9.5121111, + 50.949388901 + ], + [ + 9.5124867, + 50.949159801 + ], + [ + 9.5129166, + 50.948947701 + ], + [ + 9.5135175, + 50.948695001 + ], + [ + 9.5148241, + 50.948269701 + ], + [ + 9.515979739, + 50.947952045 + ] + ] + } + }, + { + "identifier": "2026-016164--vi-fbm.2026-04-11_20-00-00-000.devi-zus.2026-04-07_07-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.02626682043372,9.486524226425864,51.08340067392629,9.48524626551982", + "point": "51.02626682043372,9.486524226425864", + "startLcPosition": "152", + "impact": { + "lower": "Malsfeld", + "upper": "Homberg (Efze)", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Homberg (Efze) - Malsfeld", + "coordinate": { + "lat": 51.02626682043372, + "long": 9.486524226425864 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 20:00 bis zum 12.04.26 05:00 Uhr.", + "12.04.26 20:00 bis zum 13.04.26 05:00 Uhr.", + "", + "A7: Fulda -> Kassel, zwischen 2.8 km hinter AS Homberg (Efze) und 0.5 km vor AS Malsfeld", + "", + "L\u00e4nge: 6.7 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Bauma\u00dfnahme km 335,000 bis 339,500 - Bausstelleneinrichtung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.486524226, + 51.02626682 + ], + [ + 9.4863002, + 51.026500201 + ], + [ + 9.4860083, + 51.026830401 + ], + [ + 9.485916, + 51.026934601 + ], + [ + 9.4855924, + 51.027344701 + ], + [ + 9.4853385, + 51.027749101 + ], + [ + 9.4851105, + 51.028174001 + ], + [ + 9.4849054, + 51.028661401 + ], + [ + 9.4847789, + 51.029095401 + ], + [ + 9.4846882, + 51.029498501 + ], + [ + 9.4846556, + 51.029958601 + ], + [ + 9.484649, + 51.030401201 + ], + [ + 9.4847185, + 51.031034701 + ], + [ + 9.48485, + 51.031610101 + ], + [ + 9.4851132, + 51.032270401 + ], + [ + 9.4852869, + 51.032579101 + ], + [ + 9.4856419, + 51.033139001 + ], + [ + 9.4859976, + 51.033590301 + ], + [ + 9.4862826, + 51.033920601 + ], + [ + 9.4873383, + 51.035097501 + ], + [ + 9.4880199, + 51.035854501 + ], + [ + 9.4888667, + 51.036795401 + ], + [ + 9.4897087, + 51.037741301 + ], + [ + 9.490237, + 51.038318301 + ], + [ + 9.4916207, + 51.039873201 + ], + [ + 9.492451, + 51.040790401 + ], + [ + 9.4931809, + 51.041626101 + ], + [ + 9.4944236, + 51.043011701 + ], + [ + 9.4956339, + 51.044367801 + ], + [ + 9.4961251, + 51.044977701 + ], + [ + 9.4965282, + 51.045553701 + ], + [ + 9.4967459, + 51.045978601 + ], + [ + 9.4969479, + 51.046413001 + ], + [ + 9.4970928, + 51.046791901 + ], + [ + 9.4972492, + 51.047405301 + ], + [ + 9.497323, + 51.047822701 + ], + [ + 9.4973569, + 51.048266201 + ], + [ + 9.4973577, + 51.048663601 + ], + [ + 9.497325, + 51.049110001 + ], + [ + 9.4972622, + 51.049522701 + ], + [ + 9.497155, + 51.050012201 + ], + [ + 9.4969669, + 51.050929501 + ], + [ + 9.4966629, + 51.052503201 + ], + [ + 9.4964747, + 51.053391801 + ], + [ + 9.4962749, + 51.054279901 + ], + [ + 9.4958805, + 51.056060701 + ], + [ + 9.4956956, + 51.056918901 + ], + [ + 9.4955038, + 51.057796501 + ], + [ + 9.4951412, + 51.059534601 + ], + [ + 9.4947366, + 51.060886601 + ], + [ + 9.4942585, + 51.062238401 + ], + [ + 9.4938086, + 51.063485401 + ], + [ + 9.4933685, + 51.064735201 + ], + [ + 9.4924744, + 51.067213301 + ], + [ + 9.4915887, + 51.069659401 + ], + [ + 9.4906871, + 51.072158901 + ], + [ + 9.4903616, + 51.072941801 + ], + [ + 9.490025, + 51.073683801 + ], + [ + 9.4897977, + 51.074138901 + ], + [ + 9.4895394, + 51.074605101 + ], + [ + 9.4890285, + 51.075526801 + ], + [ + 9.4881104, + 51.077132901 + ], + [ + 9.4871862, + 51.078764001 + ], + [ + 9.4868325, + 51.079365301 + ], + [ + 9.4864931, + 51.079974601 + ], + [ + 9.4861564, + 51.080589401 + ], + [ + 9.4858501, + 51.081276501 + ], + [ + 9.485678, + 51.081721501 + ], + [ + 9.4855338, + 51.082154501 + ], + [ + 9.4854183, + 51.082587801 + ], + [ + 9.4853128, + 51.083035401 + ], + [ + 9.485246266, + 51.083400674 + ] + ] + } + }, + { + "identifier": "2026-016164--vi-fbm.2026-04-07_20-00-00-000.devi-zus.2026-04-07_07-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.02626682043372,9.486524226425864,51.086018512754585,9.48478323453961", + "point": "51.02626682043372,9.486524226425864", + "startLcPosition": "152", + "impact": { + "lower": "Malsfeld", + "upper": "Homberg (Efze)", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Homberg (Efze) - Malsfeld", + "coordinate": { + "lat": 51.02626682043372, + "long": 9.486524226425864 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A7: Fulda -> Kassel, zwischen 2.8 km hinter AS Homberg (Efze) und 0.2 km vor AS Malsfeld", + "", + "L\u00e4nge: 7 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Bauma\u00dfnahme km 335,000 bis 339,500 - Bausstelleneinrichtung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.486524226, + 51.02626682 + ], + [ + 9.4863002, + 51.026500201 + ], + [ + 9.4860083, + 51.026830401 + ], + [ + 9.485916, + 51.026934601 + ], + [ + 9.4855924, + 51.027344701 + ], + [ + 9.4853385, + 51.027749101 + ], + [ + 9.4851105, + 51.028174001 + ], + [ + 9.4849054, + 51.028661401 + ], + [ + 9.4847789, + 51.029095401 + ], + [ + 9.4846882, + 51.029498501 + ], + [ + 9.4846556, + 51.029958601 + ], + [ + 9.484649, + 51.030401201 + ], + [ + 9.4847185, + 51.031034701 + ], + [ + 9.48485, + 51.031610101 + ], + [ + 9.4851132, + 51.032270401 + ], + [ + 9.4852869, + 51.032579101 + ], + [ + 9.4856419, + 51.033139001 + ], + [ + 9.4859976, + 51.033590301 + ], + [ + 9.4862826, + 51.033920601 + ], + [ + 9.4873383, + 51.035097501 + ], + [ + 9.4880199, + 51.035854501 + ], + [ + 9.4888667, + 51.036795401 + ], + [ + 9.4897087, + 51.037741301 + ], + [ + 9.490237, + 51.038318301 + ], + [ + 9.4916207, + 51.039873201 + ], + [ + 9.492451, + 51.040790401 + ], + [ + 9.4931809, + 51.041626101 + ], + [ + 9.4944236, + 51.043011701 + ], + [ + 9.4956339, + 51.044367801 + ], + [ + 9.4961251, + 51.044977701 + ], + [ + 9.4965282, + 51.045553701 + ], + [ + 9.4967459, + 51.045978601 + ], + [ + 9.4969479, + 51.046413001 + ], + [ + 9.4970928, + 51.046791901 + ], + [ + 9.4972492, + 51.047405301 + ], + [ + 9.497323, + 51.047822701 + ], + [ + 9.4973569, + 51.048266201 + ], + [ + 9.4973577, + 51.048663601 + ], + [ + 9.497325, + 51.049110001 + ], + [ + 9.4972622, + 51.049522701 + ], + [ + 9.497155, + 51.050012201 + ], + [ + 9.4969669, + 51.050929501 + ], + [ + 9.4966629, + 51.052503201 + ], + [ + 9.4964747, + 51.053391801 + ], + [ + 9.4962749, + 51.054279901 + ], + [ + 9.4958805, + 51.056060701 + ], + [ + 9.4956956, + 51.056918901 + ], + [ + 9.4955038, + 51.057796501 + ], + [ + 9.4951412, + 51.059534601 + ], + [ + 9.4947366, + 51.060886601 + ], + [ + 9.4942585, + 51.062238401 + ], + [ + 9.4938086, + 51.063485401 + ], + [ + 9.4933685, + 51.064735201 + ], + [ + 9.4924744, + 51.067213301 + ], + [ + 9.4915887, + 51.069659401 + ], + [ + 9.4906871, + 51.072158901 + ], + [ + 9.4903616, + 51.072941801 + ], + [ + 9.490025, + 51.073683801 + ], + [ + 9.4897977, + 51.074138901 + ], + [ + 9.4895394, + 51.074605101 + ], + [ + 9.4890285, + 51.075526801 + ], + [ + 9.4881104, + 51.077132901 + ], + [ + 9.4871862, + 51.078764001 + ], + [ + 9.4868325, + 51.079365301 + ], + [ + 9.4864931, + 51.079974601 + ], + [ + 9.4861564, + 51.080589401 + ], + [ + 9.4858501, + 51.081276501 + ], + [ + 9.485678, + 51.081721501 + ], + [ + 9.4855338, + 51.082154501 + ], + [ + 9.4854183, + 51.082587801 + ], + [ + 9.4853128, + 51.083035401 + ], + [ + 9.48496, + 51.084972201 + ], + [ + 9.484783235, + 51.086018513 + ] + ] + } + }, + { + "identifier": "2026-016164--vi-fbm.2026-04-07_20-00-00-000.devi-zus.2026-04-07_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.02626682043372,9.486524226425864,51.08862769630537,9.484325117063138", + "point": "51.02626682043372,9.486524226425864", + "startLcPosition": "152", + "impact": { + "lower": "Melsungen", + "upper": "Homberg (Efze)", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Homberg (Efze) - Melsungen", + "coordinate": { + "lat": 51.02626682043372, + "long": 9.486524226425864 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A7: Fulda -> Kassel, zwischen 2.8 km hinter AS Homberg (Efze) und 4.1 km vor AS Melsungen", + "", + "L\u00e4nge: 7.29 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Bauma\u00dfnahme km 335,000 bis 339,500 - Bausstelleneinrichtung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.486524226, + 51.02626682 + ], + [ + 9.4863002, + 51.026500201 + ], + [ + 9.4860083, + 51.026830401 + ], + [ + 9.485916, + 51.026934601 + ], + [ + 9.4855924, + 51.027344701 + ], + [ + 9.4853385, + 51.027749101 + ], + [ + 9.4851105, + 51.028174001 + ], + [ + 9.4849054, + 51.028661401 + ], + [ + 9.4847789, + 51.029095401 + ], + [ + 9.4846882, + 51.029498501 + ], + [ + 9.4846556, + 51.029958601 + ], + [ + 9.484649, + 51.030401201 + ], + [ + 9.4847185, + 51.031034701 + ], + [ + 9.48485, + 51.031610101 + ], + [ + 9.4851132, + 51.032270401 + ], + [ + 9.4852869, + 51.032579101 + ], + [ + 9.4856419, + 51.033139001 + ], + [ + 9.4859976, + 51.033590301 + ], + [ + 9.4862826, + 51.033920601 + ], + [ + 9.4873383, + 51.035097501 + ], + [ + 9.4880199, + 51.035854501 + ], + [ + 9.4888667, + 51.036795401 + ], + [ + 9.4897087, + 51.037741301 + ], + [ + 9.490237, + 51.038318301 + ], + [ + 9.4916207, + 51.039873201 + ], + [ + 9.492451, + 51.040790401 + ], + [ + 9.4931809, + 51.041626101 + ], + [ + 9.4944236, + 51.043011701 + ], + [ + 9.4956339, + 51.044367801 + ], + [ + 9.4961251, + 51.044977701 + ], + [ + 9.4965282, + 51.045553701 + ], + [ + 9.4967459, + 51.045978601 + ], + [ + 9.4969479, + 51.046413001 + ], + [ + 9.4970928, + 51.046791901 + ], + [ + 9.4972492, + 51.047405301 + ], + [ + 9.497323, + 51.047822701 + ], + [ + 9.4973569, + 51.048266201 + ], + [ + 9.4973577, + 51.048663601 + ], + [ + 9.497325, + 51.049110001 + ], + [ + 9.4972622, + 51.049522701 + ], + [ + 9.497155, + 51.050012201 + ], + [ + 9.4969669, + 51.050929501 + ], + [ + 9.4966629, + 51.052503201 + ], + [ + 9.4964747, + 51.053391801 + ], + [ + 9.4962749, + 51.054279901 + ], + [ + 9.4958805, + 51.056060701 + ], + [ + 9.4956956, + 51.056918901 + ], + [ + 9.4955038, + 51.057796501 + ], + [ + 9.4951412, + 51.059534601 + ], + [ + 9.4947366, + 51.060886601 + ], + [ + 9.4942585, + 51.062238401 + ], + [ + 9.4938086, + 51.063485401 + ], + [ + 9.4933685, + 51.064735201 + ], + [ + 9.4924744, + 51.067213301 + ], + [ + 9.4915887, + 51.069659401 + ], + [ + 9.4906871, + 51.072158901 + ], + [ + 9.4903616, + 51.072941801 + ], + [ + 9.490025, + 51.073683801 + ], + [ + 9.4897977, + 51.074138901 + ], + [ + 9.4895394, + 51.074605101 + ], + [ + 9.4890285, + 51.075526801 + ], + [ + 9.4881104, + 51.077132901 + ], + [ + 9.4871862, + 51.078764001 + ], + [ + 9.4868325, + 51.079365301 + ], + [ + 9.4864931, + 51.079974601 + ], + [ + 9.4861564, + 51.080589401 + ], + [ + 9.4858501, + 51.081276501 + ], + [ + 9.485678, + 51.081721501 + ], + [ + 9.4855338, + 51.082154501 + ], + [ + 9.4854183, + 51.082587801 + ], + [ + 9.4853128, + 51.083035401 + ], + [ + 9.48496, + 51.084972201 + ], + [ + 9.484741, + 51.086268501 + ], + [ + 9.484447, + 51.087956901 + ], + [ + 9.4844082, + 51.088158401 + ], + [ + 9.484325117, + 51.088627696 + ] + ] + } + }, + { + "identifier": "2026-016164--vi-fbm.2026-04-07_07-00-00-000.devi-zus.2026-04-07_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.013204932878224,9.489139597038593,51.08862769630537,9.484325117063138", + "point": "51.013204932878224,9.489139597038593", + "startLcPosition": "152", + "impact": { + "lower": "Melsungen", + "upper": "Homberg (Efze)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Homberg (Efze) - Melsungen", + "coordinate": { + "lat": 51.013204932878224, + "long": 9.489139597038593 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 20:00 Uhr", + "10.04.26 von 07:00 bis 20:00 Uhr", + "", + "A7: Fulda -> Kassel, zwischen 1.3 km hinter AS Homberg (Efze) und 4.1 km vor AS Melsungen", + "", + "L\u00e4nge: 8.79 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Bauma\u00dfnahme km 335,000 bis 339,500 - Bausstelleneinrichtung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.489139597, + 51.013204933 + ], + [ + 9.4891586, + 51.013540601 + ], + [ + 9.4892056, + 51.014223001 + ], + [ + 9.489247, + 51.014899801 + ], + [ + 9.4893362, + 51.016429001 + ], + [ + 9.4894425, + 51.018013201 + ], + [ + 9.4895656, + 51.019938401 + ], + [ + 9.489597, + 51.020475401 + ], + [ + 9.4896224, + 51.021102101 + ], + [ + 9.489604, + 51.021412501 + ], + [ + 9.489565, + 51.021738501 + ], + [ + 9.4895178, + 51.022001401 + ], + [ + 9.4894499, + 51.022286301 + ], + [ + 9.4893168, + 51.022678801 + ], + [ + 9.4891401, + 51.023090001 + ], + [ + 9.4888403, + 51.023634901 + ], + [ + 9.488597, + 51.023992301 + ], + [ + 9.4883244, + 51.024355301 + ], + [ + 9.4879513, + 51.024768901 + ], + [ + 9.4875014, + 51.025235701 + ], + [ + 9.4871692, + 51.025594901 + ], + [ + 9.4863002, + 51.026500201 + ], + [ + 9.4860083, + 51.026830401 + ], + [ + 9.485916, + 51.026934601 + ], + [ + 9.4855924, + 51.027344701 + ], + [ + 9.4853385, + 51.027749101 + ], + [ + 9.4851105, + 51.028174001 + ], + [ + 9.4849054, + 51.028661401 + ], + [ + 9.4847789, + 51.029095401 + ], + [ + 9.4846882, + 51.029498501 + ], + [ + 9.4846556, + 51.029958601 + ], + [ + 9.484649, + 51.030401201 + ], + [ + 9.4847185, + 51.031034701 + ], + [ + 9.48485, + 51.031610101 + ], + [ + 9.4851132, + 51.032270401 + ], + [ + 9.4852869, + 51.032579101 + ], + [ + 9.4856419, + 51.033139001 + ], + [ + 9.4859976, + 51.033590301 + ], + [ + 9.4862826, + 51.033920601 + ], + [ + 9.4873383, + 51.035097501 + ], + [ + 9.4880199, + 51.035854501 + ], + [ + 9.4888667, + 51.036795401 + ], + [ + 9.4897087, + 51.037741301 + ], + [ + 9.490237, + 51.038318301 + ], + [ + 9.4916207, + 51.039873201 + ], + [ + 9.492451, + 51.040790401 + ], + [ + 9.4931809, + 51.041626101 + ], + [ + 9.4944236, + 51.043011701 + ], + [ + 9.4956339, + 51.044367801 + ], + [ + 9.4961251, + 51.044977701 + ], + [ + 9.4965282, + 51.045553701 + ], + [ + 9.4967459, + 51.045978601 + ], + [ + 9.4969479, + 51.046413001 + ], + [ + 9.4970928, + 51.046791901 + ], + [ + 9.4972492, + 51.047405301 + ], + [ + 9.497323, + 51.047822701 + ], + [ + 9.4973569, + 51.048266201 + ], + [ + 9.4973577, + 51.048663601 + ], + [ + 9.497325, + 51.049110001 + ], + [ + 9.4972622, + 51.049522701 + ], + [ + 9.497155, + 51.050012201 + ], + [ + 9.4969669, + 51.050929501 + ], + [ + 9.4966629, + 51.052503201 + ], + [ + 9.4964747, + 51.053391801 + ], + [ + 9.4962749, + 51.054279901 + ], + [ + 9.4958805, + 51.056060701 + ], + [ + 9.4956956, + 51.056918901 + ], + [ + 9.4955038, + 51.057796501 + ], + [ + 9.4951412, + 51.059534601 + ], + [ + 9.4947366, + 51.060886601 + ], + [ + 9.4942585, + 51.062238401 + ], + [ + 9.4938086, + 51.063485401 + ], + [ + 9.4933685, + 51.064735201 + ], + [ + 9.4924744, + 51.067213301 + ], + [ + 9.4915887, + 51.069659401 + ], + [ + 9.4906871, + 51.072158901 + ], + [ + 9.4903616, + 51.072941801 + ], + [ + 9.490025, + 51.073683801 + ], + [ + 9.4897977, + 51.074138901 + ], + [ + 9.4895394, + 51.074605101 + ], + [ + 9.4890285, + 51.075526801 + ], + [ + 9.4881104, + 51.077132901 + ], + [ + 9.4871862, + 51.078764001 + ], + [ + 9.4868325, + 51.079365301 + ], + [ + 9.4864931, + 51.079974601 + ], + [ + 9.4861564, + 51.080589401 + ], + [ + 9.4858501, + 51.081276501 + ], + [ + 9.485678, + 51.081721501 + ], + [ + 9.4855338, + 51.082154501 + ], + [ + 9.4854183, + 51.082587801 + ], + [ + 9.4853128, + 51.083035401 + ], + [ + 9.48496, + 51.084972201 + ], + [ + 9.484741, + 51.086268501 + ], + [ + 9.484447, + 51.087956901 + ], + [ + 9.4844082, + 51.088158401 + ], + [ + 9.484325117, + 51.088627696 + ] + ] + } + }, + { + "identifier": "2026-016996--vi-bs.2026-04-09_13-00-00-000.devi-zus.2026-04-07_14-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.95204616030337,9.508698088663115,50.94794486950193,9.516005841425322", + "point": "50.95204616030337,9.508698088663115", + "startLcPosition": "152", + "impact": { + "lower": "Fuchsrain", + "upper": "Homberg (Efze)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Homberg (Efze) - Fuchsrain", + "coordinate": { + "lat": 50.95204616030337, + "long": 9.508698088663115 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 13:00 bis 16:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 7.1 km hinter AS Homberg (Efze) und 1.2 km vor Fuchsrain", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Fuchsrain (Rastplatz) nach Homberg (Efze) (AS) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.508698089, + 50.95204616 + ], + [ + 9.5089199, + 50.951866701 + ], + [ + 9.5096389, + 50.951277801 + ], + [ + 9.5104715, + 50.950606001 + ], + [ + 9.5113444, + 50.949909701 + ], + [ + 9.5117706, + 50.949591701 + ], + [ + 9.5121111, + 50.949388901 + ], + [ + 9.5124867, + 50.949159801 + ], + [ + 9.5129166, + 50.948947701 + ], + [ + 9.5135175, + 50.948695001 + ], + [ + 9.5148241, + 50.948269701 + ], + [ + 9.516005841, + 50.94794487 + ] + ] + } + }, + { + "identifier": "2025-006702--vi-bs.2026-04-07_07-00-00-000.devi-zus.2026-03-01_00-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.03185555587065,9.48494783906758,51.08862769630537,9.484325117063138", + "point": "51.03185555587065,9.48494783906758", + "startLcPosition": "152", + "impact": { + "lower": "Melsungen", + "upper": "Homberg (Efze)", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Homberg (Efze) - Melsungen", + "startTimestamp": "2026-04-07T07:00:00+02:00", + "coordinate": { + "lat": 51.03185555587065, + "long": 9.48494783906758 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 07:00 Uhr", + "Ende: 20.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A7: Fulda -> Kassel, zwischen 3.4 km hinter AS Homberg (Efze) und 4.1 km vor AS Melsungen", + "", + "L\u00e4nge: 6.63 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A7 Erneuerung des Oberbaus-AS Malsfeld-AS Homberg(Efze)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.484947839, + 51.031855556 + ], + [ + 9.4851132, + 51.032270401 + ], + [ + 9.4852869, + 51.032579101 + ], + [ + 9.4856419, + 51.033139001 + ], + [ + 9.4859976, + 51.033590301 + ], + [ + 9.4862826, + 51.033920601 + ], + [ + 9.4873383, + 51.035097501 + ], + [ + 9.4880199, + 51.035854501 + ], + [ + 9.4888667, + 51.036795401 + ], + [ + 9.4897087, + 51.037741301 + ], + [ + 9.490237, + 51.038318301 + ], + [ + 9.4916207, + 51.039873201 + ], + [ + 9.492451, + 51.040790401 + ], + [ + 9.4931809, + 51.041626101 + ], + [ + 9.4944236, + 51.043011701 + ], + [ + 9.4956339, + 51.044367801 + ], + [ + 9.4961251, + 51.044977701 + ], + [ + 9.4965282, + 51.045553701 + ], + [ + 9.4967459, + 51.045978601 + ], + [ + 9.4969479, + 51.046413001 + ], + [ + 9.4970928, + 51.046791901 + ], + [ + 9.4972492, + 51.047405301 + ], + [ + 9.497323, + 51.047822701 + ], + [ + 9.4973569, + 51.048266201 + ], + [ + 9.4973577, + 51.048663601 + ], + [ + 9.497325, + 51.049110001 + ], + [ + 9.4972622, + 51.049522701 + ], + [ + 9.497155, + 51.050012201 + ], + [ + 9.4969669, + 51.050929501 + ], + [ + 9.4966629, + 51.052503201 + ], + [ + 9.4964747, + 51.053391801 + ], + [ + 9.4962749, + 51.054279901 + ], + [ + 9.4958805, + 51.056060701 + ], + [ + 9.4956956, + 51.056918901 + ], + [ + 9.4955038, + 51.057796501 + ], + [ + 9.4951412, + 51.059534601 + ], + [ + 9.4947366, + 51.060886601 + ], + [ + 9.4942585, + 51.062238401 + ], + [ + 9.4938086, + 51.063485401 + ], + [ + 9.4933685, + 51.064735201 + ], + [ + 9.4924744, + 51.067213301 + ], + [ + 9.4915887, + 51.069659401 + ], + [ + 9.4906871, + 51.072158901 + ], + [ + 9.4903616, + 51.072941801 + ], + [ + 9.490025, + 51.073683801 + ], + [ + 9.4897977, + 51.074138901 + ], + [ + 9.4895394, + 51.074605101 + ], + [ + 9.4890285, + 51.075526801 + ], + [ + 9.4881104, + 51.077132901 + ], + [ + 9.4871862, + 51.078764001 + ], + [ + 9.4868325, + 51.079365301 + ], + [ + 9.4864931, + 51.079974601 + ], + [ + 9.4861564, + 51.080589401 + ], + [ + 9.4858501, + 51.081276501 + ], + [ + 9.485678, + 51.081721501 + ], + [ + 9.4855338, + 51.082154501 + ], + [ + 9.4854183, + 51.082587801 + ], + [ + 9.4853128, + 51.083035401 + ], + [ + 9.48496, + 51.084972201 + ], + [ + 9.484741, + 51.086268501 + ], + [ + 9.484447, + 51.087956901 + ], + [ + 9.4844082, + 51.088158401 + ], + [ + 9.484325117, + 51.088627696 + ] + ] + } + }, + { + "identifier": "2025-006702--vi-bs.2026-04-20_00-00-00-000.devi-zus.2026-03-01_00-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.03185555587065,9.48494783906758,51.03899649008182,9.490840504831654", + "point": "51.03185555587065,9.48494783906758", + "startLcPosition": "152", + "impact": { + "lower": "Malsfeld", + "upper": "Homberg (Efze)", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Homberg (Efze) - Malsfeld", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 51.03185555587065, + "long": 9.48494783906758 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 31.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A7: Fulda -> Kassel, zwischen 3.4 km hinter AS Homberg (Efze) und 5.7 km vor AS Malsfeld", + "", + "L\u00e4nge: 0.9 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A7 Erneuerung des Oberbaus-AS Malsfeld-AS Homberg(Efze)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.484947839, + 51.031855556 + ], + [ + 9.4851132, + 51.032270401 + ], + [ + 9.4852869, + 51.032579101 + ], + [ + 9.4856419, + 51.033139001 + ], + [ + 9.4859976, + 51.033590301 + ], + [ + 9.4862826, + 51.033920601 + ], + [ + 9.4873383, + 51.035097501 + ], + [ + 9.4880199, + 51.035854501 + ], + [ + 9.4888667, + 51.036795401 + ], + [ + 9.4897087, + 51.037741301 + ], + [ + 9.490237, + 51.038318301 + ], + [ + 9.490840505, + 51.03899649 + ] + ] + } + }, + { + "identifier": "2025-006702--vi-bs.2026-04-20_00-00-00-000.devi-zus.2026-03-01_00-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.03899649008182,9.490840504831654,51.08617946305161,9.484756042659056", + "point": "51.03899649008182,9.490840504831654", + "startLcPosition": "153", + "impact": { + "lower": "Malsfeld", + "upper": "Hasselberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Hasselberg - Malsfeld", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 51.03899649008182, + "long": 9.490840504831654 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 31.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A7: Fulda -> Kassel, zwischen 0.4 km hinter Hasselberg und 0.2 km vor AS Malsfeld", + "", + "L\u00e4nge: 5.46 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A7 Erneuerung des Oberbaus-AS Malsfeld-AS Homberg(Efze)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.490840505, + 51.03899649 + ], + [ + 9.4916207, + 51.039873201 + ], + [ + 9.492451, + 51.040790401 + ], + [ + 9.4931809, + 51.041626101 + ], + [ + 9.4944236, + 51.043011701 + ], + [ + 9.4956339, + 51.044367801 + ], + [ + 9.4961251, + 51.044977701 + ], + [ + 9.4965282, + 51.045553701 + ], + [ + 9.4967459, + 51.045978601 + ], + [ + 9.4969479, + 51.046413001 + ], + [ + 9.4970928, + 51.046791901 + ], + [ + 9.4972492, + 51.047405301 + ], + [ + 9.497323, + 51.047822701 + ], + [ + 9.4973569, + 51.048266201 + ], + [ + 9.4973577, + 51.048663601 + ], + [ + 9.497325, + 51.049110001 + ], + [ + 9.4972622, + 51.049522701 + ], + [ + 9.497155, + 51.050012201 + ], + [ + 9.4969669, + 51.050929501 + ], + [ + 9.4966629, + 51.052503201 + ], + [ + 9.4964747, + 51.053391801 + ], + [ + 9.4962749, + 51.054279901 + ], + [ + 9.4958805, + 51.056060701 + ], + [ + 9.4956956, + 51.056918901 + ], + [ + 9.4955038, + 51.057796501 + ], + [ + 9.4951412, + 51.059534601 + ], + [ + 9.4947366, + 51.060886601 + ], + [ + 9.4942585, + 51.062238401 + ], + [ + 9.4938086, + 51.063485401 + ], + [ + 9.4933685, + 51.064735201 + ], + [ + 9.4924744, + 51.067213301 + ], + [ + 9.4915887, + 51.069659401 + ], + [ + 9.4906871, + 51.072158901 + ], + [ + 9.4903616, + 51.072941801 + ], + [ + 9.490025, + 51.073683801 + ], + [ + 9.4897977, + 51.074138901 + ], + [ + 9.4895394, + 51.074605101 + ], + [ + 9.4890285, + 51.075526801 + ], + [ + 9.4881104, + 51.077132901 + ], + [ + 9.4871862, + 51.078764001 + ], + [ + 9.4868325, + 51.079365301 + ], + [ + 9.4864931, + 51.079974601 + ], + [ + 9.4861564, + 51.080589401 + ], + [ + 9.4858501, + 51.081276501 + ], + [ + 9.485678, + 51.081721501 + ], + [ + 9.4855338, + 51.082154501 + ], + [ + 9.4854183, + 51.082587801 + ], + [ + 9.4853128, + 51.083035401 + ], + [ + 9.48496, + 51.084972201 + ], + [ + 9.484756043, + 51.086179463 + ] + ] + } + }, + { + "identifier": "2025-006702--vi-bs.2026-04-20_00-00-00-000.devi-zus.2026-03-01_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.08616303086844,9.484511217067706,51.039076303642496,9.490615721479948", + "point": "51.08616303086844,9.484511217067706", + "startLcPosition": "154", + "impact": { + "lower": "Hasselberg", + "upper": "Malsfeld", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Malsfeld - Hasselberg", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 51.08616303086844, + "long": 9.484511217067706 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 31.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A7: Kassel -> Fulda, zwischen 0.2 km hinter AS Malsfeld und 0.4 km vor Hasselberg", + "", + "L\u00e4nge: 5.46 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A7 Erneuerung des Oberbaus-AS Malsfeld-AS Homberg(Efze)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.484511217, + 51.086163031 + ], + [ + 9.4845862, + 51.085720601 + ], + [ + 9.4847149, + 51.084971501 + ], + [ + 9.4849617, + 51.083571701 + ], + [ + 9.4850645, + 51.082988301 + ], + [ + 9.4852041, + 51.082424601 + ], + [ + 9.4853005, + 51.082116801 + ], + [ + 9.4854049, + 51.081777101 + ], + [ + 9.4856427, + 51.081170101 + ], + [ + 9.4859338, + 51.080542801 + ], + [ + 9.4862511, + 51.079941801 + ], + [ + 9.4865961, + 51.079329101 + ], + [ + 9.4869548, + 51.078712001 + ], + [ + 9.4878768, + 51.077082801 + ], + [ + 9.4888042, + 51.075472501 + ], + [ + 9.4893031, + 51.074575801 + ], + [ + 9.4895559, + 51.074114701 + ], + [ + 9.4897827, + 51.073649601 + ], + [ + 9.4901247, + 51.072915301 + ], + [ + 9.4904411, + 51.072135601 + ], + [ + 9.4913461, + 51.069641601 + ], + [ + 9.4922318, + 51.067190201 + ], + [ + 9.4931231, + 51.064717501 + ], + [ + 9.4935688, + 51.063473001 + ], + [ + 9.4940103, + 51.062231501 + ], + [ + 9.494494, + 51.060868901 + ], + [ + 9.4949002, + 51.059503301 + ], + [ + 9.4952669, + 51.057773401 + ], + [ + 9.4954502, + 51.056895801 + ], + [ + 9.4956308, + 51.056053801 + ], + [ + 9.4960202, + 51.054276301 + ], + [ + 9.496217, + 51.053384601 + ], + [ + 9.4964161, + 51.052507301 + ], + [ + 9.4967237, + 51.050905801 + ], + [ + 9.496909, + 51.050005001 + ], + [ + 9.4970103, + 51.049533601 + ], + [ + 9.4970698, + 51.049104601 + ], + [ + 9.4971203, + 51.048689101 + ], + [ + 9.4971249, + 51.048260101 + ], + [ + 9.4970885, + 51.047870101 + ], + [ + 9.4970181, + 51.047432901 + ], + [ + 9.4968684, + 51.046849001 + ], + [ + 9.4967245, + 51.046449001 + ], + [ + 9.4965319, + 51.046019701 + ], + [ + 9.4962886, + 51.045582701 + ], + [ + 9.4958963, + 51.045017901 + ], + [ + 9.4954251, + 51.044442701 + ], + [ + 9.4942045, + 51.043072701 + ], + [ + 9.4929618, + 51.041687101 + ], + [ + 9.4922133, + 51.040855101 + ], + [ + 9.490615721, + 51.039076304 + ] + ] + } + }, + { + "identifier": "2026-017477--vi-fbm.2026-04-09_03-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.041806824000645,9.493069172339053,51.037892338406216,9.489560210529907", + "point": "51.041806824000645,9.493069172339053", + "startLcPosition": "154", + "impact": { + "lower": "Hasselberg", + "upper": "Malsfeld", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Malsfeld - Hasselberg", + "coordinate": { + "lat": 51.041806824000645, + "long": 9.493069172339053 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 03:00 bis 20:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 5.3 km hinter AS Malsfeld und 0.3 km vor Hasselberg", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "\u00d6ffnung der Mittelstreifen\u00fcberfahrt f\u00fcr Bauma\u00dfnahme" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.493069172, + 51.041806824 + ], + [ + 9.4929618, + 51.041687101 + ], + [ + 9.4922133, + 51.040855101 + ], + [ + 9.4902053, + 51.038619301 + ], + [ + 9.489560211, + 51.037892338 + ] + ] + } + }, + { + "identifier": "2026-011854--vi-bs.2026-03-27_20-00-00-000.devi-zus.2026-03-11_00-00-00-000_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.10667269653932,9.483277613965015,51.11618015991468,9.484863915494913", + "point": "51.10667269653932,9.483277613965015", + "startLcPosition": "154", + "impact": { + "lower": "Melsungen", + "upper": "Malsfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Malsfeld - Melsungen", + "startTimestamp": "2026-03-27T20:00:00+01:00", + "coordinate": { + "lat": 51.10667269653932, + "long": 9.483277613965015 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 20:00 Uhr", + "Ende: 12.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.04.26)", + "", + "A7: Fulda -> Kassel, zwischen 2.1 km hinter AS Malsfeld und 1.0 km vor AS Melsungen", + "", + "L\u00e4nge: 1.07 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "BAB 7 Baugrunduntersuchungen an verschiedenen Bauwerken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.483277614, + 51.106672697 + ], + [ + 9.4832489, + 51.106744301 + ], + [ + 9.4831023, + 51.107237601 + ], + [ + 9.4830385, + 51.107597601 + ], + [ + 9.4830069, + 51.107978301 + ], + [ + 9.4830046, + 51.108496401 + ], + [ + 9.4830554, + 51.108953301 + ], + [ + 9.4831524, + 51.109400301 + ], + [ + 9.4833779, + 51.110136301 + ], + [ + 9.4837988, + 51.111393501 + ], + [ + 9.4841314, + 51.112378001 + ], + [ + 9.4844761, + 51.113410701 + ], + [ + 9.4845774, + 51.113778301 + ], + [ + 9.4846826, + 51.114187101 + ], + [ + 9.4847607, + 51.114589201 + ], + [ + 9.4848383, + 51.115265901 + ], + [ + 9.4848624, + 51.115557401 + ], + [ + 9.4848753, + 51.115900401 + ], + [ + 9.484863915, + 51.11618016 + ] + ] + } + }, + { + "identifier": "2026-015102--vi-fbm.2026-04-10_20-00-00-000.devi-zus.2026-03-27_20-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.08862769630537,9.484325117063138,51.116847981170906,9.484794059651444", + "point": "51.08862769630537,9.484325117063138", + "startLcPosition": "154", + "impact": { + "lower": "Melsungen", + "upper": "Malsfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Malsfeld - Melsungen", + "coordinate": { + "lat": 51.08862769630537, + "long": 9.484325117063138 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A7: Fulda -> Kassel, zwischen 0.1 km hinter AS Malsfeld und 0.9 km vor AS Melsungen", + "", + "L\u00e4nge: 3.2 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A7 Aufbau Verkehrsf\u00fchrung BW 16.01" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.484325117, + 51.088627696 + ], + [ + 9.4841437, + 51.089652401 + ], + [ + 9.4838696, + 51.091250001 + ], + [ + 9.4838096, + 51.091612501 + ], + [ + 9.4836906, + 51.092240501 + ], + [ + 9.4834915, + 51.093417901 + ], + [ + 9.4832911, + 51.094567201 + ], + [ + 9.4832534, + 51.095074801 + ], + [ + 9.4832511, + 51.095307801 + ], + [ + 9.4832615, + 51.095592401 + ], + [ + 9.4832819, + 51.095850801 + ], + [ + 9.483319, + 51.096113501 + ], + [ + 9.4833999, + 51.096449301 + ], + [ + 9.4835325, + 51.096933201 + ], + [ + 9.483639, + 51.097218301 + ], + [ + 9.4837717, + 51.097524101 + ], + [ + 9.4840584, + 51.098063901 + ], + [ + 9.4843237, + 51.098520401 + ], + [ + 9.4846054, + 51.098971301 + ], + [ + 9.4848617, + 51.099450101 + ], + [ + 9.4849548, + 51.099660201 + ], + [ + 9.4850639, + 51.099902901 + ], + [ + 9.4851476, + 51.100169601 + ], + [ + 9.4852339, + 51.100467301 + ], + [ + 9.48531, + 51.100933801 + ], + [ + 9.4853309, + 51.101253801 + ], + [ + 9.4853218, + 51.101599101 + ], + [ + 9.4852876, + 51.101903001 + ], + [ + 9.485227, + 51.102232701 + ], + [ + 9.4851293, + 51.102570101 + ], + [ + 9.4850274, + 51.102880001 + ], + [ + 9.4847031, + 51.103571201 + ], + [ + 9.4842156, + 51.104636001 + ], + [ + 9.4837089, + 51.105717601 + ], + [ + 9.4834565, + 51.106226601 + ], + [ + 9.4832489, + 51.106744301 + ], + [ + 9.4831023, + 51.107237601 + ], + [ + 9.4830385, + 51.107597601 + ], + [ + 9.4830069, + 51.107978301 + ], + [ + 9.4830046, + 51.108496401 + ], + [ + 9.4830554, + 51.108953301 + ], + [ + 9.4831524, + 51.109400301 + ], + [ + 9.4833779, + 51.110136301 + ], + [ + 9.4837988, + 51.111393501 + ], + [ + 9.4841314, + 51.112378001 + ], + [ + 9.4844761, + 51.113410701 + ], + [ + 9.4845774, + 51.113778301 + ], + [ + 9.4846826, + 51.114187101 + ], + [ + 9.4847607, + 51.114589201 + ], + [ + 9.4848383, + 51.115265901 + ], + [ + 9.4848624, + 51.115557401 + ], + [ + 9.4848753, + 51.115900401 + ], + [ + 9.4848624, + 51.116217401 + ], + [ + 9.4848305, + 51.116558501 + ], + [ + 9.48479406, + 51.116847981 + ] + ] + } + }, + { + "identifier": "2026-016164--vi-fbm.2026-04-11_20-00-00-000.devi-zus.2026-04-07_07-00-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.10885619975649,9.482797817545347,51.084213943903244,9.484848467395576", + "point": "51.10885619975649,9.482797817545347", + "startLcPosition": "155", + "impact": { + "lower": "Hasselberg", + "upper": "Melsungen", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Melsungen - Hasselberg", + "coordinate": { + "lat": 51.10885619975649, + "long": 9.482797817545347 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 20:00 bis zum 12.04.26 05:00 Uhr.", + "12.04.26 20:00 bis zum 13.04.26 05:00 Uhr.", + "", + "A7: Kassel -> Fulda, zwischen 1.8 km hinter AS Melsungen und 5.7 km vor Hasselberg", + "", + "L\u00e4nge: 2.79 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Bauma\u00dfnahme km 335,000 bis 339,500 - Bausstelleneinrichtung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.482797818, + 51.1088562 + ], + [ + 9.4827552, + 51.108483201 + ], + [ + 9.482759, + 51.107991601 + ], + [ + 9.4827855, + 51.107601101 + ], + [ + 9.4828631, + 51.107203301 + ], + [ + 9.4830101, + 51.106713901 + ], + [ + 9.4832233, + 51.106185501 + ], + [ + 9.4834597, + 51.105703401 + ], + [ + 9.4839739, + 51.104605701 + ], + [ + 9.4844613, + 51.103540601 + ], + [ + 9.4847883, + 51.102836101 + ], + [ + 9.4849017, + 51.102528801 + ], + [ + 9.4849822, + 51.102246101 + ], + [ + 9.48504, + 51.101928901 + ], + [ + 9.4850814, + 51.101574901 + ], + [ + 9.4850812, + 51.101257701 + ], + [ + 9.48506, + 51.100959701 + ], + [ + 9.4849925, + 51.100508701 + ], + [ + 9.4849125, + 51.100201501 + ], + [ + 9.4848182, + 51.099931001 + ], + [ + 9.4847282, + 51.099716101 + ], + [ + 9.4846287, + 51.099484601 + ], + [ + 9.4843703, + 51.099015101 + ], + [ + 9.484095, + 51.098555001 + ], + [ + 9.4838208, + 51.098109801 + ], + [ + 9.4835499, + 51.097588301 + ], + [ + 9.483413, + 51.097272901 + ], + [ + 9.4833083, + 51.096980001 + ], + [ + 9.4831536, + 51.096486401 + ], + [ + 9.4830703, + 51.096145001 + ], + [ + 9.4830342, + 51.095862001 + ], + [ + 9.4830073, + 51.095616901 + ], + [ + 9.4829992, + 51.095342401 + ], + [ + 9.4829992, + 51.095082001 + ], + [ + 9.483044, + 51.094568501 + ], + [ + 9.4832305, + 51.093419401 + ], + [ + 9.4834397, + 51.092246701 + ], + [ + 9.4834661, + 51.092111701 + ], + [ + 9.4837686, + 51.090392701 + ], + [ + 9.4840961, + 51.088530001 + ], + [ + 9.4841996, + 51.087915001 + ], + [ + 9.4844036, + 51.086798001 + ], + [ + 9.4845862, + 51.085720601 + ], + [ + 9.4847149, + 51.084971501 + ], + [ + 9.484848467, + 51.084213944 + ] + ] + } + }, + { + "identifier": "2026-016164--vi-fbm.2026-04-07_20-00-00-000.devi-zus.2026-04-07_07-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.10885619975649,9.482797817545347,51.03053775762426,9.484410709022553", + "point": "51.10885619975649,9.482797817545347", + "startLcPosition": "155", + "impact": { + "lower": "Homberg (Efze)", + "upper": "Melsungen", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Melsungen - Homberg (Efze)", + "coordinate": { + "lat": 51.10885619975649, + "long": 9.482797817545347 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A7: Kassel -> Fulda, zwischen 1.8 km hinter AS Melsungen und 3.3 km vor AS Homberg (Efze)", + "", + "L\u00e4nge: 9.08 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Bauma\u00dfnahme km 335,000 bis 339,500 - Bausstelleneinrichtung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.482797818, + 51.1088562 + ], + [ + 9.4827552, + 51.108483201 + ], + [ + 9.482759, + 51.107991601 + ], + [ + 9.4827855, + 51.107601101 + ], + [ + 9.4828631, + 51.107203301 + ], + [ + 9.4830101, + 51.106713901 + ], + [ + 9.4832233, + 51.106185501 + ], + [ + 9.4834597, + 51.105703401 + ], + [ + 9.4839739, + 51.104605701 + ], + [ + 9.4844613, + 51.103540601 + ], + [ + 9.4847883, + 51.102836101 + ], + [ + 9.4849017, + 51.102528801 + ], + [ + 9.4849822, + 51.102246101 + ], + [ + 9.48504, + 51.101928901 + ], + [ + 9.4850814, + 51.101574901 + ], + [ + 9.4850812, + 51.101257701 + ], + [ + 9.48506, + 51.100959701 + ], + [ + 9.4849925, + 51.100508701 + ], + [ + 9.4849125, + 51.100201501 + ], + [ + 9.4848182, + 51.099931001 + ], + [ + 9.4847282, + 51.099716101 + ], + [ + 9.4846287, + 51.099484601 + ], + [ + 9.4843703, + 51.099015101 + ], + [ + 9.484095, + 51.098555001 + ], + [ + 9.4838208, + 51.098109801 + ], + [ + 9.4835499, + 51.097588301 + ], + [ + 9.483413, + 51.097272901 + ], + [ + 9.4833083, + 51.096980001 + ], + [ + 9.4831536, + 51.096486401 + ], + [ + 9.4830703, + 51.096145001 + ], + [ + 9.4830342, + 51.095862001 + ], + [ + 9.4830073, + 51.095616901 + ], + [ + 9.4829992, + 51.095342401 + ], + [ + 9.4829992, + 51.095082001 + ], + [ + 9.483044, + 51.094568501 + ], + [ + 9.4832305, + 51.093419401 + ], + [ + 9.4834397, + 51.092246701 + ], + [ + 9.4834661, + 51.092111701 + ], + [ + 9.4837686, + 51.090392701 + ], + [ + 9.4840961, + 51.088530001 + ], + [ + 9.4841996, + 51.087915001 + ], + [ + 9.4844036, + 51.086798001 + ], + [ + 9.4845862, + 51.085720601 + ], + [ + 9.4847149, + 51.084971501 + ], + [ + 9.4849617, + 51.083571701 + ], + [ + 9.4850645, + 51.082988301 + ], + [ + 9.4852041, + 51.082424601 + ], + [ + 9.4853005, + 51.082116801 + ], + [ + 9.4854049, + 51.081777101 + ], + [ + 9.4856427, + 51.081170101 + ], + [ + 9.4859338, + 51.080542801 + ], + [ + 9.4862511, + 51.079941801 + ], + [ + 9.4865961, + 51.079329101 + ], + [ + 9.4869548, + 51.078712001 + ], + [ + 9.4878768, + 51.077082801 + ], + [ + 9.4888042, + 51.075472501 + ], + [ + 9.4893031, + 51.074575801 + ], + [ + 9.4895559, + 51.074114701 + ], + [ + 9.4897827, + 51.073649601 + ], + [ + 9.4901247, + 51.072915301 + ], + [ + 9.4904411, + 51.072135601 + ], + [ + 9.4913461, + 51.069641601 + ], + [ + 9.4922318, + 51.067190201 + ], + [ + 9.4931231, + 51.064717501 + ], + [ + 9.4935688, + 51.063473001 + ], + [ + 9.4940103, + 51.062231501 + ], + [ + 9.494494, + 51.060868901 + ], + [ + 9.4949002, + 51.059503301 + ], + [ + 9.4952669, + 51.057773401 + ], + [ + 9.4954502, + 51.056895801 + ], + [ + 9.4956308, + 51.056053801 + ], + [ + 9.4960202, + 51.054276301 + ], + [ + 9.496217, + 51.053384601 + ], + [ + 9.4964161, + 51.052507301 + ], + [ + 9.4967237, + 51.050905801 + ], + [ + 9.496909, + 51.050005001 + ], + [ + 9.4970103, + 51.049533601 + ], + [ + 9.4970698, + 51.049104601 + ], + [ + 9.4971203, + 51.048689101 + ], + [ + 9.4971249, + 51.048260101 + ], + [ + 9.4970885, + 51.047870101 + ], + [ + 9.4970181, + 51.047432901 + ], + [ + 9.4968684, + 51.046849001 + ], + [ + 9.4967245, + 51.046449001 + ], + [ + 9.4965319, + 51.046019701 + ], + [ + 9.4962886, + 51.045582701 + ], + [ + 9.4958963, + 51.045017901 + ], + [ + 9.4954251, + 51.044442701 + ], + [ + 9.4942045, + 51.043072701 + ], + [ + 9.4929618, + 51.041687101 + ], + [ + 9.4922133, + 51.040855101 + ], + [ + 9.4902053, + 51.038619301 + ], + [ + 9.4886511, + 51.036867801 + ], + [ + 9.4871351, + 51.035180401 + ], + [ + 9.486099, + 51.034018301 + ], + [ + 9.4856419, + 51.033495601 + ], + [ + 9.4851806, + 51.032856201 + ], + [ + 9.4849815, + 51.032494701 + ], + [ + 9.4848705, + 51.032278101 + ], + [ + 9.4847398, + 51.031953401 + ], + [ + 9.4846205, + 51.031640601 + ], + [ + 9.4844768, + 51.031054801 + ], + [ + 9.48443, + 51.030752201 + ], + [ + 9.484410709, + 51.030537758 + ] + ] + } + }, + { + "identifier": "2026-016164--vi-fbm.2026-04-07_07-00-00-000.devi-zus.2026-04-07_07-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.10885619975649,9.482797817545347,51.026257720024624,9.486251184330898", + "point": "51.10885619975649,9.482797817545347", + "startLcPosition": "155", + "impact": { + "lower": "Homberg (Efze)", + "upper": "Melsungen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Melsungen - Homberg (Efze)", + "coordinate": { + "lat": 51.10885619975649, + "long": 9.482797817545347 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 20:00 Uhr", + "10.04.26 von 07:00 bis 20:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 1.8 km hinter AS Melsungen und 2.8 km vor AS Homberg (Efze)", + "", + "L\u00e4nge: 9.57 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Bauma\u00dfnahme km 335,000 bis 339,500 - Bausstelleneinrichtung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.482797818, + 51.1088562 + ], + [ + 9.4827552, + 51.108483201 + ], + [ + 9.482759, + 51.107991601 + ], + [ + 9.4827855, + 51.107601101 + ], + [ + 9.4828631, + 51.107203301 + ], + [ + 9.4830101, + 51.106713901 + ], + [ + 9.4832233, + 51.106185501 + ], + [ + 9.4834597, + 51.105703401 + ], + [ + 9.4839739, + 51.104605701 + ], + [ + 9.4844613, + 51.103540601 + ], + [ + 9.4847883, + 51.102836101 + ], + [ + 9.4849017, + 51.102528801 + ], + [ + 9.4849822, + 51.102246101 + ], + [ + 9.48504, + 51.101928901 + ], + [ + 9.4850814, + 51.101574901 + ], + [ + 9.4850812, + 51.101257701 + ], + [ + 9.48506, + 51.100959701 + ], + [ + 9.4849925, + 51.100508701 + ], + [ + 9.4849125, + 51.100201501 + ], + [ + 9.4848182, + 51.099931001 + ], + [ + 9.4847282, + 51.099716101 + ], + [ + 9.4846287, + 51.099484601 + ], + [ + 9.4843703, + 51.099015101 + ], + [ + 9.484095, + 51.098555001 + ], + [ + 9.4838208, + 51.098109801 + ], + [ + 9.4835499, + 51.097588301 + ], + [ + 9.483413, + 51.097272901 + ], + [ + 9.4833083, + 51.096980001 + ], + [ + 9.4831536, + 51.096486401 + ], + [ + 9.4830703, + 51.096145001 + ], + [ + 9.4830342, + 51.095862001 + ], + [ + 9.4830073, + 51.095616901 + ], + [ + 9.4829992, + 51.095342401 + ], + [ + 9.4829992, + 51.095082001 + ], + [ + 9.483044, + 51.094568501 + ], + [ + 9.4832305, + 51.093419401 + ], + [ + 9.4834397, + 51.092246701 + ], + [ + 9.4834661, + 51.092111701 + ], + [ + 9.4837686, + 51.090392701 + ], + [ + 9.4840961, + 51.088530001 + ], + [ + 9.4841996, + 51.087915001 + ], + [ + 9.4844036, + 51.086798001 + ], + [ + 9.4845862, + 51.085720601 + ], + [ + 9.4847149, + 51.084971501 + ], + [ + 9.4849617, + 51.083571701 + ], + [ + 9.4850645, + 51.082988301 + ], + [ + 9.4852041, + 51.082424601 + ], + [ + 9.4853005, + 51.082116801 + ], + [ + 9.4854049, + 51.081777101 + ], + [ + 9.4856427, + 51.081170101 + ], + [ + 9.4859338, + 51.080542801 + ], + [ + 9.4862511, + 51.079941801 + ], + [ + 9.4865961, + 51.079329101 + ], + [ + 9.4869548, + 51.078712001 + ], + [ + 9.4878768, + 51.077082801 + ], + [ + 9.4888042, + 51.075472501 + ], + [ + 9.4893031, + 51.074575801 + ], + [ + 9.4895559, + 51.074114701 + ], + [ + 9.4897827, + 51.073649601 + ], + [ + 9.4901247, + 51.072915301 + ], + [ + 9.4904411, + 51.072135601 + ], + [ + 9.4913461, + 51.069641601 + ], + [ + 9.4922318, + 51.067190201 + ], + [ + 9.4931231, + 51.064717501 + ], + [ + 9.4935688, + 51.063473001 + ], + [ + 9.4940103, + 51.062231501 + ], + [ + 9.494494, + 51.060868901 + ], + [ + 9.4949002, + 51.059503301 + ], + [ + 9.4952669, + 51.057773401 + ], + [ + 9.4954502, + 51.056895801 + ], + [ + 9.4956308, + 51.056053801 + ], + [ + 9.4960202, + 51.054276301 + ], + [ + 9.496217, + 51.053384601 + ], + [ + 9.4964161, + 51.052507301 + ], + [ + 9.4967237, + 51.050905801 + ], + [ + 9.496909, + 51.050005001 + ], + [ + 9.4970103, + 51.049533601 + ], + [ + 9.4970698, + 51.049104601 + ], + [ + 9.4971203, + 51.048689101 + ], + [ + 9.4971249, + 51.048260101 + ], + [ + 9.4970885, + 51.047870101 + ], + [ + 9.4970181, + 51.047432901 + ], + [ + 9.4968684, + 51.046849001 + ], + [ + 9.4967245, + 51.046449001 + ], + [ + 9.4965319, + 51.046019701 + ], + [ + 9.4962886, + 51.045582701 + ], + [ + 9.4958963, + 51.045017901 + ], + [ + 9.4954251, + 51.044442701 + ], + [ + 9.4942045, + 51.043072701 + ], + [ + 9.4929618, + 51.041687101 + ], + [ + 9.4922133, + 51.040855101 + ], + [ + 9.4902053, + 51.038619301 + ], + [ + 9.4886511, + 51.036867801 + ], + [ + 9.4871351, + 51.035180401 + ], + [ + 9.486099, + 51.034018301 + ], + [ + 9.4856419, + 51.033495601 + ], + [ + 9.4851806, + 51.032856201 + ], + [ + 9.4849815, + 51.032494701 + ], + [ + 9.4848705, + 51.032278101 + ], + [ + 9.4847398, + 51.031953401 + ], + [ + 9.4846205, + 51.031640601 + ], + [ + 9.4844768, + 51.031054801 + ], + [ + 9.48443, + 51.030752201 + ], + [ + 9.4843999, + 51.030417601 + ], + [ + 9.484405, + 51.029939201 + ], + [ + 9.4844404, + 51.029492701 + ], + [ + 9.4845322, + 51.029056601 + ], + [ + 9.4846664, + 51.028632101 + ], + [ + 9.4848676, + 51.028147301 + ], + [ + 9.4850965, + 51.027714301 + ], + [ + 9.4853804, + 51.027279301 + ], + [ + 9.4856796, + 51.026876001 + ], + [ + 9.4857807, + 51.026761801 + ], + [ + 9.486106, + 51.026411501 + ], + [ + 9.486251184, + 51.02625772 + ] + ] + } + }, + { + "identifier": "2025-006702--vi-bs.2026-04-07_07-00-00-000.devi-zus.2026-03-01_00-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.093947096653835,9.483144855627854,51.08243551385899,9.485201397452895", + "point": "51.093947096653835,9.483144855627854", + "startLcPosition": "155", + "impact": { + "lower": "Hasselberg", + "upper": "Melsungen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Melsungen - Hasselberg", + "startTimestamp": "2026-04-07T07:00:00+02:00", + "coordinate": { + "lat": 51.093947096653835, + "long": 9.483144855627854 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 07:00 Uhr", + "Ende: 20.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A7: Kassel -> Fulda, zwischen 3.5 km hinter AS Melsungen und 5.5 km vor Hasselberg", + "", + "L\u00e4nge: 1.29 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A7 Erneuerung des Oberbaus-AS Malsfeld-AS Homberg(Efze)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.483144856, + 51.093947097 + ], + [ + 9.4832305, + 51.093419401 + ], + [ + 9.4834397, + 51.092246701 + ], + [ + 9.4834661, + 51.092111701 + ], + [ + 9.4837686, + 51.090392701 + ], + [ + 9.4840961, + 51.088530001 + ], + [ + 9.4841996, + 51.087915001 + ], + [ + 9.4844036, + 51.086798001 + ], + [ + 9.4845862, + 51.085720601 + ], + [ + 9.4847149, + 51.084971501 + ], + [ + 9.4849617, + 51.083571701 + ], + [ + 9.4850645, + 51.082988301 + ], + [ + 9.485201397, + 51.082435514 + ] + ] + } + }, + { + "identifier": "2025-006702--vi-bs.2026-04-20_00-00-00-000.devi-zus.2026-03-01_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.093947096653835,9.483144855627854,51.08616303086844,9.484511217067706", + "point": "51.093947096653835,9.483144855627854", + "startLcPosition": "155", + "impact": { + "lower": "Hasselberg", + "upper": "Melsungen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Melsungen - Hasselberg", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 51.093947096653835, + "long": 9.483144855627854 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 31.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A7: Kassel -> Fulda, zwischen 3.5 km hinter AS Melsungen und 5.9 km vor Hasselberg", + "", + "L\u00e4nge: 0.87 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A7 Erneuerung des Oberbaus-AS Malsfeld-AS Homberg(Efze)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.483144856, + 51.093947097 + ], + [ + 9.4832305, + 51.093419401 + ], + [ + 9.4834397, + 51.092246701 + ], + [ + 9.4834661, + 51.092111701 + ], + [ + 9.4837686, + 51.090392701 + ], + [ + 9.4840961, + 51.088530001 + ], + [ + 9.4841996, + 51.087915001 + ], + [ + 9.4844036, + 51.086798001 + ], + [ + 9.484511217, + 51.086163031 + ] + ] + } + }, + { + "identifier": "2026-011854--vi-bs.2026-03-27_20-00-00-000.devi-zus.2026-03-11_00-00-00-000_001.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.116148956809894,9.484618440040693,51.11128646018071,9.483519040729773", + "point": "51.116148956809894,9.484618440040693", + "startLcPosition": "155", + "impact": { + "lower": "Malsfeld", + "upper": "Melsungen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Melsungen - Malsfeld", + "startTimestamp": "2026-03-27T20:00:00+01:00", + "coordinate": { + "lat": 51.116148956809894, + "long": 9.484618440040693 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 20:00 Uhr", + "Ende: 12.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.04.26)", + "", + "A7: Kassel -> Fulda, zwischen 1.0 km hinter AS Melsungen und 2.6 km vor AS Malsfeld", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 7 m", + "", + "BAB 7 Baugrunduntersuchungen an verschiedenen Bauwerken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.48461844, + 51.116148957 + ], + [ + 9.4846302, + 51.115893701 + ], + [ + 9.484621, + 51.115564101 + ], + [ + 9.4845978, + 51.115263501 + ], + [ + 9.4845217, + 51.114597501 + ], + [ + 9.484442, + 51.114208001 + ], + [ + 9.4843472, + 51.113829701 + ], + [ + 9.4842328, + 51.113445201 + ], + [ + 9.4839081, + 51.112434601 + ], + [ + 9.48357, + 51.111436101 + ], + [ + 9.483519041, + 51.11128646 + ] + ] + } + }, + { + "identifier": "2026-011854--vi-bs.2026-03-27_20-00-00-000.devi-zus.2026-03-11_00-00-00-000_001.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.12044863768947,9.482928495640325,51.116148956809894,9.484618440040693", + "point": "51.12044863768947,9.482928495640325", + "startLcPosition": "155", + "impact": { + "lower": "Malsfeld", + "upper": "Melsungen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Melsungen - Malsfeld", + "startTimestamp": "2026-03-27T20:00:00+01:00", + "coordinate": { + "lat": 51.12044863768947, + "long": 9.482928495640325 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 20:00 Uhr", + "Ende: 12.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.04.26)", + "", + "A7: Kassel -> Fulda, zwischen 0.5 km hinter AS Melsungen und 3.2 km vor AS Malsfeld", + "", + "L\u00e4nge: 0.5 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "BAB 7 Baugrunduntersuchungen an verschiedenen Bauwerken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.482928496, + 51.120448638 + ], + [ + 9.483029, + 51.120315601 + ], + [ + 9.4832826, + 51.119961901 + ], + [ + 9.4835416, + 51.119552201 + ], + [ + 9.4837815, + 51.119130201 + ], + [ + 9.4839773, + 51.118727801 + ], + [ + 9.4840438, + 51.118582301 + ], + [ + 9.4841409, + 51.118343901 + ], + [ + 9.4842794, + 51.117978301 + ], + [ + 9.4844174, + 51.117537101 + ], + [ + 9.4844869, + 51.117219201 + ], + [ + 9.4845329, + 51.116962901 + ], + [ + 9.4845865, + 51.116541301 + ], + [ + 9.4846156, + 51.116210601 + ], + [ + 9.48461844, + 51.116148957 + ] + ] + } + }, + { + "identifier": "2026-015102--vi-fbm.2026-04-10_20-00-00-000.devi-zus.2026-03-27_20-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.136684699656904,9.474731548246139,51.11062702911811,9.483294479465565", + "point": "51.136684699656904,9.474731548246139", + "startLcPosition": "156", + "impact": { + "lower": "Malsfeld", + "upper": "Markwald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Markwald - Malsfeld", + "coordinate": { + "lat": 51.136684699656904, + "long": 9.474731548246139 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 19:00 bis zum 12.04.26 06:00 Uhr.", + "", + "A7: Kassel -> Fulda, zwischen 4.6 km hinter Markwald und 2.6 km vor AS Malsfeld", + "", + "L\u00e4nge: 3.14 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A7 Aufbau Verkehrsf\u00fchrung BW 16.01" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.474731548, + 51.1366847 + ], + [ + 9.4747119, + 51.136598701 + ], + [ + 9.4745426, + 51.135922901 + ], + [ + 9.4743584, + 51.135248701 + ], + [ + 9.4741602, + 51.134578701 + ], + [ + 9.4739473, + 51.133910601 + ], + [ + 9.4738419, + 51.133590401 + ], + [ + 9.4736802, + 51.133106701 + ], + [ + 9.4735553, + 51.132661801 + ], + [ + 9.4734679, + 51.132296901 + ], + [ + 9.4734042, + 51.131926901 + ], + [ + 9.4733649, + 51.131555501 + ], + [ + 9.4733501, + 51.131183501 + ], + [ + 9.4733599, + 51.130811401 + ], + [ + 9.4733942, + 51.130439801 + ], + [ + 9.473453, + 51.130069501 + ], + [ + 9.4735362, + 51.129701001 + ], + [ + 9.4736436, + 51.129335001 + ], + [ + 9.473775, + 51.128972101 + ], + [ + 9.4739303, + 51.128612901 + ], + [ + 9.4741092, + 51.128258001 + ], + [ + 9.4743113, + 51.127908101 + ], + [ + 9.4745363, + 51.127563801 + ], + [ + 9.4747838, + 51.127225601 + ], + [ + 9.4750534, + 51.126894101 + ], + [ + 9.4753422, + 51.126572601 + ], + [ + 9.4754476, + 51.126458701 + ], + [ + 9.4757368, + 51.126162301 + ], + [ + 9.4760596, + 51.125861001 + ], + [ + 9.4763952, + 51.125594401 + ], + [ + 9.4767188, + 51.125331401 + ], + [ + 9.4770813, + 51.125066301 + ], + [ + 9.4774327, + 51.124825501 + ], + [ + 9.4776733, + 51.124661901 + ], + [ + 9.478146, + 51.124350601 + ], + [ + 9.4785304, + 51.124098601 + ], + [ + 9.4787425, + 51.123958501 + ], + [ + 9.4793511, + 51.123567001 + ], + [ + 9.4799053, + 51.123205301 + ], + [ + 9.4804566, + 51.122810801 + ], + [ + 9.4808262, + 51.122532801 + ], + [ + 9.481019, + 51.122376701 + ], + [ + 9.4816394, + 51.121854001 + ], + [ + 9.4820366, + 51.121475401 + ], + [ + 9.482199, + 51.121308701 + ], + [ + 9.4825223, + 51.120959101 + ], + [ + 9.4827837, + 51.120640301 + ], + [ + 9.483029, + 51.120315601 + ], + [ + 9.4832826, + 51.119961901 + ], + [ + 9.4835416, + 51.119552201 + ], + [ + 9.4837815, + 51.119130201 + ], + [ + 9.4839773, + 51.118727801 + ], + [ + 9.4840438, + 51.118582301 + ], + [ + 9.4841409, + 51.118343901 + ], + [ + 9.4842794, + 51.117978301 + ], + [ + 9.4844174, + 51.117537101 + ], + [ + 9.4844869, + 51.117219201 + ], + [ + 9.4845329, + 51.116962901 + ], + [ + 9.4845865, + 51.116541301 + ], + [ + 9.4846156, + 51.116210601 + ], + [ + 9.4846302, + 51.115893701 + ], + [ + 9.484621, + 51.115564101 + ], + [ + 9.4845978, + 51.115263501 + ], + [ + 9.4845217, + 51.114597501 + ], + [ + 9.484442, + 51.114208001 + ], + [ + 9.4843472, + 51.113829701 + ], + [ + 9.4842328, + 51.113445201 + ], + [ + 9.4839081, + 51.112434601 + ], + [ + 9.48357, + 51.111436101 + ], + [ + 9.483294479, + 51.110627029 + ] + ] + } + }, + { + "identifier": "2026-016959--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.24884087126408,9.516181379822836,51.27852551658012,9.533853649049865", + "point": "51.24884087126408,9.516181379822836", + "startLcPosition": "158", + "impact": { + "lower": "Kassel-Ost", + "upper": "Guxhagen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Hannover", + "title": "A7 | Guxhagen - Kassel-Ost", + "coordinate": { + "lat": 51.24884087126408, + "long": 9.516181379822836 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 16:00 Uhr", + "15.04.26 von 08:00 bis 16:00 Uhr", + "16.04.26 von 08:00 bis 16:00 Uhr", + "17.04.26 von 08:00 bis 16:00 Uhr", + "", + "A7: Fulda -> Hannover, zwischen 6.0 km hinter AS Guxhagen und 2.7 km vor AS Kassel-Ost", + "", + "L\u00e4nge: 3.8 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 \u00dcko-Sanierung AS Kassel-Ost - Aufbau Verkehrsf\u00fchrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.51618138, + 51.248840871 + ], + [ + 9.5162836, + 51.248962701 + ], + [ + 9.516455, + 51.249190201 + ], + [ + 9.5166269, + 51.249432601 + ], + [ + 9.5167754, + 51.249671001 + ], + [ + 9.5169645, + 51.250016401 + ], + [ + 9.5171187, + 51.250361601 + ], + [ + 9.5172346, + 51.250658401 + ], + [ + 9.5173212, + 51.250916001 + ], + [ + 9.517391, + 51.251177101 + ], + [ + 9.5174722, + 51.251488701 + ], + [ + 9.5175226, + 51.252315901 + ], + [ + 9.5174735, + 51.252963701 + ], + [ + 9.5173538, + 51.254716901 + ], + [ + 9.5172335, + 51.256479001 + ], + [ + 9.5172056, + 51.256907401 + ], + [ + 9.5170503, + 51.259128701 + ], + [ + 9.5168436, + 51.262083901 + ], + [ + 9.5167107, + 51.264055601 + ], + [ + 9.5166787, + 51.264588501 + ], + [ + 9.5166757, + 51.264871401 + ], + [ + 9.5166895, + 51.265212801 + ], + [ + 9.5167261, + 51.265609401 + ], + [ + 9.5167968, + 51.265976501 + ], + [ + 9.5168725, + 51.266358501 + ], + [ + 9.5169738, + 51.266671301 + ], + [ + 9.517073, + 51.266939801 + ], + [ + 9.5172257, + 51.267300401 + ], + [ + 9.5174083, + 51.267661401 + ], + [ + 9.5176542, + 51.268077401 + ], + [ + 9.5178589, + 51.268399801 + ], + [ + 9.518087, + 51.268704401 + ], + [ + 9.5183936, + 51.269080401 + ], + [ + 9.5187092, + 51.269431901 + ], + [ + 9.5190445, + 51.269757501 + ], + [ + 9.519325, + 51.270009401 + ], + [ + 9.5195997, + 51.270247501 + ], + [ + 9.5198646, + 51.270454301 + ], + [ + 9.52034, + 51.270808001 + ], + [ + 9.5207064, + 51.271046901 + ], + [ + 9.5211364, + 51.271310801 + ], + [ + 9.5233943, + 51.272585101 + ], + [ + 9.5273651, + 51.274846101 + ], + [ + 9.5287182, + 51.275611401 + ], + [ + 9.533853649, + 51.278525517 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de48", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.24802557248619,9.515398660506932,51.248100694266604,9.515477402793953", + "point": "51.24802557248619,9.515398660506932", + "startLcPosition": "158", + "impact": { + "lower": "Kassel-S\u00fcd", + "upper": "Guxhagen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Guxhagen - Kassel-S\u00fcd", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 51.24802557248619, + "long": 9.515398660506932 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Fulda -> Kassel, zwischen 5.9 km hinter AS Guxhagen und 1.4 km vor AD Kassel-S\u00fcd", + "", + "L\u00e4nge: 0.01 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.515398661, + 51.248025572 + ], + [ + 9.515477403, + 51.248100694 + ] + ] + } + }, + { + "identifier": "2026-016707--vi-bs.2026-04-08_08-00-00-000.devi-bs.2026-04-08_08-00-00-000_012.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.220441293586056,9.47735619786832,51.212044538634224,9.472193745928836", + "point": "51.220441293586056,9.47735619786832", + "startLcPosition": "159", + "impact": { + "lower": "Guxhagen", + "upper": "Kassel-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 | Kassel-S\u00fcd - Guxhagen", + "coordinate": { + "lat": 51.220441293586056, + "long": 9.47735619786832 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Kassel -> Fulda, zwischen 5.5 km hinter AD Kassel-S\u00fcd und 0.8 km vor AS Guxhagen", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "RV Erneuerung Gro\u00dfbeschilderung (Bremicker)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.477356198, + 51.220441294 + ], + [ + 9.472193746, + 51.212044539 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de46", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26584224988964,9.516770944379596,51.26593150917373,9.516788134948637", + "point": "51.26584224988964,9.516770944379596", + "startLcPosition": "159", + "impact": { + "lower": "Kassel", + "upper": "Kassel-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Kassel", + "title": "A7 | Kassel-S\u00fcd - Kassel", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 51.26584224988964, + "long": 9.516770944379596 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Fulda -> Kassel, zwischen 0.6 km hinter AD Kassel-S\u00fcd und 0.2 km vor Kassel", + "", + "L\u00e4nge: 0.01 km | Maximale Durchfahrtsbreite: 14 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.516770944, + 51.26584225 + ], + [ + 9.516788135, + 51.265931509 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de9", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.29055783604953,9.555145017530721,51.2983103236966,9.56281831531597", + "point": "51.29055783604953,9.555145017530721", + "startLcPosition": "161", + "impact": { + "lower": "Kassel-Nord", + "upper": "Kassel Mitte", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Kassel Mitte - Kassel-Nord", + "startTimestamp": "2026-04-15T08:00:00+02:00", + "coordinate": { + "lat": 51.29055783604953, + "long": 9.555145017530721 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 08:00 Uhr", + "Ende: 15.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Kassel -> Hannover, zwischen 2.5 km hinter AK Kassel Mitte und 1.1 km vor AS Kassel-Nord", + "", + "L\u00e4nge: 1.04 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.3 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.555145018, + 51.290557836 + ], + [ + 9.5581445, + 51.292241301 + ], + [ + 9.5583783, + 51.292381601 + ], + [ + 9.5585916, + 51.292510001 + ], + [ + 9.5590514, + 51.292814901 + ], + [ + 9.5594859, + 51.293121401 + ], + [ + 9.5598536, + 51.293403801 + ], + [ + 9.5600888, + 51.293615501 + ], + [ + 9.5604398, + 51.293937801 + ], + [ + 9.5606017, + 51.294089201 + ], + [ + 9.5608586, + 51.294349301 + ], + [ + 9.5610462, + 51.294553701 + ], + [ + 9.5611918, + 51.294722401 + ], + [ + 9.5614, + 51.294978401 + ], + [ + 9.5614854, + 51.295089501 + ], + [ + 9.5615989, + 51.295243401 + ], + [ + 9.5617219, + 51.295419201 + ], + [ + 9.5619602, + 51.295792401 + ], + [ + 9.5621744, + 51.296208101 + ], + [ + 9.5623071, + 51.296466201 + ], + [ + 9.5624167, + 51.296732901 + ], + [ + 9.5625037, + 51.296951101 + ], + [ + 9.5625947, + 51.297209701 + ], + [ + 9.5626577, + 51.297439301 + ], + [ + 9.5627283, + 51.297740201 + ], + [ + 9.5627811, + 51.298031901 + ], + [ + 9.562818315, + 51.298310324 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de44", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.27970674726978,9.535894242212182,51.279767722050956,9.535999573794964", + "point": "51.27970674726978,9.535894242212182", + "startLcPosition": "161", + "impact": { + "lower": "Kassel-Ost", + "upper": "Kassel Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Kassel Mitte - Kassel-Ost", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 51.27970674726978, + "long": 9.535894242212182 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Kassel -> Hannover, zwischen 0.7 km hinter AK Kassel Mitte und 2.5 km vor AS Kassel-Ost", + "", + "L\u00e4nge: 0.01 km | Maximale Durchfahrtsbreite: 14 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.535894242, + 51.279706747 + ], + [ + 9.535999574, + 51.279767722 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de11", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.2833724098931,9.542328959356833,51.29056983070584,9.555166387521105", + "point": "51.2833724098931,9.542328959356833", + "startLcPosition": "161", + "impact": { + "lower": "Kassel-Ost", + "upper": "Kassel Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Kassel Mitte - Kassel-Ost", + "startTimestamp": "2026-04-15T08:00:00+02:00", + "coordinate": { + "lat": 51.2833724098931, + "long": 9.542328959356833 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 08:00 Uhr", + "Ende: 15.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Kassel -> Hannover, zwischen 1.3 km hinter AK Kassel Mitte und 0.7 km vor AS Kassel-Ost", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 8.3 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.542328959, + 51.28337241 + ], + [ + 9.5430749, + 51.283796201 + ], + [ + 9.544693, + 51.284711501 + ], + [ + 9.5454143, + 51.285109401 + ], + [ + 9.5522458, + 51.288930501 + ], + [ + 9.5527837, + 51.289232401 + ], + [ + 9.555166388, + 51.290569831 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.2983103236966,9.56281831531597,51.303133698724565,9.561765782258277", + "point": "51.2983103236966,9.56281831531597", + "startLcPosition": "162", + "impact": { + "lower": "Kassel-Nord", + "upper": "Kassel-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Kassel-Ost - Kassel-Nord", + "startTimestamp": "2026-04-15T08:00:00+02:00", + "coordinate": { + "lat": 51.2983103236966, + "long": 9.56281831531597 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 08:00 Uhr", + "Ende: 15.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Kassel -> Hannover, zwischen 0.4 km hinter AS Kassel-Ost und 0.6 km vor AS Kassel-Nord", + "", + "L\u00e4nge: 0.54 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.3 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.562818315, + 51.298310324 + ], + [ + 9.5628241, + 51.298353601 + ], + [ + 9.5628479, + 51.298637901 + ], + [ + 9.5628531, + 51.298918201 + ], + [ + 9.5628543, + 51.299192601 + ], + [ + 9.5628372, + 51.299452701 + ], + [ + 9.5627952, + 51.299767201 + ], + [ + 9.5627405, + 51.300079601 + ], + [ + 9.5626821, + 51.300342301 + ], + [ + 9.5625976, + 51.300641701 + ], + [ + 9.5624925, + 51.300976401 + ], + [ + 9.5617777, + 51.303101701 + ], + [ + 9.561765782, + 51.303133699 + ] + ] + } + }, + { + "identifier": "2026-016262--vi-fbm.2026-04-07_08-00-00-000.devi-fbm.2026-04-07_08-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.278656835022566,9.533663854890552,51.24891593254135,9.515951753831056", + "point": "51.278656835022566,9.533663854890552", + "startLcPosition": "162", + "impact": { + "lower": "Guxhagen", + "upper": "Kassel-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Fulda", + "title": "A7 | Kassel-Ost - Guxhagen", + "coordinate": { + "lat": 51.278656835022566, + "long": 9.533663854890552 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:15 Uhr", + "", + "A7: Hannover -> Fulda, zwischen 2.7 km hinter AS Kassel-Ost und 6.0 km vor AS Guxhagen", + "", + "L\u00e4nge: 3.8 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 Aufbau Stauwarnanlage" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.533663855, + 51.278656835 + ], + [ + 9.5293912, + 51.276221701 + ], + [ + 9.5283453, + 51.275635301 + ], + [ + 9.5224024, + 51.272240501 + ], + [ + 9.5210067, + 51.271445901 + ], + [ + 9.5205611, + 51.271170501 + ], + [ + 9.520196, + 51.270923301 + ], + [ + 9.5198676, + 51.270689801 + ], + [ + 9.5195207, + 51.270427401 + ], + [ + 9.5191063, + 51.270086601 + ], + [ + 9.5186592, + 51.269669501 + ], + [ + 9.5185209, + 51.269550101 + ], + [ + 9.5183669, + 51.269394601 + ], + [ + 9.5179887, + 51.268963801 + ], + [ + 9.5176797, + 51.268568501 + ], + [ + 9.517523, + 51.268342401 + ], + [ + 9.5173461, + 51.268064401 + ], + [ + 9.5172636, + 51.267919301 + ], + [ + 9.5170249, + 51.267474101 + ], + [ + 9.5169877, + 51.267374901 + ], + [ + 9.5169486, + 51.267255701 + ], + [ + 9.5167825, + 51.266839501 + ], + [ + 9.5166464, + 51.266428301 + ], + [ + 9.5165413, + 51.266001201 + ], + [ + 9.5164619, + 51.265460801 + ], + [ + 9.5164173, + 51.264964701 + ], + [ + 9.5164112, + 51.264583401 + ], + [ + 9.5164495, + 51.263931901 + ], + [ + 9.516619, + 51.262269701 + ], + [ + 9.5166599, + 51.261532201 + ], + [ + 9.5166744, + 51.261295601 + ], + [ + 9.5167311, + 51.260285901 + ], + [ + 9.5168442, + 51.258404401 + ], + [ + 9.5168519, + 51.257664501 + ], + [ + 9.5169947, + 51.255792401 + ], + [ + 9.5170139, + 51.255648701 + ], + [ + 9.5170241, + 51.255424801 + ], + [ + 9.5171058, + 51.254698001 + ], + [ + 9.5171219, + 51.254518901 + ], + [ + 9.517164, + 51.254000601 + ], + [ + 9.5172278, + 51.253159801 + ], + [ + 9.5172834, + 51.252503501 + ], + [ + 9.5172723, + 51.251930701 + ], + [ + 9.5172107, + 51.251483301 + ], + [ + 9.517128, + 51.251066201 + ], + [ + 9.5169419, + 51.250569601 + ], + [ + 9.5168367, + 51.250316201 + ], + [ + 9.5167261, + 51.250091001 + ], + [ + 9.516559, + 51.249795701 + ], + [ + 9.5162701, + 51.249331701 + ], + [ + 9.5161053, + 51.249103201 + ], + [ + 9.515951754, + 51.248915933 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.298323577074726,9.562576127808208,51.29067177896522,9.55498224747748", + "point": "51.298323577074726,9.562576127808208", + "startLcPosition": "163", + "impact": { + "lower": "Kassel Mitte", + "upper": "Kassel-Nord", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Kassel-Nord - Kassel Mitte", + "startTimestamp": "2026-04-15T08:00:00+02:00", + "coordinate": { + "lat": 51.298323577074726, + "long": 9.562576127808208 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 08:00 Uhr", + "Ende: 15.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Hannover -> Kassel, zwischen 1.1 km hinter AS Kassel-Nord und 2.5 km vor AK Kassel Mitte", + "", + "L\u00e4nge: 1.04 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.562576128, + 51.298323577 + ], + [ + 9.5625351, + 51.298040701 + ], + [ + 9.5624873, + 51.297765501 + ], + [ + 9.5624103, + 51.297451401 + ], + [ + 9.5623487, + 51.297230601 + ], + [ + 9.5622576, + 51.296979601 + ], + [ + 9.5621732, + 51.296762201 + ], + [ + 9.5620651, + 51.296507701 + ], + [ + 9.56192, + 51.296217501 + ], + [ + 9.5617055, + 51.295826201 + ], + [ + 9.5614764, + 51.295464101 + ], + [ + 9.5613617, + 51.295298701 + ], + [ + 9.5612397, + 51.295132401 + ], + [ + 9.5611526, + 51.295019101 + ], + [ + 9.5609713, + 51.294795801 + ], + [ + 9.5608153, + 51.294617201 + ], + [ + 9.560648, + 51.294432701 + ], + [ + 9.5604249, + 51.294214201 + ], + [ + 9.5598746, + 51.293698501 + ], + [ + 9.5596275, + 51.293486701 + ], + [ + 9.559273, + 51.293209001 + ], + [ + 9.5588807, + 51.292923501 + ], + [ + 9.5584603, + 51.292651901 + ], + [ + 9.5582095, + 51.292497001 + ], + [ + 9.5579772, + 51.292354901 + ], + [ + 9.554982247, + 51.290671779 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.303095529040384,9.561498922878272,51.298323577074726,9.562576127808208", + "point": "51.303095529040384,9.561498922878272", + "startLcPosition": "163", + "impact": { + "lower": "Kassel-Ost", + "upper": "Kassel-Nord", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Kassel-Nord - Kassel-Ost", + "startTimestamp": "2026-04-15T08:00:00+02:00", + "coordinate": { + "lat": 51.303095529040384, + "long": 9.561498922878272 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 08:00 Uhr", + "Ende: 15.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Hannover -> Kassel, zwischen 0.6 km hinter AS Kassel-Nord und 0.4 km vor AS Kassel-Ost", + "", + "L\u00e4nge: 0.54 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.561498923, + 51.303095529 + ], + [ + 9.5622555, + 51.300953901 + ], + [ + 9.5623555, + 51.300620701 + ], + [ + 9.5624358, + 51.300326601 + ], + [ + 9.5625021, + 51.300055201 + ], + [ + 9.5625547, + 51.299756501 + ], + [ + 9.56259, + 51.299444601 + ], + [ + 9.5626062, + 51.299192601 + ], + [ + 9.5626125, + 51.298920401 + ], + [ + 9.5626036, + 51.298643101 + ], + [ + 9.5625807, + 51.298355101 + ], + [ + 9.562576128, + 51.298323577 + ] + ] + } + }, + { + "identifier": "2026-016262--vi-fbm.2026-04-07_08-00-00-000.devi-fbm.2026-04-07_08-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.31478422165984,9.561840367442095,51.34418930791594,9.599668925594182", + "point": "51.31478422165984,9.561840367442095", + "startLcPosition": "163", + "impact": { + "lower": "Staufenberg", + "upper": "Kassel-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Kassel-Nord - Staufenberg", + "coordinate": { + "lat": 51.31478422165984, + "long": 9.561840367442095 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 10:45 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 0.7 km hinter AS Kassel-Nord und 0.8 km vor Staufenberg", + "", + "L\u00e4nge: 4.25 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 Aufbau Stauwarnanlage" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.561840367, + 51.314784222 + ], + [ + 9.5630229, + 51.317372801 + ], + [ + 9.5632902, + 51.317958801 + ], + [ + 9.563514, + 51.318378401 + ], + [ + 9.5637463, + 51.318760701 + ], + [ + 9.5641475, + 51.319288701 + ], + [ + 9.5645847, + 51.319772101 + ], + [ + 9.5649289, + 51.320101901 + ], + [ + 9.5652743, + 51.320398301 + ], + [ + 9.5656913, + 51.320725301 + ], + [ + 9.5661776, + 51.321091301 + ], + [ + 9.5691229, + 51.323131301 + ], + [ + 9.5863861, + 51.335011501 + ], + [ + 9.5885788, + 51.336506801 + ], + [ + 9.59148, + 51.338505401 + ], + [ + 9.5941315, + 51.340343701 + ], + [ + 9.5967778, + 51.342138901 + ], + [ + 9.5981722, + 51.343119601 + ], + [ + 9.5984582, + 51.343318301 + ], + [ + 9.599668926, + 51.344189308 + ] + ] + } + }, + { + "identifier": "2026-016520--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_007.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.34214016451743,9.596779596561314,51.39622286759315,9.78402130217027", + "point": "51.34214016451743,9.596779596561314", + "startLcPosition": "164", + "impact": { + "lower": "Drammetal", + "upper": "Herkulesblick", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Herkulesblick - Drammetal", + "coordinate": { + "lat": 51.34214016451743, + "long": 9.596779596561314 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:00 Uhr", + "14.04.26 von 08:00 bis 16:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 3.3 km hinter Herkulesblick und 8.9 km vor AD Drammetal", + "", + "L\u00e4nge: 16.96 km | Maximale Durchfahrtsbreite: 7.75 m", + "", + "A7 vom Dreieck Drammetal (AD) nach Kassel-Nord (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.596779597, + 51.342140165 + ], + [ + 9.5981722, + 51.343119601 + ], + [ + 9.5984582, + 51.343318301 + ], + [ + 9.6008847, + 51.345063901 + ], + [ + 9.6014865, + 51.345584501 + ], + [ + 9.6018618, + 51.345915301 + ], + [ + 9.6022522, + 51.346274501 + ], + [ + 9.6026428, + 51.346647101 + ], + [ + 9.6032931, + 51.347300301 + ], + [ + 9.6040956, + 51.348106201 + ], + [ + 9.6068472, + 51.350857401 + ], + [ + 9.6079365, + 51.351960901 + ], + [ + 9.6083954, + 51.352428801 + ], + [ + 9.6107804, + 51.354843801 + ], + [ + 9.6109847, + 51.355050601 + ], + [ + 9.6112649, + 51.355334301 + ], + [ + 9.6140066, + 51.358119301 + ], + [ + 9.6159691, + 51.360056201 + ], + [ + 9.6165132, + 51.360600701 + ], + [ + 9.6170229, + 51.361046201 + ], + [ + 9.6174198, + 51.361374401 + ], + [ + 9.6178611, + 51.361694401 + ], + [ + 9.6183801, + 51.362061101 + ], + [ + 9.6191389, + 51.362527801 + ], + [ + 9.6199009, + 51.362934001 + ], + [ + 9.6206546, + 51.363283601 + ], + [ + 9.6214599, + 51.363616501 + ], + [ + 9.6223759, + 51.363943701 + ], + [ + 9.6227626, + 51.364068201 + ], + [ + 9.6359766, + 51.368354501 + ], + [ + 9.6381504, + 51.369068401 + ], + [ + 9.6392421, + 51.369410301 + ], + [ + 9.6409936, + 51.369978401 + ], + [ + 9.6416658, + 51.370191801 + ], + [ + 9.6433087, + 51.370726101 + ], + [ + 9.6450548, + 51.371290601 + ], + [ + 9.6459416, + 51.371586301 + ], + [ + 9.6482318, + 51.372344501 + ], + [ + 9.64934, + 51.372750201 + ], + [ + 9.6502422, + 51.373107301 + ], + [ + 9.6511149, + 51.373488301 + ], + [ + 9.6519276, + 51.373889001 + ], + [ + 9.6530213, + 51.374514501 + ], + [ + 9.6537214, + 51.374976201 + ], + [ + 9.6539524, + 51.375151901 + ], + [ + 9.6543679, + 51.375461401 + ], + [ + 9.6547005, + 51.375742601 + ], + [ + 9.6551404, + 51.376161201 + ], + [ + 9.6554787, + 51.376495201 + ], + [ + 9.655795, + 51.376842201 + ], + [ + 9.6560932, + 51.377197401 + ], + [ + 9.6563706, + 51.377556001 + ], + [ + 9.6568234, + 51.378226001 + ], + [ + 9.6573167, + 51.379056601 + ], + [ + 9.6609375, + 51.385135501 + ], + [ + 9.6641271, + 51.390520501 + ], + [ + 9.6646638, + 51.391400801 + ], + [ + 9.6649218, + 51.391824001 + ], + [ + 9.6650945, + 51.392093901 + ], + [ + 9.6652784, + 51.392360901 + ], + [ + 9.6654735, + 51.392624701 + ], + [ + 9.6656797, + 51.392885301 + ], + [ + 9.6658967, + 51.393142401 + ], + [ + 9.6661399, + 51.393412501 + ], + [ + 9.6663951, + 51.393678301 + ], + [ + 9.6666602, + 51.393940301 + ], + [ + 9.6669383, + 51.394197001 + ], + [ + 9.6672289, + 51.394448201 + ], + [ + 9.6675319, + 51.394693701 + ], + [ + 9.6677717, + 51.394877301 + ], + [ + 9.6680183, + 51.395057401 + ], + [ + 9.6682718, + 51.395233701 + ], + [ + 9.6685319, + 51.395406201 + ], + [ + 9.6688499, + 51.395617101 + ], + [ + 9.6691777, + 51.395822101 + ], + [ + 9.6695151, + 51.396020901 + ], + [ + 9.6698618, + 51.396213501 + ], + [ + 9.6702175, + 51.396399501 + ], + [ + 9.6704968, + 51.396538001 + ], + [ + 9.6707812, + 51.396672601 + ], + [ + 9.6710703, + 51.396803001 + ], + [ + 9.6714134, + 51.396955101 + ], + [ + 9.6717623, + 51.397101801 + ], + [ + 9.6721853, + 51.397269501 + ], + [ + 9.6726159, + 51.397429501 + ], + [ + 9.6730539, + 51.397581501 + ], + [ + 9.6733839, + 51.397691501 + ], + [ + 9.6737186, + 51.397796001 + ], + [ + 9.6740575, + 51.397894901 + ], + [ + 9.6744006, + 51.397988101 + ], + [ + 9.6748258, + 51.398094401 + ], + [ + 9.6752564, + 51.398191901 + ], + [ + 9.6756918, + 51.398280701 + ], + [ + 9.6761317, + 51.398360501 + ], + [ + 9.6765755, + 51.398431301 + ], + [ + 9.6770228, + 51.398493001 + ], + [ + 9.677473, + 51.398545601 + ], + [ + 9.6779258, + 51.398589001 + ], + [ + 9.6783806, + 51.398623201 + ], + [ + 9.6788077, + 51.398645101 + ], + [ + 9.6792356, + 51.398658801 + ], + [ + 9.679664, + 51.398664201 + ], + [ + 9.6800925, + 51.398661301 + ], + [ + 9.6805206, + 51.398650201 + ], + [ + 9.680948, + 51.398630901 + ], + [ + 9.6813742, + 51.398603401 + ], + [ + 9.6817988, + 51.398567601 + ], + [ + 9.6822064, + 51.398525401 + ], + [ + 9.6826118, + 51.398475601 + ], + [ + 9.6830146, + 51.398418401 + ], + [ + 9.6834145, + 51.398353601 + ], + [ + 9.6838112, + 51.398281501 + ], + [ + 9.6842042, + 51.398202001 + ], + [ + 9.6845932, + 51.398115301 + ], + [ + 9.6849784, + 51.398022101 + ], + [ + 9.6855014, + 51.397895601 + ], + [ + 9.6864431, + 51.397667701 + ], + [ + 9.6872225, + 51.397484901 + ], + [ + 9.6876374, + 51.397396401 + ], + [ + 9.688056, + 51.397315101 + ], + [ + 9.6884781, + 51.397241001 + ], + [ + 9.6889033, + 51.397174201 + ], + [ + 9.6893247, + 51.397115701 + ], + [ + 9.6897485, + 51.397064301 + ], + [ + 9.6901744, + 51.397020101 + ], + [ + 9.6906021, + 51.396983201 + ], + [ + 9.6910312, + 51.396953501 + ], + [ + 9.6914614, + 51.396931201 + ], + [ + 9.6918919, + 51.396917401 + ], + [ + 9.6923229, + 51.396912201 + ], + [ + 9.692754, + 51.396915601 + ], + [ + 9.6931846, + 51.396927401 + ], + [ + 9.6935527, + 51.396944401 + ], + [ + 9.69392, + 51.396967601 + ], + [ + 9.6942861, + 51.396997001 + ], + [ + 9.6946508, + 51.397032601 + ], + [ + 9.6950138, + 51.397074301 + ], + [ + 9.695467, + 51.397136001 + ], + [ + 9.6959079, + 51.397205301 + ], + [ + 9.696345, + 51.397283401 + ], + [ + 9.6967779, + 51.397370201 + ], + [ + 9.6972061, + 51.397465501 + ], + [ + 9.6976292, + 51.397569401 + ], + [ + 9.6980558, + 51.397687601 + ], + [ + 9.6984142, + 51.397794601 + ], + [ + 9.698768, + 51.397907401 + ], + [ + 9.699117, + 51.398025801 + ], + [ + 9.6994611, + 51.398149801 + ], + [ + 9.6997998, + 51.398279301 + ], + [ + 9.7001413, + 51.398421701 + ], + [ + 9.7004758, + 51.398570301 + ], + [ + 9.7008395, + 51.398743001 + ], + [ + 9.7011937, + 51.398923201 + ], + [ + 9.7015382, + 51.399110601 + ], + [ + 9.7018724, + 51.399305101 + ], + [ + 9.7031004, + 51.400078501 + ], + [ + 9.7033976, + 51.400254701 + ], + [ + 9.7037033, + 51.400425301 + ], + [ + 9.7040171, + 51.400590001 + ], + [ + 9.7043387, + 51.400748701 + ], + [ + 9.7046607, + 51.400898001 + ], + [ + 9.7049897, + 51.401041301 + ], + [ + 9.7053252, + 51.401178401 + ], + [ + 9.7072223, + 51.401935201 + ], + [ + 9.7074662, + 51.402031401 + ], + [ + 9.7077232, + 51.402132901 + ], + [ + 9.7084076, + 51.402402901 + ], + [ + 9.709813, + 51.402957501 + ], + [ + 9.7109747, + 51.403415901 + ], + [ + 9.7160476, + 51.405426901 + ], + [ + 9.7171545, + 51.405860401 + ], + [ + 9.7180566, + 51.406196601 + ], + [ + 9.7194567, + 51.406621901 + ], + [ + 9.7207983, + 51.406973401 + ], + [ + 9.7213166, + 51.407093101 + ], + [ + 9.7220723, + 51.407267501 + ], + [ + 9.7230903, + 51.407457001 + ], + [ + 9.7241214, + 51.407617901 + ], + [ + 9.724981, + 51.407723201 + ], + [ + 9.7257263, + 51.407803501 + ], + [ + 9.7265138, + 51.407864001 + ], + [ + 9.727334, + 51.407910601 + ], + [ + 9.7283445, + 51.407946901 + ], + [ + 9.7293678, + 51.407944501 + ], + [ + 9.7304844, + 51.407917901 + ], + [ + 9.7312504, + 51.407876701 + ], + [ + 9.7317325, + 51.407849801 + ], + [ + 9.7336232, + 51.407720301 + ], + [ + 9.7353876, + 51.407601301 + ], + [ + 9.7367508, + 51.407505501 + ], + [ + 9.7377341, + 51.407414601 + ], + [ + 9.7385436, + 51.407323801 + ], + [ + 9.7393531, + 51.407232901 + ], + [ + 9.7404139, + 51.407086701 + ], + [ + 9.7416553, + 51.406871301 + ], + [ + 9.7431813, + 51.406569501 + ], + [ + 9.744438, + 51.406277601 + ], + [ + 9.7459175, + 51.405867901 + ], + [ + 9.7472552, + 51.405427901 + ], + [ + 9.7483898, + 51.405023601 + ], + [ + 9.7496298, + 51.404529501 + ], + [ + 9.7528844, + 51.403131901 + ], + [ + 9.7602328, + 51.399979701 + ], + [ + 9.7635732, + 51.398527701 + ], + [ + 9.7647549, + 51.398019801 + ], + [ + 9.7653657, + 51.397756901 + ], + [ + 9.7664447, + 51.397311201 + ], + [ + 9.7668996, + 51.397131701 + ], + [ + 9.7673585, + 51.396956201 + ], + [ + 9.7678215, + 51.396784901 + ], + [ + 9.7682883, + 51.396617701 + ], + [ + 9.7687589, + 51.396454701 + ], + [ + 9.7692331, + 51.396295901 + ], + [ + 9.7696872, + 51.396149201 + ], + [ + 9.7701483, + 51.396011301 + ], + [ + 9.7706156, + 51.395881801 + ], + [ + 9.7710888, + 51.395760901 + ], + [ + 9.7715675, + 51.395648801 + ], + [ + 9.7720199, + 51.395546801 + ], + [ + 9.7724772, + 51.395453901 + ], + [ + 9.7729391, + 51.395370001 + ], + [ + 9.773405, + 51.395295401 + ], + [ + 9.7738744, + 51.395230101 + ], + [ + 9.7743426, + 51.395174501 + ], + [ + 9.7747635, + 51.395132701 + ], + [ + 9.7751861, + 51.395098201 + ], + [ + 9.7756101, + 51.395071201 + ], + [ + 9.7760521, + 51.395053501 + ], + [ + 9.7764947, + 51.395043701 + ], + [ + 9.7769188, + 51.395041901 + ], + [ + 9.7773428, + 51.395047401 + ], + [ + 9.7777665, + 51.395060301 + ], + [ + 9.7781893, + 51.395080601 + ], + [ + 9.7786111, + 51.395108101 + ], + [ + 9.7790316, + 51.395143001 + ], + [ + 9.7794503, + 51.395185201 + ], + [ + 9.779929, + 51.395247101 + ], + [ + 9.7804045, + 51.395318101 + ], + [ + 9.7808763, + 51.395398101 + ], + [ + 9.7812134, + 51.395461201 + ], + [ + 9.7815482, + 51.395528901 + ], + [ + 9.7817214, + 51.395564801 + ], + [ + 9.7818931, + 51.395603501 + ], + [ + 9.7820491, + 51.395641601 + ], + [ + 9.7822037, + 51.395681901 + ], + [ + 9.7824716, + 51.395752301 + ], + [ + 9.7827378, + 51.395825301 + ], + [ + 9.7830095, + 51.395902901 + ], + [ + 9.7832793, + 51.395983301 + ], + [ + 9.7838777, + 51.396173301 + ], + [ + 9.784021302, + 51.396222868 + ] + ] + } + }, + { + "identifier": "2026-016520--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_007.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.34214016451743,9.596779596561314,51.39622286759315,9.78402130217027", + "point": "51.34214016451743,9.596779596561314", + "startLcPosition": "164", + "impact": { + "lower": "Drammetal", + "upper": "Herkulesblick", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Herkulesblick - Drammetal", + "coordinate": { + "lat": 51.34214016451743, + "long": 9.596779596561314 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:00 Uhr", + "14.04.26 von 08:00 bis 16:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 3.3 km hinter Herkulesblick und 8.9 km vor AD Drammetal", + "", + "L\u00e4nge: 16.96 km | Maximale Durchfahrtsbreite: 7.75 m", + "", + "A7 vom Dreieck Drammetal (AD) nach Kassel-Nord (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.596779597, + 51.342140165 + ], + [ + 9.5981722, + 51.343119601 + ], + [ + 9.5984582, + 51.343318301 + ], + [ + 9.6008847, + 51.345063901 + ], + [ + 9.6014865, + 51.345584501 + ], + [ + 9.6018618, + 51.345915301 + ], + [ + 9.6022522, + 51.346274501 + ], + [ + 9.6026428, + 51.346647101 + ], + [ + 9.6032931, + 51.347300301 + ], + [ + 9.6040956, + 51.348106201 + ], + [ + 9.6068472, + 51.350857401 + ], + [ + 9.6079365, + 51.351960901 + ], + [ + 9.6083954, + 51.352428801 + ], + [ + 9.6107804, + 51.354843801 + ], + [ + 9.6109847, + 51.355050601 + ], + [ + 9.6112649, + 51.355334301 + ], + [ + 9.6140066, + 51.358119301 + ], + [ + 9.6159691, + 51.360056201 + ], + [ + 9.6165132, + 51.360600701 + ], + [ + 9.6170229, + 51.361046201 + ], + [ + 9.6174198, + 51.361374401 + ], + [ + 9.6178611, + 51.361694401 + ], + [ + 9.6183801, + 51.362061101 + ], + [ + 9.6191389, + 51.362527801 + ], + [ + 9.6199009, + 51.362934001 + ], + [ + 9.6206546, + 51.363283601 + ], + [ + 9.6214599, + 51.363616501 + ], + [ + 9.6223759, + 51.363943701 + ], + [ + 9.6227626, + 51.364068201 + ], + [ + 9.6359766, + 51.368354501 + ], + [ + 9.6381504, + 51.369068401 + ], + [ + 9.6392421, + 51.369410301 + ], + [ + 9.6409936, + 51.369978401 + ], + [ + 9.6416658, + 51.370191801 + ], + [ + 9.6433087, + 51.370726101 + ], + [ + 9.6450548, + 51.371290601 + ], + [ + 9.6459416, + 51.371586301 + ], + [ + 9.6482318, + 51.372344501 + ], + [ + 9.64934, + 51.372750201 + ], + [ + 9.6502422, + 51.373107301 + ], + [ + 9.6511149, + 51.373488301 + ], + [ + 9.6519276, + 51.373889001 + ], + [ + 9.6530213, + 51.374514501 + ], + [ + 9.6537214, + 51.374976201 + ], + [ + 9.6539524, + 51.375151901 + ], + [ + 9.6543679, + 51.375461401 + ], + [ + 9.6547005, + 51.375742601 + ], + [ + 9.6551404, + 51.376161201 + ], + [ + 9.6554787, + 51.376495201 + ], + [ + 9.655795, + 51.376842201 + ], + [ + 9.6560932, + 51.377197401 + ], + [ + 9.6563706, + 51.377556001 + ], + [ + 9.6568234, + 51.378226001 + ], + [ + 9.6573167, + 51.379056601 + ], + [ + 9.6609375, + 51.385135501 + ], + [ + 9.6641271, + 51.390520501 + ], + [ + 9.6646638, + 51.391400801 + ], + [ + 9.6649218, + 51.391824001 + ], + [ + 9.6650945, + 51.392093901 + ], + [ + 9.6652784, + 51.392360901 + ], + [ + 9.6654735, + 51.392624701 + ], + [ + 9.6656797, + 51.392885301 + ], + [ + 9.6658967, + 51.393142401 + ], + [ + 9.6661399, + 51.393412501 + ], + [ + 9.6663951, + 51.393678301 + ], + [ + 9.6666602, + 51.393940301 + ], + [ + 9.6669383, + 51.394197001 + ], + [ + 9.6672289, + 51.394448201 + ], + [ + 9.6675319, + 51.394693701 + ], + [ + 9.6677717, + 51.394877301 + ], + [ + 9.6680183, + 51.395057401 + ], + [ + 9.6682718, + 51.395233701 + ], + [ + 9.6685319, + 51.395406201 + ], + [ + 9.6688499, + 51.395617101 + ], + [ + 9.6691777, + 51.395822101 + ], + [ + 9.6695151, + 51.396020901 + ], + [ + 9.6698618, + 51.396213501 + ], + [ + 9.6702175, + 51.396399501 + ], + [ + 9.6704968, + 51.396538001 + ], + [ + 9.6707812, + 51.396672601 + ], + [ + 9.6710703, + 51.396803001 + ], + [ + 9.6714134, + 51.396955101 + ], + [ + 9.6717623, + 51.397101801 + ], + [ + 9.6721853, + 51.397269501 + ], + [ + 9.6726159, + 51.397429501 + ], + [ + 9.6730539, + 51.397581501 + ], + [ + 9.6733839, + 51.397691501 + ], + [ + 9.6737186, + 51.397796001 + ], + [ + 9.6740575, + 51.397894901 + ], + [ + 9.6744006, + 51.397988101 + ], + [ + 9.6748258, + 51.398094401 + ], + [ + 9.6752564, + 51.398191901 + ], + [ + 9.6756918, + 51.398280701 + ], + [ + 9.6761317, + 51.398360501 + ], + [ + 9.6765755, + 51.398431301 + ], + [ + 9.6770228, + 51.398493001 + ], + [ + 9.677473, + 51.398545601 + ], + [ + 9.6779258, + 51.398589001 + ], + [ + 9.6783806, + 51.398623201 + ], + [ + 9.6788077, + 51.398645101 + ], + [ + 9.6792356, + 51.398658801 + ], + [ + 9.679664, + 51.398664201 + ], + [ + 9.6800925, + 51.398661301 + ], + [ + 9.6805206, + 51.398650201 + ], + [ + 9.680948, + 51.398630901 + ], + [ + 9.6813742, + 51.398603401 + ], + [ + 9.6817988, + 51.398567601 + ], + [ + 9.6822064, + 51.398525401 + ], + [ + 9.6826118, + 51.398475601 + ], + [ + 9.6830146, + 51.398418401 + ], + [ + 9.6834145, + 51.398353601 + ], + [ + 9.6838112, + 51.398281501 + ], + [ + 9.6842042, + 51.398202001 + ], + [ + 9.6845932, + 51.398115301 + ], + [ + 9.6849784, + 51.398022101 + ], + [ + 9.6855014, + 51.397895601 + ], + [ + 9.6864431, + 51.397667701 + ], + [ + 9.6872225, + 51.397484901 + ], + [ + 9.6876374, + 51.397396401 + ], + [ + 9.688056, + 51.397315101 + ], + [ + 9.6884781, + 51.397241001 + ], + [ + 9.6889033, + 51.397174201 + ], + [ + 9.6893247, + 51.397115701 + ], + [ + 9.6897485, + 51.397064301 + ], + [ + 9.6901744, + 51.397020101 + ], + [ + 9.6906021, + 51.396983201 + ], + [ + 9.6910312, + 51.396953501 + ], + [ + 9.6914614, + 51.396931201 + ], + [ + 9.6918919, + 51.396917401 + ], + [ + 9.6923229, + 51.396912201 + ], + [ + 9.692754, + 51.396915601 + ], + [ + 9.6931846, + 51.396927401 + ], + [ + 9.6935527, + 51.396944401 + ], + [ + 9.69392, + 51.396967601 + ], + [ + 9.6942861, + 51.396997001 + ], + [ + 9.6946508, + 51.397032601 + ], + [ + 9.6950138, + 51.397074301 + ], + [ + 9.695467, + 51.397136001 + ], + [ + 9.6959079, + 51.397205301 + ], + [ + 9.696345, + 51.397283401 + ], + [ + 9.6967779, + 51.397370201 + ], + [ + 9.6972061, + 51.397465501 + ], + [ + 9.6976292, + 51.397569401 + ], + [ + 9.6980558, + 51.397687601 + ], + [ + 9.6984142, + 51.397794601 + ], + [ + 9.698768, + 51.397907401 + ], + [ + 9.699117, + 51.398025801 + ], + [ + 9.6994611, + 51.398149801 + ], + [ + 9.6997998, + 51.398279301 + ], + [ + 9.7001413, + 51.398421701 + ], + [ + 9.7004758, + 51.398570301 + ], + [ + 9.7008395, + 51.398743001 + ], + [ + 9.7011937, + 51.398923201 + ], + [ + 9.7015382, + 51.399110601 + ], + [ + 9.7018724, + 51.399305101 + ], + [ + 9.7031004, + 51.400078501 + ], + [ + 9.7033976, + 51.400254701 + ], + [ + 9.7037033, + 51.400425301 + ], + [ + 9.7040171, + 51.400590001 + ], + [ + 9.7043387, + 51.400748701 + ], + [ + 9.7046607, + 51.400898001 + ], + [ + 9.7049897, + 51.401041301 + ], + [ + 9.7053252, + 51.401178401 + ], + [ + 9.7072223, + 51.401935201 + ], + [ + 9.7074662, + 51.402031401 + ], + [ + 9.7077232, + 51.402132901 + ], + [ + 9.7084076, + 51.402402901 + ], + [ + 9.709813, + 51.402957501 + ], + [ + 9.7109747, + 51.403415901 + ], + [ + 9.7160476, + 51.405426901 + ], + [ + 9.7171545, + 51.405860401 + ], + [ + 9.7180566, + 51.406196601 + ], + [ + 9.7194567, + 51.406621901 + ], + [ + 9.7207983, + 51.406973401 + ], + [ + 9.7213166, + 51.407093101 + ], + [ + 9.7220723, + 51.407267501 + ], + [ + 9.7230903, + 51.407457001 + ], + [ + 9.7241214, + 51.407617901 + ], + [ + 9.724981, + 51.407723201 + ], + [ + 9.7257263, + 51.407803501 + ], + [ + 9.7265138, + 51.407864001 + ], + [ + 9.727334, + 51.407910601 + ], + [ + 9.7283445, + 51.407946901 + ], + [ + 9.7293678, + 51.407944501 + ], + [ + 9.7304844, + 51.407917901 + ], + [ + 9.7312504, + 51.407876701 + ], + [ + 9.7317325, + 51.407849801 + ], + [ + 9.7336232, + 51.407720301 + ], + [ + 9.7353876, + 51.407601301 + ], + [ + 9.7367508, + 51.407505501 + ], + [ + 9.7377341, + 51.407414601 + ], + [ + 9.7385436, + 51.407323801 + ], + [ + 9.7393531, + 51.407232901 + ], + [ + 9.7404139, + 51.407086701 + ], + [ + 9.7416553, + 51.406871301 + ], + [ + 9.7431813, + 51.406569501 + ], + [ + 9.744438, + 51.406277601 + ], + [ + 9.7459175, + 51.405867901 + ], + [ + 9.7472552, + 51.405427901 + ], + [ + 9.7483898, + 51.405023601 + ], + [ + 9.7496298, + 51.404529501 + ], + [ + 9.7528844, + 51.403131901 + ], + [ + 9.7602328, + 51.399979701 + ], + [ + 9.7635732, + 51.398527701 + ], + [ + 9.7647549, + 51.398019801 + ], + [ + 9.7653657, + 51.397756901 + ], + [ + 9.7664447, + 51.397311201 + ], + [ + 9.7668996, + 51.397131701 + ], + [ + 9.7673585, + 51.396956201 + ], + [ + 9.7678215, + 51.396784901 + ], + [ + 9.7682883, + 51.396617701 + ], + [ + 9.7687589, + 51.396454701 + ], + [ + 9.7692331, + 51.396295901 + ], + [ + 9.7696872, + 51.396149201 + ], + [ + 9.7701483, + 51.396011301 + ], + [ + 9.7706156, + 51.395881801 + ], + [ + 9.7710888, + 51.395760901 + ], + [ + 9.7715675, + 51.395648801 + ], + [ + 9.7720199, + 51.395546801 + ], + [ + 9.7724772, + 51.395453901 + ], + [ + 9.7729391, + 51.395370001 + ], + [ + 9.773405, + 51.395295401 + ], + [ + 9.7738744, + 51.395230101 + ], + [ + 9.7743426, + 51.395174501 + ], + [ + 9.7747635, + 51.395132701 + ], + [ + 9.7751861, + 51.395098201 + ], + [ + 9.7756101, + 51.395071201 + ], + [ + 9.7760521, + 51.395053501 + ], + [ + 9.7764947, + 51.395043701 + ], + [ + 9.7769188, + 51.395041901 + ], + [ + 9.7773428, + 51.395047401 + ], + [ + 9.7777665, + 51.395060301 + ], + [ + 9.7781893, + 51.395080601 + ], + [ + 9.7786111, + 51.395108101 + ], + [ + 9.7790316, + 51.395143001 + ], + [ + 9.7794503, + 51.395185201 + ], + [ + 9.779929, + 51.395247101 + ], + [ + 9.7804045, + 51.395318101 + ], + [ + 9.7808763, + 51.395398101 + ], + [ + 9.7812134, + 51.395461201 + ], + [ + 9.7815482, + 51.395528901 + ], + [ + 9.7817214, + 51.395564801 + ], + [ + 9.7818931, + 51.395603501 + ], + [ + 9.7820491, + 51.395641601 + ], + [ + 9.7822037, + 51.395681901 + ], + [ + 9.7824716, + 51.395752301 + ], + [ + 9.7827378, + 51.395825301 + ], + [ + 9.7830095, + 51.395902901 + ], + [ + 9.7832793, + 51.395983301 + ], + [ + 9.7838777, + 51.396173301 + ], + [ + 9.784021302, + 51.396222868 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de38", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.315571906422576,9.561935623537343,51.31548558480221,9.561895450496442", + "point": "51.315571906422576,9.561935623537343", + "startLcPosition": "164", + "impact": { + "lower": "Kassel-Nord", + "upper": "Herkulesblick", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Herkulesblick - Kassel-Nord", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 51.315571906422576, + "long": 9.561935623537343 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Hannover -> Kassel, zwischen 0.6 km hinter Herkulesblick und 0.8 km vor AS Kassel-Nord", + "", + "L\u00e4nge: 0.01 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.561935624, + 51.315571906 + ], + [ + 9.56189545, + 51.315485585 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.30932532477884,9.559722655174582,51.303095529040384,9.561498922878272", + "point": "51.30932532477884,9.559722655174582", + "startLcPosition": "164", + "impact": { + "lower": "Kassel-Ost", + "upper": "Herkulesblick", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Herkulesblick - Kassel-Ost", + "startTimestamp": "2026-04-15T08:00:00+02:00", + "coordinate": { + "lat": 51.30932532477884, + "long": 9.559722655174582 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 08:00 Uhr", + "Ende: 15.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Hannover -> Kassel, zwischen 1.3 km hinter Herkulesblick und 0.9 km vor AS Kassel-Ost", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 8.6 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.559722655, + 51.309325325 + ], + [ + 9.5597225, + 51.309320001 + ], + [ + 9.5597261, + 51.308995401 + ], + [ + 9.5597433, + 51.308685801 + ], + [ + 9.5597947, + 51.308300301 + ], + [ + 9.5598509, + 51.307987101 + ], + [ + 9.5599277, + 51.307653101 + ], + [ + 9.5600693, + 51.307188001 + ], + [ + 9.5607184, + 51.305308101 + ], + [ + 9.5608335, + 51.304998101 + ], + [ + 9.5610253, + 51.304436101 + ], + [ + 9.561498923, + 51.303095529 + ] + ] + } + }, + { + "identifier": "2026-015451--vi-bs.2026-04-20_07-00-00-000.devi-zus.2026-04-20_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.33670608790446,9.588564344171013,51.00411737308354,9.481210807423437", + "point": "51.33670608790446,9.588564344171013", + "startLcPosition": "165", + "impact": { + "lower": "Homberg (Efze)", + "upper": "Staufenberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Fulda", + "title": "A7 | Staufenberg - Homberg (Efze)", + "coordinate": { + "lat": 51.33670608790446, + "long": 9.588564344171013 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 20.04.26 und dem 27.04.26 von 07:00 bis 18:00 Uhr.", + "", + "A7: Hannover -> Fulda, zwischen 1.9 km hinter Staufenberg und 0.1 km vor AS Homberg (Efze)", + "", + "L\u00e4nge: 41.38 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "Abfallsammlung freie Strecke - Wanderbaustelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.588564344, + 51.336706088 + ], + [ + 9.5866944, + 51.335416701 + ], + [ + 9.5734933, + 51.326361401 + ], + [ + 9.5712141, + 51.324790001 + ], + [ + 9.5701694, + 51.324073001 + ], + [ + 9.567318, + 51.322116001 + ], + [ + 9.5659898, + 51.321184201 + ], + [ + 9.5655079, + 51.320827601 + ], + [ + 9.5651208, + 51.320506001 + ], + [ + 9.5647401, + 51.320190901 + ], + [ + 9.5643873, + 51.319854301 + ], + [ + 9.5639452, + 51.319372401 + ], + [ + 9.5635282, + 51.318819501 + ], + [ + 9.5632864, + 51.318418701 + ], + [ + 9.5630584, + 51.317988901 + ], + [ + 9.5627842, + 51.317395201 + ], + [ + 9.5616173, + 51.314887901 + ], + [ + 9.5613375, + 51.314230301 + ], + [ + 9.5606585, + 51.312751601 + ], + [ + 9.5602997, + 51.311922401 + ], + [ + 9.5600447, + 51.311272901 + ], + [ + 9.5599504, + 51.310975501 + ], + [ + 9.559877, + 51.310671701 + ], + [ + 9.5598437, + 51.310483301 + ], + [ + 9.5597834, + 51.310142301 + ], + [ + 9.5597319, + 51.309642501 + ], + [ + 9.5597225, + 51.309320001 + ], + [ + 9.5597261, + 51.308995401 + ], + [ + 9.5597433, + 51.308685801 + ], + [ + 9.5597947, + 51.308300301 + ], + [ + 9.5598509, + 51.307987101 + ], + [ + 9.5599277, + 51.307653101 + ], + [ + 9.5600693, + 51.307188001 + ], + [ + 9.5607184, + 51.305308101 + ], + [ + 9.5608335, + 51.304998101 + ], + [ + 9.5610253, + 51.304436101 + ], + [ + 9.5622555, + 51.300953901 + ], + [ + 9.5623555, + 51.300620701 + ], + [ + 9.5624358, + 51.300326601 + ], + [ + 9.5625021, + 51.300055201 + ], + [ + 9.5625547, + 51.299756501 + ], + [ + 9.56259, + 51.299444601 + ], + [ + 9.5626062, + 51.299192601 + ], + [ + 9.5626125, + 51.298920401 + ], + [ + 9.5626036, + 51.298643101 + ], + [ + 9.5625807, + 51.298355101 + ], + [ + 9.5625351, + 51.298040701 + ], + [ + 9.5624873, + 51.297765501 + ], + [ + 9.5624103, + 51.297451401 + ], + [ + 9.5623487, + 51.297230601 + ], + [ + 9.5622576, + 51.296979601 + ], + [ + 9.5621732, + 51.296762201 + ], + [ + 9.5620651, + 51.296507701 + ], + [ + 9.56192, + 51.296217501 + ], + [ + 9.5617055, + 51.295826201 + ], + [ + 9.5614764, + 51.295464101 + ], + [ + 9.5613617, + 51.295298701 + ], + [ + 9.5612397, + 51.295132401 + ], + [ + 9.5611526, + 51.295019101 + ], + [ + 9.5609713, + 51.294795801 + ], + [ + 9.5608153, + 51.294617201 + ], + [ + 9.560648, + 51.294432701 + ], + [ + 9.5604249, + 51.294214201 + ], + [ + 9.5598746, + 51.293698501 + ], + [ + 9.5596275, + 51.293486701 + ], + [ + 9.559273, + 51.293209001 + ], + [ + 9.5588807, + 51.292923501 + ], + [ + 9.5584603, + 51.292651901 + ], + [ + 9.5582095, + 51.292497001 + ], + [ + 9.5579772, + 51.292354901 + ], + [ + 9.5526017, + 51.289333801 + ], + [ + 9.5521, + 51.289051801 + ], + [ + 9.5451923, + 51.285191901 + ], + [ + 9.544469, + 51.284786201 + ], + [ + 9.5429012, + 51.283908101 + ], + [ + 9.5358227, + 51.279884501 + ], + [ + 9.5344208, + 51.279088201 + ], + [ + 9.5293912, + 51.276221701 + ], + [ + 9.5283453, + 51.275635301 + ], + [ + 9.5224024, + 51.272240501 + ], + [ + 9.5210067, + 51.271445901 + ], + [ + 9.5205611, + 51.271170501 + ], + [ + 9.520196, + 51.270923301 + ], + [ + 9.5198676, + 51.270689801 + ], + [ + 9.5195207, + 51.270427401 + ], + [ + 9.5191063, + 51.270086601 + ], + [ + 9.5186592, + 51.269669501 + ], + [ + 9.5185209, + 51.269550101 + ], + [ + 9.5183669, + 51.269394601 + ], + [ + 9.5179887, + 51.268963801 + ], + [ + 9.5176797, + 51.268568501 + ], + [ + 9.517523, + 51.268342401 + ], + [ + 9.5173461, + 51.268064401 + ], + [ + 9.5172636, + 51.267919301 + ], + [ + 9.5170249, + 51.267474101 + ], + [ + 9.5169877, + 51.267374901 + ], + [ + 9.5169486, + 51.267255701 + ], + [ + 9.5167825, + 51.266839501 + ], + [ + 9.5166464, + 51.266428301 + ], + [ + 9.5165413, + 51.266001201 + ], + [ + 9.5164619, + 51.265460801 + ], + [ + 9.5164173, + 51.264964701 + ], + [ + 9.5164112, + 51.264583401 + ], + [ + 9.5164495, + 51.263931901 + ], + [ + 9.516619, + 51.262269701 + ], + [ + 9.5166599, + 51.261532201 + ], + [ + 9.5166744, + 51.261295601 + ], + [ + 9.5167311, + 51.260285901 + ], + [ + 9.5168442, + 51.258404401 + ], + [ + 9.5168519, + 51.257664501 + ], + [ + 9.5169947, + 51.255792401 + ], + [ + 9.5170139, + 51.255648701 + ], + [ + 9.5170241, + 51.255424801 + ], + [ + 9.5171058, + 51.254698001 + ], + [ + 9.5171219, + 51.254518901 + ], + [ + 9.517164, + 51.254000601 + ], + [ + 9.5172278, + 51.253159801 + ], + [ + 9.5172834, + 51.252503501 + ], + [ + 9.5172723, + 51.251930701 + ], + [ + 9.5172107, + 51.251483301 + ], + [ + 9.517128, + 51.251066201 + ], + [ + 9.5169419, + 51.250569601 + ], + [ + 9.5168367, + 51.250316201 + ], + [ + 9.5167261, + 51.250091001 + ], + [ + 9.516559, + 51.249795701 + ], + [ + 9.5162701, + 51.249331701 + ], + [ + 9.5161053, + 51.249103201 + ], + [ + 9.51593, + 51.248889401 + ], + [ + 9.5157613, + 51.248704701 + ], + [ + 9.5154343, + 51.248360901 + ], + [ + 9.5151107, + 51.248061201 + ], + [ + 9.5147746, + 51.247778501 + ], + [ + 9.5144904, + 51.247568401 + ], + [ + 9.5141835, + 51.247357401 + ], + [ + 9.5138378, + 51.247137901 + ], + [ + 9.5133403, + 51.246845901 + ], + [ + 9.5119722, + 51.246111101 + ], + [ + 9.5093188, + 51.244605301 + ], + [ + 9.5068368, + 51.243230501 + ], + [ + 9.505553, + 51.242511101 + ], + [ + 9.5045703, + 51.241970901 + ], + [ + 9.5032987, + 51.241271601 + ], + [ + 9.5024583, + 51.240778101 + ], + [ + 9.5016483, + 51.240246401 + ], + [ + 9.5001554, + 51.239232901 + ], + [ + 9.4898953, + 51.232235601 + ], + [ + 9.4861383, + 51.229665701 + ], + [ + 9.4848975, + 51.228815601 + ], + [ + 9.4838663, + 51.228103001 + ], + [ + 9.4831319, + 51.227540001 + ], + [ + 9.4825946, + 51.227109701 + ], + [ + 9.4820308, + 51.226613601 + ], + [ + 9.4815268, + 51.226141901 + ], + [ + 9.4811495, + 51.225763401 + ], + [ + 9.4806921, + 51.225288501 + ], + [ + 9.4801169, + 51.224617501 + ], + [ + 9.4797679, + 51.224191401 + ], + [ + 9.4795052, + 51.223833001 + ], + [ + 9.4791111, + 51.223265001 + ], + [ + 9.4786532, + 51.222546801 + ], + [ + 9.4782105, + 51.221830501 + ], + [ + 9.4716359, + 51.211137001 + ], + [ + 9.4708894, + 51.209926801 + ], + [ + 9.4700247, + 51.208536101 + ], + [ + 9.4689207, + 51.206751501 + ], + [ + 9.4678428, + 51.204991701 + ], + [ + 9.4672355, + 51.203881001 + ], + [ + 9.4668943, + 51.203074601 + ], + [ + 9.4667206, + 51.202418101 + ], + [ + 9.4666034, + 51.201733701 + ], + [ + 9.4665966, + 51.201226301 + ], + [ + 9.466627, + 51.200713101 + ], + [ + 9.4666832, + 51.200329201 + ], + [ + 9.4667733, + 51.199898901 + ], + [ + 9.4668864, + 51.199502801 + ], + [ + 9.467001, + 51.199172101 + ], + [ + 9.4671619, + 51.198786801 + ], + [ + 9.467427, + 51.198221301 + ], + [ + 9.4676427, + 51.197772201 + ], + [ + 9.4685973, + 51.195813801 + ], + [ + 9.4716563, + 51.189549001 + ], + [ + 9.4729412, + 51.186893301 + ], + [ + 9.4730751, + 51.186596801 + ], + [ + 9.4731981, + 51.186298501 + ], + [ + 9.47331, + 51.185998501 + ], + [ + 9.4734108, + 51.185696901 + ], + [ + 9.4734962, + 51.185409201 + ], + [ + 9.4735715, + 51.185120501 + ], + [ + 9.4736367, + 51.184830701 + ], + [ + 9.4736917, + 51.184540201 + ], + [ + 9.4737445, + 51.184184901 + ], + [ + 9.473821, + 51.183452501 + ], + [ + 9.4737941, + 51.182554601 + ], + [ + 9.473739, + 51.181828001 + ], + [ + 9.4737302, + 51.181757001 + ], + [ + 9.4734382, + 51.180430601 + ], + [ + 9.473053, + 51.178725101 + ], + [ + 9.4727545, + 51.177398401 + ], + [ + 9.4726965, + 51.177088201 + ], + [ + 9.4726494, + 51.176777201 + ], + [ + 9.4726134, + 51.176465601 + ], + [ + 9.4725865, + 51.176121901 + ], + [ + 9.4725731, + 51.175777901 + ], + [ + 9.4725732, + 51.175433701 + ], + [ + 9.4725867, + 51.175089701 + ], + [ + 9.4726136, + 51.174746001 + ], + [ + 9.4726515, + 51.174455601 + ], + [ + 9.4726974, + 51.174165801 + ], + [ + 9.4727511, + 51.173876401 + ], + [ + 9.4728128, + 51.173587601 + ], + [ + 9.4728823, + 51.173299601 + ], + [ + 9.4729597, + 51.173012301 + ], + [ + 9.4730575, + 51.172734801 + ], + [ + 9.4731615, + 51.172458101 + ], + [ + 9.4733179, + 51.172070901 + ], + [ + 9.4734861, + 51.171685701 + ], + [ + 9.4736109, + 51.171432901 + ], + [ + 9.4737437, + 51.171181801 + ], + [ + 9.4739199, + 51.170871701 + ], + [ + 9.4741084, + 51.170564601 + ], + [ + 9.4743088, + 51.170260401 + ], + [ + 9.476557, + 51.166941101 + ], + [ + 9.4772173, + 51.165977701 + ], + [ + 9.4800262, + 51.161801801 + ], + [ + 9.4806702, + 51.160849201 + ], + [ + 9.4808894, + 51.160478201 + ], + [ + 9.4810722, + 51.160130201 + ], + [ + 9.481219, + 51.159803801 + ], + [ + 9.4813112, + 51.159535501 + ], + [ + 9.4813958, + 51.159264401 + ], + [ + 9.4815062, + 51.158718101 + ], + [ + 9.4815494, + 51.158168001 + ], + [ + 9.4815252, + 51.157617501 + ], + [ + 9.4814337, + 51.157069801 + ], + [ + 9.4812755, + 51.156528101 + ], + [ + 9.4810837, + 51.156036001 + ], + [ + 9.4809196, + 51.155731301 + ], + [ + 9.4807443, + 51.155436701 + ], + [ + 9.4805923, + 51.155201401 + ], + [ + 9.480401, + 51.154950401 + ], + [ + 9.48019, + 51.154698301 + ], + [ + 9.4799542, + 51.154438801 + ], + [ + 9.479492, + 51.153985501 + ], + [ + 9.47835, + 51.152906601 + ], + [ + 9.477961, + 51.152501701 + ], + [ + 9.4774078, + 51.151918001 + ], + [ + 9.4770673, + 51.151508101 + ], + [ + 9.4766829, + 51.150960601 + ], + [ + 9.4764125, + 51.150510601 + ], + [ + 9.4762499, + 51.150178001 + ], + [ + 9.4760741, + 51.149797201 + ], + [ + 9.4759679, + 51.149452201 + ], + [ + 9.4758727, + 51.149081501 + ], + [ + 9.4758076, + 51.148839401 + ], + [ + 9.4757839, + 51.148751301 + ], + [ + 9.4757247, + 51.148399601 + ], + [ + 9.4756793, + 51.148074401 + ], + [ + 9.4756529, + 51.147643201 + ], + [ + 9.475635, + 51.147062801 + ], + [ + 9.475591, + 51.143453501 + ], + [ + 9.4755034, + 51.141642301 + ], + [ + 9.4754559, + 51.141094901 + ], + [ + 9.4753992, + 51.140547801 + ], + [ + 9.4753333, + 51.140001101 + ], + [ + 9.4752583, + 51.139454901 + ], + [ + 9.4751741, + 51.138909201 + ], + [ + 9.4750807, + 51.138364101 + ], + [ + 9.4749782, + 51.137819601 + ], + [ + 9.4748666, + 51.137275801 + ], + [ + 9.4747119, + 51.136598701 + ], + [ + 9.4745426, + 51.135922901 + ], + [ + 9.4743584, + 51.135248701 + ], + [ + 9.4741602, + 51.134578701 + ], + [ + 9.4739473, + 51.133910601 + ], + [ + 9.4738419, + 51.133590401 + ], + [ + 9.4736802, + 51.133106701 + ], + [ + 9.4735553, + 51.132661801 + ], + [ + 9.4734679, + 51.132296901 + ], + [ + 9.4734042, + 51.131926901 + ], + [ + 9.4733649, + 51.131555501 + ], + [ + 9.4733501, + 51.131183501 + ], + [ + 9.4733599, + 51.130811401 + ], + [ + 9.4733942, + 51.130439801 + ], + [ + 9.473453, + 51.130069501 + ], + [ + 9.4735362, + 51.129701001 + ], + [ + 9.4736436, + 51.129335001 + ], + [ + 9.473775, + 51.128972101 + ], + [ + 9.4739303, + 51.128612901 + ], + [ + 9.4741092, + 51.128258001 + ], + [ + 9.4743113, + 51.127908101 + ], + [ + 9.4745363, + 51.127563801 + ], + [ + 9.4747838, + 51.127225601 + ], + [ + 9.4750534, + 51.126894101 + ], + [ + 9.4753422, + 51.126572601 + ], + [ + 9.4754476, + 51.126458701 + ], + [ + 9.4757368, + 51.126162301 + ], + [ + 9.4760596, + 51.125861001 + ], + [ + 9.4763952, + 51.125594401 + ], + [ + 9.4767188, + 51.125331401 + ], + [ + 9.4770813, + 51.125066301 + ], + [ + 9.4774327, + 51.124825501 + ], + [ + 9.4776733, + 51.124661901 + ], + [ + 9.478146, + 51.124350601 + ], + [ + 9.4785304, + 51.124098601 + ], + [ + 9.4787425, + 51.123958501 + ], + [ + 9.4793511, + 51.123567001 + ], + [ + 9.4799053, + 51.123205301 + ], + [ + 9.4804566, + 51.122810801 + ], + [ + 9.4808262, + 51.122532801 + ], + [ + 9.481019, + 51.122376701 + ], + [ + 9.4816394, + 51.121854001 + ], + [ + 9.4820366, + 51.121475401 + ], + [ + 9.482199, + 51.121308701 + ], + [ + 9.4825223, + 51.120959101 + ], + [ + 9.4827837, + 51.120640301 + ], + [ + 9.483029, + 51.120315601 + ], + [ + 9.4832826, + 51.119961901 + ], + [ + 9.4835416, + 51.119552201 + ], + [ + 9.4837815, + 51.119130201 + ], + [ + 9.4839773, + 51.118727801 + ], + [ + 9.4840438, + 51.118582301 + ], + [ + 9.4841409, + 51.118343901 + ], + [ + 9.4842794, + 51.117978301 + ], + [ + 9.4844174, + 51.117537101 + ], + [ + 9.4844869, + 51.117219201 + ], + [ + 9.4845329, + 51.116962901 + ], + [ + 9.4845865, + 51.116541301 + ], + [ + 9.4846156, + 51.116210601 + ], + [ + 9.4846302, + 51.115893701 + ], + [ + 9.484621, + 51.115564101 + ], + [ + 9.4845978, + 51.115263501 + ], + [ + 9.4845217, + 51.114597501 + ], + [ + 9.484442, + 51.114208001 + ], + [ + 9.4843472, + 51.113829701 + ], + [ + 9.4842328, + 51.113445201 + ], + [ + 9.4839081, + 51.112434601 + ], + [ + 9.48357, + 51.111436101 + ], + [ + 9.483135, + 51.110158701 + ], + [ + 9.4829058, + 51.109431601 + ], + [ + 9.4828117, + 51.108977701 + ], + [ + 9.4827552, + 51.108483201 + ], + [ + 9.482759, + 51.107991601 + ], + [ + 9.4827855, + 51.107601101 + ], + [ + 9.4828631, + 51.107203301 + ], + [ + 9.4830101, + 51.106713901 + ], + [ + 9.4832233, + 51.106185501 + ], + [ + 9.4834597, + 51.105703401 + ], + [ + 9.4839739, + 51.104605701 + ], + [ + 9.4844613, + 51.103540601 + ], + [ + 9.4847883, + 51.102836101 + ], + [ + 9.4849017, + 51.102528801 + ], + [ + 9.4849822, + 51.102246101 + ], + [ + 9.48504, + 51.101928901 + ], + [ + 9.4850814, + 51.101574901 + ], + [ + 9.4850812, + 51.101257701 + ], + [ + 9.48506, + 51.100959701 + ], + [ + 9.4849925, + 51.100508701 + ], + [ + 9.4849125, + 51.100201501 + ], + [ + 9.4848182, + 51.099931001 + ], + [ + 9.4847282, + 51.099716101 + ], + [ + 9.4846287, + 51.099484601 + ], + [ + 9.4843703, + 51.099015101 + ], + [ + 9.484095, + 51.098555001 + ], + [ + 9.4838208, + 51.098109801 + ], + [ + 9.4835499, + 51.097588301 + ], + [ + 9.483413, + 51.097272901 + ], + [ + 9.4833083, + 51.096980001 + ], + [ + 9.4831536, + 51.096486401 + ], + [ + 9.4830703, + 51.096145001 + ], + [ + 9.4830342, + 51.095862001 + ], + [ + 9.4830073, + 51.095616901 + ], + [ + 9.4829992, + 51.095342401 + ], + [ + 9.4829992, + 51.095082001 + ], + [ + 9.483044, + 51.094568501 + ], + [ + 9.4832305, + 51.093419401 + ], + [ + 9.4834397, + 51.092246701 + ], + [ + 9.4834661, + 51.092111701 + ], + [ + 9.4837686, + 51.090392701 + ], + [ + 9.4840961, + 51.088530001 + ], + [ + 9.4841996, + 51.087915001 + ], + [ + 9.4844036, + 51.086798001 + ], + [ + 9.4845862, + 51.085720601 + ], + [ + 9.4847149, + 51.084971501 + ], + [ + 9.4849617, + 51.083571701 + ], + [ + 9.4850645, + 51.082988301 + ], + [ + 9.4852041, + 51.082424601 + ], + [ + 9.4853005, + 51.082116801 + ], + [ + 9.4854049, + 51.081777101 + ], + [ + 9.4856427, + 51.081170101 + ], + [ + 9.4859338, + 51.080542801 + ], + [ + 9.4862511, + 51.079941801 + ], + [ + 9.4865961, + 51.079329101 + ], + [ + 9.4869548, + 51.078712001 + ], + [ + 9.4878768, + 51.077082801 + ], + [ + 9.4888042, + 51.075472501 + ], + [ + 9.4893031, + 51.074575801 + ], + [ + 9.4895559, + 51.074114701 + ], + [ + 9.4897827, + 51.073649601 + ], + [ + 9.4901247, + 51.072915301 + ], + [ + 9.4904411, + 51.072135601 + ], + [ + 9.4913461, + 51.069641601 + ], + [ + 9.4922318, + 51.067190201 + ], + [ + 9.4931231, + 51.064717501 + ], + [ + 9.4935688, + 51.063473001 + ], + [ + 9.4940103, + 51.062231501 + ], + [ + 9.494494, + 51.060868901 + ], + [ + 9.4949002, + 51.059503301 + ], + [ + 9.4952669, + 51.057773401 + ], + [ + 9.4954502, + 51.056895801 + ], + [ + 9.4956308, + 51.056053801 + ], + [ + 9.4960202, + 51.054276301 + ], + [ + 9.496217, + 51.053384601 + ], + [ + 9.4964161, + 51.052507301 + ], + [ + 9.4967237, + 51.050905801 + ], + [ + 9.496909, + 51.050005001 + ], + [ + 9.4970103, + 51.049533601 + ], + [ + 9.4970698, + 51.049104601 + ], + [ + 9.4971203, + 51.048689101 + ], + [ + 9.4971249, + 51.048260101 + ], + [ + 9.4970885, + 51.047870101 + ], + [ + 9.4970181, + 51.047432901 + ], + [ + 9.4968684, + 51.046849001 + ], + [ + 9.4967245, + 51.046449001 + ], + [ + 9.4965319, + 51.046019701 + ], + [ + 9.4962886, + 51.045582701 + ], + [ + 9.4958963, + 51.045017901 + ], + [ + 9.4954251, + 51.044442701 + ], + [ + 9.4942045, + 51.043072701 + ], + [ + 9.4929618, + 51.041687101 + ], + [ + 9.4922133, + 51.040855101 + ], + [ + 9.4902053, + 51.038619301 + ], + [ + 9.4886511, + 51.036867801 + ], + [ + 9.4871351, + 51.035180401 + ], + [ + 9.486099, + 51.034018301 + ], + [ + 9.4856419, + 51.033495601 + ], + [ + 9.4851806, + 51.032856201 + ], + [ + 9.4849815, + 51.032494701 + ], + [ + 9.4848705, + 51.032278101 + ], + [ + 9.4847398, + 51.031953401 + ], + [ + 9.4846205, + 51.031640601 + ], + [ + 9.4844768, + 51.031054801 + ], + [ + 9.48443, + 51.030752201 + ], + [ + 9.4843999, + 51.030417601 + ], + [ + 9.484405, + 51.029939201 + ], + [ + 9.4844404, + 51.029492701 + ], + [ + 9.4845322, + 51.029056601 + ], + [ + 9.4846664, + 51.028632101 + ], + [ + 9.4848676, + 51.028147301 + ], + [ + 9.4850965, + 51.027714301 + ], + [ + 9.4853804, + 51.027279301 + ], + [ + 9.4856796, + 51.026876001 + ], + [ + 9.4857807, + 51.026761801 + ], + [ + 9.486106, + 51.026411501 + ], + [ + 9.4870109, + 51.025453001 + ], + [ + 9.4874639, + 51.024970801 + ], + [ + 9.4877522, + 51.024651401 + ], + [ + 9.4880941, + 51.024287201 + ], + [ + 9.4883737, + 51.023938701 + ], + [ + 9.488609, + 51.023588001 + ], + [ + 9.4888831, + 51.023073901 + ], + [ + 9.4890784, + 51.022646301 + ], + [ + 9.4892126, + 51.022242101 + ], + [ + 9.4892823, + 51.021968901 + ], + [ + 9.4893388, + 51.021720601 + ], + [ + 9.4893685, + 51.021387201 + ], + [ + 9.4893944, + 51.021109901 + ], + [ + 9.4893594, + 51.020506001 + ], + [ + 9.4893301, + 51.019930301 + ], + [ + 9.489199, + 51.018017101 + ], + [ + 9.4890644, + 51.015781601 + ], + [ + 9.4889273, + 51.013512001 + ], + [ + 9.4889016, + 51.013124001 + ], + [ + 9.4888682, + 51.012763401 + ], + [ + 9.4888351, + 51.012172401 + ], + [ + 9.4887765, + 51.011719501 + ], + [ + 9.4886701, + 51.011244801 + ], + [ + 9.4885222, + 51.010739801 + ], + [ + 9.4883335, + 51.010256601 + ], + [ + 9.4881991, + 51.009975201 + ], + [ + 9.4880324, + 51.009669601 + ], + [ + 9.4877114, + 51.009126901 + ], + [ + 9.487528, + 51.008872201 + ], + [ + 9.4873383, + 51.008636201 + ], + [ + 9.4869445, + 51.008173001 + ], + [ + 9.4866462, + 51.007878101 + ], + [ + 9.4863377, + 51.007581701 + ], + [ + 9.4858632, + 51.007161901 + ], + [ + 9.4851121, + 51.006609801 + ], + [ + 9.4843985, + 51.006087101 + ], + [ + 9.4823155, + 51.004794701 + ], + [ + 9.481604, + 51.004358401 + ], + [ + 9.481210807, + 51.004117373 + ] + ] + } + }, + { + "identifier": "2026-016959--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.34015389844889,9.59356476660727,51.3148360165476,9.56159522358282", + "point": "51.34015389844889,9.59356476660727", + "startLcPosition": "165", + "impact": { + "lower": "Kassel-Nord", + "upper": "Staufenberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Staufenberg - Kassel-Nord", + "coordinate": { + "lat": 51.34015389844889, + "long": 9.59356476660727 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 16:00 Uhr", + "15.04.26 von 08:30 bis 14:15 Uhr", + "16.04.26 von 08:15 bis 11:45 Uhr", + "17.04.26 von 08:15 bis 10:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 1.4 km hinter Staufenberg und 0.7 km vor AS Kassel-Nord", + "", + "L\u00e4nge: 3.63 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 \u00dcko-Sanierung AS Kassel-Ost - Aufbau Verkehrsf\u00fchrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.593564767, + 51.340153898 + ], + [ + 9.588664, + 51.336774801 + ], + [ + 9.5866944, + 51.335416701 + ], + [ + 9.5734933, + 51.326361401 + ], + [ + 9.5712141, + 51.324790001 + ], + [ + 9.5701694, + 51.324073001 + ], + [ + 9.567318, + 51.322116001 + ], + [ + 9.5659898, + 51.321184201 + ], + [ + 9.5655079, + 51.320827601 + ], + [ + 9.5651208, + 51.320506001 + ], + [ + 9.5647401, + 51.320190901 + ], + [ + 9.5643873, + 51.319854301 + ], + [ + 9.5639452, + 51.319372401 + ], + [ + 9.5635282, + 51.318819501 + ], + [ + 9.5632864, + 51.318418701 + ], + [ + 9.5630584, + 51.317988901 + ], + [ + 9.5627842, + 51.317395201 + ], + [ + 9.5616173, + 51.314887901 + ], + [ + 9.561595224, + 51.314836017 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de42", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.34364068428785,9.598604645032031,51.343574847832016,9.59850689295625", + "point": "51.34364068428785,9.598604645032031", + "startLcPosition": "165", + "impact": { + "lower": "Herkulesblick", + "upper": "Staufenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Staufenberg - Herkulesblick", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 51.34364068428785, + "long": 9.598604645032031 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Hannover -> Kassel, zwischen 0.9 km hinter Staufenberg und 3.5 km vor Herkulesblick", + "", + "L\u00e4nge: 0.01 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.598604645, + 51.343640684 + ], + [ + 9.598506893, + 51.343574848 + ] + ] + } + }, + { + "identifier": "2025-058841--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_005.de40", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32990446168688,9.578657601763588,51.32983806517506,9.578560812963275", + "point": "51.32990446168688,9.578657601763588", + "startLcPosition": "165", + "impact": { + "lower": "Herkulesblick", + "upper": "Staufenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Staufenberg - Herkulesblick", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 51.32990446168688, + "long": 9.578657601763588 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A7: Hannover -> Kassel, zwischen 2.9 km hinter Staufenberg und 1.4 km vor Herkulesblick", + "", + "L\u00e4nge: 0.01 km | Maximale Durchfahrtsbreite: 10.25 m", + "", + "A7 von Kassel-Nord (AS) nach Kassel-Ost (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.578657602, + 51.329904462 + ], + [ + 9.578560813, + 51.329838065 + ] + ] + } + }, + { + "identifier": "2026-011509--vi-bs.2026-04-07_18-00-00-000.devi-bs.2026-04-07_18-00-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.38856310663495,9.662967618231619,51.394278153242226,9.667032180372646", + "point": "51.38856310663495,9.662967618231619", + "startLcPosition": "166", + "impact": { + "lower": "Humboldtblick", + "upper": "Hann. M\u00fcnden/Staufenberg-Lutterberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Hann. M\u00fcnden/Staufenberg-Lutterberg - Humboldtblick", + "coordinate": { + "lat": 51.38856310663495, + "long": 9.662967618231619 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 3.0 km hinter AS Hann. M\u00fcnden/Staufenberg-Lutterberg und 0.3 km vor Humboldtblick", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Hackelberg (Parkplatz) nach Drammetal (AD) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.662967618, + 51.388563107 + ], + [ + 9.6641271, + 51.390520501 + ], + [ + 9.6646638, + 51.391400801 + ], + [ + 9.6649218, + 51.391824001 + ], + [ + 9.6650945, + 51.392093901 + ], + [ + 9.6652784, + 51.392360901 + ], + [ + 9.6654735, + 51.392624701 + ], + [ + 9.6656797, + 51.392885301 + ], + [ + 9.6658967, + 51.393142401 + ], + [ + 9.6661399, + 51.393412501 + ], + [ + 9.6663951, + 51.393678301 + ], + [ + 9.6666602, + 51.393940301 + ], + [ + 9.6669383, + 51.394197001 + ], + [ + 9.66703218, + 51.394278153 + ] + ] + } + }, + { + "identifier": "2026-011509--vi-bs.2026-04-07_18-00-00-000.devi-bs.2026-04-07_18-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.394278153242226,9.667032180372646,51.39692170841016,9.692976863883796", + "point": "51.394278153242226,9.667032180372646", + "startLcPosition": "166", + "impact": { + "lower": "Werratalbr\u00fccke", + "upper": "Hann. M\u00fcnden/Staufenberg-Lutterberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Hann. M\u00fcnden/Staufenberg-Lutterberg - Werratalbr\u00fccke", + "coordinate": { + "lat": 51.394278153242226, + "long": 9.667032180372646 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A7: Kassel -> Hannover, zwischen 3.7 km hinter AS Hann. M\u00fcnden/Staufenberg-Lutterberg und 1.8 km vor Werratalbr\u00fccke", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A7 von Hackelberg (Parkplatz) nach Drammetal (AD) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.66703218, + 51.394278153 + ], + [ + 9.6672289, + 51.394448201 + ], + [ + 9.6675319, + 51.394693701 + ], + [ + 9.6677717, + 51.394877301 + ], + [ + 9.6680183, + 51.395057401 + ], + [ + 9.6682718, + 51.395233701 + ], + [ + 9.6685319, + 51.395406201 + ], + [ + 9.6688499, + 51.395617101 + ], + [ + 9.6691777, + 51.395822101 + ], + [ + 9.6695151, + 51.396020901 + ], + [ + 9.6698618, + 51.396213501 + ], + [ + 9.6702175, + 51.396399501 + ], + [ + 9.6704968, + 51.396538001 + ], + [ + 9.6707812, + 51.396672601 + ], + [ + 9.6710703, + 51.396803001 + ], + [ + 9.6714134, + 51.396955101 + ], + [ + 9.6717623, + 51.397101801 + ], + [ + 9.6721853, + 51.397269501 + ], + [ + 9.6726159, + 51.397429501 + ], + [ + 9.6730539, + 51.397581501 + ], + [ + 9.6733839, + 51.397691501 + ], + [ + 9.6737186, + 51.397796001 + ], + [ + 9.6740575, + 51.397894901 + ], + [ + 9.6744006, + 51.397988101 + ], + [ + 9.6748258, + 51.398094401 + ], + [ + 9.6752564, + 51.398191901 + ], + [ + 9.6756918, + 51.398280701 + ], + [ + 9.6761317, + 51.398360501 + ], + [ + 9.6765755, + 51.398431301 + ], + [ + 9.6770228, + 51.398493001 + ], + [ + 9.677473, + 51.398545601 + ], + [ + 9.6779258, + 51.398589001 + ], + [ + 9.6783806, + 51.398623201 + ], + [ + 9.6788077, + 51.398645101 + ], + [ + 9.6792356, + 51.398658801 + ], + [ + 9.679664, + 51.398664201 + ], + [ + 9.6800925, + 51.398661301 + ], + [ + 9.6805206, + 51.398650201 + ], + [ + 9.680948, + 51.398630901 + ], + [ + 9.6813742, + 51.398603401 + ], + [ + 9.6817988, + 51.398567601 + ], + [ + 9.6822064, + 51.398525401 + ], + [ + 9.6826118, + 51.398475601 + ], + [ + 9.6830146, + 51.398418401 + ], + [ + 9.6834145, + 51.398353601 + ], + [ + 9.6838112, + 51.398281501 + ], + [ + 9.6842042, + 51.398202001 + ], + [ + 9.6845932, + 51.398115301 + ], + [ + 9.6849784, + 51.398022101 + ], + [ + 9.6855014, + 51.397895601 + ], + [ + 9.6864431, + 51.397667701 + ], + [ + 9.6872225, + 51.397484901 + ], + [ + 9.6876374, + 51.397396401 + ], + [ + 9.688056, + 51.397315101 + ], + [ + 9.6884781, + 51.397241001 + ], + [ + 9.6889033, + 51.397174201 + ], + [ + 9.6893247, + 51.397115701 + ], + [ + 9.6897485, + 51.397064301 + ], + [ + 9.6901744, + 51.397020101 + ], + [ + 9.6906021, + 51.396983201 + ], + [ + 9.6910312, + 51.396953501 + ], + [ + 9.6914614, + 51.396931201 + ], + [ + 9.6918919, + 51.396917401 + ], + [ + 9.6923229, + 51.396912201 + ], + [ + 9.692754, + 51.396915601 + ], + [ + 9.692976864, + 51.396921708 + ] + ] + } + }, + { + "identifier": "2026-015362--vi-bs.2026-04-06_08-00-00-000.devi-zus.2026-04-06_08-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.40608145391194,9.745146333688378,51.45314711106741,9.864557199352737", + "point": "51.40608145391194,9.745146333688378", + "startLcPosition": "168", + "impact": { + "lower": "G\u00f6ttingen-Ost", + "upper": "Werratalbr\u00fccke", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Werratalbr\u00fccke - G\u00f6ttingen-Ost", + "coordinate": { + "lat": 51.40608145391194, + "long": 9.745146333688378 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 2.2 km hinter Werratalbr\u00fccke und 3.9 km vor G\u00f6ttingen-Ost", + "", + "L\u00e4nge: 11.99 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 vom Dreieck Drammetal (AD) nach Hann.M\u00fcnden-Hedem\u00fcnden (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.745146334, + 51.406081454 + ], + [ + 9.7459175, + 51.405867901 + ], + [ + 9.7472552, + 51.405427901 + ], + [ + 9.7483898, + 51.405023601 + ], + [ + 9.7496298, + 51.404529501 + ], + [ + 9.7528844, + 51.403131901 + ], + [ + 9.7602328, + 51.399979701 + ], + [ + 9.7635732, + 51.398527701 + ], + [ + 9.7647549, + 51.398019801 + ], + [ + 9.7653657, + 51.397756901 + ], + [ + 9.7664447, + 51.397311201 + ], + [ + 9.7668996, + 51.397131701 + ], + [ + 9.7673585, + 51.396956201 + ], + [ + 9.7678215, + 51.396784901 + ], + [ + 9.7682883, + 51.396617701 + ], + [ + 9.7687589, + 51.396454701 + ], + [ + 9.7692331, + 51.396295901 + ], + [ + 9.7696872, + 51.396149201 + ], + [ + 9.7701483, + 51.396011301 + ], + [ + 9.7706156, + 51.395881801 + ], + [ + 9.7710888, + 51.395760901 + ], + [ + 9.7715675, + 51.395648801 + ], + [ + 9.7720199, + 51.395546801 + ], + [ + 9.7724772, + 51.395453901 + ], + [ + 9.7729391, + 51.395370001 + ], + [ + 9.773405, + 51.395295401 + ], + [ + 9.7738744, + 51.395230101 + ], + [ + 9.7743426, + 51.395174501 + ], + [ + 9.7747635, + 51.395132701 + ], + [ + 9.7751861, + 51.395098201 + ], + [ + 9.7756101, + 51.395071201 + ], + [ + 9.7760521, + 51.395053501 + ], + [ + 9.7764947, + 51.395043701 + ], + [ + 9.7769188, + 51.395041901 + ], + [ + 9.7773428, + 51.395047401 + ], + [ + 9.7777665, + 51.395060301 + ], + [ + 9.7781893, + 51.395080601 + ], + [ + 9.7786111, + 51.395108101 + ], + [ + 9.7790316, + 51.395143001 + ], + [ + 9.7794503, + 51.395185201 + ], + [ + 9.779929, + 51.395247101 + ], + [ + 9.7804045, + 51.395318101 + ], + [ + 9.7808763, + 51.395398101 + ], + [ + 9.7812134, + 51.395461201 + ], + [ + 9.7815482, + 51.395528901 + ], + [ + 9.7817214, + 51.395564801 + ], + [ + 9.7818931, + 51.395603501 + ], + [ + 9.7820491, + 51.395641601 + ], + [ + 9.7822037, + 51.395681901 + ], + [ + 9.7824716, + 51.395752301 + ], + [ + 9.7827378, + 51.395825301 + ], + [ + 9.7830095, + 51.395902901 + ], + [ + 9.7832793, + 51.395983301 + ], + [ + 9.7838777, + 51.396173301 + ], + [ + 9.7849882, + 51.396556601 + ], + [ + 9.7861787, + 51.396969501 + ], + [ + 9.789252, + 51.398029101 + ], + [ + 9.7921344, + 51.398977501 + ], + [ + 9.7942427, + 51.399685301 + ], + [ + 9.7973855, + 51.400721001 + ], + [ + 9.7996464, + 51.401411101 + ], + [ + 9.8033372, + 51.402485401 + ], + [ + 9.8109184, + 51.404816501 + ], + [ + 9.8113879, + 51.404961401 + ], + [ + 9.8131943, + 51.405523701 + ], + [ + 9.8189208, + 51.407287501 + ], + [ + 9.8202733, + 51.407721701 + ], + [ + 9.8209727, + 51.407963401 + ], + [ + 9.8216505, + 51.408212801 + ], + [ + 9.8222333, + 51.408448601 + ], + [ + 9.8229287, + 51.408743301 + ], + [ + 9.823561, + 51.409024101 + ], + [ + 9.8241934, + 51.409310201 + ], + [ + 9.8247975, + 51.409599701 + ], + [ + 9.8254119, + 51.409905401 + ], + [ + 9.8274968, + 51.411009201 + ], + [ + 9.8303237, + 51.412518001 + ], + [ + 9.8331204, + 51.413997801 + ], + [ + 9.8359131, + 51.415518401 + ], + [ + 9.8363873, + 51.415797701 + ], + [ + 9.8368509, + 51.416083901 + ], + [ + 9.8373038, + 51.416376701 + ], + [ + 9.8377456, + 51.416675901 + ], + [ + 9.8381763, + 51.416981501 + ], + [ + 9.8385954, + 51.417293201 + ], + [ + 9.8389996, + 51.417608201 + ], + [ + 9.8393921, + 51.417929001 + ], + [ + 9.8397726, + 51.418255401 + ], + [ + 9.840141, + 51.418587001 + ], + [ + 9.8404971, + 51.418923901 + ], + [ + 9.8408407, + 51.419265801 + ], + [ + 9.8411716, + 51.419612601 + ], + [ + 9.8414896, + 51.419963901 + ], + [ + 9.8417945, + 51.420319801 + ], + [ + 9.8420863, + 51.420679901 + ], + [ + 9.8423082, + 51.420958201 + ], + [ + 9.8427254, + 51.421527301 + ], + [ + 9.8431059, + 51.422099501 + ], + [ + 9.8434544, + 51.422679401 + ], + [ + 9.8437706, + 51.423266601 + ], + [ + 9.8440542, + 51.423860101 + ], + [ + 9.8443733, + 51.424630801 + ], + [ + 9.8460967, + 51.429264901 + ], + [ + 9.8473486, + 51.432710001 + ], + [ + 9.8478863, + 51.434129501 + ], + [ + 9.8481532, + 51.434803901 + ], + [ + 9.8484369, + 51.435451201 + ], + [ + 9.8486005, + 51.435810801 + ], + [ + 9.8487752, + 51.436168301 + ], + [ + 9.8489513, + 51.436505701 + ], + [ + 9.8491373, + 51.436841001 + ], + [ + 9.8493079, + 51.437141601 + ], + [ + 9.8494908, + 51.437439301 + ], + [ + 9.8496857, + 51.437734101 + ], + [ + 9.8499597, + 51.438129701 + ], + [ + 9.8502229, + 51.438504001 + ], + [ + 9.850419, + 51.438764801 + ], + [ + 9.8506226, + 51.439023301 + ], + [ + 9.8508336, + 51.439279501 + ], + [ + 9.8511141, + 51.439603701 + ], + [ + 9.8514065, + 51.439923801 + ], + [ + 9.8517105, + 51.440239601 + ], + [ + 9.85378, + 51.442301501 + ], + [ + 9.8539418, + 51.442462601 + ], + [ + 9.8547601, + 51.443277901 + ], + [ + 9.8551606, + 51.443682601 + ], + [ + 9.8610043, + 51.449576901 + ], + [ + 9.8630974, + 51.451682901 + ], + [ + 9.8631141, + 51.451699701 + ], + [ + 9.8634365, + 51.452024301 + ], + [ + 9.864557199, + 51.453147111 + ] + ] + } + }, + { + "identifier": "2026-011509--vi-bs.2026-04-07_18-00-00-000.devi-bs.2026-04-07_18-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.39794786844054,9.685938107082315,51.39743080788195,9.672119458548721", + "point": "51.39794786844054,9.685938107082315", + "startLcPosition": "168", + "impact": { + "lower": "Humboldtblick", + "upper": "Werratalbr\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Werratalbr\u00fccke - Humboldtblick", + "coordinate": { + "lat": 51.39794786844054, + "long": 9.685938107082315 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 2.3 km hinter Werratalbr\u00fccke und 0.2 km vor Humboldtblick", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Hackelberg (Parkplatz) nach Drammetal (AD) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.685938107, + 51.397947868 + ], + [ + 9.6842088, + 51.398353101 + ], + [ + 9.6838154, + 51.398433001 + ], + [ + 9.6834183, + 51.398505601 + ], + [ + 9.683018, + 51.398570801 + ], + [ + 9.6826148, + 51.398628701 + ], + [ + 9.682209, + 51.398679101 + ], + [ + 9.681801, + 51.398722001 + ], + [ + 9.6814051, + 51.398756301 + ], + [ + 9.6810078, + 51.398783501 + ], + [ + 9.6806094, + 51.398803701 + ], + [ + 9.6802102, + 51.398816701 + ], + [ + 9.6797599, + 51.398820601 + ], + [ + 9.6793097, + 51.398815701 + ], + [ + 9.6788599, + 51.398802001 + ], + [ + 9.678411, + 51.398779401 + ], + [ + 9.6779635, + 51.398748101 + ], + [ + 9.6775178, + 51.398707901 + ], + [ + 9.6770743, + 51.398659101 + ], + [ + 9.6766336, + 51.398601601 + ], + [ + 9.6761959, + 51.398535401 + ], + [ + 9.6757448, + 51.398457601 + ], + [ + 9.6752981, + 51.398370601 + ], + [ + 9.6748561, + 51.398274601 + ], + [ + 9.6744194, + 51.398169501 + ], + [ + 9.6739884, + 51.398055701 + ], + [ + 9.6735636, + 51.397933101 + ], + [ + 9.6731455, + 51.397801901 + ], + [ + 9.6727345, + 51.397662301 + ], + [ + 9.672331, + 51.397514301 + ], + [ + 9.672119459, + 51.397430808 + ] + ] + } + }, + { + "identifier": "2026-017585--vi-bs.2026-04-09_08-00-00-000_028.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.40596543758455,9.717436333452694,51.479184381493184,9.874022673527241", + "point": "51.40596543758455,9.717436333452694", + "startLcPosition": "168", + "impact": { + "lower": "G\u00f6ttingen-Ost", + "upper": "Werratalbr\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Werratalbr\u00fccke - G\u00f6ttingen-Ost", + "coordinate": { + "lat": 51.40596543758455, + "long": 9.717436333452694 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 0.2 km hinter Werratalbr\u00fccke und 0.9 km vor G\u00f6ttingen-Ost", + "", + "L\u00e4nge: 16.97 km | Maximale Durchfahrtsbreite: 7.75 m", + "", + "A7 von Werratalbr\u00fccke nach G\u00f6ttingen-Ost (Raststaette) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.717436333, + 51.405965438 + ], + [ + 9.7180566, + 51.406196601 + ], + [ + 9.7194567, + 51.406621901 + ], + [ + 9.7207983, + 51.406973401 + ], + [ + 9.7213166, + 51.407093101 + ], + [ + 9.7220723, + 51.407267501 + ], + [ + 9.7230903, + 51.407457001 + ], + [ + 9.7241214, + 51.407617901 + ], + [ + 9.724981, + 51.407723201 + ], + [ + 9.7257263, + 51.407803501 + ], + [ + 9.7265138, + 51.407864001 + ], + [ + 9.727334, + 51.407910601 + ], + [ + 9.7283445, + 51.407946901 + ], + [ + 9.7293678, + 51.407944501 + ], + [ + 9.7304844, + 51.407917901 + ], + [ + 9.7312504, + 51.407876701 + ], + [ + 9.7317325, + 51.407849801 + ], + [ + 9.7336232, + 51.407720301 + ], + [ + 9.7353876, + 51.407601301 + ], + [ + 9.7367508, + 51.407505501 + ], + [ + 9.7377341, + 51.407414601 + ], + [ + 9.7385436, + 51.407323801 + ], + [ + 9.7393531, + 51.407232901 + ], + [ + 9.7404139, + 51.407086701 + ], + [ + 9.7416553, + 51.406871301 + ], + [ + 9.7431813, + 51.406569501 + ], + [ + 9.744438, + 51.406277601 + ], + [ + 9.7459175, + 51.405867901 + ], + [ + 9.7472552, + 51.405427901 + ], + [ + 9.7483898, + 51.405023601 + ], + [ + 9.7496298, + 51.404529501 + ], + [ + 9.7528844, + 51.403131901 + ], + [ + 9.7602328, + 51.399979701 + ], + [ + 9.7635732, + 51.398527701 + ], + [ + 9.7647549, + 51.398019801 + ], + [ + 9.7653657, + 51.397756901 + ], + [ + 9.7664447, + 51.397311201 + ], + [ + 9.7668996, + 51.397131701 + ], + [ + 9.7673585, + 51.396956201 + ], + [ + 9.7678215, + 51.396784901 + ], + [ + 9.7682883, + 51.396617701 + ], + [ + 9.7687589, + 51.396454701 + ], + [ + 9.7692331, + 51.396295901 + ], + [ + 9.7696872, + 51.396149201 + ], + [ + 9.7701483, + 51.396011301 + ], + [ + 9.7706156, + 51.395881801 + ], + [ + 9.7710888, + 51.395760901 + ], + [ + 9.7715675, + 51.395648801 + ], + [ + 9.7720199, + 51.395546801 + ], + [ + 9.7724772, + 51.395453901 + ], + [ + 9.7729391, + 51.395370001 + ], + [ + 9.773405, + 51.395295401 + ], + [ + 9.7738744, + 51.395230101 + ], + [ + 9.7743426, + 51.395174501 + ], + [ + 9.7747635, + 51.395132701 + ], + [ + 9.7751861, + 51.395098201 + ], + [ + 9.7756101, + 51.395071201 + ], + [ + 9.7760521, + 51.395053501 + ], + [ + 9.7764947, + 51.395043701 + ], + [ + 9.7769188, + 51.395041901 + ], + [ + 9.7773428, + 51.395047401 + ], + [ + 9.7777665, + 51.395060301 + ], + [ + 9.7781893, + 51.395080601 + ], + [ + 9.7786111, + 51.395108101 + ], + [ + 9.7790316, + 51.395143001 + ], + [ + 9.7794503, + 51.395185201 + ], + [ + 9.779929, + 51.395247101 + ], + [ + 9.7804045, + 51.395318101 + ], + [ + 9.7808763, + 51.395398101 + ], + [ + 9.7812134, + 51.395461201 + ], + [ + 9.7815482, + 51.395528901 + ], + [ + 9.7817214, + 51.395564801 + ], + [ + 9.7818931, + 51.395603501 + ], + [ + 9.7820491, + 51.395641601 + ], + [ + 9.7822037, + 51.395681901 + ], + [ + 9.7824716, + 51.395752301 + ], + [ + 9.7827378, + 51.395825301 + ], + [ + 9.7830095, + 51.395902901 + ], + [ + 9.7832793, + 51.395983301 + ], + [ + 9.7838777, + 51.396173301 + ], + [ + 9.7849882, + 51.396556601 + ], + [ + 9.7861787, + 51.396969501 + ], + [ + 9.789252, + 51.398029101 + ], + [ + 9.7921344, + 51.398977501 + ], + [ + 9.7942427, + 51.399685301 + ], + [ + 9.7973855, + 51.400721001 + ], + [ + 9.7996464, + 51.401411101 + ], + [ + 9.8033372, + 51.402485401 + ], + [ + 9.8109184, + 51.404816501 + ], + [ + 9.8113879, + 51.404961401 + ], + [ + 9.8131943, + 51.405523701 + ], + [ + 9.8189208, + 51.407287501 + ], + [ + 9.8202733, + 51.407721701 + ], + [ + 9.8209727, + 51.407963401 + ], + [ + 9.8216505, + 51.408212801 + ], + [ + 9.8222333, + 51.408448601 + ], + [ + 9.8229287, + 51.408743301 + ], + [ + 9.823561, + 51.409024101 + ], + [ + 9.8241934, + 51.409310201 + ], + [ + 9.8247975, + 51.409599701 + ], + [ + 9.8254119, + 51.409905401 + ], + [ + 9.8274968, + 51.411009201 + ], + [ + 9.8303237, + 51.412518001 + ], + [ + 9.8331204, + 51.413997801 + ], + [ + 9.8359131, + 51.415518401 + ], + [ + 9.8363873, + 51.415797701 + ], + [ + 9.8368509, + 51.416083901 + ], + [ + 9.8373038, + 51.416376701 + ], + [ + 9.8377456, + 51.416675901 + ], + [ + 9.8381763, + 51.416981501 + ], + [ + 9.8385954, + 51.417293201 + ], + [ + 9.8389996, + 51.417608201 + ], + [ + 9.8393921, + 51.417929001 + ], + [ + 9.8397726, + 51.418255401 + ], + [ + 9.840141, + 51.418587001 + ], + [ + 9.8404971, + 51.418923901 + ], + [ + 9.8408407, + 51.419265801 + ], + [ + 9.8411716, + 51.419612601 + ], + [ + 9.8414896, + 51.419963901 + ], + [ + 9.8417945, + 51.420319801 + ], + [ + 9.8420863, + 51.420679901 + ], + [ + 9.8423082, + 51.420958201 + ], + [ + 9.8427254, + 51.421527301 + ], + [ + 9.8431059, + 51.422099501 + ], + [ + 9.8434544, + 51.422679401 + ], + [ + 9.8437706, + 51.423266601 + ], + [ + 9.8440542, + 51.423860101 + ], + [ + 9.8443733, + 51.424630801 + ], + [ + 9.8460967, + 51.429264901 + ], + [ + 9.8473486, + 51.432710001 + ], + [ + 9.8478863, + 51.434129501 + ], + [ + 9.8481532, + 51.434803901 + ], + [ + 9.8484369, + 51.435451201 + ], + [ + 9.8486005, + 51.435810801 + ], + [ + 9.8487752, + 51.436168301 + ], + [ + 9.8489513, + 51.436505701 + ], + [ + 9.8491373, + 51.436841001 + ], + [ + 9.8493079, + 51.437141601 + ], + [ + 9.8494908, + 51.437439301 + ], + [ + 9.8496857, + 51.437734101 + ], + [ + 9.8499597, + 51.438129701 + ], + [ + 9.8502229, + 51.438504001 + ], + [ + 9.850419, + 51.438764801 + ], + [ + 9.8506226, + 51.439023301 + ], + [ + 9.8508336, + 51.439279501 + ], + [ + 9.8511141, + 51.439603701 + ], + [ + 9.8514065, + 51.439923801 + ], + [ + 9.8517105, + 51.440239601 + ], + [ + 9.85378, + 51.442301501 + ], + [ + 9.8539418, + 51.442462601 + ], + [ + 9.8547601, + 51.443277901 + ], + [ + 9.8551606, + 51.443682601 + ], + [ + 9.8610043, + 51.449576901 + ], + [ + 9.8630974, + 51.451682901 + ], + [ + 9.8631141, + 51.451699701 + ], + [ + 9.8634365, + 51.452024301 + ], + [ + 9.8648765, + 51.453467001 + ], + [ + 9.8660394, + 51.454723701 + ], + [ + 9.8662404, + 51.454969401 + ], + [ + 9.8665636, + 51.455363001 + ], + [ + 9.8666599, + 51.455496201 + ], + [ + 9.8668558, + 51.455749201 + ], + [ + 9.8671416, + 51.456170601 + ], + [ + 9.8674551, + 51.456637601 + ], + [ + 9.8678416, + 51.457296801 + ], + [ + 9.8680448, + 51.457689301 + ], + [ + 9.8684251, + 51.458430501 + ], + [ + 9.86863, + 51.458860801 + ], + [ + 9.8687937, + 51.459241601 + ], + [ + 9.8692849, + 51.460480101 + ], + [ + 9.8696184, + 51.461476101 + ], + [ + 9.8704479, + 51.464531801 + ], + [ + 9.8705929, + 51.465050801 + ], + [ + 9.874022674, + 51.479184381 + ] + ] + } + }, + { + "identifier": "2026-011509--vi-bs.2026-04-07_18-00-00-000.devi-bs.2026-04-07_18-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.42659597221829,9.845104093356074,51.43871184868652,9.850379184092866", + "point": "51.42659597221829,9.845104093356074", + "startLcPosition": "171", + "impact": { + "lower": "Drammetal", + "upper": "Hackelberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Hackelberg - Drammetal", + "coordinate": { + "lat": 51.42659597221829, + "long": 9.845104093356074 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 18:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A7: Kassel -> Hannover, zwischen 5.9 km hinter Hackelberg und 1.9 km vor AD Drammetal", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A7 von Hackelberg (Parkplatz) nach Drammetal (AD) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.845104093, + 51.426595972 + ], + [ + 9.8460967, + 51.429264901 + ], + [ + 9.8473486, + 51.432710001 + ], + [ + 9.8478863, + 51.434129501 + ], + [ + 9.8481532, + 51.434803901 + ], + [ + 9.8484369, + 51.435451201 + ], + [ + 9.8486005, + 51.435810801 + ], + [ + 9.8487752, + 51.436168301 + ], + [ + 9.8489513, + 51.436505701 + ], + [ + 9.8491373, + 51.436841001 + ], + [ + 9.8493079, + 51.437141601 + ], + [ + 9.8494908, + 51.437439301 + ], + [ + 9.8496857, + 51.437734101 + ], + [ + 9.8499597, + 51.438129701 + ], + [ + 9.8502229, + 51.438504001 + ], + [ + 9.850379184, + 51.438711849 + ] + ] + } + }, + { + "identifier": "2026-017496--vi-bs.2026-04-16_08-00-00-000_008.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.40322477049577,9.805741519364126,51.40481145211481,9.810901977670593", + "point": "51.40322477049577,9.805741519364126", + "startLcPosition": "171", + "impact": { + "lower": "Drammetal", + "upper": "Hackelberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Hackelberg - Drammetal", + "coordinate": { + "lat": 51.40322477049577, + "long": 9.805741519364126 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 2.0 km hinter Hackelberg und 6.8 km vor AD Drammetal", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 von Hackelberg (Parkplatz) nach Drammetal (AD) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.805741519, + 51.40322477 + ], + [ + 9.810901978, + 51.404811452 + ] + ] + } + }, + { + "identifier": "2026-016520--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_007.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.39635962755151,9.78390087021539,51.34223019370538,9.596576563678452", + "point": "51.39635962755151,9.78390087021539", + "startLcPosition": "172", + "impact": { + "lower": "Herkulesblick", + "upper": "Drammetal", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Drammetal - Herkulesblick", + "coordinate": { + "lat": 51.39635962755151, + "long": 9.78390087021539 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 16:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 8.9 km hinter AD Drammetal und 3.3 km vor Herkulesblick", + "", + "L\u00e4nge: 16.97 km | Maximale Durchfahrtsbreite: 7.75 m", + "", + "A7 vom Dreieck Drammetal (AD) nach Kassel-Nord (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.78390087, + 51.396359628 + ], + [ + 9.7837784, + 51.396317501 + ], + [ + 9.7834046, + 51.396190101 + ], + [ + 9.7831723, + 51.396118101 + ], + [ + 9.7829202, + 51.396044501 + ], + [ + 9.7825885, + 51.395952701 + ], + [ + 9.7821209, + 51.395828601 + ], + [ + 9.7816832, + 51.395720601 + ], + [ + 9.7812184, + 51.395620901 + ], + [ + 9.7807482, + 51.395531501 + ], + [ + 9.7802733, + 51.395452501 + ], + [ + 9.7797942, + 51.395384101 + ], + [ + 9.7793115, + 51.395326301 + ], + [ + 9.7788258, + 51.395279201 + ], + [ + 9.7783377, + 51.395242801 + ], + [ + 9.7778479, + 51.395217401 + ], + [ + 9.7773977, + 51.395200001 + ], + [ + 9.7769469, + 51.395192301 + ], + [ + 9.7764959, + 51.395194101 + ], + [ + 9.7760452, + 51.395205601 + ], + [ + 9.7755954, + 51.395226701 + ], + [ + 9.7752303, + 51.395251201 + ], + [ + 9.7748023, + 51.395285701 + ], + [ + 9.7743881, + 51.395328201 + ], + [ + 9.7739323, + 51.395379801 + ], + [ + 9.7734448, + 51.395448501 + ], + [ + 9.7730148, + 51.395521401 + ], + [ + 9.77254, + 51.395607701 + ], + [ + 9.7721243, + 51.395689701 + ], + [ + 9.7716576, + 51.395793501 + ], + [ + 9.7711722, + 51.395906501 + ], + [ + 9.7707269, + 51.396027701 + ], + [ + 9.7701822, + 51.396180901 + ], + [ + 9.7696052, + 51.396353101 + ], + [ + 9.7690359, + 51.396535201 + ], + [ + 9.7684748, + 51.396727001 + ], + [ + 9.7679223, + 51.396928201 + ], + [ + 9.7670409, + 51.397261601 + ], + [ + 9.7661959, + 51.397590901 + ], + [ + 9.7653635, + 51.397932501 + ], + [ + 9.7647923, + 51.398175701 + ], + [ + 9.7628971, + 51.399006201 + ], + [ + 9.7612865, + 51.399725401 + ], + [ + 9.7600604, + 51.400252401 + ], + [ + 9.757243, + 51.401463401 + ], + [ + 9.7544255, + 51.402674401 + ], + [ + 9.749758, + 51.404662301 + ], + [ + 9.7485026, + 51.405164401 + ], + [ + 9.7474033, + 51.405558901 + ], + [ + 9.7460309, + 51.405987001 + ], + [ + 9.7445516, + 51.406413201 + ], + [ + 9.7432809, + 51.406717601 + ], + [ + 9.7417503, + 51.407023001 + ], + [ + 9.7404488, + 51.407247201 + ], + [ + 9.7393519, + 51.407393101 + ], + [ + 9.7377107, + 51.407579601 + ], + [ + 9.7367675, + 51.407656201 + ], + [ + 9.7354084, + 51.407755301 + ], + [ + 9.7336148, + 51.407876301 + ], + [ + 9.7317553, + 51.408008201 + ], + [ + 9.7312732, + 51.408035201 + ], + [ + 9.7305483, + 51.408070301 + ], + [ + 9.7293751, + 51.408109301 + ], + [ + 9.7283067, + 51.408099801 + ], + [ + 9.7273277, + 51.408078001 + ], + [ + 9.7264937, + 51.408021501 + ], + [ + 9.7257402, + 51.407957701 + ], + [ + 9.7249589, + 51.407882301 + ], + [ + 9.7241056, + 51.407773501 + ], + [ + 9.7230279, + 51.407612101 + ], + [ + 9.721972, + 51.407416401 + ], + [ + 9.7208488, + 51.407163801 + ], + [ + 9.7191568, + 51.406703601 + ], + [ + 9.7180047, + 51.406332101 + ], + [ + 9.7171723, + 51.406024701 + ], + [ + 9.7159389, + 51.405533001 + ], + [ + 9.715876, + 51.405509701 + ], + [ + 9.7108574, + 51.403523301 + ], + [ + 9.705209, + 51.401288101 + ], + [ + 9.7049479, + 51.401182701 + ], + [ + 9.7046906, + 51.401073601 + ], + [ + 9.7044372, + 51.400961001 + ], + [ + 9.7041879, + 51.400844901 + ], + [ + 9.7038629, + 51.400685101 + ], + [ + 9.7035456, + 51.400519401 + ], + [ + 9.7032364, + 51.400347901 + ], + [ + 9.7029354, + 51.400170801 + ], + [ + 9.7016944, + 51.399407201 + ], + [ + 9.7013911, + 51.399238301 + ], + [ + 9.7010431, + 51.399048701 + ], + [ + 9.7006851, + 51.398866601 + ], + [ + 9.7003175, + 51.398692001 + ], + [ + 9.6999407, + 51.398525301 + ], + [ + 9.6995551, + 51.398366601 + ], + [ + 9.6991612, + 51.398216001 + ], + [ + 9.6987649, + 51.398075701 + ], + [ + 9.6983614, + 51.397943601 + ], + [ + 9.6979501, + 51.397821701 + ], + [ + 9.6975323, + 51.397708501 + ], + [ + 9.6971154, + 51.397605801 + ], + [ + 9.6966931, + 51.397511901 + ], + [ + 9.6962661, + 51.397426901 + ], + [ + 9.6958347, + 51.397350801 + ], + [ + 9.6953995, + 51.397283801 + ], + [ + 9.694961, + 51.397225901 + ], + [ + 9.6945178, + 51.397177001 + ], + [ + 9.6940723, + 51.397137101 + ], + [ + 9.6936249, + 51.397106301 + ], + [ + 9.6931762, + 51.397084701 + ], + [ + 9.6927266, + 51.397072201 + ], + [ + 9.6923078, + 51.397068801 + ], + [ + 9.6918889, + 51.397073501 + ], + [ + 9.6914705, + 51.397086001 + ], + [ + 9.6910529, + 51.397106501 + ], + [ + 9.6906365, + 51.397134901 + ], + [ + 9.6902146, + 51.397171701 + ], + [ + 9.6897944, + 51.397215401 + ], + [ + 9.6893763, + 51.397266201 + ], + [ + 9.6889616, + 51.397323801 + ], + [ + 9.6885496, + 51.397388401 + ], + [ + 9.6881405, + 51.397459801 + ], + [ + 9.6877346, + 51.397538001 + ], + [ + 9.6873322, + 51.397622901 + ], + [ + 9.6869335, + 51.397714601 + ], + [ + 9.6842088, + 51.398353101 + ], + [ + 9.6838154, + 51.398433001 + ], + [ + 9.6834183, + 51.398505601 + ], + [ + 9.683018, + 51.398570801 + ], + [ + 9.6826148, + 51.398628701 + ], + [ + 9.682209, + 51.398679101 + ], + [ + 9.681801, + 51.398722001 + ], + [ + 9.6814051, + 51.398756301 + ], + [ + 9.6810078, + 51.398783501 + ], + [ + 9.6806094, + 51.398803701 + ], + [ + 9.6802102, + 51.398816701 + ], + [ + 9.6797599, + 51.398820601 + ], + [ + 9.6793097, + 51.398815701 + ], + [ + 9.6788599, + 51.398802001 + ], + [ + 9.678411, + 51.398779401 + ], + [ + 9.6779635, + 51.398748101 + ], + [ + 9.6775178, + 51.398707901 + ], + [ + 9.6770743, + 51.398659101 + ], + [ + 9.6766336, + 51.398601601 + ], + [ + 9.6761959, + 51.398535401 + ], + [ + 9.6757448, + 51.398457601 + ], + [ + 9.6752981, + 51.398370601 + ], + [ + 9.6748561, + 51.398274601 + ], + [ + 9.6744194, + 51.398169501 + ], + [ + 9.6739884, + 51.398055701 + ], + [ + 9.6735636, + 51.397933101 + ], + [ + 9.6731455, + 51.397801901 + ], + [ + 9.6727345, + 51.397662301 + ], + [ + 9.672331, + 51.397514301 + ], + [ + 9.6719355, + 51.397358201 + ], + [ + 9.6715484, + 51.397194101 + ], + [ + 9.6710578, + 51.396984401 + ], + [ + 9.6705786, + 51.396764701 + ], + [ + 9.6701112, + 51.396535401 + ], + [ + 9.6696561, + 51.396296501 + ], + [ + 9.6692139, + 51.396048401 + ], + [ + 9.6687851, + 51.395791401 + ], + [ + 9.66837, + 51.395525701 + ], + [ + 9.6680346, + 51.395299201 + ], + [ + 9.6677097, + 51.395066701 + ], + [ + 9.6673955, + 51.394828501 + ], + [ + 9.6670924, + 51.394584801 + ], + [ + 9.6668424, + 51.394372401 + ], + [ + 9.6666007, + 51.394156201 + ], + [ + 9.6663676, + 51.393936401 + ], + [ + 9.6661432, + 51.393713101 + ], + [ + 9.6658815, + 51.393435601 + ], + [ + 9.6656729, + 51.393208601 + ], + [ + 9.6654285, + 51.392913201 + ], + [ + 9.6651958, + 51.392614101 + ], + [ + 9.6649749, + 51.392311601 + ], + [ + 9.6648272, + 51.392097601 + ], + [ + 9.6646854, + 51.391882101 + ], + [ + 9.6570264, + 51.379017201 + ], + [ + 9.6565476, + 51.378227901 + ], + [ + 9.6561384, + 51.377626201 + ], + [ + 9.6555801, + 51.376894901 + ], + [ + 9.6545019, + 51.375839901 + ], + [ + 9.6541662, + 51.375553201 + ], + [ + 9.6537718, + 51.375255401 + ], + [ + 9.6528378, + 51.374611501 + ], + [ + 9.6517285, + 51.373999901 + ], + [ + 9.6506902, + 51.373490101 + ], + [ + 9.6499635, + 51.373180201 + ], + [ + 9.649661, + 51.373065801 + ], + [ + 9.6480348, + 51.372462101 + ], + [ + 9.6449076, + 51.371443801 + ], + [ + 9.6432095, + 51.370894601 + ], + [ + 9.6415369, + 51.370349401 + ], + [ + 9.6410486, + 51.370191201 + ], + [ + 9.6395585, + 51.369710201 + ], + [ + 9.6382757, + 51.369291301 + ], + [ + 9.6368166, + 51.368820701 + ], + [ + 9.6345271, + 51.368098101 + ], + [ + 9.6280892, + 51.366011001 + ], + [ + 9.6227148, + 51.364248801 + ], + [ + 9.622329, + 51.364115701 + ], + [ + 9.6213278, + 51.363769101 + ], + [ + 9.6205079, + 51.363421801 + ], + [ + 9.6197051, + 51.363049201 + ], + [ + 9.6189468, + 51.362632601 + ], + [ + 9.6181709, + 51.362161601 + ], + [ + 9.6176475, + 51.361798401 + ], + [ + 9.6172321, + 51.361485001 + ], + [ + 9.616819, + 51.361146701 + ], + [ + 9.6163309, + 51.360707901 + ], + [ + 9.6157671, + 51.360150001 + ], + [ + 9.6107841, + 51.355126601 + ], + [ + 9.6105792, + 51.354920001 + ], + [ + 9.6077113, + 51.352028601 + ], + [ + 9.6074708, + 51.351786901 + ], + [ + 9.6066274, + 51.350939601 + ], + [ + 9.6038815, + 51.348177801 + ], + [ + 9.6024102, + 51.346693901 + ], + [ + 9.6017976, + 51.346114201 + ], + [ + 9.6013708, + 51.345739401 + ], + [ + 9.6006705, + 51.345150301 + ], + [ + 9.6001667, + 51.344750001 + ], + [ + 9.5990556, + 51.343944401 + ], + [ + 9.598285, + 51.343425401 + ], + [ + 9.5979853, + 51.343215101 + ], + [ + 9.5966993, + 51.342314801 + ], + [ + 9.596576564, + 51.342230194 + ] + ] + } + }, + { + "identifier": "2026-016520--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.39635962755151,9.78390087021539,51.34223019370538,9.596576563678452", + "point": "51.39635962755151,9.78390087021539", + "startLcPosition": "172", + "impact": { + "lower": "Herkulesblick", + "upper": "Drammetal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Drammetal - Herkulesblick", + "coordinate": { + "lat": 51.39635962755151, + "long": 9.78390087021539 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 16:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 8.9 km hinter AD Drammetal und 3.3 km vor Herkulesblick", + "", + "L\u00e4nge: 16.97 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 vom Dreieck Drammetal (AD) nach Kassel-Nord (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.78390087, + 51.396359628 + ], + [ + 9.7837784, + 51.396317501 + ], + [ + 9.7834046, + 51.396190101 + ], + [ + 9.7831723, + 51.396118101 + ], + [ + 9.7829202, + 51.396044501 + ], + [ + 9.7825885, + 51.395952701 + ], + [ + 9.7821209, + 51.395828601 + ], + [ + 9.7816832, + 51.395720601 + ], + [ + 9.7812184, + 51.395620901 + ], + [ + 9.7807482, + 51.395531501 + ], + [ + 9.7802733, + 51.395452501 + ], + [ + 9.7797942, + 51.395384101 + ], + [ + 9.7793115, + 51.395326301 + ], + [ + 9.7788258, + 51.395279201 + ], + [ + 9.7783377, + 51.395242801 + ], + [ + 9.7778479, + 51.395217401 + ], + [ + 9.7773977, + 51.395200001 + ], + [ + 9.7769469, + 51.395192301 + ], + [ + 9.7764959, + 51.395194101 + ], + [ + 9.7760452, + 51.395205601 + ], + [ + 9.7755954, + 51.395226701 + ], + [ + 9.7752303, + 51.395251201 + ], + [ + 9.7748023, + 51.395285701 + ], + [ + 9.7743881, + 51.395328201 + ], + [ + 9.7739323, + 51.395379801 + ], + [ + 9.7734448, + 51.395448501 + ], + [ + 9.7730148, + 51.395521401 + ], + [ + 9.77254, + 51.395607701 + ], + [ + 9.7721243, + 51.395689701 + ], + [ + 9.7716576, + 51.395793501 + ], + [ + 9.7711722, + 51.395906501 + ], + [ + 9.7707269, + 51.396027701 + ], + [ + 9.7701822, + 51.396180901 + ], + [ + 9.7696052, + 51.396353101 + ], + [ + 9.7690359, + 51.396535201 + ], + [ + 9.7684748, + 51.396727001 + ], + [ + 9.7679223, + 51.396928201 + ], + [ + 9.7670409, + 51.397261601 + ], + [ + 9.7661959, + 51.397590901 + ], + [ + 9.7653635, + 51.397932501 + ], + [ + 9.7647923, + 51.398175701 + ], + [ + 9.7628971, + 51.399006201 + ], + [ + 9.7612865, + 51.399725401 + ], + [ + 9.7600604, + 51.400252401 + ], + [ + 9.757243, + 51.401463401 + ], + [ + 9.7544255, + 51.402674401 + ], + [ + 9.749758, + 51.404662301 + ], + [ + 9.7485026, + 51.405164401 + ], + [ + 9.7474033, + 51.405558901 + ], + [ + 9.7460309, + 51.405987001 + ], + [ + 9.7445516, + 51.406413201 + ], + [ + 9.7432809, + 51.406717601 + ], + [ + 9.7417503, + 51.407023001 + ], + [ + 9.7404488, + 51.407247201 + ], + [ + 9.7393519, + 51.407393101 + ], + [ + 9.7377107, + 51.407579601 + ], + [ + 9.7367675, + 51.407656201 + ], + [ + 9.7354084, + 51.407755301 + ], + [ + 9.7336148, + 51.407876301 + ], + [ + 9.7317553, + 51.408008201 + ], + [ + 9.7312732, + 51.408035201 + ], + [ + 9.7305483, + 51.408070301 + ], + [ + 9.7293751, + 51.408109301 + ], + [ + 9.7283067, + 51.408099801 + ], + [ + 9.7273277, + 51.408078001 + ], + [ + 9.7264937, + 51.408021501 + ], + [ + 9.7257402, + 51.407957701 + ], + [ + 9.7249589, + 51.407882301 + ], + [ + 9.7241056, + 51.407773501 + ], + [ + 9.7230279, + 51.407612101 + ], + [ + 9.721972, + 51.407416401 + ], + [ + 9.7208488, + 51.407163801 + ], + [ + 9.7191568, + 51.406703601 + ], + [ + 9.7180047, + 51.406332101 + ], + [ + 9.7171723, + 51.406024701 + ], + [ + 9.7159389, + 51.405533001 + ], + [ + 9.715876, + 51.405509701 + ], + [ + 9.7108574, + 51.403523301 + ], + [ + 9.705209, + 51.401288101 + ], + [ + 9.7049479, + 51.401182701 + ], + [ + 9.7046906, + 51.401073601 + ], + [ + 9.7044372, + 51.400961001 + ], + [ + 9.7041879, + 51.400844901 + ], + [ + 9.7038629, + 51.400685101 + ], + [ + 9.7035456, + 51.400519401 + ], + [ + 9.7032364, + 51.400347901 + ], + [ + 9.7029354, + 51.400170801 + ], + [ + 9.7016944, + 51.399407201 + ], + [ + 9.7013911, + 51.399238301 + ], + [ + 9.7010431, + 51.399048701 + ], + [ + 9.7006851, + 51.398866601 + ], + [ + 9.7003175, + 51.398692001 + ], + [ + 9.6999407, + 51.398525301 + ], + [ + 9.6995551, + 51.398366601 + ], + [ + 9.6991612, + 51.398216001 + ], + [ + 9.6987649, + 51.398075701 + ], + [ + 9.6983614, + 51.397943601 + ], + [ + 9.6979501, + 51.397821701 + ], + [ + 9.6975323, + 51.397708501 + ], + [ + 9.6971154, + 51.397605801 + ], + [ + 9.6966931, + 51.397511901 + ], + [ + 9.6962661, + 51.397426901 + ], + [ + 9.6958347, + 51.397350801 + ], + [ + 9.6953995, + 51.397283801 + ], + [ + 9.694961, + 51.397225901 + ], + [ + 9.6945178, + 51.397177001 + ], + [ + 9.6940723, + 51.397137101 + ], + [ + 9.6936249, + 51.397106301 + ], + [ + 9.6931762, + 51.397084701 + ], + [ + 9.6927266, + 51.397072201 + ], + [ + 9.6923078, + 51.397068801 + ], + [ + 9.6918889, + 51.397073501 + ], + [ + 9.6914705, + 51.397086001 + ], + [ + 9.6910529, + 51.397106501 + ], + [ + 9.6906365, + 51.397134901 + ], + [ + 9.6902146, + 51.397171701 + ], + [ + 9.6897944, + 51.397215401 + ], + [ + 9.6893763, + 51.397266201 + ], + [ + 9.6889616, + 51.397323801 + ], + [ + 9.6885496, + 51.397388401 + ], + [ + 9.6881405, + 51.397459801 + ], + [ + 9.6877346, + 51.397538001 + ], + [ + 9.6873322, + 51.397622901 + ], + [ + 9.6869335, + 51.397714601 + ], + [ + 9.6842088, + 51.398353101 + ], + [ + 9.6838154, + 51.398433001 + ], + [ + 9.6834183, + 51.398505601 + ], + [ + 9.683018, + 51.398570801 + ], + [ + 9.6826148, + 51.398628701 + ], + [ + 9.682209, + 51.398679101 + ], + [ + 9.681801, + 51.398722001 + ], + [ + 9.6814051, + 51.398756301 + ], + [ + 9.6810078, + 51.398783501 + ], + [ + 9.6806094, + 51.398803701 + ], + [ + 9.6802102, + 51.398816701 + ], + [ + 9.6797599, + 51.398820601 + ], + [ + 9.6793097, + 51.398815701 + ], + [ + 9.6788599, + 51.398802001 + ], + [ + 9.678411, + 51.398779401 + ], + [ + 9.6779635, + 51.398748101 + ], + [ + 9.6775178, + 51.398707901 + ], + [ + 9.6770743, + 51.398659101 + ], + [ + 9.6766336, + 51.398601601 + ], + [ + 9.6761959, + 51.398535401 + ], + [ + 9.6757448, + 51.398457601 + ], + [ + 9.6752981, + 51.398370601 + ], + [ + 9.6748561, + 51.398274601 + ], + [ + 9.6744194, + 51.398169501 + ], + [ + 9.6739884, + 51.398055701 + ], + [ + 9.6735636, + 51.397933101 + ], + [ + 9.6731455, + 51.397801901 + ], + [ + 9.6727345, + 51.397662301 + ], + [ + 9.672331, + 51.397514301 + ], + [ + 9.6719355, + 51.397358201 + ], + [ + 9.6715484, + 51.397194101 + ], + [ + 9.6710578, + 51.396984401 + ], + [ + 9.6705786, + 51.396764701 + ], + [ + 9.6701112, + 51.396535401 + ], + [ + 9.6696561, + 51.396296501 + ], + [ + 9.6692139, + 51.396048401 + ], + [ + 9.6687851, + 51.395791401 + ], + [ + 9.66837, + 51.395525701 + ], + [ + 9.6680346, + 51.395299201 + ], + [ + 9.6677097, + 51.395066701 + ], + [ + 9.6673955, + 51.394828501 + ], + [ + 9.6670924, + 51.394584801 + ], + [ + 9.6668424, + 51.394372401 + ], + [ + 9.6666007, + 51.394156201 + ], + [ + 9.6663676, + 51.393936401 + ], + [ + 9.6661432, + 51.393713101 + ], + [ + 9.6658815, + 51.393435601 + ], + [ + 9.6656729, + 51.393208601 + ], + [ + 9.6654285, + 51.392913201 + ], + [ + 9.6651958, + 51.392614101 + ], + [ + 9.6649749, + 51.392311601 + ], + [ + 9.6648272, + 51.392097601 + ], + [ + 9.6646854, + 51.391882101 + ], + [ + 9.6570264, + 51.379017201 + ], + [ + 9.6565476, + 51.378227901 + ], + [ + 9.6561384, + 51.377626201 + ], + [ + 9.6555801, + 51.376894901 + ], + [ + 9.6545019, + 51.375839901 + ], + [ + 9.6541662, + 51.375553201 + ], + [ + 9.6537718, + 51.375255401 + ], + [ + 9.6528378, + 51.374611501 + ], + [ + 9.6517285, + 51.373999901 + ], + [ + 9.6506902, + 51.373490101 + ], + [ + 9.6499635, + 51.373180201 + ], + [ + 9.649661, + 51.373065801 + ], + [ + 9.6480348, + 51.372462101 + ], + [ + 9.6449076, + 51.371443801 + ], + [ + 9.6432095, + 51.370894601 + ], + [ + 9.6415369, + 51.370349401 + ], + [ + 9.6410486, + 51.370191201 + ], + [ + 9.6395585, + 51.369710201 + ], + [ + 9.6382757, + 51.369291301 + ], + [ + 9.6368166, + 51.368820701 + ], + [ + 9.6345271, + 51.368098101 + ], + [ + 9.6280892, + 51.366011001 + ], + [ + 9.6227148, + 51.364248801 + ], + [ + 9.622329, + 51.364115701 + ], + [ + 9.6213278, + 51.363769101 + ], + [ + 9.6205079, + 51.363421801 + ], + [ + 9.6197051, + 51.363049201 + ], + [ + 9.6189468, + 51.362632601 + ], + [ + 9.6181709, + 51.362161601 + ], + [ + 9.6176475, + 51.361798401 + ], + [ + 9.6172321, + 51.361485001 + ], + [ + 9.616819, + 51.361146701 + ], + [ + 9.6163309, + 51.360707901 + ], + [ + 9.6157671, + 51.360150001 + ], + [ + 9.6107841, + 51.355126601 + ], + [ + 9.6105792, + 51.354920001 + ], + [ + 9.6077113, + 51.352028601 + ], + [ + 9.6074708, + 51.351786901 + ], + [ + 9.6066274, + 51.350939601 + ], + [ + 9.6038815, + 51.348177801 + ], + [ + 9.6024102, + 51.346693901 + ], + [ + 9.6017976, + 51.346114201 + ], + [ + 9.6013708, + 51.345739401 + ], + [ + 9.6006705, + 51.345150301 + ], + [ + 9.6001667, + 51.344750001 + ], + [ + 9.5990556, + 51.343944401 + ], + [ + 9.598285, + 51.343425401 + ], + [ + 9.5979853, + 51.343215101 + ], + [ + 9.5966993, + 51.342314801 + ], + [ + 9.596576564, + 51.342230194 + ] + ] + } + }, + { + "identifier": "2026-011509--vi-bs.2026-04-07_18-00-00-000.devi-bs.2026-04-07_18-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.44111105668593,9.852320143537064,51.43014415683612,9.846158478081001", + "point": "51.44111105668593,9.852320143537064", + "startLcPosition": "172", + "impact": { + "lower": "Hackelberg", + "upper": "Drammetal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Drammetal - Hackelberg", + "coordinate": { + "lat": 51.44111105668593, + "long": 9.852320143537064 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 1.6 km hinter AD Drammetal und 6.3 km vor Hackelberg", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Hackelberg (Parkplatz) nach Drammetal (AD) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.852320144, + 51.441111057 + ], + [ + 9.8514842, + 51.440278701 + ], + [ + 9.8512654, + 51.440054301 + ], + [ + 9.8510528, + 51.439827601 + ], + [ + 9.8508507, + 51.439603501 + ], + [ + 9.8506546, + 51.439377401 + ], + [ + 9.8504371, + 51.439115401 + ], + [ + 9.8502276, + 51.438850901 + ], + [ + 9.8500264, + 51.438584001 + ], + [ + 9.8496986, + 51.438155601 + ], + [ + 9.8494773, + 51.437824401 + ], + [ + 9.8492725, + 51.437506001 + ], + [ + 9.8490768, + 51.437185401 + ], + [ + 9.8488902, + 51.436862701 + ], + [ + 9.8487064, + 51.436526001 + ], + [ + 9.8485325, + 51.436187201 + ], + [ + 9.8483603, + 51.435836401 + ], + [ + 9.8481967, + 51.435483901 + ], + [ + 9.847918, + 51.434846501 + ], + [ + 9.8476443, + 51.434164401 + ], + [ + 9.847112, + 51.432738101 + ], + [ + 9.846158478, + 51.430144157 + ] + ] + } + }, + { + "identifier": "2026-016520--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_007.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.46143994846805,9.86938276720506,51.406218021538216,9.74522906071471", + "point": "51.46143994846805,9.86938276720506", + "startLcPosition": "173", + "impact": { + "lower": "Werratalbr\u00fccke", + "upper": "G\u00f6ttingen-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | G\u00f6ttingen-Ost - Werratalbr\u00fccke", + "coordinate": { + "lat": 51.46143994846805, + "long": 9.86938276720506 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 16:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 2.9 km hinter G\u00f6ttingen-Ost und 2.2 km vor Werratalbr\u00fccke", + "", + "L\u00e4nge: 12.97 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 vom Dreieck Drammetal (AD) nach Kassel-Nord (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.869382767, + 51.461439948 + ], + [ + 9.869071, + 51.460512601 + ], + [ + 9.8685997, + 51.459339101 + ], + [ + 9.8682015, + 51.458459501 + ], + [ + 9.867652, + 51.457442601 + ], + [ + 9.8673151, + 51.456833601 + ], + [ + 9.8672421, + 51.456717701 + ], + [ + 9.8669277, + 51.456232301 + ], + [ + 9.8667246, + 51.455938901 + ], + [ + 9.8665892, + 51.455746301 + ], + [ + 9.8663015, + 51.455370901 + ], + [ + 9.8661331, + 51.455151101 + ], + [ + 9.8658634, + 51.454828201 + ], + [ + 9.8656145, + 51.454541801 + ], + [ + 9.8649073, + 51.453780901 + ], + [ + 9.864688, + 51.453559301 + ], + [ + 9.8631895, + 51.452053301 + ], + [ + 9.8628646, + 51.451714501 + ], + [ + 9.8548666, + 51.443650401 + ], + [ + 9.8544897, + 51.443271201 + ], + [ + 9.85375, + 51.442534701 + ], + [ + 9.8535882, + 51.442373601 + ], + [ + 9.8514842, + 51.440278701 + ], + [ + 9.8512654, + 51.440054301 + ], + [ + 9.8510528, + 51.439827601 + ], + [ + 9.8508507, + 51.439603501 + ], + [ + 9.8506546, + 51.439377401 + ], + [ + 9.8504371, + 51.439115401 + ], + [ + 9.8502276, + 51.438850901 + ], + [ + 9.8500264, + 51.438584001 + ], + [ + 9.8496986, + 51.438155601 + ], + [ + 9.8494773, + 51.437824401 + ], + [ + 9.8492725, + 51.437506001 + ], + [ + 9.8490768, + 51.437185401 + ], + [ + 9.8488902, + 51.436862701 + ], + [ + 9.8487064, + 51.436526001 + ], + [ + 9.8485325, + 51.436187201 + ], + [ + 9.8483603, + 51.435836401 + ], + [ + 9.8481967, + 51.435483901 + ], + [ + 9.847918, + 51.434846501 + ], + [ + 9.8476443, + 51.434164401 + ], + [ + 9.847112, + 51.432738101 + ], + [ + 9.8458504, + 51.429306001 + ], + [ + 9.8444391, + 51.425479301 + ], + [ + 9.8441403, + 51.424679701 + ], + [ + 9.8438126, + 51.423905501 + ], + [ + 9.8435429, + 51.423330301 + ], + [ + 9.8432416, + 51.422761101 + ], + [ + 9.8429091, + 51.422198701 + ], + [ + 9.8425459, + 51.421643801 + ], + [ + 9.8421523, + 51.421096901 + ], + [ + 9.8420929, + 51.421021401 + ], + [ + 9.8418733, + 51.420742401 + ], + [ + 9.8417288, + 51.420558701 + ], + [ + 9.8412759, + 51.420029801 + ], + [ + 9.8409745, + 51.419700401 + ], + [ + 9.8406617, + 51.419375201 + ], + [ + 9.8403376, + 51.419054201 + ], + [ + 9.8400025, + 51.418737801 + ], + [ + 9.8396564, + 51.418425901 + ], + [ + 9.8392667, + 51.418092501 + ], + [ + 9.8388654, + 51.417764501 + ], + [ + 9.8384526, + 51.417442001 + ], + [ + 9.8380273, + 51.417124301 + ], + [ + 9.8375909, + 51.416812501 + ], + [ + 9.8371437, + 51.416506801 + ], + [ + 9.8366858, + 51.416207201 + ], + [ + 9.8362174, + 51.415914001 + ], + [ + 9.8357388, + 51.415627301 + ], + [ + 9.8329461, + 51.414109901 + ], + [ + 9.8301664, + 51.412633701 + ], + [ + 9.8281594, + 51.411569601 + ], + [ + 9.8273161, + 51.411117101 + ], + [ + 9.825276, + 51.410040401 + ], + [ + 9.8244504, + 51.409626301 + ], + [ + 9.8238918, + 51.409362001 + ], + [ + 9.823418, + 51.409142001 + ], + [ + 9.8227475, + 51.408856301 + ], + [ + 9.8221073, + 51.408585801 + ], + [ + 9.8214896, + 51.408337501 + ], + [ + 9.8208359, + 51.408093901 + ], + [ + 9.8201458, + 51.407867001 + ], + [ + 9.8187917, + 51.407431001 + ], + [ + 9.813084, + 51.405659701 + ], + [ + 9.8112072, + 51.405074801 + ], + [ + 9.8107337, + 51.404934801 + ], + [ + 9.8089741, + 51.404389001 + ], + [ + 9.8070723, + 51.403805201 + ], + [ + 9.803245, + 51.402625201 + ], + [ + 9.799553, + 51.401534601 + ], + [ + 9.7972853, + 51.400845801 + ], + [ + 9.793879, + 51.399738801 + ], + [ + 9.7908166, + 51.398727101 + ], + [ + 9.7892824, + 51.398213301 + ], + [ + 9.7877738, + 51.397702701 + ], + [ + 9.7860664, + 51.397108801 + ], + [ + 9.7848692, + 51.396692701 + ], + [ + 9.7837784, + 51.396317501 + ], + [ + 9.7834046, + 51.396190101 + ], + [ + 9.7831723, + 51.396118101 + ], + [ + 9.7829202, + 51.396044501 + ], + [ + 9.7825885, + 51.395952701 + ], + [ + 9.7821209, + 51.395828601 + ], + [ + 9.7816832, + 51.395720601 + ], + [ + 9.7812184, + 51.395620901 + ], + [ + 9.7807482, + 51.395531501 + ], + [ + 9.7802733, + 51.395452501 + ], + [ + 9.7797942, + 51.395384101 + ], + [ + 9.7793115, + 51.395326301 + ], + [ + 9.7788258, + 51.395279201 + ], + [ + 9.7783377, + 51.395242801 + ], + [ + 9.7778479, + 51.395217401 + ], + [ + 9.7773977, + 51.395200001 + ], + [ + 9.7769469, + 51.395192301 + ], + [ + 9.7764959, + 51.395194101 + ], + [ + 9.7760452, + 51.395205601 + ], + [ + 9.7755954, + 51.395226701 + ], + [ + 9.7752303, + 51.395251201 + ], + [ + 9.7748023, + 51.395285701 + ], + [ + 9.7743881, + 51.395328201 + ], + [ + 9.7739323, + 51.395379801 + ], + [ + 9.7734448, + 51.395448501 + ], + [ + 9.7730148, + 51.395521401 + ], + [ + 9.77254, + 51.395607701 + ], + [ + 9.7721243, + 51.395689701 + ], + [ + 9.7716576, + 51.395793501 + ], + [ + 9.7711722, + 51.395906501 + ], + [ + 9.7707269, + 51.396027701 + ], + [ + 9.7701822, + 51.396180901 + ], + [ + 9.7696052, + 51.396353101 + ], + [ + 9.7690359, + 51.396535201 + ], + [ + 9.7684748, + 51.396727001 + ], + [ + 9.7679223, + 51.396928201 + ], + [ + 9.7670409, + 51.397261601 + ], + [ + 9.7661959, + 51.397590901 + ], + [ + 9.7653635, + 51.397932501 + ], + [ + 9.7647923, + 51.398175701 + ], + [ + 9.7628971, + 51.399006201 + ], + [ + 9.7612865, + 51.399725401 + ], + [ + 9.7600604, + 51.400252401 + ], + [ + 9.757243, + 51.401463401 + ], + [ + 9.7544255, + 51.402674401 + ], + [ + 9.749758, + 51.404662301 + ], + [ + 9.7485026, + 51.405164401 + ], + [ + 9.7474033, + 51.405558901 + ], + [ + 9.7460309, + 51.405987001 + ], + [ + 9.745229061, + 51.406218022 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de43", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.52659986598776,9.879124741071895,51.79078605543588,10.058097688434712", + "point": "51.52659986598776,9.879124741071895", + "startLcPosition": "176", + "impact": { + "lower": "Echte", + "upper": "G\u00f6ttingen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | G\u00f6ttingen - Echte", + "coordinate": { + "lat": 51.52659986598776, + "long": 9.879124741071895 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 29.04.26 von 07:00 bis 18:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 17.04.26 und dem 24.04.26 von 07:00 bis 12:00 Uhr.", + "30.04.26 von 07:00 bis 12:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 0.2 km hinter AS G\u00f6ttingen und AS Echte", + "", + "L\u00e4nge: 35.23 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.879124741, + 51.526599866 + ], + [ + 9.8792625, + 51.530088001 + ], + [ + 9.8792893, + 51.531447201 + ], + [ + 9.8793068, + 51.532397401 + ], + [ + 9.8793127, + 51.535549801 + ], + [ + 9.8793135, + 51.535638301 + ], + [ + 9.879314, + 51.535856701 + ], + [ + 9.8793274, + 51.538901701 + ], + [ + 9.8793333, + 51.543111101 + ], + [ + 9.879336, + 51.546902101 + ], + [ + 9.8793625, + 51.550674801 + ], + [ + 9.8793724, + 51.552086101 + ], + [ + 9.8793761, + 51.554510601 + ], + [ + 9.8793699, + 51.557070301 + ], + [ + 9.8793766, + 51.558864801 + ], + [ + 9.8793832, + 51.560633501 + ], + [ + 9.8794202, + 51.561067001 + ], + [ + 9.879451, + 51.561245101 + ], + [ + 9.8794946, + 51.561500301 + ], + [ + 9.8795507, + 51.561752401 + ], + [ + 9.8796298, + 51.562055901 + ], + [ + 9.8797108, + 51.562329201 + ], + [ + 9.8798146, + 51.562599501 + ], + [ + 9.8799123, + 51.562845301 + ], + [ + 9.8800227, + 51.563088901 + ], + [ + 9.8801457, + 51.563330301 + ], + [ + 9.880281, + 51.563569001 + ], + [ + 9.8804328, + 51.563811401 + ], + [ + 9.8805974, + 51.564050501 + ], + [ + 9.8807746, + 51.564286101 + ], + [ + 9.8809642, + 51.564517901 + ], + [ + 9.8811661, + 51.564745801 + ], + [ + 9.8813799, + 51.564969301 + ], + [ + 9.8816054, + 51.565188401 + ], + [ + 9.8821542, + 51.565678801 + ], + [ + 9.882394, + 51.565872901 + ], + [ + 9.8825701, + 51.566014101 + ], + [ + 9.8828065, + 51.566182301 + ], + [ + 9.8831791, + 51.566439001 + ], + [ + 9.8835534, + 51.566672301 + ], + [ + 9.8840493, + 51.566965801 + ], + [ + 9.8844019, + 51.567153701 + ], + [ + 9.8847639, + 51.567334401 + ], + [ + 9.8851351, + 51.567507801 + ], + [ + 9.885515, + 51.567673801 + ], + [ + 9.8859033, + 51.567832201 + ], + [ + 9.8862995, + 51.567982701 + ], + [ + 9.8867032, + 51.568125301 + ], + [ + 9.8870816, + 51.568249501 + ], + [ + 9.8874658, + 51.568366801 + ], + [ + 9.8878553, + 51.568477001 + ], + [ + 9.8882499, + 51.568579901 + ], + [ + 9.8886492, + 51.568675601 + ], + [ + 9.8890529, + 51.568764001 + ], + [ + 9.8894606, + 51.568844901 + ], + [ + 9.889872, + 51.568918301 + ], + [ + 9.8902866, + 51.568984101 + ], + [ + 9.8912558, + 51.569127301 + ], + [ + 9.8913788, + 51.569145501 + ], + [ + 9.8922185, + 51.569260701 + ], + [ + 9.8923377, + 51.569276701 + ], + [ + 9.8946657, + 51.569572601 + ], + [ + 9.8955503, + 51.569691301 + ], + [ + 9.8962003, + 51.569790601 + ], + [ + 9.8966489, + 51.569858001 + ], + [ + 9.8970941, + 51.569933601 + ], + [ + 9.8975355, + 51.570017401 + ], + [ + 9.8979727, + 51.570109301 + ], + [ + 9.8984053, + 51.570209201 + ], + [ + 9.8988329, + 51.570317101 + ], + [ + 9.8992667, + 51.570436101 + ], + [ + 9.8996944, + 51.570563301 + ], + [ + 9.9001157, + 51.570698601 + ], + [ + 9.9005302, + 51.570841801 + ], + [ + 9.9009374, + 51.570992801 + ], + [ + 9.9013371, + 51.571151401 + ], + [ + 9.9017287, + 51.571317601 + ], + [ + 9.902112, + 51.571491101 + ], + [ + 9.9024866, + 51.571671801 + ], + [ + 9.9031896, + 51.572043201 + ], + [ + 9.9039419, + 51.572466501 + ], + [ + 9.9043823, + 51.572729801 + ], + [ + 9.9046016, + 51.572870701 + ], + [ + 9.9051621, + 51.573217401 + ], + [ + 9.9056278, + 51.573528801 + ], + [ + 9.9060855, + 51.573844601 + ], + [ + 9.9065352, + 51.574165001 + ], + [ + 9.9069766, + 51.574489701 + ], + [ + 9.9074098, + 51.574818701 + ], + [ + 9.9078345, + 51.575151901 + ], + [ + 9.9082507, + 51.575489201 + ], + [ + 9.9086395, + 51.575826601 + ], + [ + 9.9090584, + 51.576203001 + ], + [ + 9.9094658, + 51.576584301 + ], + [ + 9.909765, + 51.576874601 + ], + [ + 9.9100576, + 51.577167601 + ], + [ + 9.9103434, + 51.577463101 + ], + [ + 9.9107403, + 51.577919201 + ], + [ + 9.9109401, + 51.578156201 + ], + [ + 9.9111289, + 51.578396701 + ], + [ + 9.9113068, + 51.578640401 + ], + [ + 9.9114736, + 51.578887101 + ], + [ + 9.9116291, + 51.579136601 + ], + [ + 9.9117732, + 51.579388701 + ], + [ + 9.9119114, + 51.579654601 + ], + [ + 9.9120369, + 51.579922901 + ], + [ + 9.9121496, + 51.580193401 + ], + [ + 9.9122495, + 51.580465901 + ], + [ + 9.9123364, + 51.580740001 + ], + [ + 9.9124103, + 51.581015601 + ], + [ + 9.912471, + 51.581292501 + ], + [ + 9.9125186, + 51.581570301 + ], + [ + 9.9125528, + 51.581845001 + ], + [ + 9.9125742, + 51.582120101 + ], + [ + 9.9125828, + 51.582395501 + ], + [ + 9.9125787, + 51.582671001 + ], + [ + 9.9125618, + 51.582946201 + ], + [ + 9.9125321, + 51.583221001 + ], + [ + 9.912491, + 51.583488101 + ], + [ + 9.9124379, + 51.583754401 + ], + [ + 9.9123727, + 51.584019601 + ], + [ + 9.9122944, + 51.584287501 + ], + [ + 9.9122039, + 51.584553801 + ], + [ + 9.9121012, + 51.584818401 + ], + [ + 9.9119864, + 51.585081101 + ], + [ + 9.9118596, + 51.585341701 + ], + [ + 9.9117209, + 51.585599901 + ], + [ + 9.9115705, + 51.585855601 + ], + [ + 9.9114084, + 51.586108501 + ], + [ + 9.9112314, + 51.586356001 + ], + [ + 9.9110485, + 51.586601701 + ], + [ + 9.9108699, + 51.586832801 + ], + [ + 9.910686, + 51.587062401 + ], + [ + 9.9100878, + 51.587767601 + ], + [ + 9.9087864, + 51.589254001 + ], + [ + 9.9072806, + 51.590961101 + ], + [ + 9.906994, + 51.591291001 + ], + [ + 9.9067161, + 51.591623801 + ], + [ + 9.906447, + 51.591959401 + ], + [ + 9.9062332, + 51.592232801 + ], + [ + 9.906029, + 51.592509001 + ], + [ + 9.9058345, + 51.592787901 + ], + [ + 9.9056217, + 51.593113701 + ], + [ + 9.905422, + 51.593442601 + ], + [ + 9.9052471, + 51.593753501 + ], + [ + 9.905084, + 51.594066701 + ], + [ + 9.9049328, + 51.594382301 + ], + [ + 9.9047963, + 51.594693401 + ], + [ + 9.9046713, + 51.595006401 + ], + [ + 9.904558, + 51.595321101 + ], + [ + 9.9044563, + 51.595637301 + ], + [ + 9.9043659, + 51.595954901 + ], + [ + 9.9042869, + 51.596273601 + ], + [ + 9.9042302, + 51.596537801 + ], + [ + 9.904176, + 51.596834901 + ], + [ + 9.9041316, + 51.597132701 + ], + [ + 9.9040971, + 51.597431001 + ], + [ + 9.9040708, + 51.597783201 + ], + [ + 9.9040593, + 51.598135801 + ], + [ + 9.9040625, + 51.598488401 + ], + [ + 9.9040805, + 51.598840901 + ], + [ + 9.9041132, + 51.599193001 + ], + [ + 9.9041496, + 51.599488001 + ], + [ + 9.9041959, + 51.599782401 + ], + [ + 9.9042522, + 51.600076201 + ], + [ + 9.9043182, + 51.600368201 + ], + [ + 9.9043939, + 51.600659201 + ], + [ + 9.9044795, + 51.600949201 + ], + [ + 9.9045748, + 51.601238001 + ], + [ + 9.9053092, + 51.603083601 + ], + [ + 9.9060095, + 51.604750001 + ], + [ + 9.9067031, + 51.606448901 + ], + [ + 9.907049, + 51.607284001 + ], + [ + 9.9072303, + 51.607708301 + ], + [ + 9.9075003, + 51.608399401 + ], + [ + 9.9076436, + 51.608925201 + ], + [ + 9.9077726, + 51.609522101 + ], + [ + 9.9079827, + 51.610749701 + ], + [ + 9.9081372, + 51.611866201 + ], + [ + 9.9082411, + 51.612492801 + ], + [ + 9.9083083, + 51.612916901 + ], + [ + 9.9083827, + 51.613382401 + ], + [ + 9.9084706, + 51.613726101 + ], + [ + 9.9085192, + 51.613916401 + ], + [ + 9.9086203, + 51.614312101 + ], + [ + 9.9089212, + 51.615095601 + ], + [ + 9.9090882, + 51.615435301 + ], + [ + 9.9093465, + 51.615960901 + ], + [ + 9.9098482, + 51.616780701 + ], + [ + 9.9108739, + 51.618250301 + ], + [ + 9.9120177, + 51.619841401 + ], + [ + 9.9124828, + 51.620491101 + ], + [ + 9.9128602, + 51.621040901 + ], + [ + 9.9144313, + 51.623281401 + ], + [ + 9.9158578, + 51.625302301 + ], + [ + 9.9168777, + 51.626731301 + ], + [ + 9.917521, + 51.627645201 + ], + [ + 9.9181442, + 51.628517401 + ], + [ + 9.91857, + 51.629104501 + ], + [ + 9.9188104, + 51.629464101 + ], + [ + 9.9193682, + 51.630297101 + ], + [ + 9.9195305, + 51.630531901 + ], + [ + 9.91974, + 51.630924501 + ], + [ + 9.9199207, + 51.631316301 + ], + [ + 9.9200636, + 51.631676501 + ], + [ + 9.9201621, + 51.631958701 + ], + [ + 9.9202269, + 51.632184001 + ], + [ + 9.9203165, + 51.632602201 + ], + [ + 9.9203841, + 51.633005401 + ], + [ + 9.920559, + 51.634432101 + ], + [ + 9.9207487, + 51.635679501 + ], + [ + 9.9209804, + 51.636994401 + ], + [ + 9.9215592, + 51.639718701 + ], + [ + 9.9216466, + 51.640287301 + ], + [ + 9.9216862, + 51.640765601 + ], + [ + 9.9216843, + 51.641331201 + ], + [ + 9.9216588, + 51.641743801 + ], + [ + 9.9215986, + 51.642156601 + ], + [ + 9.9215252, + 51.642565301 + ], + [ + 9.9213873, + 51.643060501 + ], + [ + 9.921231, + 51.643533901 + ], + [ + 9.9210469, + 51.643995101 + ], + [ + 9.9185682, + 51.649688401 + ], + [ + 9.9166202, + 51.654175101 + ], + [ + 9.916167, + 51.655221301 + ], + [ + 9.9157794, + 51.656209101 + ], + [ + 9.9156748, + 51.656557201 + ], + [ + 9.915597, + 51.656909101 + ], + [ + 9.9155185, + 51.657368401 + ], + [ + 9.9154854, + 51.657793601 + ], + [ + 9.9154902, + 51.658356501 + ], + [ + 9.9155986, + 51.659124601 + ], + [ + 9.915719, + 51.659603801 + ], + [ + 9.9158308, + 51.659940701 + ], + [ + 9.9160072, + 51.660375101 + ], + [ + 9.9162337, + 51.660859601 + ], + [ + 9.9172073, + 51.662618001 + ], + [ + 9.9186601, + 51.665222301 + ], + [ + 9.9188371, + 51.665525201 + ], + [ + 9.9213951, + 51.670091701 + ], + [ + 9.9224888, + 51.672048701 + ], + [ + 9.9230064, + 51.672993301 + ], + [ + 9.923299, + 51.673536501 + ], + [ + 9.9235289, + 51.673963201 + ], + [ + 9.9241052, + 51.675004901 + ], + [ + 9.9245741, + 51.675855401 + ], + [ + 9.92537, + 51.677276501 + ], + [ + 9.9257348, + 51.677953801 + ], + [ + 9.9260014, + 51.678491101 + ], + [ + 9.9263676, + 51.679315001 + ], + [ + 9.9266808, + 51.680136601 + ], + [ + 9.9267317, + 51.680284701 + ], + [ + 9.9269714, + 51.681160101 + ], + [ + 9.9272063, + 51.682251301 + ], + [ + 9.9275307, + 51.684222501 + ], + [ + 9.9276082, + 51.684545201 + ], + [ + 9.9277735, + 51.685159201 + ], + [ + 9.9279291, + 51.685599901 + ], + [ + 9.9283833, + 51.686574101 + ], + [ + 9.9288538, + 51.687308701 + ], + [ + 9.9293114, + 51.687877001 + ], + [ + 9.9300549, + 51.688637201 + ], + [ + 9.9306218, + 51.689132201 + ], + [ + 9.9333536, + 51.691409101 + ], + [ + 9.9341648, + 51.692199501 + ], + [ + 9.9345562, + 51.692607001 + ], + [ + 9.934932, + 51.693035901 + ], + [ + 9.9352701, + 51.693443901 + ], + [ + 9.9357581, + 51.694071101 + ], + [ + 9.9360527, + 51.694502701 + ], + [ + 9.9364339, + 51.695133001 + ], + [ + 9.9365923, + 51.695401401 + ], + [ + 9.9368128, + 51.695774901 + ], + [ + 9.9371457, + 51.696461601 + ], + [ + 9.9373695, + 51.696980501 + ], + [ + 9.9374943, + 51.697309801 + ], + [ + 9.9377475, + 51.698079201 + ], + [ + 9.937933, + 51.698842701 + ], + [ + 9.9380567, + 51.699515701 + ], + [ + 9.9381089, + 51.699923301 + ], + [ + 9.9381845, + 51.701091301 + ], + [ + 9.9382561, + 51.703132301 + ], + [ + 9.9382835, + 51.704174501 + ], + [ + 9.9382997, + 51.704630101 + ], + [ + 9.9383104, + 51.704926001 + ], + [ + 9.9383261, + 51.705286501 + ], + [ + 9.9383756, + 51.706371401 + ], + [ + 9.9384279, + 51.707103101 + ], + [ + 9.9385204, + 51.707869401 + ], + [ + 9.9386036, + 51.708398301 + ], + [ + 9.9386985, + 51.708974601 + ], + [ + 9.9389527, + 51.710028801 + ], + [ + 9.93917, + 51.710742301 + ], + [ + 9.9394581, + 51.711504401 + ], + [ + 9.9395118, + 51.711646401 + ], + [ + 9.9397318, + 51.712232901 + ], + [ + 9.9400127, + 51.712880301 + ], + [ + 9.9402325, + 51.713324401 + ], + [ + 9.9403678, + 51.713573201 + ], + [ + 9.9408426, + 51.714454601 + ], + [ + 9.9413469, + 51.715279701 + ], + [ + 9.941709, + 51.715814601 + ], + [ + 9.9418559, + 51.716039601 + ], + [ + 9.9422371, + 51.716595901 + ], + [ + 9.9427644, + 51.717280101 + ], + [ + 9.9432163, + 51.717824501 + ], + [ + 9.9435646, + 51.718238101 + ], + [ + 9.9439178, + 51.718628601 + ], + [ + 9.9447414, + 51.719503301 + ], + [ + 9.9453517, + 51.720098201 + ], + [ + 9.9461396, + 51.720813401 + ], + [ + 9.9468114, + 51.721382601 + ], + [ + 9.9475056, + 51.721960701 + ], + [ + 9.9484538, + 51.722699001 + ], + [ + 9.9494012, + 51.723347001 + ], + [ + 9.9500234, + 51.723774001 + ], + [ + 9.9503751, + 51.724008001 + ], + [ + 9.9516315, + 51.724799301 + ], + [ + 9.9535853, + 51.725901701 + ], + [ + 9.954091, + 51.726165401 + ], + [ + 9.9552008, + 51.726726601 + ], + [ + 9.9562997, + 51.727222401 + ], + [ + 9.9573986, + 51.727704801 + ], + [ + 9.9585921, + 51.728180301 + ], + [ + 9.9598362, + 51.728651501 + ], + [ + 9.9623846, + 51.729616701 + ], + [ + 9.9629172, + 51.729814101 + ], + [ + 9.9644622, + 51.730386801 + ], + [ + 9.9657857, + 51.730877401 + ], + [ + 9.9675701, + 51.731538901 + ], + [ + 9.968766, + 51.731982201 + ], + [ + 9.9689662, + 51.732056401 + ], + [ + 9.971245, + 51.732900501 + ], + [ + 9.9717506, + 51.733088501 + ], + [ + 9.9728824, + 51.733508001 + ], + [ + 9.9737021, + 51.733811801 + ], + [ + 9.9745718, + 51.734134201 + ], + [ + 9.9775974, + 51.735257401 + ], + [ + 9.9785016, + 51.735579001 + ], + [ + 9.9793485, + 51.735869201 + ], + [ + 9.9796286, + 51.735960101 + ], + [ + 9.9799696, + 51.736070701 + ], + [ + 9.9805235, + 51.736241701 + ], + [ + 9.9813849, + 51.736490401 + ], + [ + 9.9822514, + 51.736718601 + ], + [ + 9.9830512, + 51.736909301 + ], + [ + 9.9841556, + 51.737154801 + ], + [ + 9.9852666, + 51.737373601 + ], + [ + 9.9861498, + 51.737522501 + ], + [ + 9.9870506, + 51.737658901 + ], + [ + 9.987858, + 51.737769301 + ], + [ + 9.9886109, + 51.737856001 + ], + [ + 9.9901201, + 51.738009201 + ], + [ + 9.9920019, + 51.738154101 + ], + [ + 9.9928389, + 51.738221401 + ], + [ + 9.99433, + 51.738350701 + ], + [ + 9.995227, + 51.738461001 + ], + [ + 9.9959974, + 51.738568501 + ], + [ + 9.9972605, + 51.738810301 + ], + [ + 9.9979925, + 51.738980401 + ], + [ + 9.9987818, + 51.739195101 + ], + [ + 9.9994036, + 51.739397301 + ], + [ + 10.0008691, + 51.739897701 + ], + [ + 10.001657, + 51.740229101 + ], + [ + 10.0027484, + 51.740753801 + ], + [ + 10.0031651, + 51.740975201 + ], + [ + 10.0041414, + 51.741544501 + ], + [ + 10.0050351, + 51.742158501 + ], + [ + 10.005864, + 51.742831801 + ], + [ + 10.0065879, + 51.743523701 + ], + [ + 10.0070065, + 51.743988101 + ], + [ + 10.0074236, + 51.744513101 + ], + [ + 10.007714, + 51.744927101 + ], + [ + 10.0079776, + 51.745325801 + ], + [ + 10.0082656, + 51.745848401 + ], + [ + 10.0085137, + 51.746370701 + ], + [ + 10.0089106, + 51.747342201 + ], + [ + 10.0090311, + 51.747637301 + ], + [ + 10.009833, + 51.749661801 + ], + [ + 10.0106218, + 51.751645101 + ], + [ + 10.0115356, + 51.753943001 + ], + [ + 10.0119669, + 51.755027401 + ], + [ + 10.0123865, + 51.755957001 + ], + [ + 10.0126296, + 51.756432001 + ], + [ + 10.0129547, + 51.757036601 + ], + [ + 10.0133152, + 51.757628801 + ], + [ + 10.0136097, + 51.758071601 + ], + [ + 10.0139469, + 51.758540301 + ], + [ + 10.0142728, + 51.758964401 + ], + [ + 10.0145504, + 51.759342101 + ], + [ + 10.0148947, + 51.759757301 + ], + [ + 10.0154114, + 51.760361501 + ], + [ + 10.0159866, + 51.760961101 + ], + [ + 10.0167659, + 51.761756001 + ], + [ + 10.0176207, + 51.762524001 + ], + [ + 10.018586, + 51.763344901 + ], + [ + 10.0204799, + 51.764942201 + ], + [ + 10.0218814, + 51.766212201 + ], + [ + 10.0232094, + 51.767522901 + ], + [ + 10.0238544, + 51.768199301 + ], + [ + 10.0243628, + 51.768750701 + ], + [ + 10.0256266, + 51.770191501 + ], + [ + 10.0265818, + 51.771367801 + ], + [ + 10.0274627, + 51.772552301 + ], + [ + 10.0282778, + 51.773730701 + ], + [ + 10.0290705, + 51.774976801 + ], + [ + 10.029966, + 51.776416301 + ], + [ + 10.0303998, + 51.777062101 + ], + [ + 10.0307328, + 51.777513801 + ], + [ + 10.0311604, + 51.778082301 + ], + [ + 10.0315546, + 51.778542701 + ], + [ + 10.0319856, + 51.779016001 + ], + [ + 10.0324257, + 51.779460701 + ], + [ + 10.0326396, + 51.779671701 + ], + [ + 10.0333311, + 51.780308601 + ], + [ + 10.0340787, + 51.780931401 + ], + [ + 10.0348896, + 51.781551701 + ], + [ + 10.0353589, + 51.781890301 + ], + [ + 10.0359483, + 51.782283001 + ], + [ + 10.0362408, + 51.782476701 + ], + [ + 10.0373156, + 51.783133901 + ], + [ + 10.038455, + 51.783795201 + ], + [ + 10.0399067, + 51.784580201 + ], + [ + 10.041285, + 51.785272501 + ], + [ + 10.0425575, + 51.785872501 + ], + [ + 10.0436833, + 51.786363701 + ], + [ + 10.0449277, + 51.786883001 + ], + [ + 10.0461837, + 51.787385001 + ], + [ + 10.0471205, + 51.787732501 + ], + [ + 10.0487724, + 51.788320901 + ], + [ + 10.0491293, + 51.788441401 + ], + [ + 10.0506281, + 51.788917901 + ], + [ + 10.0519326, + 51.789301201 + ], + [ + 10.0533655, + 51.789688201 + ], + [ + 10.0541417, + 51.789897801 + ], + [ + 10.0559602, + 51.790339601 + ], + [ + 10.0579167, + 51.790751301 + ], + [ + 10.058097688, + 51.790786055 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de41", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.52659986598776,9.879124741071895,51.79078605543588,10.058097688434712", + "point": "51.52659986598776,9.879124741071895", + "startLcPosition": "176", + "impact": { + "lower": "Echte", + "upper": "G\u00f6ttingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | G\u00f6ttingen - Echte", + "coordinate": { + "lat": 51.52659986598776, + "long": 9.879124741071895 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 30.04.26 von 07:00 bis 16:00 Uhr.", + "24.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "24.04.26", + "", + "A7: Kassel -> Hannover, zwischen 0.2 km hinter AS G\u00f6ttingen und AS Echte", + "", + "L\u00e4nge: 35.23 km | Maximale Durchfahrtsbreite: 11 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.879124741, + 51.526599866 + ], + [ + 9.8792625, + 51.530088001 + ], + [ + 9.8792893, + 51.531447201 + ], + [ + 9.8793068, + 51.532397401 + ], + [ + 9.8793127, + 51.535549801 + ], + [ + 9.8793135, + 51.535638301 + ], + [ + 9.879314, + 51.535856701 + ], + [ + 9.8793274, + 51.538901701 + ], + [ + 9.8793333, + 51.543111101 + ], + [ + 9.879336, + 51.546902101 + ], + [ + 9.8793625, + 51.550674801 + ], + [ + 9.8793724, + 51.552086101 + ], + [ + 9.8793761, + 51.554510601 + ], + [ + 9.8793699, + 51.557070301 + ], + [ + 9.8793766, + 51.558864801 + ], + [ + 9.8793832, + 51.560633501 + ], + [ + 9.8794202, + 51.561067001 + ], + [ + 9.879451, + 51.561245101 + ], + [ + 9.8794946, + 51.561500301 + ], + [ + 9.8795507, + 51.561752401 + ], + [ + 9.8796298, + 51.562055901 + ], + [ + 9.8797108, + 51.562329201 + ], + [ + 9.8798146, + 51.562599501 + ], + [ + 9.8799123, + 51.562845301 + ], + [ + 9.8800227, + 51.563088901 + ], + [ + 9.8801457, + 51.563330301 + ], + [ + 9.880281, + 51.563569001 + ], + [ + 9.8804328, + 51.563811401 + ], + [ + 9.8805974, + 51.564050501 + ], + [ + 9.8807746, + 51.564286101 + ], + [ + 9.8809642, + 51.564517901 + ], + [ + 9.8811661, + 51.564745801 + ], + [ + 9.8813799, + 51.564969301 + ], + [ + 9.8816054, + 51.565188401 + ], + [ + 9.8821542, + 51.565678801 + ], + [ + 9.882394, + 51.565872901 + ], + [ + 9.8825701, + 51.566014101 + ], + [ + 9.8828065, + 51.566182301 + ], + [ + 9.8831791, + 51.566439001 + ], + [ + 9.8835534, + 51.566672301 + ], + [ + 9.8840493, + 51.566965801 + ], + [ + 9.8844019, + 51.567153701 + ], + [ + 9.8847639, + 51.567334401 + ], + [ + 9.8851351, + 51.567507801 + ], + [ + 9.885515, + 51.567673801 + ], + [ + 9.8859033, + 51.567832201 + ], + [ + 9.8862995, + 51.567982701 + ], + [ + 9.8867032, + 51.568125301 + ], + [ + 9.8870816, + 51.568249501 + ], + [ + 9.8874658, + 51.568366801 + ], + [ + 9.8878553, + 51.568477001 + ], + [ + 9.8882499, + 51.568579901 + ], + [ + 9.8886492, + 51.568675601 + ], + [ + 9.8890529, + 51.568764001 + ], + [ + 9.8894606, + 51.568844901 + ], + [ + 9.889872, + 51.568918301 + ], + [ + 9.8902866, + 51.568984101 + ], + [ + 9.8912558, + 51.569127301 + ], + [ + 9.8913788, + 51.569145501 + ], + [ + 9.8922185, + 51.569260701 + ], + [ + 9.8923377, + 51.569276701 + ], + [ + 9.8946657, + 51.569572601 + ], + [ + 9.8955503, + 51.569691301 + ], + [ + 9.8962003, + 51.569790601 + ], + [ + 9.8966489, + 51.569858001 + ], + [ + 9.8970941, + 51.569933601 + ], + [ + 9.8975355, + 51.570017401 + ], + [ + 9.8979727, + 51.570109301 + ], + [ + 9.8984053, + 51.570209201 + ], + [ + 9.8988329, + 51.570317101 + ], + [ + 9.8992667, + 51.570436101 + ], + [ + 9.8996944, + 51.570563301 + ], + [ + 9.9001157, + 51.570698601 + ], + [ + 9.9005302, + 51.570841801 + ], + [ + 9.9009374, + 51.570992801 + ], + [ + 9.9013371, + 51.571151401 + ], + [ + 9.9017287, + 51.571317601 + ], + [ + 9.902112, + 51.571491101 + ], + [ + 9.9024866, + 51.571671801 + ], + [ + 9.9031896, + 51.572043201 + ], + [ + 9.9039419, + 51.572466501 + ], + [ + 9.9043823, + 51.572729801 + ], + [ + 9.9046016, + 51.572870701 + ], + [ + 9.9051621, + 51.573217401 + ], + [ + 9.9056278, + 51.573528801 + ], + [ + 9.9060855, + 51.573844601 + ], + [ + 9.9065352, + 51.574165001 + ], + [ + 9.9069766, + 51.574489701 + ], + [ + 9.9074098, + 51.574818701 + ], + [ + 9.9078345, + 51.575151901 + ], + [ + 9.9082507, + 51.575489201 + ], + [ + 9.9086395, + 51.575826601 + ], + [ + 9.9090584, + 51.576203001 + ], + [ + 9.9094658, + 51.576584301 + ], + [ + 9.909765, + 51.576874601 + ], + [ + 9.9100576, + 51.577167601 + ], + [ + 9.9103434, + 51.577463101 + ], + [ + 9.9107403, + 51.577919201 + ], + [ + 9.9109401, + 51.578156201 + ], + [ + 9.9111289, + 51.578396701 + ], + [ + 9.9113068, + 51.578640401 + ], + [ + 9.9114736, + 51.578887101 + ], + [ + 9.9116291, + 51.579136601 + ], + [ + 9.9117732, + 51.579388701 + ], + [ + 9.9119114, + 51.579654601 + ], + [ + 9.9120369, + 51.579922901 + ], + [ + 9.9121496, + 51.580193401 + ], + [ + 9.9122495, + 51.580465901 + ], + [ + 9.9123364, + 51.580740001 + ], + [ + 9.9124103, + 51.581015601 + ], + [ + 9.912471, + 51.581292501 + ], + [ + 9.9125186, + 51.581570301 + ], + [ + 9.9125528, + 51.581845001 + ], + [ + 9.9125742, + 51.582120101 + ], + [ + 9.9125828, + 51.582395501 + ], + [ + 9.9125787, + 51.582671001 + ], + [ + 9.9125618, + 51.582946201 + ], + [ + 9.9125321, + 51.583221001 + ], + [ + 9.912491, + 51.583488101 + ], + [ + 9.9124379, + 51.583754401 + ], + [ + 9.9123727, + 51.584019601 + ], + [ + 9.9122944, + 51.584287501 + ], + [ + 9.9122039, + 51.584553801 + ], + [ + 9.9121012, + 51.584818401 + ], + [ + 9.9119864, + 51.585081101 + ], + [ + 9.9118596, + 51.585341701 + ], + [ + 9.9117209, + 51.585599901 + ], + [ + 9.9115705, + 51.585855601 + ], + [ + 9.9114084, + 51.586108501 + ], + [ + 9.9112314, + 51.586356001 + ], + [ + 9.9110485, + 51.586601701 + ], + [ + 9.9108699, + 51.586832801 + ], + [ + 9.910686, + 51.587062401 + ], + [ + 9.9100878, + 51.587767601 + ], + [ + 9.9087864, + 51.589254001 + ], + [ + 9.9072806, + 51.590961101 + ], + [ + 9.906994, + 51.591291001 + ], + [ + 9.9067161, + 51.591623801 + ], + [ + 9.906447, + 51.591959401 + ], + [ + 9.9062332, + 51.592232801 + ], + [ + 9.906029, + 51.592509001 + ], + [ + 9.9058345, + 51.592787901 + ], + [ + 9.9056217, + 51.593113701 + ], + [ + 9.905422, + 51.593442601 + ], + [ + 9.9052471, + 51.593753501 + ], + [ + 9.905084, + 51.594066701 + ], + [ + 9.9049328, + 51.594382301 + ], + [ + 9.9047963, + 51.594693401 + ], + [ + 9.9046713, + 51.595006401 + ], + [ + 9.904558, + 51.595321101 + ], + [ + 9.9044563, + 51.595637301 + ], + [ + 9.9043659, + 51.595954901 + ], + [ + 9.9042869, + 51.596273601 + ], + [ + 9.9042302, + 51.596537801 + ], + [ + 9.904176, + 51.596834901 + ], + [ + 9.9041316, + 51.597132701 + ], + [ + 9.9040971, + 51.597431001 + ], + [ + 9.9040708, + 51.597783201 + ], + [ + 9.9040593, + 51.598135801 + ], + [ + 9.9040625, + 51.598488401 + ], + [ + 9.9040805, + 51.598840901 + ], + [ + 9.9041132, + 51.599193001 + ], + [ + 9.9041496, + 51.599488001 + ], + [ + 9.9041959, + 51.599782401 + ], + [ + 9.9042522, + 51.600076201 + ], + [ + 9.9043182, + 51.600368201 + ], + [ + 9.9043939, + 51.600659201 + ], + [ + 9.9044795, + 51.600949201 + ], + [ + 9.9045748, + 51.601238001 + ], + [ + 9.9053092, + 51.603083601 + ], + [ + 9.9060095, + 51.604750001 + ], + [ + 9.9067031, + 51.606448901 + ], + [ + 9.907049, + 51.607284001 + ], + [ + 9.9072303, + 51.607708301 + ], + [ + 9.9075003, + 51.608399401 + ], + [ + 9.9076436, + 51.608925201 + ], + [ + 9.9077726, + 51.609522101 + ], + [ + 9.9079827, + 51.610749701 + ], + [ + 9.9081372, + 51.611866201 + ], + [ + 9.9082411, + 51.612492801 + ], + [ + 9.9083083, + 51.612916901 + ], + [ + 9.9083827, + 51.613382401 + ], + [ + 9.9084706, + 51.613726101 + ], + [ + 9.9085192, + 51.613916401 + ], + [ + 9.9086203, + 51.614312101 + ], + [ + 9.9089212, + 51.615095601 + ], + [ + 9.9090882, + 51.615435301 + ], + [ + 9.9093465, + 51.615960901 + ], + [ + 9.9098482, + 51.616780701 + ], + [ + 9.9108739, + 51.618250301 + ], + [ + 9.9120177, + 51.619841401 + ], + [ + 9.9124828, + 51.620491101 + ], + [ + 9.9128602, + 51.621040901 + ], + [ + 9.9144313, + 51.623281401 + ], + [ + 9.9158578, + 51.625302301 + ], + [ + 9.9168777, + 51.626731301 + ], + [ + 9.917521, + 51.627645201 + ], + [ + 9.9181442, + 51.628517401 + ], + [ + 9.91857, + 51.629104501 + ], + [ + 9.9188104, + 51.629464101 + ], + [ + 9.9193682, + 51.630297101 + ], + [ + 9.9195305, + 51.630531901 + ], + [ + 9.91974, + 51.630924501 + ], + [ + 9.9199207, + 51.631316301 + ], + [ + 9.9200636, + 51.631676501 + ], + [ + 9.9201621, + 51.631958701 + ], + [ + 9.9202269, + 51.632184001 + ], + [ + 9.9203165, + 51.632602201 + ], + [ + 9.9203841, + 51.633005401 + ], + [ + 9.920559, + 51.634432101 + ], + [ + 9.9207487, + 51.635679501 + ], + [ + 9.9209804, + 51.636994401 + ], + [ + 9.9215592, + 51.639718701 + ], + [ + 9.9216466, + 51.640287301 + ], + [ + 9.9216862, + 51.640765601 + ], + [ + 9.9216843, + 51.641331201 + ], + [ + 9.9216588, + 51.641743801 + ], + [ + 9.9215986, + 51.642156601 + ], + [ + 9.9215252, + 51.642565301 + ], + [ + 9.9213873, + 51.643060501 + ], + [ + 9.921231, + 51.643533901 + ], + [ + 9.9210469, + 51.643995101 + ], + [ + 9.9185682, + 51.649688401 + ], + [ + 9.9166202, + 51.654175101 + ], + [ + 9.916167, + 51.655221301 + ], + [ + 9.9157794, + 51.656209101 + ], + [ + 9.9156748, + 51.656557201 + ], + [ + 9.915597, + 51.656909101 + ], + [ + 9.9155185, + 51.657368401 + ], + [ + 9.9154854, + 51.657793601 + ], + [ + 9.9154902, + 51.658356501 + ], + [ + 9.9155986, + 51.659124601 + ], + [ + 9.915719, + 51.659603801 + ], + [ + 9.9158308, + 51.659940701 + ], + [ + 9.9160072, + 51.660375101 + ], + [ + 9.9162337, + 51.660859601 + ], + [ + 9.9172073, + 51.662618001 + ], + [ + 9.9186601, + 51.665222301 + ], + [ + 9.9188371, + 51.665525201 + ], + [ + 9.9213951, + 51.670091701 + ], + [ + 9.9224888, + 51.672048701 + ], + [ + 9.9230064, + 51.672993301 + ], + [ + 9.923299, + 51.673536501 + ], + [ + 9.9235289, + 51.673963201 + ], + [ + 9.9241052, + 51.675004901 + ], + [ + 9.9245741, + 51.675855401 + ], + [ + 9.92537, + 51.677276501 + ], + [ + 9.9257348, + 51.677953801 + ], + [ + 9.9260014, + 51.678491101 + ], + [ + 9.9263676, + 51.679315001 + ], + [ + 9.9266808, + 51.680136601 + ], + [ + 9.9267317, + 51.680284701 + ], + [ + 9.9269714, + 51.681160101 + ], + [ + 9.9272063, + 51.682251301 + ], + [ + 9.9275307, + 51.684222501 + ], + [ + 9.9276082, + 51.684545201 + ], + [ + 9.9277735, + 51.685159201 + ], + [ + 9.9279291, + 51.685599901 + ], + [ + 9.9283833, + 51.686574101 + ], + [ + 9.9288538, + 51.687308701 + ], + [ + 9.9293114, + 51.687877001 + ], + [ + 9.9300549, + 51.688637201 + ], + [ + 9.9306218, + 51.689132201 + ], + [ + 9.9333536, + 51.691409101 + ], + [ + 9.9341648, + 51.692199501 + ], + [ + 9.9345562, + 51.692607001 + ], + [ + 9.934932, + 51.693035901 + ], + [ + 9.9352701, + 51.693443901 + ], + [ + 9.9357581, + 51.694071101 + ], + [ + 9.9360527, + 51.694502701 + ], + [ + 9.9364339, + 51.695133001 + ], + [ + 9.9365923, + 51.695401401 + ], + [ + 9.9368128, + 51.695774901 + ], + [ + 9.9371457, + 51.696461601 + ], + [ + 9.9373695, + 51.696980501 + ], + [ + 9.9374943, + 51.697309801 + ], + [ + 9.9377475, + 51.698079201 + ], + [ + 9.937933, + 51.698842701 + ], + [ + 9.9380567, + 51.699515701 + ], + [ + 9.9381089, + 51.699923301 + ], + [ + 9.9381845, + 51.701091301 + ], + [ + 9.9382561, + 51.703132301 + ], + [ + 9.9382835, + 51.704174501 + ], + [ + 9.9382997, + 51.704630101 + ], + [ + 9.9383104, + 51.704926001 + ], + [ + 9.9383261, + 51.705286501 + ], + [ + 9.9383756, + 51.706371401 + ], + [ + 9.9384279, + 51.707103101 + ], + [ + 9.9385204, + 51.707869401 + ], + [ + 9.9386036, + 51.708398301 + ], + [ + 9.9386985, + 51.708974601 + ], + [ + 9.9389527, + 51.710028801 + ], + [ + 9.93917, + 51.710742301 + ], + [ + 9.9394581, + 51.711504401 + ], + [ + 9.9395118, + 51.711646401 + ], + [ + 9.9397318, + 51.712232901 + ], + [ + 9.9400127, + 51.712880301 + ], + [ + 9.9402325, + 51.713324401 + ], + [ + 9.9403678, + 51.713573201 + ], + [ + 9.9408426, + 51.714454601 + ], + [ + 9.9413469, + 51.715279701 + ], + [ + 9.941709, + 51.715814601 + ], + [ + 9.9418559, + 51.716039601 + ], + [ + 9.9422371, + 51.716595901 + ], + [ + 9.9427644, + 51.717280101 + ], + [ + 9.9432163, + 51.717824501 + ], + [ + 9.9435646, + 51.718238101 + ], + [ + 9.9439178, + 51.718628601 + ], + [ + 9.9447414, + 51.719503301 + ], + [ + 9.9453517, + 51.720098201 + ], + [ + 9.9461396, + 51.720813401 + ], + [ + 9.9468114, + 51.721382601 + ], + [ + 9.9475056, + 51.721960701 + ], + [ + 9.9484538, + 51.722699001 + ], + [ + 9.9494012, + 51.723347001 + ], + [ + 9.9500234, + 51.723774001 + ], + [ + 9.9503751, + 51.724008001 + ], + [ + 9.9516315, + 51.724799301 + ], + [ + 9.9535853, + 51.725901701 + ], + [ + 9.954091, + 51.726165401 + ], + [ + 9.9552008, + 51.726726601 + ], + [ + 9.9562997, + 51.727222401 + ], + [ + 9.9573986, + 51.727704801 + ], + [ + 9.9585921, + 51.728180301 + ], + [ + 9.9598362, + 51.728651501 + ], + [ + 9.9623846, + 51.729616701 + ], + [ + 9.9629172, + 51.729814101 + ], + [ + 9.9644622, + 51.730386801 + ], + [ + 9.9657857, + 51.730877401 + ], + [ + 9.9675701, + 51.731538901 + ], + [ + 9.968766, + 51.731982201 + ], + [ + 9.9689662, + 51.732056401 + ], + [ + 9.971245, + 51.732900501 + ], + [ + 9.9717506, + 51.733088501 + ], + [ + 9.9728824, + 51.733508001 + ], + [ + 9.9737021, + 51.733811801 + ], + [ + 9.9745718, + 51.734134201 + ], + [ + 9.9775974, + 51.735257401 + ], + [ + 9.9785016, + 51.735579001 + ], + [ + 9.9793485, + 51.735869201 + ], + [ + 9.9796286, + 51.735960101 + ], + [ + 9.9799696, + 51.736070701 + ], + [ + 9.9805235, + 51.736241701 + ], + [ + 9.9813849, + 51.736490401 + ], + [ + 9.9822514, + 51.736718601 + ], + [ + 9.9830512, + 51.736909301 + ], + [ + 9.9841556, + 51.737154801 + ], + [ + 9.9852666, + 51.737373601 + ], + [ + 9.9861498, + 51.737522501 + ], + [ + 9.9870506, + 51.737658901 + ], + [ + 9.987858, + 51.737769301 + ], + [ + 9.9886109, + 51.737856001 + ], + [ + 9.9901201, + 51.738009201 + ], + [ + 9.9920019, + 51.738154101 + ], + [ + 9.9928389, + 51.738221401 + ], + [ + 9.99433, + 51.738350701 + ], + [ + 9.995227, + 51.738461001 + ], + [ + 9.9959974, + 51.738568501 + ], + [ + 9.9972605, + 51.738810301 + ], + [ + 9.9979925, + 51.738980401 + ], + [ + 9.9987818, + 51.739195101 + ], + [ + 9.9994036, + 51.739397301 + ], + [ + 10.0008691, + 51.739897701 + ], + [ + 10.001657, + 51.740229101 + ], + [ + 10.0027484, + 51.740753801 + ], + [ + 10.0031651, + 51.740975201 + ], + [ + 10.0041414, + 51.741544501 + ], + [ + 10.0050351, + 51.742158501 + ], + [ + 10.005864, + 51.742831801 + ], + [ + 10.0065879, + 51.743523701 + ], + [ + 10.0070065, + 51.743988101 + ], + [ + 10.0074236, + 51.744513101 + ], + [ + 10.007714, + 51.744927101 + ], + [ + 10.0079776, + 51.745325801 + ], + [ + 10.0082656, + 51.745848401 + ], + [ + 10.0085137, + 51.746370701 + ], + [ + 10.0089106, + 51.747342201 + ], + [ + 10.0090311, + 51.747637301 + ], + [ + 10.009833, + 51.749661801 + ], + [ + 10.0106218, + 51.751645101 + ], + [ + 10.0115356, + 51.753943001 + ], + [ + 10.0119669, + 51.755027401 + ], + [ + 10.0123865, + 51.755957001 + ], + [ + 10.0126296, + 51.756432001 + ], + [ + 10.0129547, + 51.757036601 + ], + [ + 10.0133152, + 51.757628801 + ], + [ + 10.0136097, + 51.758071601 + ], + [ + 10.0139469, + 51.758540301 + ], + [ + 10.0142728, + 51.758964401 + ], + [ + 10.0145504, + 51.759342101 + ], + [ + 10.0148947, + 51.759757301 + ], + [ + 10.0154114, + 51.760361501 + ], + [ + 10.0159866, + 51.760961101 + ], + [ + 10.0167659, + 51.761756001 + ], + [ + 10.0176207, + 51.762524001 + ], + [ + 10.018586, + 51.763344901 + ], + [ + 10.0204799, + 51.764942201 + ], + [ + 10.0218814, + 51.766212201 + ], + [ + 10.0232094, + 51.767522901 + ], + [ + 10.0238544, + 51.768199301 + ], + [ + 10.0243628, + 51.768750701 + ], + [ + 10.0256266, + 51.770191501 + ], + [ + 10.0265818, + 51.771367801 + ], + [ + 10.0274627, + 51.772552301 + ], + [ + 10.0282778, + 51.773730701 + ], + [ + 10.0290705, + 51.774976801 + ], + [ + 10.029966, + 51.776416301 + ], + [ + 10.0303998, + 51.777062101 + ], + [ + 10.0307328, + 51.777513801 + ], + [ + 10.0311604, + 51.778082301 + ], + [ + 10.0315546, + 51.778542701 + ], + [ + 10.0319856, + 51.779016001 + ], + [ + 10.0324257, + 51.779460701 + ], + [ + 10.0326396, + 51.779671701 + ], + [ + 10.0333311, + 51.780308601 + ], + [ + 10.0340787, + 51.780931401 + ], + [ + 10.0348896, + 51.781551701 + ], + [ + 10.0353589, + 51.781890301 + ], + [ + 10.0359483, + 51.782283001 + ], + [ + 10.0362408, + 51.782476701 + ], + [ + 10.0373156, + 51.783133901 + ], + [ + 10.038455, + 51.783795201 + ], + [ + 10.0399067, + 51.784580201 + ], + [ + 10.041285, + 51.785272501 + ], + [ + 10.0425575, + 51.785872501 + ], + [ + 10.0436833, + 51.786363701 + ], + [ + 10.0449277, + 51.786883001 + ], + [ + 10.0461837, + 51.787385001 + ], + [ + 10.0471205, + 51.787732501 + ], + [ + 10.0487724, + 51.788320901 + ], + [ + 10.0491293, + 51.788441401 + ], + [ + 10.0506281, + 51.788917901 + ], + [ + 10.0519326, + 51.789301201 + ], + [ + 10.0533655, + 51.789688201 + ], + [ + 10.0541417, + 51.789897801 + ], + [ + 10.0559602, + 51.790339601 + ], + [ + 10.0579167, + 51.790751301 + ], + [ + 10.058097688, + 51.790786055 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de39", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.52659986598776,9.879124741071895,51.79078605543588,10.058097688434712", + "point": "51.52659986598776,9.879124741071895", + "startLcPosition": "176", + "impact": { + "lower": "Echte", + "upper": "G\u00f6ttingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | G\u00f6ttingen - Echte", + "coordinate": { + "lat": 51.52659986598776, + "long": 9.879124741071895 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 30.04.26 von 07:00 bis 16:00 Uhr.", + "17.04.26 von 07:00 bis 12:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "17.04.26, 24.04.26", + "", + "A7: Kassel -> Hannover, zwischen 0.2 km hinter AS G\u00f6ttingen und AS Echte", + "", + "L\u00e4nge: 35.23 km | Maximale Durchfahrtsbreite: 7 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.879124741, + 51.526599866 + ], + [ + 9.8792625, + 51.530088001 + ], + [ + 9.8792893, + 51.531447201 + ], + [ + 9.8793068, + 51.532397401 + ], + [ + 9.8793127, + 51.535549801 + ], + [ + 9.8793135, + 51.535638301 + ], + [ + 9.879314, + 51.535856701 + ], + [ + 9.8793274, + 51.538901701 + ], + [ + 9.8793333, + 51.543111101 + ], + [ + 9.879336, + 51.546902101 + ], + [ + 9.8793625, + 51.550674801 + ], + [ + 9.8793724, + 51.552086101 + ], + [ + 9.8793761, + 51.554510601 + ], + [ + 9.8793699, + 51.557070301 + ], + [ + 9.8793766, + 51.558864801 + ], + [ + 9.8793832, + 51.560633501 + ], + [ + 9.8794202, + 51.561067001 + ], + [ + 9.879451, + 51.561245101 + ], + [ + 9.8794946, + 51.561500301 + ], + [ + 9.8795507, + 51.561752401 + ], + [ + 9.8796298, + 51.562055901 + ], + [ + 9.8797108, + 51.562329201 + ], + [ + 9.8798146, + 51.562599501 + ], + [ + 9.8799123, + 51.562845301 + ], + [ + 9.8800227, + 51.563088901 + ], + [ + 9.8801457, + 51.563330301 + ], + [ + 9.880281, + 51.563569001 + ], + [ + 9.8804328, + 51.563811401 + ], + [ + 9.8805974, + 51.564050501 + ], + [ + 9.8807746, + 51.564286101 + ], + [ + 9.8809642, + 51.564517901 + ], + [ + 9.8811661, + 51.564745801 + ], + [ + 9.8813799, + 51.564969301 + ], + [ + 9.8816054, + 51.565188401 + ], + [ + 9.8821542, + 51.565678801 + ], + [ + 9.882394, + 51.565872901 + ], + [ + 9.8825701, + 51.566014101 + ], + [ + 9.8828065, + 51.566182301 + ], + [ + 9.8831791, + 51.566439001 + ], + [ + 9.8835534, + 51.566672301 + ], + [ + 9.8840493, + 51.566965801 + ], + [ + 9.8844019, + 51.567153701 + ], + [ + 9.8847639, + 51.567334401 + ], + [ + 9.8851351, + 51.567507801 + ], + [ + 9.885515, + 51.567673801 + ], + [ + 9.8859033, + 51.567832201 + ], + [ + 9.8862995, + 51.567982701 + ], + [ + 9.8867032, + 51.568125301 + ], + [ + 9.8870816, + 51.568249501 + ], + [ + 9.8874658, + 51.568366801 + ], + [ + 9.8878553, + 51.568477001 + ], + [ + 9.8882499, + 51.568579901 + ], + [ + 9.8886492, + 51.568675601 + ], + [ + 9.8890529, + 51.568764001 + ], + [ + 9.8894606, + 51.568844901 + ], + [ + 9.889872, + 51.568918301 + ], + [ + 9.8902866, + 51.568984101 + ], + [ + 9.8912558, + 51.569127301 + ], + [ + 9.8913788, + 51.569145501 + ], + [ + 9.8922185, + 51.569260701 + ], + [ + 9.8923377, + 51.569276701 + ], + [ + 9.8946657, + 51.569572601 + ], + [ + 9.8955503, + 51.569691301 + ], + [ + 9.8962003, + 51.569790601 + ], + [ + 9.8966489, + 51.569858001 + ], + [ + 9.8970941, + 51.569933601 + ], + [ + 9.8975355, + 51.570017401 + ], + [ + 9.8979727, + 51.570109301 + ], + [ + 9.8984053, + 51.570209201 + ], + [ + 9.8988329, + 51.570317101 + ], + [ + 9.8992667, + 51.570436101 + ], + [ + 9.8996944, + 51.570563301 + ], + [ + 9.9001157, + 51.570698601 + ], + [ + 9.9005302, + 51.570841801 + ], + [ + 9.9009374, + 51.570992801 + ], + [ + 9.9013371, + 51.571151401 + ], + [ + 9.9017287, + 51.571317601 + ], + [ + 9.902112, + 51.571491101 + ], + [ + 9.9024866, + 51.571671801 + ], + [ + 9.9031896, + 51.572043201 + ], + [ + 9.9039419, + 51.572466501 + ], + [ + 9.9043823, + 51.572729801 + ], + [ + 9.9046016, + 51.572870701 + ], + [ + 9.9051621, + 51.573217401 + ], + [ + 9.9056278, + 51.573528801 + ], + [ + 9.9060855, + 51.573844601 + ], + [ + 9.9065352, + 51.574165001 + ], + [ + 9.9069766, + 51.574489701 + ], + [ + 9.9074098, + 51.574818701 + ], + [ + 9.9078345, + 51.575151901 + ], + [ + 9.9082507, + 51.575489201 + ], + [ + 9.9086395, + 51.575826601 + ], + [ + 9.9090584, + 51.576203001 + ], + [ + 9.9094658, + 51.576584301 + ], + [ + 9.909765, + 51.576874601 + ], + [ + 9.9100576, + 51.577167601 + ], + [ + 9.9103434, + 51.577463101 + ], + [ + 9.9107403, + 51.577919201 + ], + [ + 9.9109401, + 51.578156201 + ], + [ + 9.9111289, + 51.578396701 + ], + [ + 9.9113068, + 51.578640401 + ], + [ + 9.9114736, + 51.578887101 + ], + [ + 9.9116291, + 51.579136601 + ], + [ + 9.9117732, + 51.579388701 + ], + [ + 9.9119114, + 51.579654601 + ], + [ + 9.9120369, + 51.579922901 + ], + [ + 9.9121496, + 51.580193401 + ], + [ + 9.9122495, + 51.580465901 + ], + [ + 9.9123364, + 51.580740001 + ], + [ + 9.9124103, + 51.581015601 + ], + [ + 9.912471, + 51.581292501 + ], + [ + 9.9125186, + 51.581570301 + ], + [ + 9.9125528, + 51.581845001 + ], + [ + 9.9125742, + 51.582120101 + ], + [ + 9.9125828, + 51.582395501 + ], + [ + 9.9125787, + 51.582671001 + ], + [ + 9.9125618, + 51.582946201 + ], + [ + 9.9125321, + 51.583221001 + ], + [ + 9.912491, + 51.583488101 + ], + [ + 9.9124379, + 51.583754401 + ], + [ + 9.9123727, + 51.584019601 + ], + [ + 9.9122944, + 51.584287501 + ], + [ + 9.9122039, + 51.584553801 + ], + [ + 9.9121012, + 51.584818401 + ], + [ + 9.9119864, + 51.585081101 + ], + [ + 9.9118596, + 51.585341701 + ], + [ + 9.9117209, + 51.585599901 + ], + [ + 9.9115705, + 51.585855601 + ], + [ + 9.9114084, + 51.586108501 + ], + [ + 9.9112314, + 51.586356001 + ], + [ + 9.9110485, + 51.586601701 + ], + [ + 9.9108699, + 51.586832801 + ], + [ + 9.910686, + 51.587062401 + ], + [ + 9.9100878, + 51.587767601 + ], + [ + 9.9087864, + 51.589254001 + ], + [ + 9.9072806, + 51.590961101 + ], + [ + 9.906994, + 51.591291001 + ], + [ + 9.9067161, + 51.591623801 + ], + [ + 9.906447, + 51.591959401 + ], + [ + 9.9062332, + 51.592232801 + ], + [ + 9.906029, + 51.592509001 + ], + [ + 9.9058345, + 51.592787901 + ], + [ + 9.9056217, + 51.593113701 + ], + [ + 9.905422, + 51.593442601 + ], + [ + 9.9052471, + 51.593753501 + ], + [ + 9.905084, + 51.594066701 + ], + [ + 9.9049328, + 51.594382301 + ], + [ + 9.9047963, + 51.594693401 + ], + [ + 9.9046713, + 51.595006401 + ], + [ + 9.904558, + 51.595321101 + ], + [ + 9.9044563, + 51.595637301 + ], + [ + 9.9043659, + 51.595954901 + ], + [ + 9.9042869, + 51.596273601 + ], + [ + 9.9042302, + 51.596537801 + ], + [ + 9.904176, + 51.596834901 + ], + [ + 9.9041316, + 51.597132701 + ], + [ + 9.9040971, + 51.597431001 + ], + [ + 9.9040708, + 51.597783201 + ], + [ + 9.9040593, + 51.598135801 + ], + [ + 9.9040625, + 51.598488401 + ], + [ + 9.9040805, + 51.598840901 + ], + [ + 9.9041132, + 51.599193001 + ], + [ + 9.9041496, + 51.599488001 + ], + [ + 9.9041959, + 51.599782401 + ], + [ + 9.9042522, + 51.600076201 + ], + [ + 9.9043182, + 51.600368201 + ], + [ + 9.9043939, + 51.600659201 + ], + [ + 9.9044795, + 51.600949201 + ], + [ + 9.9045748, + 51.601238001 + ], + [ + 9.9053092, + 51.603083601 + ], + [ + 9.9060095, + 51.604750001 + ], + [ + 9.9067031, + 51.606448901 + ], + [ + 9.907049, + 51.607284001 + ], + [ + 9.9072303, + 51.607708301 + ], + [ + 9.9075003, + 51.608399401 + ], + [ + 9.9076436, + 51.608925201 + ], + [ + 9.9077726, + 51.609522101 + ], + [ + 9.9079827, + 51.610749701 + ], + [ + 9.9081372, + 51.611866201 + ], + [ + 9.9082411, + 51.612492801 + ], + [ + 9.9083083, + 51.612916901 + ], + [ + 9.9083827, + 51.613382401 + ], + [ + 9.9084706, + 51.613726101 + ], + [ + 9.9085192, + 51.613916401 + ], + [ + 9.9086203, + 51.614312101 + ], + [ + 9.9089212, + 51.615095601 + ], + [ + 9.9090882, + 51.615435301 + ], + [ + 9.9093465, + 51.615960901 + ], + [ + 9.9098482, + 51.616780701 + ], + [ + 9.9108739, + 51.618250301 + ], + [ + 9.9120177, + 51.619841401 + ], + [ + 9.9124828, + 51.620491101 + ], + [ + 9.9128602, + 51.621040901 + ], + [ + 9.9144313, + 51.623281401 + ], + [ + 9.9158578, + 51.625302301 + ], + [ + 9.9168777, + 51.626731301 + ], + [ + 9.917521, + 51.627645201 + ], + [ + 9.9181442, + 51.628517401 + ], + [ + 9.91857, + 51.629104501 + ], + [ + 9.9188104, + 51.629464101 + ], + [ + 9.9193682, + 51.630297101 + ], + [ + 9.9195305, + 51.630531901 + ], + [ + 9.91974, + 51.630924501 + ], + [ + 9.9199207, + 51.631316301 + ], + [ + 9.9200636, + 51.631676501 + ], + [ + 9.9201621, + 51.631958701 + ], + [ + 9.9202269, + 51.632184001 + ], + [ + 9.9203165, + 51.632602201 + ], + [ + 9.9203841, + 51.633005401 + ], + [ + 9.920559, + 51.634432101 + ], + [ + 9.9207487, + 51.635679501 + ], + [ + 9.9209804, + 51.636994401 + ], + [ + 9.9215592, + 51.639718701 + ], + [ + 9.9216466, + 51.640287301 + ], + [ + 9.9216862, + 51.640765601 + ], + [ + 9.9216843, + 51.641331201 + ], + [ + 9.9216588, + 51.641743801 + ], + [ + 9.9215986, + 51.642156601 + ], + [ + 9.9215252, + 51.642565301 + ], + [ + 9.9213873, + 51.643060501 + ], + [ + 9.921231, + 51.643533901 + ], + [ + 9.9210469, + 51.643995101 + ], + [ + 9.9185682, + 51.649688401 + ], + [ + 9.9166202, + 51.654175101 + ], + [ + 9.916167, + 51.655221301 + ], + [ + 9.9157794, + 51.656209101 + ], + [ + 9.9156748, + 51.656557201 + ], + [ + 9.915597, + 51.656909101 + ], + [ + 9.9155185, + 51.657368401 + ], + [ + 9.9154854, + 51.657793601 + ], + [ + 9.9154902, + 51.658356501 + ], + [ + 9.9155986, + 51.659124601 + ], + [ + 9.915719, + 51.659603801 + ], + [ + 9.9158308, + 51.659940701 + ], + [ + 9.9160072, + 51.660375101 + ], + [ + 9.9162337, + 51.660859601 + ], + [ + 9.9172073, + 51.662618001 + ], + [ + 9.9186601, + 51.665222301 + ], + [ + 9.9188371, + 51.665525201 + ], + [ + 9.9213951, + 51.670091701 + ], + [ + 9.9224888, + 51.672048701 + ], + [ + 9.9230064, + 51.672993301 + ], + [ + 9.923299, + 51.673536501 + ], + [ + 9.9235289, + 51.673963201 + ], + [ + 9.9241052, + 51.675004901 + ], + [ + 9.9245741, + 51.675855401 + ], + [ + 9.92537, + 51.677276501 + ], + [ + 9.9257348, + 51.677953801 + ], + [ + 9.9260014, + 51.678491101 + ], + [ + 9.9263676, + 51.679315001 + ], + [ + 9.9266808, + 51.680136601 + ], + [ + 9.9267317, + 51.680284701 + ], + [ + 9.9269714, + 51.681160101 + ], + [ + 9.9272063, + 51.682251301 + ], + [ + 9.9275307, + 51.684222501 + ], + [ + 9.9276082, + 51.684545201 + ], + [ + 9.9277735, + 51.685159201 + ], + [ + 9.9279291, + 51.685599901 + ], + [ + 9.9283833, + 51.686574101 + ], + [ + 9.9288538, + 51.687308701 + ], + [ + 9.9293114, + 51.687877001 + ], + [ + 9.9300549, + 51.688637201 + ], + [ + 9.9306218, + 51.689132201 + ], + [ + 9.9333536, + 51.691409101 + ], + [ + 9.9341648, + 51.692199501 + ], + [ + 9.9345562, + 51.692607001 + ], + [ + 9.934932, + 51.693035901 + ], + [ + 9.9352701, + 51.693443901 + ], + [ + 9.9357581, + 51.694071101 + ], + [ + 9.9360527, + 51.694502701 + ], + [ + 9.9364339, + 51.695133001 + ], + [ + 9.9365923, + 51.695401401 + ], + [ + 9.9368128, + 51.695774901 + ], + [ + 9.9371457, + 51.696461601 + ], + [ + 9.9373695, + 51.696980501 + ], + [ + 9.9374943, + 51.697309801 + ], + [ + 9.9377475, + 51.698079201 + ], + [ + 9.937933, + 51.698842701 + ], + [ + 9.9380567, + 51.699515701 + ], + [ + 9.9381089, + 51.699923301 + ], + [ + 9.9381845, + 51.701091301 + ], + [ + 9.9382561, + 51.703132301 + ], + [ + 9.9382835, + 51.704174501 + ], + [ + 9.9382997, + 51.704630101 + ], + [ + 9.9383104, + 51.704926001 + ], + [ + 9.9383261, + 51.705286501 + ], + [ + 9.9383756, + 51.706371401 + ], + [ + 9.9384279, + 51.707103101 + ], + [ + 9.9385204, + 51.707869401 + ], + [ + 9.9386036, + 51.708398301 + ], + [ + 9.9386985, + 51.708974601 + ], + [ + 9.9389527, + 51.710028801 + ], + [ + 9.93917, + 51.710742301 + ], + [ + 9.9394581, + 51.711504401 + ], + [ + 9.9395118, + 51.711646401 + ], + [ + 9.9397318, + 51.712232901 + ], + [ + 9.9400127, + 51.712880301 + ], + [ + 9.9402325, + 51.713324401 + ], + [ + 9.9403678, + 51.713573201 + ], + [ + 9.9408426, + 51.714454601 + ], + [ + 9.9413469, + 51.715279701 + ], + [ + 9.941709, + 51.715814601 + ], + [ + 9.9418559, + 51.716039601 + ], + [ + 9.9422371, + 51.716595901 + ], + [ + 9.9427644, + 51.717280101 + ], + [ + 9.9432163, + 51.717824501 + ], + [ + 9.9435646, + 51.718238101 + ], + [ + 9.9439178, + 51.718628601 + ], + [ + 9.9447414, + 51.719503301 + ], + [ + 9.9453517, + 51.720098201 + ], + [ + 9.9461396, + 51.720813401 + ], + [ + 9.9468114, + 51.721382601 + ], + [ + 9.9475056, + 51.721960701 + ], + [ + 9.9484538, + 51.722699001 + ], + [ + 9.9494012, + 51.723347001 + ], + [ + 9.9500234, + 51.723774001 + ], + [ + 9.9503751, + 51.724008001 + ], + [ + 9.9516315, + 51.724799301 + ], + [ + 9.9535853, + 51.725901701 + ], + [ + 9.954091, + 51.726165401 + ], + [ + 9.9552008, + 51.726726601 + ], + [ + 9.9562997, + 51.727222401 + ], + [ + 9.9573986, + 51.727704801 + ], + [ + 9.9585921, + 51.728180301 + ], + [ + 9.9598362, + 51.728651501 + ], + [ + 9.9623846, + 51.729616701 + ], + [ + 9.9629172, + 51.729814101 + ], + [ + 9.9644622, + 51.730386801 + ], + [ + 9.9657857, + 51.730877401 + ], + [ + 9.9675701, + 51.731538901 + ], + [ + 9.968766, + 51.731982201 + ], + [ + 9.9689662, + 51.732056401 + ], + [ + 9.971245, + 51.732900501 + ], + [ + 9.9717506, + 51.733088501 + ], + [ + 9.9728824, + 51.733508001 + ], + [ + 9.9737021, + 51.733811801 + ], + [ + 9.9745718, + 51.734134201 + ], + [ + 9.9775974, + 51.735257401 + ], + [ + 9.9785016, + 51.735579001 + ], + [ + 9.9793485, + 51.735869201 + ], + [ + 9.9796286, + 51.735960101 + ], + [ + 9.9799696, + 51.736070701 + ], + [ + 9.9805235, + 51.736241701 + ], + [ + 9.9813849, + 51.736490401 + ], + [ + 9.9822514, + 51.736718601 + ], + [ + 9.9830512, + 51.736909301 + ], + [ + 9.9841556, + 51.737154801 + ], + [ + 9.9852666, + 51.737373601 + ], + [ + 9.9861498, + 51.737522501 + ], + [ + 9.9870506, + 51.737658901 + ], + [ + 9.987858, + 51.737769301 + ], + [ + 9.9886109, + 51.737856001 + ], + [ + 9.9901201, + 51.738009201 + ], + [ + 9.9920019, + 51.738154101 + ], + [ + 9.9928389, + 51.738221401 + ], + [ + 9.99433, + 51.738350701 + ], + [ + 9.995227, + 51.738461001 + ], + [ + 9.9959974, + 51.738568501 + ], + [ + 9.9972605, + 51.738810301 + ], + [ + 9.9979925, + 51.738980401 + ], + [ + 9.9987818, + 51.739195101 + ], + [ + 9.9994036, + 51.739397301 + ], + [ + 10.0008691, + 51.739897701 + ], + [ + 10.001657, + 51.740229101 + ], + [ + 10.0027484, + 51.740753801 + ], + [ + 10.0031651, + 51.740975201 + ], + [ + 10.0041414, + 51.741544501 + ], + [ + 10.0050351, + 51.742158501 + ], + [ + 10.005864, + 51.742831801 + ], + [ + 10.0065879, + 51.743523701 + ], + [ + 10.0070065, + 51.743988101 + ], + [ + 10.0074236, + 51.744513101 + ], + [ + 10.007714, + 51.744927101 + ], + [ + 10.0079776, + 51.745325801 + ], + [ + 10.0082656, + 51.745848401 + ], + [ + 10.0085137, + 51.746370701 + ], + [ + 10.0089106, + 51.747342201 + ], + [ + 10.0090311, + 51.747637301 + ], + [ + 10.009833, + 51.749661801 + ], + [ + 10.0106218, + 51.751645101 + ], + [ + 10.0115356, + 51.753943001 + ], + [ + 10.0119669, + 51.755027401 + ], + [ + 10.0123865, + 51.755957001 + ], + [ + 10.0126296, + 51.756432001 + ], + [ + 10.0129547, + 51.757036601 + ], + [ + 10.0133152, + 51.757628801 + ], + [ + 10.0136097, + 51.758071601 + ], + [ + 10.0139469, + 51.758540301 + ], + [ + 10.0142728, + 51.758964401 + ], + [ + 10.0145504, + 51.759342101 + ], + [ + 10.0148947, + 51.759757301 + ], + [ + 10.0154114, + 51.760361501 + ], + [ + 10.0159866, + 51.760961101 + ], + [ + 10.0167659, + 51.761756001 + ], + [ + 10.0176207, + 51.762524001 + ], + [ + 10.018586, + 51.763344901 + ], + [ + 10.0204799, + 51.764942201 + ], + [ + 10.0218814, + 51.766212201 + ], + [ + 10.0232094, + 51.767522901 + ], + [ + 10.0238544, + 51.768199301 + ], + [ + 10.0243628, + 51.768750701 + ], + [ + 10.0256266, + 51.770191501 + ], + [ + 10.0265818, + 51.771367801 + ], + [ + 10.0274627, + 51.772552301 + ], + [ + 10.0282778, + 51.773730701 + ], + [ + 10.0290705, + 51.774976801 + ], + [ + 10.029966, + 51.776416301 + ], + [ + 10.0303998, + 51.777062101 + ], + [ + 10.0307328, + 51.777513801 + ], + [ + 10.0311604, + 51.778082301 + ], + [ + 10.0315546, + 51.778542701 + ], + [ + 10.0319856, + 51.779016001 + ], + [ + 10.0324257, + 51.779460701 + ], + [ + 10.0326396, + 51.779671701 + ], + [ + 10.0333311, + 51.780308601 + ], + [ + 10.0340787, + 51.780931401 + ], + [ + 10.0348896, + 51.781551701 + ], + [ + 10.0353589, + 51.781890301 + ], + [ + 10.0359483, + 51.782283001 + ], + [ + 10.0362408, + 51.782476701 + ], + [ + 10.0373156, + 51.783133901 + ], + [ + 10.038455, + 51.783795201 + ], + [ + 10.0399067, + 51.784580201 + ], + [ + 10.041285, + 51.785272501 + ], + [ + 10.0425575, + 51.785872501 + ], + [ + 10.0436833, + 51.786363701 + ], + [ + 10.0449277, + 51.786883001 + ], + [ + 10.0461837, + 51.787385001 + ], + [ + 10.0471205, + 51.787732501 + ], + [ + 10.0487724, + 51.788320901 + ], + [ + 10.0491293, + 51.788441401 + ], + [ + 10.0506281, + 51.788917901 + ], + [ + 10.0519326, + 51.789301201 + ], + [ + 10.0533655, + 51.789688201 + ], + [ + 10.0541417, + 51.789897801 + ], + [ + 10.0559602, + 51.790339601 + ], + [ + 10.0579167, + 51.790751301 + ], + [ + 10.058097688, + 51.790786055 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.629275300829924,9.918684182724327,51.714779333749654,9.94104107387435", + "point": "51.629275300829924,9.918684182724327", + "startLcPosition": "179", + "impact": { + "lower": "Schlochau", + "upper": "Leineholz West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Leineholz West - Schlochau", + "coordinate": { + "lat": 51.629275300829924, + "long": 9.918684182724327 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 08.04.26 und dem 23.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26, 17.04.26", + "", + "A7: Kassel -> Hannover, zwischen 2.8 km hinter Leineholz West und 0.2 km vor Schlochau", + "", + "L\u00e4nge: 9.91 km | Maximale Durchfahrtsbreite: 11 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.918684183, + 51.629275301 + ], + [ + 9.9188104, + 51.629464101 + ], + [ + 9.9193682, + 51.630297101 + ], + [ + 9.9195305, + 51.630531901 + ], + [ + 9.91974, + 51.630924501 + ], + [ + 9.9199207, + 51.631316301 + ], + [ + 9.9200636, + 51.631676501 + ], + [ + 9.9201621, + 51.631958701 + ], + [ + 9.9202269, + 51.632184001 + ], + [ + 9.9203165, + 51.632602201 + ], + [ + 9.9203841, + 51.633005401 + ], + [ + 9.920559, + 51.634432101 + ], + [ + 9.9207487, + 51.635679501 + ], + [ + 9.9209804, + 51.636994401 + ], + [ + 9.9215592, + 51.639718701 + ], + [ + 9.9216466, + 51.640287301 + ], + [ + 9.9216862, + 51.640765601 + ], + [ + 9.9216843, + 51.641331201 + ], + [ + 9.9216588, + 51.641743801 + ], + [ + 9.9215986, + 51.642156601 + ], + [ + 9.9215252, + 51.642565301 + ], + [ + 9.9213873, + 51.643060501 + ], + [ + 9.921231, + 51.643533901 + ], + [ + 9.9210469, + 51.643995101 + ], + [ + 9.9185682, + 51.649688401 + ], + [ + 9.9166202, + 51.654175101 + ], + [ + 9.916167, + 51.655221301 + ], + [ + 9.9157794, + 51.656209101 + ], + [ + 9.9156748, + 51.656557201 + ], + [ + 9.915597, + 51.656909101 + ], + [ + 9.9155185, + 51.657368401 + ], + [ + 9.9154854, + 51.657793601 + ], + [ + 9.9154902, + 51.658356501 + ], + [ + 9.9155986, + 51.659124601 + ], + [ + 9.915719, + 51.659603801 + ], + [ + 9.9158308, + 51.659940701 + ], + [ + 9.9160072, + 51.660375101 + ], + [ + 9.9162337, + 51.660859601 + ], + [ + 9.9172073, + 51.662618001 + ], + [ + 9.9186601, + 51.665222301 + ], + [ + 9.9188371, + 51.665525201 + ], + [ + 9.9213951, + 51.670091701 + ], + [ + 9.9224888, + 51.672048701 + ], + [ + 9.9230064, + 51.672993301 + ], + [ + 9.923299, + 51.673536501 + ], + [ + 9.9235289, + 51.673963201 + ], + [ + 9.9241052, + 51.675004901 + ], + [ + 9.9245741, + 51.675855401 + ], + [ + 9.92537, + 51.677276501 + ], + [ + 9.9257348, + 51.677953801 + ], + [ + 9.9260014, + 51.678491101 + ], + [ + 9.9263676, + 51.679315001 + ], + [ + 9.9266808, + 51.680136601 + ], + [ + 9.9267317, + 51.680284701 + ], + [ + 9.9269714, + 51.681160101 + ], + [ + 9.9272063, + 51.682251301 + ], + [ + 9.9275307, + 51.684222501 + ], + [ + 9.9276082, + 51.684545201 + ], + [ + 9.9277735, + 51.685159201 + ], + [ + 9.9279291, + 51.685599901 + ], + [ + 9.9283833, + 51.686574101 + ], + [ + 9.9288538, + 51.687308701 + ], + [ + 9.9293114, + 51.687877001 + ], + [ + 9.9300549, + 51.688637201 + ], + [ + 9.9306218, + 51.689132201 + ], + [ + 9.9333536, + 51.691409101 + ], + [ + 9.9341648, + 51.692199501 + ], + [ + 9.9345562, + 51.692607001 + ], + [ + 9.934932, + 51.693035901 + ], + [ + 9.9352701, + 51.693443901 + ], + [ + 9.9357581, + 51.694071101 + ], + [ + 9.9360527, + 51.694502701 + ], + [ + 9.9364339, + 51.695133001 + ], + [ + 9.9365923, + 51.695401401 + ], + [ + 9.9368128, + 51.695774901 + ], + [ + 9.9371457, + 51.696461601 + ], + [ + 9.9373695, + 51.696980501 + ], + [ + 9.9374943, + 51.697309801 + ], + [ + 9.9377475, + 51.698079201 + ], + [ + 9.937933, + 51.698842701 + ], + [ + 9.9380567, + 51.699515701 + ], + [ + 9.9381089, + 51.699923301 + ], + [ + 9.9381845, + 51.701091301 + ], + [ + 9.9382561, + 51.703132301 + ], + [ + 9.9382835, + 51.704174501 + ], + [ + 9.9382997, + 51.704630101 + ], + [ + 9.9383104, + 51.704926001 + ], + [ + 9.9383261, + 51.705286501 + ], + [ + 9.9383756, + 51.706371401 + ], + [ + 9.9384279, + 51.707103101 + ], + [ + 9.9385204, + 51.707869401 + ], + [ + 9.9386036, + 51.708398301 + ], + [ + 9.9386985, + 51.708974601 + ], + [ + 9.9389527, + 51.710028801 + ], + [ + 9.93917, + 51.710742301 + ], + [ + 9.9394581, + 51.711504401 + ], + [ + 9.9395118, + 51.711646401 + ], + [ + 9.9397318, + 51.712232901 + ], + [ + 9.9400127, + 51.712880301 + ], + [ + 9.9402325, + 51.713324401 + ], + [ + 9.9403678, + 51.713573201 + ], + [ + 9.9408426, + 51.714454601 + ], + [ + 9.941041074, + 51.714779334 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.629275300829924,9.918684182724327,51.714779333749654,9.94104107387435", + "point": "51.629275300829924,9.918684182724327", + "startLcPosition": "179", + "impact": { + "lower": "Schlochau", + "upper": "Leineholz West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Leineholz West - Schlochau", + "coordinate": { + "lat": 51.629275300829924, + "long": 9.918684182724327 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 08.04.26 und dem 23.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26, 17.04.26", + "", + "A7: Kassel -> Hannover, zwischen 2.8 km hinter Leineholz West und 0.2 km vor Schlochau", + "", + "L\u00e4nge: 9.91 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.918684183, + 51.629275301 + ], + [ + 9.9188104, + 51.629464101 + ], + [ + 9.9193682, + 51.630297101 + ], + [ + 9.9195305, + 51.630531901 + ], + [ + 9.91974, + 51.630924501 + ], + [ + 9.9199207, + 51.631316301 + ], + [ + 9.9200636, + 51.631676501 + ], + [ + 9.9201621, + 51.631958701 + ], + [ + 9.9202269, + 51.632184001 + ], + [ + 9.9203165, + 51.632602201 + ], + [ + 9.9203841, + 51.633005401 + ], + [ + 9.920559, + 51.634432101 + ], + [ + 9.9207487, + 51.635679501 + ], + [ + 9.9209804, + 51.636994401 + ], + [ + 9.9215592, + 51.639718701 + ], + [ + 9.9216466, + 51.640287301 + ], + [ + 9.9216862, + 51.640765601 + ], + [ + 9.9216843, + 51.641331201 + ], + [ + 9.9216588, + 51.641743801 + ], + [ + 9.9215986, + 51.642156601 + ], + [ + 9.9215252, + 51.642565301 + ], + [ + 9.9213873, + 51.643060501 + ], + [ + 9.921231, + 51.643533901 + ], + [ + 9.9210469, + 51.643995101 + ], + [ + 9.9185682, + 51.649688401 + ], + [ + 9.9166202, + 51.654175101 + ], + [ + 9.916167, + 51.655221301 + ], + [ + 9.9157794, + 51.656209101 + ], + [ + 9.9156748, + 51.656557201 + ], + [ + 9.915597, + 51.656909101 + ], + [ + 9.9155185, + 51.657368401 + ], + [ + 9.9154854, + 51.657793601 + ], + [ + 9.9154902, + 51.658356501 + ], + [ + 9.9155986, + 51.659124601 + ], + [ + 9.915719, + 51.659603801 + ], + [ + 9.9158308, + 51.659940701 + ], + [ + 9.9160072, + 51.660375101 + ], + [ + 9.9162337, + 51.660859601 + ], + [ + 9.9172073, + 51.662618001 + ], + [ + 9.9186601, + 51.665222301 + ], + [ + 9.9188371, + 51.665525201 + ], + [ + 9.9213951, + 51.670091701 + ], + [ + 9.9224888, + 51.672048701 + ], + [ + 9.9230064, + 51.672993301 + ], + [ + 9.923299, + 51.673536501 + ], + [ + 9.9235289, + 51.673963201 + ], + [ + 9.9241052, + 51.675004901 + ], + [ + 9.9245741, + 51.675855401 + ], + [ + 9.92537, + 51.677276501 + ], + [ + 9.9257348, + 51.677953801 + ], + [ + 9.9260014, + 51.678491101 + ], + [ + 9.9263676, + 51.679315001 + ], + [ + 9.9266808, + 51.680136601 + ], + [ + 9.9267317, + 51.680284701 + ], + [ + 9.9269714, + 51.681160101 + ], + [ + 9.9272063, + 51.682251301 + ], + [ + 9.9275307, + 51.684222501 + ], + [ + 9.9276082, + 51.684545201 + ], + [ + 9.9277735, + 51.685159201 + ], + [ + 9.9279291, + 51.685599901 + ], + [ + 9.9283833, + 51.686574101 + ], + [ + 9.9288538, + 51.687308701 + ], + [ + 9.9293114, + 51.687877001 + ], + [ + 9.9300549, + 51.688637201 + ], + [ + 9.9306218, + 51.689132201 + ], + [ + 9.9333536, + 51.691409101 + ], + [ + 9.9341648, + 51.692199501 + ], + [ + 9.9345562, + 51.692607001 + ], + [ + 9.934932, + 51.693035901 + ], + [ + 9.9352701, + 51.693443901 + ], + [ + 9.9357581, + 51.694071101 + ], + [ + 9.9360527, + 51.694502701 + ], + [ + 9.9364339, + 51.695133001 + ], + [ + 9.9365923, + 51.695401401 + ], + [ + 9.9368128, + 51.695774901 + ], + [ + 9.9371457, + 51.696461601 + ], + [ + 9.9373695, + 51.696980501 + ], + [ + 9.9374943, + 51.697309801 + ], + [ + 9.9377475, + 51.698079201 + ], + [ + 9.937933, + 51.698842701 + ], + [ + 9.9380567, + 51.699515701 + ], + [ + 9.9381089, + 51.699923301 + ], + [ + 9.9381845, + 51.701091301 + ], + [ + 9.9382561, + 51.703132301 + ], + [ + 9.9382835, + 51.704174501 + ], + [ + 9.9382997, + 51.704630101 + ], + [ + 9.9383104, + 51.704926001 + ], + [ + 9.9383261, + 51.705286501 + ], + [ + 9.9383756, + 51.706371401 + ], + [ + 9.9384279, + 51.707103101 + ], + [ + 9.9385204, + 51.707869401 + ], + [ + 9.9386036, + 51.708398301 + ], + [ + 9.9386985, + 51.708974601 + ], + [ + 9.9389527, + 51.710028801 + ], + [ + 9.93917, + 51.710742301 + ], + [ + 9.9394581, + 51.711504401 + ], + [ + 9.9395118, + 51.711646401 + ], + [ + 9.9397318, + 51.712232901 + ], + [ + 9.9400127, + 51.712880301 + ], + [ + 9.9402325, + 51.713324401 + ], + [ + 9.9403678, + 51.713573201 + ], + [ + 9.9408426, + 51.714454601 + ], + [ + 9.941041074, + 51.714779334 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de37", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.629331291449084,9.918472413206716,51.52660322033157,9.878900665394793", + "point": "51.629331291449084,9.918472413206716", + "startLcPosition": "180", + "impact": { + "lower": "G\u00f6ttingen", + "upper": "N\u00f6rten-Hardenberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | N\u00f6rten-Hardenberg - G\u00f6ttingen", + "coordinate": { + "lat": 51.629331291449084, + "long": 9.918472413206716 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 29.04.26 von 07:00 bis 18:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 17.04.26 und dem 24.04.26 von 07:00 bis 12:00 Uhr.", + "30.04.26 von 07:00 bis 12:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen AS N\u00f6rten-Hardenberg und 0.2 km vor AS G\u00f6ttingen", + "", + "L\u00e4nge: 12.92 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.918472413, + 51.629331291 + ], + [ + 9.918355, + 51.629163301 + ], + [ + 9.9179335, + 51.628572901 + ], + [ + 9.9173077, + 51.627690601 + ], + [ + 9.9168105, + 51.626987201 + ], + [ + 9.9156589, + 51.625370801 + ], + [ + 9.9142171, + 51.623337101 + ], + [ + 9.9126001, + 51.621077101 + ], + [ + 9.9117578, + 51.619875101 + ], + [ + 9.910633, + 51.618284201 + ], + [ + 9.909608, + 51.616813801 + ], + [ + 9.9091101, + 51.615993101 + ], + [ + 9.9086867, + 51.615149501 + ], + [ + 9.9083755, + 51.614302301 + ], + [ + 9.9082813, + 51.613941501 + ], + [ + 9.9082317, + 51.613751301 + ], + [ + 9.9081398, + 51.613399301 + ], + [ + 9.9080438, + 51.612931001 + ], + [ + 9.9079704, + 51.612507201 + ], + [ + 9.907871, + 51.611894801 + ], + [ + 9.9077919, + 51.611417201 + ], + [ + 9.9076667, + 51.610750001 + ], + [ + 9.9074704, + 51.609528401 + ], + [ + 9.9073717, + 51.608917601 + ], + [ + 9.9072367, + 51.608455901 + ], + [ + 9.907019, + 51.607878401 + ], + [ + 9.9067961, + 51.607332201 + ], + [ + 9.9064722, + 51.606500001 + ], + [ + 9.9059609, + 51.605249601 + ], + [ + 9.9053108, + 51.603659801 + ], + [ + 9.9050278, + 51.602972201 + ], + [ + 9.9043622, + 51.601283001 + ], + [ + 9.9042672, + 51.600983701 + ], + [ + 9.9041812, + 51.600683301 + ], + [ + 9.9041042, + 51.600382001 + ], + [ + 9.9040258, + 51.600028901 + ], + [ + 9.9039598, + 51.599674901 + ], + [ + 9.9039062, + 51.599320001 + ], + [ + 9.9038729, + 51.599026001 + ], + [ + 9.9038499, + 51.598731501 + ], + [ + 9.9038374, + 51.598436801 + ], + [ + 9.9038353, + 51.598142001 + ], + [ + 9.903845, + 51.597817301 + ], + [ + 9.9038674, + 51.597492901 + ], + [ + 9.9039031, + 51.597169001 + ], + [ + 9.9039503, + 51.596845701 + ], + [ + 9.9040091, + 51.596523001 + ], + [ + 9.904066, + 51.596259001 + ], + [ + 9.9041444, + 51.595942601 + ], + [ + 9.904234, + 51.595627401 + ], + [ + 9.9043347, + 51.595313501 + ], + [ + 9.9044464, + 51.595001001 + ], + [ + 9.9045693, + 51.594690201 + ], + [ + 9.9047031, + 51.594381101 + ], + [ + 9.904858, + 51.594053301 + ], + [ + 9.9050253, + 51.593727901 + ], + [ + 9.9052049, + 51.593405101 + ], + [ + 9.9053967, + 51.593084901 + ], + [ + 9.9056006, + 51.592767601 + ], + [ + 9.9058164, + 51.592453401 + ], + [ + 9.906022, + 51.592169401 + ], + [ + 9.9062365, + 51.591888001 + ], + [ + 9.9065053, + 51.591554201 + ], + [ + 9.9067867, + 51.591224401 + ], + [ + 9.9070805, + 51.590898801 + ], + [ + 9.9085613, + 51.589206601 + ], + [ + 9.9098835, + 51.587699701 + ], + [ + 9.9104792, + 51.587011801 + ], + [ + 9.9106659, + 51.586783101 + ], + [ + 9.9108439, + 51.586551701 + ], + [ + 9.9110133, + 51.586317801 + ], + [ + 9.9112128, + 51.586021601 + ], + [ + 9.9113983, + 51.585721901 + ], + [ + 9.9115612, + 51.585442201 + ], + [ + 9.9117094, + 51.585159301 + ], + [ + 9.9118427, + 51.584873501 + ], + [ + 9.911961, + 51.584585301 + ], + [ + 9.9120641, + 51.584294701 + ], + [ + 9.912152, + 51.584002301 + ], + [ + 9.9122177, + 51.583738901 + ], + [ + 9.912271, + 51.583474401 + ], + [ + 9.9123118, + 51.583209101 + ], + [ + 9.9123391, + 51.582943101 + ], + [ + 9.9123567, + 51.582676801 + ], + [ + 9.912362, + 51.582410301 + ], + [ + 9.9123545, + 51.582135001 + ], + [ + 9.9123338, + 51.581859901 + ], + [ + 9.9123001, + 51.581585501 + ], + [ + 9.9122532, + 51.581311501 + ], + [ + 9.9121932, + 51.581038401 + ], + [ + 9.9121201, + 51.580766501 + ], + [ + 9.9120336, + 51.580496001 + ], + [ + 9.9119353, + 51.580227201 + ], + [ + 9.9118252, + 51.579960101 + ], + [ + 9.911702, + 51.579692501 + ], + [ + 9.911567, + 51.579427101 + ], + [ + 9.9114149, + 51.579159601 + ], + [ + 9.91125, + 51.578895001 + ], + [ + 9.9110723, + 51.578633701 + ], + [ + 9.9109036, + 51.578404001 + ], + [ + 9.9107251, + 51.578177201 + ], + [ + 9.9105369, + 51.577953501 + ], + [ + 9.9101679, + 51.577546201 + ], + [ + 9.909689, + 51.577055701 + ], + [ + 9.9089917, + 51.576385601 + ], + [ + 9.9088073, + 51.576218601 + ], + [ + 9.9084643, + 51.575907801 + ], + [ + 9.9080741, + 51.575571001 + ], + [ + 9.9076424, + 51.575222701 + ], + [ + 9.9072017, + 51.574878701 + ], + [ + 9.9067521, + 51.574539201 + ], + [ + 9.9062938, + 51.574204201 + ], + [ + 9.9058268, + 51.573873901 + ], + [ + 9.9053513, + 51.573548401 + ], + [ + 9.9048674, + 51.573227601 + ], + [ + 9.9043078, + 51.572880801 + ], + [ + 9.9039096, + 51.572639501 + ], + [ + 9.9030819, + 51.572164901 + ], + [ + 9.9027505, + 51.571984401 + ], + [ + 9.902411, + 51.571809801 + ], + [ + 9.9020636, + 51.571641301 + ], + [ + 9.9017087, + 51.571478901 + ], + [ + 9.9013465, + 51.571322901 + ], + [ + 9.9009773, + 51.571173401 + ], + [ + 9.9006015, + 51.571030401 + ], + [ + 9.9002192, + 51.570894101 + ], + [ + 9.8998309, + 51.570764601 + ], + [ + 9.8994533, + 51.570647001 + ], + [ + 9.8990707, + 51.570535801 + ], + [ + 9.8986834, + 51.570431101 + ], + [ + 9.8982536, + 51.570323901 + ], + [ + 9.8978189, + 51.570224701 + ], + [ + 9.8973797, + 51.570133601 + ], + [ + 9.8969362, + 51.570050701 + ], + [ + 9.896489, + 51.569976101 + ], + [ + 9.8960437, + 51.569909801 + ], + [ + 9.894655, + 51.569712101 + ], + [ + 9.8922457, + 51.569409401 + ], + [ + 9.8921578, + 51.569397601 + ], + [ + 9.891461, + 51.569302401 + ], + [ + 9.8907734, + 51.569203701 + ], + [ + 9.8903153, + 51.569141101 + ], + [ + 9.8898607, + 51.569069301 + ], + [ + 9.8894101, + 51.568988501 + ], + [ + 9.8889639, + 51.568898701 + ], + [ + 9.8885225, + 51.568800101 + ], + [ + 9.8880865, + 51.568692601 + ], + [ + 9.8876563, + 51.568576501 + ], + [ + 9.8872323, + 51.568451901 + ], + [ + 9.8868306, + 51.568324001 + ], + [ + 9.8864354, + 51.568188501 + ], + [ + 9.8860472, + 51.568045401 + ], + [ + 9.8856663, + 51.567894901 + ], + [ + 9.8852931, + 51.567737101 + ], + [ + 9.8849279, + 51.567572301 + ], + [ + 9.8845711, + 51.567400501 + ], + [ + 9.884223, + 51.567221901 + ], + [ + 9.8838679, + 51.567027601 + ], + [ + 9.8835231, + 51.566826201 + ], + [ + 9.883189, + 51.566618001 + ], + [ + 9.8828659, + 51.566403201 + ], + [ + 9.8825543, + 51.566182001 + ], + [ + 9.8822543, + 51.565954601 + ], + [ + 9.8819664, + 51.565721201 + ], + [ + 9.8816908, + 51.565482201 + ], + [ + 9.8814278, + 51.565237701 + ], + [ + 9.8811777, + 51.564988101 + ], + [ + 9.8809408, + 51.564733601 + ], + [ + 9.8807173, + 51.564474401 + ], + [ + 9.8805074, + 51.564210801 + ], + [ + 9.8803114, + 51.563943101 + ], + [ + 9.8801295, + 51.563671701 + ], + [ + 9.8799618, + 51.563396601 + ], + [ + 9.8798086, + 51.563118401 + ], + [ + 9.8795845, + 51.562614101 + ], + [ + 9.8794794, + 51.562333901 + ], + [ + 9.8793819, + 51.562029401 + ], + [ + 9.8793068, + 51.561724401 + ], + [ + 9.8792499, + 51.561430801 + ], + [ + 9.8792137, + 51.561121801 + ], + [ + 9.8791571, + 51.560297101 + ], + [ + 9.8791606, + 51.557395701 + ], + [ + 9.8791557, + 51.555717201 + ], + [ + 9.8791269, + 51.553197001 + ], + [ + 9.8791395, + 51.551784001 + ], + [ + 9.8791228, + 51.542318201 + ], + [ + 9.8790965, + 51.536222901 + ], + [ + 9.8790912, + 51.535864701 + ], + [ + 9.8790877, + 51.535633101 + ], + [ + 9.8790874, + 51.535564501 + ], + [ + 9.8790868, + 51.532395001 + ], + [ + 9.8790729, + 51.531446601 + ], + [ + 9.8790307, + 51.530089401 + ], + [ + 9.878900665, + 51.52660322 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de35", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.629331291449084,9.918472413206716,51.52660322033157,9.878900665394793", + "point": "51.629331291449084,9.918472413206716", + "startLcPosition": "180", + "impact": { + "lower": "G\u00f6ttingen", + "upper": "N\u00f6rten-Hardenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | N\u00f6rten-Hardenberg - G\u00f6ttingen", + "coordinate": { + "lat": 51.629331291449084, + "long": 9.918472413206716 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 30.04.26 von 07:00 bis 16:00 Uhr.", + "17.04.26 von 07:00 bis 12:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "17.04.26, 24.04.26", + "", + "A7: Hannover -> Kassel, zwischen AS N\u00f6rten-Hardenberg und 0.2 km vor AS G\u00f6ttingen", + "", + "L\u00e4nge: 12.92 km | Maximale Durchfahrtsbreite: 11 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.918472413, + 51.629331291 + ], + [ + 9.918355, + 51.629163301 + ], + [ + 9.9179335, + 51.628572901 + ], + [ + 9.9173077, + 51.627690601 + ], + [ + 9.9168105, + 51.626987201 + ], + [ + 9.9156589, + 51.625370801 + ], + [ + 9.9142171, + 51.623337101 + ], + [ + 9.9126001, + 51.621077101 + ], + [ + 9.9117578, + 51.619875101 + ], + [ + 9.910633, + 51.618284201 + ], + [ + 9.909608, + 51.616813801 + ], + [ + 9.9091101, + 51.615993101 + ], + [ + 9.9086867, + 51.615149501 + ], + [ + 9.9083755, + 51.614302301 + ], + [ + 9.9082813, + 51.613941501 + ], + [ + 9.9082317, + 51.613751301 + ], + [ + 9.9081398, + 51.613399301 + ], + [ + 9.9080438, + 51.612931001 + ], + [ + 9.9079704, + 51.612507201 + ], + [ + 9.907871, + 51.611894801 + ], + [ + 9.9077919, + 51.611417201 + ], + [ + 9.9076667, + 51.610750001 + ], + [ + 9.9074704, + 51.609528401 + ], + [ + 9.9073717, + 51.608917601 + ], + [ + 9.9072367, + 51.608455901 + ], + [ + 9.907019, + 51.607878401 + ], + [ + 9.9067961, + 51.607332201 + ], + [ + 9.9064722, + 51.606500001 + ], + [ + 9.9059609, + 51.605249601 + ], + [ + 9.9053108, + 51.603659801 + ], + [ + 9.9050278, + 51.602972201 + ], + [ + 9.9043622, + 51.601283001 + ], + [ + 9.9042672, + 51.600983701 + ], + [ + 9.9041812, + 51.600683301 + ], + [ + 9.9041042, + 51.600382001 + ], + [ + 9.9040258, + 51.600028901 + ], + [ + 9.9039598, + 51.599674901 + ], + [ + 9.9039062, + 51.599320001 + ], + [ + 9.9038729, + 51.599026001 + ], + [ + 9.9038499, + 51.598731501 + ], + [ + 9.9038374, + 51.598436801 + ], + [ + 9.9038353, + 51.598142001 + ], + [ + 9.903845, + 51.597817301 + ], + [ + 9.9038674, + 51.597492901 + ], + [ + 9.9039031, + 51.597169001 + ], + [ + 9.9039503, + 51.596845701 + ], + [ + 9.9040091, + 51.596523001 + ], + [ + 9.904066, + 51.596259001 + ], + [ + 9.9041444, + 51.595942601 + ], + [ + 9.904234, + 51.595627401 + ], + [ + 9.9043347, + 51.595313501 + ], + [ + 9.9044464, + 51.595001001 + ], + [ + 9.9045693, + 51.594690201 + ], + [ + 9.9047031, + 51.594381101 + ], + [ + 9.904858, + 51.594053301 + ], + [ + 9.9050253, + 51.593727901 + ], + [ + 9.9052049, + 51.593405101 + ], + [ + 9.9053967, + 51.593084901 + ], + [ + 9.9056006, + 51.592767601 + ], + [ + 9.9058164, + 51.592453401 + ], + [ + 9.906022, + 51.592169401 + ], + [ + 9.9062365, + 51.591888001 + ], + [ + 9.9065053, + 51.591554201 + ], + [ + 9.9067867, + 51.591224401 + ], + [ + 9.9070805, + 51.590898801 + ], + [ + 9.9085613, + 51.589206601 + ], + [ + 9.9098835, + 51.587699701 + ], + [ + 9.9104792, + 51.587011801 + ], + [ + 9.9106659, + 51.586783101 + ], + [ + 9.9108439, + 51.586551701 + ], + [ + 9.9110133, + 51.586317801 + ], + [ + 9.9112128, + 51.586021601 + ], + [ + 9.9113983, + 51.585721901 + ], + [ + 9.9115612, + 51.585442201 + ], + [ + 9.9117094, + 51.585159301 + ], + [ + 9.9118427, + 51.584873501 + ], + [ + 9.911961, + 51.584585301 + ], + [ + 9.9120641, + 51.584294701 + ], + [ + 9.912152, + 51.584002301 + ], + [ + 9.9122177, + 51.583738901 + ], + [ + 9.912271, + 51.583474401 + ], + [ + 9.9123118, + 51.583209101 + ], + [ + 9.9123391, + 51.582943101 + ], + [ + 9.9123567, + 51.582676801 + ], + [ + 9.912362, + 51.582410301 + ], + [ + 9.9123545, + 51.582135001 + ], + [ + 9.9123338, + 51.581859901 + ], + [ + 9.9123001, + 51.581585501 + ], + [ + 9.9122532, + 51.581311501 + ], + [ + 9.9121932, + 51.581038401 + ], + [ + 9.9121201, + 51.580766501 + ], + [ + 9.9120336, + 51.580496001 + ], + [ + 9.9119353, + 51.580227201 + ], + [ + 9.9118252, + 51.579960101 + ], + [ + 9.911702, + 51.579692501 + ], + [ + 9.911567, + 51.579427101 + ], + [ + 9.9114149, + 51.579159601 + ], + [ + 9.91125, + 51.578895001 + ], + [ + 9.9110723, + 51.578633701 + ], + [ + 9.9109036, + 51.578404001 + ], + [ + 9.9107251, + 51.578177201 + ], + [ + 9.9105369, + 51.577953501 + ], + [ + 9.9101679, + 51.577546201 + ], + [ + 9.909689, + 51.577055701 + ], + [ + 9.9089917, + 51.576385601 + ], + [ + 9.9088073, + 51.576218601 + ], + [ + 9.9084643, + 51.575907801 + ], + [ + 9.9080741, + 51.575571001 + ], + [ + 9.9076424, + 51.575222701 + ], + [ + 9.9072017, + 51.574878701 + ], + [ + 9.9067521, + 51.574539201 + ], + [ + 9.9062938, + 51.574204201 + ], + [ + 9.9058268, + 51.573873901 + ], + [ + 9.9053513, + 51.573548401 + ], + [ + 9.9048674, + 51.573227601 + ], + [ + 9.9043078, + 51.572880801 + ], + [ + 9.9039096, + 51.572639501 + ], + [ + 9.9030819, + 51.572164901 + ], + [ + 9.9027505, + 51.571984401 + ], + [ + 9.902411, + 51.571809801 + ], + [ + 9.9020636, + 51.571641301 + ], + [ + 9.9017087, + 51.571478901 + ], + [ + 9.9013465, + 51.571322901 + ], + [ + 9.9009773, + 51.571173401 + ], + [ + 9.9006015, + 51.571030401 + ], + [ + 9.9002192, + 51.570894101 + ], + [ + 9.8998309, + 51.570764601 + ], + [ + 9.8994533, + 51.570647001 + ], + [ + 9.8990707, + 51.570535801 + ], + [ + 9.8986834, + 51.570431101 + ], + [ + 9.8982536, + 51.570323901 + ], + [ + 9.8978189, + 51.570224701 + ], + [ + 9.8973797, + 51.570133601 + ], + [ + 9.8969362, + 51.570050701 + ], + [ + 9.896489, + 51.569976101 + ], + [ + 9.8960437, + 51.569909801 + ], + [ + 9.894655, + 51.569712101 + ], + [ + 9.8922457, + 51.569409401 + ], + [ + 9.8921578, + 51.569397601 + ], + [ + 9.891461, + 51.569302401 + ], + [ + 9.8907734, + 51.569203701 + ], + [ + 9.8903153, + 51.569141101 + ], + [ + 9.8898607, + 51.569069301 + ], + [ + 9.8894101, + 51.568988501 + ], + [ + 9.8889639, + 51.568898701 + ], + [ + 9.8885225, + 51.568800101 + ], + [ + 9.8880865, + 51.568692601 + ], + [ + 9.8876563, + 51.568576501 + ], + [ + 9.8872323, + 51.568451901 + ], + [ + 9.8868306, + 51.568324001 + ], + [ + 9.8864354, + 51.568188501 + ], + [ + 9.8860472, + 51.568045401 + ], + [ + 9.8856663, + 51.567894901 + ], + [ + 9.8852931, + 51.567737101 + ], + [ + 9.8849279, + 51.567572301 + ], + [ + 9.8845711, + 51.567400501 + ], + [ + 9.884223, + 51.567221901 + ], + [ + 9.8838679, + 51.567027601 + ], + [ + 9.8835231, + 51.566826201 + ], + [ + 9.883189, + 51.566618001 + ], + [ + 9.8828659, + 51.566403201 + ], + [ + 9.8825543, + 51.566182001 + ], + [ + 9.8822543, + 51.565954601 + ], + [ + 9.8819664, + 51.565721201 + ], + [ + 9.8816908, + 51.565482201 + ], + [ + 9.8814278, + 51.565237701 + ], + [ + 9.8811777, + 51.564988101 + ], + [ + 9.8809408, + 51.564733601 + ], + [ + 9.8807173, + 51.564474401 + ], + [ + 9.8805074, + 51.564210801 + ], + [ + 9.8803114, + 51.563943101 + ], + [ + 9.8801295, + 51.563671701 + ], + [ + 9.8799618, + 51.563396601 + ], + [ + 9.8798086, + 51.563118401 + ], + [ + 9.8795845, + 51.562614101 + ], + [ + 9.8794794, + 51.562333901 + ], + [ + 9.8793819, + 51.562029401 + ], + [ + 9.8793068, + 51.561724401 + ], + [ + 9.8792499, + 51.561430801 + ], + [ + 9.8792137, + 51.561121801 + ], + [ + 9.8791571, + 51.560297101 + ], + [ + 9.8791606, + 51.557395701 + ], + [ + 9.8791557, + 51.555717201 + ], + [ + 9.8791269, + 51.553197001 + ], + [ + 9.8791395, + 51.551784001 + ], + [ + 9.8791228, + 51.542318201 + ], + [ + 9.8790965, + 51.536222901 + ], + [ + 9.8790912, + 51.535864701 + ], + [ + 9.8790877, + 51.535633101 + ], + [ + 9.8790874, + 51.535564501 + ], + [ + 9.8790868, + 51.532395001 + ], + [ + 9.8790729, + 51.531446601 + ], + [ + 9.8790307, + 51.530089401 + ], + [ + 9.878900665, + 51.52660322 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de33", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.629331291449084,9.918472413206716,51.52660322033157,9.878900665394793", + "point": "51.629331291449084,9.918472413206716", + "startLcPosition": "180", + "impact": { + "lower": "G\u00f6ttingen", + "upper": "N\u00f6rten-Hardenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | N\u00f6rten-Hardenberg - G\u00f6ttingen", + "coordinate": { + "lat": 51.629331291449084, + "long": 9.918472413206716 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 30.04.26 von 07:00 bis 16:00 Uhr.", + "17.04.26 von 07:00 bis 12:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "17.04.26, 24.04.26", + "", + "A7: Hannover -> Kassel, zwischen AS N\u00f6rten-Hardenberg und 0.2 km vor AS G\u00f6ttingen", + "", + "L\u00e4nge: 12.92 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.918472413, + 51.629331291 + ], + [ + 9.918355, + 51.629163301 + ], + [ + 9.9179335, + 51.628572901 + ], + [ + 9.9173077, + 51.627690601 + ], + [ + 9.9168105, + 51.626987201 + ], + [ + 9.9156589, + 51.625370801 + ], + [ + 9.9142171, + 51.623337101 + ], + [ + 9.9126001, + 51.621077101 + ], + [ + 9.9117578, + 51.619875101 + ], + [ + 9.910633, + 51.618284201 + ], + [ + 9.909608, + 51.616813801 + ], + [ + 9.9091101, + 51.615993101 + ], + [ + 9.9086867, + 51.615149501 + ], + [ + 9.9083755, + 51.614302301 + ], + [ + 9.9082813, + 51.613941501 + ], + [ + 9.9082317, + 51.613751301 + ], + [ + 9.9081398, + 51.613399301 + ], + [ + 9.9080438, + 51.612931001 + ], + [ + 9.9079704, + 51.612507201 + ], + [ + 9.907871, + 51.611894801 + ], + [ + 9.9077919, + 51.611417201 + ], + [ + 9.9076667, + 51.610750001 + ], + [ + 9.9074704, + 51.609528401 + ], + [ + 9.9073717, + 51.608917601 + ], + [ + 9.9072367, + 51.608455901 + ], + [ + 9.907019, + 51.607878401 + ], + [ + 9.9067961, + 51.607332201 + ], + [ + 9.9064722, + 51.606500001 + ], + [ + 9.9059609, + 51.605249601 + ], + [ + 9.9053108, + 51.603659801 + ], + [ + 9.9050278, + 51.602972201 + ], + [ + 9.9043622, + 51.601283001 + ], + [ + 9.9042672, + 51.600983701 + ], + [ + 9.9041812, + 51.600683301 + ], + [ + 9.9041042, + 51.600382001 + ], + [ + 9.9040258, + 51.600028901 + ], + [ + 9.9039598, + 51.599674901 + ], + [ + 9.9039062, + 51.599320001 + ], + [ + 9.9038729, + 51.599026001 + ], + [ + 9.9038499, + 51.598731501 + ], + [ + 9.9038374, + 51.598436801 + ], + [ + 9.9038353, + 51.598142001 + ], + [ + 9.903845, + 51.597817301 + ], + [ + 9.9038674, + 51.597492901 + ], + [ + 9.9039031, + 51.597169001 + ], + [ + 9.9039503, + 51.596845701 + ], + [ + 9.9040091, + 51.596523001 + ], + [ + 9.904066, + 51.596259001 + ], + [ + 9.9041444, + 51.595942601 + ], + [ + 9.904234, + 51.595627401 + ], + [ + 9.9043347, + 51.595313501 + ], + [ + 9.9044464, + 51.595001001 + ], + [ + 9.9045693, + 51.594690201 + ], + [ + 9.9047031, + 51.594381101 + ], + [ + 9.904858, + 51.594053301 + ], + [ + 9.9050253, + 51.593727901 + ], + [ + 9.9052049, + 51.593405101 + ], + [ + 9.9053967, + 51.593084901 + ], + [ + 9.9056006, + 51.592767601 + ], + [ + 9.9058164, + 51.592453401 + ], + [ + 9.906022, + 51.592169401 + ], + [ + 9.9062365, + 51.591888001 + ], + [ + 9.9065053, + 51.591554201 + ], + [ + 9.9067867, + 51.591224401 + ], + [ + 9.9070805, + 51.590898801 + ], + [ + 9.9085613, + 51.589206601 + ], + [ + 9.9098835, + 51.587699701 + ], + [ + 9.9104792, + 51.587011801 + ], + [ + 9.9106659, + 51.586783101 + ], + [ + 9.9108439, + 51.586551701 + ], + [ + 9.9110133, + 51.586317801 + ], + [ + 9.9112128, + 51.586021601 + ], + [ + 9.9113983, + 51.585721901 + ], + [ + 9.9115612, + 51.585442201 + ], + [ + 9.9117094, + 51.585159301 + ], + [ + 9.9118427, + 51.584873501 + ], + [ + 9.911961, + 51.584585301 + ], + [ + 9.9120641, + 51.584294701 + ], + [ + 9.912152, + 51.584002301 + ], + [ + 9.9122177, + 51.583738901 + ], + [ + 9.912271, + 51.583474401 + ], + [ + 9.9123118, + 51.583209101 + ], + [ + 9.9123391, + 51.582943101 + ], + [ + 9.9123567, + 51.582676801 + ], + [ + 9.912362, + 51.582410301 + ], + [ + 9.9123545, + 51.582135001 + ], + [ + 9.9123338, + 51.581859901 + ], + [ + 9.9123001, + 51.581585501 + ], + [ + 9.9122532, + 51.581311501 + ], + [ + 9.9121932, + 51.581038401 + ], + [ + 9.9121201, + 51.580766501 + ], + [ + 9.9120336, + 51.580496001 + ], + [ + 9.9119353, + 51.580227201 + ], + [ + 9.9118252, + 51.579960101 + ], + [ + 9.911702, + 51.579692501 + ], + [ + 9.911567, + 51.579427101 + ], + [ + 9.9114149, + 51.579159601 + ], + [ + 9.91125, + 51.578895001 + ], + [ + 9.9110723, + 51.578633701 + ], + [ + 9.9109036, + 51.578404001 + ], + [ + 9.9107251, + 51.578177201 + ], + [ + 9.9105369, + 51.577953501 + ], + [ + 9.9101679, + 51.577546201 + ], + [ + 9.909689, + 51.577055701 + ], + [ + 9.9089917, + 51.576385601 + ], + [ + 9.9088073, + 51.576218601 + ], + [ + 9.9084643, + 51.575907801 + ], + [ + 9.9080741, + 51.575571001 + ], + [ + 9.9076424, + 51.575222701 + ], + [ + 9.9072017, + 51.574878701 + ], + [ + 9.9067521, + 51.574539201 + ], + [ + 9.9062938, + 51.574204201 + ], + [ + 9.9058268, + 51.573873901 + ], + [ + 9.9053513, + 51.573548401 + ], + [ + 9.9048674, + 51.573227601 + ], + [ + 9.9043078, + 51.572880801 + ], + [ + 9.9039096, + 51.572639501 + ], + [ + 9.9030819, + 51.572164901 + ], + [ + 9.9027505, + 51.571984401 + ], + [ + 9.902411, + 51.571809801 + ], + [ + 9.9020636, + 51.571641301 + ], + [ + 9.9017087, + 51.571478901 + ], + [ + 9.9013465, + 51.571322901 + ], + [ + 9.9009773, + 51.571173401 + ], + [ + 9.9006015, + 51.571030401 + ], + [ + 9.9002192, + 51.570894101 + ], + [ + 9.8998309, + 51.570764601 + ], + [ + 9.8994533, + 51.570647001 + ], + [ + 9.8990707, + 51.570535801 + ], + [ + 9.8986834, + 51.570431101 + ], + [ + 9.8982536, + 51.570323901 + ], + [ + 9.8978189, + 51.570224701 + ], + [ + 9.8973797, + 51.570133601 + ], + [ + 9.8969362, + 51.570050701 + ], + [ + 9.896489, + 51.569976101 + ], + [ + 9.8960437, + 51.569909801 + ], + [ + 9.894655, + 51.569712101 + ], + [ + 9.8922457, + 51.569409401 + ], + [ + 9.8921578, + 51.569397601 + ], + [ + 9.891461, + 51.569302401 + ], + [ + 9.8907734, + 51.569203701 + ], + [ + 9.8903153, + 51.569141101 + ], + [ + 9.8898607, + 51.569069301 + ], + [ + 9.8894101, + 51.568988501 + ], + [ + 9.8889639, + 51.568898701 + ], + [ + 9.8885225, + 51.568800101 + ], + [ + 9.8880865, + 51.568692601 + ], + [ + 9.8876563, + 51.568576501 + ], + [ + 9.8872323, + 51.568451901 + ], + [ + 9.8868306, + 51.568324001 + ], + [ + 9.8864354, + 51.568188501 + ], + [ + 9.8860472, + 51.568045401 + ], + [ + 9.8856663, + 51.567894901 + ], + [ + 9.8852931, + 51.567737101 + ], + [ + 9.8849279, + 51.567572301 + ], + [ + 9.8845711, + 51.567400501 + ], + [ + 9.884223, + 51.567221901 + ], + [ + 9.8838679, + 51.567027601 + ], + [ + 9.8835231, + 51.566826201 + ], + [ + 9.883189, + 51.566618001 + ], + [ + 9.8828659, + 51.566403201 + ], + [ + 9.8825543, + 51.566182001 + ], + [ + 9.8822543, + 51.565954601 + ], + [ + 9.8819664, + 51.565721201 + ], + [ + 9.8816908, + 51.565482201 + ], + [ + 9.8814278, + 51.565237701 + ], + [ + 9.8811777, + 51.564988101 + ], + [ + 9.8809408, + 51.564733601 + ], + [ + 9.8807173, + 51.564474401 + ], + [ + 9.8805074, + 51.564210801 + ], + [ + 9.8803114, + 51.563943101 + ], + [ + 9.8801295, + 51.563671701 + ], + [ + 9.8799618, + 51.563396601 + ], + [ + 9.8798086, + 51.563118401 + ], + [ + 9.8795845, + 51.562614101 + ], + [ + 9.8794794, + 51.562333901 + ], + [ + 9.8793819, + 51.562029401 + ], + [ + 9.8793068, + 51.561724401 + ], + [ + 9.8792499, + 51.561430801 + ], + [ + 9.8792137, + 51.561121801 + ], + [ + 9.8791571, + 51.560297101 + ], + [ + 9.8791606, + 51.557395701 + ], + [ + 9.8791557, + 51.555717201 + ], + [ + 9.8791269, + 51.553197001 + ], + [ + 9.8791395, + 51.551784001 + ], + [ + 9.8791228, + 51.542318201 + ], + [ + 9.8790965, + 51.536222901 + ], + [ + 9.8790912, + 51.535864701 + ], + [ + 9.8790877, + 51.535633101 + ], + [ + 9.8790874, + 51.535564501 + ], + [ + 9.8790868, + 51.532395001 + ], + [ + 9.8790729, + 51.531446601 + ], + [ + 9.8790307, + 51.530089401 + ], + [ + 9.878900665, + 51.52660322 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.714779333749654,9.94104107387435,51.79078605543588,10.058097688434712", + "point": "51.714779333749654,9.94104107387435", + "startLcPosition": "181", + "impact": { + "lower": "Echte", + "upper": "Northeim-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Northeim-West - Echte", + "coordinate": { + "lat": 51.714779333749654, + "long": 9.94104107387435 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 20.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26", + "", + "A7: Kassel -> Hannover, zwischen 1.7 km hinter AS Northeim-West und AS Echte", + "", + "L\u00e4nge: 12.39 km | Maximale Durchfahrtsbreite: 11 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.941041074, + 51.714779334 + ], + [ + 9.9413469, + 51.715279701 + ], + [ + 9.941709, + 51.715814601 + ], + [ + 9.9418559, + 51.716039601 + ], + [ + 9.9422371, + 51.716595901 + ], + [ + 9.9427644, + 51.717280101 + ], + [ + 9.9432163, + 51.717824501 + ], + [ + 9.9435646, + 51.718238101 + ], + [ + 9.9439178, + 51.718628601 + ], + [ + 9.9447414, + 51.719503301 + ], + [ + 9.9453517, + 51.720098201 + ], + [ + 9.9461396, + 51.720813401 + ], + [ + 9.9468114, + 51.721382601 + ], + [ + 9.9475056, + 51.721960701 + ], + [ + 9.9484538, + 51.722699001 + ], + [ + 9.9494012, + 51.723347001 + ], + [ + 9.9500234, + 51.723774001 + ], + [ + 9.9503751, + 51.724008001 + ], + [ + 9.9516315, + 51.724799301 + ], + [ + 9.9535853, + 51.725901701 + ], + [ + 9.954091, + 51.726165401 + ], + [ + 9.9552008, + 51.726726601 + ], + [ + 9.9562997, + 51.727222401 + ], + [ + 9.9573986, + 51.727704801 + ], + [ + 9.9585921, + 51.728180301 + ], + [ + 9.9598362, + 51.728651501 + ], + [ + 9.9623846, + 51.729616701 + ], + [ + 9.9629172, + 51.729814101 + ], + [ + 9.9644622, + 51.730386801 + ], + [ + 9.9657857, + 51.730877401 + ], + [ + 9.9675701, + 51.731538901 + ], + [ + 9.968766, + 51.731982201 + ], + [ + 9.9689662, + 51.732056401 + ], + [ + 9.971245, + 51.732900501 + ], + [ + 9.9717506, + 51.733088501 + ], + [ + 9.9728824, + 51.733508001 + ], + [ + 9.9737021, + 51.733811801 + ], + [ + 9.9745718, + 51.734134201 + ], + [ + 9.9775974, + 51.735257401 + ], + [ + 9.9785016, + 51.735579001 + ], + [ + 9.9793485, + 51.735869201 + ], + [ + 9.9796286, + 51.735960101 + ], + [ + 9.9799696, + 51.736070701 + ], + [ + 9.9805235, + 51.736241701 + ], + [ + 9.9813849, + 51.736490401 + ], + [ + 9.9822514, + 51.736718601 + ], + [ + 9.9830512, + 51.736909301 + ], + [ + 9.9841556, + 51.737154801 + ], + [ + 9.9852666, + 51.737373601 + ], + [ + 9.9861498, + 51.737522501 + ], + [ + 9.9870506, + 51.737658901 + ], + [ + 9.987858, + 51.737769301 + ], + [ + 9.9886109, + 51.737856001 + ], + [ + 9.9901201, + 51.738009201 + ], + [ + 9.9920019, + 51.738154101 + ], + [ + 9.9928389, + 51.738221401 + ], + [ + 9.99433, + 51.738350701 + ], + [ + 9.995227, + 51.738461001 + ], + [ + 9.9959974, + 51.738568501 + ], + [ + 9.9972605, + 51.738810301 + ], + [ + 9.9979925, + 51.738980401 + ], + [ + 9.9987818, + 51.739195101 + ], + [ + 9.9994036, + 51.739397301 + ], + [ + 10.0008691, + 51.739897701 + ], + [ + 10.001657, + 51.740229101 + ], + [ + 10.0027484, + 51.740753801 + ], + [ + 10.0031651, + 51.740975201 + ], + [ + 10.0041414, + 51.741544501 + ], + [ + 10.0050351, + 51.742158501 + ], + [ + 10.005864, + 51.742831801 + ], + [ + 10.0065879, + 51.743523701 + ], + [ + 10.0070065, + 51.743988101 + ], + [ + 10.0074236, + 51.744513101 + ], + [ + 10.007714, + 51.744927101 + ], + [ + 10.0079776, + 51.745325801 + ], + [ + 10.0082656, + 51.745848401 + ], + [ + 10.0085137, + 51.746370701 + ], + [ + 10.0089106, + 51.747342201 + ], + [ + 10.0090311, + 51.747637301 + ], + [ + 10.009833, + 51.749661801 + ], + [ + 10.0106218, + 51.751645101 + ], + [ + 10.0115356, + 51.753943001 + ], + [ + 10.0119669, + 51.755027401 + ], + [ + 10.0123865, + 51.755957001 + ], + [ + 10.0126296, + 51.756432001 + ], + [ + 10.0129547, + 51.757036601 + ], + [ + 10.0133152, + 51.757628801 + ], + [ + 10.0136097, + 51.758071601 + ], + [ + 10.0139469, + 51.758540301 + ], + [ + 10.0142728, + 51.758964401 + ], + [ + 10.0145504, + 51.759342101 + ], + [ + 10.0148947, + 51.759757301 + ], + [ + 10.0154114, + 51.760361501 + ], + [ + 10.0159866, + 51.760961101 + ], + [ + 10.0167659, + 51.761756001 + ], + [ + 10.0176207, + 51.762524001 + ], + [ + 10.018586, + 51.763344901 + ], + [ + 10.0204799, + 51.764942201 + ], + [ + 10.0218814, + 51.766212201 + ], + [ + 10.0232094, + 51.767522901 + ], + [ + 10.0238544, + 51.768199301 + ], + [ + 10.0243628, + 51.768750701 + ], + [ + 10.0256266, + 51.770191501 + ], + [ + 10.0265818, + 51.771367801 + ], + [ + 10.0274627, + 51.772552301 + ], + [ + 10.0282778, + 51.773730701 + ], + [ + 10.0290705, + 51.774976801 + ], + [ + 10.029966, + 51.776416301 + ], + [ + 10.0303998, + 51.777062101 + ], + [ + 10.0307328, + 51.777513801 + ], + [ + 10.0311604, + 51.778082301 + ], + [ + 10.0315546, + 51.778542701 + ], + [ + 10.0319856, + 51.779016001 + ], + [ + 10.0324257, + 51.779460701 + ], + [ + 10.0326396, + 51.779671701 + ], + [ + 10.0333311, + 51.780308601 + ], + [ + 10.0340787, + 51.780931401 + ], + [ + 10.0348896, + 51.781551701 + ], + [ + 10.0353589, + 51.781890301 + ], + [ + 10.0359483, + 51.782283001 + ], + [ + 10.0362408, + 51.782476701 + ], + [ + 10.0373156, + 51.783133901 + ], + [ + 10.038455, + 51.783795201 + ], + [ + 10.0399067, + 51.784580201 + ], + [ + 10.041285, + 51.785272501 + ], + [ + 10.0425575, + 51.785872501 + ], + [ + 10.0436833, + 51.786363701 + ], + [ + 10.0449277, + 51.786883001 + ], + [ + 10.0461837, + 51.787385001 + ], + [ + 10.0471205, + 51.787732501 + ], + [ + 10.0487724, + 51.788320901 + ], + [ + 10.0491293, + 51.788441401 + ], + [ + 10.0506281, + 51.788917901 + ], + [ + 10.0519326, + 51.789301201 + ], + [ + 10.0533655, + 51.789688201 + ], + [ + 10.0541417, + 51.789897801 + ], + [ + 10.0559602, + 51.790339601 + ], + [ + 10.0579167, + 51.790751301 + ], + [ + 10.058097688, + 51.790786055 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.714779333749654,9.94104107387435,51.79078605543588,10.058097688434712", + "point": "51.714779333749654,9.94104107387435", + "startLcPosition": "181", + "impact": { + "lower": "Echte", + "upper": "Northeim-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Northeim-West - Echte", + "coordinate": { + "lat": 51.714779333749654, + "long": 9.94104107387435 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 20.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26, 17.04.26", + "", + "A7: Kassel -> Hannover, zwischen 1.7 km hinter AS Northeim-West und AS Echte", + "", + "L\u00e4nge: 12.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.941041074, + 51.714779334 + ], + [ + 9.9413469, + 51.715279701 + ], + [ + 9.941709, + 51.715814601 + ], + [ + 9.9418559, + 51.716039601 + ], + [ + 9.9422371, + 51.716595901 + ], + [ + 9.9427644, + 51.717280101 + ], + [ + 9.9432163, + 51.717824501 + ], + [ + 9.9435646, + 51.718238101 + ], + [ + 9.9439178, + 51.718628601 + ], + [ + 9.9447414, + 51.719503301 + ], + [ + 9.9453517, + 51.720098201 + ], + [ + 9.9461396, + 51.720813401 + ], + [ + 9.9468114, + 51.721382601 + ], + [ + 9.9475056, + 51.721960701 + ], + [ + 9.9484538, + 51.722699001 + ], + [ + 9.9494012, + 51.723347001 + ], + [ + 9.9500234, + 51.723774001 + ], + [ + 9.9503751, + 51.724008001 + ], + [ + 9.9516315, + 51.724799301 + ], + [ + 9.9535853, + 51.725901701 + ], + [ + 9.954091, + 51.726165401 + ], + [ + 9.9552008, + 51.726726601 + ], + [ + 9.9562997, + 51.727222401 + ], + [ + 9.9573986, + 51.727704801 + ], + [ + 9.9585921, + 51.728180301 + ], + [ + 9.9598362, + 51.728651501 + ], + [ + 9.9623846, + 51.729616701 + ], + [ + 9.9629172, + 51.729814101 + ], + [ + 9.9644622, + 51.730386801 + ], + [ + 9.9657857, + 51.730877401 + ], + [ + 9.9675701, + 51.731538901 + ], + [ + 9.968766, + 51.731982201 + ], + [ + 9.9689662, + 51.732056401 + ], + [ + 9.971245, + 51.732900501 + ], + [ + 9.9717506, + 51.733088501 + ], + [ + 9.9728824, + 51.733508001 + ], + [ + 9.9737021, + 51.733811801 + ], + [ + 9.9745718, + 51.734134201 + ], + [ + 9.9775974, + 51.735257401 + ], + [ + 9.9785016, + 51.735579001 + ], + [ + 9.9793485, + 51.735869201 + ], + [ + 9.9796286, + 51.735960101 + ], + [ + 9.9799696, + 51.736070701 + ], + [ + 9.9805235, + 51.736241701 + ], + [ + 9.9813849, + 51.736490401 + ], + [ + 9.9822514, + 51.736718601 + ], + [ + 9.9830512, + 51.736909301 + ], + [ + 9.9841556, + 51.737154801 + ], + [ + 9.9852666, + 51.737373601 + ], + [ + 9.9861498, + 51.737522501 + ], + [ + 9.9870506, + 51.737658901 + ], + [ + 9.987858, + 51.737769301 + ], + [ + 9.9886109, + 51.737856001 + ], + [ + 9.9901201, + 51.738009201 + ], + [ + 9.9920019, + 51.738154101 + ], + [ + 9.9928389, + 51.738221401 + ], + [ + 9.99433, + 51.738350701 + ], + [ + 9.995227, + 51.738461001 + ], + [ + 9.9959974, + 51.738568501 + ], + [ + 9.9972605, + 51.738810301 + ], + [ + 9.9979925, + 51.738980401 + ], + [ + 9.9987818, + 51.739195101 + ], + [ + 9.9994036, + 51.739397301 + ], + [ + 10.0008691, + 51.739897701 + ], + [ + 10.001657, + 51.740229101 + ], + [ + 10.0027484, + 51.740753801 + ], + [ + 10.0031651, + 51.740975201 + ], + [ + 10.0041414, + 51.741544501 + ], + [ + 10.0050351, + 51.742158501 + ], + [ + 10.005864, + 51.742831801 + ], + [ + 10.0065879, + 51.743523701 + ], + [ + 10.0070065, + 51.743988101 + ], + [ + 10.0074236, + 51.744513101 + ], + [ + 10.007714, + 51.744927101 + ], + [ + 10.0079776, + 51.745325801 + ], + [ + 10.0082656, + 51.745848401 + ], + [ + 10.0085137, + 51.746370701 + ], + [ + 10.0089106, + 51.747342201 + ], + [ + 10.0090311, + 51.747637301 + ], + [ + 10.009833, + 51.749661801 + ], + [ + 10.0106218, + 51.751645101 + ], + [ + 10.0115356, + 51.753943001 + ], + [ + 10.0119669, + 51.755027401 + ], + [ + 10.0123865, + 51.755957001 + ], + [ + 10.0126296, + 51.756432001 + ], + [ + 10.0129547, + 51.757036601 + ], + [ + 10.0133152, + 51.757628801 + ], + [ + 10.0136097, + 51.758071601 + ], + [ + 10.0139469, + 51.758540301 + ], + [ + 10.0142728, + 51.758964401 + ], + [ + 10.0145504, + 51.759342101 + ], + [ + 10.0148947, + 51.759757301 + ], + [ + 10.0154114, + 51.760361501 + ], + [ + 10.0159866, + 51.760961101 + ], + [ + 10.0167659, + 51.761756001 + ], + [ + 10.0176207, + 51.762524001 + ], + [ + 10.018586, + 51.763344901 + ], + [ + 10.0204799, + 51.764942201 + ], + [ + 10.0218814, + 51.766212201 + ], + [ + 10.0232094, + 51.767522901 + ], + [ + 10.0238544, + 51.768199301 + ], + [ + 10.0243628, + 51.768750701 + ], + [ + 10.0256266, + 51.770191501 + ], + [ + 10.0265818, + 51.771367801 + ], + [ + 10.0274627, + 51.772552301 + ], + [ + 10.0282778, + 51.773730701 + ], + [ + 10.0290705, + 51.774976801 + ], + [ + 10.029966, + 51.776416301 + ], + [ + 10.0303998, + 51.777062101 + ], + [ + 10.0307328, + 51.777513801 + ], + [ + 10.0311604, + 51.778082301 + ], + [ + 10.0315546, + 51.778542701 + ], + [ + 10.0319856, + 51.779016001 + ], + [ + 10.0324257, + 51.779460701 + ], + [ + 10.0326396, + 51.779671701 + ], + [ + 10.0333311, + 51.780308601 + ], + [ + 10.0340787, + 51.780931401 + ], + [ + 10.0348896, + 51.781551701 + ], + [ + 10.0353589, + 51.781890301 + ], + [ + 10.0359483, + 51.782283001 + ], + [ + 10.0362408, + 51.782476701 + ], + [ + 10.0373156, + 51.783133901 + ], + [ + 10.038455, + 51.783795201 + ], + [ + 10.0399067, + 51.784580201 + ], + [ + 10.041285, + 51.785272501 + ], + [ + 10.0425575, + 51.785872501 + ], + [ + 10.0436833, + 51.786363701 + ], + [ + 10.0449277, + 51.786883001 + ], + [ + 10.0461837, + 51.787385001 + ], + [ + 10.0471205, + 51.787732501 + ], + [ + 10.0487724, + 51.788320901 + ], + [ + 10.0491293, + 51.788441401 + ], + [ + 10.0506281, + 51.788917901 + ], + [ + 10.0519326, + 51.789301201 + ], + [ + 10.0533655, + 51.789688201 + ], + [ + 10.0541417, + 51.789897801 + ], + [ + 10.0559602, + 51.790339601 + ], + [ + 10.0579167, + 51.790751301 + ], + [ + 10.058097688, + 51.790786055 + ] + ] + } + }, + { + "identifier": "2026-014439--vi-bs.2026-04-21_08-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.68143171627345,9.926782899213409,51.67966384798508,9.926239963009566", + "point": "51.68143171627345,9.926782899213409", + "startLcPosition": "181", + "impact": { + "lower": "N\u00f6rten-Hardenberg", + "upper": "Northeim-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Northeim-West - N\u00f6rten-Hardenberg", + "coordinate": { + "lat": 51.68143171627345, + "long": 9.926782899213409 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag und Mittwoch zwischen dem 21.04.26 und dem 22.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A7: Hannover -> Kassel, zwischen 2.2 km hinter AS Northeim-West und 5.8 km vor AS N\u00f6rten-Hardenberg", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Northeim-West (AS) nach N\u00f6rten-Hardenberg (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.926782899, + 51.681431716 + ], + [ + 9.9267247, + 51.681178801 + ], + [ + 9.9264667, + 51.680304101 + ], + [ + 9.9264219, + 51.680168101 + ], + [ + 9.926239963, + 51.679663848 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de27", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.71482785847815,9.940837256028262,51.629331291449084,9.918472413206716", + "point": "51.71482785847815,9.940837256028262", + "startLcPosition": "182", + "impact": { + "lower": "Leineholz West", + "upper": "Schlochau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Schlochau - Leineholz West", + "coordinate": { + "lat": 51.71482785847815, + "long": 9.940837256028262 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 08.04.26 und dem 23.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26, 17.04.26", + "", + "A7: Hannover -> Kassel, zwischen 0.2 km hinter Schlochau und 2.8 km vor Leineholz West", + "", + "L\u00e4nge: 9.91 km | Maximale Durchfahrtsbreite: 11 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.940837256, + 51.714827858 + ], + [ + 9.9406319, + 51.714497901 + ], + [ + 9.9400226, + 51.713375401 + ], + [ + 9.9397898, + 51.712898801 + ], + [ + 9.9395825, + 51.712437701 + ], + [ + 9.9393302, + 51.711811401 + ], + [ + 9.9391535, + 51.711336201 + ], + [ + 9.9389563, + 51.710762401 + ], + [ + 9.9387486, + 51.710059701 + ], + [ + 9.9384822, + 51.709000101 + ], + [ + 9.9383573, + 51.708411001 + ], + [ + 9.9382755, + 51.707923101 + ], + [ + 9.9382338, + 51.707609301 + ], + [ + 9.9381812, + 51.707101301 + ], + [ + 9.9381227, + 51.706375201 + ], + [ + 9.9380745, + 51.705001901 + ], + [ + 9.9380686, + 51.704723701 + ], + [ + 9.938038, + 51.703333701 + ], + [ + 9.9379527, + 51.701304301 + ], + [ + 9.9378899, + 51.700327601 + ], + [ + 9.9378399, + 51.699860301 + ], + [ + 9.9377925, + 51.699461701 + ], + [ + 9.9376695, + 51.698855401 + ], + [ + 9.9374907, + 51.698098501 + ], + [ + 9.9373634, + 51.697694801 + ], + [ + 9.9371916, + 51.697192201 + ], + [ + 9.9370813, + 51.696918801 + ], + [ + 9.9367198, + 51.696088201 + ], + [ + 9.9365747, + 51.695811501 + ], + [ + 9.9363502, + 51.695456301 + ], + [ + 9.9361918, + 51.695187901 + ], + [ + 9.9357075, + 51.694431201 + ], + [ + 9.9353549, + 51.693942101 + ], + [ + 9.9350392, + 51.693517701 + ], + [ + 9.9346928, + 51.693107201 + ], + [ + 9.9343228, + 51.692685101 + ], + [ + 9.9338459, + 51.692165901 + ], + [ + 9.9331545, + 51.691508901 + ], + [ + 9.930824, + 51.689524001 + ], + [ + 9.930459, + 51.689214701 + ], + [ + 9.9298605, + 51.688699801 + ], + [ + 9.9291241, + 51.687926401 + ], + [ + 9.9289618, + 51.687737201 + ], + [ + 9.9288069, + 51.687545601 + ], + [ + 9.9286596, + 51.687351701 + ], + [ + 9.9285006, + 51.687127401 + ], + [ + 9.9283517, + 51.686900401 + ], + [ + 9.928213, + 51.686671001 + ], + [ + 9.9280847, + 51.686439201 + ], + [ + 9.9277053, + 51.685637101 + ], + [ + 9.9275293, + 51.685129301 + ], + [ + 9.9273973, + 51.684558901 + ], + [ + 9.9272778, + 51.683944401 + ], + [ + 9.9269747, + 51.682265201 + ], + [ + 9.9267247, + 51.681178801 + ], + [ + 9.9264667, + 51.680304101 + ], + [ + 9.9264219, + 51.680168101 + ], + [ + 9.9261233, + 51.679340501 + ], + [ + 9.9257688, + 51.678527801 + ], + [ + 9.9254845, + 51.678001801 + ], + [ + 9.9243369, + 51.675878201 + ], + [ + 9.9233092, + 51.674010401 + ], + [ + 9.9230749, + 51.673584401 + ], + [ + 9.922489, + 51.672519501 + ], + [ + 9.920104, + 51.668243901 + ], + [ + 9.9186278, + 51.665586001 + ], + [ + 9.9184735, + 51.665322001 + ], + [ + 9.9169926, + 51.662652001 + ], + [ + 9.9160333, + 51.660901101 + ], + [ + 9.9157915, + 51.660401701 + ], + [ + 9.9156184, + 51.659971901 + ], + [ + 9.9155, + 51.659622101 + ], + [ + 9.9153777, + 51.659138601 + ], + [ + 9.9152697, + 51.658355901 + ], + [ + 9.9152659, + 51.657792201 + ], + [ + 9.9153, + 51.657350801 + ], + [ + 9.9153754, + 51.656901201 + ], + [ + 9.9154589, + 51.656540601 + ], + [ + 9.915561, + 51.656179501 + ], + [ + 9.9159397, + 51.655195301 + ], + [ + 9.9164007, + 51.654142601 + ], + [ + 9.9183472, + 51.649655501 + ], + [ + 9.9208314, + 51.643957801 + ], + [ + 9.9210164, + 51.643490701 + ], + [ + 9.9211765, + 51.643025201 + ], + [ + 9.9212977, + 51.642561901 + ], + [ + 9.9213778, + 51.642143901 + ], + [ + 9.9214281, + 51.641735501 + ], + [ + 9.921462, + 51.641323201 + ], + [ + 9.9214622, + 51.640763401 + ], + [ + 9.921424, + 51.640292401 + ], + [ + 9.9213359, + 51.639725401 + ], + [ + 9.9207571, + 51.637008701 + ], + [ + 9.9205257, + 51.635689101 + ], + [ + 9.9203423, + 51.634426101 + ], + [ + 9.9201611, + 51.633003801 + ], + [ + 9.9200951, + 51.632610501 + ], + [ + 9.9200102, + 51.632201501 + ], + [ + 9.9199395, + 51.631978601 + ], + [ + 9.9198498, + 51.631704401 + ], + [ + 9.9197048, + 51.631345201 + ], + [ + 9.919524, + 51.630967101 + ], + [ + 9.9193159, + 51.630568501 + ], + [ + 9.9191712, + 51.630344001 + ], + [ + 9.9186034, + 51.629518701 + ], + [ + 9.918472413, + 51.629331291 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.71482785847815,9.940837256028262,51.629331291449084,9.918472413206716", + "point": "51.71482785847815,9.940837256028262", + "startLcPosition": "182", + "impact": { + "lower": "Leineholz West", + "upper": "Schlochau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Schlochau - Leineholz West", + "coordinate": { + "lat": 51.71482785847815, + "long": 9.940837256028262 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 08.04.26 und dem 23.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26, 17.04.26", + "", + "A7: Hannover -> Kassel, zwischen 0.2 km hinter Schlochau und 2.8 km vor Leineholz West", + "", + "L\u00e4nge: 9.91 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.940837256, + 51.714827858 + ], + [ + 9.9406319, + 51.714497901 + ], + [ + 9.9400226, + 51.713375401 + ], + [ + 9.9397898, + 51.712898801 + ], + [ + 9.9395825, + 51.712437701 + ], + [ + 9.9393302, + 51.711811401 + ], + [ + 9.9391535, + 51.711336201 + ], + [ + 9.9389563, + 51.710762401 + ], + [ + 9.9387486, + 51.710059701 + ], + [ + 9.9384822, + 51.709000101 + ], + [ + 9.9383573, + 51.708411001 + ], + [ + 9.9382755, + 51.707923101 + ], + [ + 9.9382338, + 51.707609301 + ], + [ + 9.9381812, + 51.707101301 + ], + [ + 9.9381227, + 51.706375201 + ], + [ + 9.9380745, + 51.705001901 + ], + [ + 9.9380686, + 51.704723701 + ], + [ + 9.938038, + 51.703333701 + ], + [ + 9.9379527, + 51.701304301 + ], + [ + 9.9378899, + 51.700327601 + ], + [ + 9.9378399, + 51.699860301 + ], + [ + 9.9377925, + 51.699461701 + ], + [ + 9.9376695, + 51.698855401 + ], + [ + 9.9374907, + 51.698098501 + ], + [ + 9.9373634, + 51.697694801 + ], + [ + 9.9371916, + 51.697192201 + ], + [ + 9.9370813, + 51.696918801 + ], + [ + 9.9367198, + 51.696088201 + ], + [ + 9.9365747, + 51.695811501 + ], + [ + 9.9363502, + 51.695456301 + ], + [ + 9.9361918, + 51.695187901 + ], + [ + 9.9357075, + 51.694431201 + ], + [ + 9.9353549, + 51.693942101 + ], + [ + 9.9350392, + 51.693517701 + ], + [ + 9.9346928, + 51.693107201 + ], + [ + 9.9343228, + 51.692685101 + ], + [ + 9.9338459, + 51.692165901 + ], + [ + 9.9331545, + 51.691508901 + ], + [ + 9.930824, + 51.689524001 + ], + [ + 9.930459, + 51.689214701 + ], + [ + 9.9298605, + 51.688699801 + ], + [ + 9.9291241, + 51.687926401 + ], + [ + 9.9289618, + 51.687737201 + ], + [ + 9.9288069, + 51.687545601 + ], + [ + 9.9286596, + 51.687351701 + ], + [ + 9.9285006, + 51.687127401 + ], + [ + 9.9283517, + 51.686900401 + ], + [ + 9.928213, + 51.686671001 + ], + [ + 9.9280847, + 51.686439201 + ], + [ + 9.9277053, + 51.685637101 + ], + [ + 9.9275293, + 51.685129301 + ], + [ + 9.9273973, + 51.684558901 + ], + [ + 9.9272778, + 51.683944401 + ], + [ + 9.9269747, + 51.682265201 + ], + [ + 9.9267247, + 51.681178801 + ], + [ + 9.9264667, + 51.680304101 + ], + [ + 9.9264219, + 51.680168101 + ], + [ + 9.9261233, + 51.679340501 + ], + [ + 9.9257688, + 51.678527801 + ], + [ + 9.9254845, + 51.678001801 + ], + [ + 9.9243369, + 51.675878201 + ], + [ + 9.9233092, + 51.674010401 + ], + [ + 9.9230749, + 51.673584401 + ], + [ + 9.922489, + 51.672519501 + ], + [ + 9.920104, + 51.668243901 + ], + [ + 9.9186278, + 51.665586001 + ], + [ + 9.9184735, + 51.665322001 + ], + [ + 9.9169926, + 51.662652001 + ], + [ + 9.9160333, + 51.660901101 + ], + [ + 9.9157915, + 51.660401701 + ], + [ + 9.9156184, + 51.659971901 + ], + [ + 9.9155, + 51.659622101 + ], + [ + 9.9153777, + 51.659138601 + ], + [ + 9.9152697, + 51.658355901 + ], + [ + 9.9152659, + 51.657792201 + ], + [ + 9.9153, + 51.657350801 + ], + [ + 9.9153754, + 51.656901201 + ], + [ + 9.9154589, + 51.656540601 + ], + [ + 9.915561, + 51.656179501 + ], + [ + 9.9159397, + 51.655195301 + ], + [ + 9.9164007, + 51.654142601 + ], + [ + 9.9183472, + 51.649655501 + ], + [ + 9.9208314, + 51.643957801 + ], + [ + 9.9210164, + 51.643490701 + ], + [ + 9.9211765, + 51.643025201 + ], + [ + 9.9212977, + 51.642561901 + ], + [ + 9.9213778, + 51.642143901 + ], + [ + 9.9214281, + 51.641735501 + ], + [ + 9.921462, + 51.641323201 + ], + [ + 9.9214622, + 51.640763401 + ], + [ + 9.921424, + 51.640292401 + ], + [ + 9.9213359, + 51.639725401 + ], + [ + 9.9207571, + 51.637008701 + ], + [ + 9.9205257, + 51.635689101 + ], + [ + 9.9203423, + 51.634426101 + ], + [ + 9.9201611, + 51.633003801 + ], + [ + 9.9200951, + 51.632610501 + ], + [ + 9.9200102, + 51.632201501 + ], + [ + 9.9199395, + 51.631978601 + ], + [ + 9.9198498, + 51.631704401 + ], + [ + 9.9197048, + 51.631345201 + ], + [ + 9.919524, + 51.630967101 + ], + [ + 9.9193159, + 51.630568501 + ], + [ + 9.9191712, + 51.630344001 + ], + [ + 9.9186034, + 51.629518701 + ], + [ + 9.918472413, + 51.629331291 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.79078605543588,10.058097688434712,51.883828342638544,10.129756579866829", + "point": "51.79078605543588,10.058097688434712", + "startLcPosition": "184", + "impact": { + "lower": "Seesen (Harz)", + "upper": "Am Bierberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Am Bierberg - Seesen (Harz)", + "coordinate": { + "lat": 51.79078605543588, + "long": 10.058097688434712 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 01.04.26 und dem 15.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26", + "", + "A7: Kassel -> Hannover, zwischen 2.0 km hinter Am Bierberg und AS Seesen (Harz)", + "", + "L\u00e4nge: 12.33 km | Maximale Durchfahrtsbreite: 11 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.058097688, + 51.790786055 + ], + [ + 10.0584057, + 51.790845201 + ], + [ + 10.0586297, + 51.790885301 + ], + [ + 10.0589892, + 51.790949801 + ], + [ + 10.0597787, + 51.791091301 + ], + [ + 10.0606631, + 51.791235001 + ], + [ + 10.0621914, + 51.791468701 + ], + [ + 10.0643354, + 51.791746401 + ], + [ + 10.0651737, + 51.791840901 + ], + [ + 10.0672398, + 51.792038301 + ], + [ + 10.0695787, + 51.792261501 + ], + [ + 10.0712396, + 51.792445701 + ], + [ + 10.072636, + 51.792634601 + ], + [ + 10.0738508, + 51.792853001 + ], + [ + 10.0749417, + 51.793086501 + ], + [ + 10.0765429, + 51.793501601 + ], + [ + 10.0780607, + 51.793981201 + ], + [ + 10.0793665, + 51.794475501 + ], + [ + 10.0810548, + 51.795248001 + ], + [ + 10.082045, + 51.795783901 + ], + [ + 10.0831653, + 51.796467501 + ], + [ + 10.083548, + 51.796734501 + ], + [ + 10.0842961, + 51.797271601 + ], + [ + 10.0847545, + 51.797641601 + ], + [ + 10.0855571, + 51.798350501 + ], + [ + 10.0862455, + 51.799049901 + ], + [ + 10.0869426, + 51.799854901 + ], + [ + 10.0874367, + 51.800499301 + ], + [ + 10.0882903, + 51.801659001 + ], + [ + 10.0886742, + 51.802165301 + ], + [ + 10.089255, + 51.802884201 + ], + [ + 10.0893484, + 51.802995001 + ], + [ + 10.0899359, + 51.803668701 + ], + [ + 10.0902313, + 51.803994001 + ], + [ + 10.0904662, + 51.804252701 + ], + [ + 10.0914768, + 51.805273401 + ], + [ + 10.0920474, + 51.805828501 + ], + [ + 10.0921682, + 51.805943401 + ], + [ + 10.092911, + 51.806595301 + ], + [ + 10.0935984, + 51.807155801 + ], + [ + 10.0943099, + 51.807735401 + ], + [ + 10.0950854, + 51.808324001 + ], + [ + 10.0966206, + 51.809402801 + ], + [ + 10.0982339, + 51.810447801 + ], + [ + 10.0984846, + 51.810607401 + ], + [ + 10.1003274, + 51.811793101 + ], + [ + 10.1018347, + 51.812865701 + ], + [ + 10.1026835, + 51.813510701 + ], + [ + 10.103447, + 51.814119401 + ], + [ + 10.1042814, + 51.814821801 + ], + [ + 10.1045862, + 51.815097901 + ], + [ + 10.1058837, + 51.816311601 + ], + [ + 10.1067816, + 51.817276301 + ], + [ + 10.1076387, + 51.818241101 + ], + [ + 10.1087031, + 51.819617201 + ], + [ + 10.1093762, + 51.820604401 + ], + [ + 10.1100207, + 51.821642901 + ], + [ + 10.1104616, + 51.822419701 + ], + [ + 10.1111283, + 51.823651601 + ], + [ + 10.1113952, + 51.824165601 + ], + [ + 10.1121363, + 51.825592701 + ], + [ + 10.1126758, + 51.826631701 + ], + [ + 10.1134799, + 51.828180301 + ], + [ + 10.1144835, + 51.830112801 + ], + [ + 10.1155141, + 51.832031001 + ], + [ + 10.115959, + 51.832940201 + ], + [ + 10.1161678, + 51.833367001 + ], + [ + 10.117247, + 51.835482801 + ], + [ + 10.1181898, + 51.837409201 + ], + [ + 10.1183, + 51.837649701 + ], + [ + 10.1188391, + 51.838826201 + ], + [ + 10.1193599, + 51.839940501 + ], + [ + 10.1201056, + 51.841650901 + ], + [ + 10.120642, + 51.842945901 + ], + [ + 10.1213554, + 51.844680901 + ], + [ + 10.1220225, + 51.846498801 + ], + [ + 10.1222732, + 51.847166901 + ], + [ + 10.1229929, + 51.849337201 + ], + [ + 10.123079, + 51.849602001 + ], + [ + 10.123833, + 51.852102801 + ], + [ + 10.1241048, + 51.853100801 + ], + [ + 10.1248755, + 51.856024201 + ], + [ + 10.1255469, + 51.859236301 + ], + [ + 10.1256356, + 51.859680001 + ], + [ + 10.1257852, + 51.860487001 + ], + [ + 10.126061, + 51.862321901 + ], + [ + 10.1263249, + 51.864439601 + ], + [ + 10.1265436, + 51.866965201 + ], + [ + 10.1265666, + 51.867202101 + ], + [ + 10.1271127, + 51.872522201 + ], + [ + 10.1273943, + 51.874468201 + ], + [ + 10.1275452, + 51.875341101 + ], + [ + 10.1277208, + 51.876124001 + ], + [ + 10.1278103, + 51.876522901 + ], + [ + 10.1280775, + 51.877763501 + ], + [ + 10.1283361, + 51.878816601 + ], + [ + 10.128402, + 51.879089701 + ], + [ + 10.1286954, + 51.880183501 + ], + [ + 10.129277, + 51.882216101 + ], + [ + 10.1293828, + 51.882572001 + ], + [ + 10.129715, + 51.883689801 + ], + [ + 10.12975658, + 51.883828343 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.79078605543588,10.058097688434712,51.883828342638544,10.129756579866829", + "point": "51.79078605543588,10.058097688434712", + "startLcPosition": "184", + "impact": { + "lower": "Seesen (Harz)", + "upper": "Am Bierberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Am Bierberg - Seesen (Harz)", + "coordinate": { + "lat": 51.79078605543588, + "long": 10.058097688434712 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 01.04.26 und dem 15.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26", + "", + "A7: Kassel -> Hannover, zwischen 2.0 km hinter Am Bierberg und AS Seesen (Harz)", + "", + "L\u00e4nge: 12.33 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.058097688, + 51.790786055 + ], + [ + 10.0584057, + 51.790845201 + ], + [ + 10.0586297, + 51.790885301 + ], + [ + 10.0589892, + 51.790949801 + ], + [ + 10.0597787, + 51.791091301 + ], + [ + 10.0606631, + 51.791235001 + ], + [ + 10.0621914, + 51.791468701 + ], + [ + 10.0643354, + 51.791746401 + ], + [ + 10.0651737, + 51.791840901 + ], + [ + 10.0672398, + 51.792038301 + ], + [ + 10.0695787, + 51.792261501 + ], + [ + 10.0712396, + 51.792445701 + ], + [ + 10.072636, + 51.792634601 + ], + [ + 10.0738508, + 51.792853001 + ], + [ + 10.0749417, + 51.793086501 + ], + [ + 10.0765429, + 51.793501601 + ], + [ + 10.0780607, + 51.793981201 + ], + [ + 10.0793665, + 51.794475501 + ], + [ + 10.0810548, + 51.795248001 + ], + [ + 10.082045, + 51.795783901 + ], + [ + 10.0831653, + 51.796467501 + ], + [ + 10.083548, + 51.796734501 + ], + [ + 10.0842961, + 51.797271601 + ], + [ + 10.0847545, + 51.797641601 + ], + [ + 10.0855571, + 51.798350501 + ], + [ + 10.0862455, + 51.799049901 + ], + [ + 10.0869426, + 51.799854901 + ], + [ + 10.0874367, + 51.800499301 + ], + [ + 10.0882903, + 51.801659001 + ], + [ + 10.0886742, + 51.802165301 + ], + [ + 10.089255, + 51.802884201 + ], + [ + 10.0893484, + 51.802995001 + ], + [ + 10.0899359, + 51.803668701 + ], + [ + 10.0902313, + 51.803994001 + ], + [ + 10.0904662, + 51.804252701 + ], + [ + 10.0914768, + 51.805273401 + ], + [ + 10.0920474, + 51.805828501 + ], + [ + 10.0921682, + 51.805943401 + ], + [ + 10.092911, + 51.806595301 + ], + [ + 10.0935984, + 51.807155801 + ], + [ + 10.0943099, + 51.807735401 + ], + [ + 10.0950854, + 51.808324001 + ], + [ + 10.0966206, + 51.809402801 + ], + [ + 10.0982339, + 51.810447801 + ], + [ + 10.0984846, + 51.810607401 + ], + [ + 10.1003274, + 51.811793101 + ], + [ + 10.1018347, + 51.812865701 + ], + [ + 10.1026835, + 51.813510701 + ], + [ + 10.103447, + 51.814119401 + ], + [ + 10.1042814, + 51.814821801 + ], + [ + 10.1045862, + 51.815097901 + ], + [ + 10.1058837, + 51.816311601 + ], + [ + 10.1067816, + 51.817276301 + ], + [ + 10.1076387, + 51.818241101 + ], + [ + 10.1087031, + 51.819617201 + ], + [ + 10.1093762, + 51.820604401 + ], + [ + 10.1100207, + 51.821642901 + ], + [ + 10.1104616, + 51.822419701 + ], + [ + 10.1111283, + 51.823651601 + ], + [ + 10.1113952, + 51.824165601 + ], + [ + 10.1121363, + 51.825592701 + ], + [ + 10.1126758, + 51.826631701 + ], + [ + 10.1134799, + 51.828180301 + ], + [ + 10.1144835, + 51.830112801 + ], + [ + 10.1155141, + 51.832031001 + ], + [ + 10.115959, + 51.832940201 + ], + [ + 10.1161678, + 51.833367001 + ], + [ + 10.117247, + 51.835482801 + ], + [ + 10.1181898, + 51.837409201 + ], + [ + 10.1183, + 51.837649701 + ], + [ + 10.1188391, + 51.838826201 + ], + [ + 10.1193599, + 51.839940501 + ], + [ + 10.1201056, + 51.841650901 + ], + [ + 10.120642, + 51.842945901 + ], + [ + 10.1213554, + 51.844680901 + ], + [ + 10.1220225, + 51.846498801 + ], + [ + 10.1222732, + 51.847166901 + ], + [ + 10.1229929, + 51.849337201 + ], + [ + 10.123079, + 51.849602001 + ], + [ + 10.123833, + 51.852102801 + ], + [ + 10.1241048, + 51.853100801 + ], + [ + 10.1248755, + 51.856024201 + ], + [ + 10.1255469, + 51.859236301 + ], + [ + 10.1256356, + 51.859680001 + ], + [ + 10.1257852, + 51.860487001 + ], + [ + 10.126061, + 51.862321901 + ], + [ + 10.1263249, + 51.864439601 + ], + [ + 10.1265436, + 51.866965201 + ], + [ + 10.1265666, + 51.867202101 + ], + [ + 10.1271127, + 51.872522201 + ], + [ + 10.1273943, + 51.874468201 + ], + [ + 10.1275452, + 51.875341101 + ], + [ + 10.1277208, + 51.876124001 + ], + [ + 10.1278103, + 51.876522901 + ], + [ + 10.1280775, + 51.877763501 + ], + [ + 10.1283361, + 51.878816601 + ], + [ + 10.128402, + 51.879089701 + ], + [ + 10.1286954, + 51.880183501 + ], + [ + 10.129277, + 51.882216101 + ], + [ + 10.1293828, + 51.882572001 + ], + [ + 10.129715, + 51.883689801 + ], + [ + 10.12975658, + 51.883828343 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.79089143679796,10.058044970707453,51.71482785847815,9.940837256028262", + "point": "51.79089143679796,10.058044970707453", + "startLcPosition": "185", + "impact": { + "lower": "Northeim-West", + "upper": "Echte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Echte - Northeim-West", + "coordinate": { + "lat": 51.79089143679796, + "long": 10.058044970707453 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 20.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26, 17.04.26", + "", + "A7: Hannover -> Kassel, zwischen AS Echte und 1.7 km vor AS Northeim-West", + "", + "L\u00e4nge: 12.39 km | Maximale Durchfahrtsbreite: 11 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.058044971, + 51.790891437 + ], + [ + 10.0576177, + 51.790809101 + ], + [ + 10.0568827, + 51.790652801 + ], + [ + 10.0559012, + 51.790444401 + ], + [ + 10.0540619, + 51.789997001 + ], + [ + 10.0518609, + 51.789409301 + ], + [ + 10.0505865, + 51.789033201 + ], + [ + 10.0489261, + 51.788496901 + ], + [ + 10.0485662, + 51.788375301 + ], + [ + 10.047028, + 51.787834101 + ], + [ + 10.0461026, + 51.787493801 + ], + [ + 10.0454185, + 51.787228601 + ], + [ + 10.0435882, + 51.786480501 + ], + [ + 10.0424178, + 51.785964201 + ], + [ + 10.0411448, + 51.785381101 + ], + [ + 10.0405438, + 51.785083301 + ], + [ + 10.0397649, + 51.784697401 + ], + [ + 10.0383014, + 51.783916301 + ], + [ + 10.0371609, + 51.783252601 + ], + [ + 10.0363954, + 51.782786701 + ], + [ + 10.035982, + 51.782522001 + ], + [ + 10.0357466, + 51.782370901 + ], + [ + 10.035188, + 51.782000801 + ], + [ + 10.0345657, + 51.781544401 + ], + [ + 10.0339425, + 51.781071001 + ], + [ + 10.0333087, + 51.780537101 + ], + [ + 10.0327091, + 51.780005001 + ], + [ + 10.0322483, + 51.779568901 + ], + [ + 10.0317757, + 51.779070101 + ], + [ + 10.0310998, + 51.778326001 + ], + [ + 10.030538, + 51.777616501 + ], + [ + 10.0302367, + 51.777190101 + ], + [ + 10.0297801, + 51.776504601 + ], + [ + 10.0288532, + 51.775023801 + ], + [ + 10.0280389, + 51.773770101 + ], + [ + 10.0272263, + 51.772590001 + ], + [ + 10.0263244, + 51.771399801 + ], + [ + 10.0253969, + 51.770243001 + ], + [ + 10.024142, + 51.768812801 + ], + [ + 10.0236367, + 51.768273801 + ], + [ + 10.0229897, + 51.767601301 + ], + [ + 10.0216726, + 51.766303101 + ], + [ + 10.0205798, + 51.765310201 + ], + [ + 10.0201435, + 51.764923701 + ], + [ + 10.0190931, + 51.764022901 + ], + [ + 10.0185784, + 51.763596101 + ], + [ + 10.0174222, + 51.762617901 + ], + [ + 10.0165701, + 51.761845701 + ], + [ + 10.0157835, + 51.761045601 + ], + [ + 10.0152209, + 51.760426201 + ], + [ + 10.0146783, + 51.759800801 + ], + [ + 10.0143546, + 51.759400301 + ], + [ + 10.0140599, + 51.758998401 + ], + [ + 10.0137457, + 51.758593401 + ], + [ + 10.0134686, + 51.758175801 + ], + [ + 10.0131262, + 51.757649401 + ], + [ + 10.0127842, + 51.757081201 + ], + [ + 10.0124474, + 51.756464901 + ], + [ + 10.0121861, + 51.755984301 + ], + [ + 10.0117735, + 51.755058401 + ], + [ + 10.0113569, + 51.754020701 + ], + [ + 10.0110734, + 51.753293701 + ], + [ + 10.0107202, + 51.752393701 + ], + [ + 10.0104193, + 51.751627001 + ], + [ + 10.0096212, + 51.749632601 + ], + [ + 10.0094406, + 51.749176301 + ], + [ + 10.0088445, + 51.747670301 + ], + [ + 10.0087218, + 51.747365201 + ], + [ + 10.0083344, + 51.746434001 + ], + [ + 10.0080652, + 51.745875701 + ], + [ + 10.0077875, + 51.745366101 + ], + [ + 10.0075294, + 51.744961301 + ], + [ + 10.0072341, + 51.744543001 + ], + [ + 10.0068391, + 51.744044401 + ], + [ + 10.0063613, + 51.743536601 + ], + [ + 10.0056668, + 51.742883501 + ], + [ + 10.0048762, + 51.742235901 + ], + [ + 10.0040103, + 51.741634701 + ], + [ + 10.0029322, + 51.741000801 + ], + [ + 10.0025177, + 51.740789301 + ], + [ + 10.0015864, + 51.740347801 + ], + [ + 10.0007626, + 51.740010101 + ], + [ + 9.9993502, + 51.739522601 + ], + [ + 9.9986683, + 51.739313101 + ], + [ + 9.9972142, + 51.738956401 + ], + [ + 9.995978, + 51.738727601 + ], + [ + 9.9952179, + 51.738620501 + ], + [ + 9.994282, + 51.738505801 + ], + [ + 9.991966, + 51.738296401 + ], + [ + 9.9900608, + 51.738151201 + ], + [ + 9.9889425, + 51.738050501 + ], + [ + 9.9880345, + 51.737948201 + ], + [ + 9.9869902, + 51.737808601 + ], + [ + 9.9860723, + 51.737658101 + ], + [ + 9.9851882, + 51.737505401 + ], + [ + 9.9840751, + 51.737287701 + ], + [ + 9.9829758, + 51.737050001 + ], + [ + 9.9821525, + 51.736856001 + ], + [ + 9.9812561, + 51.736623301 + ], + [ + 9.9803986, + 51.736376201 + ], + [ + 9.9798615, + 51.736209001 + ], + [ + 9.9792646, + 51.736012201 + ], + [ + 9.9784127, + 51.735714501 + ], + [ + 9.9774562, + 51.735375801 + ], + [ + 9.9750548, + 51.734478801 + ], + [ + 9.973622, + 51.733974901 + ], + [ + 9.9728232, + 51.733665801 + ], + [ + 9.9725518, + 51.733563001 + ], + [ + 9.9692864, + 51.732328001 + ], + [ + 9.9686883, + 51.732100601 + ], + [ + 9.9674801, + 51.731649301 + ], + [ + 9.9656919, + 51.730981401 + ], + [ + 9.9627598, + 51.729886201 + ], + [ + 9.9621744, + 51.729667501 + ], + [ + 9.9585084, + 51.728284001 + ], + [ + 9.9573076, + 51.727803901 + ], + [ + 9.9561687, + 51.727317101 + ], + [ + 9.955088, + 51.726823501 + ], + [ + 9.9540874, + 51.726327701 + ], + [ + 9.9535343, + 51.726034701 + ], + [ + 9.9515116, + 51.724898701 + ], + [ + 9.9502635, + 51.724113301 + ], + [ + 9.9500951, + 51.724003301 + ], + [ + 9.9494193, + 51.723556601 + ], + [ + 9.9483239, + 51.722759001 + ], + [ + 9.9473594, + 51.722036801 + ], + [ + 9.9466425, + 51.721450401 + ], + [ + 9.9459622, + 51.720872101 + ], + [ + 9.9451759, + 51.720166201 + ], + [ + 9.9445553, + 51.719566901 + ], + [ + 9.9440787, + 51.719081501 + ], + [ + 9.9433646, + 51.718308801 + ], + [ + 9.9430064, + 51.717876201 + ], + [ + 9.9426772, + 51.717457701 + ], + [ + 9.9425206, + 51.717255601 + ], + [ + 9.9420587, + 51.716659601 + ], + [ + 9.9411453, + 51.715322801 + ], + [ + 9.940837256, + 51.714827858 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.79089143679796,10.058044970707453,51.71482785847815,9.940837256028262", + "point": "51.79089143679796,10.058044970707453", + "startLcPosition": "185", + "impact": { + "lower": "Northeim-West", + "upper": "Echte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Echte - Northeim-West", + "coordinate": { + "lat": 51.79089143679796, + "long": 10.058044970707453 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 20.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26, 17.04.26", + "", + "A7: Hannover -> Kassel, zwischen AS Echte und 1.7 km vor AS Northeim-West", + "", + "L\u00e4nge: 12.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.058044971, + 51.790891437 + ], + [ + 10.0576177, + 51.790809101 + ], + [ + 10.0568827, + 51.790652801 + ], + [ + 10.0559012, + 51.790444401 + ], + [ + 10.0540619, + 51.789997001 + ], + [ + 10.0518609, + 51.789409301 + ], + [ + 10.0505865, + 51.789033201 + ], + [ + 10.0489261, + 51.788496901 + ], + [ + 10.0485662, + 51.788375301 + ], + [ + 10.047028, + 51.787834101 + ], + [ + 10.0461026, + 51.787493801 + ], + [ + 10.0454185, + 51.787228601 + ], + [ + 10.0435882, + 51.786480501 + ], + [ + 10.0424178, + 51.785964201 + ], + [ + 10.0411448, + 51.785381101 + ], + [ + 10.0405438, + 51.785083301 + ], + [ + 10.0397649, + 51.784697401 + ], + [ + 10.0383014, + 51.783916301 + ], + [ + 10.0371609, + 51.783252601 + ], + [ + 10.0363954, + 51.782786701 + ], + [ + 10.035982, + 51.782522001 + ], + [ + 10.0357466, + 51.782370901 + ], + [ + 10.035188, + 51.782000801 + ], + [ + 10.0345657, + 51.781544401 + ], + [ + 10.0339425, + 51.781071001 + ], + [ + 10.0333087, + 51.780537101 + ], + [ + 10.0327091, + 51.780005001 + ], + [ + 10.0322483, + 51.779568901 + ], + [ + 10.0317757, + 51.779070101 + ], + [ + 10.0310998, + 51.778326001 + ], + [ + 10.030538, + 51.777616501 + ], + [ + 10.0302367, + 51.777190101 + ], + [ + 10.0297801, + 51.776504601 + ], + [ + 10.0288532, + 51.775023801 + ], + [ + 10.0280389, + 51.773770101 + ], + [ + 10.0272263, + 51.772590001 + ], + [ + 10.0263244, + 51.771399801 + ], + [ + 10.0253969, + 51.770243001 + ], + [ + 10.024142, + 51.768812801 + ], + [ + 10.0236367, + 51.768273801 + ], + [ + 10.0229897, + 51.767601301 + ], + [ + 10.0216726, + 51.766303101 + ], + [ + 10.0205798, + 51.765310201 + ], + [ + 10.0201435, + 51.764923701 + ], + [ + 10.0190931, + 51.764022901 + ], + [ + 10.0185784, + 51.763596101 + ], + [ + 10.0174222, + 51.762617901 + ], + [ + 10.0165701, + 51.761845701 + ], + [ + 10.0157835, + 51.761045601 + ], + [ + 10.0152209, + 51.760426201 + ], + [ + 10.0146783, + 51.759800801 + ], + [ + 10.0143546, + 51.759400301 + ], + [ + 10.0140599, + 51.758998401 + ], + [ + 10.0137457, + 51.758593401 + ], + [ + 10.0134686, + 51.758175801 + ], + [ + 10.0131262, + 51.757649401 + ], + [ + 10.0127842, + 51.757081201 + ], + [ + 10.0124474, + 51.756464901 + ], + [ + 10.0121861, + 51.755984301 + ], + [ + 10.0117735, + 51.755058401 + ], + [ + 10.0113569, + 51.754020701 + ], + [ + 10.0110734, + 51.753293701 + ], + [ + 10.0107202, + 51.752393701 + ], + [ + 10.0104193, + 51.751627001 + ], + [ + 10.0096212, + 51.749632601 + ], + [ + 10.0094406, + 51.749176301 + ], + [ + 10.0088445, + 51.747670301 + ], + [ + 10.0087218, + 51.747365201 + ], + [ + 10.0083344, + 51.746434001 + ], + [ + 10.0080652, + 51.745875701 + ], + [ + 10.0077875, + 51.745366101 + ], + [ + 10.0075294, + 51.744961301 + ], + [ + 10.0072341, + 51.744543001 + ], + [ + 10.0068391, + 51.744044401 + ], + [ + 10.0063613, + 51.743536601 + ], + [ + 10.0056668, + 51.742883501 + ], + [ + 10.0048762, + 51.742235901 + ], + [ + 10.0040103, + 51.741634701 + ], + [ + 10.0029322, + 51.741000801 + ], + [ + 10.0025177, + 51.740789301 + ], + [ + 10.0015864, + 51.740347801 + ], + [ + 10.0007626, + 51.740010101 + ], + [ + 9.9993502, + 51.739522601 + ], + [ + 9.9986683, + 51.739313101 + ], + [ + 9.9972142, + 51.738956401 + ], + [ + 9.995978, + 51.738727601 + ], + [ + 9.9952179, + 51.738620501 + ], + [ + 9.994282, + 51.738505801 + ], + [ + 9.991966, + 51.738296401 + ], + [ + 9.9900608, + 51.738151201 + ], + [ + 9.9889425, + 51.738050501 + ], + [ + 9.9880345, + 51.737948201 + ], + [ + 9.9869902, + 51.737808601 + ], + [ + 9.9860723, + 51.737658101 + ], + [ + 9.9851882, + 51.737505401 + ], + [ + 9.9840751, + 51.737287701 + ], + [ + 9.9829758, + 51.737050001 + ], + [ + 9.9821525, + 51.736856001 + ], + [ + 9.9812561, + 51.736623301 + ], + [ + 9.9803986, + 51.736376201 + ], + [ + 9.9798615, + 51.736209001 + ], + [ + 9.9792646, + 51.736012201 + ], + [ + 9.9784127, + 51.735714501 + ], + [ + 9.9774562, + 51.735375801 + ], + [ + 9.9750548, + 51.734478801 + ], + [ + 9.973622, + 51.733974901 + ], + [ + 9.9728232, + 51.733665801 + ], + [ + 9.9725518, + 51.733563001 + ], + [ + 9.9692864, + 51.732328001 + ], + [ + 9.9686883, + 51.732100601 + ], + [ + 9.9674801, + 51.731649301 + ], + [ + 9.9656919, + 51.730981401 + ], + [ + 9.9627598, + 51.729886201 + ], + [ + 9.9621744, + 51.729667501 + ], + [ + 9.9585084, + 51.728284001 + ], + [ + 9.9573076, + 51.727803901 + ], + [ + 9.9561687, + 51.727317101 + ], + [ + 9.955088, + 51.726823501 + ], + [ + 9.9540874, + 51.726327701 + ], + [ + 9.9535343, + 51.726034701 + ], + [ + 9.9515116, + 51.724898701 + ], + [ + 9.9502635, + 51.724113301 + ], + [ + 9.9500951, + 51.724003301 + ], + [ + 9.9494193, + 51.723556601 + ], + [ + 9.9483239, + 51.722759001 + ], + [ + 9.9473594, + 51.722036801 + ], + [ + 9.9466425, + 51.721450401 + ], + [ + 9.9459622, + 51.720872101 + ], + [ + 9.9451759, + 51.720166201 + ], + [ + 9.9445553, + 51.719566901 + ], + [ + 9.9440787, + 51.719081501 + ], + [ + 9.9433646, + 51.718308801 + ], + [ + 9.9430064, + 51.717876201 + ], + [ + 9.9426772, + 51.717457701 + ], + [ + 9.9425206, + 51.717255601 + ], + [ + 9.9420587, + 51.716659601 + ], + [ + 9.9411453, + 51.715322801 + ], + [ + 9.940837256, + 51.714827858 + ] + ] + } + }, + { + "identifier": "2026-013072--vi-bs.2026-04-20_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.814126700981944,10.103455671756883,51.81635578030838,10.105924819216561", + "point": "51.814126700981944,10.103455671756883", + "startLcPosition": "186", + "impact": { + "lower": "Schwalenberg", + "upper": "Wetterschacht", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Wetterschacht - Schwalenberg", + "coordinate": { + "lat": 51.814126700981944, + "long": 10.103455671756883 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 12:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 1.4 km hinter Wetterschacht und 4.6 km vor Schwalenberg", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Echte (AS) nach Seesen (AS) Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.103455672, + 51.814126701 + ], + [ + 10.1042814, + 51.814821801 + ], + [ + 10.1045862, + 51.815097901 + ], + [ + 10.1058837, + 51.816311601 + ], + [ + 10.105924819, + 51.81635578 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.883828342638544,10.129756579866829,51.99156978450431,10.155313125836134", + "point": "51.883828342638544,10.129756579866829", + "startLcPosition": "187", + "impact": { + "lower": "Bockenem", + "upper": "Schwalenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Schwalenberg - Bockenem", + "coordinate": { + "lat": 51.883828342638544, + "long": 10.129756579866829 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "", + "A7: Kassel -> Hannover, zwischen 3.1 km hinter Schwalenberg und 0.9 km vor AS Bockenem", + "", + "L\u00e4nge: 12.35 km | Maximale Durchfahrtsbreite: 10 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.12975658, + 51.883828343 + ], + [ + 10.1298099, + 51.884006001 + ], + [ + 10.1305168, + 51.886587501 + ], + [ + 10.1306904, + 51.887218901 + ], + [ + 10.1308612, + 51.887910301 + ], + [ + 10.1309347, + 51.888205901 + ], + [ + 10.130962, + 51.888321201 + ], + [ + 10.1313672, + 51.890005101 + ], + [ + 10.1315937, + 51.891021701 + ], + [ + 10.1316894, + 51.891500101 + ], + [ + 10.1318056, + 51.892149301 + ], + [ + 10.1320181, + 51.893220101 + ], + [ + 10.1322469, + 51.894357601 + ], + [ + 10.1323449, + 51.894889601 + ], + [ + 10.1328156, + 51.897561201 + ], + [ + 10.1331878, + 51.900035001 + ], + [ + 10.1332692, + 51.900635201 + ], + [ + 10.1336186, + 51.903562201 + ], + [ + 10.1338179, + 51.905551101 + ], + [ + 10.1338346, + 51.905723001 + ], + [ + 10.1340373, + 51.907626201 + ], + [ + 10.1341903, + 51.908954001 + ], + [ + 10.1343803, + 51.910315101 + ], + [ + 10.1347493, + 51.912252301 + ], + [ + 10.1350733, + 51.913599401 + ], + [ + 10.1354901, + 51.914970201 + ], + [ + 10.1357315, + 51.915614901 + ], + [ + 10.1359249, + 51.916103801 + ], + [ + 10.136384, + 51.917165401 + ], + [ + 10.1367654, + 51.918016101 + ], + [ + 10.1377239, + 51.919817801 + ], + [ + 10.1378907, + 51.920100401 + ], + [ + 10.1387286, + 51.921407101 + ], + [ + 10.1394453, + 51.922424401 + ], + [ + 10.1397278, + 51.922805401 + ], + [ + 10.1410117, + 51.924530001 + ], + [ + 10.1421141, + 51.926089501 + ], + [ + 10.1427046, + 51.927040101 + ], + [ + 10.1432568, + 51.928009301 + ], + [ + 10.1434871, + 51.928450201 + ], + [ + 10.1436978, + 51.928891001 + ], + [ + 10.1441044, + 51.929797101 + ], + [ + 10.1442946, + 51.930317701 + ], + [ + 10.1445706, + 51.931043201 + ], + [ + 10.1447812, + 51.931644101 + ], + [ + 10.1450343, + 51.932541101 + ], + [ + 10.1452724, + 51.933534001 + ], + [ + 10.1454524, + 51.934685801 + ], + [ + 10.1455246, + 51.935196701 + ], + [ + 10.145648, + 51.936570301 + ], + [ + 10.1456734, + 51.937208701 + ], + [ + 10.1456705, + 51.937566201 + ], + [ + 10.1456575, + 51.937883101 + ], + [ + 10.145582, + 51.938801901 + ], + [ + 10.1454755, + 51.939629301 + ], + [ + 10.145295, + 51.940686901 + ], + [ + 10.1451108, + 51.941518001 + ], + [ + 10.1448795, + 51.942396301 + ], + [ + 10.1448044, + 51.942660501 + ], + [ + 10.1444254, + 51.943818201 + ], + [ + 10.1443783, + 51.943966201 + ], + [ + 10.1443386, + 51.944086201 + ], + [ + 10.1439637, + 51.945090001 + ], + [ + 10.1435846, + 51.946090901 + ], + [ + 10.1427777, + 51.948009301 + ], + [ + 10.1420771, + 51.949659301 + ], + [ + 10.1419854, + 51.949894901 + ], + [ + 10.1412456, + 51.951900601 + ], + [ + 10.1409396, + 51.952893601 + ], + [ + 10.140667, + 51.953817601 + ], + [ + 10.1404422, + 51.954757901 + ], + [ + 10.1402637, + 51.955765301 + ], + [ + 10.1401388, + 51.956762001 + ], + [ + 10.1400815, + 51.957792701 + ], + [ + 10.1401115, + 51.958843801 + ], + [ + 10.1401746, + 51.959525701 + ], + [ + 10.1403292, + 51.960504701 + ], + [ + 10.1405595, + 51.961502301 + ], + [ + 10.14068, + 51.961958101 + ], + [ + 10.1408322, + 51.962413201 + ], + [ + 10.1409921, + 51.962875001 + ], + [ + 10.1413151, + 51.963697301 + ], + [ + 10.141589, + 51.964304401 + ], + [ + 10.1418739, + 51.964884301 + ], + [ + 10.1421494, + 51.965372801 + ], + [ + 10.1424212, + 51.965863301 + ], + [ + 10.1426512, + 51.966232801 + ], + [ + 10.1428874, + 51.966575601 + ], + [ + 10.1432342, + 51.967063901 + ], + [ + 10.1437565, + 51.967744201 + ], + [ + 10.1442896, + 51.968445801 + ], + [ + 10.1459623, + 51.970359401 + ], + [ + 10.1466989, + 51.971219001 + ], + [ + 10.1478834, + 51.972601101 + ], + [ + 10.148497, + 51.973395901 + ], + [ + 10.1488903, + 51.973938701 + ], + [ + 10.149292, + 51.974500801 + ], + [ + 10.1500981, + 51.975679501 + ], + [ + 10.1505647, + 51.976427801 + ], + [ + 10.1509393, + 51.977032701 + ], + [ + 10.1512761, + 51.977670101 + ], + [ + 10.1518975, + 51.978791801 + ], + [ + 10.1520628, + 51.979141401 + ], + [ + 10.1524619, + 51.979927201 + ], + [ + 10.1527569, + 51.980594601 + ], + [ + 10.1529266, + 51.981050701 + ], + [ + 10.1530626, + 51.981417101 + ], + [ + 10.153591, + 51.983033401 + ], + [ + 10.1537869, + 51.983700901 + ], + [ + 10.1540379, + 51.984608601 + ], + [ + 10.1542653, + 51.985514201 + ], + [ + 10.1544795, + 51.986507301 + ], + [ + 10.1548473, + 51.988479101 + ], + [ + 10.1550742, + 51.990002401 + ], + [ + 10.1553009, + 51.991478501 + ], + [ + 10.155313126, + 51.991569785 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.883828342638544,10.129756579866829,51.99156978450431,10.155313125836134", + "point": "51.883828342638544,10.129756579866829", + "startLcPosition": "187", + "impact": { + "lower": "Bockenem", + "upper": "Schwalenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Schwalenberg - Bockenem", + "coordinate": { + "lat": 51.883828342638544, + "long": 10.129756579866829 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "", + "A7: Kassel -> Hannover, zwischen 3.1 km hinter Schwalenberg und 0.9 km vor AS Bockenem", + "", + "L\u00e4nge: 12.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.1 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.12975658, + 51.883828343 + ], + [ + 10.1298099, + 51.884006001 + ], + [ + 10.1305168, + 51.886587501 + ], + [ + 10.1306904, + 51.887218901 + ], + [ + 10.1308612, + 51.887910301 + ], + [ + 10.1309347, + 51.888205901 + ], + [ + 10.130962, + 51.888321201 + ], + [ + 10.1313672, + 51.890005101 + ], + [ + 10.1315937, + 51.891021701 + ], + [ + 10.1316894, + 51.891500101 + ], + [ + 10.1318056, + 51.892149301 + ], + [ + 10.1320181, + 51.893220101 + ], + [ + 10.1322469, + 51.894357601 + ], + [ + 10.1323449, + 51.894889601 + ], + [ + 10.1328156, + 51.897561201 + ], + [ + 10.1331878, + 51.900035001 + ], + [ + 10.1332692, + 51.900635201 + ], + [ + 10.1336186, + 51.903562201 + ], + [ + 10.1338179, + 51.905551101 + ], + [ + 10.1338346, + 51.905723001 + ], + [ + 10.1340373, + 51.907626201 + ], + [ + 10.1341903, + 51.908954001 + ], + [ + 10.1343803, + 51.910315101 + ], + [ + 10.1347493, + 51.912252301 + ], + [ + 10.1350733, + 51.913599401 + ], + [ + 10.1354901, + 51.914970201 + ], + [ + 10.1357315, + 51.915614901 + ], + [ + 10.1359249, + 51.916103801 + ], + [ + 10.136384, + 51.917165401 + ], + [ + 10.1367654, + 51.918016101 + ], + [ + 10.1377239, + 51.919817801 + ], + [ + 10.1378907, + 51.920100401 + ], + [ + 10.1387286, + 51.921407101 + ], + [ + 10.1394453, + 51.922424401 + ], + [ + 10.1397278, + 51.922805401 + ], + [ + 10.1410117, + 51.924530001 + ], + [ + 10.1421141, + 51.926089501 + ], + [ + 10.1427046, + 51.927040101 + ], + [ + 10.1432568, + 51.928009301 + ], + [ + 10.1434871, + 51.928450201 + ], + [ + 10.1436978, + 51.928891001 + ], + [ + 10.1441044, + 51.929797101 + ], + [ + 10.1442946, + 51.930317701 + ], + [ + 10.1445706, + 51.931043201 + ], + [ + 10.1447812, + 51.931644101 + ], + [ + 10.1450343, + 51.932541101 + ], + [ + 10.1452724, + 51.933534001 + ], + [ + 10.1454524, + 51.934685801 + ], + [ + 10.1455246, + 51.935196701 + ], + [ + 10.145648, + 51.936570301 + ], + [ + 10.1456734, + 51.937208701 + ], + [ + 10.1456705, + 51.937566201 + ], + [ + 10.1456575, + 51.937883101 + ], + [ + 10.145582, + 51.938801901 + ], + [ + 10.1454755, + 51.939629301 + ], + [ + 10.145295, + 51.940686901 + ], + [ + 10.1451108, + 51.941518001 + ], + [ + 10.1448795, + 51.942396301 + ], + [ + 10.1448044, + 51.942660501 + ], + [ + 10.1444254, + 51.943818201 + ], + [ + 10.1443783, + 51.943966201 + ], + [ + 10.1443386, + 51.944086201 + ], + [ + 10.1439637, + 51.945090001 + ], + [ + 10.1435846, + 51.946090901 + ], + [ + 10.1427777, + 51.948009301 + ], + [ + 10.1420771, + 51.949659301 + ], + [ + 10.1419854, + 51.949894901 + ], + [ + 10.1412456, + 51.951900601 + ], + [ + 10.1409396, + 51.952893601 + ], + [ + 10.140667, + 51.953817601 + ], + [ + 10.1404422, + 51.954757901 + ], + [ + 10.1402637, + 51.955765301 + ], + [ + 10.1401388, + 51.956762001 + ], + [ + 10.1400815, + 51.957792701 + ], + [ + 10.1401115, + 51.958843801 + ], + [ + 10.1401746, + 51.959525701 + ], + [ + 10.1403292, + 51.960504701 + ], + [ + 10.1405595, + 51.961502301 + ], + [ + 10.14068, + 51.961958101 + ], + [ + 10.1408322, + 51.962413201 + ], + [ + 10.1409921, + 51.962875001 + ], + [ + 10.1413151, + 51.963697301 + ], + [ + 10.141589, + 51.964304401 + ], + [ + 10.1418739, + 51.964884301 + ], + [ + 10.1421494, + 51.965372801 + ], + [ + 10.1424212, + 51.965863301 + ], + [ + 10.1426512, + 51.966232801 + ], + [ + 10.1428874, + 51.966575601 + ], + [ + 10.1432342, + 51.967063901 + ], + [ + 10.1437565, + 51.967744201 + ], + [ + 10.1442896, + 51.968445801 + ], + [ + 10.1459623, + 51.970359401 + ], + [ + 10.1466989, + 51.971219001 + ], + [ + 10.1478834, + 51.972601101 + ], + [ + 10.148497, + 51.973395901 + ], + [ + 10.1488903, + 51.973938701 + ], + [ + 10.149292, + 51.974500801 + ], + [ + 10.1500981, + 51.975679501 + ], + [ + 10.1505647, + 51.976427801 + ], + [ + 10.1509393, + 51.977032701 + ], + [ + 10.1512761, + 51.977670101 + ], + [ + 10.1518975, + 51.978791801 + ], + [ + 10.1520628, + 51.979141401 + ], + [ + 10.1524619, + 51.979927201 + ], + [ + 10.1527569, + 51.980594601 + ], + [ + 10.1529266, + 51.981050701 + ], + [ + 10.1530626, + 51.981417101 + ], + [ + 10.153591, + 51.983033401 + ], + [ + 10.1537869, + 51.983700901 + ], + [ + 10.1540379, + 51.984608601 + ], + [ + 10.1542653, + 51.985514201 + ], + [ + 10.1544795, + 51.986507301 + ], + [ + 10.1548473, + 51.988479101 + ], + [ + 10.1550742, + 51.990002401 + ], + [ + 10.1553009, + 51.991478501 + ], + [ + 10.155313126, + 51.991569785 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.88385882596948,10.129495148048388,51.79089143679796,10.058044970707453", + "point": "51.88385882596948,10.129495148048388", + "startLcPosition": "188", + "impact": { + "lower": "Am Bierberg", + "upper": "Seesen (Harz)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Seesen (Harz) - Am Bierberg", + "coordinate": { + "lat": 51.88385882596948, + "long": 10.129495148048388 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 15.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26", + "", + "A7: Hannover -> Kassel, zwischen AS Seesen (Harz) und 2.0 km vor Am Bierberg", + "", + "L\u00e4nge: 12.33 km | Maximale Durchfahrtsbreite: 11 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.129495148, + 51.883858826 + ], + [ + 10.1294806, + 51.883811701 + ], + [ + 10.1292424, + 51.883034001 + ], + [ + 10.1290241, + 51.882307201 + ], + [ + 10.1287589, + 51.881346201 + ], + [ + 10.1286158, + 51.880827701 + ], + [ + 10.1283316, + 51.879886501 + ], + [ + 10.1281431, + 51.879108101 + ], + [ + 10.1280742, + 51.878823601 + ], + [ + 10.1278126, + 51.877661901 + ], + [ + 10.1276803, + 51.876991801 + ], + [ + 10.1273539, + 51.875332401 + ], + [ + 10.1271973, + 51.874437901 + ], + [ + 10.1269225, + 51.872735501 + ], + [ + 10.1268147, + 51.871840201 + ], + [ + 10.1266478, + 51.870415201 + ], + [ + 10.1263533, + 51.867082301 + ], + [ + 10.126333, + 51.866860301 + ], + [ + 10.1263254, + 51.866774901 + ], + [ + 10.1261182, + 51.864441701 + ], + [ + 10.1258727, + 51.862335301 + ], + [ + 10.1255736, + 51.860463301 + ], + [ + 10.1254358, + 51.859673401 + ], + [ + 10.1252151, + 51.858517901 + ], + [ + 10.1246727, + 51.856003901 + ], + [ + 10.123917, + 51.853150301 + ], + [ + 10.1236872, + 51.852258901 + ], + [ + 10.1228468, + 51.849516001 + ], + [ + 10.1227626, + 51.849240101 + ], + [ + 10.1220246, + 51.847059501 + ], + [ + 10.1217797, + 51.846384001 + ], + [ + 10.1211507, + 51.844705601 + ], + [ + 10.1206342, + 51.843407601 + ], + [ + 10.1199308, + 51.841708201 + ], + [ + 10.1192364, + 51.840136001 + ], + [ + 10.1186708, + 51.838861201 + ], + [ + 10.1181189, + 51.837675301 + ], + [ + 10.1180099, + 51.837441101 + ], + [ + 10.1170032, + 51.835418001 + ], + [ + 10.1159742, + 51.833405901 + ], + [ + 10.1157573, + 51.832983601 + ], + [ + 10.1153179, + 51.832128001 + ], + [ + 10.1143309, + 51.830206201 + ], + [ + 10.1132914, + 51.828207801 + ], + [ + 10.1124722, + 51.826632701 + ], + [ + 10.1112061, + 51.824198401 + ], + [ + 10.1109106, + 51.823630201 + ], + [ + 10.1104596, + 51.822802201 + ], + [ + 10.1097841, + 51.821667201 + ], + [ + 10.1092031, + 51.820659101 + ], + [ + 10.1085545, + 51.819695001 + ], + [ + 10.1081594, + 51.819179901 + ], + [ + 10.1074925, + 51.818310201 + ], + [ + 10.1066221, + 51.817340101 + ], + [ + 10.1057186, + 51.816388201 + ], + [ + 10.1044039, + 51.815145101 + ], + [ + 10.1041034, + 51.814873601 + ], + [ + 10.1032969, + 51.814186101 + ], + [ + 10.1026106, + 51.813640601 + ], + [ + 10.1017091, + 51.812953101 + ], + [ + 10.1001792, + 51.811869101 + ], + [ + 10.0983412, + 51.810691101 + ], + [ + 10.0980929, + 51.810529601 + ], + [ + 10.0965397, + 51.809519701 + ], + [ + 10.0949309, + 51.808415001 + ], + [ + 10.0934354, + 51.807236101 + ], + [ + 10.0927507, + 51.806670401 + ], + [ + 10.0920226, + 51.806017001 + ], + [ + 10.0918913, + 51.805882101 + ], + [ + 10.0915649, + 51.805567601 + ], + [ + 10.0902938, + 51.804306501 + ], + [ + 10.0897724, + 51.803722801 + ], + [ + 10.0893089, + 51.803192301 + ], + [ + 10.089143, + 51.803005201 + ], + [ + 10.0890355, + 51.802892201 + ], + [ + 10.0884981, + 51.802215001 + ], + [ + 10.0880498, + 51.801618501 + ], + [ + 10.0873056, + 51.800611101 + ], + [ + 10.0867686, + 51.799898801 + ], + [ + 10.0860748, + 51.799096701 + ], + [ + 10.0854057, + 51.798428201 + ], + [ + 10.0846084, + 51.797716501 + ], + [ + 10.0840478, + 51.797269301 + ], + [ + 10.0833524, + 51.796772201 + ], + [ + 10.0829354, + 51.796481201 + ], + [ + 10.0818968, + 51.795857601 + ], + [ + 10.0809192, + 51.795338701 + ], + [ + 10.0792562, + 51.794587301 + ], + [ + 10.0779722, + 51.794083301 + ], + [ + 10.0764678, + 51.793612201 + ], + [ + 10.0748995, + 51.793197301 + ], + [ + 10.0737978, + 51.792964401 + ], + [ + 10.0726042, + 51.792756901 + ], + [ + 10.0712031, + 51.792564601 + ], + [ + 10.0695195, + 51.792379101 + ], + [ + 10.0672292, + 51.792162801 + ], + [ + 10.0650974, + 51.791953601 + ], + [ + 10.0642984, + 51.791860201 + ], + [ + 10.0621675, + 51.791582601 + ], + [ + 10.0597142, + 51.791195501 + ], + [ + 10.0580863, + 51.790899401 + ], + [ + 10.058044971, + 51.790891437 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.88385882596948,10.129495148048388,51.79089143679796,10.058044970707453", + "point": "51.88385882596948,10.129495148048388", + "startLcPosition": "188", + "impact": { + "lower": "Am Bierberg", + "upper": "Seesen (Harz)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Seesen (Harz) - Am Bierberg", + "coordinate": { + "lat": 51.88385882596948, + "long": 10.129495148048388 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 01.04.26 und dem 15.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "10.04.26", + "", + "A7: Hannover -> Kassel, zwischen AS Seesen (Harz) und 2.0 km vor Am Bierberg", + "", + "L\u00e4nge: 12.33 km | Maximale Durchfahrtsbreite: 7 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.129495148, + 51.883858826 + ], + [ + 10.1294806, + 51.883811701 + ], + [ + 10.1292424, + 51.883034001 + ], + [ + 10.1290241, + 51.882307201 + ], + [ + 10.1287589, + 51.881346201 + ], + [ + 10.1286158, + 51.880827701 + ], + [ + 10.1283316, + 51.879886501 + ], + [ + 10.1281431, + 51.879108101 + ], + [ + 10.1280742, + 51.878823601 + ], + [ + 10.1278126, + 51.877661901 + ], + [ + 10.1276803, + 51.876991801 + ], + [ + 10.1273539, + 51.875332401 + ], + [ + 10.1271973, + 51.874437901 + ], + [ + 10.1269225, + 51.872735501 + ], + [ + 10.1268147, + 51.871840201 + ], + [ + 10.1266478, + 51.870415201 + ], + [ + 10.1263533, + 51.867082301 + ], + [ + 10.126333, + 51.866860301 + ], + [ + 10.1263254, + 51.866774901 + ], + [ + 10.1261182, + 51.864441701 + ], + [ + 10.1258727, + 51.862335301 + ], + [ + 10.1255736, + 51.860463301 + ], + [ + 10.1254358, + 51.859673401 + ], + [ + 10.1252151, + 51.858517901 + ], + [ + 10.1246727, + 51.856003901 + ], + [ + 10.123917, + 51.853150301 + ], + [ + 10.1236872, + 51.852258901 + ], + [ + 10.1228468, + 51.849516001 + ], + [ + 10.1227626, + 51.849240101 + ], + [ + 10.1220246, + 51.847059501 + ], + [ + 10.1217797, + 51.846384001 + ], + [ + 10.1211507, + 51.844705601 + ], + [ + 10.1206342, + 51.843407601 + ], + [ + 10.1199308, + 51.841708201 + ], + [ + 10.1192364, + 51.840136001 + ], + [ + 10.1186708, + 51.838861201 + ], + [ + 10.1181189, + 51.837675301 + ], + [ + 10.1180099, + 51.837441101 + ], + [ + 10.1170032, + 51.835418001 + ], + [ + 10.1159742, + 51.833405901 + ], + [ + 10.1157573, + 51.832983601 + ], + [ + 10.1153179, + 51.832128001 + ], + [ + 10.1143309, + 51.830206201 + ], + [ + 10.1132914, + 51.828207801 + ], + [ + 10.1124722, + 51.826632701 + ], + [ + 10.1112061, + 51.824198401 + ], + [ + 10.1109106, + 51.823630201 + ], + [ + 10.1104596, + 51.822802201 + ], + [ + 10.1097841, + 51.821667201 + ], + [ + 10.1092031, + 51.820659101 + ], + [ + 10.1085545, + 51.819695001 + ], + [ + 10.1081594, + 51.819179901 + ], + [ + 10.1074925, + 51.818310201 + ], + [ + 10.1066221, + 51.817340101 + ], + [ + 10.1057186, + 51.816388201 + ], + [ + 10.1044039, + 51.815145101 + ], + [ + 10.1041034, + 51.814873601 + ], + [ + 10.1032969, + 51.814186101 + ], + [ + 10.1026106, + 51.813640601 + ], + [ + 10.1017091, + 51.812953101 + ], + [ + 10.1001792, + 51.811869101 + ], + [ + 10.0983412, + 51.810691101 + ], + [ + 10.0980929, + 51.810529601 + ], + [ + 10.0965397, + 51.809519701 + ], + [ + 10.0949309, + 51.808415001 + ], + [ + 10.0934354, + 51.807236101 + ], + [ + 10.0927507, + 51.806670401 + ], + [ + 10.0920226, + 51.806017001 + ], + [ + 10.0918913, + 51.805882101 + ], + [ + 10.0915649, + 51.805567601 + ], + [ + 10.0902938, + 51.804306501 + ], + [ + 10.0897724, + 51.803722801 + ], + [ + 10.0893089, + 51.803192301 + ], + [ + 10.089143, + 51.803005201 + ], + [ + 10.0890355, + 51.802892201 + ], + [ + 10.0884981, + 51.802215001 + ], + [ + 10.0880498, + 51.801618501 + ], + [ + 10.0873056, + 51.800611101 + ], + [ + 10.0867686, + 51.799898801 + ], + [ + 10.0860748, + 51.799096701 + ], + [ + 10.0854057, + 51.798428201 + ], + [ + 10.0846084, + 51.797716501 + ], + [ + 10.0840478, + 51.797269301 + ], + [ + 10.0833524, + 51.796772201 + ], + [ + 10.0829354, + 51.796481201 + ], + [ + 10.0818968, + 51.795857601 + ], + [ + 10.0809192, + 51.795338701 + ], + [ + 10.0792562, + 51.794587301 + ], + [ + 10.0779722, + 51.794083301 + ], + [ + 10.0764678, + 51.793612201 + ], + [ + 10.0748995, + 51.793197301 + ], + [ + 10.0737978, + 51.792964401 + ], + [ + 10.0726042, + 51.792756901 + ], + [ + 10.0712031, + 51.792564601 + ], + [ + 10.0695195, + 51.792379101 + ], + [ + 10.0672292, + 51.792162801 + ], + [ + 10.0650974, + 51.791953601 + ], + [ + 10.0642984, + 51.791860201 + ], + [ + 10.0621675, + 51.791582601 + ], + [ + 10.0597142, + 51.791195501 + ], + [ + 10.0580863, + 51.790899401 + ], + [ + 10.058044971, + 51.790891437 + ] + ] + } + }, + { + "identifier": "2026-009871--vi-bs.2026-03-26_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.8769734073713,10.127676681892959,51.67028685528951,9.92124353321153", + "point": "51.8769734073713,10.127676681892959", + "startLcPosition": "188", + "impact": { + "lower": "N\u00f6rten-Hardenberg", + "upper": "Seesen (Harz)", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Seesen (Harz) - N\u00f6rten-Hardenberg", + "coordinate": { + "lat": 51.8769734073713, + "long": 10.127676681892959 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 0.8 km hinter AS Seesen (Harz) und 4.7 km vor AS N\u00f6rten-Hardenberg", + "", + "L\u00e4nge: 29.16 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.25 m", + "", + "ARGE A7 von Seesen (Harz) (AS) nach N\u00f6rten-Hardenberg (AS) Begehung Restarbeiten Mittelstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.127676682, + 51.876973407 + ], + [ + 10.1273539, + 51.875332401 + ], + [ + 10.1271973, + 51.874437901 + ], + [ + 10.1269225, + 51.872735501 + ], + [ + 10.1268147, + 51.871840201 + ], + [ + 10.1266478, + 51.870415201 + ], + [ + 10.1263533, + 51.867082301 + ], + [ + 10.126333, + 51.866860301 + ], + [ + 10.1263254, + 51.866774901 + ], + [ + 10.1261182, + 51.864441701 + ], + [ + 10.1258727, + 51.862335301 + ], + [ + 10.1255736, + 51.860463301 + ], + [ + 10.1254358, + 51.859673401 + ], + [ + 10.1252151, + 51.858517901 + ], + [ + 10.1246727, + 51.856003901 + ], + [ + 10.123917, + 51.853150301 + ], + [ + 10.1236872, + 51.852258901 + ], + [ + 10.1228468, + 51.849516001 + ], + [ + 10.1227626, + 51.849240101 + ], + [ + 10.1220246, + 51.847059501 + ], + [ + 10.1217797, + 51.846384001 + ], + [ + 10.1211507, + 51.844705601 + ], + [ + 10.1206342, + 51.843407601 + ], + [ + 10.1199308, + 51.841708201 + ], + [ + 10.1192364, + 51.840136001 + ], + [ + 10.1186708, + 51.838861201 + ], + [ + 10.1181189, + 51.837675301 + ], + [ + 10.1180099, + 51.837441101 + ], + [ + 10.1170032, + 51.835418001 + ], + [ + 10.1159742, + 51.833405901 + ], + [ + 10.1157573, + 51.832983601 + ], + [ + 10.1153179, + 51.832128001 + ], + [ + 10.1143309, + 51.830206201 + ], + [ + 10.1132914, + 51.828207801 + ], + [ + 10.1124722, + 51.826632701 + ], + [ + 10.1112061, + 51.824198401 + ], + [ + 10.1109106, + 51.823630201 + ], + [ + 10.1104596, + 51.822802201 + ], + [ + 10.1097841, + 51.821667201 + ], + [ + 10.1092031, + 51.820659101 + ], + [ + 10.1085545, + 51.819695001 + ], + [ + 10.1081594, + 51.819179901 + ], + [ + 10.1074925, + 51.818310201 + ], + [ + 10.1066221, + 51.817340101 + ], + [ + 10.1057186, + 51.816388201 + ], + [ + 10.1044039, + 51.815145101 + ], + [ + 10.1041034, + 51.814873601 + ], + [ + 10.1032969, + 51.814186101 + ], + [ + 10.1026106, + 51.813640601 + ], + [ + 10.1017091, + 51.812953101 + ], + [ + 10.1001792, + 51.811869101 + ], + [ + 10.0983412, + 51.810691101 + ], + [ + 10.0980929, + 51.810529601 + ], + [ + 10.0965397, + 51.809519701 + ], + [ + 10.0949309, + 51.808415001 + ], + [ + 10.0934354, + 51.807236101 + ], + [ + 10.0927507, + 51.806670401 + ], + [ + 10.0920226, + 51.806017001 + ], + [ + 10.0918913, + 51.805882101 + ], + [ + 10.0915649, + 51.805567601 + ], + [ + 10.0902938, + 51.804306501 + ], + [ + 10.0897724, + 51.803722801 + ], + [ + 10.0893089, + 51.803192301 + ], + [ + 10.089143, + 51.803005201 + ], + [ + 10.0890355, + 51.802892201 + ], + [ + 10.0884981, + 51.802215001 + ], + [ + 10.0880498, + 51.801618501 + ], + [ + 10.0873056, + 51.800611101 + ], + [ + 10.0867686, + 51.799898801 + ], + [ + 10.0860748, + 51.799096701 + ], + [ + 10.0854057, + 51.798428201 + ], + [ + 10.0846084, + 51.797716501 + ], + [ + 10.0840478, + 51.797269301 + ], + [ + 10.0833524, + 51.796772201 + ], + [ + 10.0829354, + 51.796481201 + ], + [ + 10.0818968, + 51.795857601 + ], + [ + 10.0809192, + 51.795338701 + ], + [ + 10.0792562, + 51.794587301 + ], + [ + 10.0779722, + 51.794083301 + ], + [ + 10.0764678, + 51.793612201 + ], + [ + 10.0748995, + 51.793197301 + ], + [ + 10.0737978, + 51.792964401 + ], + [ + 10.0726042, + 51.792756901 + ], + [ + 10.0712031, + 51.792564601 + ], + [ + 10.0695195, + 51.792379101 + ], + [ + 10.0672292, + 51.792162801 + ], + [ + 10.0650974, + 51.791953601 + ], + [ + 10.0642984, + 51.791860201 + ], + [ + 10.0621675, + 51.791582601 + ], + [ + 10.0597142, + 51.791195501 + ], + [ + 10.0580863, + 51.790899401 + ], + [ + 10.0576177, + 51.790809101 + ], + [ + 10.0568827, + 51.790652801 + ], + [ + 10.0559012, + 51.790444401 + ], + [ + 10.0540619, + 51.789997001 + ], + [ + 10.0518609, + 51.789409301 + ], + [ + 10.0505865, + 51.789033201 + ], + [ + 10.0489261, + 51.788496901 + ], + [ + 10.0485662, + 51.788375301 + ], + [ + 10.047028, + 51.787834101 + ], + [ + 10.0461026, + 51.787493801 + ], + [ + 10.0454185, + 51.787228601 + ], + [ + 10.0435882, + 51.786480501 + ], + [ + 10.0424178, + 51.785964201 + ], + [ + 10.0411448, + 51.785381101 + ], + [ + 10.0405438, + 51.785083301 + ], + [ + 10.0397649, + 51.784697401 + ], + [ + 10.0383014, + 51.783916301 + ], + [ + 10.0371609, + 51.783252601 + ], + [ + 10.0363954, + 51.782786701 + ], + [ + 10.035982, + 51.782522001 + ], + [ + 10.0357466, + 51.782370901 + ], + [ + 10.035188, + 51.782000801 + ], + [ + 10.0345657, + 51.781544401 + ], + [ + 10.0339425, + 51.781071001 + ], + [ + 10.0333087, + 51.780537101 + ], + [ + 10.0327091, + 51.780005001 + ], + [ + 10.0322483, + 51.779568901 + ], + [ + 10.0317757, + 51.779070101 + ], + [ + 10.0310998, + 51.778326001 + ], + [ + 10.030538, + 51.777616501 + ], + [ + 10.0302367, + 51.777190101 + ], + [ + 10.0297801, + 51.776504601 + ], + [ + 10.0288532, + 51.775023801 + ], + [ + 10.0280389, + 51.773770101 + ], + [ + 10.0272263, + 51.772590001 + ], + [ + 10.0263244, + 51.771399801 + ], + [ + 10.0253969, + 51.770243001 + ], + [ + 10.024142, + 51.768812801 + ], + [ + 10.0236367, + 51.768273801 + ], + [ + 10.0229897, + 51.767601301 + ], + [ + 10.0216726, + 51.766303101 + ], + [ + 10.0205798, + 51.765310201 + ], + [ + 10.0201435, + 51.764923701 + ], + [ + 10.0190931, + 51.764022901 + ], + [ + 10.0185784, + 51.763596101 + ], + [ + 10.0174222, + 51.762617901 + ], + [ + 10.0165701, + 51.761845701 + ], + [ + 10.0157835, + 51.761045601 + ], + [ + 10.0152209, + 51.760426201 + ], + [ + 10.0146783, + 51.759800801 + ], + [ + 10.0143546, + 51.759400301 + ], + [ + 10.0140599, + 51.758998401 + ], + [ + 10.0137457, + 51.758593401 + ], + [ + 10.0134686, + 51.758175801 + ], + [ + 10.0131262, + 51.757649401 + ], + [ + 10.0127842, + 51.757081201 + ], + [ + 10.0124474, + 51.756464901 + ], + [ + 10.0121861, + 51.755984301 + ], + [ + 10.0117735, + 51.755058401 + ], + [ + 10.0113569, + 51.754020701 + ], + [ + 10.0110734, + 51.753293701 + ], + [ + 10.0107202, + 51.752393701 + ], + [ + 10.0104193, + 51.751627001 + ], + [ + 10.0096212, + 51.749632601 + ], + [ + 10.0094406, + 51.749176301 + ], + [ + 10.0088445, + 51.747670301 + ], + [ + 10.0087218, + 51.747365201 + ], + [ + 10.0083344, + 51.746434001 + ], + [ + 10.0080652, + 51.745875701 + ], + [ + 10.0077875, + 51.745366101 + ], + [ + 10.0075294, + 51.744961301 + ], + [ + 10.0072341, + 51.744543001 + ], + [ + 10.0068391, + 51.744044401 + ], + [ + 10.0063613, + 51.743536601 + ], + [ + 10.0056668, + 51.742883501 + ], + [ + 10.0048762, + 51.742235901 + ], + [ + 10.0040103, + 51.741634701 + ], + [ + 10.0029322, + 51.741000801 + ], + [ + 10.0025177, + 51.740789301 + ], + [ + 10.0015864, + 51.740347801 + ], + [ + 10.0007626, + 51.740010101 + ], + [ + 9.9993502, + 51.739522601 + ], + [ + 9.9986683, + 51.739313101 + ], + [ + 9.9972142, + 51.738956401 + ], + [ + 9.995978, + 51.738727601 + ], + [ + 9.9952179, + 51.738620501 + ], + [ + 9.994282, + 51.738505801 + ], + [ + 9.991966, + 51.738296401 + ], + [ + 9.9900608, + 51.738151201 + ], + [ + 9.9889425, + 51.738050501 + ], + [ + 9.9880345, + 51.737948201 + ], + [ + 9.9869902, + 51.737808601 + ], + [ + 9.9860723, + 51.737658101 + ], + [ + 9.9851882, + 51.737505401 + ], + [ + 9.9840751, + 51.737287701 + ], + [ + 9.9829758, + 51.737050001 + ], + [ + 9.9821525, + 51.736856001 + ], + [ + 9.9812561, + 51.736623301 + ], + [ + 9.9803986, + 51.736376201 + ], + [ + 9.9798615, + 51.736209001 + ], + [ + 9.9792646, + 51.736012201 + ], + [ + 9.9784127, + 51.735714501 + ], + [ + 9.9774562, + 51.735375801 + ], + [ + 9.9750548, + 51.734478801 + ], + [ + 9.973622, + 51.733974901 + ], + [ + 9.9728232, + 51.733665801 + ], + [ + 9.9725518, + 51.733563001 + ], + [ + 9.9692864, + 51.732328001 + ], + [ + 9.9686883, + 51.732100601 + ], + [ + 9.9674801, + 51.731649301 + ], + [ + 9.9656919, + 51.730981401 + ], + [ + 9.9627598, + 51.729886201 + ], + [ + 9.9621744, + 51.729667501 + ], + [ + 9.9585084, + 51.728284001 + ], + [ + 9.9573076, + 51.727803901 + ], + [ + 9.9561687, + 51.727317101 + ], + [ + 9.955088, + 51.726823501 + ], + [ + 9.9540874, + 51.726327701 + ], + [ + 9.9535343, + 51.726034701 + ], + [ + 9.9515116, + 51.724898701 + ], + [ + 9.9502635, + 51.724113301 + ], + [ + 9.9500951, + 51.724003301 + ], + [ + 9.9494193, + 51.723556601 + ], + [ + 9.9483239, + 51.722759001 + ], + [ + 9.9473594, + 51.722036801 + ], + [ + 9.9466425, + 51.721450401 + ], + [ + 9.9459622, + 51.720872101 + ], + [ + 9.9451759, + 51.720166201 + ], + [ + 9.9445553, + 51.719566901 + ], + [ + 9.9440787, + 51.719081501 + ], + [ + 9.9433646, + 51.718308801 + ], + [ + 9.9430064, + 51.717876201 + ], + [ + 9.9426772, + 51.717457701 + ], + [ + 9.9425206, + 51.717255601 + ], + [ + 9.9420587, + 51.716659601 + ], + [ + 9.9411453, + 51.715322801 + ], + [ + 9.9406319, + 51.714497901 + ], + [ + 9.9400226, + 51.713375401 + ], + [ + 9.9397898, + 51.712898801 + ], + [ + 9.9395825, + 51.712437701 + ], + [ + 9.9393302, + 51.711811401 + ], + [ + 9.9391535, + 51.711336201 + ], + [ + 9.9389563, + 51.710762401 + ], + [ + 9.9387486, + 51.710059701 + ], + [ + 9.9384822, + 51.709000101 + ], + [ + 9.9383573, + 51.708411001 + ], + [ + 9.9382755, + 51.707923101 + ], + [ + 9.9382338, + 51.707609301 + ], + [ + 9.9381812, + 51.707101301 + ], + [ + 9.9381227, + 51.706375201 + ], + [ + 9.9380745, + 51.705001901 + ], + [ + 9.9380686, + 51.704723701 + ], + [ + 9.938038, + 51.703333701 + ], + [ + 9.9379527, + 51.701304301 + ], + [ + 9.9378899, + 51.700327601 + ], + [ + 9.9378399, + 51.699860301 + ], + [ + 9.9377925, + 51.699461701 + ], + [ + 9.9376695, + 51.698855401 + ], + [ + 9.9374907, + 51.698098501 + ], + [ + 9.9373634, + 51.697694801 + ], + [ + 9.9371916, + 51.697192201 + ], + [ + 9.9370813, + 51.696918801 + ], + [ + 9.9367198, + 51.696088201 + ], + [ + 9.9365747, + 51.695811501 + ], + [ + 9.9363502, + 51.695456301 + ], + [ + 9.9361918, + 51.695187901 + ], + [ + 9.9357075, + 51.694431201 + ], + [ + 9.9353549, + 51.693942101 + ], + [ + 9.9350392, + 51.693517701 + ], + [ + 9.9346928, + 51.693107201 + ], + [ + 9.9343228, + 51.692685101 + ], + [ + 9.9338459, + 51.692165901 + ], + [ + 9.9331545, + 51.691508901 + ], + [ + 9.930824, + 51.689524001 + ], + [ + 9.930459, + 51.689214701 + ], + [ + 9.9298605, + 51.688699801 + ], + [ + 9.9291241, + 51.687926401 + ], + [ + 9.9289618, + 51.687737201 + ], + [ + 9.9288069, + 51.687545601 + ], + [ + 9.9286596, + 51.687351701 + ], + [ + 9.9285006, + 51.687127401 + ], + [ + 9.9283517, + 51.686900401 + ], + [ + 9.928213, + 51.686671001 + ], + [ + 9.9280847, + 51.686439201 + ], + [ + 9.9277053, + 51.685637101 + ], + [ + 9.9275293, + 51.685129301 + ], + [ + 9.9273973, + 51.684558901 + ], + [ + 9.9272778, + 51.683944401 + ], + [ + 9.9269747, + 51.682265201 + ], + [ + 9.9267247, + 51.681178801 + ], + [ + 9.9264667, + 51.680304101 + ], + [ + 9.9264219, + 51.680168101 + ], + [ + 9.9261233, + 51.679340501 + ], + [ + 9.9257688, + 51.678527801 + ], + [ + 9.9254845, + 51.678001801 + ], + [ + 9.9243369, + 51.675878201 + ], + [ + 9.9233092, + 51.674010401 + ], + [ + 9.9230749, + 51.673584401 + ], + [ + 9.922489, + 51.672519501 + ], + [ + 9.921243533, + 51.670286855 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.991713139295534,10.155332325806127,52.12449190300744,10.058315710995116", + "point": "51.991713139295534,10.155332325806127", + "startLcPosition": "192", + "impact": { + "lower": "Hildesheimer B\u00f6rde", + "upper": "Ambergau West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Ambergau West - Hildesheimer B\u00f6rde", + "coordinate": { + "lat": 51.991713139295534, + "long": 10.155332325806127 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 1.5 km hinter Ambergau West und 0.2 km vor Hildesheimer B\u00f6rde", + "", + "L\u00e4nge: 21.12 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.155332326, + 51.991713139 + ], + [ + 10.1553693, + 51.991989201 + ], + [ + 10.1555187, + 51.993040201 + ], + [ + 10.1556141, + 51.993720101 + ], + [ + 10.1557276, + 51.994396801 + ], + [ + 10.1560933, + 51.996601001 + ], + [ + 10.1562951, + 51.997724401 + ], + [ + 10.1563813, + 51.998204001 + ], + [ + 10.156782, + 51.999981001 + ], + [ + 10.1571057, + 52.001172701 + ], + [ + 10.1575691, + 52.002581801 + ], + [ + 10.157664, + 52.002835601 + ], + [ + 10.1579253, + 52.003426001 + ], + [ + 10.1593324, + 52.006254801 + ], + [ + 10.1600339, + 52.007494701 + ], + [ + 10.1608805, + 52.008811001 + ], + [ + 10.1611465, + 52.009208001 + ], + [ + 10.1614906, + 52.009715201 + ], + [ + 10.1623611, + 52.010888901 + ], + [ + 10.1635673, + 52.012519001 + ], + [ + 10.1647625, + 52.014148701 + ], + [ + 10.1655647, + 52.015268901 + ], + [ + 10.1662257, + 52.016284201 + ], + [ + 10.1668862, + 52.017315601 + ], + [ + 10.1674168, + 52.018193701 + ], + [ + 10.1679335, + 52.019086101 + ], + [ + 10.1684051, + 52.019962201 + ], + [ + 10.1688918, + 52.020914201 + ], + [ + 10.169301, + 52.021783301 + ], + [ + 10.1696944, + 52.022663001 + ], + [ + 10.1698398, + 52.023003601 + ], + [ + 10.1705157, + 52.024689801 + ], + [ + 10.1712176, + 52.026678301 + ], + [ + 10.171651, + 52.027963501 + ], + [ + 10.1720193, + 52.029059901 + ], + [ + 10.1725173, + 52.030498501 + ], + [ + 10.1731083, + 52.032079701 + ], + [ + 10.1734289, + 52.032857301 + ], + [ + 10.1738195, + 52.033756101 + ], + [ + 10.1742841, + 52.034746001 + ], + [ + 10.1749048, + 52.035917101 + ], + [ + 10.1751772, + 52.036396101 + ], + [ + 10.1754508, + 52.036848601 + ], + [ + 10.175935, + 52.037617601 + ], + [ + 10.1764432, + 52.038361201 + ], + [ + 10.176969, + 52.039084601 + ], + [ + 10.1773144, + 52.039539601 + ], + [ + 10.1776547, + 52.039956601 + ], + [ + 10.1780015, + 52.040385601 + ], + [ + 10.1783847, + 52.040831901 + ], + [ + 10.1791788, + 52.041740701 + ], + [ + 10.1799466, + 52.042576801 + ], + [ + 10.1806527, + 52.043328901 + ], + [ + 10.1825252, + 52.045262101 + ], + [ + 10.1844483, + 52.047245101 + ], + [ + 10.1852198, + 52.048077801 + ], + [ + 10.1861582, + 52.049120401 + ], + [ + 10.1866219, + 52.049659301 + ], + [ + 10.1875721, + 52.050832201 + ], + [ + 10.1878828, + 52.051235601 + ], + [ + 10.1886187, + 52.052231601 + ], + [ + 10.1890741, + 52.052888901 + ], + [ + 10.1898496, + 52.054102601 + ], + [ + 10.1905441, + 52.055308701 + ], + [ + 10.1908499, + 52.055851201 + ], + [ + 10.1912861, + 52.056711701 + ], + [ + 10.1917523, + 52.057690501 + ], + [ + 10.1922694, + 52.058932601 + ], + [ + 10.1926696, + 52.060028701 + ], + [ + 10.1930491, + 52.061242901 + ], + [ + 10.1933926, + 52.062487501 + ], + [ + 10.1935869, + 52.063377001 + ], + [ + 10.1936937, + 52.063957401 + ], + [ + 10.1938873, + 52.065029701 + ], + [ + 10.1940002, + 52.066100201 + ], + [ + 10.1940215, + 52.066453001 + ], + [ + 10.1940361, + 52.067405601 + ], + [ + 10.1939948, + 52.068365001 + ], + [ + 10.1939565, + 52.068780901 + ], + [ + 10.1939076, + 52.069266301 + ], + [ + 10.1937456, + 52.070355701 + ], + [ + 10.1935299, + 52.071320101 + ], + [ + 10.1933401, + 52.072014001 + ], + [ + 10.1931224, + 52.072746801 + ], + [ + 10.1928709, + 52.073424101 + ], + [ + 10.1925874, + 52.074133601 + ], + [ + 10.1922262, + 52.074927601 + ], + [ + 10.1918659, + 52.075616101 + ], + [ + 10.1913788, + 52.076508501 + ], + [ + 10.1911452, + 52.076895701 + ], + [ + 10.1906712, + 52.077614201 + ], + [ + 10.190479, + 52.077886701 + ], + [ + 10.1900616, + 52.078461401 + ], + [ + 10.189883, + 52.078690701 + ], + [ + 10.1898022, + 52.078798801 + ], + [ + 10.1895462, + 52.079133101 + ], + [ + 10.1886549, + 52.080201301 + ], + [ + 10.1882506, + 52.080649901 + ], + [ + 10.1876282, + 52.081315601 + ], + [ + 10.1859888, + 52.082915801 + ], + [ + 10.1843372, + 52.084386301 + ], + [ + 10.1833143, + 52.085170501 + ], + [ + 10.1824166, + 52.085883401 + ], + [ + 10.1809486, + 52.086964001 + ], + [ + 10.1794084, + 52.088044101 + ], + [ + 10.1781999, + 52.088807701 + ], + [ + 10.1771226, + 52.089481701 + ], + [ + 10.1762681, + 52.089986601 + ], + [ + 10.1755379, + 52.090398501 + ], + [ + 10.1746972, + 52.090863301 + ], + [ + 10.1737879, + 52.091359001 + ], + [ + 10.1727655, + 52.091878201 + ], + [ + 10.1717562, + 52.092377201 + ], + [ + 10.1705173, + 52.092962001 + ], + [ + 10.1698301, + 52.093280701 + ], + [ + 10.1691428, + 52.093587601 + ], + [ + 10.1675537, + 52.094252001 + ], + [ + 10.1666346, + 52.094626201 + ], + [ + 10.1659272, + 52.094899101 + ], + [ + 10.1651995, + 52.095172201 + ], + [ + 10.1634533, + 52.095817801 + ], + [ + 10.1623823, + 52.096193601 + ], + [ + 10.1619263, + 52.096352101 + ], + [ + 10.1616123, + 52.096460401 + ], + [ + 10.1597448, + 52.097137201 + ], + [ + 10.1590704, + 52.097381601 + ], + [ + 10.1581403, + 52.097756101 + ], + [ + 10.1570084, + 52.098195101 + ], + [ + 10.1552087, + 52.098918801 + ], + [ + 10.1541012, + 52.099370301 + ], + [ + 10.1534178, + 52.099656201 + ], + [ + 10.1523385, + 52.100107601 + ], + [ + 10.1505403, + 52.100894601 + ], + [ + 10.1494999, + 52.101366701 + ], + [ + 10.1488716, + 52.101667901 + ], + [ + 10.1485002, + 52.101857901 + ], + [ + 10.1475548, + 52.102384301 + ], + [ + 10.1452584, + 52.103559801 + ], + [ + 10.1434025, + 52.104565801 + ], + [ + 10.1423064, + 52.105186901 + ], + [ + 10.1415736, + 52.105601001 + ], + [ + 10.1401322, + 52.106451401 + ], + [ + 10.1394094, + 52.106912501 + ], + [ + 10.138339, + 52.107593301 + ], + [ + 10.1370402, + 52.108422001 + ], + [ + 10.1363902, + 52.108850401 + ], + [ + 10.1358489, + 52.109235301 + ], + [ + 10.135048, + 52.109804301 + ], + [ + 10.1329191, + 52.111341501 + ], + [ + 10.1313253, + 52.112530801 + ], + [ + 10.1306234, + 52.113038501 + ], + [ + 10.1303403, + 52.113237701 + ], + [ + 10.1298526, + 52.113584601 + ], + [ + 10.1293319, + 52.113942601 + ], + [ + 10.1288322, + 52.114276501 + ], + [ + 10.1283207, + 52.114607901 + ], + [ + 10.1277511, + 52.114949701 + ], + [ + 10.1271843, + 52.115282101 + ], + [ + 10.1264842, + 52.115676401 + ], + [ + 10.1261942, + 52.115826701 + ], + [ + 10.1255093, + 52.116184201 + ], + [ + 10.1248072, + 52.116521201 + ], + [ + 10.1240186, + 52.116901601 + ], + [ + 10.123355, + 52.117190301 + ], + [ + 10.122825, + 52.117404201 + ], + [ + 10.1220765, + 52.117688901 + ], + [ + 10.1212872, + 52.117984001 + ], + [ + 10.1200038, + 52.118409901 + ], + [ + 10.1194181, + 52.118599101 + ], + [ + 10.1188149, + 52.118783201 + ], + [ + 10.1183383, + 52.118915501 + ], + [ + 10.1175335, + 52.119132501 + ], + [ + 10.1166263, + 52.119353701 + ], + [ + 10.1159919, + 52.119502101 + ], + [ + 10.1152717, + 52.119652601 + ], + [ + 10.1143329, + 52.119837101 + ], + [ + 10.1133347, + 52.120010101 + ], + [ + 10.1122238, + 52.120185501 + ], + [ + 10.1112305, + 52.120330501 + ], + [ + 10.1105346, + 52.120410101 + ], + [ + 10.1098775, + 52.120478101 + ], + [ + 10.1084165, + 52.120620601 + ], + [ + 10.1071305, + 52.120710401 + ], + [ + 10.1056269, + 52.120792801 + ], + [ + 10.1044415, + 52.120842001 + ], + [ + 10.103397, + 52.120873301 + ], + [ + 10.1024277, + 52.120893901 + ], + [ + 10.1012565, + 52.120905301 + ], + [ + 10.0995497, + 52.120911401 + ], + [ + 10.0978343, + 52.120899001 + ], + [ + 10.0924807, + 52.120818101 + ], + [ + 10.0888139, + 52.120765401 + ], + [ + 10.087651, + 52.120748701 + ], + [ + 10.0860552, + 52.120748301 + ], + [ + 10.0849305, + 52.120751601 + ], + [ + 10.0835941, + 52.120764501 + ], + [ + 10.0815804, + 52.120808001 + ], + [ + 10.0807153, + 52.120835501 + ], + [ + 10.0793534, + 52.120886301 + ], + [ + 10.0782876, + 52.120940301 + ], + [ + 10.0773313, + 52.120994501 + ], + [ + 10.0762977, + 52.121062201 + ], + [ + 10.0753472, + 52.121144201 + ], + [ + 10.0736827, + 52.121297901 + ], + [ + 10.0719236, + 52.121496801 + ], + [ + 10.0705242, + 52.121679501 + ], + [ + 10.0690901, + 52.121901101 + ], + [ + 10.0680281, + 52.122076501 + ], + [ + 10.0668814, + 52.122284701 + ], + [ + 10.0659662, + 52.122464501 + ], + [ + 10.0645636, + 52.122773201 + ], + [ + 10.0633619, + 52.123060701 + ], + [ + 10.0623013, + 52.123333101 + ], + [ + 10.0608161, + 52.123734601 + ], + [ + 10.0595584, + 52.124101201 + ], + [ + 10.058315711, + 52.124491903 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.99158947844915,10.155105155821428,51.8838499962607,10.12949242221208", + "point": "51.99158947844915,10.155105155821428", + "startLcPosition": "193", + "impact": { + "lower": "Schwalenberg", + "upper": "Bockenem", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Bockenem - Schwalenberg", + "coordinate": { + "lat": 51.99158947844915, + "long": 10.155105155821428 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "", + "A7: Hannover -> Kassel, zwischen 0.9 km hinter AS Bockenem und 3.1 km vor Schwalenberg", + "", + "L\u00e4nge: 12.35 km | Maximale Durchfahrtsbreite: 11 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.155105156, + 51.991589478 + ], + [ + 10.1550908, + 51.991483401 + ], + [ + 10.1548852, + 51.989959201 + ], + [ + 10.1546544, + 51.988493201 + ], + [ + 10.1542826, + 51.986554701 + ], + [ + 10.153842, + 51.984613401 + ], + [ + 10.1534124, + 51.983141101 + ], + [ + 10.1527817, + 51.981342201 + ], + [ + 10.1526476, + 51.980983301 + ], + [ + 10.1522683, + 51.980102401 + ], + [ + 10.1519875, + 51.979462401 + ], + [ + 10.1517641, + 51.978979601 + ], + [ + 10.1510851, + 51.977733501 + ], + [ + 10.1503519, + 51.976449001 + ], + [ + 10.1498433, + 51.975647101 + ], + [ + 10.1487118, + 51.973992201 + ], + [ + 10.1482561, + 51.973365501 + ], + [ + 10.1479499, + 51.972978501 + ], + [ + 10.1476758, + 51.972632101 + ], + [ + 10.1457636, + 51.970412101 + ], + [ + 10.1441089, + 51.968513301 + ], + [ + 10.1431302, + 51.967272601 + ], + [ + 10.1427284, + 51.966728601 + ], + [ + 10.1421837, + 51.965903501 + ], + [ + 10.1416171, + 51.964927301 + ], + [ + 10.1410641, + 51.963722301 + ], + [ + 10.1405718, + 51.962442401 + ], + [ + 10.1403105, + 51.961506401 + ], + [ + 10.1400967, + 51.960522201 + ], + [ + 10.1399491, + 51.959534301 + ], + [ + 10.1398626, + 51.958830101 + ], + [ + 10.1398444, + 51.957730401 + ], + [ + 10.139899, + 51.956746901 + ], + [ + 10.1400267, + 51.955696201 + ], + [ + 10.1402179, + 51.954721001 + ], + [ + 10.1404435, + 51.953762201 + ], + [ + 10.1407071, + 51.952869601 + ], + [ + 10.1410333, + 51.951859201 + ], + [ + 10.1417714, + 51.949864801 + ], + [ + 10.1423473, + 51.948482601 + ], + [ + 10.1430979, + 51.946665501 + ], + [ + 10.143744, + 51.945076301 + ], + [ + 10.1441627, + 51.943935801 + ], + [ + 10.1442115, + 51.943788401 + ], + [ + 10.1445493, + 51.942792301 + ], + [ + 10.1447218, + 51.942174501 + ], + [ + 10.1448957, + 51.941458001 + ], + [ + 10.1451183, + 51.940464501 + ], + [ + 10.1452707, + 51.939557401 + ], + [ + 10.1453572, + 51.938687301 + ], + [ + 10.1453986, + 51.937959801 + ], + [ + 10.1454083, + 51.937638401 + ], + [ + 10.1454272, + 51.937230801 + ], + [ + 10.1454134, + 51.936576901 + ], + [ + 10.145298, + 51.935201001 + ], + [ + 10.1451941, + 51.934379201 + ], + [ + 10.1450382, + 51.933541001 + ], + [ + 10.1448114, + 51.932545401 + ], + [ + 10.1445248, + 51.931570201 + ], + [ + 10.1440707, + 51.930354701 + ], + [ + 10.1438927, + 51.929863801 + ], + [ + 10.1436483, + 51.929318601 + ], + [ + 10.1430431, + 51.928069001 + ], + [ + 10.1425025, + 51.927118001 + ], + [ + 10.1419036, + 51.926159101 + ], + [ + 10.1408781, + 51.924689901 + ], + [ + 10.1395426, + 51.922884201 + ], + [ + 10.1392761, + 51.922517901 + ], + [ + 10.1385108, + 51.921465901 + ], + [ + 10.1377153, + 51.920225701 + ], + [ + 10.1375487, + 51.919948601 + ], + [ + 10.1365353, + 51.918052301 + ], + [ + 10.1361474, + 51.917212901 + ], + [ + 10.1356879, + 51.916141201 + ], + [ + 10.1351985, + 51.914913201 + ], + [ + 10.1348124, + 51.913684301 + ], + [ + 10.1344697, + 51.912264401 + ], + [ + 10.1341002, + 51.910254601 + ], + [ + 10.1338752, + 51.908636601 + ], + [ + 10.13376, + 51.907657201 + ], + [ + 10.1335701, + 51.905768701 + ], + [ + 10.1333572, + 51.903643201 + ], + [ + 10.1331591, + 51.901967201 + ], + [ + 10.1329738, + 51.900477301 + ], + [ + 10.132914, + 51.900051001 + ], + [ + 10.1325195, + 51.897431701 + ], + [ + 10.1320917, + 51.894986301 + ], + [ + 10.1319749, + 51.894381501 + ], + [ + 10.1317902, + 51.893326501 + ], + [ + 10.1316117, + 51.892256001 + ], + [ + 10.1314653, + 51.891514201 + ], + [ + 10.1313098, + 51.890722901 + ], + [ + 10.1311185, + 51.889945601 + ], + [ + 10.1309111, + 51.889038401 + ], + [ + 10.1307342, + 51.888321101 + ], + [ + 10.1307046, + 51.888203101 + ], + [ + 10.1305325, + 51.887554101 + ], + [ + 10.1303389, + 51.886823801 + ], + [ + 10.1300882, + 51.885882801 + ], + [ + 10.1297207, + 51.884645001 + ], + [ + 10.1295713, + 51.884105501 + ], + [ + 10.129492422, + 51.883849996 + ] + ] + } + }, + { + "identifier": "2026-012348--vi-bs.2026-03-30_07-00-00-000.devi-zus.2026-03-30_07-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.99158947844915,10.155105155821428,51.8838499962607,10.12949242221208", + "point": "51.99158947844915,10.155105155821428", + "startLcPosition": "193", + "impact": { + "lower": "Schwalenberg", + "upper": "Bockenem", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Bockenem - Schwalenberg", + "coordinate": { + "lat": 51.99158947844915, + "long": 10.155105155821428 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 30.03.26 und dem 09.04.26 von 07:00 bis 16:00 Uhr.", + "10.04.26 von 07:00 bis 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "", + "A7: Hannover -> Kassel, zwischen 0.9 km hinter AS Bockenem und 3.1 km vor Schwalenberg", + "", + "L\u00e4nge: 12.35 km | Maximale Durchfahrtsbreite: 7 m", + "", + "VIA Betrieb Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.155105156, + 51.991589478 + ], + [ + 10.1550908, + 51.991483401 + ], + [ + 10.1548852, + 51.989959201 + ], + [ + 10.1546544, + 51.988493201 + ], + [ + 10.1542826, + 51.986554701 + ], + [ + 10.153842, + 51.984613401 + ], + [ + 10.1534124, + 51.983141101 + ], + [ + 10.1527817, + 51.981342201 + ], + [ + 10.1526476, + 51.980983301 + ], + [ + 10.1522683, + 51.980102401 + ], + [ + 10.1519875, + 51.979462401 + ], + [ + 10.1517641, + 51.978979601 + ], + [ + 10.1510851, + 51.977733501 + ], + [ + 10.1503519, + 51.976449001 + ], + [ + 10.1498433, + 51.975647101 + ], + [ + 10.1487118, + 51.973992201 + ], + [ + 10.1482561, + 51.973365501 + ], + [ + 10.1479499, + 51.972978501 + ], + [ + 10.1476758, + 51.972632101 + ], + [ + 10.1457636, + 51.970412101 + ], + [ + 10.1441089, + 51.968513301 + ], + [ + 10.1431302, + 51.967272601 + ], + [ + 10.1427284, + 51.966728601 + ], + [ + 10.1421837, + 51.965903501 + ], + [ + 10.1416171, + 51.964927301 + ], + [ + 10.1410641, + 51.963722301 + ], + [ + 10.1405718, + 51.962442401 + ], + [ + 10.1403105, + 51.961506401 + ], + [ + 10.1400967, + 51.960522201 + ], + [ + 10.1399491, + 51.959534301 + ], + [ + 10.1398626, + 51.958830101 + ], + [ + 10.1398444, + 51.957730401 + ], + [ + 10.139899, + 51.956746901 + ], + [ + 10.1400267, + 51.955696201 + ], + [ + 10.1402179, + 51.954721001 + ], + [ + 10.1404435, + 51.953762201 + ], + [ + 10.1407071, + 51.952869601 + ], + [ + 10.1410333, + 51.951859201 + ], + [ + 10.1417714, + 51.949864801 + ], + [ + 10.1423473, + 51.948482601 + ], + [ + 10.1430979, + 51.946665501 + ], + [ + 10.143744, + 51.945076301 + ], + [ + 10.1441627, + 51.943935801 + ], + [ + 10.1442115, + 51.943788401 + ], + [ + 10.1445493, + 51.942792301 + ], + [ + 10.1447218, + 51.942174501 + ], + [ + 10.1448957, + 51.941458001 + ], + [ + 10.1451183, + 51.940464501 + ], + [ + 10.1452707, + 51.939557401 + ], + [ + 10.1453572, + 51.938687301 + ], + [ + 10.1453986, + 51.937959801 + ], + [ + 10.1454083, + 51.937638401 + ], + [ + 10.1454272, + 51.937230801 + ], + [ + 10.1454134, + 51.936576901 + ], + [ + 10.145298, + 51.935201001 + ], + [ + 10.1451941, + 51.934379201 + ], + [ + 10.1450382, + 51.933541001 + ], + [ + 10.1448114, + 51.932545401 + ], + [ + 10.1445248, + 51.931570201 + ], + [ + 10.1440707, + 51.930354701 + ], + [ + 10.1438927, + 51.929863801 + ], + [ + 10.1436483, + 51.929318601 + ], + [ + 10.1430431, + 51.928069001 + ], + [ + 10.1425025, + 51.927118001 + ], + [ + 10.1419036, + 51.926159101 + ], + [ + 10.1408781, + 51.924689901 + ], + [ + 10.1395426, + 51.922884201 + ], + [ + 10.1392761, + 51.922517901 + ], + [ + 10.1385108, + 51.921465901 + ], + [ + 10.1377153, + 51.920225701 + ], + [ + 10.1375487, + 51.919948601 + ], + [ + 10.1365353, + 51.918052301 + ], + [ + 10.1361474, + 51.917212901 + ], + [ + 10.1356879, + 51.916141201 + ], + [ + 10.1351985, + 51.914913201 + ], + [ + 10.1348124, + 51.913684301 + ], + [ + 10.1344697, + 51.912264401 + ], + [ + 10.1341002, + 51.910254601 + ], + [ + 10.1338752, + 51.908636601 + ], + [ + 10.13376, + 51.907657201 + ], + [ + 10.1335701, + 51.905768701 + ], + [ + 10.1333572, + 51.903643201 + ], + [ + 10.1331591, + 51.901967201 + ], + [ + 10.1329738, + 51.900477301 + ], + [ + 10.132914, + 51.900051001 + ], + [ + 10.1325195, + 51.897431701 + ], + [ + 10.1320917, + 51.894986301 + ], + [ + 10.1319749, + 51.894381501 + ], + [ + 10.1317902, + 51.893326501 + ], + [ + 10.1316117, + 51.892256001 + ], + [ + 10.1314653, + 51.891514201 + ], + [ + 10.1313098, + 51.890722901 + ], + [ + 10.1311185, + 51.889945601 + ], + [ + 10.1309111, + 51.889038401 + ], + [ + 10.1307342, + 51.888321101 + ], + [ + 10.1307046, + 51.888203101 + ], + [ + 10.1305325, + 51.887554101 + ], + [ + 10.1303389, + 51.886823801 + ], + [ + 10.1300882, + 51.885882801 + ], + [ + 10.1297207, + 51.884645001 + ], + [ + 10.1295713, + 51.884105501 + ], + [ + 10.129492422, + 51.883849996 + ] + ] + } + }, + { + "identifier": "2026-016483--vi-bs.2026-04-14_19-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.99203743134265,10.155165779563264,51.93113315444047,10.144361520341166", + "point": "51.99203743134265,10.155165779563264", + "startLcPosition": "193", + "impact": { + "lower": "Harz", + "upper": "Bockenem", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Bockenem - Harz", + "coordinate": { + "lat": 51.99203743134265, + "long": 10.155165779563264 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 14.04.26 und dem 17.04.26 von 19:00 bis 00:00 Uhr.", + "Jeden Mittwoch, Donnerstag und Freitag zwischen dem 15.04.26 und dem 17.04.26 von 00:00 bis 06:00 Uhr.", + "", + "A7: Hannover -> Kassel, zwischen 0.8 km hinter AS Bockenem und 0.3 km vor Harz", + "", + "L\u00e4nge: 7 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "STRABAG A7 von Bockenem (AS) nach Harz (Raststaette) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.15516578, + 51.992037431 + ], + [ + 10.1550908, + 51.991483401 + ], + [ + 10.1548852, + 51.989959201 + ], + [ + 10.1546544, + 51.988493201 + ], + [ + 10.1542826, + 51.986554701 + ], + [ + 10.153842, + 51.984613401 + ], + [ + 10.1534124, + 51.983141101 + ], + [ + 10.1527817, + 51.981342201 + ], + [ + 10.1526476, + 51.980983301 + ], + [ + 10.1522683, + 51.980102401 + ], + [ + 10.1519875, + 51.979462401 + ], + [ + 10.1517641, + 51.978979601 + ], + [ + 10.1510851, + 51.977733501 + ], + [ + 10.1503519, + 51.976449001 + ], + [ + 10.1498433, + 51.975647101 + ], + [ + 10.1487118, + 51.973992201 + ], + [ + 10.1482561, + 51.973365501 + ], + [ + 10.1479499, + 51.972978501 + ], + [ + 10.1476758, + 51.972632101 + ], + [ + 10.1457636, + 51.970412101 + ], + [ + 10.1441089, + 51.968513301 + ], + [ + 10.1431302, + 51.967272601 + ], + [ + 10.1427284, + 51.966728601 + ], + [ + 10.1421837, + 51.965903501 + ], + [ + 10.1416171, + 51.964927301 + ], + [ + 10.1410641, + 51.963722301 + ], + [ + 10.1405718, + 51.962442401 + ], + [ + 10.1403105, + 51.961506401 + ], + [ + 10.1400967, + 51.960522201 + ], + [ + 10.1399491, + 51.959534301 + ], + [ + 10.1398626, + 51.958830101 + ], + [ + 10.1398444, + 51.957730401 + ], + [ + 10.139899, + 51.956746901 + ], + [ + 10.1400267, + 51.955696201 + ], + [ + 10.1402179, + 51.954721001 + ], + [ + 10.1404435, + 51.953762201 + ], + [ + 10.1407071, + 51.952869601 + ], + [ + 10.1410333, + 51.951859201 + ], + [ + 10.1417714, + 51.949864801 + ], + [ + 10.1423473, + 51.948482601 + ], + [ + 10.1430979, + 51.946665501 + ], + [ + 10.143744, + 51.945076301 + ], + [ + 10.1441627, + 51.943935801 + ], + [ + 10.1442115, + 51.943788401 + ], + [ + 10.1445493, + 51.942792301 + ], + [ + 10.1447218, + 51.942174501 + ], + [ + 10.1448957, + 51.941458001 + ], + [ + 10.1451183, + 51.940464501 + ], + [ + 10.1452707, + 51.939557401 + ], + [ + 10.1453572, + 51.938687301 + ], + [ + 10.1453986, + 51.937959801 + ], + [ + 10.1454083, + 51.937638401 + ], + [ + 10.1454272, + 51.937230801 + ], + [ + 10.1454134, + 51.936576901 + ], + [ + 10.145298, + 51.935201001 + ], + [ + 10.1451941, + 51.934379201 + ], + [ + 10.1450382, + 51.933541001 + ], + [ + 10.1448114, + 51.932545401 + ], + [ + 10.1445248, + 51.931570201 + ], + [ + 10.14436152, + 51.931133154 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.1207856433004,10.105757523445646,52.12449190300744,10.058315710995116", + "point": "52.1207856433004,10.105757523445646", + "startLcPosition": "197", + "impact": { + "lower": "Hildesheimer B\u00f6rde", + "upper": "Derneburg/Salzgitter", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Derneburg/Salzgitter - Hildesheimer B\u00f6rde", + "coordinate": { + "lat": 52.1207856433004, + "long": 10.105757523445646 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 3.5 km hinter AS Derneburg/Salzgitter und 0.2 km vor Hildesheimer B\u00f6rde", + "", + "L\u00e4nge: 3.32 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.105757523, + 52.120785643 + ], + [ + 10.1056269, + 52.120792801 + ], + [ + 10.1044415, + 52.120842001 + ], + [ + 10.103397, + 52.120873301 + ], + [ + 10.1024277, + 52.120893901 + ], + [ + 10.1012565, + 52.120905301 + ], + [ + 10.0995497, + 52.120911401 + ], + [ + 10.0978343, + 52.120899001 + ], + [ + 10.0924807, + 52.120818101 + ], + [ + 10.0888139, + 52.120765401 + ], + [ + 10.087651, + 52.120748701 + ], + [ + 10.0860552, + 52.120748301 + ], + [ + 10.0849305, + 52.120751601 + ], + [ + 10.0835941, + 52.120764501 + ], + [ + 10.0815804, + 52.120808001 + ], + [ + 10.0807153, + 52.120835501 + ], + [ + 10.0793534, + 52.120886301 + ], + [ + 10.0782876, + 52.120940301 + ], + [ + 10.0773313, + 52.120994501 + ], + [ + 10.0762977, + 52.121062201 + ], + [ + 10.0753472, + 52.121144201 + ], + [ + 10.0736827, + 52.121297901 + ], + [ + 10.0719236, + 52.121496801 + ], + [ + 10.0705242, + 52.121679501 + ], + [ + 10.0690901, + 52.121901101 + ], + [ + 10.0680281, + 52.122076501 + ], + [ + 10.0668814, + 52.122284701 + ], + [ + 10.0659662, + 52.122464501 + ], + [ + 10.0645636, + 52.122773201 + ], + [ + 10.0633619, + 52.123060701 + ], + [ + 10.0623013, + 52.123333101 + ], + [ + 10.0608161, + 52.123734601 + ], + [ + 10.0595584, + 52.124101201 + ], + [ + 10.058315711, + 52.124491903 + ] + ] + } + }, + { + "identifier": "2024-033255--vi-bs.2026-03-13_00-00-00-000.devi-zus.2024-07-22_00-00-00-000.f_003.de39", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.13661089466466,10.013761978014655,52.221130522221685,9.933877056766955", + "point": "52.13661089466466,10.013761978014655", + "startLcPosition": "198", + "impact": { + "lower": "An der Alpe", + "upper": "Hildesheimer B\u00f6rde", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Hildesheimer B\u00f6rde - An der Alpe", + "startTimestamp": "2026-03-13T00:00:00+01:00", + "coordinate": { + "lat": 52.13661089466466, + "long": 10.013761978014655 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.03.26 um 00:00 Uhr", + "Ende: 01.11.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 25.04.27)", + "", + "A7: Kassel -> Hannover, zwischen 3.1 km hinter Hildesheimer B\u00f6rde und 2.0 km vor An der Alpe", + "", + "L\u00e4nge: 11.36 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A7 Grundhafte Erneuerung Bauphase 2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.013761978, + 52.136610895 + ], + [ + 10.0129812, + 52.136813401 + ], + [ + 10.011795, + 52.137159001 + ], + [ + 10.0105577, + 52.137540401 + ], + [ + 10.0092558, + 52.137992001 + ], + [ + 10.0078562, + 52.138521601 + ], + [ + 10.0065555, + 52.139066801 + ], + [ + 10.0051535, + 52.139721201 + ], + [ + 10.0036625, + 52.140481501 + ], + [ + 10.0021574, + 52.141342701 + ], + [ + 10.0014255, + 52.141798101 + ], + [ + 10.0006145, + 52.142345901 + ], + [ + 10.0005191, + 52.142400901 + ], + [ + 9.9996698, + 52.143016001 + ], + [ + 9.9983885, + 52.144026601 + ], + [ + 9.9971902, + 52.145080801 + ], + [ + 9.9961968, + 52.146070501 + ], + [ + 9.9953214, + 52.147111401 + ], + [ + 9.9951345, + 52.147340801 + ], + [ + 9.9944798, + 52.148174401 + ], + [ + 9.9938362, + 52.149082001 + ], + [ + 9.993536, + 52.149555101 + ], + [ + 9.9929394, + 52.150548201 + ], + [ + 9.992415, + 52.151521601 + ], + [ + 9.99192, + 52.152499101 + ], + [ + 9.9911103, + 52.154126001 + ], + [ + 9.9906479, + 52.155075401 + ], + [ + 9.9905808, + 52.155208601 + ], + [ + 9.9902771, + 52.155812101 + ], + [ + 9.9897506, + 52.156874001 + ], + [ + 9.9894212, + 52.157561701 + ], + [ + 9.9888992, + 52.158605601 + ], + [ + 9.9885222, + 52.159385601 + ], + [ + 9.9880668, + 52.160309701 + ], + [ + 9.9876619, + 52.161135301 + ], + [ + 9.9871405, + 52.162193101 + ], + [ + 9.9867232, + 52.163039601 + ], + [ + 9.9857611, + 52.164983101 + ], + [ + 9.9857083, + 52.165085501 + ], + [ + 9.9855217, + 52.165461601 + ], + [ + 9.9847577, + 52.167001601 + ], + [ + 9.9841196, + 52.168307201 + ], + [ + 9.9840259, + 52.168487901 + ], + [ + 9.9839323, + 52.168668501 + ], + [ + 9.9832955, + 52.169839001 + ], + [ + 9.982852, + 52.170654901 + ], + [ + 9.9823681, + 52.171463101 + ], + [ + 9.9814317, + 52.172951801 + ], + [ + 9.9809522, + 52.173658001 + ], + [ + 9.9804372, + 52.174370901 + ], + [ + 9.9797773, + 52.175229501 + ], + [ + 9.9795512, + 52.175514201 + ], + [ + 9.978679, + 52.176531401 + ], + [ + 9.9778602, + 52.177416201 + ], + [ + 9.9769454, + 52.178323901 + ], + [ + 9.9763784, + 52.178860501 + ], + [ + 9.9757855, + 52.179397001 + ], + [ + 9.9747644, + 52.180266201 + ], + [ + 9.973604, + 52.181182101 + ], + [ + 9.9726761, + 52.181873601 + ], + [ + 9.97158, + 52.182635701 + ], + [ + 9.9709775, + 52.183042001 + ], + [ + 9.9706976, + 52.183221901 + ], + [ + 9.9701553, + 52.183566301 + ], + [ + 9.9696619, + 52.183892001 + ], + [ + 9.9682459, + 52.184735101 + ], + [ + 9.9676438, + 52.185083901 + ], + [ + 9.967359, + 52.185248901 + ], + [ + 9.9666046, + 52.185685901 + ], + [ + 9.9659786, + 52.186037401 + ], + [ + 9.9657435, + 52.186166101 + ], + [ + 9.9655631, + 52.186264901 + ], + [ + 9.9642474, + 52.186971001 + ], + [ + 9.9634298, + 52.187400401 + ], + [ + 9.9630609, + 52.187592101 + ], + [ + 9.9618644, + 52.188205601 + ], + [ + 9.9606609, + 52.188822701 + ], + [ + 9.9599831, + 52.189165901 + ], + [ + 9.9597059, + 52.189306401 + ], + [ + 9.9578444, + 52.190268601 + ], + [ + 9.9562555, + 52.191076101 + ], + [ + 9.9542682, + 52.192087101 + ], + [ + 9.9524677, + 52.193024201 + ], + [ + 9.9508859, + 52.193880001 + ], + [ + 9.9496305, + 52.194575001 + ], + [ + 9.9486715, + 52.195126301 + ], + [ + 9.9479201, + 52.195529401 + ], + [ + 9.947346, + 52.195881101 + ], + [ + 9.9468371, + 52.196190501 + ], + [ + 9.9453996, + 52.197110701 + ], + [ + 9.9445617, + 52.197674001 + ], + [ + 9.9435387, + 52.198398701 + ], + [ + 9.9431374, + 52.198697801 + ], + [ + 9.9428843, + 52.198886301 + ], + [ + 9.9418507, + 52.199698001 + ], + [ + 9.9411728, + 52.200252501 + ], + [ + 9.9402056, + 52.201113201 + ], + [ + 9.9392488, + 52.202053301 + ], + [ + 9.9385848, + 52.202762901 + ], + [ + 9.9380518, + 52.203381801 + ], + [ + 9.9374777, + 52.204101201 + ], + [ + 9.9369625, + 52.204800101 + ], + [ + 9.9364867, + 52.205544401 + ], + [ + 9.9361223, + 52.206151401 + ], + [ + 9.9358069, + 52.206765401 + ], + [ + 9.9355129, + 52.207386101 + ], + [ + 9.9352509, + 52.208013701 + ], + [ + 9.935014, + 52.208651501 + ], + [ + 9.9348134, + 52.209274001 + ], + [ + 9.9346666, + 52.209806501 + ], + [ + 9.934522, + 52.210409001 + ], + [ + 9.9344126, + 52.210934101 + ], + [ + 9.9342992, + 52.211529601 + ], + [ + 9.9341017, + 52.212971801 + ], + [ + 9.9340436, + 52.213621001 + ], + [ + 9.9339893, + 52.214422001 + ], + [ + 9.9339515, + 52.215084501 + ], + [ + 9.9339332, + 52.215716601 + ], + [ + 9.9339173, + 52.216207501 + ], + [ + 9.9339105, + 52.216862401 + ], + [ + 9.9339012, + 52.217985701 + ], + [ + 9.933877057, + 52.221130522 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de27", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.13554426043307,10.018091122257244,51.99173282326309,10.15512455526334", + "point": "52.13554426043307,10.018091122257244", + "startLcPosition": "199", + "impact": { + "lower": "Ambergau West", + "upper": "Hildesheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Hildesheim - Ambergau West", + "coordinate": { + "lat": 52.13554426043307, + "long": 10.018091122257244 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 3.7 km hinter AS Hildesheim und 1.5 km vor Ambergau West", + "", + "L\u00e4nge: 24.16 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.018091122, + 52.13554426 + ], + [ + 10.019313, + 52.135319301 + ], + [ + 10.0217155, + 52.134909601 + ], + [ + 10.0237609, + 52.134586101 + ], + [ + 10.0257805, + 52.134263401 + ], + [ + 10.0277822, + 52.133927601 + ], + [ + 10.0297858, + 52.133571501 + ], + [ + 10.0312088, + 52.133300301 + ], + [ + 10.0323959, + 52.133060801 + ], + [ + 10.0335842, + 52.132797701 + ], + [ + 10.0346937, + 52.132538901 + ], + [ + 10.0357844, + 52.132275601 + ], + [ + 10.0368221, + 52.132016501 + ], + [ + 10.0375715, + 52.131820601 + ], + [ + 10.0395179, + 52.131276401 + ], + [ + 10.0404843, + 52.130997901 + ], + [ + 10.0421458, + 52.130481701 + ], + [ + 10.0432848, + 52.130115001 + ], + [ + 10.0444847, + 52.129699401 + ], + [ + 10.0448229, + 52.129579701 + ], + [ + 10.0458864, + 52.129203401 + ], + [ + 10.0466081, + 52.128937101 + ], + [ + 10.0469166, + 52.128819601 + ], + [ + 10.0479175, + 52.128426001 + ], + [ + 10.0490751, + 52.127964001 + ], + [ + 10.0505847, + 52.127331601 + ], + [ + 10.0524815, + 52.126525001 + ], + [ + 10.0542948, + 52.125784401 + ], + [ + 10.0549187, + 52.125535101 + ], + [ + 10.0550728, + 52.125474101 + ], + [ + 10.0554596, + 52.125329101 + ], + [ + 10.0565156, + 52.124947401 + ], + [ + 10.0572032, + 52.124711601 + ], + [ + 10.0581739, + 52.124380301 + ], + [ + 10.0594578, + 52.123978301 + ], + [ + 10.0607585, + 52.123597601 + ], + [ + 10.0622245, + 52.123211801 + ], + [ + 10.0632757, + 52.122938201 + ], + [ + 10.064491, + 52.122647901 + ], + [ + 10.0659013, + 52.122348701 + ], + [ + 10.0668258, + 52.122165401 + ], + [ + 10.0679771, + 52.121967101 + ], + [ + 10.0690649, + 52.121790201 + ], + [ + 10.0704917, + 52.121567901 + ], + [ + 10.0719061, + 52.121378701 + ], + [ + 10.0736818, + 52.121175801 + ], + [ + 10.0753363, + 52.121027501 + ], + [ + 10.0762802, + 52.120950801 + ], + [ + 10.0773294, + 52.120885201 + ], + [ + 10.0783028, + 52.120826201 + ], + [ + 10.0793427, + 52.120773701 + ], + [ + 10.0807039, + 52.120719001 + ], + [ + 10.0815567, + 52.120691601 + ], + [ + 10.0835996, + 52.120644701 + ], + [ + 10.0851686, + 52.120633501 + ], + [ + 10.0860336, + 52.120628801 + ], + [ + 10.0876594, + 52.120628401 + ], + [ + 10.0893092, + 52.120651701 + ], + [ + 10.0924908, + 52.120696901 + ], + [ + 10.0958269, + 52.120758101 + ], + [ + 10.0978334, + 52.120785201 + ], + [ + 10.0995589, + 52.120794501 + ], + [ + 10.1012401, + 52.120790101 + ], + [ + 10.1024238, + 52.120778201 + ], + [ + 10.1033928, + 52.120759001 + ], + [ + 10.1044247, + 52.120731601 + ], + [ + 10.1056198, + 52.120681101 + ], + [ + 10.1071119, + 52.120598301 + ], + [ + 10.1083944, + 52.120503701 + ], + [ + 10.1098406, + 52.120368201 + ], + [ + 10.1104824, + 52.120295701 + ], + [ + 10.1112041, + 52.120214601 + ], + [ + 10.1121729, + 52.120084201 + ], + [ + 10.1133004, + 52.119909201 + ], + [ + 10.1142859, + 52.119739101 + ], + [ + 10.1153263, + 52.119526401 + ], + [ + 10.1159639, + 52.119388401 + ], + [ + 10.1165625, + 52.119255501 + ], + [ + 10.1174412, + 52.119037401 + ], + [ + 10.1182902, + 52.118786801 + ], + [ + 10.1187252, + 52.118664601 + ], + [ + 10.1193764, + 52.118472801 + ], + [ + 10.1199144, + 52.118305401 + ], + [ + 10.121196, + 52.117888501 + ], + [ + 10.1219854, + 52.117607301 + ], + [ + 10.1227208, + 52.117326401 + ], + [ + 10.1232446, + 52.117108401 + ], + [ + 10.1239276, + 52.116806101 + ], + [ + 10.1246627, + 52.116450501 + ], + [ + 10.1253576, + 52.116109601 + ], + [ + 10.1260972, + 52.115722401 + ], + [ + 10.1263334, + 52.115596201 + ], + [ + 10.1270725, + 52.115196001 + ], + [ + 10.1276108, + 52.114872801 + ], + [ + 10.1281774, + 52.114527101 + ], + [ + 10.1286843, + 52.114199601 + ], + [ + 10.1291643, + 52.113882701 + ], + [ + 10.1297312, + 52.113499501 + ], + [ + 10.1302984, + 52.113077501 + ], + [ + 10.1311542, + 52.112460401 + ], + [ + 10.131494, + 52.112197901 + ], + [ + 10.1327568, + 52.111267401 + ], + [ + 10.1333951, + 52.110782701 + ], + [ + 10.1348975, + 52.109724301 + ], + [ + 10.1357219, + 52.109144201 + ], + [ + 10.1362517, + 52.108778801 + ], + [ + 10.1368861, + 52.108354001 + ], + [ + 10.1381983, + 52.107502801 + ], + [ + 10.1392702, + 52.106827801 + ], + [ + 10.1399922, + 52.106386801 + ], + [ + 10.1414635, + 52.105509301 + ], + [ + 10.1423681, + 52.104982101 + ], + [ + 10.1435918, + 52.104293001 + ], + [ + 10.1446285, + 52.103741101 + ], + [ + 10.1451397, + 52.103460401 + ], + [ + 10.1465007, + 52.102747201 + ], + [ + 10.1483501, + 52.101750401 + ], + [ + 10.1487116, + 52.101555101 + ], + [ + 10.1493618, + 52.101248901 + ], + [ + 10.150309, + 52.100828201 + ], + [ + 10.1520988, + 52.100035901 + ], + [ + 10.153174, + 52.099602001 + ], + [ + 10.1538514, + 52.099313501 + ], + [ + 10.1550381, + 52.098823601 + ], + [ + 10.1571093, + 52.098014301 + ], + [ + 10.1580517, + 52.097630201 + ], + [ + 10.1589419, + 52.097284801 + ], + [ + 10.1596273, + 52.097033501 + ], + [ + 10.1618248, + 52.096249301 + ], + [ + 10.1622882, + 52.096085501 + ], + [ + 10.1633359, + 52.095704401 + ], + [ + 10.1650878, + 52.095076001 + ], + [ + 10.1659168, + 52.094763701 + ], + [ + 10.1665093, + 52.094532701 + ], + [ + 10.1675456, + 52.094106501 + ], + [ + 10.1690058, + 52.093489001 + ], + [ + 10.1696889, + 52.093187701 + ], + [ + 10.1704891, + 52.092822201 + ], + [ + 10.1709591, + 52.092605301 + ], + [ + 10.1716176, + 52.092290701 + ], + [ + 10.1726698, + 52.091776801 + ], + [ + 10.1736554, + 52.091263401 + ], + [ + 10.174902, + 52.090596701 + ], + [ + 10.1753881, + 52.090328101 + ], + [ + 10.1760686, + 52.089941901 + ], + [ + 10.1780768, + 52.088725101 + ], + [ + 10.1784652, + 52.088472601 + ], + [ + 10.1792731, + 52.087947401 + ], + [ + 10.1797172, + 52.087643201 + ], + [ + 10.180241, + 52.087284301 + ], + [ + 10.180581, + 52.087057301 + ], + [ + 10.181423, + 52.086439401 + ], + [ + 10.1822708, + 52.085808001 + ], + [ + 10.1825619, + 52.085576201 + ], + [ + 10.1831774, + 52.085082201 + ], + [ + 10.1841295, + 52.084326401 + ], + [ + 10.1847829, + 52.083760301 + ], + [ + 10.1855568, + 52.083054601 + ], + [ + 10.1872104, + 52.081424801 + ], + [ + 10.1879943, + 52.080609601 + ], + [ + 10.188302, + 52.080280501 + ], + [ + 10.1889781, + 52.079491401 + ], + [ + 10.1895417, + 52.078808901 + ], + [ + 10.1896226, + 52.078700301 + ], + [ + 10.1900374, + 52.078149301 + ], + [ + 10.1906999, + 52.077178501 + ], + [ + 10.1915926, + 52.075665201 + ], + [ + 10.1923611, + 52.074111101 + ], + [ + 10.1929029, + 52.072742501 + ], + [ + 10.193287, + 52.071322701 + ], + [ + 10.1935094, + 52.070305401 + ], + [ + 10.1936735, + 52.069273801 + ], + [ + 10.1937254, + 52.068790401 + ], + [ + 10.1937647, + 52.068211801 + ], + [ + 10.1937919, + 52.067574101 + ], + [ + 10.1937774, + 52.066448801 + ], + [ + 10.1936666, + 52.065225501 + ], + [ + 10.1934909, + 52.064011401 + ], + [ + 10.1933651, + 52.063389901 + ], + [ + 10.1931801, + 52.062519701 + ], + [ + 10.1928345, + 52.061272701 + ], + [ + 10.1924509, + 52.060054801 + ], + [ + 10.1920457, + 52.058961501 + ], + [ + 10.1915168, + 52.057700401 + ], + [ + 10.1910397, + 52.056672301 + ], + [ + 10.1906275, + 52.055875901 + ], + [ + 10.1903409, + 52.055357801 + ], + [ + 10.1896428, + 52.054154301 + ], + [ + 10.1888575, + 52.052945001 + ], + [ + 10.1884163, + 52.052302201 + ], + [ + 10.1876943, + 52.051323201 + ], + [ + 10.1873829, + 52.050906901 + ], + [ + 10.18641, + 52.049714901 + ], + [ + 10.1859656, + 52.049173401 + ], + [ + 10.1850282, + 52.048144301 + ], + [ + 10.1842473, + 52.047317801 + ], + [ + 10.1823421, + 52.045345701 + ], + [ + 10.1804659, + 52.043400601 + ], + [ + 10.179741, + 52.042642101 + ], + [ + 10.178957, + 52.041791001 + ], + [ + 10.1781815, + 52.040890201 + ], + [ + 10.1778057, + 52.040453201 + ], + [ + 10.1774347, + 52.040005601 + ], + [ + 10.1771184, + 52.039598301 + ], + [ + 10.1767688, + 52.039143601 + ], + [ + 10.1762393, + 52.038417301 + ], + [ + 10.1757273, + 52.037668001 + ], + [ + 10.1752384, + 52.036892901 + ], + [ + 10.1749599, + 52.036437301 + ], + [ + 10.1746843, + 52.035953301 + ], + [ + 10.1740645, + 52.034779601 + ], + [ + 10.173596, + 52.033787101 + ], + [ + 10.1732015, + 52.032881601 + ], + [ + 10.172885, + 52.032102401 + ], + [ + 10.1722949, + 52.030519901 + ], + [ + 10.171801, + 52.029080001 + ], + [ + 10.17143, + 52.027985401 + ], + [ + 10.170998, + 52.026700401 + ], + [ + 10.1702917, + 52.024726101 + ], + [ + 10.1696211, + 52.023040301 + ], + [ + 10.1694704, + 52.022684501 + ], + [ + 10.1690782, + 52.021821201 + ], + [ + 10.1686736, + 52.020969201 + ], + [ + 10.1681792, + 52.020005201 + ], + [ + 10.167713, + 52.019142701 + ], + [ + 10.1672044, + 52.018242701 + ], + [ + 10.1666715, + 52.017354801 + ], + [ + 10.1660133, + 52.016333201 + ], + [ + 10.1653345, + 52.015325001 + ], + [ + 10.1645517, + 52.014222201 + ], + [ + 10.1640407, + 52.013538301 + ], + [ + 10.16175, + 52.010472201 + ], + [ + 10.1613343, + 52.009908301 + ], + [ + 10.1609714, + 52.009380801 + ], + [ + 10.1606944, + 52.008972201 + ], + [ + 10.1597844, + 52.007537501 + ], + [ + 10.1590833, + 52.006305601 + ], + [ + 10.1586667, + 52.005527801 + ], + [ + 10.1576883, + 52.003463801 + ], + [ + 10.157431, + 52.002863201 + ], + [ + 10.1573307, + 52.002611301 + ], + [ + 10.1568778, + 52.001199701 + ], + [ + 10.1566377, + 52.000383701 + ], + [ + 10.1561877, + 51.998562401 + ], + [ + 10.1560369, + 51.997772601 + ], + [ + 10.1558508, + 51.996742701 + ], + [ + 10.155676, + 51.995669901 + ], + [ + 10.1556175, + 51.995280001 + ], + [ + 10.155488, + 51.994392601 + ], + [ + 10.1553351, + 51.993288501 + ], + [ + 10.155124555, + 51.991732823 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.13554426043307,10.018091122257244,52.12067516487405,10.105726782373774", + "point": "52.13554426043307,10.018091122257244", + "startLcPosition": "199", + "impact": { + "lower": "Derneburg/Salzgitter", + "upper": "Hildesheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Hildesheim - Derneburg/Salzgitter", + "coordinate": { + "lat": 52.13554426043307, + "long": 10.018091122257244 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 3.7 km hinter AS Hildesheim und 3.5 km vor AS Derneburg/Salzgitter", + "", + "L\u00e4nge: 6.36 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.018091122, + 52.13554426 + ], + [ + 10.019313, + 52.135319301 + ], + [ + 10.0217155, + 52.134909601 + ], + [ + 10.0237609, + 52.134586101 + ], + [ + 10.0257805, + 52.134263401 + ], + [ + 10.0277822, + 52.133927601 + ], + [ + 10.0297858, + 52.133571501 + ], + [ + 10.0312088, + 52.133300301 + ], + [ + 10.0323959, + 52.133060801 + ], + [ + 10.0335842, + 52.132797701 + ], + [ + 10.0346937, + 52.132538901 + ], + [ + 10.0357844, + 52.132275601 + ], + [ + 10.0368221, + 52.132016501 + ], + [ + 10.0375715, + 52.131820601 + ], + [ + 10.0395179, + 52.131276401 + ], + [ + 10.0404843, + 52.130997901 + ], + [ + 10.0421458, + 52.130481701 + ], + [ + 10.0432848, + 52.130115001 + ], + [ + 10.0444847, + 52.129699401 + ], + [ + 10.0448229, + 52.129579701 + ], + [ + 10.0458864, + 52.129203401 + ], + [ + 10.0466081, + 52.128937101 + ], + [ + 10.0469166, + 52.128819601 + ], + [ + 10.0479175, + 52.128426001 + ], + [ + 10.0490751, + 52.127964001 + ], + [ + 10.0505847, + 52.127331601 + ], + [ + 10.0524815, + 52.126525001 + ], + [ + 10.0542948, + 52.125784401 + ], + [ + 10.0549187, + 52.125535101 + ], + [ + 10.0550728, + 52.125474101 + ], + [ + 10.0554596, + 52.125329101 + ], + [ + 10.0565156, + 52.124947401 + ], + [ + 10.0572032, + 52.124711601 + ], + [ + 10.0581739, + 52.124380301 + ], + [ + 10.0594578, + 52.123978301 + ], + [ + 10.0607585, + 52.123597601 + ], + [ + 10.0622245, + 52.123211801 + ], + [ + 10.0632757, + 52.122938201 + ], + [ + 10.064491, + 52.122647901 + ], + [ + 10.0659013, + 52.122348701 + ], + [ + 10.0668258, + 52.122165401 + ], + [ + 10.0679771, + 52.121967101 + ], + [ + 10.0690649, + 52.121790201 + ], + [ + 10.0704917, + 52.121567901 + ], + [ + 10.0719061, + 52.121378701 + ], + [ + 10.0736818, + 52.121175801 + ], + [ + 10.0753363, + 52.121027501 + ], + [ + 10.0762802, + 52.120950801 + ], + [ + 10.0773294, + 52.120885201 + ], + [ + 10.0783028, + 52.120826201 + ], + [ + 10.0793427, + 52.120773701 + ], + [ + 10.0807039, + 52.120719001 + ], + [ + 10.0815567, + 52.120691601 + ], + [ + 10.0835996, + 52.120644701 + ], + [ + 10.0851686, + 52.120633501 + ], + [ + 10.0860336, + 52.120628801 + ], + [ + 10.0876594, + 52.120628401 + ], + [ + 10.0893092, + 52.120651701 + ], + [ + 10.0924908, + 52.120696901 + ], + [ + 10.0958269, + 52.120758101 + ], + [ + 10.0978334, + 52.120785201 + ], + [ + 10.0995589, + 52.120794501 + ], + [ + 10.1012401, + 52.120790101 + ], + [ + 10.1024238, + 52.120778201 + ], + [ + 10.1033928, + 52.120759001 + ], + [ + 10.1044247, + 52.120731601 + ], + [ + 10.1056198, + 52.120681101 + ], + [ + 10.105726782, + 52.120675165 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.13554426043307,10.018091122257244,52.12067516487405,10.105726782373774", + "point": "52.13554426043307,10.018091122257244", + "startLcPosition": "199", + "impact": { + "lower": "Derneburg/Salzgitter", + "upper": "Hildesheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Hildesheim - Derneburg/Salzgitter", + "coordinate": { + "lat": 52.13554426043307, + "long": 10.018091122257244 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 3.7 km hinter AS Hildesheim und 3.5 km vor AS Derneburg/Salzgitter", + "", + "L\u00e4nge: 6.36 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.018091122, + 52.13554426 + ], + [ + 10.019313, + 52.135319301 + ], + [ + 10.0217155, + 52.134909601 + ], + [ + 10.0237609, + 52.134586101 + ], + [ + 10.0257805, + 52.134263401 + ], + [ + 10.0277822, + 52.133927601 + ], + [ + 10.0297858, + 52.133571501 + ], + [ + 10.0312088, + 52.133300301 + ], + [ + 10.0323959, + 52.133060801 + ], + [ + 10.0335842, + 52.132797701 + ], + [ + 10.0346937, + 52.132538901 + ], + [ + 10.0357844, + 52.132275601 + ], + [ + 10.0368221, + 52.132016501 + ], + [ + 10.0375715, + 52.131820601 + ], + [ + 10.0395179, + 52.131276401 + ], + [ + 10.0404843, + 52.130997901 + ], + [ + 10.0421458, + 52.130481701 + ], + [ + 10.0432848, + 52.130115001 + ], + [ + 10.0444847, + 52.129699401 + ], + [ + 10.0448229, + 52.129579701 + ], + [ + 10.0458864, + 52.129203401 + ], + [ + 10.0466081, + 52.128937101 + ], + [ + 10.0469166, + 52.128819601 + ], + [ + 10.0479175, + 52.128426001 + ], + [ + 10.0490751, + 52.127964001 + ], + [ + 10.0505847, + 52.127331601 + ], + [ + 10.0524815, + 52.126525001 + ], + [ + 10.0542948, + 52.125784401 + ], + [ + 10.0549187, + 52.125535101 + ], + [ + 10.0550728, + 52.125474101 + ], + [ + 10.0554596, + 52.125329101 + ], + [ + 10.0565156, + 52.124947401 + ], + [ + 10.0572032, + 52.124711601 + ], + [ + 10.0581739, + 52.124380301 + ], + [ + 10.0594578, + 52.123978301 + ], + [ + 10.0607585, + 52.123597601 + ], + [ + 10.0622245, + 52.123211801 + ], + [ + 10.0632757, + 52.122938201 + ], + [ + 10.064491, + 52.122647901 + ], + [ + 10.0659013, + 52.122348701 + ], + [ + 10.0668258, + 52.122165401 + ], + [ + 10.0679771, + 52.121967101 + ], + [ + 10.0690649, + 52.121790201 + ], + [ + 10.0704917, + 52.121567901 + ], + [ + 10.0719061, + 52.121378701 + ], + [ + 10.0736818, + 52.121175801 + ], + [ + 10.0753363, + 52.121027501 + ], + [ + 10.0762802, + 52.120950801 + ], + [ + 10.0773294, + 52.120885201 + ], + [ + 10.0783028, + 52.120826201 + ], + [ + 10.0793427, + 52.120773701 + ], + [ + 10.0807039, + 52.120719001 + ], + [ + 10.0815567, + 52.120691601 + ], + [ + 10.0835996, + 52.120644701 + ], + [ + 10.0851686, + 52.120633501 + ], + [ + 10.0860336, + 52.120628801 + ], + [ + 10.0876594, + 52.120628401 + ], + [ + 10.0893092, + 52.120651701 + ], + [ + 10.0924908, + 52.120696901 + ], + [ + 10.0958269, + 52.120758101 + ], + [ + 10.0978334, + 52.120785201 + ], + [ + 10.0995589, + 52.120794501 + ], + [ + 10.1012401, + 52.120790101 + ], + [ + 10.1024238, + 52.120778201 + ], + [ + 10.1033928, + 52.120759001 + ], + [ + 10.1044247, + 52.120731601 + ], + [ + 10.1056198, + 52.120681101 + ], + [ + 10.105726782, + 52.120675165 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.22115749235971,9.933876849710774,52.35875292655142,9.8856826515565", + "point": "52.22115749235971,9.933876849710774", + "startLcPosition": "200", + "impact": { + "lower": "Hannover-Anderten", + "upper": "Hildesheim-Drispenstedt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Hildesheim-Drispenstedt - Hannover-Anderten", + "coordinate": { + "lat": 52.22115749235971, + "long": 9.933876849710774 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 4.9 km hinter AS Hildesheim-Drispenstedt und AS Hannover-Anderten", + "", + "L\u00e4nge: 16.99 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.93387685, + 52.221157492 + ], + [ + 9.9338751, + 52.221385401 + ], + [ + 9.9338319, + 52.223171401 + ], + [ + 9.9337977, + 52.224025601 + ], + [ + 9.9337601, + 52.224782301 + ], + [ + 9.9336696, + 52.226075801 + ], + [ + 9.9335648, + 52.227204601 + ], + [ + 9.9334235, + 52.228374301 + ], + [ + 9.9333449, + 52.228970001 + ], + [ + 9.9332382, + 52.229620501 + ], + [ + 9.9330135, + 52.230781001 + ], + [ + 9.9327102, + 52.232064201 + ], + [ + 9.9326029, + 52.232443101 + ], + [ + 9.9325025, + 52.232782101 + ], + [ + 9.9322925, + 52.233490701 + ], + [ + 9.9319386, + 52.234562301 + ], + [ + 9.9316991, + 52.235185501 + ], + [ + 9.9314304, + 52.235869201 + ], + [ + 9.9311974, + 52.236452001 + ], + [ + 9.9309421, + 52.237011101 + ], + [ + 9.9308169, + 52.237269301 + ], + [ + 9.9307447, + 52.237418201 + ], + [ + 9.9301582, + 52.238596301 + ], + [ + 9.9292813, + 52.240210301 + ], + [ + 9.9287884, + 52.241049101 + ], + [ + 9.9283374, + 52.241799801 + ], + [ + 9.9278661, + 52.242556101 + ], + [ + 9.9270754, + 52.243802001 + ], + [ + 9.9262166, + 52.245115301 + ], + [ + 9.9246949, + 52.247392201 + ], + [ + 9.9239932, + 52.248441201 + ], + [ + 9.923352, + 52.249410301 + ], + [ + 9.9227187, + 52.250386601 + ], + [ + 9.9222392, + 52.251127001 + ], + [ + 9.9218486, + 52.251762101 + ], + [ + 9.9217734, + 52.251891901 + ], + [ + 9.9212118, + 52.252811501 + ], + [ + 9.9206188, + 52.253811901 + ], + [ + 9.920099, + 52.254726201 + ], + [ + 9.9196594, + 52.255566501 + ], + [ + 9.9196263, + 52.255632801 + ], + [ + 9.9192276, + 52.256424501 + ], + [ + 9.9188474, + 52.257216801 + ], + [ + 9.9181632, + 52.258767401 + ], + [ + 9.9176118, + 52.260175401 + ], + [ + 9.9170299, + 52.261797101 + ], + [ + 9.9167492, + 52.262595001 + ], + [ + 9.9164549, + 52.263490701 + ], + [ + 9.9150885, + 52.267647601 + ], + [ + 9.9143618, + 52.269712601 + ], + [ + 9.9139575, + 52.270786701 + ], + [ + 9.9135585, + 52.271766201 + ], + [ + 9.9128709, + 52.273303901 + ], + [ + 9.9126328, + 52.273806201 + ], + [ + 9.9123971, + 52.274269801 + ], + [ + 9.9119154, + 52.275187501 + ], + [ + 9.9113925, + 52.276087601 + ], + [ + 9.910944, + 52.276825501 + ], + [ + 9.9103343, + 52.277783601 + ], + [ + 9.9097168, + 52.278680401 + ], + [ + 9.9093138, + 52.279242701 + ], + [ + 9.9089539, + 52.279724501 + ], + [ + 9.9085324, + 52.280266601 + ], + [ + 9.9081853, + 52.280709801 + ], + [ + 9.907349, + 52.281718801 + ], + [ + 9.9065505, + 52.282624201 + ], + [ + 9.9058079, + 52.283416001 + ], + [ + 9.9052783, + 52.283977901 + ], + [ + 9.9051339, + 52.284119601 + ], + [ + 9.9042487, + 52.284993501 + ], + [ + 9.903526, + 52.285676601 + ], + [ + 9.9027076, + 52.286417201 + ], + [ + 9.9020044, + 52.287021601 + ], + [ + 9.9010742, + 52.287804501 + ], + [ + 9.9001172, + 52.288571901 + ], + [ + 9.8992473, + 52.289239701 + ], + [ + 9.898574, + 52.289766301 + ], + [ + 9.897402, + 52.290593701 + ], + [ + 9.896038, + 52.291517401 + ], + [ + 9.8947488, + 52.292388301 + ], + [ + 9.8938146, + 52.292989701 + ], + [ + 9.892006, + 52.294122601 + ], + [ + 9.8892679, + 52.295773301 + ], + [ + 9.887711, + 52.296736401 + ], + [ + 9.8849225, + 52.298440501 + ], + [ + 9.8840603, + 52.298962101 + ], + [ + 9.8830165, + 52.299631701 + ], + [ + 9.8823082, + 52.300068901 + ], + [ + 9.8811882, + 52.300807001 + ], + [ + 9.8802933, + 52.301410201 + ], + [ + 9.8793535, + 52.302076101 + ], + [ + 9.8781129, + 52.302994601 + ], + [ + 9.8766275, + 52.304154701 + ], + [ + 9.8763764, + 52.304360201 + ], + [ + 9.8752958, + 52.305290101 + ], + [ + 9.874321, + 52.306163801 + ], + [ + 9.8738966, + 52.306559301 + ], + [ + 9.8730406, + 52.307382001 + ], + [ + 9.8723192, + 52.308126501 + ], + [ + 9.8720804, + 52.308379801 + ], + [ + 9.8715034, + 52.309021601 + ], + [ + 9.8710923, + 52.309495401 + ], + [ + 9.8709184, + 52.309693601 + ], + [ + 9.8708329, + 52.309796101 + ], + [ + 9.8707342, + 52.309914501 + ], + [ + 9.8700595, + 52.310748701 + ], + [ + 9.8696107, + 52.311325001 + ], + [ + 9.8692796, + 52.311769201 + ], + [ + 9.8688611, + 52.312348901 + ], + [ + 9.8684136, + 52.312995501 + ], + [ + 9.8681207, + 52.313446901 + ], + [ + 9.8677284, + 52.314063901 + ], + [ + 9.8673058, + 52.314767101 + ], + [ + 9.8666298, + 52.315985201 + ], + [ + 9.8659404, + 52.317397401 + ], + [ + 9.8653376, + 52.318782201 + ], + [ + 9.8648019, + 52.320259701 + ], + [ + 9.8645468, + 52.321054701 + ], + [ + 9.8643155, + 52.321856501 + ], + [ + 9.8639431, + 52.323458001 + ], + [ + 9.8637026, + 52.324848101 + ], + [ + 9.8636014, + 52.325701801 + ], + [ + 9.8635141, + 52.326666701 + ], + [ + 9.8634672, + 52.327738801 + ], + [ + 9.8634609, + 52.328936501 + ], + [ + 9.8635202, + 52.330054101 + ], + [ + 9.8635679, + 52.330708801 + ], + [ + 9.8636449, + 52.331447301 + ], + [ + 9.863847, + 52.332754701 + ], + [ + 9.864003, + 52.333549401 + ], + [ + 9.864183, + 52.334355901 + ], + [ + 9.8644554, + 52.335363301 + ], + [ + 9.8646782, + 52.336100301 + ], + [ + 9.8649657, + 52.336952901 + ], + [ + 9.8653651, + 52.337993901 + ], + [ + 9.8657524, + 52.338923601 + ], + [ + 9.8660019, + 52.339461801 + ], + [ + 9.866298, + 52.340078001 + ], + [ + 9.8669613, + 52.341300701 + ], + [ + 9.8674815, + 52.342174901 + ], + [ + 9.8681841, + 52.343259301 + ], + [ + 9.8688278, + 52.344156701 + ], + [ + 9.8698341, + 52.345460801 + ], + [ + 9.8706858, + 52.346467701 + ], + [ + 9.8719975, + 52.347884601 + ], + [ + 9.8727979, + 52.348671701 + ], + [ + 9.8735292, + 52.349358501 + ], + [ + 9.8745453, + 52.350248501 + ], + [ + 9.87538, + 52.350958801 + ], + [ + 9.8762883, + 52.351687201 + ], + [ + 9.8768335, + 52.352109401 + ], + [ + 9.8772484, + 52.352431801 + ], + [ + 9.8782493, + 52.353180301 + ], + [ + 9.8789234, + 52.353675201 + ], + [ + 9.8794012, + 52.354024401 + ], + [ + 9.8799408, + 52.354415401 + ], + [ + 9.8809871, + 52.355173501 + ], + [ + 9.8815474, + 52.355587201 + ], + [ + 9.883036, + 52.356688601 + ], + [ + 9.8844874, + 52.357796301 + ], + [ + 9.8855523, + 52.358644201 + ], + [ + 9.885682652, + 52.358752927 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.217741295527496,9.933903223485675,52.302101227028636,9.879319563582373", + "point": "52.217741295527496,9.933903223485675", + "startLcPosition": "200", + "impact": { + "lower": "Hannover-S\u00fcd", + "upper": "Hildesheim-Drispenstedt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Hildesheim-Drispenstedt - Hannover-S\u00fcd", + "coordinate": { + "lat": 52.217741295527496, + "long": 9.933903223485675 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Kassel -> Hannover, zwischen 4.5 km hinter AS Hildesheim-Drispenstedt und 0.3 km vor AD Hannover-S\u00fcd", + "", + "L\u00e4nge: 10.38 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.933903223, + 52.217741296 + ], + [ + 9.9339012, + 52.217985701 + ], + [ + 9.9338751, + 52.221385401 + ], + [ + 9.9338319, + 52.223171401 + ], + [ + 9.9337977, + 52.224025601 + ], + [ + 9.9337601, + 52.224782301 + ], + [ + 9.9336696, + 52.226075801 + ], + [ + 9.9335648, + 52.227204601 + ], + [ + 9.9334235, + 52.228374301 + ], + [ + 9.9333449, + 52.228970001 + ], + [ + 9.9332382, + 52.229620501 + ], + [ + 9.9330135, + 52.230781001 + ], + [ + 9.9327102, + 52.232064201 + ], + [ + 9.9326029, + 52.232443101 + ], + [ + 9.9325025, + 52.232782101 + ], + [ + 9.9322925, + 52.233490701 + ], + [ + 9.9319386, + 52.234562301 + ], + [ + 9.9316991, + 52.235185501 + ], + [ + 9.9314304, + 52.235869201 + ], + [ + 9.9311974, + 52.236452001 + ], + [ + 9.9309421, + 52.237011101 + ], + [ + 9.9308169, + 52.237269301 + ], + [ + 9.9307447, + 52.237418201 + ], + [ + 9.9301582, + 52.238596301 + ], + [ + 9.9292813, + 52.240210301 + ], + [ + 9.9287884, + 52.241049101 + ], + [ + 9.9283374, + 52.241799801 + ], + [ + 9.9278661, + 52.242556101 + ], + [ + 9.9270754, + 52.243802001 + ], + [ + 9.9262166, + 52.245115301 + ], + [ + 9.9246949, + 52.247392201 + ], + [ + 9.9239932, + 52.248441201 + ], + [ + 9.923352, + 52.249410301 + ], + [ + 9.9227187, + 52.250386601 + ], + [ + 9.9222392, + 52.251127001 + ], + [ + 9.9218486, + 52.251762101 + ], + [ + 9.9217734, + 52.251891901 + ], + [ + 9.9212118, + 52.252811501 + ], + [ + 9.9206188, + 52.253811901 + ], + [ + 9.920099, + 52.254726201 + ], + [ + 9.9196594, + 52.255566501 + ], + [ + 9.9196263, + 52.255632801 + ], + [ + 9.9192276, + 52.256424501 + ], + [ + 9.9188474, + 52.257216801 + ], + [ + 9.9181632, + 52.258767401 + ], + [ + 9.9176118, + 52.260175401 + ], + [ + 9.9170299, + 52.261797101 + ], + [ + 9.9167492, + 52.262595001 + ], + [ + 9.9164549, + 52.263490701 + ], + [ + 9.9150885, + 52.267647601 + ], + [ + 9.9143618, + 52.269712601 + ], + [ + 9.9139575, + 52.270786701 + ], + [ + 9.9135585, + 52.271766201 + ], + [ + 9.9128709, + 52.273303901 + ], + [ + 9.9126328, + 52.273806201 + ], + [ + 9.9123971, + 52.274269801 + ], + [ + 9.9119154, + 52.275187501 + ], + [ + 9.9113925, + 52.276087601 + ], + [ + 9.910944, + 52.276825501 + ], + [ + 9.9103343, + 52.277783601 + ], + [ + 9.9097168, + 52.278680401 + ], + [ + 9.9093138, + 52.279242701 + ], + [ + 9.9089539, + 52.279724501 + ], + [ + 9.9085324, + 52.280266601 + ], + [ + 9.9081853, + 52.280709801 + ], + [ + 9.907349, + 52.281718801 + ], + [ + 9.9065505, + 52.282624201 + ], + [ + 9.9058079, + 52.283416001 + ], + [ + 9.9052783, + 52.283977901 + ], + [ + 9.9051339, + 52.284119601 + ], + [ + 9.9042487, + 52.284993501 + ], + [ + 9.903526, + 52.285676601 + ], + [ + 9.9027076, + 52.286417201 + ], + [ + 9.9020044, + 52.287021601 + ], + [ + 9.9010742, + 52.287804501 + ], + [ + 9.9001172, + 52.288571901 + ], + [ + 9.8992473, + 52.289239701 + ], + [ + 9.898574, + 52.289766301 + ], + [ + 9.897402, + 52.290593701 + ], + [ + 9.896038, + 52.291517401 + ], + [ + 9.8947488, + 52.292388301 + ], + [ + 9.8938146, + 52.292989701 + ], + [ + 9.892006, + 52.294122601 + ], + [ + 9.8892679, + 52.295773301 + ], + [ + 9.887711, + 52.296736401 + ], + [ + 9.8849225, + 52.298440501 + ], + [ + 9.8840603, + 52.298962101 + ], + [ + 9.8830165, + 52.299631701 + ], + [ + 9.8823082, + 52.300068901 + ], + [ + 9.8811882, + 52.300807001 + ], + [ + 9.8802933, + 52.301410201 + ], + [ + 9.8793535, + 52.302076101 + ], + [ + 9.879319564, + 52.302101227 + ] + ] + } + }, + { + "identifier": "2024-033255--vi-bs.2026-03-13_00-00-00-000.devi-zus.2024-07-22_00-00-00-000.f_003.de37", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.22112998033323,9.93367621467073,52.1364902289668,10.013676872402819", + "point": "52.22112998033323,9.93367621467073", + "startLcPosition": "201", + "impact": { + "lower": "Hildesheimer B\u00f6rde", + "upper": "An der Alpe", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | An der Alpe - Hildesheimer B\u00f6rde", + "startTimestamp": "2026-03-13T00:00:00+01:00", + "coordinate": { + "lat": 52.22112998033323, + "long": 9.93367621467073 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.03.26 um 00:00 Uhr", + "Ende: 01.11.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 25.04.27)", + "", + "A7: Hannover -> Kassel, zwischen 2.0 km hinter An der Alpe und 3.1 km vor Hildesheimer B\u00f6rde", + "", + "L\u00e4nge: 11.36 km | Maximale Durchfahrtsbreite: 5.75 m", + "", + "A7 Grundhafte Erneuerung Bauphase 2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.933676215, + 52.22112998 + ], + [ + 9.9336975, + 52.217941101 + ], + [ + 9.9337043, + 52.216823701 + ], + [ + 9.9337168, + 52.216169901 + ], + [ + 9.9337336, + 52.215648501 + ], + [ + 9.9337521, + 52.214995601 + ], + [ + 9.9337858, + 52.214352701 + ], + [ + 9.9338431, + 52.213593701 + ], + [ + 9.9339103, + 52.212895501 + ], + [ + 9.9341004, + 52.211503001 + ], + [ + 9.9342133, + 52.210879401 + ], + [ + 9.934334, + 52.210336101 + ], + [ + 9.9344775, + 52.209741601 + ], + [ + 9.9346304, + 52.209215601 + ], + [ + 9.9348352, + 52.208580901 + ], + [ + 9.9350687, + 52.207954501 + ], + [ + 9.9353272, + 52.207328001 + ], + [ + 9.9356289, + 52.206694801 + ], + [ + 9.935948, + 52.206088801 + ], + [ + 9.9363045, + 52.205486301 + ], + [ + 9.9368003, + 52.204734301 + ], + [ + 9.9373296, + 52.203998701 + ], + [ + 9.9378835, + 52.203312401 + ], + [ + 9.9385142, + 52.202587501 + ], + [ + 9.939105, + 52.201957001 + ], + [ + 9.9401485, + 52.200950301 + ], + [ + 9.941113, + 52.200095301 + ], + [ + 9.9417221, + 52.199596301 + ], + [ + 9.9421836, + 52.199225401 + ], + [ + 9.9426988, + 52.198831101 + ], + [ + 9.9429925, + 52.198607901 + ], + [ + 9.9434265, + 52.198286601 + ], + [ + 9.9445087, + 52.197524601 + ], + [ + 9.9453354, + 52.196970901 + ], + [ + 9.9465347, + 52.196204201 + ], + [ + 9.9472583, + 52.195763701 + ], + [ + 9.9478199, + 52.195421701 + ], + [ + 9.9484993, + 52.194993801 + ], + [ + 9.9495374, + 52.194423201 + ], + [ + 9.9507574, + 52.193729701 + ], + [ + 9.9523547, + 52.192880101 + ], + [ + 9.9541296, + 52.191946401 + ], + [ + 9.9551803, + 52.191413301 + ], + [ + 9.9561696, + 52.190911401 + ], + [ + 9.9582823, + 52.189855501 + ], + [ + 9.9594395, + 52.189278501 + ], + [ + 9.9597322, + 52.189130201 + ], + [ + 9.9606159, + 52.188682301 + ], + [ + 9.9617415, + 52.188111101 + ], + [ + 9.9630845, + 52.187419701 + ], + [ + 9.9634032, + 52.187254601 + ], + [ + 9.9641282, + 52.186867201 + ], + [ + 9.9651154, + 52.186341601 + ], + [ + 9.9670907, + 52.185240101 + ], + [ + 9.9673329, + 52.185100901 + ], + [ + 9.9676113, + 52.184941001 + ], + [ + 9.9681639, + 52.184608701 + ], + [ + 9.9686876, + 52.184303401 + ], + [ + 9.9696648, + 52.183698901 + ], + [ + 9.9706176, + 52.183090401 + ], + [ + 9.9709194, + 52.182893501 + ], + [ + 9.9714649, + 52.182524601 + ], + [ + 9.9725149, + 52.181794501 + ], + [ + 9.9734494, + 52.181104201 + ], + [ + 9.9745959, + 52.180194301 + ], + [ + 9.9755935, + 52.179352901 + ], + [ + 9.9762748, + 52.178732901 + ], + [ + 9.9768526, + 52.178190801 + ], + [ + 9.9777031, + 52.177334201 + ], + [ + 9.9785719, + 52.176394401 + ], + [ + 9.9793694, + 52.175449901 + ], + [ + 9.9795683, + 52.175212101 + ], + [ + 9.9800362, + 52.174577201 + ], + [ + 9.9802269, + 52.174318401 + ], + [ + 9.9807402, + 52.173621301 + ], + [ + 9.9812315, + 52.172908101 + ], + [ + 9.9821694, + 52.171421101 + ], + [ + 9.9826536, + 52.170618701 + ], + [ + 9.9831029, + 52.169803601 + ], + [ + 9.9837186, + 52.168599001 + ], + [ + 9.9838141, + 52.168411001 + ], + [ + 9.9838899, + 52.168261801 + ], + [ + 9.9845595, + 52.166968401 + ], + [ + 9.9850632, + 52.165950901 + ], + [ + 9.9853189, + 52.165434301 + ], + [ + 9.9855086, + 52.165050901 + ], + [ + 9.985671, + 52.164722801 + ], + [ + 9.9860045, + 52.164039301 + ], + [ + 9.9865104, + 52.163027001 + ], + [ + 9.9878866, + 52.160249301 + ], + [ + 9.9880958, + 52.159831401 + ], + [ + 9.9884639, + 52.159096101 + ], + [ + 9.9886219, + 52.158759801 + ], + [ + 9.9892186, + 52.157538901 + ], + [ + 9.9897986, + 52.156318501 + ], + [ + 9.9904535, + 52.155028601 + ], + [ + 9.991723, + 52.152466401 + ], + [ + 9.9920754, + 52.151787201 + ], + [ + 9.9922396, + 52.151470901 + ], + [ + 9.9927662, + 52.150510101 + ], + [ + 9.9931894, + 52.149748701 + ], + [ + 9.9936742, + 52.148996901 + ], + [ + 9.9941896, + 52.148252101 + ], + [ + 9.9948234, + 52.147403101 + ], + [ + 9.9950007, + 52.147177001 + ], + [ + 9.9960153, + 52.146024301 + ], + [ + 9.997023, + 52.145015901 + ], + [ + 9.9982168, + 52.143956201 + ], + [ + 9.9995438, + 52.142909001 + ], + [ + 10.0003422, + 52.142346001 + ], + [ + 10.0004288, + 52.142290201 + ], + [ + 10.0012945, + 52.141703601 + ], + [ + 10.0020398, + 52.141243601 + ], + [ + 10.0035839, + 52.140364101 + ], + [ + 10.0049914, + 52.139642601 + ], + [ + 10.0064758, + 52.138964301 + ], + [ + 10.0077749, + 52.138409501 + ], + [ + 10.0090785, + 52.137916201 + ], + [ + 10.01049, + 52.137429101 + ], + [ + 10.0118164, + 52.137016901 + ], + [ + 10.0128876, + 52.136704601 + ], + [ + 10.013676872, + 52.136490229 + ] + ] + } + }, + { + "identifier": "2026-016299--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.30991735517016,9.870731891541128,52.31360714261776,9.86801881649472", + "point": "52.30991735517016,9.870731891541128", + "startLcPosition": "202", + "impact": { + "lower": "Hannover-W\u00fclferode", + "upper": "Hannover-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 | Hannover-S\u00fcd - Hannover-W\u00fclferode", + "coordinate": { + "lat": 52.30991735517016, + "long": 9.870731891541128 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag und Mittwoch zwischen dem 13.04.26 und dem 15.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A7: Kassel -> Hannover, zwischen 0.7 km hinter AD Hannover-S\u00fcd und 2.6 km vor Hannover-W\u00fclferode", + "", + "L\u00e4nge: 0.45 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A7 von Hannover-S\u00fcd (AD) nach Hannover-W\u00fclferode (Raststaette) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.870731892, + 52.309917355 + ], + [ + 9.8700595, + 52.310748701 + ], + [ + 9.8696107, + 52.311325001 + ], + [ + 9.8692796, + 52.311769201 + ], + [ + 9.8688611, + 52.312348901 + ], + [ + 9.8684136, + 52.312995501 + ], + [ + 9.8681207, + 52.313446901 + ], + [ + 9.868018816, + 52.313607143 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.30201767937256,9.879154589186792,52.24307338702379,9.927324197513691", + "point": "52.30201767937256,9.879154589186792", + "startLcPosition": "202", + "impact": { + "lower": "An der Alpe", + "upper": "Hannover-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Hannover-S\u00fcd - An der Alpe", + "coordinate": { + "lat": 52.30201767937256, + "long": 9.879154589186792 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 0.3 km hinter AD Hannover-S\u00fcd und 0.5 km vor An der Alpe", + "", + "L\u00e4nge: 7.5 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.879154589, + 52.302017679 + ], + [ + 9.8792117, + 52.301975201 + ], + [ + 9.8799493, + 52.301443701 + ], + [ + 9.8803007, + 52.301201001 + ], + [ + 9.881042, + 52.300696101 + ], + [ + 9.8821737, + 52.299950701 + ], + [ + 9.8828702, + 52.299502701 + ], + [ + 9.8838849, + 52.298861901 + ], + [ + 9.8842949, + 52.298601101 + ], + [ + 9.8853559, + 52.297935801 + ], + [ + 9.8891357, + 52.295648501 + ], + [ + 9.8918142, + 52.294021201 + ], + [ + 9.8936491, + 52.292873101 + ], + [ + 9.8945792, + 52.292283501 + ], + [ + 9.8959579, + 52.291374201 + ], + [ + 9.8972426, + 52.290499401 + ], + [ + 9.898409, + 52.289666801 + ], + [ + 9.8991129, + 52.289148501 + ], + [ + 9.9000434, + 52.288430001 + ], + [ + 9.9010048, + 52.287661001 + ], + [ + 9.9018731, + 52.286923501 + ], + [ + 9.902539, + 52.286353401 + ], + [ + 9.9034131, + 52.285556601 + ], + [ + 9.9041382, + 52.284871601 + ], + [ + 9.9050551, + 52.283961001 + ], + [ + 9.905199, + 52.283817001 + ], + [ + 9.9056792, + 52.283319101 + ], + [ + 9.9063919, + 52.282547201 + ], + [ + 9.9071964, + 52.281628901 + ], + [ + 9.908033, + 52.280618601 + ], + [ + 9.9083844, + 52.280177801 + ], + [ + 9.9087921, + 52.279650401 + ], + [ + 9.9091543, + 52.279159501 + ], + [ + 9.9095303, + 52.278629301 + ], + [ + 9.9101601, + 52.277713001 + ], + [ + 9.9107616, + 52.276786201 + ], + [ + 9.9112136, + 52.276026101 + ], + [ + 9.9117234, + 52.275142301 + ], + [ + 9.9122091, + 52.274216201 + ], + [ + 9.9124426, + 52.273761801 + ], + [ + 9.9126864, + 52.273251501 + ], + [ + 9.913088, + 52.272341001 + ], + [ + 9.9133507, + 52.271745501 + ], + [ + 9.9137582, + 52.270756001 + ], + [ + 9.9141671, + 52.269693301 + ], + [ + 9.9149006, + 52.267595201 + ], + [ + 9.9162672, + 52.263427501 + ], + [ + 9.9165578, + 52.262562001 + ], + [ + 9.9167654, + 52.261959701 + ], + [ + 9.9174147, + 52.260156901 + ], + [ + 9.9179696, + 52.258742301 + ], + [ + 9.9186523, + 52.257181801 + ], + [ + 9.9190215, + 52.256412001 + ], + [ + 9.919463, + 52.255536801 + ], + [ + 9.9199566, + 52.254597501 + ], + [ + 9.9204726, + 52.253684201 + ], + [ + 9.9210409, + 52.252742101 + ], + [ + 9.9216219, + 52.251774101 + ], + [ + 9.9217063, + 52.251639301 + ], + [ + 9.9221287, + 52.250969801 + ], + [ + 9.9225314, + 52.250335501 + ], + [ + 9.9231925, + 52.249325101 + ], + [ + 9.9238155, + 52.248383101 + ], + [ + 9.9245149, + 52.247340901 + ], + [ + 9.9260411, + 52.245057201 + ], + [ + 9.9262959, + 52.244666601 + ], + [ + 9.9269022, + 52.243737101 + ], + [ + 9.927324198, + 52.243073387 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.30201767937256,9.879154589186792,52.2430650121789,9.927329522257732", + "point": "52.30201767937256,9.879154589186792", + "startLcPosition": "202", + "impact": { + "lower": "An der Alpe", + "upper": "Hannover-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Hannover-S\u00fcd - An der Alpe", + "coordinate": { + "lat": 52.30201767937256, + "long": 9.879154589186792 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen 0.3 km hinter AD Hannover-S\u00fcd und 0.5 km vor An der Alpe", + "", + "L\u00e4nge: 7.5 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.879154589, + 52.302017679 + ], + [ + 9.8792117, + 52.301975201 + ], + [ + 9.8799493, + 52.301443701 + ], + [ + 9.8803007, + 52.301201001 + ], + [ + 9.881042, + 52.300696101 + ], + [ + 9.8821737, + 52.299950701 + ], + [ + 9.8828702, + 52.299502701 + ], + [ + 9.8838849, + 52.298861901 + ], + [ + 9.8842949, + 52.298601101 + ], + [ + 9.8853559, + 52.297935801 + ], + [ + 9.8891357, + 52.295648501 + ], + [ + 9.8918142, + 52.294021201 + ], + [ + 9.8936491, + 52.292873101 + ], + [ + 9.8945792, + 52.292283501 + ], + [ + 9.8959579, + 52.291374201 + ], + [ + 9.8972426, + 52.290499401 + ], + [ + 9.898409, + 52.289666801 + ], + [ + 9.8991129, + 52.289148501 + ], + [ + 9.9000434, + 52.288430001 + ], + [ + 9.9010048, + 52.287661001 + ], + [ + 9.9018731, + 52.286923501 + ], + [ + 9.902539, + 52.286353401 + ], + [ + 9.9034131, + 52.285556601 + ], + [ + 9.9041382, + 52.284871601 + ], + [ + 9.9050551, + 52.283961001 + ], + [ + 9.905199, + 52.283817001 + ], + [ + 9.9056792, + 52.283319101 + ], + [ + 9.9063919, + 52.282547201 + ], + [ + 9.9071964, + 52.281628901 + ], + [ + 9.908033, + 52.280618601 + ], + [ + 9.9083844, + 52.280177801 + ], + [ + 9.9087921, + 52.279650401 + ], + [ + 9.9091543, + 52.279159501 + ], + [ + 9.9095303, + 52.278629301 + ], + [ + 9.9101601, + 52.277713001 + ], + [ + 9.9107616, + 52.276786201 + ], + [ + 9.9112136, + 52.276026101 + ], + [ + 9.9117234, + 52.275142301 + ], + [ + 9.9122091, + 52.274216201 + ], + [ + 9.9124426, + 52.273761801 + ], + [ + 9.9126864, + 52.273251501 + ], + [ + 9.913088, + 52.272341001 + ], + [ + 9.9133507, + 52.271745501 + ], + [ + 9.9137582, + 52.270756001 + ], + [ + 9.9141671, + 52.269693301 + ], + [ + 9.9149006, + 52.267595201 + ], + [ + 9.9162672, + 52.263427501 + ], + [ + 9.9165578, + 52.262562001 + ], + [ + 9.9167654, + 52.261959701 + ], + [ + 9.9174147, + 52.260156901 + ], + [ + 9.9179696, + 52.258742301 + ], + [ + 9.9186523, + 52.257181801 + ], + [ + 9.9190215, + 52.256412001 + ], + [ + 9.919463, + 52.255536801 + ], + [ + 9.9199566, + 52.254597501 + ], + [ + 9.9204726, + 52.253684201 + ], + [ + 9.9210409, + 52.252742101 + ], + [ + 9.9216219, + 52.251774101 + ], + [ + 9.9217063, + 52.251639301 + ], + [ + 9.9221287, + 52.250969801 + ], + [ + 9.9225314, + 52.250335501 + ], + [ + 9.9231925, + 52.249325101 + ], + [ + 9.9238155, + 52.248383101 + ], + [ + 9.9245149, + 52.247340901 + ], + [ + 9.9260411, + 52.245057201 + ], + [ + 9.9262959, + 52.244666601 + ], + [ + 9.9269022, + 52.243737101 + ], + [ + 9.927329522, + 52.243065012 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-fbm.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.35323587056736,9.878324990016814,52.37884106151167,9.897307781009939", + "point": "52.35323587056736,9.878324990016814", + "startLcPosition": "204", + "impact": { + "lower": "Hannover-Ost", + "upper": "Hannover-W\u00fclferode", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hamburg", + "title": "A7 | Hannover-W\u00fclferode - Hannover-Ost", + "coordinate": { + "lat": 52.35323587056736, + "long": 9.878324990016814 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "24.04.26 19:00 bis zum 25.04.26 05:00 Uhr.", + "", + "A7: Kassel -> Hamburg, zwischen 2.1 km hinter Hannover-W\u00fclferode und 2.0 km vor AK Hannover-Ost", + "", + "L\u00e4nge: 3.19 km | Maximale Durchfahrtsbreite: 10.25 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.87832499, + 52.353235871 + ], + [ + 9.8789234, + 52.353675201 + ], + [ + 9.8794012, + 52.354024401 + ], + [ + 9.8799408, + 52.354415401 + ], + [ + 9.8809871, + 52.355173501 + ], + [ + 9.8815474, + 52.355587201 + ], + [ + 9.883036, + 52.356688601 + ], + [ + 9.8844874, + 52.357796301 + ], + [ + 9.8855523, + 52.358644201 + ], + [ + 9.8868149, + 52.359697301 + ], + [ + 9.8877976, + 52.360574601 + ], + [ + 9.8887259, + 52.361464401 + ], + [ + 9.8898363, + 52.362606401 + ], + [ + 9.8900956, + 52.362892501 + ], + [ + 9.890488, + 52.363351901 + ], + [ + 9.8912736, + 52.364346801 + ], + [ + 9.8915881, + 52.364784201 + ], + [ + 9.8919855, + 52.365391001 + ], + [ + 9.8922658, + 52.365844601 + ], + [ + 9.8925556, + 52.366343801 + ], + [ + 9.8928661, + 52.366908401 + ], + [ + 9.8928771, + 52.366930301 + ], + [ + 9.8933327, + 52.367839801 + ], + [ + 9.8936178, + 52.368464301 + ], + [ + 9.8939051, + 52.369122801 + ], + [ + 9.8943969, + 52.370381201 + ], + [ + 9.8948142, + 52.371534401 + ], + [ + 9.8952409, + 52.372764001 + ], + [ + 9.895678, + 52.374041601 + ], + [ + 9.8958832, + 52.374656001 + ], + [ + 9.8960025, + 52.375013401 + ], + [ + 9.8960096, + 52.375033901 + ], + [ + 9.896472, + 52.376369901 + ], + [ + 9.8966209, + 52.376823201 + ], + [ + 9.8969241, + 52.377692501 + ], + [ + 9.897307781, + 52.378841062 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-fbm.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.35323587056736,9.878324990016814,52.37884106151167,9.897307781009939", + "point": "52.35323587056736,9.878324990016814", + "startLcPosition": "204", + "impact": { + "lower": "Hannover-Ost", + "upper": "Hannover-W\u00fclferode", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hamburg", + "title": "A7 | Hannover-W\u00fclferode - Hannover-Ost", + "coordinate": { + "lat": 52.35323587056736, + "long": 9.878324990016814 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "24.04.26 19:00 bis zum 25.04.26 05:00 Uhr.", + "", + "A7: Kassel -> Hamburg, zwischen 2.1 km hinter Hannover-W\u00fclferode und 2.0 km vor AK Hannover-Ost", + "", + "L\u00e4nge: 3.19 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.87832499, + 52.353235871 + ], + [ + 9.8789234, + 52.353675201 + ], + [ + 9.8794012, + 52.354024401 + ], + [ + 9.8799408, + 52.354415401 + ], + [ + 9.8809871, + 52.355173501 + ], + [ + 9.8815474, + 52.355587201 + ], + [ + 9.883036, + 52.356688601 + ], + [ + 9.8844874, + 52.357796301 + ], + [ + 9.8855523, + 52.358644201 + ], + [ + 9.8868149, + 52.359697301 + ], + [ + 9.8877976, + 52.360574601 + ], + [ + 9.8887259, + 52.361464401 + ], + [ + 9.8898363, + 52.362606401 + ], + [ + 9.8900956, + 52.362892501 + ], + [ + 9.890488, + 52.363351901 + ], + [ + 9.8912736, + 52.364346801 + ], + [ + 9.8915881, + 52.364784201 + ], + [ + 9.8919855, + 52.365391001 + ], + [ + 9.8922658, + 52.365844601 + ], + [ + 9.8925556, + 52.366343801 + ], + [ + 9.8928661, + 52.366908401 + ], + [ + 9.8928771, + 52.366930301 + ], + [ + 9.8933327, + 52.367839801 + ], + [ + 9.8936178, + 52.368464301 + ], + [ + 9.8939051, + 52.369122801 + ], + [ + 9.8943969, + 52.370381201 + ], + [ + 9.8948142, + 52.371534401 + ], + [ + 9.8952409, + 52.372764001 + ], + [ + 9.895678, + 52.374041601 + ], + [ + 9.8958832, + 52.374656001 + ], + [ + 9.8960025, + 52.375013401 + ], + [ + 9.8960096, + 52.375033901 + ], + [ + 9.896472, + 52.376369901 + ], + [ + 9.8966209, + 52.376823201 + ], + [ + 9.8969241, + 52.377692501 + ], + [ + 9.897307781, + 52.378841062 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-fbm.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.35323587056736,9.878324990016814,52.37884106151167,9.897307781009939", + "point": "52.35323587056736,9.878324990016814", + "startLcPosition": "204", + "impact": { + "lower": "Hannover-Ost", + "upper": "Hannover-W\u00fclferode", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hamburg", + "title": "A7 | Hannover-W\u00fclferode - Hannover-Ost", + "coordinate": { + "lat": 52.35323587056736, + "long": 9.878324990016814 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "24.04.26 19:00 bis zum 25.04.26 05:00 Uhr.", + "", + "A7: Kassel -> Hamburg, zwischen 2.1 km hinter Hannover-W\u00fclferode und 2.0 km vor AK Hannover-Ost", + "", + "L\u00e4nge: 3.19 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.87832499, + 52.353235871 + ], + [ + 9.8789234, + 52.353675201 + ], + [ + 9.8794012, + 52.354024401 + ], + [ + 9.8799408, + 52.354415401 + ], + [ + 9.8809871, + 52.355173501 + ], + [ + 9.8815474, + 52.355587201 + ], + [ + 9.883036, + 52.356688601 + ], + [ + 9.8844874, + 52.357796301 + ], + [ + 9.8855523, + 52.358644201 + ], + [ + 9.8868149, + 52.359697301 + ], + [ + 9.8877976, + 52.360574601 + ], + [ + 9.8887259, + 52.361464401 + ], + [ + 9.8898363, + 52.362606401 + ], + [ + 9.8900956, + 52.362892501 + ], + [ + 9.890488, + 52.363351901 + ], + [ + 9.8912736, + 52.364346801 + ], + [ + 9.8915881, + 52.364784201 + ], + [ + 9.8919855, + 52.365391001 + ], + [ + 9.8922658, + 52.365844601 + ], + [ + 9.8925556, + 52.366343801 + ], + [ + 9.8928661, + 52.366908401 + ], + [ + 9.8928771, + 52.366930301 + ], + [ + 9.8933327, + 52.367839801 + ], + [ + 9.8936178, + 52.368464301 + ], + [ + 9.8939051, + 52.369122801 + ], + [ + 9.8943969, + 52.370381201 + ], + [ + 9.8948142, + 52.371534401 + ], + [ + 9.8952409, + 52.372764001 + ], + [ + 9.895678, + 52.374041601 + ], + [ + 9.8958832, + 52.374656001 + ], + [ + 9.8960025, + 52.375013401 + ], + [ + 9.8960096, + 52.375033901 + ], + [ + 9.896472, + 52.376369901 + ], + [ + 9.8966209, + 52.376823201 + ], + [ + 9.8969241, + 52.377692501 + ], + [ + 9.897307781, + 52.378841062 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-fbm.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.35323587056736,9.878324990016814,52.37884106151167,9.897307781009939", + "point": "52.35323587056736,9.878324990016814", + "startLcPosition": "204", + "impact": { + "lower": "Hannover-Ost", + "upper": "Hannover-W\u00fclferode", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hamburg", + "title": "A7 | Hannover-W\u00fclferode - Hannover-Ost", + "coordinate": { + "lat": 52.35323587056736, + "long": 9.878324990016814 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A7: Kassel -> Hamburg, zwischen 2.1 km hinter Hannover-W\u00fclferode und 2.0 km vor AK Hannover-Ost", + "", + "L\u00e4nge: 3.19 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.87832499, + 52.353235871 + ], + [ + 9.8789234, + 52.353675201 + ], + [ + 9.8794012, + 52.354024401 + ], + [ + 9.8799408, + 52.354415401 + ], + [ + 9.8809871, + 52.355173501 + ], + [ + 9.8815474, + 52.355587201 + ], + [ + 9.883036, + 52.356688601 + ], + [ + 9.8844874, + 52.357796301 + ], + [ + 9.8855523, + 52.358644201 + ], + [ + 9.8868149, + 52.359697301 + ], + [ + 9.8877976, + 52.360574601 + ], + [ + 9.8887259, + 52.361464401 + ], + [ + 9.8898363, + 52.362606401 + ], + [ + 9.8900956, + 52.362892501 + ], + [ + 9.890488, + 52.363351901 + ], + [ + 9.8912736, + 52.364346801 + ], + [ + 9.8915881, + 52.364784201 + ], + [ + 9.8919855, + 52.365391001 + ], + [ + 9.8922658, + 52.365844601 + ], + [ + 9.8925556, + 52.366343801 + ], + [ + 9.8928661, + 52.366908401 + ], + [ + 9.8928771, + 52.366930301 + ], + [ + 9.8933327, + 52.367839801 + ], + [ + 9.8936178, + 52.368464301 + ], + [ + 9.8939051, + 52.369122801 + ], + [ + 9.8943969, + 52.370381201 + ], + [ + 9.8948142, + 52.371534401 + ], + [ + 9.8952409, + 52.372764001 + ], + [ + 9.895678, + 52.374041601 + ], + [ + 9.8958832, + 52.374656001 + ], + [ + 9.8960025, + 52.375013401 + ], + [ + 9.8960096, + 52.375033901 + ], + [ + 9.896472, + 52.376369901 + ], + [ + 9.8966209, + 52.376823201 + ], + [ + 9.8969241, + 52.377692501 + ], + [ + 9.897307781, + 52.378841062 + ] + ] + } + }, + { + "identifier": "2026-015794--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-04-08_08-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.35875292655142,9.8856826515565,52.55672828636191,9.791783057468901", + "point": "52.35875292655142,9.8856826515565", + "startLcPosition": "204", + "impact": { + "lower": "Mellendorf", + "upper": "Hannover-W\u00fclferode", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hamburg", + "title": "A7 | Hannover-W\u00fclferode - Mellendorf", + "coordinate": { + "lat": 52.35875292655142, + "long": 9.8856826515565 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 19:00 Uhr", + "", + "A7: Kassel -> Hamburg, zwischen 2.9 km hinter Hannover-W\u00fclferode und AS Mellendorf", + "", + "L\u00e4nge: 23.88 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Mellendorf (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.885682652, + 52.358752927 + ], + [ + 9.8868149, + 52.359697301 + ], + [ + 9.8877976, + 52.360574601 + ], + [ + 9.8887259, + 52.361464401 + ], + [ + 9.8898363, + 52.362606401 + ], + [ + 9.8900956, + 52.362892501 + ], + [ + 9.890488, + 52.363351901 + ], + [ + 9.8912736, + 52.364346801 + ], + [ + 9.8915881, + 52.364784201 + ], + [ + 9.8919855, + 52.365391001 + ], + [ + 9.8922658, + 52.365844601 + ], + [ + 9.8925556, + 52.366343801 + ], + [ + 9.8928661, + 52.366908401 + ], + [ + 9.8928771, + 52.366930301 + ], + [ + 9.8933327, + 52.367839801 + ], + [ + 9.8936178, + 52.368464301 + ], + [ + 9.8939051, + 52.369122801 + ], + [ + 9.8943969, + 52.370381201 + ], + [ + 9.8948142, + 52.371534401 + ], + [ + 9.8952409, + 52.372764001 + ], + [ + 9.895678, + 52.374041601 + ], + [ + 9.8958832, + 52.374656001 + ], + [ + 9.8960025, + 52.375013401 + ], + [ + 9.8960096, + 52.375033901 + ], + [ + 9.896472, + 52.376369901 + ], + [ + 9.8966209, + 52.376823201 + ], + [ + 9.8969241, + 52.377692501 + ], + [ + 9.8976576, + 52.379888201 + ], + [ + 9.8980628, + 52.381178301 + ], + [ + 9.8984503, + 52.382567101 + ], + [ + 9.8987719, + 52.383843801 + ], + [ + 9.8988741, + 52.384286401 + ], + [ + 9.8991329, + 52.385485301 + ], + [ + 9.8992028, + 52.385849101 + ], + [ + 9.8993884, + 52.386920701 + ], + [ + 9.8994545, + 52.387367901 + ], + [ + 9.8996023, + 52.388382801 + ], + [ + 9.8997553, + 52.389672801 + ], + [ + 9.8998341, + 52.390641601 + ], + [ + 9.8998583, + 52.391005901 + ], + [ + 9.8999144, + 52.391850001 + ], + [ + 9.8999442, + 52.392767901 + ], + [ + 9.8999629, + 52.394638401 + ], + [ + 9.8999376, + 52.395643201 + ], + [ + 9.8998902, + 52.396715401 + ], + [ + 9.8998302, + 52.397564101 + ], + [ + 9.8997527, + 52.398469301 + ], + [ + 9.8996098, + 52.399723901 + ], + [ + 9.8993321, + 52.401547001 + ], + [ + 9.8991884, + 52.402336701 + ], + [ + 9.8989749, + 52.403410601 + ], + [ + 9.8988384, + 52.404045501 + ], + [ + 9.898602, + 52.405007201 + ], + [ + 9.898187, + 52.406568401 + ], + [ + 9.8979419, + 52.407376101 + ], + [ + 9.8974008, + 52.409037101 + ], + [ + 9.8971642, + 52.409704801 + ], + [ + 9.896656, + 52.411033201 + ], + [ + 9.8959655, + 52.412708301 + ], + [ + 9.895616, + 52.413482801 + ], + [ + 9.8947936, + 52.415202701 + ], + [ + 9.8941781, + 52.416387301 + ], + [ + 9.8934177, + 52.417758601 + ], + [ + 9.8926143, + 52.419120201 + ], + [ + 9.8917582, + 52.420500201 + ], + [ + 9.890947, + 52.421717801 + ], + [ + 9.8904937, + 52.422383501 + ], + [ + 9.8898613, + 52.423266501 + ], + [ + 9.8893543, + 52.423958101 + ], + [ + 9.8881205, + 52.425558801 + ], + [ + 9.8869454, + 52.427001101 + ], + [ + 9.8854323, + 52.428734401 + ], + [ + 9.8846682, + 52.429569801 + ], + [ + 9.8833581, + 52.430948201 + ], + [ + 9.8820913, + 52.432209401 + ], + [ + 9.8815757, + 52.432722401 + ], + [ + 9.8809201, + 52.433340201 + ], + [ + 9.8799717, + 52.434212201 + ], + [ + 9.8792828, + 52.434835201 + ], + [ + 9.8786415, + 52.435401501 + ], + [ + 9.8777314, + 52.436181701 + ], + [ + 9.8767919, + 52.436967901 + ], + [ + 9.8758573, + 52.437738701 + ], + [ + 9.8740334, + 52.439221301 + ], + [ + 9.8729311, + 52.440123101 + ], + [ + 9.8722345, + 52.440692501 + ], + [ + 9.8710585, + 52.441671301 + ], + [ + 9.8696632, + 52.442861701 + ], + [ + 9.8688944, + 52.443538901 + ], + [ + 9.868047, + 52.444315801 + ], + [ + 9.8673749, + 52.444955001 + ], + [ + 9.8667108, + 52.445598601 + ], + [ + 9.8664314, + 52.445883701 + ], + [ + 9.865953, + 52.446378901 + ], + [ + 9.8657797, + 52.446557701 + ], + [ + 9.865064, + 52.447358901 + ], + [ + 9.8646646, + 52.447821501 + ], + [ + 9.8643472, + 52.448205801 + ], + [ + 9.863452, + 52.449371801 + ], + [ + 9.8630529, + 52.449941601 + ], + [ + 9.8626377, + 52.450584801 + ], + [ + 9.8619474, + 52.451766301 + ], + [ + 9.8613344, + 52.453005501 + ], + [ + 9.8610596, + 52.453636101 + ], + [ + 9.8608055, + 52.454271801 + ], + [ + 9.860604, + 52.454856701 + ], + [ + 9.8603725, + 52.455615301 + ], + [ + 9.8602463, + 52.456081301 + ], + [ + 9.8600587, + 52.456895301 + ], + [ + 9.8599536, + 52.457449601 + ], + [ + 9.8598756, + 52.457963601 + ], + [ + 9.8596859, + 52.459528201 + ], + [ + 9.8595275, + 52.461030101 + ], + [ + 9.8594975, + 52.461304501 + ], + [ + 9.8594421, + 52.461681001 + ], + [ + 9.8592793, + 52.462786901 + ], + [ + 9.8591794, + 52.463332001 + ], + [ + 9.8590742, + 52.463829901 + ], + [ + 9.8587212, + 52.465180001 + ], + [ + 9.8584877, + 52.465932801 + ], + [ + 9.8582661, + 52.466588501 + ], + [ + 9.8579819, + 52.467333801 + ], + [ + 9.8576596, + 52.468118601 + ], + [ + 9.8575419, + 52.468398101 + ], + [ + 9.8573783, + 52.468748501 + ], + [ + 9.8572675, + 52.468982501 + ], + [ + 9.8569235, + 52.469672901 + ], + [ + 9.856434, + 52.470585701 + ], + [ + 9.8559365, + 52.471444501 + ], + [ + 9.8553201, + 52.472404601 + ], + [ + 9.8547211, + 52.473306301 + ], + [ + 9.8537175, + 52.474672401 + ], + [ + 9.8528314, + 52.475788601 + ], + [ + 9.852078, + 52.476688601 + ], + [ + 9.8513094, + 52.477576701 + ], + [ + 9.8505663, + 52.478392001 + ], + [ + 9.8495527, + 52.479462901 + ], + [ + 9.8483073, + 52.480719301 + ], + [ + 9.8475784, + 52.481438101 + ], + [ + 9.8467685, + 52.482217101 + ], + [ + 9.8461113, + 52.482847001 + ], + [ + 9.8450366, + 52.483842601 + ], + [ + 9.8436772, + 52.485074901 + ], + [ + 9.8422068, + 52.486399901 + ], + [ + 9.8405354, + 52.487926901 + ], + [ + 9.8386306, + 52.489588501 + ], + [ + 9.837881, + 52.490273501 + ], + [ + 9.8377296, + 52.490411101 + ], + [ + 9.8371722, + 52.490909901 + ], + [ + 9.8365296, + 52.491487201 + ], + [ + 9.8360753, + 52.491913401 + ], + [ + 9.8355092, + 52.492435001 + ], + [ + 9.8349824, + 52.492919501 + ], + [ + 9.8336538, + 52.494192501 + ], + [ + 9.8325875, + 52.495244401 + ], + [ + 9.8313633, + 52.496492101 + ], + [ + 9.8306913, + 52.497198301 + ], + [ + 9.8302767, + 52.497648201 + ], + [ + 9.8296681, + 52.498330501 + ], + [ + 9.828526, + 52.499644901 + ], + [ + 9.828253, + 52.499969901 + ], + [ + 9.8279679, + 52.500330501 + ], + [ + 9.8270739, + 52.501489901 + ], + [ + 9.826802, + 52.501844601 + ], + [ + 9.8264096, + 52.502372701 + ], + [ + 9.8255856, + 52.503519601 + ], + [ + 9.8252055, + 52.504063101 + ], + [ + 9.8247183, + 52.504809701 + ], + [ + 9.8240238, + 52.505927901 + ], + [ + 9.8235654, + 52.506679801 + ], + [ + 9.8230381, + 52.507577501 + ], + [ + 9.822594, + 52.508395901 + ], + [ + 9.8216982, + 52.510026601 + ], + [ + 9.8216359, + 52.510147701 + ], + [ + 9.8209153, + 52.511613501 + ], + [ + 9.8197993, + 52.513942901 + ], + [ + 9.8190168, + 52.515600601 + ], + [ + 9.8180606, + 52.517606301 + ], + [ + 9.8171189, + 52.519464301 + ], + [ + 9.8162221, + 52.521130201 + ], + [ + 9.8154758, + 52.522429301 + ], + [ + 9.8148951, + 52.523399001 + ], + [ + 9.8142224, + 52.524471201 + ], + [ + 9.8134868, + 52.525573601 + ], + [ + 9.8127379, + 52.526683001 + ], + [ + 9.8122542, + 52.527373201 + ], + [ + 9.8117305, + 52.528111101 + ], + [ + 9.8106071, + 52.529622301 + ], + [ + 9.8081788, + 52.532628901 + ], + [ + 9.8044501, + 52.537071501 + ], + [ + 9.803724, + 52.537969001 + ], + [ + 9.8026297, + 52.539332701 + ], + [ + 9.8018981, + 52.540261801 + ], + [ + 9.8011215, + 52.541318501 + ], + [ + 9.8003526, + 52.542366801 + ], + [ + 9.7995574, + 52.543486601 + ], + [ + 9.7992559, + 52.543918001 + ], + [ + 9.7984521, + 52.545125101 + ], + [ + 9.7975914, + 52.546498201 + ], + [ + 9.797194, + 52.547134901 + ], + [ + 9.7968483, + 52.547704601 + ], + [ + 9.7961542, + 52.548866701 + ], + [ + 9.7956707, + 52.549704501 + ], + [ + 9.795263, + 52.550424701 + ], + [ + 9.7944058, + 52.551974001 + ], + [ + 9.7941702, + 52.552399901 + ], + [ + 9.7939897, + 52.552726101 + ], + [ + 9.7939066, + 52.552876301 + ], + [ + 9.7933606, + 52.553885101 + ], + [ + 9.7928146, + 52.554893901 + ], + [ + 9.7922243, + 52.555966901 + ], + [ + 9.791783057, + 52.556728286 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.35882152264257,9.885529810545378,52.24307338702379,9.927324197513691", + "point": "52.35882152264257,9.885529810545378", + "startLcPosition": "205", + "impact": { + "lower": "An der Alpe", + "upper": "Hannover-Anderten", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Kassel", + "title": "A7 | Hannover-Anderten - An der Alpe", + "coordinate": { + "lat": 52.35882152264257, + "long": 9.885529810545378 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A7: Hannover -> Kassel, zwischen AS Hannover-Anderten und 0.5 km vor An der Alpe", + "", + "L\u00e4nge: 14.49 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.885529811, + 52.358821523 + ], + [ + 9.8853861, + 52.358701301 + ], + [ + 9.8843288, + 52.357864701 + ], + [ + 9.8828847, + 52.356762701 + ], + [ + 9.8814065, + 52.355662701 + ], + [ + 9.8808355, + 52.355245501 + ], + [ + 9.8797775, + 52.354473001 + ], + [ + 9.8792589, + 52.354094401 + ], + [ + 9.8787846, + 52.353747801 + ], + [ + 9.8781072, + 52.353243601 + ], + [ + 9.8771061, + 52.352490001 + ], + [ + 9.8767765, + 52.352238101 + ], + [ + 9.8761833, + 52.351779601 + ], + [ + 9.8752593, + 52.351045401 + ], + [ + 9.874443, + 52.350359701 + ], + [ + 9.8734366, + 52.349466701 + ], + [ + 9.8726669, + 52.348754901 + ], + [ + 9.8718885, + 52.347986001 + ], + [ + 9.8705568, + 52.346560001 + ], + [ + 9.8697118, + 52.345565501 + ], + [ + 9.8686995, + 52.344252801 + ], + [ + 9.8680396, + 52.343332101 + ], + [ + 9.8673421, + 52.342257801 + ], + [ + 9.8668276, + 52.341398601 + ], + [ + 9.8661693, + 52.340181601 + ], + [ + 9.8658413, + 52.339519901 + ], + [ + 9.8655395, + 52.338864901 + ], + [ + 9.8651832, + 52.338011001 + ], + [ + 9.864803, + 52.337012201 + ], + [ + 9.8645066, + 52.336127801 + ], + [ + 9.8642731, + 52.335367301 + ], + [ + 9.8640128, + 52.334371801 + ], + [ + 9.8638276, + 52.333574501 + ], + [ + 9.8636676, + 52.332782801 + ], + [ + 9.8634677, + 52.331446901 + ], + [ + 9.863388, + 52.330686001 + ], + [ + 9.8633393, + 52.330030801 + ], + [ + 9.8632855, + 52.328913701 + ], + [ + 9.8632883, + 52.327733301 + ], + [ + 9.8633394, + 52.326635801 + ], + [ + 9.8634237, + 52.325685901 + ], + [ + 9.8635324, + 52.324773501 + ], + [ + 9.8637723, + 52.323432901 + ], + [ + 9.8641463, + 52.321824401 + ], + [ + 9.8643691, + 52.321036501 + ], + [ + 9.864622, + 52.320243701 + ], + [ + 9.8651834, + 52.318711201 + ], + [ + 9.865761, + 52.317375701 + ], + [ + 9.8664411, + 52.315964901 + ], + [ + 9.8672305, + 52.314570401 + ], + [ + 9.8675712, + 52.314009201 + ], + [ + 9.8679556, + 52.313394601 + ], + [ + 9.8683833, + 52.312755201 + ], + [ + 9.8685996, + 52.312446601 + ], + [ + 9.8687324, + 52.312253301 + ], + [ + 9.8691608, + 52.311666701 + ], + [ + 9.869523, + 52.311183801 + ], + [ + 9.8697107, + 52.310929901 + ], + [ + 9.8698686, + 52.310736901 + ], + [ + 9.8705318, + 52.309915401 + ], + [ + 9.8710114, + 52.309343901 + ], + [ + 9.8713014, + 52.309018801 + ], + [ + 9.8719414, + 52.308313701 + ], + [ + 9.8722114, + 52.308024401 + ], + [ + 9.8728788, + 52.307331901 + ], + [ + 9.873724, + 52.306512901 + ], + [ + 9.8741476, + 52.306102801 + ], + [ + 9.8751306, + 52.305221301 + ], + [ + 9.8760989, + 52.304383901 + ], + [ + 9.8763404, + 52.304195001 + ], + [ + 9.8779597, + 52.302906401 + ], + [ + 9.8792117, + 52.301975201 + ], + [ + 9.8799493, + 52.301443701 + ], + [ + 9.8803007, + 52.301201001 + ], + [ + 9.881042, + 52.300696101 + ], + [ + 9.8821737, + 52.299950701 + ], + [ + 9.8828702, + 52.299502701 + ], + [ + 9.8838849, + 52.298861901 + ], + [ + 9.8842949, + 52.298601101 + ], + [ + 9.8853559, + 52.297935801 + ], + [ + 9.8891357, + 52.295648501 + ], + [ + 9.8918142, + 52.294021201 + ], + [ + 9.8936491, + 52.292873101 + ], + [ + 9.8945792, + 52.292283501 + ], + [ + 9.8959579, + 52.291374201 + ], + [ + 9.8972426, + 52.290499401 + ], + [ + 9.898409, + 52.289666801 + ], + [ + 9.8991129, + 52.289148501 + ], + [ + 9.9000434, + 52.288430001 + ], + [ + 9.9010048, + 52.287661001 + ], + [ + 9.9018731, + 52.286923501 + ], + [ + 9.902539, + 52.286353401 + ], + [ + 9.9034131, + 52.285556601 + ], + [ + 9.9041382, + 52.284871601 + ], + [ + 9.9050551, + 52.283961001 + ], + [ + 9.905199, + 52.283817001 + ], + [ + 9.9056792, + 52.283319101 + ], + [ + 9.9063919, + 52.282547201 + ], + [ + 9.9071964, + 52.281628901 + ], + [ + 9.908033, + 52.280618601 + ], + [ + 9.9083844, + 52.280177801 + ], + [ + 9.9087921, + 52.279650401 + ], + [ + 9.9091543, + 52.279159501 + ], + [ + 9.9095303, + 52.278629301 + ], + [ + 9.9101601, + 52.277713001 + ], + [ + 9.9107616, + 52.276786201 + ], + [ + 9.9112136, + 52.276026101 + ], + [ + 9.9117234, + 52.275142301 + ], + [ + 9.9122091, + 52.274216201 + ], + [ + 9.9124426, + 52.273761801 + ], + [ + 9.9126864, + 52.273251501 + ], + [ + 9.913088, + 52.272341001 + ], + [ + 9.9133507, + 52.271745501 + ], + [ + 9.9137582, + 52.270756001 + ], + [ + 9.9141671, + 52.269693301 + ], + [ + 9.9149006, + 52.267595201 + ], + [ + 9.9162672, + 52.263427501 + ], + [ + 9.9165578, + 52.262562001 + ], + [ + 9.9167654, + 52.261959701 + ], + [ + 9.9174147, + 52.260156901 + ], + [ + 9.9179696, + 52.258742301 + ], + [ + 9.9186523, + 52.257181801 + ], + [ + 9.9190215, + 52.256412001 + ], + [ + 9.919463, + 52.255536801 + ], + [ + 9.9199566, + 52.254597501 + ], + [ + 9.9204726, + 52.253684201 + ], + [ + 9.9210409, + 52.252742101 + ], + [ + 9.9216219, + 52.251774101 + ], + [ + 9.9217063, + 52.251639301 + ], + [ + 9.9221287, + 52.250969801 + ], + [ + 9.9225314, + 52.250335501 + ], + [ + 9.9231925, + 52.249325101 + ], + [ + 9.9238155, + 52.248383101 + ], + [ + 9.9245149, + 52.247340901 + ], + [ + 9.9260411, + 52.245057201 + ], + [ + 9.9262959, + 52.244666601 + ], + [ + 9.9269022, + 52.243737101 + ], + [ + 9.927324198, + 52.243073387 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-bs.2026-04-10_00-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.36829940435961,9.893542519732383,52.37884106151168,9.897307781009939", + "point": "52.36829940435961,9.893542519732383", + "startLcPosition": "205", + "impact": { + "lower": "Hannover-Ost", + "upper": "Hannover-Anderten", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Hamburg", + "title": "A7 | Hannover-Anderten - Hannover-Ost", + "startTimestamp": "2026-04-10T00:00:00+02:00", + "coordinate": { + "lat": 52.36829940435961, + "long": 9.893542519732383 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 00:00 Uhr", + "Ende: 24.04.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.05.26)", + "", + "A7: Kassel -> Hamburg, zwischen 1.2 km hinter AS Hannover-Anderten und 2.0 km vor AK Hannover-Ost", + "", + "L\u00e4nge: 1.2 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.89354252, + 52.368299404 + ], + [ + 9.8936178, + 52.368464301 + ], + [ + 9.8939051, + 52.369122801 + ], + [ + 9.8943969, + 52.370381201 + ], + [ + 9.8948142, + 52.371534401 + ], + [ + 9.8952409, + 52.372764001 + ], + [ + 9.895678, + 52.374041601 + ], + [ + 9.8958832, + 52.374656001 + ], + [ + 9.8960025, + 52.375013401 + ], + [ + 9.8960096, + 52.375033901 + ], + [ + 9.896472, + 52.376369901 + ], + [ + 9.8966209, + 52.376823201 + ], + [ + 9.8969241, + 52.377692501 + ], + [ + 9.897307781, + 52.378841062 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-fbm.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.398090036990794,9.89960310407221,52.374462906243764,9.895632392048364", + "point": "52.398090036990794,9.89960310407221", + "startLcPosition": "207", + "impact": { + "lower": "Hannover-Anderten", + "upper": "Altwarmb\u00fcchener Moor", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Kassel", + "title": "A7 | Altwarmb\u00fcchener Moor - Hannover-Anderten", + "coordinate": { + "lat": 52.398090036990794, + "long": 9.89960310407221 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "26.04.26 von 08:00 bis 15:00 Uhr", + "08.05.26 19:00 bis zum 09.05.26 05:00 Uhr.", + "", + "A7: Hamburg -> Kassel, zwischen 1.2 km hinter Altwarmb\u00fcchener Moor und 1.9 km vor AS Hannover-Anderten", + "", + "L\u00e4nge: 2.65 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.899603104, + 52.398090037 + ], + [ + 9.8996457, + 52.397597901 + ], + [ + 9.8997023, + 52.396737001 + ], + [ + 9.8997556, + 52.395642601 + ], + [ + 9.8997805, + 52.394633301 + ], + [ + 9.8997584, + 52.392766901 + ], + [ + 9.8997216, + 52.391849201 + ], + [ + 9.8996715, + 52.391012601 + ], + [ + 9.8996501, + 52.390653901 + ], + [ + 9.8995651, + 52.389664801 + ], + [ + 9.8994438, + 52.388583601 + ], + [ + 9.8992973, + 52.387543301 + ], + [ + 9.8992024, + 52.386944401 + ], + [ + 9.8990046, + 52.385815601 + ], + [ + 9.8989241, + 52.385416301 + ], + [ + 9.8986978, + 52.384347201 + ], + [ + 9.8985884, + 52.383857601 + ], + [ + 9.898259, + 52.382545501 + ], + [ + 9.8978679, + 52.381161201 + ], + [ + 9.8974742, + 52.379900701 + ], + [ + 9.897317, + 52.379425701 + ], + [ + 9.8967502, + 52.377735601 + ], + [ + 9.8964294, + 52.376791801 + ], + [ + 9.8962802, + 52.376358201 + ], + [ + 9.8958874, + 52.375221901 + ], + [ + 9.8957652, + 52.374857201 + ], + [ + 9.8956904, + 52.374634201 + ], + [ + 9.895632392, + 52.374462906 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-fbm.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.398090036990794,9.89960310407221,52.374462906243764,9.895632392048364", + "point": "52.398090036990794,9.89960310407221", + "startLcPosition": "207", + "impact": { + "lower": "Hannover-Anderten", + "upper": "Altwarmb\u00fcchener Moor", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Kassel", + "title": "A7 | Altwarmb\u00fcchener Moor - Hannover-Anderten", + "coordinate": { + "lat": 52.398090036990794, + "long": 9.89960310407221 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "26.04.26 von 08:00 bis 15:00 Uhr", + "08.05.26 19:00 bis zum 09.05.26 05:00 Uhr.", + "", + "A7: Hamburg -> Kassel, zwischen 1.2 km hinter Altwarmb\u00fcchener Moor und 1.9 km vor AS Hannover-Anderten", + "", + "L\u00e4nge: 2.65 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.899603104, + 52.398090037 + ], + [ + 9.8996457, + 52.397597901 + ], + [ + 9.8997023, + 52.396737001 + ], + [ + 9.8997556, + 52.395642601 + ], + [ + 9.8997805, + 52.394633301 + ], + [ + 9.8997584, + 52.392766901 + ], + [ + 9.8997216, + 52.391849201 + ], + [ + 9.8996715, + 52.391012601 + ], + [ + 9.8996501, + 52.390653901 + ], + [ + 9.8995651, + 52.389664801 + ], + [ + 9.8994438, + 52.388583601 + ], + [ + 9.8992973, + 52.387543301 + ], + [ + 9.8992024, + 52.386944401 + ], + [ + 9.8990046, + 52.385815601 + ], + [ + 9.8989241, + 52.385416301 + ], + [ + 9.8986978, + 52.384347201 + ], + [ + 9.8985884, + 52.383857601 + ], + [ + 9.898259, + 52.382545501 + ], + [ + 9.8978679, + 52.381161201 + ], + [ + 9.8974742, + 52.379900701 + ], + [ + 9.897317, + 52.379425701 + ], + [ + 9.8967502, + 52.377735601 + ], + [ + 9.8964294, + 52.376791801 + ], + [ + 9.8962802, + 52.376358201 + ], + [ + 9.8958874, + 52.375221901 + ], + [ + 9.8957652, + 52.374857201 + ], + [ + 9.8956904, + 52.374634201 + ], + [ + 9.895632392, + 52.374462906 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-fbm.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.398090036990794,9.89960310407221,52.374462906243764,9.895632392048364", + "point": "52.398090036990794,9.89960310407221", + "startLcPosition": "207", + "impact": { + "lower": "Hannover-Anderten", + "upper": "Altwarmb\u00fcchener Moor", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Kassel", + "title": "A7 | Altwarmb\u00fcchener Moor - Hannover-Anderten", + "coordinate": { + "lat": 52.398090036990794, + "long": 9.89960310407221 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "08.05.26 19:00 bis zum 09.05.26 05:00 Uhr.", + "", + "A7: Hamburg -> Kassel, zwischen 1.2 km hinter Altwarmb\u00fcchener Moor und 1.9 km vor AS Hannover-Anderten", + "", + "L\u00e4nge: 2.65 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.899603104, + 52.398090037 + ], + [ + 9.8996457, + 52.397597901 + ], + [ + 9.8997023, + 52.396737001 + ], + [ + 9.8997556, + 52.395642601 + ], + [ + 9.8997805, + 52.394633301 + ], + [ + 9.8997584, + 52.392766901 + ], + [ + 9.8997216, + 52.391849201 + ], + [ + 9.8996715, + 52.391012601 + ], + [ + 9.8996501, + 52.390653901 + ], + [ + 9.8995651, + 52.389664801 + ], + [ + 9.8994438, + 52.388583601 + ], + [ + 9.8992973, + 52.387543301 + ], + [ + 9.8992024, + 52.386944401 + ], + [ + 9.8990046, + 52.385815601 + ], + [ + 9.8989241, + 52.385416301 + ], + [ + 9.8986978, + 52.384347201 + ], + [ + 9.8985884, + 52.383857601 + ], + [ + 9.898259, + 52.382545501 + ], + [ + 9.8978679, + 52.381161201 + ], + [ + 9.8974742, + 52.379900701 + ], + [ + 9.897317, + 52.379425701 + ], + [ + 9.8967502, + 52.377735601 + ], + [ + 9.8964294, + 52.376791801 + ], + [ + 9.8962802, + 52.376358201 + ], + [ + 9.8958874, + 52.375221901 + ], + [ + 9.8957652, + 52.374857201 + ], + [ + 9.8956904, + 52.374634201 + ], + [ + 9.895632392, + 52.374462906 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-fbm.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.398090036990794,9.89960310407221,52.374462906243764,9.895632392048364", + "point": "52.398090036990794,9.89960310407221", + "startLcPosition": "207", + "impact": { + "lower": "Hannover-Anderten", + "upper": "Altwarmb\u00fcchener Moor", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Kassel", + "title": "A7 | Altwarmb\u00fcchener Moor - Hannover-Anderten", + "coordinate": { + "lat": 52.398090036990794, + "long": 9.89960310407221 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "26.04.26 von 08:00 bis 15:00 Uhr", + "", + "A7: Hamburg -> Kassel, zwischen 1.2 km hinter Altwarmb\u00fcchener Moor und 1.9 km vor AS Hannover-Anderten", + "", + "L\u00e4nge: 2.65 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.899603104, + 52.398090037 + ], + [ + 9.8996457, + 52.397597901 + ], + [ + 9.8997023, + 52.396737001 + ], + [ + 9.8997556, + 52.395642601 + ], + [ + 9.8997805, + 52.394633301 + ], + [ + 9.8997584, + 52.392766901 + ], + [ + 9.8997216, + 52.391849201 + ], + [ + 9.8996715, + 52.391012601 + ], + [ + 9.8996501, + 52.390653901 + ], + [ + 9.8995651, + 52.389664801 + ], + [ + 9.8994438, + 52.388583601 + ], + [ + 9.8992973, + 52.387543301 + ], + [ + 9.8992024, + 52.386944401 + ], + [ + 9.8990046, + 52.385815601 + ], + [ + 9.8989241, + 52.385416301 + ], + [ + 9.8986978, + 52.384347201 + ], + [ + 9.8985884, + 52.383857601 + ], + [ + 9.898259, + 52.382545501 + ], + [ + 9.8978679, + 52.381161201 + ], + [ + 9.8974742, + 52.379900701 + ], + [ + 9.897317, + 52.379425701 + ], + [ + 9.8967502, + 52.377735601 + ], + [ + 9.8964294, + 52.376791801 + ], + [ + 9.8962802, + 52.376358201 + ], + [ + 9.8958874, + 52.375221901 + ], + [ + 9.8957652, + 52.374857201 + ], + [ + 9.8956904, + 52.374634201 + ], + [ + 9.895632392, + 52.374462906 + ] + ] + } + }, + { + "identifier": "2026-016864--vi-fbm.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_001.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.398090036990794,9.89960310407221,52.374462906243764,9.895632392048364", + "point": "52.398090036990794,9.89960310407221", + "startLcPosition": "207", + "impact": { + "lower": "Hannover-Anderten", + "upper": "Altwarmb\u00fcchener Moor", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Kassel", + "title": "A7 | Altwarmb\u00fcchener Moor - Hannover-Anderten", + "coordinate": { + "lat": 52.398090036990794, + "long": 9.89960310407221 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "26.04.26 von 08:00 bis 15:00 Uhr", + "08.05.26 19:00 bis zum 09.05.26 05:00 Uhr.", + "", + "A7: Hamburg -> Kassel, zwischen 1.2 km hinter Altwarmb\u00fcchener Moor und 1.9 km vor AS Hannover-Anderten", + "", + "L\u00e4nge: 2.65 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Hannover-Anderten (AS) nach Hannover-Ost (AK) Baugrunduntersuchung BW 3178" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.899603104, + 52.398090037 + ], + [ + 9.8996457, + 52.397597901 + ], + [ + 9.8997023, + 52.396737001 + ], + [ + 9.8997556, + 52.395642601 + ], + [ + 9.8997805, + 52.394633301 + ], + [ + 9.8997584, + 52.392766901 + ], + [ + 9.8997216, + 52.391849201 + ], + [ + 9.8996715, + 52.391012601 + ], + [ + 9.8996501, + 52.390653901 + ], + [ + 9.8995651, + 52.389664801 + ], + [ + 9.8994438, + 52.388583601 + ], + [ + 9.8992973, + 52.387543301 + ], + [ + 9.8992024, + 52.386944401 + ], + [ + 9.8990046, + 52.385815601 + ], + [ + 9.8989241, + 52.385416301 + ], + [ + 9.8986978, + 52.384347201 + ], + [ + 9.8985884, + 52.383857601 + ], + [ + 9.898259, + 52.382545501 + ], + [ + 9.8978679, + 52.381161201 + ], + [ + 9.8974742, + 52.379900701 + ], + [ + 9.897317, + 52.379425701 + ], + [ + 9.8967502, + 52.377735601 + ], + [ + 9.8964294, + 52.376791801 + ], + [ + 9.8962802, + 52.376358201 + ], + [ + 9.8958874, + 52.375221901 + ], + [ + 9.8957652, + 52.374857201 + ], + [ + 9.8956904, + 52.374634201 + ], + [ + 9.895632392, + 52.374462906 + ] + ] + } + }, + { + "identifier": "2026-012342--vi-bs.2026-03-17_09-00-00-000_048.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.54987704184176,9.79557302711892,52.55306922243374,9.793802185748952", + "point": "52.54987704184176,9.79557302711892", + "startLcPosition": "213", + "impact": { + "lower": "Mellendorf", + "upper": "Hannover-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Hamburg", + "title": "A7 | Hannover-Nord - Mellendorf", + "coordinate": { + "lat": 52.54987704184176, + "long": 9.79557302711892 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A7: Hannover -> Hamburg, zwischen 0.9 km hinter AD Hannover-Nord und 0.4 km vor AS Mellendorf", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.795573027, + 52.549877042 + ], + [ + 9.795263, + 52.550424701 + ], + [ + 9.7944058, + 52.551974001 + ], + [ + 9.7941702, + 52.552399901 + ], + [ + 9.7939897, + 52.552726101 + ], + [ + 9.7939066, + 52.552876301 + ], + [ + 9.793802186, + 52.553069222 + ] + ] + } + }, + { + "identifier": "2026-015794--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-04-08_08-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.55667465738412,9.791528929193227,52.3523553308833,9.87692988958681", + "point": "52.55667465738412,9.791528929193227", + "startLcPosition": "214", + "impact": { + "lower": "Hannover-W\u00fclferode", + "upper": "Mellendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Kassel", + "title": "A7 | Mellendorf - Hannover-W\u00fclferode", + "coordinate": { + "lat": 52.55667465738412, + "long": 9.791528929193227 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 19:00 Uhr", + "", + "A7: Hamburg -> Kassel, zwischen AS Mellendorf und 2.0 km vor Hannover-W\u00fclferode", + "", + "L\u00e4nge: 24.81 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A7 von Mellendorf (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.791528929, + 52.556674657 + ], + [ + 9.7919724, + 52.555872201 + ], + [ + 9.7936424, + 52.552832901 + ], + [ + 9.7937196, + 52.552693101 + ], + [ + 9.7939946, + 52.552194901 + ], + [ + 9.7942068, + 52.551822901 + ], + [ + 9.7950513, + 52.550296901 + ], + [ + 9.7961322, + 52.548434601 + ], + [ + 9.7965995, + 52.547629601 + ], + [ + 9.7973519, + 52.546397001 + ], + [ + 9.7981515, + 52.545133201 + ], + [ + 9.7987642, + 52.544220701 + ], + [ + 9.7993358, + 52.543421701 + ], + [ + 9.8001971, + 52.542208201 + ], + [ + 9.8009523, + 52.541167201 + ], + [ + 9.801678, + 52.540209301 + ], + [ + 9.8035501, + 52.537851401 + ], + [ + 9.8041775, + 52.537084801 + ], + [ + 9.8078243, + 52.532709501 + ], + [ + 9.8103948, + 52.529515701 + ], + [ + 9.8114873, + 52.528048701 + ], + [ + 9.8120221, + 52.527325101 + ], + [ + 9.812527, + 52.526592501 + ], + [ + 9.8132542, + 52.525525401 + ], + [ + 9.8140262, + 52.524364001 + ], + [ + 9.8146207, + 52.523410701 + ], + [ + 9.8152377, + 52.522374801 + ], + [ + 9.8159568, + 52.521123601 + ], + [ + 9.8168448, + 52.519475501 + ], + [ + 9.8178042, + 52.517568801 + ], + [ + 9.8187817, + 52.515550901 + ], + [ + 9.8195913, + 52.513853401 + ], + [ + 9.8206945, + 52.511565401 + ], + [ + 9.820994, + 52.510951701 + ], + [ + 9.8213949, + 52.510161301 + ], + [ + 9.8223688, + 52.508327401 + ], + [ + 9.8233252, + 52.506649901 + ], + [ + 9.823821, + 52.505849101 + ], + [ + 9.8241878, + 52.505269301 + ], + [ + 9.8244666, + 52.504833801 + ], + [ + 9.825045, + 52.503971101 + ], + [ + 9.8254531, + 52.503393301 + ], + [ + 9.8263205, + 52.502204201 + ], + [ + 9.8265819, + 52.501840901 + ], + [ + 9.8269075, + 52.501414901 + ], + [ + 9.8278358, + 52.500245101 + ], + [ + 9.8281035, + 52.499914801 + ], + [ + 9.8283848, + 52.499576501 + ], + [ + 9.8295264, + 52.498251601 + ], + [ + 9.8301206, + 52.497601501 + ], + [ + 9.8305557, + 52.497124301 + ], + [ + 9.8312835, + 52.496350801 + ], + [ + 9.8324695, + 52.495138601 + ], + [ + 9.8335852, + 52.494050201 + ], + [ + 9.8348429, + 52.492843901 + ], + [ + 9.8353077, + 52.492408501 + ], + [ + 9.8364494, + 52.491363601 + ], + [ + 9.8367895, + 52.491049401 + ], + [ + 9.8371313, + 52.490743401 + ], + [ + 9.8375523, + 52.490366501 + ], + [ + 9.8377062, + 52.490227201 + ], + [ + 9.8385038, + 52.489495801 + ], + [ + 9.8389885, + 52.489060201 + ], + [ + 9.8394767, + 52.488624001 + ], + [ + 9.8403349, + 52.487857301 + ], + [ + 9.8420789, + 52.486308901 + ], + [ + 9.8435508, + 52.484987201 + ], + [ + 9.8449029, + 52.483754401 + ], + [ + 9.8459268, + 52.482811701 + ], + [ + 9.8466284, + 52.482142001 + ], + [ + 9.8474359, + 52.481367401 + ], + [ + 9.8481773, + 52.480638101 + ], + [ + 9.8493906, + 52.479405001 + ], + [ + 9.8504076, + 52.478329701 + ], + [ + 9.8510929, + 52.477574001 + ], + [ + 9.851914, + 52.476636101 + ], + [ + 9.8526628, + 52.475745301 + ], + [ + 9.8535468, + 52.474627701 + ], + [ + 9.8545489, + 52.473262801 + ], + [ + 9.8552142, + 52.472273701 + ], + [ + 9.8558062, + 52.471330401 + ], + [ + 9.8563065, + 52.470461501 + ], + [ + 9.8567888, + 52.469544301 + ], + [ + 9.8571983, + 52.468717701 + ], + [ + 9.8573783, + 52.468328201 + ], + [ + 9.8575047, + 52.468030901 + ], + [ + 9.8578248, + 52.467251801 + ], + [ + 9.8580852, + 52.466559001 + ], + [ + 9.8583328, + 52.465833701 + ], + [ + 9.8585355, + 52.465161701 + ], + [ + 9.8588909, + 52.463782701 + ], + [ + 9.8589903, + 52.463323401 + ], + [ + 9.8590956, + 52.462775601 + ], + [ + 9.8592519, + 52.461751601 + ], + [ + 9.8593489, + 52.460968501 + ], + [ + 9.8595044, + 52.459524801 + ], + [ + 9.8597033, + 52.457885601 + ], + [ + 9.8597804, + 52.457398301 + ], + [ + 9.8598756, + 52.456891701 + ], + [ + 9.8600659, + 52.456065401 + ], + [ + 9.8602034, + 52.455545701 + ], + [ + 9.8604244, + 52.454837001 + ], + [ + 9.8606427, + 52.454213701 + ], + [ + 9.8608793, + 52.453612001 + ], + [ + 9.861202, + 52.452871601 + ], + [ + 9.86177, + 52.451740301 + ], + [ + 9.8624949, + 52.450494101 + ], + [ + 9.8628873, + 52.449897401 + ], + [ + 9.8632762, + 52.449338501 + ], + [ + 9.8642622, + 52.448059601 + ], + [ + 9.8644925, + 52.447781701 + ], + [ + 9.8649031, + 52.447303101 + ], + [ + 9.8656089, + 52.446517701 + ], + [ + 9.865785, + 52.446337801 + ], + [ + 9.8662283, + 52.445873501 + ], + [ + 9.8665576, + 52.445540601 + ], + [ + 9.867218, + 52.444896101 + ], + [ + 9.8678937, + 52.444255501 + ], + [ + 9.8687455, + 52.443481401 + ], + [ + 9.8695244, + 52.442791301 + ], + [ + 9.8709231, + 52.441594301 + ], + [ + 9.8720767, + 52.440634901 + ], + [ + 9.8727773, + 52.440054501 + ], + [ + 9.8737584, + 52.439263901 + ], + [ + 9.8757087, + 52.437672701 + ], + [ + 9.8766489, + 52.436896301 + ], + [ + 9.8775883, + 52.436111501 + ], + [ + 9.8784835, + 52.435343301 + ], + [ + 9.8791201, + 52.434782601 + ], + [ + 9.8798183, + 52.434155301 + ], + [ + 9.8807672, + 52.433276101 + ], + [ + 9.8814094, + 52.432669901 + ], + [ + 9.8819241, + 52.432165801 + ], + [ + 9.8831958, + 52.430896201 + ], + [ + 9.8845173, + 52.429505001 + ], + [ + 9.8852859, + 52.428663101 + ], + [ + 9.8867706, + 52.426960801 + ], + [ + 9.8879492, + 52.425518601 + ], + [ + 9.8891793, + 52.423918701 + ], + [ + 9.8896918, + 52.423224701 + ], + [ + 9.8903203, + 52.422343901 + ], + [ + 9.8908378, + 52.421588501 + ], + [ + 9.8915683, + 52.420482101 + ], + [ + 9.8924474, + 52.419082401 + ], + [ + 9.8932525, + 52.417726501 + ], + [ + 9.8940087, + 52.416354301 + ], + [ + 9.8946165, + 52.415165201 + ], + [ + 9.8954388, + 52.413453301 + ], + [ + 9.8957843, + 52.412685601 + ], + [ + 9.8964813, + 52.411004701 + ], + [ + 9.8969873, + 52.409674801 + ], + [ + 9.8972181, + 52.409012901 + ], + [ + 9.8977615, + 52.407349101 + ], + [ + 9.8979709, + 52.406658801 + ], + [ + 9.8982644, + 52.405533501 + ], + [ + 9.8984222, + 52.404986801 + ], + [ + 9.8986549, + 52.404023601 + ], + [ + 9.8988024, + 52.403391001 + ], + [ + 9.8990119, + 52.402328801 + ], + [ + 9.8991511, + 52.401541301 + ], + [ + 9.8994249, + 52.399715701 + ], + [ + 9.89957, + 52.398472501 + ], + [ + 9.8996457, + 52.397597901 + ], + [ + 9.8997023, + 52.396737001 + ], + [ + 9.8997556, + 52.395642601 + ], + [ + 9.8997805, + 52.394633301 + ], + [ + 9.8997584, + 52.392766901 + ], + [ + 9.8997216, + 52.391849201 + ], + [ + 9.8996715, + 52.391012601 + ], + [ + 9.8996501, + 52.390653901 + ], + [ + 9.8995651, + 52.389664801 + ], + [ + 9.8994438, + 52.388583601 + ], + [ + 9.8992973, + 52.387543301 + ], + [ + 9.8992024, + 52.386944401 + ], + [ + 9.8990046, + 52.385815601 + ], + [ + 9.8989241, + 52.385416301 + ], + [ + 9.8986978, + 52.384347201 + ], + [ + 9.8985884, + 52.383857601 + ], + [ + 9.898259, + 52.382545501 + ], + [ + 9.8978679, + 52.381161201 + ], + [ + 9.8974742, + 52.379900701 + ], + [ + 9.897317, + 52.379425701 + ], + [ + 9.8967502, + 52.377735601 + ], + [ + 9.8964294, + 52.376791801 + ], + [ + 9.8962802, + 52.376358201 + ], + [ + 9.8958874, + 52.375221901 + ], + [ + 9.8957652, + 52.374857201 + ], + [ + 9.8956904, + 52.374634201 + ], + [ + 9.8954479, + 52.373918101 + ], + [ + 9.8950632, + 52.372793601 + ], + [ + 9.8946308, + 52.371539701 + ], + [ + 9.8942193, + 52.370401001 + ], + [ + 9.8937256, + 52.369152101 + ], + [ + 9.8934378, + 52.368485901 + ], + [ + 9.8931548, + 52.367854201 + ], + [ + 9.8927624, + 52.367069001 + ], + [ + 9.8923706, + 52.366362101 + ], + [ + 9.8920813, + 52.365854801 + ], + [ + 9.8917093, + 52.365259301 + ], + [ + 9.8913967, + 52.364805801 + ], + [ + 9.8911002, + 52.364394501 + ], + [ + 9.8903814, + 52.363481201 + ], + [ + 9.8899162, + 52.362941701 + ], + [ + 9.8896658, + 52.362660201 + ], + [ + 9.8885665, + 52.361516601 + ], + [ + 9.8876449, + 52.360643301 + ], + [ + 9.8866628, + 52.359769301 + ], + [ + 9.8853861, + 52.358701301 + ], + [ + 9.8843288, + 52.357864701 + ], + [ + 9.8828847, + 52.356762701 + ], + [ + 9.8814065, + 52.355662701 + ], + [ + 9.8808355, + 52.355245501 + ], + [ + 9.8797775, + 52.354473001 + ], + [ + 9.8792589, + 52.354094401 + ], + [ + 9.8787846, + 52.353747801 + ], + [ + 9.8781072, + 52.353243601 + ], + [ + 9.8771061, + 52.352490001 + ], + [ + 9.87692989, + 52.352355331 + ] + ] + } + }, + { + "identifier": "2026-012450--vi-bs.2026-04-20_19-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.7897571538259,9.67286500080533,52.73212606743879,9.675433072611924", + "point": "52.7897571538259,9.67286500080533", + "startLcPosition": "225", + "impact": { + "lower": "Allertal", + "upper": "Wolfsgrund", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Hannover", + "title": "A7 | Wolfsgrund - Allertal", + "coordinate": { + "lat": 52.7897571538259, + "long": 9.67286500080533 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:30 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 19:30 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 19:30 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 19:30 bis zum 24.04.26 05:00 Uhr.", + "", + "A7: Hamburg -> Hannover, zwischen 2.4 km hinter Wolfsgrund und 4.3 km vor Allertal", + "", + "L\u00e4nge: 6.57 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 von Walsrode (AD) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.672865001, + 52.789757154 + ], + [ + 9.6718042, + 52.786706701 + ], + [ + 9.6717333, + 52.786530901 + ], + [ + 9.6714069, + 52.785554601 + ], + [ + 9.6711337, + 52.784748301 + ], + [ + 9.670132, + 52.782093001 + ], + [ + 9.6697719, + 52.781007601 + ], + [ + 9.6694732, + 52.780107201 + ], + [ + 9.668041, + 52.775789301 + ], + [ + 9.6673956, + 52.773843401 + ], + [ + 9.6673239, + 52.773627301 + ], + [ + 9.6664792, + 52.771156401 + ], + [ + 9.6659959, + 52.769747801 + ], + [ + 9.6657416, + 52.768861601 + ], + [ + 9.6654824, + 52.767979701 + ], + [ + 9.6652489, + 52.767092701 + ], + [ + 9.6649953, + 52.765962901 + ], + [ + 9.6648178, + 52.764991201 + ], + [ + 9.6647501, + 52.764558601 + ], + [ + 9.6646971, + 52.764185301 + ], + [ + 9.6645598, + 52.763149701 + ], + [ + 9.6645248, + 52.762567901 + ], + [ + 9.6644609, + 52.761917501 + ], + [ + 9.6644393, + 52.761501201 + ], + [ + 9.664426, + 52.760648301 + ], + [ + 9.6644314, + 52.759795301 + ], + [ + 9.664482, + 52.758199301 + ], + [ + 9.6645491, + 52.756908901 + ], + [ + 9.6646853, + 52.755845401 + ], + [ + 9.6647233, + 52.755552501 + ], + [ + 9.6648297, + 52.754782001 + ], + [ + 9.6650998, + 52.753337501 + ], + [ + 9.6654337, + 52.752053201 + ], + [ + 9.6656968, + 52.751132001 + ], + [ + 9.6657682, + 52.750882101 + ], + [ + 9.6661453, + 52.749774701 + ], + [ + 9.6667607, + 52.748218201 + ], + [ + 9.6674162, + 52.746739501 + ], + [ + 9.6681001, + 52.745261301 + ], + [ + 9.6693951, + 52.742475301 + ], + [ + 9.6701953, + 52.740891001 + ], + [ + 9.6715157, + 52.738610101 + ], + [ + 9.6719859, + 52.737844801 + ], + [ + 9.6736425, + 52.735148101 + ], + [ + 9.6745547, + 52.733632401 + ], + [ + 9.675267, + 52.732429501 + ], + [ + 9.675433073, + 52.732126067 + ] + ] + } + }, + { + "identifier": "2026-015145--vi-bs.2026-04-10_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.89752434994568,9.779772149888865,52.89949961039302,9.782810981759033", + "point": "52.89752434994568,9.779772149888865", + "startLcPosition": "229", + "impact": { + "lower": "Dorfmark", + "upper": "Dorfmark", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Hamburg", + "title": "A7 | Dorfmark - Dorfmark", + "coordinate": { + "lat": 52.89752434994568, + "long": 9.779772149888865 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: Hannover -> Hamburg, zwischen 1.0 km hinter AS Dorfmark und 0.8 km vor Dorfmark", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 Entst\u00f6rung an der Mautbr\u00fccke ID 4041" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.77977215, + 52.89752435 + ], + [ + 9.7810357, + 52.898322501 + ], + [ + 9.782810982, + 52.89949961 + ] + ] + } + }, + { + "identifier": "2026-017670--vi-bs.2026-04-13_08-00-00-000_020.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.92846992790653,9.831272086743981,52.9271033292883,9.827424385814831", + "point": "52.92846992790653,9.831272086743981", + "startLcPosition": "231", + "impact": { + "lower": "Dorfmark", + "upper": "Soltau-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Hannover", + "title": "A7 | Soltau-S\u00fcd - Dorfmark", + "coordinate": { + "lat": 52.92846992790653, + "long": 9.831272086743981 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 18:00 Uhr", + "", + "A7: Hamburg -> Hannover, zwischen 3.7 km hinter AS Soltau-S\u00fcd und 3.5 km vor Dorfmark", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 Arbeiten an Mautbr\u00fccken ID 4039" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.831272087, + 52.928469928 + ], + [ + 9.8296617, + 52.927903001 + ], + [ + 9.828024, + 52.927317601 + ], + [ + 9.827424386, + 52.927103329 + ] + ] + } + }, + { + "identifier": "2026-016680--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_008.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.100611081543455,9.977081615395404,53.162398174940904,10.06553442290534", + "point": "53.100611081543455,9.977081615395404", + "startLcPosition": "238", + "impact": { + "lower": "Egestorf", + "upper": "Bispinger Tor", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Hamburg", + "title": "A7 | Bispinger Tor - Egestorf", + "coordinate": { + "lat": 53.100611081543455, + "long": 9.977081615395404 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A7: Hannover -> Hamburg, zwischen 1.8 km hinter Bispinger Tor und 3.7 km vor AS Egestorf", + "", + "L\u00e4nge: 9.68 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 km 43,000 - 52,700 Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.977081615, + 53.100611082 + ], + [ + 9.9771986, + 53.100783901 + ], + [ + 9.9781794, + 53.102273401 + ], + [ + 9.9785082, + 53.102759501 + ], + [ + 9.9788395, + 53.103247401 + ], + [ + 9.9794963, + 53.104223901 + ], + [ + 9.980201, + 53.105283701 + ], + [ + 9.9805588, + 53.105813401 + ], + [ + 9.9808943, + 53.106316501 + ], + [ + 9.9812943, + 53.106919601 + ], + [ + 9.981873, + 53.107765001 + ], + [ + 9.9824488, + 53.108635701 + ], + [ + 9.9837877, + 53.110633601 + ], + [ + 9.9845978, + 53.111903201 + ], + [ + 9.9848744, + 53.112378601 + ], + [ + 9.985137, + 53.112858101 + ], + [ + 9.9853242, + 53.113207501 + ], + [ + 9.9857653, + 53.114128001 + ], + [ + 9.9860497, + 53.114790901 + ], + [ + 9.9861195, + 53.114957701 + ], + [ + 9.986333, + 53.115506201 + ], + [ + 9.9865736, + 53.116149901 + ], + [ + 9.9867926, + 53.116809901 + ], + [ + 9.9871622, + 53.117925701 + ], + [ + 9.9878197, + 53.120205101 + ], + [ + 9.9880048, + 53.120882901 + ], + [ + 9.988454, + 53.122392301 + ], + [ + 9.9887489, + 53.123323901 + ], + [ + 9.9888261, + 53.123541101 + ], + [ + 9.9892222, + 53.124658601 + ], + [ + 9.9894269, + 53.125172301 + ], + [ + 9.9899113, + 53.126265701 + ], + [ + 9.990591, + 53.127579601 + ], + [ + 9.9915369, + 53.129182001 + ], + [ + 9.9923608, + 53.130344001 + ], + [ + 9.9934444, + 53.131694401 + ], + [ + 9.9937355, + 53.132025501 + ], + [ + 9.9947233, + 53.133149401 + ], + [ + 9.9961379, + 53.134560801 + ], + [ + 9.9966773, + 53.135082001 + ], + [ + 9.9972875, + 53.135604901 + ], + [ + 9.9994308, + 53.137321101 + ], + [ + 10.0012246, + 53.138588501 + ], + [ + 10.0019632, + 53.139080101 + ], + [ + 10.0023422, + 53.139312601 + ], + [ + 10.0032328, + 53.139858801 + ], + [ + 10.0043735, + 53.140526201 + ], + [ + 10.0058906, + 53.141343401 + ], + [ + 10.0072119, + 53.142000301 + ], + [ + 10.0085967, + 53.142655401 + ], + [ + 10.009371, + 53.143009001 + ], + [ + 10.0101851, + 53.143350101 + ], + [ + 10.0118175, + 53.144009801 + ], + [ + 10.0139245, + 53.144754901 + ], + [ + 10.0147724, + 53.145054701 + ], + [ + 10.0161128, + 53.145475301 + ], + [ + 10.017348, + 53.145856201 + ], + [ + 10.0194977, + 53.146472201 + ], + [ + 10.0218782, + 53.147122301 + ], + [ + 10.0255733, + 53.148082201 + ], + [ + 10.0275352, + 53.148592101 + ], + [ + 10.0371007, + 53.151084701 + ], + [ + 10.0411412, + 53.152175901 + ], + [ + 10.0424841, + 53.152526001 + ], + [ + 10.0439711, + 53.152919801 + ], + [ + 10.0444416, + 53.153044401 + ], + [ + 10.045782, + 53.153420201 + ], + [ + 10.0471132, + 53.153813101 + ], + [ + 10.0491651, + 53.154443801 + ], + [ + 10.0495862, + 53.154585201 + ], + [ + 10.0505084, + 53.154906901 + ], + [ + 10.0509032, + 53.155044701 + ], + [ + 10.0511443, + 53.155138001 + ], + [ + 10.0538111, + 53.156169701 + ], + [ + 10.0543943, + 53.156414001 + ], + [ + 10.0557311, + 53.156980601 + ], + [ + 10.056887, + 53.157491801 + ], + [ + 10.0570455, + 53.157563701 + ], + [ + 10.0583723, + 53.158190601 + ], + [ + 10.059662, + 53.158846601 + ], + [ + 10.0610668, + 53.159600301 + ], + [ + 10.0623997, + 53.160364301 + ], + [ + 10.0634709, + 53.161016601 + ], + [ + 10.064483, + 53.161687901 + ], + [ + 10.065534423, + 53.162398175 + ] + ] + } + }, + { + "identifier": "2026-015127--vi-bs.2026-04-15_21-00-00-000.devi-bs.2026-04-07_21-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.0898210469971,9.969866015065287,53.18670330248954,10.08364271377231", + "point": "53.0898210469971,9.969866015065287", + "startLcPosition": "238", + "impact": { + "lower": "Egestorf", + "upper": "Bispinger Tor", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Hamburg", + "title": "A7 | Bispinger Tor - Egestorf", + "coordinate": { + "lat": 53.0898210469971, + "long": 9.969866015065287 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Mittwoch, Donnerstag und Freitag zwischen dem 15.04.26 und dem 21.04.26 von 21:00 bis 00:00 Uhr.", + "Jeden Montag, Dienstag, Donnerstag und Freitag zwischen dem 16.04.26 und dem 21.04.26 von 00:00 bis 05:00 Uhr.", + "18.04.26 von 00:00 bis 05:00 Uhr", + "19.04.26 von 21:00 bis 24:00 Uhr", + "", + "A7: Hannover -> Hamburg, zwischen 0.5 km hinter Bispinger Tor und 0.7 km vor AS Egestorf", + "", + "L\u00e4nge: 13.97 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 Fahrbahnmarkierung RiFa S\u00fcd km 25,000 - 54,000, RiFa Nord km 54,000 - 40,000" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.969866015, + 53.089821047 + ], + [ + 9.9711363, + 53.091707001 + ], + [ + 9.9718742, + 53.092855801 + ], + [ + 9.972838, + 53.094285001 + ], + [ + 9.9737658, + 53.095676001 + ], + [ + 9.9738496, + 53.095798901 + ], + [ + 9.9743856, + 53.096595401 + ], + [ + 9.9749048, + 53.097371101 + ], + [ + 9.9752855, + 53.097943401 + ], + [ + 9.9762215, + 53.099340401 + ], + [ + 9.9771986, + 53.100783901 + ], + [ + 9.9781794, + 53.102273401 + ], + [ + 9.9785082, + 53.102759501 + ], + [ + 9.9788395, + 53.103247401 + ], + [ + 9.9794963, + 53.104223901 + ], + [ + 9.980201, + 53.105283701 + ], + [ + 9.9805588, + 53.105813401 + ], + [ + 9.9808943, + 53.106316501 + ], + [ + 9.9812943, + 53.106919601 + ], + [ + 9.981873, + 53.107765001 + ], + [ + 9.9824488, + 53.108635701 + ], + [ + 9.9837877, + 53.110633601 + ], + [ + 9.9845978, + 53.111903201 + ], + [ + 9.9848744, + 53.112378601 + ], + [ + 9.985137, + 53.112858101 + ], + [ + 9.9853242, + 53.113207501 + ], + [ + 9.9857653, + 53.114128001 + ], + [ + 9.9860497, + 53.114790901 + ], + [ + 9.9861195, + 53.114957701 + ], + [ + 9.986333, + 53.115506201 + ], + [ + 9.9865736, + 53.116149901 + ], + [ + 9.9867926, + 53.116809901 + ], + [ + 9.9871622, + 53.117925701 + ], + [ + 9.9878197, + 53.120205101 + ], + [ + 9.9880048, + 53.120882901 + ], + [ + 9.988454, + 53.122392301 + ], + [ + 9.9887489, + 53.123323901 + ], + [ + 9.9888261, + 53.123541101 + ], + [ + 9.9892222, + 53.124658601 + ], + [ + 9.9894269, + 53.125172301 + ], + [ + 9.9899113, + 53.126265701 + ], + [ + 9.990591, + 53.127579601 + ], + [ + 9.9915369, + 53.129182001 + ], + [ + 9.9923608, + 53.130344001 + ], + [ + 9.9934444, + 53.131694401 + ], + [ + 9.9937355, + 53.132025501 + ], + [ + 9.9947233, + 53.133149401 + ], + [ + 9.9961379, + 53.134560801 + ], + [ + 9.9966773, + 53.135082001 + ], + [ + 9.9972875, + 53.135604901 + ], + [ + 9.9994308, + 53.137321101 + ], + [ + 10.0012246, + 53.138588501 + ], + [ + 10.0019632, + 53.139080101 + ], + [ + 10.0023422, + 53.139312601 + ], + [ + 10.0032328, + 53.139858801 + ], + [ + 10.0043735, + 53.140526201 + ], + [ + 10.0058906, + 53.141343401 + ], + [ + 10.0072119, + 53.142000301 + ], + [ + 10.0085967, + 53.142655401 + ], + [ + 10.009371, + 53.143009001 + ], + [ + 10.0101851, + 53.143350101 + ], + [ + 10.0118175, + 53.144009801 + ], + [ + 10.0139245, + 53.144754901 + ], + [ + 10.0147724, + 53.145054701 + ], + [ + 10.0161128, + 53.145475301 + ], + [ + 10.017348, + 53.145856201 + ], + [ + 10.0194977, + 53.146472201 + ], + [ + 10.0218782, + 53.147122301 + ], + [ + 10.0255733, + 53.148082201 + ], + [ + 10.0275352, + 53.148592101 + ], + [ + 10.0371007, + 53.151084701 + ], + [ + 10.0411412, + 53.152175901 + ], + [ + 10.0424841, + 53.152526001 + ], + [ + 10.0439711, + 53.152919801 + ], + [ + 10.0444416, + 53.153044401 + ], + [ + 10.045782, + 53.153420201 + ], + [ + 10.0471132, + 53.153813101 + ], + [ + 10.0491651, + 53.154443801 + ], + [ + 10.0495862, + 53.154585201 + ], + [ + 10.0505084, + 53.154906901 + ], + [ + 10.0509032, + 53.155044701 + ], + [ + 10.0511443, + 53.155138001 + ], + [ + 10.0538111, + 53.156169701 + ], + [ + 10.0543943, + 53.156414001 + ], + [ + 10.0557311, + 53.156980601 + ], + [ + 10.056887, + 53.157491801 + ], + [ + 10.0570455, + 53.157563701 + ], + [ + 10.0583723, + 53.158190601 + ], + [ + 10.059662, + 53.158846601 + ], + [ + 10.0610668, + 53.159600301 + ], + [ + 10.0623997, + 53.160364301 + ], + [ + 10.0634709, + 53.161016601 + ], + [ + 10.064483, + 53.161687901 + ], + [ + 10.0655805, + 53.162429301 + ], + [ + 10.0667822, + 53.163299201 + ], + [ + 10.0685511, + 53.164651501 + ], + [ + 10.0707205, + 53.166517301 + ], + [ + 10.0719327, + 53.167645301 + ], + [ + 10.0730594, + 53.168764501 + ], + [ + 10.074079, + 53.169834101 + ], + [ + 10.0743809, + 53.170150801 + ], + [ + 10.0764404, + 53.172490801 + ], + [ + 10.0774929, + 53.173837401 + ], + [ + 10.0787833, + 53.175665401 + ], + [ + 10.079742, + 53.177131301 + ], + [ + 10.0802726, + 53.177987101 + ], + [ + 10.0810589, + 53.179409701 + ], + [ + 10.0815966, + 53.180382501 + ], + [ + 10.0822799, + 53.181802101 + ], + [ + 10.082323, + 53.181894301 + ], + [ + 10.0827017, + 53.182747901 + ], + [ + 10.0830151, + 53.183648401 + ], + [ + 10.0832054, + 53.184280301 + ], + [ + 10.083358, + 53.184898401 + ], + [ + 10.0834275, + 53.185242301 + ], + [ + 10.0834726, + 53.185504101 + ], + [ + 10.0835619, + 53.186020301 + ], + [ + 10.0836253, + 53.186494601 + ], + [ + 10.083642714, + 53.186703302 + ] + ] + } + }, + { + "identifier": "2026-016680--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_008.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.162492208291454,10.06535717085039,53.10066495599732,9.976862371015587", + "point": "53.162492208291454,10.06535717085039", + "startLcPosition": "245", + "impact": { + "lower": "Bispinger Tor", + "upper": "Egestorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Hannover", + "title": "A7 | Egestorf - Bispinger Tor", + "coordinate": { + "lat": 53.162492208291454, + "long": 10.06535717085039 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A7: Hamburg -> Hannover, zwischen 3.7 km hinter AS Egestorf und 1.8 km vor Bispinger Tor", + "", + "L\u00e4nge: 9.68 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A7 km 43,000 - 52,700 Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.065357171, + 53.162492208 + ], + [ + 10.0652567, + 53.162423301 + ], + [ + 10.0643307, + 53.161803901 + ], + [ + 10.0632581, + 53.161110201 + ], + [ + 10.0622052, + 53.160464301 + ], + [ + 10.060878, + 53.159703201 + ], + [ + 10.0594664, + 53.158937001 + ], + [ + 10.0582248, + 53.158314401 + ], + [ + 10.0569175, + 53.157685701 + ], + [ + 10.0555935, + 53.157103401 + ], + [ + 10.054253, + 53.156535201 + ], + [ + 10.0537228, + 53.156306201 + ], + [ + 10.050769, + 53.155162701 + ], + [ + 10.0503866, + 53.155029501 + ], + [ + 10.0494584, + 53.154703901 + ], + [ + 10.0490439, + 53.154570901 + ], + [ + 10.0470076, + 53.153938801 + ], + [ + 10.0456828, + 53.153548901 + ], + [ + 10.0443431, + 53.153172901 + ], + [ + 10.0424182, + 53.152663801 + ], + [ + 10.0410278, + 53.152301301 + ], + [ + 10.0370278, + 53.151222201 + ], + [ + 10.0275761, + 53.148773701 + ], + [ + 10.0274217, + 53.148733701 + ], + [ + 10.0257133, + 53.148283501 + ], + [ + 10.0214021, + 53.147152001 + ], + [ + 10.0194132, + 53.146595101 + ], + [ + 10.0172339, + 53.145970801 + ], + [ + 10.0160108, + 53.145597501 + ], + [ + 10.0146674, + 53.145175101 + ], + [ + 10.0138061, + 53.144873701 + ], + [ + 10.0117182, + 53.144134401 + ], + [ + 10.0100511, + 53.143452401 + ], + [ + 10.0092477, + 53.143115201 + ], + [ + 10.0084712, + 53.142761201 + ], + [ + 10.0070858, + 53.142116101 + ], + [ + 10.0057454, + 53.141442401 + ], + [ + 10.0042252, + 53.140611801 + ], + [ + 10.0030744, + 53.139947601 + ], + [ + 10.0021778, + 53.139404001 + ], + [ + 10.0018094, + 53.139180701 + ], + [ + 10.0008133, + 53.138517401 + ], + [ + 9.9992424, + 53.137403101 + ], + [ + 9.9971084, + 53.135687601 + ], + [ + 9.9964828, + 53.135155201 + ], + [ + 9.9959398, + 53.134623301 + ], + [ + 9.9952998, + 53.133989101 + ], + [ + 9.9945141, + 53.133210501 + ], + [ + 9.9935126, + 53.132087601 + ], + [ + 9.9932235, + 53.131763401 + ], + [ + 9.9921178, + 53.130394101 + ], + [ + 9.9912778, + 53.129222201 + ], + [ + 9.990354, + 53.127627801 + ], + [ + 9.9896393, + 53.126290401 + ], + [ + 9.9891501, + 53.125190001 + ], + [ + 9.9889451, + 53.124680101 + ], + [ + 9.9885495, + 53.123569101 + ], + [ + 9.9884766, + 53.123364201 + ], + [ + 9.9881745, + 53.122445901 + ], + [ + 9.9878346, + 53.121303001 + ], + [ + 9.987529, + 53.120222101 + ], + [ + 9.9872834, + 53.119323801 + ], + [ + 9.9868784, + 53.117936901 + ], + [ + 9.9865602, + 53.116802701 + ], + [ + 9.9863429, + 53.116173201 + ], + [ + 9.9861484, + 53.115630501 + ], + [ + 9.9860093, + 53.115264001 + ], + [ + 9.9858287, + 53.114817401 + ], + [ + 9.9856791, + 53.114460301 + ], + [ + 9.9855143, + 53.114075101 + ], + [ + 9.9852727, + 53.113571601 + ], + [ + 9.9850511, + 53.113121201 + ], + [ + 9.9847923, + 53.112653801 + ], + [ + 9.9846049, + 53.112342401 + ], + [ + 9.9843528, + 53.111908601 + ], + [ + 9.9835693, + 53.110673101 + ], + [ + 9.9822321, + 53.108683901 + ], + [ + 9.9816544, + 53.107815701 + ], + [ + 9.9811059, + 53.106993701 + ], + [ + 9.9806759, + 53.106360301 + ], + [ + 9.9800599, + 53.105426901 + ], + [ + 9.9792624, + 53.104244201 + ], + [ + 9.9786168, + 53.103278801 + ], + [ + 9.9779849, + 53.102330901 + ], + [ + 9.9772541, + 53.101241101 + ], + [ + 9.976862371, + 53.100664956 + ] + ] + } + }, + { + "identifier": "2025-038997--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-02-23_07-00-00-000.de6", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.32793115232559,10.048213459420264,53.359321963176804,10.037177502915549", + "point": "53.32793115232559,10.048213459420264", + "startLcPosition": "251", + "impact": { + "lower": "Horster Dreieck", + "upper": "Thieshope", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Hamburg", + "title": "A7 | Thieshope - Horster Dreieck", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 53.32793115232559, + "long": 10.048213459420264 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 27.11.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "A7: Hannover -> Hamburg, zwischen 2.7 km hinter AS Thieshope und 2.7 km vor AD Horster Dreieck", + "", + "L\u00e4nge: 3.66 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A7, Horster Dreieck bis AS Thieshope, OPA Grundsinstandsetzung km 17,7 bis km 23,5, RiFa H" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.048213459, + 53.327931152 + ], + [ + 10.0473685, + 53.328516901 + ], + [ + 10.0463625, + 53.329214301 + ], + [ + 10.0459222, + 53.329534301 + ], + [ + 10.0454029, + 53.329926001 + ], + [ + 10.0445899, + 53.330593901 + ], + [ + 10.0442002, + 53.330935901 + ], + [ + 10.0437218, + 53.331381301 + ], + [ + 10.043178, + 53.331935501 + ], + [ + 10.0427606, + 53.332386701 + ], + [ + 10.0424082, + 53.332791501 + ], + [ + 10.0420763, + 53.333191001 + ], + [ + 10.0416749, + 53.333721501 + ], + [ + 10.0414192, + 53.334091001 + ], + [ + 10.0409192, + 53.334869901 + ], + [ + 10.0404885, + 53.335681201 + ], + [ + 10.0400345, + 53.336685601 + ], + [ + 10.039694, + 53.337689101 + ], + [ + 10.0395569, + 53.338220501 + ], + [ + 10.039462, + 53.338755501 + ], + [ + 10.039325, + 53.339629701 + ], + [ + 10.0393063, + 53.339786001 + ], + [ + 10.0391516, + 53.341076101 + ], + [ + 10.0390634, + 53.341812401 + ], + [ + 10.0389662, + 53.342775201 + ], + [ + 10.0389088, + 53.343335401 + ], + [ + 10.0388289, + 53.344122001 + ], + [ + 10.0387303, + 53.345025801 + ], + [ + 10.038652, + 53.345747001 + ], + [ + 10.0384068, + 53.348074301 + ], + [ + 10.038323, + 53.348766401 + ], + [ + 10.0382753, + 53.349229201 + ], + [ + 10.0382177, + 53.349634801 + ], + [ + 10.0380858, + 53.350876001 + ], + [ + 10.0380239, + 53.351437601 + ], + [ + 10.0378184, + 53.353465001 + ], + [ + 10.037746, + 53.354052901 + ], + [ + 10.0376151, + 53.355234101 + ], + [ + 10.0374391, + 53.356962701 + ], + [ + 10.0373435, + 53.357857301 + ], + [ + 10.0373266, + 53.358006801 + ], + [ + 10.037177503, + 53.359321963 + ] + ] + } + }, + { + "identifier": "2026-006205--vi-bs.2026-03-25_05-00-00-000.devi-zus.2026-03-02_05-00-00-000.de8", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.32886992745412,10.046859264584446,53.3596178951186,10.037143952557486", + "point": "53.32886992745412,10.046859264584446", + "startLcPosition": "251", + "impact": { + "lower": "Horster Dreieck", + "upper": "Thieshope", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Hamburg", + "title": "A7 | Thieshope - Horster Dreieck", + "startTimestamp": "2026-03-25T05:00:00+01:00", + "coordinate": { + "lat": 53.32886992745412, + "long": 10.046859264584446 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.03.26 um 05:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.04.26)", + "", + "A7: Hannover -> Hamburg, zwischen 2.8 km hinter AS Thieshope und 2.7 km vor AD Horster Dreieck", + "", + "L\u00e4nge: 3.56 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7.55 m", + "", + "A7, AS Thieshope bis Horster Dreieck, NOTFALLMA\u00dfNAHME - Deckensanierung km 26,1 bis km 19,8, RiFa HH" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.046859265, + 53.328869927 + ], + [ + 10.0463625, + 53.329214301 + ], + [ + 10.0459222, + 53.329534301 + ], + [ + 10.0454029, + 53.329926001 + ], + [ + 10.0445899, + 53.330593901 + ], + [ + 10.0442002, + 53.330935901 + ], + [ + 10.0437218, + 53.331381301 + ], + [ + 10.043178, + 53.331935501 + ], + [ + 10.0427606, + 53.332386701 + ], + [ + 10.0424082, + 53.332791501 + ], + [ + 10.0420763, + 53.333191001 + ], + [ + 10.0416749, + 53.333721501 + ], + [ + 10.0414192, + 53.334091001 + ], + [ + 10.0409192, + 53.334869901 + ], + [ + 10.0404885, + 53.335681201 + ], + [ + 10.0400345, + 53.336685601 + ], + [ + 10.039694, + 53.337689101 + ], + [ + 10.0395569, + 53.338220501 + ], + [ + 10.039462, + 53.338755501 + ], + [ + 10.039325, + 53.339629701 + ], + [ + 10.0393063, + 53.339786001 + ], + [ + 10.0391516, + 53.341076101 + ], + [ + 10.0390634, + 53.341812401 + ], + [ + 10.0389662, + 53.342775201 + ], + [ + 10.0389088, + 53.343335401 + ], + [ + 10.0388289, + 53.344122001 + ], + [ + 10.0387303, + 53.345025801 + ], + [ + 10.038652, + 53.345747001 + ], + [ + 10.0384068, + 53.348074301 + ], + [ + 10.038323, + 53.348766401 + ], + [ + 10.0382753, + 53.349229201 + ], + [ + 10.0382177, + 53.349634801 + ], + [ + 10.0380858, + 53.350876001 + ], + [ + 10.0380239, + 53.351437601 + ], + [ + 10.0378184, + 53.353465001 + ], + [ + 10.037746, + 53.354052901 + ], + [ + 10.0376151, + 53.355234101 + ], + [ + 10.0374391, + 53.356962701 + ], + [ + 10.0373435, + 53.357857301 + ], + [ + 10.0373266, + 53.358006801 + ], + [ + 10.037143953, + 53.359617895 + ] + ] + } + }, + { + "identifier": "2025-038997--vi-fbm.2026-04-06_20-00-00-000.devi-zus.2026-02-23_07-00-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.33146031392461,10.0436442707434,53.36651432956084,10.034027102319865", + "point": "53.33146031392461,10.0436442707434", + "startLcPosition": "251", + "impact": { + "lower": "Horster Dreieck", + "upper": "Thieshope", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Hamburg", + "title": "A7 | Thieshope - Horster Dreieck", + "coordinate": { + "lat": 53.33146031392461, + "long": 10.0436442707434 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 06.04.26 und dem 13.04.26 von 20:00 bis 00:00 Uhr.", + "Jeden Tag zwischen dem 07.04.26 und dem 13.04.26 von 00:00 bis 05:00 Uhr.", + "", + "A7: Hannover -> Hamburg, zwischen 3.2 km hinter AS Thieshope und 1.9 km vor AD Horster Dreieck", + "", + "L\u00e4nge: 4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7, Horster Dreieck bis AS Thieshope, OPA Grundsinstandsetzung km 17,7 bis km 23,5, RiFa H" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.043644271, + 53.331460314 + ], + [ + 10.043178, + 53.331935501 + ], + [ + 10.0427606, + 53.332386701 + ], + [ + 10.0424082, + 53.332791501 + ], + [ + 10.0420763, + 53.333191001 + ], + [ + 10.0416749, + 53.333721501 + ], + [ + 10.0414192, + 53.334091001 + ], + [ + 10.0409192, + 53.334869901 + ], + [ + 10.0404885, + 53.335681201 + ], + [ + 10.0400345, + 53.336685601 + ], + [ + 10.039694, + 53.337689101 + ], + [ + 10.0395569, + 53.338220501 + ], + [ + 10.039462, + 53.338755501 + ], + [ + 10.039325, + 53.339629701 + ], + [ + 10.0393063, + 53.339786001 + ], + [ + 10.0391516, + 53.341076101 + ], + [ + 10.0390634, + 53.341812401 + ], + [ + 10.0389662, + 53.342775201 + ], + [ + 10.0389088, + 53.343335401 + ], + [ + 10.0388289, + 53.344122001 + ], + [ + 10.0387303, + 53.345025801 + ], + [ + 10.038652, + 53.345747001 + ], + [ + 10.0384068, + 53.348074301 + ], + [ + 10.038323, + 53.348766401 + ], + [ + 10.0382753, + 53.349229201 + ], + [ + 10.0382177, + 53.349634801 + ], + [ + 10.0380858, + 53.350876001 + ], + [ + 10.0380239, + 53.351437601 + ], + [ + 10.0378184, + 53.353465001 + ], + [ + 10.037746, + 53.354052901 + ], + [ + 10.0376151, + 53.355234101 + ], + [ + 10.0374391, + 53.356962701 + ], + [ + 10.0373435, + 53.357857301 + ], + [ + 10.0373266, + 53.358006801 + ], + [ + 10.0371252, + 53.359783301 + ], + [ + 10.0369561, + 53.361274301 + ], + [ + 10.036896, + 53.361633801 + ], + [ + 10.0368154, + 53.361966901 + ], + [ + 10.0367177, + 53.362296401 + ], + [ + 10.0366062, + 53.362633601 + ], + [ + 10.0364796, + 53.362965301 + ], + [ + 10.0362977, + 53.363381601 + ], + [ + 10.036068, + 53.363851501 + ], + [ + 10.0357745, + 53.364347001 + ], + [ + 10.0354563, + 53.364836801 + ], + [ + 10.0349533, + 53.365518601 + ], + [ + 10.0345609, + 53.365970101 + ], + [ + 10.0341004, + 53.366444701 + ], + [ + 10.034027102, + 53.36651433 + ] + ] + } + }, + { + "identifier": "2026-015127--vi-bs.2026-04-22_21-00-00-000.devi-bs.2026-04-07_21-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.3175676633798,10.062597737465548,53.0898789294468,9.969629887215765", + "point": "53.3175676633798,10.062597737465548", + "startLcPosition": "252", + "impact": { + "lower": "Bispinger Tor", + "upper": "Hasselh\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Hannover", + "title": "A7 | Hasselh\u00f6he - Bispinger Tor", + "coordinate": { + "lat": 53.3175676633798, + "long": 10.062597737465548 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch, Donnerstag und Freitag zwischen dem 22.04.26 und dem 25.04.26 von 21:00 bis 00:00 Uhr.", + "Jeden Montag, Donnerstag und Freitag zwischen dem 23.04.26 und dem 27.04.26 von 00:00 bis 05:00 Uhr.", + "25.04.26 von 00:00 bis 05:00 Uhr", + "26.04.26 von 21:00 bis 24:00 Uhr", + "", + "A7: Hamburg -> Hannover, zwischen 2.1 km hinter Hasselh\u00f6he und 0.5 km vor Bispinger Tor", + "", + "L\u00e4nge: 28.98 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 Fahrbahnmarkierung RiFa S\u00fcd km 25,000 - 54,000, RiFa Nord km 54,000 - 40,000" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.062597737, + 53.317567663 + ], + [ + 10.0643612, + 53.316325301 + ], + [ + 10.064963, + 53.315901401 + ], + [ + 10.0657184, + 53.315342401 + ], + [ + 10.0662197, + 53.314937501 + ], + [ + 10.0667795, + 53.314454201 + ], + [ + 10.0672893, + 53.313997201 + ], + [ + 10.0675925, + 53.313690201 + ], + [ + 10.0682546, + 53.313001601 + ], + [ + 10.0686087, + 53.312594101 + ], + [ + 10.0687509, + 53.312430401 + ], + [ + 10.0692961, + 53.311747201 + ], + [ + 10.0697462, + 53.311113801 + ], + [ + 10.0700446, + 53.310647201 + ], + [ + 10.0703763, + 53.310124601 + ], + [ + 10.0704848, + 53.309922901 + ], + [ + 10.0707571, + 53.309404101 + ], + [ + 10.0709982, + 53.308858601 + ], + [ + 10.0711156, + 53.308512901 + ], + [ + 10.0715894, + 53.307250001 + ], + [ + 10.0725332, + 53.304627101 + ], + [ + 10.0730406, + 53.303217801 + ], + [ + 10.073741, + 53.301225101 + ], + [ + 10.0746355, + 53.298716201 + ], + [ + 10.0754151, + 53.296502201 + ], + [ + 10.0761643, + 53.294286501 + ], + [ + 10.0767436, + 53.292508001 + ], + [ + 10.0773682, + 53.290556501 + ], + [ + 10.0778381, + 53.289060001 + ], + [ + 10.0794555, + 53.283688701 + ], + [ + 10.0802068, + 53.281153201 + ], + [ + 10.0808022, + 53.279374301 + ], + [ + 10.0825536, + 53.274932801 + ], + [ + 10.08325, + 53.273166701 + ], + [ + 10.0850409, + 53.268777101 + ], + [ + 10.08607, + 53.266142001 + ], + [ + 10.0867731, + 53.264341601 + ], + [ + 10.0872972, + 53.262953401 + ], + [ + 10.0877162, + 53.261446201 + ], + [ + 10.0879018, + 53.260397601 + ], + [ + 10.0879409, + 53.260001601 + ], + [ + 10.0880418, + 53.259249401 + ], + [ + 10.0880852, + 53.258332001 + ], + [ + 10.0880862, + 53.257354101 + ], + [ + 10.088015, + 53.255980301 + ], + [ + 10.0877444, + 53.254354201 + ], + [ + 10.0876299, + 53.253885401 + ], + [ + 10.0875038, + 53.253415201 + ], + [ + 10.0872074, + 53.252467901 + ], + [ + 10.0870961, + 53.252156301 + ], + [ + 10.0869053, + 53.251631101 + ], + [ + 10.0865798, + 53.250879901 + ], + [ + 10.0863209, + 53.250322801 + ], + [ + 10.0860446, + 53.249768701 + ], + [ + 10.085663, + 53.249070401 + ], + [ + 10.0856342, + 53.249017801 + ], + [ + 10.0853875, + 53.248566301 + ], + [ + 10.0848202, + 53.247554401 + ], + [ + 10.0824773, + 53.243262901 + ], + [ + 10.0824362, + 53.243187701 + ], + [ + 10.0816105, + 53.241689701 + ], + [ + 10.0806726, + 53.239979501 + ], + [ + 10.0803148, + 53.239326901 + ], + [ + 10.0793811, + 53.237636001 + ], + [ + 10.0791131, + 53.237138301 + ], + [ + 10.0787074, + 53.236318701 + ], + [ + 10.0780898, + 53.235011301 + ], + [ + 10.0775907, + 53.233826701 + ], + [ + 10.0771637, + 53.232642401 + ], + [ + 10.0769031, + 53.231852401 + ], + [ + 10.0767224, + 53.231259201 + ], + [ + 10.0764607, + 53.230277001 + ], + [ + 10.0762997, + 53.229679501 + ], + [ + 10.0761408, + 53.228941801 + ], + [ + 10.0759036, + 53.227520901 + ], + [ + 10.0758305, + 53.227009401 + ], + [ + 10.075708, + 53.225896701 + ], + [ + 10.0756382, + 53.224954901 + ], + [ + 10.0756097, + 53.223353001 + ], + [ + 10.0756565, + 53.222211601 + ], + [ + 10.0757014, + 53.221164201 + ], + [ + 10.0758694, + 53.219851701 + ], + [ + 10.0759255, + 53.219409001 + ], + [ + 10.0760399, + 53.218698901 + ], + [ + 10.0763216, + 53.217319701 + ], + [ + 10.0765381, + 53.216426601 + ], + [ + 10.0769266, + 53.214773301 + ], + [ + 10.0771878, + 53.213654101 + ], + [ + 10.0772645, + 53.213347001 + ], + [ + 10.077399, + 53.212818501 + ], + [ + 10.0777046, + 53.211529701 + ], + [ + 10.07816, + 53.209434201 + ], + [ + 10.0783381, + 53.208417601 + ], + [ + 10.0785729, + 53.206905301 + ], + [ + 10.0787604, + 53.205387601 + ], + [ + 10.0788859, + 53.204368201 + ], + [ + 10.0791495, + 53.202343201 + ], + [ + 10.0792855, + 53.201682001 + ], + [ + 10.0794642, + 53.200863701 + ], + [ + 10.079861, + 53.199408401 + ], + [ + 10.0802772, + 53.198243701 + ], + [ + 10.0807245, + 53.197198401 + ], + [ + 10.0814246, + 53.195564301 + ], + [ + 10.0822882, + 53.193551501 + ], + [ + 10.0824394, + 53.193141601 + ], + [ + 10.082535, + 53.192867801 + ], + [ + 10.0827451, + 53.192276401 + ], + [ + 10.0829943, + 53.191445801 + ], + [ + 10.0832179, + 53.190447301 + ], + [ + 10.0833769, + 53.189469801 + ], + [ + 10.0834722, + 53.188277801 + ], + [ + 10.0834693, + 53.187713201 + ], + [ + 10.0834648, + 53.187471101 + ], + [ + 10.0834161, + 53.186732801 + ], + [ + 10.083401, + 53.186532101 + ], + [ + 10.0833401, + 53.186045601 + ], + [ + 10.0832513, + 53.185494801 + ], + [ + 10.0831955, + 53.185212801 + ], + [ + 10.0829873, + 53.184305501 + ], + [ + 10.0828168, + 53.183734801 + ], + [ + 10.0824657, + 53.182720301 + ], + [ + 10.0821157, + 53.181929601 + ], + [ + 10.0820755, + 53.181843701 + ], + [ + 10.0817788, + 53.181238601 + ], + [ + 10.0813445, + 53.180365401 + ], + [ + 10.0806066, + 53.179028001 + ], + [ + 10.0800507, + 53.178018901 + ], + [ + 10.0795001, + 53.177164001 + ], + [ + 10.0785286, + 53.175722701 + ], + [ + 10.0772214, + 53.173874701 + ], + [ + 10.0765496, + 53.173022701 + ], + [ + 10.0761823, + 53.172550301 + ], + [ + 10.0741575, + 53.170197101 + ], + [ + 10.0738825, + 53.169906401 + ], + [ + 10.0730662, + 53.169043501 + ], + [ + 10.0728416, + 53.168806001 + ], + [ + 10.0717118, + 53.167692001 + ], + [ + 10.0705161, + 53.166571401 + ], + [ + 10.0694455, + 53.165646101 + ], + [ + 10.0689632, + 53.165229301 + ], + [ + 10.0683978, + 53.164740701 + ], + [ + 10.0675564, + 53.164108201 + ], + [ + 10.0666096, + 53.163396401 + ], + [ + 10.0654114, + 53.162529401 + ], + [ + 10.0652567, + 53.162423301 + ], + [ + 10.0643307, + 53.161803901 + ], + [ + 10.0632581, + 53.161110201 + ], + [ + 10.0622052, + 53.160464301 + ], + [ + 10.060878, + 53.159703201 + ], + [ + 10.0594664, + 53.158937001 + ], + [ + 10.0582248, + 53.158314401 + ], + [ + 10.0569175, + 53.157685701 + ], + [ + 10.0555935, + 53.157103401 + ], + [ + 10.054253, + 53.156535201 + ], + [ + 10.0537228, + 53.156306201 + ], + [ + 10.050769, + 53.155162701 + ], + [ + 10.0503866, + 53.155029501 + ], + [ + 10.0494584, + 53.154703901 + ], + [ + 10.0490439, + 53.154570901 + ], + [ + 10.0470076, + 53.153938801 + ], + [ + 10.0456828, + 53.153548901 + ], + [ + 10.0443431, + 53.153172901 + ], + [ + 10.0424182, + 53.152663801 + ], + [ + 10.0410278, + 53.152301301 + ], + [ + 10.0370278, + 53.151222201 + ], + [ + 10.0275761, + 53.148773701 + ], + [ + 10.0274217, + 53.148733701 + ], + [ + 10.0257133, + 53.148283501 + ], + [ + 10.0214021, + 53.147152001 + ], + [ + 10.0194132, + 53.146595101 + ], + [ + 10.0172339, + 53.145970801 + ], + [ + 10.0160108, + 53.145597501 + ], + [ + 10.0146674, + 53.145175101 + ], + [ + 10.0138061, + 53.144873701 + ], + [ + 10.0117182, + 53.144134401 + ], + [ + 10.0100511, + 53.143452401 + ], + [ + 10.0092477, + 53.143115201 + ], + [ + 10.0084712, + 53.142761201 + ], + [ + 10.0070858, + 53.142116101 + ], + [ + 10.0057454, + 53.141442401 + ], + [ + 10.0042252, + 53.140611801 + ], + [ + 10.0030744, + 53.139947601 + ], + [ + 10.0021778, + 53.139404001 + ], + [ + 10.0018094, + 53.139180701 + ], + [ + 10.0008133, + 53.138517401 + ], + [ + 9.9992424, + 53.137403101 + ], + [ + 9.9971084, + 53.135687601 + ], + [ + 9.9964828, + 53.135155201 + ], + [ + 9.9959398, + 53.134623301 + ], + [ + 9.9952998, + 53.133989101 + ], + [ + 9.9945141, + 53.133210501 + ], + [ + 9.9935126, + 53.132087601 + ], + [ + 9.9932235, + 53.131763401 + ], + [ + 9.9921178, + 53.130394101 + ], + [ + 9.9912778, + 53.129222201 + ], + [ + 9.990354, + 53.127627801 + ], + [ + 9.9896393, + 53.126290401 + ], + [ + 9.9891501, + 53.125190001 + ], + [ + 9.9889451, + 53.124680101 + ], + [ + 9.9885495, + 53.123569101 + ], + [ + 9.9884766, + 53.123364201 + ], + [ + 9.9881745, + 53.122445901 + ], + [ + 9.9878346, + 53.121303001 + ], + [ + 9.987529, + 53.120222101 + ], + [ + 9.9872834, + 53.119323801 + ], + [ + 9.9868784, + 53.117936901 + ], + [ + 9.9865602, + 53.116802701 + ], + [ + 9.9863429, + 53.116173201 + ], + [ + 9.9861484, + 53.115630501 + ], + [ + 9.9860093, + 53.115264001 + ], + [ + 9.9858287, + 53.114817401 + ], + [ + 9.9856791, + 53.114460301 + ], + [ + 9.9855143, + 53.114075101 + ], + [ + 9.9852727, + 53.113571601 + ], + [ + 9.9850511, + 53.113121201 + ], + [ + 9.9847923, + 53.112653801 + ], + [ + 9.9846049, + 53.112342401 + ], + [ + 9.9843528, + 53.111908601 + ], + [ + 9.9835693, + 53.110673101 + ], + [ + 9.9822321, + 53.108683901 + ], + [ + 9.9816544, + 53.107815701 + ], + [ + 9.9811059, + 53.106993701 + ], + [ + 9.9806759, + 53.106360301 + ], + [ + 9.9800599, + 53.105426901 + ], + [ + 9.9792624, + 53.104244201 + ], + [ + 9.9786168, + 53.103278801 + ], + [ + 9.9779849, + 53.102330901 + ], + [ + 9.9772541, + 53.101241101 + ], + [ + 9.9768452, + 53.100639701 + ], + [ + 9.9750723, + 53.097986101 + ], + [ + 9.9745427, + 53.097199101 + ], + [ + 9.9726184, + 53.094330601 + ], + [ + 9.9716577, + 53.092890601 + ], + [ + 9.9699479, + 53.090346701 + ], + [ + 9.969629887, + 53.089878929 + ] + ] + } + }, + { + "identifier": "2026-015127--vi-bs.2026-04-07_21-00-00-000.devi-bs.2026-04-07_21-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.3175676633798,10.062597737465548,53.0898789294468,9.969629887215765", + "point": "53.3175676633798,10.062597737465548", + "startLcPosition": "252", + "impact": { + "lower": "Bispinger Tor", + "upper": "Hasselh\u00f6he", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Hannover", + "title": "A7 | Hasselh\u00f6he - Bispinger Tor", + "coordinate": { + "lat": 53.3175676633798, + "long": 10.062597737465548 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 15.04.26 von 21:00 bis 00:00 Uhr.", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 08.04.26 und dem 15.04.26 von 00:00 bis 05:00 Uhr.", + "11.04.26 von 00:00 bis 05:00 Uhr", + "12.04.26 von 21:00 bis 24:00 Uhr", + "", + "A7: Hamburg -> Hannover, zwischen 2.1 km hinter Hasselh\u00f6he und 0.5 km vor Bispinger Tor", + "", + "L\u00e4nge: 28.98 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 Fahrbahnmarkierung RiFa S\u00fcd km 25,000 - 54,000, RiFa Nord km 54,000 - 40,000" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.062597737, + 53.317567663 + ], + [ + 10.0643612, + 53.316325301 + ], + [ + 10.064963, + 53.315901401 + ], + [ + 10.0657184, + 53.315342401 + ], + [ + 10.0662197, + 53.314937501 + ], + [ + 10.0667795, + 53.314454201 + ], + [ + 10.0672893, + 53.313997201 + ], + [ + 10.0675925, + 53.313690201 + ], + [ + 10.0682546, + 53.313001601 + ], + [ + 10.0686087, + 53.312594101 + ], + [ + 10.0687509, + 53.312430401 + ], + [ + 10.0692961, + 53.311747201 + ], + [ + 10.0697462, + 53.311113801 + ], + [ + 10.0700446, + 53.310647201 + ], + [ + 10.0703763, + 53.310124601 + ], + [ + 10.0704848, + 53.309922901 + ], + [ + 10.0707571, + 53.309404101 + ], + [ + 10.0709982, + 53.308858601 + ], + [ + 10.0711156, + 53.308512901 + ], + [ + 10.0715894, + 53.307250001 + ], + [ + 10.0725332, + 53.304627101 + ], + [ + 10.0730406, + 53.303217801 + ], + [ + 10.073741, + 53.301225101 + ], + [ + 10.0746355, + 53.298716201 + ], + [ + 10.0754151, + 53.296502201 + ], + [ + 10.0761643, + 53.294286501 + ], + [ + 10.0767436, + 53.292508001 + ], + [ + 10.0773682, + 53.290556501 + ], + [ + 10.0778381, + 53.289060001 + ], + [ + 10.0794555, + 53.283688701 + ], + [ + 10.0802068, + 53.281153201 + ], + [ + 10.0808022, + 53.279374301 + ], + [ + 10.0825536, + 53.274932801 + ], + [ + 10.08325, + 53.273166701 + ], + [ + 10.0850409, + 53.268777101 + ], + [ + 10.08607, + 53.266142001 + ], + [ + 10.0867731, + 53.264341601 + ], + [ + 10.0872972, + 53.262953401 + ], + [ + 10.0877162, + 53.261446201 + ], + [ + 10.0879018, + 53.260397601 + ], + [ + 10.0879409, + 53.260001601 + ], + [ + 10.0880418, + 53.259249401 + ], + [ + 10.0880852, + 53.258332001 + ], + [ + 10.0880862, + 53.257354101 + ], + [ + 10.088015, + 53.255980301 + ], + [ + 10.0877444, + 53.254354201 + ], + [ + 10.0876299, + 53.253885401 + ], + [ + 10.0875038, + 53.253415201 + ], + [ + 10.0872074, + 53.252467901 + ], + [ + 10.0870961, + 53.252156301 + ], + [ + 10.0869053, + 53.251631101 + ], + [ + 10.0865798, + 53.250879901 + ], + [ + 10.0863209, + 53.250322801 + ], + [ + 10.0860446, + 53.249768701 + ], + [ + 10.085663, + 53.249070401 + ], + [ + 10.0856342, + 53.249017801 + ], + [ + 10.0853875, + 53.248566301 + ], + [ + 10.0848202, + 53.247554401 + ], + [ + 10.0824773, + 53.243262901 + ], + [ + 10.0824362, + 53.243187701 + ], + [ + 10.0816105, + 53.241689701 + ], + [ + 10.0806726, + 53.239979501 + ], + [ + 10.0803148, + 53.239326901 + ], + [ + 10.0793811, + 53.237636001 + ], + [ + 10.0791131, + 53.237138301 + ], + [ + 10.0787074, + 53.236318701 + ], + [ + 10.0780898, + 53.235011301 + ], + [ + 10.0775907, + 53.233826701 + ], + [ + 10.0771637, + 53.232642401 + ], + [ + 10.0769031, + 53.231852401 + ], + [ + 10.0767224, + 53.231259201 + ], + [ + 10.0764607, + 53.230277001 + ], + [ + 10.0762997, + 53.229679501 + ], + [ + 10.0761408, + 53.228941801 + ], + [ + 10.0759036, + 53.227520901 + ], + [ + 10.0758305, + 53.227009401 + ], + [ + 10.075708, + 53.225896701 + ], + [ + 10.0756382, + 53.224954901 + ], + [ + 10.0756097, + 53.223353001 + ], + [ + 10.0756565, + 53.222211601 + ], + [ + 10.0757014, + 53.221164201 + ], + [ + 10.0758694, + 53.219851701 + ], + [ + 10.0759255, + 53.219409001 + ], + [ + 10.0760399, + 53.218698901 + ], + [ + 10.0763216, + 53.217319701 + ], + [ + 10.0765381, + 53.216426601 + ], + [ + 10.0769266, + 53.214773301 + ], + [ + 10.0771878, + 53.213654101 + ], + [ + 10.0772645, + 53.213347001 + ], + [ + 10.077399, + 53.212818501 + ], + [ + 10.0777046, + 53.211529701 + ], + [ + 10.07816, + 53.209434201 + ], + [ + 10.0783381, + 53.208417601 + ], + [ + 10.0785729, + 53.206905301 + ], + [ + 10.0787604, + 53.205387601 + ], + [ + 10.0788859, + 53.204368201 + ], + [ + 10.0791495, + 53.202343201 + ], + [ + 10.0792855, + 53.201682001 + ], + [ + 10.0794642, + 53.200863701 + ], + [ + 10.079861, + 53.199408401 + ], + [ + 10.0802772, + 53.198243701 + ], + [ + 10.0807245, + 53.197198401 + ], + [ + 10.0814246, + 53.195564301 + ], + [ + 10.0822882, + 53.193551501 + ], + [ + 10.0824394, + 53.193141601 + ], + [ + 10.082535, + 53.192867801 + ], + [ + 10.0827451, + 53.192276401 + ], + [ + 10.0829943, + 53.191445801 + ], + [ + 10.0832179, + 53.190447301 + ], + [ + 10.0833769, + 53.189469801 + ], + [ + 10.0834722, + 53.188277801 + ], + [ + 10.0834693, + 53.187713201 + ], + [ + 10.0834648, + 53.187471101 + ], + [ + 10.0834161, + 53.186732801 + ], + [ + 10.083401, + 53.186532101 + ], + [ + 10.0833401, + 53.186045601 + ], + [ + 10.0832513, + 53.185494801 + ], + [ + 10.0831955, + 53.185212801 + ], + [ + 10.0829873, + 53.184305501 + ], + [ + 10.0828168, + 53.183734801 + ], + [ + 10.0824657, + 53.182720301 + ], + [ + 10.0821157, + 53.181929601 + ], + [ + 10.0820755, + 53.181843701 + ], + [ + 10.0817788, + 53.181238601 + ], + [ + 10.0813445, + 53.180365401 + ], + [ + 10.0806066, + 53.179028001 + ], + [ + 10.0800507, + 53.178018901 + ], + [ + 10.0795001, + 53.177164001 + ], + [ + 10.0785286, + 53.175722701 + ], + [ + 10.0772214, + 53.173874701 + ], + [ + 10.0765496, + 53.173022701 + ], + [ + 10.0761823, + 53.172550301 + ], + [ + 10.0741575, + 53.170197101 + ], + [ + 10.0738825, + 53.169906401 + ], + [ + 10.0730662, + 53.169043501 + ], + [ + 10.0728416, + 53.168806001 + ], + [ + 10.0717118, + 53.167692001 + ], + [ + 10.0705161, + 53.166571401 + ], + [ + 10.0694455, + 53.165646101 + ], + [ + 10.0689632, + 53.165229301 + ], + [ + 10.0683978, + 53.164740701 + ], + [ + 10.0675564, + 53.164108201 + ], + [ + 10.0666096, + 53.163396401 + ], + [ + 10.0654114, + 53.162529401 + ], + [ + 10.0652567, + 53.162423301 + ], + [ + 10.0643307, + 53.161803901 + ], + [ + 10.0632581, + 53.161110201 + ], + [ + 10.0622052, + 53.160464301 + ], + [ + 10.060878, + 53.159703201 + ], + [ + 10.0594664, + 53.158937001 + ], + [ + 10.0582248, + 53.158314401 + ], + [ + 10.0569175, + 53.157685701 + ], + [ + 10.0555935, + 53.157103401 + ], + [ + 10.054253, + 53.156535201 + ], + [ + 10.0537228, + 53.156306201 + ], + [ + 10.050769, + 53.155162701 + ], + [ + 10.0503866, + 53.155029501 + ], + [ + 10.0494584, + 53.154703901 + ], + [ + 10.0490439, + 53.154570901 + ], + [ + 10.0470076, + 53.153938801 + ], + [ + 10.0456828, + 53.153548901 + ], + [ + 10.0443431, + 53.153172901 + ], + [ + 10.0424182, + 53.152663801 + ], + [ + 10.0410278, + 53.152301301 + ], + [ + 10.0370278, + 53.151222201 + ], + [ + 10.0275761, + 53.148773701 + ], + [ + 10.0274217, + 53.148733701 + ], + [ + 10.0257133, + 53.148283501 + ], + [ + 10.0214021, + 53.147152001 + ], + [ + 10.0194132, + 53.146595101 + ], + [ + 10.0172339, + 53.145970801 + ], + [ + 10.0160108, + 53.145597501 + ], + [ + 10.0146674, + 53.145175101 + ], + [ + 10.0138061, + 53.144873701 + ], + [ + 10.0117182, + 53.144134401 + ], + [ + 10.0100511, + 53.143452401 + ], + [ + 10.0092477, + 53.143115201 + ], + [ + 10.0084712, + 53.142761201 + ], + [ + 10.0070858, + 53.142116101 + ], + [ + 10.0057454, + 53.141442401 + ], + [ + 10.0042252, + 53.140611801 + ], + [ + 10.0030744, + 53.139947601 + ], + [ + 10.0021778, + 53.139404001 + ], + [ + 10.0018094, + 53.139180701 + ], + [ + 10.0008133, + 53.138517401 + ], + [ + 9.9992424, + 53.137403101 + ], + [ + 9.9971084, + 53.135687601 + ], + [ + 9.9964828, + 53.135155201 + ], + [ + 9.9959398, + 53.134623301 + ], + [ + 9.9952998, + 53.133989101 + ], + [ + 9.9945141, + 53.133210501 + ], + [ + 9.9935126, + 53.132087601 + ], + [ + 9.9932235, + 53.131763401 + ], + [ + 9.9921178, + 53.130394101 + ], + [ + 9.9912778, + 53.129222201 + ], + [ + 9.990354, + 53.127627801 + ], + [ + 9.9896393, + 53.126290401 + ], + [ + 9.9891501, + 53.125190001 + ], + [ + 9.9889451, + 53.124680101 + ], + [ + 9.9885495, + 53.123569101 + ], + [ + 9.9884766, + 53.123364201 + ], + [ + 9.9881745, + 53.122445901 + ], + [ + 9.9878346, + 53.121303001 + ], + [ + 9.987529, + 53.120222101 + ], + [ + 9.9872834, + 53.119323801 + ], + [ + 9.9868784, + 53.117936901 + ], + [ + 9.9865602, + 53.116802701 + ], + [ + 9.9863429, + 53.116173201 + ], + [ + 9.9861484, + 53.115630501 + ], + [ + 9.9860093, + 53.115264001 + ], + [ + 9.9858287, + 53.114817401 + ], + [ + 9.9856791, + 53.114460301 + ], + [ + 9.9855143, + 53.114075101 + ], + [ + 9.9852727, + 53.113571601 + ], + [ + 9.9850511, + 53.113121201 + ], + [ + 9.9847923, + 53.112653801 + ], + [ + 9.9846049, + 53.112342401 + ], + [ + 9.9843528, + 53.111908601 + ], + [ + 9.9835693, + 53.110673101 + ], + [ + 9.9822321, + 53.108683901 + ], + [ + 9.9816544, + 53.107815701 + ], + [ + 9.9811059, + 53.106993701 + ], + [ + 9.9806759, + 53.106360301 + ], + [ + 9.9800599, + 53.105426901 + ], + [ + 9.9792624, + 53.104244201 + ], + [ + 9.9786168, + 53.103278801 + ], + [ + 9.9779849, + 53.102330901 + ], + [ + 9.9772541, + 53.101241101 + ], + [ + 9.9768452, + 53.100639701 + ], + [ + 9.9750723, + 53.097986101 + ], + [ + 9.9745427, + 53.097199101 + ], + [ + 9.9726184, + 53.094330601 + ], + [ + 9.9716577, + 53.092890601 + ], + [ + 9.9699479, + 53.090346701 + ], + [ + 9.969629887, + 53.089878929 + ] + ] + } + }, + { + "identifier": "2025-038997--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-02-23_07-00-00-000.de4", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.359311481818004,10.036903736644685,53.32782067393136,10.047995916387805", + "point": "53.359311481818004,10.036903736644685", + "startLcPosition": "255", + "impact": { + "lower": "Thieshope", + "upper": "Horster Dreieck", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Hannover", + "title": "A7 | Horster Dreieck - Thieshope", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 53.359311481818004, + "long": 10.036903736644685 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 27.11.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "A7: Hamburg -> Hannover, zwischen 2.7 km hinter AD Horster Dreieck und 2.7 km vor AS Thieshope", + "", + "L\u00e4nge: 3.66 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A7, Horster Dreieck bis AS Thieshope, OPA Grundsinstandsetzung km 17,7 bis km 23,5, RiFa H" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.036903737, + 53.359311482 + ], + [ + 10.037052, + 53.357837501 + ], + [ + 10.0371422, + 53.356941301 + ], + [ + 10.0374493, + 53.354032601 + ], + [ + 10.0376308, + 53.352405001 + ], + [ + 10.0380322, + 53.348757101 + ], + [ + 10.0380429, + 53.348657601 + ], + [ + 10.03813, + 53.347757701 + ], + [ + 10.038367, + 53.345659701 + ], + [ + 10.0385666, + 53.343892301 + ], + [ + 10.0386042, + 53.343535601 + ], + [ + 10.0386266, + 53.343323001 + ], + [ + 10.0386747, + 53.342776001 + ], + [ + 10.0387105, + 53.342369001 + ], + [ + 10.0388516, + 53.341060601 + ], + [ + 10.0389315, + 53.340319501 + ], + [ + 10.0389981, + 53.339769301 + ], + [ + 10.0390928, + 53.339171501 + ], + [ + 10.0391737, + 53.338731101 + ], + [ + 10.0393181, + 53.338093201 + ], + [ + 10.0395794, + 53.337194901 + ], + [ + 10.0398601, + 53.336457201 + ], + [ + 10.0402528, + 53.335603501 + ], + [ + 10.0404615, + 53.335208401 + ], + [ + 10.04054, + 53.335070901 + ], + [ + 10.0406906, + 53.334813401 + ], + [ + 10.0411878, + 53.334040101 + ], + [ + 10.0414657, + 53.333647001 + ], + [ + 10.0418487, + 53.333132501 + ], + [ + 10.0421933, + 53.332719701 + ], + [ + 10.0425303, + 53.332322501 + ], + [ + 10.0429324, + 53.331894001 + ], + [ + 10.043484, + 53.331325301 + ], + [ + 10.0439932, + 53.330851501 + ], + [ + 10.0443846, + 53.330517001 + ], + [ + 10.0452116, + 53.329849901 + ], + [ + 10.0457146, + 53.329459001 + ], + [ + 10.0462099, + 53.329098601 + ], + [ + 10.0464678, + 53.328918101 + ], + [ + 10.047995916, + 53.327820674 + ] + ] + } + }, + { + "identifier": "2026-006205--vi-bs.2026-03-25_05-00-00-000.devi-zus.2026-03-02_05-00-00-000.de10", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.35960756077488,10.036873953784811,53.328773371341505,10.046669335282951", + "point": "53.35960756077488,10.036873953784811", + "startLcPosition": "255", + "impact": { + "lower": "Thieshope", + "upper": "Horster Dreieck", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Hannover", + "title": "A7 | Horster Dreieck - Thieshope", + "startTimestamp": "2026-03-25T05:00:00+01:00", + "coordinate": { + "lat": 53.35960756077488, + "long": 10.036873953784811 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.03.26 um 05:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.04.26)", + "", + "A7: Hamburg -> Hannover, zwischen 2.7 km hinter AD Horster Dreieck und 2.8 km vor AS Thieshope", + "", + "L\u00e4nge: 3.56 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.15 m", + "", + "A7, AS Thieshope bis Horster Dreieck, NOTFALLMA\u00dfNAHME - Deckensanierung km 26,1 bis km 19,8, RiFa HH" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.036873954, + 53.359607561 + ], + [ + 10.037052, + 53.357837501 + ], + [ + 10.0371422, + 53.356941301 + ], + [ + 10.0374493, + 53.354032601 + ], + [ + 10.0376308, + 53.352405001 + ], + [ + 10.0380322, + 53.348757101 + ], + [ + 10.0380429, + 53.348657601 + ], + [ + 10.03813, + 53.347757701 + ], + [ + 10.038367, + 53.345659701 + ], + [ + 10.0385666, + 53.343892301 + ], + [ + 10.0386042, + 53.343535601 + ], + [ + 10.0386266, + 53.343323001 + ], + [ + 10.0386747, + 53.342776001 + ], + [ + 10.0387105, + 53.342369001 + ], + [ + 10.0388516, + 53.341060601 + ], + [ + 10.0389315, + 53.340319501 + ], + [ + 10.0389981, + 53.339769301 + ], + [ + 10.0390928, + 53.339171501 + ], + [ + 10.0391737, + 53.338731101 + ], + [ + 10.0393181, + 53.338093201 + ], + [ + 10.0395794, + 53.337194901 + ], + [ + 10.0398601, + 53.336457201 + ], + [ + 10.0402528, + 53.335603501 + ], + [ + 10.0404615, + 53.335208401 + ], + [ + 10.04054, + 53.335070901 + ], + [ + 10.0406906, + 53.334813401 + ], + [ + 10.0411878, + 53.334040101 + ], + [ + 10.0414657, + 53.333647001 + ], + [ + 10.0418487, + 53.333132501 + ], + [ + 10.0421933, + 53.332719701 + ], + [ + 10.0425303, + 53.332322501 + ], + [ + 10.0429324, + 53.331894001 + ], + [ + 10.043484, + 53.331325301 + ], + [ + 10.0439932, + 53.330851501 + ], + [ + 10.0443846, + 53.330517001 + ], + [ + 10.0452116, + 53.329849901 + ], + [ + 10.0457146, + 53.329459001 + ], + [ + 10.0462099, + 53.329098601 + ], + [ + 10.0464678, + 53.328918101 + ], + [ + 10.046669335, + 53.328773371 + ] + ] + } + }, + { + "identifier": "2026-017418--vi-bs.2026-04-10_08-00-00-000.devi-bs.2026-04-09_08-00-00-000_012.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.44445086977673,9.918970661924513,53.45293816473793,9.922773973128455", + "point": "53.44445086977673,9.918970661924513", + "startLcPosition": "261", + "impact": { + "lower": "Hamburg-Heimfeld", + "upper": "Hamburg-S\u00fcdwest", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover -> Hamburg", + "title": "A7 | Hamburg-S\u00fcdwest - Hamburg-Heimfeld", + "coordinate": { + "lat": 53.44445086977673, + "long": 9.918970661924513 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A7: Hannover -> Hamburg, zwischen 1.1 km hinter AD Hamburg-S\u00fcdwest und 1.7 km vor AS Hamburg-Heimfeld", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A7 von Hamburg-Marmstorf (AS) nach Seevetal-Fleestedt (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.918970662, + 53.44445087 + ], + [ + 9.9189326, + 53.444670101 + ], + [ + 9.9189214, + 53.444796101 + ], + [ + 9.9188733, + 53.445419001 + ], + [ + 9.9189262, + 53.446333201 + ], + [ + 9.918994, + 53.446907501 + ], + [ + 9.9190852, + 53.447353501 + ], + [ + 9.9193363, + 53.448227601 + ], + [ + 9.9195479, + 53.448815001 + ], + [ + 9.9199449, + 53.449620001 + ], + [ + 9.9204475, + 53.450398601 + ], + [ + 9.9208702, + 53.450988301 + ], + [ + 9.9213804, + 53.451588101 + ], + [ + 9.9218018, + 53.452022501 + ], + [ + 9.922419, + 53.452616401 + ], + [ + 9.922773973, + 53.452938165 + ] + ] + } + }, + { + "identifier": "2025-009027--vi-bs.2025-03-01_05-00-00-000.devi-zus.2021-01-01_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.575888195990224,9.908388769863398,53.58786163566076,9.915822819808112", + "point": "53.575888195990224,9.908388769863398", + "startLcPosition": "268", + "impact": { + "lower": "Hamburg-Stellingen", + "upper": "Hamburg-Bahrenfeld", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Flensburg", + "title": "A7 | Hamburg-Bahrenfeld - Hamburg-Stellingen", + "startTimestamp": "2025-03-01T05:00:00+01:00", + "coordinate": { + "lat": 53.575888195990224, + "long": 9.908388769863398 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.25 um 05:00 Uhr", + "Ende: 31.05.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.10.29)", + "", + "A7: Hamburg -> Flensburg, zwischen 1.4 km hinter AS Hamburg-Bahrenfeld und 1.0 km vor AS Hamburg-Stellingen", + "", + "L\u00e4nge: 1.49 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 8.75 m", + "", + "A7, AS HH-Volkspark - AS HH-Othmarschen, achtstreifige Erweiterung und Neubau Altonatunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.90838877, + 53.575888196 + ], + [ + 9.9087894, + 53.576080701 + ], + [ + 9.9093297, + 53.576334401 + ], + [ + 9.9099094, + 53.576603301 + ], + [ + 9.9104592, + 53.576866001 + ], + [ + 9.9108342, + 53.577059301 + ], + [ + 9.9112128, + 53.577281001 + ], + [ + 9.9116279, + 53.577526701 + ], + [ + 9.9118504, + 53.577661101 + ], + [ + 9.9120777, + 53.577798401 + ], + [ + 9.9123308, + 53.577957901 + ], + [ + 9.9128114, + 53.578286101 + ], + [ + 9.9132476, + 53.578605501 + ], + [ + 9.9135163, + 53.578840901 + ], + [ + 9.9137503, + 53.579048301 + ], + [ + 9.91405, + 53.579335901 + ], + [ + 9.9142904, + 53.579630201 + ], + [ + 9.914562, + 53.579923501 + ], + [ + 9.9148609, + 53.580288301 + ], + [ + 9.9151372, + 53.580688901 + ], + [ + 9.9154094, + 53.581121301 + ], + [ + 9.9155503, + 53.581396201 + ], + [ + 9.9156402, + 53.581583801 + ], + [ + 9.9157804, + 53.581899001 + ], + [ + 9.9159075, + 53.582221601 + ], + [ + 9.9160064, + 53.582546001 + ], + [ + 9.9160643, + 53.582759801 + ], + [ + 9.9161434, + 53.583104801 + ], + [ + 9.9161912, + 53.583502001 + ], + [ + 9.9161941, + 53.583669301 + ], + [ + 9.916208, + 53.583920801 + ], + [ + 9.9162058, + 53.584432101 + ], + [ + 9.9161536, + 53.584946101 + ], + [ + 9.9160386, + 53.585575801 + ], + [ + 9.9159943, + 53.585823301 + ], + [ + 9.9159555, + 53.586119401 + ], + [ + 9.9158869, + 53.586577701 + ], + [ + 9.9158587, + 53.586809901 + ], + [ + 9.9158193, + 53.587137901 + ], + [ + 9.9158197, + 53.587658501 + ], + [ + 9.91582282, + 53.587861636 + ] + ] + } + }, + { + "identifier": "2025-054048--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-03-23_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.592612923177626,9.920550205751196,53.60017040790646,9.92287839740013", + "point": "53.592612923177626,9.920550205751196", + "startLcPosition": "269", + "impact": { + "lower": "Tunnel Stellingen", + "upper": "Hamburg-Volkspark", + "symbols": [ + "BREAKDOWN_LANE", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Flensburg", + "title": "A7 | Hamburg-Volkspark - Tunnel Stellingen", + "coordinate": { + "lat": 53.592612923177626, + "long": 9.920550205751196 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "", + "A7: Hamburg -> Flensburg, zwischen 1.2 km hinter AS Hamburg-Volkspark und 0.1 km vor Tunnel Stellingen", + "", + "L\u00e4nge: 0.89 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 von Hamburg-Volkspark bis HH Dreieck Nordwest (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.920550206, + 53.592612923 + ], + [ + 9.9206618, + 53.592679401 + ], + [ + 9.9210232, + 53.592907101 + ], + [ + 9.9212809, + 53.593077901 + ], + [ + 9.9214493, + 53.593201401 + ], + [ + 9.9217124, + 53.593395901 + ], + [ + 9.9218743, + 53.593522001 + ], + [ + 9.9220803, + 53.593696201 + ], + [ + 9.922311, + 53.593922801 + ], + [ + 9.9226227, + 53.594249901 + ], + [ + 9.9229148, + 53.594635101 + ], + [ + 9.9231427, + 53.594933401 + ], + [ + 9.923226, + 53.595105201 + ], + [ + 9.9233714, + 53.595478401 + ], + [ + 9.92352, + 53.595869701 + ], + [ + 9.9235975, + 53.596128401 + ], + [ + 9.9236297, + 53.596423001 + ], + [ + 9.9236361, + 53.596670101 + ], + [ + 9.9236241, + 53.596927101 + ], + [ + 9.923595, + 53.597331201 + ], + [ + 9.9235851, + 53.597642901 + ], + [ + 9.9235487, + 53.597814201 + ], + [ + 9.9234684, + 53.598191701 + ], + [ + 9.9232799, + 53.598942101 + ], + [ + 9.9231461, + 53.599431001 + ], + [ + 9.922878397, + 53.600170408 + ] + ] + } + }, + { + "identifier": "2025-009027--vi-bs.2025-03-01_05-00-00-000.devi-zus.2021-01-01_00-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.575925838979934,9.908143051462977,53.55491876398791,9.897158566429491", + "point": "53.575925838979934,9.908143051462977", + "startLcPosition": "269", + "impact": { + "lower": "Elbtunnel (Nordportal)", + "upper": "Hamburg-Volkspark", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Hamburg-Volkspark - Elbtunnel (Nordportal)", + "startTimestamp": "2025-03-01T05:00:00+01:00", + "coordinate": { + "lat": 53.575925838979934, + "long": 9.908143051462977 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.25 um 05:00 Uhr", + "Ende: 31.05.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.10.29)", + "", + "A7: Flensburg -> Hamburg, zwischen 0.9 km hinter AS Hamburg-Volkspark und 0.7 km vor Elbtunnel (Nordportal)", + "", + "L\u00e4nge: 2.51 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A7, AS HH-Volkspark - AS HH-Othmarschen, achtstreifige Erweiterung und Neubau Altonatunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.908143051, + 53.575925839 + ], + [ + 9.9080518, + 53.575882301 + ], + [ + 9.9074731, + 53.575570301 + ], + [ + 9.9068697, + 53.575212001 + ], + [ + 9.9063353, + 53.574846301 + ], + [ + 9.9059725, + 53.574591001 + ], + [ + 9.9057725, + 53.574427101 + ], + [ + 9.9052806, + 53.574006801 + ], + [ + 9.9048913, + 53.573634801 + ], + [ + 9.9047674, + 53.573504501 + ], + [ + 9.9044772, + 53.573187201 + ], + [ + 9.9041268, + 53.572771001 + ], + [ + 9.9038401, + 53.572408501 + ], + [ + 9.9035375, + 53.571994501 + ], + [ + 9.903127, + 53.571417601 + ], + [ + 9.9026103, + 53.570663101 + ], + [ + 9.9025749, + 53.570620001 + ], + [ + 9.9019838, + 53.569669001 + ], + [ + 9.9016865, + 53.569162501 + ], + [ + 9.9013702, + 53.568512701 + ], + [ + 9.900823, + 53.567522001 + ], + [ + 9.9003204, + 53.566493201 + ], + [ + 9.9002702, + 53.566392201 + ], + [ + 9.900016, + 53.565774301 + ], + [ + 9.8999187, + 53.565518901 + ], + [ + 9.8996374, + 53.564706501 + ], + [ + 9.8992941, + 53.563718601 + ], + [ + 9.8992728, + 53.563676501 + ], + [ + 9.8989366, + 53.562612901 + ], + [ + 9.898834, + 53.562271301 + ], + [ + 9.8987561, + 53.561973801 + ], + [ + 9.8987205, + 53.561748801 + ], + [ + 9.8985388, + 53.561091101 + ], + [ + 9.8984465, + 53.560718001 + ], + [ + 9.8984045, + 53.560505101 + ], + [ + 9.8981745, + 53.559532201 + ], + [ + 9.8979212, + 53.558270701 + ], + [ + 9.8977925, + 53.557588701 + ], + [ + 9.897761, + 53.557215901 + ], + [ + 9.8976847, + 53.556950901 + ], + [ + 9.8975856, + 53.556447901 + ], + [ + 9.8975407, + 53.556368701 + ], + [ + 9.8974403, + 53.556194101 + ], + [ + 9.8972506, + 53.555954601 + ], + [ + 9.897239, + 53.555938401 + ], + [ + 9.8972338, + 53.555918401 + ], + [ + 9.8972145, + 53.555730201 + ], + [ + 9.8971796, + 53.555453301 + ], + [ + 9.8971654, + 53.555277701 + ], + [ + 9.897158566, + 53.554918764 + ] + ] + } + }, + { + "identifier": "2025-054048--vi-bs.2026-04-22_20-00-00-000.devi-zus.2026-03-23_20-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.59414481216646,9.92252255825351,53.608839862000444,9.91807299119956", + "point": "53.59414481216646,9.92252255825351", + "startLcPosition": "269", + "impact": { + "lower": "Hamburg-Nordwest", + "upper": "Hamburg-Volkspark", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Flensburg", + "title": "A7 | Hamburg-Volkspark - Hamburg-Nordwest", + "coordinate": { + "lat": 53.59414481216646, + "long": 9.92252255825351 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A7: Hamburg -> Flensburg, zwischen 1.5 km hinter AS Hamburg-Volkspark und 0.8 km vor AD Hamburg-Nordwest", + "", + "L\u00e4nge: 1.69 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 von Hamburg-Volkspark bis HH Dreieck Nordwest (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.922522558, + 53.594144812 + ], + [ + 9.9226227, + 53.594249901 + ], + [ + 9.9229148, + 53.594635101 + ], + [ + 9.9231427, + 53.594933401 + ], + [ + 9.923226, + 53.595105201 + ], + [ + 9.9233714, + 53.595478401 + ], + [ + 9.92352, + 53.595869701 + ], + [ + 9.9235975, + 53.596128401 + ], + [ + 9.9236297, + 53.596423001 + ], + [ + 9.9236361, + 53.596670101 + ], + [ + 9.9236241, + 53.596927101 + ], + [ + 9.923595, + 53.597331201 + ], + [ + 9.9235851, + 53.597642901 + ], + [ + 9.9235487, + 53.597814201 + ], + [ + 9.9234684, + 53.598191701 + ], + [ + 9.9232799, + 53.598942101 + ], + [ + 9.9231461, + 53.599431001 + ], + [ + 9.9228763, + 53.600176201 + ], + [ + 9.9225568, + 53.600981601 + ], + [ + 9.9222274, + 53.601702901 + ], + [ + 9.9219442, + 53.602282601 + ], + [ + 9.9219168, + 53.602338601 + ], + [ + 9.9215911, + 53.602889901 + ], + [ + 9.9213349, + 53.603263301 + ], + [ + 9.9209346, + 53.603854001 + ], + [ + 9.9208564, + 53.603969401 + ], + [ + 9.9205071, + 53.604520001 + ], + [ + 9.9201027, + 53.605157601 + ], + [ + 9.9200606, + 53.605223901 + ], + [ + 9.9194993, + 53.606134201 + ], + [ + 9.9193229, + 53.606444401 + ], + [ + 9.9191795, + 53.606696501 + ], + [ + 9.9190151, + 53.607009801 + ], + [ + 9.9188658, + 53.607294301 + ], + [ + 9.9187491, + 53.607498001 + ], + [ + 9.9184832, + 53.608025901 + ], + [ + 9.9180981, + 53.608790601 + ], + [ + 9.918072991, + 53.608839862 + ] + ] + } + }, + { + "identifier": "2026-015599--vi-bs.2026-04-16_20-00-00-000.devi-zus.2026-04-16_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.60020764282454,9.92286382731305,53.60369646352979,9.921041359624857", + "point": "53.60020764282454,9.92286382731305", + "startLcPosition": "270", + "impact": { + "lower": "Hamburg-Nordwest", + "upper": "Hamburg-Stellingen", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Flensburg", + "title": "A7 | Hamburg-Stellingen - Hamburg-Nordwest", + "coordinate": { + "lat": 53.60020764282454, + "long": 9.92286382731305 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A7: Hamburg -> Flensburg, zwischen 0.5 km hinter AS Hamburg-Stellingen und 1.4 km vor AD Hamburg-Nordwest", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7 von Tunnel Stellingen (Tunnel) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.922863827, + 53.600207643 + ], + [ + 9.9225568, + 53.600981601 + ], + [ + 9.9222274, + 53.601702901 + ], + [ + 9.9219442, + 53.602282601 + ], + [ + 9.9219168, + 53.602338601 + ], + [ + 9.9215911, + 53.602889901 + ], + [ + 9.9213349, + 53.603263301 + ], + [ + 9.92104136, + 53.603696464 + ] + ] + } + }, + { + "identifier": "2025-009027--vi-bs.2025-03-01_05-00-00-000.devi-zus.2021-01-01_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.5878742749571,9.915356167070874,53.575982045541416,9.908260855343244", + "point": "53.5878742749571,9.915356167070874", + "startLcPosition": "270", + "impact": { + "lower": "Hamburg-Bahrenfeld", + "upper": "Hamburg-Stellingen", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Hamburg-Stellingen - Hamburg-Bahrenfeld", + "startTimestamp": "2025-03-01T05:00:00+01:00", + "coordinate": { + "lat": 53.5878742749571, + "long": 9.915356167070874 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.25 um 05:00 Uhr", + "Ende: 31.05.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.10.29)", + "", + "A7: Flensburg -> Hamburg, zwischen 1.0 km hinter AS Hamburg-Stellingen und 1.4 km vor AS Hamburg-Bahrenfeld", + "", + "L\u00e4nge: 1.49 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 8.75 m", + "", + "A7, AS HH-Volkspark - AS HH-Othmarschen, achtstreifige Erweiterung und Neubau Altonatunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.915356167, + 53.587874275 + ], + [ + 9.915319, + 53.587619801 + ], + [ + 9.9153007, + 53.587304801 + ], + [ + 9.9153532, + 53.586762701 + ], + [ + 9.9155083, + 53.585970201 + ], + [ + 9.9155441, + 53.585798801 + ], + [ + 9.9155857, + 53.585599301 + ], + [ + 9.9156227, + 53.585444001 + ], + [ + 9.9156681, + 53.585272801 + ], + [ + 9.915729, + 53.584992401 + ], + [ + 9.9157589, + 53.584760101 + ], + [ + 9.9157812, + 53.584574001 + ], + [ + 9.9158147, + 53.584198401 + ], + [ + 9.9158172, + 53.583959201 + ], + [ + 9.9157878, + 53.583488901 + ], + [ + 9.9157528, + 53.583245801 + ], + [ + 9.9156911, + 53.582986101 + ], + [ + 9.915617, + 53.582649901 + ], + [ + 9.9155038, + 53.582330901 + ], + [ + 9.9151885, + 53.581592701 + ], + [ + 9.9151263, + 53.581469501 + ], + [ + 9.915037, + 53.581269901 + ], + [ + 9.9148958, + 53.581018001 + ], + [ + 9.9147544, + 53.580793001 + ], + [ + 9.9146177, + 53.580597001 + ], + [ + 9.9144758, + 53.580402101 + ], + [ + 9.9142904, + 53.580155601 + ], + [ + 9.9139661, + 53.579780201 + ], + [ + 9.9136668, + 53.579413301 + ], + [ + 9.9133495, + 53.579048901 + ], + [ + 9.9130824, + 53.578773301 + ], + [ + 9.9126869, + 53.578447601 + ], + [ + 9.9120774, + 53.578013701 + ], + [ + 9.9114657, + 53.577593501 + ], + [ + 9.9110358, + 53.577334101 + ], + [ + 9.9101983, + 53.576884701 + ], + [ + 9.9091419, + 53.576402401 + ], + [ + 9.908260855, + 53.575982046 + ] + ] + } + }, + { + "identifier": "2025-054048--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-03-23_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.600122780037715,9.922522579767481,53.592762958303176,9.920297733377623", + "point": "53.600122780037715,9.922522579767481", + "startLcPosition": "271", + "impact": { + "lower": "Hamburg-Volkspark", + "upper": "Tunnel Stellingen", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Tunnel Stellingen - Hamburg-Volkspark", + "coordinate": { + "lat": 53.600122780037715, + "long": 9.922522579767481 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "", + "A7: Flensburg -> Hamburg, zwischen 0.1 km hinter Tunnel Stellingen und 1.3 km vor AS Hamburg-Volkspark", + "", + "L\u00e4nge: 0.89 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A7 von Hamburg-Volkspark bis HH Dreieck Nordwest (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.92252258, + 53.60012278 + ], + [ + 9.9226466, + 53.599810601 + ], + [ + 9.9228126, + 53.599194201 + ], + [ + 9.9230813, + 53.598302201 + ], + [ + 9.9231881, + 53.597793201 + ], + [ + 9.9232101, + 53.597688101 + ], + [ + 9.9232238, + 53.597374701 + ], + [ + 9.9232451, + 53.597019301 + ], + [ + 9.923256, + 53.596819901 + ], + [ + 9.9232537, + 53.596611301 + ], + [ + 9.9232348, + 53.596410201 + ], + [ + 9.9231839, + 53.596106801 + ], + [ + 9.9231313, + 53.595895901 + ], + [ + 9.9230617, + 53.595715901 + ], + [ + 9.9230042, + 53.595577001 + ], + [ + 9.9228837, + 53.595285801 + ], + [ + 9.9227878, + 53.595118601 + ], + [ + 9.9226809, + 53.594932401 + ], + [ + 9.922642, + 53.594864601 + ], + [ + 9.9225522, + 53.594708101 + ], + [ + 9.9223295, + 53.594338201 + ], + [ + 9.9221036, + 53.594055901 + ], + [ + 9.9218555, + 53.593819701 + ], + [ + 9.9216696, + 53.593675501 + ], + [ + 9.9216223, + 53.593638801 + ], + [ + 9.9215359, + 53.593571801 + ], + [ + 9.9213194, + 53.593396301 + ], + [ + 9.9208981, + 53.593122501 + ], + [ + 9.920458, + 53.592858401 + ], + [ + 9.920297733, + 53.592762958 + ] + ] + } + }, + { + "identifier": "2026-015598--vi-bs.2026-04-15_20-00-00-000.devi-zus.2026-04-15_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.60266256336401,9.921725408795552,53.60683958650588,9.919104418059202", + "point": "53.60266256336401,9.921725408795552", + "startLcPosition": "271", + "impact": { + "lower": "Hamburg-Nordwest", + "upper": "Tunnel Stellingen", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Flensburg", + "title": "A7 | Tunnel Stellingen - Hamburg-Nordwest", + "coordinate": { + "lat": 53.60266256336401, + "long": 9.921725408795552 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A7: Hamburg -> Flensburg, zwischen 0.2 km hinter Tunnel Stellingen und 1.0 km vor AD Hamburg-Nordwest", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 von Hamburg-Nordwest (AD) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.921725409, + 53.602662563 + ], + [ + 9.9215911, + 53.602889901 + ], + [ + 9.9213349, + 53.603263301 + ], + [ + 9.9209346, + 53.603854001 + ], + [ + 9.9208564, + 53.603969401 + ], + [ + 9.9205071, + 53.604520001 + ], + [ + 9.9201027, + 53.605157601 + ], + [ + 9.9200606, + 53.605223901 + ], + [ + 9.9194993, + 53.606134201 + ], + [ + 9.9193229, + 53.606444401 + ], + [ + 9.9191795, + 53.606696501 + ], + [ + 9.919104418, + 53.606839587 + ] + ] + } + }, + { + "identifier": "2025-054048--vi-bs.2026-04-22_20-00-00-000.devi-zus.2026-03-23_20-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.60877656277475,9.917706213578908,53.59423039166934,9.922243229286934", + "point": "53.60877656277475,9.917706213578908", + "startLcPosition": "272", + "impact": { + "lower": "Hamburg-Volkspark", + "upper": "Hamburg-Nordwest", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Hamburg-Nordwest - Hamburg-Volkspark", + "coordinate": { + "lat": 53.60877656277475, + "long": 9.917706213578908 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A7: Flensburg -> Hamburg, zwischen 0.8 km hinter AD Hamburg-Nordwest und 1.5 km vor AS Hamburg-Volkspark", + "", + "L\u00e4nge: 1.69 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A7 von Hamburg-Volkspark bis HH Dreieck Nordwest (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.917706214, + 53.608776563 + ], + [ + 9.9177108, + 53.608766501 + ], + [ + 9.9178025, + 53.608533101 + ], + [ + 9.9179233, + 53.608279701 + ], + [ + 9.9183077, + 53.607473401 + ], + [ + 9.918491, + 53.607080801 + ], + [ + 9.9185211, + 53.607027701 + ], + [ + 9.9186741, + 53.606757101 + ], + [ + 9.9188895, + 53.606383401 + ], + [ + 9.9189071, + 53.606354301 + ], + [ + 9.9191281, + 53.605988301 + ], + [ + 9.9193911, + 53.605590901 + ], + [ + 9.9198016, + 53.604970401 + ], + [ + 9.920518, + 53.603889201 + ], + [ + 9.920551, + 53.603837701 + ], + [ + 9.9206288, + 53.603718901 + ], + [ + 9.9207007, + 53.603609101 + ], + [ + 9.9212879, + 53.602701601 + ], + [ + 9.9215553, + 53.602209501 + ], + [ + 9.9215653, + 53.602191101 + ], + [ + 9.9218279, + 53.601714801 + ], + [ + 9.9220096, + 53.601338901 + ], + [ + 9.9221801, + 53.600968101 + ], + [ + 9.92231, + 53.600632701 + ], + [ + 9.9224834, + 53.600221401 + ], + [ + 9.9226466, + 53.599810601 + ], + [ + 9.9228126, + 53.599194201 + ], + [ + 9.9230813, + 53.598302201 + ], + [ + 9.9231881, + 53.597793201 + ], + [ + 9.9232101, + 53.597688101 + ], + [ + 9.9232238, + 53.597374701 + ], + [ + 9.9232451, + 53.597019301 + ], + [ + 9.923256, + 53.596819901 + ], + [ + 9.9232537, + 53.596611301 + ], + [ + 9.9232348, + 53.596410201 + ], + [ + 9.9231839, + 53.596106801 + ], + [ + 9.9231313, + 53.595895901 + ], + [ + 9.9230617, + 53.595715901 + ], + [ + 9.9230042, + 53.595577001 + ], + [ + 9.9228837, + 53.595285801 + ], + [ + 9.9227878, + 53.595118601 + ], + [ + 9.9226809, + 53.594932401 + ], + [ + 9.922642, + 53.594864601 + ], + [ + 9.9225522, + 53.594708101 + ], + [ + 9.9223295, + 53.594338201 + ], + [ + 9.922243229, + 53.594230392 + ] + ] + } + }, + { + "identifier": "2026-015598--vi-bs.2026-04-15_20-00-00-000.devi-zus.2026-04-15_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.606757573887606,9.918673832580739,53.60258685639752,9.9213502510884", + "point": "53.606757573887606,9.918673832580739", + "startLcPosition": "272", + "impact": { + "lower": "Tunnel Stellingen", + "upper": "Hamburg-Nordwest", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Hamburg-Nordwest - Tunnel Stellingen", + "coordinate": { + "lat": 53.606757573887606, + "long": 9.918673832580739 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A7: Flensburg -> Hamburg, zwischen 1.0 km hinter AD Hamburg-Nordwest und 0.2 km vor Tunnel Stellingen", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 von Hamburg-Nordwest (AD) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.918673833, + 53.606757574 + ], + [ + 9.9186741, + 53.606757101 + ], + [ + 9.9188895, + 53.606383401 + ], + [ + 9.9189071, + 53.606354301 + ], + [ + 9.9191281, + 53.605988301 + ], + [ + 9.9193911, + 53.605590901 + ], + [ + 9.9198016, + 53.604970401 + ], + [ + 9.920518, + 53.603889201 + ], + [ + 9.920551, + 53.603837701 + ], + [ + 9.9206288, + 53.603718901 + ], + [ + 9.9207007, + 53.603609101 + ], + [ + 9.9212879, + 53.602701601 + ], + [ + 9.921350251, + 53.602586856 + ] + ] + } + }, + { + "identifier": "2026-015599--vi-bs.2026-04-16_20-00-00-000.devi-zus.2026-04-16_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.603615198657074,9.920696707047375,53.600157761928585,9.92250868230247", + "point": "53.603615198657074,9.920696707047375", + "startLcPosition": "272", + "impact": { + "lower": "Hamburg-Stellingen", + "upper": "Hamburg-Nordwest", + "symbols": [ + "CLOSED", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Hamburg-Nordwest - Hamburg-Stellingen", + "coordinate": { + "lat": 53.603615198657074, + "long": 9.920696707047375 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A7: Flensburg -> Hamburg, zwischen 1.4 km hinter AD Hamburg-Nordwest und 0.5 km vor AS Hamburg-Stellingen", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 von Tunnel Stellingen (Tunnel) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.920696707, + 53.603615199 + ], + [ + 9.9207007, + 53.603609101 + ], + [ + 9.9212879, + 53.602701601 + ], + [ + 9.9215553, + 53.602209501 + ], + [ + 9.9215653, + 53.602191101 + ], + [ + 9.9218279, + 53.601714801 + ], + [ + 9.9220096, + 53.601338901 + ], + [ + 9.9221801, + 53.600968101 + ], + [ + 9.92231, + 53.600632701 + ], + [ + 9.9224834, + 53.600221401 + ], + [ + 9.922508682, + 53.600157762 + ] + ] + } + }, + { + "identifier": "2026-015592--vi-bs.2026-04-13_21-00-00-000.devi-zus.2026-04-13_21-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.62095634406821,9.914773418433477,53.62657700611419,9.920757053296583", + "point": "53.62095634406821,9.914773418433477", + "startLcPosition": "272", + "impact": { + "lower": "Tunnel Schnelsen", + "upper": "Hamburg-Nordwest", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Flensburg", + "title": "A7 | Hamburg-Nordwest - Tunnel Schnelsen", + "coordinate": { + "lat": 53.62095634406821, + "long": 9.914773418433477 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 21:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A7: Hamburg -> Flensburg, zwischen 0.7 km hinter AD Hamburg-Nordwest und 0.4 km vor Tunnel Schnelsen", + "", + "L\u00e4nge: 0.74 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 von Hamburg-Nordwest (AD) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.914773418, + 53.620956344 + ], + [ + 9.9148883, + 53.621058001 + ], + [ + 9.9156402, + 53.621665401 + ], + [ + 9.9159054, + 53.621870201 + ], + [ + 9.9161613, + 53.622062101 + ], + [ + 9.9174264, + 53.623049601 + ], + [ + 9.9179242, + 53.623468101 + ], + [ + 9.9188203, + 53.624290801 + ], + [ + 9.9191448, + 53.624605601 + ], + [ + 9.9194753, + 53.624959101 + ], + [ + 9.9196654, + 53.625180501 + ], + [ + 9.9199127, + 53.625459801 + ], + [ + 9.9201659, + 53.625763501 + ], + [ + 9.9202838, + 53.625909501 + ], + [ + 9.920757053, + 53.626577006 + ] + ] + } + }, + { + "identifier": "2026-015592--vi-bs.2026-04-13_21-00-00-000.devi-zus.2026-04-13_21-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.626642047567806,9.920498130452511,53.62104632989148,9.914542485276431", + "point": "53.626642047567806,9.920498130452511", + "startLcPosition": "273", + "impact": { + "lower": "Hamburg-Nordwest", + "upper": "Tunnel Schnelsen", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Tunnel Schnelsen - Hamburg-Nordwest", + "coordinate": { + "lat": 53.626642047567806, + "long": 9.920498130452511 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 21:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A7: Flensburg -> Hamburg, zwischen 0.4 km hinter Tunnel Schnelsen und 0.7 km vor AD Hamburg-Nordwest", + "", + "L\u00e4nge: 0.74 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 von Hamburg-Nordwest (AD) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.92049813, + 53.626642048 + ], + [ + 9.9202399, + 53.626279801 + ], + [ + 9.9199899, + 53.625941101 + ], + [ + 9.9196502, + 53.625528601 + ], + [ + 9.9191573, + 53.624964901 + ], + [ + 9.9185748, + 53.624380401 + ], + [ + 9.9185454, + 53.624350901 + ], + [ + 9.9177474, + 53.623613401 + ], + [ + 9.9171929, + 53.623147801 + ], + [ + 9.9169232, + 53.622932301 + ], + [ + 9.9159332, + 53.622168401 + ], + [ + 9.9156976, + 53.621986701 + ], + [ + 9.9146471, + 53.621143201 + ], + [ + 9.914542485, + 53.62104633 + ] + ] + } + }, + { + "identifier": "2026-015594--vi-bs.2026-04-14_21-00-00-000.devi-zus.2026-04-14_21-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.63929116075478,9.926653764587085,53.6430484813859,9.929321187781587", + "point": "53.63929116075478,9.926653764587085", + "startLcPosition": "274", + "impact": { + "lower": "Hamburg-Schnelsen-Nord", + "upper": "Hamburg-Schnelsen", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Flensburg", + "title": "A7 | Hamburg-Schnelsen - Hamburg-Schnelsen-Nord", + "coordinate": { + "lat": 53.63929116075478, + "long": 9.926653764587085 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 21:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A7: Hamburg -> Flensburg, zwischen 0.6 km hinter AS Hamburg-Schnelsen und 0.3 km vor AS Hamburg-Schnelsen-Nord", + "", + "L\u00e4nge: 0.45 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 von Hamburg-Schnelsen-Nord (AS) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.926653765, + 53.639291161 + ], + [ + 9.9267851, + 53.639464501 + ], + [ + 9.927078, + 53.639804801 + ], + [ + 9.9272491, + 53.640018901 + ], + [ + 9.9274248, + 53.640248801 + ], + [ + 9.9276591, + 53.640564501 + ], + [ + 9.9279892, + 53.640992501 + ], + [ + 9.9282289, + 53.641329801 + ], + [ + 9.928432, + 53.641615501 + ], + [ + 9.9286353, + 53.641910901 + ], + [ + 9.9288123, + 53.642178901 + ], + [ + 9.9290369, + 53.642540001 + ], + [ + 9.9291623, + 53.642756801 + ], + [ + 9.929321188, + 53.643048481 + ] + ] + } + }, + { + "identifier": "2026-015594--vi-bs.2026-04-14_21-00-00-000.devi-zus.2026-04-14_21-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.64310190531412,9.929045081315955,53.63935473308011,9.926414464353355", + "point": "53.64310190531412,9.929045081315955", + "startLcPosition": "275", + "impact": { + "lower": "Hamburg-Schnelsen", + "upper": "Hamburg-Schnelsen-Nord", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Hamburg-Schnelsen-Nord - Hamburg-Schnelsen", + "coordinate": { + "lat": 53.64310190531412, + "long": 9.929045081315955 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 21:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A7: Flensburg -> Hamburg, zwischen 0.3 km hinter AS Hamburg-Schnelsen-Nord und 0.6 km vor AS Hamburg-Schnelsen", + "", + "L\u00e4nge: 0.45 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7 von Hamburg-Schnelsen-Nord (AS) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.929045081, + 53.643101905 + ], + [ + 9.9288354, + 53.642721901 + ], + [ + 9.9285789, + 53.642295301 + ], + [ + 9.9284455, + 53.642093601 + ], + [ + 9.9282852, + 53.641857101 + ], + [ + 9.9282087, + 53.641742401 + ], + [ + 9.9279639, + 53.641395001 + ], + [ + 9.9277392, + 53.641087801 + ], + [ + 9.9271434, + 53.640305001 + ], + [ + 9.9269742, + 53.640087301 + ], + [ + 9.9268088, + 53.639874501 + ], + [ + 9.9266508, + 53.639671201 + ], + [ + 9.926414464, + 53.639354733 + ] + ] + } + }, + { + "identifier": "2025-002110--vi-bs.2025-01-27_00-00-00-000.devi-zus.2025-01-27_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.32687663253436,9.73277005703265,54.304284128077626,9.755265562748011", + "point": "54.32687663253436,9.73277005703265", + "startLcPosition": "301", + "impact": { + "lower": "Ohe-Nord", + "upper": "Nord-Ostsee-Kanal", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Nord-Ostsee-Kanal - Ohe-Nord", + "startTimestamp": "2025-01-27T00:00:00+01:00", + "coordinate": { + "lat": 54.32687663253436, + "long": 9.73277005703265 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A7: Flensburg -> Hamburg, zwischen 0.5 km hinter Nord-Ostsee-Kanal und 2.5 km vor Ohe-Nord", + "", + "L\u00e4nge: 2.92 km | Maximale Durchfahrtsbreite: 5.6 m", + "", + "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.732770057, + 54.326876633 + ], + [ + 9.7328469, + 54.326815601 + ], + [ + 9.7338312, + 54.326021901 + ], + [ + 9.7344333, + 54.325537701 + ], + [ + 9.7352265, + 54.324898501 + ], + [ + 9.7359662, + 54.324290901 + ], + [ + 9.7369975, + 54.323421601 + ], + [ + 9.7378712, + 54.322689701 + ], + [ + 9.7381871, + 54.322417901 + ], + [ + 9.7390725, + 54.321640801 + ], + [ + 9.7401931, + 54.320637101 + ], + [ + 9.7413136, + 54.319633301 + ], + [ + 9.7424521, + 54.318553701 + ], + [ + 9.7430269, + 54.317999101 + ], + [ + 9.7441111, + 54.316953101 + ], + [ + 9.7444995, + 54.316578401 + ], + [ + 9.7462764, + 54.314782801 + ], + [ + 9.7469352, + 54.314099701 + ], + [ + 9.7475117, + 54.313480101 + ], + [ + 9.7480082, + 54.312953201 + ], + [ + 9.7480716, + 54.312885901 + ], + [ + 9.7486853, + 54.312219201 + ], + [ + 9.7496114, + 54.311198301 + ], + [ + 9.7500489, + 54.310704201 + ], + [ + 9.7505031, + 54.310169501 + ], + [ + 9.7509268, + 54.309687901 + ], + [ + 9.7513448, + 54.309195201 + ], + [ + 9.7515919, + 54.308900101 + ], + [ + 9.7525863, + 54.307712401 + ], + [ + 9.754186, + 54.305720901 + ], + [ + 9.7546272, + 54.305136501 + ], + [ + 9.7547851, + 54.304935001 + ], + [ + 9.7548737, + 54.304821901 + ], + [ + 9.755265563, + 54.304284128 + ] + ] + } + }, + { + "identifier": "2025-002110--vi-bs.2025-01-27_00-00-00-000.devi-zus.2025-01-27_00-00-00-000.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.34526261185832,9.703344151355031,54.34103604037798,9.711108322542877", + "point": "54.34526261185832,9.703344151355031", + "startLcPosition": "302", + "impact": { + "lower": "Nord-Ostsee-Kanal", + "upper": "Rendsburg/B\u00fcdelsdorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Rendsburg/B\u00fcdelsdorf - Nord-Ostsee-Kanal", + "startTimestamp": "2025-01-27T00:00:00+01:00", + "coordinate": { + "lat": 54.34526261185832, + "long": 9.703344151355031 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A7: Flensburg -> Hamburg, zwischen 0.3 km hinter AS Rendsburg/B\u00fcdelsdorf und 1.6 km vor Nord-Ostsee-Kanal", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 5.6 m", + "", + "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.703344151, + 54.345262612 + ], + [ + 9.7042058, + 54.344794501 + ], + [ + 9.7049922, + 54.344380401 + ], + [ + 9.7054726, + 54.344127501 + ], + [ + 9.7060673, + 54.343811901 + ], + [ + 9.7061414, + 54.343771701 + ], + [ + 9.7078181, + 54.342853801 + ], + [ + 9.7080016, + 54.342753901 + ], + [ + 9.7100656, + 54.341616201 + ], + [ + 9.710763, + 54.341228201 + ], + [ + 9.711108323, + 54.34103604 + ] + ] + } + }, + { + "identifier": "2025-002110--vi-bs.2025-01-27_00-00-00-000.devi-zus.2025-01-27_00-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.34035035876279,9.712326160309564,54.338432704753785,9.715677434396545", + "point": "54.34035035876279,9.712326160309564", + "startLcPosition": "302", + "impact": { + "lower": "Nord-Ostsee-Kanal", + "upper": "Rendsburg/B\u00fcdelsdorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Rendsburg/B\u00fcdelsdorf - Nord-Ostsee-Kanal", + "startTimestamp": "2025-01-27T00:00:00+01:00", + "coordinate": { + "lat": 54.34035035876279, + "long": 9.712326160309564 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A7: Flensburg -> Hamburg, zwischen 1.1 km hinter AS Rendsburg/B\u00fcdelsdorf und 1.2 km vor Nord-Ostsee-Kanal", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 5.6 m", + "", + "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.71232616, + 54.340350359 + ], + [ + 9.713984, + 54.339416701 + ], + [ + 9.7142722, + 54.339254501 + ], + [ + 9.715212, + 54.338695101 + ], + [ + 9.715677434, + 54.338432705 + ] + ] + } + }, + { + "identifier": "2025-002110--vi-bs.2025-01-27_00-00-00-000.devi-zus.2025-01-27_00-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.33770362625581,9.716950591414617,54.32793433338103,9.73144034323729", + "point": "54.33770362625581,9.716950591414617", + "startLcPosition": "302", + "impact": { + "lower": "Rade", + "upper": "Rendsburg/B\u00fcdelsdorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Rendsburg/B\u00fcdelsdorf - Rade", + "startTimestamp": "2025-01-27T00:00:00+01:00", + "coordinate": { + "lat": 54.33770362625581, + "long": 9.716950591414617 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A7: Flensburg -> Hamburg, zwischen 1.5 km hinter AS Rendsburg/B\u00fcdelsdorf und 0.3 km vor Rade", + "", + "L\u00e4nge: 1.44 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.716950591, + 54.337703626 + ], + [ + 9.7176671, + 54.337287101 + ], + [ + 9.7185709, + 54.336740801 + ], + [ + 9.7202673, + 54.335689401 + ], + [ + 9.7212885, + 54.335034901 + ], + [ + 9.721525, + 54.334881701 + ], + [ + 9.7223945, + 54.334318501 + ], + [ + 9.7238315, + 54.333378201 + ], + [ + 9.7259603, + 54.331862401 + ], + [ + 9.7265542, + 54.331454501 + ], + [ + 9.7273156, + 54.330926801 + ], + [ + 9.7283843, + 54.330163101 + ], + [ + 9.7306087, + 54.328551301 + ], + [ + 9.7314071, + 54.327961901 + ], + [ + 9.731440343, + 54.327934333 + ] + ] + } + }, + { + "identifier": "2026-014248--vi-bs.2026-04-07_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "54.805644248967454,9.328237472824188,54.80313343388871,9.32950322328991", + "point": "54.805644248967454,9.328237472824188", + "startLcPosition": "319", + "impact": { + "lower": "Flensburg/Harrislee", + "upper": "Ellund", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Flensburg -> Hamburg", + "title": "A7 | Ellund - Flensburg/Harrislee", + "coordinate": { + "lat": 54.805644248967454, + "long": 9.328237472824188 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 08:00 bis 16:30 Uhr.", + "", + "A7: Flensburg -> Hamburg, zwischen Ellund und 3.6 km vor AS Flensburg/Harrislee", + "", + "L\u00e4nge: 0.29 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7 Grenz\u00fcbergang Ellund bis AS Harrislee Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.328237473, + 54.805644249 + ], + [ + 9.329503223, + 54.803133434 + ] + ] + } + }, + { + "identifier": "2025-009146--vi-bs.2025-09-29_05-00-00-000.devi-zus.2020-11-29_05-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.53150631969854,9.933903543165812,53.49883101586423,9.913330835879506", + "point": "53.53150631969854,9.933903543165812", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 159.50 --> km 163.55", + "title": "A7, Bereich HH-Waltershof, achtstreifige Erweiterung der Hochstra\u00dfe Elbmarsch", + "startTimestamp": "2025-09-29T05:00:00+02:00", + "coordinate": { + "lat": 53.53150631969854, + "long": 9.933903543165812 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.09.25 um 05:00 Uhr", + "Ende: 10.05.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.09.26)", + "", + "A7: km 159.50 --> km 163.55", + "", + "L\u00e4nge: 4.06 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A7, Bereich HH-Waltershof, achtstreifige Erweiterung der Hochstra\u00dfe Elbmarsch" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.933903543, + 53.53150632 + ], + [ + 9.9339651, + 53.531225201 + ], + [ + 9.9339834, + 53.530701101 + ], + [ + 9.9339269, + 53.530200601 + ], + [ + 9.933813, + 53.529650301 + ], + [ + 9.9335662, + 53.528998601 + ], + [ + 9.9332349, + 53.528369801 + ], + [ + 9.9326514, + 53.527503701 + ], + [ + 9.9320125, + 53.526703501 + ], + [ + 9.9310291, + 53.525698501 + ], + [ + 9.9296645, + 53.524504901 + ], + [ + 9.9279377, + 53.523131301 + ], + [ + 9.9261447, + 53.521767101 + ], + [ + 9.9255484, + 53.521279101 + ], + [ + 9.9242896, + 53.520296701 + ], + [ + 9.9233954, + 53.519613501 + ], + [ + 9.9228544, + 53.519186701 + ], + [ + 9.9219845, + 53.518513001 + ], + [ + 9.9212354, + 53.517925501 + ], + [ + 9.9204817, + 53.517363901 + ], + [ + 9.9197689, + 53.516791701 + ], + [ + 9.9189728, + 53.516185001 + ], + [ + 9.9182672, + 53.515625601 + ], + [ + 9.9176239, + 53.515081201 + ], + [ + 9.9170525, + 53.514583601 + ], + [ + 9.9164461, + 53.514045501 + ], + [ + 9.9159924, + 53.513616501 + ], + [ + 9.9155303, + 53.513142001 + ], + [ + 9.9150582, + 53.512641701 + ], + [ + 9.9147613, + 53.512307001 + ], + [ + 9.9144797, + 53.512007601 + ], + [ + 9.9141559, + 53.511580201 + ], + [ + 9.9138735, + 53.511179801 + ], + [ + 9.913605, + 53.510777401 + ], + [ + 9.9133712, + 53.510387701 + ], + [ + 9.9131229, + 53.509941501 + ], + [ + 9.9129067, + 53.509510901 + ], + [ + 9.9127267, + 53.509070501 + ], + [ + 9.9125941, + 53.508691101 + ], + [ + 9.9124742, + 53.508229601 + ], + [ + 9.9123906, + 53.507873201 + ], + [ + 9.9123125, + 53.507524601 + ], + [ + 9.9122539, + 53.507038901 + ], + [ + 9.9122244, + 53.506662501 + ], + [ + 9.9122113, + 53.506227201 + ], + [ + 9.9121991, + 53.505744101 + ], + [ + 9.9122217, + 53.505359401 + ], + [ + 9.9122604, + 53.504990801 + ], + [ + 9.9123002, + 53.504597001 + ], + [ + 9.9123508, + 53.504177101 + ], + [ + 9.9124328, + 53.503642001 + ], + [ + 9.9125106, + 53.503153801 + ], + [ + 9.9126447, + 53.502472401 + ], + [ + 9.9128252, + 53.501597001 + ], + [ + 9.9129313, + 53.501039301 + ], + [ + 9.9130639, + 53.500297901 + ], + [ + 9.9131926, + 53.499647201 + ], + [ + 9.9133271, + 53.498970201 + ], + [ + 9.913330836, + 53.498831016 + ] + ] + } + }, + { + "identifier": "2025-002110--vi-bs.2025-01-27_00-00-00-000.devi-zus.2025-01-27_00-00-00-000.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.34111875910656,9.711243088189565,54.34534457926093,9.703474351337782", + "point": "54.34111875910656,9.711243088189565", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Rendsburg/B\u00fcdelsdorf (aus Richtung Nord-Ostsee-Kanal)", + "title": "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau", + "startTimestamp": "2025-01-27T00:00:00+01:00", + "coordinate": { + "lat": 54.34111875910656, + "long": 9.711243088189565 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "Auffahrt auf die A7: AS Rendsburg/B\u00fcdelsdorf (aus Richtung Nord-Ostsee-Kanal)", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 5.25 m", + "", + "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.711243088, + 54.341118759 + ], + [ + 9.7112288, + 54.341126701 + ], + [ + 9.7109131, + 54.341303401 + ], + [ + 9.7101493, + 54.341730801 + ], + [ + 9.7081372, + 54.342836801 + ], + [ + 9.7077498, + 54.343044001 + ], + [ + 9.706277, + 54.343856801 + ], + [ + 9.7062029, + 54.343897001 + ], + [ + 9.7056973, + 54.344158601 + ], + [ + 9.7051325, + 54.344457601 + ], + [ + 9.7043224, + 54.344886401 + ], + [ + 9.703474351, + 54.345344579 + ] + ] + } + }, + { + "identifier": "2025-002110--vi-bs.2025-01-27_00-00-00-000.devi-zus.2025-01-27_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.30432720606499,9.755440243659015,54.32694383039122,9.732925608180194", + "point": "54.30432720606499,9.755440243659015", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rade (aus Richtung Rendsburg)", + "title": "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau", + "startTimestamp": "2025-01-27T00:00:00+01:00", + "coordinate": { + "lat": 54.30432720606499, + "long": 9.755440243659015 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "Abfahrt von der A7: Rade (aus Richtung Rendsburg)", + "", + "L\u00e4nge: 2.92 km | Maximale Durchfahrtsbreite: 5.6 m", + "", + "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.755440244, + 54.304327206 + ], + [ + 9.7550503, + 54.304872701 + ], + [ + 9.7549696, + 54.304973501 + ], + [ + 9.754803, + 54.305181701 + ], + [ + 9.7543618, + 54.305766001 + ], + [ + 9.7527456, + 54.307757001 + ], + [ + 9.7517719, + 54.308933801 + ], + [ + 9.7514076, + 54.309374001 + ], + [ + 9.750667, + 54.310234101 + ], + [ + 9.7501756, + 54.310797801 + ], + [ + 9.7497862, + 54.311241701 + ], + [ + 9.7488531, + 54.312280601 + ], + [ + 9.7484066, + 54.312773901 + ], + [ + 9.7481991, + 54.312995801 + ], + [ + 9.7477409, + 54.313485701 + ], + [ + 9.7471402, + 54.314129901 + ], + [ + 9.7464326, + 54.314864401 + ], + [ + 9.744765, + 54.316548101 + ], + [ + 9.7445203, + 54.316795101 + ], + [ + 9.7443, + 54.317007101 + ], + [ + 9.7429609, + 54.318295401 + ], + [ + 9.7426098, + 54.318633201 + ], + [ + 9.741476, + 54.319691101 + ], + [ + 9.7403604, + 54.320695701 + ], + [ + 9.7392447, + 54.321700201 + ], + [ + 9.7383204, + 54.322506701 + ], + [ + 9.7380571, + 54.322743201 + ], + [ + 9.7379562, + 54.322833901 + ], + [ + 9.7373931, + 54.323303101 + ], + [ + 9.7369395, + 54.323681001 + ], + [ + 9.7361478, + 54.324346501 + ], + [ + 9.7353835, + 54.324965701 + ], + [ + 9.7345596, + 54.325633701 + ], + [ + 9.7339697, + 54.326102101 + ], + [ + 9.7330623, + 54.326836101 + ], + [ + 9.732925608, + 54.32694383 + ] + ] + } + }, + { + "identifier": "2025-002110--vi-bs.2025-01-27_00-00-00-000.devi-zus.2025-01-27_00-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.33850974645677,9.715804751944738,54.34043738510842,9.712468923754933", + "point": "54.33850974645677,9.715804751944738", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Rendsburg/B\u00fcdelsdorf (aus Richtung Nord-Ostsee-Kanal)", + "title": "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau", + "startTimestamp": "2025-01-27T00:00:00+01:00", + "coordinate": { + "lat": 54.33850974645677, + "long": 9.715804751944738 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "Auffahrt auf die A7: AS Rendsburg/B\u00fcdelsdorf (aus Richtung Nord-Ostsee-Kanal)", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.715804752, + 54.338509746 + ], + [ + 9.7153643, + 54.338758501 + ], + [ + 9.7143324, + 54.339391101 + ], + [ + 9.71405, + 54.339558501 + ], + [ + 9.712468924, + 54.340437385 + ] + ] + } + }, + { + "identifier": "2026-006205--vi-bs.2026-03-23_18-00-00-000.devi-zus.2026-03-02_05-00-00-000.de14", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.37731840823891,10.019088029856064,53.375862548928374,10.020233368147153", + "point": "53.37731840823891,10.019088029856064", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Horster Dreieck (aus Richtung Maschener Kreuz)", + "title": "A7, AS Thieshope bis Horster Dreieck, NOTFALLMA\u00dfNAHME - Deckensanierung km 26,1 bis km 19,8, RiFa HH", + "startTimestamp": "2026-03-23T18:00:00+01:00", + "coordinate": { + "lat": 53.37731840823891, + "long": 10.019088029856064 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 18:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.04.26)", + "", + "Abfahrt von der A1: AD Horster Dreieck (aus Richtung Maschener Kreuz)", + "", + "L\u00e4nge: 0.18 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7, AS Thieshope bis Horster Dreieck, NOTFALLMA\u00dfNAHME - Deckensanierung km 26,1 bis km 19,8, RiFa HH" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.01908803, + 53.377318408 + ], + [ + 10.020233368, + 53.375862549 + ] + ] + } + }, + { + "identifier": "2026-006205--vi-bs.2026-03-23_18-00-00-000.devi-zus.2026-03-02_05-00-00-000.de12", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.37591202342606,10.020410087734328,53.37736779341945,10.019263415678614", + "point": "53.37591202342606,10.020410087734328", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Maschener Kreuz (aus Richtung Horster Dreieck)", + "title": "A7, AS Thieshope bis Horster Dreieck, NOTFALLMA\u00dfNAHME - Deckensanierung km 26,1 bis km 19,8, RiFa HH", + "startTimestamp": "2026-03-23T18:00:00+01:00", + "coordinate": { + "lat": 53.37591202342606, + "long": 10.020410087734328 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 18:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.04.26)", + "", + "Auffahrt auf die A1: AK Maschener Kreuz (aus Richtung Horster Dreieck)", + "", + "L\u00e4nge: 0.18 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7, AS Thieshope bis Horster Dreieck, NOTFALLMA\u00dfNAHME - Deckensanierung km 26,1 bis km 19,8, RiFa HH" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.020410088, + 53.375912023 + ], + [ + 10.0203439, + 53.375997001 + ], + [ + 10.019263416, + 53.377367793 + ] + ] + } + }, + { + "identifier": "2025-002110--vi-bs.2025-01-27_00-00-00-000.devi-zus.2025-01-27_00-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.32799665719918,9.731591954307032,54.33777928583219,9.717079379924465", + "point": "54.32799665719918,9.731591954307032", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Rendsburg/B\u00fcdelsdorf (aus Richtung Nord-Ostsee-Kanal)", + "title": "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau", + "startTimestamp": "2025-01-27T00:00:00+01:00", + "coordinate": { + "lat": 54.32799665719918, + "long": 9.731591954307032 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "Auffahrt auf die A7: AS Rendsburg/B\u00fcdelsdorf (aus Richtung Nord-Ostsee-Kanal)", + "", + "L\u00e4nge: 1.44 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.731591954, + 54.327996657 + ], + [ + 9.731561, + 54.328022401 + ], + [ + 9.7307435, + 54.328626901 + ], + [ + 9.728544, + 54.330257301 + ], + [ + 9.7274794, + 54.331010301 + ], + [ + 9.7267431, + 54.331537501 + ], + [ + 9.726147, + 54.331947401 + ], + [ + 9.7240395, + 54.333404901 + ], + [ + 9.7226045, + 54.334345001 + ], + [ + 9.7216877, + 54.334942301 + ], + [ + 9.7214743, + 54.335081301 + ], + [ + 9.7203158, + 54.335821001 + ], + [ + 9.718646, + 54.336851701 + ], + [ + 9.7178156, + 54.337351401 + ], + [ + 9.71707938, + 54.337779286 + ] + ] + } + }, + { + "identifier": "2025-038997--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-02-23_07-00-00-000.de12", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.35930402797823,10.037179536248443,53.375464329872294,10.020759927637172", + "point": "53.35930402797823,10.037179536248443", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover -> Hamburg", + "title": "A7, Horster Dreieck bis AS Thieshope, OPA Grundsinstandsetzung km 17,7 bis km 23,5, RiFa H", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 53.35930402797823, + "long": 10.037179536248443 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 17.07.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "Von A7: Hannover -> Hamburg, 2.7 km vor AD Horster Dreieck, aus Richtung Seevetal; Abfahrt von der A7 in AD Horster Dreieck; nach Abfahrt von der A7: Seevetal (aus Richtung Seevetal-Ramelsloh)", + "", + "L\u00e4nge: 2.18 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7, Horster Dreieck bis AS Thieshope, OPA Grundsinstandsetzung km 17,7 bis km 23,5, RiFa H" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.037179536, + 53.359304028 + ], + [ + 10.0371252, + 53.359783301 + ], + [ + 10.0369561, + 53.361274301 + ], + [ + 10.036896, + 53.361633801 + ], + [ + 10.0368154, + 53.361966901 + ], + [ + 10.0367177, + 53.362296401 + ], + [ + 10.0366062, + 53.362633601 + ], + [ + 10.0364796, + 53.362965301 + ], + [ + 10.0362977, + 53.363381601 + ], + [ + 10.036068, + 53.363851501 + ], + [ + 10.0357745, + 53.364347001 + ], + [ + 10.0354563, + 53.364836801 + ], + [ + 10.0349533, + 53.365518601 + ], + [ + 10.0345609, + 53.365970101 + ], + [ + 10.0341004, + 53.366444701 + ], + [ + 10.0338547, + 53.366678101 + ], + [ + 10.03354, + 53.366966101 + ], + [ + 10.0333098, + 53.367164701 + ], + [ + 10.0330725, + 53.367365101 + ], + [ + 10.0327921, + 53.367588801 + ], + [ + 10.03252, + 53.367795301 + ], + [ + 10.0321303, + 53.368073901 + ], + [ + 10.0318175, + 53.368287901 + ], + [ + 10.0310991, + 53.368692601 + ], + [ + 10.0306032, + 53.368982601 + ], + [ + 10.0300876, + 53.369259901 + ], + [ + 10.0291509, + 53.369723301 + ], + [ + 10.0282018, + 53.370163301 + ], + [ + 10.0263927, + 53.370948201 + ], + [ + 10.0260034, + 53.371124701 + ], + [ + 10.0256413, + 53.371294401 + ], + [ + 10.025286, + 53.371472101 + ], + [ + 10.0248166, + 53.371732001 + ], + [ + 10.0245604, + 53.371876101 + ], + [ + 10.0243147, + 53.372023501 + ], + [ + 10.0238806, + 53.372307901 + ], + [ + 10.0235167, + 53.372563101 + ], + [ + 10.0232863, + 53.372735401 + ], + [ + 10.0230797, + 53.372909001 + ], + [ + 10.0228992, + 53.373060501 + ], + [ + 10.0224777, + 53.373447601 + ], + [ + 10.0221157, + 53.373808701 + ], + [ + 10.0217669, + 53.374210801 + ], + [ + 10.0213045, + 53.374771501 + ], + [ + 10.020759928, + 53.37546433 + ] + ] + } + }, + { + "identifier": "2025-038997--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-02-23_07-00-00-000.de10", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.37541536118868,10.020587071566199,53.35929353758441,10.036905541659513", + "point": "53.37541536118868,10.020587071566199", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Horster Dreieck (aus Richtung Horster Dreieck/A1) nach A7", + "title": "A7, Horster Dreieck bis AS Thieshope, OPA Grundsinstandsetzung km 17,7 bis km 23,5, RiFa H", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 53.37541536118868, + "long": 10.020587071566199 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 17.07.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "Von Auffahrt auf die A7: AD Horster Dreieck (aus Richtung Horster Dreieck/A1) nach A7: Hamburg -> Hannover, zwischen AD Horster Dreieck und 1.3 km vor Seevetal", + "", + "L\u00e4nge: 2.18 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A7, Horster Dreieck bis AS Thieshope, OPA Grundsinstandsetzung km 17,7 bis km 23,5, RiFa H" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.020587072, + 53.375415361 + ], + [ + 10.0211339, + 53.374730001 + ], + [ + 10.0215872, + 53.374169201 + ], + [ + 10.0219554, + 53.373751401 + ], + [ + 10.022314, + 53.373397101 + ], + [ + 10.022723, + 53.373016501 + ], + [ + 10.0228934, + 53.372877101 + ], + [ + 10.0231214, + 53.372690601 + ], + [ + 10.0233602, + 53.372507101 + ], + [ + 10.0237276, + 53.372244101 + ], + [ + 10.0241674, + 53.371955101 + ], + [ + 10.0244035, + 53.371805701 + ], + [ + 10.0246931, + 53.371645601 + ], + [ + 10.0251606, + 53.371391801 + ], + [ + 10.0271809, + 53.370407801 + ], + [ + 10.028, + 53.370055601 + ], + [ + 10.0289856, + 53.369602701 + ], + [ + 10.029912, + 53.369141901 + ], + [ + 10.0304341, + 53.368866201 + ], + [ + 10.0311921, + 53.368426601 + ], + [ + 10.0315449, + 53.368207001 + ], + [ + 10.0318843, + 53.367982501 + ], + [ + 10.032267, + 53.367710201 + ], + [ + 10.0325614, + 53.367493501 + ], + [ + 10.03284, + 53.367275101 + ], + [ + 10.0330764, + 53.367075001 + ], + [ + 10.0332956, + 53.366877201 + ], + [ + 10.0336111, + 53.366600801 + ], + [ + 10.0338625, + 53.366357101 + ], + [ + 10.0343033, + 53.365897001 + ], + [ + 10.0346956, + 53.365453301 + ], + [ + 10.0352016, + 53.364788901 + ], + [ + 10.0355307, + 53.364303401 + ], + [ + 10.0358184, + 53.363807301 + ], + [ + 10.0360477, + 53.363344501 + ], + [ + 10.036229, + 53.362928101 + ], + [ + 10.0363594, + 53.362597601 + ], + [ + 10.0364682, + 53.362263901 + ], + [ + 10.0365633, + 53.361942901 + ], + [ + 10.0366373, + 53.361618001 + ], + [ + 10.0367076, + 53.361260801 + ], + [ + 10.0367359, + 53.360979201 + ], + [ + 10.036857, + 53.359776101 + ], + [ + 10.036905542, + 53.359293538 + ] + ] + } + }, + { + "identifier": "2026-016299--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.31028289165648,9.872695233887848,52.31179086224332,9.869263962367322", + "point": "52.31028289165648,9.872695233887848", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Laatzen (aus Richtung Hannover-S\u00fcd) nach A7", + "title": "A7 von Hannover-S\u00fcd (AD) nach Hannover-W\u00fclferode (Raststaette) Gr\u00fcnpflege", + "coordinate": { + "lat": 52.31028289165648, + "long": 9.872695233887848 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag und Mittwoch zwischen dem 13.04.26 und dem 15.04.26 von 08:00 bis 17:00 Uhr.", + "", + "Von Auffahrt auf die A7: AS Laatzen (aus Richtung Hannover-S\u00fcd) nach A7: Kassel -> Hannover, zwischen AD Hannover-S\u00fcd und 2.8 km vor Hannover-W\u00fclferode", + "", + "L\u00e4nge: 0.45 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 von Hannover-S\u00fcd (AD) nach Hannover-W\u00fclferode (Raststaette) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.872695234, + 52.310282892 + ], + [ + 9.8727107, + 52.310212901 + ], + [ + 9.8727197, + 52.310132401 + ], + [ + 9.8727201, + 52.310051601 + ], + [ + 9.8727104, + 52.309962901 + ], + [ + 9.8726903, + 52.309874901 + ], + [ + 9.8726597, + 52.309788001 + ], + [ + 9.87262, + 52.309726701 + ], + [ + 9.8725678, + 52.309668901 + ], + [ + 9.8725041, + 52.309615601 + ], + [ + 9.8724299, + 52.309567601 + ], + [ + 9.8723463, + 52.309525801 + ], + [ + 9.8722547, + 52.309490801 + ], + [ + 9.8721567, + 52.309463201 + ], + [ + 9.8720537, + 52.309443401 + ], + [ + 9.8719474, + 52.309431701 + ], + [ + 9.8718396, + 52.309428301 + ], + [ + 9.8717368, + 52.309432901 + ], + [ + 9.8716357, + 52.309445101 + ], + [ + 9.8715378, + 52.309464601 + ], + [ + 9.8714444, + 52.309491301 + ], + [ + 9.871357, + 52.309524601 + ], + [ + 9.8712768, + 52.309564101 + ], + [ + 9.8708329, + 52.309796101 + ], + [ + 9.8707342, + 52.309914501 + ], + [ + 9.8700595, + 52.310748701 + ], + [ + 9.8696107, + 52.311325001 + ], + [ + 9.8692796, + 52.311769201 + ], + [ + 9.869263962, + 52.311790862 + ] + ] + } + }, + { + "identifier": "2026-004349--vi-bs.2026-03-28_00-00-00-000.devi-zus.2026-02-03_16-00-00-000_001.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.260314802993584,9.518536643685591,51.25764417066601,9.51941042568454", + "point": "51.260314802993584,9.518536643685591", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 0.50 --> km 0.35", + "title": "A44 Bauwerksarbeiten", + "startTimestamp": "2026-03-28T00:00:00+01:00", + "coordinate": { + "lat": 51.260314802993584, + "long": 9.518536643685591 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.03.26 um 00:00 Uhr", + "Ende: 12.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.04.26)", + "", + "A44: km 0.50 --> km 0.35", + "", + "L\u00e4nge: 0.34 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A44 Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.518536644, + 51.260314803 + ], + [ + 9.5187205, + 51.260241901 + ], + [ + 9.5189208, + 51.260145401 + ], + [ + 9.519068, + 51.260061001 + ], + [ + 9.5191944, + 51.259977201 + ], + [ + 9.5193297, + 51.259872701 + ], + [ + 9.5194263, + 51.259785901 + ], + [ + 9.5195417, + 51.259663601 + ], + [ + 9.519619, + 51.259565301 + ], + [ + 9.5196982, + 51.259442501 + ], + [ + 9.5197601, + 51.259319701 + ], + [ + 9.5197999, + 51.259210501 + ], + [ + 9.5198095, + 51.259184101 + ], + [ + 9.519841, + 51.259042701 + ], + [ + 9.519853, + 51.258899501 + ], + [ + 9.5198453, + 51.258757401 + ], + [ + 9.5198114, + 51.258591901 + ], + [ + 9.5197618, + 51.258453601 + ], + [ + 9.5196873, + 51.258270301 + ], + [ + 9.519410426, + 51.257644171 + ] + ] + } + }, + { + "identifier": "2026-004349--vi-bs.2026-03-28_00-00-00-000.devi-zus.2026-02-03_16-00-00-000_001.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.260732011916076,9.513831486000525,51.260310013440495,9.518548722802784", + "point": "51.260732011916076,9.513831486000525", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 0.65 nach A44", + "title": "A44 Bauwerksarbeiten", + "startTimestamp": "2026-03-28T00:00:00+01:00", + "coordinate": { + "lat": 51.260732011916076, + "long": 9.513831486000525 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.03.26 um 00:00 Uhr", + "Ende: 12.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.04.26)", + "", + "Von A44: km 0.65 nach A44: km 0.65", + "", + "L\u00e4nge: 0.33 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A44 Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.513831486, + 51.260732012 + ], + [ + 9.5138985, + 51.260728501 + ], + [ + 9.5163169, + 51.260612401 + ], + [ + 9.5172688, + 51.260565001 + ], + [ + 9.5175535, + 51.260537601 + ], + [ + 9.5178606, + 51.260491401 + ], + [ + 9.5182056, + 51.260416801 + ], + [ + 9.5185253, + 51.260319301 + ], + [ + 9.518548723, + 51.260310013 + ] + ] + } + }, + { + "identifier": "2026-004349--vi-bs.2026-03-28_00-00-00-000.devi-zus.2026-02-03_16-00-00-000_001.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26078150225565,9.50668335237243,51.26073126367971,9.513845767629215", + "point": "51.26078150225565,9.50668335237243", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 0.88 --> km 0.65", + "title": "A44 Bauwerksarbeiten", + "startTimestamp": "2026-03-28T00:00:00+01:00", + "coordinate": { + "lat": 51.26078150225565, + "long": 9.50668335237243 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.03.26 um 00:00 Uhr", + "Ende: 12.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.04.26)", + "", + "A44: km 0.88 --> km 0.65", + "", + "L\u00e4nge: 0.5 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A44 Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.506683352, + 51.260781502 + ], + [ + 9.5071937, + 51.260807301 + ], + [ + 9.5074146, + 51.260818001 + ], + [ + 9.50818, + 51.260847101 + ], + [ + 9.5090809, + 51.260870601 + ], + [ + 9.5099269, + 51.260875901 + ], + [ + 9.510812, + 51.260862601 + ], + [ + 9.5115068, + 51.260840601 + ], + [ + 9.5122969, + 51.260812401 + ], + [ + 9.513845768, + 51.260731264 + ] + ] + } + }, + { + "identifier": "2025-047692--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-03-01_00-00-00-000_006.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.992752950186485,10.14221976623681,47.998247874447266,10.149847785269698", + "point": "47.992752950186485,10.14221976623681", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A7 A-01397-00 BW 54-2s Ersatzneubau", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 47.992752950186485, + "long": 10.14221976623681 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 30.10.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.27)", + "", + "Von A96: Lindau -> M\u00fcnchen, zwischen 3.2 km hinter Buxheimer Wald und AK Memmingen nach Abfahrt von der A96: AK Memmingen (aus Richtung Buxheimer Wald)", + "", + "L\u00e4nge: 0.86 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 A-01397-00 BW 54-2s Ersatzneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.142219766, + 47.99275295 + ], + [ + 10.1425066, + 47.992885801 + ], + [ + 10.1431464, + 47.993181901 + ], + [ + 10.1436395, + 47.993402201 + ], + [ + 10.1445278, + 47.993765501 + ], + [ + 10.1449464, + 47.993937201 + ], + [ + 10.1458033, + 47.994307001 + ], + [ + 10.1463302, + 47.994546101 + ], + [ + 10.1468108, + 47.994818901 + ], + [ + 10.1472083, + 47.995077901 + ], + [ + 10.1475759, + 47.995347901 + ], + [ + 10.1478241, + 47.995552901 + ], + [ + 10.1481231, + 47.995834801 + ], + [ + 10.1485385, + 47.996298101 + ], + [ + 10.1489738, + 47.996824201 + ], + [ + 10.1494312, + 47.997477601 + ], + [ + 10.1496966, + 47.997919001 + ], + [ + 10.149847785, + 47.998247874 + ] + ] + } + }, + { + "identifier": "2025-047692--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-03-01_00-00-00-000_006.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.00176898220796,10.148759063992726,47.994264689618845,10.145367010849126", + "point": "48.00176898220796,10.148759063992726", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Memmingen (aus Richtung Aum\u00fchle)", + "title": "A7 A-01397-00 BW 54-2s Ersatzneubau", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 48.00176898220796, + "long": 10.148759063992726 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 30.10.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.27)", + "", + "Abfahrt von der A7: AK Memmingen (aus Richtung Aum\u00fchle)", + "", + "L\u00e4nge: 0.95 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A7 A-01397-00 BW 54-2s Ersatzneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.148759064, + 48.001768982 + ], + [ + 10.1487902, + 48.001694401 + ], + [ + 10.1489243, + 48.001357401 + ], + [ + 10.1490001, + 48.001183901 + ], + [ + 10.1492883, + 48.000605601 + ], + [ + 10.1494215, + 48.000320001 + ], + [ + 10.1494959, + 48.000121101 + ], + [ + 10.1495511, + 47.999384701 + ], + [ + 10.1495187, + 47.998929301 + ], + [ + 10.1494742, + 47.998628901 + ], + [ + 10.1494276, + 47.998420001 + ], + [ + 10.1493021, + 47.998040901 + ], + [ + 10.1491653, + 47.997721801 + ], + [ + 10.1489918, + 47.997360401 + ], + [ + 10.1488064, + 47.997021901 + ], + [ + 10.148491, + 47.996544201 + ], + [ + 10.1481785, + 47.996154901 + ], + [ + 10.1479581, + 47.995906201 + ], + [ + 10.1478724, + 47.995823601 + ], + [ + 10.1476061, + 47.995578401 + ], + [ + 10.1473284, + 47.995351901 + ], + [ + 10.1469837, + 47.995097101 + ], + [ + 10.1466492, + 47.994897201 + ], + [ + 10.1464108, + 47.994754201 + ], + [ + 10.1461488, + 47.994617401 + ], + [ + 10.1459168, + 47.994505601 + ], + [ + 10.145367011, + 47.99426469 + ] + ] + } + }, + { + "identifier": "2025-009146--vi-bs.2025-09-29_05-00-00-000.devi-zus.2020-11-29_05-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.51362595686249,9.914513850516773,53.512833331848846,9.914723155323795", + "point": "53.51362595686249,9.914513850516773", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Hamburg-Waltershof (aus Richtung Elbtunnel (S\u00fcdportal))", + "title": "A7, Bereich HH-Waltershof, achtstreifige Erweiterung der Hochstra\u00dfe Elbmarsch", + "startTimestamp": "2025-09-29T05:00:00+02:00", + "coordinate": { + "lat": 53.51362595686249, + "long": 9.914513850516773 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.09.25 um 05:00 Uhr", + "Ende: 27.09.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.09.26)", + "", + "Auffahrt auf die A7: AS Hamburg-Waltershof (aus Richtung Elbtunnel (S\u00fcdportal))", + "", + "L\u00e4nge: 0.09 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7, Bereich HH-Waltershof, achtstreifige Erweiterung der Hochstra\u00dfe Elbmarsch" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.914513851, + 53.513625957 + ], + [ + 9.914617, + 53.513502101 + ], + [ + 9.9147052, + 53.513363101 + ], + [ + 9.9147663, + 53.513210201 + ], + [ + 9.9147783, + 53.513082601 + ], + [ + 9.9147573, + 53.512948001 + ], + [ + 9.9147282, + 53.512841901 + ], + [ + 9.914723155, + 53.512833332 + ] + ] + } + }, + { + "identifier": "2025-060770--vi-bs.2026-05-01_00-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26060167942503,9.516532226115537,51.260548082202774,9.517444595159638", + "point": "51.26060167942503,9.516532226115537", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 0.57 --> km 0.54", + "title": "A7 Br\u00fcckeninstandsetzung-Dreieck KS-S\u00fcd", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 51.26060167942503, + "long": 9.516532226115537 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A44: km 0.57 --> km 0.54", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A7 Br\u00fcckeninstandsetzung-Dreieck KS-S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.516532226, + 51.260601679 + ], + [ + 9.5172688, + 51.260565001 + ], + [ + 9.517444595, + 51.260548082 + ] + ] + } + }, + { + "identifier": "2024-049046--vi-bs.2026-04-09_05-30-00-000.devi-zus.2026-03-02_20-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.465059360587,10.107435865705042,48.459307444940514,10.116862828291884", + "point": "48.465059360587,10.107435865705042", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Ulm/Elchingen (aus Richtung Oberelchingen)", + "title": "A8 AK Ulm Elchingen Verbreiterung Fahrbahn", + "startTimestamp": "2026-04-09T05:30:00+02:00", + "coordinate": { + "lat": 48.465059360587, + "long": 10.107435865705042 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 05:30 Uhr", + "Ende: 27.11.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "Abfahrt von der A8: AK Ulm/Elchingen (aus Richtung Oberelchingen)", + "", + "L\u00e4nge: 1.06 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A8 AK Ulm Elchingen Verbreiterung Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.107435866, + 48.465059361 + ], + [ + 10.1076559, + 48.465047801 + ], + [ + 10.1082963, + 48.465015001 + ], + [ + 10.1089715, + 48.464973901 + ], + [ + 10.1096965, + 48.464901801 + ], + [ + 10.1101135, + 48.464857001 + ], + [ + 10.1103899, + 48.464822301 + ], + [ + 10.1107952, + 48.464768301 + ], + [ + 10.1112552, + 48.464698601 + ], + [ + 10.1120987, + 48.464521501 + ], + [ + 10.1128856, + 48.464262801 + ], + [ + 10.1136173, + 48.463940501 + ], + [ + 10.1142821, + 48.463559701 + ], + [ + 10.1148694, + 48.463126601 + ], + [ + 10.1153699, + 48.462647901 + ], + [ + 10.1157758, + 48.462131401 + ], + [ + 10.1160805, + 48.461585001 + ], + [ + 10.1163483, + 48.461004701 + ], + [ + 10.1165831, + 48.460367901 + ], + [ + 10.1166838, + 48.460015401 + ], + [ + 10.1167928, + 48.459631401 + ], + [ + 10.116862828, + 48.459307445 + ] + ] + } + }, + { + "identifier": "2025-047692--vi-fbm.2026-04-13_22-00-00-000.devi-zus.2026-03-01_00-00-00-000_006.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.995948842429414,10.150118982954329,47.996501507650535,10.149080438565731", + "point": "47.995948842429414,10.150118982954329", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A7 A-01397-00 BW 54-2s Ersatzneubau", + "coordinate": { + "lat": 47.995948842429414, + "long": 10.150118982954329 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 22:00 bis zum 14.04.26 05:30 Uhr.", + "14.04.26 22:00 bis zum 15.04.26 05:30 Uhr.", + "", + "Von A96: M\u00fcnchen -> Lindau, zwischen AK Memmingen und Buxheimer Wald nach Abfahrt von der A96: AK Memmingen (aus Richtung Memmingen-Nord)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 A-01397-00 BW 54-2s Ersatzneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.150118983, + 47.995948842 + ], + [ + 10.1500708, + 47.995937601 + ], + [ + 10.1497707, + 47.995882201 + ], + [ + 10.1494935, + 47.995952101 + ], + [ + 10.1494124, + 47.995978401 + ], + [ + 10.1493485, + 47.996003301 + ], + [ + 10.1492801, + 47.996037101 + ], + [ + 10.1492248, + 47.996077001 + ], + [ + 10.1491617, + 47.996131701 + ], + [ + 10.1491318, + 47.996169601 + ], + [ + 10.1491051, + 47.996214501 + ], + [ + 10.1490749, + 47.996281301 + ], + [ + 10.1490582, + 47.996340001 + ], + [ + 10.1490555, + 47.996395501 + ], + [ + 10.1490588, + 47.996443301 + ], + [ + 10.1490721, + 47.996482601 + ], + [ + 10.149080439, + 47.996501508 + ] + ] + } + }, + { + "identifier": "2025-009146--vi-bs.2025-08-27_05-00-00-000.devi-zus.2020-11-29_05-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.5139764669005,9.915550193639502,53.5146418277017,9.914371954691509", + "point": "53.5139764669005,9.915550193639502", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Hamburg-Waltershof (Westseite) (in Richtung AS Hamburg-Waltershof (Ostseite))", + "title": "A7, Bereich HH-Waltershof, achtstreifige Erweiterung der Hochstra\u00dfe Elbmarsch", + "startTimestamp": "2025-08-27T05:00:00+02:00", + "coordinate": { + "lat": 53.5139764669005, + "long": 9.915550193639502 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.08.25 um 05:00 Uhr", + "Ende: 27.09.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.09.26)", + "", + "Auffahrt auf die B3: AS Hamburg-Waltershof (Westseite) (in Richtung AS Hamburg-Waltershof (Ostseite))", + "", + "L\u00e4nge: 0.16 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.3 m", + "", + "A7, Bereich HH-Waltershof, achtstreifige Erweiterung der Hochstra\u00dfe Elbmarsch" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.915550194, + 53.513976467 + ], + [ + 9.9154453, + 53.513935701 + ], + [ + 9.9152462, + 53.513881801 + ], + [ + 9.9150486, + 53.513862201 + ], + [ + 9.9148833, + 53.513873801 + ], + [ + 9.9147446, + 53.513895101 + ], + [ + 9.9146078, + 53.513931201 + ], + [ + 9.9145173, + 53.513966701 + ], + [ + 9.9144412, + 53.514005801 + ], + [ + 9.9143609, + 53.514058601 + ], + [ + 9.9143035, + 53.514109901 + ], + [ + 9.9142655, + 53.514151801 + ], + [ + 9.9142267, + 53.514212301 + ], + [ + 9.9142065, + 53.514270101 + ], + [ + 9.9142002, + 53.514345701 + ], + [ + 9.9142186, + 53.514434801 + ], + [ + 9.9142493, + 53.514507601 + ], + [ + 9.9142959, + 53.514575501 + ], + [ + 9.914371955, + 53.514641828 + ] + ] + } + }, + { + "identifier": "2025-009146--vi-bs.2025-08-27_05-00-00-000.devi-zus.2020-11-29_05-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.51618099193304,9.917981241132358,53.515536382837375,9.916554086806258", + "point": "53.51618099193304,9.917981241132358", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Hamburg-Waltershof (aus Richtung Elbtunnel (S\u00fcdportal))", + "title": "A7, Bereich HH-Waltershof, achtstreifige Erweiterung der Hochstra\u00dfe Elbmarsch", + "startTimestamp": "2025-08-27T05:00:00+02:00", + "coordinate": { + "lat": 53.51618099193304, + "long": 9.917981241132358 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.08.25 um 05:00 Uhr", + "Ende: 27.09.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.09.26)", + "", + "Abfahrt von der A7: AS Hamburg-Waltershof (aus Richtung Elbtunnel (S\u00fcdportal))", + "", + "L\u00e4nge: 0.12 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.3 m", + "", + "A7, Bereich HH-Waltershof, achtstreifige Erweiterung der Hochstra\u00dfe Elbmarsch" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.917981241, + 53.516180992 + ], + [ + 9.9178664, + 53.516113601 + ], + [ + 9.9177307, + 53.516041301 + ], + [ + 9.9172982, + 53.515832101 + ], + [ + 9.9171266, + 53.515757901 + ], + [ + 9.916828, + 53.515637401 + ], + [ + 9.916554087, + 53.515536383 + ] + ] + } + }, + { + "identifier": "2024-049046--vi-bs.2026-04-20_05-30-00-000.devi-zus.2026-03-02_20-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.465116514105965,10.10386192198552,48.46480521349573,10.101790015302099", + "point": "48.465116514105965,10.10386192198552", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Ulm/Elchingen (aus Richtung Leipheim)", + "title": "A8 AK Ulm Elchingen Verbreiterung Fahrbahn", + "startTimestamp": "2026-04-20T05:30:00+02:00", + "coordinate": { + "lat": 48.465116514105965, + "long": 10.10386192198552 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 05:30 Uhr", + "Ende: 08.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "Auffahrt auf die A8: AK Ulm/Elchingen (aus Richtung Leipheim)", + "", + "L\u00e4nge: 0.16 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A8 AK Ulm Elchingen Verbreiterung Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.103861922, + 48.465116514 + ], + [ + 10.1024887, + 48.464940801 + ], + [ + 10.1020502, + 48.464883001 + ], + [ + 10.101790015, + 48.464805213 + ] + ] + } + }, + { + "identifier": "2025-047692--vi-bs.2026-04-15_05-30-00-000.devi-zus.2026-03-01_00-00-00-000_006.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.995948842429414,10.150118982954329,47.996501507650535,10.149080438565731", + "point": "47.995948842429414,10.150118982954329", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A7 A-01397-00 BW 54-2s Ersatzneubau", + "startTimestamp": "2026-04-15T05:30:00+02:00", + "coordinate": { + "lat": 47.995948842429414, + "long": 10.150118982954329 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 05:30 Uhr", + "Ende: 30.10.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.27)", + "", + "Von A96: M\u00fcnchen -> Lindau, zwischen AK Memmingen und Buxheimer Wald nach Abfahrt von der A96: AK Memmingen (aus Richtung Memmingen-Nord)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 A-01397-00 BW 54-2s Ersatzneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.150118983, + 47.995948842 + ], + [ + 10.1500708, + 47.995937601 + ], + [ + 10.1497707, + 47.995882201 + ], + [ + 10.1494935, + 47.995952101 + ], + [ + 10.1494124, + 47.995978401 + ], + [ + 10.1493485, + 47.996003301 + ], + [ + 10.1492801, + 47.996037101 + ], + [ + 10.1492248, + 47.996077001 + ], + [ + 10.1491617, + 47.996131701 + ], + [ + 10.1491318, + 47.996169601 + ], + [ + 10.1491051, + 47.996214501 + ], + [ + 10.1490749, + 47.996281301 + ], + [ + 10.1490582, + 47.996340001 + ], + [ + 10.1490555, + 47.996395501 + ], + [ + 10.1490588, + 47.996443301 + ], + [ + 10.1490721, + 47.996482601 + ], + [ + 10.149080439, + 47.996501508 + ] + ] + } + }, + { + "identifier": "2024-034747--vi-bs.2024-10-08_00-00-00-000.devi-zus.2024-07-29_08-00-00-000.f_005.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.77841041572158,9.575479774635967,50.77755186849369,9.580179249977437", + "point": "50.77841041572158,9.575479774635967", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Fulda", + "title": "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula", + "startTimestamp": "2024-10-08T00:00:00+02:00", + "coordinate": { + "lat": 50.77841041572158, + "long": 9.575479774635967 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.24 um 00:00 Uhr", + "Ende: 03.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.04.27)", + "", + "Von A7: Kassel -> Fulda, zwischen 1.5 km hinter Strampen und AS Niederaula nach Abfahrt von der A7: AS Niederaula (aus Richtung Strampen)", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.575479775, + 50.778410416 + ], + [ + 9.5756093, + 50.778388901 + ], + [ + 9.5762169, + 50.778303001 + ], + [ + 9.5769526, + 50.778214001 + ], + [ + 9.577335, + 50.778172501 + ], + [ + 9.5779109, + 50.778114301 + ], + [ + 9.5783413, + 50.778070201 + ], + [ + 9.5789681, + 50.777950901 + ], + [ + 9.5794947, + 50.777851201 + ], + [ + 9.5798456, + 50.777734401 + ], + [ + 9.5800628, + 50.777625501 + ], + [ + 9.58017925, + 50.777551868 + ] + ] + } + }, + { + "identifier": "2024-034747--vi-bs.2024-10-08_00-00-00-000.devi-zus.2024-07-29_08-00-00-000.f_005.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.77813613776219,9.585552078040626,50.77628868225393,9.584603927068876", + "point": "50.77813613776219,9.585552078040626", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Niederaula (aus Richtung Strampen) nach Auffahrt auf die A7", + "title": "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula", + "startTimestamp": "2024-10-08T00:00:00+02:00", + "coordinate": { + "lat": 50.77813613776219, + "long": 9.585552078040626 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.10.24 um 00:00 Uhr", + "Ende: 03.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.04.27)", + "", + "Von Auffahrt auf die A7: AS Niederaula (aus Richtung Strampen) nach Auffahrt auf die A7: AS Niederaula (aus Richtung Strampen)", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A7 Br\u00fcckenneubau_ENB 3 BW bei Niederaula" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.585552078, + 50.778136138 + ], + [ + 9.585413, + 50.778055201 + ], + [ + 9.5850938, + 50.777854401 + ], + [ + 9.5848188, + 50.777669301 + ], + [ + 9.5845603, + 50.777479301 + ], + [ + 9.58415, + 50.777165701 + ], + [ + 9.5839148, + 50.776993201 + ], + [ + 9.5838511, + 50.776946801 + ], + [ + 9.5836908, + 50.776837501 + ], + [ + 9.583533, + 50.776747601 + ], + [ + 9.5834137, + 50.776691401 + ], + [ + 9.5832388, + 50.776614001 + ], + [ + 9.5830589, + 50.776557101 + ], + [ + 9.5828691, + 50.776518001 + ], + [ + 9.5826628, + 50.776486901 + ], + [ + 9.5824385, + 50.776467401 + ], + [ + 9.5822764, + 50.776468201 + ], + [ + 9.5820606, + 50.776479901 + ], + [ + 9.5818637, + 50.776511101 + ], + [ + 9.581688, + 50.776548101 + ], + [ + 9.5815101, + 50.776606601 + ], + [ + 9.581402, + 50.776674901 + ], + [ + 9.581309, + 50.776750401 + ], + [ + 9.581244, + 50.776851401 + ], + [ + 9.581217, + 50.776936901 + ], + [ + 9.5812211, + 50.777021101 + ], + [ + 9.581277, + 50.777122301 + ], + [ + 9.581348, + 50.777191401 + ], + [ + 9.5814466, + 50.777255801 + ], + [ + 9.5815477, + 50.777297001 + ], + [ + 9.5816655, + 50.777320501 + ], + [ + 9.5817936, + 50.777332701 + ], + [ + 9.581987, + 50.777320601 + ], + [ + 9.5829325, + 50.777073101 + ], + [ + 9.5831847, + 50.776972901 + ], + [ + 9.5836127, + 50.776793801 + ], + [ + 9.5840009, + 50.776610401 + ], + [ + 9.58431, + 50.776452501 + ], + [ + 9.584555, + 50.776317301 + ], + [ + 9.584603927, + 50.776288682 + ] + ] + } + }, + { + "identifier": "2025-002110--vi-bs.2026-01-28_00-00-00-000.devi-zus.2025-01-27_00-00-00-000.de41", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.30674399340496,9.756595782309917,54.30833086426535,9.752504290558036", + "point": "54.30674399340496,9.756595782309917", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Rendsburg (aus Richtung Ohe-Nord)", + "title": "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau", + "startTimestamp": "2026-01-28T00:00:00+01:00", + "coordinate": { + "lat": 54.30674399340496, + "long": 9.756595782309917 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.01.26 um 00:00 Uhr", + "Ende: 02.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "Auffahrt auf die A7: AK Rendsburg (aus Richtung Ohe-Nord)", + "", + "L\u00e4nge: 0.33 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A7, AS Rendsburg_B\u00fcdelsdorf und AK Rendsburg, Erstatzneubau RHB und 6-streifiger Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.756595782, + 54.306743993 + ], + [ + 9.7564571, + 54.306755801 + ], + [ + 9.7559166, + 54.306811301 + ], + [ + 9.7554601, + 54.306898601 + ], + [ + 9.7549547, + 54.307021301 + ], + [ + 9.7544993, + 54.307155801 + ], + [ + 9.7540355, + 54.307340501 + ], + [ + 9.7536729, + 54.307509001 + ], + [ + 9.7533338, + 54.307695201 + ], + [ + 9.7530381, + 54.307896201 + ], + [ + 9.7525738, + 54.308260201 + ], + [ + 9.752504291, + 54.308330864 + ] + ] + } + } + ] + }, + "A8": { + "roadworks": [ + { + "identifier": "2025-030722--vi-bs.2025-07-28_08-30-00-000.devi-bs.2025-06-30_00-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.47932871273438,6.368012067178018,49.481574885427094,6.371934075545792", + "point": "49.47932871273438,6.368012067178018", + "startLcPosition": "0", + "impact": { + "lower": "Moseltal", + "upper": "Bundesgrenze", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Luxemburg -> Saarlouis", + "title": "A8 | Bundesgrenze - Moseltal", + "startTimestamp": "2025-07-28T08:30:00+02:00", + "coordinate": { + "lat": 49.47932871273438, + "long": 6.368012067178018 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.07.25 um 08:30 Uhr", + "Ende: 01.08.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.27)", + "", + "A8: Luxemburg -> Saarlouis, zwischen Bundesgrenze und 0.3 km vor Moseltal", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.368012067, + 49.479328713 + ], + [ + 6.3680537, + 49.479344801 + ], + [ + 6.368409, + 49.479490701 + ], + [ + 6.3688051, + 49.479669101 + ], + [ + 6.3692625, + 49.479883401 + ], + [ + 6.3697801, + 49.480149601 + ], + [ + 6.3702012, + 49.480384001 + ], + [ + 6.3706045, + 49.480620001 + ], + [ + 6.371126, + 49.480959401 + ], + [ + 6.3716481, + 49.481342801 + ], + [ + 6.371934076, + 49.481574885 + ] + ] + } + }, + { + "identifier": "2026-015615--vi-fbm.2026-04-20_00-00-00-000.devi-zus.2026-04-20_00-00-00-000_004.de9", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.48771117837994,6.384841262448278,49.48141125658743,6.4209279870300335", + "point": "49.48771117837994,6.384841262448278", + "startLcPosition": "2", + "impact": { + "lower": "Pellinger Berg", + "upper": "Perl", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Luxemburg -> Saarlouis", + "title": "A8 | Perl - Pellinger Berg", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 49.48771117837994, + "long": 6.384841262448278 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 21.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.05.26)", + "", + "A8: Luxemburg -> Saarlouis, zwischen 0.6 km hinter AS Perl und 8.0 km vor Pellinger Berg", + "", + "L\u00e4nge: 3.58 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A8 AS Perl-Borg Umbau_Sperrung f\u00fcr Schwertransport" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.384841262, + 49.487711178 + ], + [ + 6.3849783, + 49.487728801 + ], + [ + 6.3857729, + 49.487868901 + ], + [ + 6.3862442, + 49.487969901 + ], + [ + 6.3869199, + 49.488154401 + ], + [ + 6.387393, + 49.488312101 + ], + [ + 6.3878133, + 49.488469801 + ], + [ + 6.3885755, + 49.488805201 + ], + [ + 6.3890685, + 49.489064401 + ], + [ + 6.3893801, + 49.489248901 + ], + [ + 6.3896858, + 49.489437401 + ], + [ + 6.3900345, + 49.489677801 + ], + [ + 6.3903742, + 49.489923501 + ], + [ + 6.3911128, + 49.490497601 + ], + [ + 6.3917108, + 49.490997401 + ], + [ + 6.3922716, + 49.491476901 + ], + [ + 6.3929154, + 49.492006401 + ], + [ + 6.3936234, + 49.492557201 + ], + [ + 6.3941462, + 49.492900501 + ], + [ + 6.3946695, + 49.493209201 + ], + [ + 6.395248, + 49.493497501 + ], + [ + 6.3959419, + 49.493804701 + ], + [ + 6.396567, + 49.494031301 + ], + [ + 6.3970362, + 49.494186701 + ], + [ + 6.3975356, + 49.494309101 + ], + [ + 6.3980045, + 49.494399001 + ], + [ + 6.3985561, + 49.494489101 + ], + [ + 6.399044, + 49.494540701 + ], + [ + 6.3996011, + 49.494574801 + ], + [ + 6.4000294, + 49.494583601 + ], + [ + 6.4004303, + 49.494580301 + ], + [ + 6.4010675, + 49.494552701 + ], + [ + 6.401543, + 49.494506401 + ], + [ + 6.4019988, + 49.494447801 + ], + [ + 6.4026023, + 49.494331401 + ], + [ + 6.4033179, + 49.494159001 + ], + [ + 6.4038228, + 49.494007101 + ], + [ + 6.4044316, + 49.493783701 + ], + [ + 6.4048821, + 49.493581501 + ], + [ + 6.4053953, + 49.493324601 + ], + [ + 6.4057327, + 49.493132001 + ], + [ + 6.4061686, + 49.492839201 + ], + [ + 6.4064803, + 49.492601801 + ], + [ + 6.4067894, + 49.492346101 + ], + [ + 6.4074024, + 49.491803301 + ], + [ + 6.4085653, + 49.490724601 + ], + [ + 6.4090692, + 49.490345701 + ], + [ + 6.4094442, + 49.490101901 + ], + [ + 6.4096971, + 49.489931901 + ], + [ + 6.4099494, + 49.489761401 + ], + [ + 6.4105657, + 49.489388401 + ], + [ + 6.4111512, + 49.489106901 + ], + [ + 6.4117414, + 49.488848201 + ], + [ + 6.4125415, + 49.488510701 + ], + [ + 6.4133254, + 49.488169201 + ], + [ + 6.4139721, + 49.487869201 + ], + [ + 6.4146472, + 49.487513601 + ], + [ + 6.4148596, + 49.487385301 + ], + [ + 6.4153267, + 49.487088201 + ], + [ + 6.4159248, + 49.486635101 + ], + [ + 6.4164409, + 49.486185101 + ], + [ + 6.4166098, + 49.486021901 + ], + [ + 6.4167878, + 49.485839601 + ], + [ + 6.4170815, + 49.485526501 + ], + [ + 6.4175247, + 49.484977501 + ], + [ + 6.4177011, + 49.484739801 + ], + [ + 6.4179756, + 49.484388501 + ], + [ + 6.4186221, + 49.483560901 + ], + [ + 6.4188025, + 49.483351101 + ], + [ + 6.4189736, + 49.483154601 + ], + [ + 6.4193275, + 49.482780701 + ], + [ + 6.4196671, + 49.482453601 + ], + [ + 6.4200031, + 49.482145401 + ], + [ + 6.420468, + 49.481759801 + ], + [ + 6.420927987, + 49.481411257 + ] + ] + } + }, + { + "identifier": "2024-008858--vi-bs.2026-03-24_05-00-00-000.devi-zus.2025-08-26_12-00-00-000.de58", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.45149554100036,6.49393985578897,49.45279000074955,6.530015166350346", + "point": "49.45149554100036,6.49393985578897", + "startLcPosition": "3", + "impact": { + "lower": "Weiler", + "upper": "Perl-Borg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Luxemburg -> Saarlouis", + "title": "A8 | Perl-Borg - Weiler", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 49.45149554100036, + "long": 6.49393985578897 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A8: Luxemburg -> Saarlouis, zwischen 7.3 km hinter AS Perl-Borg und 2.8 km vor Weiler", + "", + "L\u00e4nge: 2.71 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A008 Ern. AS Mzg.-Wellingen-AS Perl RF LUX 77,8 - KM 90,7" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.493939856, + 49.451495541 + ], + [ + 6.4939925, + 49.451486501 + ], + [ + 6.495621, + 49.451219701 + ], + [ + 6.4981072, + 49.450820301 + ], + [ + 6.5001205, + 49.450495901 + ], + [ + 6.500756, + 49.450396001 + ], + [ + 6.5029018, + 49.450049501 + ], + [ + 6.5045101, + 49.449798301 + ], + [ + 6.5053344, + 49.449681301 + ], + [ + 6.5062085, + 49.449596001 + ], + [ + 6.507065, + 49.449547301 + ], + [ + 6.5078255, + 49.449523401 + ], + [ + 6.5085425, + 49.449533101 + ], + [ + 6.5090708, + 49.449553101 + ], + [ + 6.5104899, + 49.449681901 + ], + [ + 6.5120719, + 49.449916901 + ], + [ + 6.5134036, + 49.450203101 + ], + [ + 6.5148493, + 49.450583601 + ], + [ + 6.5158502, + 49.450910001 + ], + [ + 6.5162754, + 49.451070201 + ], + [ + 6.5167006, + 49.451230301 + ], + [ + 6.5174246, + 49.451514201 + ], + [ + 6.5181439, + 49.451793601 + ], + [ + 6.5186446, + 49.451970101 + ], + [ + 6.519445, + 49.452212701 + ], + [ + 6.5200849, + 49.452383701 + ], + [ + 6.5208323, + 49.452555601 + ], + [ + 6.5216288, + 49.452717401 + ], + [ + 6.5224018, + 49.452853601 + ], + [ + 6.5233139, + 49.452986101 + ], + [ + 6.5238523, + 49.453039101 + ], + [ + 6.5242863, + 49.453080701 + ], + [ + 6.5249628, + 49.453122201 + ], + [ + 6.5253327, + 49.453135301 + ], + [ + 6.5260164, + 49.453149301 + ], + [ + 6.5264931, + 49.453142101 + ], + [ + 6.5269933, + 49.453126401 + ], + [ + 6.5272086, + 49.453116001 + ], + [ + 6.5282199, + 49.453040001 + ], + [ + 6.5287344, + 49.452980601 + ], + [ + 6.5293354, + 49.452899001 + ], + [ + 6.5299571, + 49.452800601 + ], + [ + 6.530015166, + 49.452790001 + ] + ] + } + }, + { + "identifier": "2025-030722--vi-bs.2025-07-28_08-30-00-000.devi-bs.2025-06-30_00-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.486863049121744,6.378268825981015,49.47943117154812,6.367966090826275", + "point": "49.486863049121744,6.378268825981015", + "startLcPosition": "3", + "impact": { + "lower": "Bundesgrenze", + "upper": "Perl-Borg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Luxemburg", + "title": "A8 | Perl-Borg - Bundesgrenze", + "startTimestamp": "2025-07-28T08:30:00+02:00", + "coordinate": { + "lat": 49.486863049121744, + "long": 6.378268825981015 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.07.25 um 08:30 Uhr", + "Ende: 01.08.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.27)", + "", + "A8: Saarlouis -> Luxemburg, zwischen 3.3 km hinter AS Perl-Borg und Bundesgrenze", + "", + "L\u00e4nge: 1.13 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.378268826, + 49.486863049 + ], + [ + 6.37808, + 49.486804101 + ], + [ + 6.3776161, + 49.486629901 + ], + [ + 6.3772585, + 49.486475301 + ], + [ + 6.3769455, + 49.486322901 + ], + [ + 6.3767792, + 49.486241901 + ], + [ + 6.3764422, + 49.486052701 + ], + [ + 6.3760186, + 49.485796701 + ], + [ + 6.3757522, + 49.485612301 + ], + [ + 6.3754123, + 49.485355001 + ], + [ + 6.3750792, + 49.485071201 + ], + [ + 6.3748656, + 49.484853301 + ], + [ + 6.3744609, + 49.484412201 + ], + [ + 6.3736175, + 49.483425001 + ], + [ + 6.3731166, + 49.482864601 + ], + [ + 6.3727518, + 49.482480301 + ], + [ + 6.3725881, + 49.482320001 + ], + [ + 6.3722382, + 49.481994101 + ], + [ + 6.3718457, + 49.481658101 + ], + [ + 6.3715658, + 49.481422601 + ], + [ + 6.3714457, + 49.481335701 + ], + [ + 6.3710389, + 49.481042601 + ], + [ + 6.3705288, + 49.480712501 + ], + [ + 6.3701378, + 49.480480101 + ], + [ + 6.3696764, + 49.480224001 + ], + [ + 6.3692527, + 49.480000001 + ], + [ + 6.3687631, + 49.479765701 + ], + [ + 6.3683622, + 49.479587901 + ], + [ + 6.367966091, + 49.479431172 + ] + ] + } + }, + { + "identifier": "2024-008858--vi-bs.2026-03-24_05-00-00-000.devi-zus.2025-08-26_12-00-00-000.de56", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.45212198659155,6.4906250031441575,49.45149096069475,6.493966528929812", + "point": "49.45212198659155,6.4906250031441575", + "startLcPosition": "3", + "impact": { + "lower": "Pellinger Berg", + "upper": "Perl-Borg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Luxemburg -> Saarlouis", + "title": "A8 | Perl-Borg - Pellinger Berg", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 49.45212198659155, + "long": 6.4906250031441575 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A8: Luxemburg -> Saarlouis, zwischen 7.0 km hinter AS Perl-Borg und 1.4 km vor Pellinger Berg", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A008 Ern. AS Mzg.-Wellingen-AS Perl RF LUX 77,8 - KM 90,7" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.490625003, + 49.452121987 + ], + [ + 6.4911841, + 49.452003601 + ], + [ + 6.4922791, + 49.451788801 + ], + [ + 6.4928534, + 49.451682101 + ], + [ + 6.493966529, + 49.451490961 + ] + ] + } + }, + { + "identifier": "2026-015615--vi-fbm.2026-04-20_00-00-00-000.devi-zus.2026-04-20_00-00-00-000_004.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.481485540880115,6.421060403043098,49.487824316322275,6.3848062405703905", + "point": "49.481485540880115,6.421060403043098", + "startLcPosition": "4", + "impact": { + "lower": "Perl", + "upper": "Pellinger Berg", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Luxemburg", + "title": "A8 | Pellinger Berg - Perl", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 49.481485540880115, + "long": 6.421060403043098 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 21.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.05.26)", + "", + "A8: Saarlouis -> Luxemburg, zwischen 7.9 km hinter Pellinger Berg und 0.6 km vor AS Perl", + "", + "L\u00e4nge: 3.58 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 AS Perl-Borg Umbau_Sperrung f\u00fcr Schwertransport" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.421060403, + 49.481485541 + ], + [ + 6.4206086, + 49.481826701 + ], + [ + 6.4201331, + 49.482223901 + ], + [ + 6.4197983, + 49.482531201 + ], + [ + 6.4194587, + 49.482856801 + ], + [ + 6.4190829, + 49.483256801 + ], + [ + 6.4187562, + 49.483644801 + ], + [ + 6.4184135, + 49.484074201 + ], + [ + 6.418192, + 49.484356301 + ], + [ + 6.4176708, + 49.485039901 + ], + [ + 6.4172103, + 49.485596201 + ], + [ + 6.4169306, + 49.485911101 + ], + [ + 6.4166238, + 49.486221501 + ], + [ + 6.4162196, + 49.486581001 + ], + [ + 6.4160195, + 49.486744001 + ], + [ + 6.4157206, + 49.486970201 + ], + [ + 6.4153913, + 49.487212601 + ], + [ + 6.41471, + 49.487626901 + ], + [ + 6.4140649, + 49.487963901 + ], + [ + 6.4133627, + 49.488295201 + ], + [ + 6.4126233, + 49.488612601 + ], + [ + 6.4118725, + 49.488928901 + ], + [ + 6.4112355, + 49.489208801 + ], + [ + 6.4106643, + 49.489485401 + ], + [ + 6.4100642, + 49.489839901 + ], + [ + 6.4097635, + 49.490048301 + ], + [ + 6.4094981, + 49.490229301 + ], + [ + 6.4091821, + 49.490422901 + ], + [ + 6.4087082, + 49.490798601 + ], + [ + 6.4077074, + 49.491724201 + ], + [ + 6.4069214, + 49.492416501 + ], + [ + 6.4066097, + 49.492677301 + ], + [ + 6.4063101, + 49.492902601 + ], + [ + 6.4058938, + 49.493185201 + ], + [ + 6.4054757, + 49.493430401 + ], + [ + 6.4049772, + 49.493672501 + ], + [ + 6.4045025, + 49.493890501 + ], + [ + 6.4039311, + 49.494098001 + ], + [ + 6.4033581, + 49.494272101 + ], + [ + 6.402634, + 49.494444601 + ], + [ + 6.4020188, + 49.494555401 + ], + [ + 6.40158, + 49.494611001 + ], + [ + 6.4010828, + 49.494661601 + ], + [ + 6.4004785, + 49.494693401 + ], + [ + 6.4000373, + 49.494695101 + ], + [ + 6.399579, + 49.494686101 + ], + [ + 6.3989648, + 49.494647101 + ], + [ + 6.3984857, + 49.494589401 + ], + [ + 6.3979599, + 49.494507601 + ], + [ + 6.3974763, + 49.494409301 + ], + [ + 6.3969941, + 49.494288501 + ], + [ + 6.3964992, + 49.494139301 + ], + [ + 6.3959117, + 49.493924301 + ], + [ + 6.3951846, + 49.493595301 + ], + [ + 6.3946061, + 49.493305301 + ], + [ + 6.3940346, + 49.492978401 + ], + [ + 6.3935513, + 49.492662001 + ], + [ + 6.3927807, + 49.492081901 + ], + [ + 6.3921572, + 49.491556801 + ], + [ + 6.3915866, + 49.491072901 + ], + [ + 6.3909724, + 49.490564401 + ], + [ + 6.390264, + 49.490010801 + ], + [ + 6.3899373, + 49.489775301 + ], + [ + 6.3896093, + 49.489547501 + ], + [ + 6.3892889, + 49.489348701 + ], + [ + 6.3889639, + 49.489156601 + ], + [ + 6.3884509, + 49.488886901 + ], + [ + 6.3877479, + 49.488579001 + ], + [ + 6.3873202, + 49.488414001 + ], + [ + 6.3868658, + 49.488266901 + ], + [ + 6.3862218, + 49.488086401 + ], + [ + 6.3857119, + 49.487974301 + ], + [ + 6.3849404, + 49.487842501 + ], + [ + 6.384806241, + 49.487824316 + ] + ] + } + }, + { + "identifier": "2024-008858--vi-bs.2026-03-24_05-00-00-000.devi-zus.2025-08-26_12-00-00-000.de60", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.452883016198506,6.530056589124888,49.45159415958584,6.493979249369219", + "point": "49.452883016198506,6.530056589124888", + "startLcPosition": "6", + "impact": { + "lower": "Perl-Borg", + "upper": "Weiler", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Luxemburg", + "title": "A8 | Weiler - Perl-Borg", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 49.452883016198506, + "long": 6.530056589124888 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A8: Saarlouis -> Luxemburg, zwischen 2.8 km hinter Weiler und 7.3 km vor AS Perl-Borg", + "", + "L\u00e4nge: 2.71 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A008 Ern. AS Mzg.-Wellingen-AS Perl RF LUX 77,8 - KM 90,7" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.530056589, + 49.452883016 + ], + [ + 6.529982, + 49.452897701 + ], + [ + 6.5293732, + 49.452992301 + ], + [ + 6.5287659, + 49.453073301 + ], + [ + 6.528222, + 49.453132701 + ], + [ + 6.5273915, + 49.453198901 + ], + [ + 6.5269803, + 49.453223001 + ], + [ + 6.526476, + 49.453236101 + ], + [ + 6.5260026, + 49.453242201 + ], + [ + 6.525328, + 49.453229101 + ], + [ + 6.5245369, + 49.453201301 + ], + [ + 6.5238091, + 49.453134701 + ], + [ + 6.5232686, + 49.453078801 + ], + [ + 6.5223599, + 49.452949901 + ], + [ + 6.5215782, + 49.452818201 + ], + [ + 6.5207681, + 49.452649601 + ], + [ + 6.5200217, + 49.452482901 + ], + [ + 6.5192748, + 49.452290801 + ], + [ + 6.5185339, + 49.452077401 + ], + [ + 6.5180437, + 49.451923101 + ], + [ + 6.5170924, + 49.451601301 + ], + [ + 6.516437, + 49.451377701 + ], + [ + 6.5156759, + 49.451118401 + ], + [ + 6.514896, + 49.450897701 + ], + [ + 6.5144837, + 49.450781101 + ], + [ + 6.513306, + 49.450488501 + ], + [ + 6.5120268, + 49.450223201 + ], + [ + 6.5103784, + 49.449976501 + ], + [ + 6.5089863, + 49.449881401 + ], + [ + 6.5084886, + 49.449861601 + ], + [ + 6.5078208, + 49.449837301 + ], + [ + 6.5070783, + 49.449835401 + ], + [ + 6.5063949, + 49.449845301 + ], + [ + 6.5053702, + 49.449897101 + ], + [ + 6.5042296, + 49.449998501 + ], + [ + 6.5035449, + 49.450079101 + ], + [ + 6.5027049, + 49.450193201 + ], + [ + 6.5018162, + 49.450329201 + ], + [ + 6.5001649, + 49.450595301 + ], + [ + 6.4993738, + 49.450721001 + ], + [ + 6.4988321, + 49.450812001 + ], + [ + 6.4956218, + 49.451322501 + ], + [ + 6.493979249, + 49.45159416 + ] + ] + } + }, + { + "identifier": "2024-008858--vi-bs.2026-03-24_05-00-00-000.devi-zus.2025-08-26_12-00-00-000.de62", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.451823834715455,6.535944634888687,49.45302393551673,6.52288181117849", + "point": "49.451823834715455,6.535944634888687", + "startLcPosition": "6", + "impact": { + "lower": "Merzig-Wellingen", + "upper": "Weiler", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Luxemburg", + "title": "A8 | Weiler - Merzig-Wellingen", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 49.451823834715455, + "long": 6.535944634888687 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A8: Saarlouis -> Luxemburg, zwischen 2.3 km hinter Weiler und 0.3 km vor AS Merzig-Wellingen", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A008 Ern. AS Mzg.-Wellingen-AS Perl RF LUX 77,8 - KM 90,7" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.535944635, + 49.451823835 + ], + [ + 6.5356661, + 49.451851301 + ], + [ + 6.534912, + 49.451952101 + ], + [ + 6.5339995, + 49.452100801 + ], + [ + 6.5323289, + 49.452433601 + ], + [ + 6.5319466, + 49.452510901 + ], + [ + 6.529982, + 49.452897701 + ], + [ + 6.5293732, + 49.452992301 + ], + [ + 6.5287659, + 49.453073301 + ], + [ + 6.528222, + 49.453132701 + ], + [ + 6.5273915, + 49.453198901 + ], + [ + 6.5269803, + 49.453223001 + ], + [ + 6.526476, + 49.453236101 + ], + [ + 6.5260026, + 49.453242201 + ], + [ + 6.525328, + 49.453229101 + ], + [ + 6.5245369, + 49.453201301 + ], + [ + 6.5238091, + 49.453134701 + ], + [ + 6.5232686, + 49.453078801 + ], + [ + 6.522881811, + 49.453023936 + ] + ] + } + }, + { + "identifier": "2026-017648--vi-bs.2026-04-09_07-30-00-000.devi-bs.2026-04-09_07-30-00-000_013.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.33468464017742,6.728642546242962,49.31959369569258,6.866485510019016", + "point": "49.33468464017742,6.728642546242962", + "startLcPosition": "12", + "impact": { + "lower": "Schwalbach/Schwarzenholz", + "upper": "Saarlouis", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Luxemburg -> Neunkirchen", + "title": "A8 | Saarlouis - Schwalbach/Schwarzenholz", + "coordinate": { + "lat": 49.33468464017742, + "long": 6.728642546242962 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 12:00 Uhr", + "", + "A8: Luxemburg -> Neunkirchen, zwischen 0.2 km hinter AD Saarlouis und 0.1 km vor AS Schwalbach/Schwarzenholz", + "", + "L\u00e4nge: 11.63 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 von Dillingen-S\u00fcd (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.728642546, + 49.33468464 + ], + [ + 6.7293625, + 49.335277301 + ], + [ + 6.7298852, + 49.335715501 + ], + [ + 6.7301291, + 49.335927101 + ], + [ + 6.73025, + 49.336039701 + ], + [ + 6.7307344, + 49.336456301 + ], + [ + 6.7312968, + 49.336935201 + ], + [ + 6.7320385, + 49.337540201 + ], + [ + 6.7325099, + 49.337915201 + ], + [ + 6.733013, + 49.338282801 + ], + [ + 6.7334205, + 49.338576101 + ], + [ + 6.7337921, + 49.338835501 + ], + [ + 6.734171, + 49.339084201 + ], + [ + 6.7346995, + 49.339404201 + ], + [ + 6.7351728, + 49.339667601 + ], + [ + 6.7356447, + 49.339909201 + ], + [ + 6.7360876, + 49.340117201 + ], + [ + 6.7365217, + 49.340309801 + ], + [ + 6.7370331, + 49.340521501 + ], + [ + 6.737612, + 49.340740301 + ], + [ + 6.7380494, + 49.340893801 + ], + [ + 6.7387197, + 49.341113001 + ], + [ + 6.7392124, + 49.341252501 + ], + [ + 6.7399857, + 49.341447101 + ], + [ + 6.7407229, + 49.341609501 + ], + [ + 6.7415702, + 49.341771801 + ], + [ + 6.7423746, + 49.341881701 + ], + [ + 6.7430921, + 49.341966501 + ], + [ + 6.7435145, + 49.342005801 + ], + [ + 6.7438525, + 49.342029401 + ], + [ + 6.7443706, + 49.342066101 + ], + [ + 6.7447464, + 49.342088101 + ], + [ + 6.7451426, + 49.342105401 + ], + [ + 6.7457984, + 49.342128601 + ], + [ + 6.7466299, + 49.342132901 + ], + [ + 6.7472737, + 49.342127701 + ], + [ + 6.7481463, + 49.342108901 + ], + [ + 6.7487904, + 49.342081001 + ], + [ + 6.7499666, + 49.342015001 + ], + [ + 6.7509796, + 49.341938401 + ], + [ + 6.7519057, + 49.341864801 + ], + [ + 6.7530525, + 49.341755501 + ], + [ + 6.7547946, + 49.341576301 + ], + [ + 6.7555697, + 49.341495101 + ], + [ + 6.7573024, + 49.341339501 + ], + [ + 6.7580749, + 49.341285401 + ], + [ + 6.758665, + 49.341253901 + ], + [ + 6.7593644, + 49.341236201 + ], + [ + 6.759996, + 49.341234501 + ], + [ + 6.760743, + 49.341260701 + ], + [ + 6.7614109, + 49.341307201 + ], + [ + 6.7620037, + 49.341371201 + ], + [ + 6.7626058, + 49.341455101 + ], + [ + 6.7631543, + 49.341550301 + ], + [ + 6.7638075, + 49.341683201 + ], + [ + 6.7642031, + 49.341779301 + ], + [ + 6.7647087, + 49.341909501 + ], + [ + 6.7652143, + 49.342052801 + ], + [ + 6.7657212, + 49.342212701 + ], + [ + 6.7663381, + 49.342421501 + ], + [ + 6.76701, + 49.342671401 + ], + [ + 6.7682774, + 49.343166001 + ], + [ + 6.7688849, + 49.343414101 + ], + [ + 6.7703683, + 49.344010201 + ], + [ + 6.7710946, + 49.344299101 + ], + [ + 6.7720052, + 49.344645101 + ], + [ + 6.7727373, + 49.344900201 + ], + [ + 6.7733235, + 49.345102501 + ], + [ + 6.7737579, + 49.345237601 + ], + [ + 6.7744975, + 49.345454501 + ], + [ + 6.7752821, + 49.345661601 + ], + [ + 6.7758525, + 49.345794301 + ], + [ + 6.7765786, + 49.345932701 + ], + [ + 6.7772648, + 49.346044301 + ], + [ + 6.7777389, + 49.346110101 + ], + [ + 6.7782221, + 49.346161201 + ], + [ + 6.7788631, + 49.346206701 + ], + [ + 6.7794069, + 49.346232201 + ], + [ + 6.779829, + 49.346239901 + ], + [ + 6.7802388, + 49.346239001 + ], + [ + 6.7809342, + 49.346215801 + ], + [ + 6.7815758, + 49.346166701 + ], + [ + 6.7818636, + 49.346140501 + ], + [ + 6.7823727, + 49.346081801 + ], + [ + 6.7828289, + 49.346017201 + ], + [ + 6.7834866, + 49.345902101 + ], + [ + 6.7839383, + 49.345811601 + ], + [ + 6.784346, + 49.345717501 + ], + [ + 6.7848676, + 49.345584801 + ], + [ + 6.7857513, + 49.345341601 + ], + [ + 6.7898214, + 49.344230101 + ], + [ + 6.7915192, + 49.343764201 + ], + [ + 6.7929704, + 49.343364101 + ], + [ + 6.793551, + 49.343206501 + ], + [ + 6.793789, + 49.343138301 + ], + [ + 6.7950704, + 49.342791501 + ], + [ + 6.7960897, + 49.342494401 + ], + [ + 6.7963863, + 49.342402801 + ], + [ + 6.7968196, + 49.342263301 + ], + [ + 6.7972605, + 49.342106801 + ], + [ + 6.7978693, + 49.341860401 + ], + [ + 6.798268, + 49.341686601 + ], + [ + 6.7986364, + 49.341510901 + ], + [ + 6.7990577, + 49.341285501 + ], + [ + 6.7994035, + 49.341098501 + ], + [ + 6.7997291, + 49.340914201 + ], + [ + 6.8001452, + 49.340648301 + ], + [ + 6.8004819, + 49.340416001 + ], + [ + 6.8007851, + 49.340194301 + ], + [ + 6.8011313, + 49.339920301 + ], + [ + 6.8014893, + 49.339618801 + ], + [ + 6.8019012, + 49.339235701 + ], + [ + 6.8022141, + 49.338905301 + ], + [ + 6.8024653, + 49.338607301 + ], + [ + 6.8027887, + 49.338187601 + ], + [ + 6.8030547, + 49.337805501 + ], + [ + 6.8034154, + 49.337215201 + ], + [ + 6.8037733, + 49.336558201 + ], + [ + 6.8045214, + 49.335116901 + ], + [ + 6.8047431, + 49.334754601 + ], + [ + 6.8049331, + 49.334426401 + ], + [ + 6.805237, + 49.333994801 + ], + [ + 6.8054518, + 49.333712301 + ], + [ + 6.8056441, + 49.333486101 + ], + [ + 6.8060251, + 49.333069101 + ], + [ + 6.8064642, + 49.332649501 + ], + [ + 6.8067851, + 49.332364201 + ], + [ + 6.8071892, + 49.332044001 + ], + [ + 6.807599, + 49.331743101 + ], + [ + 6.8081784, + 49.331362901 + ], + [ + 6.8087282, + 49.331041301 + ], + [ + 6.8092484, + 49.330768301 + ], + [ + 6.8095195, + 49.330632701 + ], + [ + 6.8100693, + 49.330383201 + ], + [ + 6.8107198, + 49.330123201 + ], + [ + 6.8113562, + 49.329896201 + ], + [ + 6.8117191, + 49.329774401 + ], + [ + 6.8118692, + 49.329732601 + ], + [ + 6.8126512, + 49.329509201 + ], + [ + 6.8130137, + 49.329418801 + ], + [ + 6.8135039, + 49.329314601 + ], + [ + 6.8142321, + 49.329177401 + ], + [ + 6.8149362, + 49.329072501 + ], + [ + 6.8154566, + 49.329006101 + ], + [ + 6.8158723, + 49.328962001 + ], + [ + 6.8164798, + 49.328915601 + ], + [ + 6.8172134, + 49.328870201 + ], + [ + 6.8181495, + 49.328835701 + ], + [ + 6.8187491, + 49.328828301 + ], + [ + 6.8199633, + 49.328828301 + ], + [ + 6.82165, + 49.328858501 + ], + [ + 6.8233589, + 49.328890001 + ], + [ + 6.8248318, + 49.328904801 + ], + [ + 6.8258278, + 49.328904801 + ], + [ + 6.8267593, + 49.328890901 + ], + [ + 6.8273558, + 49.328869201 + ], + [ + 6.8280722, + 49.328834401 + ], + [ + 6.8288005, + 49.328785801 + ], + [ + 6.8294994, + 49.328722601 + ], + [ + 6.830283, + 49.328632601 + ], + [ + 6.8312435, + 49.328496301 + ], + [ + 6.8318716, + 49.328389901 + ], + [ + 6.8326186, + 49.328243201 + ], + [ + 6.8330847, + 49.328141901 + ], + [ + 6.8337437, + 49.327984001 + ], + [ + 6.8342276, + 49.327856701 + ], + [ + 6.8349529, + 49.327652501 + ], + [ + 6.8355808, + 49.327460001 + ], + [ + 6.8361807, + 49.327250401 + ], + [ + 6.8365221, + 49.327129001 + ], + [ + 6.8371051, + 49.326905601 + ], + [ + 6.8377014, + 49.326657001 + ], + [ + 6.8381201, + 49.326475901 + ], + [ + 6.8387075, + 49.326200801 + ], + [ + 6.839277, + 49.325920801 + ], + [ + 6.8398824, + 49.325607901 + ], + [ + 6.8405082, + 49.325265001 + ], + [ + 6.8413876, + 49.324753501 + ], + [ + 6.8430775, + 49.323746901 + ], + [ + 6.8434049, + 49.323548301 + ], + [ + 6.8442917, + 49.323023801 + ], + [ + 6.8450191, + 49.322605701 + ], + [ + 6.8455796, + 49.322294001 + ], + [ + 6.8463481, + 49.321888001 + ], + [ + 6.8470083, + 49.321565001 + ], + [ + 6.847784, + 49.321208901 + ], + [ + 6.8484476, + 49.320927001 + ], + [ + 6.8490499, + 49.320692301 + ], + [ + 6.8496752, + 49.320469101 + ], + [ + 6.8503893, + 49.320238601 + ], + [ + 6.8510214, + 49.320045501 + ], + [ + 6.8517724, + 49.319846801 + ], + [ + 6.8523235, + 49.319709601 + ], + [ + 6.8531741, + 49.319527801 + ], + [ + 6.8536099, + 49.319442301 + ], + [ + 6.8541547, + 49.319344901 + ], + [ + 6.8547941, + 49.319244001 + ], + [ + 6.8553359, + 49.319170401 + ], + [ + 6.8558827, + 49.319102701 + ], + [ + 6.8564585, + 49.319042401 + ], + [ + 6.8571057, + 49.318993601 + ], + [ + 6.8578252, + 49.318953201 + ], + [ + 6.858488, + 49.318928001 + ], + [ + 6.8590971, + 49.318920901 + ], + [ + 6.8600303, + 49.318928201 + ], + [ + 6.8609968, + 49.318957301 + ], + [ + 6.8618275, + 49.319005601 + ], + [ + 6.8626996, + 49.319072601 + ], + [ + 6.8638939, + 49.319198001 + ], + [ + 6.865114, + 49.319364901 + ], + [ + 6.8660683, + 49.319522801 + ], + [ + 6.86648551, + 49.319593696 + ] + ] + } + }, + { + "identifier": "2026-017640--vi-bs.2026-04-09_07-30-00-000_016.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.334663512114915,6.728616880662608,49.3206542277824,6.870838782809162", + "point": "49.334663512114915,6.728616880662608", + "startLcPosition": "12", + "impact": { + "lower": "Heusweiler", + "upper": "Saarlouis", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Luxemburg -> Neunkirchen", + "title": "A8 | Saarlouis - Heusweiler", + "coordinate": { + "lat": 49.334663512114915, + "long": 6.728616880662608 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 12:00 Uhr", + "", + "A8: Luxemburg -> Neunkirchen, zwischen 0.2 km hinter AD Saarlouis und 5.7 km vor AS Heusweiler", + "", + "L\u00e4nge: 11.97 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 von Dillingen-S\u00fcd (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.728616881, + 49.334663512 + ], + [ + 6.7293625, + 49.335277301 + ], + [ + 6.7298852, + 49.335715501 + ], + [ + 6.7301291, + 49.335927101 + ], + [ + 6.73025, + 49.336039701 + ], + [ + 6.7307344, + 49.336456301 + ], + [ + 6.7312968, + 49.336935201 + ], + [ + 6.7320385, + 49.337540201 + ], + [ + 6.7325099, + 49.337915201 + ], + [ + 6.733013, + 49.338282801 + ], + [ + 6.7334205, + 49.338576101 + ], + [ + 6.7337921, + 49.338835501 + ], + [ + 6.734171, + 49.339084201 + ], + [ + 6.7346995, + 49.339404201 + ], + [ + 6.7351728, + 49.339667601 + ], + [ + 6.7356447, + 49.339909201 + ], + [ + 6.7360876, + 49.340117201 + ], + [ + 6.7365217, + 49.340309801 + ], + [ + 6.7370331, + 49.340521501 + ], + [ + 6.737612, + 49.340740301 + ], + [ + 6.7380494, + 49.340893801 + ], + [ + 6.7387197, + 49.341113001 + ], + [ + 6.7392124, + 49.341252501 + ], + [ + 6.7399857, + 49.341447101 + ], + [ + 6.7407229, + 49.341609501 + ], + [ + 6.7415702, + 49.341771801 + ], + [ + 6.7423746, + 49.341881701 + ], + [ + 6.7430921, + 49.341966501 + ], + [ + 6.7435145, + 49.342005801 + ], + [ + 6.7438525, + 49.342029401 + ], + [ + 6.7443706, + 49.342066101 + ], + [ + 6.7447464, + 49.342088101 + ], + [ + 6.7451426, + 49.342105401 + ], + [ + 6.7457984, + 49.342128601 + ], + [ + 6.7466299, + 49.342132901 + ], + [ + 6.7472737, + 49.342127701 + ], + [ + 6.7481463, + 49.342108901 + ], + [ + 6.7487904, + 49.342081001 + ], + [ + 6.7499666, + 49.342015001 + ], + [ + 6.7509796, + 49.341938401 + ], + [ + 6.7519057, + 49.341864801 + ], + [ + 6.7530525, + 49.341755501 + ], + [ + 6.7547946, + 49.341576301 + ], + [ + 6.7555697, + 49.341495101 + ], + [ + 6.7573024, + 49.341339501 + ], + [ + 6.7580749, + 49.341285401 + ], + [ + 6.758665, + 49.341253901 + ], + [ + 6.7593644, + 49.341236201 + ], + [ + 6.759996, + 49.341234501 + ], + [ + 6.760743, + 49.341260701 + ], + [ + 6.7614109, + 49.341307201 + ], + [ + 6.7620037, + 49.341371201 + ], + [ + 6.7626058, + 49.341455101 + ], + [ + 6.7631543, + 49.341550301 + ], + [ + 6.7638075, + 49.341683201 + ], + [ + 6.7642031, + 49.341779301 + ], + [ + 6.7647087, + 49.341909501 + ], + [ + 6.7652143, + 49.342052801 + ], + [ + 6.7657212, + 49.342212701 + ], + [ + 6.7663381, + 49.342421501 + ], + [ + 6.76701, + 49.342671401 + ], + [ + 6.7682774, + 49.343166001 + ], + [ + 6.7688849, + 49.343414101 + ], + [ + 6.7703683, + 49.344010201 + ], + [ + 6.7710946, + 49.344299101 + ], + [ + 6.7720052, + 49.344645101 + ], + [ + 6.7727373, + 49.344900201 + ], + [ + 6.7733235, + 49.345102501 + ], + [ + 6.7737579, + 49.345237601 + ], + [ + 6.7744975, + 49.345454501 + ], + [ + 6.7752821, + 49.345661601 + ], + [ + 6.7758525, + 49.345794301 + ], + [ + 6.7765786, + 49.345932701 + ], + [ + 6.7772648, + 49.346044301 + ], + [ + 6.7777389, + 49.346110101 + ], + [ + 6.7782221, + 49.346161201 + ], + [ + 6.7788631, + 49.346206701 + ], + [ + 6.7794069, + 49.346232201 + ], + [ + 6.779829, + 49.346239901 + ], + [ + 6.7802388, + 49.346239001 + ], + [ + 6.7809342, + 49.346215801 + ], + [ + 6.7815758, + 49.346166701 + ], + [ + 6.7818636, + 49.346140501 + ], + [ + 6.7823727, + 49.346081801 + ], + [ + 6.7828289, + 49.346017201 + ], + [ + 6.7834866, + 49.345902101 + ], + [ + 6.7839383, + 49.345811601 + ], + [ + 6.784346, + 49.345717501 + ], + [ + 6.7848676, + 49.345584801 + ], + [ + 6.7857513, + 49.345341601 + ], + [ + 6.7898214, + 49.344230101 + ], + [ + 6.7915192, + 49.343764201 + ], + [ + 6.7929704, + 49.343364101 + ], + [ + 6.793551, + 49.343206501 + ], + [ + 6.793789, + 49.343138301 + ], + [ + 6.7950704, + 49.342791501 + ], + [ + 6.7960897, + 49.342494401 + ], + [ + 6.7963863, + 49.342402801 + ], + [ + 6.7968196, + 49.342263301 + ], + [ + 6.7972605, + 49.342106801 + ], + [ + 6.7978693, + 49.341860401 + ], + [ + 6.798268, + 49.341686601 + ], + [ + 6.7986364, + 49.341510901 + ], + [ + 6.7990577, + 49.341285501 + ], + [ + 6.7994035, + 49.341098501 + ], + [ + 6.7997291, + 49.340914201 + ], + [ + 6.8001452, + 49.340648301 + ], + [ + 6.8004819, + 49.340416001 + ], + [ + 6.8007851, + 49.340194301 + ], + [ + 6.8011313, + 49.339920301 + ], + [ + 6.8014893, + 49.339618801 + ], + [ + 6.8019012, + 49.339235701 + ], + [ + 6.8022141, + 49.338905301 + ], + [ + 6.8024653, + 49.338607301 + ], + [ + 6.8027887, + 49.338187601 + ], + [ + 6.8030547, + 49.337805501 + ], + [ + 6.8034154, + 49.337215201 + ], + [ + 6.8037733, + 49.336558201 + ], + [ + 6.8045214, + 49.335116901 + ], + [ + 6.8047431, + 49.334754601 + ], + [ + 6.8049331, + 49.334426401 + ], + [ + 6.805237, + 49.333994801 + ], + [ + 6.8054518, + 49.333712301 + ], + [ + 6.8056441, + 49.333486101 + ], + [ + 6.8060251, + 49.333069101 + ], + [ + 6.8064642, + 49.332649501 + ], + [ + 6.8067851, + 49.332364201 + ], + [ + 6.8071892, + 49.332044001 + ], + [ + 6.807599, + 49.331743101 + ], + [ + 6.8081784, + 49.331362901 + ], + [ + 6.8087282, + 49.331041301 + ], + [ + 6.8092484, + 49.330768301 + ], + [ + 6.8095195, + 49.330632701 + ], + [ + 6.8100693, + 49.330383201 + ], + [ + 6.8107198, + 49.330123201 + ], + [ + 6.8113562, + 49.329896201 + ], + [ + 6.8117191, + 49.329774401 + ], + [ + 6.8118692, + 49.329732601 + ], + [ + 6.8126512, + 49.329509201 + ], + [ + 6.8130137, + 49.329418801 + ], + [ + 6.8135039, + 49.329314601 + ], + [ + 6.8142321, + 49.329177401 + ], + [ + 6.8149362, + 49.329072501 + ], + [ + 6.8154566, + 49.329006101 + ], + [ + 6.8158723, + 49.328962001 + ], + [ + 6.8164798, + 49.328915601 + ], + [ + 6.8172134, + 49.328870201 + ], + [ + 6.8181495, + 49.328835701 + ], + [ + 6.8187491, + 49.328828301 + ], + [ + 6.8199633, + 49.328828301 + ], + [ + 6.82165, + 49.328858501 + ], + [ + 6.8233589, + 49.328890001 + ], + [ + 6.8248318, + 49.328904801 + ], + [ + 6.8258278, + 49.328904801 + ], + [ + 6.8267593, + 49.328890901 + ], + [ + 6.8273558, + 49.328869201 + ], + [ + 6.8280722, + 49.328834401 + ], + [ + 6.8288005, + 49.328785801 + ], + [ + 6.8294994, + 49.328722601 + ], + [ + 6.830283, + 49.328632601 + ], + [ + 6.8312435, + 49.328496301 + ], + [ + 6.8318716, + 49.328389901 + ], + [ + 6.8326186, + 49.328243201 + ], + [ + 6.8330847, + 49.328141901 + ], + [ + 6.8337437, + 49.327984001 + ], + [ + 6.8342276, + 49.327856701 + ], + [ + 6.8349529, + 49.327652501 + ], + [ + 6.8355808, + 49.327460001 + ], + [ + 6.8361807, + 49.327250401 + ], + [ + 6.8365221, + 49.327129001 + ], + [ + 6.8371051, + 49.326905601 + ], + [ + 6.8377014, + 49.326657001 + ], + [ + 6.8381201, + 49.326475901 + ], + [ + 6.8387075, + 49.326200801 + ], + [ + 6.839277, + 49.325920801 + ], + [ + 6.8398824, + 49.325607901 + ], + [ + 6.8405082, + 49.325265001 + ], + [ + 6.8413876, + 49.324753501 + ], + [ + 6.8430775, + 49.323746901 + ], + [ + 6.8434049, + 49.323548301 + ], + [ + 6.8442917, + 49.323023801 + ], + [ + 6.8450191, + 49.322605701 + ], + [ + 6.8455796, + 49.322294001 + ], + [ + 6.8463481, + 49.321888001 + ], + [ + 6.8470083, + 49.321565001 + ], + [ + 6.847784, + 49.321208901 + ], + [ + 6.8484476, + 49.320927001 + ], + [ + 6.8490499, + 49.320692301 + ], + [ + 6.8496752, + 49.320469101 + ], + [ + 6.8503893, + 49.320238601 + ], + [ + 6.8510214, + 49.320045501 + ], + [ + 6.8517724, + 49.319846801 + ], + [ + 6.8523235, + 49.319709601 + ], + [ + 6.8531741, + 49.319527801 + ], + [ + 6.8536099, + 49.319442301 + ], + [ + 6.8541547, + 49.319344901 + ], + [ + 6.8547941, + 49.319244001 + ], + [ + 6.8553359, + 49.319170401 + ], + [ + 6.8558827, + 49.319102701 + ], + [ + 6.8564585, + 49.319042401 + ], + [ + 6.8571057, + 49.318993601 + ], + [ + 6.8578252, + 49.318953201 + ], + [ + 6.858488, + 49.318928001 + ], + [ + 6.8590971, + 49.318920901 + ], + [ + 6.8600303, + 49.318928201 + ], + [ + 6.8609968, + 49.318957301 + ], + [ + 6.8618275, + 49.319005601 + ], + [ + 6.8626996, + 49.319072601 + ], + [ + 6.8638939, + 49.319198001 + ], + [ + 6.865114, + 49.319364901 + ], + [ + 6.8660683, + 49.319522801 + ], + [ + 6.8665644, + 49.319607101 + ], + [ + 6.867057, + 49.319700001 + ], + [ + 6.8675677, + 49.319806701 + ], + [ + 6.8685609, + 49.320030901 + ], + [ + 6.8697257, + 49.320331401 + ], + [ + 6.870838783, + 49.320654228 + ] + ] + } + }, + { + "identifier": "2023-001082--vi-bs.2026-03-02_00-00-00-000.devi-zus.2025-03-03_00-00-00-000.f_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.319205861489465,6.86395136116646,49.32153304986232,6.873418299926924", + "point": "49.319205861489465,6.86395136116646", + "startLcPosition": "17", + "impact": { + "lower": "Heusweiler", + "upper": "Schwalbach", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Neunkirchen", + "title": "A8 | Schwalbach - Heusweiler", + "startTimestamp": "2026-03-02T00:00:00+01:00", + "coordinate": { + "lat": 49.319205861489465, + "long": 6.86395136116646 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "A8: Saarlouis -> Neunkirchen, zwischen 4.1 km hinter AS Schwalbach und 5.5 km vor AS Heusweiler", + "", + "L\u00e4nge: 0.74 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 Schwarzenholz, Planung BW 1342 (BW6607561), Verst\u00e4rkung Pfeiler, km 41,9" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.863951361, + 49.319205861 + ], + [ + 6.865114, + 49.319364901 + ], + [ + 6.8660683, + 49.319522801 + ], + [ + 6.8665644, + 49.319607101 + ], + [ + 6.867057, + 49.319700001 + ], + [ + 6.8675677, + 49.319806701 + ], + [ + 6.8685609, + 49.320030901 + ], + [ + 6.8696314, + 49.320304101 + ], + [ + 6.8708911, + 49.320669401 + ], + [ + 6.8720807, + 49.321053001 + ], + [ + 6.8725199, + 49.321211401 + ], + [ + 6.8734183, + 49.32153305 + ] + ] + } + }, + { + "identifier": "2026-017648--vi-bs.2026-04-09_07-30-00-000.devi-bs.2026-04-09_07-30-00-000_013.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.31966900087818,6.866255264915001,49.33520240847425,6.729059997357307", + "point": "49.31966900087818,6.866255264915001", + "startLcPosition": "18", + "impact": { + "lower": "Saarlouis", + "upper": "Schwalbach/Schwarzenholz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Neunkirchen -> Luxemburg", + "title": "A8 | Schwalbach/Schwarzenholz - Saarlouis", + "coordinate": { + "lat": 49.31966900087818, + "long": 6.866255264915001 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 12:00 Uhr", + "", + "A8: Neunkirchen -> Luxemburg, zwischen 0.1 km hinter AS Schwalbach/Schwarzenholz und 0.2 km vor AD Saarlouis", + "", + "L\u00e4nge: 11.55 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 von Dillingen-S\u00fcd (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.866255265, + 49.319669001 + ], + [ + 6.8660256, + 49.319627001 + ], + [ + 6.8650766, + 49.319470001 + ], + [ + 6.8638637, + 49.319304001 + ], + [ + 6.8626768, + 49.319179401 + ], + [ + 6.8618105, + 49.319112901 + ], + [ + 6.8609856, + 49.319064901 + ], + [ + 6.8600255, + 49.319036001 + ], + [ + 6.8590976, + 49.319028701 + ], + [ + 6.8584943, + 49.319035801 + ], + [ + 6.8578371, + 49.319060701 + ], + [ + 6.8571223, + 49.319100901 + ], + [ + 6.8564811, + 49.319149201 + ], + [ + 6.8559113, + 49.319208901 + ], + [ + 6.8553682, + 49.319276201 + ], + [ + 6.8548304, + 49.319349201 + ], + [ + 6.854196, + 49.319449301 + ], + [ + 6.8536556, + 49.319545901 + ], + [ + 6.8532237, + 49.319630701 + ], + [ + 6.8523788, + 49.319811201 + ], + [ + 6.851833, + 49.319947101 + ], + [ + 6.8510876, + 49.320144301 + ], + [ + 6.8504611, + 49.320335701 + ], + [ + 6.8497516, + 49.320564701 + ], + [ + 6.849132, + 49.320785901 + ], + [ + 6.8485352, + 49.321018401 + ], + [ + 6.8478768, + 49.321298201 + ], + [ + 6.8471056, + 49.321652201 + ], + [ + 6.8464498, + 49.321973001 + ], + [ + 6.8456854, + 49.322376801 + ], + [ + 6.8451275, + 49.322687201 + ], + [ + 6.844402, + 49.323104101 + ], + [ + 6.8435168, + 49.323627701 + ], + [ + 6.8431896, + 49.323826101 + ], + [ + 6.8414985, + 49.324833501 + ], + [ + 6.8406165, + 49.325346501 + ], + [ + 6.839987, + 49.325691501 + ], + [ + 6.8393782, + 49.326006101 + ], + [ + 6.8388055, + 49.326287601 + ], + [ + 6.8382141, + 49.326564601 + ], + [ + 6.8377917, + 49.326747301 + ], + [ + 6.8371922, + 49.326997301 + ], + [ + 6.8366092, + 49.327226601 + ], + [ + 6.8362682, + 49.327348601 + ], + [ + 6.8356539, + 49.327556701 + ], + [ + 6.8350209, + 49.327750701 + ], + [ + 6.8342914, + 49.327956101 + ], + [ + 6.8338032, + 49.328084601 + ], + [ + 6.8331394, + 49.328243701 + ], + [ + 6.8326686, + 49.328346001 + ], + [ + 6.8319163, + 49.328493701 + ], + [ + 6.8312819, + 49.328601201 + ], + [ + 6.830315, + 49.328738401 + ], + [ + 6.8295251, + 49.328829101 + ], + [ + 6.8288203, + 49.328892901 + ], + [ + 6.8280868, + 49.328941801 + ], + [ + 6.8273666, + 49.328976801 + ], + [ + 6.8267658, + 49.328998601 + ], + [ + 6.8258297, + 49.329012601 + ], + [ + 6.8248306, + 49.329012601 + ], + [ + 6.8233553, + 49.328997801 + ], + [ + 6.8216454, + 49.328966301 + ], + [ + 6.819961, + 49.328936101 + ], + [ + 6.8187513, + 49.328936101 + ], + [ + 6.8181572, + 49.328946601 + ], + [ + 6.8172386, + 49.328979401 + ], + [ + 6.8165144, + 49.329025701 + ], + [ + 6.8154991, + 49.329122701 + ], + [ + 6.8149788, + 49.329179501 + ], + [ + 6.8142962, + 49.329282701 + ], + [ + 6.813576, + 49.329415501 + ], + [ + 6.8128913, + 49.329572001 + ], + [ + 6.8125468, + 49.329662601 + ], + [ + 6.8121368, + 49.329775701 + ], + [ + 6.8117947, + 49.329878001 + ], + [ + 6.8113127, + 49.330035101 + ], + [ + 6.8108308, + 49.330207801 + ], + [ + 6.8103426, + 49.330401801 + ], + [ + 6.8099295, + 49.330580101 + ], + [ + 6.8094186, + 49.330822201 + ], + [ + 6.8091493, + 49.330959201 + ], + [ + 6.8088593, + 49.331114101 + ], + [ + 6.8082934, + 49.331447101 + ], + [ + 6.8077194, + 49.331825601 + ], + [ + 6.8073171, + 49.332117501 + ], + [ + 6.8069214, + 49.332433001 + ], + [ + 6.8066049, + 49.332714401 + ], + [ + 6.8061704, + 49.333129501 + ], + [ + 6.8057936, + 49.333542001 + ], + [ + 6.8056045, + 49.333764401 + ], + [ + 6.8053926, + 49.334043201 + ], + [ + 6.8050922, + 49.334469701 + ], + [ + 6.8049038, + 49.334795201 + ], + [ + 6.8046831, + 49.335155701 + ], + [ + 6.8039361, + 49.336595001 + ], + [ + 6.8035767, + 49.337254801 + ], + [ + 6.8032133, + 49.337849401 + ], + [ + 6.8029442, + 49.338236001 + ], + [ + 6.8026178, + 49.338659501 + ], + [ + 6.802363, + 49.338961901 + ], + [ + 6.8020452, + 49.339297401 + ], + [ + 6.8016281, + 49.339685401 + ], + [ + 6.801266, + 49.339990401 + ], + [ + 6.800916, + 49.340267401 + ], + [ + 6.8006089, + 49.340491901 + ], + [ + 6.8002682, + 49.340727001 + ], + [ + 6.7998498, + 49.340994401 + ], + [ + 6.7995283, + 49.341178901 + ], + [ + 6.7992631, + 49.341321901 + ], + [ + 6.7987387, + 49.341593601 + ], + [ + 6.7983726, + 49.341775801 + ], + [ + 6.7979783, + 49.341950501 + ], + [ + 6.7975183, + 49.342134501 + ], + [ + 6.7971813, + 49.342263701 + ], + [ + 6.7968072, + 49.342389501 + ], + [ + 6.7962278, + 49.342578301 + ], + [ + 6.7954459, + 49.342802801 + ], + [ + 6.7936749, + 49.343284801 + ], + [ + 6.7930858, + 49.343440901 + ], + [ + 6.789882, + 49.344324201 + ], + [ + 6.7858114, + 49.345435001 + ], + [ + 6.7849247, + 49.345676401 + ], + [ + 6.7843989, + 49.345810101 + ], + [ + 6.7839859, + 49.345905401 + ], + [ + 6.7835286, + 49.345997101 + ], + [ + 6.7828647, + 49.346113301 + ], + [ + 6.782402, + 49.346178801 + ], + [ + 6.7818902, + 49.346243901 + ], + [ + 6.7816023, + 49.346270101 + ], + [ + 6.7809483, + 49.346314301 + ], + [ + 6.7802429, + 49.346337801 + ], + [ + 6.7798271, + 49.346338701 + ], + [ + 6.7793993, + 49.346330901 + ], + [ + 6.7788494, + 49.346305101 + ], + [ + 6.7782017, + 49.346259201 + ], + [ + 6.7777109, + 49.346207201 + ], + [ + 6.7772321, + 49.346140801 + ], + [ + 6.77663, + 49.346049001 + ], + [ + 6.775932, + 49.345913701 + ], + [ + 6.7755878, + 49.345839001 + ], + [ + 6.7751319, + 49.345729701 + ], + [ + 6.7744506, + 49.345551501 + ], + [ + 6.7739168, + 49.345396001 + ], + [ + 6.7731023, + 49.345137101 + ], + [ + 6.7727602, + 49.345029701 + ], + [ + 6.7719387, + 49.344734101 + ], + [ + 6.7709221, + 49.344347101 + ], + [ + 6.7700865, + 49.344014801 + ], + [ + 6.7687817, + 49.343489001 + ], + [ + 6.7675493, + 49.342987501 + ], + [ + 6.7669256, + 49.342756001 + ], + [ + 6.7662175, + 49.342493801 + ], + [ + 6.7656583, + 49.342306801 + ], + [ + 6.765146, + 49.342145201 + ], + [ + 6.7646364, + 49.342001001 + ], + [ + 6.7641308, + 49.341865601 + ], + [ + 6.7636775, + 49.341760701 + ], + [ + 6.7631129, + 49.341647101 + ], + [ + 6.762551, + 49.341553601 + ], + [ + 6.7619837, + 49.341470601 + ], + [ + 6.7613668, + 49.341407701 + ], + [ + 6.760715, + 49.341361401 + ], + [ + 6.7600002, + 49.341336101 + ], + [ + 6.7593699, + 49.341336101 + ], + [ + 6.7586524, + 49.341353501 + ], + [ + 6.7580811, + 49.341381501 + ], + [ + 6.7573195, + 49.341434501 + ], + [ + 6.7557382, + 49.341582501 + ], + [ + 6.7549905, + 49.341667401 + ], + [ + 6.7544956, + 49.341719501 + ], + [ + 6.7530556, + 49.341855901 + ], + [ + 6.7518493, + 49.341975801 + ], + [ + 6.7511576, + 49.342036201 + ], + [ + 6.7500271, + 49.342114201 + ], + [ + 6.7487718, + 49.342182301 + ], + [ + 6.7481441, + 49.342210301 + ], + [ + 6.7472778, + 49.342229901 + ], + [ + 6.746618, + 49.342235201 + ], + [ + 6.7457932, + 49.342226401 + ], + [ + 6.7451079, + 49.342205501 + ], + [ + 6.7447306, + 49.342188401 + ], + [ + 6.7443545, + 49.342168201 + ], + [ + 6.7438975, + 49.342132501 + ], + [ + 6.7434775, + 49.342097301 + ], + [ + 6.7430587, + 49.342055601 + ], + [ + 6.7423425, + 49.341970001 + ], + [ + 6.7414856, + 49.341842201 + ], + [ + 6.7409416, + 49.341750901 + ], + [ + 6.7406749, + 49.341692801 + ], + [ + 6.7399501, + 49.341532201 + ], + [ + 6.7394537, + 49.341409101 + ], + [ + 6.7389213, + 49.341266301 + ], + [ + 6.7384698, + 49.341130701 + ], + [ + 6.7379822, + 49.340967901 + ], + [ + 6.7375427, + 49.340816601 + ], + [ + 6.7370143, + 49.340614401 + ], + [ + 6.7364497, + 49.340381101 + ], + [ + 6.7360125, + 49.340187101 + ], + [ + 6.7355659, + 49.339977401 + ], + [ + 6.7350898, + 49.339733601 + ], + [ + 6.7346124, + 49.339468001 + ], + [ + 6.7340906, + 49.339157701 + ], + [ + 6.7336816, + 49.338894701 + ], + [ + 6.7332968, + 49.338635101 + ], + [ + 6.7326571, + 49.338175501 + ], + [ + 6.7322856, + 49.337892001 + ], + [ + 6.7319154, + 49.337601501 + ], + [ + 6.7306253, + 49.336552001 + ], + [ + 6.7301001, + 49.336085701 + ], + [ + 6.7298555, + 49.335876001 + ], + [ + 6.7292316, + 49.335345201 + ], + [ + 6.729059997, + 49.335202408 + ] + ] + } + }, + { + "identifier": "2023-001082--vi-bs.2026-03-02_00-00-00-000.devi-zus.2025-03-03_00-00-00-000.f_002.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.32164041866842,6.873327481863415,49.319311374801195,6.863917575877076", + "point": "49.32164041866842,6.873327481863415", + "startLcPosition": "19", + "impact": { + "lower": "Schwalbach", + "upper": "Heusweiler", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neunkirchen -> Saarlouis", + "title": "A8 | Heusweiler - Schwalbach", + "startTimestamp": "2026-03-02T00:00:00+01:00", + "coordinate": { + "lat": 49.32164041866842, + "long": 6.873327481863415 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "A8: Neunkirchen -> Saarlouis, zwischen 5.5 km hinter AS Heusweiler und 4.1 km vor AS Schwalbach", + "", + "L\u00e4nge: 0.74 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 Schwarzenholz, Planung BW 1342 (BW6607561), Verst\u00e4rkung Pfeiler, km 41,9" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.873327482, + 49.321640419 + ], + [ + 6.8724418, + 49.321314301 + ], + [ + 6.8721474, + 49.321209101 + ], + [ + 6.871777, + 49.321082401 + ], + [ + 6.8708147, + 49.320770401 + ], + [ + 6.8702829, + 49.320620901 + ], + [ + 6.8686071, + 49.320162601 + ], + [ + 6.8676279, + 49.319943301 + ], + [ + 6.8670099, + 49.319807001 + ], + [ + 6.8660256, + 49.319627001 + ], + [ + 6.8650766, + 49.319470001 + ], + [ + 6.863917576, + 49.319311375 + ] + ] + } + }, + { + "identifier": "2023-001099--vi-bs.2025-11-14_06-00-00-000.devi-zus.2024-09-17_09-00-00-000.de158", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.34321655539114,7.048859080114184,49.338747745885456,7.05545257887074", + "point": "49.34321655539114,7.048859080114184", + "startLcPosition": "21", + "impact": { + "lower": "Friedrichsthal-Bildstock", + "upper": "Saarbr\u00fccken", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Neunkirchen", + "title": "A8 | Saarbr\u00fccken - Friedrichsthal-Bildstock", + "startTimestamp": "2025-11-14T06:00:00+01:00", + "coordinate": { + "lat": 49.34321655539114, + "long": 7.048859080114184 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.11.25 um 06:00 Uhr", + "Ende: 17.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.02.27)", + "", + "A8: Saarlouis -> Neunkirchen, zwischen 2.6 km hinter AK Saarbr\u00fccken und 1.7 km vor AS Friedrichsthal-Bildstock", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A8 Schallschutzarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.04885908, + 49.343216555 + ], + [ + 7.0490977, + 49.343004801 + ], + [ + 7.049926, + 49.342297501 + ], + [ + 7.0506824, + 49.341668901 + ], + [ + 7.051213, + 49.341244601 + ], + [ + 7.0517165, + 49.340871901 + ], + [ + 7.0519914, + 49.340670501 + ], + [ + 7.052411, + 49.340379601 + ], + [ + 7.0531011, + 49.339939401 + ], + [ + 7.0535757, + 49.339660601 + ], + [ + 7.054118, + 49.339364401 + ], + [ + 7.0545344, + 49.339156001 + ], + [ + 7.0549826, + 49.338945801 + ], + [ + 7.0554308, + 49.338756301 + ], + [ + 7.055452579, + 49.338747746 + ] + ] + } + }, + { + "identifier": "2023-001099--vi-bs.2025-11-14_06-00-00-000.devi-zus.2024-09-17_09-00-00-000.de156", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.338757889891326,7.055427041895462,49.33122804499315,7.071261873471719", + "point": "49.338757889891326,7.055427041895462", + "startLcPosition": "22", + "impact": { + "lower": "Friedrichsthal-Bildstock", + "upper": "Merchweiler", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Neunkirchen", + "title": "A8 | Merchweiler - Friedrichsthal-Bildstock", + "startTimestamp": "2025-11-14T06:00:00+01:00", + "coordinate": { + "lat": 49.338757889891326, + "long": 7.055427041895462 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.11.25 um 06:00 Uhr", + "Ende: 17.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.02.27)", + "", + "A8: Saarlouis -> Neunkirchen, zwischen 0.4 km hinter AS Merchweiler und 0.3 km vor AS Friedrichsthal-Bildstock", + "", + "L\u00e4nge: 1.46 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A8 Schallschutzarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.055427042, + 49.33875789 + ], + [ + 7.0554308, + 49.338756301 + ], + [ + 7.0558847, + 49.338578001 + ], + [ + 7.0564173, + 49.338386601 + ], + [ + 7.0568119, + 49.338253401 + ], + [ + 7.0574751, + 49.338053401 + ], + [ + 7.057836, + 49.337942201 + ], + [ + 7.0594341, + 49.337528501 + ], + [ + 7.0607283, + 49.337183101 + ], + [ + 7.0616615, + 49.336924401 + ], + [ + 7.0621361, + 49.336792301 + ], + [ + 7.0626242, + 49.336633301 + ], + [ + 7.0633453, + 49.336383601 + ], + [ + 7.0642494, + 49.336035401 + ], + [ + 7.0649307, + 49.335745601 + ], + [ + 7.0655103, + 49.335471301 + ], + [ + 7.0661144, + 49.335170801 + ], + [ + 7.0668352, + 49.334779901 + ], + [ + 7.0674459, + 49.334423201 + ], + [ + 7.0678653, + 49.334153701 + ], + [ + 7.0682848, + 49.333870001 + ], + [ + 7.0688006, + 49.333488601 + ], + [ + 7.0695849, + 49.332865001 + ], + [ + 7.0700252, + 49.332491701 + ], + [ + 7.070533, + 49.332004501 + ], + [ + 7.0709954, + 49.331505101 + ], + [ + 7.071261873, + 49.331228045 + ] + ] + } + }, + { + "identifier": "2023-001099--vi-bs.2025-11-14_06-00-00-000.devi-zus.2024-09-17_09-00-00-000.de154", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.33128335859496,7.0714026768130935,49.33884260094381,7.05551009999709", + "point": "49.33128335859496,7.0714026768130935", + "startLcPosition": "23", + "impact": { + "lower": "Merchweiler", + "upper": "Friedrichsthal-Bildstock", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neunkirchen -> Saarlouis", + "title": "A8 | Friedrichsthal-Bildstock - Merchweiler", + "startTimestamp": "2025-11-14T06:00:00+01:00", + "coordinate": { + "lat": 49.33128335859496, + "long": 7.0714026768130935 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.11.25 um 06:00 Uhr", + "Ende: 17.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.02.27)", + "", + "A8: Neunkirchen -> Saarlouis, zwischen 0.3 km hinter AS Friedrichsthal-Bildstock und 0.4 km vor AS Merchweiler", + "", + "L\u00e4nge: 1.46 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Schallschutzarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.071402677, + 49.331283359 + ], + [ + 7.0711631, + 49.331553101 + ], + [ + 7.0708591, + 49.331875601 + ], + [ + 7.0705147, + 49.332222101 + ], + [ + 7.070164, + 49.332555101 + ], + [ + 7.0696236, + 49.333011901 + ], + [ + 7.0689319, + 49.333554601 + ], + [ + 7.0684172, + 49.333933901 + ], + [ + 7.0679757, + 49.334226201 + ], + [ + 7.0675483, + 49.334504701 + ], + [ + 7.0669493, + 49.334853901 + ], + [ + 7.0662191, + 49.335252001 + ], + [ + 7.0656254, + 49.335552901 + ], + [ + 7.0650182, + 49.335826401 + ], + [ + 7.0643284, + 49.336119801 + ], + [ + 7.0635095, + 49.336438501 + ], + [ + 7.0627489, + 49.336707701 + ], + [ + 7.0620968, + 49.336922401 + ], + [ + 7.0616397, + 49.337051101 + ], + [ + 7.0607875, + 49.337278901 + ], + [ + 7.0594937, + 49.337624201 + ], + [ + 7.0580007, + 49.338010701 + ], + [ + 7.0575369, + 49.338144701 + ], + [ + 7.0568815, + 49.338345301 + ], + [ + 7.0564863, + 49.338477601 + ], + [ + 7.0559671, + 49.338661101 + ], + [ + 7.0555101, + 49.338842601 + ] + ] + } + }, + { + "identifier": "2026-017570--vi-bs.2026-04-11_08-00-00-000.devi-zus.2026-04-11_08-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.32341396909709,7.07662527833092,49.32117449324679,7.079080941774939", + "point": "49.32341396909709,7.07662527833092", + "startLcPosition": "23", + "impact": { + "lower": "Friedrichsthal", + "upper": "Friedrichsthal-Bildstock", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Neunkirchen", + "title": "A8 | Friedrichsthal-Bildstock - Friedrichsthal", + "coordinate": { + "lat": 49.32341396909709, + "long": 7.07662527833092 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 08:00 bis 16:00 Uhr", + "25.04.26 von 08:00 bis 16:00 Uhr", + "", + "A8: Saarlouis -> Neunkirchen, zwischen 0.7 km hinter AS Friedrichsthal-Bildstock und 0.1 km vor AD Friedrichsthal", + "", + "L\u00e4nge: 0.31 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A8 von Friedrichsthal-Bildstock (AS) nach Friedrichsthal (AD) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.076625278, + 49.323413969 + ], + [ + 7.0767103, + 49.323324601 + ], + [ + 7.0770877, + 49.322940901 + ], + [ + 7.0782274, + 49.321893301 + ], + [ + 7.0786761, + 49.321522001 + ], + [ + 7.079080942, + 49.321174493 + ] + ] + } + }, + { + "identifier": "2026-017570--vi-bs.2026-04-11_08-00-00-000.devi-zus.2026-04-11_08-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.32137135464558,7.079045651676219,49.321902020949004,7.078431504778195", + "point": "49.32137135464558,7.079045651676219", + "startLcPosition": "24", + "impact": { + "lower": "Friedrichsthal-Bildstock", + "upper": "Friedrichsthal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Neunkirchen -> Saarlouis", + "title": "A8 | Friedrichsthal - Friedrichsthal-Bildstock", + "coordinate": { + "lat": 49.32137135464558, + "long": 7.079045651676219 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:00 Uhr", + "14.04.26 von 08:00 bis 16:00 Uhr", + "", + "A8: Neunkirchen -> Saarlouis, zwischen 0.1 km hinter AD Friedrichsthal und 0.9 km vor AS Friedrichsthal-Bildstock", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A8 von Friedrichsthal-Bildstock (AS) nach Friedrichsthal (AD) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.079045652, + 49.321371355 + ], + [ + 7.078431505, + 49.321902021 + ] + ] + } + }, + { + "identifier": "2023-001099--vi-bs.2025-11-14_06-00-00-000.devi-zus.2024-09-17_09-00-00-000.de160", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.32762915976845,7.073770979389331,49.33128335859496,7.0714026768130935", + "point": "49.32762915976845,7.073770979389331", + "startLcPosition": "24", + "impact": { + "lower": "Merchweiler", + "upper": "Friedrichsthal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neunkirchen -> Saarlouis", + "title": "A8 | Friedrichsthal - Merchweiler", + "startTimestamp": "2025-11-14T06:00:00+01:00", + "coordinate": { + "lat": 49.32762915976845, + "long": 7.073770979389331 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.11.25 um 06:00 Uhr", + "Ende: 17.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.02.27)", + "", + "A8: Neunkirchen -> Saarlouis, zwischen 0.9 km hinter AD Friedrichsthal und 1.9 km vor AS Merchweiler", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A8 Schallschutzarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.073770979, + 49.32762916 + ], + [ + 7.0735689, + 49.327972401 + ], + [ + 7.0734411, + 49.328207401 + ], + [ + 7.0724703, + 49.329852001 + ], + [ + 7.0723272, + 49.330077401 + ], + [ + 7.0720458, + 49.330481801 + ], + [ + 7.0717269, + 49.330896801 + ], + [ + 7.0714641, + 49.331214201 + ], + [ + 7.071402677, + 49.331283359 + ] + ] + } + }, + { + "identifier": "2023-001068--vi-bs.2025-12-13_05-00-00-000.devi-zus.2023-02-10_20-00-00-000.f_001.de164", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.32887406055003,7.1869501841060295,49.32937360228467,7.194447364653184", + "point": "49.32887406055003,7.1869501841060295", + "startLcPosition": "27", + "impact": { + "lower": "Kohlhof", + "upper": "Neunkirchen/Spiesen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Neunkirchen", + "title": "A8 | Neunkirchen/Spiesen - Kohlhof", + "startTimestamp": "2025-12-13T05:00:00+01:00", + "coordinate": { + "lat": 49.32887406055003, + "long": 7.1869501841060295 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.12.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.32)", + "", + "A8: Saarlouis -> Neunkirchen, zwischen 2.6 km hinter AS Neunkirchen/Spiesen und 2.4 km vor Kohlhof", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.186950184, + 49.328874061 + ], + [ + 7.1870527, + 49.328893501 + ], + [ + 7.1878419, + 49.329027001 + ], + [ + 7.1886849, + 49.329143101 + ], + [ + 7.1890799, + 49.329194201 + ], + [ + 7.1894589, + 49.329233901 + ], + [ + 7.1899344, + 49.329278001 + ], + [ + 7.1904055, + 49.329316301 + ], + [ + 7.1909735, + 49.329355001 + ], + [ + 7.1911056, + 49.329361501 + ], + [ + 7.1911981, + 49.329366101 + ], + [ + 7.1915651, + 49.329384201 + ], + [ + 7.1921043, + 49.329397801 + ], + [ + 7.1923271, + 49.329401801 + ], + [ + 7.1928001, + 49.329407501 + ], + [ + 7.1933094, + 49.329407801 + ], + [ + 7.1938726, + 49.329395601 + ], + [ + 7.194447365, + 49.329373602 + ] + ] + } + }, + { + "identifier": "2023-001068--vi-bs.2025-12-13_05-00-00-000.devi-zus.2023-02-10_20-00-00-000.f_001.de172", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.32662357984294,7.1781863387905425,49.328879072206014,7.186976612240699", + "point": "49.32662357984294,7.1781863387905425", + "startLcPosition": "27", + "impact": { + "lower": "Neunkirchen-Oberstadt", + "upper": "Neunkirchen/Spiesen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Neunkirchen", + "title": "A8 | Neunkirchen/Spiesen - Neunkirchen-Oberstadt", + "startTimestamp": "2025-12-13T05:00:00+01:00", + "coordinate": { + "lat": 49.32662357984294, + "long": 7.1781863387905425 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.12.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.32)", + "", + "A8: Saarlouis -> Neunkirchen, zwischen 1.9 km hinter AS Neunkirchen/Spiesen und 0.3 km vor AS Neunkirchen-Oberstadt", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.178186339, + 49.32662358 + ], + [ + 7.1787774, + 49.326766301 + ], + [ + 7.1796787, + 49.327000601 + ], + [ + 7.1802356, + 49.327153601 + ], + [ + 7.1807689, + 49.327300801 + ], + [ + 7.1827398, + 49.327856101 + ], + [ + 7.1839812, + 49.328198401 + ], + [ + 7.1850556, + 49.328474801 + ], + [ + 7.1855999, + 49.328601101 + ], + [ + 7.1862132, + 49.328734301 + ], + [ + 7.186976612, + 49.328879072 + ] + ] + } + }, + { + "identifier": "2023-001068--vi-bs.2025-12-13_05-00-00-000.devi-zus.2023-02-10_20-00-00-000.f_001.de176", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.32937360228467,7.194447364653184,49.327345090182895,7.213041305719344", + "point": "49.32937360228467,7.194447364653184", + "startLcPosition": "28", + "impact": { + "lower": "Kohlhof", + "upper": "Neunkirchen-Oberstadt", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Neunkirchen", + "title": "A8 | Neunkirchen-Oberstadt - Kohlhof", + "startTimestamp": "2025-12-13T05:00:00+01:00", + "coordinate": { + "lat": 49.32937360228467, + "long": 7.194447364653184 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.12.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.32)", + "", + "A8: Saarlouis -> Neunkirchen, zwischen 0.2 km hinter AS Neunkirchen-Oberstadt und 1.0 km vor Kohlhof", + "", + "L\u00e4nge: 1.38 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.194447365, + 49.329373602 + ], + [ + 7.1946146, + 49.329367201 + ], + [ + 7.1953161, + 49.329324501 + ], + [ + 7.1960986, + 49.329259501 + ], + [ + 7.1965093, + 49.329212901 + ], + [ + 7.1966636, + 49.329196701 + ], + [ + 7.1976252, + 49.329079501 + ], + [ + 7.1981213, + 49.329017701 + ], + [ + 7.1984982, + 49.328963101 + ], + [ + 7.199034, + 49.328871201 + ], + [ + 7.1994741, + 49.328791901 + ], + [ + 7.2003237, + 49.328644601 + ], + [ + 7.202093, + 49.328303201 + ], + [ + 7.2031593, + 49.328098001 + ], + [ + 7.2041944, + 49.327897901 + ], + [ + 7.2050845, + 49.327745501 + ], + [ + 7.2057096, + 49.327654101 + ], + [ + 7.206542, + 49.327551001 + ], + [ + 7.2073972, + 49.327457701 + ], + [ + 7.2082263, + 49.327397701 + ], + [ + 7.2093803, + 49.327335801 + ], + [ + 7.210194, + 49.327314601 + ], + [ + 7.2111576, + 49.327313301 + ], + [ + 7.2123539, + 49.327328601 + ], + [ + 7.213041306, + 49.32734509 + ] + ] + } + }, + { + "identifier": "2023-001068--vi-bs.2025-12-13_05-00-00-000.devi-zus.2023-02-10_20-00-00-000.f_001.de170", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.32895501725113,7.186943933614194,49.32671467978647,7.178134640696295", + "point": "49.32895501725113,7.186943933614194", + "startLcPosition": "28", + "impact": { + "lower": "Neunkirchen/Spiesen", + "upper": "Neunkirchen-Oberstadt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neunkirchen -> Saarlouis", + "title": "A8 | Neunkirchen-Oberstadt - Neunkirchen/Spiesen", + "startTimestamp": "2025-12-13T05:00:00+01:00", + "coordinate": { + "lat": 49.32895501725113, + "long": 7.186943933614194 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.12.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.32)", + "", + "A8: Neunkirchen -> Saarlouis, zwischen 0.3 km hinter AS Neunkirchen-Oberstadt und 1.9 km vor AS Neunkirchen/Spiesen", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.186943934, + 49.328955017 + ], + [ + 7.1867014, + 49.328911901 + ], + [ + 7.1861743, + 49.328810501 + ], + [ + 7.185556, + 49.328677401 + ], + [ + 7.1849939, + 49.328544001 + ], + [ + 7.1839228, + 49.328275101 + ], + [ + 7.1826553, + 49.327928301 + ], + [ + 7.1819769, + 49.327737301 + ], + [ + 7.1807218, + 49.327386701 + ], + [ + 7.1796349, + 49.327092501 + ], + [ + 7.178712, + 49.326855501 + ], + [ + 7.178134641, + 49.32671468 + ] + ] + } + }, + { + "identifier": "2023-001068--vi-bs.2025-12-13_05-00-00-000.devi-zus.2023-02-10_20-00-00-000.f_001.de168", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.32734476041113,7.21302755647301,49.3274500451205,7.223973881085045", + "point": "49.32734476041113,7.21302755647301", + "startLcPosition": "28", + "impact": { + "lower": "Kohlhof", + "upper": "Neunkirchen-Oberstadt", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Neunkirchen", + "title": "A8 | Neunkirchen-Oberstadt - Kohlhof", + "startTimestamp": "2025-12-13T05:00:00+01:00", + "coordinate": { + "lat": 49.32734476041113, + "long": 7.21302755647301 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.12.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.32)", + "", + "A8: Saarlouis -> Neunkirchen, zwischen 1.6 km hinter AS Neunkirchen-Oberstadt und 0.3 km vor Kohlhof", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.213027556, + 49.32734476 + ], + [ + 7.2135588, + 49.327357501 + ], + [ + 7.2151942, + 49.327422001 + ], + [ + 7.2164667, + 49.327475401 + ], + [ + 7.2179292, + 49.327536401 + ], + [ + 7.2188916, + 49.327568801 + ], + [ + 7.2198774, + 49.327587801 + ], + [ + 7.2209734, + 49.327588901 + ], + [ + 7.2216417, + 49.327576801 + ], + [ + 7.2225724, + 49.327542601 + ], + [ + 7.2233067, + 49.327502201 + ], + [ + 7.223973881, + 49.327450045 + ] + ] + } + }, + { + "identifier": "2023-001068--vi-bs.2025-12-13_05-00-00-000.devi-zus.2023-02-10_20-00-00-000.f_001.de174", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.32744895683089,7.213034602415921,49.32947899188581,7.1944569241597", + "point": "49.32744895683089,7.213034602415921", + "startLcPosition": "29", + "impact": { + "lower": "Neunkirchen-Oberstadt", + "upper": "Kohlhof", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neunkirchen -> Saarlouis", + "title": "A8 | Kohlhof - Neunkirchen-Oberstadt", + "startTimestamp": "2025-12-13T05:00:00+01:00", + "coordinate": { + "lat": 49.32744895683089, + "long": 7.213034602415921 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.12.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.32)", + "", + "A8: Neunkirchen -> Saarlouis, zwischen 1.1 km hinter Kohlhof und 0.2 km vor AS Neunkirchen-Oberstadt", + "", + "L\u00e4nge: 1.38 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.213034602, + 49.327448957 + ], + [ + 7.2123569, + 49.327427701 + ], + [ + 7.2111663, + 49.327410501 + ], + [ + 7.2101973, + 49.327422401 + ], + [ + 7.2093887, + 49.327443501 + ], + [ + 7.2082326, + 49.327497001 + ], + [ + 7.2074123, + 49.327559601 + ], + [ + 7.2065545, + 49.327652601 + ], + [ + 7.2057305, + 49.327750701 + ], + [ + 7.2051032, + 49.327847101 + ], + [ + 7.2042318, + 49.327999501 + ], + [ + 7.2031889, + 49.328198601 + ], + [ + 7.2023065, + 49.328372201 + ], + [ + 7.2003845, + 49.328738101 + ], + [ + 7.1995069, + 49.328891501 + ], + [ + 7.1988132, + 49.329008301 + ], + [ + 7.1984007, + 49.329077901 + ], + [ + 7.1980079, + 49.329137901 + ], + [ + 7.1973189, + 49.329219101 + ], + [ + 7.1969982, + 49.329261401 + ], + [ + 7.1961776, + 49.329349501 + ], + [ + 7.1953388, + 49.329429601 + ], + [ + 7.1949329, + 49.329454501 + ], + [ + 7.1946554, + 49.329471201 + ], + [ + 7.194456924, + 49.329478992 + ] + ] + } + }, + { + "identifier": "2023-001068--vi-bs.2025-12-13_05-00-00-000.devi-zus.2023-02-10_20-00-00-000.f_001.de162", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.32947899188581,7.1944569241597,49.32895029658903,7.186917379249831", + "point": "49.32947899188581,7.1944569241597", + "startLcPosition": "29", + "impact": { + "lower": "Neunkirchen/Spiesen", + "upper": "Kohlhof", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neunkirchen -> Saarlouis", + "title": "A8 | Kohlhof - Neunkirchen/Spiesen", + "startTimestamp": "2025-12-13T05:00:00+01:00", + "coordinate": { + "lat": 49.32947899188581, + "long": 7.1944569241597 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.12.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.32)", + "", + "A8: Neunkirchen -> Saarlouis, zwischen 2.4 km hinter Kohlhof und 2.6 km vor AS Neunkirchen/Spiesen", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.194456924, + 49.329478992 + ], + [ + 7.193886, + 49.329501401 + ], + [ + 7.1933504, + 49.329509201 + ], + [ + 7.192812, + 49.329508401 + ], + [ + 7.192119, + 49.329498101 + ], + [ + 7.1915471, + 49.329480901 + ], + [ + 7.1911942, + 49.329462801 + ], + [ + 7.1910896, + 49.329457401 + ], + [ + 7.1909786, + 49.329451701 + ], + [ + 7.1903971, + 49.329406501 + ], + [ + 7.1899167, + 49.329364601 + ], + [ + 7.1894343, + 49.329314501 + ], + [ + 7.1890611, + 49.329275501 + ], + [ + 7.1886759, + 49.329225501 + ], + [ + 7.1876354, + 49.329077001 + ], + [ + 7.1871981, + 49.329000201 + ], + [ + 7.186917379, + 49.328950297 + ] + ] + } + }, + { + "identifier": "2023-001068--vi-bs.2025-12-13_05-00-00-000.devi-zus.2023-02-10_20-00-00-000.f_001.de166", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.327546294523785,7.223991980038868,49.327448525921156,7.213020862437661", + "point": "49.327546294523785,7.223991980038868", + "startLcPosition": "29", + "impact": { + "lower": "Neunkirchen-Oberstadt", + "upper": "Kohlhof", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neunkirchen -> Saarlouis", + "title": "A8 | Kohlhof - Neunkirchen-Oberstadt", + "startTimestamp": "2025-12-13T05:00:00+01:00", + "coordinate": { + "lat": 49.327546294523785, + "long": 7.223991980038868 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.12.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.32)", + "", + "A8: Neunkirchen -> Saarlouis, zwischen 0.3 km hinter Kohlhof und 1.6 km vor AS Neunkirchen-Oberstadt", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.22399198, + 49.327546295 + ], + [ + 7.2233315, + 49.327600601 + ], + [ + 7.2225828, + 49.327643701 + ], + [ + 7.2216492, + 49.327679301 + ], + [ + 7.2209728, + 49.327689801 + ], + [ + 7.2208836, + 49.327690001 + ], + [ + 7.2198803, + 49.327692701 + ], + [ + 7.2188858, + 49.327666001 + ], + [ + 7.2179117, + 49.327635501 + ], + [ + 7.2164403, + 49.327578301 + ], + [ + 7.2151825, + 49.327519201 + ], + [ + 7.2135526, + 49.327465201 + ], + [ + 7.213020862, + 49.327448526 + ] + ] + } + }, + { + "identifier": "2024-057243--vi-fbm.2024-12-04_14-00-00-000.devi-zus.2024-12-04_14-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.26357473987718,7.315801862814822,49.26168258097396,7.322273979033382", + "point": "49.26357473987718,7.315801862814822", + "startLcPosition": "35", + "impact": { + "lower": "Zweibr\u00fccken-Ernstweiler", + "upper": "Ein\u00f6d", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neunkirchen -> Karlsruhe", + "title": "A8 | Ein\u00f6d - Zweibr\u00fccken-Ernstweiler", + "startTimestamp": "2024-12-04T14:00:00+01:00", + "coordinate": { + "lat": 49.26357473987718, + "long": 7.315801862814822 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.12.24 um 14:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A8: Neunkirchen -> Karlsruhe, zwischen 0.5 km hinter AS Ein\u00f6d und 2.5 km vor AS Zweibr\u00fccken-Ernstweiler", + "", + "L\u00e4nge: 0.52 km | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A8 BW 6709 601 Traglasteinschr\u00e4nkung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.315801863, + 49.26357474 + ], + [ + 7.315867, + 49.263553601 + ], + [ + 7.3165563, + 49.263347901 + ], + [ + 7.3178924, + 49.263021301 + ], + [ + 7.3186213, + 49.262855001 + ], + [ + 7.319494, + 49.262636001 + ], + [ + 7.3203818, + 49.262382601 + ], + [ + 7.3211997, + 49.262103701 + ], + [ + 7.3219761, + 49.261811001 + ], + [ + 7.322273979, + 49.261682581 + ] + ] + } + }, + { + "identifier": "2024-057243--vi-fbm.2024-12-04_14-00-00-000.devi-zus.2024-12-04_14-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.261767163670804,7.322360253060338,49.26366248448189,7.3158693065606135", + "point": "49.261767163670804,7.322360253060338", + "startLcPosition": "36", + "impact": { + "lower": "Ein\u00f6d", + "upper": "Zweibr\u00fccken-Ernstweiler", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Neunkirchen", + "title": "A8 | Zweibr\u00fccken-Ernstweiler - Ein\u00f6d", + "startTimestamp": "2024-12-04T14:00:00+01:00", + "coordinate": { + "lat": 49.261767163670804, + "long": 7.322360253060338 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.12.24 um 14:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A8: Karlsruhe -> Neunkirchen, zwischen 2.5 km hinter AS Zweibr\u00fccken-Ernstweiler und 0.5 km vor AS Ein\u00f6d", + "", + "L\u00e4nge: 0.52 km | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A8 BW 6709 601 Traglasteinschr\u00e4nkung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.322360253, + 49.261767164 + ], + [ + 7.3220639, + 49.261897801 + ], + [ + 7.3213075, + 49.262187501 + ], + [ + 7.3204473, + 49.262470601 + ], + [ + 7.3199871, + 49.262614901 + ], + [ + 7.3195715, + 49.262731001 + ], + [ + 7.3187811, + 49.262927001 + ], + [ + 7.318046, + 49.263089901 + ], + [ + 7.3172949, + 49.263265601 + ], + [ + 7.3166226, + 49.263436201 + ], + [ + 7.3159471, + 49.263636501 + ], + [ + 7.315869307, + 49.263662484 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.724696794170306,9.067158870301325,48.72825972211218,9.058010211417866", + "point": "48.724696794170306,9.067158870301325", + "startLcPosition": "40", + "impact": { + "lower": "Sommerhofen", + "upper": "Sindelfingen-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Heilbronn", + "title": "A8 | Sindelfingen-Ost - Sommerhofen", + "coordinate": { + "lat": 48.724696794170306, + "long": 9.067158870301325 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Heilbronn, zwischen 3.1 km hinter AS Sindelfingen-Ost und 1.1 km vor Sommerhofen", + "", + "L\u00e4nge: 1.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.06715887, + 48.724696794 + ], + [ + 9.0674805, + 48.724718001 + ], + [ + 9.0677453, + 48.724736401 + ], + [ + 9.068267, + 48.724772001 + ], + [ + 9.0687145, + 48.724805101 + ], + [ + 9.0689027, + 48.724820601 + ], + [ + 9.0690837, + 48.724838001 + ], + [ + 9.0692876, + 48.724863101 + ], + [ + 9.0694533, + 48.724887901 + ], + [ + 9.0696175, + 48.724917801 + ], + [ + 9.0697496, + 48.724945801 + ], + [ + 9.069871, + 48.724975401 + ], + [ + 9.0699602, + 48.725001601 + ], + [ + 9.0700411, + 48.725027301 + ], + [ + 9.0701312, + 48.725058201 + ], + [ + 9.0702156, + 48.725090801 + ], + [ + 9.0703069, + 48.725129401 + ], + [ + 9.0703905, + 48.725166101 + ], + [ + 9.0704812, + 48.725210801 + ], + [ + 9.0705758, + 48.725266501 + ], + [ + 9.0706611, + 48.725324301 + ], + [ + 9.070724, + 48.725369601 + ], + [ + 9.0707787, + 48.725414601 + ], + [ + 9.0708339, + 48.725462501 + ], + [ + 9.0708823, + 48.725510601 + ], + [ + 9.0709694, + 48.725604401 + ], + [ + 9.0710272, + 48.725681701 + ], + [ + 9.0710626, + 48.725732301 + ], + [ + 9.0710912, + 48.725777701 + ], + [ + 9.0711333, + 48.725857301 + ], + [ + 9.0711742, + 48.725946801 + ], + [ + 9.0712047, + 48.726032601 + ], + [ + 9.0712228, + 48.726112101 + ], + [ + 9.0712304, + 48.726185601 + ], + [ + 9.0712373, + 48.726281201 + ], + [ + 9.0712333, + 48.726388801 + ], + [ + 9.0712097, + 48.726507601 + ], + [ + 9.0711793, + 48.726613601 + ], + [ + 9.0711303, + 48.726729501 + ], + [ + 9.0710814, + 48.726815101 + ], + [ + 9.0710177, + 48.726908201 + ], + [ + 9.0709621, + 48.726979001 + ], + [ + 9.0708466, + 48.727098801 + ], + [ + 9.0707633, + 48.727172701 + ], + [ + 9.0706527, + 48.727253101 + ], + [ + 9.0705224, + 48.727338501 + ], + [ + 9.0703953, + 48.727407601 + ], + [ + 9.0702606, + 48.727468901 + ], + [ + 9.0701154, + 48.727525601 + ], + [ + 9.0699682, + 48.727572001 + ], + [ + 9.0698307, + 48.727608901 + ], + [ + 9.0696859, + 48.727638301 + ], + [ + 9.0695417, + 48.727662201 + ], + [ + 9.0693902, + 48.727680301 + ], + [ + 9.0692315, + 48.727694401 + ], + [ + 9.0690439, + 48.727703001 + ], + [ + 9.068886, + 48.727705101 + ], + [ + 9.0687132, + 48.727703101 + ], + [ + 9.0685426, + 48.727697601 + ], + [ + 9.0683603, + 48.727688701 + ], + [ + 9.0681745, + 48.727678101 + ], + [ + 9.0677547, + 48.727650701 + ], + [ + 9.0673211, + 48.727621301 + ], + [ + 9.0671452, + 48.727604301 + ], + [ + 9.066961, + 48.727579101 + ], + [ + 9.0668173, + 48.727552901 + ], + [ + 9.0666924, + 48.727525801 + ], + [ + 9.0665276, + 48.727481701 + ], + [ + 9.0662963, + 48.727410101 + ], + [ + 9.0660769, + 48.727337201 + ], + [ + 9.065896, + 48.727278301 + ], + [ + 9.0657501, + 48.727235501 + ], + [ + 9.0655862, + 48.727194701 + ], + [ + 9.0654169, + 48.727159601 + ], + [ + 9.0652739, + 48.727136701 + ], + [ + 9.0650873, + 48.727112401 + ], + [ + 9.0649706, + 48.727102701 + ], + [ + 9.0647451, + 48.727092901 + ], + [ + 9.0645368, + 48.727095601 + ], + [ + 9.0642265, + 48.727115901 + ], + [ + 9.063903, + 48.727089701 + ], + [ + 9.0634122, + 48.727170801 + ], + [ + 9.0618469, + 48.727425001 + ], + [ + 9.0609196, + 48.727589301 + ], + [ + 9.0600128, + 48.727767001 + ], + [ + 9.0591022, + 48.727970501 + ], + [ + 9.058010211, + 48.728259722 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.724696794170306,9.067158870301325,48.72825972211218,9.058010211417866", + "point": "48.724696794170306,9.067158870301325", + "startLcPosition": "40", + "impact": { + "lower": "Sommerhofen", + "upper": "Sindelfingen-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Heilbronn", + "title": "A8 | Sindelfingen-Ost - Sommerhofen", + "coordinate": { + "lat": 48.724696794170306, + "long": 9.067158870301325 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Heilbronn, zwischen 3.1 km hinter AS Sindelfingen-Ost und 1.1 km vor Sommerhofen", + "", + "L\u00e4nge: 1.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.06715887, + 48.724696794 + ], + [ + 9.0674805, + 48.724718001 + ], + [ + 9.0677453, + 48.724736401 + ], + [ + 9.068267, + 48.724772001 + ], + [ + 9.0687145, + 48.724805101 + ], + [ + 9.0689027, + 48.724820601 + ], + [ + 9.0690837, + 48.724838001 + ], + [ + 9.0692876, + 48.724863101 + ], + [ + 9.0694533, + 48.724887901 + ], + [ + 9.0696175, + 48.724917801 + ], + [ + 9.0697496, + 48.724945801 + ], + [ + 9.069871, + 48.724975401 + ], + [ + 9.0699602, + 48.725001601 + ], + [ + 9.0700411, + 48.725027301 + ], + [ + 9.0701312, + 48.725058201 + ], + [ + 9.0702156, + 48.725090801 + ], + [ + 9.0703069, + 48.725129401 + ], + [ + 9.0703905, + 48.725166101 + ], + [ + 9.0704812, + 48.725210801 + ], + [ + 9.0705758, + 48.725266501 + ], + [ + 9.0706611, + 48.725324301 + ], + [ + 9.070724, + 48.725369601 + ], + [ + 9.0707787, + 48.725414601 + ], + [ + 9.0708339, + 48.725462501 + ], + [ + 9.0708823, + 48.725510601 + ], + [ + 9.0709694, + 48.725604401 + ], + [ + 9.0710272, + 48.725681701 + ], + [ + 9.0710626, + 48.725732301 + ], + [ + 9.0710912, + 48.725777701 + ], + [ + 9.0711333, + 48.725857301 + ], + [ + 9.0711742, + 48.725946801 + ], + [ + 9.0712047, + 48.726032601 + ], + [ + 9.0712228, + 48.726112101 + ], + [ + 9.0712304, + 48.726185601 + ], + [ + 9.0712373, + 48.726281201 + ], + [ + 9.0712333, + 48.726388801 + ], + [ + 9.0712097, + 48.726507601 + ], + [ + 9.0711793, + 48.726613601 + ], + [ + 9.0711303, + 48.726729501 + ], + [ + 9.0710814, + 48.726815101 + ], + [ + 9.0710177, + 48.726908201 + ], + [ + 9.0709621, + 48.726979001 + ], + [ + 9.0708466, + 48.727098801 + ], + [ + 9.0707633, + 48.727172701 + ], + [ + 9.0706527, + 48.727253101 + ], + [ + 9.0705224, + 48.727338501 + ], + [ + 9.0703953, + 48.727407601 + ], + [ + 9.0702606, + 48.727468901 + ], + [ + 9.0701154, + 48.727525601 + ], + [ + 9.0699682, + 48.727572001 + ], + [ + 9.0698307, + 48.727608901 + ], + [ + 9.0696859, + 48.727638301 + ], + [ + 9.0695417, + 48.727662201 + ], + [ + 9.0693902, + 48.727680301 + ], + [ + 9.0692315, + 48.727694401 + ], + [ + 9.0690439, + 48.727703001 + ], + [ + 9.068886, + 48.727705101 + ], + [ + 9.0687132, + 48.727703101 + ], + [ + 9.0685426, + 48.727697601 + ], + [ + 9.0683603, + 48.727688701 + ], + [ + 9.0681745, + 48.727678101 + ], + [ + 9.0677547, + 48.727650701 + ], + [ + 9.0673211, + 48.727621301 + ], + [ + 9.0671452, + 48.727604301 + ], + [ + 9.066961, + 48.727579101 + ], + [ + 9.0668173, + 48.727552901 + ], + [ + 9.0666924, + 48.727525801 + ], + [ + 9.0665276, + 48.727481701 + ], + [ + 9.0662963, + 48.727410101 + ], + [ + 9.0660769, + 48.727337201 + ], + [ + 9.065896, + 48.727278301 + ], + [ + 9.0657501, + 48.727235501 + ], + [ + 9.0655862, + 48.727194701 + ], + [ + 9.0654169, + 48.727159601 + ], + [ + 9.0652739, + 48.727136701 + ], + [ + 9.0650873, + 48.727112401 + ], + [ + 9.0649706, + 48.727102701 + ], + [ + 9.0647451, + 48.727092901 + ], + [ + 9.0645368, + 48.727095601 + ], + [ + 9.0642265, + 48.727115901 + ], + [ + 9.063903, + 48.727089701 + ], + [ + 9.0634122, + 48.727170801 + ], + [ + 9.0618469, + 48.727425001 + ], + [ + 9.0609196, + 48.727589301 + ], + [ + 9.0600128, + 48.727767001 + ], + [ + 9.0591022, + 48.727970501 + ], + [ + 9.058010211, + 48.728259722 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.724696794170306,9.067158870301325,48.72825972211218,9.058010211417866", + "point": "48.724696794170306,9.067158870301325", + "startLcPosition": "40", + "impact": { + "lower": "Sommerhofen", + "upper": "Sindelfingen-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Heilbronn", + "title": "A8 | Sindelfingen-Ost - Sommerhofen", + "coordinate": { + "lat": 48.724696794170306, + "long": 9.067158870301325 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Heilbronn, zwischen 3.1 km hinter AS Sindelfingen-Ost und 1.1 km vor Sommerhofen", + "", + "L\u00e4nge: 1.48 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.06715887, + 48.724696794 + ], + [ + 9.0674805, + 48.724718001 + ], + [ + 9.0677453, + 48.724736401 + ], + [ + 9.068267, + 48.724772001 + ], + [ + 9.0687145, + 48.724805101 + ], + [ + 9.0689027, + 48.724820601 + ], + [ + 9.0690837, + 48.724838001 + ], + [ + 9.0692876, + 48.724863101 + ], + [ + 9.0694533, + 48.724887901 + ], + [ + 9.0696175, + 48.724917801 + ], + [ + 9.0697496, + 48.724945801 + ], + [ + 9.069871, + 48.724975401 + ], + [ + 9.0699602, + 48.725001601 + ], + [ + 9.0700411, + 48.725027301 + ], + [ + 9.0701312, + 48.725058201 + ], + [ + 9.0702156, + 48.725090801 + ], + [ + 9.0703069, + 48.725129401 + ], + [ + 9.0703905, + 48.725166101 + ], + [ + 9.0704812, + 48.725210801 + ], + [ + 9.0705758, + 48.725266501 + ], + [ + 9.0706611, + 48.725324301 + ], + [ + 9.070724, + 48.725369601 + ], + [ + 9.0707787, + 48.725414601 + ], + [ + 9.0708339, + 48.725462501 + ], + [ + 9.0708823, + 48.725510601 + ], + [ + 9.0709694, + 48.725604401 + ], + [ + 9.0710272, + 48.725681701 + ], + [ + 9.0710626, + 48.725732301 + ], + [ + 9.0710912, + 48.725777701 + ], + [ + 9.0711333, + 48.725857301 + ], + [ + 9.0711742, + 48.725946801 + ], + [ + 9.0712047, + 48.726032601 + ], + [ + 9.0712228, + 48.726112101 + ], + [ + 9.0712304, + 48.726185601 + ], + [ + 9.0712373, + 48.726281201 + ], + [ + 9.0712333, + 48.726388801 + ], + [ + 9.0712097, + 48.726507601 + ], + [ + 9.0711793, + 48.726613601 + ], + [ + 9.0711303, + 48.726729501 + ], + [ + 9.0710814, + 48.726815101 + ], + [ + 9.0710177, + 48.726908201 + ], + [ + 9.0709621, + 48.726979001 + ], + [ + 9.0708466, + 48.727098801 + ], + [ + 9.0707633, + 48.727172701 + ], + [ + 9.0706527, + 48.727253101 + ], + [ + 9.0705224, + 48.727338501 + ], + [ + 9.0703953, + 48.727407601 + ], + [ + 9.0702606, + 48.727468901 + ], + [ + 9.0701154, + 48.727525601 + ], + [ + 9.0699682, + 48.727572001 + ], + [ + 9.0698307, + 48.727608901 + ], + [ + 9.0696859, + 48.727638301 + ], + [ + 9.0695417, + 48.727662201 + ], + [ + 9.0693902, + 48.727680301 + ], + [ + 9.0692315, + 48.727694401 + ], + [ + 9.0690439, + 48.727703001 + ], + [ + 9.068886, + 48.727705101 + ], + [ + 9.0687132, + 48.727703101 + ], + [ + 9.0685426, + 48.727697601 + ], + [ + 9.0683603, + 48.727688701 + ], + [ + 9.0681745, + 48.727678101 + ], + [ + 9.0677547, + 48.727650701 + ], + [ + 9.0673211, + 48.727621301 + ], + [ + 9.0671452, + 48.727604301 + ], + [ + 9.066961, + 48.727579101 + ], + [ + 9.0668173, + 48.727552901 + ], + [ + 9.0666924, + 48.727525801 + ], + [ + 9.0665276, + 48.727481701 + ], + [ + 9.0662963, + 48.727410101 + ], + [ + 9.0660769, + 48.727337201 + ], + [ + 9.065896, + 48.727278301 + ], + [ + 9.0657501, + 48.727235501 + ], + [ + 9.0655862, + 48.727194701 + ], + [ + 9.0654169, + 48.727159601 + ], + [ + 9.0652739, + 48.727136701 + ], + [ + 9.0650873, + 48.727112401 + ], + [ + 9.0649706, + 48.727102701 + ], + [ + 9.0647451, + 48.727092901 + ], + [ + 9.0645368, + 48.727095601 + ], + [ + 9.0642265, + 48.727115901 + ], + [ + 9.063903, + 48.727089701 + ], + [ + 9.0634122, + 48.727170801 + ], + [ + 9.0618469, + 48.727425001 + ], + [ + 9.0609196, + 48.727589301 + ], + [ + 9.0600128, + 48.727767001 + ], + [ + 9.0591022, + 48.727970501 + ], + [ + 9.058010211, + 48.728259722 + ] + ] + } + }, + { + "identifier": "2026-011052--vi-bs.2026-03-06_08-00-00-000_010.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.21946173672306,7.539848744398143,49.22101698628425,7.5476583461079905", + "point": "49.21946173672306,7.539848744398143", + "startLcPosition": "41", + "impact": { + "lower": "Pirmasens", + "upper": "Walshausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neunkirchen -> Karlsruhe", + "title": "A8 | Walshausen - Pirmasens", + "startTimestamp": "2026-03-06T08:00:00+01:00", + "coordinate": { + "lat": 49.21946173672306, + "long": 7.539848744398143 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.03.26 um 08:00 Uhr", + "Ende: 01.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.26)", + "", + "A8: Neunkirchen -> Karlsruhe, zwischen 3.3 km hinter Walshausen und 1.4 km vor AS Pirmasens", + "", + "L\u00e4nge: 0.62 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A8 von Pirmasens-WinzelnL600 (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.539848744, + 49.219461737 + ], + [ + 7.5399086, + 49.219460101 + ], + [ + 7.5400461, + 49.219456401 + ], + [ + 7.540171, + 49.219453001 + ], + [ + 7.5402511, + 49.219447501 + ], + [ + 7.5409957, + 49.219407301 + ], + [ + 7.5416599, + 49.219397401 + ], + [ + 7.5422959, + 49.219406901 + ], + [ + 7.5427253, + 49.219421301 + ], + [ + 7.5431314, + 49.219452701 + ], + [ + 7.5436249, + 49.219525701 + ], + [ + 7.5441119, + 49.219606601 + ], + [ + 7.5445655, + 49.219706901 + ], + [ + 7.5450738, + 49.219841801 + ], + [ + 7.5455748, + 49.219995001 + ], + [ + 7.5461291, + 49.220193801 + ], + [ + 7.5465923, + 49.220417301 + ], + [ + 7.5472869, + 49.220780101 + ], + [ + 7.5475506, + 49.220942701 + ], + [ + 7.547658346, + 49.221016986 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72724766652543,9.061208836503038,48.72181706489711,9.059407229889983", + "point": "48.72724766652543,9.061208836503038", + "startLcPosition": "42", + "impact": { + "lower": "Sindelfingen-Ost", + "upper": "Sommerhofen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> Singen", + "title": "A8 | Sommerhofen - Sindelfingen-Ost", + "coordinate": { + "lat": 48.72724766652543, + "long": 9.061208836503038 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Heilbronn -> Singen, zwischen 1.4 km hinter Sommerhofen und 2.4 km vor AS Sindelfingen-Ost", + "", + "L\u00e4nge: 0.88 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.061208837, + 48.727247667 + ], + [ + 9.0612154, + 48.727246501 + ], + [ + 9.0615329, + 48.727185101 + ], + [ + 9.0619118, + 48.727098801 + ], + [ + 9.062423, + 48.726973001 + ], + [ + 9.062731, + 48.726897301 + ], + [ + 9.062881, + 48.726856601 + ], + [ + 9.0630282, + 48.726810401 + ], + [ + 9.0631745, + 48.726759201 + ], + [ + 9.0633154, + 48.726703801 + ], + [ + 9.0634416, + 48.726647601 + ], + [ + 9.0635765, + 48.726576401 + ], + [ + 9.0636998, + 48.726503201 + ], + [ + 9.0637994, + 48.726432001 + ], + [ + 9.0638976, + 48.726350801 + ], + [ + 9.0639923, + 48.726260701 + ], + [ + 9.0640728, + 48.726165601 + ], + [ + 9.0641453, + 48.726065901 + ], + [ + 9.0641998, + 48.725967101 + ], + [ + 9.0642443, + 48.725869301 + ], + [ + 9.0642909, + 48.725715301 + ], + [ + 9.06431, + 48.725544201 + ], + [ + 9.0643017, + 48.725388501 + ], + [ + 9.0642615, + 48.725224401 + ], + [ + 9.0641965, + 48.725073301 + ], + [ + 9.0640985, + 48.724918101 + ], + [ + 9.0639871, + 48.724784501 + ], + [ + 9.0638505, + 48.724654101 + ], + [ + 9.0636977, + 48.724527201 + ], + [ + 9.0635293, + 48.724404201 + ], + [ + 9.0633564, + 48.724291201 + ], + [ + 9.06301, + 48.724067101 + ], + [ + 9.0623045, + 48.723621801 + ], + [ + 9.0612512, + 48.722974101 + ], + [ + 9.0610975, + 48.722849501 + ], + [ + 9.0610034, + 48.722734401 + ], + [ + 9.0605186, + 48.722454101 + ], + [ + 9.0595152, + 48.721882301 + ], + [ + 9.05940723, + 48.721817065 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72724766652543,9.061208836503038,48.72181706489711,9.059407229889983", + "point": "48.72724766652543,9.061208836503038", + "startLcPosition": "42", + "impact": { + "lower": "Sindelfingen-Ost", + "upper": "Sommerhofen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> Singen", + "title": "A8 | Sommerhofen - Sindelfingen-Ost", + "coordinate": { + "lat": 48.72724766652543, + "long": 9.061208836503038 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Heilbronn -> Singen, zwischen 1.4 km hinter Sommerhofen und 2.4 km vor AS Sindelfingen-Ost", + "", + "L\u00e4nge: 0.88 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.061208837, + 48.727247667 + ], + [ + 9.0612154, + 48.727246501 + ], + [ + 9.0615329, + 48.727185101 + ], + [ + 9.0619118, + 48.727098801 + ], + [ + 9.062423, + 48.726973001 + ], + [ + 9.062731, + 48.726897301 + ], + [ + 9.062881, + 48.726856601 + ], + [ + 9.0630282, + 48.726810401 + ], + [ + 9.0631745, + 48.726759201 + ], + [ + 9.0633154, + 48.726703801 + ], + [ + 9.0634416, + 48.726647601 + ], + [ + 9.0635765, + 48.726576401 + ], + [ + 9.0636998, + 48.726503201 + ], + [ + 9.0637994, + 48.726432001 + ], + [ + 9.0638976, + 48.726350801 + ], + [ + 9.0639923, + 48.726260701 + ], + [ + 9.0640728, + 48.726165601 + ], + [ + 9.0641453, + 48.726065901 + ], + [ + 9.0641998, + 48.725967101 + ], + [ + 9.0642443, + 48.725869301 + ], + [ + 9.0642909, + 48.725715301 + ], + [ + 9.06431, + 48.725544201 + ], + [ + 9.0643017, + 48.725388501 + ], + [ + 9.0642615, + 48.725224401 + ], + [ + 9.0641965, + 48.725073301 + ], + [ + 9.0640985, + 48.724918101 + ], + [ + 9.0639871, + 48.724784501 + ], + [ + 9.0638505, + 48.724654101 + ], + [ + 9.0636977, + 48.724527201 + ], + [ + 9.0635293, + 48.724404201 + ], + [ + 9.0633564, + 48.724291201 + ], + [ + 9.06301, + 48.724067101 + ], + [ + 9.0623045, + 48.723621801 + ], + [ + 9.0612512, + 48.722974101 + ], + [ + 9.0610975, + 48.722849501 + ], + [ + 9.0610034, + 48.722734401 + ], + [ + 9.0605186, + 48.722454101 + ], + [ + 9.0595152, + 48.721882301 + ], + [ + 9.05940723, + 48.721817065 + ] + ] + } + }, + { + "identifier": "2026-012023--vi-bs.2026-04-13_09-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.942605084178794,8.503781893684762,48.94220650442048,8.505005734900434", + "point": "48.942605084178794,8.503781893684762", + "startLcPosition": "46", + "impact": { + "lower": "Steinig", + "upper": "Karlsbad", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Karlsbad - Steinig", + "coordinate": { + "lat": 48.942605084178794, + "long": 8.503781893684762 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 0.7 km hinter AS Karlsbad und 0.1 km vor Steinig", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A8 von Karlsbad (AS) nach Steinig (Rastplatz) Kanalsanierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.503781894, + 48.942605084 + ], + [ + 8.5041058, + 48.942499001 + ], + [ + 8.5048165, + 48.942269001 + ], + [ + 8.505005735, + 48.942206504 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de47", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.914787338615405,8.71235255294063,48.91498570219214,8.763936892464361", + "point": "48.914787338615405,8.71235255294063", + "startLcPosition": "50", + "impact": { + "lower": "Pforzheim-Ost", + "upper": "Am Waisenrain", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Am Waisenrain - Pforzheim-Ost", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.914787338615405, + "long": 8.71235255294063 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 1.8 km hinter Am Waisenrain und 0.2 km vor AS Pforzheim-Ost", + "", + "L\u00e4nge: 4.48 km | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.712352553, + 48.914787339 + ], + [ + 8.7131029, + 48.915015301 + ], + [ + 8.7137979, + 48.915226901 + ], + [ + 8.7146525, + 48.915457701 + ], + [ + 8.7158082, + 48.915778401 + ], + [ + 8.7173525, + 48.916202401 + ], + [ + 8.7181012, + 48.916399101 + ], + [ + 8.7188529, + 48.916586701 + ], + [ + 8.7192818, + 48.916699901 + ], + [ + 8.7197028, + 48.916820601 + ], + [ + 8.7203334, + 48.916990901 + ], + [ + 8.7212337, + 48.917208301 + ], + [ + 8.7216222, + 48.917300701 + ], + [ + 8.7235638, + 48.917738301 + ], + [ + 8.7240041, + 48.917832601 + ], + [ + 8.725536, + 48.918148601 + ], + [ + 8.7260514, + 48.918289001 + ], + [ + 8.7270812, + 48.918569801 + ], + [ + 8.7282231, + 48.918789201 + ], + [ + 8.7297826, + 48.919105701 + ], + [ + 8.7301945, + 48.919192501 + ], + [ + 8.7308272, + 48.919337301 + ], + [ + 8.7314337, + 48.919487801 + ], + [ + 8.7323508, + 48.919727301 + ], + [ + 8.7333171, + 48.920007801 + ], + [ + 8.7345384, + 48.920416501 + ], + [ + 8.7355075, + 48.920768201 + ], + [ + 8.7370333, + 48.921388101 + ], + [ + 8.7382429, + 48.921933401 + ], + [ + 8.738878, + 48.922234801 + ], + [ + 8.7400801, + 48.922765901 + ], + [ + 8.7405824, + 48.922999201 + ], + [ + 8.7413209, + 48.923336201 + ], + [ + 8.7421307, + 48.923693501 + ], + [ + 8.7429293, + 48.923978701 + ], + [ + 8.7435024, + 48.924149901 + ], + [ + 8.7442993, + 48.924349401 + ], + [ + 8.7451443, + 48.924508301 + ], + [ + 8.745502, + 48.924561001 + ], + [ + 8.7460003, + 48.924623501 + ], + [ + 8.7465898, + 48.924671401 + ], + [ + 8.7470319, + 48.924689801 + ], + [ + 8.7475661, + 48.924686501 + ], + [ + 8.7480581, + 48.924676401 + ], + [ + 8.7486276, + 48.924642901 + ], + [ + 8.7490918, + 48.924598901 + ], + [ + 8.7497912, + 48.924503701 + ], + [ + 8.7505394, + 48.924359501 + ], + [ + 8.7511276, + 48.924229501 + ], + [ + 8.7517321, + 48.924060401 + ], + [ + 8.752158, + 48.923924001 + ], + [ + 8.7525241, + 48.923792601 + ], + [ + 8.7529575, + 48.923630201 + ], + [ + 8.7534105, + 48.923436701 + ], + [ + 8.7539613, + 48.923168401 + ], + [ + 8.7542916, + 48.922980301 + ], + [ + 8.7547037, + 48.922749801 + ], + [ + 8.7551173, + 48.922496901 + ], + [ + 8.7555449, + 48.922197001 + ], + [ + 8.7563428, + 48.921577801 + ], + [ + 8.7572321, + 48.920830501 + ], + [ + 8.757943, + 48.920232201 + ], + [ + 8.7585805, + 48.919716601 + ], + [ + 8.7594013, + 48.919015301 + ], + [ + 8.7602899, + 48.918176601 + ], + [ + 8.7607255, + 48.917658401 + ], + [ + 8.7612919, + 48.917180201 + ], + [ + 8.7619091, + 48.916660501 + ], + [ + 8.7628116, + 48.915912301 + ], + [ + 8.7630911, + 48.915677401 + ], + [ + 8.7633778, + 48.915446001 + ], + [ + 8.7636751, + 48.915201101 + ], + [ + 8.763936892, + 48.914985702 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de65", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.91498570219214,8.763936892464361,48.89355648569479,8.785443205652996", + "point": "48.91498570219214,8.763936892464361", + "startLcPosition": "51", + "impact": { + "lower": "Pforzheim-S\u00fcd", + "upper": "Pforzheim-Nord", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Pforzheim-Nord - Pforzheim-S\u00fcd", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.91498570219214, + "long": 8.763936892464361 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 4.1 km hinter AS Pforzheim-Nord und 1.7 km vor AS Pforzheim-S\u00fcd", + "", + "L\u00e4nge: 2.88 km | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.763936892, + 48.914985702 + ], + [ + 8.7641192, + 48.914835701 + ], + [ + 8.7645327, + 48.914486601 + ], + [ + 8.7651164, + 48.913967901 + ], + [ + 8.7652813, + 48.913828901 + ], + [ + 8.7656516, + 48.913516701 + ], + [ + 8.7667385, + 48.912648101 + ], + [ + 8.7672913, + 48.912192401 + ], + [ + 8.7689883, + 48.910723601 + ], + [ + 8.7694207, + 48.910349401 + ], + [ + 8.7706196, + 48.909342001 + ], + [ + 8.7717009, + 48.908430101 + ], + [ + 8.7724464, + 48.907797201 + ], + [ + 8.7744819, + 48.906092001 + ], + [ + 8.7752951, + 48.905410201 + ], + [ + 8.775512, + 48.904762601 + ], + [ + 8.7764282, + 48.903990401 + ], + [ + 8.7774382, + 48.903171601 + ], + [ + 8.7778172, + 48.902847701 + ], + [ + 8.7788106, + 48.901991201 + ], + [ + 8.7800042, + 48.900928301 + ], + [ + 8.7808895, + 48.899992101 + ], + [ + 8.7815345, + 48.899354401 + ], + [ + 8.7820506, + 48.898776601 + ], + [ + 8.7825312, + 48.898236701 + ], + [ + 8.7830865, + 48.897531901 + ], + [ + 8.7840946, + 48.896048201 + ], + [ + 8.7846304, + 48.895236301 + ], + [ + 8.785173, + 48.894211301 + ], + [ + 8.785443206, + 48.893556486 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de53", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.91771738754354,8.723471004655886,48.882919292857856,8.787862883671545", + "point": "48.91771738754354,8.723471004655886", + "startLcPosition": "51", + "impact": { + "lower": "Pforzheim-S\u00fcd", + "upper": "Pforzheim-Nord", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Pforzheim-Nord - Pforzheim-S\u00fcd", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.91771738754354, + "long": 8.723471004655886 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 0.4 km hinter AS Pforzheim-Nord und 0.5 km vor AS Pforzheim-S\u00fcd", + "", + "L\u00e4nge: 7.68 km | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.723471005, + 48.917717388 + ], + [ + 8.7235638, + 48.917738301 + ], + [ + 8.7240041, + 48.917832601 + ], + [ + 8.725536, + 48.918148601 + ], + [ + 8.7260514, + 48.918289001 + ], + [ + 8.7270812, + 48.918569801 + ], + [ + 8.7282231, + 48.918789201 + ], + [ + 8.7297826, + 48.919105701 + ], + [ + 8.7301945, + 48.919192501 + ], + [ + 8.7308272, + 48.919337301 + ], + [ + 8.7314337, + 48.919487801 + ], + [ + 8.7323508, + 48.919727301 + ], + [ + 8.7333171, + 48.920007801 + ], + [ + 8.7345384, + 48.920416501 + ], + [ + 8.7355075, + 48.920768201 + ], + [ + 8.7370333, + 48.921388101 + ], + [ + 8.7382429, + 48.921933401 + ], + [ + 8.738878, + 48.922234801 + ], + [ + 8.7400801, + 48.922765901 + ], + [ + 8.7405824, + 48.922999201 + ], + [ + 8.7413209, + 48.923336201 + ], + [ + 8.7421307, + 48.923693501 + ], + [ + 8.7429293, + 48.923978701 + ], + [ + 8.7435024, + 48.924149901 + ], + [ + 8.7442993, + 48.924349401 + ], + [ + 8.7451443, + 48.924508301 + ], + [ + 8.745502, + 48.924561001 + ], + [ + 8.7460003, + 48.924623501 + ], + [ + 8.7465898, + 48.924671401 + ], + [ + 8.7470319, + 48.924689801 + ], + [ + 8.7475661, + 48.924686501 + ], + [ + 8.7480581, + 48.924676401 + ], + [ + 8.7486276, + 48.924642901 + ], + [ + 8.7490918, + 48.924598901 + ], + [ + 8.7497912, + 48.924503701 + ], + [ + 8.7505394, + 48.924359501 + ], + [ + 8.7511276, + 48.924229501 + ], + [ + 8.7517321, + 48.924060401 + ], + [ + 8.752158, + 48.923924001 + ], + [ + 8.7525241, + 48.923792601 + ], + [ + 8.7529575, + 48.923630201 + ], + [ + 8.7534105, + 48.923436701 + ], + [ + 8.7539613, + 48.923168401 + ], + [ + 8.7542916, + 48.922980301 + ], + [ + 8.7547037, + 48.922749801 + ], + [ + 8.7551173, + 48.922496901 + ], + [ + 8.7555449, + 48.922197001 + ], + [ + 8.7563428, + 48.921577801 + ], + [ + 8.7572321, + 48.920830501 + ], + [ + 8.757943, + 48.920232201 + ], + [ + 8.7585805, + 48.919716601 + ], + [ + 8.7594013, + 48.919015301 + ], + [ + 8.7602899, + 48.918176601 + ], + [ + 8.7607255, + 48.917658401 + ], + [ + 8.7612919, + 48.917180201 + ], + [ + 8.7619091, + 48.916660501 + ], + [ + 8.7628116, + 48.915912301 + ], + [ + 8.7630911, + 48.915677401 + ], + [ + 8.7633778, + 48.915446001 + ], + [ + 8.7636751, + 48.915201101 + ], + [ + 8.7641192, + 48.914835701 + ], + [ + 8.7645327, + 48.914486601 + ], + [ + 8.7651164, + 48.913967901 + ], + [ + 8.7652813, + 48.913828901 + ], + [ + 8.7656516, + 48.913516701 + ], + [ + 8.7667385, + 48.912648101 + ], + [ + 8.7672913, + 48.912192401 + ], + [ + 8.7689883, + 48.910723601 + ], + [ + 8.7694207, + 48.910349401 + ], + [ + 8.7706196, + 48.909342001 + ], + [ + 8.7717009, + 48.908430101 + ], + [ + 8.7724464, + 48.907797201 + ], + [ + 8.7744819, + 48.906092001 + ], + [ + 8.7752951, + 48.905410201 + ], + [ + 8.775512, + 48.904762601 + ], + [ + 8.7764282, + 48.903990401 + ], + [ + 8.7774382, + 48.903171601 + ], + [ + 8.7778172, + 48.902847701 + ], + [ + 8.7788106, + 48.901991201 + ], + [ + 8.7800042, + 48.900928301 + ], + [ + 8.7808895, + 48.899992101 + ], + [ + 8.7815345, + 48.899354401 + ], + [ + 8.7820506, + 48.898776601 + ], + [ + 8.7825312, + 48.898236701 + ], + [ + 8.7830865, + 48.897531901 + ], + [ + 8.7840946, + 48.896048201 + ], + [ + 8.7846304, + 48.895236301 + ], + [ + 8.785173, + 48.894211301 + ], + [ + 8.7854713, + 48.893488401 + ], + [ + 8.7859071, + 48.892321701 + ], + [ + 8.786066, + 48.891821601 + ], + [ + 8.7866331, + 48.889927301 + ], + [ + 8.7868604, + 48.889047801 + ], + [ + 8.7870726, + 48.888164401 + ], + [ + 8.7872998, + 48.887045401 + ], + [ + 8.7873794, + 48.886577801 + ], + [ + 8.7874903, + 48.885896001 + ], + [ + 8.7875685, + 48.885389101 + ], + [ + 8.7876511, + 48.884716901 + ], + [ + 8.7877589, + 48.883960501 + ], + [ + 8.7878363, + 48.883161701 + ], + [ + 8.787862884, + 48.882919293 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de49", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.91513645914174,8.764245603301227,48.914909685253974,8.712266672086765", + "point": "48.91513645914174,8.764245603301227", + "startLcPosition": "52", + "impact": { + "lower": "Am Waisenrain", + "upper": "Pforzheim-Ost", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Karlsruhe", + "title": "A8 | Pforzheim-Ost - Am Waisenrain", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.91513645914174, + "long": 8.764245603301227 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A8: Stuttgart -> Karlsruhe, zwischen 0.2 km hinter AS Pforzheim-Ost und 1.7 km vor Am Waisenrain", + "", + "L\u00e4nge: 4.48 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.764245603, + 48.915136459 + ], + [ + 8.7637801, + 48.915557201 + ], + [ + 8.7633389, + 48.915925301 + ], + [ + 8.7632144, + 48.916031601 + ], + [ + 8.7622573, + 48.916799901 + ], + [ + 8.7617034, + 48.917241001 + ], + [ + 8.7612882, + 48.917367801 + ], + [ + 8.7609571, + 48.917641901 + ], + [ + 8.7604142, + 48.918285201 + ], + [ + 8.7599485, + 48.918700301 + ], + [ + 8.7591959, + 48.919325201 + ], + [ + 8.7588004, + 48.919637901 + ], + [ + 8.7579891, + 48.920331401 + ], + [ + 8.7571758, + 48.920997601 + ], + [ + 8.7566662, + 48.921412701 + ], + [ + 8.7563124, + 48.921703301 + ], + [ + 8.7555315, + 48.922296801 + ], + [ + 8.7551165, + 48.922587401 + ], + [ + 8.7547513, + 48.922820701 + ], + [ + 8.7543305, + 48.923056101 + ], + [ + 8.7538264, + 48.923310901 + ], + [ + 8.753425, + 48.923513801 + ], + [ + 8.7529532, + 48.923710001 + ], + [ + 8.752504, + 48.923884401 + ], + [ + 8.7519688, + 48.924063401 + ], + [ + 8.7514778, + 48.924214701 + ], + [ + 8.7508316, + 48.924366601 + ], + [ + 8.7502915, + 48.924473501 + ], + [ + 8.7497721, + 48.924567401 + ], + [ + 8.7492552, + 48.924640001 + ], + [ + 8.7488656, + 48.924685501 + ], + [ + 8.7484441, + 48.924723101 + ], + [ + 8.7478825, + 48.924743601 + ], + [ + 8.7474535, + 48.924746601 + ], + [ + 8.7469062, + 48.924749801 + ], + [ + 8.7463899, + 48.924720601 + ], + [ + 8.7457896, + 48.924662301 + ], + [ + 8.7453613, + 48.924610601 + ], + [ + 8.7450067, + 48.924549801 + ], + [ + 8.7442565, + 48.924405201 + ], + [ + 8.7435336, + 48.924214101 + ], + [ + 8.742847, + 48.924026501 + ], + [ + 8.7420335, + 48.923720201 + ], + [ + 8.7412798, + 48.923402401 + ], + [ + 8.7405529, + 48.923061601 + ], + [ + 8.7397313, + 48.922687901 + ], + [ + 8.7381905, + 48.921998201 + ], + [ + 8.7371338, + 48.921521601 + ], + [ + 8.7360292, + 48.921046901 + ], + [ + 8.735386, + 48.920797201 + ], + [ + 8.7345359, + 48.920484701 + ], + [ + 8.7336536, + 48.920183101 + ], + [ + 8.7332779, + 48.920069001 + ], + [ + 8.7323817, + 48.919812601 + ], + [ + 8.7315399, + 48.919585901 + ], + [ + 8.7310012, + 48.919449001 + ], + [ + 8.7302332, + 48.919271001 + ], + [ + 8.7282075, + 48.918857001 + ], + [ + 8.7265031, + 48.918534901 + ], + [ + 8.7259549, + 48.918404201 + ], + [ + 8.7246226, + 48.918092401 + ], + [ + 8.7237436, + 48.917897301 + ], + [ + 8.7231799, + 48.917767101 + ], + [ + 8.7216916, + 48.917427401 + ], + [ + 8.7209746, + 48.917254801 + ], + [ + 8.719549, + 48.916911201 + ], + [ + 8.7193745, + 48.916869101 + ], + [ + 8.7185673, + 48.916667201 + ], + [ + 8.7163198, + 48.916069301 + ], + [ + 8.7141861, + 48.915487801 + ], + [ + 8.7130433, + 48.915147701 + ], + [ + 8.712266672, + 48.914909685 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de67", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.893595880144986,8.785716351671576,48.91513645914174,8.764245603301227", + "point": "48.893595880144986,8.785716351671576", + "startLcPosition": "54", + "impact": { + "lower": "Pforzheim-Nord", + "upper": "Pforzheim-S\u00fcd", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Karlsruhe", + "title": "A8 | Pforzheim-S\u00fcd - Pforzheim-Nord", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.893595880144986, + "long": 8.785716351671576 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A8: Stuttgart -> Karlsruhe, zwischen 1.7 km hinter AS Pforzheim-S\u00fcd und 4.1 km vor AS Pforzheim-Nord", + "", + "L\u00e4nge: 2.88 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.785716352, + 48.89359588 + ], + [ + 8.7857042, + 48.893637901 + ], + [ + 8.7854499, + 48.894226701 + ], + [ + 8.7852643, + 48.894619901 + ], + [ + 8.7849265, + 48.895267601 + ], + [ + 8.7841937, + 48.896071401 + ], + [ + 8.783906, + 48.896517601 + ], + [ + 8.7836236, + 48.896946501 + ], + [ + 8.7833452, + 48.897326201 + ], + [ + 8.7825397, + 48.898402701 + ], + [ + 8.7820912, + 48.898951201 + ], + [ + 8.7817214, + 48.899399601 + ], + [ + 8.7810862, + 48.900056901 + ], + [ + 8.7807021, + 48.900428801 + ], + [ + 8.7802177, + 48.900930801 + ], + [ + 8.7795893, + 48.901543301 + ], + [ + 8.7789769, + 48.902045401 + ], + [ + 8.7775849, + 48.903216601 + ], + [ + 8.7765554, + 48.904052001 + ], + [ + 8.7757131, + 48.904778501 + ], + [ + 8.7754579, + 48.905480701 + ], + [ + 8.7742919, + 48.906450501 + ], + [ + 8.7732734, + 48.907318801 + ], + [ + 8.7722961, + 48.908152001 + ], + [ + 8.7718474, + 48.908523901 + ], + [ + 8.7712226, + 48.909044401 + ], + [ + 8.7707796, + 48.909413601 + ], + [ + 8.7703863, + 48.909743001 + ], + [ + 8.7691096, + 48.910809501 + ], + [ + 8.7673347, + 48.912302301 + ], + [ + 8.7658141, + 48.913569001 + ], + [ + 8.7654476, + 48.913877801 + ], + [ + 8.7648597, + 48.914575301 + ], + [ + 8.764531, + 48.914878501 + ], + [ + 8.764245603, + 48.915136459 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de51", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.88292941353085,8.788079848256029,48.917821670647754,8.723416157340978", + "point": "48.88292941353085,8.788079848256029", + "startLcPosition": "54", + "impact": { + "lower": "Pforzheim-Nord", + "upper": "Pforzheim-S\u00fcd", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Karlsruhe", + "title": "A8 | Pforzheim-S\u00fcd - Pforzheim-Nord", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.88292941353085, + "long": 8.788079848256029 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A8: Stuttgart -> Karlsruhe, zwischen 0.5 km hinter AS Pforzheim-S\u00fcd und 0.4 km vor AS Pforzheim-Nord", + "", + "L\u00e4nge: 7.68 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.788079848, + 48.882929414 + ], + [ + 8.7880768, + 48.882958601 + ], + [ + 8.7880703, + 48.883014301 + ], + [ + 8.7880272, + 48.883435701 + ], + [ + 8.7879775, + 48.883809701 + ], + [ + 8.7879226, + 48.884274001 + ], + [ + 8.7878638, + 48.884750501 + ], + [ + 8.7878019, + 48.885196001 + ], + [ + 8.7877335, + 48.885664201 + ], + [ + 8.787664, + 48.886088201 + ], + [ + 8.7875779, + 48.886631601 + ], + [ + 8.787524, + 48.886938401 + ], + [ + 8.7874384, + 48.887373301 + ], + [ + 8.7872689, + 48.888207601 + ], + [ + 8.7870682, + 48.889053101 + ], + [ + 8.7870159, + 48.889284101 + ], + [ + 8.7869999, + 48.889342401 + ], + [ + 8.7868682, + 48.889939101 + ], + [ + 8.7865895, + 48.890926101 + ], + [ + 8.786306, + 48.891850401 + ], + [ + 8.7860705, + 48.892541401 + ], + [ + 8.7858431, + 48.893157201 + ], + [ + 8.7857755, + 48.893344701 + ], + [ + 8.7857459, + 48.893493701 + ], + [ + 8.7857042, + 48.893637901 + ], + [ + 8.7854499, + 48.894226701 + ], + [ + 8.7852643, + 48.894619901 + ], + [ + 8.7849265, + 48.895267601 + ], + [ + 8.7841937, + 48.896071401 + ], + [ + 8.783906, + 48.896517601 + ], + [ + 8.7836236, + 48.896946501 + ], + [ + 8.7833452, + 48.897326201 + ], + [ + 8.7825397, + 48.898402701 + ], + [ + 8.7820912, + 48.898951201 + ], + [ + 8.7817214, + 48.899399601 + ], + [ + 8.7810862, + 48.900056901 + ], + [ + 8.7807021, + 48.900428801 + ], + [ + 8.7802177, + 48.900930801 + ], + [ + 8.7795893, + 48.901543301 + ], + [ + 8.7789769, + 48.902045401 + ], + [ + 8.7775849, + 48.903216601 + ], + [ + 8.7765554, + 48.904052001 + ], + [ + 8.7757131, + 48.904778501 + ], + [ + 8.7754579, + 48.905480701 + ], + [ + 8.7742919, + 48.906450501 + ], + [ + 8.7732734, + 48.907318801 + ], + [ + 8.7722961, + 48.908152001 + ], + [ + 8.7718474, + 48.908523901 + ], + [ + 8.7712226, + 48.909044401 + ], + [ + 8.7707796, + 48.909413601 + ], + [ + 8.7703863, + 48.909743001 + ], + [ + 8.7691096, + 48.910809501 + ], + [ + 8.7673347, + 48.912302301 + ], + [ + 8.7658141, + 48.913569001 + ], + [ + 8.7654476, + 48.913877801 + ], + [ + 8.7648597, + 48.914575301 + ], + [ + 8.764531, + 48.914878501 + ], + [ + 8.7637801, + 48.915557201 + ], + [ + 8.7633389, + 48.915925301 + ], + [ + 8.7632144, + 48.916031601 + ], + [ + 8.7622573, + 48.916799901 + ], + [ + 8.7617034, + 48.917241001 + ], + [ + 8.7612882, + 48.917367801 + ], + [ + 8.7609571, + 48.917641901 + ], + [ + 8.7604142, + 48.918285201 + ], + [ + 8.7599485, + 48.918700301 + ], + [ + 8.7591959, + 48.919325201 + ], + [ + 8.7588004, + 48.919637901 + ], + [ + 8.7579891, + 48.920331401 + ], + [ + 8.7571758, + 48.920997601 + ], + [ + 8.7566662, + 48.921412701 + ], + [ + 8.7563124, + 48.921703301 + ], + [ + 8.7555315, + 48.922296801 + ], + [ + 8.7551165, + 48.922587401 + ], + [ + 8.7547513, + 48.922820701 + ], + [ + 8.7543305, + 48.923056101 + ], + [ + 8.7538264, + 48.923310901 + ], + [ + 8.753425, + 48.923513801 + ], + [ + 8.7529532, + 48.923710001 + ], + [ + 8.752504, + 48.923884401 + ], + [ + 8.7519688, + 48.924063401 + ], + [ + 8.7514778, + 48.924214701 + ], + [ + 8.7508316, + 48.924366601 + ], + [ + 8.7502915, + 48.924473501 + ], + [ + 8.7497721, + 48.924567401 + ], + [ + 8.7492552, + 48.924640001 + ], + [ + 8.7488656, + 48.924685501 + ], + [ + 8.7484441, + 48.924723101 + ], + [ + 8.7478825, + 48.924743601 + ], + [ + 8.7474535, + 48.924746601 + ], + [ + 8.7469062, + 48.924749801 + ], + [ + 8.7463899, + 48.924720601 + ], + [ + 8.7457896, + 48.924662301 + ], + [ + 8.7453613, + 48.924610601 + ], + [ + 8.7450067, + 48.924549801 + ], + [ + 8.7442565, + 48.924405201 + ], + [ + 8.7435336, + 48.924214101 + ], + [ + 8.742847, + 48.924026501 + ], + [ + 8.7420335, + 48.923720201 + ], + [ + 8.7412798, + 48.923402401 + ], + [ + 8.7405529, + 48.923061601 + ], + [ + 8.7397313, + 48.922687901 + ], + [ + 8.7381905, + 48.921998201 + ], + [ + 8.7371338, + 48.921521601 + ], + [ + 8.7360292, + 48.921046901 + ], + [ + 8.735386, + 48.920797201 + ], + [ + 8.7345359, + 48.920484701 + ], + [ + 8.7336536, + 48.920183101 + ], + [ + 8.7332779, + 48.920069001 + ], + [ + 8.7323817, + 48.919812601 + ], + [ + 8.7315399, + 48.919585901 + ], + [ + 8.7310012, + 48.919449001 + ], + [ + 8.7302332, + 48.919271001 + ], + [ + 8.7282075, + 48.918857001 + ], + [ + 8.7265031, + 48.918534901 + ], + [ + 8.7259549, + 48.918404201 + ], + [ + 8.7246226, + 48.918092401 + ], + [ + 8.7237436, + 48.917897301 + ], + [ + 8.723416157, + 48.917821671 + ] + ] + } + }, + { + "identifier": "2026-016954--vi-bs.2026-04-07_20-00-00-000.devi-bs.2026-04-07_20-00-00-000_013.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.8250211571035,8.883347603814334,48.89611095971573,8.784168193597207", + "point": "48.8250211571035,8.883347603814334", + "startLcPosition": "56", + "impact": { + "lower": "Pforzheim", + "upper": "H\u00f6llberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Karlsruhe", + "title": "A8 | H\u00f6llberg - Pforzheim", + "coordinate": { + "lat": 48.8250211571035, + "long": 8.883347603814334 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A8: Stuttgart -> Karlsruhe, zwischen 0.4 km hinter H\u00f6llberg und 1.5 km vor Pforzheim", + "", + "L\u00e4nge: 12.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 von H\u00f6llberg (Rastplatz) nach Pforzheim (Raststaette) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.883347604, + 48.825021157 + ], + [ + 8.8821961, + 48.825342301 + ], + [ + 8.8810041, + 48.825687201 + ], + [ + 8.879246, + 48.826196701 + ], + [ + 8.8776302, + 48.826688001 + ], + [ + 8.8748285, + 48.827526601 + ], + [ + 8.8727697, + 48.828107201 + ], + [ + 8.8702021, + 48.828821401 + ], + [ + 8.8694344, + 48.829032701 + ], + [ + 8.8691872, + 48.829103301 + ], + [ + 8.8676759, + 48.829526501 + ], + [ + 8.8671832, + 48.829665101 + ], + [ + 8.8666913, + 48.829809701 + ], + [ + 8.8662075, + 48.829958001 + ], + [ + 8.8656585, + 48.830131701 + ], + [ + 8.8651727, + 48.830297001 + ], + [ + 8.8644076, + 48.830568101 + ], + [ + 8.8636557, + 48.830859701 + ], + [ + 8.8628149, + 48.831206301 + ], + [ + 8.8619996, + 48.831575401 + ], + [ + 8.8611868, + 48.831970601 + ], + [ + 8.86039, + 48.832379601 + ], + [ + 8.8594556, + 48.832871601 + ], + [ + 8.8585279, + 48.833375101 + ], + [ + 8.8573944, + 48.833995601 + ], + [ + 8.8562429, + 48.834614501 + ], + [ + 8.8545697, + 48.835513801 + ], + [ + 8.8535442, + 48.836046701 + ], + [ + 8.8525361, + 48.836546401 + ], + [ + 8.8519589, + 48.836816701 + ], + [ + 8.8513946, + 48.837070601 + ], + [ + 8.8503095, + 48.837526101 + ], + [ + 8.8496814, + 48.837772901 + ], + [ + 8.8490405, + 48.837997801 + ], + [ + 8.8481108, + 48.838310101 + ], + [ + 8.8471141, + 48.838622201 + ], + [ + 8.8463781, + 48.838825101 + ], + [ + 8.8456577, + 48.839005701 + ], + [ + 8.8450197, + 48.839155701 + ], + [ + 8.8443994, + 48.839292401 + ], + [ + 8.8437541, + 48.839419501 + ], + [ + 8.8431257, + 48.839531401 + ], + [ + 8.8425651, + 48.839629901 + ], + [ + 8.8420117, + 48.839708701 + ], + [ + 8.8410412, + 48.839837501 + ], + [ + 8.8398785, + 48.839960501 + ], + [ + 8.8386516, + 48.840056401 + ], + [ + 8.8372153, + 48.840133201 + ], + [ + 8.8364653, + 48.840165201 + ], + [ + 8.8357536, + 48.840185701 + ], + [ + 8.8343555, + 48.840218501 + ], + [ + 8.8329501, + 48.840250901 + ], + [ + 8.8322053, + 48.840269601 + ], + [ + 8.8314701, + 48.840288001 + ], + [ + 8.8311372, + 48.840300901 + ], + [ + 8.8303593, + 48.840340601 + ], + [ + 8.8293367, + 48.840400501 + ], + [ + 8.8285962, + 48.840467301 + ], + [ + 8.827756, + 48.840565101 + ], + [ + 8.8270955, + 48.840658501 + ], + [ + 8.8261422, + 48.840831001 + ], + [ + 8.8255357, + 48.840957601 + ], + [ + 8.8249453, + 48.841094101 + ], + [ + 8.8238711, + 48.841382301 + ], + [ + 8.8229638, + 48.841650601 + ], + [ + 8.8222607, + 48.841872001 + ], + [ + 8.8217226, + 48.842048901 + ], + [ + 8.8215643, + 48.842100901 + ], + [ + 8.8198304, + 48.842676201 + ], + [ + 8.8188152, + 48.843020701 + ], + [ + 8.817968, + 48.843302001 + ], + [ + 8.8175078, + 48.843449301 + ], + [ + 8.8168481, + 48.843670001 + ], + [ + 8.8155154, + 48.844112001 + ], + [ + 8.8149523, + 48.844305001 + ], + [ + 8.81372, + 48.844719901 + ], + [ + 8.8124069, + 48.845165201 + ], + [ + 8.8114472, + 48.845508201 + ], + [ + 8.8104955, + 48.845859501 + ], + [ + 8.8097847, + 48.846137801 + ], + [ + 8.8090626, + 48.846435301 + ], + [ + 8.8081855, + 48.846823801 + ], + [ + 8.8072686, + 48.847268101 + ], + [ + 8.8063962, + 48.847726201 + ], + [ + 8.8056653, + 48.848146201 + ], + [ + 8.8048318, + 48.848650901 + ], + [ + 8.8042985, + 48.849001301 + ], + [ + 8.8037954, + 48.849352901 + ], + [ + 8.8032074, + 48.849786401 + ], + [ + 8.802645, + 48.850237701 + ], + [ + 8.802016, + 48.850751501 + ], + [ + 8.8014259, + 48.851300901 + ], + [ + 8.8010246, + 48.851698501 + ], + [ + 8.800903, + 48.851824901 + ], + [ + 8.8004636, + 48.852293201 + ], + [ + 8.7998469, + 48.852987501 + ], + [ + 8.7992494, + 48.853722101 + ], + [ + 8.7982792, + 48.855055601 + ], + [ + 8.7973609, + 48.856435501 + ], + [ + 8.7962869, + 48.858149701 + ], + [ + 8.7952991, + 48.859809401 + ], + [ + 8.7943621, + 48.861483301 + ], + [ + 8.793755, + 48.862626501 + ], + [ + 8.7931681, + 48.863789901 + ], + [ + 8.7925075, + 48.865205401 + ], + [ + 8.7924153, + 48.865411701 + ], + [ + 8.7920738, + 48.866117601 + ], + [ + 8.7914926, + 48.867467201 + ], + [ + 8.7906781, + 48.869481601 + ], + [ + 8.7899979, + 48.871463401 + ], + [ + 8.7895882, + 48.872841201 + ], + [ + 8.7894474, + 48.873382801 + ], + [ + 8.7892784, + 48.874092001 + ], + [ + 8.7891752, + 48.874581501 + ], + [ + 8.7890768, + 48.875086001 + ], + [ + 8.7889579, + 48.875708801 + ], + [ + 8.7887526, + 48.877034601 + ], + [ + 8.7887446, + 48.877086201 + ], + [ + 8.7886504, + 48.877742501 + ], + [ + 8.7885587, + 48.878593701 + ], + [ + 8.788539, + 48.878762601 + ], + [ + 8.7885171, + 48.878949501 + ], + [ + 8.7883446, + 48.880439101 + ], + [ + 8.7881799, + 48.882011401 + ], + [ + 8.7881479, + 48.882277801 + ], + [ + 8.7880768, + 48.882958601 + ], + [ + 8.7880703, + 48.883014301 + ], + [ + 8.7880272, + 48.883435701 + ], + [ + 8.7879775, + 48.883809701 + ], + [ + 8.7879226, + 48.884274001 + ], + [ + 8.7878638, + 48.884750501 + ], + [ + 8.7878019, + 48.885196001 + ], + [ + 8.7877335, + 48.885664201 + ], + [ + 8.787664, + 48.886088201 + ], + [ + 8.7875779, + 48.886631601 + ], + [ + 8.787524, + 48.886938401 + ], + [ + 8.7874384, + 48.887373301 + ], + [ + 8.7872689, + 48.888207601 + ], + [ + 8.7870682, + 48.889053101 + ], + [ + 8.7870159, + 48.889284101 + ], + [ + 8.7869999, + 48.889342401 + ], + [ + 8.7868682, + 48.889939101 + ], + [ + 8.7865895, + 48.890926101 + ], + [ + 8.786306, + 48.891850401 + ], + [ + 8.7860705, + 48.892541401 + ], + [ + 8.7858431, + 48.893157201 + ], + [ + 8.7857755, + 48.893344701 + ], + [ + 8.7857459, + 48.893493701 + ], + [ + 8.7857042, + 48.893637901 + ], + [ + 8.7854499, + 48.894226701 + ], + [ + 8.7852643, + 48.894619901 + ], + [ + 8.7849265, + 48.895267601 + ], + [ + 8.7841937, + 48.896071401 + ], + [ + 8.784168194, + 48.89611096 + ] + ] + } + }, + { + "identifier": "2025-059818--vi-bs.2026-03-14_06-00-00-000.devi-zus.2026-02-09_00-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.79327500303474,8.965982908960747,48.790021502879725,8.974929877431023", + "point": "48.79327500303474,8.965982908960747", + "startLcPosition": "58", + "impact": { + "lower": "Leonberg-West", + "upper": "Rutesheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Rutesheim - Leonberg-West", + "coordinate": { + "lat": 48.79327500303474, + "long": 8.965982908960747 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.05.26 von 06:00 bis 18:00 Uhr", + "10.05.26 von 06:00 bis 18:00 Uhr", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 4.1 km hinter AS Rutesheim und 0.5 km vor AS Leonberg-West", + "", + "L\u00e4nge: 0.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 Br\u00fcckeninstandsetzung - Wasserbachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.965982909, + 48.793275003 + ], + [ + 8.9666301, + 48.793036901 + ], + [ + 8.968939, + 48.792177201 + ], + [ + 8.96917, + 48.792089201 + ], + [ + 8.9707677, + 48.791525901 + ], + [ + 8.9712959, + 48.791334201 + ], + [ + 8.9726672, + 48.790837801 + ], + [ + 8.9743564, + 48.790223901 + ], + [ + 8.974929877, + 48.790021503 + ] + ] + } + }, + { + "identifier": "2025-059818--vi-bs.2026-03-06_21-00-00-000.devi-zus.2026-02-09_00-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.79327500303474,8.965982908960747,48.790021502879725,8.974929877431023", + "point": "48.79327500303474,8.965982908960747", + "startLcPosition": "58", + "impact": { + "lower": "Leonberg-West", + "upper": "Rutesheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Rutesheim - Leonberg-West", + "coordinate": { + "lat": 48.79327500303474, + "long": 8.965982908960747 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 21:00 bis zum 25.04.26 06:00 Uhr.", + "25.04.26 21:00 bis zum 26.04.26 08:00 Uhr.", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 4.1 km hinter AS Rutesheim und 0.5 km vor AS Leonberg-West", + "", + "L\u00e4nge: 0.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Br\u00fcckeninstandsetzung - Wasserbachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.965982909, + 48.793275003 + ], + [ + 8.9666301, + 48.793036901 + ], + [ + 8.968939, + 48.792177201 + ], + [ + 8.96917, + 48.792089201 + ], + [ + 8.9707677, + 48.791525901 + ], + [ + 8.9712959, + 48.791334201 + ], + [ + 8.9726672, + 48.790837801 + ], + [ + 8.9743564, + 48.790223901 + ], + [ + 8.974929877, + 48.790021503 + ] + ] + } + }, + { + "identifier": "2025-059818--vi-bs.2026-02-14_06-00-00-000.devi-zus.2026-02-09_00-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.79283566638602,8.967170574766412,48.790021502879725,8.974929877431023", + "point": "48.79283566638602,8.967170574766412", + "startLcPosition": "58", + "impact": { + "lower": "Leonberg-West", + "upper": "Rutesheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Rutesheim - Leonberg-West", + "coordinate": { + "lat": 48.79283566638602, + "long": 8.967170574766412 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 06:00 bis 18:00 Uhr", + "19.04.26 von 06:00 bis 18:00 Uhr", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 4.2 km hinter AS Rutesheim und 0.5 km vor AS Leonberg-West", + "", + "L\u00e4nge: 0.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 Br\u00fcckeninstandsetzung - Wasserbachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.967170575, + 48.792835666 + ], + [ + 8.968939, + 48.792177201 + ], + [ + 8.96917, + 48.792089201 + ], + [ + 8.9707677, + 48.791525901 + ], + [ + 8.9712959, + 48.791334201 + ], + [ + 8.9726672, + 48.790837801 + ], + [ + 8.9743564, + 48.790223901 + ], + [ + 8.974929877, + 48.790021503 + ] + ] + } + }, + { + "identifier": "2026-013582--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_00-00-00-000_003.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.780423015699405,9.014407606438965,48.77974083790812,9.015843948432249", + "point": "48.780423015699405,9.014407606438965", + "startLcPosition": "60", + "impact": { + "lower": "Leonberg-Ost", + "upper": "Leonberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Leonberg - Leonberg-Ost", + "coordinate": { + "lat": 48.780423015699405, + "long": 9.014407606438965 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 03:00 bis 05:00 Uhr", + "", + "A8: Karlsruhe -> Stuttgart, zwischen AD Leonberg und 0.8 km vor AS Leonberg-Ost", + "", + "L\u00e4nge: 0.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A8 Wartung Geschwindigkeitsmessanlagen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.014407606, + 48.780423016 + ], + [ + 9.0150609, + 48.780116201 + ], + [ + 9.015843948, + 48.779740838 + ] + ] + } + }, + { + "identifier": "2026-013582--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_00-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.780423015699405,9.014407606438965,48.77974083790812,9.015843948432249", + "point": "48.780423015699405,9.014407606438965", + "startLcPosition": "60", + "impact": { + "lower": "Leonberg-Ost", + "upper": "Leonberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Leonberg - Leonberg-Ost", + "coordinate": { + "lat": 48.780423015699405, + "long": 9.014407606438965 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 21:00 bis 24:00 Uhr", + "", + "A8: Karlsruhe -> Stuttgart, zwischen AD Leonberg und 0.8 km vor AS Leonberg-Ost", + "", + "L\u00e4nge: 0.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Wartung Geschwindigkeitsmessanlagen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.014407606, + 48.780423016 + ], + [ + 9.0150609, + 48.780116201 + ], + [ + 9.015843948, + 48.779740838 + ] + ] + } + }, + { + "identifier": "2026-013582--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_00-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.780423015699405,9.014407606438965,48.77974083790812,9.015843948432249", + "point": "48.780423015699405,9.014407606438965", + "startLcPosition": "60", + "impact": { + "lower": "Leonberg-Ost", + "upper": "Leonberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Leonberg - Leonberg-Ost", + "coordinate": { + "lat": 48.780423015699405, + "long": 9.014407606438965 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 20:00 bis 22:00 Uhr", + "", + "A8: Karlsruhe -> Stuttgart, zwischen AD Leonberg und 0.8 km vor AS Leonberg-Ost", + "", + "L\u00e4nge: 0.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A8 Wartung Geschwindigkeitsmessanlagen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.014407606, + 48.780423016 + ], + [ + 9.0150609, + 48.780116201 + ], + [ + 9.015843948, + 48.779740838 + ] + ] + } + }, + { + "identifier": "2026-016048--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.76654097275293,9.03090355906329,48.714708812406904,9.089039764791803", + "point": "48.76654097275293,9.03090355906329", + "startLcPosition": "61", + "impact": { + "lower": "Stuttgart-M\u00f6hringen", + "upper": "Leonberg-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Leonberg-Ost - Stuttgart-M\u00f6hringen", + "coordinate": { + "lat": 48.76654097275293, + "long": 9.03090355906329 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 1.1 km hinter AS Leonberg-Ost und 3.8 km vor AS Stuttgart-M\u00f6hringen", + "", + "L\u00e4nge: 7.87 km | Maximale Durchfahrtsbreite: 14 m", + "", + "A8 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.030903559, + 48.766540973 + ], + [ + 9.0316875, + 48.764810201 + ], + [ + 9.0317963, + 48.764565301 + ], + [ + 9.0319469, + 48.764213501 + ], + [ + 9.0320524, + 48.763967201 + ], + [ + 9.0321311, + 48.763771101 + ], + [ + 9.0322523, + 48.763446201 + ], + [ + 9.0324011, + 48.763009701 + ], + [ + 9.0324848, + 48.762710001 + ], + [ + 9.0325636, + 48.762387501 + ], + [ + 9.0326313, + 48.762068201 + ], + [ + 9.0326953, + 48.761698801 + ], + [ + 9.032759, + 48.761260801 + ], + [ + 9.0328193, + 48.760722801 + ], + [ + 9.0328554, + 48.760402101 + ], + [ + 9.0328928, + 48.760072501 + ], + [ + 9.0329635, + 48.759432401 + ], + [ + 9.0330386, + 48.758766001 + ], + [ + 9.0330675, + 48.758509301 + ], + [ + 9.0331033, + 48.758159701 + ], + [ + 9.0331403, + 48.757808101 + ], + [ + 9.0331855, + 48.757397001 + ], + [ + 9.0331971, + 48.757295101 + ], + [ + 9.0332464, + 48.756860601 + ], + [ + 9.0334125, + 48.755384501 + ], + [ + 9.033577, + 48.753932601 + ], + [ + 9.0336882, + 48.752888901 + ], + [ + 9.0337281, + 48.752521601 + ], + [ + 9.0341436, + 48.748810501 + ], + [ + 9.0342634, + 48.747604801 + ], + [ + 9.034409, + 48.746433201 + ], + [ + 9.0344512, + 48.745941201 + ], + [ + 9.0344768, + 48.745724901 + ], + [ + 9.0346018, + 48.744911001 + ], + [ + 9.0346434, + 48.744588701 + ], + [ + 9.0346523, + 48.744537901 + ], + [ + 9.0346771, + 48.744396501 + ], + [ + 9.0347044, + 48.744234201 + ], + [ + 9.0347298, + 48.744091601 + ], + [ + 9.0347657, + 48.743901401 + ], + [ + 9.0348012, + 48.743732501 + ], + [ + 9.0348407, + 48.743563801 + ], + [ + 9.034877, + 48.743409101 + ], + [ + 9.0349205, + 48.743244601 + ], + [ + 9.0349615, + 48.743094801 + ], + [ + 9.0350083, + 48.742931501 + ], + [ + 9.0350519, + 48.742787801 + ], + [ + 9.0351015, + 48.742636101 + ], + [ + 9.0351592, + 48.742471201 + ], + [ + 9.0352201, + 48.742309101 + ], + [ + 9.0352931, + 48.742116701 + ], + [ + 9.0353511, + 48.741974201 + ], + [ + 9.0354187, + 48.741819801 + ], + [ + 9.0354831, + 48.741677401 + ], + [ + 9.0355595, + 48.741512601 + ], + [ + 9.0356996, + 48.741229801 + ], + [ + 9.0357902, + 48.741055301 + ], + [ + 9.0358742, + 48.740898801 + ], + [ + 9.035947, + 48.740772101 + ], + [ + 9.0360376, + 48.740619201 + ], + [ + 9.0361566, + 48.740422301 + ], + [ + 9.0362509, + 48.740272601 + ], + [ + 9.0363548, + 48.740108901 + ], + [ + 9.0366922, + 48.739634801 + ], + [ + 9.0368511, + 48.739428101 + ], + [ + 9.0370267, + 48.739205401 + ], + [ + 9.0372533, + 48.738929601 + ], + [ + 9.0375619, + 48.738579501 + ], + [ + 9.0378394, + 48.738282101 + ], + [ + 9.0380302, + 48.738081201 + ], + [ + 9.0383057, + 48.737816601 + ], + [ + 9.0385495, + 48.737594501 + ], + [ + 9.0388458, + 48.737333501 + ], + [ + 9.0391484, + 48.737077501 + ], + [ + 9.0394622, + 48.736826001 + ], + [ + 9.0397822, + 48.736582001 + ], + [ + 9.0401135, + 48.736341501 + ], + [ + 9.040564, + 48.736033401 + ], + [ + 9.0408062, + 48.735875801 + ], + [ + 9.0410464, + 48.735725501 + ], + [ + 9.0411636, + 48.735652401 + ], + [ + 9.0413714, + 48.735522201 + ], + [ + 9.0417442, + 48.735303501 + ], + [ + 9.0421126, + 48.735097201 + ], + [ + 9.0425005, + 48.734884501 + ], + [ + 9.0428986, + 48.734678101 + ], + [ + 9.0434577, + 48.734389901 + ], + [ + 9.0440386, + 48.734108101 + ], + [ + 9.0446425, + 48.733819301 + ], + [ + 9.0452407, + 48.733533701 + ], + [ + 9.0458235, + 48.733257001 + ], + [ + 9.046413, + 48.732973301 + ], + [ + 9.0474252, + 48.732495201 + ], + [ + 9.0489931, + 48.731747201 + ], + [ + 9.0494503, + 48.731533301 + ], + [ + 9.0503665, + 48.731096001 + ], + [ + 9.0513598, + 48.730621301 + ], + [ + 9.051503, + 48.730554101 + ], + [ + 9.0523147, + 48.730173201 + ], + [ + 9.0534132, + 48.729680901 + ], + [ + 9.0539605, + 48.729451201 + ], + [ + 9.0546004, + 48.729187001 + ], + [ + 9.055026, + 48.729020501 + ], + [ + 9.0552439, + 48.728940001 + ], + [ + 9.0554456, + 48.728865601 + ], + [ + 9.0558857, + 48.728710001 + ], + [ + 9.0563133, + 48.728567801 + ], + [ + 9.0567522, + 48.728430901 + ], + [ + 9.0571055, + 48.728327501 + ], + [ + 9.057372, + 48.728246101 + ], + [ + 9.057866, + 48.728107001 + ], + [ + 9.0583151, + 48.727985001 + ], + [ + 9.0584555, + 48.727950201 + ], + [ + 9.058848, + 48.727848901 + ], + [ + 9.0590707, + 48.727794201 + ], + [ + 9.05989, + 48.727605701 + ], + [ + 9.0607898, + 48.727425401 + ], + [ + 9.0615057, + 48.727295101 + ], + [ + 9.062415, + 48.727146901 + ], + [ + 9.0637547, + 48.726926401 + ], + [ + 9.0642663, + 48.726846201 + ], + [ + 9.066357, + 48.726495301 + ], + [ + 9.0670854, + 48.726362201 + ], + [ + 9.0674792, + 48.726274201 + ], + [ + 9.0679719, + 48.726146501 + ], + [ + 9.0685155, + 48.725997801 + ], + [ + 9.0688551, + 48.725893801 + ], + [ + 9.0691452, + 48.725795101 + ], + [ + 9.0694573, + 48.725688501 + ], + [ + 9.069852, + 48.725538101 + ], + [ + 9.0700774, + 48.725447801 + ], + [ + 9.0703916, + 48.725310401 + ], + [ + 9.0706599, + 48.725191401 + ], + [ + 9.0708406, + 48.725102701 + ], + [ + 9.0714284, + 48.724814201 + ], + [ + 9.0719042, + 48.724541301 + ], + [ + 9.072304, + 48.724301001 + ], + [ + 9.0731098, + 48.723790401 + ], + [ + 9.0739546, + 48.723266601 + ], + [ + 9.0742264, + 48.723097201 + ], + [ + 9.0746178, + 48.722843801 + ], + [ + 9.0746865, + 48.722801101 + ], + [ + 9.0753235, + 48.722399501 + ], + [ + 9.0762176, + 48.721834301 + ], + [ + 9.0771291, + 48.721274201 + ], + [ + 9.0780307, + 48.720698201 + ], + [ + 9.0795253, + 48.719761501 + ], + [ + 9.0798317, + 48.719568601 + ], + [ + 9.0818688, + 48.718285901 + ], + [ + 9.0833916, + 48.717338501 + ], + [ + 9.083797, + 48.717083801 + ], + [ + 9.0840371, + 48.716940501 + ], + [ + 9.0844535, + 48.716694801 + ], + [ + 9.0846872, + 48.716561701 + ], + [ + 9.0853862, + 48.716195201 + ], + [ + 9.0858281, + 48.715975101 + ], + [ + 9.0866594, + 48.715593301 + ], + [ + 9.0870919, + 48.715409001 + ], + [ + 9.0875621, + 48.715223601 + ], + [ + 9.0880194, + 48.715050401 + ], + [ + 9.0884897, + 48.714887101 + ], + [ + 9.089039765, + 48.714708812 + ] + ] + } + }, + { + "identifier": "2026-013582--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_00-00-00-000_003.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.75100985010457,9.034154500691976,48.7576132866501,9.033420725440577", + "point": "48.75100985010457,9.034154500691976", + "startLcPosition": "62", + "impact": { + "lower": "Leonberg-Ost", + "upper": "Sindelfinger Wald", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Karlsruhe", + "title": "A8 | Sindelfinger Wald - Leonberg-Ost", + "coordinate": { + "lat": 48.75100985010457, + "long": 9.034154500691976 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 22:00 bis zum 21.04.26 01:00 Uhr.", + "", + "A8: Stuttgart -> Karlsruhe, zwischen 1.0 km hinter Sindelfinger Wald und 2.1 km vor AS Leonberg-Ost", + "", + "L\u00e4nge: 0.74 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A8 Wartung Geschwindigkeitsmessanlagen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.034154501, + 48.75100985 + ], + [ + 9.0339995, + 48.752447501 + ], + [ + 9.0339495, + 48.752904201 + ], + [ + 9.0338379, + 48.753924801 + ], + [ + 9.0336681, + 48.755366401 + ], + [ + 9.0334713, + 48.757155601 + ], + [ + 9.0334435, + 48.757408701 + ], + [ + 9.033420725, + 48.757613287 + ] + ] + } + }, + { + "identifier": "2026-013582--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_00-00-00-000_003.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.75100985010457,9.034154500691976,48.7576132866501,9.033420725440577", + "point": "48.75100985010457,9.034154500691976", + "startLcPosition": "62", + "impact": { + "lower": "Leonberg-Ost", + "upper": "Sindelfinger Wald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Karlsruhe", + "title": "A8 | Sindelfinger Wald - Leonberg-Ost", + "coordinate": { + "lat": 48.75100985010457, + "long": 9.034154500691976 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 01:00 bis 04:00 Uhr", + "", + "A8: Stuttgart -> Karlsruhe, zwischen 1.0 km hinter Sindelfinger Wald und 2.1 km vor AS Leonberg-Ost", + "", + "L\u00e4nge: 0.74 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 Wartung Geschwindigkeitsmessanlagen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.034154501, + 48.75100985 + ], + [ + 9.0339995, + 48.752447501 + ], + [ + 9.0339495, + 48.752904201 + ], + [ + 9.0338379, + 48.753924801 + ], + [ + 9.0336681, + 48.755366401 + ], + [ + 9.0334713, + 48.757155601 + ], + [ + 9.0334435, + 48.757408701 + ], + [ + 9.033420725, + 48.757613287 + ] + ] + } + }, + { + "identifier": "2026-013582--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_00-00-00-000_003.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.70863078208386,9.117231157004625,48.70877908972493,9.129019256628014", + "point": "48.70863078208386,9.117231157004625", + "startLcPosition": "64", + "impact": { + "lower": "Stuttgart-M\u00f6hringen", + "upper": "Stuttgart", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Stuttgart - Stuttgart-M\u00f6hringen", + "coordinate": { + "lat": 48.70863078208386, + "long": 9.117231157004625 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 23:00 bis zum 22.04.26 02:00 Uhr.", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 4.2 km hinter AK Stuttgart und 0.8 km vor AS Stuttgart-M\u00f6hringen", + "", + "L\u00e4nge: 0.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A8 Wartung Geschwindigkeitsmessanlagen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.117231157, + 48.708630782 + ], + [ + 9.1175694, + 48.708589201 + ], + [ + 9.1181065, + 48.708530301 + ], + [ + 9.1189638, + 48.708446901 + ], + [ + 9.1198511, + 48.708381001 + ], + [ + 9.1208661, + 48.708328701 + ], + [ + 9.1212969, + 48.708313001 + ], + [ + 9.1219709, + 48.708305201 + ], + [ + 9.1222084, + 48.708300501 + ], + [ + 9.1230163, + 48.708303301 + ], + [ + 9.1235025, + 48.708314801 + ], + [ + 9.1238921, + 48.708326001 + ], + [ + 9.124616, + 48.708355901 + ], + [ + 9.1253549, + 48.708402801 + ], + [ + 9.1259224, + 48.708445601 + ], + [ + 9.1264805, + 48.708498301 + ], + [ + 9.1275776, + 48.708617801 + ], + [ + 9.1278791, + 48.708650601 + ], + [ + 9.128428, + 48.708715801 + ], + [ + 9.129019257, + 48.70877909 + ] + ] + } + }, + { + "identifier": "2026-013582--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_00-00-00-000_003.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.70863078208386,9.117231157004625,48.70877908972493,9.129019256628014", + "point": "48.70863078208386,9.117231157004625", + "startLcPosition": "64", + "impact": { + "lower": "Stuttgart-M\u00f6hringen", + "upper": "Stuttgart", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 | Stuttgart - Stuttgart-M\u00f6hringen", + "coordinate": { + "lat": 48.70863078208386, + "long": 9.117231157004625 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 00:00 bis 03:00 Uhr", + "", + "A8: Karlsruhe -> Stuttgart, zwischen 4.2 km hinter AK Stuttgart und 0.8 km vor AS Stuttgart-M\u00f6hringen", + "", + "L\u00e4nge: 0.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 Wartung Geschwindigkeitsmessanlagen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.117231157, + 48.708630782 + ], + [ + 9.1175694, + 48.708589201 + ], + [ + 9.1181065, + 48.708530301 + ], + [ + 9.1189638, + 48.708446901 + ], + [ + 9.1198511, + 48.708381001 + ], + [ + 9.1208661, + 48.708328701 + ], + [ + 9.1212969, + 48.708313001 + ], + [ + 9.1219709, + 48.708305201 + ], + [ + 9.1222084, + 48.708300501 + ], + [ + 9.1230163, + 48.708303301 + ], + [ + 9.1235025, + 48.708314801 + ], + [ + 9.1238921, + 48.708326001 + ], + [ + 9.124616, + 48.708355901 + ], + [ + 9.1253549, + 48.708402801 + ], + [ + 9.1259224, + 48.708445601 + ], + [ + 9.1264805, + 48.708498301 + ], + [ + 9.1275776, + 48.708617801 + ], + [ + 9.1278791, + 48.708650601 + ], + [ + 9.128428, + 48.708715801 + ], + [ + 9.129019257, + 48.70877909 + ] + ] + } + }, + { + "identifier": "2024-028936--vi-fbm.2026-03-30_09-00-00-000.devi-zus.2025-03-07_09-00-00-000_001.de255", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.70788488001086,9.15418158533529,48.70863801760284,9.148781364666682", + "point": "48.70788488001086,9.15418158533529", + "startLcPosition": "66", + "impact": { + "lower": "Stuttgart-M\u00f6hringen", + "upper": "Stuttgart-Degerloch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Karlsruhe", + "title": "A8 | Stuttgart-Degerloch - Stuttgart-M\u00f6hringen", + "coordinate": { + "lat": 48.70788488001086, + "long": 9.15418158533529 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 09:00 bis 16:00 Uhr", + "25.04.26 von 09:00 bis 16:00 Uhr", + "26.04.26 von 09:00 bis 16:00 Uhr", + "27.04.26 von 09:00 bis 16:00 Uhr", + "28.04.26 von 09:00 bis 16:00 Uhr", + "", + "A8: M\u00fcnchen -> Karlsruhe, zwischen 1.0 km hinter AS Stuttgart-Degerloch und 0.7 km vor AS Stuttgart-M\u00f6hringen", + "", + "L\u00e4nge: 0.41 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A8 Sanierung Rampen - Echterdinger Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.154181585, + 48.70788488 + ], + [ + 9.1532044, + 48.708023401 + ], + [ + 9.152241, + 48.708156801 + ], + [ + 9.1508308, + 48.708353301 + ], + [ + 9.1500838, + 48.708456901 + ], + [ + 9.1493972, + 48.708551501 + ], + [ + 9.148781365, + 48.708638018 + ] + ] + } + }, + { + "identifier": "2026-014810--vi-bs.2026-04-13_19-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.70750774370271,9.1568813059626,48.70906885602933,9.129663762746551", + "point": "48.70750774370271,9.1568813059626", + "startLcPosition": "66", + "impact": { + "lower": "Stuttgart", + "upper": "Stuttgart-Degerloch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Karlsruhe", + "title": "A8 | Stuttgart-Degerloch - Stuttgart", + "coordinate": { + "lat": 48.70750774370271, + "long": 9.1568813059626 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:30 bis zum 14.04.26 06:00 Uhr.", + "", + "A8: M\u00fcnchen -> Karlsruhe, zwischen 0.7 km hinter AS Stuttgart-Degerloch und 5.1 km vor AK Stuttgart", + "", + "L\u00e4nge: 2.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A8 von Stuttgart-Degerloch (AS) nach Stuttgart (AK) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.156881306, + 48.707507744 + ], + [ + 9.1565654, + 48.707552401 + ], + [ + 9.1558571, + 48.707651801 + ], + [ + 9.1545024, + 48.707839401 + ], + [ + 9.1532044, + 48.708023401 + ], + [ + 9.152241, + 48.708156801 + ], + [ + 9.1508308, + 48.708353301 + ], + [ + 9.1500838, + 48.708456901 + ], + [ + 9.1493972, + 48.708551501 + ], + [ + 9.1467562, + 48.708922501 + ], + [ + 9.144837, + 48.709189601 + ], + [ + 9.1436791, + 48.709353701 + ], + [ + 9.1424884, + 48.709494701 + ], + [ + 9.1420926, + 48.709533201 + ], + [ + 9.1413683, + 48.709593301 + ], + [ + 9.1405945, + 48.709648001 + ], + [ + 9.1398677, + 48.709682601 + ], + [ + 9.1391892, + 48.709695201 + ], + [ + 9.1384616, + 48.709712501 + ], + [ + 9.1376869, + 48.709712501 + ], + [ + 9.1365933, + 48.709690501 + ], + [ + 9.1359288, + 48.709669201 + ], + [ + 9.135525, + 48.709655101 + ], + [ + 9.1350879, + 48.709630401 + ], + [ + 9.1343701, + 48.709576401 + ], + [ + 9.1339226, + 48.709537401 + ], + [ + 9.1335134, + 48.709497501 + ], + [ + 9.1325371, + 48.709385101 + ], + [ + 9.1311075, + 48.709225001 + ], + [ + 9.1298932, + 48.709094101 + ], + [ + 9.129663763, + 48.709068856 + ] + ] + } + }, + { + "identifier": "2024-028936--vi-bs.2026-04-02_06-00-00-000.devi-zus.2025-03-07_09-00-00-000_001.de266", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.70807593691096,9.152824998641206,48.70863801760284,9.148781364666682", + "point": "48.70807593691096,9.152824998641206", + "startLcPosition": "66", + "impact": { + "lower": "Stuttgart-M\u00f6hringen", + "upper": "Stuttgart-Degerloch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Karlsruhe", + "title": "A8 | Stuttgart-Degerloch - Stuttgart-M\u00f6hringen", + "startTimestamp": "2026-04-02T06:00:00+02:00", + "coordinate": { + "lat": 48.70807593691096, + "long": 9.152824998641206 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 06:00 Uhr", + "Ende: 28.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.04.26)", + "", + "A8: M\u00fcnchen -> Karlsruhe, zwischen 1.1 km hinter AS Stuttgart-Degerloch und 0.7 km vor AS Stuttgart-M\u00f6hringen", + "", + "L\u00e4nge: 0.3 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A8 Sanierung Rampen - Echterdinger Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.152824999, + 48.708075937 + ], + [ + 9.152241, + 48.708156801 + ], + [ + 9.1508308, + 48.708353301 + ], + [ + 9.1500838, + 48.708456901 + ], + [ + 9.1493972, + 48.708551501 + ], + [ + 9.148781365, + 48.708638018 + ] + ] + } + }, + { + "identifier": "2026-013582--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_00-00-00-000_003.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.69380780076511,9.199455881030474,48.697734294002885,9.1879479848648", + "point": "48.69380780076511,9.199455881030474", + "startLcPosition": "68", + "impact": { + "lower": "Stuttgart-Flughafen/Messe", + "upper": "Stuttgart-Plieningen", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Stuttgart-Plieningen - Stuttgart-Flughafen/Messe", + "coordinate": { + "lat": 48.69380780076511, + "long": 9.199455881030474 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 02:00 bis 05:00 Uhr", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 1.5 km hinter AS Stuttgart-Plieningen und 0.1 km vor AS Stuttgart-Flughafen/Messe", + "", + "L\u00e4nge: 0.96 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A8 Wartung Geschwindigkeitsmessanlagen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.199455881, + 48.693807801 + ], + [ + 9.198909, + 48.693911001 + ], + [ + 9.1983586, + 48.694026601 + ], + [ + 9.1975596, + 48.694211601 + ], + [ + 9.1961709, + 48.694561901 + ], + [ + 9.1950908, + 48.694863201 + ], + [ + 9.1942035, + 48.695140201 + ], + [ + 9.1935251, + 48.695376101 + ], + [ + 9.1931151, + 48.695518201 + ], + [ + 9.1922043, + 48.695850501 + ], + [ + 9.1916676, + 48.696059901 + ], + [ + 9.1908396, + 48.696404301 + ], + [ + 9.1901706, + 48.696697501 + ], + [ + 9.1895596, + 48.696976001 + ], + [ + 9.1890981, + 48.697191001 + ], + [ + 9.1884419, + 48.697502101 + ], + [ + 9.1882412, + 48.697594401 + ], + [ + 9.187947985, + 48.697734294 + ] + ] + } + }, + { + "identifier": "2026-013582--vi-bs.2026-04-20_20-00-00-000.devi-zus.2026-04-20_00-00-00-000_003.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.69380780076511,9.199455881030474,48.697734294002885,9.1879479848648", + "point": "48.69380780076511,9.199455881030474", + "startLcPosition": "68", + "impact": { + "lower": "Stuttgart-Flughafen/Messe", + "upper": "Stuttgart-Plieningen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Stuttgart-Plieningen - Stuttgart-Flughafen/Messe", + "coordinate": { + "lat": 48.69380780076511, + "long": 9.199455881030474 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 20:00 bis 23:00 Uhr", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 1.5 km hinter AS Stuttgart-Plieningen und 0.1 km vor AS Stuttgart-Flughafen/Messe", + "", + "L\u00e4nge: 0.96 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 Wartung Geschwindigkeitsmessanlagen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.199455881, + 48.693807801 + ], + [ + 9.198909, + 48.693911001 + ], + [ + 9.1983586, + 48.694026601 + ], + [ + 9.1975596, + 48.694211601 + ], + [ + 9.1961709, + 48.694561901 + ], + [ + 9.1950908, + 48.694863201 + ], + [ + 9.1942035, + 48.695140201 + ], + [ + 9.1935251, + 48.695376101 + ], + [ + 9.1931151, + 48.695518201 + ], + [ + 9.1922043, + 48.695850501 + ], + [ + 9.1916676, + 48.696059901 + ], + [ + 9.1908396, + 48.696404301 + ], + [ + 9.1901706, + 48.696697501 + ], + [ + 9.1895596, + 48.696976001 + ], + [ + 9.1890981, + 48.697191001 + ], + [ + 9.1884419, + 48.697502101 + ], + [ + 9.1882412, + 48.697594401 + ], + [ + 9.187947985, + 48.697734294 + ] + ] + } + }, + { + "identifier": "2024-028936--vi-fbm.2026-04-08_20-00-00-000.devi-zus.2025-03-07_09-00-00-000_001.de251", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.69297378784793,9.212230928804926,48.706927253988034,9.161016170155674", + "point": "48.69297378784793,9.212230928804926", + "startLcPosition": "68", + "impact": { + "lower": "Stuttgart-M\u00f6hringen", + "upper": "Stuttgart-Plieningen", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Karlsruhe", + "title": "A8 | Stuttgart-Plieningen - Stuttgart-M\u00f6hringen", + "coordinate": { + "lat": 48.69297378784793, + "long": 9.212230928804926 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 00:00 bis 05:00 Uhr", + "", + "A8: M\u00fcnchen -> Karlsruhe, zwischen 0.6 km hinter AS Stuttgart-Plieningen und 1.6 km vor AS Stuttgart-M\u00f6hringen", + "", + "L\u00e4nge: 4.17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 Sanierung Rampen - Echterdinger Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.212230929, + 48.692973788 + ], + [ + 9.2116499, + 48.692965901 + ], + [ + 9.2109922, + 48.692961901 + ], + [ + 9.2097897, + 48.692958001 + ], + [ + 9.2089501, + 48.692966601 + ], + [ + 9.2081639, + 48.692981701 + ], + [ + 9.2071713, + 48.693008601 + ], + [ + 9.2064741, + 48.693039101 + ], + [ + 9.2055735, + 48.693084001 + ], + [ + 9.204198, + 48.693176801 + ], + [ + 9.2030305, + 48.693285401 + ], + [ + 9.2016873, + 48.693454201 + ], + [ + 9.2010612, + 48.693538701 + ], + [ + 9.2004108, + 48.693638101 + ], + [ + 9.1998088, + 48.693741201 + ], + [ + 9.198909, + 48.693911001 + ], + [ + 9.1983586, + 48.694026601 + ], + [ + 9.1975596, + 48.694211601 + ], + [ + 9.1961709, + 48.694561901 + ], + [ + 9.1950908, + 48.694863201 + ], + [ + 9.1942035, + 48.695140201 + ], + [ + 9.1935251, + 48.695376101 + ], + [ + 9.1931151, + 48.695518201 + ], + [ + 9.1922043, + 48.695850501 + ], + [ + 9.1916676, + 48.696059901 + ], + [ + 9.1908396, + 48.696404301 + ], + [ + 9.1901706, + 48.696697501 + ], + [ + 9.1895596, + 48.696976001 + ], + [ + 9.1890981, + 48.697191001 + ], + [ + 9.1884419, + 48.697502101 + ], + [ + 9.1882412, + 48.697594401 + ], + [ + 9.1877325, + 48.697837101 + ], + [ + 9.1876345, + 48.697884301 + ], + [ + 9.1873847, + 48.697997901 + ], + [ + 9.1831509, + 48.700031101 + ], + [ + 9.1826314, + 48.700280501 + ], + [ + 9.1812408, + 48.700951901 + ], + [ + 9.1795691, + 48.701747801 + ], + [ + 9.1788646, + 48.702073901 + ], + [ + 9.1785365, + 48.702233501 + ], + [ + 9.1775688, + 48.702691101 + ], + [ + 9.176663, + 48.703120801 + ], + [ + 9.1760375, + 48.703408801 + ], + [ + 9.1756016, + 48.703609401 + ], + [ + 9.1750327, + 48.703863401 + ], + [ + 9.1747217, + 48.703990501 + ], + [ + 9.1742799, + 48.704162201 + ], + [ + 9.1736525, + 48.704396401 + ], + [ + 9.1731285, + 48.704582101 + ], + [ + 9.1727919, + 48.704695501 + ], + [ + 9.172373, + 48.704818301 + ], + [ + 9.1719826, + 48.704938501 + ], + [ + 9.1716295, + 48.705045601 + ], + [ + 9.1709738, + 48.705231101 + ], + [ + 9.17036, + 48.705390301 + ], + [ + 9.1698705, + 48.705512301 + ], + [ + 9.1692326, + 48.705657901 + ], + [ + 9.1686182, + 48.705784901 + ], + [ + 9.1682602, + 48.705852901 + ], + [ + 9.1679281, + 48.705914901 + ], + [ + 9.167601, + 48.705970701 + ], + [ + 9.1670712, + 48.706060001 + ], + [ + 9.166755, + 48.706109901 + ], + [ + 9.1664355, + 48.706159101 + ], + [ + 9.1657554, + 48.706259601 + ], + [ + 9.1655227, + 48.706293601 + ], + [ + 9.1643679, + 48.706455901 + ], + [ + 9.1632178, + 48.706618801 + ], + [ + 9.1625294, + 48.706715301 + ], + [ + 9.1617769, + 48.706821401 + ], + [ + 9.16101617, + 48.706927254 + ] + ] + } + }, + { + "identifier": "2024-028936--vi-fbm.2026-04-08_20-00-00-000.devi-zus.2025-03-07_09-00-00-000_001.de249", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.69297378784793,9.212230928804926,48.706927253988034,9.161016170155674", + "point": "48.69297378784793,9.212230928804926", + "startLcPosition": "68", + "impact": { + "lower": "Stuttgart-M\u00f6hringen", + "upper": "Stuttgart-Plieningen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Karlsruhe", + "title": "A8 | Stuttgart-Plieningen - Stuttgart-M\u00f6hringen", + "coordinate": { + "lat": 48.69297378784793, + "long": 9.212230928804926 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:00 Uhr", + "10.04.26 von 18:00 bis 21:00 Uhr", + "13.04.26 von 00:00 bis 06:00 Uhr", + "13.04.26 von 09:00 bis 16:00 Uhr", + "", + "A8: M\u00fcnchen -> Karlsruhe, zwischen 0.6 km hinter AS Stuttgart-Plieningen und 1.6 km vor AS Stuttgart-M\u00f6hringen", + "", + "L\u00e4nge: 4.17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 Sanierung Rampen - Echterdinger Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.212230929, + 48.692973788 + ], + [ + 9.2116499, + 48.692965901 + ], + [ + 9.2109922, + 48.692961901 + ], + [ + 9.2097897, + 48.692958001 + ], + [ + 9.2089501, + 48.692966601 + ], + [ + 9.2081639, + 48.692981701 + ], + [ + 9.2071713, + 48.693008601 + ], + [ + 9.2064741, + 48.693039101 + ], + [ + 9.2055735, + 48.693084001 + ], + [ + 9.204198, + 48.693176801 + ], + [ + 9.2030305, + 48.693285401 + ], + [ + 9.2016873, + 48.693454201 + ], + [ + 9.2010612, + 48.693538701 + ], + [ + 9.2004108, + 48.693638101 + ], + [ + 9.1998088, + 48.693741201 + ], + [ + 9.198909, + 48.693911001 + ], + [ + 9.1983586, + 48.694026601 + ], + [ + 9.1975596, + 48.694211601 + ], + [ + 9.1961709, + 48.694561901 + ], + [ + 9.1950908, + 48.694863201 + ], + [ + 9.1942035, + 48.695140201 + ], + [ + 9.1935251, + 48.695376101 + ], + [ + 9.1931151, + 48.695518201 + ], + [ + 9.1922043, + 48.695850501 + ], + [ + 9.1916676, + 48.696059901 + ], + [ + 9.1908396, + 48.696404301 + ], + [ + 9.1901706, + 48.696697501 + ], + [ + 9.1895596, + 48.696976001 + ], + [ + 9.1890981, + 48.697191001 + ], + [ + 9.1884419, + 48.697502101 + ], + [ + 9.1882412, + 48.697594401 + ], + [ + 9.1877325, + 48.697837101 + ], + [ + 9.1876345, + 48.697884301 + ], + [ + 9.1873847, + 48.697997901 + ], + [ + 9.1831509, + 48.700031101 + ], + [ + 9.1826314, + 48.700280501 + ], + [ + 9.1812408, + 48.700951901 + ], + [ + 9.1795691, + 48.701747801 + ], + [ + 9.1788646, + 48.702073901 + ], + [ + 9.1785365, + 48.702233501 + ], + [ + 9.1775688, + 48.702691101 + ], + [ + 9.176663, + 48.703120801 + ], + [ + 9.1760375, + 48.703408801 + ], + [ + 9.1756016, + 48.703609401 + ], + [ + 9.1750327, + 48.703863401 + ], + [ + 9.1747217, + 48.703990501 + ], + [ + 9.1742799, + 48.704162201 + ], + [ + 9.1736525, + 48.704396401 + ], + [ + 9.1731285, + 48.704582101 + ], + [ + 9.1727919, + 48.704695501 + ], + [ + 9.172373, + 48.704818301 + ], + [ + 9.1719826, + 48.704938501 + ], + [ + 9.1716295, + 48.705045601 + ], + [ + 9.1709738, + 48.705231101 + ], + [ + 9.17036, + 48.705390301 + ], + [ + 9.1698705, + 48.705512301 + ], + [ + 9.1692326, + 48.705657901 + ], + [ + 9.1686182, + 48.705784901 + ], + [ + 9.1682602, + 48.705852901 + ], + [ + 9.1679281, + 48.705914901 + ], + [ + 9.167601, + 48.705970701 + ], + [ + 9.1670712, + 48.706060001 + ], + [ + 9.166755, + 48.706109901 + ], + [ + 9.1664355, + 48.706159101 + ], + [ + 9.1657554, + 48.706259601 + ], + [ + 9.1655227, + 48.706293601 + ], + [ + 9.1643679, + 48.706455901 + ], + [ + 9.1632178, + 48.706618801 + ], + [ + 9.1625294, + 48.706715301 + ], + [ + 9.1617769, + 48.706821401 + ], + [ + 9.16101617, + 48.706927254 + ] + ] + } + }, + { + "identifier": "2026-014818--vi-bs.2026-04-17_19-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.6294414655184,9.488869484428736,48.63058000684277,9.461786863478086", + "point": "48.6294414655184,9.488869484428736", + "startLcPosition": "76", + "impact": { + "lower": "Kirchheim (Teck)-Ost", + "upper": "Vor dem Aichelberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Vor dem Aichelberg - Kirchheim (Teck)-Ost", + "coordinate": { + "lat": 48.6294414655184, + "long": 9.488869484428736 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 19:00 bis zum 18.04.26 06:00 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 3.6 km hinter Vor dem Aichelberg und 0.5 km vor AS Kirchheim (Teck)-Ost", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A8 von Vor dem Aichelberg (Rastplatz) nach Kirchheim (Teck)-Ost (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.488869484, + 48.629441466 + ], + [ + 9.488466, + 48.629454001 + ], + [ + 9.4852865, + 48.629589401 + ], + [ + 9.4820969, + 48.629736101 + ], + [ + 9.4780905, + 48.629901701 + ], + [ + 9.4755969, + 48.630008401 + ], + [ + 9.4741411, + 48.630071901 + ], + [ + 9.4723697, + 48.630148901 + ], + [ + 9.4701854, + 48.630238101 + ], + [ + 9.4685304, + 48.630309501 + ], + [ + 9.4659436, + 48.630413301 + ], + [ + 9.463543, + 48.630498401 + ], + [ + 9.4619818, + 48.630566801 + ], + [ + 9.461786863, + 48.630580007 + ] + ] + } + }, + { + "identifier": "2026-014817--vi-bs.2026-04-16_19-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.61563381633694,9.6010460089002,48.61942980272963,9.58885540266836", + "point": "48.61563381633694,9.6010460089002", + "startLcPosition": "79", + "impact": { + "lower": "Aichelberg", + "upper": "Gruibingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Gruibingen - Aichelberg", + "coordinate": { + "lat": 48.61563381633694, + "long": 9.6010460089002 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 19:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 2.3 km hinter Gruibingen und 2.9 km vor AS Aichelberg", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A8 von Gruibingen (Raststaette) nach Aichelberg (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.601046009, + 48.615633816 + ], + [ + 9.6005898, + 48.615788501 + ], + [ + 9.5997363, + 48.616122801 + ], + [ + 9.5988209, + 48.616533501 + ], + [ + 9.5974789, + 48.617157601 + ], + [ + 9.5967447, + 48.617459501 + ], + [ + 9.595689, + 48.617812501 + ], + [ + 9.5949123, + 48.618034201 + ], + [ + 9.5943662, + 48.618178701 + ], + [ + 9.5939273, + 48.618275201 + ], + [ + 9.5935089, + 48.618353101 + ], + [ + 9.592372, + 48.618555101 + ], + [ + 9.5911394, + 48.618796701 + ], + [ + 9.5904222, + 48.618953201 + ], + [ + 9.5897886, + 48.619123301 + ], + [ + 9.5891681, + 48.619316901 + ], + [ + 9.5888842, + 48.619419401 + ], + [ + 9.588855403, + 48.619429803 + ] + ] + } + }, + { + "identifier": "2026-014745--vi-bs.2026-04-08_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.550921272851724,9.63472934891856,48.54633431094829,9.643274487384708", + "point": "48.550921272851724,9.63472934891856", + "startLcPosition": "82", + "impact": { + "lower": "Hohenstadt", + "upper": "M\u00fchlhausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | M\u00fchlhausen - Hohenstadt", + "coordinate": { + "lat": 48.550921272851724, + "long": 9.63472934891856 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 5.3 km hinter AS M\u00fchlhausen und 0.1 km vor Hohenstadt", + "", + "L\u00e4nge: 0.81 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A8 von L\u00e4mmerbuckeltunnel (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.634729349, + 48.550921273 + ], + [ + 9.6350683, + 48.550739901 + ], + [ + 9.6416317, + 48.547212701 + ], + [ + 9.6419552, + 48.547039701 + ], + [ + 9.642768, + 48.546595601 + ], + [ + 9.6432181, + 48.546364401 + ], + [ + 9.643274487, + 48.546334311 + ] + ] + } + }, + { + "identifier": "2026-017497--vi-bs.2026-04-13_20-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.5377105002395,9.650540602963794,48.55271936171076,9.654516549591154", + "point": "48.5377105002395,9.650540602963794", + "startLcPosition": "85", + "impact": { + "lower": "M\u00fchlhausen", + "upper": "Albh\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Albh\u00f6he - M\u00fchlhausen", + "coordinate": { + "lat": 48.5377105002395, + "long": 9.650540602963794 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 05:00 Uhr.", + "20.04.26 20:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "24.04.26 20:00 bis zum 25.04.26 05:00 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 5.2 km hinter Albh\u00f6he und 4.7 km vor AS M\u00fchlhausen", + "", + "L\u00e4nge: 1.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A8 von Albh\u00f6he (Rastplatz) nach M\u00fchlhausen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.650540603, + 48.5377105 + ], + [ + 9.6504825, + 48.537789001 + ], + [ + 9.6503791, + 48.537939001 + ], + [ + 9.6502349, + 48.538169401 + ], + [ + 9.650111, + 48.538382301 + ], + [ + 9.6499551, + 48.538678201 + ], + [ + 9.6498562, + 48.538881401 + ], + [ + 9.6496947, + 48.539210901 + ], + [ + 9.6493553, + 48.539894501 + ], + [ + 9.6492022, + 48.540207101 + ], + [ + 9.6490263, + 48.540550901 + ], + [ + 9.6488587, + 48.540890201 + ], + [ + 9.6486476, + 48.541314301 + ], + [ + 9.6484612, + 48.541684101 + ], + [ + 9.6482309, + 48.542172801 + ], + [ + 9.6481233, + 48.542426701 + ], + [ + 9.6480299, + 48.542681401 + ], + [ + 9.6479746, + 48.542849801 + ], + [ + 9.6479061, + 48.543093501 + ], + [ + 9.6478495, + 48.543311501 + ], + [ + 9.6478165, + 48.543462401 + ], + [ + 9.6477889, + 48.543611401 + ], + [ + 9.647765, + 48.543755901 + ], + [ + 9.6477434, + 48.543905501 + ], + [ + 9.6477255, + 48.544062501 + ], + [ + 9.6477124, + 48.544213501 + ], + [ + 9.6477068, + 48.544297501 + ], + [ + 9.6476976, + 48.544522201 + ], + [ + 9.6476965, + 48.544718101 + ], + [ + 9.6476968, + 48.544980701 + ], + [ + 9.647707, + 48.545144901 + ], + [ + 9.647722, + 48.545300101 + ], + [ + 9.6477604, + 48.545590001 + ], + [ + 9.6477705, + 48.545655901 + ], + [ + 9.6478575, + 48.546078001 + ], + [ + 9.6479504, + 48.546425501 + ], + [ + 9.648081, + 48.546808801 + ], + [ + 9.6481689, + 48.547033501 + ], + [ + 9.6482511, + 48.547229701 + ], + [ + 9.6483659, + 48.547474601 + ], + [ + 9.6485368, + 48.547793501 + ], + [ + 9.6486198, + 48.547945301 + ], + [ + 9.6487632, + 48.548178201 + ], + [ + 9.648887, + 48.548358001 + ], + [ + 9.6492485, + 48.548865501 + ], + [ + 9.6495967, + 48.549261701 + ], + [ + 9.6498776, + 48.549560301 + ], + [ + 9.6501593, + 48.549837101 + ], + [ + 9.6506742, + 48.550300101 + ], + [ + 9.6509763, + 48.550538801 + ], + [ + 9.6513691, + 48.550831101 + ], + [ + 9.6517067, + 48.551057901 + ], + [ + 9.6519272, + 48.551195101 + ], + [ + 9.6521623, + 48.551335901 + ], + [ + 9.6525479, + 48.551558301 + ], + [ + 9.6536948, + 48.552233401 + ], + [ + 9.65451655, + 48.552719362 + ] + ] + } + }, + { + "identifier": "2026-000939--vi-bs.2026-02-14_23-00-00-000.devi-zus.2026-02-15_00-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.52664057190217,9.722983577156457,48.52493041385016,9.729237710714914", + "point": "48.52664057190217,9.722983577156457", + "startLcPosition": "86", + "impact": { + "lower": "Merklingen", + "upper": "Widderstall", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Widderstall - Merklingen", + "coordinate": { + "lat": 48.52664057190217, + "long": 9.722983577156457 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.05.26 23:00 bis zum 10.05.26 02:00 Uhr.", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 0.2 km hinter Widderstall und 2.5 km vor AS Merklingen", + "", + "L\u00e4nge: 0.5 km", + "", + "A8 Leitungsarbeiten bei Merklingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.722983577, + 48.526640572 + ], + [ + 9.7250482, + 48.526131101 + ], + [ + 9.7276752, + 48.525386301 + ], + [ + 9.729237711, + 48.524930414 + ] + ] + } + }, + { + "identifier": "2026-000939--vi-bs.2026-02-14_23-00-00-000.devi-zus.2026-02-15_00-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.52504673847239,9.729314268930555,48.52676437283802,9.723049299806485", + "point": "48.52504673847239,9.729314268930555", + "startLcPosition": "87", + "impact": { + "lower": "Widderstall", + "upper": "Merklingen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Merklingen - Widderstall", + "coordinate": { + "lat": 48.52504673847239, + "long": 9.729314268930555 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.05.26 23:00 bis zum 10.05.26 02:00 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 2.5 km hinter AS Merklingen und 0.2 km vor Widderstall", + "", + "L\u00e4nge: 0.5 km", + "", + "A8 Leitungsarbeiten bei Merklingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.729314269, + 48.525046738 + ], + [ + 9.7266441, + 48.525818701 + ], + [ + 9.7252764, + 48.526210401 + ], + [ + 9.7246353, + 48.526378901 + ], + [ + 9.7239065, + 48.526562801 + ], + [ + 9.7231676, + 48.526738101 + ], + [ + 9.7230493, + 48.526764373 + ] + ] + } + }, + { + "identifier": "2026-017484--vi-bs.2026-04-10_07-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.4563166939127,9.952814952212725,48.45628812944339,9.95416314714821", + "point": "48.4563166939127,9.952814952212725", + "startLcPosition": "90", + "impact": { + "lower": "Ulm-West", + "upper": "Kemmental", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Kemmental - Ulm-West", + "coordinate": { + "lat": 48.4563166939127, + "long": 9.952814952212725 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 18:00 Uhr", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 9.2 km hinter Kemmental und 0.6 km vor AS Ulm-West", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A8 von Kemmental (Rastplatz) nach Ulm-West (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.952814952, + 48.456316694 + ], + [ + 9.9529385, + 48.456312201 + ], + [ + 9.9532389, + 48.456302301 + ], + [ + 9.9536552, + 48.456293801 + ], + [ + 9.954163147, + 48.456288129 + ] + ] + } + }, + { + "identifier": "2026-017475--vi-bs.2026-04-09_20-00-00-000_012.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.459133893225925,10.082230263090846,48.459627710027384,10.08338872364197", + "point": "48.459133893225925,10.082230263090846", + "startLcPosition": "94", + "impact": { + "lower": "Ulm/Elchingen", + "upper": "Oberelchingen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Oberelchingen - Ulm/Elchingen", + "coordinate": { + "lat": 48.459133893225925, + "long": 10.082230263090846 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 0.5 km hinter AS Oberelchingen und 2.5 km vor AK Ulm/Elchingen", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A8 von Oberelchingen (AS) nach UlmElchingen (AK) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.082230263, + 48.459133893 + ], + [ + 10.0827696, + 48.459371701 + ], + [ + 10.083388724, + 48.45962771 + ] + ] + } + }, + { + "identifier": "2024-049046--vi-bs.2026-04-20_05-30-00-000.devi-zus.2026-03-02_20-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.46476533460345,10.101757623700234,48.45905121801343,10.081634646000728", + "point": "48.46476533460345,10.101757623700234", + "startLcPosition": "95", + "impact": { + "lower": "Oberelchingen", + "upper": "Ulm/Elchingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Ulm/Elchingen - Oberelchingen", + "startTimestamp": "2026-04-20T05:30:00+02:00", + "coordinate": { + "lat": 48.46476533460345, + "long": 10.101757623700234 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 05:30 Uhr", + "Ende: 08.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 1.0 km hinter AK Ulm/Elchingen und 0.5 km vor AS Oberelchingen", + "", + "L\u00e4nge: 1.63 km | Maximale Durchfahrtsbreite: 9.25 m", + "", + "A8 AK Ulm Elchingen Verbreiterung Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.101757624, + 48.464765335 + ], + [ + 10.1015933, + 48.464746401 + ], + [ + 10.0994116, + 48.464450601 + ], + [ + 10.0984012, + 48.464288801 + ], + [ + 10.0980324, + 48.464227901 + ], + [ + 10.0969635, + 48.464020401 + ], + [ + 10.0954767, + 48.463713401 + ], + [ + 10.0943671, + 48.463459401 + ], + [ + 10.0933878, + 48.463224501 + ], + [ + 10.0922869, + 48.462932701 + ], + [ + 10.0910891, + 48.462591501 + ], + [ + 10.0900811, + 48.462284201 + ], + [ + 10.0889943, + 48.461932101 + ], + [ + 10.0880754, + 48.461620801 + ], + [ + 10.0871388, + 48.461279301 + ], + [ + 10.0861044, + 48.460903701 + ], + [ + 10.0850023, + 48.460460701 + ], + [ + 10.0824763, + 48.459400501 + ], + [ + 10.081634646, + 48.459051218 + ] + ] + } + }, + { + "identifier": "2024-049046--vi-fbm.2026-04-13_20-00-00-000.devi-zus.2026-03-02_20-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.46500884114641,10.116781223202368,48.45905121801343,10.081634646000728", + "point": "48.46500884114641,10.116781223202368", + "startLcPosition": "96", + "impact": { + "lower": "Oberelchingen", + "upper": "Leipheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Leipheim - Oberelchingen", + "coordinate": { + "lat": 48.46500884114641, + "long": 10.116781223202368 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:30 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:30 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:30 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:30 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 05:30 Uhr.", + "18.04.26 20:00 bis zum 19.04.26 05:30 Uhr.", + "19.04.26 20:00 bis zum 20.04.26 05:30 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 7.5 km hinter AS Leipheim und 0.5 km vor AS Oberelchingen", + "", + "L\u00e4nge: 2.74 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 AK Ulm Elchingen Verbreiterung Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.116781223, + 48.465008841 + ], + [ + 10.1159738, + 48.465082201 + ], + [ + 10.1150696, + 48.465148901 + ], + [ + 10.1143974, + 48.465186001 + ], + [ + 10.1132124, + 48.465238801 + ], + [ + 10.1113964, + 48.465265601 + ], + [ + 10.1105734, + 48.465279801 + ], + [ + 10.1102834, + 48.465280601 + ], + [ + 10.1092877, + 48.465276901 + ], + [ + 10.1086385, + 48.465260301 + ], + [ + 10.1080325, + 48.465246001 + ], + [ + 10.1062112, + 48.465160901 + ], + [ + 10.1058378, + 48.465136101 + ], + [ + 10.1045363, + 48.465050001 + ], + [ + 10.1036239, + 48.464971901 + ], + [ + 10.1028084, + 48.464886401 + ], + [ + 10.1015933, + 48.464746401 + ], + [ + 10.0994116, + 48.464450601 + ], + [ + 10.0984012, + 48.464288801 + ], + [ + 10.0980324, + 48.464227901 + ], + [ + 10.0969635, + 48.464020401 + ], + [ + 10.0954767, + 48.463713401 + ], + [ + 10.0943671, + 48.463459401 + ], + [ + 10.0933878, + 48.463224501 + ], + [ + 10.0922869, + 48.462932701 + ], + [ + 10.0910891, + 48.462591501 + ], + [ + 10.0900811, + 48.462284201 + ], + [ + 10.0889943, + 48.461932101 + ], + [ + 10.0880754, + 48.461620801 + ], + [ + 10.0871388, + 48.461279301 + ], + [ + 10.0861044, + 48.460903701 + ], + [ + 10.0850023, + 48.460460701 + ], + [ + 10.0824763, + 48.459400501 + ], + [ + 10.081634646, + 48.459051218 + ] + ] + } + }, + { + "identifier": "2024-049046--vi-bs.2026-04-20_05-30-00-000.devi-zus.2026-03-02_20-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.46500884114641,10.116781223202368,48.46476533460345,10.101757623700234", + "point": "48.46500884114641,10.116781223202368", + "startLcPosition": "96", + "impact": { + "lower": "Oberelchingen", + "upper": "Leipheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Leipheim - Oberelchingen", + "startTimestamp": "2026-04-20T05:30:00+02:00", + "coordinate": { + "lat": 48.46500884114641, + "long": 10.116781223202368 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 05:30 Uhr", + "Ende: 08.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 7.5 km hinter AS Leipheim und 2.1 km vor AS Oberelchingen", + "", + "L\u00e4nge: 1.11 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 AK Ulm Elchingen Verbreiterung Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.116781223, + 48.465008841 + ], + [ + 10.1159738, + 48.465082201 + ], + [ + 10.1150696, + 48.465148901 + ], + [ + 10.1143974, + 48.465186001 + ], + [ + 10.1132124, + 48.465238801 + ], + [ + 10.1113964, + 48.465265601 + ], + [ + 10.1105734, + 48.465279801 + ], + [ + 10.1102834, + 48.465280601 + ], + [ + 10.1092877, + 48.465276901 + ], + [ + 10.1086385, + 48.465260301 + ], + [ + 10.1080325, + 48.465246001 + ], + [ + 10.1062112, + 48.465160901 + ], + [ + 10.1058378, + 48.465136101 + ], + [ + 10.1045363, + 48.465050001 + ], + [ + 10.1036239, + 48.464971901 + ], + [ + 10.1028084, + 48.464886401 + ], + [ + 10.101757624, + 48.464765335 + ] + ] + } + }, + { + "identifier": "2026-016907--vi-bs.2026-04-07_07-30-00-000.devi-zus.2026-04-07_07-30-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.41273641175616,10.440445167235065,48.41493283646049,10.863457543562216", + "point": "48.41273641175616,10.440445167235065", + "startLcPosition": "102", + "impact": { + "lower": "Augsburg-West", + "upper": "Burgau", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Burgau - Augsburg-West", + "coordinate": { + "lat": 48.41273641175616, + "long": 10.440445167235065 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 16:30 Uhr", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 0.3 km hinter AS Burgau und 0.6 km vor AS Augsburg-West", + "", + "L\u00e4nge: 32.06 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A8 von Burgau (AS) nach Augsburg-West (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.440445167, + 48.412736412 + ], + [ + 10.4424579, + 48.412751301 + ], + [ + 10.443682, + 48.412769901 + ], + [ + 10.444484, + 48.412777901 + ], + [ + 10.4455799, + 48.412802201 + ], + [ + 10.4471765, + 48.412831301 + ], + [ + 10.448154, + 48.412852001 + ], + [ + 10.4490274, + 48.412876601 + ], + [ + 10.4501608, + 48.412920401 + ], + [ + 10.451304, + 48.412969901 + ], + [ + 10.4525987, + 48.413038201 + ], + [ + 10.4539705, + 48.413105601 + ], + [ + 10.4550891, + 48.413170101 + ], + [ + 10.4563052, + 48.413234501 + ], + [ + 10.4579603, + 48.413285901 + ], + [ + 10.4589038, + 48.413289101 + ], + [ + 10.4597126, + 48.413283501 + ], + [ + 10.4608815, + 48.413269701 + ], + [ + 10.4615141, + 48.413255201 + ], + [ + 10.4622299, + 48.413226001 + ], + [ + 10.4640243, + 48.413111601 + ], + [ + 10.4651782, + 48.413014001 + ], + [ + 10.4673006, + 48.412794901 + ], + [ + 10.4680142, + 48.412720501 + ], + [ + 10.4711949, + 48.412370001 + ], + [ + 10.4727462, + 48.412205401 + ], + [ + 10.4742113, + 48.412050301 + ], + [ + 10.4775349, + 48.411663601 + ], + [ + 10.4807831, + 48.411278001 + ], + [ + 10.482947, + 48.411034601 + ], + [ + 10.4854957, + 48.410767101 + ], + [ + 10.4874391, + 48.410555301 + ], + [ + 10.4886289, + 48.410429501 + ], + [ + 10.4901715, + 48.410259201 + ], + [ + 10.4921982, + 48.410037801 + ], + [ + 10.4942671, + 48.409808401 + ], + [ + 10.4960284, + 48.409619401 + ], + [ + 10.497745, + 48.409436701 + ], + [ + 10.4996654, + 48.409227701 + ], + [ + 10.5015378, + 48.409025101 + ], + [ + 10.5034286, + 48.408816401 + ], + [ + 10.504998, + 48.408628401 + ], + [ + 10.5069222, + 48.408368101 + ], + [ + 10.5074398, + 48.408292301 + ], + [ + 10.5087734, + 48.408081401 + ], + [ + 10.5104635, + 48.407803301 + ], + [ + 10.5119154, + 48.407542301 + ], + [ + 10.51334, + 48.407244401 + ], + [ + 10.5150152, + 48.406868901 + ], + [ + 10.5172339, + 48.406361001 + ], + [ + 10.5189454, + 48.405979501 + ], + [ + 10.5203319, + 48.405651501 + ], + [ + 10.521476, + 48.405369801 + ], + [ + 10.5221641, + 48.405202601 + ], + [ + 10.5228693, + 48.405020601 + ], + [ + 10.5244275, + 48.404602001 + ], + [ + 10.5253286, + 48.404344701 + ], + [ + 10.5284335, + 48.403457801 + ], + [ + 10.5308372, + 48.402761501 + ], + [ + 10.5326468, + 48.402246701 + ], + [ + 10.5339332, + 48.401867501 + ], + [ + 10.5351566, + 48.401518901 + ], + [ + 10.5369079, + 48.401025801 + ], + [ + 10.5382729, + 48.400664201 + ], + [ + 10.5389874, + 48.400503701 + ], + [ + 10.5394936, + 48.400401401 + ], + [ + 10.5403674, + 48.400244201 + ], + [ + 10.5412717, + 48.400103301 + ], + [ + 10.5421314, + 48.399996001 + ], + [ + 10.5429106, + 48.399923701 + ], + [ + 10.5437754, + 48.399870601 + ], + [ + 10.5446471, + 48.399834301 + ], + [ + 10.5457267, + 48.399828701 + ], + [ + 10.5457373, + 48.399828801 + ], + [ + 10.54697, + 48.399875501 + ], + [ + 10.5481417, + 48.399956001 + ], + [ + 10.5489489, + 48.400035801 + ], + [ + 10.5500546, + 48.400181601 + ], + [ + 10.551113, + 48.400379001 + ], + [ + 10.5524858, + 48.400689401 + ], + [ + 10.5537704, + 48.401027401 + ], + [ + 10.5549049, + 48.401389601 + ], + [ + 10.5557562, + 48.401713201 + ], + [ + 10.5564729, + 48.402004701 + ], + [ + 10.5573383, + 48.402405701 + ], + [ + 10.558112, + 48.402775801 + ], + [ + 10.5591244, + 48.403270401 + ], + [ + 10.5597087, + 48.403536701 + ], + [ + 10.5606805, + 48.403938401 + ], + [ + 10.5615316, + 48.404256801 + ], + [ + 10.5622462, + 48.404515401 + ], + [ + 10.5629896, + 48.404752701 + ], + [ + 10.5640295, + 48.405054701 + ], + [ + 10.5648115, + 48.405255001 + ], + [ + 10.5658937, + 48.405495901 + ], + [ + 10.5670019, + 48.405711001 + ], + [ + 10.5683417, + 48.405927101 + ], + [ + 10.5703393, + 48.406218601 + ], + [ + 10.5716988, + 48.406426901 + ], + [ + 10.5730725, + 48.406651001 + ], + [ + 10.5747908, + 48.406988101 + ], + [ + 10.5761015, + 48.407298801 + ], + [ + 10.5781069, + 48.407789901 + ], + [ + 10.579276, + 48.408075101 + ], + [ + 10.5806062, + 48.408366001 + ], + [ + 10.5817256, + 48.408586201 + ], + [ + 10.5835581, + 48.408899101 + ], + [ + 10.5854238, + 48.409158001 + ], + [ + 10.5878609, + 48.409382201 + ], + [ + 10.5907765, + 48.409679801 + ], + [ + 10.5924848, + 48.409807301 + ], + [ + 10.5928817, + 48.409830701 + ], + [ + 10.5937231, + 48.409867101 + ], + [ + 10.5941955, + 48.409881201 + ], + [ + 10.5950491, + 48.409914601 + ], + [ + 10.5955377, + 48.409922601 + ], + [ + 10.5969846, + 48.409914601 + ], + [ + 10.5987929, + 48.409892401 + ], + [ + 10.6009573, + 48.409871901 + ], + [ + 10.6019859, + 48.409864501 + ], + [ + 10.6038056, + 48.409841901 + ], + [ + 10.6050506, + 48.409825901 + ], + [ + 10.6079762, + 48.409752801 + ], + [ + 10.6099358, + 48.409755501 + ], + [ + 10.6109028, + 48.409791301 + ], + [ + 10.6120802, + 48.409851701 + ], + [ + 10.612932, + 48.409923901 + ], + [ + 10.6143691, + 48.410057501 + ], + [ + 10.6156058, + 48.410169401 + ], + [ + 10.6164643, + 48.410243201 + ], + [ + 10.617218, + 48.410297901 + ], + [ + 10.6182576, + 48.410349301 + ], + [ + 10.6191433, + 48.410367701 + ], + [ + 10.6199954, + 48.410367701 + ], + [ + 10.6213855, + 48.410337001 + ], + [ + 10.6228675, + 48.410247601 + ], + [ + 10.6238106, + 48.410148201 + ], + [ + 10.6258015, + 48.409914701 + ], + [ + 10.6277288, + 48.409703501 + ], + [ + 10.6288815, + 48.409599101 + ], + [ + 10.6299743, + 48.409529601 + ], + [ + 10.6312906, + 48.409489201 + ], + [ + 10.6324181, + 48.409485701 + ], + [ + 10.6338294, + 48.409514701 + ], + [ + 10.6345099, + 48.409551501 + ], + [ + 10.6362223, + 48.409691201 + ], + [ + 10.6374691, + 48.409843401 + ], + [ + 10.6384885, + 48.409984301 + ], + [ + 10.6394921, + 48.410134201 + ], + [ + 10.6415167, + 48.410431401 + ], + [ + 10.6429444, + 48.410632801 + ], + [ + 10.6452292, + 48.410977001 + ], + [ + 10.6466624, + 48.411184501 + ], + [ + 10.6469547, + 48.411226301 + ], + [ + 10.6486683, + 48.411471301 + ], + [ + 10.6495416, + 48.411594701 + ], + [ + 10.6503037, + 48.411711501 + ], + [ + 10.6515422, + 48.411894101 + ], + [ + 10.6556598, + 48.412487801 + ], + [ + 10.6570064, + 48.412709901 + ], + [ + 10.6582865, + 48.412971901 + ], + [ + 10.6594208, + 48.413216601 + ], + [ + 10.6602363, + 48.413441801 + ], + [ + 10.6614536, + 48.413799701 + ], + [ + 10.6624768, + 48.414123601 + ], + [ + 10.6633832, + 48.414443401 + ], + [ + 10.6645625, + 48.414936601 + ], + [ + 10.6650718, + 48.415157801 + ], + [ + 10.6654376, + 48.415311901 + ], + [ + 10.666068, + 48.415606501 + ], + [ + 10.6669669, + 48.416043801 + ], + [ + 10.6674109, + 48.416254901 + ], + [ + 10.6687644, + 48.416913801 + ], + [ + 10.6693853, + 48.417216101 + ], + [ + 10.6707941, + 48.417830801 + ], + [ + 10.6719868, + 48.418274301 + ], + [ + 10.6727485, + 48.418530901 + ], + [ + 10.6734748, + 48.418755701 + ], + [ + 10.6745669, + 48.419045101 + ], + [ + 10.6752975, + 48.419212301 + ], + [ + 10.676581, + 48.419463201 + ], + [ + 10.67797, + 48.419682501 + ], + [ + 10.6794361, + 48.419826301 + ], + [ + 10.6804556, + 48.419892501 + ], + [ + 10.6814834, + 48.419927501 + ], + [ + 10.6820095, + 48.419929001 + ], + [ + 10.6826205, + 48.419915001 + ], + [ + 10.6838312, + 48.419876301 + ], + [ + 10.6847881, + 48.419800501 + ], + [ + 10.6859441, + 48.419684901 + ], + [ + 10.687016, + 48.419556701 + ], + [ + 10.6877759, + 48.419465801 + ], + [ + 10.6881098, + 48.419425901 + ], + [ + 10.6889876, + 48.419318001 + ], + [ + 10.6897784, + 48.419231601 + ], + [ + 10.6904343, + 48.419161501 + ], + [ + 10.6912766, + 48.419080901 + ], + [ + 10.6926845, + 48.418960101 + ], + [ + 10.6932476, + 48.418917101 + ], + [ + 10.6936737, + 48.418884501 + ], + [ + 10.6945415, + 48.418819201 + ], + [ + 10.6962877, + 48.418701401 + ], + [ + 10.6974762, + 48.418609001 + ], + [ + 10.6984171, + 48.418546701 + ], + [ + 10.6999235, + 48.418439801 + ], + [ + 10.7003471, + 48.418413601 + ], + [ + 10.7015604, + 48.418326501 + ], + [ + 10.7026732, + 48.418236801 + ], + [ + 10.7049921, + 48.418082701 + ], + [ + 10.7066194, + 48.417986301 + ], + [ + 10.7083001, + 48.417874501 + ], + [ + 10.7109402, + 48.417674501 + ], + [ + 10.7118124, + 48.417608401 + ], + [ + 10.7138658, + 48.417452801 + ], + [ + 10.7150393, + 48.417375701 + ], + [ + 10.7171328, + 48.417224401 + ], + [ + 10.7191709, + 48.417075201 + ], + [ + 10.7196373, + 48.417038801 + ], + [ + 10.7210844, + 48.416940601 + ], + [ + 10.722886, + 48.416836701 + ], + [ + 10.7239878, + 48.416773601 + ], + [ + 10.7264738, + 48.416697801 + ], + [ + 10.7285262, + 48.416672801 + ], + [ + 10.7315069, + 48.416693901 + ], + [ + 10.7333239, + 48.416749101 + ], + [ + 10.7355252, + 48.416832501 + ], + [ + 10.7377502, + 48.416921701 + ], + [ + 10.7399349, + 48.416998901 + ], + [ + 10.7406759, + 48.417034701 + ], + [ + 10.7415724, + 48.417071001 + ], + [ + 10.7422117, + 48.417104401 + ], + [ + 10.7449092, + 48.417199001 + ], + [ + 10.7486518, + 48.417348201 + ], + [ + 10.7510783, + 48.417446401 + ], + [ + 10.7529832, + 48.417516201 + ], + [ + 10.7555384, + 48.417617201 + ], + [ + 10.7581091, + 48.417721101 + ], + [ + 10.7614048, + 48.417854301 + ], + [ + 10.7637305, + 48.417953101 + ], + [ + 10.7643412, + 48.417979001 + ], + [ + 10.7667927, + 48.418131001 + ], + [ + 10.7687023, + 48.418275901 + ], + [ + 10.7687771, + 48.418281501 + ], + [ + 10.7701052, + 48.418398701 + ], + [ + 10.7721024, + 48.418596901 + ], + [ + 10.7738773, + 48.418811801 + ], + [ + 10.7758038, + 48.419059101 + ], + [ + 10.7773216, + 48.419230501 + ], + [ + 10.7784692, + 48.419347301 + ], + [ + 10.7804272, + 48.419529701 + ], + [ + 10.7821904, + 48.419669001 + ], + [ + 10.7834366, + 48.419743401 + ], + [ + 10.78637, + 48.419869301 + ], + [ + 10.7871043, + 48.419893701 + ], + [ + 10.7889906, + 48.419930301 + ], + [ + 10.790496, + 48.419945701 + ], + [ + 10.7936812, + 48.419982301 + ], + [ + 10.7958076, + 48.420013501 + ], + [ + 10.7981184, + 48.420019701 + ], + [ + 10.8005508, + 48.420004801 + ], + [ + 10.8020817, + 48.419964401 + ], + [ + 10.803357, + 48.419915201 + ], + [ + 10.8070733, + 48.419743701 + ], + [ + 10.8091182, + 48.419616201 + ], + [ + 10.8117435, + 48.419405801 + ], + [ + 10.8131894, + 48.419288001 + ], + [ + 10.8158584, + 48.419045901 + ], + [ + 10.8175409, + 48.418879801 + ], + [ + 10.8199855, + 48.418663101 + ], + [ + 10.8208973, + 48.418566301 + ], + [ + 10.8214854, + 48.418505801 + ], + [ + 10.8225872, + 48.418403001 + ], + [ + 10.8237918, + 48.418292701 + ], + [ + 10.8243339, + 48.418235001 + ], + [ + 10.8265283, + 48.418039001 + ], + [ + 10.8292377, + 48.417821101 + ], + [ + 10.8323489, + 48.417549401 + ], + [ + 10.8333386, + 48.417464601 + ], + [ + 10.8359537, + 48.417256201 + ], + [ + 10.8359949, + 48.417252301 + ], + [ + 10.8386809, + 48.417054701 + ], + [ + 10.8408789, + 48.416863201 + ], + [ + 10.8425501, + 48.416718501 + ], + [ + 10.8469803, + 48.416330801 + ], + [ + 10.8493667, + 48.416135801 + ], + [ + 10.8536713, + 48.415764301 + ], + [ + 10.8560796, + 48.415551801 + ], + [ + 10.856208, + 48.415540601 + ], + [ + 10.8590133, + 48.415296601 + ], + [ + 10.8621793, + 48.415034401 + ], + [ + 10.8629058, + 48.414977701 + ], + [ + 10.863457544, + 48.414932836 + ] + ] + } + }, + { + "identifier": "2026-017828--vi-bs.2026-04-21_19-00-00-000.devi-bs.2026-04-20_19-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.4098985860869,10.609949271754292,48.40904574442634,10.583364494875443", + "point": "48.4098985860869,10.609949271754292", + "startLcPosition": "107", + "impact": { + "lower": "Vallried", + "upper": "Streitheimer Forst-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Streitheimer Forst-S\u00fcd - Vallried", + "coordinate": { + "lat": 48.4098985860869, + "long": 10.609949271754292 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 19:00 bis zum 22.04.26 06:00 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 2.0 km hinter Streitheimer Forst-S\u00fcd und 0.7 km vor Vallried", + "", + "L\u00e4nge: 1.97 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Sanierungen Asphaltfelder" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.609949272, + 48.409898586 + ], + [ + 10.6099251, + 48.409897901 + ], + [ + 10.6079742, + 48.409894101 + ], + [ + 10.6050648, + 48.409957801 + ], + [ + 10.6038149, + 48.409973501 + ], + [ + 10.601268, + 48.410009601 + ], + [ + 10.5981125, + 48.410036801 + ], + [ + 10.5969979, + 48.410059901 + ], + [ + 10.5966621, + 48.410062101 + ], + [ + 10.5959409, + 48.410061601 + ], + [ + 10.5950936, + 48.410054001 + ], + [ + 10.5942389, + 48.410043201 + ], + [ + 10.5937685, + 48.410026001 + ], + [ + 10.5928583, + 48.409987401 + ], + [ + 10.5924599, + 48.409961301 + ], + [ + 10.5912721, + 48.409890201 + ], + [ + 10.590159, + 48.409799601 + ], + [ + 10.5877848, + 48.409568001 + ], + [ + 10.5862817, + 48.409420701 + ], + [ + 10.5846458, + 48.409236301 + ], + [ + 10.5835012, + 48.409068101 + ], + [ + 10.583364495, + 48.409045744 + ] + ] + } + }, + { + "identifier": "2026-017828--vi-bs.2026-04-20_19-00-00-000.devi-bs.2026-04-20_19-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.41183343674471,10.649966620445078,48.41038395020737,10.623382479786109", + "point": "48.41183343674471,10.649966620445078", + "startLcPosition": "108", + "impact": { + "lower": "Zusmarshausen", + "upper": "Streitheimer Forst-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Streitheimer Forst-Nord - Zusmarshausen", + "coordinate": { + "lat": 48.41183343674471, + "long": 10.649966620445078 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:00 bis zum 21.04.26 06:00 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 0.1 km hinter Streitheimer Forst-Nord und 1.8 km vor AS Zusmarshausen", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Sanierungen Asphaltfelder" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.64996662, + 48.411833437 + ], + [ + 10.6498648, + 48.411818201 + ], + [ + 10.6486818, + 48.411640501 + ], + [ + 10.6456465, + 48.411180901 + ], + [ + 10.643382, + 48.410849201 + ], + [ + 10.6425984, + 48.410734501 + ], + [ + 10.6414782, + 48.410566801 + ], + [ + 10.6400283, + 48.410354501 + ], + [ + 10.6384218, + 48.410122201 + ], + [ + 10.6374298, + 48.409985701 + ], + [ + 10.6361534, + 48.409830501 + ], + [ + 10.6346296, + 48.409707601 + ], + [ + 10.6337921, + 48.409664001 + ], + [ + 10.632433, + 48.409635801 + ], + [ + 10.6313177, + 48.409641301 + ], + [ + 10.6300619, + 48.409677901 + ], + [ + 10.62896, + 48.409752501 + ], + [ + 10.6277466, + 48.409861301 + ], + [ + 10.6262267, + 48.410040301 + ], + [ + 10.6238671, + 48.410339701 + ], + [ + 10.62338248, + 48.41038395 + ] + ] + } + }, + { + "identifier": "2026-016673--vi-bs.2026-04-19_07-45-00-000.devi-zus.2026-04-19_08-15-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.4199086652686,10.680930243139139,48.418365702658924,10.701014344036777", + "point": "48.4199086652686,10.680930243139139", + "startLcPosition": "108", + "impact": { + "lower": "Adelsried", + "upper": "Streitheimer Forst-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Streitheimer Forst-Nord - Adelsried", + "coordinate": { + "lat": 48.4199086652686, + "long": 10.680930243139139 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "19.04.26 von 07:45 bis 08:45 Uhr", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 2.4 km hinter Streitheimer Forst-Nord und 1.4 km vor AS Adelsried", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.680930243, + 48.419908665 + ], + [ + 10.6814834, + 48.419927501 + ], + [ + 10.6820095, + 48.419929001 + ], + [ + 10.6826205, + 48.419915001 + ], + [ + 10.6838312, + 48.419876301 + ], + [ + 10.6847881, + 48.419800501 + ], + [ + 10.6859441, + 48.419684901 + ], + [ + 10.687016, + 48.419556701 + ], + [ + 10.6877759, + 48.419465801 + ], + [ + 10.6881098, + 48.419425901 + ], + [ + 10.6889876, + 48.419318001 + ], + [ + 10.6897784, + 48.419231601 + ], + [ + 10.6904343, + 48.419161501 + ], + [ + 10.6912766, + 48.419080901 + ], + [ + 10.6926845, + 48.418960101 + ], + [ + 10.6932476, + 48.418917101 + ], + [ + 10.6936737, + 48.418884501 + ], + [ + 10.6945415, + 48.418819201 + ], + [ + 10.6962877, + 48.418701401 + ], + [ + 10.6974762, + 48.418609001 + ], + [ + 10.6984171, + 48.418546701 + ], + [ + 10.6999235, + 48.418439801 + ], + [ + 10.7003471, + 48.418413601 + ], + [ + 10.701014344, + 48.418365703 + ] + ] + } + }, + { + "identifier": "2026-016673--vi-bs.2026-04-19_07-45-00-000.devi-zus.2026-04-19_08-15-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.41756234784489,10.714557282117767,48.41923696782831,10.69166017203275", + "point": "48.41756234784489,10.714557282117767", + "startLcPosition": "109", + "impact": { + "lower": "Streitheimer Forst-Nord", + "upper": "Adelsried", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Adelsried - Streitheimer Forst-Nord", + "coordinate": { + "lat": 48.41756234784489, + "long": 10.714557282117767 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "19.04.26 von 07:45 bis 08:45 Uhr", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 0.4 km hinter AS Adelsried und 3.2 km vor Streitheimer Forst-Nord", + "", + "L\u00e4nge: 1.71 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.714557282, + 48.417562348 + ], + [ + 10.7103198, + 48.417884401 + ], + [ + 10.7083142, + 48.418036601 + ], + [ + 10.7066414, + 48.418147101 + ], + [ + 10.7049544, + 48.418263301 + ], + [ + 10.7038042, + 48.418344501 + ], + [ + 10.7015974, + 48.418518801 + ], + [ + 10.7003796, + 48.418608901 + ], + [ + 10.6984639, + 48.418736601 + ], + [ + 10.6975292, + 48.418800901 + ], + [ + 10.6959987, + 48.418906801 + ], + [ + 10.6936709, + 48.419071501 + ], + [ + 10.6926823, + 48.419140501 + ], + [ + 10.691660172, + 48.419236968 + ] + ] + } + }, + { + "identifier": "2026-011041--vi-bs.2026-04-07_07-30-00-000.devi-zus.2026-03-09_07-30-00-000_010.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.41493283646049,10.863457543562216,48.20498747842883,11.396393516029384", + "point": "48.41493283646049,10.863457543562216", + "startLcPosition": "111", + "impact": { + "lower": "M\u00fcnchen-Langwied", + "upper": "Neus\u00e4\u00df", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Neus\u00e4\u00df - M\u00fcnchen-Langwied", + "coordinate": { + "lat": 48.41493283646049, + "long": 10.863457543562216 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 09.04.26 von 07:30 bis 18:00 Uhr.", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 1.9 km hinter AS Neus\u00e4\u00df und 1.4 km vor AS M\u00fcnchen-Langwied", + "", + "L\u00e4nge: 47.93 km | Maximale Durchfahrtsbreite: 10 m", + "", + "Aplus A8 West - Sanierung Unfallsch\u00e4den" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.863457544, + 48.414932836 + ], + [ + 10.8645315, + 48.414845501 + ], + [ + 10.8656952, + 48.414772501 + ], + [ + 10.8667029, + 48.414709901 + ], + [ + 10.867874, + 48.414636101 + ], + [ + 10.8688229, + 48.414607201 + ], + [ + 10.8694457, + 48.414594401 + ], + [ + 10.8698135, + 48.414586901 + ], + [ + 10.8721264, + 48.414533401 + ], + [ + 10.8738261, + 48.414495201 + ], + [ + 10.8754471, + 48.414456701 + ], + [ + 10.8760378, + 48.414442601 + ], + [ + 10.8764587, + 48.414432601 + ], + [ + 10.8790431, + 48.414364101 + ], + [ + 10.8815896, + 48.414301001 + ], + [ + 10.884282, + 48.414245701 + ], + [ + 10.8851827, + 48.414226201 + ], + [ + 10.887599, + 48.414158601 + ], + [ + 10.8882272, + 48.414134501 + ], + [ + 10.8897511, + 48.414070901 + ], + [ + 10.8924511, + 48.413897401 + ], + [ + 10.8937015, + 48.413799101 + ], + [ + 10.8953492, + 48.413653201 + ], + [ + 10.8967467, + 48.413501501 + ], + [ + 10.898152, + 48.413334201 + ], + [ + 10.8997303, + 48.413117601 + ], + [ + 10.9013883, + 48.412870001 + ], + [ + 10.902402, + 48.412704201 + ], + [ + 10.9057478, + 48.412156901 + ], + [ + 10.907569, + 48.411856401 + ], + [ + 10.9083531, + 48.411734401 + ], + [ + 10.9093728, + 48.411560301 + ], + [ + 10.9126258, + 48.411018801 + ], + [ + 10.9148443, + 48.410654201 + ], + [ + 10.9156006, + 48.410529901 + ], + [ + 10.916784, + 48.410331901 + ], + [ + 10.9195865, + 48.409862901 + ], + [ + 10.9225599, + 48.409375201 + ], + [ + 10.9258721, + 48.408823901 + ], + [ + 10.9277055, + 48.408527701 + ], + [ + 10.9287955, + 48.408345501 + ], + [ + 10.9290677, + 48.408299901 + ], + [ + 10.9292493, + 48.408269501 + ], + [ + 10.929844, + 48.408170301 + ], + [ + 10.9307691, + 48.408015101 + ], + [ + 10.9339371, + 48.407492701 + ], + [ + 10.9360866, + 48.407132101 + ], + [ + 10.9382955, + 48.406763401 + ], + [ + 10.9422273, + 48.406109501 + ], + [ + 10.9423638, + 48.406086901 + ], + [ + 10.9444539, + 48.405741701 + ], + [ + 10.9481348, + 48.405141601 + ], + [ + 10.9498204, + 48.404853801 + ], + [ + 10.9510196, + 48.404659301 + ], + [ + 10.953704, + 48.404212001 + ], + [ + 10.9543194, + 48.404106001 + ], + [ + 10.9564506, + 48.403748601 + ], + [ + 10.9597161, + 48.403237901 + ], + [ + 10.9616644, + 48.402901701 + ], + [ + 10.9631922, + 48.402639601 + ], + [ + 10.9653574, + 48.402263301 + ], + [ + 10.9662587, + 48.402116601 + ], + [ + 10.9677229, + 48.401884401 + ], + [ + 10.9691319, + 48.401707001 + ], + [ + 10.9703091, + 48.401595001 + ], + [ + 10.9715244, + 48.401510301 + ], + [ + 10.9724969, + 48.401473801 + ], + [ + 10.974199, + 48.401446001 + ], + [ + 10.9773628, + 48.401505401 + ], + [ + 10.9808892, + 48.401587601 + ], + [ + 10.981465, + 48.401600601 + ], + [ + 10.9824623, + 48.401612501 + ], + [ + 10.983863, + 48.401586801 + ], + [ + 10.9851628, + 48.401529101 + ], + [ + 10.9870422, + 48.401415901 + ], + [ + 10.9903611, + 48.401193301 + ], + [ + 10.9924061, + 48.401059101 + ], + [ + 10.994705, + 48.400913901 + ], + [ + 10.9970253, + 48.400751601 + ], + [ + 10.9996315, + 48.400585201 + ], + [ + 11.0053978, + 48.400185901 + ], + [ + 11.0076138, + 48.400038701 + ], + [ + 11.0098299, + 48.399887101 + ], + [ + 11.0120529, + 48.399735401 + ], + [ + 11.0131294, + 48.399654701 + ], + [ + 11.0140861, + 48.399566301 + ], + [ + 11.0149478, + 48.399461101 + ], + [ + 11.0157914, + 48.399337401 + ], + [ + 11.0165755, + 48.399210801 + ], + [ + 11.0173768, + 48.399063301 + ], + [ + 11.0184199, + 48.398845901 + ], + [ + 11.0190579, + 48.398693901 + ], + [ + 11.0197045, + 48.398527601 + ], + [ + 11.0208095, + 48.398223001 + ], + [ + 11.0240437, + 48.397274601 + ], + [ + 11.0250748, + 48.397004901 + ], + [ + 11.0256302, + 48.396874201 + ], + [ + 11.0261598, + 48.396757801 + ], + [ + 11.0268042, + 48.396627501 + ], + [ + 11.0274401, + 48.396505701 + ], + [ + 11.0280467, + 48.396403401 + ], + [ + 11.0286555, + 48.396311201 + ], + [ + 11.0297439, + 48.396165601 + ], + [ + 11.0304491, + 48.396085601 + ], + [ + 11.0310729, + 48.396034101 + ], + [ + 11.0316044, + 48.395992601 + ], + [ + 11.0321296, + 48.395956901 + ], + [ + 11.0326541, + 48.395928201 + ], + [ + 11.0331765, + 48.395910801 + ], + [ + 11.0337153, + 48.395897601 + ], + [ + 11.0342263, + 48.395892901 + ], + [ + 11.0347343, + 48.395891601 + ], + [ + 11.0352058, + 48.395901801 + ], + [ + 11.0362157, + 48.395923901 + ], + [ + 11.0388777, + 48.396046301 + ], + [ + 11.047795, + 48.396433101 + ], + [ + 11.0490192, + 48.396488201 + ], + [ + 11.0499642, + 48.396520401 + ], + [ + 11.0509167, + 48.396534301 + ], + [ + 11.0516303, + 48.396530601 + ], + [ + 11.05244, + 48.396508601 + ], + [ + 11.0533363, + 48.396463401 + ], + [ + 11.0539804, + 48.396423801 + ], + [ + 11.0546833, + 48.396364801 + ], + [ + 11.0555759, + 48.396275701 + ], + [ + 11.0562765, + 48.396186701 + ], + [ + 11.0569912, + 48.396083101 + ], + [ + 11.0577669, + 48.395952901 + ], + [ + 11.0588123, + 48.395761501 + ], + [ + 11.0599134, + 48.395523701 + ], + [ + 11.0610376, + 48.395243901 + ], + [ + 11.0617302, + 48.395046501 + ], + [ + 11.0626169, + 48.394781401 + ], + [ + 11.0635099, + 48.394484501 + ], + [ + 11.0642714, + 48.394206501 + ], + [ + 11.0654713, + 48.393725601 + ], + [ + 11.0662098, + 48.393400101 + ], + [ + 11.0669848, + 48.393030901 + ], + [ + 11.067749, + 48.392649901 + ], + [ + 11.0686288, + 48.392171601 + ], + [ + 11.0703913, + 48.391125001 + ], + [ + 11.0716664, + 48.390309901 + ], + [ + 11.0729691, + 48.389433001 + ], + [ + 11.0746621, + 48.388290901 + ], + [ + 11.0750446, + 48.388025301 + ], + [ + 11.0765864, + 48.386975301 + ], + [ + 11.0769465, + 48.386730801 + ], + [ + 11.0780609, + 48.385981501 + ], + [ + 11.0791374, + 48.385241601 + ], + [ + 11.0809856, + 48.383984901 + ], + [ + 11.0838331, + 48.382039701 + ], + [ + 11.085593, + 48.380862401 + ], + [ + 11.0873151, + 48.379757201 + ], + [ + 11.0896859, + 48.378224701 + ], + [ + 11.0948771, + 48.374923801 + ], + [ + 11.0975849, + 48.373215001 + ], + [ + 11.1005534, + 48.371364801 + ], + [ + 11.1015289, + 48.370794901 + ], + [ + 11.1021957, + 48.370437901 + ], + [ + 11.1026526, + 48.370223801 + ], + [ + 11.1034422, + 48.369843001 + ], + [ + 11.103813, + 48.369678301 + ], + [ + 11.1043343, + 48.369454901 + ], + [ + 11.1054309, + 48.369029001 + ], + [ + 11.1068004, + 48.368553301 + ], + [ + 11.108271, + 48.368102001 + ], + [ + 11.1094651, + 48.367787301 + ], + [ + 11.1112247, + 48.367407201 + ], + [ + 11.1126029, + 48.367080701 + ], + [ + 11.1143718, + 48.366629801 + ], + [ + 11.1158153, + 48.366218501 + ], + [ + 11.1173276, + 48.365730701 + ], + [ + 11.1186386, + 48.365247701 + ], + [ + 11.119874, + 48.364718701 + ], + [ + 11.1208258, + 48.364281601 + ], + [ + 11.1217201, + 48.363839501 + ], + [ + 11.1226217, + 48.363348501 + ], + [ + 11.1234548, + 48.362844601 + ], + [ + 11.1242046, + 48.362365301 + ], + [ + 11.1251146, + 48.361755601 + ], + [ + 11.1260788, + 48.361025801 + ], + [ + 11.1268799, + 48.360352001 + ], + [ + 11.1277594, + 48.359551201 + ], + [ + 11.1288331, + 48.358429001 + ], + [ + 11.1295168, + 48.357641301 + ], + [ + 11.1308941, + 48.355924601 + ], + [ + 11.1309818, + 48.355815001 + ], + [ + 11.1325819, + 48.353871401 + ], + [ + 11.1338122, + 48.352432901 + ], + [ + 11.134633, + 48.351573801 + ], + [ + 11.1356625, + 48.350661501 + ], + [ + 11.1358104, + 48.350535301 + ], + [ + 11.1362755, + 48.350143901 + ], + [ + 11.1372053, + 48.349438601 + ], + [ + 11.1380062, + 48.348877801 + ], + [ + 11.1390372, + 48.348219101 + ], + [ + 11.1397371, + 48.347800801 + ], + [ + 11.1410024, + 48.347095101 + ], + [ + 11.142495, + 48.346340501 + ], + [ + 11.1441604, + 48.345590501 + ], + [ + 11.1451555, + 48.345135101 + ], + [ + 11.1464934, + 48.344506401 + ], + [ + 11.147404, + 48.344089101 + ], + [ + 11.1517285, + 48.342061801 + ], + [ + 11.1525024, + 48.341697801 + ], + [ + 11.1538429, + 48.341017101 + ], + [ + 11.1549515, + 48.340378201 + ], + [ + 11.1555112, + 48.340026001 + ], + [ + 11.1561669, + 48.339586501 + ], + [ + 11.1569704, + 48.339005701 + ], + [ + 11.1578985, + 48.338281901 + ], + [ + 11.1586656, + 48.337607901 + ], + [ + 11.1595185, + 48.336752101 + ], + [ + 11.1610152, + 48.335208001 + ], + [ + 11.1624958, + 48.333635301 + ], + [ + 11.16322, + 48.332861401 + ], + [ + 11.1639066, + 48.332205201 + ], + [ + 11.164486, + 48.331713101 + ], + [ + 11.1651833, + 48.331160301 + ], + [ + 11.1658914, + 48.330632401 + ], + [ + 11.1667033, + 48.330037901 + ], + [ + 11.1677524, + 48.329364701 + ], + [ + 11.1687847, + 48.328721401 + ], + [ + 11.1706147, + 48.327673901 + ], + [ + 11.1726559, + 48.326612701 + ], + [ + 11.1744423, + 48.325701101 + ], + [ + 11.1765345, + 48.324729701 + ], + [ + 11.1809504, + 48.322645801 + ], + [ + 11.1811035, + 48.322576801 + ], + [ + 11.1860656, + 48.320306701 + ], + [ + 11.1880807, + 48.319391501 + ], + [ + 11.1910394, + 48.317949501 + ], + [ + 11.193519, + 48.316638801 + ], + [ + 11.194234, + 48.316243101 + ], + [ + 11.1955796, + 48.315477901 + ], + [ + 11.1967797, + 48.314745801 + ], + [ + 11.1972657, + 48.314454101 + ], + [ + 11.1983821, + 48.313787401 + ], + [ + 11.1999034, + 48.312796601 + ], + [ + 11.2023577, + 48.311104601 + ], + [ + 11.2043416, + 48.309751001 + ], + [ + 11.2054689, + 48.308984801 + ], + [ + 11.2066726, + 48.308149201 + ], + [ + 11.2074224, + 48.307631301 + ], + [ + 11.2085207, + 48.306881701 + ], + [ + 11.2093782, + 48.306298001 + ], + [ + 11.2112209, + 48.305036101 + ], + [ + 11.2134347, + 48.303515401 + ], + [ + 11.2159803, + 48.301815001 + ], + [ + 11.2176122, + 48.300811201 + ], + [ + 11.2192025, + 48.299884701 + ], + [ + 11.2202719, + 48.299319401 + ], + [ + 11.2213297, + 48.298790001 + ], + [ + 11.2235672, + 48.297738401 + ], + [ + 11.2255853, + 48.296884401 + ], + [ + 11.2273108, + 48.296237301 + ], + [ + 11.2286839, + 48.295754701 + ], + [ + 11.2298477, + 48.295371801 + ], + [ + 11.23029, + 48.295226301 + ], + [ + 11.2304698, + 48.295171301 + ], + [ + 11.231187, + 48.294951701 + ], + [ + 11.2319778, + 48.294709601 + ], + [ + 11.233833, + 48.294146001 + ], + [ + 11.2358058, + 48.293550201 + ], + [ + 11.2411804, + 48.291958701 + ], + [ + 11.2454432, + 48.290696301 + ], + [ + 11.2488609, + 48.289669901 + ], + [ + 11.2511147, + 48.288926801 + ], + [ + 11.2533368, + 48.288122201 + ], + [ + 11.2552128, + 48.287402901 + ], + [ + 11.2557664, + 48.287180001 + ], + [ + 11.2560819, + 48.287056001 + ], + [ + 11.2574661, + 48.286466501 + ], + [ + 11.2585967, + 48.285974701 + ], + [ + 11.261031, + 48.284874601 + ], + [ + 11.2630179, + 48.283940201 + ], + [ + 11.2646376, + 48.283181601 + ], + [ + 11.2654834, + 48.282785501 + ], + [ + 11.2693599, + 48.280964901 + ], + [ + 11.2719409, + 48.279757301 + ], + [ + 11.274078, + 48.278760601 + ], + [ + 11.2764074, + 48.277656201 + ], + [ + 11.2776564, + 48.277056301 + ], + [ + 11.2793091, + 48.276294201 + ], + [ + 11.2806108, + 48.275664301 + ], + [ + 11.2816171, + 48.275113401 + ], + [ + 11.2826498, + 48.274466101 + ], + [ + 11.2835746, + 48.273840501 + ], + [ + 11.2844919, + 48.273160901 + ], + [ + 11.285496, + 48.272316201 + ], + [ + 11.2861307, + 48.271722201 + ], + [ + 11.2870137, + 48.270871101 + ], + [ + 11.287294, + 48.270609601 + ], + [ + 11.2891272, + 48.268844301 + ], + [ + 11.296267, + 48.262029701 + ], + [ + 11.2984073, + 48.259971701 + ], + [ + 11.2995958, + 48.258848701 + ], + [ + 11.2999791, + 48.258500401 + ], + [ + 11.3003286, + 48.258199701 + ], + [ + 11.3005874, + 48.257984201 + ], + [ + 11.3009286, + 48.257711801 + ], + [ + 11.3017609, + 48.257099101 + ], + [ + 11.3024369, + 48.256636301 + ], + [ + 11.3029315, + 48.256324501 + ], + [ + 11.3036995, + 48.255823601 + ], + [ + 11.3047742, + 48.255221101 + ], + [ + 11.3052413, + 48.254992901 + ], + [ + 11.3058848, + 48.254672801 + ], + [ + 11.3063647, + 48.254438501 + ], + [ + 11.3209934, + 48.247296701 + ], + [ + 11.336239, + 48.239860301 + ], + [ + 11.3408042, + 48.237566701 + ], + [ + 11.3428447, + 48.236488201 + ], + [ + 11.3445656, + 48.235536801 + ], + [ + 11.3456575, + 48.234913001 + ], + [ + 11.3468675, + 48.234212601 + ], + [ + 11.3471939, + 48.234023601 + ], + [ + 11.3486349, + 48.233174401 + ], + [ + 11.3530926, + 48.230547601 + ], + [ + 11.3536152, + 48.230238901 + ], + [ + 11.3549891, + 48.229432601 + ], + [ + 11.3578667, + 48.227737801 + ], + [ + 11.3623078, + 48.225117801 + ], + [ + 11.3710404, + 48.219969401 + ], + [ + 11.3769948, + 48.216459801 + ], + [ + 11.3788717, + 48.215350601 + ], + [ + 11.3822013, + 48.213399401 + ], + [ + 11.3822395, + 48.213377001 + ], + [ + 11.3835348, + 48.212605201 + ], + [ + 11.3845861, + 48.211984101 + ], + [ + 11.3853392, + 48.211539201 + ], + [ + 11.3858694, + 48.211216201 + ], + [ + 11.3860758, + 48.211127201 + ], + [ + 11.3882752, + 48.209826501 + ], + [ + 11.3896333, + 48.209014501 + ], + [ + 11.3905608, + 48.208483601 + ], + [ + 11.3939953, + 48.206443201 + ], + [ + 11.3959108, + 48.205290001 + ], + [ + 11.396393516, + 48.204987478 + ] + ] + } + }, + { + "identifier": "2026-016744--vi-bs.2026-04-07_11-00-00-000.devi-zus.2026-04-07_07-00-00-000_003.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.41493283646049,10.863457543562216,48.38981562102282,11.072400697606968", + "point": "48.41493283646049,10.863457543562216", + "startLcPosition": "111", + "impact": { + "lower": "Adelzhausen", + "upper": "Neus\u00e4\u00df", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Neus\u00e4\u00df - Adelzhausen", + "coordinate": { + "lat": 48.41493283646049, + "long": 10.863457543562216 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 09.04.26 von 11:00 bis 18:00 Uhr.", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 1.9 km hinter AS Neus\u00e4\u00df und 6.3 km vor AS Adelzhausen", + "", + "L\u00e4nge: 15.94 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Aplus A8 West - KW 15 - Reinigung Einl\u00e4ufe Standspur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.863457544, + 48.414932836 + ], + [ + 10.8645315, + 48.414845501 + ], + [ + 10.8656952, + 48.414772501 + ], + [ + 10.8667029, + 48.414709901 + ], + [ + 10.867874, + 48.414636101 + ], + [ + 10.8688229, + 48.414607201 + ], + [ + 10.8694457, + 48.414594401 + ], + [ + 10.8698135, + 48.414586901 + ], + [ + 10.8721264, + 48.414533401 + ], + [ + 10.8738261, + 48.414495201 + ], + [ + 10.8754471, + 48.414456701 + ], + [ + 10.8760378, + 48.414442601 + ], + [ + 10.8764587, + 48.414432601 + ], + [ + 10.8790431, + 48.414364101 + ], + [ + 10.8815896, + 48.414301001 + ], + [ + 10.884282, + 48.414245701 + ], + [ + 10.8851827, + 48.414226201 + ], + [ + 10.887599, + 48.414158601 + ], + [ + 10.8882272, + 48.414134501 + ], + [ + 10.8897511, + 48.414070901 + ], + [ + 10.8924511, + 48.413897401 + ], + [ + 10.8937015, + 48.413799101 + ], + [ + 10.8953492, + 48.413653201 + ], + [ + 10.8967467, + 48.413501501 + ], + [ + 10.898152, + 48.413334201 + ], + [ + 10.8997303, + 48.413117601 + ], + [ + 10.9013883, + 48.412870001 + ], + [ + 10.902402, + 48.412704201 + ], + [ + 10.9057478, + 48.412156901 + ], + [ + 10.907569, + 48.411856401 + ], + [ + 10.9083531, + 48.411734401 + ], + [ + 10.9093728, + 48.411560301 + ], + [ + 10.9126258, + 48.411018801 + ], + [ + 10.9148443, + 48.410654201 + ], + [ + 10.9156006, + 48.410529901 + ], + [ + 10.916784, + 48.410331901 + ], + [ + 10.9195865, + 48.409862901 + ], + [ + 10.9225599, + 48.409375201 + ], + [ + 10.9258721, + 48.408823901 + ], + [ + 10.9277055, + 48.408527701 + ], + [ + 10.9287955, + 48.408345501 + ], + [ + 10.9290677, + 48.408299901 + ], + [ + 10.9292493, + 48.408269501 + ], + [ + 10.929844, + 48.408170301 + ], + [ + 10.9307691, + 48.408015101 + ], + [ + 10.9339371, + 48.407492701 + ], + [ + 10.9360866, + 48.407132101 + ], + [ + 10.9382955, + 48.406763401 + ], + [ + 10.9422273, + 48.406109501 + ], + [ + 10.9423638, + 48.406086901 + ], + [ + 10.9444539, + 48.405741701 + ], + [ + 10.9481348, + 48.405141601 + ], + [ + 10.9498204, + 48.404853801 + ], + [ + 10.9510196, + 48.404659301 + ], + [ + 10.953704, + 48.404212001 + ], + [ + 10.9543194, + 48.404106001 + ], + [ + 10.9564506, + 48.403748601 + ], + [ + 10.9597161, + 48.403237901 + ], + [ + 10.9616644, + 48.402901701 + ], + [ + 10.9631922, + 48.402639601 + ], + [ + 10.9653574, + 48.402263301 + ], + [ + 10.9662587, + 48.402116601 + ], + [ + 10.9677229, + 48.401884401 + ], + [ + 10.9691319, + 48.401707001 + ], + [ + 10.9703091, + 48.401595001 + ], + [ + 10.9715244, + 48.401510301 + ], + [ + 10.9724969, + 48.401473801 + ], + [ + 10.974199, + 48.401446001 + ], + [ + 10.9773628, + 48.401505401 + ], + [ + 10.9808892, + 48.401587601 + ], + [ + 10.981465, + 48.401600601 + ], + [ + 10.9824623, + 48.401612501 + ], + [ + 10.983863, + 48.401586801 + ], + [ + 10.9851628, + 48.401529101 + ], + [ + 10.9870422, + 48.401415901 + ], + [ + 10.9903611, + 48.401193301 + ], + [ + 10.9924061, + 48.401059101 + ], + [ + 10.994705, + 48.400913901 + ], + [ + 10.9970253, + 48.400751601 + ], + [ + 10.9996315, + 48.400585201 + ], + [ + 11.0053978, + 48.400185901 + ], + [ + 11.0076138, + 48.400038701 + ], + [ + 11.0098299, + 48.399887101 + ], + [ + 11.0120529, + 48.399735401 + ], + [ + 11.0131294, + 48.399654701 + ], + [ + 11.0140861, + 48.399566301 + ], + [ + 11.0149478, + 48.399461101 + ], + [ + 11.0157914, + 48.399337401 + ], + [ + 11.0165755, + 48.399210801 + ], + [ + 11.0173768, + 48.399063301 + ], + [ + 11.0184199, + 48.398845901 + ], + [ + 11.0190579, + 48.398693901 + ], + [ + 11.0197045, + 48.398527601 + ], + [ + 11.0208095, + 48.398223001 + ], + [ + 11.0240437, + 48.397274601 + ], + [ + 11.0250748, + 48.397004901 + ], + [ + 11.0256302, + 48.396874201 + ], + [ + 11.0261598, + 48.396757801 + ], + [ + 11.0268042, + 48.396627501 + ], + [ + 11.0274401, + 48.396505701 + ], + [ + 11.0280467, + 48.396403401 + ], + [ + 11.0286555, + 48.396311201 + ], + [ + 11.0297439, + 48.396165601 + ], + [ + 11.0304491, + 48.396085601 + ], + [ + 11.0310729, + 48.396034101 + ], + [ + 11.0316044, + 48.395992601 + ], + [ + 11.0321296, + 48.395956901 + ], + [ + 11.0326541, + 48.395928201 + ], + [ + 11.0331765, + 48.395910801 + ], + [ + 11.0337153, + 48.395897601 + ], + [ + 11.0342263, + 48.395892901 + ], + [ + 11.0347343, + 48.395891601 + ], + [ + 11.0352058, + 48.395901801 + ], + [ + 11.0362157, + 48.395923901 + ], + [ + 11.0388777, + 48.396046301 + ], + [ + 11.047795, + 48.396433101 + ], + [ + 11.0490192, + 48.396488201 + ], + [ + 11.0499642, + 48.396520401 + ], + [ + 11.0509167, + 48.396534301 + ], + [ + 11.0516303, + 48.396530601 + ], + [ + 11.05244, + 48.396508601 + ], + [ + 11.0533363, + 48.396463401 + ], + [ + 11.0539804, + 48.396423801 + ], + [ + 11.0546833, + 48.396364801 + ], + [ + 11.0555759, + 48.396275701 + ], + [ + 11.0562765, + 48.396186701 + ], + [ + 11.0569912, + 48.396083101 + ], + [ + 11.0577669, + 48.395952901 + ], + [ + 11.0588123, + 48.395761501 + ], + [ + 11.0599134, + 48.395523701 + ], + [ + 11.0610376, + 48.395243901 + ], + [ + 11.0617302, + 48.395046501 + ], + [ + 11.0626169, + 48.394781401 + ], + [ + 11.0635099, + 48.394484501 + ], + [ + 11.0642714, + 48.394206501 + ], + [ + 11.0654713, + 48.393725601 + ], + [ + 11.0662098, + 48.393400101 + ], + [ + 11.0669848, + 48.393030901 + ], + [ + 11.067749, + 48.392649901 + ], + [ + 11.0686288, + 48.392171601 + ], + [ + 11.0703913, + 48.391125001 + ], + [ + 11.0716664, + 48.390309901 + ], + [ + 11.072400698, + 48.389815621 + ] + ] + } + }, + { + "identifier": "2026-016743--vi-bs.2026-04-06_07-00-00-000.devi-zus.2026-04-06_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.41493283646049,10.863457543562216,48.20617876583507,11.39443454684311", + "point": "48.41493283646049,10.863457543562216", + "startLcPosition": "111", + "impact": { + "lower": "M\u00fcnchen-Langwied", + "upper": "Neus\u00e4\u00df", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Neus\u00e4\u00df - M\u00fcnchen-Langwied", + "coordinate": { + "lat": 48.41493283646049, + "long": 10.863457543562216 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "10.04.26 von 07:00 bis 13:00 Uhr", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 1.9 km hinter AS Neus\u00e4\u00df und 1.5 km vor AS M\u00fcnchen-Langwied", + "", + "L\u00e4nge: 47.74 km | Maximale Durchfahrtsbreite: 11 m", + "", + "Aplus A8 West - KW 15 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.863457544, + 48.414932836 + ], + [ + 10.8645315, + 48.414845501 + ], + [ + 10.8656952, + 48.414772501 + ], + [ + 10.8667029, + 48.414709901 + ], + [ + 10.867874, + 48.414636101 + ], + [ + 10.8688229, + 48.414607201 + ], + [ + 10.8694457, + 48.414594401 + ], + [ + 10.8698135, + 48.414586901 + ], + [ + 10.8721264, + 48.414533401 + ], + [ + 10.8738261, + 48.414495201 + ], + [ + 10.8754471, + 48.414456701 + ], + [ + 10.8760378, + 48.414442601 + ], + [ + 10.8764587, + 48.414432601 + ], + [ + 10.8790431, + 48.414364101 + ], + [ + 10.8815896, + 48.414301001 + ], + [ + 10.884282, + 48.414245701 + ], + [ + 10.8851827, + 48.414226201 + ], + [ + 10.887599, + 48.414158601 + ], + [ + 10.8882272, + 48.414134501 + ], + [ + 10.8897511, + 48.414070901 + ], + [ + 10.8924511, + 48.413897401 + ], + [ + 10.8937015, + 48.413799101 + ], + [ + 10.8953492, + 48.413653201 + ], + [ + 10.8967467, + 48.413501501 + ], + [ + 10.898152, + 48.413334201 + ], + [ + 10.8997303, + 48.413117601 + ], + [ + 10.9013883, + 48.412870001 + ], + [ + 10.902402, + 48.412704201 + ], + [ + 10.9057478, + 48.412156901 + ], + [ + 10.907569, + 48.411856401 + ], + [ + 10.9083531, + 48.411734401 + ], + [ + 10.9093728, + 48.411560301 + ], + [ + 10.9126258, + 48.411018801 + ], + [ + 10.9148443, + 48.410654201 + ], + [ + 10.9156006, + 48.410529901 + ], + [ + 10.916784, + 48.410331901 + ], + [ + 10.9195865, + 48.409862901 + ], + [ + 10.9225599, + 48.409375201 + ], + [ + 10.9258721, + 48.408823901 + ], + [ + 10.9277055, + 48.408527701 + ], + [ + 10.9287955, + 48.408345501 + ], + [ + 10.9290677, + 48.408299901 + ], + [ + 10.9292493, + 48.408269501 + ], + [ + 10.929844, + 48.408170301 + ], + [ + 10.9307691, + 48.408015101 + ], + [ + 10.9339371, + 48.407492701 + ], + [ + 10.9360866, + 48.407132101 + ], + [ + 10.9382955, + 48.406763401 + ], + [ + 10.9422273, + 48.406109501 + ], + [ + 10.9423638, + 48.406086901 + ], + [ + 10.9444539, + 48.405741701 + ], + [ + 10.9481348, + 48.405141601 + ], + [ + 10.9498204, + 48.404853801 + ], + [ + 10.9510196, + 48.404659301 + ], + [ + 10.953704, + 48.404212001 + ], + [ + 10.9543194, + 48.404106001 + ], + [ + 10.9564506, + 48.403748601 + ], + [ + 10.9597161, + 48.403237901 + ], + [ + 10.9616644, + 48.402901701 + ], + [ + 10.9631922, + 48.402639601 + ], + [ + 10.9653574, + 48.402263301 + ], + [ + 10.9662587, + 48.402116601 + ], + [ + 10.9677229, + 48.401884401 + ], + [ + 10.9691319, + 48.401707001 + ], + [ + 10.9703091, + 48.401595001 + ], + [ + 10.9715244, + 48.401510301 + ], + [ + 10.9724969, + 48.401473801 + ], + [ + 10.974199, + 48.401446001 + ], + [ + 10.9773628, + 48.401505401 + ], + [ + 10.9808892, + 48.401587601 + ], + [ + 10.981465, + 48.401600601 + ], + [ + 10.9824623, + 48.401612501 + ], + [ + 10.983863, + 48.401586801 + ], + [ + 10.9851628, + 48.401529101 + ], + [ + 10.9870422, + 48.401415901 + ], + [ + 10.9903611, + 48.401193301 + ], + [ + 10.9924061, + 48.401059101 + ], + [ + 10.994705, + 48.400913901 + ], + [ + 10.9970253, + 48.400751601 + ], + [ + 10.9996315, + 48.400585201 + ], + [ + 11.0053978, + 48.400185901 + ], + [ + 11.0076138, + 48.400038701 + ], + [ + 11.0098299, + 48.399887101 + ], + [ + 11.0120529, + 48.399735401 + ], + [ + 11.0131294, + 48.399654701 + ], + [ + 11.0140861, + 48.399566301 + ], + [ + 11.0149478, + 48.399461101 + ], + [ + 11.0157914, + 48.399337401 + ], + [ + 11.0165755, + 48.399210801 + ], + [ + 11.0173768, + 48.399063301 + ], + [ + 11.0184199, + 48.398845901 + ], + [ + 11.0190579, + 48.398693901 + ], + [ + 11.0197045, + 48.398527601 + ], + [ + 11.0208095, + 48.398223001 + ], + [ + 11.0240437, + 48.397274601 + ], + [ + 11.0250748, + 48.397004901 + ], + [ + 11.0256302, + 48.396874201 + ], + [ + 11.0261598, + 48.396757801 + ], + [ + 11.0268042, + 48.396627501 + ], + [ + 11.0274401, + 48.396505701 + ], + [ + 11.0280467, + 48.396403401 + ], + [ + 11.0286555, + 48.396311201 + ], + [ + 11.0297439, + 48.396165601 + ], + [ + 11.0304491, + 48.396085601 + ], + [ + 11.0310729, + 48.396034101 + ], + [ + 11.0316044, + 48.395992601 + ], + [ + 11.0321296, + 48.395956901 + ], + [ + 11.0326541, + 48.395928201 + ], + [ + 11.0331765, + 48.395910801 + ], + [ + 11.0337153, + 48.395897601 + ], + [ + 11.0342263, + 48.395892901 + ], + [ + 11.0347343, + 48.395891601 + ], + [ + 11.0352058, + 48.395901801 + ], + [ + 11.0362157, + 48.395923901 + ], + [ + 11.0388777, + 48.396046301 + ], + [ + 11.047795, + 48.396433101 + ], + [ + 11.0490192, + 48.396488201 + ], + [ + 11.0499642, + 48.396520401 + ], + [ + 11.0509167, + 48.396534301 + ], + [ + 11.0516303, + 48.396530601 + ], + [ + 11.05244, + 48.396508601 + ], + [ + 11.0533363, + 48.396463401 + ], + [ + 11.0539804, + 48.396423801 + ], + [ + 11.0546833, + 48.396364801 + ], + [ + 11.0555759, + 48.396275701 + ], + [ + 11.0562765, + 48.396186701 + ], + [ + 11.0569912, + 48.396083101 + ], + [ + 11.0577669, + 48.395952901 + ], + [ + 11.0588123, + 48.395761501 + ], + [ + 11.0599134, + 48.395523701 + ], + [ + 11.0610376, + 48.395243901 + ], + [ + 11.0617302, + 48.395046501 + ], + [ + 11.0626169, + 48.394781401 + ], + [ + 11.0635099, + 48.394484501 + ], + [ + 11.0642714, + 48.394206501 + ], + [ + 11.0654713, + 48.393725601 + ], + [ + 11.0662098, + 48.393400101 + ], + [ + 11.0669848, + 48.393030901 + ], + [ + 11.067749, + 48.392649901 + ], + [ + 11.0686288, + 48.392171601 + ], + [ + 11.0703913, + 48.391125001 + ], + [ + 11.0716664, + 48.390309901 + ], + [ + 11.0729691, + 48.389433001 + ], + [ + 11.0746621, + 48.388290901 + ], + [ + 11.0750446, + 48.388025301 + ], + [ + 11.0765864, + 48.386975301 + ], + [ + 11.0769465, + 48.386730801 + ], + [ + 11.0780609, + 48.385981501 + ], + [ + 11.0791374, + 48.385241601 + ], + [ + 11.0809856, + 48.383984901 + ], + [ + 11.0838331, + 48.382039701 + ], + [ + 11.085593, + 48.380862401 + ], + [ + 11.0873151, + 48.379757201 + ], + [ + 11.0896859, + 48.378224701 + ], + [ + 11.0948771, + 48.374923801 + ], + [ + 11.0975849, + 48.373215001 + ], + [ + 11.1005534, + 48.371364801 + ], + [ + 11.1015289, + 48.370794901 + ], + [ + 11.1021957, + 48.370437901 + ], + [ + 11.1026526, + 48.370223801 + ], + [ + 11.1034422, + 48.369843001 + ], + [ + 11.103813, + 48.369678301 + ], + [ + 11.1043343, + 48.369454901 + ], + [ + 11.1054309, + 48.369029001 + ], + [ + 11.1068004, + 48.368553301 + ], + [ + 11.108271, + 48.368102001 + ], + [ + 11.1094651, + 48.367787301 + ], + [ + 11.1112247, + 48.367407201 + ], + [ + 11.1126029, + 48.367080701 + ], + [ + 11.1143718, + 48.366629801 + ], + [ + 11.1158153, + 48.366218501 + ], + [ + 11.1173276, + 48.365730701 + ], + [ + 11.1186386, + 48.365247701 + ], + [ + 11.119874, + 48.364718701 + ], + [ + 11.1208258, + 48.364281601 + ], + [ + 11.1217201, + 48.363839501 + ], + [ + 11.1226217, + 48.363348501 + ], + [ + 11.1234548, + 48.362844601 + ], + [ + 11.1242046, + 48.362365301 + ], + [ + 11.1251146, + 48.361755601 + ], + [ + 11.1260788, + 48.361025801 + ], + [ + 11.1268799, + 48.360352001 + ], + [ + 11.1277594, + 48.359551201 + ], + [ + 11.1288331, + 48.358429001 + ], + [ + 11.1295168, + 48.357641301 + ], + [ + 11.1308941, + 48.355924601 + ], + [ + 11.1309818, + 48.355815001 + ], + [ + 11.1325819, + 48.353871401 + ], + [ + 11.1338122, + 48.352432901 + ], + [ + 11.134633, + 48.351573801 + ], + [ + 11.1356625, + 48.350661501 + ], + [ + 11.1358104, + 48.350535301 + ], + [ + 11.1362755, + 48.350143901 + ], + [ + 11.1372053, + 48.349438601 + ], + [ + 11.1380062, + 48.348877801 + ], + [ + 11.1390372, + 48.348219101 + ], + [ + 11.1397371, + 48.347800801 + ], + [ + 11.1410024, + 48.347095101 + ], + [ + 11.142495, + 48.346340501 + ], + [ + 11.1441604, + 48.345590501 + ], + [ + 11.1451555, + 48.345135101 + ], + [ + 11.1464934, + 48.344506401 + ], + [ + 11.147404, + 48.344089101 + ], + [ + 11.1517285, + 48.342061801 + ], + [ + 11.1525024, + 48.341697801 + ], + [ + 11.1538429, + 48.341017101 + ], + [ + 11.1549515, + 48.340378201 + ], + [ + 11.1555112, + 48.340026001 + ], + [ + 11.1561669, + 48.339586501 + ], + [ + 11.1569704, + 48.339005701 + ], + [ + 11.1578985, + 48.338281901 + ], + [ + 11.1586656, + 48.337607901 + ], + [ + 11.1595185, + 48.336752101 + ], + [ + 11.1610152, + 48.335208001 + ], + [ + 11.1624958, + 48.333635301 + ], + [ + 11.16322, + 48.332861401 + ], + [ + 11.1639066, + 48.332205201 + ], + [ + 11.164486, + 48.331713101 + ], + [ + 11.1651833, + 48.331160301 + ], + [ + 11.1658914, + 48.330632401 + ], + [ + 11.1667033, + 48.330037901 + ], + [ + 11.1677524, + 48.329364701 + ], + [ + 11.1687847, + 48.328721401 + ], + [ + 11.1706147, + 48.327673901 + ], + [ + 11.1726559, + 48.326612701 + ], + [ + 11.1744423, + 48.325701101 + ], + [ + 11.1765345, + 48.324729701 + ], + [ + 11.1809504, + 48.322645801 + ], + [ + 11.1811035, + 48.322576801 + ], + [ + 11.1860656, + 48.320306701 + ], + [ + 11.1880807, + 48.319391501 + ], + [ + 11.1910394, + 48.317949501 + ], + [ + 11.193519, + 48.316638801 + ], + [ + 11.194234, + 48.316243101 + ], + [ + 11.1955796, + 48.315477901 + ], + [ + 11.1967797, + 48.314745801 + ], + [ + 11.1972657, + 48.314454101 + ], + [ + 11.1983821, + 48.313787401 + ], + [ + 11.1999034, + 48.312796601 + ], + [ + 11.2023577, + 48.311104601 + ], + [ + 11.2043416, + 48.309751001 + ], + [ + 11.2054689, + 48.308984801 + ], + [ + 11.2066726, + 48.308149201 + ], + [ + 11.2074224, + 48.307631301 + ], + [ + 11.2085207, + 48.306881701 + ], + [ + 11.2093782, + 48.306298001 + ], + [ + 11.2112209, + 48.305036101 + ], + [ + 11.2134347, + 48.303515401 + ], + [ + 11.2159803, + 48.301815001 + ], + [ + 11.2176122, + 48.300811201 + ], + [ + 11.2192025, + 48.299884701 + ], + [ + 11.2202719, + 48.299319401 + ], + [ + 11.2213297, + 48.298790001 + ], + [ + 11.2235672, + 48.297738401 + ], + [ + 11.2255853, + 48.296884401 + ], + [ + 11.2273108, + 48.296237301 + ], + [ + 11.2286839, + 48.295754701 + ], + [ + 11.2298477, + 48.295371801 + ], + [ + 11.23029, + 48.295226301 + ], + [ + 11.2304698, + 48.295171301 + ], + [ + 11.231187, + 48.294951701 + ], + [ + 11.2319778, + 48.294709601 + ], + [ + 11.233833, + 48.294146001 + ], + [ + 11.2358058, + 48.293550201 + ], + [ + 11.2411804, + 48.291958701 + ], + [ + 11.2454432, + 48.290696301 + ], + [ + 11.2488609, + 48.289669901 + ], + [ + 11.2511147, + 48.288926801 + ], + [ + 11.2533368, + 48.288122201 + ], + [ + 11.2552128, + 48.287402901 + ], + [ + 11.2557664, + 48.287180001 + ], + [ + 11.2560819, + 48.287056001 + ], + [ + 11.2574661, + 48.286466501 + ], + [ + 11.2585967, + 48.285974701 + ], + [ + 11.261031, + 48.284874601 + ], + [ + 11.2630179, + 48.283940201 + ], + [ + 11.2646376, + 48.283181601 + ], + [ + 11.2654834, + 48.282785501 + ], + [ + 11.2693599, + 48.280964901 + ], + [ + 11.2719409, + 48.279757301 + ], + [ + 11.274078, + 48.278760601 + ], + [ + 11.2764074, + 48.277656201 + ], + [ + 11.2776564, + 48.277056301 + ], + [ + 11.2793091, + 48.276294201 + ], + [ + 11.2806108, + 48.275664301 + ], + [ + 11.2816171, + 48.275113401 + ], + [ + 11.2826498, + 48.274466101 + ], + [ + 11.2835746, + 48.273840501 + ], + [ + 11.2844919, + 48.273160901 + ], + [ + 11.285496, + 48.272316201 + ], + [ + 11.2861307, + 48.271722201 + ], + [ + 11.2870137, + 48.270871101 + ], + [ + 11.287294, + 48.270609601 + ], + [ + 11.2891272, + 48.268844301 + ], + [ + 11.296267, + 48.262029701 + ], + [ + 11.2984073, + 48.259971701 + ], + [ + 11.2995958, + 48.258848701 + ], + [ + 11.2999791, + 48.258500401 + ], + [ + 11.3003286, + 48.258199701 + ], + [ + 11.3005874, + 48.257984201 + ], + [ + 11.3009286, + 48.257711801 + ], + [ + 11.3017609, + 48.257099101 + ], + [ + 11.3024369, + 48.256636301 + ], + [ + 11.3029315, + 48.256324501 + ], + [ + 11.3036995, + 48.255823601 + ], + [ + 11.3047742, + 48.255221101 + ], + [ + 11.3052413, + 48.254992901 + ], + [ + 11.3058848, + 48.254672801 + ], + [ + 11.3063647, + 48.254438501 + ], + [ + 11.3209934, + 48.247296701 + ], + [ + 11.336239, + 48.239860301 + ], + [ + 11.3408042, + 48.237566701 + ], + [ + 11.3428447, + 48.236488201 + ], + [ + 11.3445656, + 48.235536801 + ], + [ + 11.3456575, + 48.234913001 + ], + [ + 11.3468675, + 48.234212601 + ], + [ + 11.3471939, + 48.234023601 + ], + [ + 11.3486349, + 48.233174401 + ], + [ + 11.3530926, + 48.230547601 + ], + [ + 11.3536152, + 48.230238901 + ], + [ + 11.3549891, + 48.229432601 + ], + [ + 11.3578667, + 48.227737801 + ], + [ + 11.3623078, + 48.225117801 + ], + [ + 11.3710404, + 48.219969401 + ], + [ + 11.3769948, + 48.216459801 + ], + [ + 11.3788717, + 48.215350601 + ], + [ + 11.3822013, + 48.213399401 + ], + [ + 11.3822395, + 48.213377001 + ], + [ + 11.3835348, + 48.212605201 + ], + [ + 11.3845861, + 48.211984101 + ], + [ + 11.3853392, + 48.211539201 + ], + [ + 11.3858694, + 48.211216201 + ], + [ + 11.3860758, + 48.211127201 + ], + [ + 11.3882752, + 48.209826501 + ], + [ + 11.3896333, + 48.209014501 + ], + [ + 11.3905608, + 48.208483601 + ], + [ + 11.3939953, + 48.206443201 + ], + [ + 11.394434547, + 48.206178766 + ] + ] + } + }, + { + "identifier": "2026-017540--vi-bs.2026-04-09_11-00-00-000.devi-zus.2026-04-09_05-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.41493283646049,10.863457543562216,48.38981562102282,11.072400697606968", + "point": "48.41493283646049,10.863457543562216", + "startLcPosition": "111", + "impact": { + "lower": "Adelzhausen", + "upper": "Neus\u00e4\u00df", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Neus\u00e4\u00df - Adelzhausen", + "coordinate": { + "lat": 48.41493283646049, + "long": 10.863457543562216 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 11:00 bis 18:00 Uhr", + "10.04.26 von 11:00 bis 18:00 Uhr", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 1.9 km hinter AS Neus\u00e4\u00df und 6.3 km vor AS Adelzhausen", + "", + "L\u00e4nge: 15.94 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Aplus A8 West - KW 15 - Schadensaufnahme 3. Fahrspur " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.863457544, + 48.414932836 + ], + [ + 10.8645315, + 48.414845501 + ], + [ + 10.8656952, + 48.414772501 + ], + [ + 10.8667029, + 48.414709901 + ], + [ + 10.867874, + 48.414636101 + ], + [ + 10.8688229, + 48.414607201 + ], + [ + 10.8694457, + 48.414594401 + ], + [ + 10.8698135, + 48.414586901 + ], + [ + 10.8721264, + 48.414533401 + ], + [ + 10.8738261, + 48.414495201 + ], + [ + 10.8754471, + 48.414456701 + ], + [ + 10.8760378, + 48.414442601 + ], + [ + 10.8764587, + 48.414432601 + ], + [ + 10.8790431, + 48.414364101 + ], + [ + 10.8815896, + 48.414301001 + ], + [ + 10.884282, + 48.414245701 + ], + [ + 10.8851827, + 48.414226201 + ], + [ + 10.887599, + 48.414158601 + ], + [ + 10.8882272, + 48.414134501 + ], + [ + 10.8897511, + 48.414070901 + ], + [ + 10.8924511, + 48.413897401 + ], + [ + 10.8937015, + 48.413799101 + ], + [ + 10.8953492, + 48.413653201 + ], + [ + 10.8967467, + 48.413501501 + ], + [ + 10.898152, + 48.413334201 + ], + [ + 10.8997303, + 48.413117601 + ], + [ + 10.9013883, + 48.412870001 + ], + [ + 10.902402, + 48.412704201 + ], + [ + 10.9057478, + 48.412156901 + ], + [ + 10.907569, + 48.411856401 + ], + [ + 10.9083531, + 48.411734401 + ], + [ + 10.9093728, + 48.411560301 + ], + [ + 10.9126258, + 48.411018801 + ], + [ + 10.9148443, + 48.410654201 + ], + [ + 10.9156006, + 48.410529901 + ], + [ + 10.916784, + 48.410331901 + ], + [ + 10.9195865, + 48.409862901 + ], + [ + 10.9225599, + 48.409375201 + ], + [ + 10.9258721, + 48.408823901 + ], + [ + 10.9277055, + 48.408527701 + ], + [ + 10.9287955, + 48.408345501 + ], + [ + 10.9290677, + 48.408299901 + ], + [ + 10.9292493, + 48.408269501 + ], + [ + 10.929844, + 48.408170301 + ], + [ + 10.9307691, + 48.408015101 + ], + [ + 10.9339371, + 48.407492701 + ], + [ + 10.9360866, + 48.407132101 + ], + [ + 10.9382955, + 48.406763401 + ], + [ + 10.9422273, + 48.406109501 + ], + [ + 10.9423638, + 48.406086901 + ], + [ + 10.9444539, + 48.405741701 + ], + [ + 10.9481348, + 48.405141601 + ], + [ + 10.9498204, + 48.404853801 + ], + [ + 10.9510196, + 48.404659301 + ], + [ + 10.953704, + 48.404212001 + ], + [ + 10.9543194, + 48.404106001 + ], + [ + 10.9564506, + 48.403748601 + ], + [ + 10.9597161, + 48.403237901 + ], + [ + 10.9616644, + 48.402901701 + ], + [ + 10.9631922, + 48.402639601 + ], + [ + 10.9653574, + 48.402263301 + ], + [ + 10.9662587, + 48.402116601 + ], + [ + 10.9677229, + 48.401884401 + ], + [ + 10.9691319, + 48.401707001 + ], + [ + 10.9703091, + 48.401595001 + ], + [ + 10.9715244, + 48.401510301 + ], + [ + 10.9724969, + 48.401473801 + ], + [ + 10.974199, + 48.401446001 + ], + [ + 10.9773628, + 48.401505401 + ], + [ + 10.9808892, + 48.401587601 + ], + [ + 10.981465, + 48.401600601 + ], + [ + 10.9824623, + 48.401612501 + ], + [ + 10.983863, + 48.401586801 + ], + [ + 10.9851628, + 48.401529101 + ], + [ + 10.9870422, + 48.401415901 + ], + [ + 10.9903611, + 48.401193301 + ], + [ + 10.9924061, + 48.401059101 + ], + [ + 10.994705, + 48.400913901 + ], + [ + 10.9970253, + 48.400751601 + ], + [ + 10.9996315, + 48.400585201 + ], + [ + 11.0053978, + 48.400185901 + ], + [ + 11.0076138, + 48.400038701 + ], + [ + 11.0098299, + 48.399887101 + ], + [ + 11.0120529, + 48.399735401 + ], + [ + 11.0131294, + 48.399654701 + ], + [ + 11.0140861, + 48.399566301 + ], + [ + 11.0149478, + 48.399461101 + ], + [ + 11.0157914, + 48.399337401 + ], + [ + 11.0165755, + 48.399210801 + ], + [ + 11.0173768, + 48.399063301 + ], + [ + 11.0184199, + 48.398845901 + ], + [ + 11.0190579, + 48.398693901 + ], + [ + 11.0197045, + 48.398527601 + ], + [ + 11.0208095, + 48.398223001 + ], + [ + 11.0240437, + 48.397274601 + ], + [ + 11.0250748, + 48.397004901 + ], + [ + 11.0256302, + 48.396874201 + ], + [ + 11.0261598, + 48.396757801 + ], + [ + 11.0268042, + 48.396627501 + ], + [ + 11.0274401, + 48.396505701 + ], + [ + 11.0280467, + 48.396403401 + ], + [ + 11.0286555, + 48.396311201 + ], + [ + 11.0297439, + 48.396165601 + ], + [ + 11.0304491, + 48.396085601 + ], + [ + 11.0310729, + 48.396034101 + ], + [ + 11.0316044, + 48.395992601 + ], + [ + 11.0321296, + 48.395956901 + ], + [ + 11.0326541, + 48.395928201 + ], + [ + 11.0331765, + 48.395910801 + ], + [ + 11.0337153, + 48.395897601 + ], + [ + 11.0342263, + 48.395892901 + ], + [ + 11.0347343, + 48.395891601 + ], + [ + 11.0352058, + 48.395901801 + ], + [ + 11.0362157, + 48.395923901 + ], + [ + 11.0388777, + 48.396046301 + ], + [ + 11.047795, + 48.396433101 + ], + [ + 11.0490192, + 48.396488201 + ], + [ + 11.0499642, + 48.396520401 + ], + [ + 11.0509167, + 48.396534301 + ], + [ + 11.0516303, + 48.396530601 + ], + [ + 11.05244, + 48.396508601 + ], + [ + 11.0533363, + 48.396463401 + ], + [ + 11.0539804, + 48.396423801 + ], + [ + 11.0546833, + 48.396364801 + ], + [ + 11.0555759, + 48.396275701 + ], + [ + 11.0562765, + 48.396186701 + ], + [ + 11.0569912, + 48.396083101 + ], + [ + 11.0577669, + 48.395952901 + ], + [ + 11.0588123, + 48.395761501 + ], + [ + 11.0599134, + 48.395523701 + ], + [ + 11.0610376, + 48.395243901 + ], + [ + 11.0617302, + 48.395046501 + ], + [ + 11.0626169, + 48.394781401 + ], + [ + 11.0635099, + 48.394484501 + ], + [ + 11.0642714, + 48.394206501 + ], + [ + 11.0654713, + 48.393725601 + ], + [ + 11.0662098, + 48.393400101 + ], + [ + 11.0669848, + 48.393030901 + ], + [ + 11.067749, + 48.392649901 + ], + [ + 11.0686288, + 48.392171601 + ], + [ + 11.0703913, + 48.391125001 + ], + [ + 11.0716664, + 48.390309901 + ], + [ + 11.072400698, + 48.389815621 + ] + ] + } + }, + { + "identifier": "2026-013235--vi-bs.2026-04-20_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_016.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.41704327375535,10.838812073056127,48.415971193874846,10.851274252735571", + "point": "48.41704327375535,10.838812073056127", + "startLcPosition": "111", + "impact": { + "lower": "Augsburg-West", + "upper": "Neus\u00e4\u00df", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Neus\u00e4\u00df - Augsburg-West", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 48.41704327375535, + "long": 10.838812073056127 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 24.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.04.26)", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen AS Neus\u00e4\u00df und 1.5 km vor AS Augsburg-West", + "", + "L\u00e4nge: 0.93 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A8-West_BauGrund S\u00fcd_PANSUEVIA Erkundungsbohrungen f\u00fcr DB-Trasse Ulm-Augsburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.838812073, + 48.417043274 + ], + [ + 10.8408789, + 48.416863201 + ], + [ + 10.8425501, + 48.416718501 + ], + [ + 10.8469803, + 48.416330801 + ], + [ + 10.8493667, + 48.416135801 + ], + [ + 10.851274253, + 48.415971194 + ] + ] + } + }, + { + "identifier": "2026-017545--vi-bs.2026-04-10_10-30-00-000.devi-zus.2026-04-10_10-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.41458455910696,10.869914784068289,48.414269654203316,10.883116161133813", + "point": "48.41458455910696,10.869914784068289", + "startLcPosition": "111", + "impact": { + "lower": "Augsburg", + "upper": "Neus\u00e4\u00df", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Neus\u00e4\u00df - Augsburg", + "coordinate": { + "lat": 48.41458455910696, + "long": 10.869914784068289 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 10:30 bis 20:00 Uhr", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 2.3 km hinter AS Neus\u00e4\u00df und 2.4 km vor Augsburg", + "", + "L\u00e4nge: 0.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Aplus A8 West - KW 15 - Notsanierung Schachtabdeckung AK A.-West B-Spur M\u00fcn." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.869914784, + 48.414584559 + ], + [ + 10.8721264, + 48.414533401 + ], + [ + 10.8738261, + 48.414495201 + ], + [ + 10.8754471, + 48.414456701 + ], + [ + 10.8760378, + 48.414442601 + ], + [ + 10.8764587, + 48.414432601 + ], + [ + 10.8790431, + 48.414364101 + ], + [ + 10.8815896, + 48.414301001 + ], + [ + 10.883116161, + 48.414269654 + ] + ] + } + }, + { + "identifier": "2026-016744--vi-bs.2026-04-07_11-00-00-000.devi-zus.2026-04-07_07-00-00-000_003.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.38981562102282,11.072400697606968,48.28226652491114,11.266588482032677", + "point": "48.38981562102282,11.072400697606968", + "startLcPosition": "117", + "impact": { + "lower": "Sulzemoos", + "upper": "Dasing", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Dasing - Sulzemoos", + "coordinate": { + "lat": 48.38981562102282, + "long": 11.072400697606968 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 09.04.26 von 11:00 bis 18:00 Uhr.", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 0.6 km hinter AS Dasing und 0.3 km vor AS Sulzemoos", + "", + "L\u00e4nge: 19 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Aplus A8 West - KW 15 - Reinigung Einl\u00e4ufe Standspur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.072400698, + 48.389815621 + ], + [ + 11.0729691, + 48.389433001 + ], + [ + 11.0746621, + 48.388290901 + ], + [ + 11.0750446, + 48.388025301 + ], + [ + 11.0765864, + 48.386975301 + ], + [ + 11.0769465, + 48.386730801 + ], + [ + 11.0780609, + 48.385981501 + ], + [ + 11.0791374, + 48.385241601 + ], + [ + 11.0809856, + 48.383984901 + ], + [ + 11.0838331, + 48.382039701 + ], + [ + 11.085593, + 48.380862401 + ], + [ + 11.0873151, + 48.379757201 + ], + [ + 11.0896859, + 48.378224701 + ], + [ + 11.0948771, + 48.374923801 + ], + [ + 11.0975849, + 48.373215001 + ], + [ + 11.1005534, + 48.371364801 + ], + [ + 11.1015289, + 48.370794901 + ], + [ + 11.1021957, + 48.370437901 + ], + [ + 11.1026526, + 48.370223801 + ], + [ + 11.1034422, + 48.369843001 + ], + [ + 11.103813, + 48.369678301 + ], + [ + 11.1043343, + 48.369454901 + ], + [ + 11.1054309, + 48.369029001 + ], + [ + 11.1068004, + 48.368553301 + ], + [ + 11.108271, + 48.368102001 + ], + [ + 11.1094651, + 48.367787301 + ], + [ + 11.1112247, + 48.367407201 + ], + [ + 11.1126029, + 48.367080701 + ], + [ + 11.1143718, + 48.366629801 + ], + [ + 11.1158153, + 48.366218501 + ], + [ + 11.1173276, + 48.365730701 + ], + [ + 11.1186386, + 48.365247701 + ], + [ + 11.119874, + 48.364718701 + ], + [ + 11.1208258, + 48.364281601 + ], + [ + 11.1217201, + 48.363839501 + ], + [ + 11.1226217, + 48.363348501 + ], + [ + 11.1234548, + 48.362844601 + ], + [ + 11.1242046, + 48.362365301 + ], + [ + 11.1251146, + 48.361755601 + ], + [ + 11.1260788, + 48.361025801 + ], + [ + 11.1268799, + 48.360352001 + ], + [ + 11.1277594, + 48.359551201 + ], + [ + 11.1288331, + 48.358429001 + ], + [ + 11.1295168, + 48.357641301 + ], + [ + 11.1308941, + 48.355924601 + ], + [ + 11.1309818, + 48.355815001 + ], + [ + 11.1325819, + 48.353871401 + ], + [ + 11.1338122, + 48.352432901 + ], + [ + 11.134633, + 48.351573801 + ], + [ + 11.1356625, + 48.350661501 + ], + [ + 11.1358104, + 48.350535301 + ], + [ + 11.1362755, + 48.350143901 + ], + [ + 11.1372053, + 48.349438601 + ], + [ + 11.1380062, + 48.348877801 + ], + [ + 11.1390372, + 48.348219101 + ], + [ + 11.1397371, + 48.347800801 + ], + [ + 11.1410024, + 48.347095101 + ], + [ + 11.142495, + 48.346340501 + ], + [ + 11.1441604, + 48.345590501 + ], + [ + 11.1451555, + 48.345135101 + ], + [ + 11.1464934, + 48.344506401 + ], + [ + 11.147404, + 48.344089101 + ], + [ + 11.1517285, + 48.342061801 + ], + [ + 11.1525024, + 48.341697801 + ], + [ + 11.1538429, + 48.341017101 + ], + [ + 11.1549515, + 48.340378201 + ], + [ + 11.1555112, + 48.340026001 + ], + [ + 11.1561669, + 48.339586501 + ], + [ + 11.1569704, + 48.339005701 + ], + [ + 11.1578985, + 48.338281901 + ], + [ + 11.1586656, + 48.337607901 + ], + [ + 11.1595185, + 48.336752101 + ], + [ + 11.1610152, + 48.335208001 + ], + [ + 11.1624958, + 48.333635301 + ], + [ + 11.16322, + 48.332861401 + ], + [ + 11.1639066, + 48.332205201 + ], + [ + 11.164486, + 48.331713101 + ], + [ + 11.1651833, + 48.331160301 + ], + [ + 11.1658914, + 48.330632401 + ], + [ + 11.1667033, + 48.330037901 + ], + [ + 11.1677524, + 48.329364701 + ], + [ + 11.1687847, + 48.328721401 + ], + [ + 11.1706147, + 48.327673901 + ], + [ + 11.1726559, + 48.326612701 + ], + [ + 11.1744423, + 48.325701101 + ], + [ + 11.1765345, + 48.324729701 + ], + [ + 11.1809504, + 48.322645801 + ], + [ + 11.1811035, + 48.322576801 + ], + [ + 11.1860656, + 48.320306701 + ], + [ + 11.1880807, + 48.319391501 + ], + [ + 11.1910394, + 48.317949501 + ], + [ + 11.193519, + 48.316638801 + ], + [ + 11.194234, + 48.316243101 + ], + [ + 11.1955796, + 48.315477901 + ], + [ + 11.1967797, + 48.314745801 + ], + [ + 11.1972657, + 48.314454101 + ], + [ + 11.1983821, + 48.313787401 + ], + [ + 11.1999034, + 48.312796601 + ], + [ + 11.2023577, + 48.311104601 + ], + [ + 11.2043416, + 48.309751001 + ], + [ + 11.2054689, + 48.308984801 + ], + [ + 11.2066726, + 48.308149201 + ], + [ + 11.2074224, + 48.307631301 + ], + [ + 11.2085207, + 48.306881701 + ], + [ + 11.2093782, + 48.306298001 + ], + [ + 11.2112209, + 48.305036101 + ], + [ + 11.2134347, + 48.303515401 + ], + [ + 11.2159803, + 48.301815001 + ], + [ + 11.2176122, + 48.300811201 + ], + [ + 11.2192025, + 48.299884701 + ], + [ + 11.2202719, + 48.299319401 + ], + [ + 11.2213297, + 48.298790001 + ], + [ + 11.2235672, + 48.297738401 + ], + [ + 11.2255853, + 48.296884401 + ], + [ + 11.2273108, + 48.296237301 + ], + [ + 11.2286839, + 48.295754701 + ], + [ + 11.2298477, + 48.295371801 + ], + [ + 11.23029, + 48.295226301 + ], + [ + 11.2304698, + 48.295171301 + ], + [ + 11.231187, + 48.294951701 + ], + [ + 11.2319778, + 48.294709601 + ], + [ + 11.233833, + 48.294146001 + ], + [ + 11.2358058, + 48.293550201 + ], + [ + 11.2411804, + 48.291958701 + ], + [ + 11.2454432, + 48.290696301 + ], + [ + 11.2488609, + 48.289669901 + ], + [ + 11.2511147, + 48.288926801 + ], + [ + 11.2533368, + 48.288122201 + ], + [ + 11.2552128, + 48.287402901 + ], + [ + 11.2557664, + 48.287180001 + ], + [ + 11.2560819, + 48.287056001 + ], + [ + 11.2574661, + 48.286466501 + ], + [ + 11.2585967, + 48.285974701 + ], + [ + 11.261031, + 48.284874601 + ], + [ + 11.2630179, + 48.283940201 + ], + [ + 11.2646376, + 48.283181601 + ], + [ + 11.2654834, + 48.282785501 + ], + [ + 11.266588482, + 48.282266525 + ] + ] + } + }, + { + "identifier": "2026-017540--vi-bs.2026-04-09_11-00-00-000.devi-zus.2026-04-09_05-00-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.38981562102282,11.072400697606968,48.277013632663504,11.277748933637595", + "point": "48.38981562102282,11.072400697606968", + "startLcPosition": "117", + "impact": { + "lower": "Fuchsberg", + "upper": "Dasing", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Dasing - Fuchsberg", + "coordinate": { + "lat": 48.38981562102282, + "long": 11.072400697606968 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 11:00 bis 18:00 Uhr", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 0.6 km hinter AS Dasing und 2.7 km vor Fuchsberg", + "", + "L\u00e4nge: 20.01 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Aplus A8 West - KW 15 - Schadensaufnahme 3. Fahrspur " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.072400698, + 48.389815621 + ], + [ + 11.0729691, + 48.389433001 + ], + [ + 11.0746621, + 48.388290901 + ], + [ + 11.0750446, + 48.388025301 + ], + [ + 11.0765864, + 48.386975301 + ], + [ + 11.0769465, + 48.386730801 + ], + [ + 11.0780609, + 48.385981501 + ], + [ + 11.0791374, + 48.385241601 + ], + [ + 11.0809856, + 48.383984901 + ], + [ + 11.0838331, + 48.382039701 + ], + [ + 11.085593, + 48.380862401 + ], + [ + 11.0873151, + 48.379757201 + ], + [ + 11.0896859, + 48.378224701 + ], + [ + 11.0948771, + 48.374923801 + ], + [ + 11.0975849, + 48.373215001 + ], + [ + 11.1005534, + 48.371364801 + ], + [ + 11.1015289, + 48.370794901 + ], + [ + 11.1021957, + 48.370437901 + ], + [ + 11.1026526, + 48.370223801 + ], + [ + 11.1034422, + 48.369843001 + ], + [ + 11.103813, + 48.369678301 + ], + [ + 11.1043343, + 48.369454901 + ], + [ + 11.1054309, + 48.369029001 + ], + [ + 11.1068004, + 48.368553301 + ], + [ + 11.108271, + 48.368102001 + ], + [ + 11.1094651, + 48.367787301 + ], + [ + 11.1112247, + 48.367407201 + ], + [ + 11.1126029, + 48.367080701 + ], + [ + 11.1143718, + 48.366629801 + ], + [ + 11.1158153, + 48.366218501 + ], + [ + 11.1173276, + 48.365730701 + ], + [ + 11.1186386, + 48.365247701 + ], + [ + 11.119874, + 48.364718701 + ], + [ + 11.1208258, + 48.364281601 + ], + [ + 11.1217201, + 48.363839501 + ], + [ + 11.1226217, + 48.363348501 + ], + [ + 11.1234548, + 48.362844601 + ], + [ + 11.1242046, + 48.362365301 + ], + [ + 11.1251146, + 48.361755601 + ], + [ + 11.1260788, + 48.361025801 + ], + [ + 11.1268799, + 48.360352001 + ], + [ + 11.1277594, + 48.359551201 + ], + [ + 11.1288331, + 48.358429001 + ], + [ + 11.1295168, + 48.357641301 + ], + [ + 11.1308941, + 48.355924601 + ], + [ + 11.1309818, + 48.355815001 + ], + [ + 11.1325819, + 48.353871401 + ], + [ + 11.1338122, + 48.352432901 + ], + [ + 11.134633, + 48.351573801 + ], + [ + 11.1356625, + 48.350661501 + ], + [ + 11.1358104, + 48.350535301 + ], + [ + 11.1362755, + 48.350143901 + ], + [ + 11.1372053, + 48.349438601 + ], + [ + 11.1380062, + 48.348877801 + ], + [ + 11.1390372, + 48.348219101 + ], + [ + 11.1397371, + 48.347800801 + ], + [ + 11.1410024, + 48.347095101 + ], + [ + 11.142495, + 48.346340501 + ], + [ + 11.1441604, + 48.345590501 + ], + [ + 11.1451555, + 48.345135101 + ], + [ + 11.1464934, + 48.344506401 + ], + [ + 11.147404, + 48.344089101 + ], + [ + 11.1517285, + 48.342061801 + ], + [ + 11.1525024, + 48.341697801 + ], + [ + 11.1538429, + 48.341017101 + ], + [ + 11.1549515, + 48.340378201 + ], + [ + 11.1555112, + 48.340026001 + ], + [ + 11.1561669, + 48.339586501 + ], + [ + 11.1569704, + 48.339005701 + ], + [ + 11.1578985, + 48.338281901 + ], + [ + 11.1586656, + 48.337607901 + ], + [ + 11.1595185, + 48.336752101 + ], + [ + 11.1610152, + 48.335208001 + ], + [ + 11.1624958, + 48.333635301 + ], + [ + 11.16322, + 48.332861401 + ], + [ + 11.1639066, + 48.332205201 + ], + [ + 11.164486, + 48.331713101 + ], + [ + 11.1651833, + 48.331160301 + ], + [ + 11.1658914, + 48.330632401 + ], + [ + 11.1667033, + 48.330037901 + ], + [ + 11.1677524, + 48.329364701 + ], + [ + 11.1687847, + 48.328721401 + ], + [ + 11.1706147, + 48.327673901 + ], + [ + 11.1726559, + 48.326612701 + ], + [ + 11.1744423, + 48.325701101 + ], + [ + 11.1765345, + 48.324729701 + ], + [ + 11.1809504, + 48.322645801 + ], + [ + 11.1811035, + 48.322576801 + ], + [ + 11.1860656, + 48.320306701 + ], + [ + 11.1880807, + 48.319391501 + ], + [ + 11.1910394, + 48.317949501 + ], + [ + 11.193519, + 48.316638801 + ], + [ + 11.194234, + 48.316243101 + ], + [ + 11.1955796, + 48.315477901 + ], + [ + 11.1967797, + 48.314745801 + ], + [ + 11.1972657, + 48.314454101 + ], + [ + 11.1983821, + 48.313787401 + ], + [ + 11.1999034, + 48.312796601 + ], + [ + 11.2023577, + 48.311104601 + ], + [ + 11.2043416, + 48.309751001 + ], + [ + 11.2054689, + 48.308984801 + ], + [ + 11.2066726, + 48.308149201 + ], + [ + 11.2074224, + 48.307631301 + ], + [ + 11.2085207, + 48.306881701 + ], + [ + 11.2093782, + 48.306298001 + ], + [ + 11.2112209, + 48.305036101 + ], + [ + 11.2134347, + 48.303515401 + ], + [ + 11.2159803, + 48.301815001 + ], + [ + 11.2176122, + 48.300811201 + ], + [ + 11.2192025, + 48.299884701 + ], + [ + 11.2202719, + 48.299319401 + ], + [ + 11.2213297, + 48.298790001 + ], + [ + 11.2235672, + 48.297738401 + ], + [ + 11.2255853, + 48.296884401 + ], + [ + 11.2273108, + 48.296237301 + ], + [ + 11.2286839, + 48.295754701 + ], + [ + 11.2298477, + 48.295371801 + ], + [ + 11.23029, + 48.295226301 + ], + [ + 11.2304698, + 48.295171301 + ], + [ + 11.231187, + 48.294951701 + ], + [ + 11.2319778, + 48.294709601 + ], + [ + 11.233833, + 48.294146001 + ], + [ + 11.2358058, + 48.293550201 + ], + [ + 11.2411804, + 48.291958701 + ], + [ + 11.2454432, + 48.290696301 + ], + [ + 11.2488609, + 48.289669901 + ], + [ + 11.2511147, + 48.288926801 + ], + [ + 11.2533368, + 48.288122201 + ], + [ + 11.2552128, + 48.287402901 + ], + [ + 11.2557664, + 48.287180001 + ], + [ + 11.2560819, + 48.287056001 + ], + [ + 11.2574661, + 48.286466501 + ], + [ + 11.2585967, + 48.285974701 + ], + [ + 11.261031, + 48.284874601 + ], + [ + 11.2630179, + 48.283940201 + ], + [ + 11.2646376, + 48.283181601 + ], + [ + 11.2654834, + 48.282785501 + ], + [ + 11.2693599, + 48.280964901 + ], + [ + 11.2719409, + 48.279757301 + ], + [ + 11.274078, + 48.278760601 + ], + [ + 11.2764074, + 48.277656201 + ], + [ + 11.2776564, + 48.277056301 + ], + [ + 11.277748934, + 48.277013633 + ] + ] + } + }, + { + "identifier": "2026-007415--vi-fbm.2026-04-12_22-00-00-000.devi-zus.2026-02-25_22-00-00-000_012.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.389927253214765,11.072567472467885,48.396457455398334,11.055253373650533", + "point": "48.389927253214765,11.072567472467885", + "startLcPosition": "118", + "impact": { + "lower": "Kirchholz", + "upper": "Adelzhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Adelzhausen - Kirchholz", + "coordinate": { + "lat": 48.389927253214765, + "long": 11.072567472467885 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "12.04.26 22:00 bis zum 13.04.26 05:00 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 6.3 km hinter AS Adelzhausen und 5.4 km vor Kirchholz", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Aplus A8 West - GST zum WP Schalkstetten Brand - Sperrung AS Dasing Stg." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.072567472, + 48.389927253 + ], + [ + 11.0718007, + 48.390427601 + ], + [ + 11.0697936, + 48.391690701 + ], + [ + 11.0687695, + 48.392285601 + ], + [ + 11.0681792, + 48.392608501 + ], + [ + 11.0676619, + 48.392874401 + ], + [ + 11.0670655, + 48.393176101 + ], + [ + 11.0664464, + 48.393468301 + ], + [ + 11.0655468, + 48.393869401 + ], + [ + 11.0643928, + 48.394333401 + ], + [ + 11.0628326, + 48.394874801 + ], + [ + 11.0617956, + 48.395194401 + ], + [ + 11.0610862, + 48.395393401 + ], + [ + 11.0605205, + 48.395536001 + ], + [ + 11.0599626, + 48.395670501 + ], + [ + 11.0588549, + 48.395907201 + ], + [ + 11.0578196, + 48.396099001 + ], + [ + 11.0570268, + 48.396234101 + ], + [ + 11.0563096, + 48.396336901 + ], + [ + 11.0556046, + 48.396421201 + ], + [ + 11.055253374, + 48.396457455 + ] + ] + } + }, + { + "identifier": "2026-016744--vi-bs.2026-04-07_11-00-00-000.devi-zus.2026-04-07_07-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.27964898191396,11.272173163126334,48.2079491957334,11.39146037926583", + "point": "48.27964898191396,11.272173163126334", + "startLcPosition": "121", + "impact": { + "lower": "M\u00fcnchen-Eschenried", + "upper": "Sulzemoos", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Sulzemoos - M\u00fcnchen-Eschenried", + "coordinate": { + "lat": 48.27964898191396, + "long": 11.272173163126334 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 09.04.26 von 11:00 bis 18:00 Uhr.", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 0.2 km hinter AS Sulzemoos und 0.2 km vor AD M\u00fcnchen-Eschenried", + "", + "L\u00e4nge: 12 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Aplus A8 West - KW 15 - Reinigung Einl\u00e4ufe Standspur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.272173163, + 48.279648982 + ], + [ + 11.274078, + 48.278760601 + ], + [ + 11.2764074, + 48.277656201 + ], + [ + 11.2776564, + 48.277056301 + ], + [ + 11.2793091, + 48.276294201 + ], + [ + 11.2806108, + 48.275664301 + ], + [ + 11.2816171, + 48.275113401 + ], + [ + 11.2826498, + 48.274466101 + ], + [ + 11.2835746, + 48.273840501 + ], + [ + 11.2844919, + 48.273160901 + ], + [ + 11.285496, + 48.272316201 + ], + [ + 11.2861307, + 48.271722201 + ], + [ + 11.2870137, + 48.270871101 + ], + [ + 11.287294, + 48.270609601 + ], + [ + 11.2891272, + 48.268844301 + ], + [ + 11.296267, + 48.262029701 + ], + [ + 11.2984073, + 48.259971701 + ], + [ + 11.2995958, + 48.258848701 + ], + [ + 11.2999791, + 48.258500401 + ], + [ + 11.3003286, + 48.258199701 + ], + [ + 11.3005874, + 48.257984201 + ], + [ + 11.3009286, + 48.257711801 + ], + [ + 11.3017609, + 48.257099101 + ], + [ + 11.3024369, + 48.256636301 + ], + [ + 11.3029315, + 48.256324501 + ], + [ + 11.3036995, + 48.255823601 + ], + [ + 11.3047742, + 48.255221101 + ], + [ + 11.3052413, + 48.254992901 + ], + [ + 11.3058848, + 48.254672801 + ], + [ + 11.3063647, + 48.254438501 + ], + [ + 11.3209934, + 48.247296701 + ], + [ + 11.336239, + 48.239860301 + ], + [ + 11.3408042, + 48.237566701 + ], + [ + 11.3428447, + 48.236488201 + ], + [ + 11.3445656, + 48.235536801 + ], + [ + 11.3456575, + 48.234913001 + ], + [ + 11.3468675, + 48.234212601 + ], + [ + 11.3471939, + 48.234023601 + ], + [ + 11.3486349, + 48.233174401 + ], + [ + 11.3530926, + 48.230547601 + ], + [ + 11.3536152, + 48.230238901 + ], + [ + 11.3549891, + 48.229432601 + ], + [ + 11.3578667, + 48.227737801 + ], + [ + 11.3623078, + 48.225117801 + ], + [ + 11.3710404, + 48.219969401 + ], + [ + 11.3769948, + 48.216459801 + ], + [ + 11.3788717, + 48.215350601 + ], + [ + 11.3822013, + 48.213399401 + ], + [ + 11.3822395, + 48.213377001 + ], + [ + 11.3835348, + 48.212605201 + ], + [ + 11.3845861, + 48.211984101 + ], + [ + 11.3853392, + 48.211539201 + ], + [ + 11.3858694, + 48.211216201 + ], + [ + 11.3860758, + 48.211127201 + ], + [ + 11.3882752, + 48.209826501 + ], + [ + 11.3896333, + 48.209014501 + ], + [ + 11.3905608, + 48.208483601 + ], + [ + 11.391460379, + 48.207949196 + ] + ] + } + }, + { + "identifier": "2026-012339--vi-bs.2026-03-20_06-00-00-000.devi-zus.2026-03-19_19-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.30604906055018,11.210040820823359,48.30925254177794,11.205367025833677", + "point": "48.30604906055018,11.210040820823359", + "startLcPosition": "121", + "impact": { + "lower": "Adelzhauser Berg", + "upper": "Sulzemoos", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | Sulzemoos - Adelzhauser Berg", + "coordinate": { + "lat": 48.30604906055018, + "long": 11.210040820823359 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.03.26 00:00 Uhr bis zum 10.04.26 24:00 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 5.3 km hinter AS Sulzemoos und 5.5 km vor Adelzhauser Berg", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 11.5 m", + "", + "Aplus A8 West - KW 12 - Betriebliche Notma\u00dfnahmen Fahrbahnreparatur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.210040821, + 48.306049061 + ], + [ + 11.2092555, + 48.306587001 + ], + [ + 11.2074832, + 48.307802701 + ], + [ + 11.2063773, + 48.308555201 + ], + [ + 11.205367026, + 48.309252542 + ] + ] + } + }, + { + "identifier": "2026-017540--vi-bs.2026-04-09_11-00-00-000.devi-zus.2026-04-09_05-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.27964898191396,11.272173163126334,48.2079491957334,11.39146037926583", + "point": "48.27964898191396,11.272173163126334", + "startLcPosition": "121", + "impact": { + "lower": "M\u00fcnchen-Eschenried", + "upper": "Sulzemoos", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> M\u00fcnchen", + "title": "A8 | Sulzemoos - M\u00fcnchen-Eschenried", + "coordinate": { + "lat": 48.27964898191396, + "long": 11.272173163126334 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 11:00 bis 18:00 Uhr", + "", + "A8: Stuttgart -> M\u00fcnchen, zwischen 0.2 km hinter AS Sulzemoos und 0.2 km vor AD M\u00fcnchen-Eschenried", + "", + "L\u00e4nge: 12 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Aplus A8 West - KW 15 - Schadensaufnahme 3. Fahrspur " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.272173163, + 48.279648982 + ], + [ + 11.274078, + 48.278760601 + ], + [ + 11.2764074, + 48.277656201 + ], + [ + 11.2776564, + 48.277056301 + ], + [ + 11.2793091, + 48.276294201 + ], + [ + 11.2806108, + 48.275664301 + ], + [ + 11.2816171, + 48.275113401 + ], + [ + 11.2826498, + 48.274466101 + ], + [ + 11.2835746, + 48.273840501 + ], + [ + 11.2844919, + 48.273160901 + ], + [ + 11.285496, + 48.272316201 + ], + [ + 11.2861307, + 48.271722201 + ], + [ + 11.2870137, + 48.270871101 + ], + [ + 11.287294, + 48.270609601 + ], + [ + 11.2891272, + 48.268844301 + ], + [ + 11.296267, + 48.262029701 + ], + [ + 11.2984073, + 48.259971701 + ], + [ + 11.2995958, + 48.258848701 + ], + [ + 11.2999791, + 48.258500401 + ], + [ + 11.3003286, + 48.258199701 + ], + [ + 11.3005874, + 48.257984201 + ], + [ + 11.3009286, + 48.257711801 + ], + [ + 11.3017609, + 48.257099101 + ], + [ + 11.3024369, + 48.256636301 + ], + [ + 11.3029315, + 48.256324501 + ], + [ + 11.3036995, + 48.255823601 + ], + [ + 11.3047742, + 48.255221101 + ], + [ + 11.3052413, + 48.254992901 + ], + [ + 11.3058848, + 48.254672801 + ], + [ + 11.3063647, + 48.254438501 + ], + [ + 11.3209934, + 48.247296701 + ], + [ + 11.336239, + 48.239860301 + ], + [ + 11.3408042, + 48.237566701 + ], + [ + 11.3428447, + 48.236488201 + ], + [ + 11.3445656, + 48.235536801 + ], + [ + 11.3456575, + 48.234913001 + ], + [ + 11.3468675, + 48.234212601 + ], + [ + 11.3471939, + 48.234023601 + ], + [ + 11.3486349, + 48.233174401 + ], + [ + 11.3530926, + 48.230547601 + ], + [ + 11.3536152, + 48.230238901 + ], + [ + 11.3549891, + 48.229432601 + ], + [ + 11.3578667, + 48.227737801 + ], + [ + 11.3623078, + 48.225117801 + ], + [ + 11.3710404, + 48.219969401 + ], + [ + 11.3769948, + 48.216459801 + ], + [ + 11.3788717, + 48.215350601 + ], + [ + 11.3822013, + 48.213399401 + ], + [ + 11.3822395, + 48.213377001 + ], + [ + 11.3835348, + 48.212605201 + ], + [ + 11.3845861, + 48.211984101 + ], + [ + 11.3853392, + 48.211539201 + ], + [ + 11.3858694, + 48.211216201 + ], + [ + 11.3860758, + 48.211127201 + ], + [ + 11.3882752, + 48.209826501 + ], + [ + 11.3896333, + 48.209014501 + ], + [ + 11.3905608, + 48.208483601 + ], + [ + 11.391460379, + 48.207949196 + ] + ] + } + }, + { + "identifier": "2024-047207--vi-bs.2026-04-22_22-00-00-000.devi-zus.2025-04-28_00-00-00-000.f_004.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.20775893214742,11.392052866178025,48.228810328965,11.356386735066597", + "point": "48.20775893214742,11.392052866178025", + "startLcPosition": "124", + "impact": { + "lower": "Dachau/F\u00fcrstenfeldbruck", + "upper": "M\u00fcnchen-Eschenried", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | M\u00fcnchen-Eschenried - Dachau/F\u00fcrstenfeldbruck", + "startTimestamp": "2026-04-22T22:00:00+02:00", + "coordinate": { + "lat": 48.20775893214742, + "long": 11.392052866178025 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.04.26 um 22:00 Uhr", + "Ende: 03.05.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.05.26)", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 0.2 km hinter AD M\u00fcnchen-Eschenried und 0.8 km vor AS Dachau/F\u00fcrstenfeldbruck", + "", + "L\u00e4nge: 3.54 km | Maximale Durchfahrtsbreite: 11.5 m", + "", + "Aplus A8 West - Deckensanierung Km 6,900 - 10,000" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.392052866, + 48.207758932 + ], + [ + 11.3920376, + 48.207767901 + ], + [ + 11.3917579, + 48.207962001 + ], + [ + 11.390119, + 48.208924801 + ], + [ + 11.3882258, + 48.210043801 + ], + [ + 11.3866516, + 48.210959301 + ], + [ + 11.3855279, + 48.211642201 + ], + [ + 11.3823915, + 48.213479901 + ], + [ + 11.3790696, + 48.215446101 + ], + [ + 11.3776132, + 48.216315501 + ], + [ + 11.3708938, + 48.220269001 + ], + [ + 11.3621386, + 48.225417101 + ], + [ + 11.3579686, + 48.227879801 + ], + [ + 11.356386735, + 48.228810329 + ] + ] + } + }, + { + "identifier": "2024-047207--vi-bs.2026-04-13_00-00-00-000.devi-zus.2025-04-28_00-00-00-000.f_004.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.20775893214742,11.392052866178025,48.228810328965,11.356386735066597", + "point": "48.20775893214742,11.392052866178025", + "startLcPosition": "124", + "impact": { + "lower": "Dachau/F\u00fcrstenfeldbruck", + "upper": "M\u00fcnchen-Eschenried", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | M\u00fcnchen-Eschenried - Dachau/F\u00fcrstenfeldbruck", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 48.20775893214742, + "long": 11.392052866178025 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 22.04.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.05.26)", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 0.2 km hinter AD M\u00fcnchen-Eschenried und 0.8 km vor AS Dachau/F\u00fcrstenfeldbruck", + "", + "L\u00e4nge: 3.54 km | Maximale Durchfahrtsbreite: 11.5 m", + "", + "Aplus A8 West - Deckensanierung Km 6,900 - 10,000" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.392052866, + 48.207758932 + ], + [ + 11.3920376, + 48.207767901 + ], + [ + 11.3917579, + 48.207962001 + ], + [ + 11.390119, + 48.208924801 + ], + [ + 11.3882258, + 48.210043801 + ], + [ + 11.3866516, + 48.210959301 + ], + [ + 11.3855279, + 48.211642201 + ], + [ + 11.3823915, + 48.213479901 + ], + [ + 11.3790696, + 48.215446101 + ], + [ + 11.3776132, + 48.216315501 + ], + [ + 11.3708938, + 48.220269001 + ], + [ + 11.3621386, + 48.225417101 + ], + [ + 11.3579686, + 48.227879801 + ], + [ + 11.356386735, + 48.228810329 + ] + ] + } + }, + { + "identifier": "2026-011041--vi-bs.2026-04-07_07-30-00-000.devi-zus.2026-03-09_07-30-00-000_010.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.20507220638209,11.39649306277524,48.415093707861836,10.863515577191047", + "point": "48.20507220638209,11.39649306277524", + "startLcPosition": "125", + "impact": { + "lower": "Neus\u00e4\u00df", + "upper": "M\u00fcnchen-Langwied", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | M\u00fcnchen-Langwied - Neus\u00e4\u00df", + "coordinate": { + "lat": 48.20507220638209, + "long": 11.39649306277524 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 07:30 bis 18:00 Uhr.", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 1.4 km hinter AS M\u00fcnchen-Langwied und 1.9 km vor AS Neus\u00e4\u00df", + "", + "L\u00e4nge: 47.93 km | Maximale Durchfahrtsbreite: 10 m", + "", + "Aplus A8 West - Sanierung Unfallsch\u00e4den" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.396493063, + 48.205072206 + ], + [ + 11.393692, + 48.206793401 + ], + [ + 11.3935991, + 48.206850501 + ], + [ + 11.3920376, + 48.207767901 + ], + [ + 11.3917579, + 48.207962001 + ], + [ + 11.390119, + 48.208924801 + ], + [ + 11.3882258, + 48.210043801 + ], + [ + 11.3866516, + 48.210959301 + ], + [ + 11.3855279, + 48.211642201 + ], + [ + 11.3823915, + 48.213479901 + ], + [ + 11.3790696, + 48.215446101 + ], + [ + 11.3776132, + 48.216315501 + ], + [ + 11.3708938, + 48.220269001 + ], + [ + 11.3621386, + 48.225417101 + ], + [ + 11.3579686, + 48.227879801 + ], + [ + 11.355091, + 48.229572501 + ], + [ + 11.3537489, + 48.230365001 + ], + [ + 11.353221, + 48.230676801 + ], + [ + 11.3521431, + 48.231329201 + ], + [ + 11.3488281, + 48.233301101 + ], + [ + 11.3479814, + 48.233795601 + ], + [ + 11.3470118, + 48.234322801 + ], + [ + 11.3456845, + 48.235136401 + ], + [ + 11.3446922, + 48.235668401 + ], + [ + 11.3437104, + 48.236209201 + ], + [ + 11.3430057, + 48.236600001 + ], + [ + 11.3409188, + 48.237712001 + ], + [ + 11.3364878, + 48.239967301 + ], + [ + 11.331198, + 48.242514701 + ], + [ + 11.3141864, + 48.250851301 + ], + [ + 11.3102791, + 48.252753801 + ], + [ + 11.3059935, + 48.254813901 + ], + [ + 11.3049107, + 48.255348701 + ], + [ + 11.3039583, + 48.255876401 + ], + [ + 11.3031077, + 48.256386201 + ], + [ + 11.3025702, + 48.256736601 + ], + [ + 11.3019054, + 48.257214901 + ], + [ + 11.3012366, + 48.257697101 + ], + [ + 11.3004952, + 48.258293901 + ], + [ + 11.2997517, + 48.258951501 + ], + [ + 11.2986502, + 48.260019801 + ], + [ + 11.2971376, + 48.261445101 + ], + [ + 11.2964358, + 48.262125801 + ], + [ + 11.2875035, + 48.270686501 + ], + [ + 11.2872212, + 48.270941201 + ], + [ + 11.2867756, + 48.271365001 + ], + [ + 11.2856678, + 48.272401801 + ], + [ + 11.2852123, + 48.272794501 + ], + [ + 11.2846369, + 48.273258001 + ], + [ + 11.2837326, + 48.273942101 + ], + [ + 11.2827892, + 48.274588101 + ], + [ + 11.2817448, + 48.275233001 + ], + [ + 11.2807406, + 48.275782001 + ], + [ + 11.2796385, + 48.276339801 + ], + [ + 11.275992, + 48.278039901 + ], + [ + 11.274208, + 48.278879001 + ], + [ + 11.2713689, + 48.280201501 + ], + [ + 11.2689517, + 48.281347001 + ], + [ + 11.26687, + 48.282323001 + ], + [ + 11.2656745, + 48.282893001 + ], + [ + 11.264606, + 48.283379001 + ], + [ + 11.2630834, + 48.284081801 + ], + [ + 11.2611834, + 48.284970001 + ], + [ + 11.2587207, + 48.286090301 + ], + [ + 11.257603, + 48.286577301 + ], + [ + 11.2561764, + 48.287176401 + ], + [ + 11.2558719, + 48.287303001 + ], + [ + 11.254827, + 48.287718701 + ], + [ + 11.2534432, + 48.288240301 + ], + [ + 11.2512267, + 48.289037401 + ], + [ + 11.2489054, + 48.289820101 + ], + [ + 11.2455604, + 48.290839001 + ], + [ + 11.2392581, + 48.292712001 + ], + [ + 11.2359074, + 48.293707601 + ], + [ + 11.2339219, + 48.294292101 + ], + [ + 11.2321976, + 48.294795601 + ], + [ + 11.2306553, + 48.295279301 + ], + [ + 11.2304116, + 48.295355701 + ], + [ + 11.2299598, + 48.295503001 + ], + [ + 11.228741, + 48.295900401 + ], + [ + 11.2274247, + 48.296351401 + ], + [ + 11.225701, + 48.297007201 + ], + [ + 11.223645, + 48.297864801 + ], + [ + 11.2232542, + 48.298050801 + ], + [ + 11.2214487, + 48.298910301 + ], + [ + 11.2203578, + 48.299456101 + ], + [ + 11.219314, + 48.300015901 + ], + [ + 11.2176958, + 48.300952601 + ], + [ + 11.2161259, + 48.301927101 + ], + [ + 11.2135583, + 48.303635501 + ], + [ + 11.2113632, + 48.305143201 + ], + [ + 11.2092555, + 48.306587001 + ], + [ + 11.2074832, + 48.307802701 + ], + [ + 11.2063773, + 48.308555201 + ], + [ + 11.2053016, + 48.309297701 + ], + [ + 11.2032163, + 48.310718701 + ], + [ + 11.200074, + 48.312934501 + ], + [ + 11.1985291, + 48.313941801 + ], + [ + 11.1978647, + 48.314358501 + ], + [ + 11.1975496, + 48.314556101 + ], + [ + 11.1970024, + 48.314895001 + ], + [ + 11.1957784, + 48.315621501 + ], + [ + 11.1943966, + 48.316417901 + ], + [ + 11.1937689, + 48.316771701 + ], + [ + 11.1912164, + 48.318063701 + ], + [ + 11.188164, + 48.319533701 + ], + [ + 11.1862426, + 48.320435101 + ], + [ + 11.1813419, + 48.322697901 + ], + [ + 11.1811627, + 48.322783301 + ], + [ + 11.180999, + 48.322860601 + ], + [ + 11.1766934, + 48.324897801 + ], + [ + 11.174612, + 48.325869201 + ], + [ + 11.1728341, + 48.326742401 + ], + [ + 11.1707828, + 48.327834201 + ], + [ + 11.1689125, + 48.328853401 + ], + [ + 11.1678804, + 48.329490001 + ], + [ + 11.1668945, + 48.330165201 + ], + [ + 11.1662035, + 48.330664901 + ], + [ + 11.1659772, + 48.330828601 + ], + [ + 11.1651565, + 48.331459801 + ], + [ + 11.1645664, + 48.331962701 + ], + [ + 11.1639214, + 48.332486901 + ], + [ + 11.1630074, + 48.333358401 + ], + [ + 11.1616482, + 48.334858501 + ], + [ + 11.159717, + 48.336844801 + ], + [ + 11.1588591, + 48.337671201 + ], + [ + 11.1580566, + 48.338362101 + ], + [ + 11.1571314, + 48.339093601 + ], + [ + 11.1563218, + 48.339677501 + ], + [ + 11.1559195, + 48.339956201 + ], + [ + 11.155115, + 48.340468201 + ], + [ + 11.1546115, + 48.340773901 + ], + [ + 11.1539991, + 48.341109601 + ], + [ + 11.1518332, + 48.342195601 + ], + [ + 11.1501817, + 48.342967301 + ], + [ + 11.1474588, + 48.344228501 + ], + [ + 11.1466129, + 48.344621901 + ], + [ + 11.145595, + 48.345093301 + ], + [ + 11.1444075, + 48.345649501 + ], + [ + 11.1426562, + 48.346519901 + ], + [ + 11.1411621, + 48.347266301 + ], + [ + 11.1402067, + 48.347750301 + ], + [ + 11.1391655, + 48.348320101 + ], + [ + 11.1380806, + 48.349027101 + ], + [ + 11.1377168, + 48.349281601 + ], + [ + 11.1373664, + 48.349539101 + ], + [ + 11.1364468, + 48.350246201 + ], + [ + 11.135983, + 48.350608301 + ], + [ + 11.1347987, + 48.351677701 + ], + [ + 11.1340209, + 48.352489801 + ], + [ + 11.1326199, + 48.354139901 + ], + [ + 11.1312607, + 48.355838801 + ], + [ + 11.1311642, + 48.355947601 + ], + [ + 11.129706, + 48.357747401 + ], + [ + 11.1290131, + 48.358497601 + ], + [ + 11.1279293, + 48.359612301 + ], + [ + 11.1271053, + 48.360391701 + ], + [ + 11.1262189, + 48.361139601 + ], + [ + 11.1252906, + 48.361841001 + ], + [ + 11.1244178, + 48.362487601 + ], + [ + 11.1236323, + 48.362981401 + ], + [ + 11.1227721, + 48.363484601 + ], + [ + 11.1218244, + 48.363985201 + ], + [ + 11.1209283, + 48.364428301 + ], + [ + 11.1200056, + 48.364862301 + ], + [ + 11.1187375, + 48.365387201 + ], + [ + 11.1173751, + 48.365891501 + ], + [ + 11.1158498, + 48.366380701 + ], + [ + 11.1144172, + 48.366788101 + ], + [ + 11.1126321, + 48.367219401 + ], + [ + 11.1112676, + 48.367549301 + ], + [ + 11.1095079, + 48.367971101 + ], + [ + 11.1083445, + 48.368274401 + ], + [ + 11.1068928, + 48.368691601 + ], + [ + 11.1055419, + 48.369189701 + ], + [ + 11.1044203, + 48.369626901 + ], + [ + 11.1034772, + 48.370032301 + ], + [ + 11.1026271, + 48.370450601 + ], + [ + 11.1016718, + 48.370969301 + ], + [ + 11.1006721, + 48.371533301 + ], + [ + 11.0977051, + 48.373363701 + ], + [ + 11.0950334, + 48.375071501 + ], + [ + 11.0944696, + 48.375431901 + ], + [ + 11.0934964, + 48.376054001 + ], + [ + 11.0898859, + 48.378380801 + ], + [ + 11.0874477, + 48.379865001 + ], + [ + 11.085736, + 48.380978101 + ], + [ + 11.0839971, + 48.382132401 + ], + [ + 11.081153, + 48.384070801 + ], + [ + 11.0793012, + 48.385337701 + ], + [ + 11.0781762, + 48.386099101 + ], + [ + 11.0770793, + 48.386846501 + ], + [ + 11.0753176, + 48.388043801 + ], + [ + 11.0748745, + 48.388335401 + ], + [ + 11.0731154, + 48.389569701 + ], + [ + 11.0718007, + 48.390427601 + ], + [ + 11.0697936, + 48.391690701 + ], + [ + 11.0687695, + 48.392285601 + ], + [ + 11.0681792, + 48.392608501 + ], + [ + 11.0676619, + 48.392874401 + ], + [ + 11.0670655, + 48.393176101 + ], + [ + 11.0664464, + 48.393468301 + ], + [ + 11.0655468, + 48.393869401 + ], + [ + 11.0643928, + 48.394333401 + ], + [ + 11.0628326, + 48.394874801 + ], + [ + 11.0617956, + 48.395194401 + ], + [ + 11.0610862, + 48.395393401 + ], + [ + 11.0605205, + 48.395536001 + ], + [ + 11.0599626, + 48.395670501 + ], + [ + 11.0588549, + 48.395907201 + ], + [ + 11.0578196, + 48.396099001 + ], + [ + 11.0570268, + 48.396234101 + ], + [ + 11.0563096, + 48.396336901 + ], + [ + 11.0556046, + 48.396421201 + ], + [ + 11.0547133, + 48.396513201 + ], + [ + 11.0539771, + 48.396576101 + ], + [ + 11.05334, + 48.396614301 + ], + [ + 11.0524394, + 48.396652001 + ], + [ + 11.0516239, + 48.396678701 + ], + [ + 11.0509082, + 48.396682701 + ], + [ + 11.0499416, + 48.396666901 + ], + [ + 11.0490084, + 48.396638401 + ], + [ + 11.0477762, + 48.396578501 + ], + [ + 11.0388669, + 48.396196801 + ], + [ + 11.0375392, + 48.396135501 + ], + [ + 11.0362072, + 48.396077001 + ], + [ + 11.0352007, + 48.396046601 + ], + [ + 11.0346901, + 48.396040701 + ], + [ + 11.034186, + 48.396039201 + ], + [ + 11.0331688, + 48.396058401 + ], + [ + 11.0326553, + 48.396078801 + ], + [ + 11.032131, + 48.396109101 + ], + [ + 11.0316198, + 48.396141001 + ], + [ + 11.0311172, + 48.396181501 + ], + [ + 11.0304515, + 48.396243501 + ], + [ + 11.0297729, + 48.396317001 + ], + [ + 11.028708, + 48.396455401 + ], + [ + 11.0274786, + 48.396652601 + ], + [ + 11.0268553, + 48.396769901 + ], + [ + 11.0262191, + 48.396902901 + ], + [ + 11.0256691, + 48.397023801 + ], + [ + 11.025119, + 48.397157601 + ], + [ + 11.0241148, + 48.397419701 + ], + [ + 11.0208537, + 48.398367201 + ], + [ + 11.0203113, + 48.398521601 + ], + [ + 11.0197281, + 48.398671801 + ], + [ + 11.0191301, + 48.398830801 + ], + [ + 11.0184891, + 48.398984001 + ], + [ + 11.0174191, + 48.399200501 + ], + [ + 11.017019, + 48.399283301 + ], + [ + 11.0166188, + 48.399354601 + ], + [ + 11.015876, + 48.399473301 + ], + [ + 11.0149619, + 48.399601301 + ], + [ + 11.0145323, + 48.399660901 + ], + [ + 11.0141113, + 48.399709001 + ], + [ + 11.0131655, + 48.399788601 + ], + [ + 11.012054, + 48.399882101 + ], + [ + 11.009879, + 48.400028801 + ], + [ + 11.0053951, + 48.400337401 + ], + [ + 10.9996359, + 48.400729201 + ], + [ + 10.9970005, + 48.400900001 + ], + [ + 10.9924856, + 48.401211601 + ], + [ + 10.9869952, + 48.401573601 + ], + [ + 10.9852709, + 48.401674101 + ], + [ + 10.9838774, + 48.401734501 + ], + [ + 10.9825437, + 48.401751501 + ], + [ + 10.9808635, + 48.401737601 + ], + [ + 10.9774401, + 48.401665201 + ], + [ + 10.9740677, + 48.401594801 + ], + [ + 10.972353, + 48.401633301 + ], + [ + 10.9713494, + 48.401674401 + ], + [ + 10.9701411, + 48.401755001 + ], + [ + 10.9689346, + 48.401875801 + ], + [ + 10.9677511, + 48.402032601 + ], + [ + 10.9664672, + 48.402234101 + ], + [ + 10.9653731, + 48.402411801 + ], + [ + 10.9632437, + 48.402787701 + ], + [ + 10.9617331, + 48.403044101 + ], + [ + 10.9597418, + 48.403368901 + ], + [ + 10.9564457, + 48.403903101 + ], + [ + 10.9544632, + 48.404240701 + ], + [ + 10.953754, + 48.404353001 + ], + [ + 10.9510785, + 48.404800601 + ], + [ + 10.9497948, + 48.405010001 + ], + [ + 10.9482169, + 48.405275501 + ], + [ + 10.9474125, + 48.405413601 + ], + [ + 10.9444897, + 48.405879901 + ], + [ + 10.9422963, + 48.406252101 + ], + [ + 10.9383333, + 48.406911101 + ], + [ + 10.9361234, + 48.407273801 + ], + [ + 10.9339881, + 48.407651601 + ], + [ + 10.9307825, + 48.408160801 + ], + [ + 10.9287196, + 48.408506601 + ], + [ + 10.9268308, + 48.408820801 + ], + [ + 10.9259348, + 48.408970401 + ], + [ + 10.9226226, + 48.409519001 + ], + [ + 10.9196259, + 48.410012301 + ], + [ + 10.9168351, + 48.410475401 + ], + [ + 10.9156465, + 48.410672701 + ], + [ + 10.914887, + 48.410796301 + ], + [ + 10.9132456, + 48.411062401 + ], + [ + 10.9119887, + 48.411278101 + ], + [ + 10.9108626, + 48.411460301 + ], + [ + 10.9056057, + 48.412330001 + ], + [ + 10.9039443, + 48.412607201 + ], + [ + 10.9014498, + 48.413022401 + ], + [ + 10.89979, + 48.413264801 + ], + [ + 10.8981721, + 48.413484301 + ], + [ + 10.8968267, + 48.413649601 + ], + [ + 10.8954187, + 48.413801301 + ], + [ + 10.8937665, + 48.413957001 + ], + [ + 10.89245, + 48.414071501 + ], + [ + 10.8897666, + 48.414233901 + ], + [ + 10.8882426, + 48.414297401 + ], + [ + 10.8872407, + 48.414332701 + ], + [ + 10.8851907, + 48.414380101 + ], + [ + 10.8841503, + 48.414402501 + ], + [ + 10.8814477, + 48.414470501 + ], + [ + 10.8812555, + 48.414475301 + ], + [ + 10.8783046, + 48.414542001 + ], + [ + 10.8771652, + 48.414567101 + ], + [ + 10.8764333, + 48.414584701 + ], + [ + 10.8760484, + 48.414594301 + ], + [ + 10.8754584, + 48.414609101 + ], + [ + 10.8753477, + 48.414611901 + ], + [ + 10.8736939, + 48.414661301 + ], + [ + 10.8720695, + 48.414695601 + ], + [ + 10.8694455, + 48.414740301 + ], + [ + 10.8683474, + 48.414772801 + ], + [ + 10.8672682, + 48.414822801 + ], + [ + 10.8656904, + 48.414909601 + ], + [ + 10.8637097, + 48.415076401 + ], + [ + 10.863515577, + 48.415093708 + ] + ] + } + }, + { + "identifier": "2026-016743--vi-bs.2026-04-06_07-00-00-000.devi-zus.2026-04-06_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.206277266987954,11.394531984608637,48.415093707861836,10.863515577191047", + "point": "48.206277266987954,11.394531984608637", + "startLcPosition": "125", + "impact": { + "lower": "Neus\u00e4\u00df", + "upper": "M\u00fcnchen-Langwied", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 | M\u00fcnchen-Langwied - Neus\u00e4\u00df", + "coordinate": { + "lat": 48.206277266987954, + "long": 11.394531984608637 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "10.04.26 von 07:00 bis 13:00 Uhr", + "", + "A8: M\u00fcnchen -> Stuttgart, zwischen 1.6 km hinter AS M\u00fcnchen-Langwied und 1.9 km vor AS Neus\u00e4\u00df", + "", + "L\u00e4nge: 47.73 km | Maximale Durchfahrtsbreite: 11 m", + "", + "Aplus A8 West - KW 15 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.394531985, + 48.206277267 + ], + [ + 11.393692, + 48.206793401 + ], + [ + 11.3935991, + 48.206850501 + ], + [ + 11.3920376, + 48.207767901 + ], + [ + 11.3917579, + 48.207962001 + ], + [ + 11.390119, + 48.208924801 + ], + [ + 11.3882258, + 48.210043801 + ], + [ + 11.3866516, + 48.210959301 + ], + [ + 11.3855279, + 48.211642201 + ], + [ + 11.3823915, + 48.213479901 + ], + [ + 11.3790696, + 48.215446101 + ], + [ + 11.3776132, + 48.216315501 + ], + [ + 11.3708938, + 48.220269001 + ], + [ + 11.3621386, + 48.225417101 + ], + [ + 11.3579686, + 48.227879801 + ], + [ + 11.355091, + 48.229572501 + ], + [ + 11.3537489, + 48.230365001 + ], + [ + 11.353221, + 48.230676801 + ], + [ + 11.3521431, + 48.231329201 + ], + [ + 11.3488281, + 48.233301101 + ], + [ + 11.3479814, + 48.233795601 + ], + [ + 11.3470118, + 48.234322801 + ], + [ + 11.3456845, + 48.235136401 + ], + [ + 11.3446922, + 48.235668401 + ], + [ + 11.3437104, + 48.236209201 + ], + [ + 11.3430057, + 48.236600001 + ], + [ + 11.3409188, + 48.237712001 + ], + [ + 11.3364878, + 48.239967301 + ], + [ + 11.331198, + 48.242514701 + ], + [ + 11.3141864, + 48.250851301 + ], + [ + 11.3102791, + 48.252753801 + ], + [ + 11.3059935, + 48.254813901 + ], + [ + 11.3049107, + 48.255348701 + ], + [ + 11.3039583, + 48.255876401 + ], + [ + 11.3031077, + 48.256386201 + ], + [ + 11.3025702, + 48.256736601 + ], + [ + 11.3019054, + 48.257214901 + ], + [ + 11.3012366, + 48.257697101 + ], + [ + 11.3004952, + 48.258293901 + ], + [ + 11.2997517, + 48.258951501 + ], + [ + 11.2986502, + 48.260019801 + ], + [ + 11.2971376, + 48.261445101 + ], + [ + 11.2964358, + 48.262125801 + ], + [ + 11.2875035, + 48.270686501 + ], + [ + 11.2872212, + 48.270941201 + ], + [ + 11.2867756, + 48.271365001 + ], + [ + 11.2856678, + 48.272401801 + ], + [ + 11.2852123, + 48.272794501 + ], + [ + 11.2846369, + 48.273258001 + ], + [ + 11.2837326, + 48.273942101 + ], + [ + 11.2827892, + 48.274588101 + ], + [ + 11.2817448, + 48.275233001 + ], + [ + 11.2807406, + 48.275782001 + ], + [ + 11.2796385, + 48.276339801 + ], + [ + 11.275992, + 48.278039901 + ], + [ + 11.274208, + 48.278879001 + ], + [ + 11.2713689, + 48.280201501 + ], + [ + 11.2689517, + 48.281347001 + ], + [ + 11.26687, + 48.282323001 + ], + [ + 11.2656745, + 48.282893001 + ], + [ + 11.264606, + 48.283379001 + ], + [ + 11.2630834, + 48.284081801 + ], + [ + 11.2611834, + 48.284970001 + ], + [ + 11.2587207, + 48.286090301 + ], + [ + 11.257603, + 48.286577301 + ], + [ + 11.2561764, + 48.287176401 + ], + [ + 11.2558719, + 48.287303001 + ], + [ + 11.254827, + 48.287718701 + ], + [ + 11.2534432, + 48.288240301 + ], + [ + 11.2512267, + 48.289037401 + ], + [ + 11.2489054, + 48.289820101 + ], + [ + 11.2455604, + 48.290839001 + ], + [ + 11.2392581, + 48.292712001 + ], + [ + 11.2359074, + 48.293707601 + ], + [ + 11.2339219, + 48.294292101 + ], + [ + 11.2321976, + 48.294795601 + ], + [ + 11.2306553, + 48.295279301 + ], + [ + 11.2304116, + 48.295355701 + ], + [ + 11.2299598, + 48.295503001 + ], + [ + 11.228741, + 48.295900401 + ], + [ + 11.2274247, + 48.296351401 + ], + [ + 11.225701, + 48.297007201 + ], + [ + 11.223645, + 48.297864801 + ], + [ + 11.2232542, + 48.298050801 + ], + [ + 11.2214487, + 48.298910301 + ], + [ + 11.2203578, + 48.299456101 + ], + [ + 11.219314, + 48.300015901 + ], + [ + 11.2176958, + 48.300952601 + ], + [ + 11.2161259, + 48.301927101 + ], + [ + 11.2135583, + 48.303635501 + ], + [ + 11.2113632, + 48.305143201 + ], + [ + 11.2092555, + 48.306587001 + ], + [ + 11.2074832, + 48.307802701 + ], + [ + 11.2063773, + 48.308555201 + ], + [ + 11.2053016, + 48.309297701 + ], + [ + 11.2032163, + 48.310718701 + ], + [ + 11.200074, + 48.312934501 + ], + [ + 11.1985291, + 48.313941801 + ], + [ + 11.1978647, + 48.314358501 + ], + [ + 11.1975496, + 48.314556101 + ], + [ + 11.1970024, + 48.314895001 + ], + [ + 11.1957784, + 48.315621501 + ], + [ + 11.1943966, + 48.316417901 + ], + [ + 11.1937689, + 48.316771701 + ], + [ + 11.1912164, + 48.318063701 + ], + [ + 11.188164, + 48.319533701 + ], + [ + 11.1862426, + 48.320435101 + ], + [ + 11.1813419, + 48.322697901 + ], + [ + 11.1811627, + 48.322783301 + ], + [ + 11.180999, + 48.322860601 + ], + [ + 11.1766934, + 48.324897801 + ], + [ + 11.174612, + 48.325869201 + ], + [ + 11.1728341, + 48.326742401 + ], + [ + 11.1707828, + 48.327834201 + ], + [ + 11.1689125, + 48.328853401 + ], + [ + 11.1678804, + 48.329490001 + ], + [ + 11.1668945, + 48.330165201 + ], + [ + 11.1662035, + 48.330664901 + ], + [ + 11.1659772, + 48.330828601 + ], + [ + 11.1651565, + 48.331459801 + ], + [ + 11.1645664, + 48.331962701 + ], + [ + 11.1639214, + 48.332486901 + ], + [ + 11.1630074, + 48.333358401 + ], + [ + 11.1616482, + 48.334858501 + ], + [ + 11.159717, + 48.336844801 + ], + [ + 11.1588591, + 48.337671201 + ], + [ + 11.1580566, + 48.338362101 + ], + [ + 11.1571314, + 48.339093601 + ], + [ + 11.1563218, + 48.339677501 + ], + [ + 11.1559195, + 48.339956201 + ], + [ + 11.155115, + 48.340468201 + ], + [ + 11.1546115, + 48.340773901 + ], + [ + 11.1539991, + 48.341109601 + ], + [ + 11.1518332, + 48.342195601 + ], + [ + 11.1501817, + 48.342967301 + ], + [ + 11.1474588, + 48.344228501 + ], + [ + 11.1466129, + 48.344621901 + ], + [ + 11.145595, + 48.345093301 + ], + [ + 11.1444075, + 48.345649501 + ], + [ + 11.1426562, + 48.346519901 + ], + [ + 11.1411621, + 48.347266301 + ], + [ + 11.1402067, + 48.347750301 + ], + [ + 11.1391655, + 48.348320101 + ], + [ + 11.1380806, + 48.349027101 + ], + [ + 11.1377168, + 48.349281601 + ], + [ + 11.1373664, + 48.349539101 + ], + [ + 11.1364468, + 48.350246201 + ], + [ + 11.135983, + 48.350608301 + ], + [ + 11.1347987, + 48.351677701 + ], + [ + 11.1340209, + 48.352489801 + ], + [ + 11.1326199, + 48.354139901 + ], + [ + 11.1312607, + 48.355838801 + ], + [ + 11.1311642, + 48.355947601 + ], + [ + 11.129706, + 48.357747401 + ], + [ + 11.1290131, + 48.358497601 + ], + [ + 11.1279293, + 48.359612301 + ], + [ + 11.1271053, + 48.360391701 + ], + [ + 11.1262189, + 48.361139601 + ], + [ + 11.1252906, + 48.361841001 + ], + [ + 11.1244178, + 48.362487601 + ], + [ + 11.1236323, + 48.362981401 + ], + [ + 11.1227721, + 48.363484601 + ], + [ + 11.1218244, + 48.363985201 + ], + [ + 11.1209283, + 48.364428301 + ], + [ + 11.1200056, + 48.364862301 + ], + [ + 11.1187375, + 48.365387201 + ], + [ + 11.1173751, + 48.365891501 + ], + [ + 11.1158498, + 48.366380701 + ], + [ + 11.1144172, + 48.366788101 + ], + [ + 11.1126321, + 48.367219401 + ], + [ + 11.1112676, + 48.367549301 + ], + [ + 11.1095079, + 48.367971101 + ], + [ + 11.1083445, + 48.368274401 + ], + [ + 11.1068928, + 48.368691601 + ], + [ + 11.1055419, + 48.369189701 + ], + [ + 11.1044203, + 48.369626901 + ], + [ + 11.1034772, + 48.370032301 + ], + [ + 11.1026271, + 48.370450601 + ], + [ + 11.1016718, + 48.370969301 + ], + [ + 11.1006721, + 48.371533301 + ], + [ + 11.0977051, + 48.373363701 + ], + [ + 11.0950334, + 48.375071501 + ], + [ + 11.0944696, + 48.375431901 + ], + [ + 11.0934964, + 48.376054001 + ], + [ + 11.0898859, + 48.378380801 + ], + [ + 11.0874477, + 48.379865001 + ], + [ + 11.085736, + 48.380978101 + ], + [ + 11.0839971, + 48.382132401 + ], + [ + 11.081153, + 48.384070801 + ], + [ + 11.0793012, + 48.385337701 + ], + [ + 11.0781762, + 48.386099101 + ], + [ + 11.0770793, + 48.386846501 + ], + [ + 11.0753176, + 48.388043801 + ], + [ + 11.0748745, + 48.388335401 + ], + [ + 11.0731154, + 48.389569701 + ], + [ + 11.0718007, + 48.390427601 + ], + [ + 11.0697936, + 48.391690701 + ], + [ + 11.0687695, + 48.392285601 + ], + [ + 11.0681792, + 48.392608501 + ], + [ + 11.0676619, + 48.392874401 + ], + [ + 11.0670655, + 48.393176101 + ], + [ + 11.0664464, + 48.393468301 + ], + [ + 11.0655468, + 48.393869401 + ], + [ + 11.0643928, + 48.394333401 + ], + [ + 11.0628326, + 48.394874801 + ], + [ + 11.0617956, + 48.395194401 + ], + [ + 11.0610862, + 48.395393401 + ], + [ + 11.0605205, + 48.395536001 + ], + [ + 11.0599626, + 48.395670501 + ], + [ + 11.0588549, + 48.395907201 + ], + [ + 11.0578196, + 48.396099001 + ], + [ + 11.0570268, + 48.396234101 + ], + [ + 11.0563096, + 48.396336901 + ], + [ + 11.0556046, + 48.396421201 + ], + [ + 11.0547133, + 48.396513201 + ], + [ + 11.0539771, + 48.396576101 + ], + [ + 11.05334, + 48.396614301 + ], + [ + 11.0524394, + 48.396652001 + ], + [ + 11.0516239, + 48.396678701 + ], + [ + 11.0509082, + 48.396682701 + ], + [ + 11.0499416, + 48.396666901 + ], + [ + 11.0490084, + 48.396638401 + ], + [ + 11.0477762, + 48.396578501 + ], + [ + 11.0388669, + 48.396196801 + ], + [ + 11.0375392, + 48.396135501 + ], + [ + 11.0362072, + 48.396077001 + ], + [ + 11.0352007, + 48.396046601 + ], + [ + 11.0346901, + 48.396040701 + ], + [ + 11.034186, + 48.396039201 + ], + [ + 11.0331688, + 48.396058401 + ], + [ + 11.0326553, + 48.396078801 + ], + [ + 11.032131, + 48.396109101 + ], + [ + 11.0316198, + 48.396141001 + ], + [ + 11.0311172, + 48.396181501 + ], + [ + 11.0304515, + 48.396243501 + ], + [ + 11.0297729, + 48.396317001 + ], + [ + 11.028708, + 48.396455401 + ], + [ + 11.0274786, + 48.396652601 + ], + [ + 11.0268553, + 48.396769901 + ], + [ + 11.0262191, + 48.396902901 + ], + [ + 11.0256691, + 48.397023801 + ], + [ + 11.025119, + 48.397157601 + ], + [ + 11.0241148, + 48.397419701 + ], + [ + 11.0208537, + 48.398367201 + ], + [ + 11.0203113, + 48.398521601 + ], + [ + 11.0197281, + 48.398671801 + ], + [ + 11.0191301, + 48.398830801 + ], + [ + 11.0184891, + 48.398984001 + ], + [ + 11.0174191, + 48.399200501 + ], + [ + 11.017019, + 48.399283301 + ], + [ + 11.0166188, + 48.399354601 + ], + [ + 11.015876, + 48.399473301 + ], + [ + 11.0149619, + 48.399601301 + ], + [ + 11.0145323, + 48.399660901 + ], + [ + 11.0141113, + 48.399709001 + ], + [ + 11.0131655, + 48.399788601 + ], + [ + 11.012054, + 48.399882101 + ], + [ + 11.009879, + 48.400028801 + ], + [ + 11.0053951, + 48.400337401 + ], + [ + 10.9996359, + 48.400729201 + ], + [ + 10.9970005, + 48.400900001 + ], + [ + 10.9924856, + 48.401211601 + ], + [ + 10.9869952, + 48.401573601 + ], + [ + 10.9852709, + 48.401674101 + ], + [ + 10.9838774, + 48.401734501 + ], + [ + 10.9825437, + 48.401751501 + ], + [ + 10.9808635, + 48.401737601 + ], + [ + 10.9774401, + 48.401665201 + ], + [ + 10.9740677, + 48.401594801 + ], + [ + 10.972353, + 48.401633301 + ], + [ + 10.9713494, + 48.401674401 + ], + [ + 10.9701411, + 48.401755001 + ], + [ + 10.9689346, + 48.401875801 + ], + [ + 10.9677511, + 48.402032601 + ], + [ + 10.9664672, + 48.402234101 + ], + [ + 10.9653731, + 48.402411801 + ], + [ + 10.9632437, + 48.402787701 + ], + [ + 10.9617331, + 48.403044101 + ], + [ + 10.9597418, + 48.403368901 + ], + [ + 10.9564457, + 48.403903101 + ], + [ + 10.9544632, + 48.404240701 + ], + [ + 10.953754, + 48.404353001 + ], + [ + 10.9510785, + 48.404800601 + ], + [ + 10.9497948, + 48.405010001 + ], + [ + 10.9482169, + 48.405275501 + ], + [ + 10.9474125, + 48.405413601 + ], + [ + 10.9444897, + 48.405879901 + ], + [ + 10.9422963, + 48.406252101 + ], + [ + 10.9383333, + 48.406911101 + ], + [ + 10.9361234, + 48.407273801 + ], + [ + 10.9339881, + 48.407651601 + ], + [ + 10.9307825, + 48.408160801 + ], + [ + 10.9287196, + 48.408506601 + ], + [ + 10.9268308, + 48.408820801 + ], + [ + 10.9259348, + 48.408970401 + ], + [ + 10.9226226, + 48.409519001 + ], + [ + 10.9196259, + 48.410012301 + ], + [ + 10.9168351, + 48.410475401 + ], + [ + 10.9156465, + 48.410672701 + ], + [ + 10.914887, + 48.410796301 + ], + [ + 10.9132456, + 48.411062401 + ], + [ + 10.9119887, + 48.411278101 + ], + [ + 10.9108626, + 48.411460301 + ], + [ + 10.9056057, + 48.412330001 + ], + [ + 10.9039443, + 48.412607201 + ], + [ + 10.9014498, + 48.413022401 + ], + [ + 10.89979, + 48.413264801 + ], + [ + 10.8981721, + 48.413484301 + ], + [ + 10.8968267, + 48.413649601 + ], + [ + 10.8954187, + 48.413801301 + ], + [ + 10.8937665, + 48.413957001 + ], + [ + 10.89245, + 48.414071501 + ], + [ + 10.8897666, + 48.414233901 + ], + [ + 10.8882426, + 48.414297401 + ], + [ + 10.8872407, + 48.414332701 + ], + [ + 10.8851907, + 48.414380101 + ], + [ + 10.8841503, + 48.414402501 + ], + [ + 10.8814477, + 48.414470501 + ], + [ + 10.8812555, + 48.414475301 + ], + [ + 10.8783046, + 48.414542001 + ], + [ + 10.8771652, + 48.414567101 + ], + [ + 10.8764333, + 48.414584701 + ], + [ + 10.8760484, + 48.414594301 + ], + [ + 10.8754584, + 48.414609101 + ], + [ + 10.8753477, + 48.414611901 + ], + [ + 10.8736939, + 48.414661301 + ], + [ + 10.8720695, + 48.414695601 + ], + [ + 10.8694455, + 48.414740301 + ], + [ + 10.8683474, + 48.414772801 + ], + [ + 10.8672682, + 48.414822801 + ], + [ + 10.8656904, + 48.414909601 + ], + [ + 10.8637097, + 48.415076401 + ], + [ + 10.863515577, + 48.415093708 + ] + ] + } + }, + { + "identifier": "2025-041538--vi-bs.2025-08-27_00-00-00-000_003.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.821654019785484,11.977113970798099,47.82169205653686,11.981611425193025", + "point": "47.821654019785484,11.977113970798099", + "startLcPosition": "150", + "impact": { + "lower": "Im Moos", + "upper": "Eulenauer Filz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Salzburg", + "title": "A8 | Eulenauer Filz - Im Moos", + "startTimestamp": "2025-08-27T00:00:00+02:00", + "coordinate": { + "lat": 47.821654019785484, + "long": 11.977113970798099 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.08.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A8: M\u00fcnchen -> Salzburg, zwischen Eulenauer Filz und 1.4 km vor Im Moos", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 11 m", + "", + "A8 Parkplatz Eulenauer Filz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.977113971, + 47.82165402 + ], + [ + 11.9775999, + 47.821556701 + ], + [ + 11.9780743, + 47.821503201 + ], + [ + 11.9786559, + 47.821427601 + ], + [ + 11.9808278, + 47.821476001 + ], + [ + 11.9812982, + 47.821617601 + ], + [ + 11.9814046, + 47.821635001 + ], + [ + 11.981611425, + 47.821692057 + ] + ] + } + }, + { + "identifier": "2025-041540--vi-bs.2025-08-27_00-00-00-000_004.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.82151750466502,12.000078373367964,47.82179424665691,11.995721112128807", + "point": "47.82151750466502,12.000078373367964", + "startLcPosition": "151", + "impact": { + "lower": "Eulenauer Filz", + "upper": "Im Moos", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Salzburg -> M\u00fcnchen", + "title": "A8 | Im Moos - Eulenauer Filz", + "startTimestamp": "2025-08-27T00:00:00+02:00", + "coordinate": { + "lat": 47.82151750466502, + "long": 12.000078373367964 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.08.25 um 00:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A8: Salzburg -> M\u00fcnchen, zwischen Im Moos und 1.4 km vor Eulenauer Filz", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 11 m", + "", + "A8 Parkplatz Im Moos" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.000078373, + 47.821517505 + ], + [ + 11.999974, + 47.821539001 + ], + [ + 11.9999263, + 47.821552901 + ], + [ + 11.9994961, + 47.821669701 + ], + [ + 11.9988, + 47.821869301 + ], + [ + 11.997002, + 47.821984801 + ], + [ + 11.9966862, + 47.821991001 + ], + [ + 11.9959633, + 47.821834701 + ], + [ + 11.9957979, + 47.821801501 + ], + [ + 11.995721112, + 47.821794247 + ] + ] + } + }, + { + "identifier": "2024-046866--vi-bs.2026-02-27_06-00-00-000.devi-zus.2025-05-26_06-00-00-000.f.de109", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.80272281074104,12.304875105603388,47.8058059726297,12.330561555185993", + "point": "47.80272281074104,12.304875105603388", + "startLcPosition": "165", + "impact": { + "lower": "Bernau am Chiemsee", + "upper": "Prien", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Salzburg", + "title": "A8 | Prien - Bernau am Chiemsee", + "startTimestamp": "2026-02-27T06:00:00+01:00", + "coordinate": { + "lat": 47.80272281074104, + "long": 12.304875105603388 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.02.26 um 06:00 Uhr", + "Ende: 07.05.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 06.11.26)", + "", + "A8: M\u00fcnchen -> Salzburg, zwischen 0.3 km hinter Prien und 2.7 km vor AS Bernau am Chiemsee", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 7.2 m", + "", + "A8 Ost Ersatzneubau BW 119" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.304875106, + 47.802722811 + ], + [ + 12.3061954, + 47.802398501 + ], + [ + 12.3068719, + 47.802241801 + ], + [ + 12.3073238, + 47.802154101 + ], + [ + 12.3077098, + 47.802090001 + ], + [ + 12.3082043, + 47.802026901 + ], + [ + 12.3086283, + 47.801977701 + ], + [ + 12.3091346, + 47.801937201 + ], + [ + 12.309566, + 47.801912601 + ], + [ + 12.3100884, + 47.801895801 + ], + [ + 12.3105931, + 47.801893901 + ], + [ + 12.3110436, + 47.801902701 + ], + [ + 12.3115088, + 47.801927401 + ], + [ + 12.3118844, + 47.801953001 + ], + [ + 12.3123408, + 47.801998401 + ], + [ + 12.3128727, + 47.802063401 + ], + [ + 12.3135167, + 47.802170201 + ], + [ + 12.3141422, + 47.802298301 + ], + [ + 12.3151676, + 47.802507701 + ], + [ + 12.3210303, + 47.803765901 + ], + [ + 12.3266041, + 47.804959201 + ], + [ + 12.3270531, + 47.805050801 + ], + [ + 12.328103, + 47.805285801 + ], + [ + 12.3283747, + 47.805336701 + ], + [ + 12.330561555, + 47.805805973 + ] + ] + } + }, + { + "identifier": "2024-046866--vi-bs.2026-02-27_06-00-00-000.devi-zus.2025-05-26_06-00-00-000.f.de111", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.80591740260442,12.330508977013254,47.80282467445366,12.304929763811971", + "point": "47.80591740260442,12.330508977013254", + "startLcPosition": "166", + "impact": { + "lower": "Prien", + "upper": "Bernau am Chiemsee", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Salzburg -> M\u00fcnchen", + "title": "A8 | Bernau am Chiemsee - Prien", + "startTimestamp": "2026-02-27T06:00:00+01:00", + "coordinate": { + "lat": 47.80591740260442, + "long": 12.330508977013254 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.02.26 um 06:00 Uhr", + "Ende: 07.05.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 06.11.26)", + "", + "A8: Salzburg -> M\u00fcnchen, zwischen 2.7 km hinter AS Bernau am Chiemsee und 0.3 km vor Prien", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 7.3 m", + "", + "A8 Ost Ersatzneubau BW 119" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.330508977, + 47.805917403 + ], + [ + 12.3282924, + 47.805443601 + ], + [ + 12.3280166, + 47.805384001 + ], + [ + 12.3270848, + 47.805182301 + ], + [ + 12.3266465, + 47.805091201 + ], + [ + 12.3210191, + 47.803886301 + ], + [ + 12.3156069, + 47.802723101 + ], + [ + 12.3141117, + 47.802405901 + ], + [ + 12.313471, + 47.802275201 + ], + [ + 12.3128435, + 47.802174301 + ], + [ + 12.3119901, + 47.802080201 + ], + [ + 12.3113796, + 47.802036801 + ], + [ + 12.31096, + 47.802013101 + ], + [ + 12.310376, + 47.802004301 + ], + [ + 12.3098389, + 47.802009201 + ], + [ + 12.309274, + 47.802039701 + ], + [ + 12.3087369, + 47.802081101 + ], + [ + 12.3081955, + 47.802146201 + ], + [ + 12.3076922, + 47.802215201 + ], + [ + 12.3071683, + 47.802302901 + ], + [ + 12.3066738, + 47.802410301 + ], + [ + 12.3061059, + 47.802540401 + ], + [ + 12.304929764, + 47.802824674 + ] + ] + } + }, + { + "identifier": "2023-000999--vi-bs.2026-03-21_05-00-00-000.devi-zus.2025-04-28_00-00-00-000_002.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.83494410760432,12.501317186912562,47.83033054080286,12.521552267918638", + "point": "47.83494410760432,12.501317186912562", + "startLcPosition": "170", + "impact": { + "lower": "Grabenst\u00e4tt", + "upper": "\u00dcbersee", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Salzburg", + "title": "A8 | \u00dcbersee - Grabenst\u00e4tt", + "startTimestamp": "2026-03-21T05:00:00+01:00", + "coordinate": { + "lat": 47.83494410760432, + "long": 12.501317186912562 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.03.26 um 05:00 Uhr", + "Ende: 30.10.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.26)", + "", + "A8: M\u00fcnchen -> Salzburg, zwischen 0.9 km hinter AS \u00dcbersee und 0.1 km vor AS Grabenst\u00e4tt", + "", + "L\u00e4nge: 1.6 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A8 Ost BW 148 Tiroler Ache" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.501317187, + 47.834944108 + ], + [ + 12.5024567, + 47.834666701 + ], + [ + 12.5076831, + 47.833368901 + ], + [ + 12.5077986, + 47.833340201 + ], + [ + 12.5101177, + 47.832765501 + ], + [ + 12.5147875, + 47.831617201 + ], + [ + 12.5155543, + 47.831428101 + ], + [ + 12.5161948, + 47.831277201 + ], + [ + 12.5166673, + 47.831171901 + ], + [ + 12.5172744, + 47.831040001 + ], + [ + 12.5179349, + 47.830906201 + ], + [ + 12.5181978, + 47.830858701 + ], + [ + 12.5196358, + 47.830629901 + ], + [ + 12.5203439, + 47.830518501 + ], + [ + 12.5211632, + 47.830392201 + ], + [ + 12.521552268, + 47.830330541 + ] + ] + } + }, + { + "identifier": "2023-000999--vi-bs.2026-03-21_05-00-00-000.devi-zus.2025-04-28_00-00-00-000_002.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.83043773444799,12.521590213670516,47.835062347349464,12.501381095217958", + "point": "47.83043773444799,12.521590213670516", + "startLcPosition": "171", + "impact": { + "lower": "\u00dcbersee", + "upper": "Grabenst\u00e4tt", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Salzburg -> M\u00fcnchen", + "title": "A8 | Grabenst\u00e4tt - \u00dcbersee", + "startTimestamp": "2026-03-21T05:00:00+01:00", + "coordinate": { + "lat": 47.83043773444799, + "long": 12.521590213670516 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.03.26 um 05:00 Uhr", + "Ende: 30.10.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.26)", + "", + "A8: Salzburg -> M\u00fcnchen, zwischen 0.1 km hinter AS Grabenst\u00e4tt und 0.9 km vor AS \u00dcbersee", + "", + "L\u00e4nge: 1.6 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A8 Ost BW 148 Tiroler Ache" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.521590214, + 47.830437734 + ], + [ + 12.5209092, + 47.830548401 + ], + [ + 12.5203758, + 47.830627001 + ], + [ + 12.5196655, + 47.830739601 + ], + [ + 12.5184003, + 47.830941101 + ], + [ + 12.5179679, + 47.831019301 + ], + [ + 12.5172909, + 47.831149301 + ], + [ + 12.5167053, + 47.831276301 + ], + [ + 12.5162688, + 47.831376801 + ], + [ + 12.5156132, + 47.831533001 + ], + [ + 12.5148453, + 47.831722801 + ], + [ + 12.5101919, + 47.832878501 + ], + [ + 12.5078265, + 47.833472501 + ], + [ + 12.5077354, + 47.833495001 + ], + [ + 12.501381095, + 47.835062347 + ] + ] + } + }, + { + "identifier": "2024-011846--vi-bs.2025-12-01_05-00-00-000.devi-zus.2024-09-09_21-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.82654189336001,12.760178088037813,47.82681903251109,12.764160644338745", + "point": "47.82654189336001,12.760178088037813", + "startLcPosition": "178", + "impact": { + "lower": "Fuchssteig", + "upper": "Neukirchen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Salzburg", + "title": "A8 | Neukirchen - Fuchssteig", + "startTimestamp": "2025-12-01T05:00:00+01:00", + "coordinate": { + "lat": 47.82654189336001, + "long": 12.760178088037813 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.12.25 um 05:00 Uhr", + "Ende: 31.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "A8: M\u00fcnchen -> Salzburg, zwischen 1.5 km hinter AS Neukirchen und 1.4 km vor Fuchssteig", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 Ost Lagerinstandsetzung Atzelbachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.760178088, + 47.826541893 + ], + [ + 12.7609621, + 47.826599301 + ], + [ + 12.7618496, + 47.826664301 + ], + [ + 12.764160644, + 47.826819033 + ] + ] + } + }, + { + "identifier": "2024-011846--vi-bs.2025-12-01_05-00-00-000.devi-zus.2024-09-09_21-00-00-000.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.826916583352,12.764146278576437,47.82664311213921,12.760161970241162", + "point": "47.826916583352,12.764146278576437", + "startLcPosition": "179", + "impact": { + "lower": "Neukirchen", + "upper": "Fuchssteig", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Salzburg -> M\u00fcnchen", + "title": "A8 | Fuchssteig - Neukirchen", + "startTimestamp": "2025-12-01T05:00:00+01:00", + "coordinate": { + "lat": 47.826916583352, + "long": 12.764146278576437 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.12.25 um 05:00 Uhr", + "Ende: 31.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "A8: Salzburg -> M\u00fcnchen, zwischen 1.4 km hinter Fuchssteig und 1.5 km vor AS Neukirchen", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 Ost Lagerinstandsetzung Atzelbachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.764146279, + 47.826916583 + ], + [ + 12.7618286, + 47.826762101 + ], + [ + 12.7609349, + 47.826698301 + ], + [ + 12.76016197, + 47.826643112 + ] + ] + } + }, + { + "identifier": "2024-046722--vi-bs.2026-03-16_06-00-00-000.devi-zus.2025-09-15_06-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.766010167220244,12.90772483941626,47.76602119261484,12.910418091286715", + "point": "47.766010167220244,12.90772483941626", + "startLcPosition": "185", + "impact": { + "lower": "Schwarzbach", + "upper": "Bad Reichenhall", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Salzburg", + "title": "A8 | Bad Reichenhall - Schwarzbach", + "startTimestamp": "2026-03-16T06:00:00+01:00", + "coordinate": { + "lat": 47.766010167220244, + "long": 12.90772483941626 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 06:00 Uhr", + "Ende: 08.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.05.26)", + "", + "A8: M\u00fcnchen -> Salzburg, zwischen 0.2 km hinter AS Bad Reichenhall und 2.3 km vor Schwarzbach", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A8 Ost Sickerschacht bei Piding" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.907724839, + 47.766010167 + ], + [ + 12.9080429, + 47.765984101 + ], + [ + 12.9088568, + 47.765956101 + ], + [ + 12.9097486, + 47.765973501 + ], + [ + 12.9102181, + 47.766003901 + ], + [ + 12.910418091, + 47.766021193 + ] + ] + } + }, + { + "identifier": "2026-016048--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.73308761917745,9.046578255962158,48.76880586445381,9.03014255251315", + "point": "48.73308761917745,9.046578255962158", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 207.90 --> km 212.25", + "title": "A8 Arbeiten an Verkehrszeichenbr\u00fccke", + "coordinate": { + "lat": 48.73308761917745, + "long": 9.046578255962158 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A8: km 207.90 --> km 212.25", + "", + "L\u00e4nge: 4.33 km | Maximale Durchfahrtsbreite: 14 m", + "", + "A8 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.046578256, + 48.733087619 + ], + [ + 9.0460504, + 48.733339101 + ], + [ + 9.0440748, + 48.734283301 + ], + [ + 9.0432139, + 48.734712301 + ], + [ + 9.0423623, + 48.735161601 + ], + [ + 9.0418882, + 48.735429201 + ], + [ + 9.0413219, + 48.735764901 + ], + [ + 9.0409869, + 48.735974601 + ], + [ + 9.0407159, + 48.736161501 + ], + [ + 9.0404592, + 48.736338501 + ], + [ + 9.039963, + 48.736694901 + ], + [ + 9.039499, + 48.737054901 + ], + [ + 9.0390538, + 48.737425501 + ], + [ + 9.038626, + 48.737806701 + ], + [ + 9.0384708, + 48.737959201 + ], + [ + 9.038348, + 48.738079801 + ], + [ + 9.0381002, + 48.738323301 + ], + [ + 9.0377241, + 48.738722601 + ], + [ + 9.0373573, + 48.739146701 + ], + [ + 9.037026, + 48.739564101 + ], + [ + 9.0369301, + 48.739695901 + ], + [ + 9.0367887, + 48.739871901 + ], + [ + 9.03667, + 48.740040401 + ], + [ + 9.0365761, + 48.740180601 + ], + [ + 9.0364795, + 48.740326501 + ], + [ + 9.036385, + 48.740477701 + ], + [ + 9.0362951, + 48.740622801 + ], + [ + 9.03621, + 48.740768301 + ], + [ + 9.0361228, + 48.740922101 + ], + [ + 9.0360363, + 48.741078701 + ], + [ + 9.0359558, + 48.741229901 + ], + [ + 9.0358747, + 48.741391701 + ], + [ + 9.0358023, + 48.741539501 + ], + [ + 9.0357325, + 48.741688101 + ], + [ + 9.0356601, + 48.741849901 + ], + [ + 9.0355944, + 48.742003801 + ], + [ + 9.0355307, + 48.742158601 + ], + [ + 9.0354676, + 48.742321701 + ], + [ + 9.0354097, + 48.742479101 + ], + [ + 9.035353, + 48.742639201 + ], + [ + 9.035302, + 48.742795801 + ], + [ + 9.0352558, + 48.742945301 + ], + [ + 9.0352082, + 48.743107901 + ], + [ + 9.0351626, + 48.743268901 + ], + [ + 9.035123, + 48.743429801 + ], + [ + 9.0350854, + 48.743581101 + ], + [ + 9.0350479, + 48.743749101 + ], + [ + 9.035013, + 48.743913601 + ], + [ + 9.0349765, + 48.744110201 + ], + [ + 9.0349534, + 48.744226701 + ], + [ + 9.0349252, + 48.744387201 + ], + [ + 9.0348977, + 48.744552501 + ], + [ + 9.0348662, + 48.744811701 + ], + [ + 9.0347522, + 48.745742001 + ], + [ + 9.0347179, + 48.746012701 + ], + [ + 9.0346415, + 48.746695701 + ], + [ + 9.0345407, + 48.747595701 + ], + [ + 9.0343966, + 48.748884401 + ], + [ + 9.0342603, + 48.750028501 + ], + [ + 9.0339995, + 48.752447501 + ], + [ + 9.0339495, + 48.752904201 + ], + [ + 9.0338379, + 48.753924801 + ], + [ + 9.0336681, + 48.755366401 + ], + [ + 9.0334713, + 48.757155601 + ], + [ + 9.0334435, + 48.757408701 + ], + [ + 9.0334022, + 48.757779701 + ], + [ + 9.033323, + 48.758591801 + ], + [ + 9.0332325, + 48.759415101 + ], + [ + 9.0331605, + 48.760058001 + ], + [ + 9.0330046, + 48.761289201 + ], + [ + 9.0329418, + 48.761710401 + ], + [ + 9.0329294, + 48.761793501 + ], + [ + 9.0328677, + 48.762122201 + ], + [ + 9.0327963, + 48.762431901 + ], + [ + 9.0327139, + 48.762760401 + ], + [ + 9.0326138, + 48.763119501 + ], + [ + 9.0325573, + 48.763331601 + ], + [ + 9.0323725, + 48.763815501 + ], + [ + 9.032155, + 48.764378501 + ], + [ + 9.0319065, + 48.764916301 + ], + [ + 9.0311244, + 48.766624501 + ], + [ + 9.0306303, + 48.767703801 + ], + [ + 9.0304189, + 48.768247901 + ], + [ + 9.030142553, + 48.768805864 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72469559771955,9.067140724906562,48.72238925826713,9.075339703353478", + "point": "48.72469559771955,9.067140724906562", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A8 Beseitigung Unfallfolgen", + "coordinate": { + "lat": 48.72469559771955, + "long": 9.067140724906562 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Von A81: Singen -> Stuttgart, 0.7 km vor AK Stuttgart, aus Richtung Sindelfingen-Ost; in A81: AK Stuttgart auf die A8 in Richtung Stuttgart; nach A8: Karlsruhe -> Stuttgart, 5.2 km vor AS Stuttgart-M\u00f6hringen, aus Richtung Stuttgart", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.067140725, + 48.724695598 + ], + [ + 9.0674805, + 48.724718001 + ], + [ + 9.0677453, + 48.724736401 + ], + [ + 9.068267, + 48.724772001 + ], + [ + 9.0687145, + 48.724805101 + ], + [ + 9.0689027, + 48.724820601 + ], + [ + 9.0690837, + 48.724838001 + ], + [ + 9.069291, + 48.724819801 + ], + [ + 9.0694801, + 48.724817401 + ], + [ + 9.0696906, + 48.724822901 + ], + [ + 9.0698861, + 48.724823401 + ], + [ + 9.0700185, + 48.724819801 + ], + [ + 9.0701423, + 48.724814201 + ], + [ + 9.0703149, + 48.724800301 + ], + [ + 9.0704638, + 48.724782901 + ], + [ + 9.07062, + 48.724757401 + ], + [ + 9.0707635, + 48.724730701 + ], + [ + 9.0709198, + 48.724693201 + ], + [ + 9.0710645, + 48.724653101 + ], + [ + 9.0712054, + 48.724607001 + ], + [ + 9.0713343, + 48.724562001 + ], + [ + 9.0714763, + 48.724504401 + ], + [ + 9.0715984, + 48.724451901 + ], + [ + 9.0717412, + 48.724388101 + ], + [ + 9.0718343, + 48.724343001 + ], + [ + 9.0720724, + 48.724224401 + ], + [ + 9.0723037, + 48.724105701 + ], + [ + 9.0726119, + 48.723937901 + ], + [ + 9.0728754, + 48.723790101 + ], + [ + 9.0734857, + 48.723434301 + ], + [ + 9.0739546, + 48.723266601 + ], + [ + 9.0742264, + 48.723097201 + ], + [ + 9.0746178, + 48.722843801 + ], + [ + 9.0746865, + 48.722801101 + ], + [ + 9.0753235, + 48.722399501 + ], + [ + 9.075339703, + 48.722389258 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72469559771955,9.067140724906562,48.72238925826713,9.075339703353478", + "point": "48.72469559771955,9.067140724906562", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A8 Beseitigung Unfallfolgen", + "coordinate": { + "lat": 48.72469559771955, + "long": 9.067140724906562 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Von A81: Singen -> Stuttgart, 0.7 km vor AK Stuttgart, aus Richtung Sindelfingen-Ost; in A81: AK Stuttgart auf die A8 in Richtung Stuttgart; nach A8: Karlsruhe -> Stuttgart, 5.2 km vor AS Stuttgart-M\u00f6hringen, aus Richtung Stuttgart", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.067140725, + 48.724695598 + ], + [ + 9.0674805, + 48.724718001 + ], + [ + 9.0677453, + 48.724736401 + ], + [ + 9.068267, + 48.724772001 + ], + [ + 9.0687145, + 48.724805101 + ], + [ + 9.0689027, + 48.724820601 + ], + [ + 9.0690837, + 48.724838001 + ], + [ + 9.069291, + 48.724819801 + ], + [ + 9.0694801, + 48.724817401 + ], + [ + 9.0696906, + 48.724822901 + ], + [ + 9.0698861, + 48.724823401 + ], + [ + 9.0700185, + 48.724819801 + ], + [ + 9.0701423, + 48.724814201 + ], + [ + 9.0703149, + 48.724800301 + ], + [ + 9.0704638, + 48.724782901 + ], + [ + 9.07062, + 48.724757401 + ], + [ + 9.0707635, + 48.724730701 + ], + [ + 9.0709198, + 48.724693201 + ], + [ + 9.0710645, + 48.724653101 + ], + [ + 9.0712054, + 48.724607001 + ], + [ + 9.0713343, + 48.724562001 + ], + [ + 9.0714763, + 48.724504401 + ], + [ + 9.0715984, + 48.724451901 + ], + [ + 9.0717412, + 48.724388101 + ], + [ + 9.0718343, + 48.724343001 + ], + [ + 9.0720724, + 48.724224401 + ], + [ + 9.0723037, + 48.724105701 + ], + [ + 9.0726119, + 48.723937901 + ], + [ + 9.0728754, + 48.723790101 + ], + [ + 9.0734857, + 48.723434301 + ], + [ + 9.0739546, + 48.723266601 + ], + [ + 9.0742264, + 48.723097201 + ], + [ + 9.0746178, + 48.722843801 + ], + [ + 9.0746865, + 48.722801101 + ], + [ + 9.0753235, + 48.722399501 + ], + [ + 9.075339703, + 48.722389258 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72469559771955,9.067140724906562,48.72238925826713,9.075339703353478", + "point": "48.72469559771955,9.067140724906562", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A8 Beseitigung Unfallfolgen", + "coordinate": { + "lat": 48.72469559771955, + "long": 9.067140724906562 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Von A81: Singen -> Stuttgart, 0.7 km vor AK Stuttgart, aus Richtung Sindelfingen-Ost; in A81: AK Stuttgart auf die A8 in Richtung Stuttgart; nach A8: Karlsruhe -> Stuttgart, 5.2 km vor AS Stuttgart-M\u00f6hringen, aus Richtung Stuttgart", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.067140725, + 48.724695598 + ], + [ + 9.0674805, + 48.724718001 + ], + [ + 9.0677453, + 48.724736401 + ], + [ + 9.068267, + 48.724772001 + ], + [ + 9.0687145, + 48.724805101 + ], + [ + 9.0689027, + 48.724820601 + ], + [ + 9.0690837, + 48.724838001 + ], + [ + 9.069291, + 48.724819801 + ], + [ + 9.0694801, + 48.724817401 + ], + [ + 9.0696906, + 48.724822901 + ], + [ + 9.0698861, + 48.724823401 + ], + [ + 9.0700185, + 48.724819801 + ], + [ + 9.0701423, + 48.724814201 + ], + [ + 9.0703149, + 48.724800301 + ], + [ + 9.0704638, + 48.724782901 + ], + [ + 9.07062, + 48.724757401 + ], + [ + 9.0707635, + 48.724730701 + ], + [ + 9.0709198, + 48.724693201 + ], + [ + 9.0710645, + 48.724653101 + ], + [ + 9.0712054, + 48.724607001 + ], + [ + 9.0713343, + 48.724562001 + ], + [ + 9.0714763, + 48.724504401 + ], + [ + 9.0715984, + 48.724451901 + ], + [ + 9.0717412, + 48.724388101 + ], + [ + 9.0718343, + 48.724343001 + ], + [ + 9.0720724, + 48.724224401 + ], + [ + 9.0723037, + 48.724105701 + ], + [ + 9.0726119, + 48.723937901 + ], + [ + 9.0728754, + 48.723790101 + ], + [ + 9.0734857, + 48.723434301 + ], + [ + 9.0739546, + 48.723266601 + ], + [ + 9.0742264, + 48.723097201 + ], + [ + 9.0746178, + 48.722843801 + ], + [ + 9.0746865, + 48.722801101 + ], + [ + 9.0753235, + 48.722399501 + ], + [ + 9.075339703, + 48.722389258 + ] + ] + } + }, + { + "identifier": "2025-037105--vi-bs.2026-01-01_00-00-00-000.devi-zus.2025-07-31_00-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.414661578486516,10.877071235533558,48.414672534940834,10.876937134383963", + "point": "48.414661578486516,10.877071235533558", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Augsburg-West (aus Richtung Augsburg)", + "title": "Aplus A8 West - KW 31 - Aufbau Verkehrszeichen AS A.-West Stg. - U2024_254", + "startTimestamp": "2026-01-01T00:00:00+01:00", + "coordinate": { + "lat": 48.414661578486516, + "long": 10.877071235533558 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.01.26 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "Abfahrt von der A8: AS Augsburg-West (aus Richtung Augsburg)", + "", + "L\u00e4nge: 0.01 km | Maximale Durchfahrtsbreite: 6 m", + "", + "Aplus A8 West - KW 31 - Aufbau Verkehrszeichen AS A.-West Stg. - U2024_254" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.877071236, + 48.414661578 + ], + [ + 10.876937134, + 48.414672535 + ] + ] + } + }, + { + "identifier": "2026-017545--vi-fbm.2026-04-10_10-30-00-000.devi-zus.2026-04-10_10-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.414383701487274,10.873184686769163,48.41430811729104,10.88130252273873", + "point": "48.414383701487274,10.873184686769163", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Augsburg-West (aus Richtung Neus\u00e4\u00df) nach A8", + "title": "Aplus A8 West - KW 15 - Notsanierung Schachtabdeckung AK A.-West B-Spur M\u00fcn.", + "coordinate": { + "lat": 48.414383701487274, + "long": 10.873184686769163 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 10:30 bis 20:00 Uhr", + "", + "Von Auffahrt auf die A8: AS Augsburg-West (aus Richtung Neus\u00e4\u00df) nach A8: Stuttgart -> M\u00fcnchen, zwischen AS Augsburg-West und 2.6 km vor Augsburg", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 3 m", + "", + "Aplus A8 West - KW 15 - Notsanierung Schachtabdeckung AK A.-West B-Spur M\u00fcn." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.873184687, + 48.414383701 + ], + [ + 10.8754374, + 48.414325301 + ], + [ + 10.8760313, + 48.414296301 + ], + [ + 10.8766615, + 48.414283501 + ], + [ + 10.8772413, + 48.414297401 + ], + [ + 10.8774995, + 48.414303301 + ], + [ + 10.8777396, + 48.414309201 + ], + [ + 10.8781599, + 48.414322301 + ], + [ + 10.8790431, + 48.414364101 + ], + [ + 10.881302523, + 48.414308117 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72627177109299,9.067686873123144,48.72622339332056,9.067333508560225", + "point": "48.72627177109299,9.067686873123144", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Stuttgart-Vaihingen (in Richtung Stuttgart)", + "title": "A8 Beseitigung Unfallfolgen", + "coordinate": { + "lat": 48.72627177109299, + "long": 9.067686873123144 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Abfahrt von der A831: AS Stuttgart-Vaihingen (in Richtung Stuttgart)", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.067686873, + 48.726271771 + ], + [ + 9.0672534, + 48.726076801 + ], + [ + 9.0669601, + 48.725946001 + ], + [ + 9.0666587, + 48.725811601 + ], + [ + 9.0665075, + 48.725746901 + ], + [ + 9.0663664, + 48.725689201 + ], + [ + 9.0662292, + 48.725640701 + ], + [ + 9.0661099, + 48.725604701 + ], + [ + 9.0659791, + 48.725571301 + ], + [ + 9.0658427, + 48.725539101 + ], + [ + 9.0656237, + 48.725496101 + ], + [ + 9.0654145, + 48.725471301 + ], + [ + 9.0652167, + 48.725463001 + ], + [ + 9.0650266, + 48.725473401 + ], + [ + 9.0648523, + 48.725507601 + ], + [ + 9.0647036, + 48.725557801 + ], + [ + 9.0646055, + 48.725607801 + ], + [ + 9.0645228, + 48.725668801 + ], + [ + 9.06445, + 48.725746301 + ], + [ + 9.0643941, + 48.725843701 + ], + [ + 9.0643813, + 48.725949101 + ], + [ + 9.0644096, + 48.726076401 + ], + [ + 9.0644706, + 48.726184901 + ], + [ + 9.0645346, + 48.726260901 + ], + [ + 9.0646093, + 48.726327001 + ], + [ + 9.064728, + 48.726398801 + ], + [ + 9.0648613, + 48.726451301 + ], + [ + 9.0650003, + 48.726485001 + ], + [ + 9.0651569, + 48.726508201 + ], + [ + 9.0653984, + 48.726514401 + ], + [ + 9.0656728, + 48.726530401 + ], + [ + 9.0659903, + 48.726475601 + ], + [ + 9.0662975, + 48.726424901 + ], + [ + 9.0665529, + 48.726380501 + ], + [ + 9.0667716, + 48.726339301 + ], + [ + 9.0670511, + 48.726282701 + ], + [ + 9.067333509, + 48.726223393 + ] + ] + } + }, + { + "identifier": "2026-017545--vi-bs.2026-04-10_10-30-00-000.devi-zus.2026-04-10_10-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.41429192836992,10.877013012018056,48.414276751194365,10.882770629901346", + "point": "48.41429192836992,10.877013012018056", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Augsburg-West (aus Richtung Neus\u00e4\u00df) nach A8", + "title": "Aplus A8 West - KW 15 - Notsanierung Schachtabdeckung AK A.-West B-Spur M\u00fcn.", + "coordinate": { + "lat": 48.41429192836992, + "long": 10.877013012018056 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 10:30 bis zum 11.04.26 12:00 Uhr.", + "", + "Von Auffahrt auf die A8: AS Augsburg-West (aus Richtung Neus\u00e4\u00df) nach A8: Stuttgart -> M\u00fcnchen, zwischen AS Augsburg-West und 2.4 km vor Augsburg", + "", + "L\u00e4nge: 0.43 km | Maximale Durchfahrtsbreite: 3 m", + "", + "Aplus A8 West - KW 15 - Notsanierung Schachtabdeckung AK A.-West B-Spur M\u00fcn." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.877013012, + 48.414291928 + ], + [ + 10.8772413, + 48.414297401 + ], + [ + 10.8774995, + 48.414303301 + ], + [ + 10.8777396, + 48.414309201 + ], + [ + 10.8781599, + 48.414322301 + ], + [ + 10.8790431, + 48.414364101 + ], + [ + 10.8815896, + 48.414301001 + ], + [ + 10.88277063, + 48.414276751 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72368792628326,9.073856786090484,48.72392716744146,9.06318154280551", + "point": "48.72368792628326,9.073856786090484", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Stuttgart (aus Richtung Stuttgart-M\u00f6hringen); \u00fcber die A831; nach A831 S", + "title": "A8 Beseitigung Unfallfolgen", + "coordinate": { + "lat": 48.72368792628326, + "long": 9.073856786090484 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Von Abfahrt von der A8: AK Stuttgart (aus Richtung Stuttgart-M\u00f6hringen); \u00fcber die A831; nach A831 S", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.073856786, + 48.723687926 + ], + [ + 9.0728243, + 48.724348801 + ], + [ + 9.0723473, + 48.724649601 + ], + [ + 9.0720819, + 48.724802201 + ], + [ + 9.0718731, + 48.724923401 + ], + [ + 9.0716544, + 48.725039801 + ], + [ + 9.0713771, + 48.725184801 + ], + [ + 9.0709401, + 48.725396901 + ], + [ + 9.0706796, + 48.725511201 + ], + [ + 9.0703912, + 48.725637701 + ], + [ + 9.0699239, + 48.725817301 + ], + [ + 9.0693395, + 48.726031301 + ], + [ + 9.0688619, + 48.726196101 + ], + [ + 9.0683705, + 48.726329101 + ], + [ + 9.0679036, + 48.726463201 + ], + [ + 9.0676086, + 48.726530701 + ], + [ + 9.0674217, + 48.726592701 + ], + [ + 9.0673009, + 48.726649101 + ], + [ + 9.0672024, + 48.726717601 + ], + [ + 9.0671299, + 48.726781401 + ], + [ + 9.0670909, + 48.726840201 + ], + [ + 9.0670519, + 48.726915001 + ], + [ + 9.0670296, + 48.726968901 + ], + [ + 9.0670217, + 48.727053401 + ], + [ + 9.0670296, + 48.727102801 + ], + [ + 9.0670572, + 48.727173001 + ], + [ + 9.0670953, + 48.727244901 + ], + [ + 9.067161, + 48.727316901 + ], + [ + 9.0672411, + 48.727379301 + ], + [ + 9.0673344, + 48.727426101 + ], + [ + 9.0674563, + 48.727480801 + ], + [ + 9.067631, + 48.727517501 + ], + [ + 9.0678744, + 48.727544501 + ], + [ + 9.0686456, + 48.727588601 + ], + [ + 9.0687701, + 48.727587401 + ], + [ + 9.0688798, + 48.727573901 + ], + [ + 9.069023, + 48.727538401 + ], + [ + 9.0691245, + 48.727495201 + ], + [ + 9.0692094, + 48.727441901 + ], + [ + 9.069287, + 48.727371001 + ], + [ + 9.0693295, + 48.727315301 + ], + [ + 9.0693536, + 48.727261301 + ], + [ + 9.0693667, + 48.727170601 + ], + [ + 9.0693551, + 48.727106301 + ], + [ + 9.0693385, + 48.727049501 + ], + [ + 9.0693008, + 48.726986601 + ], + [ + 9.069206, + 48.726884601 + ], + [ + 9.0690757, + 48.726794801 + ], + [ + 9.0688481, + 48.726667201 + ], + [ + 9.06867, + 48.726522001 + ], + [ + 9.0683844, + 48.726398901 + ], + [ + 9.0680042, + 48.726236601 + ], + [ + 9.0676414, + 48.726077301 + ], + [ + 9.0672738, + 48.725911501 + ], + [ + 9.0668415, + 48.725716401 + ], + [ + 9.0664411, + 48.725533601 + ], + [ + 9.0658813, + 48.725270601 + ], + [ + 9.0655117, + 48.725094901 + ], + [ + 9.064895, + 48.724796001 + ], + [ + 9.0644194, + 48.724560501 + ], + [ + 9.0639719, + 48.724334001 + ], + [ + 9.0635752, + 48.724131001 + ], + [ + 9.063181543, + 48.723927167 + ] + ] + } + }, + { + "identifier": "2026-016918--vi-bs.2026-04-15_09-00-00-000.devi-bs.2026-04-15_09-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72368792628326,9.073856786090484,48.72392716744146,9.06318154280551", + "point": "48.72368792628326,9.073856786090484", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Stuttgart (aus Richtung Stuttgart-M\u00f6hringen); \u00fcber die A831; nach A831 S", + "title": "A8 Beseitigung Unfallfolgen", + "coordinate": { + "lat": 48.72368792628326, + "long": 9.073856786090484 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Von Abfahrt von der A8: AK Stuttgart (aus Richtung Stuttgart-M\u00f6hringen); \u00fcber die A831; nach A831 S", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A8 Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.073856786, + 48.723687926 + ], + [ + 9.0728243, + 48.724348801 + ], + [ + 9.0723473, + 48.724649601 + ], + [ + 9.0720819, + 48.724802201 + ], + [ + 9.0718731, + 48.724923401 + ], + [ + 9.0716544, + 48.725039801 + ], + [ + 9.0713771, + 48.725184801 + ], + [ + 9.0709401, + 48.725396901 + ], + [ + 9.0706796, + 48.725511201 + ], + [ + 9.0703912, + 48.725637701 + ], + [ + 9.0699239, + 48.725817301 + ], + [ + 9.0693395, + 48.726031301 + ], + [ + 9.0688619, + 48.726196101 + ], + [ + 9.0683705, + 48.726329101 + ], + [ + 9.0679036, + 48.726463201 + ], + [ + 9.0676086, + 48.726530701 + ], + [ + 9.0674217, + 48.726592701 + ], + [ + 9.0673009, + 48.726649101 + ], + [ + 9.0672024, + 48.726717601 + ], + [ + 9.0671299, + 48.726781401 + ], + [ + 9.0670909, + 48.726840201 + ], + [ + 9.0670519, + 48.726915001 + ], + [ + 9.0670296, + 48.726968901 + ], + [ + 9.0670217, + 48.727053401 + ], + [ + 9.0670296, + 48.727102801 + ], + [ + 9.0670572, + 48.727173001 + ], + [ + 9.0670953, + 48.727244901 + ], + [ + 9.067161, + 48.727316901 + ], + [ + 9.0672411, + 48.727379301 + ], + [ + 9.0673344, + 48.727426101 + ], + [ + 9.0674563, + 48.727480801 + ], + [ + 9.067631, + 48.727517501 + ], + [ + 9.0678744, + 48.727544501 + ], + [ + 9.0686456, + 48.727588601 + ], + [ + 9.0687701, + 48.727587401 + ], + [ + 9.0688798, + 48.727573901 + ], + [ + 9.069023, + 48.727538401 + ], + [ + 9.0691245, + 48.727495201 + ], + [ + 9.0692094, + 48.727441901 + ], + [ + 9.069287, + 48.727371001 + ], + [ + 9.0693295, + 48.727315301 + ], + [ + 9.0693536, + 48.727261301 + ], + [ + 9.0693667, + 48.727170601 + ], + [ + 9.0693551, + 48.727106301 + ], + [ + 9.0693385, + 48.727049501 + ], + [ + 9.0693008, + 48.726986601 + ], + [ + 9.069206, + 48.726884601 + ], + [ + 9.0690757, + 48.726794801 + ], + [ + 9.0688481, + 48.726667201 + ], + [ + 9.06867, + 48.726522001 + ], + [ + 9.0683844, + 48.726398901 + ], + [ + 9.0680042, + 48.726236601 + ], + [ + 9.0676414, + 48.726077301 + ], + [ + 9.0672738, + 48.725911501 + ], + [ + 9.0668415, + 48.725716401 + ], + [ + 9.0664411, + 48.725533601 + ], + [ + 9.0658813, + 48.725270601 + ], + [ + 9.0655117, + 48.725094901 + ], + [ + 9.064895, + 48.724796001 + ], + [ + 9.0644194, + 48.724560501 + ], + [ + 9.0639719, + 48.724334001 + ], + [ + 9.0635752, + 48.724131001 + ], + [ + 9.063181543, + 48.723927167 + ] + ] + } + }, + { + "identifier": "2024-028936--vi-bs.2026-04-12_14-00-00-000.devi-zus.2025-03-07_09-00-00-000_001.de261", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.70550580301311,9.167777550936899,48.70689420139303,9.164869267628719", + "point": "48.70550580301311,9.167777550936899", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Stuttgart-Degerloch (aus Richtung Stuttgart-Flughafen/Messe)", + "title": "A8 Sanierung Rampen - Echterdinger Ei", + "startTimestamp": "2026-04-12T14:00:00+02:00", + "coordinate": { + "lat": 48.70550580301311, + "long": 9.167777550936899 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.04.26 um 14:00 Uhr", + "Ende: 26.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.04.26)", + "", + "Auffahrt auf die A8: AS Stuttgart-Degerloch (aus Richtung Stuttgart-Flughafen/Messe)", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Sanierung Rampen - Echterdinger Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.167777551, + 48.705505803 + ], + [ + 9.1677702, + 48.705613501 + ], + [ + 9.1677558, + 48.706067601 + ], + [ + 9.1677466, + 48.706162701 + ], + [ + 9.1677054, + 48.706300401 + ], + [ + 9.1676299, + 48.706446001 + ], + [ + 9.1675516, + 48.706560401 + ], + [ + 9.1674411, + 48.706728901 + ], + [ + 9.1672652, + 48.706863601 + ], + [ + 9.1670608, + 48.706975701 + ], + [ + 9.166922, + 48.707037201 + ], + [ + 9.1667233, + 48.707099401 + ], + [ + 9.1665414, + 48.707144301 + ], + [ + 9.1663527, + 48.707175101 + ], + [ + 9.16616, + 48.707191101 + ], + [ + 9.1659658, + 48.707192301 + ], + [ + 9.1657727, + 48.707178601 + ], + [ + 9.1655833, + 48.707150201 + ], + [ + 9.1654001, + 48.707107401 + ], + [ + 9.1652301, + 48.707049401 + ], + [ + 9.1650939, + 48.706990601 + ], + [ + 9.1649654, + 48.706935201 + ], + [ + 9.164869268, + 48.706894201 + ] + ] + } + }, + { + "identifier": "2024-028936--vi-bs.2026-04-12_14-00-00-000.devi-zus.2025-03-07_09-00-00-000_001.de259", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.70550580301311,9.167777550936899,48.70689420139303,9.164869267628719", + "point": "48.70550580301311,9.167777550936899", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Stuttgart-Degerloch (aus Richtung Stuttgart-Flughafen/Messe)", + "title": "A8 Sanierung Rampen - Echterdinger Ei", + "startTimestamp": "2026-04-12T14:00:00+02:00", + "coordinate": { + "lat": 48.70550580301311, + "long": 9.167777550936899 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.04.26 um 14:00 Uhr", + "Ende: 26.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.04.26)", + "", + "Auffahrt auf die A8: AS Stuttgart-Degerloch (aus Richtung Stuttgart-Flughafen/Messe)", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Sanierung Rampen - Echterdinger Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.167777551, + 48.705505803 + ], + [ + 9.1677702, + 48.705613501 + ], + [ + 9.1677558, + 48.706067601 + ], + [ + 9.1677466, + 48.706162701 + ], + [ + 9.1677054, + 48.706300401 + ], + [ + 9.1676299, + 48.706446001 + ], + [ + 9.1675516, + 48.706560401 + ], + [ + 9.1674411, + 48.706728901 + ], + [ + 9.1672652, + 48.706863601 + ], + [ + 9.1670608, + 48.706975701 + ], + [ + 9.166922, + 48.707037201 + ], + [ + 9.1667233, + 48.707099401 + ], + [ + 9.1665414, + 48.707144301 + ], + [ + 9.1663527, + 48.707175101 + ], + [ + 9.16616, + 48.707191101 + ], + [ + 9.1659658, + 48.707192301 + ], + [ + 9.1657727, + 48.707178601 + ], + [ + 9.1655833, + 48.707150201 + ], + [ + 9.1654001, + 48.707107401 + ], + [ + 9.1652301, + 48.707049401 + ], + [ + 9.1650939, + 48.706990601 + ], + [ + 9.1649654, + 48.706935201 + ], + [ + 9.164869268, + 48.706894201 + ] + ] + } + }, + { + "identifier": "2024-028936--vi-fbm.2026-03-30_09-00-00-000.devi-zus.2025-03-07_09-00-00-000_001.de257", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.70855813647754,9.150623426547517,48.70871881372076,9.149466081450107", + "point": "48.70855813647754,9.150623426547517", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": "", + "title": "A8 Sanierung Rampen - Echterdinger Ei", + "coordinate": { + "lat": 48.70855813647754, + "long": 9.150623426547517 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 09:00 bis 16:00 Uhr", + "25.04.26 von 09:00 bis 16:00 Uhr", + "26.04.26 von 09:00 bis 16:00 Uhr", + "27.04.26 von 09:00 bis 16:00 Uhr", + "28.04.26 von 09:00 bis 16:00 Uhr", + "", + "Zufahrtsstra\u00dfe A8", + "", + "L\u00e4nge: 0.09 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Sanierung Rampen - Echterdinger Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.150623427, + 48.708558136 + ], + [ + 9.1501736, + 48.708620901 + ], + [ + 9.1495706, + 48.708703801 + ], + [ + 9.149466081, + 48.708718814 + ] + ] + } + }, + { + "identifier": "2024-028936--vi-fbm.2026-04-08_20-00-00-000.devi-zus.2025-03-07_09-00-00-000_001.de253", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.69838554584264,9.168182166231032,48.704652564479574,9.167761959237852", + "point": "48.69838554584264,9.168182166231032", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": "", + "title": "A8 Sanierung Rampen - Echterdinger Ei", + "coordinate": { + "lat": 48.69838554584264, + "long": 9.168182166231032 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 18:00 bis 20:00 Uhr", + "11.04.26 von 17:00 bis 20:00 Uhr", + "", + "Von B27[Stuttgart-T\u00fcbingen] nach Auffahrt auf die A8", + "", + "L\u00e4nge: 0.73 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Sanierung Rampen - Echterdinger Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.168182166, + 48.698385546 + ], + [ + 9.168143, + 48.698424301 + ], + [ + 9.1680133, + 48.698557601 + ], + [ + 9.1678947, + 48.698690901 + ], + [ + 9.1678385, + 48.698758401 + ], + [ + 9.1677712, + 48.698839901 + ], + [ + 9.167693, + 48.698943101 + ], + [ + 9.1675398, + 48.699141501 + ], + [ + 9.1675433, + 48.699293501 + ], + [ + 9.1674707, + 48.699430301 + ], + [ + 9.1674071, + 48.699573601 + ], + [ + 9.1673742, + 48.699658001 + ], + [ + 9.1673409, + 48.699750301 + ], + [ + 9.1673121, + 48.699853601 + ], + [ + 9.1672819, + 48.699967301 + ], + [ + 9.1672576, + 48.700080801 + ], + [ + 9.1672348, + 48.700199101 + ], + [ + 9.1672017, + 48.700399801 + ], + [ + 9.1671852, + 48.700505201 + ], + [ + 9.1671733, + 48.700616701 + ], + [ + 9.1671636, + 48.700690301 + ], + [ + 9.167141, + 48.700827101 + ], + [ + 9.1671185, + 48.700932301 + ], + [ + 9.1670907, + 48.701042001 + ], + [ + 9.1670585, + 48.701151001 + ], + [ + 9.1670244, + 48.701248101 + ], + [ + 9.1669946, + 48.701324701 + ], + [ + 9.1669625, + 48.701421501 + ], + [ + 9.1668869, + 48.701613201 + ], + [ + 9.1668352, + 48.701785201 + ], + [ + 9.1668148, + 48.701873501 + ], + [ + 9.166795, + 48.701966501 + ], + [ + 9.1667769, + 48.702096601 + ], + [ + 9.1667695, + 48.702188401 + ], + [ + 9.1667659, + 48.702273901 + ], + [ + 9.1667665, + 48.702388001 + ], + [ + 9.1667707, + 48.702477601 + ], + [ + 9.1667763, + 48.702548501 + ], + [ + 9.166784, + 48.702614101 + ], + [ + 9.1667938, + 48.702675301 + ], + [ + 9.1668057, + 48.702746901 + ], + [ + 9.1668298, + 48.702844301 + ], + [ + 9.1668595, + 48.702949001 + ], + [ + 9.1669178, + 48.703119701 + ], + [ + 9.166971, + 48.703250301 + ], + [ + 9.1670261, + 48.703362501 + ], + [ + 9.1671317, + 48.703553701 + ], + [ + 9.1672624, + 48.703767201 + ], + [ + 9.1675058, + 48.704165501 + ], + [ + 9.1676094, + 48.704326501 + ], + [ + 9.1677112, + 48.704506501 + ], + [ + 9.1677606, + 48.704647701 + ], + [ + 9.167761959, + 48.704652564 + ] + ] + } + }, + { + "identifier": "2026-009136--vi-fbm.2026-04-20_00-00-00-000.devi-zus.2026-04-20_00-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.21987112567405,7.467633945751556,49.219349164092925,7.466719723452678", + "point": "49.21987112567405,7.467633945751556", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Walshausen (aus Richtung Walshausen)", + "title": "A8 AS Walshausen Sperrung der Auf- und Abfahrt, FR LUX, wg. Sanierung L477", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 49.21987112567405, + "long": 7.467633945751556 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.05.26)", + "", + "Auffahrt auf die A8: AS Walshausen (aus Richtung Walshausen)", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 AS Walshausen Sperrung der Auf- und Abfahrt, FR LUX, wg. Sanierung L477" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.467633946, + 49.219871126 + ], + [ + 7.4675849, + 49.219792701 + ], + [ + 7.4675002, + 49.219683401 + ], + [ + 7.4674069, + 49.219600201 + ], + [ + 7.467273, + 49.219518601 + ], + [ + 7.4671301, + 49.219451701 + ], + [ + 7.4669731, + 49.219401001 + ], + [ + 7.4667733, + 49.219360301 + ], + [ + 7.466719723, + 49.219349164 + ] + ] + } + }, + { + "identifier": "2026-009136--vi-fbm.2026-04-20_00-00-00-000.devi-zus.2026-04-20_00-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.2196918694712,7.470114485856422,49.21982042713499,7.467909592645759", + "point": "49.2196918694712,7.470114485856422", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Neunkirchen", + "title": "A8 AS Walshausen Sperrung der Auf- und Abfahrt, FR LUX, wg. Sanierung L477", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 49.2196918694712, + "long": 7.470114485856422 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.05.26)", + "", + "Von A8: Karlsruhe -> Neunkirchen, zwischen 2.1 km hinter Walshausen und AS Contwig nach Abfahrt von der A8: AS Walshausen (aus Richtung Walshausen)", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A8 AS Walshausen Sperrung der Auf- und Abfahrt, FR LUX, wg. Sanierung L477" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.470114486, + 49.219691869 + ], + [ + 7.4700965, + 49.219690001 + ], + [ + 7.4695844, + 49.219635201 + ], + [ + 7.469303, + 49.219605701 + ], + [ + 7.4687791, + 49.219595301 + ], + [ + 7.468555, + 49.219586701 + ], + [ + 7.468397, + 49.219594501 + ], + [ + 7.4682495, + 49.219619401 + ], + [ + 7.4681224, + 49.219660901 + ], + [ + 7.467989, + 49.219739001 + ], + [ + 7.467909593, + 49.219820427 + ] + ] + } + }, + { + "identifier": "2026-017473--vi-bs.2026-04-09_20-00-00-000_011.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.54164367832696,9.648481575412722,48.57903439517113,9.672482417876736", + "point": "48.54164367832696,9.648481575412722", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Stuttgart", + "title": "A8 von Albh\u00f6he (Rastplatz) nach M\u00fchlhausen (AS) Beseitigung Unfallfolgen", + "coordinate": { + "lat": 48.54164367832696, + "long": 9.648481575412722 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "Von A8: M\u00fcnchen -> Stuttgart, zwischen 5.7 km hinter Albh\u00f6he und AS M\u00fchlhausen nach A8: M\u00fcnchen -> Stuttgart, zwischen L\u00e4mmerbuckeltunnel und 0.9 km vor AS M\u00fchlhausen", + "", + "L\u00e4nge: 5.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 von Albh\u00f6he (Rastplatz) nach M\u00fchlhausen (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.648481575, + 48.541643678 + ], + [ + 9.6484612, + 48.541684101 + ], + [ + 9.6482309, + 48.542172801 + ], + [ + 9.6481233, + 48.542426701 + ], + [ + 9.6480299, + 48.542681401 + ], + [ + 9.6479746, + 48.542849801 + ], + [ + 9.6479061, + 48.543093501 + ], + [ + 9.6478495, + 48.543311501 + ], + [ + 9.6478165, + 48.543462401 + ], + [ + 9.6477889, + 48.543611401 + ], + [ + 9.647765, + 48.543755901 + ], + [ + 9.6477434, + 48.543905501 + ], + [ + 9.6477255, + 48.544062501 + ], + [ + 9.6477124, + 48.544213501 + ], + [ + 9.6477068, + 48.544297501 + ], + [ + 9.6476976, + 48.544522201 + ], + [ + 9.6476965, + 48.544718101 + ], + [ + 9.6476968, + 48.544980701 + ], + [ + 9.647707, + 48.545144901 + ], + [ + 9.647722, + 48.545300101 + ], + [ + 9.6477604, + 48.545590001 + ], + [ + 9.6477705, + 48.545655901 + ], + [ + 9.6478575, + 48.546078001 + ], + [ + 9.6479504, + 48.546425501 + ], + [ + 9.648081, + 48.546808801 + ], + [ + 9.6481689, + 48.547033501 + ], + [ + 9.6482511, + 48.547229701 + ], + [ + 9.6483659, + 48.547474601 + ], + [ + 9.6485368, + 48.547793501 + ], + [ + 9.6486198, + 48.547945301 + ], + [ + 9.6487632, + 48.548178201 + ], + [ + 9.648887, + 48.548358001 + ], + [ + 9.6492485, + 48.548865501 + ], + [ + 9.6495967, + 48.549261701 + ], + [ + 9.6498776, + 48.549560301 + ], + [ + 9.6501593, + 48.549837101 + ], + [ + 9.6506742, + 48.550300101 + ], + [ + 9.6509763, + 48.550538801 + ], + [ + 9.6513691, + 48.550831101 + ], + [ + 9.6517067, + 48.551057901 + ], + [ + 9.6519272, + 48.551195101 + ], + [ + 9.6521623, + 48.551335901 + ], + [ + 9.6525479, + 48.551558301 + ], + [ + 9.6536948, + 48.552233401 + ], + [ + 9.6547586, + 48.552862501 + ], + [ + 9.6553908, + 48.553237301 + ], + [ + 9.655468, + 48.553280801 + ], + [ + 9.6560033, + 48.553592201 + ], + [ + 9.6563321, + 48.553782801 + ], + [ + 9.6565228, + 48.553892601 + ], + [ + 9.6567753, + 48.554041701 + ], + [ + 9.6567847, + 48.554047201 + ], + [ + 9.6570657, + 48.554220201 + ], + [ + 9.6575662, + 48.554497901 + ], + [ + 9.6579535, + 48.554726601 + ], + [ + 9.6584296, + 48.555005001 + ], + [ + 9.658879, + 48.555269901 + ], + [ + 9.6596168, + 48.555704701 + ], + [ + 9.6600418, + 48.555956201 + ], + [ + 9.6604843, + 48.556211001 + ], + [ + 9.6608094, + 48.556414001 + ], + [ + 9.661162, + 48.556662201 + ], + [ + 9.661401, + 48.556867601 + ], + [ + 9.6614798, + 48.556944601 + ], + [ + 9.661733, + 48.557191801 + ], + [ + 9.6627389, + 48.558188201 + ], + [ + 9.6629985, + 48.558449001 + ], + [ + 9.6631245, + 48.558563001 + ], + [ + 9.6633257, + 48.558734901 + ], + [ + 9.6636698, + 48.558992701 + ], + [ + 9.6638247, + 48.559100901 + ], + [ + 9.6642312, + 48.559395401 + ], + [ + 9.664393, + 48.559511601 + ], + [ + 9.6645654, + 48.559638501 + ], + [ + 9.6650563, + 48.559994801 + ], + [ + 9.6652838, + 48.560145601 + ], + [ + 9.6656066, + 48.560331101 + ], + [ + 9.6660099, + 48.560529801 + ], + [ + 9.6663756, + 48.560685901 + ], + [ + 9.6669184, + 48.560871801 + ], + [ + 9.6670638, + 48.560917501 + ], + [ + 9.6673078, + 48.560987301 + ], + [ + 9.6675315, + 48.561045701 + ], + [ + 9.6687539, + 48.561311501 + ], + [ + 9.6690404, + 48.561376301 + ], + [ + 9.6693664, + 48.561473101 + ], + [ + 9.6697559, + 48.561613701 + ], + [ + 9.6699798, + 48.561707701 + ], + [ + 9.6712148, + 48.562243701 + ], + [ + 9.6722003, + 48.562663801 + ], + [ + 9.6727138, + 48.562888701 + ], + [ + 9.6729542, + 48.562950801 + ], + [ + 9.6730922, + 48.562998201 + ], + [ + 9.6732727, + 48.563078501 + ], + [ + 9.6735685, + 48.563251401 + ], + [ + 9.6737657, + 48.563420701 + ], + [ + 9.673871, + 48.563509501 + ], + [ + 9.6738844, + 48.563575201 + ], + [ + 9.6738949, + 48.563660101 + ], + [ + 9.6740899, + 48.563870201 + ], + [ + 9.6742341, + 48.564077601 + ], + [ + 9.6743666, + 48.564356001 + ], + [ + 9.6744191, + 48.564531001 + ], + [ + 9.6744544, + 48.564692001 + ], + [ + 9.6744692, + 48.565011301 + ], + [ + 9.674428, + 48.565363801 + ], + [ + 9.6743929, + 48.565503901 + ], + [ + 9.6743446, + 48.565712201 + ], + [ + 9.6743034, + 48.565941801 + ], + [ + 9.6742884, + 48.566147301 + ], + [ + 9.6743045, + 48.566393001 + ], + [ + 9.6743423, + 48.566624401 + ], + [ + 9.6744213, + 48.566847801 + ], + [ + 9.6745264, + 48.567056801 + ], + [ + 9.6747641, + 48.567435101 + ], + [ + 9.6749987, + 48.567798601 + ], + [ + 9.6752481, + 48.568200601 + ], + [ + 9.6754991, + 48.568658901 + ], + [ + 9.675653, + 48.569011001 + ], + [ + 9.6757712, + 48.569368601 + ], + [ + 9.6758371, + 48.569615901 + ], + [ + 9.675901, + 48.569947301 + ], + [ + 9.6760149, + 48.571372301 + ], + [ + 9.6760858, + 48.572106001 + ], + [ + 9.6761272, + 48.572678801 + ], + [ + 9.6761348, + 48.573097401 + ], + [ + 9.6760629, + 48.573758501 + ], + [ + 9.6759069, + 48.574576801 + ], + [ + 9.6757318, + 48.575406001 + ], + [ + 9.6755687, + 48.575945501 + ], + [ + 9.6753404, + 48.576403701 + ], + [ + 9.6750766, + 48.576787501 + ], + [ + 9.6748056, + 48.577100501 + ], + [ + 9.6744758, + 48.577395001 + ], + [ + 9.6738524, + 48.577878601 + ], + [ + 9.6735971, + 48.578075401 + ], + [ + 9.6731381, + 48.578454001 + ], + [ + 9.6726111, + 48.578924501 + ], + [ + 9.672482418, + 48.579034395 + ] + ] + } + }, + { + "identifier": "2024-028936--vi-bs.2026-04-02_06-00-00-000.devi-zus.2025-03-07_09-00-00-000_001.de264", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.70868527111462,9.149705384893583,48.708834021658014,9.148655355902969", + "point": "48.70868527111462,9.149705384893583", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A8 Sanierung Rampen - Echterdinger Ei", + "startTimestamp": "2026-04-02T06:00:00+02:00", + "coordinate": { + "lat": 48.70868527111462, + "long": 9.149705384893583 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 06:00 Uhr", + "Ende: 28.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.04.26)", + "", + "Zufahrtsstra\u00dfe A8", + "", + "L\u00e4nge: 0.08 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A8 Sanierung Rampen - Echterdinger Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.149705385, + 48.708685271 + ], + [ + 9.1495706, + 48.708703801 + ], + [ + 9.148983, + 48.708788201 + ], + [ + 9.148655356, + 48.708834022 + ] + ] + } + }, + { + "identifier": "2025-059764--vi-bs.2025-12-10_22-00-00-000.devi-zus.2025-12-09_22-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.90923914438146,8.64564285324547,48.90728094546198,8.652874902133572", + "point": "48.90923914438146,8.64564285324547", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "WP Seewald A8 AS Pforzheim-West - Durchf\u00fchrung von Gro\u00dfraum - und Schwerlasttransporte (GST)", + "startTimestamp": "2025-12-10T22:00:00+01:00", + "coordinate": { + "lat": 48.90923914438146, + "long": 8.64564285324547 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.12.25 um 22:00 Uhr", + "Ende: 02.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.05.26)", + "", + "Von A8: Karlsruhe -> Stuttgart, zwischen 11.4 km hinter Steinig und AS Pforzheim-West nach Abfahrt von der A8: AS Pforzheim-West (aus Richtung Steinig)", + "", + "L\u00e4nge: 0.61 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "WP Seewald A8 AS Pforzheim-West - Durchf\u00fchrung von Gro\u00dfraum - und Schwerlasttransporte (GST)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.645642853, + 48.909239144 + ], + [ + 8.646068, + 48.909198301 + ], + [ + 8.6472796, + 48.909053001 + ], + [ + 8.6475671, + 48.909018701 + ], + [ + 8.6479239, + 48.908973901 + ], + [ + 8.6483592, + 48.908884401 + ], + [ + 8.6488294, + 48.908772601 + ], + [ + 8.6495989, + 48.908549401 + ], + [ + 8.6497383, + 48.908512301 + ], + [ + 8.6499181, + 48.908466501 + ], + [ + 8.6501211, + 48.908422401 + ], + [ + 8.6503866, + 48.908375301 + ], + [ + 8.6506927, + 48.908333501 + ], + [ + 8.651048, + 48.908293401 + ], + [ + 8.651663, + 48.908220201 + ], + [ + 8.6519172, + 48.908185901 + ], + [ + 8.6520889, + 48.908156101 + ], + [ + 8.6522814, + 48.908107101 + ], + [ + 8.6523691, + 48.908074401 + ], + [ + 8.6524412, + 48.908041801 + ], + [ + 8.6525593, + 48.907977101 + ], + [ + 8.6526821, + 48.907882901 + ], + [ + 8.6527446, + 48.907813501 + ], + [ + 8.6528023, + 48.907735001 + ], + [ + 8.6528428, + 48.907664701 + ], + [ + 8.6528729, + 48.907559601 + ], + [ + 8.6528827, + 48.907479401 + ], + [ + 8.652884, + 48.907410901 + ], + [ + 8.652874902, + 48.907280945 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de63", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.91672126089907,8.720450355387538,48.91708911195315,8.72099483078354", + "point": "48.91672126089907,8.720450355387538", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Pforzheim-Nord (aus Richtung Am Waisenrain)", + "title": "A8 Neubau Enztalquerung bei Pforzheim-Ost ", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.91672126089907, + "long": 8.720450355387538 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "Auffahrt auf die A8: AS Pforzheim-Nord (aus Richtung Am Waisenrain)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.720450355, + 48.916721261 + ], + [ + 8.720452, + 48.916724001 + ], + [ + 8.720581, + 48.916845701 + ], + [ + 8.720744, + 48.916970201 + ], + [ + 8.720893, + 48.917038301 + ], + [ + 8.720994831, + 48.917089112 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de61", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.91657087035611,8.718789466967145,48.916180307812326,8.720127260396579", + "point": "48.91657087035611,8.718789466967145", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 Neubau Enztalquerung bei Pforzheim-Ost ", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.91657087035611, + "long": 8.718789466967145 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "Von A8: Karlsruhe -> Stuttgart, zwischen 0.1 km hinter AS Pforzheim-Nord und AS Pforzheim-Ost nach Abfahrt von der A8: AS Pforzheim-Nord (aus Richtung Am Waisenrain)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.718789467, + 48.91657087 + ], + [ + 8.7188529, + 48.916586701 + ], + [ + 8.7190622, + 48.916587701 + ], + [ + 8.7192218, + 48.916614201 + ], + [ + 8.7193546, + 48.916626301 + ], + [ + 8.7195125, + 48.916625601 + ], + [ + 8.7195846, + 48.916618701 + ], + [ + 8.71965, + 48.916606701 + ], + [ + 8.7197637, + 48.916579801 + ], + [ + 8.7198703, + 48.916532701 + ], + [ + 8.7199189, + 48.916502201 + ], + [ + 8.7200035, + 48.916439701 + ], + [ + 8.7200502, + 48.916383801 + ], + [ + 8.7200989, + 48.916303101 + ], + [ + 8.7201144, + 48.916256601 + ], + [ + 8.7201228, + 48.916203901 + ], + [ + 8.72012726, + 48.916180308 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de57", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.9133844736451,8.76439195792071,48.913982161285865,8.765100352856365", + "point": "48.9133844736451,8.76439195792071", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Pforzheim-Ost (aus Richtung Pforzheim-Nord) nach A8", + "title": "A8 Neubau Enztalquerung bei Pforzheim-Ost ", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.9133844736451, + "long": 8.76439195792071 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "Von Auffahrt auf die A8: AS Pforzheim-Ost (aus Richtung Pforzheim-Nord) nach A8: Karlsruhe -> Stuttgart, zwischen AS Pforzheim-Nord und AS Pforzheim-Ost", + "", + "L\u00e4nge: 0.26 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.764391958, + 48.913384474 + ], + [ + 8.7642802, + 48.913547501 + ], + [ + 8.7639891, + 48.913850901 + ], + [ + 8.7638303, + 48.914072301 + ], + [ + 8.763758, + 48.914175901 + ], + [ + 8.7637467, + 48.914281601 + ], + [ + 8.763766, + 48.914352301 + ], + [ + 8.7637942, + 48.914430701 + ], + [ + 8.7638416, + 48.914487001 + ], + [ + 8.7639051, + 48.914528101 + ], + [ + 8.763999, + 48.914560501 + ], + [ + 8.7640787, + 48.914573301 + ], + [ + 8.7641746, + 48.914573301 + ], + [ + 8.7642713, + 48.914560701 + ], + [ + 8.7645327, + 48.914486601 + ], + [ + 8.765100353, + 48.913982161 + ] + ] + } + }, + { + "identifier": "2025-063400--vi-bs.2026-01-16_05-00-00-000.devi-zus.2021-09-27_00-00-00-000_003.de55", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.91583718544526,8.76290097790655,48.91344095091488,8.76418716052907", + "point": "48.91583718544526,8.76290097790655", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Karlsruhe -> Stuttgart", + "title": "A8 Neubau Enztalquerung bei Pforzheim-Ost ", + "startTimestamp": "2026-01-16T05:00:00+01:00", + "coordinate": { + "lat": 48.91583718544526, + "long": 8.76290097790655 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.01.26 um 05:00 Uhr", + "Ende: 01.07.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "Von A8: Karlsruhe -> Stuttgart, zwischen 3.9 km hinter AS Pforzheim-Nord und AS Pforzheim-Ost nach Abfahrt von der A8: AS Pforzheim-Ost (aus Richtung Pforzheim-Nord)", + "", + "L\u00e4nge: 0.29 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A8 Neubau Enztalquerung bei Pforzheim-Ost " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.762900978, + 48.915837185 + ], + [ + 8.7630911, + 48.915677401 + ], + [ + 8.7633778, + 48.915446001 + ], + [ + 8.7633909, + 48.915290501 + ], + [ + 8.7634512, + 48.915211801 + ], + [ + 8.7635197, + 48.915078101 + ], + [ + 8.7635568, + 48.914964301 + ], + [ + 8.7635802, + 48.914804801 + ], + [ + 8.7636024, + 48.914588501 + ], + [ + 8.7636125, + 48.914431901 + ], + [ + 8.7636301, + 48.914347801 + ], + [ + 8.7636701, + 48.914269801 + ], + [ + 8.763758, + 48.914175901 + ], + [ + 8.7638303, + 48.914072301 + ], + [ + 8.7639891, + 48.913850901 + ], + [ + 8.7640953, + 48.913591001 + ], + [ + 8.7641758, + 48.913459401 + ], + [ + 8.764187161, + 48.913440951 + ] + ] + } + } + ] + }, + "A9": { + "roadworks": [ + { + "identifier": "2026-008653--vi-bs.2026-04-09_22-00-00-000.devi-zus.2026-02-25_22-00-00-000_011.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.65613816010327,11.512680428947666,48.638884654492315,11.520204002123844", + "point": "48.65613816010327,11.512680428947666", + "startLcPosition": "23", + "impact": { + "lower": "Rohrbach (West)", + "upper": "Baarer Weiher", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> M\u00fcnchen", + "title": "A9 | Baarer Weiher - Rohrbach (West)", + "coordinate": { + "lat": 48.65613816010327, + "long": 11.512680428947666 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 22:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A9: N\u00fcrnberg -> M\u00fcnchen, zwischen 2.9 km hinter Baarer Weiher und 3.3 km vor Rohrbach (West)", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A9 von Baarer Weiher (Rastplatz) nach Rohrbach (West) (Rastplatz) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.512680429, + 48.65613816 + ], + [ + 11.5135509, + 48.652854301 + ], + [ + 11.5136213, + 48.652576601 + ], + [ + 11.5137397, + 48.652109701 + ], + [ + 11.5138848, + 48.651536301 + ], + [ + 11.5143541, + 48.649709701 + ], + [ + 11.5145049, + 48.649253601 + ], + [ + 11.5145918, + 48.648991601 + ], + [ + 11.5150306, + 48.647935201 + ], + [ + 11.5150502, + 48.647894901 + ], + [ + 11.5151787, + 48.647646201 + ], + [ + 11.5154881, + 48.647047501 + ], + [ + 11.5160615, + 48.646032801 + ], + [ + 11.5161459, + 48.645883501 + ], + [ + 11.5162313, + 48.645739401 + ], + [ + 11.5163663, + 48.645511301 + ], + [ + 11.5166243, + 48.645066801 + ], + [ + 11.5169963, + 48.644402901 + ], + [ + 11.5174853, + 48.643589201 + ], + [ + 11.518004, + 48.642667901 + ], + [ + 11.5188983, + 48.641139801 + ], + [ + 11.5189909, + 48.640981501 + ], + [ + 11.5198326, + 48.639543801 + ], + [ + 11.520204002, + 48.638884654 + ] + ] + } + }, + { + "identifier": "2023-001923--vi-bs.2025-11-12_00-00-00-000.devi-zus.2024-04-08_06-00-00-000.f_001.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.76685745296199,11.460185369771725,48.87180063657933,11.467948426312242", + "point": "48.76685745296199,11.460185369771725", + "startLcPosition": "26", + "impact": { + "lower": "Denkendorf", + "upper": "Ingolstadt-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> N\u00fcrnberg", + "title": "A9 | Ingolstadt-S\u00fcd - Denkendorf", + "startTimestamp": "2025-11-12T00:00:00+01:00", + "coordinate": { + "lat": 48.76685745296199, + "long": 11.460185369771725 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.11.25 um 00:00 Uhr", + "Ende: 31.12.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A9: M\u00fcnchen -> N\u00fcrnberg, zwischen 1.8 km hinter AS Ingolstadt-S\u00fcd und 6.7 km vor AS Denkendorf", + "", + "L\u00e4nge: 11.89 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A9 EA1 Stamham - IN Nord" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.46018537, + 48.766857453 + ], + [ + 11.460393, + 48.767651601 + ], + [ + 11.4605663, + 48.768485501 + ], + [ + 11.4606525, + 48.768927201 + ], + [ + 11.4607785, + 48.769705001 + ], + [ + 11.4609803, + 48.771306201 + ], + [ + 11.4610437, + 48.772131801 + ], + [ + 11.4610775, + 48.772674801 + ], + [ + 11.4610958, + 48.773034301 + ], + [ + 11.4611034, + 48.773271201 + ], + [ + 11.4611154, + 48.774248901 + ], + [ + 11.4611085, + 48.774824001 + ], + [ + 11.4610334, + 48.776315201 + ], + [ + 11.46097, + 48.777022901 + ], + [ + 11.4607456, + 48.778819101 + ], + [ + 11.4606995, + 48.779216701 + ], + [ + 11.4602589, + 48.782367201 + ], + [ + 11.460253, + 48.782414901 + ], + [ + 11.4602371, + 48.782528601 + ], + [ + 11.460103, + 48.783500701 + ], + [ + 11.460038, + 48.784402101 + ], + [ + 11.4600409, + 48.785384001 + ], + [ + 11.4601191, + 48.786322301 + ], + [ + 11.460269, + 48.787256901 + ], + [ + 11.4605216, + 48.788269901 + ], + [ + 11.4612666, + 48.790478201 + ], + [ + 11.4628253, + 48.795039901 + ], + [ + 11.4635738, + 48.797224001 + ], + [ + 11.465348, + 48.802401001 + ], + [ + 11.4655397, + 48.803039801 + ], + [ + 11.4656966, + 48.803696201 + ], + [ + 11.4658906, + 48.804893401 + ], + [ + 11.4659686, + 48.806036101 + ], + [ + 11.4661659, + 48.811031801 + ], + [ + 11.4662296, + 48.811793401 + ], + [ + 11.4663289, + 48.812438301 + ], + [ + 11.466467, + 48.813122601 + ], + [ + 11.4666007, + 48.813666701 + ], + [ + 11.4667635, + 48.814168601 + ], + [ + 11.4668132, + 48.814342901 + ], + [ + 11.4671599, + 48.815239301 + ], + [ + 11.4674719, + 48.815884901 + ], + [ + 11.4676769, + 48.816292601 + ], + [ + 11.4682765, + 48.817379701 + ], + [ + 11.4684641, + 48.817726101 + ], + [ + 11.4690049, + 48.818700601 + ], + [ + 11.4698268, + 48.820215201 + ], + [ + 11.4705107, + 48.821431701 + ], + [ + 11.471775, + 48.823722201 + ], + [ + 11.4720858, + 48.824317501 + ], + [ + 11.4722329, + 48.824637101 + ], + [ + 11.4724164, + 48.825099801 + ], + [ + 11.472585, + 48.825564301 + ], + [ + 11.4727333, + 48.826059701 + ], + [ + 11.4728799, + 48.826670201 + ], + [ + 11.472976, + 48.827149201 + ], + [ + 11.4730295, + 48.827649401 + ], + [ + 11.4730529, + 48.828439901 + ], + [ + 11.4730257, + 48.829084301 + ], + [ + 11.4729759, + 48.829527301 + ], + [ + 11.4728958, + 48.830048901 + ], + [ + 11.4727825, + 48.830553801 + ], + [ + 11.4726073, + 48.831206701 + ], + [ + 11.4724322, + 48.831661301 + ], + [ + 11.4722469, + 48.832144401 + ], + [ + 11.4718021, + 48.833198001 + ], + [ + 11.4716227, + 48.833593601 + ], + [ + 11.4709024, + 48.835217701 + ], + [ + 11.4704935, + 48.836147201 + ], + [ + 11.4701942, + 48.836833101 + ], + [ + 11.4698206, + 48.837688101 + ], + [ + 11.4691122, + 48.839318001 + ], + [ + 11.4689347, + 48.839724401 + ], + [ + 11.4689255, + 48.839745301 + ], + [ + 11.4684055, + 48.840909801 + ], + [ + 11.4681464, + 48.841489901 + ], + [ + 11.4671737, + 48.843722601 + ], + [ + 11.4662996, + 48.845743301 + ], + [ + 11.4659767, + 48.846550301 + ], + [ + 11.4657756, + 48.847163601 + ], + [ + 11.465528, + 48.847975601 + ], + [ + 11.4652693, + 48.849002401 + ], + [ + 11.4651081, + 48.849843801 + ], + [ + 11.4650734, + 48.850061801 + ], + [ + 11.464966, + 48.850900701 + ], + [ + 11.4648702, + 48.852179501 + ], + [ + 11.4648743, + 48.853147401 + ], + [ + 11.464918, + 48.853940601 + ], + [ + 11.4650532, + 48.855392701 + ], + [ + 11.4654328, + 48.857612501 + ], + [ + 11.465765, + 48.859420501 + ], + [ + 11.4663971, + 48.862961501 + ], + [ + 11.4668539, + 48.865520501 + ], + [ + 11.4675846, + 48.869723301 + ], + [ + 11.4676244, + 48.869956401 + ], + [ + 11.467948426, + 48.871800637 + ] + ] + } + }, + { + "identifier": "2025-048792--vi-bs.2026-04-08_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_005.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.028236802300015,11.607910536467612,50.029807379153574,11.607229060984556", + "point": "50.028236802300015,11.607910536467612", + "startLcPosition": "28", + "impact": { + "lower": "Bayreuth/Kulmbach", + "upper": "Kulmbach/Neudrossenfeld", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bamberg -> Bayreuth", + "title": "A9 | Kulmbach/Neudrossenfeld - Bayreuth/Kulmbach", + "startTimestamp": "2026-04-08T00:00:00+02:00", + "coordinate": { + "lat": 50.028236802300015, + "long": 11.607910536467612 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 00:00 Uhr", + "Ende: 25.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.11.26)", + "", + "A70: Bamberg -> Bayreuth, zwischen 9.1 km hinter AS Kulmbach/Neudrossenfeld und 7.0 km vor AD Bayreuth/Kulmbach", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A9 Erneuerung an der Decke D292" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.607910536, + 50.028236802 + ], + [ + 11.6078708, + 50.028465501 + ], + [ + 11.6077898, + 50.028751701 + ], + [ + 11.6076788, + 50.029002101 + ], + [ + 11.6075421, + 50.029235501 + ], + [ + 11.6073575, + 50.029550501 + ], + [ + 11.607229061, + 50.029807379 + ] + ] + } + }, + { + "identifier": "2023-001923--vi-bs.2025-11-12_00-00-00-000.devi-zus.2024-04-08_06-00-00-000.f_001.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.871817561958,11.467730064511715,48.76688019833166,11.45997997927701", + "point": "48.871817561958,11.467730064511715", + "startLcPosition": "31", + "impact": { + "lower": "Ingolstadt-S\u00fcd", + "upper": "Denkendorf", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> M\u00fcnchen", + "title": "A9 | Denkendorf - Ingolstadt-S\u00fcd", + "startTimestamp": "2025-11-12T00:00:00+01:00", + "coordinate": { + "lat": 48.871817561958, + "long": 11.467730064511715 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.11.25 um 00:00 Uhr", + "Ende: 31.12.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A9: N\u00fcrnberg -> M\u00fcnchen, zwischen 6.7 km hinter AS Denkendorf und 1.8 km vor AS Ingolstadt-S\u00fcd", + "", + "L\u00e4nge: 11.89 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 8.5 m", + "", + "A9 EA1 Stamham - IN Nord" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.467730065, + 48.871817562 + ], + [ + 11.4673959, + 48.869969501 + ], + [ + 11.4673624, + 48.869775101 + ], + [ + 11.4666281, + 48.865574401 + ], + [ + 11.4661761, + 48.862992201 + ], + [ + 11.4655573, + 48.859457401 + ], + [ + 11.4652152, + 48.857688101 + ], + [ + 11.4648289, + 48.855460301 + ], + [ + 11.4646744, + 48.854009801 + ], + [ + 11.4646321, + 48.853197101 + ], + [ + 11.4646358, + 48.852239101 + ], + [ + 11.4647417, + 48.850807601 + ], + [ + 11.4648486, + 48.850045801 + ], + [ + 11.4648818, + 48.849820101 + ], + [ + 11.4650684, + 48.848884201 + ], + [ + 11.4652875, + 48.847926901 + ], + [ + 11.4655394, + 48.847129501 + ], + [ + 11.4657511, + 48.846510501 + ], + [ + 11.4660507, + 48.845721701 + ], + [ + 11.4669777, + 48.843568001 + ], + [ + 11.4675295, + 48.842342601 + ], + [ + 11.4681304, + 48.840963101 + ], + [ + 11.4681538, + 48.840909301 + ], + [ + 11.4681754, + 48.840859901 + ], + [ + 11.4683598, + 48.840439501 + ], + [ + 11.468916, + 48.839177201 + ], + [ + 11.4695911, + 48.837625101 + ], + [ + 11.4702719, + 48.836080901 + ], + [ + 11.4705681, + 48.835408501 + ], + [ + 11.4707027, + 48.835102201 + ], + [ + 11.4707068, + 48.835093001 + ], + [ + 11.4714181, + 48.833463601 + ], + [ + 11.4716142, + 48.833024401 + ], + [ + 11.4720383, + 48.832074601 + ], + [ + 11.4722097, + 48.831634401 + ], + [ + 11.4723769, + 48.831147101 + ], + [ + 11.47256, + 48.830515001 + ], + [ + 11.4726571, + 48.830032001 + ], + [ + 11.4728064, + 48.828836001 + ], + [ + 11.4727955, + 48.827955101 + ], + [ + 11.4727653, + 48.827517701 + ], + [ + 11.4727204, + 48.827164501 + ], + [ + 11.4726396, + 48.826656401 + ], + [ + 11.4725059, + 48.826095501 + ], + [ + 11.472345, + 48.825565901 + ], + [ + 11.472249, + 48.825288501 + ], + [ + 11.4721133, + 48.824945301 + ], + [ + 11.4716476, + 48.823908601 + ], + [ + 11.470278, + 48.821479801 + ], + [ + 11.4687756, + 48.818739601 + ], + [ + 11.4682684, + 48.817822001 + ], + [ + 11.4680588, + 48.817442201 + ], + [ + 11.467497, + 48.816452401 + ], + [ + 11.4672365, + 48.815934301 + ], + [ + 11.46715, + 48.815752601 + ], + [ + 11.4670325, + 48.815506001 + ], + [ + 11.466826, + 48.815008501 + ], + [ + 11.4665207, + 48.814156901 + ], + [ + 11.4663788, + 48.813690001 + ], + [ + 11.46627, + 48.813315101 + ], + [ + 11.466163, + 48.812871801 + ], + [ + 11.4661502, + 48.812821101 + ], + [ + 11.46609, + 48.812572501 + ], + [ + 11.4659903, + 48.811903801 + ], + [ + 11.4659537, + 48.811587501 + ], + [ + 11.4659306, + 48.811162201 + ], + [ + 11.4658157, + 48.808018901 + ], + [ + 11.4657383, + 48.806194801 + ], + [ + 11.4657122, + 48.805578801 + ], + [ + 11.4656639, + 48.805005401 + ], + [ + 11.4655915, + 48.804433201 + ], + [ + 11.4654813, + 48.803795601 + ], + [ + 11.4653598, + 48.803259801 + ], + [ + 11.4652002, + 48.802684401 + ], + [ + 11.4645089, + 48.800602401 + ], + [ + 11.4633051, + 48.797124501 + ], + [ + 11.4628405, + 48.795787201 + ], + [ + 11.4610346, + 48.790509901 + ], + [ + 11.4606312, + 48.789303501 + ], + [ + 11.4602951, + 48.788298201 + ], + [ + 11.4600363, + 48.787269901 + ], + [ + 11.4598847, + 48.786327701 + ], + [ + 11.4598049, + 48.785384001 + ], + [ + 11.4598039, + 48.784393401 + ], + [ + 11.459892, + 48.783456701 + ], + [ + 11.4600197, + 48.782427701 + ], + [ + 11.460039, + 48.782268601 + ], + [ + 11.4600558, + 48.782140601 + ], + [ + 11.4604648, + 48.779232601 + ], + [ + 11.4605178, + 48.778817301 + ], + [ + 11.4606958, + 48.777381901 + ], + [ + 11.4607922, + 48.776382801 + ], + [ + 11.4608441, + 48.775501201 + ], + [ + 11.4608635, + 48.775022001 + ], + [ + 11.4608775, + 48.774690801 + ], + [ + 11.4608794, + 48.774237301 + ], + [ + 11.4608777, + 48.774117601 + ], + [ + 11.4608724, + 48.773853301 + ], + [ + 11.4608663, + 48.773338901 + ], + [ + 11.4608486, + 48.772756301 + ], + [ + 11.4608087, + 48.772120001 + ], + [ + 11.4607661, + 48.771614701 + ], + [ + 11.460738, + 48.771239901 + ], + [ + 11.4607044, + 48.770919901 + ], + [ + 11.4606235, + 48.770228401 + ], + [ + 11.460479, + 48.769316601 + ], + [ + 11.4604178, + 48.768959001 + ], + [ + 11.4603195, + 48.768496401 + ], + [ + 11.4600831, + 48.767299301 + ], + [ + 11.459979979, + 48.766880198 + ] + ] + } + }, + { + "identifier": "2026-017804--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.04217730092254,11.349073684987781,49.16210795507778,11.263967358617567", + "point": "49.04217730092254,11.349073684987781", + "startLcPosition": "36", + "impact": { + "lower": "G\u00f6ggelsbuch", + "upper": "Greding", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> N\u00fcrnberg", + "title": "A9 | Greding - G\u00f6ggelsbuch", + "coordinate": { + "lat": 49.04217730092254, + "long": 11.349073684987781 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 18:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 18:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 18:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A9: M\u00fcnchen -> N\u00fcrnberg, zwischen AS Greding und 7.2 km vor G\u00f6ggelsbuch", + "", + "L\u00e4nge: 15.5 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A9 von Greding (AS) nach Hilpoltstein (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.349073685, + 49.042177301 + ], + [ + 11.3489119, + 49.042214301 + ], + [ + 11.3481902, + 49.042381401 + ], + [ + 11.3468462, + 49.042704801 + ], + [ + 11.345422, + 49.043045901 + ], + [ + 11.344105, + 49.043357801 + ], + [ + 11.3434407, + 49.043526201 + ], + [ + 11.3428554, + 49.043685901 + ], + [ + 11.3422858, + 49.043866601 + ], + [ + 11.3417735, + 49.044051901 + ], + [ + 11.3409624, + 49.044378601 + ], + [ + 11.339956, + 49.044859001 + ], + [ + 11.3393307, + 49.045217401 + ], + [ + 11.3386524, + 49.045636001 + ], + [ + 11.3376148, + 49.046407101 + ], + [ + 11.3369871, + 49.046853601 + ], + [ + 11.3366214, + 49.047123301 + ], + [ + 11.3354028, + 49.048028301 + ], + [ + 11.3343675, + 49.048800701 + ], + [ + 11.3328089, + 49.049998601 + ], + [ + 11.3318668, + 49.050678001 + ], + [ + 11.3314729, + 49.050996901 + ], + [ + 11.3310274, + 49.051378201 + ], + [ + 11.3306652, + 49.051700001 + ], + [ + 11.3303615, + 49.051987101 + ], + [ + 11.3299866, + 49.052373401 + ], + [ + 11.3296457, + 49.052746401 + ], + [ + 11.3293502, + 49.053089701 + ], + [ + 11.3290226, + 49.053531201 + ], + [ + 11.3286005, + 49.054107201 + ], + [ + 11.326419, + 49.057207901 + ], + [ + 11.3254896, + 49.058525801 + ], + [ + 11.3252557, + 49.058838801 + ], + [ + 11.3248234, + 49.059357301 + ], + [ + 11.324146, + 49.060073601 + ], + [ + 11.323715, + 49.060490601 + ], + [ + 11.3230803, + 49.061039401 + ], + [ + 11.3227286, + 49.061329301 + ], + [ + 11.3220624, + 49.061827901 + ], + [ + 11.3213009, + 49.062332301 + ], + [ + 11.3206716, + 49.062721601 + ], + [ + 11.3198814, + 49.063163301 + ], + [ + 11.3173876, + 49.064399901 + ], + [ + 11.316834, + 49.064681901 + ], + [ + 11.3131068, + 49.066536201 + ], + [ + 11.3127041, + 49.066737101 + ], + [ + 11.3096943, + 49.068238101 + ], + [ + 11.3066099, + 49.069770101 + ], + [ + 11.3033505, + 49.071394701 + ], + [ + 11.2995548, + 49.073282301 + ], + [ + 11.2983735, + 49.073880301 + ], + [ + 11.2974777, + 49.074378101 + ], + [ + 11.2966059, + 49.074922701 + ], + [ + 11.2959472, + 49.075342601 + ], + [ + 11.2952143, + 49.075863601 + ], + [ + 11.2941155, + 49.076718901 + ], + [ + 11.2936724, + 49.077094101 + ], + [ + 11.2924401, + 49.078351601 + ], + [ + 11.2916368, + 49.079292401 + ], + [ + 11.2906011, + 49.080605301 + ], + [ + 11.290084, + 49.081360901 + ], + [ + 11.2897628, + 49.081964601 + ], + [ + 11.2893125, + 49.082902101 + ], + [ + 11.2889483, + 49.083844701 + ], + [ + 11.2884364, + 49.085671101 + ], + [ + 11.287242, + 49.090337101 + ], + [ + 11.2871883, + 49.090547901 + ], + [ + 11.2857078, + 49.096358001 + ], + [ + 11.2852363, + 49.098124101 + ], + [ + 11.2843237, + 49.101542201 + ], + [ + 11.2837576, + 49.103824101 + ], + [ + 11.2836325, + 49.104195901 + ], + [ + 11.2835072, + 49.104509601 + ], + [ + 11.2831466, + 49.105341501 + ], + [ + 11.2827698, + 49.106119301 + ], + [ + 11.2819527, + 49.107463401 + ], + [ + 11.2808172, + 49.109124601 + ], + [ + 11.2799708, + 49.110585301 + ], + [ + 11.27938, + 49.111967001 + ], + [ + 11.2789215, + 49.113499801 + ], + [ + 11.2776888, + 49.117939701 + ], + [ + 11.2770959, + 49.120182301 + ], + [ + 11.276939, + 49.120679401 + ], + [ + 11.2767643, + 49.121176301 + ], + [ + 11.2765389, + 49.121769801 + ], + [ + 11.2764395, + 49.121960201 + ], + [ + 11.276351, + 49.122174601 + ], + [ + 11.2761774, + 49.122544401 + ], + [ + 11.2755539, + 49.123677501 + ], + [ + 11.2753508, + 49.124045101 + ], + [ + 11.274696, + 49.125185801 + ], + [ + 11.2738856, + 49.126721501 + ], + [ + 11.273246, + 49.127861101 + ], + [ + 11.2731352, + 49.128070401 + ], + [ + 11.2730353, + 49.128265201 + ], + [ + 11.2717338, + 49.130628801 + ], + [ + 11.2712124, + 49.131620101 + ], + [ + 11.2707291, + 49.132780201 + ], + [ + 11.2704551, + 49.133663401 + ], + [ + 11.270271, + 49.134384401 + ], + [ + 11.269582, + 49.137220001 + ], + [ + 11.2688294, + 49.140408501 + ], + [ + 11.2684994, + 49.141910001 + ], + [ + 11.2678001, + 49.145092301 + ], + [ + 11.2677196, + 49.145469001 + ], + [ + 11.2668508, + 49.149051101 + ], + [ + 11.2657761, + 49.153791501 + ], + [ + 11.2652741, + 49.156000201 + ], + [ + 11.2648001, + 49.158206001 + ], + [ + 11.2644444, + 49.160013001 + ], + [ + 11.2639818, + 49.162040401 + ], + [ + 11.263967359, + 49.162107955 + ] + ] + } + }, + { + "identifier": "2025-050316--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_009.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.06337032443593,11.319463920343447,49.108709732831144,11.281100787430256", + "point": "49.06337032443593,11.319463920343447", + "startLcPosition": "37", + "impact": { + "lower": "Offenbau", + "upper": "Greding", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> N\u00fcrnberg", + "title": "A9 | Greding - Offenbau", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 49.06337032443593, + "long": 11.319463920343447 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 10.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.08.26)", + "", + "A9: M\u00fcnchen -> N\u00fcrnberg, zwischen 1.9 km hinter Greding und 2.5 km vor Offenbau", + "", + "L\u00e4nge: 6.1 km | Maximale Durchfahrtsbreite: 8.5 m", + "", + "A9 Erneuerung an der Decke D415" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.31946392, + 49.063370324 + ], + [ + 11.3173876, + 49.064399901 + ], + [ + 11.316834, + 49.064681901 + ], + [ + 11.3131068, + 49.066536201 + ], + [ + 11.3127041, + 49.066737101 + ], + [ + 11.3096943, + 49.068238101 + ], + [ + 11.3066099, + 49.069770101 + ], + [ + 11.3033505, + 49.071394701 + ], + [ + 11.2995548, + 49.073282301 + ], + [ + 11.2983735, + 49.073880301 + ], + [ + 11.2974777, + 49.074378101 + ], + [ + 11.2966059, + 49.074922701 + ], + [ + 11.2959472, + 49.075342601 + ], + [ + 11.2952143, + 49.075863601 + ], + [ + 11.2941155, + 49.076718901 + ], + [ + 11.2936724, + 49.077094101 + ], + [ + 11.2924401, + 49.078351601 + ], + [ + 11.2916368, + 49.079292401 + ], + [ + 11.2906011, + 49.080605301 + ], + [ + 11.290084, + 49.081360901 + ], + [ + 11.2897628, + 49.081964601 + ], + [ + 11.2893125, + 49.082902101 + ], + [ + 11.2889483, + 49.083844701 + ], + [ + 11.2884364, + 49.085671101 + ], + [ + 11.287242, + 49.090337101 + ], + [ + 11.2871883, + 49.090547901 + ], + [ + 11.2857078, + 49.096358001 + ], + [ + 11.2852363, + 49.098124101 + ], + [ + 11.2843237, + 49.101542201 + ], + [ + 11.2837576, + 49.103824101 + ], + [ + 11.2836325, + 49.104195901 + ], + [ + 11.2835072, + 49.104509601 + ], + [ + 11.2831466, + 49.105341501 + ], + [ + 11.2827698, + 49.106119301 + ], + [ + 11.2819527, + 49.107463401 + ], + [ + 11.281100787, + 49.108709733 + ] + ] + } + }, + { + "identifier": "2025-050316--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_009.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.108650624144055,11.280899154983002,49.06324832910596,11.319323174277224", + "point": "49.108650624144055,11.280899154983002", + "startLcPosition": "38", + "impact": { + "lower": "Greding", + "upper": "Offenbau", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> M\u00fcnchen", + "title": "A9 | Offenbau - Greding", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 49.108650624144055, + "long": 11.280899154983002 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 10.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.08.26)", + "", + "A9: N\u00fcrnberg -> M\u00fcnchen, zwischen 2.5 km hinter Offenbau und 1.9 km vor Greding", + "", + "L\u00e4nge: 6.1 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A9 Erneuerung an der Decke D415" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.280899155, + 49.108650624 + ], + [ + 11.2819741, + 49.107063101 + ], + [ + 11.282635, + 49.105928001 + ], + [ + 11.2828683, + 49.105461901 + ], + [ + 11.2830558, + 49.105036501 + ], + [ + 11.2832216, + 49.104642801 + ], + [ + 11.2833818, + 49.104219201 + ], + [ + 11.2834922, + 49.103899601 + ], + [ + 11.284155, + 49.101350301 + ], + [ + 11.2846077, + 49.099603601 + ], + [ + 11.2850025, + 49.098102601 + ], + [ + 11.2855039, + 49.096196401 + ], + [ + 11.2860556, + 49.093969801 + ], + [ + 11.2869243, + 49.090611701 + ], + [ + 11.2869869, + 49.090356001 + ], + [ + 11.2870742, + 49.089999101 + ], + [ + 11.2874957, + 49.088385101 + ], + [ + 11.288188, + 49.085661801 + ], + [ + 11.2883112, + 49.085181901 + ], + [ + 11.2885338, + 49.084372101 + ], + [ + 11.2886843, + 49.083905401 + ], + [ + 11.2888134, + 49.083532301 + ], + [ + 11.2890385, + 49.082954501 + ], + [ + 11.2893145, + 49.082349501 + ], + [ + 11.2895725, + 49.081829701 + ], + [ + 11.2898904, + 49.081264901 + ], + [ + 11.2904821, + 49.080345101 + ], + [ + 11.2915013, + 49.079038001 + ], + [ + 11.291918, + 49.078537801 + ], + [ + 11.2922845, + 49.078145501 + ], + [ + 11.292844, + 49.077582401 + ], + [ + 11.2936187, + 49.076885901 + ], + [ + 11.2941175, + 49.076472601 + ], + [ + 11.2949823, + 49.075772801 + ], + [ + 11.2957236, + 49.075276401 + ], + [ + 11.296423, + 49.074812201 + ], + [ + 11.2971548, + 49.074365701 + ], + [ + 11.2980674, + 49.073858401 + ], + [ + 11.299524, + 49.073104501 + ], + [ + 11.3026377, + 49.071562901 + ], + [ + 11.3065996, + 49.069587101 + ], + [ + 11.3098564, + 49.067955701 + ], + [ + 11.312514, + 49.066632601 + ], + [ + 11.3128774, + 49.066446501 + ], + [ + 11.3164857, + 49.064665201 + ], + [ + 11.3171053, + 49.064357801 + ], + [ + 11.319323174, + 49.063248329 + ] + ] + } + }, + { + "identifier": "2026-017804--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.162087558016275,11.263745608706666,49.042027673640874,11.349008287208273", + "point": "49.162087558016275,11.263745608706666", + "startLcPosition": "40", + "impact": { + "lower": "Greding", + "upper": "G\u00f6ggelsbuch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> M\u00fcnchen", + "title": "A9 | G\u00f6ggelsbuch - Greding", + "coordinate": { + "lat": 49.162087558016275, + "long": 11.263745608706666 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 18:00 bis zum 18.04.26 06:00 Uhr.", + "19.04.26 17:00 bis zum 20.04.26 06:00 Uhr.", + "", + "A9: N\u00fcrnberg -> M\u00fcnchen, zwischen 7.2 km hinter G\u00f6ggelsbuch und 0.7 km vor Greding", + "", + "L\u00e4nge: 15.5 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A9 von Greding (AS) nach Hilpoltstein (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.263745609, + 49.162087558 + ], + [ + 11.2637548, + 49.162044601 + ], + [ + 11.2641547, + 49.160169901 + ], + [ + 11.2645244, + 49.158433701 + ], + [ + 11.2650443, + 49.156011401 + ], + [ + 11.2653555, + 49.154538901 + ], + [ + 11.2664799, + 49.149793601 + ], + [ + 11.2668447, + 49.148194901 + ], + [ + 11.2674694, + 49.145478401 + ], + [ + 11.2675622, + 49.145077701 + ], + [ + 11.2678979, + 49.143705801 + ], + [ + 11.2683065, + 49.141882201 + ], + [ + 11.2687067, + 49.140096101 + ], + [ + 11.268932, + 49.139140001 + ], + [ + 11.2694404, + 49.136944801 + ], + [ + 11.2700384, + 49.134350301 + ], + [ + 11.2702229, + 49.133573901 + ], + [ + 11.2703516, + 49.133173001 + ], + [ + 11.2703548, + 49.133162401 + ], + [ + 11.2705082, + 49.132766501 + ], + [ + 11.2707069, + 49.132244101 + ], + [ + 11.2709941, + 49.131582801 + ], + [ + 11.2714491, + 49.130656801 + ], + [ + 11.2728227, + 49.128192001 + ], + [ + 11.2729082, + 49.128038401 + ], + [ + 11.2729268, + 49.128003601 + ], + [ + 11.2730576, + 49.127762101 + ], + [ + 11.273778, + 49.126431201 + ], + [ + 11.2748609, + 49.124492601 + ], + [ + 11.2750985, + 49.124054901 + ], + [ + 11.2753148, + 49.123672301 + ], + [ + 11.2760131, + 49.122384001 + ], + [ + 11.2763649, + 49.121605401 + ], + [ + 11.2765853, + 49.121040601 + ], + [ + 11.2767604, + 49.120515301 + ], + [ + 11.2769586, + 49.119846501 + ], + [ + 11.2775205, + 49.117765001 + ], + [ + 11.2786043, + 49.113785401 + ], + [ + 11.2787337, + 49.113320201 + ], + [ + 11.2788665, + 49.112850301 + ], + [ + 11.2790568, + 49.112227201 + ], + [ + 11.279194, + 49.111843101 + ], + [ + 11.279322, + 49.111519701 + ], + [ + 11.2795829, + 49.110941601 + ], + [ + 11.2797747, + 49.110539701 + ], + [ + 11.2800566, + 49.110001901 + ], + [ + 11.2804593, + 49.109318801 + ], + [ + 11.2808106, + 49.108781401 + ], + [ + 11.2819741, + 49.107063101 + ], + [ + 11.282635, + 49.105928001 + ], + [ + 11.2828683, + 49.105461901 + ], + [ + 11.2830558, + 49.105036501 + ], + [ + 11.2832216, + 49.104642801 + ], + [ + 11.2833818, + 49.104219201 + ], + [ + 11.2834922, + 49.103899601 + ], + [ + 11.284155, + 49.101350301 + ], + [ + 11.2846077, + 49.099603601 + ], + [ + 11.2850025, + 49.098102601 + ], + [ + 11.2855039, + 49.096196401 + ], + [ + 11.2860556, + 49.093969801 + ], + [ + 11.2869243, + 49.090611701 + ], + [ + 11.2869869, + 49.090356001 + ], + [ + 11.2870742, + 49.089999101 + ], + [ + 11.2874957, + 49.088385101 + ], + [ + 11.288188, + 49.085661801 + ], + [ + 11.2883112, + 49.085181901 + ], + [ + 11.2885338, + 49.084372101 + ], + [ + 11.2886843, + 49.083905401 + ], + [ + 11.2888134, + 49.083532301 + ], + [ + 11.2890385, + 49.082954501 + ], + [ + 11.2893145, + 49.082349501 + ], + [ + 11.2895725, + 49.081829701 + ], + [ + 11.2898904, + 49.081264901 + ], + [ + 11.2904821, + 49.080345101 + ], + [ + 11.2915013, + 49.079038001 + ], + [ + 11.291918, + 49.078537801 + ], + [ + 11.2922845, + 49.078145501 + ], + [ + 11.292844, + 49.077582401 + ], + [ + 11.2936187, + 49.076885901 + ], + [ + 11.2941175, + 49.076472601 + ], + [ + 11.2949823, + 49.075772801 + ], + [ + 11.2957236, + 49.075276401 + ], + [ + 11.296423, + 49.074812201 + ], + [ + 11.2971548, + 49.074365701 + ], + [ + 11.2980674, + 49.073858401 + ], + [ + 11.299524, + 49.073104501 + ], + [ + 11.3026377, + 49.071562901 + ], + [ + 11.3065996, + 49.069587101 + ], + [ + 11.3098564, + 49.067955701 + ], + [ + 11.312514, + 49.066632601 + ], + [ + 11.3128774, + 49.066446501 + ], + [ + 11.3164857, + 49.064665201 + ], + [ + 11.3171053, + 49.064357801 + ], + [ + 11.3197572, + 49.063031201 + ], + [ + 11.3203993, + 49.062671801 + ], + [ + 11.3210669, + 49.062278401 + ], + [ + 11.3219655, + 49.061676201 + ], + [ + 11.3226728, + 49.061131701 + ], + [ + 11.323242, + 49.060652401 + ], + [ + 11.3237786, + 49.060165101 + ], + [ + 11.3244744, + 49.059425001 + ], + [ + 11.3247427, + 49.059146001 + ], + [ + 11.3250616, + 49.058750401 + ], + [ + 11.3255098, + 49.058139601 + ], + [ + 11.3261751, + 49.057185201 + ], + [ + 11.3285354, + 49.053843801 + ], + [ + 11.3293024, + 49.052817901 + ], + [ + 11.3299526, + 49.052104201 + ], + [ + 11.3308232, + 49.051285001 + ], + [ + 11.3314637, + 49.050762601 + ], + [ + 11.3324787, + 49.050007001 + ], + [ + 11.3333201, + 49.049388901 + ], + [ + 11.3335954, + 49.049186601 + ], + [ + 11.3338436, + 49.048998601 + ], + [ + 11.334112, + 49.048792401 + ], + [ + 11.3373442, + 49.046403601 + ], + [ + 11.3385228, + 49.045533901 + ], + [ + 11.3391705, + 49.045120101 + ], + [ + 11.3398569, + 49.044740201 + ], + [ + 11.3403847, + 49.044473801 + ], + [ + 11.3406604, + 49.044346201 + ], + [ + 11.3408964, + 49.044248101 + ], + [ + 11.3413849, + 49.044045101 + ], + [ + 11.3419783, + 49.043824801 + ], + [ + 11.3427744, + 49.043561401 + ], + [ + 11.3433116, + 49.043408401 + ], + [ + 11.3435346, + 49.043353701 + ], + [ + 11.3441631, + 49.043195401 + ], + [ + 11.3442294, + 49.043179501 + ], + [ + 11.3456858, + 49.042829901 + ], + [ + 11.3463739, + 49.042670101 + ], + [ + 11.3470314, + 49.042517801 + ], + [ + 11.3488436, + 49.042066001 + ], + [ + 11.349008287, + 49.042027674 + ] + ] + } + }, + { + "identifier": "2023-000427--vi-bs.2025-05-24_00-00-00-000.devi-zus.2023-09-25_00-00-00-000.f_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.351346178771344,11.203846071863918,49.357626284165676,11.203055630311255", + "point": "49.351346178771344,11.203846071863918", + "startLcPosition": "43", + "impact": { + "lower": "N\u00fcrnberg-Ost", + "upper": "N\u00fcrnberg/Feucht", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Halle/Leipzig", + "title": "A9 | N\u00fcrnberg/Feucht - N\u00fcrnberg-Ost", + "startTimestamp": "2025-05-24T00:00:00+02:00", + "coordinate": { + "lat": 49.351346178771344, + "long": 11.203846071863918 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.05.25 um 00:00 Uhr", + "Ende: 01.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.26)", + "", + "A9: M\u00fcnchen -> Halle/Leipzig, zwischen 0.2 km hinter AD N\u00fcrnberg/Feucht und 4.3 km vor AK N\u00fcrnberg-Ost", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A9 Br\u00fcckenneubau Schwarzachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.203846072, + 49.351346179 + ], + [ + 11.2038458, + 49.351367301 + ], + [ + 11.2037843, + 49.352006601 + ], + [ + 11.2035927, + 49.353299601 + ], + [ + 11.2035006, + 49.354080301 + ], + [ + 11.2034041, + 49.354869901 + ], + [ + 11.2033253, + 49.355467501 + ], + [ + 11.20305563, + 49.357626284 + ] + ] + } + }, + { + "identifier": "2023-000427--vi-bs.2025-05-24_00-00-00-000.devi-zus.2023-09-25_00-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.3576139517481,11.202826858693529,49.351340812322704,11.203571099696743", + "point": "49.3576139517481,11.202826858693529", + "startLcPosition": "45", + "impact": { + "lower": "N\u00fcrnberg/Feucht", + "upper": "N\u00fcrnberg-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> M\u00fcnchen", + "title": "A9 | N\u00fcrnberg-Ost - N\u00fcrnberg/Feucht", + "startTimestamp": "2025-05-24T00:00:00+02:00", + "coordinate": { + "lat": 49.3576139517481, + "long": 11.202826858693529 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.05.25 um 00:00 Uhr", + "Ende: 01.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.26)", + "", + "A9: Halle/Leipzig -> M\u00fcnchen, zwischen 4.3 km hinter AK N\u00fcrnberg-Ost und 0.2 km vor AD N\u00fcrnberg/Feucht", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A9 Br\u00fcckenneubau Schwarzachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.202826859, + 49.357613952 + ], + [ + 11.2031069, + 49.355423601 + ], + [ + 11.2031941, + 49.354788201 + ], + [ + 11.2032887, + 49.354036101 + ], + [ + 11.2033729, + 49.353081101 + ], + [ + 11.2034777, + 49.352237701 + ], + [ + 11.2035469, + 49.351621701 + ], + [ + 11.2035711, + 49.351340812 + ] + ] + } + }, + { + "identifier": "2025-048806--vi-bs.2026-04-08_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.82967744254054,11.499537260730026,49.816427269616,11.497216418726184", + "point": "49.82967744254054,11.499537260730026", + "startLcPosition": "61", + "impact": { + "lower": "Fr\u00e4nkische Schweiz", + "upper": "Sophienberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Sophienberg - Fr\u00e4nkische Schweiz", + "startTimestamp": "2026-04-08T00:00:00+02:00", + "coordinate": { + "lat": 49.82967744254054, + "long": 11.499537260730026 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 00:00 Uhr", + "Ende: 13.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.11.26)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 11.7 km hinter Sophienberg und 8.6 km vor Fr\u00e4nkische Schweiz", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A9 Bauwerksarbeiten BW 323a" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.499537261, + 49.829677443 + ], + [ + 11.4995115, + 49.829540101 + ], + [ + 11.4994753, + 49.829238401 + ], + [ + 11.4994389, + 49.828809501 + ], + [ + 11.4994373, + 49.828434201 + ], + [ + 11.4994348, + 49.827930701 + ], + [ + 11.499434, + 49.827761601 + ], + [ + 11.4994471, + 49.826947001 + ], + [ + 11.4994095, + 49.826436001 + ], + [ + 11.4993753, + 49.826056501 + ], + [ + 11.4993146, + 49.825686501 + ], + [ + 11.4991838, + 49.824996701 + ], + [ + 11.4990597, + 49.824590401 + ], + [ + 11.4989852, + 49.824348501 + ], + [ + 11.4987861, + 49.823863401 + ], + [ + 11.498666, + 49.823619601 + ], + [ + 11.498501, + 49.823284601 + ], + [ + 11.4979636, + 49.822200501 + ], + [ + 11.4976526, + 49.821612501 + ], + [ + 11.4974921, + 49.821282701 + ], + [ + 11.4972903, + 49.820797801 + ], + [ + 11.4972014, + 49.820532601 + ], + [ + 11.4970705, + 49.820112001 + ], + [ + 11.4969964, + 49.819732001 + ], + [ + 11.4969272, + 49.819327501 + ], + [ + 11.4968993, + 49.818903701 + ], + [ + 11.4968905, + 49.818034801 + ], + [ + 11.4969567, + 49.817404301 + ], + [ + 11.4970871, + 49.816829801 + ], + [ + 11.497216419, + 49.81642727 + ] + ] + } + }, + { + "identifier": "2026-015285--vi-bs.2026-04-13_16-30-00-000.devi-zus.2026-04-13_16-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.943268413126425,11.606014523833442,49.978883809585724,11.60708652140517", + "point": "49.943268413126425,11.606014523833442", + "startLcPosition": "62", + "impact": { + "lower": "Bindlacher Berg", + "upper": "Bayreuth-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Bayreuth-S\u00fcd - Bindlacher Berg", + "coordinate": { + "lat": 49.943268413126425, + "long": 11.606014523833442 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 18:30 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 18:30 bis zum 15.04.26 06:00 Uhr.", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 1.7 km hinter AS Bayreuth-S\u00fcd und 4.1 km vor AS Bindlacher Berg", + "", + "L\u00e4nge: 3.99 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A9 von Bayreuth-S\u00fcd (AS) nach Bindlacher Berg (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.606014524, + 49.943268413 + ], + [ + 11.6062518, + 49.944129401 + ], + [ + 11.6063876, + 49.944635401 + ], + [ + 11.6066759, + 49.945721701 + ], + [ + 11.6068953, + 49.946544101 + ], + [ + 11.6071646, + 49.947574401 + ], + [ + 11.607212, + 49.947739401 + ], + [ + 11.6074487, + 49.948646501 + ], + [ + 11.6075748, + 49.949234101 + ], + [ + 11.607669, + 49.949768501 + ], + [ + 11.6077112, + 49.950031501 + ], + [ + 11.6077604, + 49.950266701 + ], + [ + 11.6078069, + 49.950704701 + ], + [ + 11.6078471, + 49.951197901 + ], + [ + 11.6078666, + 49.951564501 + ], + [ + 11.6078683, + 49.951863201 + ], + [ + 11.6078588, + 49.952283801 + ], + [ + 11.6078123, + 49.952844001 + ], + [ + 11.6077764, + 49.953245401 + ], + [ + 11.6077321, + 49.953575301 + ], + [ + 11.6076289, + 49.954037101 + ], + [ + 11.6074517, + 49.954779201 + ], + [ + 11.6072409, + 49.955561001 + ], + [ + 11.6069706, + 49.956432701 + ], + [ + 11.6068737, + 49.956768001 + ], + [ + 11.6067523, + 49.957200901 + ], + [ + 11.6063506, + 49.958535401 + ], + [ + 11.6062008, + 49.959061501 + ], + [ + 11.6060641, + 49.959527001 + ], + [ + 11.605974, + 49.959884001 + ], + [ + 11.6058674, + 49.960436201 + ], + [ + 11.6057703, + 49.960998101 + ], + [ + 11.6056223, + 49.961855001 + ], + [ + 11.6055437, + 49.962402001 + ], + [ + 11.6054558, + 49.963310601 + ], + [ + 11.6054183, + 49.963784801 + ], + [ + 11.6053862, + 49.964485401 + ], + [ + 11.6053748, + 49.964792501 + ], + [ + 11.6053888, + 49.965452601 + ], + [ + 11.6054111, + 49.966506401 + ], + [ + 11.605446, + 49.966983701 + ], + [ + 11.6054877, + 49.967479001 + ], + [ + 11.6055369, + 49.967936901 + ], + [ + 11.6058225, + 49.969980801 + ], + [ + 11.6061183, + 49.972097401 + ], + [ + 11.6061685, + 49.972484601 + ], + [ + 11.6063758, + 49.973877301 + ], + [ + 11.6064599, + 49.974477101 + ], + [ + 11.6066039, + 49.975503501 + ], + [ + 11.6067231, + 49.976321801 + ], + [ + 11.6067838, + 49.976758201 + ], + [ + 11.6069656, + 49.978031601 + ], + [ + 11.607086521, + 49.97888381 + ] + ] + } + }, + { + "identifier": "2026-015285--vi-bs.2026-04-13_16-30-00-000.devi-zus.2026-04-13_16-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.943268413126425,11.606014523833442,49.978883809585724,11.60708652140517", + "point": "49.943268413126425,11.606014523833442", + "startLcPosition": "62", + "impact": { + "lower": "Bindlacher Berg", + "upper": "Bayreuth-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Bayreuth-S\u00fcd - Bindlacher Berg", + "coordinate": { + "lat": 49.943268413126425, + "long": 11.606014523833442 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 16:30 bis 18:30 Uhr", + "14.04.26 von 16:30 bis 18:30 Uhr", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 1.7 km hinter AS Bayreuth-S\u00fcd und 4.1 km vor AS Bindlacher Berg", + "", + "L\u00e4nge: 3.99 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A9 von Bayreuth-S\u00fcd (AS) nach Bindlacher Berg (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.606014524, + 49.943268413 + ], + [ + 11.6062518, + 49.944129401 + ], + [ + 11.6063876, + 49.944635401 + ], + [ + 11.6066759, + 49.945721701 + ], + [ + 11.6068953, + 49.946544101 + ], + [ + 11.6071646, + 49.947574401 + ], + [ + 11.607212, + 49.947739401 + ], + [ + 11.6074487, + 49.948646501 + ], + [ + 11.6075748, + 49.949234101 + ], + [ + 11.607669, + 49.949768501 + ], + [ + 11.6077112, + 49.950031501 + ], + [ + 11.6077604, + 49.950266701 + ], + [ + 11.6078069, + 49.950704701 + ], + [ + 11.6078471, + 49.951197901 + ], + [ + 11.6078666, + 49.951564501 + ], + [ + 11.6078683, + 49.951863201 + ], + [ + 11.6078588, + 49.952283801 + ], + [ + 11.6078123, + 49.952844001 + ], + [ + 11.6077764, + 49.953245401 + ], + [ + 11.6077321, + 49.953575301 + ], + [ + 11.6076289, + 49.954037101 + ], + [ + 11.6074517, + 49.954779201 + ], + [ + 11.6072409, + 49.955561001 + ], + [ + 11.6069706, + 49.956432701 + ], + [ + 11.6068737, + 49.956768001 + ], + [ + 11.6067523, + 49.957200901 + ], + [ + 11.6063506, + 49.958535401 + ], + [ + 11.6062008, + 49.959061501 + ], + [ + 11.6060641, + 49.959527001 + ], + [ + 11.605974, + 49.959884001 + ], + [ + 11.6058674, + 49.960436201 + ], + [ + 11.6057703, + 49.960998101 + ], + [ + 11.6056223, + 49.961855001 + ], + [ + 11.6055437, + 49.962402001 + ], + [ + 11.6054558, + 49.963310601 + ], + [ + 11.6054183, + 49.963784801 + ], + [ + 11.6053862, + 49.964485401 + ], + [ + 11.6053748, + 49.964792501 + ], + [ + 11.6053888, + 49.965452601 + ], + [ + 11.6054111, + 49.966506401 + ], + [ + 11.605446, + 49.966983701 + ], + [ + 11.6054877, + 49.967479001 + ], + [ + 11.6055369, + 49.967936901 + ], + [ + 11.6058225, + 49.969980801 + ], + [ + 11.6061183, + 49.972097401 + ], + [ + 11.6061685, + 49.972484601 + ], + [ + 11.6063758, + 49.973877301 + ], + [ + 11.6064599, + 49.974477101 + ], + [ + 11.6066039, + 49.975503501 + ], + [ + 11.6067231, + 49.976321801 + ], + [ + 11.6067838, + 49.976758201 + ], + [ + 11.6069656, + 49.978031601 + ], + [ + 11.607086521, + 49.97888381 + ] + ] + } + }, + { + "identifier": "2026-015285--vi-bs.2026-04-13_16-30-00-000.devi-zus.2026-04-13_16-30-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.97889716476171,11.60686244653998,49.943293335853525,11.605796660863442", + "point": "49.97889716476171,11.60686244653998", + "startLcPosition": "65", + "impact": { + "lower": "Bayreuth-S\u00fcd", + "upper": "Bindlacher Berg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bindlacher Berg - Bayreuth-S\u00fcd", + "coordinate": { + "lat": 49.97889716476171, + "long": 11.60686244653998 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 18:30 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 18:30 bis zum 15.04.26 06:00 Uhr.", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 4.1 km hinter AS Bindlacher Berg und 1.7 km vor AS Bayreuth-S\u00fcd", + "", + "L\u00e4nge: 3.99 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A9 von Bayreuth-S\u00fcd (AS) nach Bindlacher Berg (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.606862447, + 49.978897165 + ], + [ + 11.6067374, + 49.978034701 + ], + [ + 11.6066189, + 49.977211801 + ], + [ + 11.6064981, + 49.976319801 + ], + [ + 11.6063643, + 49.975499701 + ], + [ + 11.6063178, + 49.975093401 + ], + [ + 11.6062996, + 49.974938501 + ], + [ + 11.6062329, + 49.974471501 + ], + [ + 11.6061487, + 49.973881401 + ], + [ + 11.6059453, + 49.972488601 + ], + [ + 11.6058909, + 49.972090001 + ], + [ + 11.6055943, + 49.969999901 + ], + [ + 11.6053081, + 49.967898301 + ], + [ + 11.6052663, + 49.967496501 + ], + [ + 11.6052149, + 49.966982401 + ], + [ + 11.6051914, + 49.966551601 + ], + [ + 11.6051708, + 49.966089401 + ], + [ + 11.6051568, + 49.965737501 + ], + [ + 11.6051541, + 49.965460501 + ], + [ + 11.6051576, + 49.964952401 + ], + [ + 11.6051649, + 49.964475601 + ], + [ + 11.6051708, + 49.964150301 + ], + [ + 11.605213, + 49.963607201 + ], + [ + 11.6052367, + 49.963271101 + ], + [ + 11.6052553, + 49.963041701 + ], + [ + 11.6053032, + 49.962564101 + ], + [ + 11.6053401, + 49.962269601 + ], + [ + 11.6053531, + 49.962165901 + ], + [ + 11.6054464, + 49.961545201 + ], + [ + 11.6055397, + 49.960999401 + ], + [ + 11.605638, + 49.960423801 + ], + [ + 11.6057295, + 49.960061801 + ], + [ + 11.6058586, + 49.959491001 + ], + [ + 11.6061996, + 49.958292101 + ], + [ + 11.606632, + 49.956857901 + ], + [ + 11.6067506, + 49.956415901 + ], + [ + 11.6067814, + 49.956301301 + ], + [ + 11.6069997, + 49.955642401 + ], + [ + 11.6071954, + 49.954943301 + ], + [ + 11.607232, + 49.954812401 + ], + [ + 11.6074079, + 49.954076201 + ], + [ + 11.6075069, + 49.953560701 + ], + [ + 11.6075614, + 49.953242501 + ], + [ + 11.6076003, + 49.952841901 + ], + [ + 11.6076332, + 49.952583701 + ], + [ + 11.6076515, + 49.952290601 + ], + [ + 11.6076557, + 49.952224101 + ], + [ + 11.6076641, + 49.951784901 + ], + [ + 11.607661, + 49.951553001 + ], + [ + 11.6076401, + 49.951151701 + ], + [ + 11.6075974, + 49.950683201 + ], + [ + 11.6075236, + 49.950125601 + ], + [ + 11.607492, + 49.949833101 + ], + [ + 11.6073705, + 49.949202001 + ], + [ + 11.6072224, + 49.948597701 + ], + [ + 11.6070965, + 49.948107801 + ], + [ + 11.6069619, + 49.947614701 + ], + [ + 11.6066667, + 49.946524701 + ], + [ + 11.6064441, + 49.945692601 + ], + [ + 11.6061713, + 49.944657101 + ], + [ + 11.6060273, + 49.944136401 + ], + [ + 11.605796661, + 49.943293336 + ] + ] + } + }, + { + "identifier": "2026-015285--vi-bs.2026-04-13_16-30-00-000.devi-zus.2026-04-13_16-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.97889716476171,11.60686244653998,49.943293335853525,11.605796660863442", + "point": "49.97889716476171,11.60686244653998", + "startLcPosition": "65", + "impact": { + "lower": "Bayreuth-S\u00fcd", + "upper": "Bindlacher Berg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bindlacher Berg - Bayreuth-S\u00fcd", + "coordinate": { + "lat": 49.97889716476171, + "long": 11.60686244653998 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 16:30 bis 18:30 Uhr", + "14.04.26 von 16:30 bis 18:30 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 4.1 km hinter AS Bindlacher Berg und 1.7 km vor AS Bayreuth-S\u00fcd", + "", + "L\u00e4nge: 3.99 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A9 von Bayreuth-S\u00fcd (AS) nach Bindlacher Berg (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.606862447, + 49.978897165 + ], + [ + 11.6067374, + 49.978034701 + ], + [ + 11.6066189, + 49.977211801 + ], + [ + 11.6064981, + 49.976319801 + ], + [ + 11.6063643, + 49.975499701 + ], + [ + 11.6063178, + 49.975093401 + ], + [ + 11.6062996, + 49.974938501 + ], + [ + 11.6062329, + 49.974471501 + ], + [ + 11.6061487, + 49.973881401 + ], + [ + 11.6059453, + 49.972488601 + ], + [ + 11.6058909, + 49.972090001 + ], + [ + 11.6055943, + 49.969999901 + ], + [ + 11.6053081, + 49.967898301 + ], + [ + 11.6052663, + 49.967496501 + ], + [ + 11.6052149, + 49.966982401 + ], + [ + 11.6051914, + 49.966551601 + ], + [ + 11.6051708, + 49.966089401 + ], + [ + 11.6051568, + 49.965737501 + ], + [ + 11.6051541, + 49.965460501 + ], + [ + 11.6051576, + 49.964952401 + ], + [ + 11.6051649, + 49.964475601 + ], + [ + 11.6051708, + 49.964150301 + ], + [ + 11.605213, + 49.963607201 + ], + [ + 11.6052367, + 49.963271101 + ], + [ + 11.6052553, + 49.963041701 + ], + [ + 11.6053032, + 49.962564101 + ], + [ + 11.6053401, + 49.962269601 + ], + [ + 11.6053531, + 49.962165901 + ], + [ + 11.6054464, + 49.961545201 + ], + [ + 11.6055397, + 49.960999401 + ], + [ + 11.605638, + 49.960423801 + ], + [ + 11.6057295, + 49.960061801 + ], + [ + 11.6058586, + 49.959491001 + ], + [ + 11.6061996, + 49.958292101 + ], + [ + 11.606632, + 49.956857901 + ], + [ + 11.6067506, + 49.956415901 + ], + [ + 11.6067814, + 49.956301301 + ], + [ + 11.6069997, + 49.955642401 + ], + [ + 11.6071954, + 49.954943301 + ], + [ + 11.607232, + 49.954812401 + ], + [ + 11.6074079, + 49.954076201 + ], + [ + 11.6075069, + 49.953560701 + ], + [ + 11.6075614, + 49.953242501 + ], + [ + 11.6076003, + 49.952841901 + ], + [ + 11.6076332, + 49.952583701 + ], + [ + 11.6076515, + 49.952290601 + ], + [ + 11.6076557, + 49.952224101 + ], + [ + 11.6076641, + 49.951784901 + ], + [ + 11.607661, + 49.951553001 + ], + [ + 11.6076401, + 49.951151701 + ], + [ + 11.6075974, + 49.950683201 + ], + [ + 11.6075236, + 49.950125601 + ], + [ + 11.607492, + 49.949833101 + ], + [ + 11.6073705, + 49.949202001 + ], + [ + 11.6072224, + 49.948597701 + ], + [ + 11.6070965, + 49.948107801 + ], + [ + 11.6069619, + 49.947614701 + ], + [ + 11.6066667, + 49.946524701 + ], + [ + 11.6064441, + 49.945692601 + ], + [ + 11.6061713, + 49.944657101 + ], + [ + 11.6060273, + 49.944136401 + ], + [ + 11.605796661, + 49.943293336 + ] + ] + } + }, + { + "identifier": "2023-000423--vi-bs.2026-03-01_00-00-00-000.devi-zus.2023-09-04_00-00-00-000.f_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.969935318592334,11.605585504633536,49.94595025794497,11.606513026466255", + "point": "49.969935318592334,11.605585504633536", + "startLcPosition": "65", + "impact": { + "lower": "Bayreuth-S\u00fcd", + "upper": "Bindlacher Berg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bindlacher Berg - Bayreuth-S\u00fcd", + "startTimestamp": "2026-03-01T00:00:00+01:00", + "coordinate": { + "lat": 49.969935318592334, + "long": 11.605585504633536 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.26 um 00:00 Uhr", + "Ende: 02.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.08.27)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 5.1 km hinter AS Bindlacher Berg und 2.0 km vor AS Bayreuth-S\u00fcd", + "", + "L\u00e4nge: 2.69 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A9 Br\u00fcckenneubau Hochbr\u00fccke Bayreuth" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.605585505, + 49.969935319 + ], + [ + 11.6053081, + 49.967898301 + ], + [ + 11.6052663, + 49.967496501 + ], + [ + 11.6052149, + 49.966982401 + ], + [ + 11.6051914, + 49.966551601 + ], + [ + 11.6051708, + 49.966089401 + ], + [ + 11.6051568, + 49.965737501 + ], + [ + 11.6051541, + 49.965460501 + ], + [ + 11.6051576, + 49.964952401 + ], + [ + 11.6051649, + 49.964475601 + ], + [ + 11.6051708, + 49.964150301 + ], + [ + 11.605213, + 49.963607201 + ], + [ + 11.6052367, + 49.963271101 + ], + [ + 11.6052553, + 49.963041701 + ], + [ + 11.6053032, + 49.962564101 + ], + [ + 11.6053401, + 49.962269601 + ], + [ + 11.6053531, + 49.962165901 + ], + [ + 11.6054464, + 49.961545201 + ], + [ + 11.6055397, + 49.960999401 + ], + [ + 11.605638, + 49.960423801 + ], + [ + 11.6057295, + 49.960061801 + ], + [ + 11.6058586, + 49.959491001 + ], + [ + 11.6061996, + 49.958292101 + ], + [ + 11.606632, + 49.956857901 + ], + [ + 11.6067506, + 49.956415901 + ], + [ + 11.6067814, + 49.956301301 + ], + [ + 11.6069997, + 49.955642401 + ], + [ + 11.6071954, + 49.954943301 + ], + [ + 11.607232, + 49.954812401 + ], + [ + 11.6074079, + 49.954076201 + ], + [ + 11.6075069, + 49.953560701 + ], + [ + 11.6075614, + 49.953242501 + ], + [ + 11.6076003, + 49.952841901 + ], + [ + 11.6076332, + 49.952583701 + ], + [ + 11.6076515, + 49.952290601 + ], + [ + 11.6076557, + 49.952224101 + ], + [ + 11.6076641, + 49.951784901 + ], + [ + 11.607661, + 49.951553001 + ], + [ + 11.6076401, + 49.951151701 + ], + [ + 11.6075974, + 49.950683201 + ], + [ + 11.6075236, + 49.950125601 + ], + [ + 11.607492, + 49.949833101 + ], + [ + 11.6073705, + 49.949202001 + ], + [ + 11.6072224, + 49.948597701 + ], + [ + 11.6070965, + 49.948107801 + ], + [ + 11.6069619, + 49.947614701 + ], + [ + 11.6066667, + 49.946524701 + ], + [ + 11.606513026, + 49.945950258 + ] + ] + } + }, + { + "identifier": "2025-048792--vi-bs.2026-04-08_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_005.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.02529832262125,11.605338259650908,50.06240741834897,11.618690384609875", + "point": "50.02529832262125,11.605338259650908", + "startLcPosition": "66", + "impact": { + "lower": "Marktschorgast", + "upper": "Bayreuth/Kulmbach", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Bayreuth/Kulmbach - Marktschorgast", + "startTimestamp": "2026-04-08T00:00:00+02:00", + "coordinate": { + "lat": 50.02529832262125, + "long": 11.605338259650908 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 00:00 Uhr", + "Ende: 25.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.11.26)", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen AD Bayreuth/Kulmbach und 4.1 km vor AS Marktschorgast", + "", + "L\u00e4nge: 4.29 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A9 Erneuerung an der Decke D292" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.60533826, + 50.025298323 + ], + [ + 11.6053504, + 50.025344301 + ], + [ + 11.6055317, + 50.026032001 + ], + [ + 11.6057147, + 50.026721101 + ], + [ + 11.6058527, + 50.027250301 + ], + [ + 11.6062024, + 50.028591101 + ], + [ + 11.6064976, + 50.029728801 + ], + [ + 11.6067416, + 50.030652301 + ], + [ + 11.6068206, + 50.030961701 + ], + [ + 11.6069096, + 50.031291901 + ], + [ + 11.6069666, + 50.031505201 + ], + [ + 11.6070734, + 50.031905101 + ], + [ + 11.6071891, + 50.032369001 + ], + [ + 11.6074004, + 50.033074101 + ], + [ + 11.6075933, + 50.033640201 + ], + [ + 11.6078238, + 50.034181901 + ], + [ + 11.6081518, + 50.034812201 + ], + [ + 11.6082676, + 50.035005901 + ], + [ + 11.608387, + 50.035201701 + ], + [ + 11.6086713, + 50.035610301 + ], + [ + 11.609323, + 50.036435101 + ], + [ + 11.609748, + 50.036918901 + ], + [ + 11.6101856, + 50.037398201 + ], + [ + 11.6106325, + 50.037874601 + ], + [ + 11.6110626, + 50.038356101 + ], + [ + 11.6116981, + 50.039105301 + ], + [ + 11.6119922, + 50.039473901 + ], + [ + 11.6121213, + 50.039635601 + ], + [ + 11.6128586, + 50.040607001 + ], + [ + 11.6133999, + 50.041366401 + ], + [ + 11.6139266, + 50.042152501 + ], + [ + 11.6144013, + 50.042924001 + ], + [ + 11.6147791, + 50.043555601 + ], + [ + 11.6150798, + 50.044100501 + ], + [ + 11.6155438, + 50.044994501 + ], + [ + 11.6158464, + 50.045614101 + ], + [ + 11.6162368, + 50.046495001 + ], + [ + 11.6165814, + 50.047345801 + ], + [ + 11.6167341, + 50.047754301 + ], + [ + 11.616942, + 50.048352701 + ], + [ + 11.617181, + 50.049096001 + ], + [ + 11.6174289, + 50.049977301 + ], + [ + 11.6176226, + 50.050784401 + ], + [ + 11.6177626, + 50.051382601 + ], + [ + 11.6178615, + 50.051966101 + ], + [ + 11.6179818, + 50.052727601 + ], + [ + 11.6179954, + 50.052797701 + ], + [ + 11.618054, + 50.053270601 + ], + [ + 11.6181234, + 50.054017101 + ], + [ + 11.6181609, + 50.054489601 + ], + [ + 11.6181713, + 50.054676401 + ], + [ + 11.618198, + 50.055425201 + ], + [ + 11.6181956, + 50.056878301 + ], + [ + 11.6181764, + 50.057211201 + ], + [ + 11.6181497, + 50.057675801 + ], + [ + 11.6180759, + 50.058715501 + ], + [ + 11.6180569, + 50.059133401 + ], + [ + 11.6180721, + 50.059805301 + ], + [ + 11.6181051, + 50.060241801 + ], + [ + 11.6182236, + 50.060975101 + ], + [ + 11.6183019, + 50.061276101 + ], + [ + 11.6183861, + 50.061599601 + ], + [ + 11.6186083, + 50.062220901 + ], + [ + 11.618690385, + 50.062407418 + ] + ] + } + }, + { + "identifier": "2025-048792--vi-bs.2026-04-08_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_005.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.06244555906478,11.618480700400763,50.02532213536046,11.605126555113", + "point": "50.06244555906478,11.618480700400763", + "startLcPosition": "68", + "impact": { + "lower": "Bayreuth/Kulmbach", + "upper": "Marktschorgast", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Marktschorgast - Bayreuth/Kulmbach", + "startTimestamp": "2026-04-08T00:00:00+02:00", + "coordinate": { + "lat": 50.06244555906478, + "long": 11.618480700400763 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 00:00 Uhr", + "Ende: 25.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.11.26)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 4.2 km hinter AS Marktschorgast und AD Bayreuth/Kulmbach", + "", + "L\u00e4nge: 4.29 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A9 Erneuerung an der Decke D292" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.6184807, + 50.062445559 + ], + [ + 11.6183777, + 50.062210201 + ], + [ + 11.6181751, + 50.061621101 + ], + [ + 11.6180967, + 50.061317001 + ], + [ + 11.6180096, + 50.060979001 + ], + [ + 11.6178942, + 50.060302301 + ], + [ + 11.617854, + 50.059795201 + ], + [ + 11.6178426, + 50.059155001 + ], + [ + 11.6178623, + 50.058726201 + ], + [ + 11.6179311, + 50.057691901 + ], + [ + 11.6179704, + 50.057195401 + ], + [ + 11.6179774, + 50.057065001 + ], + [ + 11.6179966, + 50.056464701 + ], + [ + 11.6179992, + 50.055987301 + ], + [ + 11.617973, + 50.055324201 + ], + [ + 11.61795, + 50.054446101 + ], + [ + 11.6178701, + 50.053493301 + ], + [ + 11.6178454, + 50.053258001 + ], + [ + 11.6177737, + 50.052754601 + ], + [ + 11.6176601, + 50.051988901 + ], + [ + 11.6175497, + 50.051406801 + ], + [ + 11.6173649, + 50.050567601 + ], + [ + 11.6172195, + 50.049990501 + ], + [ + 11.6169728, + 50.049113801 + ], + [ + 11.6167356, + 50.048369401 + ], + [ + 11.6166691, + 50.048178401 + ], + [ + 11.6165325, + 50.047785101 + ], + [ + 11.6163774, + 50.047373301 + ], + [ + 11.6160406, + 50.046541201 + ], + [ + 11.6156604, + 50.045694501 + ], + [ + 11.6153325, + 50.045017101 + ], + [ + 11.6148825, + 50.044148401 + ], + [ + 11.6145597, + 50.043568201 + ], + [ + 11.6141976, + 50.042965201 + ], + [ + 11.6137163, + 50.042189101 + ], + [ + 11.6132006, + 50.041413601 + ], + [ + 11.6126549, + 50.040647101 + ], + [ + 11.6119239, + 50.039692801 + ], + [ + 11.6117892, + 50.039523101 + ], + [ + 11.611478, + 50.039130901 + ], + [ + 11.6108747, + 50.038423001 + ], + [ + 11.6107756, + 50.038312001 + ], + [ + 11.6104425, + 50.037939001 + ], + [ + 11.6099968, + 50.037462601 + ], + [ + 11.6095602, + 50.036978801 + ], + [ + 11.6091292, + 50.036490501 + ], + [ + 11.6084804, + 50.035673001 + ], + [ + 11.6082036, + 50.035275601 + ], + [ + 11.6080742, + 50.035071001 + ], + [ + 11.6079447, + 50.034851401 + ], + [ + 11.6076232, + 50.034241701 + ], + [ + 11.6073919, + 50.033685801 + ], + [ + 11.6071841, + 50.033098701 + ], + [ + 11.6069973, + 50.032449701 + ], + [ + 11.6068577, + 50.031915201 + ], + [ + 11.6067442, + 50.031467301 + ], + [ + 11.6065991, + 50.030909801 + ], + [ + 11.6062843, + 50.029730701 + ], + [ + 11.6059864, + 50.028602501 + ], + [ + 11.6056404, + 50.027279501 + ], + [ + 11.6056202, + 50.027202101 + ], + [ + 11.6055001, + 50.026737901 + ], + [ + 11.6053202, + 50.026058501 + ], + [ + 11.605141, + 50.025374101 + ], + [ + 11.605126555, + 50.025322135 + ] + ] + } + }, + { + "identifier": "2026-017225--vi-fbm.2026-04-07_20-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.07219408683057,11.630491959619965,50.02532213536046,11.605126555113", + "point": "50.07219408683057,11.630491959619965", + "startLcPosition": "68", + "impact": { + "lower": "Bayreuth/Kulmbach", + "upper": "Marktschorgast", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Marktschorgast - Bayreuth/Kulmbach", + "coordinate": { + "lat": 50.07219408683057, + "long": 11.630491959619965 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 21:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 22:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 2.8 km hinter AS Marktschorgast und AD Bayreuth/Kulmbach", + "", + "L\u00e4nge: 5.69 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A9 von Marktschorgast (AS) nach BayreuthKulmbach (AD) Baustelleneinrichtung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.63049196, + 50.072194087 + ], + [ + 11.6304024, + 50.072159901 + ], + [ + 11.6297529, + 50.071875101 + ], + [ + 11.6291374, + 50.071557201 + ], + [ + 11.6286354, + 50.071284501 + ], + [ + 11.6279492, + 50.070853701 + ], + [ + 11.6272845, + 50.070403101 + ], + [ + 11.6261076, + 50.069594701 + ], + [ + 11.6253862, + 50.069099301 + ], + [ + 11.6249816, + 50.068821401 + ], + [ + 11.6239635, + 50.068118101 + ], + [ + 11.6227889, + 50.067310701 + ], + [ + 11.6221257, + 50.066833601 + ], + [ + 11.6216717, + 50.066491201 + ], + [ + 11.6212318, + 50.066116101 + ], + [ + 11.6206489, + 50.065565001 + ], + [ + 11.6202487, + 50.065156101 + ], + [ + 11.6198659, + 50.064699001 + ], + [ + 11.619469, + 50.064184801 + ], + [ + 11.6191747, + 50.063752801 + ], + [ + 11.6188782, + 50.063260301 + ], + [ + 11.6185805, + 50.062673601 + ], + [ + 11.6183777, + 50.062210201 + ], + [ + 11.6181751, + 50.061621101 + ], + [ + 11.6180967, + 50.061317001 + ], + [ + 11.6180096, + 50.060979001 + ], + [ + 11.6178942, + 50.060302301 + ], + [ + 11.617854, + 50.059795201 + ], + [ + 11.6178426, + 50.059155001 + ], + [ + 11.6178623, + 50.058726201 + ], + [ + 11.6179311, + 50.057691901 + ], + [ + 11.6179704, + 50.057195401 + ], + [ + 11.6179774, + 50.057065001 + ], + [ + 11.6179966, + 50.056464701 + ], + [ + 11.6179992, + 50.055987301 + ], + [ + 11.617973, + 50.055324201 + ], + [ + 11.61795, + 50.054446101 + ], + [ + 11.6178701, + 50.053493301 + ], + [ + 11.6178454, + 50.053258001 + ], + [ + 11.6177737, + 50.052754601 + ], + [ + 11.6176601, + 50.051988901 + ], + [ + 11.6175497, + 50.051406801 + ], + [ + 11.6173649, + 50.050567601 + ], + [ + 11.6172195, + 50.049990501 + ], + [ + 11.6169728, + 50.049113801 + ], + [ + 11.6167356, + 50.048369401 + ], + [ + 11.6166691, + 50.048178401 + ], + [ + 11.6165325, + 50.047785101 + ], + [ + 11.6163774, + 50.047373301 + ], + [ + 11.6160406, + 50.046541201 + ], + [ + 11.6156604, + 50.045694501 + ], + [ + 11.6153325, + 50.045017101 + ], + [ + 11.6148825, + 50.044148401 + ], + [ + 11.6145597, + 50.043568201 + ], + [ + 11.6141976, + 50.042965201 + ], + [ + 11.6137163, + 50.042189101 + ], + [ + 11.6132006, + 50.041413601 + ], + [ + 11.6126549, + 50.040647101 + ], + [ + 11.6119239, + 50.039692801 + ], + [ + 11.6117892, + 50.039523101 + ], + [ + 11.611478, + 50.039130901 + ], + [ + 11.6108747, + 50.038423001 + ], + [ + 11.6107756, + 50.038312001 + ], + [ + 11.6104425, + 50.037939001 + ], + [ + 11.6099968, + 50.037462601 + ], + [ + 11.6095602, + 50.036978801 + ], + [ + 11.6091292, + 50.036490501 + ], + [ + 11.6084804, + 50.035673001 + ], + [ + 11.6082036, + 50.035275601 + ], + [ + 11.6080742, + 50.035071001 + ], + [ + 11.6079447, + 50.034851401 + ], + [ + 11.6076232, + 50.034241701 + ], + [ + 11.6073919, + 50.033685801 + ], + [ + 11.6071841, + 50.033098701 + ], + [ + 11.6069973, + 50.032449701 + ], + [ + 11.6068577, + 50.031915201 + ], + [ + 11.6067442, + 50.031467301 + ], + [ + 11.6065991, + 50.030909801 + ], + [ + 11.6062843, + 50.029730701 + ], + [ + 11.6059864, + 50.028602501 + ], + [ + 11.6056404, + 50.027279501 + ], + [ + 11.6056202, + 50.027202101 + ], + [ + 11.6055001, + 50.026737901 + ], + [ + 11.6053202, + 50.026058501 + ], + [ + 11.605141, + 50.025374101 + ], + [ + 11.605126555, + 50.025322135 + ] + ] + } + }, + { + "identifier": "2026-015075--vi-bs.2026-04-13_08-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.11588036509349,11.719816656699786,50.11701256341203,11.721988763810144", + "point": "50.11588036509349,11.719816656699786", + "startLcPosition": "70", + "impact": { + "lower": "M\u00fcnchberg-S\u00fcd", + "upper": "Streitau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Streitau - M\u00fcnchberg-S\u00fcd", + "coordinate": { + "lat": 50.11588036509349, + "long": 11.719816656699786 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 18:00 Uhr", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 1.7 km hinter Streitau und 6.6 km vor AS M\u00fcnchberg-S\u00fcd", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 13 m", + "", + "A9 von Streitau (Rastplatz) nach M\u00fcnchberg-S\u00fcd (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.719816657, + 50.115880365 + ], + [ + 11.7202127, + 50.116086801 + ], + [ + 11.7215961, + 50.116807901 + ], + [ + 11.721988764, + 50.117012563 + ] + ] + } + }, + { + "identifier": "2025-048790--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-01_00-00-00-000_005.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.18437757460886,11.759914067258872,50.19219554580539,11.766745335866194", + "point": "50.18437757460886,11.759914067258872", + "startLcPosition": "71", + "impact": { + "lower": "M\u00fcnchberg-Nord", + "upper": "M\u00fcnchberg-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | M\u00fcnchberg-S\u00fcd - M\u00fcnchberg-Nord", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 50.18437757460886, + "long": 11.759914067258872 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 02.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.12.26)", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 1.8 km hinter AS M\u00fcnchberg-S\u00fcd und 1.7 km vor AS M\u00fcnchberg-Nord", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A9 Neubau einer Anschlussstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.759914067, + 50.184377575 + ], + [ + 11.7601523, + 50.184636601 + ], + [ + 11.7610361, + 50.185615401 + ], + [ + 11.7618433, + 50.186546401 + ], + [ + 11.7626765, + 50.187501801 + ], + [ + 11.7629322, + 50.187795701 + ], + [ + 11.7633616, + 50.188289201 + ], + [ + 11.7634953, + 50.188442901 + ], + [ + 11.7636533, + 50.188625501 + ], + [ + 11.7641068, + 50.189149701 + ], + [ + 11.7642821, + 50.189352301 + ], + [ + 11.7650617, + 50.190252401 + ], + [ + 11.7656109, + 50.190886801 + ], + [ + 11.7663456, + 50.191734401 + ], + [ + 11.7667082, + 50.192152701 + ], + [ + 11.766745336, + 50.192195546 + ] + ] + } + }, + { + "identifier": "2025-048790--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-01_00-00-00-000_005.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.19226450374467,11.766552134573093,50.18444681283079,11.759731619354639", + "point": "50.19226450374467,11.766552134573093", + "startLcPosition": "73", + "impact": { + "lower": "M\u00fcnchberg-S\u00fcd", + "upper": "M\u00fcnchberg-Nord", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | M\u00fcnchberg-Nord - M\u00fcnchberg-S\u00fcd", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 50.19226450374467, + "long": 11.766552134573093 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 02.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.12.26)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.7 km hinter AS M\u00fcnchberg-Nord und 1.8 km vor AS M\u00fcnchberg-S\u00fcd", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A9 Neubau einer Anschlussstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.766552135, + 50.192264504 + ], + [ + 11.7664611, + 50.192159301 + ], + [ + 11.7654171, + 50.190955601 + ], + [ + 11.7648608, + 50.190304201 + ], + [ + 11.7640666, + 50.189388701 + ], + [ + 11.7636905, + 50.188964101 + ], + [ + 11.7632752, + 50.188477001 + ], + [ + 11.7627255, + 50.187847301 + ], + [ + 11.762466, + 50.187550001 + ], + [ + 11.7616385, + 50.186594001 + ], + [ + 11.7608054, + 50.185642901 + ], + [ + 11.7599321, + 50.184664401 + ], + [ + 11.759731619, + 50.184446813 + ] + ] + } + }, + { + "identifier": "2026-017261--vi-bs.2026-04-13_07-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.31234546280574,11.800834961606009,50.319147205427946,11.796371621268785", + "point": "50.31234546280574,11.800834961606009", + "startLcPosition": "75", + "impact": { + "lower": "Bayerisches Vogtland", + "upper": "Lipperts", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Lipperts - Bayerisches Vogtland", + "coordinate": { + "lat": 50.31234546280574, + "long": 11.800834961606009 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 16:00 Uhr", + "14.04.26 von 07:00 bis 16:00 Uhr", + "15.04.26 von 07:00 bis 16:00 Uhr", + "16.04.26 von 07:00 bis 16:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 1.0 km hinter Lipperts und 0.4 km vor AD Bayerisches Vogtland", + "", + "L\u00e4nge: 0.82 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A9 von Bayerisches Vogtland (AD) Schallschutzarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.800834962, + 50.312345463 + ], + [ + 11.8007924, + 50.312426801 + ], + [ + 11.8003739, + 50.313200301 + ], + [ + 11.800205, + 50.313518601 + ], + [ + 11.7988334, + 50.316104201 + ], + [ + 11.7987457, + 50.316253301 + ], + [ + 11.7984454, + 50.316754701 + ], + [ + 11.7982224, + 50.317081901 + ], + [ + 11.7980866, + 50.317257401 + ], + [ + 11.7978303, + 50.317583701 + ], + [ + 11.7974208, + 50.318036801 + ], + [ + 11.7965355, + 50.318975601 + ], + [ + 11.796371621, + 50.319147205 + ] + ] + } + }, + { + "identifier": "2024-018126--vi-bs.2026-01-07_00-00-00-000.devi-zus.2025-08-04_00-00-00-000.f_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.379357785877254,11.788751839268942,50.40375077192991,11.768403251548822", + "point": "50.379357785877254,11.788751839268942", + "startLcPosition": "78", + "impact": { + "lower": "Frankenwald", + "upper": "Berg/Bad Steben", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Berg/Bad Steben - Frankenwald", + "startTimestamp": "2026-01-07T00:00:00+01:00", + "coordinate": { + "lat": 50.379357785877254, + "long": 11.788751839268942 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.01.26 um 00:00 Uhr", + "Ende: 11.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.27)", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 0.8 km hinter AS Berg/Bad Steben und 0.5 km vor Frankenwald", + "", + "L\u00e4nge: 3.68 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A9 Br\u00fcckenneubau und D 244" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.788751839, + 50.379357786 + ], + [ + 11.7877699, + 50.379992201 + ], + [ + 11.787193, + 50.380314001 + ], + [ + 11.7858409, + 50.381002201 + ], + [ + 11.7846135, + 50.381620801 + ], + [ + 11.7836025, + 50.382127501 + ], + [ + 11.7832835, + 50.382288401 + ], + [ + 11.7825493, + 50.382664201 + ], + [ + 11.7820515, + 50.382932301 + ], + [ + 11.7814465, + 50.383290401 + ], + [ + 11.7809759, + 50.383606001 + ], + [ + 11.7805356, + 50.383924501 + ], + [ + 11.7802583, + 50.384153301 + ], + [ + 11.779678, + 50.384656401 + ], + [ + 11.7793165, + 50.385028401 + ], + [ + 11.7789672, + 50.385423601 + ], + [ + 11.7782623, + 50.386297601 + ], + [ + 11.7776656, + 50.387035101 + ], + [ + 11.7773014, + 50.387465601 + ], + [ + 11.7769032, + 50.387856901 + ], + [ + 11.7766732, + 50.388064401 + ], + [ + 11.7763695, + 50.388325801 + ], + [ + 11.7757169, + 50.388816501 + ], + [ + 11.7750766, + 50.389225401 + ], + [ + 11.7742366, + 50.389689901 + ], + [ + 11.7738267, + 50.389895701 + ], + [ + 11.773126, + 50.390193401 + ], + [ + 11.7726468, + 50.390386901 + ], + [ + 11.7720351, + 50.390589101 + ], + [ + 11.77135, + 50.390800401 + ], + [ + 11.770414, + 50.391062701 + ], + [ + 11.7696414, + 50.391285301 + ], + [ + 11.768745, + 50.391557701 + ], + [ + 11.768084, + 50.391798201 + ], + [ + 11.7676251, + 50.391986501 + ], + [ + 11.7671362, + 50.392213901 + ], + [ + 11.7667014, + 50.392450701 + ], + [ + 11.7663389, + 50.392679201 + ], + [ + 11.7658642, + 50.393012901 + ], + [ + 11.7655497, + 50.393271701 + ], + [ + 11.765275, + 50.393538201 + ], + [ + 11.7650217, + 50.393819101 + ], + [ + 11.764793, + 50.394100101 + ], + [ + 11.7644768, + 50.394600601 + ], + [ + 11.7643116, + 50.394906601 + ], + [ + 11.7642077, + 50.395167901 + ], + [ + 11.7640679, + 50.395626101 + ], + [ + 11.7638715, + 50.396532601 + ], + [ + 11.7634204, + 50.399078901 + ], + [ + 11.7633955, + 50.399411601 + ], + [ + 11.7634063, + 50.399769401 + ], + [ + 11.7634447, + 50.400026701 + ], + [ + 11.7635115, + 50.400314901 + ], + [ + 11.763603, + 50.400588801 + ], + [ + 11.7637025, + 50.400803401 + ], + [ + 11.7638371, + 50.401063601 + ], + [ + 11.7640206, + 50.401343001 + ], + [ + 11.764247, + 50.401631001 + ], + [ + 11.7645031, + 50.401911501 + ], + [ + 11.7648895, + 50.402256401 + ], + [ + 11.7654593, + 50.402659401 + ], + [ + 11.7658228, + 50.402865101 + ], + [ + 11.7661394, + 50.403030001 + ], + [ + 11.7664963, + 50.403188101 + ], + [ + 11.7669005, + 50.403344101 + ], + [ + 11.7671873, + 50.403446801 + ], + [ + 11.767497, + 50.403537301 + ], + [ + 11.7680798, + 50.403684801 + ], + [ + 11.768403252, + 50.403750772 + ] + ] + } + }, + { + "identifier": "2024-018126--vi-bs.2026-01-07_00-00-00-000.devi-zus.2025-08-04_00-00-00-000.f_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.40377808417158,11.768537163285101,50.420425125938095,11.789374555458041", + "point": "50.40377808417158,11.768537163285101", + "startLcPosition": "78", + "impact": { + "lower": "Hirschberg", + "upper": "Berg/Bad Steben", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Berg/Bad Steben - Hirschberg", + "startTimestamp": "2026-01-07T00:00:00+01:00", + "coordinate": { + "lat": 50.40377808417158, + "long": 11.768537163285101 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.01.26 um 00:00 Uhr", + "Ende: 11.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.27)", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 4.5 km hinter AS Berg/Bad Steben und 0.9 km vor Hirschberg", + "", + "L\u00e4nge: 2.47 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A9 Br\u00fcckenneubau und D 244" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.768537163, + 50.403778084 + ], + [ + 11.7685446, + 50.403779601 + ], + [ + 11.7689682, + 50.403843401 + ], + [ + 11.7699657, + 50.403958201 + ], + [ + 11.7704609, + 50.404023401 + ], + [ + 11.7709194, + 50.404097101 + ], + [ + 11.7712057, + 50.404156801 + ], + [ + 11.7716941, + 50.404277401 + ], + [ + 11.7721045, + 50.404410701 + ], + [ + 11.7726688, + 50.404641001 + ], + [ + 11.7731965, + 50.404933701 + ], + [ + 11.7736233, + 50.405212601 + ], + [ + 11.773679, + 50.405251601 + ], + [ + 11.7736996, + 50.405266001 + ], + [ + 11.7738274, + 50.405374401 + ], + [ + 11.7740393, + 50.405550401 + ], + [ + 11.7743074, + 50.405827101 + ], + [ + 11.7744999, + 50.406053101 + ], + [ + 11.7746196, + 50.406230301 + ], + [ + 11.7747614, + 50.406463001 + ], + [ + 11.7748674, + 50.406672701 + ], + [ + 11.7749538, + 50.406859501 + ], + [ + 11.7750789, + 50.407216101 + ], + [ + 11.7752171, + 50.407590001 + ], + [ + 11.7753578, + 50.408000101 + ], + [ + 11.7754678, + 50.408280301 + ], + [ + 11.7756668, + 50.408703601 + ], + [ + 11.7759115, + 50.409126501 + ], + [ + 11.7761226, + 50.409406801 + ], + [ + 11.7763412, + 50.409677701 + ], + [ + 11.7767251, + 50.410093501 + ], + [ + 11.7770835, + 50.410430901 + ], + [ + 11.7774604, + 50.410772401 + ], + [ + 11.7778187, + 50.411100801 + ], + [ + 11.7781467, + 50.411429501 + ], + [ + 11.7785277, + 50.411883201 + ], + [ + 11.7788761, + 50.412384001 + ], + [ + 11.7789397, + 50.412496301 + ], + [ + 11.7792105, + 50.412974801 + ], + [ + 11.7793624, + 50.413270201 + ], + [ + 11.7793788, + 50.413301301 + ], + [ + 11.7794907, + 50.413498901 + ], + [ + 11.7797478, + 50.413913901 + ], + [ + 11.7800155, + 50.414258101 + ], + [ + 11.7802079, + 50.414471801 + ], + [ + 11.7804293, + 50.414681201 + ], + [ + 11.7806625, + 50.414890401 + ], + [ + 11.780942, + 50.415092701 + ], + [ + 11.7812451, + 50.415295801 + ], + [ + 11.7815692, + 50.415491401 + ], + [ + 11.7823733, + 50.415952101 + ], + [ + 11.7831223, + 50.416376601 + ], + [ + 11.7858269, + 50.417903801 + ], + [ + 11.7865155, + 50.418295801 + ], + [ + 11.7867723, + 50.418441401 + ], + [ + 11.7876723, + 50.419012501 + ], + [ + 11.7881562, + 50.419347201 + ], + [ + 11.7886627, + 50.419746801 + ], + [ + 11.7892237, + 50.420272301 + ], + [ + 11.789374555, + 50.420425126 + ] + ] + } + }, + { + "identifier": "2026-016874--vi-bs.2026-04-09_07-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.34769716243201,11.78739845498299,50.05706958088086,11.61797715415588", + "point": "50.34769716243201,11.78739845498299", + "startLcPosition": "78", + "impact": { + "lower": "Bad Berneck/Himmelkron", + "upper": "Berg/Bad Steben", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Berg/Bad Steben - Bad Berneck/Himmelkron", + "coordinate": { + "lat": 50.34769716243201, + "long": 11.78739845498299 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 15:30 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 3.1 km hinter AS Berg/Bad Steben und 0.2 km vor AS Bad Berneck/Himmelkron", + "", + "L\u00e4nge: 38.51 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A9 von BergBad Steben (AS) nach Bad BerneckHimmelkron (AS) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.787398455, + 50.347697162 + ], + [ + 11.7874701, + 50.347472101 + ], + [ + 11.7875634, + 50.347077601 + ], + [ + 11.7876274, + 50.346666001 + ], + [ + 11.7876687, + 50.346279401 + ], + [ + 11.7876707, + 50.345854801 + ], + [ + 11.7876237, + 50.345220401 + ], + [ + 11.7875835, + 50.344915001 + ], + [ + 11.7875063, + 50.344424201 + ], + [ + 11.7873274, + 50.343643201 + ], + [ + 11.7872395, + 50.343319501 + ], + [ + 11.7871508, + 50.342993001 + ], + [ + 11.7869685, + 50.342335701 + ], + [ + 11.7868265, + 50.341832901 + ], + [ + 11.7866872, + 50.341243701 + ], + [ + 11.7866668, + 50.341179601 + ], + [ + 11.7865923, + 50.340777401 + ], + [ + 11.7865698, + 50.340611101 + ], + [ + 11.7865308, + 50.340292101 + ], + [ + 11.7865066, + 50.339970501 + ], + [ + 11.7865068, + 50.339654301 + ], + [ + 11.7865207, + 50.339326301 + ], + [ + 11.7865629, + 50.338926801 + ], + [ + 11.7865962, + 50.338689201 + ], + [ + 11.7866415, + 50.338451301 + ], + [ + 11.7868147, + 50.337874801 + ], + [ + 11.7869269, + 50.337523901 + ], + [ + 11.7869561, + 50.337448001 + ], + [ + 11.787212, + 50.336697101 + ], + [ + 11.7875553, + 50.335693601 + ], + [ + 11.7878662, + 50.334831101 + ], + [ + 11.7881749, + 50.333921201 + ], + [ + 11.7890706, + 50.331328201 + ], + [ + 11.7891431, + 50.331125701 + ], + [ + 11.7892785, + 50.330705701 + ], + [ + 11.7896078, + 50.329750801 + ], + [ + 11.7898697, + 50.328991601 + ], + [ + 11.7902566, + 50.327897001 + ], + [ + 11.7904414, + 50.327345401 + ], + [ + 11.7907268, + 50.326538501 + ], + [ + 11.7909737, + 50.325842401 + ], + [ + 11.7911266, + 50.325426901 + ], + [ + 11.7911854, + 50.325267201 + ], + [ + 11.7914433, + 50.324586001 + ], + [ + 11.7918077, + 50.323925101 + ], + [ + 11.7921502, + 50.323413401 + ], + [ + 11.7925994, + 50.322869001 + ], + [ + 11.7931096, + 50.322320401 + ], + [ + 11.7936598, + 50.321712701 + ], + [ + 11.7940976, + 50.321268401 + ], + [ + 11.7942186, + 50.321145601 + ], + [ + 11.7947344, + 50.320578801 + ], + [ + 11.7958001, + 50.319438701 + ], + [ + 11.7966637, + 50.318594001 + ], + [ + 11.7972317, + 50.317986701 + ], + [ + 11.7975699, + 50.317611801 + ], + [ + 11.7978861, + 50.317212501 + ], + [ + 11.7980207, + 50.317043901 + ], + [ + 11.7982602, + 50.316685301 + ], + [ + 11.7985049, + 50.316266301 + ], + [ + 11.7985911, + 50.316109601 + ], + [ + 11.7998474, + 50.313682001 + ], + [ + 11.7999568, + 50.313469201 + ], + [ + 11.8001007, + 50.313189301 + ], + [ + 11.8004812, + 50.312505101 + ], + [ + 11.8006513, + 50.312181701 + ], + [ + 11.8011782, + 50.311188401 + ], + [ + 11.8013152, + 50.310928801 + ], + [ + 11.8022712, + 50.309122701 + ], + [ + 11.803145, + 50.307471601 + ], + [ + 11.8040488, + 50.305742201 + ], + [ + 11.8044492, + 50.304981901 + ], + [ + 11.8058192, + 50.302380101 + ], + [ + 11.8066936, + 50.300741901 + ], + [ + 11.8069006, + 50.300350401 + ], + [ + 11.8070628, + 50.300029901 + ], + [ + 11.8074279, + 50.299346401 + ], + [ + 11.8077439, + 50.298749301 + ], + [ + 11.8088862, + 50.296559601 + ], + [ + 11.8100698, + 50.294290701 + ], + [ + 11.8105677, + 50.293241801 + ], + [ + 11.8107805, + 50.292757001 + ], + [ + 11.8110131, + 50.292233501 + ], + [ + 11.8111787, + 50.291857701 + ], + [ + 11.8114569, + 50.291094101 + ], + [ + 11.8115866, + 50.290716701 + ], + [ + 11.8117368, + 50.290241001 + ], + [ + 11.811904, + 50.289658301 + ], + [ + 11.8119444, + 50.289492301 + ], + [ + 11.8119791, + 50.289315301 + ], + [ + 11.8120765, + 50.288784001 + ], + [ + 11.812176, + 50.288136601 + ], + [ + 11.8122445, + 50.287568701 + ], + [ + 11.8122654, + 50.287162801 + ], + [ + 11.8122909, + 50.286678901 + ], + [ + 11.8122744, + 50.286098701 + ], + [ + 11.81225, + 50.285665001 + ], + [ + 11.8122021, + 50.285192001 + ], + [ + 11.812132, + 50.284768601 + ], + [ + 11.8120626, + 50.284349101 + ], + [ + 11.8118776, + 50.283542201 + ], + [ + 11.8116358, + 50.282791001 + ], + [ + 11.8114008, + 50.282156801 + ], + [ + 11.8112299, + 50.281765701 + ], + [ + 11.811112, + 50.281482801 + ], + [ + 11.8106277, + 50.280433301 + ], + [ + 11.8101342, + 50.279520701 + ], + [ + 11.8096568, + 50.278710701 + ], + [ + 11.8091731, + 50.277933301 + ], + [ + 11.8085946, + 50.277000201 + ], + [ + 11.8080498, + 50.276141001 + ], + [ + 11.8074498, + 50.275203901 + ], + [ + 11.8072235, + 50.274851201 + ], + [ + 11.8068675, + 50.274296301 + ], + [ + 11.8063037, + 50.273405201 + ], + [ + 11.8057479, + 50.272516601 + ], + [ + 11.8053625, + 50.271900501 + ], + [ + 11.8051587, + 50.271583301 + ], + [ + 11.804793, + 50.271021601 + ], + [ + 11.8045677, + 50.270670201 + ], + [ + 11.804205, + 50.270104601 + ], + [ + 11.8036256, + 50.269199501 + ], + [ + 11.803064, + 50.268311401 + ], + [ + 11.8026937, + 50.267709901 + ], + [ + 11.8024294, + 50.267284701 + ], + [ + 11.8019969, + 50.266594601 + ], + [ + 11.801547, + 50.265899401 + ], + [ + 11.8009718, + 50.265011501 + ], + [ + 11.8005186, + 50.264311201 + ], + [ + 11.7999435, + 50.263404801 + ], + [ + 11.7992524, + 50.262332801 + ], + [ + 11.798844, + 50.261679601 + ], + [ + 11.7982499, + 50.260741701 + ], + [ + 11.7977272, + 50.259912001 + ], + [ + 11.797603, + 50.259724601 + ], + [ + 11.7975184, + 50.259593301 + ], + [ + 11.7974166, + 50.259417201 + ], + [ + 11.7968599, + 50.258552201 + ], + [ + 11.7965449, + 50.258093601 + ], + [ + 11.7962993, + 50.257657201 + ], + [ + 11.7957237, + 50.256757701 + ], + [ + 11.7951578, + 50.255893601 + ], + [ + 11.7949659, + 50.255572001 + ], + [ + 11.7944862, + 50.254813701 + ], + [ + 11.7939566, + 50.253980101 + ], + [ + 11.7934008, + 50.253111801 + ], + [ + 11.7928498, + 50.252263001 + ], + [ + 11.7923511, + 50.251535001 + ], + [ + 11.7917423, + 50.250753901 + ], + [ + 11.791171, + 50.250083701 + ], + [ + 11.7907246, + 50.249623001 + ], + [ + 11.7904548, + 50.249344701 + ], + [ + 11.789757, + 50.248685801 + ], + [ + 11.7889423, + 50.247995101 + ], + [ + 11.7884257, + 50.247596201 + ], + [ + 11.7881537, + 50.247378801 + ], + [ + 11.7880468, + 50.247297101 + ], + [ + 11.7879457, + 50.247226401 + ], + [ + 11.7875488, + 50.246929401 + ], + [ + 11.7868393, + 50.246404801 + ], + [ + 11.786351, + 50.246043701 + ], + [ + 11.7850958, + 50.245116801 + ], + [ + 11.7840926, + 50.244375901 + ], + [ + 11.7831002, + 50.243643201 + ], + [ + 11.7821131, + 50.242908601 + ], + [ + 11.7815269, + 50.242443801 + ], + [ + 11.7813447, + 50.242295501 + ], + [ + 11.7809997, + 50.241992101 + ], + [ + 11.7804572, + 50.241486501 + ], + [ + 11.780124, + 50.241137701 + ], + [ + 11.7795221, + 50.240469801 + ], + [ + 11.7789589, + 50.239751201 + ], + [ + 11.7785418, + 50.239187501 + ], + [ + 11.7783876, + 50.238956001 + ], + [ + 11.7780925, + 50.238452501 + ], + [ + 11.7778346, + 50.237829401 + ], + [ + 11.7775664, + 50.237165101 + ], + [ + 11.7774081, + 50.236721301 + ], + [ + 11.7772942, + 50.236324901 + ], + [ + 11.7772122, + 50.235992301 + ], + [ + 11.7770782, + 50.235326601 + ], + [ + 11.7769978, + 50.234633301 + ], + [ + 11.7769863, + 50.234399901 + ], + [ + 11.7769736, + 50.233707001 + ], + [ + 11.7769903, + 50.233328001 + ], + [ + 11.777038, + 50.232859401 + ], + [ + 11.7771346, + 50.232224301 + ], + [ + 11.7772421, + 50.231735701 + ], + [ + 11.7773195, + 50.231459801 + ], + [ + 11.7773882, + 50.231212801 + ], + [ + 11.7775047, + 50.230887201 + ], + [ + 11.7777971, + 50.230150901 + ], + [ + 11.7781059, + 50.229508401 + ], + [ + 11.7785297, + 50.228772401 + ], + [ + 11.7791598, + 50.227812301 + ], + [ + 11.7792854, + 50.227630401 + ], + [ + 11.7799137, + 50.226699101 + ], + [ + 11.7802351, + 50.226203901 + ], + [ + 11.7808284, + 50.225199701 + ], + [ + 11.7811516, + 50.224564501 + ], + [ + 11.7814667, + 50.223824501 + ], + [ + 11.7816411, + 50.223387301 + ], + [ + 11.781802, + 50.222915801 + ], + [ + 11.7820541, + 50.221990901 + ], + [ + 11.7821728, + 50.221385601 + ], + [ + 11.7822258, + 50.221115401 + ], + [ + 11.7823116, + 50.220331501 + ], + [ + 11.7823503, + 50.219377501 + ], + [ + 11.7823305, + 50.218640901 + ], + [ + 11.7822365, + 50.217694801 + ], + [ + 11.782135, + 50.217144701 + ], + [ + 11.7820848, + 50.216873001 + ], + [ + 11.7818503, + 50.215967801 + ], + [ + 11.7816011, + 50.215216501 + ], + [ + 11.7812168, + 50.214287201 + ], + [ + 11.7807923, + 50.213405301 + ], + [ + 11.7806144, + 50.213047801 + ], + [ + 11.7803853, + 50.212587201 + ], + [ + 11.7801069, + 50.212027101 + ], + [ + 11.7798837, + 50.211586201 + ], + [ + 11.7796988, + 50.211202901 + ], + [ + 11.7792595, + 50.210310501 + ], + [ + 11.7791212, + 50.210035901 + ], + [ + 11.7788228, + 50.209448501 + ], + [ + 11.7784004, + 50.208616901 + ], + [ + 11.7782993, + 50.208418101 + ], + [ + 11.7775169, + 50.206809101 + ], + [ + 11.7771411, + 50.206069301 + ], + [ + 11.7770768, + 50.205933001 + ], + [ + 11.7769792, + 50.205742901 + ], + [ + 11.7768106, + 50.205414601 + ], + [ + 11.7767008, + 50.205191201 + ], + [ + 11.7765611, + 50.204903601 + ], + [ + 11.7763299, + 50.204428401 + ], + [ + 11.7762706, + 50.204312001 + ], + [ + 11.7759443, + 50.203671001 + ], + [ + 11.7754515, + 50.202818401 + ], + [ + 11.7751652, + 50.202358601 + ], + [ + 11.7747367, + 50.201753301 + ], + [ + 11.7742505, + 50.201135601 + ], + [ + 11.7734744, + 50.200219501 + ], + [ + 11.7727107, + 50.199341001 + ], + [ + 11.7719165, + 50.198421801 + ], + [ + 11.7711987, + 50.197600101 + ], + [ + 11.7704541, + 50.196736801 + ], + [ + 11.7701503, + 50.196389601 + ], + [ + 11.7696975, + 50.195871901 + ], + [ + 11.7688982, + 50.194971501 + ], + [ + 11.7684345, + 50.194436601 + ], + [ + 11.7676585, + 50.193541401 + ], + [ + 11.7668762, + 50.192639001 + ], + [ + 11.7664611, + 50.192159301 + ], + [ + 11.7654171, + 50.190955601 + ], + [ + 11.7648608, + 50.190304201 + ], + [ + 11.7640666, + 50.189388701 + ], + [ + 11.7636905, + 50.188964101 + ], + [ + 11.7632752, + 50.188477001 + ], + [ + 11.7627255, + 50.187847301 + ], + [ + 11.762466, + 50.187550001 + ], + [ + 11.7616385, + 50.186594001 + ], + [ + 11.7608054, + 50.185642901 + ], + [ + 11.7599321, + 50.184664401 + ], + [ + 11.7594505, + 50.184141701 + ], + [ + 11.7586083, + 50.183255701 + ], + [ + 11.7577139, + 50.182359901 + ], + [ + 11.7570325, + 50.181712001 + ], + [ + 11.7563748, + 50.181107801 + ], + [ + 11.7559092, + 50.180689701 + ], + [ + 11.7553832, + 50.180217301 + ], + [ + 11.7543814, + 50.179342201 + ], + [ + 11.7533516, + 50.178447201 + ], + [ + 11.75269, + 50.177883701 + ], + [ + 11.7519219, + 50.177215001 + ], + [ + 11.7516565, + 50.176984001 + ], + [ + 11.7507616, + 50.176182301 + ], + [ + 11.7500082, + 50.175462801 + ], + [ + 11.74959, + 50.175048301 + ], + [ + 11.7488071, + 50.174240101 + ], + [ + 11.7483975, + 50.173781301 + ], + [ + 11.7479366, + 50.173228001 + ], + [ + 11.7476347, + 50.172856601 + ], + [ + 11.7473201, + 50.172417301 + ], + [ + 11.7469287, + 50.171837101 + ], + [ + 11.7466605, + 50.171395501 + ], + [ + 11.746428, + 50.170965801 + ], + [ + 11.7463046, + 50.170732401 + ], + [ + 11.7461819, + 50.170475201 + ], + [ + 11.7460498, + 50.170180301 + ], + [ + 11.7459215, + 50.169836101 + ], + [ + 11.7457547, + 50.169333601 + ], + [ + 11.7456746, + 50.169013901 + ], + [ + 11.7455648, + 50.168512901 + ], + [ + 11.7454868, + 50.168108301 + ], + [ + 11.7454462, + 50.167674701 + ], + [ + 11.7454171, + 50.167244501 + ], + [ + 11.7454211, + 50.166953501 + ], + [ + 11.7454264, + 50.166416901 + ], + [ + 11.7454666, + 50.166037001 + ], + [ + 11.7455236, + 50.165642301 + ], + [ + 11.7455862, + 50.165310101 + ], + [ + 11.7457101, + 50.164804201 + ], + [ + 11.7457405, + 50.164701901 + ], + [ + 11.7457687, + 50.164606901 + ], + [ + 11.7458831, + 50.164250601 + ], + [ + 11.7460258, + 50.163863801 + ], + [ + 11.7462837, + 50.163228101 + ], + [ + 11.7467441, + 50.162179601 + ], + [ + 11.7468631, + 50.161896501 + ], + [ + 11.7474082, + 50.160667801 + ], + [ + 11.7477047, + 50.159998801 + ], + [ + 11.7481769, + 50.158926701 + ], + [ + 11.7485311, + 50.158118101 + ], + [ + 11.748828, + 50.157421101 + ], + [ + 11.7490792, + 50.156774001 + ], + [ + 11.7491561, + 50.156521401 + ], + [ + 11.7492275, + 50.156249001 + ], + [ + 11.7492797, + 50.156046101 + ], + [ + 11.7493677, + 50.155452001 + ], + [ + 11.7493926, + 50.154773401 + ], + [ + 11.7493565, + 50.154242101 + ], + [ + 11.7492881, + 50.153825301 + ], + [ + 11.7491653, + 50.153346401 + ], + [ + 11.748949, + 50.152731901 + ], + [ + 11.7486392, + 50.152070501 + ], + [ + 11.7483495, + 50.151545101 + ], + [ + 11.7480437, + 50.151041601 + ], + [ + 11.7474963, + 50.150138101 + ], + [ + 11.7472408, + 50.149708401 + ], + [ + 11.7468544, + 50.149085601 + ], + [ + 11.746309, + 50.148190101 + ], + [ + 11.7458422, + 50.147407901 + ], + [ + 11.7453081, + 50.146530801 + ], + [ + 11.7447458, + 50.145598701 + ], + [ + 11.7443082, + 50.144876101 + ], + [ + 11.7438622, + 50.144136701 + ], + [ + 11.7435289, + 50.143565001 + ], + [ + 11.743304, + 50.143134401 + ], + [ + 11.7431129, + 50.142744601 + ], + [ + 11.7429001, + 50.142243401 + ], + [ + 11.7426406, + 50.141546801 + ], + [ + 11.7425429, + 50.141223401 + ], + [ + 11.7424429, + 50.140860601 + ], + [ + 11.742358, + 50.140508601 + ], + [ + 11.7422637, + 50.140053401 + ], + [ + 11.7422095, + 50.139738401 + ], + [ + 11.7421764, + 50.139416401 + ], + [ + 11.7421316, + 50.138822401 + ], + [ + 11.7421119, + 50.138488601 + ], + [ + 11.742081, + 50.137650601 + ], + [ + 11.7420777, + 50.136979401 + ], + [ + 11.7420721, + 50.136333301 + ], + [ + 11.7420674, + 50.135690101 + ], + [ + 11.7420577, + 50.135242701 + ], + [ + 11.7420277, + 50.134730401 + ], + [ + 11.7419728, + 50.133933801 + ], + [ + 11.7419005, + 50.133339901 + ], + [ + 11.7418202, + 50.132834601 + ], + [ + 11.7416742, + 50.132134001 + ], + [ + 11.7415512, + 50.131712901 + ], + [ + 11.7413774, + 50.131209501 + ], + [ + 11.7410715, + 50.130453301 + ], + [ + 11.740947, + 50.130190701 + ], + [ + 11.7408413, + 50.129992701 + ], + [ + 11.7407233, + 50.129756901 + ], + [ + 11.7404788, + 50.129333301 + ], + [ + 11.7402201, + 50.128921001 + ], + [ + 11.739843, + 50.128386201 + ], + [ + 11.7394299, + 50.127834601 + ], + [ + 11.739064, + 50.127400601 + ], + [ + 11.7387699, + 50.127077501 + ], + [ + 11.7382774, + 50.126569401 + ], + [ + 11.737709, + 50.126030201 + ], + [ + 11.7375418, + 50.125886401 + ], + [ + 11.7373054, + 50.125683001 + ], + [ + 11.7369405, + 50.125396701 + ], + [ + 11.7362441, + 50.124868301 + ], + [ + 11.7355892, + 50.124416401 + ], + [ + 11.7350009, + 50.124042401 + ], + [ + 11.7345816, + 50.123787701 + ], + [ + 11.7340558, + 50.123493801 + ], + [ + 11.7332609, + 50.123069401 + ], + [ + 11.7324022, + 50.122629401 + ], + [ + 11.7271617, + 50.119891801 + ], + [ + 11.7241267, + 50.118310501 + ], + [ + 11.7228914, + 50.117665901 + ], + [ + 11.7219168, + 50.117146101 + ], + [ + 11.7214205, + 50.116897201 + ], + [ + 11.7200377, + 50.116182601 + ], + [ + 11.718747, + 50.115515901 + ], + [ + 11.7180114, + 50.115121801 + ], + [ + 11.7171703, + 50.114705901 + ], + [ + 11.7165214, + 50.114391601 + ], + [ + 11.7160872, + 50.114181401 + ], + [ + 11.7151637, + 50.113761301 + ], + [ + 11.7142011, + 50.113324801 + ], + [ + 11.7131224, + 50.112843401 + ], + [ + 11.7119225, + 50.112304801 + ], + [ + 11.7111204, + 50.111906601 + ], + [ + 11.7106287, + 50.111640201 + ], + [ + 11.7104564, + 50.111540501 + ], + [ + 11.7102556, + 50.111424401 + ], + [ + 11.7098849, + 50.111206401 + ], + [ + 11.7095865, + 50.111020201 + ], + [ + 11.7091524, + 50.110759501 + ], + [ + 11.7085409, + 50.110345501 + ], + [ + 11.7075946, + 50.109662501 + ], + [ + 11.7073647, + 50.109483601 + ], + [ + 11.7068159, + 50.109029101 + ], + [ + 11.7067572, + 50.108976901 + ], + [ + 11.7063767, + 50.108639001 + ], + [ + 11.70606, + 50.108352101 + ], + [ + 11.7055704, + 50.107876701 + ], + [ + 11.7051786, + 50.107463501 + ], + [ + 11.7049691, + 50.107225301 + ], + [ + 11.7044053, + 50.106547501 + ], + [ + 11.7039552, + 50.105944701 + ], + [ + 11.7034878, + 50.105310801 + ], + [ + 11.7029097, + 50.104525601 + ], + [ + 11.7024821, + 50.103941001 + ], + [ + 11.7024386, + 50.103878101 + ], + [ + 11.7022387, + 50.103589501 + ], + [ + 11.7021547, + 50.103471601 + ], + [ + 11.7010447, + 50.101943201 + ], + [ + 11.7006292, + 50.101357501 + ], + [ + 11.7002588, + 50.100839101 + ], + [ + 11.699911, + 50.100391601 + ], + [ + 11.6997092, + 50.100132001 + ], + [ + 11.699165, + 50.099510701 + ], + [ + 11.698655, + 50.098999301 + ], + [ + 11.6983591, + 50.098715901 + ], + [ + 11.6979873, + 50.098383601 + ], + [ + 11.697289, + 50.097815601 + ], + [ + 11.6964256, + 50.097191201 + ], + [ + 11.695911, + 50.096809901 + ], + [ + 11.6951389, + 50.096265901 + ], + [ + 11.694212, + 50.095622501 + ], + [ + 11.6922508, + 50.094225801 + ], + [ + 11.691262, + 50.093529101 + ], + [ + 11.6904197, + 50.092935501 + ], + [ + 11.6899587, + 50.092633301 + ], + [ + 11.6890774, + 50.092089301 + ], + [ + 11.6884438, + 50.091739801 + ], + [ + 11.6876771, + 50.091362101 + ], + [ + 11.6868041, + 50.090956901 + ], + [ + 11.6859667, + 50.090616901 + ], + [ + 11.6854957, + 50.090425701 + ], + [ + 11.6839818, + 50.089869601 + ], + [ + 11.6803456, + 50.088494801 + ], + [ + 11.6794406, + 50.088121401 + ], + [ + 11.6779878, + 50.087467501 + ], + [ + 11.6774371, + 50.087201601 + ], + [ + 11.676446, + 50.086696801 + ], + [ + 11.6751067, + 50.085976501 + ], + [ + 11.6738623, + 50.085299701 + ], + [ + 11.6726641, + 50.084676801 + ], + [ + 11.6718473, + 50.084297801 + ], + [ + 11.6708229, + 50.083862701 + ], + [ + 11.6685205, + 50.082899201 + ], + [ + 11.6684689, + 50.082877601 + ], + [ + 11.6663847, + 50.082013801 + ], + [ + 11.665856, + 50.081794101 + ], + [ + 11.6654481, + 50.081622501 + ], + [ + 11.6640715, + 50.081042701 + ], + [ + 11.6633048, + 50.080719301 + ], + [ + 11.6631887, + 50.080670301 + ], + [ + 11.6620284, + 50.080192001 + ], + [ + 11.6594931, + 50.079133101 + ], + [ + 11.6581767, + 50.078588601 + ], + [ + 11.656575, + 50.077919301 + ], + [ + 11.6557763, + 50.077619801 + ], + [ + 11.654968, + 50.077366001 + ], + [ + 11.6543019, + 50.077178401 + ], + [ + 11.6535808, + 50.077016201 + ], + [ + 11.6527359, + 50.076855901 + ], + [ + 11.6518795, + 50.076726501 + ], + [ + 11.6501552, + 50.076496301 + ], + [ + 11.6490734, + 50.076352501 + ], + [ + 11.6478475, + 50.076190701 + ], + [ + 11.6461455, + 50.075968401 + ], + [ + 11.644918, + 50.075802201 + ], + [ + 11.6440262, + 50.075677401 + ], + [ + 11.6433744, + 50.075565501 + ], + [ + 11.643248, + 50.075543801 + ], + [ + 11.642424, + 50.075387401 + ], + [ + 11.6415287, + 50.075183401 + ], + [ + 11.6407452, + 50.074961701 + ], + [ + 11.6401495, + 50.074785701 + ], + [ + 11.6394853, + 50.074573701 + ], + [ + 11.6378713, + 50.074067901 + ], + [ + 11.6369, + 50.073795201 + ], + [ + 11.6364257, + 50.073679101 + ], + [ + 11.6358032, + 50.073544701 + ], + [ + 11.634547, + 50.073309101 + ], + [ + 11.6336592, + 50.073132801 + ], + [ + 11.6329767, + 50.072985701 + ], + [ + 11.6323834, + 50.072829401 + ], + [ + 11.6318241, + 50.072664901 + ], + [ + 11.6311797, + 50.072456601 + ], + [ + 11.6304024, + 50.072159901 + ], + [ + 11.6297529, + 50.071875101 + ], + [ + 11.6291374, + 50.071557201 + ], + [ + 11.6286354, + 50.071284501 + ], + [ + 11.6279492, + 50.070853701 + ], + [ + 11.6272845, + 50.070403101 + ], + [ + 11.6261076, + 50.069594701 + ], + [ + 11.6253862, + 50.069099301 + ], + [ + 11.6249816, + 50.068821401 + ], + [ + 11.6239635, + 50.068118101 + ], + [ + 11.6227889, + 50.067310701 + ], + [ + 11.6221257, + 50.066833601 + ], + [ + 11.6216717, + 50.066491201 + ], + [ + 11.6212318, + 50.066116101 + ], + [ + 11.6206489, + 50.065565001 + ], + [ + 11.6202487, + 50.065156101 + ], + [ + 11.6198659, + 50.064699001 + ], + [ + 11.619469, + 50.064184801 + ], + [ + 11.6191747, + 50.063752801 + ], + [ + 11.6188782, + 50.063260301 + ], + [ + 11.6185805, + 50.062673601 + ], + [ + 11.6183777, + 50.062210201 + ], + [ + 11.6181751, + 50.061621101 + ], + [ + 11.6180967, + 50.061317001 + ], + [ + 11.6180096, + 50.060979001 + ], + [ + 11.6178942, + 50.060302301 + ], + [ + 11.617854, + 50.059795201 + ], + [ + 11.6178426, + 50.059155001 + ], + [ + 11.6178623, + 50.058726201 + ], + [ + 11.6179311, + 50.057691901 + ], + [ + 11.6179704, + 50.057195401 + ], + [ + 11.617977154, + 50.057069581 + ] + ] + } + }, + { + "identifier": "2024-018126--vi-bs.2026-01-07_00-00-00-000.devi-zus.2025-08-04_00-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.40388927526534,11.768334001772246,50.37925193892213,11.788577516373907", + "point": "50.40388927526534,11.768334001772246", + "startLcPosition": "79", + "impact": { + "lower": "Berg/Bad Steben", + "upper": "Frankenwald", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Frankenwald - Berg/Bad Steben", + "startTimestamp": "2026-01-07T00:00:00+01:00", + "coordinate": { + "lat": 50.40388927526534, + "long": 11.768334001772246 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.01.26 um 00:00 Uhr", + "Ende: 11.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.27)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 0.5 km hinter Frankenwald und 0.8 km vor AS Berg/Bad Steben", + "", + "L\u00e4nge: 3.68 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A9 Br\u00fcckenneubau und D 244" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.768334002, + 50.403889275 + ], + [ + 11.7680911, + 50.403839601 + ], + [ + 11.767607, + 50.403728801 + ], + [ + 11.7671567, + 50.403605501 + ], + [ + 11.7668968, + 50.403515701 + ], + [ + 11.766671, + 50.403433401 + ], + [ + 11.7663734, + 50.403311101 + ], + [ + 11.7660328, + 50.403160201 + ], + [ + 11.765689, + 50.402984001 + ], + [ + 11.765302, + 50.402762601 + ], + [ + 11.7647414, + 50.402364501 + ], + [ + 11.7643227, + 50.401994501 + ], + [ + 11.7640824, + 50.401740401 + ], + [ + 11.7638321, + 50.401428801 + ], + [ + 11.763659, + 50.401164401 + ], + [ + 11.7634742, + 50.400829301 + ], + [ + 11.7633671, + 50.400604701 + ], + [ + 11.763284, + 50.400344301 + ], + [ + 11.7632186, + 50.400080301 + ], + [ + 11.7631833, + 50.399881301 + ], + [ + 11.7631599, + 50.399391201 + ], + [ + 11.7631908, + 50.399072001 + ], + [ + 11.763646, + 50.396520401 + ], + [ + 11.763842, + 50.395616401 + ], + [ + 11.7639752, + 50.395190001 + ], + [ + 11.7640827, + 50.394896401 + ], + [ + 11.7642405, + 50.394565801 + ], + [ + 11.7645954, + 50.394023901 + ], + [ + 11.7648323, + 50.393727101 + ], + [ + 11.7650796, + 50.393463201 + ], + [ + 11.7653575, + 50.393191201 + ], + [ + 11.7656849, + 50.392921901 + ], + [ + 11.7668415, + 50.392166901 + ], + [ + 11.7672161, + 50.391988101 + ], + [ + 11.7674731, + 50.391873901 + ], + [ + 11.7681439, + 50.391599801 + ], + [ + 11.7687191, + 50.391396801 + ], + [ + 11.7695008, + 50.391158601 + ], + [ + 11.7703558, + 50.390917601 + ], + [ + 11.7712802, + 50.390653801 + ], + [ + 11.7719541, + 50.390448801 + ], + [ + 11.7725712, + 50.390243401 + ], + [ + 11.7730631, + 50.390045801 + ], + [ + 11.7736745, + 50.389780101 + ], + [ + 11.7741292, + 50.389547901 + ], + [ + 11.7749003, + 50.389130301 + ], + [ + 11.7757184, + 50.388589001 + ], + [ + 11.7761482, + 50.388262801 + ], + [ + 11.7764506, + 50.388006101 + ], + [ + 11.7766974, + 50.387777001 + ], + [ + 11.7771104, + 50.387366701 + ], + [ + 11.7774497, + 50.386976301 + ], + [ + 11.7780438, + 50.386235501 + ], + [ + 11.7787706, + 50.385329101 + ], + [ + 11.779102, + 50.384958501 + ], + [ + 11.7794761, + 50.384582901 + ], + [ + 11.7799977, + 50.384112201 + ], + [ + 11.7803861, + 50.383801001 + ], + [ + 11.7807636, + 50.383534401 + ], + [ + 11.7812716, + 50.383185801 + ], + [ + 11.7818579, + 50.382836101 + ], + [ + 11.7824299, + 50.382527501 + ], + [ + 11.7831492, + 50.382162601 + ], + [ + 11.7834717, + 50.382007301 + ], + [ + 11.784451, + 50.381515201 + ], + [ + 11.7857095, + 50.380874101 + ], + [ + 11.7870656, + 50.380180001 + ], + [ + 11.7876546, + 50.379858701 + ], + [ + 11.78825, + 50.379483701 + ], + [ + 11.788577516, + 50.379251939 + ] + ] + } + }, + { + "identifier": "2024-018126--vi-bs.2026-01-07_00-00-00-000.devi-zus.2025-08-04_00-00-00-000.f_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.42051417191234,11.789158492050806,50.403916653025696,11.768467877169709", + "point": "50.42051417191234,11.789158492050806", + "startLcPosition": "81", + "impact": { + "lower": "Berg/Bad Steben", + "upper": "Hirschberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Hirschberg - Berg/Bad Steben", + "startTimestamp": "2026-01-07T00:00:00+01:00", + "coordinate": { + "lat": 50.42051417191234, + "long": 11.789158492050806 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.01.26 um 00:00 Uhr", + "Ende: 11.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.27)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 0.9 km hinter Hirschberg und 4.5 km vor AS Berg/Bad Steben", + "", + "L\u00e4nge: 2.47 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A9 Br\u00fcckenneubau und D 244" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.789158492, + 50.420514172 + ], + [ + 11.7889992, + 50.420359401 + ], + [ + 11.788719, + 50.420081101 + ], + [ + 11.7882905, + 50.419721301 + ], + [ + 11.7875247, + 50.419139201 + ], + [ + 11.7869292, + 50.418762201 + ], + [ + 11.78637, + 50.418415301 + ], + [ + 11.7862927, + 50.418369801 + ], + [ + 11.7860415, + 50.418229201 + ], + [ + 11.7856551, + 50.418007701 + ], + [ + 11.7829796, + 50.416494001 + ], + [ + 11.7823826, + 50.416161501 + ], + [ + 11.7821523, + 50.416033301 + ], + [ + 11.7818989, + 50.415880101 + ], + [ + 11.7813958, + 50.415590301 + ], + [ + 11.7810826, + 50.415397101 + ], + [ + 11.7807703, + 50.415183301 + ], + [ + 11.7804776, + 50.414959801 + ], + [ + 11.7802856, + 50.414795701 + ], + [ + 11.7802384, + 50.414755401 + ], + [ + 11.7800108, + 50.414531301 + ], + [ + 11.7798173, + 50.414325101 + ], + [ + 11.7795547, + 50.413980001 + ], + [ + 11.7792857, + 50.413551601 + ], + [ + 11.7791745, + 50.413352701 + ], + [ + 11.7791589, + 50.413320201 + ], + [ + 11.7790117, + 50.413037601 + ], + [ + 11.7786644, + 50.412419001 + ], + [ + 11.7783168, + 50.411927201 + ], + [ + 11.7779265, + 50.411467001 + ], + [ + 11.7777025, + 50.411250101 + ], + [ + 11.7774959, + 50.411053401 + ], + [ + 11.7772048, + 50.410786301 + ], + [ + 11.7768831, + 50.410498701 + ], + [ + 11.7765785, + 50.410204201 + ], + [ + 11.7763384, + 50.409964001 + ], + [ + 11.7761066, + 50.409701501 + ], + [ + 11.7759075, + 50.409452001 + ], + [ + 11.7756821, + 50.409132501 + ], + [ + 11.7755127, + 50.408858001 + ], + [ + 11.7753011, + 50.408428301 + ], + [ + 11.7751456, + 50.408047901 + ], + [ + 11.7749852, + 50.407598601 + ], + [ + 11.7748674, + 50.407244701 + ], + [ + 11.7747396, + 50.406904501 + ], + [ + 11.7746537, + 50.406702701 + ], + [ + 11.7745461, + 50.406506601 + ], + [ + 11.7744247, + 50.406287301 + ], + [ + 11.7742862, + 50.406099401 + ], + [ + 11.7741214, + 50.405890501 + ], + [ + 11.7738855, + 50.405641101 + ], + [ + 11.7736696, + 50.405453901 + ], + [ + 11.7735385, + 50.405347101 + ], + [ + 11.7735044, + 50.405325601 + ], + [ + 11.7730253, + 50.405005601 + ], + [ + 11.7725365, + 50.404755301 + ], + [ + 11.7719993, + 50.404537001 + ], + [ + 11.7714613, + 50.404377101 + ], + [ + 11.7711769, + 50.404313001 + ], + [ + 11.7708798, + 50.404249801 + ], + [ + 11.7705682, + 50.404195901 + ], + [ + 11.7702164, + 50.404145601 + ], + [ + 11.770118, + 50.404131501 + ], + [ + 11.7688679, + 50.403983201 + ], + [ + 11.7685175, + 50.403926801 + ], + [ + 11.768467877, + 50.403916653 + ] + ] + } + }, + { + "identifier": "2026-016163--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.53123561629522,11.804381438027741,50.55999648598906,11.78902249236637", + "point": "50.53123561629522,11.804381438027741", + "startLcPosition": "82", + "impact": { + "lower": "Himmelsteiche", + "upper": "Bad Lobenstein", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Bad Lobenstein - Himmelsteiche", + "coordinate": { + "lat": 50.53123561629522, + "long": 11.804381438027741 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 07:00 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 07:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 07:00 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 07:00 Uhr.", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 10.3 km hinter AS Bad Lobenstein und 3.1 km vor Himmelsteiche", + "", + "L\u00e4nge: 3.52 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10.25 m", + "", + "Instandhaltungsarbeiten an der BSW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.804381438, + 50.531235616 + ], + [ + 11.8049045, + 50.532502201 + ], + [ + 11.8052667, + 50.533862901 + ], + [ + 11.8052702, + 50.533894901 + ], + [ + 11.8054039, + 50.535100401 + ], + [ + 11.8054238, + 50.535844901 + ], + [ + 11.8053898, + 50.536365001 + ], + [ + 11.8052256, + 50.537494501 + ], + [ + 11.8049366, + 50.538623001 + ], + [ + 11.8044991, + 50.539822801 + ], + [ + 11.8041927, + 50.540394701 + ], + [ + 11.8037687, + 50.541132201 + ], + [ + 11.8030212, + 50.542196101 + ], + [ + 11.8020698, + 50.543312601 + ], + [ + 11.8013321, + 50.544053601 + ], + [ + 11.8010333, + 50.544354301 + ], + [ + 11.8005267, + 50.544790101 + ], + [ + 11.799975, + 50.545230601 + ], + [ + 11.7992244, + 50.545791501 + ], + [ + 11.7987719, + 50.546094701 + ], + [ + 11.797783, + 50.546742501 + ], + [ + 11.7967334, + 50.547379801 + ], + [ + 11.7963861, + 50.547591901 + ], + [ + 11.7963391, + 50.547621001 + ], + [ + 11.7959787, + 50.547843501 + ], + [ + 11.795019, + 50.548524601 + ], + [ + 11.7945948, + 50.548827401 + ], + [ + 11.7940846, + 50.549273301 + ], + [ + 11.793593, + 50.549750601 + ], + [ + 11.7929597, + 50.550536101 + ], + [ + 11.7924488, + 50.551294801 + ], + [ + 11.7920517, + 50.552106701 + ], + [ + 11.7917754, + 50.552873801 + ], + [ + 11.7908379, + 50.555689701 + ], + [ + 11.7901084, + 50.557856101 + ], + [ + 11.7899609, + 50.558282201 + ], + [ + 11.7897817, + 50.558734401 + ], + [ + 11.7895745, + 50.559148301 + ], + [ + 11.7893309, + 50.559560201 + ], + [ + 11.7891164, + 50.559876101 + ], + [ + 11.789022492, + 50.559996486 + ] + ] + } + }, + { + "identifier": "2026-016363--vi-bs.2026-04-07_07-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.434107315949745,11.799718431093602,50.43080312576939,11.797661231164456", + "point": "50.434107315949745,11.799718431093602", + "startLcPosition": "82", + "impact": { + "lower": "Hirschberg", + "upper": "Bad Lobenstein", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bad Lobenstein - Hirschberg", + "coordinate": { + "lat": 50.434107315949745, + "long": 11.799718431093602 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 17:00 Uhr", + "10.04.26 von 07:00 bis 13:00 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.2 km hinter AS Bad Lobenstein und 0.4 km vor Hirschberg", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "Restleistung Breternitz LSW 15" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.799718431, + 50.434107316 + ], + [ + 11.7996349, + 50.433942901 + ], + [ + 11.7995667, + 50.433811501 + ], + [ + 11.7994625, + 50.433606301 + ], + [ + 11.7993116, + 50.433309201 + ], + [ + 11.7991873, + 50.433064401 + ], + [ + 11.7989546, + 50.432626401 + ], + [ + 11.7986913, + 50.432174801 + ], + [ + 11.7984014, + 50.431724701 + ], + [ + 11.7980596, + 50.431264001 + ], + [ + 11.797661231, + 50.430803126 + ] + ] + } + }, + { + "identifier": "2026-015782--vi-bs.2026-04-06_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.57476115141016,11.774474388886944,50.73419176168436,11.84961872488692", + "point": "50.57476115141016,11.774474388886944", + "startLcPosition": "83", + "impact": { + "lower": "Triptis", + "upper": "Schleiz", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Schleiz - Triptis", + "coordinate": { + "lat": 50.57476115141016, + "long": 11.774474388886944 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 3.3 km hinter AS Schleiz und 1.7 km vor AS Triptis", + "", + "L\u00e4nge: 18.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A9 von Schleiz (AS) nach Triptis (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.774474389, + 50.574761151 + ], + [ + 11.774527, + 50.575149001 + ], + [ + 11.7746345, + 50.575590301 + ], + [ + 11.7747695, + 50.576006401 + ], + [ + 11.7749319, + 50.576426301 + ], + [ + 11.775594, + 50.577701701 + ], + [ + 11.7759202, + 50.578326601 + ], + [ + 11.7761843, + 50.578800501 + ], + [ + 11.7762746, + 50.578971001 + ], + [ + 11.7771201, + 50.580518201 + ], + [ + 11.777286, + 50.580820101 + ], + [ + 11.7783036, + 50.582671601 + ], + [ + 11.7788813, + 50.583738301 + ], + [ + 11.7790291, + 50.584011101 + ], + [ + 11.779283, + 50.584471301 + ], + [ + 11.7800088, + 50.585784601 + ], + [ + 11.7807823, + 50.587147601 + ], + [ + 11.782082, + 50.589447701 + ], + [ + 11.7827985, + 50.590837401 + ], + [ + 11.7832492, + 50.591663201 + ], + [ + 11.7853354, + 50.595551801 + ], + [ + 11.7858383, + 50.596451601 + ], + [ + 11.7864205, + 50.597530901 + ], + [ + 11.7876608, + 50.599791901 + ], + [ + 11.790004, + 50.604090301 + ], + [ + 11.7902786, + 50.604676801 + ], + [ + 11.7904526, + 50.605045901 + ], + [ + 11.7906136, + 50.605407601 + ], + [ + 11.7909318, + 50.606076301 + ], + [ + 11.7913583, + 50.607312101 + ], + [ + 11.7916319, + 50.608316401 + ], + [ + 11.7917365, + 50.608764101 + ], + [ + 11.7918424, + 50.609292101 + ], + [ + 11.7919993, + 50.610268801 + ], + [ + 11.7921111, + 50.611221801 + ], + [ + 11.7922499, + 50.613225901 + ], + [ + 11.7925519, + 50.616606301 + ], + [ + 11.7926672, + 50.617672401 + ], + [ + 11.7928737, + 50.619961301 + ], + [ + 11.7930485, + 50.621631901 + ], + [ + 11.7931228, + 50.622047401 + ], + [ + 11.7931642, + 50.622257401 + ], + [ + 11.7932134, + 50.622492301 + ], + [ + 11.793306, + 50.622837501 + ], + [ + 11.7934061, + 50.623195001 + ], + [ + 11.7935751, + 50.623729801 + ], + [ + 11.7938125, + 50.624380601 + ], + [ + 11.7939618, + 50.624789401 + ], + [ + 11.7946665, + 50.626718401 + ], + [ + 11.7962654, + 50.631095001 + ], + [ + 11.7978446, + 50.635420401 + ], + [ + 11.797901, + 50.635582201 + ], + [ + 11.7979348, + 50.635672401 + ], + [ + 11.7994632, + 50.639854401 + ], + [ + 11.8008986, + 50.643782401 + ], + [ + 11.8010711, + 50.644209301 + ], + [ + 11.8012638, + 50.644642401 + ], + [ + 11.8014721, + 50.645069001 + ], + [ + 11.8016882, + 50.645493201 + ], + [ + 11.8019308, + 50.645916401 + ], + [ + 11.8021844, + 50.646334901 + ], + [ + 11.8024595, + 50.646742501 + ], + [ + 11.8027522, + 50.647155901 + ], + [ + 11.8030551, + 50.647554801 + ], + [ + 11.8033753, + 50.647955101 + ], + [ + 11.8037872, + 50.648449401 + ], + [ + 11.8040557, + 50.648731201 + ], + [ + 11.8044138, + 50.649115501 + ], + [ + 11.8047906, + 50.649493901 + ], + [ + 11.8052585, + 50.649936101 + ], + [ + 11.8056651, + 50.650295901 + ], + [ + 11.8060912, + 50.650655301 + ], + [ + 11.8065278, + 50.651003401 + ], + [ + 11.8078251, + 50.652042501 + ], + [ + 11.8080249, + 50.652202601 + ], + [ + 11.8095268, + 50.653431101 + ], + [ + 11.810266, + 50.654005801 + ], + [ + 11.8111415, + 50.654707001 + ], + [ + 11.8119362, + 50.655350401 + ], + [ + 11.8122245, + 50.655582301 + ], + [ + 11.8124569, + 50.655785001 + ], + [ + 11.8130428, + 50.656283701 + ], + [ + 11.8137132, + 50.656906501 + ], + [ + 11.8140389, + 50.657219701 + ], + [ + 11.8144472, + 50.657662301 + ], + [ + 11.8148192, + 50.658064801 + ], + [ + 11.8150078, + 50.658298301 + ], + [ + 11.8154123, + 50.658821901 + ], + [ + 11.81585, + 50.659396101 + ], + [ + 11.8162688, + 50.660032101 + ], + [ + 11.8182765, + 50.663589701 + ], + [ + 11.8205046, + 50.667460401 + ], + [ + 11.8226685, + 50.671219101 + ], + [ + 11.8229531, + 50.671703501 + ], + [ + 11.8232131, + 50.672126101 + ], + [ + 11.8235961, + 50.672712301 + ], + [ + 11.8239155, + 50.673172401 + ], + [ + 11.8242852, + 50.673684701 + ], + [ + 11.824942, + 50.674561701 + ], + [ + 11.8251374, + 50.674820101 + ], + [ + 11.8261858, + 50.676222701 + ], + [ + 11.8290371, + 50.679959501 + ], + [ + 11.8291796, + 50.680147501 + ], + [ + 11.8309642, + 50.682501001 + ], + [ + 11.8321665, + 50.684194201 + ], + [ + 11.8333206, + 50.685828401 + ], + [ + 11.8334412, + 50.685995001 + ], + [ + 11.8346251, + 50.687661801 + ], + [ + 11.8350491, + 50.688258901 + ], + [ + 11.8380223, + 50.692445201 + ], + [ + 11.8409987, + 50.696599201 + ], + [ + 11.842291, + 50.698437501 + ], + [ + 11.8427737, + 50.699102201 + ], + [ + 11.8432687, + 50.699714901 + ], + [ + 11.8437857, + 50.700285501 + ], + [ + 11.8443537, + 50.700879201 + ], + [ + 11.8461524, + 50.702542201 + ], + [ + 11.8479921, + 50.704277501 + ], + [ + 11.8483582, + 50.704629001 + ], + [ + 11.8494359, + 50.705681001 + ], + [ + 11.8499093, + 50.706137401 + ], + [ + 11.8503532, + 50.706596401 + ], + [ + 11.8507789, + 50.707067101 + ], + [ + 11.8511748, + 50.707549701 + ], + [ + 11.8515363, + 50.708038401 + ], + [ + 11.8518708, + 50.708536901 + ], + [ + 11.8521709, + 50.709050401 + ], + [ + 11.852437, + 50.709563701 + ], + [ + 11.8526766, + 50.710081601 + ], + [ + 11.8528792, + 50.710614001 + ], + [ + 11.8530468, + 50.711145801 + ], + [ + 11.8531858, + 50.711680901 + ], + [ + 11.8532828, + 50.712221301 + ], + [ + 11.8533556, + 50.712758101 + ], + [ + 11.8533603, + 50.713302201 + ], + [ + 11.8533596, + 50.713351601 + ], + [ + 11.8533576, + 50.713650701 + ], + [ + 11.8533375, + 50.714199701 + ], + [ + 11.853284, + 50.714740801 + ], + [ + 11.8530673, + 50.715821701 + ], + [ + 11.852908, + 50.716353601 + ], + [ + 11.8527184, + 50.716884001 + ], + [ + 11.8525012, + 50.717375801 + ], + [ + 11.852487, + 50.717408001 + ], + [ + 11.8521863, + 50.718009701 + ], + [ + 11.8518572, + 50.718603201 + ], + [ + 11.8503397, + 50.721300001 + ], + [ + 11.8494717, + 50.722842501 + ], + [ + 11.8490888, + 50.723512801 + ], + [ + 11.8488122, + 50.724019101 + ], + [ + 11.8485074, + 50.724619001 + ], + [ + 11.8482595, + 50.725215501 + ], + [ + 11.8481679, + 50.725459901 + ], + [ + 11.8478372, + 50.726534901 + ], + [ + 11.8477272, + 50.727064801 + ], + [ + 11.8476544, + 50.727601701 + ], + [ + 11.8476111, + 50.728133801 + ], + [ + 11.8476069, + 50.728665301 + ], + [ + 11.847634, + 50.729197801 + ], + [ + 11.847699, + 50.729743001 + ], + [ + 11.8477936, + 50.730276901 + ], + [ + 11.8479257, + 50.730808001 + ], + [ + 11.848081, + 50.731331201 + ], + [ + 11.8482828, + 50.731854001 + ], + [ + 11.8485105, + 50.732366901 + ], + [ + 11.8487709, + 50.732878001 + ], + [ + 11.8490614, + 50.733377901 + ], + [ + 11.8493878, + 50.733868301 + ], + [ + 11.849618725, + 50.734191762 + ] + ] + } + }, + { + "identifier": "2026-015779--vi-bs.2026-04-13_20-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.57476115141016,11.774474388886944,50.73419176168436,11.84961872488692", + "point": "50.57476115141016,11.774474388886944", + "startLcPosition": "83", + "impact": { + "lower": "Triptis", + "upper": "Schleiz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Schleiz - Triptis", + "coordinate": { + "lat": 50.57476115141016, + "long": 11.774474388886944 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 06:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 06:00 Uhr.", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 3.3 km hinter AS Schleiz und 1.7 km vor AS Triptis", + "", + "L\u00e4nge: 18.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A9 von Schleiz (AS) nach Triptis (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.774474389, + 50.574761151 + ], + [ + 11.774527, + 50.575149001 + ], + [ + 11.7746345, + 50.575590301 + ], + [ + 11.7747695, + 50.576006401 + ], + [ + 11.7749319, + 50.576426301 + ], + [ + 11.775594, + 50.577701701 + ], + [ + 11.7759202, + 50.578326601 + ], + [ + 11.7761843, + 50.578800501 + ], + [ + 11.7762746, + 50.578971001 + ], + [ + 11.7771201, + 50.580518201 + ], + [ + 11.777286, + 50.580820101 + ], + [ + 11.7783036, + 50.582671601 + ], + [ + 11.7788813, + 50.583738301 + ], + [ + 11.7790291, + 50.584011101 + ], + [ + 11.779283, + 50.584471301 + ], + [ + 11.7800088, + 50.585784601 + ], + [ + 11.7807823, + 50.587147601 + ], + [ + 11.782082, + 50.589447701 + ], + [ + 11.7827985, + 50.590837401 + ], + [ + 11.7832492, + 50.591663201 + ], + [ + 11.7853354, + 50.595551801 + ], + [ + 11.7858383, + 50.596451601 + ], + [ + 11.7864205, + 50.597530901 + ], + [ + 11.7876608, + 50.599791901 + ], + [ + 11.790004, + 50.604090301 + ], + [ + 11.7902786, + 50.604676801 + ], + [ + 11.7904526, + 50.605045901 + ], + [ + 11.7906136, + 50.605407601 + ], + [ + 11.7909318, + 50.606076301 + ], + [ + 11.7913583, + 50.607312101 + ], + [ + 11.7916319, + 50.608316401 + ], + [ + 11.7917365, + 50.608764101 + ], + [ + 11.7918424, + 50.609292101 + ], + [ + 11.7919993, + 50.610268801 + ], + [ + 11.7921111, + 50.611221801 + ], + [ + 11.7922499, + 50.613225901 + ], + [ + 11.7925519, + 50.616606301 + ], + [ + 11.7926672, + 50.617672401 + ], + [ + 11.7928737, + 50.619961301 + ], + [ + 11.7930485, + 50.621631901 + ], + [ + 11.7931228, + 50.622047401 + ], + [ + 11.7931642, + 50.622257401 + ], + [ + 11.7932134, + 50.622492301 + ], + [ + 11.793306, + 50.622837501 + ], + [ + 11.7934061, + 50.623195001 + ], + [ + 11.7935751, + 50.623729801 + ], + [ + 11.7938125, + 50.624380601 + ], + [ + 11.7939618, + 50.624789401 + ], + [ + 11.7946665, + 50.626718401 + ], + [ + 11.7962654, + 50.631095001 + ], + [ + 11.7978446, + 50.635420401 + ], + [ + 11.797901, + 50.635582201 + ], + [ + 11.7979348, + 50.635672401 + ], + [ + 11.7994632, + 50.639854401 + ], + [ + 11.8008986, + 50.643782401 + ], + [ + 11.8010711, + 50.644209301 + ], + [ + 11.8012638, + 50.644642401 + ], + [ + 11.8014721, + 50.645069001 + ], + [ + 11.8016882, + 50.645493201 + ], + [ + 11.8019308, + 50.645916401 + ], + [ + 11.8021844, + 50.646334901 + ], + [ + 11.8024595, + 50.646742501 + ], + [ + 11.8027522, + 50.647155901 + ], + [ + 11.8030551, + 50.647554801 + ], + [ + 11.8033753, + 50.647955101 + ], + [ + 11.8037872, + 50.648449401 + ], + [ + 11.8040557, + 50.648731201 + ], + [ + 11.8044138, + 50.649115501 + ], + [ + 11.8047906, + 50.649493901 + ], + [ + 11.8052585, + 50.649936101 + ], + [ + 11.8056651, + 50.650295901 + ], + [ + 11.8060912, + 50.650655301 + ], + [ + 11.8065278, + 50.651003401 + ], + [ + 11.8078251, + 50.652042501 + ], + [ + 11.8080249, + 50.652202601 + ], + [ + 11.8095268, + 50.653431101 + ], + [ + 11.810266, + 50.654005801 + ], + [ + 11.8111415, + 50.654707001 + ], + [ + 11.8119362, + 50.655350401 + ], + [ + 11.8122245, + 50.655582301 + ], + [ + 11.8124569, + 50.655785001 + ], + [ + 11.8130428, + 50.656283701 + ], + [ + 11.8137132, + 50.656906501 + ], + [ + 11.8140389, + 50.657219701 + ], + [ + 11.8144472, + 50.657662301 + ], + [ + 11.8148192, + 50.658064801 + ], + [ + 11.8150078, + 50.658298301 + ], + [ + 11.8154123, + 50.658821901 + ], + [ + 11.81585, + 50.659396101 + ], + [ + 11.8162688, + 50.660032101 + ], + [ + 11.8182765, + 50.663589701 + ], + [ + 11.8205046, + 50.667460401 + ], + [ + 11.8226685, + 50.671219101 + ], + [ + 11.8229531, + 50.671703501 + ], + [ + 11.8232131, + 50.672126101 + ], + [ + 11.8235961, + 50.672712301 + ], + [ + 11.8239155, + 50.673172401 + ], + [ + 11.8242852, + 50.673684701 + ], + [ + 11.824942, + 50.674561701 + ], + [ + 11.8251374, + 50.674820101 + ], + [ + 11.8261858, + 50.676222701 + ], + [ + 11.8290371, + 50.679959501 + ], + [ + 11.8291796, + 50.680147501 + ], + [ + 11.8309642, + 50.682501001 + ], + [ + 11.8321665, + 50.684194201 + ], + [ + 11.8333206, + 50.685828401 + ], + [ + 11.8334412, + 50.685995001 + ], + [ + 11.8346251, + 50.687661801 + ], + [ + 11.8350491, + 50.688258901 + ], + [ + 11.8380223, + 50.692445201 + ], + [ + 11.8409987, + 50.696599201 + ], + [ + 11.842291, + 50.698437501 + ], + [ + 11.8427737, + 50.699102201 + ], + [ + 11.8432687, + 50.699714901 + ], + [ + 11.8437857, + 50.700285501 + ], + [ + 11.8443537, + 50.700879201 + ], + [ + 11.8461524, + 50.702542201 + ], + [ + 11.8479921, + 50.704277501 + ], + [ + 11.8483582, + 50.704629001 + ], + [ + 11.8494359, + 50.705681001 + ], + [ + 11.8499093, + 50.706137401 + ], + [ + 11.8503532, + 50.706596401 + ], + [ + 11.8507789, + 50.707067101 + ], + [ + 11.8511748, + 50.707549701 + ], + [ + 11.8515363, + 50.708038401 + ], + [ + 11.8518708, + 50.708536901 + ], + [ + 11.8521709, + 50.709050401 + ], + [ + 11.852437, + 50.709563701 + ], + [ + 11.8526766, + 50.710081601 + ], + [ + 11.8528792, + 50.710614001 + ], + [ + 11.8530468, + 50.711145801 + ], + [ + 11.8531858, + 50.711680901 + ], + [ + 11.8532828, + 50.712221301 + ], + [ + 11.8533556, + 50.712758101 + ], + [ + 11.8533603, + 50.713302201 + ], + [ + 11.8533596, + 50.713351601 + ], + [ + 11.8533576, + 50.713650701 + ], + [ + 11.8533375, + 50.714199701 + ], + [ + 11.853284, + 50.714740801 + ], + [ + 11.8530673, + 50.715821701 + ], + [ + 11.852908, + 50.716353601 + ], + [ + 11.8527184, + 50.716884001 + ], + [ + 11.8525012, + 50.717375801 + ], + [ + 11.852487, + 50.717408001 + ], + [ + 11.8521863, + 50.718009701 + ], + [ + 11.8518572, + 50.718603201 + ], + [ + 11.8503397, + 50.721300001 + ], + [ + 11.8494717, + 50.722842501 + ], + [ + 11.8490888, + 50.723512801 + ], + [ + 11.8488122, + 50.724019101 + ], + [ + 11.8485074, + 50.724619001 + ], + [ + 11.8482595, + 50.725215501 + ], + [ + 11.8481679, + 50.725459901 + ], + [ + 11.8478372, + 50.726534901 + ], + [ + 11.8477272, + 50.727064801 + ], + [ + 11.8476544, + 50.727601701 + ], + [ + 11.8476111, + 50.728133801 + ], + [ + 11.8476069, + 50.728665301 + ], + [ + 11.847634, + 50.729197801 + ], + [ + 11.847699, + 50.729743001 + ], + [ + 11.8477936, + 50.730276901 + ], + [ + 11.8479257, + 50.730808001 + ], + [ + 11.848081, + 50.731331201 + ], + [ + 11.8482828, + 50.731854001 + ], + [ + 11.8485105, + 50.732366901 + ], + [ + 11.8487709, + 50.732878001 + ], + [ + 11.8490614, + 50.733377901 + ], + [ + 11.8493878, + 50.733868301 + ], + [ + 11.849618725, + 50.734191762 + ] + ] + } + }, + { + "identifier": "2026-015783--vi-bs.2026-04-20_20-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.57476115141016,11.774474388886944,50.73419176168436,11.84961872488692", + "point": "50.57476115141016,11.774474388886944", + "startLcPosition": "83", + "impact": { + "lower": "Triptis", + "upper": "Schleiz", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Schleiz - Triptis", + "coordinate": { + "lat": 50.57476115141016, + "long": 11.774474388886944 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 06:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 06:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 06:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 06:00 Uhr.", + "24.04.26 20:00 bis zum 25.04.26 06:00 Uhr.", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 3.3 km hinter AS Schleiz und 1.7 km vor AS Triptis", + "", + "L\u00e4nge: 18.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A9 von Schleiz (AS) nach Triptis (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.774474389, + 50.574761151 + ], + [ + 11.774527, + 50.575149001 + ], + [ + 11.7746345, + 50.575590301 + ], + [ + 11.7747695, + 50.576006401 + ], + [ + 11.7749319, + 50.576426301 + ], + [ + 11.775594, + 50.577701701 + ], + [ + 11.7759202, + 50.578326601 + ], + [ + 11.7761843, + 50.578800501 + ], + [ + 11.7762746, + 50.578971001 + ], + [ + 11.7771201, + 50.580518201 + ], + [ + 11.777286, + 50.580820101 + ], + [ + 11.7783036, + 50.582671601 + ], + [ + 11.7788813, + 50.583738301 + ], + [ + 11.7790291, + 50.584011101 + ], + [ + 11.779283, + 50.584471301 + ], + [ + 11.7800088, + 50.585784601 + ], + [ + 11.7807823, + 50.587147601 + ], + [ + 11.782082, + 50.589447701 + ], + [ + 11.7827985, + 50.590837401 + ], + [ + 11.7832492, + 50.591663201 + ], + [ + 11.7853354, + 50.595551801 + ], + [ + 11.7858383, + 50.596451601 + ], + [ + 11.7864205, + 50.597530901 + ], + [ + 11.7876608, + 50.599791901 + ], + [ + 11.790004, + 50.604090301 + ], + [ + 11.7902786, + 50.604676801 + ], + [ + 11.7904526, + 50.605045901 + ], + [ + 11.7906136, + 50.605407601 + ], + [ + 11.7909318, + 50.606076301 + ], + [ + 11.7913583, + 50.607312101 + ], + [ + 11.7916319, + 50.608316401 + ], + [ + 11.7917365, + 50.608764101 + ], + [ + 11.7918424, + 50.609292101 + ], + [ + 11.7919993, + 50.610268801 + ], + [ + 11.7921111, + 50.611221801 + ], + [ + 11.7922499, + 50.613225901 + ], + [ + 11.7925519, + 50.616606301 + ], + [ + 11.7926672, + 50.617672401 + ], + [ + 11.7928737, + 50.619961301 + ], + [ + 11.7930485, + 50.621631901 + ], + [ + 11.7931228, + 50.622047401 + ], + [ + 11.7931642, + 50.622257401 + ], + [ + 11.7932134, + 50.622492301 + ], + [ + 11.793306, + 50.622837501 + ], + [ + 11.7934061, + 50.623195001 + ], + [ + 11.7935751, + 50.623729801 + ], + [ + 11.7938125, + 50.624380601 + ], + [ + 11.7939618, + 50.624789401 + ], + [ + 11.7946665, + 50.626718401 + ], + [ + 11.7962654, + 50.631095001 + ], + [ + 11.7978446, + 50.635420401 + ], + [ + 11.797901, + 50.635582201 + ], + [ + 11.7979348, + 50.635672401 + ], + [ + 11.7994632, + 50.639854401 + ], + [ + 11.8008986, + 50.643782401 + ], + [ + 11.8010711, + 50.644209301 + ], + [ + 11.8012638, + 50.644642401 + ], + [ + 11.8014721, + 50.645069001 + ], + [ + 11.8016882, + 50.645493201 + ], + [ + 11.8019308, + 50.645916401 + ], + [ + 11.8021844, + 50.646334901 + ], + [ + 11.8024595, + 50.646742501 + ], + [ + 11.8027522, + 50.647155901 + ], + [ + 11.8030551, + 50.647554801 + ], + [ + 11.8033753, + 50.647955101 + ], + [ + 11.8037872, + 50.648449401 + ], + [ + 11.8040557, + 50.648731201 + ], + [ + 11.8044138, + 50.649115501 + ], + [ + 11.8047906, + 50.649493901 + ], + [ + 11.8052585, + 50.649936101 + ], + [ + 11.8056651, + 50.650295901 + ], + [ + 11.8060912, + 50.650655301 + ], + [ + 11.8065278, + 50.651003401 + ], + [ + 11.8078251, + 50.652042501 + ], + [ + 11.8080249, + 50.652202601 + ], + [ + 11.8095268, + 50.653431101 + ], + [ + 11.810266, + 50.654005801 + ], + [ + 11.8111415, + 50.654707001 + ], + [ + 11.8119362, + 50.655350401 + ], + [ + 11.8122245, + 50.655582301 + ], + [ + 11.8124569, + 50.655785001 + ], + [ + 11.8130428, + 50.656283701 + ], + [ + 11.8137132, + 50.656906501 + ], + [ + 11.8140389, + 50.657219701 + ], + [ + 11.8144472, + 50.657662301 + ], + [ + 11.8148192, + 50.658064801 + ], + [ + 11.8150078, + 50.658298301 + ], + [ + 11.8154123, + 50.658821901 + ], + [ + 11.81585, + 50.659396101 + ], + [ + 11.8162688, + 50.660032101 + ], + [ + 11.8182765, + 50.663589701 + ], + [ + 11.8205046, + 50.667460401 + ], + [ + 11.8226685, + 50.671219101 + ], + [ + 11.8229531, + 50.671703501 + ], + [ + 11.8232131, + 50.672126101 + ], + [ + 11.8235961, + 50.672712301 + ], + [ + 11.8239155, + 50.673172401 + ], + [ + 11.8242852, + 50.673684701 + ], + [ + 11.824942, + 50.674561701 + ], + [ + 11.8251374, + 50.674820101 + ], + [ + 11.8261858, + 50.676222701 + ], + [ + 11.8290371, + 50.679959501 + ], + [ + 11.8291796, + 50.680147501 + ], + [ + 11.8309642, + 50.682501001 + ], + [ + 11.8321665, + 50.684194201 + ], + [ + 11.8333206, + 50.685828401 + ], + [ + 11.8334412, + 50.685995001 + ], + [ + 11.8346251, + 50.687661801 + ], + [ + 11.8350491, + 50.688258901 + ], + [ + 11.8380223, + 50.692445201 + ], + [ + 11.8409987, + 50.696599201 + ], + [ + 11.842291, + 50.698437501 + ], + [ + 11.8427737, + 50.699102201 + ], + [ + 11.8432687, + 50.699714901 + ], + [ + 11.8437857, + 50.700285501 + ], + [ + 11.8443537, + 50.700879201 + ], + [ + 11.8461524, + 50.702542201 + ], + [ + 11.8479921, + 50.704277501 + ], + [ + 11.8483582, + 50.704629001 + ], + [ + 11.8494359, + 50.705681001 + ], + [ + 11.8499093, + 50.706137401 + ], + [ + 11.8503532, + 50.706596401 + ], + [ + 11.8507789, + 50.707067101 + ], + [ + 11.8511748, + 50.707549701 + ], + [ + 11.8515363, + 50.708038401 + ], + [ + 11.8518708, + 50.708536901 + ], + [ + 11.8521709, + 50.709050401 + ], + [ + 11.852437, + 50.709563701 + ], + [ + 11.8526766, + 50.710081601 + ], + [ + 11.8528792, + 50.710614001 + ], + [ + 11.8530468, + 50.711145801 + ], + [ + 11.8531858, + 50.711680901 + ], + [ + 11.8532828, + 50.712221301 + ], + [ + 11.8533556, + 50.712758101 + ], + [ + 11.8533603, + 50.713302201 + ], + [ + 11.8533596, + 50.713351601 + ], + [ + 11.8533576, + 50.713650701 + ], + [ + 11.8533375, + 50.714199701 + ], + [ + 11.853284, + 50.714740801 + ], + [ + 11.8530673, + 50.715821701 + ], + [ + 11.852908, + 50.716353601 + ], + [ + 11.8527184, + 50.716884001 + ], + [ + 11.8525012, + 50.717375801 + ], + [ + 11.852487, + 50.717408001 + ], + [ + 11.8521863, + 50.718009701 + ], + [ + 11.8518572, + 50.718603201 + ], + [ + 11.8503397, + 50.721300001 + ], + [ + 11.8494717, + 50.722842501 + ], + [ + 11.8490888, + 50.723512801 + ], + [ + 11.8488122, + 50.724019101 + ], + [ + 11.8485074, + 50.724619001 + ], + [ + 11.8482595, + 50.725215501 + ], + [ + 11.8481679, + 50.725459901 + ], + [ + 11.8478372, + 50.726534901 + ], + [ + 11.8477272, + 50.727064801 + ], + [ + 11.8476544, + 50.727601701 + ], + [ + 11.8476111, + 50.728133801 + ], + [ + 11.8476069, + 50.728665301 + ], + [ + 11.847634, + 50.729197801 + ], + [ + 11.847699, + 50.729743001 + ], + [ + 11.8477936, + 50.730276901 + ], + [ + 11.8479257, + 50.730808001 + ], + [ + 11.848081, + 50.731331201 + ], + [ + 11.8482828, + 50.731854001 + ], + [ + 11.8485105, + 50.732366901 + ], + [ + 11.8487709, + 50.732878001 + ], + [ + 11.8490614, + 50.733377901 + ], + [ + 11.8493878, + 50.733868301 + ], + [ + 11.849618725, + 50.734191762 + ] + ] + } + }, + { + "identifier": "2026-016163--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.57474710234722,11.774239019282732,50.53479128284293,11.805139444579966", + "point": "50.57474710234722,11.774239019282732", + "startLcPosition": "84", + "impact": { + "lower": "Bad Lobenstein", + "upper": "Himmelsteiche", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Himmelsteiche - Bad Lobenstein", + "coordinate": { + "lat": 50.57474710234722, + "long": 11.774239019282732 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 07:00 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 07:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 07:00 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 07:00 Uhr.", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.1 km hinter Himmelsteiche und 10.7 km vor AS Bad Lobenstein", + "", + "L\u00e4nge: 5.11 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10.25 m", + "", + "Instandhaltungsarbeiten an der BSW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.774239019, + 50.574747102 + ], + [ + 11.7742341, + 50.574711201 + ], + [ + 11.7742066, + 50.574457001 + ], + [ + 11.7742134, + 50.574085901 + ], + [ + 11.7742518, + 50.573587301 + ], + [ + 11.7743429, + 50.573075201 + ], + [ + 11.7744654, + 50.572576801 + ], + [ + 11.7746481, + 50.572066101 + ], + [ + 11.7747899, + 50.571736301 + ], + [ + 11.7749788, + 50.571318401 + ], + [ + 11.7752567, + 50.570803701 + ], + [ + 11.7752973, + 50.570743801 + ], + [ + 11.7755937, + 50.570306801 + ], + [ + 11.7758413, + 50.569968501 + ], + [ + 11.7760658, + 50.569689101 + ], + [ + 11.7762827, + 50.569424001 + ], + [ + 11.7766587, + 50.569015401 + ], + [ + 11.7771278, + 50.568559001 + ], + [ + 11.7775433, + 50.568194901 + ], + [ + 11.7780093, + 50.567817301 + ], + [ + 11.7786921, + 50.567312401 + ], + [ + 11.779477, + 50.566779301 + ], + [ + 11.7803884, + 50.566160301 + ], + [ + 11.7824612, + 50.564754801 + ], + [ + 11.7836505, + 50.563942801 + ], + [ + 11.7844357, + 50.563410101 + ], + [ + 11.7850762, + 50.562975501 + ], + [ + 11.7856424, + 50.562582201 + ], + [ + 11.7856714, + 50.562562701 + ], + [ + 11.7862496, + 50.562173701 + ], + [ + 11.7868573, + 50.561740301 + ], + [ + 11.7874209, + 50.561321501 + ], + [ + 11.7876925, + 50.561102301 + ], + [ + 11.7879569, + 50.560876501 + ], + [ + 11.7882582, + 50.560578401 + ], + [ + 11.7885055, + 50.560321201 + ], + [ + 11.7886374, + 50.560172101 + ], + [ + 11.7887797, + 50.559989501 + ], + [ + 11.7889757, + 50.559735801 + ], + [ + 11.7891464, + 50.559476001 + ], + [ + 11.7893823, + 50.559065901 + ], + [ + 11.7895674, + 50.558680901 + ], + [ + 11.789744, + 50.558257201 + ], + [ + 11.7899047, + 50.557829501 + ], + [ + 11.790601, + 50.555654101 + ], + [ + 11.7915488, + 50.552822601 + ], + [ + 11.7918638, + 50.552030901 + ], + [ + 11.7921322, + 50.551498001 + ], + [ + 11.7922475, + 50.551269101 + ], + [ + 11.7927484, + 50.550430801 + ], + [ + 11.7934637, + 50.549590301 + ], + [ + 11.7937549, + 50.549296601 + ], + [ + 11.7940152, + 50.549070901 + ], + [ + 11.7942339, + 50.548881401 + ], + [ + 11.7947656, + 50.548466201 + ], + [ + 11.7953328, + 50.548063201 + ], + [ + 11.7957553, + 50.547790301 + ], + [ + 11.7963127, + 50.547433801 + ], + [ + 11.7968313, + 50.547117301 + ], + [ + 11.7971246, + 50.546938501 + ], + [ + 11.7977728, + 50.546523401 + ], + [ + 11.7980446, + 50.546356901 + ], + [ + 11.7990362, + 50.545703501 + ], + [ + 11.7997685, + 50.545156301 + ], + [ + 11.8009024, + 50.544186401 + ], + [ + 11.8010966, + 50.544000601 + ], + [ + 11.8018776, + 50.543253101 + ], + [ + 11.8023596, + 50.542719601 + ], + [ + 11.8028148, + 50.542164701 + ], + [ + 11.8031958, + 50.541635601 + ], + [ + 11.8035939, + 50.541048701 + ], + [ + 11.8039675, + 50.540349301 + ], + [ + 11.803981, + 50.540324101 + ], + [ + 11.8042527, + 50.539777001 + ], + [ + 11.8044936, + 50.539208101 + ], + [ + 11.8047117, + 50.538581201 + ], + [ + 11.8048646, + 50.538082901 + ], + [ + 11.8050081, + 50.537473001 + ], + [ + 11.8050935, + 50.536921301 + ], + [ + 11.8051602, + 50.536332101 + ], + [ + 11.8051666, + 50.535836301 + ], + [ + 11.8051739, + 50.535273701 + ], + [ + 11.8051408, + 50.534803501 + ], + [ + 11.805139445, + 50.534791283 + ] + ] + } + }, + { + "identifier": "2026-017459--vi-bs.2026-04-13_07-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.635551735977955,11.797653721375035,50.60894542599297,11.791554788333249", + "point": "50.635551735977955,11.797653721375035", + "startLcPosition": "85", + "impact": { + "lower": "Himmelsteiche", + "upper": "Dittersdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Dittersdorf - Himmelsteiche", + "coordinate": { + "lat": 50.635551735977955, + "long": 11.797653721375035 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 19:00 Uhr", + "14.04.26 von 07:00 bis 19:00 Uhr", + "15.04.26 von 07:00 bis 19:00 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 2.6 km hinter AS Dittersdorf und 2.9 km vor Himmelsteiche", + "", + "L\u00e4nge: 3 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A9 von Dittersdorf (AS) nach Himmelsteiche (Rastplatz) Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.797653721, + 50.635551736 + ], + [ + 11.7960414, + 50.631132001 + ], + [ + 11.7944415, + 50.626748201 + ], + [ + 11.7935836, + 50.624410301 + ], + [ + 11.7933453, + 50.623757001 + ], + [ + 11.7931748, + 50.623217701 + ], + [ + 11.793074, + 50.622857701 + ], + [ + 11.7929804, + 50.622508701 + ], + [ + 11.7929304, + 50.622269901 + ], + [ + 11.7928887, + 50.622058101 + ], + [ + 11.7928134, + 50.621637701 + ], + [ + 11.7927128, + 50.620527901 + ], + [ + 11.7924405, + 50.617769401 + ], + [ + 11.7923219, + 50.616467001 + ], + [ + 11.7920359, + 50.613240901 + ], + [ + 11.7918842, + 50.611194501 + ], + [ + 11.7917955, + 50.610224501 + ], + [ + 11.7916265, + 50.609276401 + ], + [ + 11.791554788, + 50.608945426 + ] + ] + } + }, + { + "identifier": "2026-016753--vi-bs.2026-04-07_07-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.72543125886242,11.848178634982451,50.80094204913919,11.895508277905977", + "point": "50.72543125886242,11.848178634982451", + "startLcPosition": "85", + "impact": { + "lower": "Lederhose", + "upper": "Dittersdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Dittersdorf - Lederhose", + "coordinate": { + "lat": 50.72543125886242, + "long": 11.848178634982451 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 13:00 Uhr", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 8.4 km hinter AS Dittersdorf und 0.6 km vor AS Lederhose", + "", + "L\u00e4nge: 9.41 km | Maximale Durchfahrtsbreite: 9.75 m", + "", + "Unfallteile Mittelstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.848178635, + 50.725431259 + ], + [ + 11.8481679, + 50.725459901 + ], + [ + 11.8478372, + 50.726534901 + ], + [ + 11.8477272, + 50.727064801 + ], + [ + 11.8476544, + 50.727601701 + ], + [ + 11.8476111, + 50.728133801 + ], + [ + 11.8476069, + 50.728665301 + ], + [ + 11.847634, + 50.729197801 + ], + [ + 11.847699, + 50.729743001 + ], + [ + 11.8477936, + 50.730276901 + ], + [ + 11.8479257, + 50.730808001 + ], + [ + 11.848081, + 50.731331201 + ], + [ + 11.8482828, + 50.731854001 + ], + [ + 11.8485105, + 50.732366901 + ], + [ + 11.8487709, + 50.732878001 + ], + [ + 11.8490614, + 50.733377901 + ], + [ + 11.8493878, + 50.733868301 + ], + [ + 11.8497529, + 50.734379701 + ], + [ + 11.8504881, + 50.735326901 + ], + [ + 11.8507576, + 50.735694301 + ], + [ + 11.8516438, + 50.736836301 + ], + [ + 11.8518338, + 50.737090901 + ], + [ + 11.8524714, + 50.737925201 + ], + [ + 11.8526004, + 50.738090101 + ], + [ + 11.8531989, + 50.738855501 + ], + [ + 11.8544423, + 50.740486101 + ], + [ + 11.8546335, + 50.740725301 + ], + [ + 11.8556947, + 50.742106601 + ], + [ + 11.8567064, + 50.743452001 + ], + [ + 11.8569482, + 50.743766701 + ], + [ + 11.857726, + 50.744744201 + ], + [ + 11.8582848, + 50.745471601 + ], + [ + 11.8584993, + 50.745768301 + ], + [ + 11.8587998, + 50.746152101 + ], + [ + 11.8602534, + 50.748008901 + ], + [ + 11.8607656, + 50.748606701 + ], + [ + 11.8619343, + 50.749808401 + ], + [ + 11.862211, + 50.750058001 + ], + [ + 11.8622971, + 50.750135701 + ], + [ + 11.8639143, + 50.751484501 + ], + [ + 11.8645638, + 50.751985001 + ], + [ + 11.8650617, + 50.752373201 + ], + [ + 11.8654409, + 50.752665501 + ], + [ + 11.8665585, + 50.753522601 + ], + [ + 11.8670544, + 50.753908901 + ], + [ + 11.8680317, + 50.754668401 + ], + [ + 11.8682055, + 50.754803401 + ], + [ + 11.8695585, + 50.755849801 + ], + [ + 11.8701688, + 50.756317801 + ], + [ + 11.871462, + 50.757310301 + ], + [ + 11.8721551, + 50.757842301 + ], + [ + 11.8725341, + 50.758135101 + ], + [ + 11.8743152, + 50.759511001 + ], + [ + 11.874906, + 50.759977201 + ], + [ + 11.8758626, + 50.760741501 + ], + [ + 11.8761002, + 50.760936101 + ], + [ + 11.8766734, + 50.761480201 + ], + [ + 11.8769453, + 50.761770601 + ], + [ + 11.8773032, + 50.762200601 + ], + [ + 11.877624, + 50.762634301 + ], + [ + 11.8779239, + 50.763106401 + ], + [ + 11.8781559, + 50.763552301 + ], + [ + 11.878339, + 50.763963201 + ], + [ + 11.878476, + 50.764334701 + ], + [ + 11.8785469, + 50.764562801 + ], + [ + 11.8786006, + 50.764766101 + ], + [ + 11.8786427, + 50.764929601 + ], + [ + 11.8786771, + 50.765091901 + ], + [ + 11.8789226, + 50.766588801 + ], + [ + 11.879219, + 50.768526401 + ], + [ + 11.8793431, + 50.769337701 + ], + [ + 11.8796768, + 50.771512201 + ], + [ + 11.8798345, + 50.772545901 + ], + [ + 11.8799475, + 50.773169401 + ], + [ + 11.8800239, + 50.773495201 + ], + [ + 11.8801657, + 50.773955001 + ], + [ + 11.8803584, + 50.774422001 + ], + [ + 11.880508, + 50.774730801 + ], + [ + 11.8806044, + 50.774917401 + ], + [ + 11.8807719, + 50.775208501 + ], + [ + 11.8809503, + 50.775489101 + ], + [ + 11.881232, + 50.775881901 + ], + [ + 11.881506, + 50.776219001 + ], + [ + 11.8818723, + 50.776615801 + ], + [ + 11.8822366, + 50.776979001 + ], + [ + 11.882693, + 50.777382901 + ], + [ + 11.8831281, + 50.777732101 + ], + [ + 11.8831704, + 50.777761901 + ], + [ + 11.8836473, + 50.778098401 + ], + [ + 11.8839245, + 50.778276801 + ], + [ + 11.8842366, + 50.778467801 + ], + [ + 11.8845102, + 50.778628501 + ], + [ + 11.885038, + 50.778944301 + ], + [ + 11.88547, + 50.779192301 + ], + [ + 11.8872721, + 50.780248001 + ], + [ + 11.8882393, + 50.780812101 + ], + [ + 11.8902903, + 50.782011101 + ], + [ + 11.890932, + 50.782387501 + ], + [ + 11.8916592, + 50.782853601 + ], + [ + 11.8921789, + 50.783233301 + ], + [ + 11.8928003, + 50.783758401 + ], + [ + 11.8929519, + 50.783904601 + ], + [ + 11.8933755, + 50.784313001 + ], + [ + 11.8938551, + 50.784869401 + ], + [ + 11.8942801, + 50.785464701 + ], + [ + 11.8946409, + 50.786066801 + ], + [ + 11.8949769, + 50.786830301 + ], + [ + 11.8951332, + 50.787336301 + ], + [ + 11.8952407, + 50.787825601 + ], + [ + 11.8953111, + 50.788266301 + ], + [ + 11.8953369, + 50.788636701 + ], + [ + 11.895352, + 50.788961201 + ], + [ + 11.8953615, + 50.789803301 + ], + [ + 11.8953833, + 50.791736001 + ], + [ + 11.8953885, + 50.791978201 + ], + [ + 11.895396, + 50.792572001 + ], + [ + 11.8953989, + 50.792789701 + ], + [ + 11.89546, + 50.797340301 + ], + [ + 11.895508278, + 50.800942049 + ] + ] + } + }, + { + "identifier": "2026-017456--vi-bs.2026-04-09_07-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.672045149068204,11.822908048691184,50.551209851267025,11.79228290341255", + "point": "50.672045149068204,11.822908048691184", + "startLcPosition": "86", + "impact": { + "lower": "Schleiz", + "upper": "Triptis", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Triptis - Schleiz", + "coordinate": { + "lat": 50.672045149068204, + "long": 11.822908048691184 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 13:00 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 9.3 km hinter AS Triptis und 0.3 km vor AS Schleiz", + "", + "L\u00e4nge: 14.49 km | Maximale Durchfahrtsbreite: 9.75 m", + "", + "A9 von Triptis (AS) nach Schleiz (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.822908049, + 50.672045149 + ], + [ + 11.822742, + 50.671756301 + ], + [ + 11.8224452, + 50.671265701 + ], + [ + 11.8202527, + 50.667524401 + ], + [ + 11.8180438, + 50.663636701 + ], + [ + 11.8160668, + 50.660101401 + ], + [ + 11.815634, + 50.659449101 + ], + [ + 11.8149108, + 50.658481601 + ], + [ + 11.8142795, + 50.657758901 + ], + [ + 11.8133697, + 50.656821601 + ], + [ + 11.8131419, + 50.656605401 + ], + [ + 11.8128754, + 50.656362401 + ], + [ + 11.8123212, + 50.655892601 + ], + [ + 11.8121187, + 50.655721801 + ], + [ + 11.8119786, + 50.655601001 + ], + [ + 11.81166, + 50.655349601 + ], + [ + 11.8109742, + 50.654793701 + ], + [ + 11.8102142, + 50.654196701 + ], + [ + 11.8093476, + 50.653518601 + ], + [ + 11.8078463, + 50.652290601 + ], + [ + 11.8076567, + 50.652137301 + ], + [ + 11.8063503, + 50.651092301 + ], + [ + 11.8059116, + 50.650742401 + ], + [ + 11.8054812, + 50.650379501 + ], + [ + 11.8050703, + 50.650015801 + ], + [ + 11.8045978, + 50.649569401 + ], + [ + 11.8042167, + 50.649186601 + ], + [ + 11.8038555, + 50.648799101 + ], + [ + 11.8035704, + 50.648489401 + ], + [ + 11.8031692, + 50.648016101 + ], + [ + 11.802846, + 50.647612101 + ], + [ + 11.8025403, + 50.647209401 + ], + [ + 11.802245, + 50.646792401 + ], + [ + 11.8019669, + 50.646380301 + ], + [ + 11.8017104, + 50.645957101 + ], + [ + 11.8014653, + 50.645529401 + ], + [ + 11.8012471, + 50.645101201 + ], + [ + 11.8010373, + 50.644671401 + ], + [ + 11.8008427, + 50.644234101 + ], + [ + 11.8006693, + 50.643805101 + ], + [ + 11.799244, + 50.639869301 + ], + [ + 11.7977488, + 50.635819001 + ], + [ + 11.7976787, + 50.635620201 + ], + [ + 11.7960414, + 50.631132001 + ], + [ + 11.7944415, + 50.626748201 + ], + [ + 11.7935836, + 50.624410301 + ], + [ + 11.7933453, + 50.623757001 + ], + [ + 11.7931748, + 50.623217701 + ], + [ + 11.793074, + 50.622857701 + ], + [ + 11.7929804, + 50.622508701 + ], + [ + 11.7929304, + 50.622269901 + ], + [ + 11.7928887, + 50.622058101 + ], + [ + 11.7928134, + 50.621637701 + ], + [ + 11.7927128, + 50.620527901 + ], + [ + 11.7924405, + 50.617769401 + ], + [ + 11.7923219, + 50.616467001 + ], + [ + 11.7920359, + 50.613240901 + ], + [ + 11.7918842, + 50.611194501 + ], + [ + 11.7917955, + 50.610224501 + ], + [ + 11.7916265, + 50.609276401 + ], + [ + 11.7914978, + 50.608682401 + ], + [ + 11.7914227, + 50.608321501 + ], + [ + 11.7913556, + 50.608037201 + ], + [ + 11.791141, + 50.607290001 + ], + [ + 11.7907119, + 50.606091601 + ], + [ + 11.7903909, + 50.605421301 + ], + [ + 11.7900373, + 50.604643701 + ], + [ + 11.7898168, + 50.604202501 + ], + [ + 11.7896441, + 50.603856901 + ], + [ + 11.7874874, + 50.599912001 + ], + [ + 11.7861247, + 50.597419201 + ], + [ + 11.7854655, + 50.596216601 + ], + [ + 11.7852317, + 50.595785701 + ], + [ + 11.7830059, + 50.591704101 + ], + [ + 11.7826255, + 50.591017601 + ], + [ + 11.781888, + 50.589668201 + ], + [ + 11.7806007, + 50.587327601 + ], + [ + 11.7797961, + 50.585864701 + ], + [ + 11.7789265, + 50.584249601 + ], + [ + 11.7787787, + 50.583994501 + ], + [ + 11.778208, + 50.582932201 + ], + [ + 11.7771093, + 50.580917801 + ], + [ + 11.7769711, + 50.580664301 + ], + [ + 11.7766893, + 50.580135201 + ], + [ + 11.7761199, + 50.579113401 + ], + [ + 11.7760639, + 50.579011301 + ], + [ + 11.7758297, + 50.578595301 + ], + [ + 11.7756505, + 50.578262301 + ], + [ + 11.7746883, + 50.576464401 + ], + [ + 11.7745063, + 50.576037701 + ], + [ + 11.7743765, + 50.575600701 + ], + [ + 11.7742955, + 50.575159301 + ], + [ + 11.7742341, + 50.574711201 + ], + [ + 11.7742066, + 50.574457001 + ], + [ + 11.7742134, + 50.574085901 + ], + [ + 11.7742518, + 50.573587301 + ], + [ + 11.7743429, + 50.573075201 + ], + [ + 11.7744654, + 50.572576801 + ], + [ + 11.7746481, + 50.572066101 + ], + [ + 11.7747899, + 50.571736301 + ], + [ + 11.7749788, + 50.571318401 + ], + [ + 11.7752567, + 50.570803701 + ], + [ + 11.7752973, + 50.570743801 + ], + [ + 11.7755937, + 50.570306801 + ], + [ + 11.7758413, + 50.569968501 + ], + [ + 11.7760658, + 50.569689101 + ], + [ + 11.7762827, + 50.569424001 + ], + [ + 11.7766587, + 50.569015401 + ], + [ + 11.7771278, + 50.568559001 + ], + [ + 11.7775433, + 50.568194901 + ], + [ + 11.7780093, + 50.567817301 + ], + [ + 11.7786921, + 50.567312401 + ], + [ + 11.779477, + 50.566779301 + ], + [ + 11.7803884, + 50.566160301 + ], + [ + 11.7824612, + 50.564754801 + ], + [ + 11.7836505, + 50.563942801 + ], + [ + 11.7844357, + 50.563410101 + ], + [ + 11.7850762, + 50.562975501 + ], + [ + 11.7856424, + 50.562582201 + ], + [ + 11.7856714, + 50.562562701 + ], + [ + 11.7862496, + 50.562173701 + ], + [ + 11.7868573, + 50.561740301 + ], + [ + 11.7874209, + 50.561321501 + ], + [ + 11.7876925, + 50.561102301 + ], + [ + 11.7879569, + 50.560876501 + ], + [ + 11.7882582, + 50.560578401 + ], + [ + 11.7885055, + 50.560321201 + ], + [ + 11.7886374, + 50.560172101 + ], + [ + 11.7887797, + 50.559989501 + ], + [ + 11.7889757, + 50.559735801 + ], + [ + 11.7891464, + 50.559476001 + ], + [ + 11.7893823, + 50.559065901 + ], + [ + 11.7895674, + 50.558680901 + ], + [ + 11.789744, + 50.558257201 + ], + [ + 11.7899047, + 50.557829501 + ], + [ + 11.790601, + 50.555654101 + ], + [ + 11.7915488, + 50.552822601 + ], + [ + 11.7918638, + 50.552030901 + ], + [ + 11.7921322, + 50.551498001 + ], + [ + 11.7922475, + 50.551269101 + ], + [ + 11.792282903, + 50.551209851 + ] + ] + } + }, + { + "identifier": "2026-016173--vi-bs.2026-04-13_07-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.66784386623668,11.820439899917567,50.6003166422277,11.787708601426788", + "point": "50.66784386623668,11.820439899917567", + "startLcPosition": "86", + "impact": { + "lower": "Himmelsteiche", + "upper": "Triptis", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Triptis - Himmelsteiche", + "coordinate": { + "lat": 50.66784386623668, + "long": 11.820439899917567 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 19:00 Uhr", + "14.04.26 von 07:00 bis 19:00 Uhr", + "15.04.26 von 07:00 bis 19:00 Uhr", + "16.04.26 von 07:00 bis 19:00 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 9.8 km hinter AS Triptis und 1.9 km vor Himmelsteiche", + "", + "L\u00e4nge: 7.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.25 m", + "", + "Kanalinspektion Gaube KW 16" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.8204399, + 50.667843866 + ], + [ + 11.8202527, + 50.667524401 + ], + [ + 11.8180438, + 50.663636701 + ], + [ + 11.8160668, + 50.660101401 + ], + [ + 11.815634, + 50.659449101 + ], + [ + 11.8149108, + 50.658481601 + ], + [ + 11.8142795, + 50.657758901 + ], + [ + 11.8133697, + 50.656821601 + ], + [ + 11.8131419, + 50.656605401 + ], + [ + 11.8128754, + 50.656362401 + ], + [ + 11.8123212, + 50.655892601 + ], + [ + 11.8121187, + 50.655721801 + ], + [ + 11.8119786, + 50.655601001 + ], + [ + 11.81166, + 50.655349601 + ], + [ + 11.8109742, + 50.654793701 + ], + [ + 11.8102142, + 50.654196701 + ], + [ + 11.8093476, + 50.653518601 + ], + [ + 11.8078463, + 50.652290601 + ], + [ + 11.8076567, + 50.652137301 + ], + [ + 11.8063503, + 50.651092301 + ], + [ + 11.8059116, + 50.650742401 + ], + [ + 11.8054812, + 50.650379501 + ], + [ + 11.8050703, + 50.650015801 + ], + [ + 11.8045978, + 50.649569401 + ], + [ + 11.8042167, + 50.649186601 + ], + [ + 11.8038555, + 50.648799101 + ], + [ + 11.8035704, + 50.648489401 + ], + [ + 11.8031692, + 50.648016101 + ], + [ + 11.802846, + 50.647612101 + ], + [ + 11.8025403, + 50.647209401 + ], + [ + 11.802245, + 50.646792401 + ], + [ + 11.8019669, + 50.646380301 + ], + [ + 11.8017104, + 50.645957101 + ], + [ + 11.8014653, + 50.645529401 + ], + [ + 11.8012471, + 50.645101201 + ], + [ + 11.8010373, + 50.644671401 + ], + [ + 11.8008427, + 50.644234101 + ], + [ + 11.8006693, + 50.643805101 + ], + [ + 11.799244, + 50.639869301 + ], + [ + 11.7977488, + 50.635819001 + ], + [ + 11.7976787, + 50.635620201 + ], + [ + 11.7960414, + 50.631132001 + ], + [ + 11.7944415, + 50.626748201 + ], + [ + 11.7935836, + 50.624410301 + ], + [ + 11.7933453, + 50.623757001 + ], + [ + 11.7931748, + 50.623217701 + ], + [ + 11.793074, + 50.622857701 + ], + [ + 11.7929804, + 50.622508701 + ], + [ + 11.7929304, + 50.622269901 + ], + [ + 11.7928887, + 50.622058101 + ], + [ + 11.7928134, + 50.621637701 + ], + [ + 11.7927128, + 50.620527901 + ], + [ + 11.7924405, + 50.617769401 + ], + [ + 11.7923219, + 50.616467001 + ], + [ + 11.7920359, + 50.613240901 + ], + [ + 11.7918842, + 50.611194501 + ], + [ + 11.7917955, + 50.610224501 + ], + [ + 11.7916265, + 50.609276401 + ], + [ + 11.7914978, + 50.608682401 + ], + [ + 11.7914227, + 50.608321501 + ], + [ + 11.7913556, + 50.608037201 + ], + [ + 11.791141, + 50.607290001 + ], + [ + 11.7907119, + 50.606091601 + ], + [ + 11.7903909, + 50.605421301 + ], + [ + 11.7900373, + 50.604643701 + ], + [ + 11.7898168, + 50.604202501 + ], + [ + 11.7896441, + 50.603856901 + ], + [ + 11.787708601, + 50.600316642 + ] + ] + } + }, + { + "identifier": "2025-056139--vi-bs.2026-03-30_07-00-00-000.devi-zus.2025-11-17_08-00-00-000_030.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.822161809773085,11.883558140165503,50.86934605307168,11.850133595782369", + "point": "50.822161809773085,11.883558140165503", + "startLcPosition": "88", + "impact": { + "lower": "Hermsdorfer Kreuz", + "upper": "Lederhose", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Lederhose - Hermsdorfer Kreuz", + "coordinate": { + "lat": 50.822161809773085, + "long": 11.883558140165503 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 30.03.26 und dem 18.04.26 von 07:00 bis 18:00 Uhr.", + "Die Baustelle gilt nicht an folgenden Tagen:", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 2.0 km hinter AS Lederhose und 0.5 km vor Hermsdorfer Kreuz", + "", + "L\u00e4nge: 5.82 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "Fugeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.88355814, + 50.82216181 + ], + [ + 11.8835178, + 50.822223301 + ], + [ + 11.8833247, + 50.822543801 + ], + [ + 11.8824879, + 50.824060501 + ], + [ + 11.8819738, + 50.825013101 + ], + [ + 11.8815769, + 50.825749801 + ], + [ + 11.8812767, + 50.826306001 + ], + [ + 11.8809952, + 50.826831701 + ], + [ + 11.880698, + 50.827381101 + ], + [ + 11.8803428, + 50.828035101 + ], + [ + 11.8799846, + 50.828662701 + ], + [ + 11.8795996, + 50.829254401 + ], + [ + 11.8791606, + 50.829839501 + ], + [ + 11.8785081, + 50.830597001 + ], + [ + 11.8784811, + 50.830626201 + ], + [ + 11.8781825, + 50.830934001 + ], + [ + 11.877606, + 50.831478701 + ], + [ + 11.8769966, + 50.832000601 + ], + [ + 11.8751447, + 50.833519301 + ], + [ + 11.8748028, + 50.833800301 + ], + [ + 11.8743487, + 50.834171701 + ], + [ + 11.8724609, + 50.835719401 + ], + [ + 11.8706423, + 50.837209801 + ], + [ + 11.8699865, + 50.837750201 + ], + [ + 11.8682592, + 50.839164601 + ], + [ + 11.8665367, + 50.840583701 + ], + [ + 11.8662696, + 50.840815101 + ], + [ + 11.8656431, + 50.841383901 + ], + [ + 11.8650419, + 50.841971901 + ], + [ + 11.8643934, + 50.842680101 + ], + [ + 11.8638103, + 50.843379901 + ], + [ + 11.8632094, + 50.844196201 + ], + [ + 11.8625532, + 50.845214101 + ], + [ + 11.8617026, + 50.846533401 + ], + [ + 11.8614623, + 50.846899801 + ], + [ + 11.8613236, + 50.847116401 + ], + [ + 11.859816, + 50.849475001 + ], + [ + 11.8590285, + 50.850706801 + ], + [ + 11.8569416, + 50.853961801 + ], + [ + 11.8563755, + 50.854856101 + ], + [ + 11.8558136, + 50.855774401 + ], + [ + 11.8553135, + 50.856663901 + ], + [ + 11.8547719, + 50.857739101 + ], + [ + 11.8545732, + 50.858184001 + ], + [ + 11.8544424, + 50.858489801 + ], + [ + 11.8542866, + 50.858861901 + ], + [ + 11.8536514, + 50.860470901 + ], + [ + 11.8535382, + 50.860760901 + ], + [ + 11.8531912, + 50.861650201 + ], + [ + 11.8529761, + 50.862193101 + ], + [ + 11.8528488, + 50.862517401 + ], + [ + 11.8528337, + 50.862557101 + ], + [ + 11.8527956, + 50.862666301 + ], + [ + 11.8518019, + 50.865174801 + ], + [ + 11.8512168, + 50.866665001 + ], + [ + 11.851067, + 50.867061401 + ], + [ + 11.8506688, + 50.868076701 + ], + [ + 11.8505059, + 50.868408301 + ], + [ + 11.850133596, + 50.869346053 + ] + ] + } + }, + { + "identifier": "2026-011743--vi-bs.2026-04-13_18-00-00-000.devi-zus.2026-03-10_19-00-00-000_006.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.8117997227116,11.894679560420366,50.81905642010351,11.886380895955261", + "point": "50.8117997227116,11.894679560420366", + "startLcPosition": "88", + "impact": { + "lower": "Hermsdorf-S\u00fcd", + "upper": "Lederhose", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Lederhose - Hermsdorf-S\u00fcd", + "coordinate": { + "lat": 50.8117997227116, + "long": 11.894679560420366 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag und Dienstag zwischen dem 13.04.26 und dem 15.04.26 von 18:00 bis 00:00 Uhr.", + "Jeden Dienstag und Mittwoch zwischen dem 14.04.26 und dem 15.04.26 von 00:00 bis 07:00 Uhr.", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 0.6 km hinter AS Lederhose und 5.7 km vor AS Hermsdorf-S\u00fcd", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "RV 2025-28 Beton AM Hdf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.89467956, + 50.811799723 + ], + [ + 11.8946541, + 50.811843701 + ], + [ + 11.8944504, + 50.812149401 + ], + [ + 11.8941166, + 50.812607601 + ], + [ + 11.8938998, + 50.812872101 + ], + [ + 11.8936446, + 50.813156101 + ], + [ + 11.8933837, + 50.813425001 + ], + [ + 11.8930985, + 50.813694401 + ], + [ + 11.892646, + 50.814082301 + ], + [ + 11.8917048, + 50.814837301 + ], + [ + 11.8906293, + 50.815688901 + ], + [ + 11.8872318, + 50.818374301 + ], + [ + 11.8864323, + 50.819012401 + ], + [ + 11.886380896, + 50.81905642 + ] + ] + } + }, + { + "identifier": "2026-011743--vi-bs.2026-04-15_18-00-00-000.devi-zus.2026-03-10_19-00-00-000_006.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.8117997227116,11.894679560420366,50.81905642010351,11.886380895955261", + "point": "50.8117997227116,11.894679560420366", + "startLcPosition": "88", + "impact": { + "lower": "Hermsdorf-S\u00fcd", + "upper": "Lederhose", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Lederhose - Hermsdorf-S\u00fcd", + "coordinate": { + "lat": 50.8117997227116, + "long": 11.894679560420366 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 18:00 bis zum 16.04.26 07:00 Uhr.", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 0.6 km hinter AS Lederhose und 5.7 km vor AS Hermsdorf-S\u00fcd", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "RV 2025-28 Beton AM Hdf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.89467956, + 50.811799723 + ], + [ + 11.8946541, + 50.811843701 + ], + [ + 11.8944504, + 50.812149401 + ], + [ + 11.8941166, + 50.812607601 + ], + [ + 11.8938998, + 50.812872101 + ], + [ + 11.8936446, + 50.813156101 + ], + [ + 11.8933837, + 50.813425001 + ], + [ + 11.8930985, + 50.813694401 + ], + [ + 11.892646, + 50.814082301 + ], + [ + 11.8917048, + 50.814837301 + ], + [ + 11.8906293, + 50.815688901 + ], + [ + 11.8872318, + 50.818374301 + ], + [ + 11.8864323, + 50.819012401 + ], + [ + 11.886380896, + 50.81905642 + ] + ] + } + }, + { + "identifier": "2026-017508--vi-bs.2026-04-09_10-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.79729414198287,11.895262104717096,50.792756082419224,11.89518502388178", + "point": "50.79729414198287,11.895262104717096", + "startLcPosition": "88", + "impact": { + "lower": "Rodaborn", + "upper": "Lederhose", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Lederhose - Rodaborn", + "coordinate": { + "lat": 50.79729414198287, + "long": 11.895262104717096 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.0 km hinter AS Lederhose und 4.3 km vor Rodaborn", + "", + "L\u00e4nge: 0.51 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A9 von Lederhose (AS) nach Rodaborn (Rastplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.895262105, + 50.797294142 + ], + [ + 11.8951866, + 50.792801601 + ], + [ + 11.895185024, + 50.792756082 + ] + ] + } + }, + { + "identifier": "2026-004632--vi-bs.2026-02-09_08-00-00-000.devi-zus.2026-02-09_08-00-00-000_018.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.84613507505747,11.861959420303332,50.901096233008026,11.843300233867353", + "point": "50.84613507505747,11.861959420303332", + "startLcPosition": "88", + "impact": { + "lower": "Bad Klosterlausnitz", + "upper": "Lederhose", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Lederhose - Bad Klosterlausnitz", + "coordinate": { + "lat": 50.84613507505747, + "long": 11.861959420303332 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 09.02.26 und dem 30.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 5.1 km hinter AS Lederhose und 1.1 km vor AS Bad Klosterlausnitz", + "", + "L\u00e4nge: 6.29 km | Maximale Durchfahrtsbreite: 7 m", + "", + "9 HDF_2026-004632_bRF_190,9-184,6_Baugrunderkundung AK HDF WWB" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.86195942, + 50.846135075 + ], + [ + 11.8617026, + 50.846533401 + ], + [ + 11.8614623, + 50.846899801 + ], + [ + 11.8613236, + 50.847116401 + ], + [ + 11.859816, + 50.849475001 + ], + [ + 11.8590285, + 50.850706801 + ], + [ + 11.8569416, + 50.853961801 + ], + [ + 11.8563755, + 50.854856101 + ], + [ + 11.8558136, + 50.855774401 + ], + [ + 11.8553135, + 50.856663901 + ], + [ + 11.8547719, + 50.857739101 + ], + [ + 11.8545732, + 50.858184001 + ], + [ + 11.8544424, + 50.858489801 + ], + [ + 11.8542866, + 50.858861901 + ], + [ + 11.8536514, + 50.860470901 + ], + [ + 11.8535382, + 50.860760901 + ], + [ + 11.8531912, + 50.861650201 + ], + [ + 11.8529761, + 50.862193101 + ], + [ + 11.8528488, + 50.862517401 + ], + [ + 11.8528337, + 50.862557101 + ], + [ + 11.8527956, + 50.862666301 + ], + [ + 11.8518019, + 50.865174801 + ], + [ + 11.8512168, + 50.866665001 + ], + [ + 11.851067, + 50.867061401 + ], + [ + 11.8506688, + 50.868076701 + ], + [ + 11.8505059, + 50.868408301 + ], + [ + 11.8495622, + 50.870785201 + ], + [ + 11.8482137, + 50.874233701 + ], + [ + 11.8478141, + 50.875244801 + ], + [ + 11.8477799, + 50.875331501 + ], + [ + 11.8475206, + 50.876069101 + ], + [ + 11.8473796, + 50.876549201 + ], + [ + 11.8472656, + 50.876985401 + ], + [ + 11.8471485, + 50.877514801 + ], + [ + 11.8468108, + 50.879664301 + ], + [ + 11.8467385, + 50.880128201 + ], + [ + 11.8466739, + 50.880529701 + ], + [ + 11.8466663, + 50.880583801 + ], + [ + 11.846592, + 50.881066101 + ], + [ + 11.8461773, + 50.883694701 + ], + [ + 11.8460962, + 50.884233501 + ], + [ + 11.8457348, + 50.886525801 + ], + [ + 11.8457193, + 50.886680601 + ], + [ + 11.8456929, + 50.886879701 + ], + [ + 11.8455, + 50.888237301 + ], + [ + 11.8454525, + 50.888571501 + ], + [ + 11.8454284, + 50.888741301 + ], + [ + 11.8453618, + 50.889195801 + ], + [ + 11.8453, + 50.889587701 + ], + [ + 11.8452087, + 50.890159401 + ], + [ + 11.8446455, + 50.893289801 + ], + [ + 11.8446372, + 50.893336001 + ], + [ + 11.8442792, + 50.895182701 + ], + [ + 11.8439778, + 50.896848301 + ], + [ + 11.8438749, + 50.897498201 + ], + [ + 11.8438577, + 50.897609601 + ], + [ + 11.8437762, + 50.898106601 + ], + [ + 11.8436822, + 50.898627301 + ], + [ + 11.843300234, + 50.901096233 + ] + ] + } + }, + { + "identifier": "2026-011743--vi-bs.2026-04-07_18-00-00-000.devi-zus.2026-03-10_19-00-00-000_006.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.84201410667374,11.864750721591157,50.83049397436759,11.878344886436096", + "point": "50.84201410667374,11.864750721591157", + "startLcPosition": "89", + "impact": { + "lower": "Lederhose", + "upper": "Hermsdorf-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Hermsdorf-S\u00fcd - Lederhose", + "coordinate": { + "lat": 50.84201410667374, + "long": 11.864750721591157 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 07.04.26 und dem 10.04.26 von 18:00 bis 00:00 Uhr.", + "Jeden Mittwoch, Donnerstag und Freitag zwischen dem 08.04.26 und dem 10.04.26 von 00:00 bis 07:00 Uhr.", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 2.7 km hinter AS Hermsdorf-S\u00fcd und 3.0 km vor AS Lederhose", + "", + "L\u00e4nge: 1.6 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "RV 2025-28 Beton AM Hdf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.864750722, + 50.842014107 + ], + [ + 11.8648292, + 50.841929301 + ], + [ + 11.8654528, + 50.841315101 + ], + [ + 11.8660905, + 50.840733301 + ], + [ + 11.866361, + 50.840501201 + ], + [ + 11.8680661, + 50.839094701 + ], + [ + 11.8697786, + 50.837692801 + ], + [ + 11.870448, + 50.837144201 + ], + [ + 11.8722644, + 50.835655501 + ], + [ + 11.8741878, + 50.834076201 + ], + [ + 11.8746142, + 50.833725901 + ], + [ + 11.8749616, + 50.833443501 + ], + [ + 11.8767716, + 50.831956201 + ], + [ + 11.8773806, + 50.831438101 + ], + [ + 11.877956, + 50.830900801 + ], + [ + 11.8783242, + 50.830517901 + ], + [ + 11.878344886, + 50.830493974 + ] + ] + } + }, + { + "identifier": "2026-011743--vi-bs.2026-04-16_18-00-00-000.devi-zus.2026-03-10_19-00-00-000_006.de33", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.90556911886017,11.842610642184303,50.92053373654895,11.840356438020356", + "point": "50.90556911886017,11.842610642184303", + "startLcPosition": "91", + "impact": { + "lower": "Kuhberg", + "upper": "Hermsdorfer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Hermsdorfer Kreuz - Kuhberg", + "coordinate": { + "lat": 50.90556911886017, + "long": 11.842610642184303 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 18:00 bis zum 17.04.26 07:00 Uhr.", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 2.8 km hinter AK Hermsdorfer Kreuz und 5.4 km vor Kuhberg", + "", + "L\u00e4nge: 1.67 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "RV 2025-28 Beton AM Hdf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.842610642, + 50.905569119 + ], + [ + 11.8424896, + 50.906354501 + ], + [ + 11.8421979, + 50.908247601 + ], + [ + 11.8419048, + 50.910139701 + ], + [ + 11.8417787, + 50.910932901 + ], + [ + 11.8416819, + 50.911574101 + ], + [ + 11.8416548, + 50.911783601 + ], + [ + 11.8415871, + 50.912223201 + ], + [ + 11.8415392, + 50.912492501 + ], + [ + 11.8414798, + 50.912957601 + ], + [ + 11.8414351, + 50.913307401 + ], + [ + 11.8413761, + 50.913801301 + ], + [ + 11.8412043, + 50.915178601 + ], + [ + 11.8412003, + 50.915203001 + ], + [ + 11.8409531, + 50.916804601 + ], + [ + 11.8404143, + 50.920172101 + ], + [ + 11.840356438, + 50.920533737 + ] + ] + } + }, + { + "identifier": "2026-004632--vi-bs.2026-02-09_08-00-00-000.devi-zus.2026-02-09_08-00-00-000_018.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.901083256777454,11.843090306444694,50.84608175177706,11.861752483026034", + "point": "50.901083256777454,11.843090306444694", + "startLcPosition": "92", + "impact": { + "lower": "Lederhose", + "upper": "Bad Klosterlausnitz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bad Klosterlausnitz - Lederhose", + "coordinate": { + "lat": 50.901083256777454, + "long": 11.843090306444694 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 09.02.26 und dem 30.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.1 km hinter AS Bad Klosterlausnitz und 5.1 km vor AS Lederhose", + "", + "L\u00e4nge: 6.29 km | Maximale Durchfahrtsbreite: 7 m", + "", + "9 HDF_2026-004632_bRF_190,9-184,6_Baugrunderkundung AK HDF WWB" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.843090306, + 50.901083257 + ], + [ + 11.8434769, + 50.898579601 + ], + [ + 11.843554, + 50.898057901 + ], + [ + 11.8436013, + 50.897756401 + ], + [ + 11.8436509, + 50.897485001 + ], + [ + 11.8440732, + 50.895137701 + ], + [ + 11.8443977, + 50.893445401 + ], + [ + 11.8444296, + 50.893273001 + ], + [ + 11.8447279, + 50.891663201 + ], + [ + 11.8448441, + 50.890947701 + ], + [ + 11.8449151, + 50.890488001 + ], + [ + 11.8449792, + 50.890095901 + ], + [ + 11.845201, + 50.888737501 + ], + [ + 11.8452972, + 50.888087101 + ], + [ + 11.8454658, + 50.886972001 + ], + [ + 11.8455361, + 50.886510601 + ], + [ + 11.8456502, + 50.885845101 + ], + [ + 11.8457224, + 50.885402701 + ], + [ + 11.8458206, + 50.884799501 + ], + [ + 11.8459213, + 50.884211701 + ], + [ + 11.8461027, + 50.883040101 + ], + [ + 11.8462352, + 50.882182301 + ], + [ + 11.8464304, + 50.880912401 + ], + [ + 11.8464922, + 50.880510601 + ], + [ + 11.8465562, + 50.880104201 + ], + [ + 11.8466002, + 50.879826601 + ], + [ + 11.8466257, + 50.879666101 + ], + [ + 11.846773, + 50.878738301 + ], + [ + 11.846968, + 50.877510101 + ], + [ + 11.8471579, + 50.876682801 + ], + [ + 11.8473364, + 50.876065701 + ], + [ + 11.847606, + 50.875302501 + ], + [ + 11.8480365, + 50.874209701 + ], + [ + 11.8493646, + 50.870791201 + ], + [ + 11.850973, + 50.866650801 + ], + [ + 11.8512278, + 50.866030201 + ], + [ + 11.852616, + 50.862503901 + ], + [ + 11.8526331, + 50.862458101 + ], + [ + 11.8527361, + 50.862202101 + ], + [ + 11.8528802, + 50.861831301 + ], + [ + 11.853371, + 50.860575301 + ], + [ + 11.8534831, + 50.860287501 + ], + [ + 11.854045, + 50.858897601 + ], + [ + 11.8542248, + 50.858457501 + ], + [ + 11.8543513, + 50.858147701 + ], + [ + 11.8545673, + 50.857673201 + ], + [ + 11.8551252, + 50.856569101 + ], + [ + 11.8556335, + 50.855686001 + ], + [ + 11.856174, + 50.854802901 + ], + [ + 11.8567439, + 50.853911201 + ], + [ + 11.8596066, + 50.849432101 + ], + [ + 11.8610957, + 50.847108801 + ], + [ + 11.861239, + 50.846882901 + ], + [ + 11.861752483, + 50.846081752 + ] + ] + } + }, + { + "identifier": "2026-004632--vi-bs.2026-02-09_08-00-00-000.devi-zus.2026-02-09_08-00-00-000_018.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.901083256777454,11.843090306444694,50.84608175177706,11.861752483026034", + "point": "50.901083256777454,11.843090306444694", + "startLcPosition": "92", + "impact": { + "lower": "Lederhose", + "upper": "Bad Klosterlausnitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bad Klosterlausnitz - Lederhose", + "coordinate": { + "lat": 50.901083256777454, + "long": 11.843090306444694 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 09.02.26 und dem 30.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.1 km hinter AS Bad Klosterlausnitz und 5.1 km vor AS Lederhose", + "", + "L\u00e4nge: 6.29 km | Maximale Durchfahrtsbreite: 7 m", + "", + "9 HDF_2026-004632_bRF_190,9-184,6_Baugrunderkundung AK HDF WWB" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.843090306, + 50.901083257 + ], + [ + 11.8434769, + 50.898579601 + ], + [ + 11.843554, + 50.898057901 + ], + [ + 11.8436013, + 50.897756401 + ], + [ + 11.8436509, + 50.897485001 + ], + [ + 11.8440732, + 50.895137701 + ], + [ + 11.8443977, + 50.893445401 + ], + [ + 11.8444296, + 50.893273001 + ], + [ + 11.8447279, + 50.891663201 + ], + [ + 11.8448441, + 50.890947701 + ], + [ + 11.8449151, + 50.890488001 + ], + [ + 11.8449792, + 50.890095901 + ], + [ + 11.845201, + 50.888737501 + ], + [ + 11.8452972, + 50.888087101 + ], + [ + 11.8454658, + 50.886972001 + ], + [ + 11.8455361, + 50.886510601 + ], + [ + 11.8456502, + 50.885845101 + ], + [ + 11.8457224, + 50.885402701 + ], + [ + 11.8458206, + 50.884799501 + ], + [ + 11.8459213, + 50.884211701 + ], + [ + 11.8461027, + 50.883040101 + ], + [ + 11.8462352, + 50.882182301 + ], + [ + 11.8464304, + 50.880912401 + ], + [ + 11.8464922, + 50.880510601 + ], + [ + 11.8465562, + 50.880104201 + ], + [ + 11.8466002, + 50.879826601 + ], + [ + 11.8466257, + 50.879666101 + ], + [ + 11.846773, + 50.878738301 + ], + [ + 11.846968, + 50.877510101 + ], + [ + 11.8471579, + 50.876682801 + ], + [ + 11.8473364, + 50.876065701 + ], + [ + 11.847606, + 50.875302501 + ], + [ + 11.8480365, + 50.874209701 + ], + [ + 11.8493646, + 50.870791201 + ], + [ + 11.850973, + 50.866650801 + ], + [ + 11.8512278, + 50.866030201 + ], + [ + 11.852616, + 50.862503901 + ], + [ + 11.8526331, + 50.862458101 + ], + [ + 11.8527361, + 50.862202101 + ], + [ + 11.8528802, + 50.861831301 + ], + [ + 11.853371, + 50.860575301 + ], + [ + 11.8534831, + 50.860287501 + ], + [ + 11.854045, + 50.858897601 + ], + [ + 11.8542248, + 50.858457501 + ], + [ + 11.8543513, + 50.858147701 + ], + [ + 11.8545673, + 50.857673201 + ], + [ + 11.8551252, + 50.856569101 + ], + [ + 11.8556335, + 50.855686001 + ], + [ + 11.856174, + 50.854802901 + ], + [ + 11.8567439, + 50.853911201 + ], + [ + 11.8596066, + 50.849432101 + ], + [ + 11.8610957, + 50.847108801 + ], + [ + 11.861239, + 50.846882901 + ], + [ + 11.861752483, + 50.846081752 + ] + ] + } + }, + { + "identifier": "2025-006781--vi-bs.2025-02-18_08-00-00-000.devi-zus.2025-02-18_08-00-00-000_004.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.08224625928356,11.955682606321359,51.08584091934458,11.955727249058645", + "point": "51.08224625928356,11.955682606321359", + "startLcPosition": "95", + "impact": { + "lower": "Naumburg", + "upper": "Droy\u00dfig", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Droy\u00dfig - Naumburg", + "startTimestamp": "2025-02-18T08:00:00+01:00", + "coordinate": { + "lat": 51.08224625928356, + "long": 11.955682606321359 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.25 um 08:00 Uhr", + "Ende: 29.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.05.26)", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 4.8 km hinter AS Droy\u00dfig und 0.7 km vor AS Naumburg", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 11.5 m", + "", + "Hinweistafeln aufgrund Bauma\u00dfnahme B 91, OD Deuben-Naundorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.955682606, + 51.082246259 + ], + [ + 11.955684, + 51.082430901 + ], + [ + 11.9557125, + 51.084507101 + ], + [ + 11.9557126, + 51.084681501 + ], + [ + 11.955727249, + 51.085840919 + ] + ] + } + }, + { + "identifier": "2026-016597--vi-bs.2026-04-07_07-00-00-000.devi-zus.2026-04-07_07-00-00-000_001.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.17649245596767,12.002994926333447,51.17728483569378,12.003537030587182", + "point": "51.17649245596767,12.002994926333447", + "startLcPosition": "97", + "impact": { + "lower": "P\u00f6rstental", + "upper": "Osterfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Osterfeld - P\u00f6rstental", + "coordinate": { + "lat": 51.17649245596767, + "long": 12.002994926333447 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 8.7 km hinter Osterfeld und 3.8 km vor P\u00f6rstental", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A9 von Wei\u00dfenfels (AS) nach Osterfeld Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.002994926, + 51.176492456 + ], + [ + 12.0031497, + 51.176717701 + ], + [ + 12.003485, + 51.177209001 + ], + [ + 12.003537031, + 51.177284836 + ] + ] + } + }, + { + "identifier": "2026-016597--vi-bs.2026-04-07_07-00-00-000.devi-zus.2026-04-07_07-00-00-000_001.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.17288743029788,12.00050889898824,51.17368730461577,12.001067547215587", + "point": "51.17288743029788,12.00050889898824", + "startLcPosition": "97", + "impact": { + "lower": "Wei\u00dfenfels", + "upper": "Osterfeld", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Osterfeld - Wei\u00dfenfels", + "coordinate": { + "lat": 51.17288743029788, + "long": 12.00050889898824 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 8.2 km hinter Osterfeld und 0.4 km vor AS Wei\u00dfenfels", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A9 von Wei\u00dfenfels (AS) nach Osterfeld Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.000508899, + 51.17288743 + ], + [ + 12.0006629, + 51.173098401 + ], + [ + 12.001067547, + 51.173687305 + ] + ] + } + }, + { + "identifier": "2026-016597--vi-bs.2026-04-07_07-00-00-000.devi-zus.2026-04-07_07-00-00-000_001.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.1724790647881,12.00020974823846,51.17329127885907,12.00079542891215", + "point": "51.1724790647881,12.00020974823846", + "startLcPosition": "97", + "impact": { + "lower": "Wei\u00dfenfels", + "upper": "Osterfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Osterfeld - Wei\u00dfenfels", + "coordinate": { + "lat": 51.1724790647881, + "long": 12.00020974823846 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 8.2 km hinter Osterfeld und 0.4 km vor AS Wei\u00dfenfels", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A9 von Wei\u00dfenfels (AS) nach Osterfeld Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.000209748, + 51.172479065 + ], + [ + 12.0003196, + 51.172628101 + ], + [ + 12.0006629, + 51.173098401 + ], + [ + 12.000795429, + 51.173291279 + ] + ] + } + }, + { + "identifier": "2025-006781--vi-bs.2025-02-18_08-00-00-000.devi-zus.2025-02-18_08-00-00-000_004.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.18704240196556,12.00996629867279,51.18374134648827,12.00770074763947", + "point": "51.18704240196556,12.00996629867279", + "startLcPosition": "99", + "impact": { + "lower": "Wei\u00dfenfels", + "upper": "P\u00f6rstental", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | P\u00f6rstental - Wei\u00dfenfels", + "startTimestamp": "2025-02-18T08:00:00+01:00", + "coordinate": { + "lat": 51.18704240196556, + "long": 12.00996629867279 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.25 um 08:00 Uhr", + "Ende: 29.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.05.26)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 2.6 km hinter P\u00f6rstental und 0.8 km vor AS Wei\u00dfenfels", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 11.5 m", + "", + "Hinweistafeln aufgrund Bauma\u00dfnahme B 91, OD Deuben-Naundorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.009966299, + 51.187042402 + ], + [ + 12.0098425, + 51.186862301 + ], + [ + 12.0096731, + 51.186619701 + ], + [ + 12.009568, + 51.186468301 + ], + [ + 12.0092303, + 51.185975101 + ], + [ + 12.007700748, + 51.183741346 + ] + ] + } + }, + { + "identifier": "2026-017735--vi-bs.2026-04-16_08-00-00-000.devi-zus.2026-05-13_08-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.32344982733538,12.16989400045905,51.32383384270122,12.17023791808426", + "point": "51.32344982733538,12.16989400045905", + "startLcPosition": "101", + "impact": { + "lower": "Bachfurt", + "upper": "Bad D\u00fcrrenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Bad D\u00fcrrenberg - Bachfurt", + "coordinate": { + "lat": 51.32344982733538, + "long": 12.16989400045905 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 16:00 Uhr", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 4.5 km hinter AS Bad D\u00fcrrenberg und 0.7 km vor Bachfurt", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 9 m", + "", + "A143 von Holleben (AS) nach Teutschenthal (AS) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.169894, + 51.323449827 + ], + [ + 12.170237918, + 51.323833843 + ] + ] + } + }, + { + "identifier": "2025-044904--vi-bs.2026-03-27_12-00-00-000.devi-zus.2026-03-02_09-00-00-000_004.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.295652231860565,12.142936983957883,51.31875079673626,12.165674661733238", + "point": "51.295652231860565,12.142936983957883", + "startLcPosition": "101", + "impact": { + "lower": "Bachfurt", + "upper": "Bad D\u00fcrrenberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A9 | Bad D\u00fcrrenberg - Bachfurt", + "startTimestamp": "2026-03-27T12:00:00+01:00", + "coordinate": { + "lat": 51.295652231860565, + "long": 12.142936983957883 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 12:00 Uhr", + "Ende: 15.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.04.26)", + "", + "A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 0.9 km hinter AS Bad D\u00fcrrenberg und 1.3 km vor Bachfurt", + "", + "L\u00e4nge: 3.02 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.1 m", + "", + "A9 Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.142936984, + 51.295652232 + ], + [ + 12.1430502, + 51.295743501 + ], + [ + 12.1435285, + 51.296139101 + ], + [ + 12.1455979, + 51.297850601 + ], + [ + 12.1476787, + 51.299523701 + ], + [ + 12.1497728, + 51.301274801 + ], + [ + 12.1510258, + 51.302484301 + ], + [ + 12.1517032, + 51.303176601 + ], + [ + 12.1518953, + 51.303375301 + ], + [ + 12.1521183, + 51.303624701 + ], + [ + 12.1528388, + 51.304434001 + ], + [ + 12.1532104, + 51.304842401 + ], + [ + 12.1552158, + 51.307090301 + ], + [ + 12.1587143, + 51.310998001 + ], + [ + 12.1588498, + 51.311149301 + ], + [ + 12.1613878, + 51.313987701 + ], + [ + 12.1619262, + 51.314580801 + ], + [ + 12.1638506, + 51.316700501 + ], + [ + 12.165674662, + 51.318750797 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-fbm.2026-02-03_08-00-00-000.devi-zus.2025-04-14_08-00-00-000.de47", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.24532628780711,12.067154005562879,51.24231659126379,12.064208142384931", + "point": "51.24532628780711,12.067154005562879", + "startLcPosition": "101", + "impact": { + "lower": "Rippachtal", + "upper": "Bad D\u00fcrrenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bad D\u00fcrrenberg - Rippachtal", + "startTimestamp": "2026-02-03T08:00:00+01:00", + "coordinate": { + "lat": 51.24532628780711, + "long": 12.067154005562879 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.02.26 um 08:00 Uhr", + "Ende: 15.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 6.8 km hinter AS Bad D\u00fcrrenberg und 0.6 km vor AK Rippachtal", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.067154006, + 51.245326288 + ], + [ + 12.0662747, + 51.244437001 + ], + [ + 12.0657175, + 51.243875901 + ], + [ + 12.0653342, + 51.243479401 + ], + [ + 12.064717, + 51.242840901 + ], + [ + 12.064208142, + 51.242316591 + ] + ] + } + }, + { + "identifier": "2025-044904--vi-fbm.2026-04-16_08-00-00-000.devi-zus.2026-03-02_09-00-00-000_004.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.320391406845346,12.16686973046069,51.29582599479407,12.142764595298384", + "point": "51.320391406845346,12.16686973046069", + "startLcPosition": "102", + "impact": { + "lower": "Bad D\u00fcrrenberg", + "upper": "Bachfurt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bachfurt - Bad D\u00fcrrenberg", + "coordinate": { + "lat": 51.320391406845346, + "long": 12.16686973046069 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 16:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.1 km hinter Bachfurt und 0.9 km vor AS Bad D\u00fcrrenberg", + "", + "L\u00e4nge: 3.22 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A9 Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.16686973, + 51.320391407 + ], + [ + 12.1654823, + 51.318849301 + ], + [ + 12.1636132, + 51.316771701 + ], + [ + 12.1617212, + 51.314653301 + ], + [ + 12.161181, + 51.314048401 + ], + [ + 12.1586381, + 51.311211301 + ], + [ + 12.1584983, + 51.311054701 + ], + [ + 12.1550235, + 51.307162101 + ], + [ + 12.152954, + 51.304843601 + ], + [ + 12.1525796, + 51.304433301 + ], + [ + 12.1518846, + 51.303706301 + ], + [ + 12.1516631, + 51.303459001 + ], + [ + 12.1514654, + 51.303258701 + ], + [ + 12.1496893, + 51.301458901 + ], + [ + 12.1474947, + 51.299645401 + ], + [ + 12.1454287, + 51.297953401 + ], + [ + 12.143207, + 51.296182001 + ], + [ + 12.1428682, + 51.295911801 + ], + [ + 12.142764595, + 51.295825995 + ] + ] + } + }, + { + "identifier": "2026-017735--vi-bs.2026-04-16_08-00-00-000.devi-zus.2026-05-13_08-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.32528302417468,12.171275481301645,51.32486115161923,12.170892742169464", + "point": "51.32528302417468,12.171275481301645", + "startLcPosition": "102", + "impact": { + "lower": "Bad D\u00fcrrenberg", + "upper": "Bachfurt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bachfurt - Bad D\u00fcrrenberg", + "coordinate": { + "lat": 51.32528302417468, + "long": 12.171275481301645 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 16:00 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 0.5 km hinter Bachfurt und 4.7 km vor AS Bad D\u00fcrrenberg", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 9 m", + "", + "A143 von Holleben (AS) nach Teutschenthal (AS) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.171275481, + 51.325283024 + ], + [ + 12.170892742, + 51.324861152 + ] + ] + } + }, + { + "identifier": "2025-044904--vi-bs.2026-04-17_12-00-00-000.devi-zus.2026-03-02_09-00-00-000_004.de9", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.31882575406467,12.1654611150972,51.29582599479407,12.142764595298384", + "point": "51.31882575406467,12.1654611150972", + "startLcPosition": "102", + "impact": { + "lower": "Bad D\u00fcrrenberg", + "upper": "Bachfurt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Bachfurt - Bad D\u00fcrrenberg", + "startTimestamp": "2026-04-17T12:00:00+02:00", + "coordinate": { + "lat": 51.31882575406467, + "long": 12.1654611150972 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.04.26 um 12:00 Uhr", + "Ende: 21.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.04.26)", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.3 km hinter Bachfurt und 0.9 km vor AS Bad D\u00fcrrenberg", + "", + "L\u00e4nge: 3.02 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A9 Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.165461115, + 51.318825754 + ], + [ + 12.1636132, + 51.316771701 + ], + [ + 12.1617212, + 51.314653301 + ], + [ + 12.161181, + 51.314048401 + ], + [ + 12.1586381, + 51.311211301 + ], + [ + 12.1584983, + 51.311054701 + ], + [ + 12.1550235, + 51.307162101 + ], + [ + 12.152954, + 51.304843601 + ], + [ + 12.1525796, + 51.304433301 + ], + [ + 12.1518846, + 51.303706301 + ], + [ + 12.1516631, + 51.303459001 + ], + [ + 12.1514654, + 51.303258701 + ], + [ + 12.1496893, + 51.301458901 + ], + [ + 12.1474947, + 51.299645401 + ], + [ + 12.1454287, + 51.297953401 + ], + [ + 12.143207, + 51.296182001 + ], + [ + 12.1428682, + 51.295911801 + ], + [ + 12.142764595, + 51.295825995 + ] + ] + } + }, + { + "identifier": "2026-017735--vi-bs.2026-04-16_08-00-00-000.devi-zus.2026-05-13_08-00-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.33609444732013,12.179580284156433,51.33529525833909,12.17902461667973", + "point": "51.33609444732013,12.179580284156433", + "startLcPosition": "103", + "impact": { + "lower": "Bachfurt", + "upper": "Leipzig-West/Merseburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Leipzig-West/Merseburg - Bachfurt", + "coordinate": { + "lat": 51.33609444732013, + "long": 12.179580284156433 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.3 km hinter AS Leipzig-West/Merseburg und 0.8 km vor Bachfurt", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A143 von Holleben (AS) nach Teutschenthal (AS) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.179580284, + 51.336094447 + ], + [ + 12.179024617, + 51.335295258 + ] + ] + } + }, + { + "identifier": "2026-016829--vi-bs.2026-04-07_07-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.33849184496906,12.181248073632323,51.29216496373655,12.138321116429484", + "point": "51.33849184496906,12.181248073632323", + "startLcPosition": "103", + "impact": { + "lower": "Bad D\u00fcrrenberg", + "upper": "Leipzig-West/Merseburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A9 | Leipzig-West/Merseburg - Bad D\u00fcrrenberg", + "coordinate": { + "lat": 51.33849184496906, + "long": 12.181248073632323 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 17:00 Uhr", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 1.0 km hinter AS Leipzig-West/Merseburg und 0.4 km vor AS Bad D\u00fcrrenberg", + "", + "L\u00e4nge: 5.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A9 von Leipzig-WestMerseburg (AS) nach Bad D\u00fcrrenberg (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.181248074, + 51.338491845 + ], + [ + 12.1807918, + 51.337836801 + ], + [ + 12.1789182, + 51.335142201 + ], + [ + 12.1786453, + 51.334750701 + ], + [ + 12.1772217, + 51.332708301 + ], + [ + 12.1757839, + 51.330630401 + ], + [ + 12.1755287, + 51.330261601 + ], + [ + 12.1745779, + 51.329009901 + ], + [ + 12.1735425, + 51.327816701 + ], + [ + 12.1732091, + 51.327441501 + ], + [ + 12.1726176, + 51.326778601 + ], + [ + 12.1717375, + 51.325792201 + ], + [ + 12.1714443, + 51.325469101 + ], + [ + 12.1695007, + 51.323326701 + ], + [ + 12.1690957, + 51.322878901 + ], + [ + 12.1690282, + 51.322803901 + ], + [ + 12.1677561, + 51.321390801 + ], + [ + 12.1674234, + 51.321005001 + ], + [ + 12.1673022, + 51.320874401 + ], + [ + 12.1671311, + 51.320681901 + ], + [ + 12.1654823, + 51.318849301 + ], + [ + 12.1636132, + 51.316771701 + ], + [ + 12.1617212, + 51.314653301 + ], + [ + 12.161181, + 51.314048401 + ], + [ + 12.1586381, + 51.311211301 + ], + [ + 12.1584983, + 51.311054701 + ], + [ + 12.1550235, + 51.307162101 + ], + [ + 12.152954, + 51.304843601 + ], + [ + 12.1525796, + 51.304433301 + ], + [ + 12.1518846, + 51.303706301 + ], + [ + 12.1516631, + 51.303459001 + ], + [ + 12.1514654, + 51.303258701 + ], + [ + 12.1496893, + 51.301458901 + ], + [ + 12.1474947, + 51.299645401 + ], + [ + 12.1454287, + 51.297953401 + ], + [ + 12.143207, + 51.296182001 + ], + [ + 12.1428682, + 51.295911801 + ], + [ + 12.1394401, + 51.293072401 + ], + [ + 12.1389609, + 51.292683801 + ], + [ + 12.138321116, + 51.292164964 + ] + ] + } + }, + { + "identifier": "2026-008482--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-03-15_12-00-00-000.de20", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.404190788749396,12.184489562725911,51.391791999171566,12.1806484744003", + "point": "51.404190788749396,12.184489562725911", + "startLcPosition": "105", + "impact": { + "lower": "Leipzig-West/Merseburg", + "upper": "Schkeuditzer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> N\u00fcrnberg", + "title": "A9 | Schkeuditzer Kreuz - Leipzig-West/Merseburg", + "coordinate": { + "lat": 51.404190788749396, + "long": 12.184489562725911 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 20:30 bis zum 17.04.26 08:00 Uhr.", + "", + "A9: Berlin -> N\u00fcrnberg, zwischen 2.8 km hinter AK Schkeuditzer Kreuz und 5.1 km vor AS Leipzig-West/Merseburg", + "", + "L\u00e4nge: 1.42 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A9 RF M AKR Sch\u00e4den " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.184489563, + 51.404190789 + ], + [ + 12.1836695, + 51.402778501 + ], + [ + 12.1828943, + 51.401393001 + ], + [ + 12.1823564, + 51.400449601 + ], + [ + 12.1822294, + 51.400226801 + ], + [ + 12.1818253, + 51.399492801 + ], + [ + 12.1816733, + 51.399184701 + ], + [ + 12.1814715, + 51.398753301 + ], + [ + 12.1811303, + 51.397906001 + ], + [ + 12.1809572, + 51.397346501 + ], + [ + 12.1809361, + 51.397278801 + ], + [ + 12.1807726, + 51.396728001 + ], + [ + 12.1806375, + 51.396085601 + ], + [ + 12.1805927, + 51.395872901 + ], + [ + 12.1805298, + 51.395396301 + ], + [ + 12.1804652, + 51.394695601 + ], + [ + 12.1804441, + 51.393748201 + ], + [ + 12.1804882, + 51.392913901 + ], + [ + 12.1805785, + 51.392156401 + ], + [ + 12.180648474, + 51.391791999 + ] + ] + } + }, + { + "identifier": "2026-008482--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-03-15_12-00-00-000.de18", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.404190788749396,12.184489562725911,51.391791999171566,12.1806484744003", + "point": "51.404190788749396,12.184489562725911", + "startLcPosition": "105", + "impact": { + "lower": "Leipzig-West/Merseburg", + "upper": "Schkeuditzer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> N\u00fcrnberg", + "title": "A9 | Schkeuditzer Kreuz - Leipzig-West/Merseburg", + "coordinate": { + "lat": 51.404190788749396, + "long": 12.184489562725911 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 19:00 bis 20:30 Uhr", + "", + "A9: Berlin -> N\u00fcrnberg, zwischen 2.8 km hinter AK Schkeuditzer Kreuz und 5.1 km vor AS Leipzig-West/Merseburg", + "", + "L\u00e4nge: 1.42 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A9 RF M AKR Sch\u00e4den " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.184489563, + 51.404190789 + ], + [ + 12.1836695, + 51.402778501 + ], + [ + 12.1828943, + 51.401393001 + ], + [ + 12.1823564, + 51.400449601 + ], + [ + 12.1822294, + 51.400226801 + ], + [ + 12.1818253, + 51.399492801 + ], + [ + 12.1816733, + 51.399184701 + ], + [ + 12.1814715, + 51.398753301 + ], + [ + 12.1811303, + 51.397906001 + ], + [ + 12.1809572, + 51.397346501 + ], + [ + 12.1809361, + 51.397278801 + ], + [ + 12.1807726, + 51.396728001 + ], + [ + 12.1806375, + 51.396085601 + ], + [ + 12.1805927, + 51.395872901 + ], + [ + 12.1805298, + 51.395396301 + ], + [ + 12.1804652, + 51.394695601 + ], + [ + 12.1804441, + 51.393748201 + ], + [ + 12.1804882, + 51.392913901 + ], + [ + 12.1805785, + 51.392156401 + ], + [ + 12.180648474, + 51.391791999 + ] + ] + } + }, + { + "identifier": "2026-008482--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-03-15_12-00-00-000.de16", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.41695421373722,12.191855049866708,51.405069237575646,12.18499964960537", + "point": "51.41695421373722,12.191855049866708", + "startLcPosition": "105", + "impact": { + "lower": "Gro\u00dfkugel", + "upper": "Schkeuditzer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Schkeuditzer Kreuz - Gro\u00dfkugel", + "coordinate": { + "lat": 51.41695421373722, + "long": 12.191855049866708 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:30 bis zum 16.04.26 08:00 Uhr.", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 1.3 km hinter AK Schkeuditzer Kreuz und 0.6 km vor AS Gro\u00dfkugel", + "", + "L\u00e4nge: 1.41 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A9 RF M AKR Sch\u00e4den " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.19185505, + 51.416954214 + ], + [ + 12.190988, + 51.415448101 + ], + [ + 12.1894336, + 51.412748001 + ], + [ + 12.1879034, + 51.410089701 + ], + [ + 12.1870968, + 51.408687901 + ], + [ + 12.1870332, + 51.408577401 + ], + [ + 12.1862578, + 51.407239901 + ], + [ + 12.1859289, + 51.406669501 + ], + [ + 12.18499965, + 51.405069238 + ] + ] + } + }, + { + "identifier": "2026-008482--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-03-15_12-00-00-000.de14", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.41695421373722,12.191855049866708,51.405069237575646,12.18499964960537", + "point": "51.41695421373722,12.191855049866708", + "startLcPosition": "105", + "impact": { + "lower": "Gro\u00dfkugel", + "upper": "Schkeuditzer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Schkeuditzer Kreuz - Gro\u00dfkugel", + "coordinate": { + "lat": 51.41695421373722, + "long": 12.191855049866708 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 19:00 bis 20:30 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 1.3 km hinter AK Schkeuditzer Kreuz und 0.6 km vor AS Gro\u00dfkugel", + "", + "L\u00e4nge: 1.41 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A9 RF M AKR Sch\u00e4den " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.19185505, + 51.416954214 + ], + [ + 12.190988, + 51.415448101 + ], + [ + 12.1894336, + 51.412748001 + ], + [ + 12.1879034, + 51.410089701 + ], + [ + 12.1870968, + 51.408687901 + ], + [ + 12.1870332, + 51.408577401 + ], + [ + 12.1862578, + 51.407239901 + ], + [ + 12.1859289, + 51.406669501 + ], + [ + 12.18499965, + 51.405069238 + ] + ] + } + }, + { + "identifier": "2026-008482--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-03-15_12-00-00-000.de12", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.43245901935612,12.200789635886055,51.40849919312546,12.186987858574978", + "point": "51.43245901935612,12.200789635886055", + "startLcPosition": "106", + "impact": { + "lower": "Gro\u00dfkugel", + "upper": "Wiedemar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Wiedemar - Gro\u00dfkugel", + "coordinate": { + "lat": 51.43245901935612, + "long": 12.200789635886055 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:45 bis zum 14.04.26 08:00 Uhr.", + "14.04.26 20:45 bis zum 15.04.26 08:00 Uhr.", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 3.8 km hinter AS Wiedemar und 1.0 km vor AS Gro\u00dfkugel", + "", + "L\u00e4nge: 2.83 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A9 RF M AKR Sch\u00e4den " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.200789636, + 51.432459019 + ], + [ + 12.1999562, + 51.431016601 + ], + [ + 12.1993833, + 51.430045201 + ], + [ + 12.1993213, + 51.429933301 + ], + [ + 12.1992057, + 51.429734201 + ], + [ + 12.1983982, + 51.428316001 + ], + [ + 12.1981627, + 51.427907801 + ], + [ + 12.1979877, + 51.427604401 + ], + [ + 12.1972234, + 51.426289901 + ], + [ + 12.196978, + 51.425866901 + ], + [ + 12.1969187, + 51.425764601 + ], + [ + 12.1967601, + 51.425491301 + ], + [ + 12.1961186, + 51.424385701 + ], + [ + 12.1955745, + 51.423412501 + ], + [ + 12.194645, + 51.421794501 + ], + [ + 12.1943528, + 51.421288001 + ], + [ + 12.193335, + 51.419523601 + ], + [ + 12.1929231, + 51.418809401 + ], + [ + 12.1926404, + 51.418318401 + ], + [ + 12.1926081, + 51.418262301 + ], + [ + 12.1918916, + 51.417017701 + ], + [ + 12.190988, + 51.415448101 + ], + [ + 12.1894336, + 51.412748001 + ], + [ + 12.1879034, + 51.410089701 + ], + [ + 12.1870968, + 51.408687901 + ], + [ + 12.1870332, + 51.408577401 + ], + [ + 12.186987859, + 51.408499193 + ] + ] + } + }, + { + "identifier": "2026-008482--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-03-15_12-00-00-000.de10", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.43499430249806,12.202254278353578,51.40849919312546,12.186987858574978", + "point": "51.43499430249806,12.202254278353578", + "startLcPosition": "106", + "impact": { + "lower": "Gro\u00dfkugel", + "upper": "Wiedemar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Wiedemar - Gro\u00dfkugel", + "coordinate": { + "lat": 51.43499430249806, + "long": 12.202254278353578 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 3.5 km hinter AS Wiedemar und 1.0 km vor AS Gro\u00dfkugel", + "", + "L\u00e4nge: 3.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A9 RF M AKR Sch\u00e4den " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.202254278, + 51.434994302 + ], + [ + 12.2016617, + 51.433963401 + ], + [ + 12.2015172, + 51.433712001 + ], + [ + 12.2013977, + 51.433504201 + ], + [ + 12.2010738, + 51.432942401 + ], + [ + 12.2008596, + 51.432580101 + ], + [ + 12.1999562, + 51.431016601 + ], + [ + 12.1993833, + 51.430045201 + ], + [ + 12.1993213, + 51.429933301 + ], + [ + 12.1992057, + 51.429734201 + ], + [ + 12.1983982, + 51.428316001 + ], + [ + 12.1981627, + 51.427907801 + ], + [ + 12.1979877, + 51.427604401 + ], + [ + 12.1972234, + 51.426289901 + ], + [ + 12.196978, + 51.425866901 + ], + [ + 12.1969187, + 51.425764601 + ], + [ + 12.1967601, + 51.425491301 + ], + [ + 12.1961186, + 51.424385701 + ], + [ + 12.1955745, + 51.423412501 + ], + [ + 12.194645, + 51.421794501 + ], + [ + 12.1943528, + 51.421288001 + ], + [ + 12.193335, + 51.419523601 + ], + [ + 12.1929231, + 51.418809401 + ], + [ + 12.1926404, + 51.418318401 + ], + [ + 12.1926081, + 51.418262301 + ], + [ + 12.1918916, + 51.417017701 + ], + [ + 12.190988, + 51.415448101 + ], + [ + 12.1894336, + 51.412748001 + ], + [ + 12.1879034, + 51.410089701 + ], + [ + 12.1870968, + 51.408687901 + ], + [ + 12.1870332, + 51.408577401 + ], + [ + 12.186987859, + 51.408499193 + ] + ] + } + }, + { + "identifier": "2026-008482--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-03-15_12-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.43245901935612,12.200789635886055,51.40849919312546,12.186987858574978", + "point": "51.43245901935612,12.200789635886055", + "startLcPosition": "106", + "impact": { + "lower": "Gro\u00dfkugel", + "upper": "Wiedemar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Wiedemar - Gro\u00dfkugel", + "coordinate": { + "lat": 51.43245901935612, + "long": 12.200789635886055 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 19:00 bis 20:45 Uhr", + "14.04.26 von 19:00 bis 20:45 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 3.8 km hinter AS Wiedemar und 1.0 km vor AS Gro\u00dfkugel", + "", + "L\u00e4nge: 2.83 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A9 RF M AKR Sch\u00e4den " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.200789636, + 51.432459019 + ], + [ + 12.1999562, + 51.431016601 + ], + [ + 12.1993833, + 51.430045201 + ], + [ + 12.1993213, + 51.429933301 + ], + [ + 12.1992057, + 51.429734201 + ], + [ + 12.1983982, + 51.428316001 + ], + [ + 12.1981627, + 51.427907801 + ], + [ + 12.1979877, + 51.427604401 + ], + [ + 12.1972234, + 51.426289901 + ], + [ + 12.196978, + 51.425866901 + ], + [ + 12.1969187, + 51.425764601 + ], + [ + 12.1967601, + 51.425491301 + ], + [ + 12.1961186, + 51.424385701 + ], + [ + 12.1955745, + 51.423412501 + ], + [ + 12.194645, + 51.421794501 + ], + [ + 12.1943528, + 51.421288001 + ], + [ + 12.193335, + 51.419523601 + ], + [ + 12.1929231, + 51.418809401 + ], + [ + 12.1926404, + 51.418318401 + ], + [ + 12.1926081, + 51.418262301 + ], + [ + 12.1918916, + 51.417017701 + ], + [ + 12.190988, + 51.415448101 + ], + [ + 12.1894336, + 51.412748001 + ], + [ + 12.1879034, + 51.410089701 + ], + [ + 12.1870968, + 51.408687901 + ], + [ + 12.1870332, + 51.408577401 + ], + [ + 12.186987859, + 51.408499193 + ] + ] + } + }, + { + "identifier": "2026-016092--vi-bs.2026-04-09_07-00-00-000.devi-zus.2026-04-09_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.558388817932276,12.187354307668228,51.644478508861816,12.200178267711841", + "point": "51.558388817932276,12.187354307668228", + "startLcPosition": "108", + "impact": { + "lower": "Thurland", + "upper": "Halle an der Saale", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | Halle an der Saale - Thurland", + "coordinate": { + "lat": 51.558388817932276, + "long": 12.187354307668228 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 17:00 Uhr", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 0.8 km hinter AS Halle an der Saale und 7.1 km vor AS Thurland", + "", + "L\u00e4nge: 9.82 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A9 Arbeiten an Schutzeinrichtungen FRS" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.187354308, + 51.558388818 + ], + [ + 12.1872494, + 51.559184501 + ], + [ + 12.1872482, + 51.560068401 + ], + [ + 12.1872916, + 51.560670201 + ], + [ + 12.1873171, + 51.560859601 + ], + [ + 12.1874432, + 51.561797701 + ], + [ + 12.1876002, + 51.562478101 + ], + [ + 12.187755, + 51.563174901 + ], + [ + 12.1878418, + 51.563470601 + ], + [ + 12.1880481, + 51.564173401 + ], + [ + 12.1883464, + 51.565209001 + ], + [ + 12.1884223, + 51.565478101 + ], + [ + 12.1895311, + 51.569406101 + ], + [ + 12.1906754, + 51.573406501 + ], + [ + 12.1908332, + 51.574081401 + ], + [ + 12.190949, + 51.574620401 + ], + [ + 12.1910337, + 51.575122001 + ], + [ + 12.1911156, + 51.575802801 + ], + [ + 12.1911527, + 51.576322401 + ], + [ + 12.1911625, + 51.576840201 + ], + [ + 12.1911348, + 51.577397201 + ], + [ + 12.1910978, + 51.577861001 + ], + [ + 12.1910433, + 51.578326501 + ], + [ + 12.190973, + 51.578727201 + ], + [ + 12.1909619, + 51.578790401 + ], + [ + 12.1908456, + 51.579297201 + ], + [ + 12.1907294, + 51.579739501 + ], + [ + 12.1905342, + 51.580361601 + ], + [ + 12.1903488, + 51.580883801 + ], + [ + 12.190168, + 51.581344001 + ], + [ + 12.1894339, + 51.583013701 + ], + [ + 12.1875322, + 51.587339101 + ], + [ + 12.1872209, + 51.588047001 + ], + [ + 12.1858474, + 51.591145801 + ], + [ + 12.1856648, + 51.591557701 + ], + [ + 12.1840744, + 51.595207401 + ], + [ + 12.1839496, + 51.595560501 + ], + [ + 12.1836651, + 51.596365601 + ], + [ + 12.1834773, + 51.597070901 + ], + [ + 12.1833501, + 51.597696801 + ], + [ + 12.1832285, + 51.598537401 + ], + [ + 12.1831831, + 51.599073801 + ], + [ + 12.1831702, + 51.599648401 + ], + [ + 12.1831735, + 51.600087001 + ], + [ + 12.1832308, + 51.600856001 + ], + [ + 12.1833237, + 51.601531701 + ], + [ + 12.1833902, + 51.601905101 + ], + [ + 12.1835367, + 51.602529801 + ], + [ + 12.1837119, + 51.603128201 + ], + [ + 12.1839046, + 51.603688801 + ], + [ + 12.1839582, + 51.603844801 + ], + [ + 12.1841301, + 51.604304401 + ], + [ + 12.184189, + 51.604447901 + ], + [ + 12.1846554, + 51.605585101 + ], + [ + 12.1848223, + 51.605989201 + ], + [ + 12.1858867, + 51.608566001 + ], + [ + 12.1863369, + 51.609655701 + ], + [ + 12.1866602, + 51.610438301 + ], + [ + 12.1869529, + 51.611133801 + ], + [ + 12.1870981, + 51.611482801 + ], + [ + 12.187141, + 51.611581601 + ], + [ + 12.1877488, + 51.613068601 + ], + [ + 12.1879088, + 51.613453801 + ], + [ + 12.1896812, + 51.617722201 + ], + [ + 12.1915929, + 51.622325201 + ], + [ + 12.1922907, + 51.624029301 + ], + [ + 12.1924864, + 51.624513401 + ], + [ + 12.1933717, + 51.626607901 + ], + [ + 12.1944772, + 51.629269401 + ], + [ + 12.1949907, + 51.630511401 + ], + [ + 12.1950952, + 51.630764101 + ], + [ + 12.1955681, + 51.631912401 + ], + [ + 12.1957605, + 51.632379501 + ], + [ + 12.1958677, + 51.632637801 + ], + [ + 12.1960299, + 51.633038101 + ], + [ + 12.1965179, + 51.634205801 + ], + [ + 12.1967201, + 51.634701501 + ], + [ + 12.1967877, + 51.634864501 + ], + [ + 12.1969046, + 51.635139901 + ], + [ + 12.1973409, + 51.636248301 + ], + [ + 12.1975225, + 51.636719401 + ], + [ + 12.1977225, + 51.637233401 + ], + [ + 12.1981309, + 51.638315201 + ], + [ + 12.198337, + 51.638864501 + ], + [ + 12.1985067, + 51.639329001 + ], + [ + 12.1993568, + 51.641749401 + ], + [ + 12.1994608, + 51.642045401 + ], + [ + 12.1995757, + 51.642435201 + ], + [ + 12.1999333, + 51.643647701 + ], + [ + 12.200178268, + 51.644478509 + ] + ] + } + }, + { + "identifier": "2026-016102--vi-bs.2026-04-20_07-30-00-000.devi-zus.2026-04-20_07-30-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.60383195927942,12.183953787749031,51.61340463712834,12.187888378757114", + "point": "51.60383195927942,12.183953787749031", + "startLcPosition": "108", + "impact": { + "lower": "Bitterfeld/Wolfen", + "upper": "Halle an der Saale", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | Halle an der Saale - Bitterfeld/Wolfen", + "coordinate": { + "lat": 51.60383195927942, + "long": 12.183953787749031 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "29.04.26 von 07:30 bis 14:00 Uhr", + "30.04.26 von 07:30 bis 14:00 Uhr", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 6.0 km hinter AS Halle an der Saale und 2.5 km vor AS Bitterfeld/Wolfen", + "", + "L\u00e4nge: 1.1 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A9 Arbeiten an Parkpl\u00e4tzen auf RTK K\u00f6ckern-West" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.183953788, + 51.603831959 + ], + [ + 12.1839582, + 51.603844801 + ], + [ + 12.1841301, + 51.604304401 + ], + [ + 12.184189, + 51.604447901 + ], + [ + 12.1846554, + 51.605585101 + ], + [ + 12.1848223, + 51.605989201 + ], + [ + 12.1858867, + 51.608566001 + ], + [ + 12.1863369, + 51.609655701 + ], + [ + 12.1866602, + 51.610438301 + ], + [ + 12.1869529, + 51.611133801 + ], + [ + 12.1870981, + 51.611482801 + ], + [ + 12.187141, + 51.611581601 + ], + [ + 12.1877488, + 51.613068601 + ], + [ + 12.187888379, + 51.613404637 + ] + ] + } + }, + { + "identifier": "2026-016102--vi-bs.2026-04-20_07-30-00-000.devi-zus.2026-04-20_07-30-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.60995882735237,12.186227397691479,51.601194013893675,12.183050783668266", + "point": "51.60995882735237,12.186227397691479", + "startLcPosition": "110", + "impact": { + "lower": "Halle an der Saale", + "upper": "Bitterfeld/Wolfen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Bitterfeld/Wolfen - Halle an der Saale", + "coordinate": { + "lat": 51.60995882735237, + "long": 12.186227397691479 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 07:30 bis 14:00 Uhr", + "21.04.26 von 07:30 bis 14:00 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 2.9 km hinter AS Bitterfeld/Wolfen und 5.7 km vor AS Halle an der Saale", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A9 Arbeiten an Parkpl\u00e4tzen auf RTK K\u00f6ckern-West" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.186227398, + 51.609958827 + ], + [ + 12.1861197, + 51.609691501 + ], + [ + 12.185954, + 51.609286301 + ], + [ + 12.1856774, + 51.608613901 + ], + [ + 12.1850287, + 51.607060901 + ], + [ + 12.1844356, + 51.605614101 + ], + [ + 12.1839843, + 51.604515701 + ], + [ + 12.1839094, + 51.604333501 + ], + [ + 12.1837246, + 51.603861601 + ], + [ + 12.1835898, + 51.603467101 + ], + [ + 12.1834846, + 51.603153801 + ], + [ + 12.1833182, + 51.602558001 + ], + [ + 12.1831353, + 51.601773001 + ], + [ + 12.1831, + 51.601548701 + ], + [ + 12.183050784, + 51.601194014 + ] + ] + } + }, + { + "identifier": "2026-016102--vi-bs.2026-04-20_07-30-00-000.devi-zus.2026-04-20_07-30-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.72026115947776,12.214767994706808,51.72918531457478,12.216458398812295", + "point": "51.72026115947776,12.214767994706808", + "startLcPosition": "111", + "impact": { + "lower": "Dessau-S\u00fcd", + "upper": "Thurland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | Thurland - Dessau-S\u00fcd", + "coordinate": { + "lat": 51.72026115947776, + "long": 12.214767994706808 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "07.05.26 von 07:30 bis 14:30 Uhr", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 1.4 km hinter AS Thurland und 2.7 km vor AS Dessau-S\u00fcd", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A9 Arbeiten an Parkpl\u00e4tzen auf RTK K\u00f6ckern-West" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.214767995, + 51.720261159 + ], + [ + 12.2148805, + 51.720871301 + ], + [ + 12.2150971, + 51.722027501 + ], + [ + 12.2151681, + 51.722391601 + ], + [ + 12.2152826, + 51.723000601 + ], + [ + 12.215418, + 51.723700301 + ], + [ + 12.2158925, + 51.726192901 + ], + [ + 12.215923, + 51.726353201 + ], + [ + 12.2160003, + 51.726719101 + ], + [ + 12.2162536, + 51.728106301 + ], + [ + 12.216458399, + 51.729185315 + ] + ] + } + }, + { + "identifier": "2026-016102--vi-bs.2026-04-20_07-30-00-000.devi-zus.2026-04-20_07-30-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.72920121249031,12.216242503008763,51.72027671255874,12.214552096272593", + "point": "51.72920121249031,12.216242503008763", + "startLcPosition": "113", + "impact": { + "lower": "Thurland", + "upper": "Dessau-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Dessau-S\u00fcd - Thurland", + "coordinate": { + "lat": 51.72920121249031, + "long": 12.216242503008763 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "06.05.26 von 07:30 bis 14:30 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 2.7 km hinter AS Dessau-S\u00fcd und 1.4 km vor AS Thurland", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A9 Arbeiten an Parkpl\u00e4tzen auf RTK K\u00f6ckern-West" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.216242503, + 51.729201212 + ], + [ + 12.2160355, + 51.728123501 + ], + [ + 12.2157215, + 51.726426901 + ], + [ + 12.21566, + 51.726095701 + ], + [ + 12.2152656, + 51.724034401 + ], + [ + 12.2151849, + 51.723726001 + ], + [ + 12.2150231, + 51.722788501 + ], + [ + 12.2148596, + 51.721918301 + ], + [ + 12.2146674, + 51.720884601 + ], + [ + 12.2146, + 51.720529601 + ], + [ + 12.214552096, + 51.720276713 + ] + ] + } + }, + { + "identifier": "2026-016092--vi-bs.2026-04-09_07-00-00-000.devi-zus.2026-04-09_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.76846369071297,12.24385589445042,51.573957874183066,12.190573044733041", + "point": "51.76846369071297,12.24385589445042", + "startLcPosition": "114", + "impact": { + "lower": "Halle an der Saale", + "upper": "Dessau-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Dessau-Ost - Halle an der Saale", + "coordinate": { + "lat": 51.76846369071297, + "long": 12.24385589445042 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 17:00 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 7.5 km hinter AS Dessau-Ost und 2.6 km vor AS Halle an der Saale", + "", + "L\u00e4nge: 22.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A9 Arbeiten an Schutzeinrichtungen FRS" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.243855894, + 51.768463691 + ], + [ + 12.2425263, + 51.767761501 + ], + [ + 12.2408016, + 51.766762301 + ], + [ + 12.2396408, + 51.765989401 + ], + [ + 12.2386095, + 51.765212601 + ], + [ + 12.2374619, + 51.764228101 + ], + [ + 12.2362523, + 51.763031601 + ], + [ + 12.2354521, + 51.762092601 + ], + [ + 12.2343078, + 51.760660401 + ], + [ + 12.231505, + 51.757060101 + ], + [ + 12.2295223, + 51.754519501 + ], + [ + 12.2286877, + 51.753450001 + ], + [ + 12.2280421, + 51.752653301 + ], + [ + 12.2273545, + 51.751764801 + ], + [ + 12.2272018, + 51.751556201 + ], + [ + 12.226425, + 51.750576401 + ], + [ + 12.2261206, + 51.750178601 + ], + [ + 12.225126, + 51.748877501 + ], + [ + 12.2240124, + 51.747406201 + ], + [ + 12.2229064, + 51.745889901 + ], + [ + 12.2215646, + 51.743885901 + ], + [ + 12.2211525, + 51.743230301 + ], + [ + 12.2209439, + 51.742898401 + ], + [ + 12.2208074, + 51.742663701 + ], + [ + 12.2203633, + 51.741900001 + ], + [ + 12.2199218, + 51.741089601 + ], + [ + 12.2195061, + 51.740270001 + ], + [ + 12.2191312, + 51.739477001 + ], + [ + 12.2187765, + 51.738678701 + ], + [ + 12.2183295, + 51.737587301 + ], + [ + 12.2179232, + 51.736479301 + ], + [ + 12.2173838, + 51.734752901 + ], + [ + 12.2170901, + 51.733567801 + ], + [ + 12.2169124, + 51.732749401 + ], + [ + 12.2165091, + 51.730589101 + ], + [ + 12.2160355, + 51.728123501 + ], + [ + 12.2157215, + 51.726426901 + ], + [ + 12.21566, + 51.726095701 + ], + [ + 12.2152656, + 51.724034401 + ], + [ + 12.2151849, + 51.723726001 + ], + [ + 12.2150231, + 51.722788501 + ], + [ + 12.2148596, + 51.721918301 + ], + [ + 12.2146674, + 51.720884601 + ], + [ + 12.2146, + 51.720529601 + ], + [ + 12.2142223, + 51.718535601 + ], + [ + 12.2141458, + 51.718150101 + ], + [ + 12.213797, + 51.716341101 + ], + [ + 12.2135823, + 51.715265301 + ], + [ + 12.2129984, + 51.712300801 + ], + [ + 12.2127307, + 51.710818101 + ], + [ + 12.2126001, + 51.710186601 + ], + [ + 12.2122929, + 51.708470101 + ], + [ + 12.2122707, + 51.708344701 + ], + [ + 12.2121616, + 51.707766901 + ], + [ + 12.2119161, + 51.706471701 + ], + [ + 12.2100361, + 51.696553301 + ], + [ + 12.209983, + 51.696282901 + ], + [ + 12.2099606, + 51.696129001 + ], + [ + 12.2098801, + 51.695674801 + ], + [ + 12.2083633, + 51.687733801 + ], + [ + 12.2083089, + 51.687458901 + ], + [ + 12.2064132, + 51.677428001 + ], + [ + 12.2047254, + 51.668559401 + ], + [ + 12.2046707, + 51.668268101 + ], + [ + 12.2042851, + 51.666285501 + ], + [ + 12.2023841, + 51.656131601 + ], + [ + 12.2022885, + 51.655632901 + ], + [ + 12.2017013, + 51.652743501 + ], + [ + 12.2013733, + 51.651129401 + ], + [ + 12.2009166, + 51.648599101 + ], + [ + 12.200845, + 51.648249701 + ], + [ + 12.2003572, + 51.646097701 + ], + [ + 12.1998132, + 51.644075801 + ], + [ + 12.1996962, + 51.643682401 + ], + [ + 12.199205, + 51.642086001 + ], + [ + 12.1985459, + 51.640143801 + ], + [ + 12.1982607, + 51.639345801 + ], + [ + 12.1979012, + 51.638342401 + ], + [ + 12.1974896, + 51.637270301 + ], + [ + 12.1971002, + 51.636284201 + ], + [ + 12.196482, + 51.634737801 + ], + [ + 12.1963426, + 51.634406901 + ], + [ + 12.1961969, + 51.634068501 + ], + [ + 12.1957968, + 51.633075401 + ], + [ + 12.195712, + 51.632874401 + ], + [ + 12.1955592, + 51.632519401 + ], + [ + 12.1954641, + 51.632293501 + ], + [ + 12.1948549, + 51.630804901 + ], + [ + 12.1947411, + 51.630528101 + ], + [ + 12.1940308, + 51.628800401 + ], + [ + 12.1931227, + 51.626639501 + ], + [ + 12.1930652, + 51.626502701 + ], + [ + 12.1922767, + 51.624490001 + ], + [ + 12.1920699, + 51.624014101 + ], + [ + 12.1913865, + 51.622363001 + ], + [ + 12.1894672, + 51.617754301 + ], + [ + 12.1876871, + 51.613479501 + ], + [ + 12.1875284, + 51.613098301 + ], + [ + 12.1869201, + 51.611613101 + ], + [ + 12.1866374, + 51.610976501 + ], + [ + 12.1861197, + 51.609691501 + ], + [ + 12.185954, + 51.609286301 + ], + [ + 12.1856774, + 51.608613901 + ], + [ + 12.1850287, + 51.607060901 + ], + [ + 12.1844356, + 51.605614101 + ], + [ + 12.1839843, + 51.604515701 + ], + [ + 12.1839094, + 51.604333501 + ], + [ + 12.1837246, + 51.603861601 + ], + [ + 12.1835898, + 51.603467101 + ], + [ + 12.1834846, + 51.603153801 + ], + [ + 12.1833182, + 51.602558001 + ], + [ + 12.1831353, + 51.601773001 + ], + [ + 12.1831, + 51.601548701 + ], + [ + 12.1830052, + 51.600865501 + ], + [ + 12.1829617, + 51.600363801 + ], + [ + 12.182953, + 51.600085101 + ], + [ + 12.1829395, + 51.599654001 + ], + [ + 12.1829582, + 51.599073801 + ], + [ + 12.1830037, + 51.598527001 + ], + [ + 12.1831197, + 51.597680501 + ], + [ + 12.1832572, + 51.597060501 + ], + [ + 12.183443, + 51.596341201 + ], + [ + 12.1837322, + 51.595530501 + ], + [ + 12.1838573, + 51.595179901 + ], + [ + 12.1854415, + 51.591537701 + ], + [ + 12.1856288, + 51.591113701 + ], + [ + 12.1869988, + 51.588013101 + ], + [ + 12.1873116, + 51.587302301 + ], + [ + 12.1892171, + 51.582971601 + ], + [ + 12.1899495, + 51.581307101 + ], + [ + 12.1901214, + 51.580854701 + ], + [ + 12.1903142, + 51.580332501 + ], + [ + 12.1905042, + 51.579715501 + ], + [ + 12.1906207, + 51.579278801 + ], + [ + 12.190738, + 51.578769601 + ], + [ + 12.190811, + 51.578315701 + ], + [ + 12.1908663, + 51.577851501 + ], + [ + 12.1909074, + 51.577388001 + ], + [ + 12.1909246, + 51.576839201 + ], + [ + 12.1909152, + 51.576327901 + ], + [ + 12.1908856, + 51.575810601 + ], + [ + 12.1908009, + 51.575134701 + ], + [ + 12.1907192, + 51.574646101 + ], + [ + 12.1906083, + 51.574100701 + ], + [ + 12.190573045, + 51.573957874 + ] + ] + } + }, + { + "identifier": "2026-016102--vi-bs.2026-04-20_07-30-00-000.devi-zus.2026-04-20_07-30-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.865926025006424,12.366852214722945,51.869811414640914,12.378326464687838", + "point": "51.865926025006424,12.366852214722945", + "startLcPosition": "115", + "impact": { + "lower": "Coswig", + "upper": "Vockerode", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | Vockerode - Coswig", + "coordinate": { + "lat": 51.865926025006424, + "long": 12.366852214722945 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.05.26 von 07:30 bis 14:30 Uhr", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 3.4 km hinter AS Vockerode und 2.7 km vor AS Coswig", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A9 Arbeiten an Parkpl\u00e4tzen auf RTK K\u00f6ckern-West" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.366852215, + 51.865926025 + ], + [ + 12.3672381, + 51.866067901 + ], + [ + 12.3678653, + 51.866296501 + ], + [ + 12.3689226, + 51.866665701 + ], + [ + 12.3691456, + 51.866742601 + ], + [ + 12.3695197, + 51.866874501 + ], + [ + 12.3700787, + 51.867060301 + ], + [ + 12.3716658, + 51.867583801 + ], + [ + 12.3731276, + 51.868050901 + ], + [ + 12.3751116, + 51.868696001 + ], + [ + 12.3754773, + 51.868816001 + ], + [ + 12.3760452, + 51.869001401 + ], + [ + 12.3769103, + 51.869291701 + ], + [ + 12.3777522, + 51.869594101 + ], + [ + 12.3782677, + 51.869788301 + ], + [ + 12.378326465, + 51.869811415 + ] + ] + } + }, + { + "identifier": "2026-012249--vi-fbm.2026-04-08_22-00-00-000.devi-zus.2026-03-16_22-00-00-000_001.de12", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.87556982829134,12.388441544451856,51.889782519577516,12.401146882272846", + "point": "51.87556982829134,12.388441544451856", + "startLcPosition": "116", + "impact": { + "lower": "K\u00f6selitz", + "upper": "Kliekener Aue", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | Kliekener Aue - K\u00f6selitz", + "coordinate": { + "lat": 51.87556982829134, + "long": 12.388441544451856 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.05.26 22:00 bis zum 12.05.26 05:00 Uhr.", + "12.05.26 22:00 bis zum 13.05.26 05:00 Uhr.", + "13.05.26 22:00 bis zum 14.05.26 05:00 Uhr.", + "14.05.26 22:00 bis zum 15.05.26 05:00 Uhr.", + "18.05.26 22:00 bis zum 19.05.26 05:00 Uhr.", + "19.05.26 22:00 bis zum 20.05.26 05:00 Uhr.", + "20.05.26 22:00 bis zum 21.05.26 05:00 Uhr.", + "21.05.26 22:00 bis zum 22.05.26 05:00 Uhr.", + "26.05.26 22:00 bis zum 27.05.26 05:00 Uhr.", + "27.05.26 22:00 bis zum 28.05.26 05:00 Uhr.", + "28.05.26 22:00 bis zum 29.05.26 05:00 Uhr.", + "01.06.26 22:00 bis zum 02.06.26 05:00 Uhr.", + "02.06.26 22:00 bis zum 03.06.26 05:00 Uhr.", + "03.06.26 22:00 bis zum 04.06.26 05:00 Uhr.", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 1.4 km hinter Kliekener Aue und 9.3 km vor AS K\u00f6selitz", + "", + "L\u00e4nge: 1.81 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A9 AS Coswig FR Berlin (km 60,5), GST-Umbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.388441544, + 51.875569828 + ], + [ + 12.3898212, + 51.876807501 + ], + [ + 12.3910715, + 51.878089901 + ], + [ + 12.3943851, + 51.881906301 + ], + [ + 12.3952784, + 51.882974501 + ], + [ + 12.3955173, + 51.883249601 + ], + [ + 12.3968835, + 51.884840001 + ], + [ + 12.3983339, + 51.886519501 + ], + [ + 12.3986426, + 51.886873801 + ], + [ + 12.3993357, + 51.887666901 + ], + [ + 12.3998389, + 51.888249501 + ], + [ + 12.4000454, + 51.888499901 + ], + [ + 12.4004019, + 51.888915001 + ], + [ + 12.401146882, + 51.88978252 + ] + ] + } + }, + { + "identifier": "2026-003224--vi-fbm.2026-04-07_08-00-00-000.devi-zus.2026-04-16_08-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.95815925677476,12.460188194752627,52.10552387779354,12.706356933808976", + "point": "51.95815925677476,12.460188194752627", + "startLcPosition": "117", + "impact": { + "lower": "Fl\u00e4ming-Ost", + "upper": "Coswig", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | Coswig - Fl\u00e4ming-Ost", + "coordinate": { + "lat": 51.95815925677476, + "long": 12.460188194752627 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 18:00 Uhr", + "10.04.26 von 08:00 bis 18:00 Uhr", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 9.0 km hinter AS Coswig und 4.4 km vor Fl\u00e4ming-Ost", + "", + "L\u00e4nge: 24.15 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A9, Fahrbahnerhaltung zwischen AS Br\u00fcck und LG BB ST (km 24,65-44,87), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.460188195, + 51.958159257 + ], + [ + 12.4605869, + 51.958528201 + ], + [ + 12.461496, + 51.959244501 + ], + [ + 12.4621496, + 51.959719401 + ], + [ + 12.4629105, + 51.960242501 + ], + [ + 12.4636616, + 51.960725101 + ], + [ + 12.4644516, + 51.961190401 + ], + [ + 12.4647926, + 51.961381601 + ], + [ + 12.465108, + 51.961553501 + ], + [ + 12.4657459, + 51.961886001 + ], + [ + 12.4661028, + 51.962063401 + ], + [ + 12.4664034, + 51.962204101 + ], + [ + 12.4670322, + 51.962500501 + ], + [ + 12.4674069, + 51.962668801 + ], + [ + 12.4692591, + 51.963507001 + ], + [ + 12.4740459, + 51.965699401 + ], + [ + 12.4759666, + 51.966568801 + ], + [ + 12.4807532, + 51.968744201 + ], + [ + 12.4817415, + 51.969174501 + ], + [ + 12.4832147, + 51.969751501 + ], + [ + 12.4838859, + 51.969988201 + ], + [ + 12.4848473, + 51.970298101 + ], + [ + 12.4860007, + 51.970641801 + ], + [ + 12.4881118, + 51.971208901 + ], + [ + 12.489426, + 51.971549901 + ], + [ + 12.4899591, + 51.971690401 + ], + [ + 12.4904616, + 51.971826501 + ], + [ + 12.4925185, + 51.972366901 + ], + [ + 12.4966132, + 51.973436301 + ], + [ + 12.4998283, + 51.974277001 + ], + [ + 12.5027873, + 51.975068601 + ], + [ + 12.505375, + 51.975805201 + ], + [ + 12.5065125, + 51.976138801 + ], + [ + 12.5089914, + 51.976951501 + ], + [ + 12.5102729, + 51.977388801 + ], + [ + 12.5117549, + 51.977911601 + ], + [ + 12.5139316, + 51.978668601 + ], + [ + 12.5168043, + 51.979688301 + ], + [ + 12.5181918, + 51.980180801 + ], + [ + 12.5196568, + 51.980697701 + ], + [ + 12.5225396, + 51.981717301 + ], + [ + 12.5247975, + 51.982520301 + ], + [ + 12.5285435, + 51.983835101 + ], + [ + 12.529171, + 51.984055401 + ], + [ + 12.5307759, + 51.984648001 + ], + [ + 12.5321991, + 51.985215401 + ], + [ + 12.5336144, + 51.985830001 + ], + [ + 12.5355889, + 51.986792101 + ], + [ + 12.5369115, + 51.987485101 + ], + [ + 12.5383711, + 51.988322601 + ], + [ + 12.538865, + 51.988633401 + ], + [ + 12.5392993, + 51.988910301 + ], + [ + 12.5402212, + 51.989524901 + ], + [ + 12.5407838, + 51.989900001 + ], + [ + 12.5422549, + 51.990901401 + ], + [ + 12.5439747, + 51.992056201 + ], + [ + 12.5448022, + 51.992596701 + ], + [ + 12.5466948, + 51.993882401 + ], + [ + 12.5482197, + 51.994922701 + ], + [ + 12.5488863, + 51.995376601 + ], + [ + 12.5495583, + 51.995802301 + ], + [ + 12.5513569, + 51.997022401 + ], + [ + 12.5536172, + 51.998558601 + ], + [ + 12.5544695, + 51.999128401 + ], + [ + 12.556299, + 52.000418201 + ], + [ + 12.5580359, + 52.001673101 + ], + [ + 12.5593796, + 52.002734101 + ], + [ + 12.5602826, + 52.003501801 + ], + [ + 12.5612597, + 52.004351601 + ], + [ + 12.5630824, + 52.005926001 + ], + [ + 12.5650462, + 52.007641001 + ], + [ + 12.5661813, + 52.008635901 + ], + [ + 12.567077, + 52.009398801 + ], + [ + 12.568465, + 52.010534801 + ], + [ + 12.5697908, + 52.011455201 + ], + [ + 12.5714829, + 52.012464401 + ], + [ + 12.5731287, + 52.013310901 + ], + [ + 12.5741182, + 52.013762201 + ], + [ + 12.5766173, + 52.014798201 + ], + [ + 12.5772423, + 52.015052601 + ], + [ + 12.5790604, + 52.015811001 + ], + [ + 12.5796306, + 52.016036901 + ], + [ + 12.5801133, + 52.016227901 + ], + [ + 12.5804765, + 52.016374901 + ], + [ + 12.5820129, + 52.017022001 + ], + [ + 12.5873694, + 52.019227201 + ], + [ + 12.5902136, + 52.020399601 + ], + [ + 12.5917882, + 52.021042101 + ], + [ + 12.5921226, + 52.021178101 + ], + [ + 12.5923355, + 52.021266301 + ], + [ + 12.5944779, + 52.022142701 + ], + [ + 12.5956003, + 52.022666901 + ], + [ + 12.5965959, + 52.023186601 + ], + [ + 12.5972803, + 52.023580801 + ], + [ + 12.597876, + 52.023957901 + ], + [ + 12.5984447, + 52.024332101 + ], + [ + 12.5989444, + 52.024716001 + ], + [ + 12.5994318, + 52.025108501 + ], + [ + 12.599905, + 52.025507801 + ], + [ + 12.6024023, + 52.027889001 + ], + [ + 12.6029471, + 52.028378401 + ], + [ + 12.6034073, + 52.028759801 + ], + [ + 12.6040711, + 52.029236901 + ], + [ + 12.6045037, + 52.029514301 + ], + [ + 12.6050189, + 52.029821201 + ], + [ + 12.6056192, + 52.030160001 + ], + [ + 12.6060639, + 52.030383801 + ], + [ + 12.6066667, + 52.030670901 + ], + [ + 12.6071094, + 52.030858901 + ], + [ + 12.6076028, + 52.031064001 + ], + [ + 12.6081253, + 52.031251701 + ], + [ + 12.6085552, + 52.031399801 + ], + [ + 12.6094519, + 52.031649901 + ], + [ + 12.6101099, + 52.031804801 + ], + [ + 12.6124547, + 52.032330401 + ], + [ + 12.613313, + 52.032528501 + ], + [ + 12.6140537, + 52.032715101 + ], + [ + 12.6149588, + 52.032964201 + ], + [ + 12.6160818, + 52.033331001 + ], + [ + 12.6163784, + 52.033451601 + ], + [ + 12.6166538, + 52.033567801 + ], + [ + 12.6171231, + 52.033768201 + ], + [ + 12.6177072, + 52.034049101 + ], + [ + 12.6185844, + 52.034519301 + ], + [ + 12.619038, + 52.034795301 + ], + [ + 12.6194321, + 52.035061701 + ], + [ + 12.6197849, + 52.035314901 + ], + [ + 12.6201132, + 52.035572401 + ], + [ + 12.6204365, + 52.035829901 + ], + [ + 12.6207385, + 52.036109701 + ], + [ + 12.6212034, + 52.036566801 + ], + [ + 12.6216345, + 52.037037101 + ], + [ + 12.6219538, + 52.037368801 + ], + [ + 12.6223751, + 52.037853101 + ], + [ + 12.6235299, + 52.039143601 + ], + [ + 12.6239421, + 52.039599801 + ], + [ + 12.6241146, + 52.039781301 + ], + [ + 12.624702, + 52.040353401 + ], + [ + 12.6251926, + 52.040757901 + ], + [ + 12.6256716, + 52.041134401 + ], + [ + 12.6261681, + 52.041469501 + ], + [ + 12.6268432, + 52.041839401 + ], + [ + 12.6282151, + 52.042542501 + ], + [ + 12.6340111, + 52.045063201 + ], + [ + 12.6375576, + 52.046621501 + ], + [ + 12.6378641, + 52.046747101 + ], + [ + 12.6397612, + 52.047594101 + ], + [ + 12.640634, + 52.048027201 + ], + [ + 12.6416731, + 52.048605901 + ], + [ + 12.6427994, + 52.049280401 + ], + [ + 12.6436411, + 52.049868301 + ], + [ + 12.6445774, + 52.050528601 + ], + [ + 12.6455317, + 52.051299201 + ], + [ + 12.6463195, + 52.052030201 + ], + [ + 12.6471867, + 52.052880001 + ], + [ + 12.6483355, + 52.054269001 + ], + [ + 12.6502081, + 52.056968501 + ], + [ + 12.6518715, + 52.059630101 + ], + [ + 12.6535495, + 52.062218901 + ], + [ + 12.6542089, + 52.063236301 + ], + [ + 12.6547703, + 52.064090001 + ], + [ + 12.6564128, + 52.066664301 + ], + [ + 12.6567535, + 52.067184401 + ], + [ + 12.6572738, + 52.067963001 + ], + [ + 12.6583595, + 52.069616001 + ], + [ + 12.6594732, + 52.071217601 + ], + [ + 12.6606802, + 52.072777301 + ], + [ + 12.6615247, + 52.073770901 + ], + [ + 12.6617247, + 52.074009001 + ], + [ + 12.662239, + 52.074593801 + ], + [ + 12.6628045, + 52.075233701 + ], + [ + 12.6644514, + 52.076954701 + ], + [ + 12.6657281, + 52.078247101 + ], + [ + 12.6671014, + 52.079546101 + ], + [ + 12.6685659, + 52.080845001 + ], + [ + 12.6702986, + 52.082269201 + ], + [ + 12.6717684, + 52.083396601 + ], + [ + 12.6734797, + 52.084629501 + ], + [ + 12.6768611, + 52.087027801 + ], + [ + 12.6788487, + 52.088459001 + ], + [ + 12.6815518, + 52.090405301 + ], + [ + 12.6819065, + 52.090657801 + ], + [ + 12.6835106, + 52.091772201 + ], + [ + 12.6845487, + 52.092465201 + ], + [ + 12.6855277, + 52.093048701 + ], + [ + 12.6859676, + 52.093290301 + ], + [ + 12.6862212, + 52.093433401 + ], + [ + 12.6864524, + 52.093568401 + ], + [ + 12.6878118, + 52.094267501 + ], + [ + 12.6881333, + 52.094439801 + ], + [ + 12.6896675, + 52.095208601 + ], + [ + 12.6903993, + 52.095571601 + ], + [ + 12.6922031, + 52.096495101 + ], + [ + 12.6952958, + 52.098070901 + ], + [ + 12.6965672, + 52.098789001 + ], + [ + 12.6993911, + 52.100631801 + ], + [ + 12.703089, + 52.103204101 + ], + [ + 12.706356934, + 52.105523878 + ] + ] + } + }, + { + "identifier": "2026-016102--vi-bs.2026-04-20_07-30-00-000.devi-zus.2026-04-20_07-30-00-000_001.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.87041301077499,12.379407675404304,51.86604453339276,12.366737158129428", + "point": "51.87041301077499,12.379407675404304", + "startLcPosition": "117", + "impact": { + "lower": "Vockerode", + "upper": "Coswig", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Coswig - Vockerode", + "coordinate": { + "lat": 51.87041301077499, + "long": 12.379407675404304 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "12.05.26 von 07:30 bis 14:30 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 2.6 km hinter AS Coswig und 3.4 km vor AS Vockerode", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A9 Arbeiten an Parkpl\u00e4tzen auf RTK K\u00f6ckern-West" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.379407675, + 51.870413011 + ], + [ + 12.3788862, + 51.870192001 + ], + [ + 12.3782183, + 51.869951601 + ], + [ + 12.3775812, + 51.869722501 + ], + [ + 12.3768023, + 51.869432201 + ], + [ + 12.3759745, + 51.869146401 + ], + [ + 12.3753322, + 51.868929201 + ], + [ + 12.3730417, + 51.868185001 + ], + [ + 12.3715826, + 51.867714701 + ], + [ + 12.3703346, + 51.867304801 + ], + [ + 12.3698423, + 51.867147501 + ], + [ + 12.369545, + 51.867048101 + ], + [ + 12.3692882, + 51.866964601 + ], + [ + 12.369024, + 51.866879601 + ], + [ + 12.3688014, + 51.866802201 + ], + [ + 12.3676186, + 51.866374101 + ], + [ + 12.3671265, + 51.866192901 + ], + [ + 12.366737158, + 51.866044533 + ] + ] + } + }, + { + "identifier": "2026-016092--vi-bs.2026-04-09_07-00-00-000.devi-zus.2026-04-09_07-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.92334953745889,12.443429296931841,51.96660931398836,12.47605573386958", + "point": "51.92334953745889,12.443429296931841", + "startLcPosition": "117", + "impact": { + "lower": "Rosselquelle", + "upper": "Coswig", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | Coswig - Rosselquelle", + "coordinate": { + "lat": 51.92334953745889, + "long": 12.443429296931841 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 13:00 Uhr", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 4.9 km hinter AS Coswig und 0.9 km vor Rosselquelle", + "", + "L\u00e4nge: 5.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A9 Arbeiten an Schutzeinrichtungen FRS" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.443429297, + 51.923349537 + ], + [ + 12.4436272, + 51.923806901 + ], + [ + 12.4441663, + 51.925083901 + ], + [ + 12.4446652, + 51.926255001 + ], + [ + 12.4455013, + 51.928244301 + ], + [ + 12.4456374, + 51.928568101 + ], + [ + 12.4465843, + 51.930755001 + ], + [ + 12.4471662, + 51.931998401 + ], + [ + 12.4484054, + 51.934504301 + ], + [ + 12.4487774, + 51.935157201 + ], + [ + 12.4501216, + 51.938377701 + ], + [ + 12.4503125, + 51.938828601 + ], + [ + 12.4513082, + 51.941140401 + ], + [ + 12.4528349, + 51.944842901 + ], + [ + 12.4536452, + 51.946912601 + ], + [ + 12.4545384, + 51.949025501 + ], + [ + 12.4559331, + 51.952341701 + ], + [ + 12.4564862, + 51.953565701 + ], + [ + 12.4567791, + 51.954094701 + ], + [ + 12.457013, + 51.954466801 + ], + [ + 12.4571779, + 51.954729001 + ], + [ + 12.4574782, + 51.955180101 + ], + [ + 12.4576314, + 51.955380701 + ], + [ + 12.4579775, + 51.955833901 + ], + [ + 12.4583662, + 51.956292501 + ], + [ + 12.4587615, + 51.956737801 + ], + [ + 12.459657, + 51.957667701 + ], + [ + 12.4605869, + 51.958528201 + ], + [ + 12.461496, + 51.959244501 + ], + [ + 12.4621496, + 51.959719401 + ], + [ + 12.4629105, + 51.960242501 + ], + [ + 12.4636616, + 51.960725101 + ], + [ + 12.4644516, + 51.961190401 + ], + [ + 12.4647926, + 51.961381601 + ], + [ + 12.465108, + 51.961553501 + ], + [ + 12.4657459, + 51.961886001 + ], + [ + 12.4661028, + 51.962063401 + ], + [ + 12.4664034, + 51.962204101 + ], + [ + 12.4670322, + 51.962500501 + ], + [ + 12.4674069, + 51.962668801 + ], + [ + 12.4692591, + 51.963507001 + ], + [ + 12.4740459, + 51.965699401 + ], + [ + 12.4759666, + 51.966568801 + ], + [ + 12.476055734, + 51.966609314 + ] + ] + } + }, + { + "identifier": "2026-016102--vi-bs.2026-04-20_07-30-00-000.devi-zus.2026-04-20_07-30-00-000_001.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.968201416589224,12.479558809772481,51.97303512242382,12.49507701188924", + "point": "51.968201416589224,12.479558809772481", + "startLcPosition": "118", + "impact": { + "lower": "Klein Marzehns", + "upper": "K\u00f6selitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | K\u00f6selitz - Klein Marzehns", + "coordinate": { + "lat": 51.968201416589224, + "long": 12.479558809772481 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.05.26 von 07:30 bis 14:30 Uhr", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 1.3 km hinter AS K\u00f6selitz und 7.7 km vor AS Klein Marzehns", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A9 Arbeiten an Parkpl\u00e4tzen auf RTK K\u00f6ckern-West" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.47955881, + 51.968201417 + ], + [ + 12.4807532, + 51.968744201 + ], + [ + 12.4817415, + 51.969174501 + ], + [ + 12.4832147, + 51.969751501 + ], + [ + 12.4838859, + 51.969988201 + ], + [ + 12.4848473, + 51.970298101 + ], + [ + 12.4860007, + 51.970641801 + ], + [ + 12.4881118, + 51.971208901 + ], + [ + 12.489426, + 51.971549901 + ], + [ + 12.4899591, + 51.971690401 + ], + [ + 12.4904616, + 51.971826501 + ], + [ + 12.4925185, + 51.972366901 + ], + [ + 12.495077012, + 51.973035122 + ] + ] + } + }, + { + "identifier": "2026-003224--vi-fbm.2026-04-13_10-00-00-000.devi-zus.2026-04-16_08-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.989377607009544,12.540000255791016,52.085891962218206,12.675259599731424", + "point": "51.989377607009544,12.540000255791016", + "startLcPosition": "119", + "impact": { + "lower": "Niemegk", + "upper": "Rosselquelle", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | Rosselquelle - Niemegk", + "coordinate": { + "lat": 51.989377607009544, + "long": 12.540000255791016 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 18:00 Uhr", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 4.2 km hinter Rosselquelle und 1.6 km vor AS Niemegk", + "", + "L\u00e4nge: 14.54 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A9, Fahrbahnerhaltung zwischen AS Br\u00fcck und LG BB ST (km 24,65-44,87), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.540000256, + 51.989377607 + ], + [ + 12.5402212, + 51.989524901 + ], + [ + 12.5407838, + 51.989900001 + ], + [ + 12.5422549, + 51.990901401 + ], + [ + 12.5439747, + 51.992056201 + ], + [ + 12.5448022, + 51.992596701 + ], + [ + 12.5466948, + 51.993882401 + ], + [ + 12.5482197, + 51.994922701 + ], + [ + 12.5488863, + 51.995376601 + ], + [ + 12.5495583, + 51.995802301 + ], + [ + 12.5513569, + 51.997022401 + ], + [ + 12.5536172, + 51.998558601 + ], + [ + 12.5544695, + 51.999128401 + ], + [ + 12.556299, + 52.000418201 + ], + [ + 12.5580359, + 52.001673101 + ], + [ + 12.5593796, + 52.002734101 + ], + [ + 12.5602826, + 52.003501801 + ], + [ + 12.5612597, + 52.004351601 + ], + [ + 12.5630824, + 52.005926001 + ], + [ + 12.5650462, + 52.007641001 + ], + [ + 12.5661813, + 52.008635901 + ], + [ + 12.567077, + 52.009398801 + ], + [ + 12.568465, + 52.010534801 + ], + [ + 12.5697908, + 52.011455201 + ], + [ + 12.5714829, + 52.012464401 + ], + [ + 12.5731287, + 52.013310901 + ], + [ + 12.5741182, + 52.013762201 + ], + [ + 12.5766173, + 52.014798201 + ], + [ + 12.5772423, + 52.015052601 + ], + [ + 12.5790604, + 52.015811001 + ], + [ + 12.5796306, + 52.016036901 + ], + [ + 12.5801133, + 52.016227901 + ], + [ + 12.5804765, + 52.016374901 + ], + [ + 12.5820129, + 52.017022001 + ], + [ + 12.5873694, + 52.019227201 + ], + [ + 12.5902136, + 52.020399601 + ], + [ + 12.5917882, + 52.021042101 + ], + [ + 12.5921226, + 52.021178101 + ], + [ + 12.5923355, + 52.021266301 + ], + [ + 12.5944779, + 52.022142701 + ], + [ + 12.5956003, + 52.022666901 + ], + [ + 12.5965959, + 52.023186601 + ], + [ + 12.5972803, + 52.023580801 + ], + [ + 12.597876, + 52.023957901 + ], + [ + 12.5984447, + 52.024332101 + ], + [ + 12.5989444, + 52.024716001 + ], + [ + 12.5994318, + 52.025108501 + ], + [ + 12.599905, + 52.025507801 + ], + [ + 12.6024023, + 52.027889001 + ], + [ + 12.6029471, + 52.028378401 + ], + [ + 12.6034073, + 52.028759801 + ], + [ + 12.6040711, + 52.029236901 + ], + [ + 12.6045037, + 52.029514301 + ], + [ + 12.6050189, + 52.029821201 + ], + [ + 12.6056192, + 52.030160001 + ], + [ + 12.6060639, + 52.030383801 + ], + [ + 12.6066667, + 52.030670901 + ], + [ + 12.6071094, + 52.030858901 + ], + [ + 12.6076028, + 52.031064001 + ], + [ + 12.6081253, + 52.031251701 + ], + [ + 12.6085552, + 52.031399801 + ], + [ + 12.6094519, + 52.031649901 + ], + [ + 12.6101099, + 52.031804801 + ], + [ + 12.6124547, + 52.032330401 + ], + [ + 12.613313, + 52.032528501 + ], + [ + 12.6140537, + 52.032715101 + ], + [ + 12.6149588, + 52.032964201 + ], + [ + 12.6160818, + 52.033331001 + ], + [ + 12.6163784, + 52.033451601 + ], + [ + 12.6166538, + 52.033567801 + ], + [ + 12.6171231, + 52.033768201 + ], + [ + 12.6177072, + 52.034049101 + ], + [ + 12.6185844, + 52.034519301 + ], + [ + 12.619038, + 52.034795301 + ], + [ + 12.6194321, + 52.035061701 + ], + [ + 12.6197849, + 52.035314901 + ], + [ + 12.6201132, + 52.035572401 + ], + [ + 12.6204365, + 52.035829901 + ], + [ + 12.6207385, + 52.036109701 + ], + [ + 12.6212034, + 52.036566801 + ], + [ + 12.6216345, + 52.037037101 + ], + [ + 12.6219538, + 52.037368801 + ], + [ + 12.6223751, + 52.037853101 + ], + [ + 12.6235299, + 52.039143601 + ], + [ + 12.6239421, + 52.039599801 + ], + [ + 12.6241146, + 52.039781301 + ], + [ + 12.624702, + 52.040353401 + ], + [ + 12.6251926, + 52.040757901 + ], + [ + 12.6256716, + 52.041134401 + ], + [ + 12.6261681, + 52.041469501 + ], + [ + 12.6268432, + 52.041839401 + ], + [ + 12.6282151, + 52.042542501 + ], + [ + 12.6340111, + 52.045063201 + ], + [ + 12.6375576, + 52.046621501 + ], + [ + 12.6378641, + 52.046747101 + ], + [ + 12.6397612, + 52.047594101 + ], + [ + 12.640634, + 52.048027201 + ], + [ + 12.6416731, + 52.048605901 + ], + [ + 12.6427994, + 52.049280401 + ], + [ + 12.6436411, + 52.049868301 + ], + [ + 12.6445774, + 52.050528601 + ], + [ + 12.6455317, + 52.051299201 + ], + [ + 12.6463195, + 52.052030201 + ], + [ + 12.6471867, + 52.052880001 + ], + [ + 12.6483355, + 52.054269001 + ], + [ + 12.6502081, + 52.056968501 + ], + [ + 12.6518715, + 52.059630101 + ], + [ + 12.6535495, + 52.062218901 + ], + [ + 12.6542089, + 52.063236301 + ], + [ + 12.6547703, + 52.064090001 + ], + [ + 12.6564128, + 52.066664301 + ], + [ + 12.6567535, + 52.067184401 + ], + [ + 12.6572738, + 52.067963001 + ], + [ + 12.6583595, + 52.069616001 + ], + [ + 12.6594732, + 52.071217601 + ], + [ + 12.6606802, + 52.072777301 + ], + [ + 12.6615247, + 52.073770901 + ], + [ + 12.6617247, + 52.074009001 + ], + [ + 12.662239, + 52.074593801 + ], + [ + 12.6628045, + 52.075233701 + ], + [ + 12.6644514, + 52.076954701 + ], + [ + 12.6657281, + 52.078247101 + ], + [ + 12.6671014, + 52.079546101 + ], + [ + 12.6685659, + 52.080845001 + ], + [ + 12.6702986, + 52.082269201 + ], + [ + 12.6717684, + 52.083396601 + ], + [ + 12.6734797, + 52.084629501 + ], + [ + 12.6752596, + 52.085891962 + ] + ] + } + }, + { + "identifier": "2026-016102--vi-bs.2026-04-20_07-30-00-000.devi-zus.2026-04-20_07-30-00-000_001.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.97316251260914,12.494989787517381,51.968320181098896,12.479434769225707", + "point": "51.97316251260914,12.494989787517381", + "startLcPosition": "120", + "impact": { + "lower": "K\u00f6selitz", + "upper": "Klein Marzehns", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Klein Marzehns - K\u00f6selitz", + "coordinate": { + "lat": 51.97316251260914, + "long": 12.494989787517381 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.05.26 von 07:30 bis 14:30 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 7.7 km hinter AS Klein Marzehns und 1.3 km vor AS K\u00f6selitz", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A9 Arbeiten an Parkpl\u00e4tzen auf RTK K\u00f6ckern-West" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.494989788, + 51.973162513 + ], + [ + 12.4930433, + 51.972654101 + ], + [ + 12.490293, + 51.971928401 + ], + [ + 12.4897523, + 51.971790301 + ], + [ + 12.488007, + 51.971325901 + ], + [ + 12.4858934, + 51.970764101 + ], + [ + 12.4844826, + 51.970337001 + ], + [ + 12.4838982, + 51.970150501 + ], + [ + 12.4833762, + 51.969962701 + ], + [ + 12.4821209, + 51.969509901 + ], + [ + 12.4815885, + 51.969281801 + ], + [ + 12.4812465, + 51.969136401 + ], + [ + 12.4802272, + 51.968683701 + ], + [ + 12.479434769, + 51.968320181 + ] + ] + } + }, + { + "identifier": "2026-016953--vi-bs.2026-04-07_10-00-00-000.devi-zus.2026-04-07_10-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.07994269628017,12.667548546794311,52.08212021622329,12.670117336531519", + "point": "52.07994269628017,12.667548546794311", + "startLcPosition": "122", + "impact": { + "lower": "Niemegk", + "upper": "Hagen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle/Leipzig -> Berlin", + "title": "A9 | Hagen - Niemegk", + "coordinate": { + "lat": 52.07994269628017, + "long": 12.667548546794311 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A9: Halle/Leipzig -> Berlin, zwischen 4.9 km hinter Hagen und 2.1 km vor AS Niemegk", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A9 von Hagen (Rastplatz) nach Niemegk (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.667548547, + 52.079942696 + ], + [ + 12.6685659, + 52.080845001 + ], + [ + 12.670117337, + 52.082120216 + ] + ] + } + }, + { + "identifier": "2026-003224--vi-fbm.2026-04-13_10-00-00-000.devi-zus.2026-04-16_08-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.085998788899346,12.675058184287181,51.989476521482565,12.539828995963575", + "point": "52.085998788899346,12.675058184287181", + "startLcPosition": "123", + "impact": { + "lower": "Rosselquelle", + "upper": "Niemegk", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Niemegk - Rosselquelle", + "coordinate": { + "lat": 52.085998788899346, + "long": 12.675058184287181 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 18:00 Uhr", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 1.6 km hinter AS Niemegk und 4.2 km vor Rosselquelle", + "", + "L\u00e4nge: 14.54 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A9, Fahrbahnerhaltung zwischen AS Br\u00fcck und LG BB ST (km 24,65-44,87), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.675058184, + 52.085998789 + ], + [ + 12.6733992, + 52.084800901 + ], + [ + 12.6717309, + 52.083577901 + ], + [ + 12.6701001, + 52.082351601 + ], + [ + 12.6685015, + 52.081026301 + ], + [ + 12.6670477, + 52.079743901 + ], + [ + 12.6656637, + 52.078438401 + ], + [ + 12.6643548, + 52.077129501 + ], + [ + 12.6620138, + 52.074660901 + ], + [ + 12.6615114, + 52.074080901 + ], + [ + 12.6613046, + 52.073844901 + ], + [ + 12.6602564, + 52.072562901 + ], + [ + 12.6592961, + 52.071316501 + ], + [ + 12.6581378, + 52.069665201 + ], + [ + 12.6569983, + 52.067953401 + ], + [ + 12.6565415, + 52.067240101 + ], + [ + 12.6562036, + 52.066718601 + ], + [ + 12.6539704, + 52.063281601 + ], + [ + 12.6516038, + 52.059680601 + ], + [ + 12.6499135, + 52.056966701 + ], + [ + 12.6481226, + 52.054353801 + ], + [ + 12.6469939, + 52.053021701 + ], + [ + 12.6456809, + 52.051696501 + ], + [ + 12.6444645, + 52.050665101 + ], + [ + 12.6434782, + 52.049958301 + ], + [ + 12.6428587, + 52.049538201 + ], + [ + 12.6417117, + 52.048833901 + ], + [ + 12.6404348, + 52.048124601 + ], + [ + 12.6377286, + 52.046867801 + ], + [ + 12.6374199, + 52.046735601 + ], + [ + 12.6354361, + 52.045872901 + ], + [ + 12.6338591, + 52.045199201 + ], + [ + 12.6329122, + 52.044798101 + ], + [ + 12.6280939, + 52.042660601 + ], + [ + 12.6272364, + 52.042277101 + ], + [ + 12.6266822, + 52.041969701 + ], + [ + 12.6264167, + 52.041829701 + ], + [ + 12.6258967, + 52.041517701 + ], + [ + 12.6253433, + 52.041130901 + ], + [ + 12.624677, + 52.040589901 + ], + [ + 12.6241038, + 52.040058601 + ], + [ + 12.6236095, + 52.039545001 + ], + [ + 12.6221863, + 52.037970301 + ], + [ + 12.6214311, + 52.037117701 + ], + [ + 12.6210026, + 52.036656001 + ], + [ + 12.6205356, + 52.036191001 + ], + [ + 12.6202392, + 52.035924501 + ], + [ + 12.6199227, + 52.035672901 + ], + [ + 12.6195834, + 52.035414301 + ], + [ + 12.6192614, + 52.035169501 + ], + [ + 12.6188703, + 52.034916601 + ], + [ + 12.6184194, + 52.034635101 + ], + [ + 12.6175801, + 52.034169901 + ], + [ + 12.6169874, + 52.033888001 + ], + [ + 12.6165148, + 52.033694301 + ], + [ + 12.6162454, + 52.033576901 + ], + [ + 12.6159617, + 52.033472401 + ], + [ + 12.6148586, + 52.033096101 + ], + [ + 12.6140378, + 52.032864301 + ], + [ + 12.613191, + 52.032648701 + ], + [ + 12.6123743, + 52.032462501 + ], + [ + 12.6100385, + 52.031940901 + ], + [ + 12.6091179, + 52.031701001 + ], + [ + 12.6084421, + 52.031516001 + ], + [ + 12.6079993, + 52.031367801 + ], + [ + 12.6075439, + 52.031204601 + ], + [ + 12.6074786, + 52.031182401 + ], + [ + 12.6070048, + 52.030985601 + ], + [ + 12.6065398, + 52.030788301 + ], + [ + 12.6059379, + 52.030502301 + ], + [ + 12.6054612, + 52.030265301 + ], + [ + 12.6048701, + 52.029937301 + ], + [ + 12.6043361, + 52.029621601 + ], + [ + 12.6038952, + 52.029333201 + ], + [ + 12.603229, + 52.028856601 + ], + [ + 12.6027168, + 52.028442101 + ], + [ + 12.6021911, + 52.027964901 + ], + [ + 12.599708, + 52.025591401 + ], + [ + 12.5992414, + 52.025194901 + ], + [ + 12.5987601, + 52.024796701 + ], + [ + 12.5982497, + 52.024424801 + ], + [ + 12.5977018, + 52.024054701 + ], + [ + 12.5971226, + 52.023684401 + ], + [ + 12.5964505, + 52.023293801 + ], + [ + 12.5956545, + 52.022876401 + ], + [ + 12.5943634, + 52.022257601 + ], + [ + 12.592613, + 52.021550301 + ], + [ + 12.5919971, + 52.021294501 + ], + [ + 12.5916677, + 52.021161501 + ], + [ + 12.5900797, + 52.020510101 + ], + [ + 12.5894959, + 52.020270601 + ], + [ + 12.5872664, + 52.019353001 + ], + [ + 12.5863755, + 52.018992201 + ], + [ + 12.5833182, + 52.017734401 + ], + [ + 12.5816088, + 52.017030901 + ], + [ + 12.5808202, + 52.016719501 + ], + [ + 12.5803105, + 52.016521201 + ], + [ + 12.5799504, + 52.016372101 + ], + [ + 12.5796877, + 52.016253401 + ], + [ + 12.5786189, + 52.015799001 + ], + [ + 12.5768001, + 52.015055301 + ], + [ + 12.5764193, + 52.014898401 + ], + [ + 12.5748954, + 52.014270501 + ], + [ + 12.5730389, + 52.013442801 + ], + [ + 12.5713334, + 52.012583501 + ], + [ + 12.569748, + 52.011631501 + ], + [ + 12.5682627, + 52.010615501 + ], + [ + 12.5668902, + 52.009489501 + ], + [ + 12.565996, + 52.008718101 + ], + [ + 12.5648164, + 52.007688801 + ], + [ + 12.5628299, + 52.005968901 + ], + [ + 12.5609906, + 52.004360301 + ], + [ + 12.5601519, + 52.003629601 + ], + [ + 12.5591949, + 52.002840501 + ], + [ + 12.5584266, + 52.002225301 + ], + [ + 12.557748, + 52.001701501 + ], + [ + 12.5561579, + 52.000520201 + ], + [ + 12.5543158, + 51.999264301 + ], + [ + 12.5534317, + 51.998665301 + ], + [ + 12.5510985, + 51.997088301 + ], + [ + 12.5493587, + 51.995893801 + ], + [ + 12.548075, + 51.995048001 + ], + [ + 12.5464886, + 51.993959901 + ], + [ + 12.5446022, + 51.992700001 + ], + [ + 12.5441949, + 51.992425301 + ], + [ + 12.5438523, + 51.992194401 + ], + [ + 12.5436164, + 51.992035301 + ], + [ + 12.5420824, + 51.991007701 + ], + [ + 12.5406231, + 51.990008801 + ], + [ + 12.5400816, + 51.989641701 + ], + [ + 12.539828996, + 51.989476521 + ] + ] + } + }, + { + "identifier": "2026-016953--vi-bs.2026-04-07_10-00-00-000.devi-zus.2026-04-07_10-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.08220788301673,12.66992673897807,52.08002220758185,12.66736319488015", + "point": "52.08220788301673,12.66992673897807", + "startLcPosition": "123", + "impact": { + "lower": "Hagen", + "upper": "Niemegk", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Niemegk - Hagen", + "coordinate": { + "lat": 52.08220788301673, + "long": 12.66992673897807 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 2.1 km hinter AS Niemegk und 4.9 km vor Hagen", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 10 m", + "", + "A9 von Hagen (Rastplatz) nach Niemegk (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.669926739, + 52.082207883 + ], + [ + 12.6685015, + 52.081026301 + ], + [ + 12.667363195, + 52.080022208 + ] + ] + } + }, + { + "identifier": "2026-003224--vi-bs.2026-04-20_07-00-00-000.devi-zus.2026-04-16_08-00-00-000.de15", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.061465271232954,12.65277664287359,51.99013182677483,12.54080282430017", + "point": "52.061465271232954,12.65277664287359", + "startLcPosition": "123", + "impact": { + "lower": "Rosselquelle", + "upper": "Niemegk", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Niemegk - Rosselquelle", + "startTimestamp": "2026-04-20T07:00:00+02:00", + "coordinate": { + "lat": 52.061465271232954, + "long": 12.65277664287359 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 07:00 Uhr", + "Ende: 24.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.27)", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 4.7 km hinter AS Niemegk und 4.3 km vor Rosselquelle", + "", + "L\u00e4nge: 11.29 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A9, Fahrbahnerhaltung zwischen AS Br\u00fcck und LG BB ST (km 24,65-44,87), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.652776643, + 52.061465271 + ], + [ + 12.6516038, + 52.059680601 + ], + [ + 12.6499135, + 52.056966701 + ], + [ + 12.6481226, + 52.054353801 + ], + [ + 12.6469939, + 52.053021701 + ], + [ + 12.6456809, + 52.051696501 + ], + [ + 12.6444645, + 52.050665101 + ], + [ + 12.6434782, + 52.049958301 + ], + [ + 12.6428587, + 52.049538201 + ], + [ + 12.6417117, + 52.048833901 + ], + [ + 12.6404348, + 52.048124601 + ], + [ + 12.6377286, + 52.046867801 + ], + [ + 12.6374199, + 52.046735601 + ], + [ + 12.6354361, + 52.045872901 + ], + [ + 12.6338591, + 52.045199201 + ], + [ + 12.6329122, + 52.044798101 + ], + [ + 12.6280939, + 52.042660601 + ], + [ + 12.6272364, + 52.042277101 + ], + [ + 12.6266822, + 52.041969701 + ], + [ + 12.6264167, + 52.041829701 + ], + [ + 12.6258967, + 52.041517701 + ], + [ + 12.6253433, + 52.041130901 + ], + [ + 12.624677, + 52.040589901 + ], + [ + 12.6241038, + 52.040058601 + ], + [ + 12.6236095, + 52.039545001 + ], + [ + 12.6221863, + 52.037970301 + ], + [ + 12.6214311, + 52.037117701 + ], + [ + 12.6210026, + 52.036656001 + ], + [ + 12.6205356, + 52.036191001 + ], + [ + 12.6202392, + 52.035924501 + ], + [ + 12.6199227, + 52.035672901 + ], + [ + 12.6195834, + 52.035414301 + ], + [ + 12.6192614, + 52.035169501 + ], + [ + 12.6188703, + 52.034916601 + ], + [ + 12.6184194, + 52.034635101 + ], + [ + 12.6175801, + 52.034169901 + ], + [ + 12.6169874, + 52.033888001 + ], + [ + 12.6165148, + 52.033694301 + ], + [ + 12.6162454, + 52.033576901 + ], + [ + 12.6159617, + 52.033472401 + ], + [ + 12.6148586, + 52.033096101 + ], + [ + 12.6140378, + 52.032864301 + ], + [ + 12.613191, + 52.032648701 + ], + [ + 12.6123743, + 52.032462501 + ], + [ + 12.6100385, + 52.031940901 + ], + [ + 12.6091179, + 52.031701001 + ], + [ + 12.6084421, + 52.031516001 + ], + [ + 12.6079993, + 52.031367801 + ], + [ + 12.6075439, + 52.031204601 + ], + [ + 12.6074786, + 52.031182401 + ], + [ + 12.6070048, + 52.030985601 + ], + [ + 12.6065398, + 52.030788301 + ], + [ + 12.6059379, + 52.030502301 + ], + [ + 12.6054612, + 52.030265301 + ], + [ + 12.6048701, + 52.029937301 + ], + [ + 12.6043361, + 52.029621601 + ], + [ + 12.6038952, + 52.029333201 + ], + [ + 12.603229, + 52.028856601 + ], + [ + 12.6027168, + 52.028442101 + ], + [ + 12.6021911, + 52.027964901 + ], + [ + 12.599708, + 52.025591401 + ], + [ + 12.5992414, + 52.025194901 + ], + [ + 12.5987601, + 52.024796701 + ], + [ + 12.5982497, + 52.024424801 + ], + [ + 12.5977018, + 52.024054701 + ], + [ + 12.5971226, + 52.023684401 + ], + [ + 12.5964505, + 52.023293801 + ], + [ + 12.5956545, + 52.022876401 + ], + [ + 12.5943634, + 52.022257601 + ], + [ + 12.592613, + 52.021550301 + ], + [ + 12.5919971, + 52.021294501 + ], + [ + 12.5916677, + 52.021161501 + ], + [ + 12.5900797, + 52.020510101 + ], + [ + 12.5894959, + 52.020270601 + ], + [ + 12.5872664, + 52.019353001 + ], + [ + 12.5863755, + 52.018992201 + ], + [ + 12.5833182, + 52.017734401 + ], + [ + 12.5816088, + 52.017030901 + ], + [ + 12.5808202, + 52.016719501 + ], + [ + 12.5803105, + 52.016521201 + ], + [ + 12.5799504, + 52.016372101 + ], + [ + 12.5796877, + 52.016253401 + ], + [ + 12.5786189, + 52.015799001 + ], + [ + 12.5768001, + 52.015055301 + ], + [ + 12.5764193, + 52.014898401 + ], + [ + 12.5748954, + 52.014270501 + ], + [ + 12.5730389, + 52.013442801 + ], + [ + 12.5713334, + 52.012583501 + ], + [ + 12.569748, + 52.011631501 + ], + [ + 12.5682627, + 52.010615501 + ], + [ + 12.5668902, + 52.009489501 + ], + [ + 12.565996, + 52.008718101 + ], + [ + 12.5648164, + 52.007688801 + ], + [ + 12.5628299, + 52.005968901 + ], + [ + 12.5609906, + 52.004360301 + ], + [ + 12.5601519, + 52.003629601 + ], + [ + 12.5591949, + 52.002840501 + ], + [ + 12.5584266, + 52.002225301 + ], + [ + 12.557748, + 52.001701501 + ], + [ + 12.5561579, + 52.000520201 + ], + [ + 12.5543158, + 51.999264301 + ], + [ + 12.5534317, + 51.998665301 + ], + [ + 12.5510985, + 51.997088301 + ], + [ + 12.5493587, + 51.995893801 + ], + [ + 12.548075, + 51.995048001 + ], + [ + 12.5464886, + 51.993959901 + ], + [ + 12.5446022, + 51.992700001 + ], + [ + 12.5441949, + 51.992425301 + ], + [ + 12.5438523, + 51.992194401 + ], + [ + 12.5436164, + 51.992035301 + ], + [ + 12.5420824, + 51.991007701 + ], + [ + 12.540802824, + 51.990131827 + ] + ] + } + }, + { + "identifier": "2026-003224--vi-bs.2026-04-20_07-00-00-000.devi-zus.2026-04-16_08-00-00-000.de13", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.069797922441026,12.658230893596082,52.06146527123294,12.652776642873588", + "point": "52.069797922441026,12.658230893596082", + "startLcPosition": "123", + "impact": { + "lower": "Hagen", + "upper": "Niemegk", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Niemegk - Hagen", + "startTimestamp": "2026-04-20T07:00:00+02:00", + "coordinate": { + "lat": 52.069797922441026, + "long": 12.658230893596082 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 07:00 Uhr", + "Ende: 24.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.27)", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 3.7 km hinter AS Niemegk und 2.6 km vor Hagen", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 10.25 m", + "", + "A9, Fahrbahnerhaltung zwischen AS Br\u00fcck und LG BB ST (km 24,65-44,87), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.658230894, + 52.069797922 + ], + [ + 12.6581378, + 52.069665201 + ], + [ + 12.6569983, + 52.067953401 + ], + [ + 12.6565415, + 52.067240101 + ], + [ + 12.6562036, + 52.066718601 + ], + [ + 12.6539704, + 52.063281601 + ], + [ + 12.652776643, + 52.061465271 + ] + ] + } + }, + { + "identifier": "2026-003224--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-16_08-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.061465271232954,12.65277664287359,51.99013182677483,12.54080282430017", + "point": "52.061465271232954,12.65277664287359", + "startLcPosition": "123", + "impact": { + "lower": "Rosselquelle", + "upper": "Niemegk", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Niemegk - Rosselquelle", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.061465271232954, + "long": 12.65277664287359 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 20.04.26 um 07:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.27)", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 4.7 km hinter AS Niemegk und 4.3 km vor Rosselquelle", + "", + "L\u00e4nge: 11.29 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A9, Fahrbahnerhaltung zwischen AS Br\u00fcck und LG BB ST (km 24,65-44,87), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.652776643, + 52.061465271 + ], + [ + 12.6516038, + 52.059680601 + ], + [ + 12.6499135, + 52.056966701 + ], + [ + 12.6481226, + 52.054353801 + ], + [ + 12.6469939, + 52.053021701 + ], + [ + 12.6456809, + 52.051696501 + ], + [ + 12.6444645, + 52.050665101 + ], + [ + 12.6434782, + 52.049958301 + ], + [ + 12.6428587, + 52.049538201 + ], + [ + 12.6417117, + 52.048833901 + ], + [ + 12.6404348, + 52.048124601 + ], + [ + 12.6377286, + 52.046867801 + ], + [ + 12.6374199, + 52.046735601 + ], + [ + 12.6354361, + 52.045872901 + ], + [ + 12.6338591, + 52.045199201 + ], + [ + 12.6329122, + 52.044798101 + ], + [ + 12.6280939, + 52.042660601 + ], + [ + 12.6272364, + 52.042277101 + ], + [ + 12.6266822, + 52.041969701 + ], + [ + 12.6264167, + 52.041829701 + ], + [ + 12.6258967, + 52.041517701 + ], + [ + 12.6253433, + 52.041130901 + ], + [ + 12.624677, + 52.040589901 + ], + [ + 12.6241038, + 52.040058601 + ], + [ + 12.6236095, + 52.039545001 + ], + [ + 12.6221863, + 52.037970301 + ], + [ + 12.6214311, + 52.037117701 + ], + [ + 12.6210026, + 52.036656001 + ], + [ + 12.6205356, + 52.036191001 + ], + [ + 12.6202392, + 52.035924501 + ], + [ + 12.6199227, + 52.035672901 + ], + [ + 12.6195834, + 52.035414301 + ], + [ + 12.6192614, + 52.035169501 + ], + [ + 12.6188703, + 52.034916601 + ], + [ + 12.6184194, + 52.034635101 + ], + [ + 12.6175801, + 52.034169901 + ], + [ + 12.6169874, + 52.033888001 + ], + [ + 12.6165148, + 52.033694301 + ], + [ + 12.6162454, + 52.033576901 + ], + [ + 12.6159617, + 52.033472401 + ], + [ + 12.6148586, + 52.033096101 + ], + [ + 12.6140378, + 52.032864301 + ], + [ + 12.613191, + 52.032648701 + ], + [ + 12.6123743, + 52.032462501 + ], + [ + 12.6100385, + 52.031940901 + ], + [ + 12.6091179, + 52.031701001 + ], + [ + 12.6084421, + 52.031516001 + ], + [ + 12.6079993, + 52.031367801 + ], + [ + 12.6075439, + 52.031204601 + ], + [ + 12.6074786, + 52.031182401 + ], + [ + 12.6070048, + 52.030985601 + ], + [ + 12.6065398, + 52.030788301 + ], + [ + 12.6059379, + 52.030502301 + ], + [ + 12.6054612, + 52.030265301 + ], + [ + 12.6048701, + 52.029937301 + ], + [ + 12.6043361, + 52.029621601 + ], + [ + 12.6038952, + 52.029333201 + ], + [ + 12.603229, + 52.028856601 + ], + [ + 12.6027168, + 52.028442101 + ], + [ + 12.6021911, + 52.027964901 + ], + [ + 12.599708, + 52.025591401 + ], + [ + 12.5992414, + 52.025194901 + ], + [ + 12.5987601, + 52.024796701 + ], + [ + 12.5982497, + 52.024424801 + ], + [ + 12.5977018, + 52.024054701 + ], + [ + 12.5971226, + 52.023684401 + ], + [ + 12.5964505, + 52.023293801 + ], + [ + 12.5956545, + 52.022876401 + ], + [ + 12.5943634, + 52.022257601 + ], + [ + 12.592613, + 52.021550301 + ], + [ + 12.5919971, + 52.021294501 + ], + [ + 12.5916677, + 52.021161501 + ], + [ + 12.5900797, + 52.020510101 + ], + [ + 12.5894959, + 52.020270601 + ], + [ + 12.5872664, + 52.019353001 + ], + [ + 12.5863755, + 52.018992201 + ], + [ + 12.5833182, + 52.017734401 + ], + [ + 12.5816088, + 52.017030901 + ], + [ + 12.5808202, + 52.016719501 + ], + [ + 12.5803105, + 52.016521201 + ], + [ + 12.5799504, + 52.016372101 + ], + [ + 12.5796877, + 52.016253401 + ], + [ + 12.5786189, + 52.015799001 + ], + [ + 12.5768001, + 52.015055301 + ], + [ + 12.5764193, + 52.014898401 + ], + [ + 12.5748954, + 52.014270501 + ], + [ + 12.5730389, + 52.013442801 + ], + [ + 12.5713334, + 52.012583501 + ], + [ + 12.569748, + 52.011631501 + ], + [ + 12.5682627, + 52.010615501 + ], + [ + 12.5668902, + 52.009489501 + ], + [ + 12.565996, + 52.008718101 + ], + [ + 12.5648164, + 52.007688801 + ], + [ + 12.5628299, + 52.005968901 + ], + [ + 12.5609906, + 52.004360301 + ], + [ + 12.5601519, + 52.003629601 + ], + [ + 12.5591949, + 52.002840501 + ], + [ + 12.5584266, + 52.002225301 + ], + [ + 12.557748, + 52.001701501 + ], + [ + 12.5561579, + 52.000520201 + ], + [ + 12.5543158, + 51.999264301 + ], + [ + 12.5534317, + 51.998665301 + ], + [ + 12.5510985, + 51.997088301 + ], + [ + 12.5493587, + 51.995893801 + ], + [ + 12.548075, + 51.995048001 + ], + [ + 12.5464886, + 51.993959901 + ], + [ + 12.5446022, + 51.992700001 + ], + [ + 12.5441949, + 51.992425301 + ], + [ + 12.5438523, + 51.992194401 + ], + [ + 12.5436164, + 51.992035301 + ], + [ + 12.5420824, + 51.991007701 + ], + [ + 12.540802824, + 51.990131827 + ] + ] + } + }, + { + "identifier": "2026-003224--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-16_08-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.069797922441026,12.658230893596082,52.06146527123294,12.652776642873588", + "point": "52.069797922441026,12.658230893596082", + "startLcPosition": "123", + "impact": { + "lower": "Hagen", + "upper": "Niemegk", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Niemegk - Hagen", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.069797922441026, + "long": 12.658230893596082 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 20.04.26 um 07:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.27)", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 3.7 km hinter AS Niemegk und 2.6 km vor Hagen", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 10.25 m", + "", + "A9, Fahrbahnerhaltung zwischen AS Br\u00fcck und LG BB ST (km 24,65-44,87), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.658230894, + 52.069797922 + ], + [ + 12.6581378, + 52.069665201 + ], + [ + 12.6569983, + 52.067953401 + ], + [ + 12.6565415, + 52.067240101 + ], + [ + 12.6562036, + 52.066718601 + ], + [ + 12.6539704, + 52.063281601 + ], + [ + 12.652776643, + 52.061465271 + ] + ] + } + }, + { + "identifier": "2026-003224--vi-fbm.2026-04-07_08-00-00-000.devi-zus.2026-04-16_08-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.105628247870975,12.706162540255626,51.95824206216767,12.45999160884914", + "point": "52.105628247870975,12.706162540255626", + "startLcPosition": "124", + "impact": { + "lower": "Coswig", + "upper": "Fl\u00e4ming-Ost", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berlin -> Halle/Leipzig", + "title": "A9 | Fl\u00e4ming-Ost - Coswig", + "coordinate": { + "lat": 52.105628247870975, + "long": 12.706162540255626 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 18:00 Uhr", + "10.04.26 von 08:00 bis 18:00 Uhr", + "", + "A9: Berlin -> Halle/Leipzig, zwischen 4.3 km hinter Fl\u00e4ming-Ost und 9.0 km vor AS Coswig", + "", + "L\u00e4nge: 24.15 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A9, Fahrbahnerhaltung zwischen AS Br\u00fcck und LG BB ST (km 24,65-44,87), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.70616254, + 52.105628248 + ], + [ + 12.7030556, + 52.103444401 + ], + [ + 12.7012111, + 52.102161501 + ], + [ + 12.6993852, + 52.100877501 + ], + [ + 12.69718, + 52.099391301 + ], + [ + 12.6962222, + 52.098796401 + ], + [ + 12.695247, + 52.098262701 + ], + [ + 12.6924879, + 52.096837401 + ], + [ + 12.6897492, + 52.095434601 + ], + [ + 12.6882774, + 52.094691801 + ], + [ + 12.6873117, + 52.094214501 + ], + [ + 12.6864988, + 52.093805501 + ], + [ + 12.6860418, + 52.093557501 + ], + [ + 12.6857809, + 52.093409101 + ], + [ + 12.6852904, + 52.093116301 + ], + [ + 12.6846261, + 52.092706501 + ], + [ + 12.6840358, + 52.092337501 + ], + [ + 12.6833157, + 52.091857301 + ], + [ + 12.6817227, + 52.090753101 + ], + [ + 12.6813685, + 52.090500301 + ], + [ + 12.678644, + 52.088565301 + ], + [ + 12.6767309, + 52.087206501 + ], + [ + 12.6733992, + 52.084800901 + ], + [ + 12.6717309, + 52.083577901 + ], + [ + 12.6701001, + 52.082351601 + ], + [ + 12.6685015, + 52.081026301 + ], + [ + 12.6670477, + 52.079743901 + ], + [ + 12.6656637, + 52.078438401 + ], + [ + 12.6643548, + 52.077129501 + ], + [ + 12.6620138, + 52.074660901 + ], + [ + 12.6615114, + 52.074080901 + ], + [ + 12.6613046, + 52.073844901 + ], + [ + 12.6602564, + 52.072562901 + ], + [ + 12.6592961, + 52.071316501 + ], + [ + 12.6581378, + 52.069665201 + ], + [ + 12.6569983, + 52.067953401 + ], + [ + 12.6565415, + 52.067240101 + ], + [ + 12.6562036, + 52.066718601 + ], + [ + 12.6539704, + 52.063281601 + ], + [ + 12.6516038, + 52.059680601 + ], + [ + 12.6499135, + 52.056966701 + ], + [ + 12.6481226, + 52.054353801 + ], + [ + 12.6469939, + 52.053021701 + ], + [ + 12.6456809, + 52.051696501 + ], + [ + 12.6444645, + 52.050665101 + ], + [ + 12.6434782, + 52.049958301 + ], + [ + 12.6428587, + 52.049538201 + ], + [ + 12.6417117, + 52.048833901 + ], + [ + 12.6404348, + 52.048124601 + ], + [ + 12.6377286, + 52.046867801 + ], + [ + 12.6374199, + 52.046735601 + ], + [ + 12.6354361, + 52.045872901 + ], + [ + 12.6338591, + 52.045199201 + ], + [ + 12.6329122, + 52.044798101 + ], + [ + 12.6280939, + 52.042660601 + ], + [ + 12.6272364, + 52.042277101 + ], + [ + 12.6266822, + 52.041969701 + ], + [ + 12.6264167, + 52.041829701 + ], + [ + 12.6258967, + 52.041517701 + ], + [ + 12.6253433, + 52.041130901 + ], + [ + 12.624677, + 52.040589901 + ], + [ + 12.6241038, + 52.040058601 + ], + [ + 12.6236095, + 52.039545001 + ], + [ + 12.6221863, + 52.037970301 + ], + [ + 12.6214311, + 52.037117701 + ], + [ + 12.6210026, + 52.036656001 + ], + [ + 12.6205356, + 52.036191001 + ], + [ + 12.6202392, + 52.035924501 + ], + [ + 12.6199227, + 52.035672901 + ], + [ + 12.6195834, + 52.035414301 + ], + [ + 12.6192614, + 52.035169501 + ], + [ + 12.6188703, + 52.034916601 + ], + [ + 12.6184194, + 52.034635101 + ], + [ + 12.6175801, + 52.034169901 + ], + [ + 12.6169874, + 52.033888001 + ], + [ + 12.6165148, + 52.033694301 + ], + [ + 12.6162454, + 52.033576901 + ], + [ + 12.6159617, + 52.033472401 + ], + [ + 12.6148586, + 52.033096101 + ], + [ + 12.6140378, + 52.032864301 + ], + [ + 12.613191, + 52.032648701 + ], + [ + 12.6123743, + 52.032462501 + ], + [ + 12.6100385, + 52.031940901 + ], + [ + 12.6091179, + 52.031701001 + ], + [ + 12.6084421, + 52.031516001 + ], + [ + 12.6079993, + 52.031367801 + ], + [ + 12.6075439, + 52.031204601 + ], + [ + 12.6074786, + 52.031182401 + ], + [ + 12.6070048, + 52.030985601 + ], + [ + 12.6065398, + 52.030788301 + ], + [ + 12.6059379, + 52.030502301 + ], + [ + 12.6054612, + 52.030265301 + ], + [ + 12.6048701, + 52.029937301 + ], + [ + 12.6043361, + 52.029621601 + ], + [ + 12.6038952, + 52.029333201 + ], + [ + 12.603229, + 52.028856601 + ], + [ + 12.6027168, + 52.028442101 + ], + [ + 12.6021911, + 52.027964901 + ], + [ + 12.599708, + 52.025591401 + ], + [ + 12.5992414, + 52.025194901 + ], + [ + 12.5987601, + 52.024796701 + ], + [ + 12.5982497, + 52.024424801 + ], + [ + 12.5977018, + 52.024054701 + ], + [ + 12.5971226, + 52.023684401 + ], + [ + 12.5964505, + 52.023293801 + ], + [ + 12.5956545, + 52.022876401 + ], + [ + 12.5943634, + 52.022257601 + ], + [ + 12.592613, + 52.021550301 + ], + [ + 12.5919971, + 52.021294501 + ], + [ + 12.5916677, + 52.021161501 + ], + [ + 12.5900797, + 52.020510101 + ], + [ + 12.5894959, + 52.020270601 + ], + [ + 12.5872664, + 52.019353001 + ], + [ + 12.5863755, + 52.018992201 + ], + [ + 12.5833182, + 52.017734401 + ], + [ + 12.5816088, + 52.017030901 + ], + [ + 12.5808202, + 52.016719501 + ], + [ + 12.5803105, + 52.016521201 + ], + [ + 12.5799504, + 52.016372101 + ], + [ + 12.5796877, + 52.016253401 + ], + [ + 12.5786189, + 52.015799001 + ], + [ + 12.5768001, + 52.015055301 + ], + [ + 12.5764193, + 52.014898401 + ], + [ + 12.5748954, + 52.014270501 + ], + [ + 12.5730389, + 52.013442801 + ], + [ + 12.5713334, + 52.012583501 + ], + [ + 12.569748, + 52.011631501 + ], + [ + 12.5682627, + 52.010615501 + ], + [ + 12.5668902, + 52.009489501 + ], + [ + 12.565996, + 52.008718101 + ], + [ + 12.5648164, + 52.007688801 + ], + [ + 12.5628299, + 52.005968901 + ], + [ + 12.5609906, + 52.004360301 + ], + [ + 12.5601519, + 52.003629601 + ], + [ + 12.5591949, + 52.002840501 + ], + [ + 12.5584266, + 52.002225301 + ], + [ + 12.557748, + 52.001701501 + ], + [ + 12.5561579, + 52.000520201 + ], + [ + 12.5543158, + 51.999264301 + ], + [ + 12.5534317, + 51.998665301 + ], + [ + 12.5510985, + 51.997088301 + ], + [ + 12.5493587, + 51.995893801 + ], + [ + 12.548075, + 51.995048001 + ], + [ + 12.5464886, + 51.993959901 + ], + [ + 12.5446022, + 51.992700001 + ], + [ + 12.5441949, + 51.992425301 + ], + [ + 12.5438523, + 51.992194401 + ], + [ + 12.5436164, + 51.992035301 + ], + [ + 12.5420824, + 51.991007701 + ], + [ + 12.5406231, + 51.990008801 + ], + [ + 12.5400816, + 51.989641701 + ], + [ + 12.5391012, + 51.989000601 + ], + [ + 12.5386464, + 51.988722701 + ], + [ + 12.5366818, + 51.987542901 + ], + [ + 12.5354339, + 51.986879601 + ], + [ + 12.533338, + 51.985882601 + ], + [ + 12.5319862, + 51.985307001 + ], + [ + 12.5306238, + 51.984747901 + ], + [ + 12.5290722, + 51.984183801 + ], + [ + 12.5246096, + 51.982604301 + ], + [ + 12.5223999, + 51.981829801 + ], + [ + 12.5196701, + 51.980867601 + ], + [ + 12.5180457, + 51.980290101 + ], + [ + 12.5168619, + 51.979875201 + ], + [ + 12.5138345, + 51.978803301 + ], + [ + 12.511624, + 51.978032101 + ], + [ + 12.5101025, + 51.977493201 + ], + [ + 12.5087069, + 51.977010001 + ], + [ + 12.5065258, + 51.976308201 + ], + [ + 12.5052641, + 51.975917101 + ], + [ + 12.5027509, + 51.975203301 + ], + [ + 12.4996727, + 51.974396101 + ], + [ + 12.4965255, + 51.973563601 + ], + [ + 12.4930433, + 51.972654101 + ], + [ + 12.490293, + 51.971928401 + ], + [ + 12.4897523, + 51.971790301 + ], + [ + 12.488007, + 51.971325901 + ], + [ + 12.4858934, + 51.970764101 + ], + [ + 12.4844826, + 51.970337001 + ], + [ + 12.4838982, + 51.970150501 + ], + [ + 12.4833762, + 51.969962701 + ], + [ + 12.4821209, + 51.969509901 + ], + [ + 12.4815885, + 51.969281801 + ], + [ + 12.4812465, + 51.969136401 + ], + [ + 12.4802272, + 51.968683701 + ], + [ + 12.4781847, + 51.967746701 + ], + [ + 12.4760497, + 51.966773301 + ], + [ + 12.47584, + 51.966678601 + ], + [ + 12.4754545, + 51.966502601 + ], + [ + 12.4739656, + 51.965832201 + ], + [ + 12.4716536, + 51.964769601 + ], + [ + 12.4703366, + 51.964176301 + ], + [ + 12.4695054, + 51.963790901 + ], + [ + 12.4671298, + 51.962718801 + ], + [ + 12.4667191, + 51.962533601 + ], + [ + 12.4662659, + 51.962318501 + ], + [ + 12.4653491, + 51.961870001 + ], + [ + 12.4650499, + 51.961710101 + ], + [ + 12.4645206, + 51.961436501 + ], + [ + 12.4642977, + 51.961318301 + ], + [ + 12.4635153, + 51.960834701 + ], + [ + 12.4627459, + 51.960355201 + ], + [ + 12.4619957, + 51.959832401 + ], + [ + 12.4613378, + 51.959350301 + ], + [ + 12.460399, + 51.958603201 + ], + [ + 12.459991609, + 51.958242062 + ] + ] + } + }, + { + "identifier": "2026-016870--vi-bs.2026-04-07_07-30-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.31836339084015,11.796336165048588,50.31428124605764,11.799537298555212", + "point": "50.31836339084015,11.796336165048588", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AD Bayerisches Vogtland (aus Richtung Naila/Selbitz) nach A9", + "title": "A9 Schallschutzarbeiten", + "coordinate": { + "lat": 50.31836339084015, + "long": 11.796336165048588 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 15:30 Uhr", + "10.04.26 von 07:30 bis 12:00 Uhr", + "", + "Von Auffahrt auf die A9: AD Bayerisches Vogtland (aus Richtung Naila/Selbitz) nach A9: Halle/Leipzig -> N\u00fcrnberg, zwischen AD Bayerisches Vogtland und 1.2 km vor Lipperts", + "", + "L\u00e4nge: 0.51 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A9 Schallschutzarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.796336165, + 50.318363391 + ], + [ + 11.7964574, + 50.318276501 + ], + [ + 11.7970006, + 50.317846101 + ], + [ + 11.7973676, + 50.317528001 + ], + [ + 11.7977082, + 50.317187001 + ], + [ + 11.7978571, + 50.317015301 + ], + [ + 11.7985049, + 50.316266301 + ], + [ + 11.7985911, + 50.316109601 + ], + [ + 11.799537299, + 50.314281246 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-fbm.2026-02-03_08-00-00-000.devi-zus.2025-04-14_08-00-00-000.de49", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.2410261295295,12.062640571948704,51.23913991287833,12.0588256480365", + "point": "51.2410261295295,12.062640571948704", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Rippachtal (aus Richtung Bad D\u00fcrrenberg)", + "title": "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005", + "startTimestamp": "2026-02-03T08:00:00+01:00", + "coordinate": { + "lat": 51.2410261295295, + "long": 12.062640571948704 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.02.26 um 08:00 Uhr", + "Ende: 15.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "Abfahrt von der A9: AK Rippachtal (aus Richtung Bad D\u00fcrrenberg)", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.062640572, + 51.24102613 + ], + [ + 12.0624726, + 51.240855801 + ], + [ + 12.0617692, + 51.240148501 + ], + [ + 12.0615467, + 51.240030201 + ], + [ + 12.0614173, + 51.239970701 + ], + [ + 12.061238, + 51.239898401 + ], + [ + 12.0610086, + 51.239829001 + ], + [ + 12.0608148, + 51.239786501 + ], + [ + 12.0605544, + 51.239737901 + ], + [ + 12.0602273, + 51.239685101 + ], + [ + 12.0599776, + 51.239638801 + ], + [ + 12.0597793, + 51.239586901 + ], + [ + 12.0595753, + 51.239515401 + ], + [ + 12.0593746, + 51.239432601 + ], + [ + 12.0592188, + 51.239357101 + ], + [ + 12.0590278, + 51.239255201 + ], + [ + 12.058825648, + 51.239139913 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-fbm.2026-02-03_08-00-00-000.devi-zus.2025-04-14_08-00-00-000.de45", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.243776321772565,12.065621235222894,51.24015520793166,12.061775869911372", + "point": "51.243776321772565,12.065621235222894", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle/Leipzig -> N\u00fcrnberg", + "title": "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005", + "startTimestamp": "2026-02-03T08:00:00+01:00", + "coordinate": { + "lat": 51.243776321772565, + "long": 12.065621235222894 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.02.26 um 08:00 Uhr", + "Ende: 15.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "Von A9: Halle/Leipzig -> N\u00fcrnberg, zwischen 7.0 km hinter AS Bad D\u00fcrrenberg und AK Rippachtal nach Abfahrt von der A9: AK Rippachtal (aus Richtung Bad D\u00fcrrenberg)", + "", + "L\u00e4nge: 0.48 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.065621235, + 51.243776322 + ], + [ + 12.0653342, + 51.243479401 + ], + [ + 12.064717, + 51.242840901 + ], + [ + 12.0640453, + 51.242148801 + ], + [ + 12.0634057, + 51.241755001 + ], + [ + 12.0631174, + 51.241506301 + ], + [ + 12.0627863, + 51.241173901 + ], + [ + 12.0624726, + 51.240855801 + ], + [ + 12.06177587, + 51.240155208 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-fbm.2026-02-03_08-00-00-000.devi-zus.2025-04-14_08-00-00-000.de43", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.23269232501631,12.05561208390393,51.23655870275934,12.062867241883808", + "point": "51.23269232501631,12.05561208390393", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Rippachtal (aus Richtung P\u00f6rstental)", + "title": "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005", + "startTimestamp": "2026-02-03T08:00:00+01:00", + "coordinate": { + "lat": 51.23269232501631, + "long": 12.05561208390393 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.02.26 um 08:00 Uhr", + "Ende: 15.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "Abfahrt von der A9: AK Rippachtal (aus Richtung P\u00f6rstental)", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.055612084, + 51.232692325 + ], + [ + 12.0557548, + 51.232796601 + ], + [ + 12.0559464, + 51.232952901 + ], + [ + 12.0561611, + 51.233171601 + ], + [ + 12.0563196, + 51.233348201 + ], + [ + 12.0564639, + 51.233550901 + ], + [ + 12.0565284, + 51.233659301 + ], + [ + 12.0567232, + 51.233860401 + ], + [ + 12.0568213, + 51.233959401 + ], + [ + 12.0570028, + 51.234169301 + ], + [ + 12.0570867, + 51.234258001 + ], + [ + 12.057191, + 51.234361601 + ], + [ + 12.0573851, + 51.234537801 + ], + [ + 12.0575988, + 51.234709601 + ], + [ + 12.057795, + 51.234850001 + ], + [ + 12.0581506, + 51.235080301 + ], + [ + 12.0584577, + 51.235249901 + ], + [ + 12.0588335, + 51.235431401 + ], + [ + 12.0591247, + 51.235553401 + ], + [ + 12.059422, + 51.235667501 + ], + [ + 12.0596978, + 51.235756701 + ], + [ + 12.0600545, + 51.235861701 + ], + [ + 12.0604799, + 51.235963501 + ], + [ + 12.0608825, + 51.236042301 + ], + [ + 12.0615095, + 51.236151901 + ], + [ + 12.0619354, + 51.236244201 + ], + [ + 12.0622641, + 51.236336501 + ], + [ + 12.0625712, + 51.236439901 + ], + [ + 12.062867242, + 51.236558703 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-fbm.2026-02-03_08-00-00-000.devi-zus.2025-04-14_08-00-00-000.de41", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.227836645771546,12.050162969180553,51.23769257995891,12.052817399860137", + "point": "51.227836645771546,12.050162969180553", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Halle/Leipzig", + "title": "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005", + "startTimestamp": "2026-02-03T08:00:00+01:00", + "coordinate": { + "lat": 51.227836645771546, + "long": 12.050162969180553 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.02.26 um 08:00 Uhr", + "Ende: 15.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "Von A9: N\u00fcrnberg -> Halle/Leipzig, zwischen 2.7 km hinter P\u00f6rstental und AK Rippachtal nach Abfahrt von der A9: AK Rippachtal (aus Richtung P\u00f6rstental)", + "", + "L\u00e4nge: 1.38 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.050162969, + 51.227836646 + ], + [ + 12.0503069, + 51.227979201 + ], + [ + 12.050353, + 51.228028801 + ], + [ + 12.0505192, + 51.228207301 + ], + [ + 12.0538792, + 51.231597701 + ], + [ + 12.054458, + 51.231952501 + ], + [ + 12.054721, + 51.232122701 + ], + [ + 12.0550462, + 51.232319901 + ], + [ + 12.0552984, + 51.232484001 + ], + [ + 12.055486, + 51.232600201 + ], + [ + 12.0557548, + 51.232796601 + ], + [ + 12.0559464, + 51.232952901 + ], + [ + 12.0561611, + 51.233171601 + ], + [ + 12.0563196, + 51.233348201 + ], + [ + 12.0564639, + 51.233550901 + ], + [ + 12.0565284, + 51.233659301 + ], + [ + 12.0566273, + 51.233904701 + ], + [ + 12.0566694, + 51.234010601 + ], + [ + 12.0567312, + 51.234208001 + ], + [ + 12.056773, + 51.234404101 + ], + [ + 12.0567848, + 51.234570401 + ], + [ + 12.0567868, + 51.234785301 + ], + [ + 12.0567633, + 51.234992101 + ], + [ + 12.0567273, + 51.235179301 + ], + [ + 12.0566695, + 51.235369401 + ], + [ + 12.0565551, + 51.235626201 + ], + [ + 12.05637, + 51.235933501 + ], + [ + 12.0561451, + 51.236214501 + ], + [ + 12.0558657, + 51.236483801 + ], + [ + 12.0555427, + 51.236733501 + ], + [ + 12.055216, + 51.236940501 + ], + [ + 12.0549488, + 51.237082601 + ], + [ + 12.05471, + 51.237195801 + ], + [ + 12.0544968, + 51.237282601 + ], + [ + 12.0542828, + 51.237362401 + ], + [ + 12.0540541, + 51.237439101 + ], + [ + 12.0539844, + 51.237458401 + ], + [ + 12.0537403, + 51.237526101 + ], + [ + 12.0534261, + 51.237598901 + ], + [ + 12.0530022, + 51.237670301 + ], + [ + 12.0528174, + 51.23769258 + ] + ] + } + } + ] + }, + "A10": { + "roadworks": [ + { + "identifier": "2026-016849--vi-bs.2026-04-07_07-00-00-000.devi-zus.2026-04-07_07-00-00-000_002.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.6358477526688,13.44103893517566,52.70939575281692,13.033489334536185", + "point": "52.6358477526688,13.44103893517566", + "startLcPosition": "0", + "impact": { + "lower": "Havelland", + "upper": "Barnim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Havelland", + "title": "A10 | Barnim - Havelland", + "coordinate": { + "lat": 52.6358477526688, + "long": 13.44103893517566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 15:30 Uhr", + "10.04.26 von 07:00 bis 15:30 Uhr", + "", + "A10: Dreieck Barnim -> Dreieck Havelland, zwischen 8.4 km hinter AD Barnim und 1.0 km vor AD Havelland", + "", + "L\u00e4nge: 30.73 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.441038935, + 52.635847753 + ], + [ + 13.4387576, + 52.636787501 + ], + [ + 13.4381775, + 52.637048601 + ], + [ + 13.4370969, + 52.637548301 + ], + [ + 13.4349837, + 52.638564901 + ], + [ + 13.4331354, + 52.639514201 + ], + [ + 13.4322712, + 52.639980301 + ], + [ + 13.4304198, + 52.641031801 + ], + [ + 13.4289701, + 52.641910301 + ], + [ + 13.4277853, + 52.642675401 + ], + [ + 13.4267293, + 52.643381601 + ], + [ + 13.4258663, + 52.643971001 + ], + [ + 13.4248269, + 52.644728901 + ], + [ + 13.4241766, + 52.645216201 + ], + [ + 13.4229806, + 52.646134301 + ], + [ + 13.4226009, + 52.646458101 + ], + [ + 13.4215983, + 52.647297801 + ], + [ + 13.4211732, + 52.647675001 + ], + [ + 13.4204286, + 52.648335801 + ], + [ + 13.4188729, + 52.649805901 + ], + [ + 13.4174496, + 52.651316101 + ], + [ + 13.4167155, + 52.652110501 + ], + [ + 13.4165419, + 52.652294601 + ], + [ + 13.415101, + 52.654075401 + ], + [ + 13.414285, + 52.655141201 + ], + [ + 13.4141968, + 52.655256101 + ], + [ + 13.4139283, + 52.655606701 + ], + [ + 13.4136866, + 52.655942501 + ], + [ + 13.4121229, + 52.658170901 + ], + [ + 13.4098975, + 52.661378601 + ], + [ + 13.4088711, + 52.662861701 + ], + [ + 13.4087655, + 52.663008601 + ], + [ + 13.4063334, + 52.666510301 + ], + [ + 13.4051854, + 52.667993801 + ], + [ + 13.4045524, + 52.668735501 + ], + [ + 13.4036405, + 52.669737401 + ], + [ + 13.4028426, + 52.670531801 + ], + [ + 13.4027672, + 52.670608301 + ], + [ + 13.4019582, + 52.671385701 + ], + [ + 13.401411, + 52.671834601 + ], + [ + 13.4006055, + 52.672509801 + ], + [ + 13.4004104, + 52.672656001 + ], + [ + 13.3991683, + 52.673526701 + ], + [ + 13.3985971, + 52.673915001 + ], + [ + 13.3978679, + 52.674373401 + ], + [ + 13.3972727, + 52.674731601 + ], + [ + 13.396773, + 52.675022901 + ], + [ + 13.3962452, + 52.675316201 + ], + [ + 13.3958491, + 52.675533701 + ], + [ + 13.3954316, + 52.675750001 + ], + [ + 13.3948244, + 52.676053901 + ], + [ + 13.3943244, + 52.676297601 + ], + [ + 13.3937616, + 52.676560001 + ], + [ + 13.3919198, + 52.677366801 + ], + [ + 13.3912945, + 52.677599001 + ], + [ + 13.390621, + 52.677852601 + ], + [ + 13.3899272, + 52.678097801 + ], + [ + 13.3889501, + 52.678429301 + ], + [ + 13.3883312, + 52.678627701 + ], + [ + 13.3876916, + 52.678820601 + ], + [ + 13.3870358, + 52.679011501 + ], + [ + 13.386382, + 52.679189601 + ], + [ + 13.385747, + 52.679357701 + ], + [ + 13.3845434, + 52.679646501 + ], + [ + 13.383321, + 52.679921701 + ], + [ + 13.3824681, + 52.680086901 + ], + [ + 13.3815668, + 52.680265601 + ], + [ + 13.3805068, + 52.680435401 + ], + [ + 13.379445, + 52.680587201 + ], + [ + 13.3786088, + 52.680693901 + ], + [ + 13.3777071, + 52.680799001 + ], + [ + 13.3768961, + 52.680882101 + ], + [ + 13.3760386, + 52.680962101 + ], + [ + 13.3746999, + 52.681067501 + ], + [ + 13.3744626, + 52.681086301 + ], + [ + 13.3733883, + 52.681158801 + ], + [ + 13.3720345, + 52.681236701 + ], + [ + 13.3706097, + 52.681305701 + ], + [ + 13.3691875, + 52.681368101 + ], + [ + 13.3663959, + 52.681478701 + ], + [ + 13.363981, + 52.681573201 + ], + [ + 13.361566, + 52.681669401 + ], + [ + 13.359151, + 52.681795601 + ], + [ + 13.3570617, + 52.681946501 + ], + [ + 13.3549818, + 52.682124301 + ], + [ + 13.3531924, + 52.682305801 + ], + [ + 13.3512325, + 52.682537101 + ], + [ + 13.349314, + 52.682790601 + ], + [ + 13.3474243, + 52.683070101 + ], + [ + 13.3458272, + 52.683326401 + ], + [ + 13.3442781, + 52.683596101 + ], + [ + 13.3430286, + 52.683837401 + ], + [ + 13.3420934, + 52.684008901 + ], + [ + 13.3410539, + 52.684225401 + ], + [ + 13.3400487, + 52.684441301 + ], + [ + 13.3390531, + 52.684661401 + ], + [ + 13.3380451, + 52.684895501 + ], + [ + 13.3370532, + 52.685133701 + ], + [ + 13.3360759, + 52.685378301 + ], + [ + 13.3350986, + 52.685633601 + ], + [ + 13.3338946, + 52.685958101 + ], + [ + 13.3331595, + 52.686163001 + ], + [ + 13.3324506, + 52.686366801 + ], + [ + 13.3317289, + 52.686578901 + ], + [ + 13.3310214, + 52.686792201 + ], + [ + 13.3279306, + 52.687740001 + ], + [ + 13.3262702, + 52.688246301 + ], + [ + 13.3255665, + 52.688460101 + ], + [ + 13.3248694, + 52.688674001 + ], + [ + 13.3239098, + 52.688968401 + ], + [ + 13.322963, + 52.689256001 + ], + [ + 13.3219897, + 52.689553901 + ], + [ + 13.3209318, + 52.689877901 + ], + [ + 13.3205898, + 52.689982701 + ], + [ + 13.3198817, + 52.690198901 + ], + [ + 13.3191655, + 52.690418201 + ], + [ + 13.3181738, + 52.690719801 + ], + [ + 13.3175074, + 52.690922901 + ], + [ + 13.3160878, + 52.691358101 + ], + [ + 13.3151412, + 52.691646601 + ], + [ + 13.3144362, + 52.691862201 + ], + [ + 13.3135598, + 52.692130101 + ], + [ + 13.3128423, + 52.692349001 + ], + [ + 13.3119291, + 52.692628101 + ], + [ + 13.3111775, + 52.692857001 + ], + [ + 13.3104648, + 52.693075401 + ], + [ + 13.3097556, + 52.693291001 + ], + [ + 13.3090289, + 52.693513601 + ], + [ + 13.3083177, + 52.693730701 + ], + [ + 13.3073633, + 52.694022501 + ], + [ + 13.3064136, + 52.694311201 + ], + [ + 13.3056931, + 52.694532501 + ], + [ + 13.3049833, + 52.694748801 + ], + [ + 13.3040331, + 52.695038501 + ], + [ + 13.3028429, + 52.695399401 + ], + [ + 13.3016344, + 52.695759701 + ], + [ + 13.3004296, + 52.696109501 + ], + [ + 13.2992166, + 52.696448701 + ], + [ + 13.298494, + 52.696644301 + ], + [ + 13.297757, + 52.696839501 + ], + [ + 13.296751, + 52.697094101 + ], + [ + 13.295779, + 52.697328701 + ], + [ + 13.2945174, + 52.697617801 + ], + [ + 13.2941401, + 52.697701801 + ], + [ + 13.2937655, + 52.697780901 + ], + [ + 13.2927565, + 52.697992601 + ], + [ + 13.2920005, + 52.698144901 + ], + [ + 13.2909871, + 52.698337901 + ], + [ + 13.2902408, + 52.698473201 + ], + [ + 13.2894944, + 52.698603601 + ], + [ + 13.2889441, + 52.698696001 + ], + [ + 13.2881765, + 52.698819301 + ], + [ + 13.2873968, + 52.698939301 + ], + [ + 13.2866225, + 52.699054501 + ], + [ + 13.2853163, + 52.699232801 + ], + [ + 13.2839552, + 52.699399801 + ], + [ + 13.2829546, + 52.699512701 + ], + [ + 13.2822443, + 52.699584501 + ], + [ + 13.2819539, + 52.699613001 + ], + [ + 13.2803328, + 52.699761901 + ], + [ + 13.2795321, + 52.699824901 + ], + [ + 13.2787445, + 52.699881001 + ], + [ + 13.2776963, + 52.699947501 + ], + [ + 13.2758581, + 52.700047001 + ], + [ + 13.2739965, + 52.700112401 + ], + [ + 13.2732431, + 52.700128901 + ], + [ + 13.2726954, + 52.700136001 + ], + [ + 13.2721522, + 52.700141601 + ], + [ + 13.2715944, + 52.700147401 + ], + [ + 13.2707995, + 52.700147801 + ], + [ + 13.2700344, + 52.700142201 + ], + [ + 13.268679, + 52.700126501 + ], + [ + 13.266821, + 52.700086201 + ], + [ + 13.2644482, + 52.700015101 + ], + [ + 13.2625322, + 52.699957701 + ], + [ + 13.2606904, + 52.699902001 + ], + [ + 13.2598804, + 52.699877701 + ], + [ + 13.2590796, + 52.699852201 + ], + [ + 13.2574975, + 52.699804201 + ], + [ + 13.2521846, + 52.699641601 + ], + [ + 13.251592, + 52.699624601 + ], + [ + 13.2506114, + 52.699594401 + ], + [ + 13.2487258, + 52.699537501 + ], + [ + 13.2468706, + 52.699482801 + ], + [ + 13.2463363, + 52.699472701 + ], + [ + 13.245529, + 52.699459401 + ], + [ + 13.2448726, + 52.699450501 + ], + [ + 13.2441908, + 52.699447701 + ], + [ + 13.2433918, + 52.699446801 + ], + [ + 13.2425979, + 52.699451901 + ], + [ + 13.2420605, + 52.699457501 + ], + [ + 13.2412642, + 52.699468701 + ], + [ + 13.240465, + 52.699485701 + ], + [ + 13.2398057, + 52.699503501 + ], + [ + 13.2391463, + 52.699524901 + ], + [ + 13.2383288, + 52.699556301 + ], + [ + 13.2378099, + 52.699577101 + ], + [ + 13.2372785, + 52.699603201 + ], + [ + 13.2367379, + 52.699629401 + ], + [ + 13.2359465, + 52.699672901 + ], + [ + 13.2354249, + 52.699704301 + ], + [ + 13.234884, + 52.699740001 + ], + [ + 13.2343575, + 52.699775001 + ], + [ + 13.2335648, + 52.699833101 + ], + [ + 13.2325074, + 52.699920801 + ], + [ + 13.2319773, + 52.699963401 + ], + [ + 13.23145, + 52.700013601 + ], + [ + 13.2306738, + 52.700088101 + ], + [ + 13.2301359, + 52.700141901 + ], + [ + 13.2296165, + 52.700195801 + ], + [ + 13.2290862, + 52.700254601 + ], + [ + 13.2285653, + 52.700311901 + ], + [ + 13.2280069, + 52.700378401 + ], + [ + 13.2275145, + 52.700442401 + ], + [ + 13.2270057, + 52.700501701 + ], + [ + 13.2264806, + 52.700568101 + ], + [ + 13.22596, + 52.700637601 + ], + [ + 13.2254418, + 52.700707901 + ], + [ + 13.2249208, + 52.700783801 + ], + [ + 13.224408, + 52.700857601 + ], + [ + 13.2238886, + 52.700936301 + ], + [ + 13.2233808, + 52.701015501 + ], + [ + 13.2228522, + 52.701101101 + ], + [ + 13.2221852, + 52.701208801 + ], + [ + 13.2215723, + 52.701309501 + ], + [ + 13.2208104, + 52.701433901 + ], + [ + 13.2195064, + 52.701646401 + ], + [ + 13.2187397, + 52.701771801 + ], + [ + 13.2175699, + 52.701966501 + ], + [ + 13.216848, + 52.702083201 + ], + [ + 13.2153909, + 52.702326701 + ], + [ + 13.2146253, + 52.702451901 + ], + [ + 13.2109904, + 52.703041901 + ], + [ + 13.2103856, + 52.703140701 + ], + [ + 13.2097442, + 52.703246801 + ], + [ + 13.2089735, + 52.703374201 + ], + [ + 13.2082099, + 52.703498101 + ], + [ + 13.206652, + 52.703754801 + ], + [ + 13.2058638, + 52.703884101 + ], + [ + 13.2050109, + 52.704029201 + ], + [ + 13.2020282, + 52.704508601 + ], + [ + 13.201516, + 52.704595601 + ], + [ + 13.2009946, + 52.704666801 + ], + [ + 13.2004784, + 52.704742301 + ], + [ + 13.1996774, + 52.704853601 + ], + [ + 13.1989138, + 52.704954701 + ], + [ + 13.1983902, + 52.705021301 + ], + [ + 13.197368, + 52.705142601 + ], + [ + 13.1971651, + 52.705165301 + ], + [ + 13.1947258, + 52.705413901 + ], + [ + 13.1933359, + 52.705521401 + ], + [ + 13.1916206, + 52.705639701 + ], + [ + 13.1903984, + 52.705709101 + ], + [ + 13.1892256, + 52.705762801 + ], + [ + 13.1882923, + 52.705791401 + ], + [ + 13.1873024, + 52.705821301 + ], + [ + 13.1864156, + 52.705835501 + ], + [ + 13.1850439, + 52.705848501 + ], + [ + 13.1829965, + 52.705840501 + ], + [ + 13.1782751, + 52.705830501 + ], + [ + 13.1769894, + 52.705826301 + ], + [ + 13.170669, + 52.705800701 + ], + [ + 13.1704343, + 52.705800001 + ], + [ + 13.1673221, + 52.705788101 + ], + [ + 13.1633508, + 52.705781101 + ], + [ + 13.1608247, + 52.705771801 + ], + [ + 13.1574743, + 52.705751401 + ], + [ + 13.1505018, + 52.705738801 + ], + [ + 13.1488904, + 52.705738701 + ], + [ + 13.1483573, + 52.705738201 + ], + [ + 13.1465075, + 52.705751601 + ], + [ + 13.1451736, + 52.705774801 + ], + [ + 13.1408561, + 52.705891601 + ], + [ + 13.1405182, + 52.705906001 + ], + [ + 13.1369367, + 52.706047201 + ], + [ + 13.1321208, + 52.706354301 + ], + [ + 13.1230679, + 52.707098401 + ], + [ + 13.1210364, + 52.707247501 + ], + [ + 13.1184507, + 52.707390501 + ], + [ + 13.1157296, + 52.707470901 + ], + [ + 13.1132743, + 52.707502501 + ], + [ + 13.1127468, + 52.707502101 + ], + [ + 13.1106453, + 52.707485301 + ], + [ + 13.1082385, + 52.707403901 + ], + [ + 13.1063728, + 52.707328301 + ], + [ + 13.1037043, + 52.707165701 + ], + [ + 13.1014508, + 52.706991701 + ], + [ + 13.0995621, + 52.706819601 + ], + [ + 13.0972065, + 52.706556301 + ], + [ + 13.0961355, + 52.706434501 + ], + [ + 13.0868192, + 52.705385801 + ], + [ + 13.0855394, + 52.705252401 + ], + [ + 13.0838064, + 52.705093901 + ], + [ + 13.0819993, + 52.704943301 + ], + [ + 13.0796545, + 52.704789001 + ], + [ + 13.0786962, + 52.704750501 + ], + [ + 13.0754824, + 52.704642001 + ], + [ + 13.073024, + 52.704624001 + ], + [ + 13.0701767, + 52.704663201 + ], + [ + 13.068357, + 52.704710801 + ], + [ + 13.0664692, + 52.704788001 + ], + [ + 13.0648389, + 52.704882701 + ], + [ + 13.0627896, + 52.705001101 + ], + [ + 13.0626124, + 52.705015901 + ], + [ + 13.0599629, + 52.705231501 + ], + [ + 13.0586153, + 52.705368301 + ], + [ + 13.0569249, + 52.705573701 + ], + [ + 13.0553449, + 52.705790801 + ], + [ + 13.0531017, + 52.706095001 + ], + [ + 13.0498621, + 52.706604501 + ], + [ + 13.0486955, + 52.706808901 + ], + [ + 13.0477429, + 52.706964701 + ], + [ + 13.0475724, + 52.706993801 + ], + [ + 13.04363, + 52.707664601 + ], + [ + 13.0433656, + 52.707709101 + ], + [ + 13.0402464, + 52.708254801 + ], + [ + 13.0381759, + 52.708617001 + ], + [ + 13.036151, + 52.708945001 + ], + [ + 13.033489335, + 52.709395753 + ] + ] + } + }, + { + "identifier": "2026-017646--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_006.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.6358477526688,13.44103893517566,52.70939575281692,13.033489334536185", + "point": "52.6358477526688,13.44103893517566", + "startLcPosition": "0", + "impact": { + "lower": "Havelland", + "upper": "Barnim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Havelland", + "title": "A10 | Barnim - Havelland", + "coordinate": { + "lat": 52.6358477526688, + "long": 13.44103893517566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:30 Uhr", + "14.04.26 von 07:00 bis 15:30 Uhr", + "15.04.26 von 07:00 bis 15:30 Uhr", + "16.04.26 von 07:00 bis 15:30 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A10: Dreieck Barnim -> Dreieck Havelland, zwischen 8.4 km hinter AD Barnim und 1.0 km vor AD Havelland", + "", + "L\u00e4nge: 30.73 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A10 A24 Gr\u00fcnpflege Unimog " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.441038935, + 52.635847753 + ], + [ + 13.4387576, + 52.636787501 + ], + [ + 13.4381775, + 52.637048601 + ], + [ + 13.4370969, + 52.637548301 + ], + [ + 13.4349837, + 52.638564901 + ], + [ + 13.4331354, + 52.639514201 + ], + [ + 13.4322712, + 52.639980301 + ], + [ + 13.4304198, + 52.641031801 + ], + [ + 13.4289701, + 52.641910301 + ], + [ + 13.4277853, + 52.642675401 + ], + [ + 13.4267293, + 52.643381601 + ], + [ + 13.4258663, + 52.643971001 + ], + [ + 13.4248269, + 52.644728901 + ], + [ + 13.4241766, + 52.645216201 + ], + [ + 13.4229806, + 52.646134301 + ], + [ + 13.4226009, + 52.646458101 + ], + [ + 13.4215983, + 52.647297801 + ], + [ + 13.4211732, + 52.647675001 + ], + [ + 13.4204286, + 52.648335801 + ], + [ + 13.4188729, + 52.649805901 + ], + [ + 13.4174496, + 52.651316101 + ], + [ + 13.4167155, + 52.652110501 + ], + [ + 13.4165419, + 52.652294601 + ], + [ + 13.415101, + 52.654075401 + ], + [ + 13.414285, + 52.655141201 + ], + [ + 13.4141968, + 52.655256101 + ], + [ + 13.4139283, + 52.655606701 + ], + [ + 13.4136866, + 52.655942501 + ], + [ + 13.4121229, + 52.658170901 + ], + [ + 13.4098975, + 52.661378601 + ], + [ + 13.4088711, + 52.662861701 + ], + [ + 13.4087655, + 52.663008601 + ], + [ + 13.4063334, + 52.666510301 + ], + [ + 13.4051854, + 52.667993801 + ], + [ + 13.4045524, + 52.668735501 + ], + [ + 13.4036405, + 52.669737401 + ], + [ + 13.4028426, + 52.670531801 + ], + [ + 13.4027672, + 52.670608301 + ], + [ + 13.4019582, + 52.671385701 + ], + [ + 13.401411, + 52.671834601 + ], + [ + 13.4006055, + 52.672509801 + ], + [ + 13.4004104, + 52.672656001 + ], + [ + 13.3991683, + 52.673526701 + ], + [ + 13.3985971, + 52.673915001 + ], + [ + 13.3978679, + 52.674373401 + ], + [ + 13.3972727, + 52.674731601 + ], + [ + 13.396773, + 52.675022901 + ], + [ + 13.3962452, + 52.675316201 + ], + [ + 13.3958491, + 52.675533701 + ], + [ + 13.3954316, + 52.675750001 + ], + [ + 13.3948244, + 52.676053901 + ], + [ + 13.3943244, + 52.676297601 + ], + [ + 13.3937616, + 52.676560001 + ], + [ + 13.3919198, + 52.677366801 + ], + [ + 13.3912945, + 52.677599001 + ], + [ + 13.390621, + 52.677852601 + ], + [ + 13.3899272, + 52.678097801 + ], + [ + 13.3889501, + 52.678429301 + ], + [ + 13.3883312, + 52.678627701 + ], + [ + 13.3876916, + 52.678820601 + ], + [ + 13.3870358, + 52.679011501 + ], + [ + 13.386382, + 52.679189601 + ], + [ + 13.385747, + 52.679357701 + ], + [ + 13.3845434, + 52.679646501 + ], + [ + 13.383321, + 52.679921701 + ], + [ + 13.3824681, + 52.680086901 + ], + [ + 13.3815668, + 52.680265601 + ], + [ + 13.3805068, + 52.680435401 + ], + [ + 13.379445, + 52.680587201 + ], + [ + 13.3786088, + 52.680693901 + ], + [ + 13.3777071, + 52.680799001 + ], + [ + 13.3768961, + 52.680882101 + ], + [ + 13.3760386, + 52.680962101 + ], + [ + 13.3746999, + 52.681067501 + ], + [ + 13.3744626, + 52.681086301 + ], + [ + 13.3733883, + 52.681158801 + ], + [ + 13.3720345, + 52.681236701 + ], + [ + 13.3706097, + 52.681305701 + ], + [ + 13.3691875, + 52.681368101 + ], + [ + 13.3663959, + 52.681478701 + ], + [ + 13.363981, + 52.681573201 + ], + [ + 13.361566, + 52.681669401 + ], + [ + 13.359151, + 52.681795601 + ], + [ + 13.3570617, + 52.681946501 + ], + [ + 13.3549818, + 52.682124301 + ], + [ + 13.3531924, + 52.682305801 + ], + [ + 13.3512325, + 52.682537101 + ], + [ + 13.349314, + 52.682790601 + ], + [ + 13.3474243, + 52.683070101 + ], + [ + 13.3458272, + 52.683326401 + ], + [ + 13.3442781, + 52.683596101 + ], + [ + 13.3430286, + 52.683837401 + ], + [ + 13.3420934, + 52.684008901 + ], + [ + 13.3410539, + 52.684225401 + ], + [ + 13.3400487, + 52.684441301 + ], + [ + 13.3390531, + 52.684661401 + ], + [ + 13.3380451, + 52.684895501 + ], + [ + 13.3370532, + 52.685133701 + ], + [ + 13.3360759, + 52.685378301 + ], + [ + 13.3350986, + 52.685633601 + ], + [ + 13.3338946, + 52.685958101 + ], + [ + 13.3331595, + 52.686163001 + ], + [ + 13.3324506, + 52.686366801 + ], + [ + 13.3317289, + 52.686578901 + ], + [ + 13.3310214, + 52.686792201 + ], + [ + 13.3279306, + 52.687740001 + ], + [ + 13.3262702, + 52.688246301 + ], + [ + 13.3255665, + 52.688460101 + ], + [ + 13.3248694, + 52.688674001 + ], + [ + 13.3239098, + 52.688968401 + ], + [ + 13.322963, + 52.689256001 + ], + [ + 13.3219897, + 52.689553901 + ], + [ + 13.3209318, + 52.689877901 + ], + [ + 13.3205898, + 52.689982701 + ], + [ + 13.3198817, + 52.690198901 + ], + [ + 13.3191655, + 52.690418201 + ], + [ + 13.3181738, + 52.690719801 + ], + [ + 13.3175074, + 52.690922901 + ], + [ + 13.3160878, + 52.691358101 + ], + [ + 13.3151412, + 52.691646601 + ], + [ + 13.3144362, + 52.691862201 + ], + [ + 13.3135598, + 52.692130101 + ], + [ + 13.3128423, + 52.692349001 + ], + [ + 13.3119291, + 52.692628101 + ], + [ + 13.3111775, + 52.692857001 + ], + [ + 13.3104648, + 52.693075401 + ], + [ + 13.3097556, + 52.693291001 + ], + [ + 13.3090289, + 52.693513601 + ], + [ + 13.3083177, + 52.693730701 + ], + [ + 13.3073633, + 52.694022501 + ], + [ + 13.3064136, + 52.694311201 + ], + [ + 13.3056931, + 52.694532501 + ], + [ + 13.3049833, + 52.694748801 + ], + [ + 13.3040331, + 52.695038501 + ], + [ + 13.3028429, + 52.695399401 + ], + [ + 13.3016344, + 52.695759701 + ], + [ + 13.3004296, + 52.696109501 + ], + [ + 13.2992166, + 52.696448701 + ], + [ + 13.298494, + 52.696644301 + ], + [ + 13.297757, + 52.696839501 + ], + [ + 13.296751, + 52.697094101 + ], + [ + 13.295779, + 52.697328701 + ], + [ + 13.2945174, + 52.697617801 + ], + [ + 13.2941401, + 52.697701801 + ], + [ + 13.2937655, + 52.697780901 + ], + [ + 13.2927565, + 52.697992601 + ], + [ + 13.2920005, + 52.698144901 + ], + [ + 13.2909871, + 52.698337901 + ], + [ + 13.2902408, + 52.698473201 + ], + [ + 13.2894944, + 52.698603601 + ], + [ + 13.2889441, + 52.698696001 + ], + [ + 13.2881765, + 52.698819301 + ], + [ + 13.2873968, + 52.698939301 + ], + [ + 13.2866225, + 52.699054501 + ], + [ + 13.2853163, + 52.699232801 + ], + [ + 13.2839552, + 52.699399801 + ], + [ + 13.2829546, + 52.699512701 + ], + [ + 13.2822443, + 52.699584501 + ], + [ + 13.2819539, + 52.699613001 + ], + [ + 13.2803328, + 52.699761901 + ], + [ + 13.2795321, + 52.699824901 + ], + [ + 13.2787445, + 52.699881001 + ], + [ + 13.2776963, + 52.699947501 + ], + [ + 13.2758581, + 52.700047001 + ], + [ + 13.2739965, + 52.700112401 + ], + [ + 13.2732431, + 52.700128901 + ], + [ + 13.2726954, + 52.700136001 + ], + [ + 13.2721522, + 52.700141601 + ], + [ + 13.2715944, + 52.700147401 + ], + [ + 13.2707995, + 52.700147801 + ], + [ + 13.2700344, + 52.700142201 + ], + [ + 13.268679, + 52.700126501 + ], + [ + 13.266821, + 52.700086201 + ], + [ + 13.2644482, + 52.700015101 + ], + [ + 13.2625322, + 52.699957701 + ], + [ + 13.2606904, + 52.699902001 + ], + [ + 13.2598804, + 52.699877701 + ], + [ + 13.2590796, + 52.699852201 + ], + [ + 13.2574975, + 52.699804201 + ], + [ + 13.2521846, + 52.699641601 + ], + [ + 13.251592, + 52.699624601 + ], + [ + 13.2506114, + 52.699594401 + ], + [ + 13.2487258, + 52.699537501 + ], + [ + 13.2468706, + 52.699482801 + ], + [ + 13.2463363, + 52.699472701 + ], + [ + 13.245529, + 52.699459401 + ], + [ + 13.2448726, + 52.699450501 + ], + [ + 13.2441908, + 52.699447701 + ], + [ + 13.2433918, + 52.699446801 + ], + [ + 13.2425979, + 52.699451901 + ], + [ + 13.2420605, + 52.699457501 + ], + [ + 13.2412642, + 52.699468701 + ], + [ + 13.240465, + 52.699485701 + ], + [ + 13.2398057, + 52.699503501 + ], + [ + 13.2391463, + 52.699524901 + ], + [ + 13.2383288, + 52.699556301 + ], + [ + 13.2378099, + 52.699577101 + ], + [ + 13.2372785, + 52.699603201 + ], + [ + 13.2367379, + 52.699629401 + ], + [ + 13.2359465, + 52.699672901 + ], + [ + 13.2354249, + 52.699704301 + ], + [ + 13.234884, + 52.699740001 + ], + [ + 13.2343575, + 52.699775001 + ], + [ + 13.2335648, + 52.699833101 + ], + [ + 13.2325074, + 52.699920801 + ], + [ + 13.2319773, + 52.699963401 + ], + [ + 13.23145, + 52.700013601 + ], + [ + 13.2306738, + 52.700088101 + ], + [ + 13.2301359, + 52.700141901 + ], + [ + 13.2296165, + 52.700195801 + ], + [ + 13.2290862, + 52.700254601 + ], + [ + 13.2285653, + 52.700311901 + ], + [ + 13.2280069, + 52.700378401 + ], + [ + 13.2275145, + 52.700442401 + ], + [ + 13.2270057, + 52.700501701 + ], + [ + 13.2264806, + 52.700568101 + ], + [ + 13.22596, + 52.700637601 + ], + [ + 13.2254418, + 52.700707901 + ], + [ + 13.2249208, + 52.700783801 + ], + [ + 13.224408, + 52.700857601 + ], + [ + 13.2238886, + 52.700936301 + ], + [ + 13.2233808, + 52.701015501 + ], + [ + 13.2228522, + 52.701101101 + ], + [ + 13.2221852, + 52.701208801 + ], + [ + 13.2215723, + 52.701309501 + ], + [ + 13.2208104, + 52.701433901 + ], + [ + 13.2195064, + 52.701646401 + ], + [ + 13.2187397, + 52.701771801 + ], + [ + 13.2175699, + 52.701966501 + ], + [ + 13.216848, + 52.702083201 + ], + [ + 13.2153909, + 52.702326701 + ], + [ + 13.2146253, + 52.702451901 + ], + [ + 13.2109904, + 52.703041901 + ], + [ + 13.2103856, + 52.703140701 + ], + [ + 13.2097442, + 52.703246801 + ], + [ + 13.2089735, + 52.703374201 + ], + [ + 13.2082099, + 52.703498101 + ], + [ + 13.206652, + 52.703754801 + ], + [ + 13.2058638, + 52.703884101 + ], + [ + 13.2050109, + 52.704029201 + ], + [ + 13.2020282, + 52.704508601 + ], + [ + 13.201516, + 52.704595601 + ], + [ + 13.2009946, + 52.704666801 + ], + [ + 13.2004784, + 52.704742301 + ], + [ + 13.1996774, + 52.704853601 + ], + [ + 13.1989138, + 52.704954701 + ], + [ + 13.1983902, + 52.705021301 + ], + [ + 13.197368, + 52.705142601 + ], + [ + 13.1971651, + 52.705165301 + ], + [ + 13.1947258, + 52.705413901 + ], + [ + 13.1933359, + 52.705521401 + ], + [ + 13.1916206, + 52.705639701 + ], + [ + 13.1903984, + 52.705709101 + ], + [ + 13.1892256, + 52.705762801 + ], + [ + 13.1882923, + 52.705791401 + ], + [ + 13.1873024, + 52.705821301 + ], + [ + 13.1864156, + 52.705835501 + ], + [ + 13.1850439, + 52.705848501 + ], + [ + 13.1829965, + 52.705840501 + ], + [ + 13.1782751, + 52.705830501 + ], + [ + 13.1769894, + 52.705826301 + ], + [ + 13.170669, + 52.705800701 + ], + [ + 13.1704343, + 52.705800001 + ], + [ + 13.1673221, + 52.705788101 + ], + [ + 13.1633508, + 52.705781101 + ], + [ + 13.1608247, + 52.705771801 + ], + [ + 13.1574743, + 52.705751401 + ], + [ + 13.1505018, + 52.705738801 + ], + [ + 13.1488904, + 52.705738701 + ], + [ + 13.1483573, + 52.705738201 + ], + [ + 13.1465075, + 52.705751601 + ], + [ + 13.1451736, + 52.705774801 + ], + [ + 13.1408561, + 52.705891601 + ], + [ + 13.1405182, + 52.705906001 + ], + [ + 13.1369367, + 52.706047201 + ], + [ + 13.1321208, + 52.706354301 + ], + [ + 13.1230679, + 52.707098401 + ], + [ + 13.1210364, + 52.707247501 + ], + [ + 13.1184507, + 52.707390501 + ], + [ + 13.1157296, + 52.707470901 + ], + [ + 13.1132743, + 52.707502501 + ], + [ + 13.1127468, + 52.707502101 + ], + [ + 13.1106453, + 52.707485301 + ], + [ + 13.1082385, + 52.707403901 + ], + [ + 13.1063728, + 52.707328301 + ], + [ + 13.1037043, + 52.707165701 + ], + [ + 13.1014508, + 52.706991701 + ], + [ + 13.0995621, + 52.706819601 + ], + [ + 13.0972065, + 52.706556301 + ], + [ + 13.0961355, + 52.706434501 + ], + [ + 13.0868192, + 52.705385801 + ], + [ + 13.0855394, + 52.705252401 + ], + [ + 13.0838064, + 52.705093901 + ], + [ + 13.0819993, + 52.704943301 + ], + [ + 13.0796545, + 52.704789001 + ], + [ + 13.0786962, + 52.704750501 + ], + [ + 13.0754824, + 52.704642001 + ], + [ + 13.073024, + 52.704624001 + ], + [ + 13.0701767, + 52.704663201 + ], + [ + 13.068357, + 52.704710801 + ], + [ + 13.0664692, + 52.704788001 + ], + [ + 13.0648389, + 52.704882701 + ], + [ + 13.0627896, + 52.705001101 + ], + [ + 13.0626124, + 52.705015901 + ], + [ + 13.0599629, + 52.705231501 + ], + [ + 13.0586153, + 52.705368301 + ], + [ + 13.0569249, + 52.705573701 + ], + [ + 13.0553449, + 52.705790801 + ], + [ + 13.0531017, + 52.706095001 + ], + [ + 13.0498621, + 52.706604501 + ], + [ + 13.0486955, + 52.706808901 + ], + [ + 13.0477429, + 52.706964701 + ], + [ + 13.0475724, + 52.706993801 + ], + [ + 13.04363, + 52.707664601 + ], + [ + 13.0433656, + 52.707709101 + ], + [ + 13.0402464, + 52.708254801 + ], + [ + 13.0381759, + 52.708617001 + ], + [ + 13.036151, + 52.708945001 + ], + [ + 13.033489335, + 52.709395753 + ] + ] + } + }, + { + "identifier": "2026-017654--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_005.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.6358477526688,13.44103893517566,52.70939575281692,13.033489334536185", + "point": "52.6358477526688,13.44103893517566", + "startLcPosition": "0", + "impact": { + "lower": "Havelland", + "upper": "Barnim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Havelland", + "title": "A10 | Barnim - Havelland", + "coordinate": { + "lat": 52.6358477526688, + "long": 13.44103893517566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:30 Uhr", + "14.04.26 von 07:00 bis 15:30 Uhr", + "15.04.26 von 07:00 bis 15:30 Uhr", + "16.04.26 von 07:00 bis 15:30 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A10: Dreieck Barnim -> Dreieck Havelland, zwischen 8.4 km hinter AD Barnim und 1.0 km vor AD Havelland", + "", + "L\u00e4nge: 30.73 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.441038935, + 52.635847753 + ], + [ + 13.4387576, + 52.636787501 + ], + [ + 13.4381775, + 52.637048601 + ], + [ + 13.4370969, + 52.637548301 + ], + [ + 13.4349837, + 52.638564901 + ], + [ + 13.4331354, + 52.639514201 + ], + [ + 13.4322712, + 52.639980301 + ], + [ + 13.4304198, + 52.641031801 + ], + [ + 13.4289701, + 52.641910301 + ], + [ + 13.4277853, + 52.642675401 + ], + [ + 13.4267293, + 52.643381601 + ], + [ + 13.4258663, + 52.643971001 + ], + [ + 13.4248269, + 52.644728901 + ], + [ + 13.4241766, + 52.645216201 + ], + [ + 13.4229806, + 52.646134301 + ], + [ + 13.4226009, + 52.646458101 + ], + [ + 13.4215983, + 52.647297801 + ], + [ + 13.4211732, + 52.647675001 + ], + [ + 13.4204286, + 52.648335801 + ], + [ + 13.4188729, + 52.649805901 + ], + [ + 13.4174496, + 52.651316101 + ], + [ + 13.4167155, + 52.652110501 + ], + [ + 13.4165419, + 52.652294601 + ], + [ + 13.415101, + 52.654075401 + ], + [ + 13.414285, + 52.655141201 + ], + [ + 13.4141968, + 52.655256101 + ], + [ + 13.4139283, + 52.655606701 + ], + [ + 13.4136866, + 52.655942501 + ], + [ + 13.4121229, + 52.658170901 + ], + [ + 13.4098975, + 52.661378601 + ], + [ + 13.4088711, + 52.662861701 + ], + [ + 13.4087655, + 52.663008601 + ], + [ + 13.4063334, + 52.666510301 + ], + [ + 13.4051854, + 52.667993801 + ], + [ + 13.4045524, + 52.668735501 + ], + [ + 13.4036405, + 52.669737401 + ], + [ + 13.4028426, + 52.670531801 + ], + [ + 13.4027672, + 52.670608301 + ], + [ + 13.4019582, + 52.671385701 + ], + [ + 13.401411, + 52.671834601 + ], + [ + 13.4006055, + 52.672509801 + ], + [ + 13.4004104, + 52.672656001 + ], + [ + 13.3991683, + 52.673526701 + ], + [ + 13.3985971, + 52.673915001 + ], + [ + 13.3978679, + 52.674373401 + ], + [ + 13.3972727, + 52.674731601 + ], + [ + 13.396773, + 52.675022901 + ], + [ + 13.3962452, + 52.675316201 + ], + [ + 13.3958491, + 52.675533701 + ], + [ + 13.3954316, + 52.675750001 + ], + [ + 13.3948244, + 52.676053901 + ], + [ + 13.3943244, + 52.676297601 + ], + [ + 13.3937616, + 52.676560001 + ], + [ + 13.3919198, + 52.677366801 + ], + [ + 13.3912945, + 52.677599001 + ], + [ + 13.390621, + 52.677852601 + ], + [ + 13.3899272, + 52.678097801 + ], + [ + 13.3889501, + 52.678429301 + ], + [ + 13.3883312, + 52.678627701 + ], + [ + 13.3876916, + 52.678820601 + ], + [ + 13.3870358, + 52.679011501 + ], + [ + 13.386382, + 52.679189601 + ], + [ + 13.385747, + 52.679357701 + ], + [ + 13.3845434, + 52.679646501 + ], + [ + 13.383321, + 52.679921701 + ], + [ + 13.3824681, + 52.680086901 + ], + [ + 13.3815668, + 52.680265601 + ], + [ + 13.3805068, + 52.680435401 + ], + [ + 13.379445, + 52.680587201 + ], + [ + 13.3786088, + 52.680693901 + ], + [ + 13.3777071, + 52.680799001 + ], + [ + 13.3768961, + 52.680882101 + ], + [ + 13.3760386, + 52.680962101 + ], + [ + 13.3746999, + 52.681067501 + ], + [ + 13.3744626, + 52.681086301 + ], + [ + 13.3733883, + 52.681158801 + ], + [ + 13.3720345, + 52.681236701 + ], + [ + 13.3706097, + 52.681305701 + ], + [ + 13.3691875, + 52.681368101 + ], + [ + 13.3663959, + 52.681478701 + ], + [ + 13.363981, + 52.681573201 + ], + [ + 13.361566, + 52.681669401 + ], + [ + 13.359151, + 52.681795601 + ], + [ + 13.3570617, + 52.681946501 + ], + [ + 13.3549818, + 52.682124301 + ], + [ + 13.3531924, + 52.682305801 + ], + [ + 13.3512325, + 52.682537101 + ], + [ + 13.349314, + 52.682790601 + ], + [ + 13.3474243, + 52.683070101 + ], + [ + 13.3458272, + 52.683326401 + ], + [ + 13.3442781, + 52.683596101 + ], + [ + 13.3430286, + 52.683837401 + ], + [ + 13.3420934, + 52.684008901 + ], + [ + 13.3410539, + 52.684225401 + ], + [ + 13.3400487, + 52.684441301 + ], + [ + 13.3390531, + 52.684661401 + ], + [ + 13.3380451, + 52.684895501 + ], + [ + 13.3370532, + 52.685133701 + ], + [ + 13.3360759, + 52.685378301 + ], + [ + 13.3350986, + 52.685633601 + ], + [ + 13.3338946, + 52.685958101 + ], + [ + 13.3331595, + 52.686163001 + ], + [ + 13.3324506, + 52.686366801 + ], + [ + 13.3317289, + 52.686578901 + ], + [ + 13.3310214, + 52.686792201 + ], + [ + 13.3279306, + 52.687740001 + ], + [ + 13.3262702, + 52.688246301 + ], + [ + 13.3255665, + 52.688460101 + ], + [ + 13.3248694, + 52.688674001 + ], + [ + 13.3239098, + 52.688968401 + ], + [ + 13.322963, + 52.689256001 + ], + [ + 13.3219897, + 52.689553901 + ], + [ + 13.3209318, + 52.689877901 + ], + [ + 13.3205898, + 52.689982701 + ], + [ + 13.3198817, + 52.690198901 + ], + [ + 13.3191655, + 52.690418201 + ], + [ + 13.3181738, + 52.690719801 + ], + [ + 13.3175074, + 52.690922901 + ], + [ + 13.3160878, + 52.691358101 + ], + [ + 13.3151412, + 52.691646601 + ], + [ + 13.3144362, + 52.691862201 + ], + [ + 13.3135598, + 52.692130101 + ], + [ + 13.3128423, + 52.692349001 + ], + [ + 13.3119291, + 52.692628101 + ], + [ + 13.3111775, + 52.692857001 + ], + [ + 13.3104648, + 52.693075401 + ], + [ + 13.3097556, + 52.693291001 + ], + [ + 13.3090289, + 52.693513601 + ], + [ + 13.3083177, + 52.693730701 + ], + [ + 13.3073633, + 52.694022501 + ], + [ + 13.3064136, + 52.694311201 + ], + [ + 13.3056931, + 52.694532501 + ], + [ + 13.3049833, + 52.694748801 + ], + [ + 13.3040331, + 52.695038501 + ], + [ + 13.3028429, + 52.695399401 + ], + [ + 13.3016344, + 52.695759701 + ], + [ + 13.3004296, + 52.696109501 + ], + [ + 13.2992166, + 52.696448701 + ], + [ + 13.298494, + 52.696644301 + ], + [ + 13.297757, + 52.696839501 + ], + [ + 13.296751, + 52.697094101 + ], + [ + 13.295779, + 52.697328701 + ], + [ + 13.2945174, + 52.697617801 + ], + [ + 13.2941401, + 52.697701801 + ], + [ + 13.2937655, + 52.697780901 + ], + [ + 13.2927565, + 52.697992601 + ], + [ + 13.2920005, + 52.698144901 + ], + [ + 13.2909871, + 52.698337901 + ], + [ + 13.2902408, + 52.698473201 + ], + [ + 13.2894944, + 52.698603601 + ], + [ + 13.2889441, + 52.698696001 + ], + [ + 13.2881765, + 52.698819301 + ], + [ + 13.2873968, + 52.698939301 + ], + [ + 13.2866225, + 52.699054501 + ], + [ + 13.2853163, + 52.699232801 + ], + [ + 13.2839552, + 52.699399801 + ], + [ + 13.2829546, + 52.699512701 + ], + [ + 13.2822443, + 52.699584501 + ], + [ + 13.2819539, + 52.699613001 + ], + [ + 13.2803328, + 52.699761901 + ], + [ + 13.2795321, + 52.699824901 + ], + [ + 13.2787445, + 52.699881001 + ], + [ + 13.2776963, + 52.699947501 + ], + [ + 13.2758581, + 52.700047001 + ], + [ + 13.2739965, + 52.700112401 + ], + [ + 13.2732431, + 52.700128901 + ], + [ + 13.2726954, + 52.700136001 + ], + [ + 13.2721522, + 52.700141601 + ], + [ + 13.2715944, + 52.700147401 + ], + [ + 13.2707995, + 52.700147801 + ], + [ + 13.2700344, + 52.700142201 + ], + [ + 13.268679, + 52.700126501 + ], + [ + 13.266821, + 52.700086201 + ], + [ + 13.2644482, + 52.700015101 + ], + [ + 13.2625322, + 52.699957701 + ], + [ + 13.2606904, + 52.699902001 + ], + [ + 13.2598804, + 52.699877701 + ], + [ + 13.2590796, + 52.699852201 + ], + [ + 13.2574975, + 52.699804201 + ], + [ + 13.2521846, + 52.699641601 + ], + [ + 13.251592, + 52.699624601 + ], + [ + 13.2506114, + 52.699594401 + ], + [ + 13.2487258, + 52.699537501 + ], + [ + 13.2468706, + 52.699482801 + ], + [ + 13.2463363, + 52.699472701 + ], + [ + 13.245529, + 52.699459401 + ], + [ + 13.2448726, + 52.699450501 + ], + [ + 13.2441908, + 52.699447701 + ], + [ + 13.2433918, + 52.699446801 + ], + [ + 13.2425979, + 52.699451901 + ], + [ + 13.2420605, + 52.699457501 + ], + [ + 13.2412642, + 52.699468701 + ], + [ + 13.240465, + 52.699485701 + ], + [ + 13.2398057, + 52.699503501 + ], + [ + 13.2391463, + 52.699524901 + ], + [ + 13.2383288, + 52.699556301 + ], + [ + 13.2378099, + 52.699577101 + ], + [ + 13.2372785, + 52.699603201 + ], + [ + 13.2367379, + 52.699629401 + ], + [ + 13.2359465, + 52.699672901 + ], + [ + 13.2354249, + 52.699704301 + ], + [ + 13.234884, + 52.699740001 + ], + [ + 13.2343575, + 52.699775001 + ], + [ + 13.2335648, + 52.699833101 + ], + [ + 13.2325074, + 52.699920801 + ], + [ + 13.2319773, + 52.699963401 + ], + [ + 13.23145, + 52.700013601 + ], + [ + 13.2306738, + 52.700088101 + ], + [ + 13.2301359, + 52.700141901 + ], + [ + 13.2296165, + 52.700195801 + ], + [ + 13.2290862, + 52.700254601 + ], + [ + 13.2285653, + 52.700311901 + ], + [ + 13.2280069, + 52.700378401 + ], + [ + 13.2275145, + 52.700442401 + ], + [ + 13.2270057, + 52.700501701 + ], + [ + 13.2264806, + 52.700568101 + ], + [ + 13.22596, + 52.700637601 + ], + [ + 13.2254418, + 52.700707901 + ], + [ + 13.2249208, + 52.700783801 + ], + [ + 13.224408, + 52.700857601 + ], + [ + 13.2238886, + 52.700936301 + ], + [ + 13.2233808, + 52.701015501 + ], + [ + 13.2228522, + 52.701101101 + ], + [ + 13.2221852, + 52.701208801 + ], + [ + 13.2215723, + 52.701309501 + ], + [ + 13.2208104, + 52.701433901 + ], + [ + 13.2195064, + 52.701646401 + ], + [ + 13.2187397, + 52.701771801 + ], + [ + 13.2175699, + 52.701966501 + ], + [ + 13.216848, + 52.702083201 + ], + [ + 13.2153909, + 52.702326701 + ], + [ + 13.2146253, + 52.702451901 + ], + [ + 13.2109904, + 52.703041901 + ], + [ + 13.2103856, + 52.703140701 + ], + [ + 13.2097442, + 52.703246801 + ], + [ + 13.2089735, + 52.703374201 + ], + [ + 13.2082099, + 52.703498101 + ], + [ + 13.206652, + 52.703754801 + ], + [ + 13.2058638, + 52.703884101 + ], + [ + 13.2050109, + 52.704029201 + ], + [ + 13.2020282, + 52.704508601 + ], + [ + 13.201516, + 52.704595601 + ], + [ + 13.2009946, + 52.704666801 + ], + [ + 13.2004784, + 52.704742301 + ], + [ + 13.1996774, + 52.704853601 + ], + [ + 13.1989138, + 52.704954701 + ], + [ + 13.1983902, + 52.705021301 + ], + [ + 13.197368, + 52.705142601 + ], + [ + 13.1971651, + 52.705165301 + ], + [ + 13.1947258, + 52.705413901 + ], + [ + 13.1933359, + 52.705521401 + ], + [ + 13.1916206, + 52.705639701 + ], + [ + 13.1903984, + 52.705709101 + ], + [ + 13.1892256, + 52.705762801 + ], + [ + 13.1882923, + 52.705791401 + ], + [ + 13.1873024, + 52.705821301 + ], + [ + 13.1864156, + 52.705835501 + ], + [ + 13.1850439, + 52.705848501 + ], + [ + 13.1829965, + 52.705840501 + ], + [ + 13.1782751, + 52.705830501 + ], + [ + 13.1769894, + 52.705826301 + ], + [ + 13.170669, + 52.705800701 + ], + [ + 13.1704343, + 52.705800001 + ], + [ + 13.1673221, + 52.705788101 + ], + [ + 13.1633508, + 52.705781101 + ], + [ + 13.1608247, + 52.705771801 + ], + [ + 13.1574743, + 52.705751401 + ], + [ + 13.1505018, + 52.705738801 + ], + [ + 13.1488904, + 52.705738701 + ], + [ + 13.1483573, + 52.705738201 + ], + [ + 13.1465075, + 52.705751601 + ], + [ + 13.1451736, + 52.705774801 + ], + [ + 13.1408561, + 52.705891601 + ], + [ + 13.1405182, + 52.705906001 + ], + [ + 13.1369367, + 52.706047201 + ], + [ + 13.1321208, + 52.706354301 + ], + [ + 13.1230679, + 52.707098401 + ], + [ + 13.1210364, + 52.707247501 + ], + [ + 13.1184507, + 52.707390501 + ], + [ + 13.1157296, + 52.707470901 + ], + [ + 13.1132743, + 52.707502501 + ], + [ + 13.1127468, + 52.707502101 + ], + [ + 13.1106453, + 52.707485301 + ], + [ + 13.1082385, + 52.707403901 + ], + [ + 13.1063728, + 52.707328301 + ], + [ + 13.1037043, + 52.707165701 + ], + [ + 13.1014508, + 52.706991701 + ], + [ + 13.0995621, + 52.706819601 + ], + [ + 13.0972065, + 52.706556301 + ], + [ + 13.0961355, + 52.706434501 + ], + [ + 13.0868192, + 52.705385801 + ], + [ + 13.0855394, + 52.705252401 + ], + [ + 13.0838064, + 52.705093901 + ], + [ + 13.0819993, + 52.704943301 + ], + [ + 13.0796545, + 52.704789001 + ], + [ + 13.0786962, + 52.704750501 + ], + [ + 13.0754824, + 52.704642001 + ], + [ + 13.073024, + 52.704624001 + ], + [ + 13.0701767, + 52.704663201 + ], + [ + 13.068357, + 52.704710801 + ], + [ + 13.0664692, + 52.704788001 + ], + [ + 13.0648389, + 52.704882701 + ], + [ + 13.0627896, + 52.705001101 + ], + [ + 13.0626124, + 52.705015901 + ], + [ + 13.0599629, + 52.705231501 + ], + [ + 13.0586153, + 52.705368301 + ], + [ + 13.0569249, + 52.705573701 + ], + [ + 13.0553449, + 52.705790801 + ], + [ + 13.0531017, + 52.706095001 + ], + [ + 13.0498621, + 52.706604501 + ], + [ + 13.0486955, + 52.706808901 + ], + [ + 13.0477429, + 52.706964701 + ], + [ + 13.0475724, + 52.706993801 + ], + [ + 13.04363, + 52.707664601 + ], + [ + 13.0433656, + 52.707709101 + ], + [ + 13.0402464, + 52.708254801 + ], + [ + 13.0381759, + 52.708617001 + ], + [ + 13.036151, + 52.708945001 + ], + [ + 13.033489335, + 52.709395753 + ] + ] + } + }, + { + "identifier": "2023-006668--vi-bs.2026-03-31_08-00-00-000.devi-bs.2025-05-16_00-00-00-000.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.48267586018879,13.75446993701652,52.46499921950395,13.787603750881622", + "point": "52.48267586018879,13.75446993701652", + "startLcPosition": "5", + "impact": { + "lower": "Kalkberge", + "upper": "Berlin-Hellersdorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Spreeau", + "title": "A10 | Berlin-Hellersdorf - Kalkberge", + "startTimestamp": "2026-03-31T08:00:00+02:00", + "coordinate": { + "lat": 52.48267586018879, + "long": 13.75446993701652 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.03.26 um 08:00 Uhr", + "Ende: 27.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "A10: Dreieck Barnim -> Dreieck Spreeau, zwischen 1.8 km hinter AS Berlin-Hellersdorf und 1.2 km vor Kalkberge", + "", + "L\u00e4nge: 3.08 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A10, Schwei\u00dftechnische Instandsetzung der M\u00fchlenflie\u00dfbr\u00fccke BW 13 beide Teilbauwerke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.754469937, + 52.48267586 + ], + [ + 13.7544944, + 52.482507101 + ], + [ + 13.7545475, + 52.482246101 + ], + [ + 13.7546182, + 52.481898801 + ], + [ + 13.7548218, + 52.481298001 + ], + [ + 13.7550821, + 52.480710501 + ], + [ + 13.7553534, + 52.480279201 + ], + [ + 13.7556247, + 52.479848001 + ], + [ + 13.7556623, + 52.479801701 + ], + [ + 13.7560865, + 52.479278501 + ], + [ + 13.7566292, + 52.478693601 + ], + [ + 13.7568396, + 52.478491001 + ], + [ + 13.7574274, + 52.477999401 + ], + [ + 13.7580416, + 52.477545601 + ], + [ + 13.7591607, + 52.476845201 + ], + [ + 13.7593715, + 52.476743201 + ], + [ + 13.7601806, + 52.476356801 + ], + [ + 13.761043, + 52.475965001 + ], + [ + 13.7629911, + 52.475183301 + ], + [ + 13.7641076, + 52.474772601 + ], + [ + 13.7646945, + 52.474524501 + ], + [ + 13.7741978, + 52.470877901 + ], + [ + 13.7778975, + 52.469423301 + ], + [ + 13.7785841, + 52.469151401 + ], + [ + 13.7794253, + 52.468818601 + ], + [ + 13.7800379, + 52.468535301 + ], + [ + 13.7812577, + 52.467956901 + ], + [ + 13.7862315, + 52.465644201 + ], + [ + 13.787603751, + 52.46499922 + ] + ] + } + }, + { + "identifier": "2023-006668--vi-bs.2026-03-10_12-00-00-000.devi-bs.2025-05-16_00-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.48267586018879,13.75446993701652,52.46499921950395,13.787603750881622", + "point": "52.48267586018879,13.75446993701652", + "startLcPosition": "5", + "impact": { + "lower": "Kalkberge", + "upper": "Berlin-Hellersdorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Spreeau", + "title": "A10 | Berlin-Hellersdorf - Kalkberge", + "startTimestamp": "2026-03-10T12:00:00+01:00", + "coordinate": { + "lat": 52.48267586018879, + "long": 13.75446993701652 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 12:00 Uhr", + "Ende: 30.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "A10: Dreieck Barnim -> Dreieck Spreeau, zwischen 1.8 km hinter AS Berlin-Hellersdorf und 1.2 km vor Kalkberge", + "", + "L\u00e4nge: 3.08 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A10, Schwei\u00dftechnische Instandsetzung der M\u00fchlenflie\u00dfbr\u00fccke BW 13 beide Teilbauwerke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.754469937, + 52.48267586 + ], + [ + 13.7544944, + 52.482507101 + ], + [ + 13.7545475, + 52.482246101 + ], + [ + 13.7546182, + 52.481898801 + ], + [ + 13.7548218, + 52.481298001 + ], + [ + 13.7550821, + 52.480710501 + ], + [ + 13.7553534, + 52.480279201 + ], + [ + 13.7556247, + 52.479848001 + ], + [ + 13.7556623, + 52.479801701 + ], + [ + 13.7560865, + 52.479278501 + ], + [ + 13.7566292, + 52.478693601 + ], + [ + 13.7568396, + 52.478491001 + ], + [ + 13.7574274, + 52.477999401 + ], + [ + 13.7580416, + 52.477545601 + ], + [ + 13.7591607, + 52.476845201 + ], + [ + 13.7593715, + 52.476743201 + ], + [ + 13.7601806, + 52.476356801 + ], + [ + 13.761043, + 52.475965001 + ], + [ + 13.7629911, + 52.475183301 + ], + [ + 13.7641076, + 52.474772601 + ], + [ + 13.7646945, + 52.474524501 + ], + [ + 13.7741978, + 52.470877901 + ], + [ + 13.7778975, + 52.469423301 + ], + [ + 13.7785841, + 52.469151401 + ], + [ + 13.7794253, + 52.468818601 + ], + [ + 13.7800379, + 52.468535301 + ], + [ + 13.7812577, + 52.467956901 + ], + [ + 13.7862315, + 52.465644201 + ], + [ + 13.787603751, + 52.46499922 + ] + ] + } + }, + { + "identifier": "2023-006668--vi-fbm.2026-03-31_08-00-00-000.devi-bs.2025-05-16_00-00-00-000.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.48267586018879,13.75446993701652,52.468648602652785,13.779792901422793", + "point": "52.48267586018879,13.75446993701652", + "startLcPosition": "5", + "impact": { + "lower": "Kalkberge", + "upper": "Berlin-Hellersdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Spreeau", + "title": "A10 | Berlin-Hellersdorf - Kalkberge", + "coordinate": { + "lat": 52.48267586018879, + "long": 13.75446993701652 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 10:00 bis 19:00 Uhr", + "21.04.26 von 07:30 bis 19:00 Uhr", + "22.04.26 von 07:30 bis 19:00 Uhr", + "23.04.26 von 07:30 bis 19:00 Uhr", + "24.04.26 von 07:30 bis 12:00 Uhr", + "", + "A10: Dreieck Barnim -> Dreieck Spreeau, zwischen 1.8 km hinter AS Berlin-Hellersdorf und 1.9 km vor Kalkberge", + "", + "L\u00e4nge: 2.41 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A10, Schwei\u00dftechnische Instandsetzung der M\u00fchlenflie\u00dfbr\u00fccke BW 13 beide Teilbauwerke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.754469937, + 52.48267586 + ], + [ + 13.7544944, + 52.482507101 + ], + [ + 13.7545475, + 52.482246101 + ], + [ + 13.7546182, + 52.481898801 + ], + [ + 13.7548218, + 52.481298001 + ], + [ + 13.7550821, + 52.480710501 + ], + [ + 13.7553534, + 52.480279201 + ], + [ + 13.7556247, + 52.479848001 + ], + [ + 13.7556623, + 52.479801701 + ], + [ + 13.7560865, + 52.479278501 + ], + [ + 13.7566292, + 52.478693601 + ], + [ + 13.7568396, + 52.478491001 + ], + [ + 13.7574274, + 52.477999401 + ], + [ + 13.7580416, + 52.477545601 + ], + [ + 13.7591607, + 52.476845201 + ], + [ + 13.7593715, + 52.476743201 + ], + [ + 13.7601806, + 52.476356801 + ], + [ + 13.761043, + 52.475965001 + ], + [ + 13.7629911, + 52.475183301 + ], + [ + 13.7641076, + 52.474772601 + ], + [ + 13.7646945, + 52.474524501 + ], + [ + 13.7741978, + 52.470877901 + ], + [ + 13.7778975, + 52.469423301 + ], + [ + 13.7785841, + 52.469151401 + ], + [ + 13.7794253, + 52.468818601 + ], + [ + 13.779792901, + 52.468648603 + ] + ] + } + }, + { + "identifier": "2023-006668--vi-bs.2026-03-31_08-00-00-000.devi-bs.2025-05-16_00-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.4651086671944,13.787740710216339,52.4826872456648,13.754681423297221", + "point": "52.4651086671944,13.787740710216339", + "startLcPosition": "7", + "impact": { + "lower": "Berlin-Hellersdorf", + "upper": "Kalkberge", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Spreeau -> Dreieck Barnim", + "title": "A10 | Kalkberge - Berlin-Hellersdorf", + "startTimestamp": "2026-03-31T08:00:00+02:00", + "coordinate": { + "lat": 52.4651086671944, + "long": 13.787740710216339 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.03.26 um 08:00 Uhr", + "Ende: 27.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "A10: Dreieck Spreeau -> Dreieck Barnim, zwischen 1.2 km hinter Kalkberge und 1.8 km vor AS Berlin-Hellersdorf", + "", + "L\u00e4nge: 3.08 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.75 m", + "", + "A10, Schwei\u00dftechnische Instandsetzung der M\u00fchlenflie\u00dfbr\u00fccke BW 13 beide Teilbauwerke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.78774071, + 52.465108667 + ], + [ + 13.7863624, + 52.465748901 + ], + [ + 13.7814031, + 52.468072101 + ], + [ + 13.7801865, + 52.468644601 + ], + [ + 13.7795725, + 52.468926901 + ], + [ + 13.7788846, + 52.469188001 + ], + [ + 13.7782408, + 52.469433701 + ], + [ + 13.7743087, + 52.470984401 + ], + [ + 13.771788, + 52.471968101 + ], + [ + 13.7645245, + 52.474761101 + ], + [ + 13.7625863, + 52.475517001 + ], + [ + 13.7617388, + 52.475846701 + ], + [ + 13.7607609, + 52.476271501 + ], + [ + 13.760484, + 52.476403001 + ], + [ + 13.7599594, + 52.476668601 + ], + [ + 13.7589478, + 52.477212001 + ], + [ + 13.7581786, + 52.477697601 + ], + [ + 13.7576258, + 52.478090801 + ], + [ + 13.7571238, + 52.478485601 + ], + [ + 13.7567185, + 52.478874901 + ], + [ + 13.7563638, + 52.479255201 + ], + [ + 13.7558492, + 52.479911701 + ], + [ + 13.7553143, + 52.480784901 + ], + [ + 13.7551841, + 52.481055901 + ], + [ + 13.7550404, + 52.481348401 + ], + [ + 13.7548356, + 52.481924901 + ], + [ + 13.7547032, + 52.482536101 + ], + [ + 13.754681423, + 52.482687246 + ] + ] + } + }, + { + "identifier": "2023-006668--vi-bs.2026-03-10_12-00-00-000.devi-bs.2025-05-16_00-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.4651086671944,13.787740710216339,52.4826872456648,13.754681423297221", + "point": "52.4651086671944,13.787740710216339", + "startLcPosition": "7", + "impact": { + "lower": "Berlin-Hellersdorf", + "upper": "Kalkberge", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Spreeau -> Dreieck Barnim", + "title": "A10 | Kalkberge - Berlin-Hellersdorf", + "startTimestamp": "2026-03-10T12:00:00+01:00", + "coordinate": { + "lat": 52.4651086671944, + "long": 13.787740710216339 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 12:00 Uhr", + "Ende: 30.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "A10: Dreieck Spreeau -> Dreieck Barnim, zwischen 1.2 km hinter Kalkberge und 1.8 km vor AS Berlin-Hellersdorf", + "", + "L\u00e4nge: 3.08 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.15 m", + "", + "A10, Schwei\u00dftechnische Instandsetzung der M\u00fchlenflie\u00dfbr\u00fccke BW 13 beide Teilbauwerke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.78774071, + 52.465108667 + ], + [ + 13.7863624, + 52.465748901 + ], + [ + 13.7814031, + 52.468072101 + ], + [ + 13.7801865, + 52.468644601 + ], + [ + 13.7795725, + 52.468926901 + ], + [ + 13.7788846, + 52.469188001 + ], + [ + 13.7782408, + 52.469433701 + ], + [ + 13.7743087, + 52.470984401 + ], + [ + 13.771788, + 52.471968101 + ], + [ + 13.7645245, + 52.474761101 + ], + [ + 13.7625863, + 52.475517001 + ], + [ + 13.7617388, + 52.475846701 + ], + [ + 13.7607609, + 52.476271501 + ], + [ + 13.760484, + 52.476403001 + ], + [ + 13.7599594, + 52.476668601 + ], + [ + 13.7589478, + 52.477212001 + ], + [ + 13.7581786, + 52.477697601 + ], + [ + 13.7576258, + 52.478090801 + ], + [ + 13.7571238, + 52.478485601 + ], + [ + 13.7567185, + 52.478874901 + ], + [ + 13.7563638, + 52.479255201 + ], + [ + 13.7558492, + 52.479911701 + ], + [ + 13.7553143, + 52.480784901 + ], + [ + 13.7551841, + 52.481055901 + ], + [ + 13.7550404, + 52.481348401 + ], + [ + 13.7548356, + 52.481924901 + ], + [ + 13.7547032, + 52.482536101 + ], + [ + 13.754681423, + 52.482687246 + ] + ] + } + }, + { + "identifier": "2024-047150--vi-bs.2025-11-10_18-00-00-000.devi-zus.2025-03-29_00-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.39277455794948,13.786466746232511,52.3255192339673,13.746343184923234", + "point": "52.39277455794948,13.786466746232511", + "startLcPosition": "9", + "impact": { + "lower": "Spreeau", + "upper": "Erkner", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Spreeau", + "title": "A10 | Erkner - Spreeau", + "startTimestamp": "2025-11-10T18:00:00+01:00", + "coordinate": { + "lat": 52.39277455794948, + "long": 13.786466746232511 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.11.25 um 18:00 Uhr", + "Ende: 31.08.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.30)", + "", + "A10: Dreieck Barnim -> Dreieck Spreeau, zwischen 3.4 km hinter AS Erkner und 0.1 km vor AD Spreeau", + "", + "L\u00e4nge: 8.17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A 10, Fahrbahnerneuerung zwischen AS Freienbrink und AS K\u00f6nigs Wusterhausen (km 34,126-49,586), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.786466746, + 52.392774558 + ], + [ + 13.7864954, + 52.391335401 + ], + [ + 13.7864952, + 52.389850601 + ], + [ + 13.7864923, + 52.389625401 + ], + [ + 13.7864353, + 52.389203201 + ], + [ + 13.7863581, + 52.388838501 + ], + [ + 13.7862284, + 52.388415201 + ], + [ + 13.7860097, + 52.387818201 + ], + [ + 13.7858073, + 52.387406401 + ], + [ + 13.7857255, + 52.387264701 + ], + [ + 13.7855859, + 52.387022801 + ], + [ + 13.7853303, + 52.386646201 + ], + [ + 13.7852291, + 52.386504001 + ], + [ + 13.7849742, + 52.386205801 + ], + [ + 13.7844765, + 52.385623601 + ], + [ + 13.7841191, + 52.385276601 + ], + [ + 13.7817389, + 52.383310801 + ], + [ + 13.7805689, + 52.382378201 + ], + [ + 13.7752569, + 52.378045901 + ], + [ + 13.7738092, + 52.376872301 + ], + [ + 13.7726642, + 52.375957501 + ], + [ + 13.7714627, + 52.374983701 + ], + [ + 13.7707704, + 52.374425201 + ], + [ + 13.7702185, + 52.373980001 + ], + [ + 13.7689385, + 52.372932001 + ], + [ + 13.7678625, + 52.371997501 + ], + [ + 13.7667097, + 52.370907801 + ], + [ + 13.7659023, + 52.370069701 + ], + [ + 13.765148, + 52.369215101 + ], + [ + 13.7644399, + 52.368346801 + ], + [ + 13.7638951, + 52.367607201 + ], + [ + 13.7631864, + 52.366560301 + ], + [ + 13.7625558, + 52.365491801 + ], + [ + 13.7621408, + 52.364718501 + ], + [ + 13.7619108, + 52.364246801 + ], + [ + 13.7616346, + 52.363630701 + ], + [ + 13.7613787, + 52.362998601 + ], + [ + 13.7607137, + 52.361100901 + ], + [ + 13.7601995, + 52.359511101 + ], + [ + 13.7587477, + 52.354979901 + ], + [ + 13.7585798, + 52.354450601 + ], + [ + 13.7573176, + 52.350502901 + ], + [ + 13.7570752, + 52.349758401 + ], + [ + 13.7554454, + 52.344657201 + ], + [ + 13.7543528, + 52.341245101 + ], + [ + 13.7536784, + 52.339138501 + ], + [ + 13.7530039, + 52.337031901 + ], + [ + 13.7526207, + 52.335866201 + ], + [ + 13.7521273, + 52.334319001 + ], + [ + 13.7515833, + 52.332612901 + ], + [ + 13.751363, + 52.331993801 + ], + [ + 13.7513035, + 52.331818501 + ], + [ + 13.7509612, + 52.330809401 + ], + [ + 13.7508431, + 52.330293801 + ], + [ + 13.7506008, + 52.329609801 + ], + [ + 13.7503218, + 52.328994401 + ], + [ + 13.7500331, + 52.328507201 + ], + [ + 13.7497005, + 52.328041701 + ], + [ + 13.7492606, + 52.327536801 + ], + [ + 13.74881, + 52.327123701 + ], + [ + 13.7483487, + 52.326730301 + ], + [ + 13.7477049, + 52.326258201 + ], + [ + 13.7470398, + 52.325851601 + ], + [ + 13.746343185, + 52.325519234 + ] + ] + } + }, + { + "identifier": "2024-047150--vi-bs.2025-11-10_18-00-00-000.devi-zus.2025-03-29_00-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.325400850557116,13.746495658234208,52.392776485633135,13.78669314635456", + "point": "52.325400850557116,13.746495658234208", + "startLcPosition": "11", + "impact": { + "lower": "Erkner", + "upper": "Spreeau", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Spreeau -> Dreieck Barnim", + "title": "A10 | Spreeau - Erkner", + "startTimestamp": "2025-11-10T18:00:00+01:00", + "coordinate": { + "lat": 52.325400850557116, + "long": 13.746495658234208 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.11.25 um 18:00 Uhr", + "Ende: 31.08.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.30)", + "", + "A10: Dreieck Spreeau -> Dreieck Barnim, zwischen 0.1 km hinter AD Spreeau und 3.4 km vor AS Erkner", + "", + "L\u00e4nge: 8.17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.9 m", + "", + "A 10, Fahrbahnerneuerung zwischen AS Freienbrink und AS K\u00f6nigs Wusterhausen (km 34,126-49,586), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.746495658, + 52.325400851 + ], + [ + 13.7472114, + 52.325753301 + ], + [ + 13.7480032, + 52.326243401 + ], + [ + 13.7489602, + 52.326979401 + ], + [ + 13.7494623, + 52.327456501 + ], + [ + 13.749635, + 52.327655901 + ], + [ + 13.7499451, + 52.328013801 + ], + [ + 13.7502992, + 52.328531801 + ], + [ + 13.7505382, + 52.328959101 + ], + [ + 13.7506658, + 52.329219601 + ], + [ + 13.7507488, + 52.329410201 + ], + [ + 13.7508789, + 52.329742301 + ], + [ + 13.7509587, + 52.329916901 + ], + [ + 13.7517308, + 52.332255401 + ], + [ + 13.7518508, + 52.332652201 + ], + [ + 13.7522589, + 52.333930701 + ], + [ + 13.7525214, + 52.334793801 + ], + [ + 13.7528546, + 52.335840601 + ], + [ + 13.7532287, + 52.337004101 + ], + [ + 13.7556697, + 52.344636601 + ], + [ + 13.7572839, + 52.349676701 + ], + [ + 13.7575241, + 52.350418501 + ], + [ + 13.7587299, + 52.354175401 + ], + [ + 13.7588988, + 52.354715301 + ], + [ + 13.7604237, + 52.359468501 + ], + [ + 13.7609294, + 52.361053801 + ], + [ + 13.7615926, + 52.362949801 + ], + [ + 13.7618493, + 52.363580001 + ], + [ + 13.7621273, + 52.364196401 + ], + [ + 13.7623535, + 52.364662601 + ], + [ + 13.7627596, + 52.365429201 + ], + [ + 13.7633894, + 52.366490101 + ], + [ + 13.7640909, + 52.367535801 + ], + [ + 13.7646383, + 52.368272201 + ], + [ + 13.7649907, + 52.368708401 + ], + [ + 13.7653431, + 52.369144601 + ], + [ + 13.7660944, + 52.369994601 + ], + [ + 13.7668963, + 52.370827801 + ], + [ + 13.7680407, + 52.371911101 + ], + [ + 13.7691276, + 52.372853201 + ], + [ + 13.7703987, + 52.373899201 + ], + [ + 13.7716604, + 52.374910101 + ], + [ + 13.7720604, + 52.375234701 + ], + [ + 13.7728412, + 52.375868401 + ], + [ + 13.7741027, + 52.376882501 + ], + [ + 13.7754119, + 52.377940701 + ], + [ + 13.779847, + 52.381480501 + ], + [ + 13.7808153, + 52.382270801 + ], + [ + 13.7819549, + 52.383197401 + ], + [ + 13.7840083, + 52.384863901 + ], + [ + 13.7848608, + 52.385660101 + ], + [ + 13.7851143, + 52.385923301 + ], + [ + 13.7855075, + 52.386466201 + ], + [ + 13.7858176, + 52.386936701 + ], + [ + 13.7861173, + 52.387482001 + ], + [ + 13.7862809, + 52.387833201 + ], + [ + 13.7864863, + 52.388396701 + ], + [ + 13.786616, + 52.388869901 + ], + [ + 13.786688, + 52.389297401 + ], + [ + 13.7867353, + 52.389781101 + ], + [ + 13.7867478, + 52.390208101 + ], + [ + 13.7867462, + 52.390578401 + ], + [ + 13.7867477, + 52.390622401 + ], + [ + 13.786693146, + 52.392776486 + ] + ] + } + }, + { + "identifier": "2026-017558--vi-bs.2026-04-09_08-00-00-000_020.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.31611176064657,13.492108216355758,52.3161512749085,13.4923029655045", + "point": "52.31611176064657,13.492108216355758", + "startLcPosition": "19", + "impact": { + "lower": "Am Fichtenplan-S\u00fcd", + "upper": "Rangsdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Potsdam -> Sch\u00f6nefelder Kreuz", + "title": "A10 | Rangsdorf - Am Fichtenplan-S\u00fcd", + "coordinate": { + "lat": 52.31611176064657, + "long": 13.492108216355758 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "10.04.26 von 08:00 bis 13:00 Uhr", + "", + "A10: Dreieck Potsdam -> Sch\u00f6nefelder Kreuz, zwischen 3.0 km hinter AS Rangsdorf und 0.2 km vor Am Fichtenplan-S\u00fcd", + "", + "L\u00e4nge: 0.01 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 von Rangsdorf (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.492108216, + 52.316111761 + ], + [ + 13.492302966, + 52.316151275 + ] + ] + } + }, + { + "identifier": "2026-017556--vi-bs.2026-04-13_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_017.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.30306670254837,13.102160247533202,52.2924457562237,12.926447510126058", + "point": "52.30306670254837,13.102160247533202", + "startLcPosition": "25", + "impact": { + "lower": "Potsdam", + "upper": "Siethener Elsbruch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dreieck Potsdam", + "title": "A10 | Siethener Elsbruch - Potsdam", + "coordinate": { + "lat": 52.30306670254837, + "long": 13.102160247533202 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A10: Sch\u00f6nefelder Kreuz -> Dreieck Potsdam, zwischen 5.6 km hinter Siethener Elsbruch und 0.7 km vor AD Potsdam", + "", + "L\u00e4nge: 12.44 km | Maximale Durchfahrtsbreite: 14.5 m", + "", + "Streckenreinigung KW 16" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.102160248, + 52.303066703 + ], + [ + 13.1012395, + 52.303075701 + ], + [ + 13.100445, + 52.303052401 + ], + [ + 13.0998241, + 52.303014701 + ], + [ + 13.099306, + 52.302970501 + ], + [ + 13.0987423, + 52.302911401 + ], + [ + 13.098433, + 52.302879801 + ], + [ + 13.0979021, + 52.302802601 + ], + [ + 13.0972927, + 52.302709201 + ], + [ + 13.0957191, + 52.302400101 + ], + [ + 13.0952209, + 52.302295101 + ], + [ + 13.092854, + 52.301835301 + ], + [ + 13.0868972, + 52.300669501 + ], + [ + 13.0864371, + 52.300584401 + ], + [ + 13.085751, + 52.300471101 + ], + [ + 13.0851179, + 52.300373001 + ], + [ + 13.0842403, + 52.300280801 + ], + [ + 13.0835584, + 52.300226001 + ], + [ + 13.0829172, + 52.300196901 + ], + [ + 13.0821601, + 52.300184301 + ], + [ + 13.0812379, + 52.300193201 + ], + [ + 13.0791828, + 52.300265501 + ], + [ + 13.0723108, + 52.300508201 + ], + [ + 13.0719123, + 52.300521301 + ], + [ + 13.0708686, + 52.300558001 + ], + [ + 13.0655377, + 52.300737201 + ], + [ + 13.0621804, + 52.300866101 + ], + [ + 13.061654, + 52.300887901 + ], + [ + 13.0585331, + 52.300990301 + ], + [ + 13.0530294, + 52.301176001 + ], + [ + 13.0507653, + 52.301297401 + ], + [ + 13.0493335, + 52.301353201 + ], + [ + 13.0485404, + 52.301343301 + ], + [ + 13.0477135, + 52.301308701 + ], + [ + 13.0469272, + 52.301236201 + ], + [ + 13.0462051, + 52.301144301 + ], + [ + 13.0455751, + 52.301045301 + ], + [ + 13.0447209, + 52.300888901 + ], + [ + 13.0441814, + 52.300760801 + ], + [ + 13.043507, + 52.300564601 + ], + [ + 13.0430332, + 52.300423701 + ], + [ + 13.0424451, + 52.300223801 + ], + [ + 13.0409433, + 52.299666701 + ], + [ + 13.0402182, + 52.299430301 + ], + [ + 13.0394133, + 52.299198001 + ], + [ + 13.0389723, + 52.299089101 + ], + [ + 13.0381165, + 52.298902001 + ], + [ + 13.037428, + 52.298764701 + ], + [ + 13.0367859, + 52.298675801 + ], + [ + 13.0365384, + 52.298647601 + ], + [ + 13.0361365, + 52.298620201 + ], + [ + 13.0353014, + 52.298557601 + ], + [ + 13.0343702, + 52.298529101 + ], + [ + 13.0334286, + 52.298529001 + ], + [ + 13.0328749, + 52.298569901 + ], + [ + 13.032094, + 52.298630001 + ], + [ + 13.0313134, + 52.298727701 + ], + [ + 13.0303329, + 52.298891601 + ], + [ + 13.0293779, + 52.299088501 + ], + [ + 13.028328, + 52.299347801 + ], + [ + 13.0269716, + 52.299720801 + ], + [ + 13.0263289, + 52.299901401 + ], + [ + 13.0260959, + 52.299965901 + ], + [ + 13.0253729, + 52.300168301 + ], + [ + 13.0246122, + 52.300378001 + ], + [ + 13.0196365, + 52.301812701 + ], + [ + 13.0171547, + 52.302530401 + ], + [ + 13.0151353, + 52.303073301 + ], + [ + 13.0142312, + 52.303268601 + ], + [ + 13.0127922, + 52.303529801 + ], + [ + 13.0124653, + 52.303577901 + ], + [ + 13.0119088, + 52.303651001 + ], + [ + 13.0113757, + 52.303721001 + ], + [ + 13.0102419, + 52.303816501 + ], + [ + 13.0093094, + 52.303866301 + ], + [ + 13.0091214, + 52.303875501 + ], + [ + 13.0082094, + 52.303904601 + ], + [ + 13.0079512, + 52.303904601 + ], + [ + 13.0071618, + 52.303890801 + ], + [ + 13.0061941, + 52.303857301 + ], + [ + 13.0046495, + 52.303788401 + ], + [ + 13.0025477, + 52.303700101 + ], + [ + 13.000633, + 52.303670901 + ], + [ + 12.9953198, + 52.303677701 + ], + [ + 12.9931193, + 52.303701501 + ], + [ + 12.9906234, + 52.303728601 + ], + [ + 12.9861484, + 52.303765201 + ], + [ + 12.9851914, + 52.303769401 + ], + [ + 12.982232, + 52.303782201 + ], + [ + 12.9803872, + 52.303800001 + ], + [ + 12.9782399, + 52.303765201 + ], + [ + 12.977204, + 52.303701001 + ], + [ + 12.9762271, + 52.303615601 + ], + [ + 12.9752851, + 52.303494601 + ], + [ + 12.9742162, + 52.303319701 + ], + [ + 12.9734858, + 52.303190701 + ], + [ + 12.9730721, + 52.303101701 + ], + [ + 12.9728589, + 52.303054901 + ], + [ + 12.970143, + 52.302441501 + ], + [ + 12.9623869, + 52.300672701 + ], + [ + 12.9583477, + 52.299759801 + ], + [ + 12.9524205, + 52.298406201 + ], + [ + 12.9472519, + 52.297228301 + ], + [ + 12.9419553, + 52.296012201 + ], + [ + 12.9359436, + 52.294640901 + ], + [ + 12.9326582, + 52.293863501 + ], + [ + 12.929968, + 52.293250401 + ], + [ + 12.92644751, + 52.292445756 + ] + ] + } + }, + { + "identifier": "2026-014070--vi-bs.2026-04-14_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.298885080601856,13.030371907731947,52.299529306810875,13.027667970812534", + "point": "52.298885080601856,13.030371907731947", + "startLcPosition": "26", + "impact": { + "lower": "Michendorf", + "upper": "Nuthetal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dreieck Potsdam", + "title": "A10 | Nuthetal - Michendorf", + "coordinate": { + "lat": 52.298885080601856, + "long": 13.030371907731947 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "", + "A10: Sch\u00f6nefelder Kreuz -> Dreieck Potsdam, zwischen 3.6 km hinter AD Nuthetal und 0.1 km vor AS Michendorf", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10.75 m", + "", + "Ruhnke Gew\u00e4hrleoistungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.030371908, + 52.298885081 + ], + [ + 13.0303329, + 52.298891601 + ], + [ + 13.0293779, + 52.299088501 + ], + [ + 13.028328, + 52.299347801 + ], + [ + 13.027667971, + 52.299529307 + ] + ] + } + }, + { + "identifier": "2026-017682--vi-bs.2026-04-13_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_021.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.29936105012973,13.02760776080499,52.29889013471376,13.03902975104711", + "point": "52.29936105012973,13.02760776080499", + "startLcPosition": "27", + "impact": { + "lower": "Nuthetal", + "upper": "Michendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Potsdam -> Sch\u00f6nefelder Kreuz", + "title": "A10 | Michendorf - Nuthetal", + "coordinate": { + "lat": 52.29936105012973, + "long": 13.02760776080499 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:00 Uhr", + "", + "A10: Dreieck Potsdam -> Sch\u00f6nefelder Kreuz, zwischen 0.1 km hinter AS Michendorf und 3.0 km vor AD Nuthetal", + "", + "L\u00e4nge: 0.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "Thiendorf Schadstellensanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.027607761, + 52.29936105 + ], + [ + 13.0280209, + 52.299244801 + ], + [ + 13.0291196, + 52.298939001 + ], + [ + 13.0303175, + 52.298684601 + ], + [ + 13.031091, + 52.298561601 + ], + [ + 13.0320989, + 52.298439601 + ], + [ + 13.0331228, + 52.298366101 + ], + [ + 13.0333713, + 52.298355801 + ], + [ + 13.0338606, + 52.298339001 + ], + [ + 13.0344053, + 52.298324001 + ], + [ + 13.0349283, + 52.298337801 + ], + [ + 13.0355654, + 52.298371601 + ], + [ + 13.0360992, + 52.298402301 + ], + [ + 13.0369798, + 52.298501901 + ], + [ + 13.0377209, + 52.298620301 + ], + [ + 13.0385933, + 52.298788901 + ], + [ + 13.039029751, + 52.298890135 + ] + ] + } + }, + { + "identifier": "2026-017556--vi-bs.2026-04-13_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_017.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.29524493704475,12.906630258711754,52.320243738301066,12.854967037982265", + "point": "52.29524493704475,12.906630258711754", + "startLcPosition": "31", + "impact": { + "lower": "Schwielowsee", + "upper": "Potsdam", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dreieck Werder", + "title": "A10 | Potsdam - Schwielowsee", + "coordinate": { + "lat": 52.29524493704475, + "long": 12.906630258711754 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A10: Sch\u00f6nefelder Kreuz -> Dreieck Werder, zwischen 0.9 km hinter AD Potsdam und 0.3 km vor Schwielowsee", + "", + "L\u00e4nge: 4.49 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "Streckenreinigung KW 16" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.906630259, + 52.295244937 + ], + [ + 12.9015058, + 52.297766701 + ], + [ + 12.8907488, + 52.303087201 + ], + [ + 12.8866384, + 52.305130901 + ], + [ + 12.881046, + 52.307910901 + ], + [ + 12.8786837, + 52.309098801 + ], + [ + 12.8770456, + 52.309925301 + ], + [ + 12.8758983, + 52.310480301 + ], + [ + 12.8756858, + 52.310582501 + ], + [ + 12.875099, + 52.310864801 + ], + [ + 12.8744912, + 52.311168501 + ], + [ + 12.8737452, + 52.311529901 + ], + [ + 12.8699992, + 52.313418801 + ], + [ + 12.8643881, + 52.316173501 + ], + [ + 12.8622387, + 52.317214101 + ], + [ + 12.8613931, + 52.317631601 + ], + [ + 12.8595123, + 52.318540901 + ], + [ + 12.8586282, + 52.318928501 + ], + [ + 12.8575672, + 52.319359001 + ], + [ + 12.856484, + 52.319756401 + ], + [ + 12.8556816, + 52.320032501 + ], + [ + 12.854967038, + 52.320243738 + ] + ] + } + }, + { + "identifier": "2026-015670--vi-bs.2026-04-08_08-00-00-000.devi-bs.2026-04-08_08-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.311597220739706,12.873611703162346,52.320243738301066,12.854967037982265", + "point": "52.311597220739706,12.873611703162346", + "startLcPosition": "32", + "impact": { + "lower": "Schwielowsee", + "upper": "Glindow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Potsdam -> Dreieck Werder", + "title": "A10 | Glindow - Schwielowsee", + "coordinate": { + "lat": 52.311597220739706, + "long": 12.873611703162346 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:15 Uhr", + "", + "A10: Dreieck Potsdam -> Dreieck Werder, zwischen 0.2 km hinter AS Glindow und 0.3 km vor Schwielowsee", + "", + "L\u00e4nge: 1.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "BVLT R\u00fcckbau Fundamente" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.873611703, + 52.311597221 + ], + [ + 12.8699992, + 52.313418801 + ], + [ + 12.8643881, + 52.316173501 + ], + [ + 12.8622387, + 52.317214101 + ], + [ + 12.8613931, + 52.317631601 + ], + [ + 12.8595123, + 52.318540901 + ], + [ + 12.8586282, + 52.318928501 + ], + [ + 12.8575672, + 52.319359001 + ], + [ + 12.856484, + 52.319756401 + ], + [ + 12.8556816, + 52.320032501 + ], + [ + 12.854967038, + 52.320243738 + ] + ] + } + }, + { + "identifier": "2026-017682--vi-bs.2026-04-14_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_021.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.3007608522548,12.895064078161978,52.29680051231621,12.903028514854658", + "point": "52.3007608522548,12.895064078161978", + "startLcPosition": "32", + "impact": { + "lower": "Potsdam", + "upper": "Glindow", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Werder -> Sch\u00f6nefelder Kreuz", + "title": "A10 | Glindow - Potsdam", + "coordinate": { + "lat": 52.3007608522548, + "long": 12.895064078161978 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 16:00 Uhr", + "15.04.26 von 08:00 bis 16:00 Uhr", + "", + "A10: Dreieck Werder -> Sch\u00f6nefelder Kreuz, zwischen 1.7 km hinter AS Glindow und 1.2 km vor AD Potsdam", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Thiendorf Schadstellensanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.895064078, + 52.300760852 + ], + [ + 12.8983868, + 52.299115401 + ], + [ + 12.9005591, + 52.298039801 + ], + [ + 12.9019852, + 52.297329501 + ], + [ + 12.903028515, + 52.296800512 + ] + ] + } + }, + { + "identifier": "2024-051921--vi-bs.2026-02-27_08-00-00-000.devi-zus.2025-05-28_00-00-00-000.f.de230", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.356491997282546,12.815027411676011,52.37217713974369,12.816191835474582", + "point": "52.356491997282546,12.815027411676011", + "startLcPosition": "35", + "impact": { + "lower": "Gro\u00df Kreutz", + "upper": "Werder", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Potsdam -> Dreieck Havelland", + "title": "A10 | Werder - Gro\u00df Kreutz", + "startTimestamp": "2026-02-27T08:00:00+01:00", + "coordinate": { + "lat": 52.356491997282546, + "long": 12.815027411676011 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.02.26 um 08:00 Uhr", + "Ende: 18.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 25.01.27)", + "", + "A10: Dreieck Potsdam -> Dreieck Havelland, zwischen 2.1 km hinter AD Werder und 2.9 km vor AS Gro\u00df Kreutz", + "", + "L\u00e4nge: 1.75 km | Maximale Durchfahrtsbreite: 3.85 m", + "", + "A10 Westring, 2.BA km 107-114, inkl. BW55\u00dc1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.815027412, + 52.356491997 + ], + [ + 12.8149635, + 52.357267001 + ], + [ + 12.8150016, + 52.359615601 + ], + [ + 12.8152431, + 52.361720701 + ], + [ + 12.8155342, + 52.364560601 + ], + [ + 12.8156632, + 52.366168701 + ], + [ + 12.8161267, + 52.371444501 + ], + [ + 12.816191835, + 52.37217714 + ] + ] + } + }, + { + "identifier": "2024-051921--vi-bs.2026-02-27_08-00-00-000.devi-zus.2025-05-28_00-00-00-000.f.de228", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.33984698510166,12.816008563688346,52.35663552306921,12.815015575763887", + "point": "52.33984698510166,12.816008563688346", + "startLcPosition": "35", + "impact": { + "lower": "Gro\u00df Kreutz", + "upper": "Werder", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Potsdam -> Dreieck Havelland", + "title": "A10 | Werder - Gro\u00df Kreutz", + "startTimestamp": "2026-02-27T08:00:00+01:00", + "coordinate": { + "lat": 52.33984698510166, + "long": 12.816008563688346 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.02.26 um 08:00 Uhr", + "Ende: 18.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 25.01.27)", + "", + "A10: Dreieck Potsdam -> Dreieck Havelland, zwischen 0.3 km hinter AD Werder und 4.6 km vor AS Gro\u00df Kreutz", + "", + "L\u00e4nge: 1.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.85 m", + "", + "A10 Westring, 2.BA km 107-114, inkl. BW55\u00dc1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.816008564, + 52.339846985 + ], + [ + 12.8160076, + 52.339873201 + ], + [ + 12.8159875, + 52.340055401 + ], + [ + 12.8159756, + 52.340332501 + ], + [ + 12.8159471, + 52.340881201 + ], + [ + 12.8158393, + 52.342793901 + ], + [ + 12.8157636, + 52.344019101 + ], + [ + 12.8157202, + 52.344796501 + ], + [ + 12.8156753, + 52.345568701 + ], + [ + 12.8155788, + 52.347356901 + ], + [ + 12.8155578, + 52.347685001 + ], + [ + 12.8154437, + 52.349801001 + ], + [ + 12.8154255, + 52.350109101 + ], + [ + 12.8153704, + 52.351061901 + ], + [ + 12.8153609, + 52.351183801 + ], + [ + 12.8153201, + 52.352144201 + ], + [ + 12.8152983, + 52.352440301 + ], + [ + 12.8152502, + 52.353182201 + ], + [ + 12.8152188, + 52.353711401 + ], + [ + 12.8151904, + 52.354223601 + ], + [ + 12.8151312, + 52.355233401 + ], + [ + 12.815015576, + 52.356635523 + ] + ] + } + }, + { + "identifier": "2025-060268--vi-bs.2026-03-05_18-00-00-000.devi-zus.2026-03-02_00-00-00-000_003.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.408452892943245,12.891159593539198,52.41585125690198,12.910114378825048", + "point": "52.408452892943245,12.891159593539198", + "startLcPosition": "36", + "impact": { + "lower": "Leest", + "upper": "Gro\u00df Kreutz", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Werder -> Dreieck Havelland", + "title": "A10 | Gro\u00df Kreutz - Leest", + "startTimestamp": "2026-03-05T18:00:00+01:00", + "coordinate": { + "lat": 52.408452892943245, + "long": 12.891159593539198 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.03.26 um 18:00 Uhr", + "Ende: 18.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.12.26)", + "", + "A10: Dreieck Werder -> Dreieck Havelland, zwischen 4.2 km hinter AS Gro\u00df Kreutz und 2.8 km vor AS Leest", + "", + "L\u00e4nge: 1.53 km | Maximale Durchfahrtsbreite: 3.05 m", + "", + "A10 \u00dcberbauerneuerung Br\u00fccke AS Ph\u00f6ben (BW 59 bei km 119,750)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.891159594, + 52.408452893 + ], + [ + 12.8918082, + 52.408590701 + ], + [ + 12.8925999, + 52.408787601 + ], + [ + 12.8930783, + 52.408912001 + ], + [ + 12.8935774, + 52.409066201 + ], + [ + 12.8942766, + 52.409314601 + ], + [ + 12.896099, + 52.410053901 + ], + [ + 12.8988561, + 52.411248901 + ], + [ + 12.900871, + 52.412079101 + ], + [ + 12.9015849, + 52.412371601 + ], + [ + 12.9021267, + 52.412623601 + ], + [ + 12.904093, + 52.413458401 + ], + [ + 12.9065638, + 52.414520801 + ], + [ + 12.9075068, + 52.414896301 + ], + [ + 12.908744, + 52.415345901 + ], + [ + 12.910114379, + 52.415851257 + ] + ] + } + }, + { + "identifier": "2024-051921--vi-bs.2026-02-27_08-00-00-000.devi-zus.2025-05-28_00-00-00-000.f.de232", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.37218372581592,12.815991994186568,52.35648818647635,12.814885654681047", + "point": "52.37218372581592,12.815991994186568", + "startLcPosition": "36", + "impact": { + "lower": "Werder", + "upper": "Gro\u00df Kreutz", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Potsdam", + "title": "A10 | Gro\u00df Kreutz - Werder", + "startTimestamp": "2026-02-27T08:00:00+01:00", + "coordinate": { + "lat": 52.37218372581592, + "long": 12.815991994186568 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.02.26 um 08:00 Uhr", + "Ende: 18.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 25.01.27)", + "", + "A10: Dreieck Havelland -> Dreieck Potsdam, zwischen 2.9 km hinter AS Gro\u00df Kreutz und 2.2 km vor AD Werder", + "", + "L\u00e4nge: 1.75 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A10 Westring, 2.BA km 107-114, inkl. BW55\u00dc1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.815991994, + 52.372183726 + ], + [ + 12.8159324, + 52.371499701 + ], + [ + 12.815858, + 52.370392501 + ], + [ + 12.8154796, + 52.366240801 + ], + [ + 12.8150946, + 52.361753701 + ], + [ + 12.8148723, + 52.359663801 + ], + [ + 12.8148283, + 52.357400301 + ], + [ + 12.814885655, + 52.356488186 + ] + ] + } + }, + { + "identifier": "2025-060268--vi-bs.2026-03-05_18-00-00-000.devi-zus.2026-03-02_00-00-00-000_003.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.41594368913468,12.910024445251643,52.40853641134227,12.891111466291212", + "point": "52.41594368913468,12.910024445251643", + "startLcPosition": "38", + "impact": { + "lower": "Gro\u00df Kreutz", + "upper": "Leest", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Werder", + "title": "A10 | Leest - Gro\u00df Kreutz", + "startTimestamp": "2026-03-05T18:00:00+01:00", + "coordinate": { + "lat": 52.41594368913468, + "long": 12.910024445251643 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.03.26 um 18:00 Uhr", + "Ende: 18.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.12.26)", + "", + "A10: Dreieck Havelland -> Dreieck Werder, zwischen 2.8 km hinter AS Leest und 4.2 km vor AS Gro\u00df Kreutz", + "", + "L\u00e4nge: 1.53 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A10 \u00dcberbauerneuerung Br\u00fccke AS Ph\u00f6ben (BW 59 bei km 119,750)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.910024445, + 52.415943689 + ], + [ + 12.908642, + 52.415446501 + ], + [ + 12.9073985, + 52.414983401 + ], + [ + 12.9063019, + 52.414543401 + ], + [ + 12.9050457, + 52.414005301 + ], + [ + 12.9047023, + 52.413858201 + ], + [ + 12.9020137, + 52.412737701 + ], + [ + 12.9014669, + 52.412496001 + ], + [ + 12.9010532, + 52.412320901 + ], + [ + 12.8986046, + 52.411284401 + ], + [ + 12.8955058, + 52.409976001 + ], + [ + 12.8942412, + 52.409453201 + ], + [ + 12.8936277, + 52.409217201 + ], + [ + 12.8931538, + 52.409060201 + ], + [ + 12.8924435, + 52.408860501 + ], + [ + 12.8917384, + 52.408672101 + ], + [ + 12.891111466, + 52.408536411 + ] + ] + } + }, + { + "identifier": "2025-060268--vi-bs.2026-03-05_18-00-00-000.devi-zus.2026-03-02_00-00-00-000_003.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.42276105379647,12.927290842414298,52.41594368913468,12.910024445251643", + "point": "52.42276105379647,12.927290842414298", + "startLcPosition": "38", + "impact": { + "lower": "Ph\u00f6ben", + "upper": "Leest", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Werder", + "title": "A10 | Leest - Ph\u00f6ben", + "startTimestamp": "2026-03-05T18:00:00+01:00", + "coordinate": { + "lat": 52.42276105379647, + "long": 12.927290842414298 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.03.26 um 18:00 Uhr", + "Ende: 18.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.12.26)", + "", + "A10: Dreieck Havelland -> Dreieck Werder, zwischen 1.4 km hinter AS Leest und 0.7 km vor AS Ph\u00f6ben", + "", + "L\u00e4nge: 1.41 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A10 \u00dcberbauerneuerung Br\u00fccke AS Ph\u00f6ben (BW 59 bei km 119,750)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.927290842, + 52.422761054 + ], + [ + 12.9266219, + 52.422276201 + ], + [ + 12.9260619, + 52.421894301 + ], + [ + 12.925645, + 52.421658101 + ], + [ + 12.9252416, + 52.421464401 + ], + [ + 12.9248124, + 52.421260301 + ], + [ + 12.9243919, + 52.421077101 + ], + [ + 12.9240142, + 52.420930501 + ], + [ + 12.9232675, + 52.420663501 + ], + [ + 12.919535, + 52.419348701 + ], + [ + 12.9105756, + 52.416141901 + ], + [ + 12.910024445, + 52.415943689 + ] + ] + } + }, + { + "identifier": "2025-060268--vi-fbm.2026-04-10_08-00-00-000.devi-zus.2026-03-02_00-00-00-000_003.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.44129295115955,12.931081032871354,52.41455940191709,12.906341778044698", + "point": "52.44129295115955,12.931081032871354", + "startLcPosition": "39", + "impact": { + "lower": "Ph\u00f6ben", + "upper": "Potsdam-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Werder", + "title": "A10 | Potsdam-Nord - Ph\u00f6ben", + "coordinate": { + "lat": 52.44129295115955, + "long": 12.931081032871354 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 16:00 Uhr", + "", + "A10: Dreieck Havelland -> Dreieck Werder, zwischen 4.0 km hinter AS Potsdam-Nord und 0.4 km vor AS Ph\u00f6ben", + "", + "L\u00e4nge: 3.81 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A10 \u00dcberbauerneuerung Br\u00fccke AS Ph\u00f6ben (BW 59 bei km 119,750)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.931081033, + 52.441292951 + ], + [ + 12.9306068, + 52.440098901 + ], + [ + 12.9304952, + 52.439786601 + ], + [ + 12.9304094, + 52.439472701 + ], + [ + 12.9303579, + 52.439153501 + ], + [ + 12.9303064, + 52.438823901 + ], + [ + 12.9301944, + 52.437342301 + ], + [ + 12.9300918, + 52.435312901 + ], + [ + 12.9300545, + 52.434822201 + ], + [ + 12.9300142, + 52.434097601 + ], + [ + 12.9299229, + 52.432671001 + ], + [ + 12.9298797, + 52.430870001 + ], + [ + 12.9298125, + 52.428071901 + ], + [ + 12.9297159, + 52.426586901 + ], + [ + 12.9296516, + 52.426285901 + ], + [ + 12.9295765, + 52.425965301 + ], + [ + 12.929437, + 52.425618601 + ], + [ + 12.9293014, + 52.425327201 + ], + [ + 12.9291469, + 52.425013201 + ], + [ + 12.9289838, + 52.424699101 + ], + [ + 12.9288121, + 52.424411301 + ], + [ + 12.928589, + 52.424097201 + ], + [ + 12.928383, + 52.423809301 + ], + [ + 12.9281427, + 52.423531901 + ], + [ + 12.9275158, + 52.422924101 + ], + [ + 12.9266219, + 52.422276201 + ], + [ + 12.9260619, + 52.421894301 + ], + [ + 12.925645, + 52.421658101 + ], + [ + 12.9252416, + 52.421464401 + ], + [ + 12.9248124, + 52.421260301 + ], + [ + 12.9243919, + 52.421077101 + ], + [ + 12.9240142, + 52.420930501 + ], + [ + 12.9232675, + 52.420663501 + ], + [ + 12.919535, + 52.419348701 + ], + [ + 12.9105756, + 52.416141901 + ], + [ + 12.908642, + 52.415446501 + ], + [ + 12.9073985, + 52.414983401 + ], + [ + 12.906341778, + 52.414559402 + ] + ] + } + }, + { + "identifier": "2026-016862--vi-bs.2026-04-07_06-00-00-000.devi-zus.2026-04-07_06-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.706567245080045,13.098596508039744,52.666360609978426,13.406227219848423", + "point": "52.706567245080045,13.098596508039744", + "startLcPosition": "45", + "impact": { + "lower": "Pankow", + "upper": "Havelland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Barnim", + "title": "A10 | Havelland - Pankow", + "coordinate": { + "lat": 52.706567245080045, + "long": 13.098596508039744 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 06:00 bis 16:00 Uhr", + "10.04.26 von 06:00 bis 16:00 Uhr", + "", + "A10: Dreieck Havelland -> Dreieck Barnim, zwischen 5.5 km hinter AD Havelland und 2.9 km vor AD Pankow", + "", + "L\u00e4nge: 22.02 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A10 von Havelland (AD) nach Pankow (AD) Reinigungsarbeiten Bauwerke-Graffiti " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.098596508, + 52.706567245 + ], + [ + 13.1007233, + 52.706782801 + ], + [ + 13.1028128, + 52.706960201 + ], + [ + 13.1043982, + 52.707070301 + ], + [ + 13.1058116, + 52.707148601 + ], + [ + 13.1068468, + 52.707207301 + ], + [ + 13.1088027, + 52.707283801 + ], + [ + 13.1106731, + 52.707313401 + ], + [ + 13.1123036, + 52.707333001 + ], + [ + 13.1140875, + 52.707329801 + ], + [ + 13.1156728, + 52.707295001 + ], + [ + 13.1181355, + 52.707228201 + ], + [ + 13.1209685, + 52.707095201 + ], + [ + 13.1231035, + 52.706959901 + ], + [ + 13.1279393, + 52.706567701 + ], + [ + 13.1320995, + 52.706230301 + ], + [ + 13.1368591, + 52.705920501 + ], + [ + 13.1407286, + 52.705759101 + ], + [ + 13.1410686, + 52.705745301 + ], + [ + 13.1451266, + 52.705632401 + ], + [ + 13.145822, + 52.705621201 + ], + [ + 13.1464684, + 52.705612901 + ], + [ + 13.1474563, + 52.705601301 + ], + [ + 13.1484361, + 52.705596201 + ], + [ + 13.148966, + 52.705594501 + ], + [ + 13.1498933, + 52.705593601 + ], + [ + 13.1543571, + 52.705608401 + ], + [ + 13.1608339, + 52.705628101 + ], + [ + 13.1635231, + 52.705637001 + ], + [ + 13.1684098, + 52.705654401 + ], + [ + 13.1704213, + 52.705668701 + ], + [ + 13.1706759, + 52.705669101 + ], + [ + 13.1734608, + 52.705673401 + ], + [ + 13.1761256, + 52.705681401 + ], + [ + 13.1782949, + 52.705680401 + ], + [ + 13.1811158, + 52.705691001 + ], + [ + 13.1825272, + 52.705696901 + ], + [ + 13.1854619, + 52.705701501 + ], + [ + 13.1869774, + 52.705681801 + ], + [ + 13.188597, + 52.705638401 + ], + [ + 13.1891912, + 52.705615701 + ], + [ + 13.1904059, + 52.705564701 + ], + [ + 13.1916438, + 52.705495301 + ], + [ + 13.1932389, + 52.705394001 + ], + [ + 13.1936222, + 52.705364201 + ], + [ + 13.1955621, + 52.705178401 + ], + [ + 13.1964844, + 52.705095201 + ], + [ + 13.1976754, + 52.704962901 + ], + [ + 13.1992283, + 52.704771101 + ], + [ + 13.1997679, + 52.704700701 + ], + [ + 13.2008078, + 52.704549801 + ], + [ + 13.201848, + 52.704393501 + ], + [ + 13.2023624, + 52.704311601 + ], + [ + 13.2028942, + 52.704225101 + ], + [ + 13.2057074, + 52.703763401 + ], + [ + 13.2067496, + 52.703593401 + ], + [ + 13.2075209, + 52.703466601 + ], + [ + 13.2085534, + 52.703298301 + ], + [ + 13.2103678, + 52.703005701 + ], + [ + 13.2119451, + 52.702749301 + ], + [ + 13.2137299, + 52.702452201 + ], + [ + 13.2186756, + 52.701638801 + ], + [ + 13.2196915, + 52.701469301 + ], + [ + 13.2207216, + 52.701303401 + ], + [ + 13.2213732, + 52.701194401 + ], + [ + 13.2220897, + 52.701079901 + ], + [ + 13.2226532, + 52.700986001 + ], + [ + 13.2230912, + 52.700918501 + ], + [ + 13.2235338, + 52.700847301 + ], + [ + 13.2243117, + 52.700728601 + ], + [ + 13.2250787, + 52.700617501 + ], + [ + 13.225754, + 52.700521901 + ], + [ + 13.2263721, + 52.700434801 + ], + [ + 13.2269019, + 52.700365601 + ], + [ + 13.2274341, + 52.700299101 + ], + [ + 13.2281985, + 52.700207101 + ], + [ + 13.2287254, + 52.700147301 + ], + [ + 13.2295115, + 52.700060601 + ], + [ + 13.2300369, + 52.700005101 + ], + [ + 13.2305669, + 52.699950301 + ], + [ + 13.2314812, + 52.699863101 + ], + [ + 13.2325222, + 52.699772801 + ], + [ + 13.2329245, + 52.699739601 + ], + [ + 13.2334436, + 52.699697201 + ], + [ + 13.2339715, + 52.699658301 + ], + [ + 13.2344977, + 52.699621201 + ], + [ + 13.2350263, + 52.699586201 + ], + [ + 13.2358282, + 52.699535501 + ], + [ + 13.2363502, + 52.699504601 + ], + [ + 13.2368745, + 52.699476501 + ], + [ + 13.2374088, + 52.699451701 + ], + [ + 13.2379361, + 52.699426101 + ], + [ + 13.2387349, + 52.699394501 + ], + [ + 13.2395237, + 52.699368101 + ], + [ + 13.2403172, + 52.699345201 + ], + [ + 13.2408563, + 52.699331901 + ], + [ + 13.241644, + 52.699318801 + ], + [ + 13.2421675, + 52.699311501 + ], + [ + 13.2429763, + 52.699303201 + ], + [ + 13.2435119, + 52.699302201 + ], + [ + 13.2443029, + 52.699304201 + ], + [ + 13.2446918, + 52.699306601 + ], + [ + 13.2451005, + 52.699309001 + ], + [ + 13.2456353, + 52.699315201 + ], + [ + 13.2460293, + 52.699323501 + ], + [ + 13.2464279, + 52.699331801 + ], + [ + 13.2469627, + 52.699342701 + ], + [ + 13.2478881, + 52.699367901 + ], + [ + 13.248818, + 52.699395901 + ], + [ + 13.2506255, + 52.699449801 + ], + [ + 13.2516142, + 52.699480201 + ], + [ + 13.2593947, + 52.699720601 + ], + [ + 13.2604604, + 52.699754401 + ], + [ + 13.2643396, + 52.699871801 + ], + [ + 13.2660224, + 52.699918101 + ], + [ + 13.2684387, + 52.699977701 + ], + [ + 13.2692326, + 52.699989501 + ], + [ + 13.2699176, + 52.699996801 + ], + [ + 13.2702777, + 52.700000801 + ], + [ + 13.2713597, + 52.700003301 + ], + [ + 13.2724328, + 52.699999401 + ], + [ + 13.2738448, + 52.699968301 + ], + [ + 13.2750987, + 52.699927301 + ], + [ + 13.2766876, + 52.699858901 + ], + [ + 13.2780085, + 52.699784701 + ], + [ + 13.2790744, + 52.699714601 + ], + [ + 13.2801261, + 52.699633901 + ], + [ + 13.2811751, + 52.699541601 + ], + [ + 13.2819103, + 52.699472001 + ], + [ + 13.2821991, + 52.699443101 + ], + [ + 13.2830244, + 52.699356501 + ], + [ + 13.2840592, + 52.699240501 + ], + [ + 13.2851098, + 52.699110201 + ], + [ + 13.2864478, + 52.698930701 + ], + [ + 13.2871848, + 52.698822901 + ], + [ + 13.2882149, + 52.698666301 + ], + [ + 13.2895148, + 52.698451601 + ], + [ + 13.2910287, + 52.698180101 + ], + [ + 13.2920458, + 52.697982801 + ], + [ + 13.2927937, + 52.697832101 + ], + [ + 13.2935555, + 52.697675501 + ], + [ + 13.2945667, + 52.697454901 + ], + [ + 13.2955412, + 52.697229201 + ], + [ + 13.2965465, + 52.696989001 + ], + [ + 13.2972923, + 52.696803401 + ], + [ + 13.2982626, + 52.696549901 + ], + [ + 13.2989947, + 52.696352801 + ], + [ + 13.2994767, + 52.696220301 + ], + [ + 13.3014057, + 52.695667801 + ], + [ + 13.3018795, + 52.695527401 + ], + [ + 13.3030614, + 52.695172601 + ], + [ + 13.304742, + 52.694663901 + ], + [ + 13.3054523, + 52.694445201 + ], + [ + 13.3063999, + 52.694156701 + ], + [ + 13.3073569, + 52.693862401 + ], + [ + 13.3083144, + 52.693574001 + ], + [ + 13.3090372, + 52.693350101 + ], + [ + 13.3097533, + 52.693132001 + ], + [ + 13.3104576, + 52.692916601 + ], + [ + 13.3111637, + 52.692700801 + ], + [ + 13.3119423, + 52.692461501 + ], + [ + 13.3143795, + 52.691716701 + ], + [ + 13.3155753, + 52.691354801 + ], + [ + 13.3165179, + 52.691064101 + ], + [ + 13.316983, + 52.690922201 + ], + [ + 13.3176929, + 52.690705001 + ], + [ + 13.3186509, + 52.690413801 + ], + [ + 13.3193515, + 52.690198801 + ], + [ + 13.3202967, + 52.689909501 + ], + [ + 13.3217122, + 52.689477401 + ], + [ + 13.3226854, + 52.689180001 + ], + [ + 13.323392, + 52.688964601 + ], + [ + 13.3239403, + 52.688806201 + ], + [ + 13.3248096, + 52.688531301 + ], + [ + 13.3255245, + 52.688313301 + ], + [ + 13.3262287, + 52.688097801 + ], + [ + 13.3276729, + 52.687656101 + ], + [ + 13.3307415, + 52.686717601 + ], + [ + 13.3316819, + 52.686432501 + ], + [ + 13.3326275, + 52.686155901 + ], + [ + 13.3333474, + 52.685950401 + ], + [ + 13.3340829, + 52.685749601 + ], + [ + 13.3350483, + 52.685489701 + ], + [ + 13.3360415, + 52.685231101 + ], + [ + 13.3370206, + 52.684988701 + ], + [ + 13.3380091, + 52.684750401 + ], + [ + 13.3389941, + 52.684520601 + ], + [ + 13.3399951, + 52.684299301 + ], + [ + 13.3409801, + 52.684088401 + ], + [ + 13.3420006, + 52.683879701 + ], + [ + 13.3429662, + 52.683697901 + ], + [ + 13.3442139, + 52.683457901 + ], + [ + 13.3457578, + 52.683187001 + ], + [ + 13.3473579, + 52.682929101 + ], + [ + 13.3492597, + 52.682646901 + ], + [ + 13.3511857, + 52.682392701 + ], + [ + 13.3531544, + 52.682164101 + ], + [ + 13.3549462, + 52.681981601 + ], + [ + 13.3570291, + 52.681801601 + ], + [ + 13.3591293, + 52.681650101 + ], + [ + 13.3615473, + 52.681523801 + ], + [ + 13.3639654, + 52.681427701 + ], + [ + 13.3663834, + 52.681335201 + ], + [ + 13.3691785, + 52.681225101 + ], + [ + 13.3705995, + 52.681163101 + ], + [ + 13.3720231, + 52.681092901 + ], + [ + 13.3733676, + 52.681016301 + ], + [ + 13.3745331, + 52.680936401 + ], + [ + 13.3747801, + 52.680918701 + ], + [ + 13.3760194, + 52.680818501 + ], + [ + 13.376867, + 52.680739401 + ], + [ + 13.3776777, + 52.680656101 + ], + [ + 13.3785675, + 52.680552701 + ], + [ + 13.3794069, + 52.680447501 + ], + [ + 13.3804665, + 52.680293901 + ], + [ + 13.3815215, + 52.680124701 + ], + [ + 13.3830842, + 52.679835201 + ], + [ + 13.3844763, + 52.679543601 + ], + [ + 13.3856886, + 52.679253601 + ], + [ + 13.3863286, + 52.679084801 + ], + [ + 13.3869661, + 52.678912101 + ], + [ + 13.3876283, + 52.678717201 + ], + [ + 13.3882597, + 52.678524301 + ], + [ + 13.3888782, + 52.678327901 + ], + [ + 13.389851, + 52.677996401 + ], + [ + 13.3904633, + 52.677751301 + ], + [ + 13.3912009, + 52.677482601 + ], + [ + 13.3912638, + 52.677456801 + ], + [ + 13.3928065, + 52.676823501 + ], + [ + 13.393962, + 52.676300701 + ], + [ + 13.3946335, + 52.675961201 + ], + [ + 13.3951265, + 52.675712901 + ], + [ + 13.3956843, + 52.675440701 + ], + [ + 13.3961284, + 52.675202401 + ], + [ + 13.3968143, + 52.674809101 + ], + [ + 13.3975284, + 52.674374701 + ], + [ + 13.3984461, + 52.673788501 + ], + [ + 13.3995035, + 52.673082201 + ], + [ + 13.4001369, + 52.672634301 + ], + [ + 13.4003204, + 52.672500701 + ], + [ + 13.4011326, + 52.671855701 + ], + [ + 13.4018298, + 52.671252501 + ], + [ + 13.4025961, + 52.670549801 + ], + [ + 13.4026815, + 52.670470301 + ], + [ + 13.4037585, + 52.669395101 + ], + [ + 13.4048421, + 52.668139501 + ], + [ + 13.4059365, + 52.666760101 + ], + [ + 13.40622722, + 52.66636061 + ] + ] + } + }, + { + "identifier": "2026-016849--vi-bs.2026-04-07_07-00-00-000.devi-zus.2026-04-07_07-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.71090709584419,13.023712651771643,52.63573547339667,13.44091373397921", + "point": "52.71090709584419,13.023712651771643", + "startLcPosition": "45", + "impact": { + "lower": "Barnim", + "upper": "Havelland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Barnim", + "title": "A10 | Havelland - Barnim", + "coordinate": { + "lat": 52.71090709584419, + "long": 13.023712651771643 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 15:30 Uhr", + "10.04.26 von 07:00 bis 15:30 Uhr", + "", + "A10: Dreieck Havelland -> Dreieck Barnim, zwischen 0.3 km hinter AD Havelland und 8.4 km vor AD Barnim", + "", + "L\u00e4nge: 31.42 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.023712652, + 52.710907096 + ], + [ + 13.023782, + 52.710895301 + ], + [ + 13.028297, + 52.710128201 + ], + [ + 13.029779, + 52.709879401 + ], + [ + 13.0324812, + 52.709422101 + ], + [ + 13.0348995, + 52.709012801 + ], + [ + 13.0354313, + 52.708915801 + ], + [ + 13.0358368, + 52.708847701 + ], + [ + 13.0371993, + 52.708615801 + ], + [ + 13.0474578, + 52.706874201 + ], + [ + 13.0476224, + 52.706846101 + ], + [ + 13.0487215, + 52.706658201 + ], + [ + 13.0509608, + 52.706282501 + ], + [ + 13.0530011, + 52.705962801 + ], + [ + 13.0552967, + 52.705653601 + ], + [ + 13.0569171, + 52.705441101 + ], + [ + 13.0584163, + 52.705244201 + ], + [ + 13.0598382, + 52.705100401 + ], + [ + 13.0613014, + 52.704957201 + ], + [ + 13.0629638, + 52.704825601 + ], + [ + 13.0640075, + 52.704746401 + ], + [ + 13.0650401, + 52.704685101 + ], + [ + 13.068294, + 52.704535501 + ], + [ + 13.0709349, + 52.704491001 + ], + [ + 13.0727061, + 52.704481301 + ], + [ + 13.0755711, + 52.704508001 + ], + [ + 13.0786153, + 52.704593601 + ], + [ + 13.0809583, + 52.704723101 + ], + [ + 13.0834227, + 52.704889301 + ], + [ + 13.0880904, + 52.705360601 + ], + [ + 13.0907533, + 52.705656201 + ], + [ + 13.0911088, + 52.705701101 + ], + [ + 13.0934302, + 52.705994601 + ], + [ + 13.0955346, + 52.706235801 + ], + [ + 13.0965305, + 52.706344901 + ], + [ + 13.0983593, + 52.706543201 + ], + [ + 13.1007233, + 52.706782801 + ], + [ + 13.1028128, + 52.706960201 + ], + [ + 13.1043982, + 52.707070301 + ], + [ + 13.1058116, + 52.707148601 + ], + [ + 13.1068468, + 52.707207301 + ], + [ + 13.1088027, + 52.707283801 + ], + [ + 13.1106731, + 52.707313401 + ], + [ + 13.1123036, + 52.707333001 + ], + [ + 13.1140875, + 52.707329801 + ], + [ + 13.1156728, + 52.707295001 + ], + [ + 13.1181355, + 52.707228201 + ], + [ + 13.1209685, + 52.707095201 + ], + [ + 13.1231035, + 52.706959901 + ], + [ + 13.1279393, + 52.706567701 + ], + [ + 13.1320995, + 52.706230301 + ], + [ + 13.1368591, + 52.705920501 + ], + [ + 13.1407286, + 52.705759101 + ], + [ + 13.1410686, + 52.705745301 + ], + [ + 13.1451266, + 52.705632401 + ], + [ + 13.145822, + 52.705621201 + ], + [ + 13.1464684, + 52.705612901 + ], + [ + 13.1474563, + 52.705601301 + ], + [ + 13.1484361, + 52.705596201 + ], + [ + 13.148966, + 52.705594501 + ], + [ + 13.1498933, + 52.705593601 + ], + [ + 13.1543571, + 52.705608401 + ], + [ + 13.1608339, + 52.705628101 + ], + [ + 13.1635231, + 52.705637001 + ], + [ + 13.1684098, + 52.705654401 + ], + [ + 13.1704213, + 52.705668701 + ], + [ + 13.1706759, + 52.705669101 + ], + [ + 13.1734608, + 52.705673401 + ], + [ + 13.1761256, + 52.705681401 + ], + [ + 13.1782949, + 52.705680401 + ], + [ + 13.1811158, + 52.705691001 + ], + [ + 13.1825272, + 52.705696901 + ], + [ + 13.1854619, + 52.705701501 + ], + [ + 13.1869774, + 52.705681801 + ], + [ + 13.188597, + 52.705638401 + ], + [ + 13.1891912, + 52.705615701 + ], + [ + 13.1904059, + 52.705564701 + ], + [ + 13.1916438, + 52.705495301 + ], + [ + 13.1932389, + 52.705394001 + ], + [ + 13.1936222, + 52.705364201 + ], + [ + 13.1955621, + 52.705178401 + ], + [ + 13.1964844, + 52.705095201 + ], + [ + 13.1976754, + 52.704962901 + ], + [ + 13.1992283, + 52.704771101 + ], + [ + 13.1997679, + 52.704700701 + ], + [ + 13.2008078, + 52.704549801 + ], + [ + 13.201848, + 52.704393501 + ], + [ + 13.2023624, + 52.704311601 + ], + [ + 13.2028942, + 52.704225101 + ], + [ + 13.2057074, + 52.703763401 + ], + [ + 13.2067496, + 52.703593401 + ], + [ + 13.2075209, + 52.703466601 + ], + [ + 13.2085534, + 52.703298301 + ], + [ + 13.2103678, + 52.703005701 + ], + [ + 13.2119451, + 52.702749301 + ], + [ + 13.2137299, + 52.702452201 + ], + [ + 13.2186756, + 52.701638801 + ], + [ + 13.2196915, + 52.701469301 + ], + [ + 13.2207216, + 52.701303401 + ], + [ + 13.2213732, + 52.701194401 + ], + [ + 13.2220897, + 52.701079901 + ], + [ + 13.2226532, + 52.700986001 + ], + [ + 13.2230912, + 52.700918501 + ], + [ + 13.2235338, + 52.700847301 + ], + [ + 13.2243117, + 52.700728601 + ], + [ + 13.2250787, + 52.700617501 + ], + [ + 13.225754, + 52.700521901 + ], + [ + 13.2263721, + 52.700434801 + ], + [ + 13.2269019, + 52.700365601 + ], + [ + 13.2274341, + 52.700299101 + ], + [ + 13.2281985, + 52.700207101 + ], + [ + 13.2287254, + 52.700147301 + ], + [ + 13.2295115, + 52.700060601 + ], + [ + 13.2300369, + 52.700005101 + ], + [ + 13.2305669, + 52.699950301 + ], + [ + 13.2314812, + 52.699863101 + ], + [ + 13.2325222, + 52.699772801 + ], + [ + 13.2329245, + 52.699739601 + ], + [ + 13.2334436, + 52.699697201 + ], + [ + 13.2339715, + 52.699658301 + ], + [ + 13.2344977, + 52.699621201 + ], + [ + 13.2350263, + 52.699586201 + ], + [ + 13.2358282, + 52.699535501 + ], + [ + 13.2363502, + 52.699504601 + ], + [ + 13.2368745, + 52.699476501 + ], + [ + 13.2374088, + 52.699451701 + ], + [ + 13.2379361, + 52.699426101 + ], + [ + 13.2387349, + 52.699394501 + ], + [ + 13.2395237, + 52.699368101 + ], + [ + 13.2403172, + 52.699345201 + ], + [ + 13.2408563, + 52.699331901 + ], + [ + 13.241644, + 52.699318801 + ], + [ + 13.2421675, + 52.699311501 + ], + [ + 13.2429763, + 52.699303201 + ], + [ + 13.2435119, + 52.699302201 + ], + [ + 13.2443029, + 52.699304201 + ], + [ + 13.2446918, + 52.699306601 + ], + [ + 13.2451005, + 52.699309001 + ], + [ + 13.2456353, + 52.699315201 + ], + [ + 13.2460293, + 52.699323501 + ], + [ + 13.2464279, + 52.699331801 + ], + [ + 13.2469627, + 52.699342701 + ], + [ + 13.2478881, + 52.699367901 + ], + [ + 13.248818, + 52.699395901 + ], + [ + 13.2506255, + 52.699449801 + ], + [ + 13.2516142, + 52.699480201 + ], + [ + 13.2593947, + 52.699720601 + ], + [ + 13.2604604, + 52.699754401 + ], + [ + 13.2643396, + 52.699871801 + ], + [ + 13.2660224, + 52.699918101 + ], + [ + 13.2684387, + 52.699977701 + ], + [ + 13.2692326, + 52.699989501 + ], + [ + 13.2699176, + 52.699996801 + ], + [ + 13.2702777, + 52.700000801 + ], + [ + 13.2713597, + 52.700003301 + ], + [ + 13.2724328, + 52.699999401 + ], + [ + 13.2738448, + 52.699968301 + ], + [ + 13.2750987, + 52.699927301 + ], + [ + 13.2766876, + 52.699858901 + ], + [ + 13.2780085, + 52.699784701 + ], + [ + 13.2790744, + 52.699714601 + ], + [ + 13.2801261, + 52.699633901 + ], + [ + 13.2811751, + 52.699541601 + ], + [ + 13.2819103, + 52.699472001 + ], + [ + 13.2821991, + 52.699443101 + ], + [ + 13.2830244, + 52.699356501 + ], + [ + 13.2840592, + 52.699240501 + ], + [ + 13.2851098, + 52.699110201 + ], + [ + 13.2864478, + 52.698930701 + ], + [ + 13.2871848, + 52.698822901 + ], + [ + 13.2882149, + 52.698666301 + ], + [ + 13.2895148, + 52.698451601 + ], + [ + 13.2910287, + 52.698180101 + ], + [ + 13.2920458, + 52.697982801 + ], + [ + 13.2927937, + 52.697832101 + ], + [ + 13.2935555, + 52.697675501 + ], + [ + 13.2945667, + 52.697454901 + ], + [ + 13.2955412, + 52.697229201 + ], + [ + 13.2965465, + 52.696989001 + ], + [ + 13.2972923, + 52.696803401 + ], + [ + 13.2982626, + 52.696549901 + ], + [ + 13.2989947, + 52.696352801 + ], + [ + 13.2994767, + 52.696220301 + ], + [ + 13.3014057, + 52.695667801 + ], + [ + 13.3018795, + 52.695527401 + ], + [ + 13.3030614, + 52.695172601 + ], + [ + 13.304742, + 52.694663901 + ], + [ + 13.3054523, + 52.694445201 + ], + [ + 13.3063999, + 52.694156701 + ], + [ + 13.3073569, + 52.693862401 + ], + [ + 13.3083144, + 52.693574001 + ], + [ + 13.3090372, + 52.693350101 + ], + [ + 13.3097533, + 52.693132001 + ], + [ + 13.3104576, + 52.692916601 + ], + [ + 13.3111637, + 52.692700801 + ], + [ + 13.3119423, + 52.692461501 + ], + [ + 13.3143795, + 52.691716701 + ], + [ + 13.3155753, + 52.691354801 + ], + [ + 13.3165179, + 52.691064101 + ], + [ + 13.316983, + 52.690922201 + ], + [ + 13.3176929, + 52.690705001 + ], + [ + 13.3186509, + 52.690413801 + ], + [ + 13.3193515, + 52.690198801 + ], + [ + 13.3202967, + 52.689909501 + ], + [ + 13.3217122, + 52.689477401 + ], + [ + 13.3226854, + 52.689180001 + ], + [ + 13.323392, + 52.688964601 + ], + [ + 13.3239403, + 52.688806201 + ], + [ + 13.3248096, + 52.688531301 + ], + [ + 13.3255245, + 52.688313301 + ], + [ + 13.3262287, + 52.688097801 + ], + [ + 13.3276729, + 52.687656101 + ], + [ + 13.3307415, + 52.686717601 + ], + [ + 13.3316819, + 52.686432501 + ], + [ + 13.3326275, + 52.686155901 + ], + [ + 13.3333474, + 52.685950401 + ], + [ + 13.3340829, + 52.685749601 + ], + [ + 13.3350483, + 52.685489701 + ], + [ + 13.3360415, + 52.685231101 + ], + [ + 13.3370206, + 52.684988701 + ], + [ + 13.3380091, + 52.684750401 + ], + [ + 13.3389941, + 52.684520601 + ], + [ + 13.3399951, + 52.684299301 + ], + [ + 13.3409801, + 52.684088401 + ], + [ + 13.3420006, + 52.683879701 + ], + [ + 13.3429662, + 52.683697901 + ], + [ + 13.3442139, + 52.683457901 + ], + [ + 13.3457578, + 52.683187001 + ], + [ + 13.3473579, + 52.682929101 + ], + [ + 13.3492597, + 52.682646901 + ], + [ + 13.3511857, + 52.682392701 + ], + [ + 13.3531544, + 52.682164101 + ], + [ + 13.3549462, + 52.681981601 + ], + [ + 13.3570291, + 52.681801601 + ], + [ + 13.3591293, + 52.681650101 + ], + [ + 13.3615473, + 52.681523801 + ], + [ + 13.3639654, + 52.681427701 + ], + [ + 13.3663834, + 52.681335201 + ], + [ + 13.3691785, + 52.681225101 + ], + [ + 13.3705995, + 52.681163101 + ], + [ + 13.3720231, + 52.681092901 + ], + [ + 13.3733676, + 52.681016301 + ], + [ + 13.3745331, + 52.680936401 + ], + [ + 13.3747801, + 52.680918701 + ], + [ + 13.3760194, + 52.680818501 + ], + [ + 13.376867, + 52.680739401 + ], + [ + 13.3776777, + 52.680656101 + ], + [ + 13.3785675, + 52.680552701 + ], + [ + 13.3794069, + 52.680447501 + ], + [ + 13.3804665, + 52.680293901 + ], + [ + 13.3815215, + 52.680124701 + ], + [ + 13.3830842, + 52.679835201 + ], + [ + 13.3844763, + 52.679543601 + ], + [ + 13.3856886, + 52.679253601 + ], + [ + 13.3863286, + 52.679084801 + ], + [ + 13.3869661, + 52.678912101 + ], + [ + 13.3876283, + 52.678717201 + ], + [ + 13.3882597, + 52.678524301 + ], + [ + 13.3888782, + 52.678327901 + ], + [ + 13.389851, + 52.677996401 + ], + [ + 13.3904633, + 52.677751301 + ], + [ + 13.3912009, + 52.677482601 + ], + [ + 13.3912638, + 52.677456801 + ], + [ + 13.3928065, + 52.676823501 + ], + [ + 13.393962, + 52.676300701 + ], + [ + 13.3946335, + 52.675961201 + ], + [ + 13.3951265, + 52.675712901 + ], + [ + 13.3956843, + 52.675440701 + ], + [ + 13.3961284, + 52.675202401 + ], + [ + 13.3968143, + 52.674809101 + ], + [ + 13.3975284, + 52.674374701 + ], + [ + 13.3984461, + 52.673788501 + ], + [ + 13.3995035, + 52.673082201 + ], + [ + 13.4001369, + 52.672634301 + ], + [ + 13.4003204, + 52.672500701 + ], + [ + 13.4011326, + 52.671855701 + ], + [ + 13.4018298, + 52.671252501 + ], + [ + 13.4025961, + 52.670549801 + ], + [ + 13.4026815, + 52.670470301 + ], + [ + 13.4037585, + 52.669395101 + ], + [ + 13.4048421, + 52.668139501 + ], + [ + 13.4059365, + 52.666760101 + ], + [ + 13.4066231, + 52.665816601 + ], + [ + 13.4071057, + 52.665116201 + ], + [ + 13.4085868, + 52.662966601 + ], + [ + 13.4086933, + 52.662813301 + ], + [ + 13.4088783, + 52.662543401 + ], + [ + 13.4100624, + 52.660835701 + ], + [ + 13.4107237, + 52.659881901 + ], + [ + 13.4122312, + 52.657644001 + ], + [ + 13.4125404, + 52.657197801 + ], + [ + 13.4137073, + 52.655550601 + ], + [ + 13.413973, + 52.655197401 + ], + [ + 13.41406, + 52.655082101 + ], + [ + 13.4143333, + 52.654719101 + ], + [ + 13.4150147, + 52.653842801 + ], + [ + 13.4156804, + 52.652989801 + ], + [ + 13.4163187, + 52.652244801 + ], + [ + 13.4172141, + 52.651245401 + ], + [ + 13.418427, + 52.649970501 + ], + [ + 13.418837, + 52.649585701 + ], + [ + 13.4192389, + 52.649197301 + ], + [ + 13.4198458, + 52.648620001 + ], + [ + 13.4206571, + 52.647882101 + ], + [ + 13.4216669, + 52.646994401 + ], + [ + 13.4223687, + 52.646405901 + ], + [ + 13.4235536, + 52.645479701 + ], + [ + 13.4239675, + 52.645142601 + ], + [ + 13.424896, + 52.644469701 + ], + [ + 13.4257741, + 52.643843901 + ], + [ + 13.4262629, + 52.643501001 + ], + [ + 13.4269852, + 52.642997801 + ], + [ + 13.4280905, + 52.642267301 + ], + [ + 13.4295681, + 52.641333701 + ], + [ + 13.4310497, + 52.640435901 + ], + [ + 13.4330386, + 52.639381201 + ], + [ + 13.4349707, + 52.638385801 + ], + [ + 13.4361675, + 52.637806401 + ], + [ + 13.4374242, + 52.637226901 + ], + [ + 13.4382829, + 52.636839701 + ], + [ + 13.4398473, + 52.636176501 + ], + [ + 13.440913734, + 52.635735473 + ] + ] + } + }, + { + "identifier": "2026-017656--vi-bs.2026-04-13_06-00-00-000.devi-zus.2026-04-13_06-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.706567245080045,13.098596508039744,52.666360609978426,13.406227219848423", + "point": "52.706567245080045,13.098596508039744", + "startLcPosition": "45", + "impact": { + "lower": "Pankow", + "upper": "Havelland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Barnim", + "title": "A10 | Havelland - Pankow", + "coordinate": { + "lat": 52.706567245080045, + "long": 13.098596508039744 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 06:00 bis 16:00 Uhr", + "14.04.26 von 06:00 bis 16:00 Uhr", + "15.04.26 von 06:00 bis 16:00 Uhr", + "16.04.26 von 06:00 bis 16:00 Uhr", + "17.04.26 von 06:00 bis 16:00 Uhr", + "", + "A10: Dreieck Havelland -> Dreieck Barnim, zwischen 5.5 km hinter AD Havelland und 2.9 km vor AD Pankow", + "", + "L\u00e4nge: 22.02 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A10 von Havelland (AD) nach Pankow (AD) Reinigungsarbeiten Bauwerke-Graffiti " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.098596508, + 52.706567245 + ], + [ + 13.1007233, + 52.706782801 + ], + [ + 13.1028128, + 52.706960201 + ], + [ + 13.1043982, + 52.707070301 + ], + [ + 13.1058116, + 52.707148601 + ], + [ + 13.1068468, + 52.707207301 + ], + [ + 13.1088027, + 52.707283801 + ], + [ + 13.1106731, + 52.707313401 + ], + [ + 13.1123036, + 52.707333001 + ], + [ + 13.1140875, + 52.707329801 + ], + [ + 13.1156728, + 52.707295001 + ], + [ + 13.1181355, + 52.707228201 + ], + [ + 13.1209685, + 52.707095201 + ], + [ + 13.1231035, + 52.706959901 + ], + [ + 13.1279393, + 52.706567701 + ], + [ + 13.1320995, + 52.706230301 + ], + [ + 13.1368591, + 52.705920501 + ], + [ + 13.1407286, + 52.705759101 + ], + [ + 13.1410686, + 52.705745301 + ], + [ + 13.1451266, + 52.705632401 + ], + [ + 13.145822, + 52.705621201 + ], + [ + 13.1464684, + 52.705612901 + ], + [ + 13.1474563, + 52.705601301 + ], + [ + 13.1484361, + 52.705596201 + ], + [ + 13.148966, + 52.705594501 + ], + [ + 13.1498933, + 52.705593601 + ], + [ + 13.1543571, + 52.705608401 + ], + [ + 13.1608339, + 52.705628101 + ], + [ + 13.1635231, + 52.705637001 + ], + [ + 13.1684098, + 52.705654401 + ], + [ + 13.1704213, + 52.705668701 + ], + [ + 13.1706759, + 52.705669101 + ], + [ + 13.1734608, + 52.705673401 + ], + [ + 13.1761256, + 52.705681401 + ], + [ + 13.1782949, + 52.705680401 + ], + [ + 13.1811158, + 52.705691001 + ], + [ + 13.1825272, + 52.705696901 + ], + [ + 13.1854619, + 52.705701501 + ], + [ + 13.1869774, + 52.705681801 + ], + [ + 13.188597, + 52.705638401 + ], + [ + 13.1891912, + 52.705615701 + ], + [ + 13.1904059, + 52.705564701 + ], + [ + 13.1916438, + 52.705495301 + ], + [ + 13.1932389, + 52.705394001 + ], + [ + 13.1936222, + 52.705364201 + ], + [ + 13.1955621, + 52.705178401 + ], + [ + 13.1964844, + 52.705095201 + ], + [ + 13.1976754, + 52.704962901 + ], + [ + 13.1992283, + 52.704771101 + ], + [ + 13.1997679, + 52.704700701 + ], + [ + 13.2008078, + 52.704549801 + ], + [ + 13.201848, + 52.704393501 + ], + [ + 13.2023624, + 52.704311601 + ], + [ + 13.2028942, + 52.704225101 + ], + [ + 13.2057074, + 52.703763401 + ], + [ + 13.2067496, + 52.703593401 + ], + [ + 13.2075209, + 52.703466601 + ], + [ + 13.2085534, + 52.703298301 + ], + [ + 13.2103678, + 52.703005701 + ], + [ + 13.2119451, + 52.702749301 + ], + [ + 13.2137299, + 52.702452201 + ], + [ + 13.2186756, + 52.701638801 + ], + [ + 13.2196915, + 52.701469301 + ], + [ + 13.2207216, + 52.701303401 + ], + [ + 13.2213732, + 52.701194401 + ], + [ + 13.2220897, + 52.701079901 + ], + [ + 13.2226532, + 52.700986001 + ], + [ + 13.2230912, + 52.700918501 + ], + [ + 13.2235338, + 52.700847301 + ], + [ + 13.2243117, + 52.700728601 + ], + [ + 13.2250787, + 52.700617501 + ], + [ + 13.225754, + 52.700521901 + ], + [ + 13.2263721, + 52.700434801 + ], + [ + 13.2269019, + 52.700365601 + ], + [ + 13.2274341, + 52.700299101 + ], + [ + 13.2281985, + 52.700207101 + ], + [ + 13.2287254, + 52.700147301 + ], + [ + 13.2295115, + 52.700060601 + ], + [ + 13.2300369, + 52.700005101 + ], + [ + 13.2305669, + 52.699950301 + ], + [ + 13.2314812, + 52.699863101 + ], + [ + 13.2325222, + 52.699772801 + ], + [ + 13.2329245, + 52.699739601 + ], + [ + 13.2334436, + 52.699697201 + ], + [ + 13.2339715, + 52.699658301 + ], + [ + 13.2344977, + 52.699621201 + ], + [ + 13.2350263, + 52.699586201 + ], + [ + 13.2358282, + 52.699535501 + ], + [ + 13.2363502, + 52.699504601 + ], + [ + 13.2368745, + 52.699476501 + ], + [ + 13.2374088, + 52.699451701 + ], + [ + 13.2379361, + 52.699426101 + ], + [ + 13.2387349, + 52.699394501 + ], + [ + 13.2395237, + 52.699368101 + ], + [ + 13.2403172, + 52.699345201 + ], + [ + 13.2408563, + 52.699331901 + ], + [ + 13.241644, + 52.699318801 + ], + [ + 13.2421675, + 52.699311501 + ], + [ + 13.2429763, + 52.699303201 + ], + [ + 13.2435119, + 52.699302201 + ], + [ + 13.2443029, + 52.699304201 + ], + [ + 13.2446918, + 52.699306601 + ], + [ + 13.2451005, + 52.699309001 + ], + [ + 13.2456353, + 52.699315201 + ], + [ + 13.2460293, + 52.699323501 + ], + [ + 13.2464279, + 52.699331801 + ], + [ + 13.2469627, + 52.699342701 + ], + [ + 13.2478881, + 52.699367901 + ], + [ + 13.248818, + 52.699395901 + ], + [ + 13.2506255, + 52.699449801 + ], + [ + 13.2516142, + 52.699480201 + ], + [ + 13.2593947, + 52.699720601 + ], + [ + 13.2604604, + 52.699754401 + ], + [ + 13.2643396, + 52.699871801 + ], + [ + 13.2660224, + 52.699918101 + ], + [ + 13.2684387, + 52.699977701 + ], + [ + 13.2692326, + 52.699989501 + ], + [ + 13.2699176, + 52.699996801 + ], + [ + 13.2702777, + 52.700000801 + ], + [ + 13.2713597, + 52.700003301 + ], + [ + 13.2724328, + 52.699999401 + ], + [ + 13.2738448, + 52.699968301 + ], + [ + 13.2750987, + 52.699927301 + ], + [ + 13.2766876, + 52.699858901 + ], + [ + 13.2780085, + 52.699784701 + ], + [ + 13.2790744, + 52.699714601 + ], + [ + 13.2801261, + 52.699633901 + ], + [ + 13.2811751, + 52.699541601 + ], + [ + 13.2819103, + 52.699472001 + ], + [ + 13.2821991, + 52.699443101 + ], + [ + 13.2830244, + 52.699356501 + ], + [ + 13.2840592, + 52.699240501 + ], + [ + 13.2851098, + 52.699110201 + ], + [ + 13.2864478, + 52.698930701 + ], + [ + 13.2871848, + 52.698822901 + ], + [ + 13.2882149, + 52.698666301 + ], + [ + 13.2895148, + 52.698451601 + ], + [ + 13.2910287, + 52.698180101 + ], + [ + 13.2920458, + 52.697982801 + ], + [ + 13.2927937, + 52.697832101 + ], + [ + 13.2935555, + 52.697675501 + ], + [ + 13.2945667, + 52.697454901 + ], + [ + 13.2955412, + 52.697229201 + ], + [ + 13.2965465, + 52.696989001 + ], + [ + 13.2972923, + 52.696803401 + ], + [ + 13.2982626, + 52.696549901 + ], + [ + 13.2989947, + 52.696352801 + ], + [ + 13.2994767, + 52.696220301 + ], + [ + 13.3014057, + 52.695667801 + ], + [ + 13.3018795, + 52.695527401 + ], + [ + 13.3030614, + 52.695172601 + ], + [ + 13.304742, + 52.694663901 + ], + [ + 13.3054523, + 52.694445201 + ], + [ + 13.3063999, + 52.694156701 + ], + [ + 13.3073569, + 52.693862401 + ], + [ + 13.3083144, + 52.693574001 + ], + [ + 13.3090372, + 52.693350101 + ], + [ + 13.3097533, + 52.693132001 + ], + [ + 13.3104576, + 52.692916601 + ], + [ + 13.3111637, + 52.692700801 + ], + [ + 13.3119423, + 52.692461501 + ], + [ + 13.3143795, + 52.691716701 + ], + [ + 13.3155753, + 52.691354801 + ], + [ + 13.3165179, + 52.691064101 + ], + [ + 13.316983, + 52.690922201 + ], + [ + 13.3176929, + 52.690705001 + ], + [ + 13.3186509, + 52.690413801 + ], + [ + 13.3193515, + 52.690198801 + ], + [ + 13.3202967, + 52.689909501 + ], + [ + 13.3217122, + 52.689477401 + ], + [ + 13.3226854, + 52.689180001 + ], + [ + 13.323392, + 52.688964601 + ], + [ + 13.3239403, + 52.688806201 + ], + [ + 13.3248096, + 52.688531301 + ], + [ + 13.3255245, + 52.688313301 + ], + [ + 13.3262287, + 52.688097801 + ], + [ + 13.3276729, + 52.687656101 + ], + [ + 13.3307415, + 52.686717601 + ], + [ + 13.3316819, + 52.686432501 + ], + [ + 13.3326275, + 52.686155901 + ], + [ + 13.3333474, + 52.685950401 + ], + [ + 13.3340829, + 52.685749601 + ], + [ + 13.3350483, + 52.685489701 + ], + [ + 13.3360415, + 52.685231101 + ], + [ + 13.3370206, + 52.684988701 + ], + [ + 13.3380091, + 52.684750401 + ], + [ + 13.3389941, + 52.684520601 + ], + [ + 13.3399951, + 52.684299301 + ], + [ + 13.3409801, + 52.684088401 + ], + [ + 13.3420006, + 52.683879701 + ], + [ + 13.3429662, + 52.683697901 + ], + [ + 13.3442139, + 52.683457901 + ], + [ + 13.3457578, + 52.683187001 + ], + [ + 13.3473579, + 52.682929101 + ], + [ + 13.3492597, + 52.682646901 + ], + [ + 13.3511857, + 52.682392701 + ], + [ + 13.3531544, + 52.682164101 + ], + [ + 13.3549462, + 52.681981601 + ], + [ + 13.3570291, + 52.681801601 + ], + [ + 13.3591293, + 52.681650101 + ], + [ + 13.3615473, + 52.681523801 + ], + [ + 13.3639654, + 52.681427701 + ], + [ + 13.3663834, + 52.681335201 + ], + [ + 13.3691785, + 52.681225101 + ], + [ + 13.3705995, + 52.681163101 + ], + [ + 13.3720231, + 52.681092901 + ], + [ + 13.3733676, + 52.681016301 + ], + [ + 13.3745331, + 52.680936401 + ], + [ + 13.3747801, + 52.680918701 + ], + [ + 13.3760194, + 52.680818501 + ], + [ + 13.376867, + 52.680739401 + ], + [ + 13.3776777, + 52.680656101 + ], + [ + 13.3785675, + 52.680552701 + ], + [ + 13.3794069, + 52.680447501 + ], + [ + 13.3804665, + 52.680293901 + ], + [ + 13.3815215, + 52.680124701 + ], + [ + 13.3830842, + 52.679835201 + ], + [ + 13.3844763, + 52.679543601 + ], + [ + 13.3856886, + 52.679253601 + ], + [ + 13.3863286, + 52.679084801 + ], + [ + 13.3869661, + 52.678912101 + ], + [ + 13.3876283, + 52.678717201 + ], + [ + 13.3882597, + 52.678524301 + ], + [ + 13.3888782, + 52.678327901 + ], + [ + 13.389851, + 52.677996401 + ], + [ + 13.3904633, + 52.677751301 + ], + [ + 13.3912009, + 52.677482601 + ], + [ + 13.3912638, + 52.677456801 + ], + [ + 13.3928065, + 52.676823501 + ], + [ + 13.393962, + 52.676300701 + ], + [ + 13.3946335, + 52.675961201 + ], + [ + 13.3951265, + 52.675712901 + ], + [ + 13.3956843, + 52.675440701 + ], + [ + 13.3961284, + 52.675202401 + ], + [ + 13.3968143, + 52.674809101 + ], + [ + 13.3975284, + 52.674374701 + ], + [ + 13.3984461, + 52.673788501 + ], + [ + 13.3995035, + 52.673082201 + ], + [ + 13.4001369, + 52.672634301 + ], + [ + 13.4003204, + 52.672500701 + ], + [ + 13.4011326, + 52.671855701 + ], + [ + 13.4018298, + 52.671252501 + ], + [ + 13.4025961, + 52.670549801 + ], + [ + 13.4026815, + 52.670470301 + ], + [ + 13.4037585, + 52.669395101 + ], + [ + 13.4048421, + 52.668139501 + ], + [ + 13.4059365, + 52.666760101 + ], + [ + 13.40622722, + 52.66636061 + ] + ] + } + }, + { + "identifier": "2026-017646--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_006.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.71090709584419,13.023712651771643,52.63573547339667,13.44091373397921", + "point": "52.71090709584419,13.023712651771643", + "startLcPosition": "45", + "impact": { + "lower": "Barnim", + "upper": "Havelland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Barnim", + "title": "A10 | Havelland - Barnim", + "coordinate": { + "lat": 52.71090709584419, + "long": 13.023712651771643 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:30 Uhr", + "14.04.26 von 07:00 bis 15:30 Uhr", + "15.04.26 von 07:00 bis 15:30 Uhr", + "16.04.26 von 07:00 bis 15:30 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A10: Dreieck Havelland -> Dreieck Barnim, zwischen 0.3 km hinter AD Havelland und 8.4 km vor AD Barnim", + "", + "L\u00e4nge: 31.42 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A10 A24 Gr\u00fcnpflege Unimog " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.023712652, + 52.710907096 + ], + [ + 13.023782, + 52.710895301 + ], + [ + 13.028297, + 52.710128201 + ], + [ + 13.029779, + 52.709879401 + ], + [ + 13.0324812, + 52.709422101 + ], + [ + 13.0348995, + 52.709012801 + ], + [ + 13.0354313, + 52.708915801 + ], + [ + 13.0358368, + 52.708847701 + ], + [ + 13.0371993, + 52.708615801 + ], + [ + 13.0474578, + 52.706874201 + ], + [ + 13.0476224, + 52.706846101 + ], + [ + 13.0487215, + 52.706658201 + ], + [ + 13.0509608, + 52.706282501 + ], + [ + 13.0530011, + 52.705962801 + ], + [ + 13.0552967, + 52.705653601 + ], + [ + 13.0569171, + 52.705441101 + ], + [ + 13.0584163, + 52.705244201 + ], + [ + 13.0598382, + 52.705100401 + ], + [ + 13.0613014, + 52.704957201 + ], + [ + 13.0629638, + 52.704825601 + ], + [ + 13.0640075, + 52.704746401 + ], + [ + 13.0650401, + 52.704685101 + ], + [ + 13.068294, + 52.704535501 + ], + [ + 13.0709349, + 52.704491001 + ], + [ + 13.0727061, + 52.704481301 + ], + [ + 13.0755711, + 52.704508001 + ], + [ + 13.0786153, + 52.704593601 + ], + [ + 13.0809583, + 52.704723101 + ], + [ + 13.0834227, + 52.704889301 + ], + [ + 13.0880904, + 52.705360601 + ], + [ + 13.0907533, + 52.705656201 + ], + [ + 13.0911088, + 52.705701101 + ], + [ + 13.0934302, + 52.705994601 + ], + [ + 13.0955346, + 52.706235801 + ], + [ + 13.0965305, + 52.706344901 + ], + [ + 13.0983593, + 52.706543201 + ], + [ + 13.1007233, + 52.706782801 + ], + [ + 13.1028128, + 52.706960201 + ], + [ + 13.1043982, + 52.707070301 + ], + [ + 13.1058116, + 52.707148601 + ], + [ + 13.1068468, + 52.707207301 + ], + [ + 13.1088027, + 52.707283801 + ], + [ + 13.1106731, + 52.707313401 + ], + [ + 13.1123036, + 52.707333001 + ], + [ + 13.1140875, + 52.707329801 + ], + [ + 13.1156728, + 52.707295001 + ], + [ + 13.1181355, + 52.707228201 + ], + [ + 13.1209685, + 52.707095201 + ], + [ + 13.1231035, + 52.706959901 + ], + [ + 13.1279393, + 52.706567701 + ], + [ + 13.1320995, + 52.706230301 + ], + [ + 13.1368591, + 52.705920501 + ], + [ + 13.1407286, + 52.705759101 + ], + [ + 13.1410686, + 52.705745301 + ], + [ + 13.1451266, + 52.705632401 + ], + [ + 13.145822, + 52.705621201 + ], + [ + 13.1464684, + 52.705612901 + ], + [ + 13.1474563, + 52.705601301 + ], + [ + 13.1484361, + 52.705596201 + ], + [ + 13.148966, + 52.705594501 + ], + [ + 13.1498933, + 52.705593601 + ], + [ + 13.1543571, + 52.705608401 + ], + [ + 13.1608339, + 52.705628101 + ], + [ + 13.1635231, + 52.705637001 + ], + [ + 13.1684098, + 52.705654401 + ], + [ + 13.1704213, + 52.705668701 + ], + [ + 13.1706759, + 52.705669101 + ], + [ + 13.1734608, + 52.705673401 + ], + [ + 13.1761256, + 52.705681401 + ], + [ + 13.1782949, + 52.705680401 + ], + [ + 13.1811158, + 52.705691001 + ], + [ + 13.1825272, + 52.705696901 + ], + [ + 13.1854619, + 52.705701501 + ], + [ + 13.1869774, + 52.705681801 + ], + [ + 13.188597, + 52.705638401 + ], + [ + 13.1891912, + 52.705615701 + ], + [ + 13.1904059, + 52.705564701 + ], + [ + 13.1916438, + 52.705495301 + ], + [ + 13.1932389, + 52.705394001 + ], + [ + 13.1936222, + 52.705364201 + ], + [ + 13.1955621, + 52.705178401 + ], + [ + 13.1964844, + 52.705095201 + ], + [ + 13.1976754, + 52.704962901 + ], + [ + 13.1992283, + 52.704771101 + ], + [ + 13.1997679, + 52.704700701 + ], + [ + 13.2008078, + 52.704549801 + ], + [ + 13.201848, + 52.704393501 + ], + [ + 13.2023624, + 52.704311601 + ], + [ + 13.2028942, + 52.704225101 + ], + [ + 13.2057074, + 52.703763401 + ], + [ + 13.2067496, + 52.703593401 + ], + [ + 13.2075209, + 52.703466601 + ], + [ + 13.2085534, + 52.703298301 + ], + [ + 13.2103678, + 52.703005701 + ], + [ + 13.2119451, + 52.702749301 + ], + [ + 13.2137299, + 52.702452201 + ], + [ + 13.2186756, + 52.701638801 + ], + [ + 13.2196915, + 52.701469301 + ], + [ + 13.2207216, + 52.701303401 + ], + [ + 13.2213732, + 52.701194401 + ], + [ + 13.2220897, + 52.701079901 + ], + [ + 13.2226532, + 52.700986001 + ], + [ + 13.2230912, + 52.700918501 + ], + [ + 13.2235338, + 52.700847301 + ], + [ + 13.2243117, + 52.700728601 + ], + [ + 13.2250787, + 52.700617501 + ], + [ + 13.225754, + 52.700521901 + ], + [ + 13.2263721, + 52.700434801 + ], + [ + 13.2269019, + 52.700365601 + ], + [ + 13.2274341, + 52.700299101 + ], + [ + 13.2281985, + 52.700207101 + ], + [ + 13.2287254, + 52.700147301 + ], + [ + 13.2295115, + 52.700060601 + ], + [ + 13.2300369, + 52.700005101 + ], + [ + 13.2305669, + 52.699950301 + ], + [ + 13.2314812, + 52.699863101 + ], + [ + 13.2325222, + 52.699772801 + ], + [ + 13.2329245, + 52.699739601 + ], + [ + 13.2334436, + 52.699697201 + ], + [ + 13.2339715, + 52.699658301 + ], + [ + 13.2344977, + 52.699621201 + ], + [ + 13.2350263, + 52.699586201 + ], + [ + 13.2358282, + 52.699535501 + ], + [ + 13.2363502, + 52.699504601 + ], + [ + 13.2368745, + 52.699476501 + ], + [ + 13.2374088, + 52.699451701 + ], + [ + 13.2379361, + 52.699426101 + ], + [ + 13.2387349, + 52.699394501 + ], + [ + 13.2395237, + 52.699368101 + ], + [ + 13.2403172, + 52.699345201 + ], + [ + 13.2408563, + 52.699331901 + ], + [ + 13.241644, + 52.699318801 + ], + [ + 13.2421675, + 52.699311501 + ], + [ + 13.2429763, + 52.699303201 + ], + [ + 13.2435119, + 52.699302201 + ], + [ + 13.2443029, + 52.699304201 + ], + [ + 13.2446918, + 52.699306601 + ], + [ + 13.2451005, + 52.699309001 + ], + [ + 13.2456353, + 52.699315201 + ], + [ + 13.2460293, + 52.699323501 + ], + [ + 13.2464279, + 52.699331801 + ], + [ + 13.2469627, + 52.699342701 + ], + [ + 13.2478881, + 52.699367901 + ], + [ + 13.248818, + 52.699395901 + ], + [ + 13.2506255, + 52.699449801 + ], + [ + 13.2516142, + 52.699480201 + ], + [ + 13.2593947, + 52.699720601 + ], + [ + 13.2604604, + 52.699754401 + ], + [ + 13.2643396, + 52.699871801 + ], + [ + 13.2660224, + 52.699918101 + ], + [ + 13.2684387, + 52.699977701 + ], + [ + 13.2692326, + 52.699989501 + ], + [ + 13.2699176, + 52.699996801 + ], + [ + 13.2702777, + 52.700000801 + ], + [ + 13.2713597, + 52.700003301 + ], + [ + 13.2724328, + 52.699999401 + ], + [ + 13.2738448, + 52.699968301 + ], + [ + 13.2750987, + 52.699927301 + ], + [ + 13.2766876, + 52.699858901 + ], + [ + 13.2780085, + 52.699784701 + ], + [ + 13.2790744, + 52.699714601 + ], + [ + 13.2801261, + 52.699633901 + ], + [ + 13.2811751, + 52.699541601 + ], + [ + 13.2819103, + 52.699472001 + ], + [ + 13.2821991, + 52.699443101 + ], + [ + 13.2830244, + 52.699356501 + ], + [ + 13.2840592, + 52.699240501 + ], + [ + 13.2851098, + 52.699110201 + ], + [ + 13.2864478, + 52.698930701 + ], + [ + 13.2871848, + 52.698822901 + ], + [ + 13.2882149, + 52.698666301 + ], + [ + 13.2895148, + 52.698451601 + ], + [ + 13.2910287, + 52.698180101 + ], + [ + 13.2920458, + 52.697982801 + ], + [ + 13.2927937, + 52.697832101 + ], + [ + 13.2935555, + 52.697675501 + ], + [ + 13.2945667, + 52.697454901 + ], + [ + 13.2955412, + 52.697229201 + ], + [ + 13.2965465, + 52.696989001 + ], + [ + 13.2972923, + 52.696803401 + ], + [ + 13.2982626, + 52.696549901 + ], + [ + 13.2989947, + 52.696352801 + ], + [ + 13.2994767, + 52.696220301 + ], + [ + 13.3014057, + 52.695667801 + ], + [ + 13.3018795, + 52.695527401 + ], + [ + 13.3030614, + 52.695172601 + ], + [ + 13.304742, + 52.694663901 + ], + [ + 13.3054523, + 52.694445201 + ], + [ + 13.3063999, + 52.694156701 + ], + [ + 13.3073569, + 52.693862401 + ], + [ + 13.3083144, + 52.693574001 + ], + [ + 13.3090372, + 52.693350101 + ], + [ + 13.3097533, + 52.693132001 + ], + [ + 13.3104576, + 52.692916601 + ], + [ + 13.3111637, + 52.692700801 + ], + [ + 13.3119423, + 52.692461501 + ], + [ + 13.3143795, + 52.691716701 + ], + [ + 13.3155753, + 52.691354801 + ], + [ + 13.3165179, + 52.691064101 + ], + [ + 13.316983, + 52.690922201 + ], + [ + 13.3176929, + 52.690705001 + ], + [ + 13.3186509, + 52.690413801 + ], + [ + 13.3193515, + 52.690198801 + ], + [ + 13.3202967, + 52.689909501 + ], + [ + 13.3217122, + 52.689477401 + ], + [ + 13.3226854, + 52.689180001 + ], + [ + 13.323392, + 52.688964601 + ], + [ + 13.3239403, + 52.688806201 + ], + [ + 13.3248096, + 52.688531301 + ], + [ + 13.3255245, + 52.688313301 + ], + [ + 13.3262287, + 52.688097801 + ], + [ + 13.3276729, + 52.687656101 + ], + [ + 13.3307415, + 52.686717601 + ], + [ + 13.3316819, + 52.686432501 + ], + [ + 13.3326275, + 52.686155901 + ], + [ + 13.3333474, + 52.685950401 + ], + [ + 13.3340829, + 52.685749601 + ], + [ + 13.3350483, + 52.685489701 + ], + [ + 13.3360415, + 52.685231101 + ], + [ + 13.3370206, + 52.684988701 + ], + [ + 13.3380091, + 52.684750401 + ], + [ + 13.3389941, + 52.684520601 + ], + [ + 13.3399951, + 52.684299301 + ], + [ + 13.3409801, + 52.684088401 + ], + [ + 13.3420006, + 52.683879701 + ], + [ + 13.3429662, + 52.683697901 + ], + [ + 13.3442139, + 52.683457901 + ], + [ + 13.3457578, + 52.683187001 + ], + [ + 13.3473579, + 52.682929101 + ], + [ + 13.3492597, + 52.682646901 + ], + [ + 13.3511857, + 52.682392701 + ], + [ + 13.3531544, + 52.682164101 + ], + [ + 13.3549462, + 52.681981601 + ], + [ + 13.3570291, + 52.681801601 + ], + [ + 13.3591293, + 52.681650101 + ], + [ + 13.3615473, + 52.681523801 + ], + [ + 13.3639654, + 52.681427701 + ], + [ + 13.3663834, + 52.681335201 + ], + [ + 13.3691785, + 52.681225101 + ], + [ + 13.3705995, + 52.681163101 + ], + [ + 13.3720231, + 52.681092901 + ], + [ + 13.3733676, + 52.681016301 + ], + [ + 13.3745331, + 52.680936401 + ], + [ + 13.3747801, + 52.680918701 + ], + [ + 13.3760194, + 52.680818501 + ], + [ + 13.376867, + 52.680739401 + ], + [ + 13.3776777, + 52.680656101 + ], + [ + 13.3785675, + 52.680552701 + ], + [ + 13.3794069, + 52.680447501 + ], + [ + 13.3804665, + 52.680293901 + ], + [ + 13.3815215, + 52.680124701 + ], + [ + 13.3830842, + 52.679835201 + ], + [ + 13.3844763, + 52.679543601 + ], + [ + 13.3856886, + 52.679253601 + ], + [ + 13.3863286, + 52.679084801 + ], + [ + 13.3869661, + 52.678912101 + ], + [ + 13.3876283, + 52.678717201 + ], + [ + 13.3882597, + 52.678524301 + ], + [ + 13.3888782, + 52.678327901 + ], + [ + 13.389851, + 52.677996401 + ], + [ + 13.3904633, + 52.677751301 + ], + [ + 13.3912009, + 52.677482601 + ], + [ + 13.3912638, + 52.677456801 + ], + [ + 13.3928065, + 52.676823501 + ], + [ + 13.393962, + 52.676300701 + ], + [ + 13.3946335, + 52.675961201 + ], + [ + 13.3951265, + 52.675712901 + ], + [ + 13.3956843, + 52.675440701 + ], + [ + 13.3961284, + 52.675202401 + ], + [ + 13.3968143, + 52.674809101 + ], + [ + 13.3975284, + 52.674374701 + ], + [ + 13.3984461, + 52.673788501 + ], + [ + 13.3995035, + 52.673082201 + ], + [ + 13.4001369, + 52.672634301 + ], + [ + 13.4003204, + 52.672500701 + ], + [ + 13.4011326, + 52.671855701 + ], + [ + 13.4018298, + 52.671252501 + ], + [ + 13.4025961, + 52.670549801 + ], + [ + 13.4026815, + 52.670470301 + ], + [ + 13.4037585, + 52.669395101 + ], + [ + 13.4048421, + 52.668139501 + ], + [ + 13.4059365, + 52.666760101 + ], + [ + 13.4066231, + 52.665816601 + ], + [ + 13.4071057, + 52.665116201 + ], + [ + 13.4085868, + 52.662966601 + ], + [ + 13.4086933, + 52.662813301 + ], + [ + 13.4088783, + 52.662543401 + ], + [ + 13.4100624, + 52.660835701 + ], + [ + 13.4107237, + 52.659881901 + ], + [ + 13.4122312, + 52.657644001 + ], + [ + 13.4125404, + 52.657197801 + ], + [ + 13.4137073, + 52.655550601 + ], + [ + 13.413973, + 52.655197401 + ], + [ + 13.41406, + 52.655082101 + ], + [ + 13.4143333, + 52.654719101 + ], + [ + 13.4150147, + 52.653842801 + ], + [ + 13.4156804, + 52.652989801 + ], + [ + 13.4163187, + 52.652244801 + ], + [ + 13.4172141, + 52.651245401 + ], + [ + 13.418427, + 52.649970501 + ], + [ + 13.418837, + 52.649585701 + ], + [ + 13.4192389, + 52.649197301 + ], + [ + 13.4198458, + 52.648620001 + ], + [ + 13.4206571, + 52.647882101 + ], + [ + 13.4216669, + 52.646994401 + ], + [ + 13.4223687, + 52.646405901 + ], + [ + 13.4235536, + 52.645479701 + ], + [ + 13.4239675, + 52.645142601 + ], + [ + 13.424896, + 52.644469701 + ], + [ + 13.4257741, + 52.643843901 + ], + [ + 13.4262629, + 52.643501001 + ], + [ + 13.4269852, + 52.642997801 + ], + [ + 13.4280905, + 52.642267301 + ], + [ + 13.4295681, + 52.641333701 + ], + [ + 13.4310497, + 52.640435901 + ], + [ + 13.4330386, + 52.639381201 + ], + [ + 13.4349707, + 52.638385801 + ], + [ + 13.4361675, + 52.637806401 + ], + [ + 13.4374242, + 52.637226901 + ], + [ + 13.4382829, + 52.636839701 + ], + [ + 13.4398473, + 52.636176501 + ], + [ + 13.440913734, + 52.635735473 + ] + ] + } + }, + { + "identifier": "2026-017654--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_005.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.71090709584419,13.023712651771643,52.63573547339667,13.44091373397921", + "point": "52.71090709584419,13.023712651771643", + "startLcPosition": "45", + "impact": { + "lower": "Barnim", + "upper": "Havelland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Barnim", + "title": "A10 | Havelland - Barnim", + "coordinate": { + "lat": 52.71090709584419, + "long": 13.023712651771643 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:30 Uhr", + "14.04.26 von 07:00 bis 15:30 Uhr", + "15.04.26 von 07:00 bis 15:30 Uhr", + "16.04.26 von 07:00 bis 15:30 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A10: Dreieck Havelland -> Dreieck Barnim, zwischen 0.3 km hinter AD Havelland und 8.4 km vor AD Barnim", + "", + "L\u00e4nge: 31.42 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.023712652, + 52.710907096 + ], + [ + 13.023782, + 52.710895301 + ], + [ + 13.028297, + 52.710128201 + ], + [ + 13.029779, + 52.709879401 + ], + [ + 13.0324812, + 52.709422101 + ], + [ + 13.0348995, + 52.709012801 + ], + [ + 13.0354313, + 52.708915801 + ], + [ + 13.0358368, + 52.708847701 + ], + [ + 13.0371993, + 52.708615801 + ], + [ + 13.0474578, + 52.706874201 + ], + [ + 13.0476224, + 52.706846101 + ], + [ + 13.0487215, + 52.706658201 + ], + [ + 13.0509608, + 52.706282501 + ], + [ + 13.0530011, + 52.705962801 + ], + [ + 13.0552967, + 52.705653601 + ], + [ + 13.0569171, + 52.705441101 + ], + [ + 13.0584163, + 52.705244201 + ], + [ + 13.0598382, + 52.705100401 + ], + [ + 13.0613014, + 52.704957201 + ], + [ + 13.0629638, + 52.704825601 + ], + [ + 13.0640075, + 52.704746401 + ], + [ + 13.0650401, + 52.704685101 + ], + [ + 13.068294, + 52.704535501 + ], + [ + 13.0709349, + 52.704491001 + ], + [ + 13.0727061, + 52.704481301 + ], + [ + 13.0755711, + 52.704508001 + ], + [ + 13.0786153, + 52.704593601 + ], + [ + 13.0809583, + 52.704723101 + ], + [ + 13.0834227, + 52.704889301 + ], + [ + 13.0880904, + 52.705360601 + ], + [ + 13.0907533, + 52.705656201 + ], + [ + 13.0911088, + 52.705701101 + ], + [ + 13.0934302, + 52.705994601 + ], + [ + 13.0955346, + 52.706235801 + ], + [ + 13.0965305, + 52.706344901 + ], + [ + 13.0983593, + 52.706543201 + ], + [ + 13.1007233, + 52.706782801 + ], + [ + 13.1028128, + 52.706960201 + ], + [ + 13.1043982, + 52.707070301 + ], + [ + 13.1058116, + 52.707148601 + ], + [ + 13.1068468, + 52.707207301 + ], + [ + 13.1088027, + 52.707283801 + ], + [ + 13.1106731, + 52.707313401 + ], + [ + 13.1123036, + 52.707333001 + ], + [ + 13.1140875, + 52.707329801 + ], + [ + 13.1156728, + 52.707295001 + ], + [ + 13.1181355, + 52.707228201 + ], + [ + 13.1209685, + 52.707095201 + ], + [ + 13.1231035, + 52.706959901 + ], + [ + 13.1279393, + 52.706567701 + ], + [ + 13.1320995, + 52.706230301 + ], + [ + 13.1368591, + 52.705920501 + ], + [ + 13.1407286, + 52.705759101 + ], + [ + 13.1410686, + 52.705745301 + ], + [ + 13.1451266, + 52.705632401 + ], + [ + 13.145822, + 52.705621201 + ], + [ + 13.1464684, + 52.705612901 + ], + [ + 13.1474563, + 52.705601301 + ], + [ + 13.1484361, + 52.705596201 + ], + [ + 13.148966, + 52.705594501 + ], + [ + 13.1498933, + 52.705593601 + ], + [ + 13.1543571, + 52.705608401 + ], + [ + 13.1608339, + 52.705628101 + ], + [ + 13.1635231, + 52.705637001 + ], + [ + 13.1684098, + 52.705654401 + ], + [ + 13.1704213, + 52.705668701 + ], + [ + 13.1706759, + 52.705669101 + ], + [ + 13.1734608, + 52.705673401 + ], + [ + 13.1761256, + 52.705681401 + ], + [ + 13.1782949, + 52.705680401 + ], + [ + 13.1811158, + 52.705691001 + ], + [ + 13.1825272, + 52.705696901 + ], + [ + 13.1854619, + 52.705701501 + ], + [ + 13.1869774, + 52.705681801 + ], + [ + 13.188597, + 52.705638401 + ], + [ + 13.1891912, + 52.705615701 + ], + [ + 13.1904059, + 52.705564701 + ], + [ + 13.1916438, + 52.705495301 + ], + [ + 13.1932389, + 52.705394001 + ], + [ + 13.1936222, + 52.705364201 + ], + [ + 13.1955621, + 52.705178401 + ], + [ + 13.1964844, + 52.705095201 + ], + [ + 13.1976754, + 52.704962901 + ], + [ + 13.1992283, + 52.704771101 + ], + [ + 13.1997679, + 52.704700701 + ], + [ + 13.2008078, + 52.704549801 + ], + [ + 13.201848, + 52.704393501 + ], + [ + 13.2023624, + 52.704311601 + ], + [ + 13.2028942, + 52.704225101 + ], + [ + 13.2057074, + 52.703763401 + ], + [ + 13.2067496, + 52.703593401 + ], + [ + 13.2075209, + 52.703466601 + ], + [ + 13.2085534, + 52.703298301 + ], + [ + 13.2103678, + 52.703005701 + ], + [ + 13.2119451, + 52.702749301 + ], + [ + 13.2137299, + 52.702452201 + ], + [ + 13.2186756, + 52.701638801 + ], + [ + 13.2196915, + 52.701469301 + ], + [ + 13.2207216, + 52.701303401 + ], + [ + 13.2213732, + 52.701194401 + ], + [ + 13.2220897, + 52.701079901 + ], + [ + 13.2226532, + 52.700986001 + ], + [ + 13.2230912, + 52.700918501 + ], + [ + 13.2235338, + 52.700847301 + ], + [ + 13.2243117, + 52.700728601 + ], + [ + 13.2250787, + 52.700617501 + ], + [ + 13.225754, + 52.700521901 + ], + [ + 13.2263721, + 52.700434801 + ], + [ + 13.2269019, + 52.700365601 + ], + [ + 13.2274341, + 52.700299101 + ], + [ + 13.2281985, + 52.700207101 + ], + [ + 13.2287254, + 52.700147301 + ], + [ + 13.2295115, + 52.700060601 + ], + [ + 13.2300369, + 52.700005101 + ], + [ + 13.2305669, + 52.699950301 + ], + [ + 13.2314812, + 52.699863101 + ], + [ + 13.2325222, + 52.699772801 + ], + [ + 13.2329245, + 52.699739601 + ], + [ + 13.2334436, + 52.699697201 + ], + [ + 13.2339715, + 52.699658301 + ], + [ + 13.2344977, + 52.699621201 + ], + [ + 13.2350263, + 52.699586201 + ], + [ + 13.2358282, + 52.699535501 + ], + [ + 13.2363502, + 52.699504601 + ], + [ + 13.2368745, + 52.699476501 + ], + [ + 13.2374088, + 52.699451701 + ], + [ + 13.2379361, + 52.699426101 + ], + [ + 13.2387349, + 52.699394501 + ], + [ + 13.2395237, + 52.699368101 + ], + [ + 13.2403172, + 52.699345201 + ], + [ + 13.2408563, + 52.699331901 + ], + [ + 13.241644, + 52.699318801 + ], + [ + 13.2421675, + 52.699311501 + ], + [ + 13.2429763, + 52.699303201 + ], + [ + 13.2435119, + 52.699302201 + ], + [ + 13.2443029, + 52.699304201 + ], + [ + 13.2446918, + 52.699306601 + ], + [ + 13.2451005, + 52.699309001 + ], + [ + 13.2456353, + 52.699315201 + ], + [ + 13.2460293, + 52.699323501 + ], + [ + 13.2464279, + 52.699331801 + ], + [ + 13.2469627, + 52.699342701 + ], + [ + 13.2478881, + 52.699367901 + ], + [ + 13.248818, + 52.699395901 + ], + [ + 13.2506255, + 52.699449801 + ], + [ + 13.2516142, + 52.699480201 + ], + [ + 13.2593947, + 52.699720601 + ], + [ + 13.2604604, + 52.699754401 + ], + [ + 13.2643396, + 52.699871801 + ], + [ + 13.2660224, + 52.699918101 + ], + [ + 13.2684387, + 52.699977701 + ], + [ + 13.2692326, + 52.699989501 + ], + [ + 13.2699176, + 52.699996801 + ], + [ + 13.2702777, + 52.700000801 + ], + [ + 13.2713597, + 52.700003301 + ], + [ + 13.2724328, + 52.699999401 + ], + [ + 13.2738448, + 52.699968301 + ], + [ + 13.2750987, + 52.699927301 + ], + [ + 13.2766876, + 52.699858901 + ], + [ + 13.2780085, + 52.699784701 + ], + [ + 13.2790744, + 52.699714601 + ], + [ + 13.2801261, + 52.699633901 + ], + [ + 13.2811751, + 52.699541601 + ], + [ + 13.2819103, + 52.699472001 + ], + [ + 13.2821991, + 52.699443101 + ], + [ + 13.2830244, + 52.699356501 + ], + [ + 13.2840592, + 52.699240501 + ], + [ + 13.2851098, + 52.699110201 + ], + [ + 13.2864478, + 52.698930701 + ], + [ + 13.2871848, + 52.698822901 + ], + [ + 13.2882149, + 52.698666301 + ], + [ + 13.2895148, + 52.698451601 + ], + [ + 13.2910287, + 52.698180101 + ], + [ + 13.2920458, + 52.697982801 + ], + [ + 13.2927937, + 52.697832101 + ], + [ + 13.2935555, + 52.697675501 + ], + [ + 13.2945667, + 52.697454901 + ], + [ + 13.2955412, + 52.697229201 + ], + [ + 13.2965465, + 52.696989001 + ], + [ + 13.2972923, + 52.696803401 + ], + [ + 13.2982626, + 52.696549901 + ], + [ + 13.2989947, + 52.696352801 + ], + [ + 13.2994767, + 52.696220301 + ], + [ + 13.3014057, + 52.695667801 + ], + [ + 13.3018795, + 52.695527401 + ], + [ + 13.3030614, + 52.695172601 + ], + [ + 13.304742, + 52.694663901 + ], + [ + 13.3054523, + 52.694445201 + ], + [ + 13.3063999, + 52.694156701 + ], + [ + 13.3073569, + 52.693862401 + ], + [ + 13.3083144, + 52.693574001 + ], + [ + 13.3090372, + 52.693350101 + ], + [ + 13.3097533, + 52.693132001 + ], + [ + 13.3104576, + 52.692916601 + ], + [ + 13.3111637, + 52.692700801 + ], + [ + 13.3119423, + 52.692461501 + ], + [ + 13.3143795, + 52.691716701 + ], + [ + 13.3155753, + 52.691354801 + ], + [ + 13.3165179, + 52.691064101 + ], + [ + 13.316983, + 52.690922201 + ], + [ + 13.3176929, + 52.690705001 + ], + [ + 13.3186509, + 52.690413801 + ], + [ + 13.3193515, + 52.690198801 + ], + [ + 13.3202967, + 52.689909501 + ], + [ + 13.3217122, + 52.689477401 + ], + [ + 13.3226854, + 52.689180001 + ], + [ + 13.323392, + 52.688964601 + ], + [ + 13.3239403, + 52.688806201 + ], + [ + 13.3248096, + 52.688531301 + ], + [ + 13.3255245, + 52.688313301 + ], + [ + 13.3262287, + 52.688097801 + ], + [ + 13.3276729, + 52.687656101 + ], + [ + 13.3307415, + 52.686717601 + ], + [ + 13.3316819, + 52.686432501 + ], + [ + 13.3326275, + 52.686155901 + ], + [ + 13.3333474, + 52.685950401 + ], + [ + 13.3340829, + 52.685749601 + ], + [ + 13.3350483, + 52.685489701 + ], + [ + 13.3360415, + 52.685231101 + ], + [ + 13.3370206, + 52.684988701 + ], + [ + 13.3380091, + 52.684750401 + ], + [ + 13.3389941, + 52.684520601 + ], + [ + 13.3399951, + 52.684299301 + ], + [ + 13.3409801, + 52.684088401 + ], + [ + 13.3420006, + 52.683879701 + ], + [ + 13.3429662, + 52.683697901 + ], + [ + 13.3442139, + 52.683457901 + ], + [ + 13.3457578, + 52.683187001 + ], + [ + 13.3473579, + 52.682929101 + ], + [ + 13.3492597, + 52.682646901 + ], + [ + 13.3511857, + 52.682392701 + ], + [ + 13.3531544, + 52.682164101 + ], + [ + 13.3549462, + 52.681981601 + ], + [ + 13.3570291, + 52.681801601 + ], + [ + 13.3591293, + 52.681650101 + ], + [ + 13.3615473, + 52.681523801 + ], + [ + 13.3639654, + 52.681427701 + ], + [ + 13.3663834, + 52.681335201 + ], + [ + 13.3691785, + 52.681225101 + ], + [ + 13.3705995, + 52.681163101 + ], + [ + 13.3720231, + 52.681092901 + ], + [ + 13.3733676, + 52.681016301 + ], + [ + 13.3745331, + 52.680936401 + ], + [ + 13.3747801, + 52.680918701 + ], + [ + 13.3760194, + 52.680818501 + ], + [ + 13.376867, + 52.680739401 + ], + [ + 13.3776777, + 52.680656101 + ], + [ + 13.3785675, + 52.680552701 + ], + [ + 13.3794069, + 52.680447501 + ], + [ + 13.3804665, + 52.680293901 + ], + [ + 13.3815215, + 52.680124701 + ], + [ + 13.3830842, + 52.679835201 + ], + [ + 13.3844763, + 52.679543601 + ], + [ + 13.3856886, + 52.679253601 + ], + [ + 13.3863286, + 52.679084801 + ], + [ + 13.3869661, + 52.678912101 + ], + [ + 13.3876283, + 52.678717201 + ], + [ + 13.3882597, + 52.678524301 + ], + [ + 13.3888782, + 52.678327901 + ], + [ + 13.389851, + 52.677996401 + ], + [ + 13.3904633, + 52.677751301 + ], + [ + 13.3912009, + 52.677482601 + ], + [ + 13.3912638, + 52.677456801 + ], + [ + 13.3928065, + 52.676823501 + ], + [ + 13.393962, + 52.676300701 + ], + [ + 13.3946335, + 52.675961201 + ], + [ + 13.3951265, + 52.675712901 + ], + [ + 13.3956843, + 52.675440701 + ], + [ + 13.3961284, + 52.675202401 + ], + [ + 13.3968143, + 52.674809101 + ], + [ + 13.3975284, + 52.674374701 + ], + [ + 13.3984461, + 52.673788501 + ], + [ + 13.3995035, + 52.673082201 + ], + [ + 13.4001369, + 52.672634301 + ], + [ + 13.4003204, + 52.672500701 + ], + [ + 13.4011326, + 52.671855701 + ], + [ + 13.4018298, + 52.671252501 + ], + [ + 13.4025961, + 52.670549801 + ], + [ + 13.4026815, + 52.670470301 + ], + [ + 13.4037585, + 52.669395101 + ], + [ + 13.4048421, + 52.668139501 + ], + [ + 13.4059365, + 52.666760101 + ], + [ + 13.4066231, + 52.665816601 + ], + [ + 13.4071057, + 52.665116201 + ], + [ + 13.4085868, + 52.662966601 + ], + [ + 13.4086933, + 52.662813301 + ], + [ + 13.4088783, + 52.662543401 + ], + [ + 13.4100624, + 52.660835701 + ], + [ + 13.4107237, + 52.659881901 + ], + [ + 13.4122312, + 52.657644001 + ], + [ + 13.4125404, + 52.657197801 + ], + [ + 13.4137073, + 52.655550601 + ], + [ + 13.413973, + 52.655197401 + ], + [ + 13.41406, + 52.655082101 + ], + [ + 13.4143333, + 52.654719101 + ], + [ + 13.4150147, + 52.653842801 + ], + [ + 13.4156804, + 52.652989801 + ], + [ + 13.4163187, + 52.652244801 + ], + [ + 13.4172141, + 52.651245401 + ], + [ + 13.418427, + 52.649970501 + ], + [ + 13.418837, + 52.649585701 + ], + [ + 13.4192389, + 52.649197301 + ], + [ + 13.4198458, + 52.648620001 + ], + [ + 13.4206571, + 52.647882101 + ], + [ + 13.4216669, + 52.646994401 + ], + [ + 13.4223687, + 52.646405901 + ], + [ + 13.4235536, + 52.645479701 + ], + [ + 13.4239675, + 52.645142601 + ], + [ + 13.424896, + 52.644469701 + ], + [ + 13.4257741, + 52.643843901 + ], + [ + 13.4262629, + 52.643501001 + ], + [ + 13.4269852, + 52.642997801 + ], + [ + 13.4280905, + 52.642267301 + ], + [ + 13.4295681, + 52.641333701 + ], + [ + 13.4310497, + 52.640435901 + ], + [ + 13.4330386, + 52.639381201 + ], + [ + 13.4349707, + 52.638385801 + ], + [ + 13.4361675, + 52.637806401 + ], + [ + 13.4374242, + 52.637226901 + ], + [ + 13.4382829, + 52.636839701 + ], + [ + 13.4398473, + 52.636176501 + ], + [ + 13.440913734, + 52.635735473 + ] + ] + } + }, + { + "identifier": "2026-016357--vi-bs.2026-04-22_12-00-00-000.devi-bs.2026-04-20_10-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.699752634828066,13.260404708146675,52.69992498131113,13.275152591882659", + "point": "52.699752634828066,13.260404708146675", + "startLcPosition": "47", + "impact": { + "lower": "M\u00fchlenbeck", + "upper": "Kreuz Oranienburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Havelland -> Dreieck Barnim", + "title": "A10 | Kreuz Oranienburg - M\u00fchlenbeck", + "coordinate": { + "lat": 52.699752634828066, + "long": 13.260404708146675 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 12:00 bis 15:00 Uhr", + "23.04.26 von 08:00 bis 15:00 Uhr", + "", + "A10: Dreieck Havelland -> Dreieck Barnim, zwischen 4.5 km hinter AD Kreuz Oranienburg und 7.1 km vor AS M\u00fchlenbeck", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A24 von Fehrbellin (AS) nach Walsleben-Ost (Raststaette) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.260404708, + 52.699752635 + ], + [ + 13.2604604, + 52.699754401 + ], + [ + 13.2643396, + 52.699871801 + ], + [ + 13.2660224, + 52.699918101 + ], + [ + 13.2684387, + 52.699977701 + ], + [ + 13.2692326, + 52.699989501 + ], + [ + 13.2699176, + 52.699996801 + ], + [ + 13.2702777, + 52.700000801 + ], + [ + 13.2713597, + 52.700003301 + ], + [ + 13.2724328, + 52.699999401 + ], + [ + 13.2738448, + 52.699968301 + ], + [ + 13.2750987, + 52.699927301 + ], + [ + 13.275152592, + 52.699924981 + ] + ] + } + }, + { + "identifier": "2026-016357--vi-bs.2026-04-22_12-00-00-000.devi-bs.2026-04-20_10-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.70007124908776,13.275167977999748,52.699893080655094,13.260393036051362", + "point": "52.70007124908776,13.275167977999748", + "startLcPosition": "49", + "impact": { + "lower": "Kreuz Oranienburg", + "upper": "M\u00fchlenbeck", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Havelland", + "title": "A10 | M\u00fchlenbeck - Kreuz Oranienburg", + "coordinate": { + "lat": 52.70007124908776, + "long": 13.275167977999748 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 12:00 bis 15:00 Uhr", + "23.04.26 von 08:00 bis 15:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "", + "A10: Dreieck Barnim -> Dreieck Havelland, zwischen 7.1 km hinter AS M\u00fchlenbeck und 4.5 km vor AD Kreuz Oranienburg", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10 m", + "", + "A24 von Fehrbellin (AS) nach Walsleben-Ost (Raststaette) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.275167978, + 52.700071249 + ], + [ + 13.2739965, + 52.700112401 + ], + [ + 13.2732431, + 52.700128901 + ], + [ + 13.2726954, + 52.700136001 + ], + [ + 13.2721522, + 52.700141601 + ], + [ + 13.2715944, + 52.700147401 + ], + [ + 13.2707995, + 52.700147801 + ], + [ + 13.2700344, + 52.700142201 + ], + [ + 13.268679, + 52.700126501 + ], + [ + 13.266821, + 52.700086201 + ], + [ + 13.2644482, + 52.700015101 + ], + [ + 13.2625322, + 52.699957701 + ], + [ + 13.2606904, + 52.699902001 + ], + [ + 13.260393036, + 52.699893081 + ] + ] + } + }, + { + "identifier": "2026-016862--vi-bs.2026-04-07_06-00-00-000.devi-zus.2026-04-07_06-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.6664154199232,13.406399304903303,52.70670714101144,13.098555928055044", + "point": "52.6664154199232,13.406399304903303", + "startLcPosition": "50", + "impact": { + "lower": "Havelland", + "upper": "Pankow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Havelland", + "title": "A10 | Pankow - Havelland", + "coordinate": { + "lat": 52.6664154199232, + "long": 13.406399304903303 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 06:00 bis 16:00 Uhr", + "10.04.26 von 06:00 bis 16:00 Uhr", + "", + "A10: Dreieck Barnim -> Dreieck Havelland, zwischen 2.9 km hinter AD Pankow und 5.5 km vor AD Havelland", + "", + "L\u00e4nge: 22.02 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A10 von Havelland (AD) nach Pankow (AD) Reinigungsarbeiten Bauwerke-Graffiti " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.406399305, + 52.66641542 + ], + [ + 13.4063334, + 52.666510301 + ], + [ + 13.4051854, + 52.667993801 + ], + [ + 13.4045524, + 52.668735501 + ], + [ + 13.4036405, + 52.669737401 + ], + [ + 13.4028426, + 52.670531801 + ], + [ + 13.4027672, + 52.670608301 + ], + [ + 13.4019582, + 52.671385701 + ], + [ + 13.401411, + 52.671834601 + ], + [ + 13.4006055, + 52.672509801 + ], + [ + 13.4004104, + 52.672656001 + ], + [ + 13.3991683, + 52.673526701 + ], + [ + 13.3985971, + 52.673915001 + ], + [ + 13.3978679, + 52.674373401 + ], + [ + 13.3972727, + 52.674731601 + ], + [ + 13.396773, + 52.675022901 + ], + [ + 13.3962452, + 52.675316201 + ], + [ + 13.3958491, + 52.675533701 + ], + [ + 13.3954316, + 52.675750001 + ], + [ + 13.3948244, + 52.676053901 + ], + [ + 13.3943244, + 52.676297601 + ], + [ + 13.3937616, + 52.676560001 + ], + [ + 13.3919198, + 52.677366801 + ], + [ + 13.3912945, + 52.677599001 + ], + [ + 13.390621, + 52.677852601 + ], + [ + 13.3899272, + 52.678097801 + ], + [ + 13.3889501, + 52.678429301 + ], + [ + 13.3883312, + 52.678627701 + ], + [ + 13.3876916, + 52.678820601 + ], + [ + 13.3870358, + 52.679011501 + ], + [ + 13.386382, + 52.679189601 + ], + [ + 13.385747, + 52.679357701 + ], + [ + 13.3845434, + 52.679646501 + ], + [ + 13.383321, + 52.679921701 + ], + [ + 13.3824681, + 52.680086901 + ], + [ + 13.3815668, + 52.680265601 + ], + [ + 13.3805068, + 52.680435401 + ], + [ + 13.379445, + 52.680587201 + ], + [ + 13.3786088, + 52.680693901 + ], + [ + 13.3777071, + 52.680799001 + ], + [ + 13.3768961, + 52.680882101 + ], + [ + 13.3760386, + 52.680962101 + ], + [ + 13.3746999, + 52.681067501 + ], + [ + 13.3744626, + 52.681086301 + ], + [ + 13.3733883, + 52.681158801 + ], + [ + 13.3720345, + 52.681236701 + ], + [ + 13.3706097, + 52.681305701 + ], + [ + 13.3691875, + 52.681368101 + ], + [ + 13.3663959, + 52.681478701 + ], + [ + 13.363981, + 52.681573201 + ], + [ + 13.361566, + 52.681669401 + ], + [ + 13.359151, + 52.681795601 + ], + [ + 13.3570617, + 52.681946501 + ], + [ + 13.3549818, + 52.682124301 + ], + [ + 13.3531924, + 52.682305801 + ], + [ + 13.3512325, + 52.682537101 + ], + [ + 13.349314, + 52.682790601 + ], + [ + 13.3474243, + 52.683070101 + ], + [ + 13.3458272, + 52.683326401 + ], + [ + 13.3442781, + 52.683596101 + ], + [ + 13.3430286, + 52.683837401 + ], + [ + 13.3420934, + 52.684008901 + ], + [ + 13.3410539, + 52.684225401 + ], + [ + 13.3400487, + 52.684441301 + ], + [ + 13.3390531, + 52.684661401 + ], + [ + 13.3380451, + 52.684895501 + ], + [ + 13.3370532, + 52.685133701 + ], + [ + 13.3360759, + 52.685378301 + ], + [ + 13.3350986, + 52.685633601 + ], + [ + 13.3338946, + 52.685958101 + ], + [ + 13.3331595, + 52.686163001 + ], + [ + 13.3324506, + 52.686366801 + ], + [ + 13.3317289, + 52.686578901 + ], + [ + 13.3310214, + 52.686792201 + ], + [ + 13.3279306, + 52.687740001 + ], + [ + 13.3262702, + 52.688246301 + ], + [ + 13.3255665, + 52.688460101 + ], + [ + 13.3248694, + 52.688674001 + ], + [ + 13.3239098, + 52.688968401 + ], + [ + 13.322963, + 52.689256001 + ], + [ + 13.3219897, + 52.689553901 + ], + [ + 13.3209318, + 52.689877901 + ], + [ + 13.3205898, + 52.689982701 + ], + [ + 13.3198817, + 52.690198901 + ], + [ + 13.3191655, + 52.690418201 + ], + [ + 13.3181738, + 52.690719801 + ], + [ + 13.3175074, + 52.690922901 + ], + [ + 13.3160878, + 52.691358101 + ], + [ + 13.3151412, + 52.691646601 + ], + [ + 13.3144362, + 52.691862201 + ], + [ + 13.3135598, + 52.692130101 + ], + [ + 13.3128423, + 52.692349001 + ], + [ + 13.3119291, + 52.692628101 + ], + [ + 13.3111775, + 52.692857001 + ], + [ + 13.3104648, + 52.693075401 + ], + [ + 13.3097556, + 52.693291001 + ], + [ + 13.3090289, + 52.693513601 + ], + [ + 13.3083177, + 52.693730701 + ], + [ + 13.3073633, + 52.694022501 + ], + [ + 13.3064136, + 52.694311201 + ], + [ + 13.3056931, + 52.694532501 + ], + [ + 13.3049833, + 52.694748801 + ], + [ + 13.3040331, + 52.695038501 + ], + [ + 13.3028429, + 52.695399401 + ], + [ + 13.3016344, + 52.695759701 + ], + [ + 13.3004296, + 52.696109501 + ], + [ + 13.2992166, + 52.696448701 + ], + [ + 13.298494, + 52.696644301 + ], + [ + 13.297757, + 52.696839501 + ], + [ + 13.296751, + 52.697094101 + ], + [ + 13.295779, + 52.697328701 + ], + [ + 13.2945174, + 52.697617801 + ], + [ + 13.2941401, + 52.697701801 + ], + [ + 13.2937655, + 52.697780901 + ], + [ + 13.2927565, + 52.697992601 + ], + [ + 13.2920005, + 52.698144901 + ], + [ + 13.2909871, + 52.698337901 + ], + [ + 13.2902408, + 52.698473201 + ], + [ + 13.2894944, + 52.698603601 + ], + [ + 13.2889441, + 52.698696001 + ], + [ + 13.2881765, + 52.698819301 + ], + [ + 13.2873968, + 52.698939301 + ], + [ + 13.2866225, + 52.699054501 + ], + [ + 13.2853163, + 52.699232801 + ], + [ + 13.2839552, + 52.699399801 + ], + [ + 13.2829546, + 52.699512701 + ], + [ + 13.2822443, + 52.699584501 + ], + [ + 13.2819539, + 52.699613001 + ], + [ + 13.2803328, + 52.699761901 + ], + [ + 13.2795321, + 52.699824901 + ], + [ + 13.2787445, + 52.699881001 + ], + [ + 13.2776963, + 52.699947501 + ], + [ + 13.2758581, + 52.700047001 + ], + [ + 13.2739965, + 52.700112401 + ], + [ + 13.2732431, + 52.700128901 + ], + [ + 13.2726954, + 52.700136001 + ], + [ + 13.2721522, + 52.700141601 + ], + [ + 13.2715944, + 52.700147401 + ], + [ + 13.2707995, + 52.700147801 + ], + [ + 13.2700344, + 52.700142201 + ], + [ + 13.268679, + 52.700126501 + ], + [ + 13.266821, + 52.700086201 + ], + [ + 13.2644482, + 52.700015101 + ], + [ + 13.2625322, + 52.699957701 + ], + [ + 13.2606904, + 52.699902001 + ], + [ + 13.2598804, + 52.699877701 + ], + [ + 13.2590796, + 52.699852201 + ], + [ + 13.2574975, + 52.699804201 + ], + [ + 13.2521846, + 52.699641601 + ], + [ + 13.251592, + 52.699624601 + ], + [ + 13.2506114, + 52.699594401 + ], + [ + 13.2487258, + 52.699537501 + ], + [ + 13.2468706, + 52.699482801 + ], + [ + 13.2463363, + 52.699472701 + ], + [ + 13.245529, + 52.699459401 + ], + [ + 13.2448726, + 52.699450501 + ], + [ + 13.2441908, + 52.699447701 + ], + [ + 13.2433918, + 52.699446801 + ], + [ + 13.2425979, + 52.699451901 + ], + [ + 13.2420605, + 52.699457501 + ], + [ + 13.2412642, + 52.699468701 + ], + [ + 13.240465, + 52.699485701 + ], + [ + 13.2398057, + 52.699503501 + ], + [ + 13.2391463, + 52.699524901 + ], + [ + 13.2383288, + 52.699556301 + ], + [ + 13.2378099, + 52.699577101 + ], + [ + 13.2372785, + 52.699603201 + ], + [ + 13.2367379, + 52.699629401 + ], + [ + 13.2359465, + 52.699672901 + ], + [ + 13.2354249, + 52.699704301 + ], + [ + 13.234884, + 52.699740001 + ], + [ + 13.2343575, + 52.699775001 + ], + [ + 13.2335648, + 52.699833101 + ], + [ + 13.2325074, + 52.699920801 + ], + [ + 13.2319773, + 52.699963401 + ], + [ + 13.23145, + 52.700013601 + ], + [ + 13.2306738, + 52.700088101 + ], + [ + 13.2301359, + 52.700141901 + ], + [ + 13.2296165, + 52.700195801 + ], + [ + 13.2290862, + 52.700254601 + ], + [ + 13.2285653, + 52.700311901 + ], + [ + 13.2280069, + 52.700378401 + ], + [ + 13.2275145, + 52.700442401 + ], + [ + 13.2270057, + 52.700501701 + ], + [ + 13.2264806, + 52.700568101 + ], + [ + 13.22596, + 52.700637601 + ], + [ + 13.2254418, + 52.700707901 + ], + [ + 13.2249208, + 52.700783801 + ], + [ + 13.224408, + 52.700857601 + ], + [ + 13.2238886, + 52.700936301 + ], + [ + 13.2233808, + 52.701015501 + ], + [ + 13.2228522, + 52.701101101 + ], + [ + 13.2221852, + 52.701208801 + ], + [ + 13.2215723, + 52.701309501 + ], + [ + 13.2208104, + 52.701433901 + ], + [ + 13.2195064, + 52.701646401 + ], + [ + 13.2187397, + 52.701771801 + ], + [ + 13.2175699, + 52.701966501 + ], + [ + 13.216848, + 52.702083201 + ], + [ + 13.2153909, + 52.702326701 + ], + [ + 13.2146253, + 52.702451901 + ], + [ + 13.2109904, + 52.703041901 + ], + [ + 13.2103856, + 52.703140701 + ], + [ + 13.2097442, + 52.703246801 + ], + [ + 13.2089735, + 52.703374201 + ], + [ + 13.2082099, + 52.703498101 + ], + [ + 13.206652, + 52.703754801 + ], + [ + 13.2058638, + 52.703884101 + ], + [ + 13.2050109, + 52.704029201 + ], + [ + 13.2020282, + 52.704508601 + ], + [ + 13.201516, + 52.704595601 + ], + [ + 13.2009946, + 52.704666801 + ], + [ + 13.2004784, + 52.704742301 + ], + [ + 13.1996774, + 52.704853601 + ], + [ + 13.1989138, + 52.704954701 + ], + [ + 13.1983902, + 52.705021301 + ], + [ + 13.197368, + 52.705142601 + ], + [ + 13.1971651, + 52.705165301 + ], + [ + 13.1947258, + 52.705413901 + ], + [ + 13.1933359, + 52.705521401 + ], + [ + 13.1916206, + 52.705639701 + ], + [ + 13.1903984, + 52.705709101 + ], + [ + 13.1892256, + 52.705762801 + ], + [ + 13.1882923, + 52.705791401 + ], + [ + 13.1873024, + 52.705821301 + ], + [ + 13.1864156, + 52.705835501 + ], + [ + 13.1850439, + 52.705848501 + ], + [ + 13.1829965, + 52.705840501 + ], + [ + 13.1782751, + 52.705830501 + ], + [ + 13.1769894, + 52.705826301 + ], + [ + 13.170669, + 52.705800701 + ], + [ + 13.1704343, + 52.705800001 + ], + [ + 13.1673221, + 52.705788101 + ], + [ + 13.1633508, + 52.705781101 + ], + [ + 13.1608247, + 52.705771801 + ], + [ + 13.1574743, + 52.705751401 + ], + [ + 13.1505018, + 52.705738801 + ], + [ + 13.1488904, + 52.705738701 + ], + [ + 13.1483573, + 52.705738201 + ], + [ + 13.1465075, + 52.705751601 + ], + [ + 13.1451736, + 52.705774801 + ], + [ + 13.1408561, + 52.705891601 + ], + [ + 13.1405182, + 52.705906001 + ], + [ + 13.1369367, + 52.706047201 + ], + [ + 13.1321208, + 52.706354301 + ], + [ + 13.1230679, + 52.707098401 + ], + [ + 13.1210364, + 52.707247501 + ], + [ + 13.1184507, + 52.707390501 + ], + [ + 13.1157296, + 52.707470901 + ], + [ + 13.1132743, + 52.707502501 + ], + [ + 13.1127468, + 52.707502101 + ], + [ + 13.1106453, + 52.707485301 + ], + [ + 13.1082385, + 52.707403901 + ], + [ + 13.1063728, + 52.707328301 + ], + [ + 13.1037043, + 52.707165701 + ], + [ + 13.1014508, + 52.706991701 + ], + [ + 13.0995621, + 52.706819601 + ], + [ + 13.098555928, + 52.706707141 + ] + ] + } + }, + { + "identifier": "2026-017656--vi-bs.2026-04-13_06-00-00-000.devi-zus.2026-04-13_06-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.6664154199232,13.406399304903303,52.70670714101144,13.098555928055044", + "point": "52.6664154199232,13.406399304903303", + "startLcPosition": "50", + "impact": { + "lower": "Havelland", + "upper": "Pankow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Barnim -> Dreieck Havelland", + "title": "A10 | Pankow - Havelland", + "coordinate": { + "lat": 52.6664154199232, + "long": 13.406399304903303 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 06:00 bis 16:00 Uhr", + "14.04.26 von 06:00 bis 16:00 Uhr", + "15.04.26 von 06:00 bis 16:00 Uhr", + "16.04.26 von 06:00 bis 16:00 Uhr", + "17.04.26 von 06:00 bis 16:00 Uhr", + "", + "A10: Dreieck Barnim -> Dreieck Havelland, zwischen 2.9 km hinter AD Pankow und 5.5 km vor AD Havelland", + "", + "L\u00e4nge: 22.02 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A10 von Havelland (AD) nach Pankow (AD) Reinigungsarbeiten Bauwerke-Graffiti " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.406399305, + 52.66641542 + ], + [ + 13.4063334, + 52.666510301 + ], + [ + 13.4051854, + 52.667993801 + ], + [ + 13.4045524, + 52.668735501 + ], + [ + 13.4036405, + 52.669737401 + ], + [ + 13.4028426, + 52.670531801 + ], + [ + 13.4027672, + 52.670608301 + ], + [ + 13.4019582, + 52.671385701 + ], + [ + 13.401411, + 52.671834601 + ], + [ + 13.4006055, + 52.672509801 + ], + [ + 13.4004104, + 52.672656001 + ], + [ + 13.3991683, + 52.673526701 + ], + [ + 13.3985971, + 52.673915001 + ], + [ + 13.3978679, + 52.674373401 + ], + [ + 13.3972727, + 52.674731601 + ], + [ + 13.396773, + 52.675022901 + ], + [ + 13.3962452, + 52.675316201 + ], + [ + 13.3958491, + 52.675533701 + ], + [ + 13.3954316, + 52.675750001 + ], + [ + 13.3948244, + 52.676053901 + ], + [ + 13.3943244, + 52.676297601 + ], + [ + 13.3937616, + 52.676560001 + ], + [ + 13.3919198, + 52.677366801 + ], + [ + 13.3912945, + 52.677599001 + ], + [ + 13.390621, + 52.677852601 + ], + [ + 13.3899272, + 52.678097801 + ], + [ + 13.3889501, + 52.678429301 + ], + [ + 13.3883312, + 52.678627701 + ], + [ + 13.3876916, + 52.678820601 + ], + [ + 13.3870358, + 52.679011501 + ], + [ + 13.386382, + 52.679189601 + ], + [ + 13.385747, + 52.679357701 + ], + [ + 13.3845434, + 52.679646501 + ], + [ + 13.383321, + 52.679921701 + ], + [ + 13.3824681, + 52.680086901 + ], + [ + 13.3815668, + 52.680265601 + ], + [ + 13.3805068, + 52.680435401 + ], + [ + 13.379445, + 52.680587201 + ], + [ + 13.3786088, + 52.680693901 + ], + [ + 13.3777071, + 52.680799001 + ], + [ + 13.3768961, + 52.680882101 + ], + [ + 13.3760386, + 52.680962101 + ], + [ + 13.3746999, + 52.681067501 + ], + [ + 13.3744626, + 52.681086301 + ], + [ + 13.3733883, + 52.681158801 + ], + [ + 13.3720345, + 52.681236701 + ], + [ + 13.3706097, + 52.681305701 + ], + [ + 13.3691875, + 52.681368101 + ], + [ + 13.3663959, + 52.681478701 + ], + [ + 13.363981, + 52.681573201 + ], + [ + 13.361566, + 52.681669401 + ], + [ + 13.359151, + 52.681795601 + ], + [ + 13.3570617, + 52.681946501 + ], + [ + 13.3549818, + 52.682124301 + ], + [ + 13.3531924, + 52.682305801 + ], + [ + 13.3512325, + 52.682537101 + ], + [ + 13.349314, + 52.682790601 + ], + [ + 13.3474243, + 52.683070101 + ], + [ + 13.3458272, + 52.683326401 + ], + [ + 13.3442781, + 52.683596101 + ], + [ + 13.3430286, + 52.683837401 + ], + [ + 13.3420934, + 52.684008901 + ], + [ + 13.3410539, + 52.684225401 + ], + [ + 13.3400487, + 52.684441301 + ], + [ + 13.3390531, + 52.684661401 + ], + [ + 13.3380451, + 52.684895501 + ], + [ + 13.3370532, + 52.685133701 + ], + [ + 13.3360759, + 52.685378301 + ], + [ + 13.3350986, + 52.685633601 + ], + [ + 13.3338946, + 52.685958101 + ], + [ + 13.3331595, + 52.686163001 + ], + [ + 13.3324506, + 52.686366801 + ], + [ + 13.3317289, + 52.686578901 + ], + [ + 13.3310214, + 52.686792201 + ], + [ + 13.3279306, + 52.687740001 + ], + [ + 13.3262702, + 52.688246301 + ], + [ + 13.3255665, + 52.688460101 + ], + [ + 13.3248694, + 52.688674001 + ], + [ + 13.3239098, + 52.688968401 + ], + [ + 13.322963, + 52.689256001 + ], + [ + 13.3219897, + 52.689553901 + ], + [ + 13.3209318, + 52.689877901 + ], + [ + 13.3205898, + 52.689982701 + ], + [ + 13.3198817, + 52.690198901 + ], + [ + 13.3191655, + 52.690418201 + ], + [ + 13.3181738, + 52.690719801 + ], + [ + 13.3175074, + 52.690922901 + ], + [ + 13.3160878, + 52.691358101 + ], + [ + 13.3151412, + 52.691646601 + ], + [ + 13.3144362, + 52.691862201 + ], + [ + 13.3135598, + 52.692130101 + ], + [ + 13.3128423, + 52.692349001 + ], + [ + 13.3119291, + 52.692628101 + ], + [ + 13.3111775, + 52.692857001 + ], + [ + 13.3104648, + 52.693075401 + ], + [ + 13.3097556, + 52.693291001 + ], + [ + 13.3090289, + 52.693513601 + ], + [ + 13.3083177, + 52.693730701 + ], + [ + 13.3073633, + 52.694022501 + ], + [ + 13.3064136, + 52.694311201 + ], + [ + 13.3056931, + 52.694532501 + ], + [ + 13.3049833, + 52.694748801 + ], + [ + 13.3040331, + 52.695038501 + ], + [ + 13.3028429, + 52.695399401 + ], + [ + 13.3016344, + 52.695759701 + ], + [ + 13.3004296, + 52.696109501 + ], + [ + 13.2992166, + 52.696448701 + ], + [ + 13.298494, + 52.696644301 + ], + [ + 13.297757, + 52.696839501 + ], + [ + 13.296751, + 52.697094101 + ], + [ + 13.295779, + 52.697328701 + ], + [ + 13.2945174, + 52.697617801 + ], + [ + 13.2941401, + 52.697701801 + ], + [ + 13.2937655, + 52.697780901 + ], + [ + 13.2927565, + 52.697992601 + ], + [ + 13.2920005, + 52.698144901 + ], + [ + 13.2909871, + 52.698337901 + ], + [ + 13.2902408, + 52.698473201 + ], + [ + 13.2894944, + 52.698603601 + ], + [ + 13.2889441, + 52.698696001 + ], + [ + 13.2881765, + 52.698819301 + ], + [ + 13.2873968, + 52.698939301 + ], + [ + 13.2866225, + 52.699054501 + ], + [ + 13.2853163, + 52.699232801 + ], + [ + 13.2839552, + 52.699399801 + ], + [ + 13.2829546, + 52.699512701 + ], + [ + 13.2822443, + 52.699584501 + ], + [ + 13.2819539, + 52.699613001 + ], + [ + 13.2803328, + 52.699761901 + ], + [ + 13.2795321, + 52.699824901 + ], + [ + 13.2787445, + 52.699881001 + ], + [ + 13.2776963, + 52.699947501 + ], + [ + 13.2758581, + 52.700047001 + ], + [ + 13.2739965, + 52.700112401 + ], + [ + 13.2732431, + 52.700128901 + ], + [ + 13.2726954, + 52.700136001 + ], + [ + 13.2721522, + 52.700141601 + ], + [ + 13.2715944, + 52.700147401 + ], + [ + 13.2707995, + 52.700147801 + ], + [ + 13.2700344, + 52.700142201 + ], + [ + 13.268679, + 52.700126501 + ], + [ + 13.266821, + 52.700086201 + ], + [ + 13.2644482, + 52.700015101 + ], + [ + 13.2625322, + 52.699957701 + ], + [ + 13.2606904, + 52.699902001 + ], + [ + 13.2598804, + 52.699877701 + ], + [ + 13.2590796, + 52.699852201 + ], + [ + 13.2574975, + 52.699804201 + ], + [ + 13.2521846, + 52.699641601 + ], + [ + 13.251592, + 52.699624601 + ], + [ + 13.2506114, + 52.699594401 + ], + [ + 13.2487258, + 52.699537501 + ], + [ + 13.2468706, + 52.699482801 + ], + [ + 13.2463363, + 52.699472701 + ], + [ + 13.245529, + 52.699459401 + ], + [ + 13.2448726, + 52.699450501 + ], + [ + 13.2441908, + 52.699447701 + ], + [ + 13.2433918, + 52.699446801 + ], + [ + 13.2425979, + 52.699451901 + ], + [ + 13.2420605, + 52.699457501 + ], + [ + 13.2412642, + 52.699468701 + ], + [ + 13.240465, + 52.699485701 + ], + [ + 13.2398057, + 52.699503501 + ], + [ + 13.2391463, + 52.699524901 + ], + [ + 13.2383288, + 52.699556301 + ], + [ + 13.2378099, + 52.699577101 + ], + [ + 13.2372785, + 52.699603201 + ], + [ + 13.2367379, + 52.699629401 + ], + [ + 13.2359465, + 52.699672901 + ], + [ + 13.2354249, + 52.699704301 + ], + [ + 13.234884, + 52.699740001 + ], + [ + 13.2343575, + 52.699775001 + ], + [ + 13.2335648, + 52.699833101 + ], + [ + 13.2325074, + 52.699920801 + ], + [ + 13.2319773, + 52.699963401 + ], + [ + 13.23145, + 52.700013601 + ], + [ + 13.2306738, + 52.700088101 + ], + [ + 13.2301359, + 52.700141901 + ], + [ + 13.2296165, + 52.700195801 + ], + [ + 13.2290862, + 52.700254601 + ], + [ + 13.2285653, + 52.700311901 + ], + [ + 13.2280069, + 52.700378401 + ], + [ + 13.2275145, + 52.700442401 + ], + [ + 13.2270057, + 52.700501701 + ], + [ + 13.2264806, + 52.700568101 + ], + [ + 13.22596, + 52.700637601 + ], + [ + 13.2254418, + 52.700707901 + ], + [ + 13.2249208, + 52.700783801 + ], + [ + 13.224408, + 52.700857601 + ], + [ + 13.2238886, + 52.700936301 + ], + [ + 13.2233808, + 52.701015501 + ], + [ + 13.2228522, + 52.701101101 + ], + [ + 13.2221852, + 52.701208801 + ], + [ + 13.2215723, + 52.701309501 + ], + [ + 13.2208104, + 52.701433901 + ], + [ + 13.2195064, + 52.701646401 + ], + [ + 13.2187397, + 52.701771801 + ], + [ + 13.2175699, + 52.701966501 + ], + [ + 13.216848, + 52.702083201 + ], + [ + 13.2153909, + 52.702326701 + ], + [ + 13.2146253, + 52.702451901 + ], + [ + 13.2109904, + 52.703041901 + ], + [ + 13.2103856, + 52.703140701 + ], + [ + 13.2097442, + 52.703246801 + ], + [ + 13.2089735, + 52.703374201 + ], + [ + 13.2082099, + 52.703498101 + ], + [ + 13.206652, + 52.703754801 + ], + [ + 13.2058638, + 52.703884101 + ], + [ + 13.2050109, + 52.704029201 + ], + [ + 13.2020282, + 52.704508601 + ], + [ + 13.201516, + 52.704595601 + ], + [ + 13.2009946, + 52.704666801 + ], + [ + 13.2004784, + 52.704742301 + ], + [ + 13.1996774, + 52.704853601 + ], + [ + 13.1989138, + 52.704954701 + ], + [ + 13.1983902, + 52.705021301 + ], + [ + 13.197368, + 52.705142601 + ], + [ + 13.1971651, + 52.705165301 + ], + [ + 13.1947258, + 52.705413901 + ], + [ + 13.1933359, + 52.705521401 + ], + [ + 13.1916206, + 52.705639701 + ], + [ + 13.1903984, + 52.705709101 + ], + [ + 13.1892256, + 52.705762801 + ], + [ + 13.1882923, + 52.705791401 + ], + [ + 13.1873024, + 52.705821301 + ], + [ + 13.1864156, + 52.705835501 + ], + [ + 13.1850439, + 52.705848501 + ], + [ + 13.1829965, + 52.705840501 + ], + [ + 13.1782751, + 52.705830501 + ], + [ + 13.1769894, + 52.705826301 + ], + [ + 13.170669, + 52.705800701 + ], + [ + 13.1704343, + 52.705800001 + ], + [ + 13.1673221, + 52.705788101 + ], + [ + 13.1633508, + 52.705781101 + ], + [ + 13.1608247, + 52.705771801 + ], + [ + 13.1574743, + 52.705751401 + ], + [ + 13.1505018, + 52.705738801 + ], + [ + 13.1488904, + 52.705738701 + ], + [ + 13.1483573, + 52.705738201 + ], + [ + 13.1465075, + 52.705751601 + ], + [ + 13.1451736, + 52.705774801 + ], + [ + 13.1408561, + 52.705891601 + ], + [ + 13.1405182, + 52.705906001 + ], + [ + 13.1369367, + 52.706047201 + ], + [ + 13.1321208, + 52.706354301 + ], + [ + 13.1230679, + 52.707098401 + ], + [ + 13.1210364, + 52.707247501 + ], + [ + 13.1184507, + 52.707390501 + ], + [ + 13.1157296, + 52.707470901 + ], + [ + 13.1132743, + 52.707502501 + ], + [ + 13.1127468, + 52.707502101 + ], + [ + 13.1106453, + 52.707485301 + ], + [ + 13.1082385, + 52.707403901 + ], + [ + 13.1063728, + 52.707328301 + ], + [ + 13.1037043, + 52.707165701 + ], + [ + 13.1014508, + 52.706991701 + ], + [ + 13.0995621, + 52.706819601 + ], + [ + 13.098555928, + 52.706707141 + ] + ] + } + }, + { + "identifier": "2026-017606--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_013.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.300786560037416,13.05811764869986,52.30465096997418,13.086726766165896", + "point": "52.300786560037416,13.05811764869986", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Potsdam -> Sch\u00f6nefelder Kreuz", + "title": "Reinigung Sch\u00e4chte A115", + "coordinate": { + "lat": 52.300786560037416, + "long": 13.05811764869986 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 16.04.26 von 08:00 bis 15:00 Uhr.", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "Von A10: Dreieck Potsdam -> Sch\u00f6nefelder Kreuz, 1.6 km vor AD Nuthetal, aus Richtung Michendorf; in A10: AD Nuthetal auf die A115 in Richtung Dreieck Funkturm; nach A115: Dreieck Nuthetal -> Dreieck Funkturm, 3.6 km vor AS Saarmund, aus Richtung Nuthetal", + "", + "L\u00e4nge: 2.27 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "Reinigung Sch\u00e4chte A115" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.058117649, + 52.30078656 + ], + [ + 13.0588398, + 52.300765601 + ], + [ + 13.061641, + 52.300693401 + ], + [ + 13.0621423, + 52.300674301 + ], + [ + 13.0652064, + 52.300561701 + ], + [ + 13.0714009, + 52.300370801 + ], + [ + 13.0724823, + 52.300263101 + ], + [ + 13.0733667, + 52.300171401 + ], + [ + 13.0740221, + 52.300082401 + ], + [ + 13.0741782, + 52.300061201 + ], + [ + 13.074793, + 52.299961801 + ], + [ + 13.0762198, + 52.299686401 + ], + [ + 13.0768413, + 52.299581301 + ], + [ + 13.0773215, + 52.299525601 + ], + [ + 13.0778068, + 52.299489801 + ], + [ + 13.0782948, + 52.299474101 + ], + [ + 13.0787834, + 52.299478601 + ], + [ + 13.0792703, + 52.299503301 + ], + [ + 13.0797534, + 52.299548101 + ], + [ + 13.0802305, + 52.299612701 + ], + [ + 13.0806994, + 52.299696901 + ], + [ + 13.0811579, + 52.299800201 + ], + [ + 13.0815812, + 52.299915501 + ], + [ + 13.0819917, + 52.300047201 + ], + [ + 13.0823877, + 52.300194801 + ], + [ + 13.0827675, + 52.300357601 + ], + [ + 13.0831295, + 52.300535001 + ], + [ + 13.0834334, + 52.300703401 + ], + [ + 13.0837329, + 52.300889601 + ], + [ + 13.0839763, + 52.301058801 + ], + [ + 13.0842054, + 52.301235301 + ], + [ + 13.0843833, + 52.301386301 + ], + [ + 13.0845835, + 52.301574001 + ], + [ + 13.0847445, + 52.301741801 + ], + [ + 13.0849674, + 52.302006901 + ], + [ + 13.0852267, + 52.302366501 + ], + [ + 13.0854243, + 52.302659801 + ], + [ + 13.0859645, + 52.303488701 + ], + [ + 13.0864737, + 52.304265101 + ], + [ + 13.086726766, + 52.30465097 + ] + ] + } + }, + { + "identifier": "2026-017556--vi-bs.2026-04-13_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_017.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.30467622436154,13.086490157637735,52.30099472168842,13.058402168251774", + "point": "52.30467622436154,13.086490157637735", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "Streckenreinigung KW 16", + "coordinate": { + "lat": 52.30467622436154, + "long": 13.086490157637735 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag und Mittwoch zwischen dem 13.04.26 und dem 15.04.26 von 08:00 bis 15:00 Uhr.", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "Von A115: Dreieck Funkturm -> Dreieck Nuthetal, 0.5 km vor AD Nuthetal, aus Richtung Saarmund; in A115: AD Nuthetal auf die A10 in Richtung Dreieck Potsdam; nach A10: Sch\u00f6nefelder Kreuz -> Dreieck Potsdam, 2.3 km vor AS Michendorf, aus Richtung Nuthetal", + "", + "L\u00e4nge: 2.11 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "Streckenreinigung KW 16" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.086490158, + 52.304676224 + ], + [ + 13.0864681, + 52.304643801 + ], + [ + 13.0862263, + 52.304321201 + ], + [ + 13.08602, + 52.304072601 + ], + [ + 13.0858409, + 52.303875701 + ], + [ + 13.0856559, + 52.303687601 + ], + [ + 13.0854765, + 52.303517701 + ], + [ + 13.0852536, + 52.303321401 + ], + [ + 13.0850342, + 52.303142001 + ], + [ + 13.0848515, + 52.303001601 + ], + [ + 13.0846016, + 52.302821701 + ], + [ + 13.0843023, + 52.302622201 + ], + [ + 13.0839336, + 52.302397601 + ], + [ + 13.0835252, + 52.302172201 + ], + [ + 13.0830823, + 52.301952301 + ], + [ + 13.0827242, + 52.301790901 + ], + [ + 13.0823936, + 52.301653901 + ], + [ + 13.0820234, + 52.301512801 + ], + [ + 13.0815673, + 52.301355801 + ], + [ + 13.0811264, + 52.301220401 + ], + [ + 13.0806751, + 52.301097201 + ], + [ + 13.080142, + 52.300970601 + ], + [ + 13.0795914, + 52.300860201 + ], + [ + 13.0791171, + 52.300780801 + ], + [ + 13.0786455, + 52.300715601 + ], + [ + 13.0781704, + 52.300663601 + ], + [ + 13.0777, + 52.300625101 + ], + [ + 13.0770917, + 52.300594301 + ], + [ + 13.0762863, + 52.300570001 + ], + [ + 13.0751887, + 52.300554801 + ], + [ + 13.0741133, + 52.300549301 + ], + [ + 13.0723108, + 52.300508201 + ], + [ + 13.0719123, + 52.300521301 + ], + [ + 13.0708686, + 52.300558001 + ], + [ + 13.0655377, + 52.300737201 + ], + [ + 13.0621804, + 52.300866101 + ], + [ + 13.061654, + 52.300887901 + ], + [ + 13.0585331, + 52.300990301 + ], + [ + 13.058402168, + 52.300994722 + ] + ] + } + }, + { + "identifier": "2026-017001--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_012.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.30467622436154,13.086490157637735,52.30099472168842,13.058402168251774", + "point": "52.30467622436154,13.086490157637735", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "Streckenreinigung A115", + "coordinate": { + "lat": 52.30467622436154, + "long": 13.086490157637735 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "Von A115: Dreieck Funkturm -> Dreieck Nuthetal, 0.5 km vor AD Nuthetal, aus Richtung Saarmund; in A115: AD Nuthetal auf die A10 in Richtung Dreieck Potsdam; nach A10: Sch\u00f6nefelder Kreuz -> Dreieck Potsdam, 2.3 km vor AS Michendorf, aus Richtung Nuthetal", + "", + "L\u00e4nge: 2.11 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "Streckenreinigung A115" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.086490158, + 52.304676224 + ], + [ + 13.0864681, + 52.304643801 + ], + [ + 13.0862263, + 52.304321201 + ], + [ + 13.08602, + 52.304072601 + ], + [ + 13.0858409, + 52.303875701 + ], + [ + 13.0856559, + 52.303687601 + ], + [ + 13.0854765, + 52.303517701 + ], + [ + 13.0852536, + 52.303321401 + ], + [ + 13.0850342, + 52.303142001 + ], + [ + 13.0848515, + 52.303001601 + ], + [ + 13.0846016, + 52.302821701 + ], + [ + 13.0843023, + 52.302622201 + ], + [ + 13.0839336, + 52.302397601 + ], + [ + 13.0835252, + 52.302172201 + ], + [ + 13.0830823, + 52.301952301 + ], + [ + 13.0827242, + 52.301790901 + ], + [ + 13.0823936, + 52.301653901 + ], + [ + 13.0820234, + 52.301512801 + ], + [ + 13.0815673, + 52.301355801 + ], + [ + 13.0811264, + 52.301220401 + ], + [ + 13.0806751, + 52.301097201 + ], + [ + 13.080142, + 52.300970601 + ], + [ + 13.0795914, + 52.300860201 + ], + [ + 13.0791171, + 52.300780801 + ], + [ + 13.0786455, + 52.300715601 + ], + [ + 13.0781704, + 52.300663601 + ], + [ + 13.0777, + 52.300625101 + ], + [ + 13.0770917, + 52.300594301 + ], + [ + 13.0762863, + 52.300570001 + ], + [ + 13.0751887, + 52.300554801 + ], + [ + 13.0741133, + 52.300549301 + ], + [ + 13.0723108, + 52.300508201 + ], + [ + 13.0719123, + 52.300521301 + ], + [ + 13.0708686, + 52.300558001 + ], + [ + 13.0655377, + 52.300737201 + ], + [ + 13.0621804, + 52.300866101 + ], + [ + 13.061654, + 52.300887901 + ], + [ + 13.0585331, + 52.300990301 + ], + [ + 13.058402168, + 52.300994722 + ] + ] + } + }, + { + "identifier": "2026-017001--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_012.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.300786560037416,13.05811764869986,52.30465096997418,13.086726766165896", + "point": "52.300786560037416,13.05811764869986", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Potsdam -> Sch\u00f6nefelder Kreuz", + "title": "Streckenreinigung A115", + "coordinate": { + "lat": 52.300786560037416, + "long": 13.05811764869986 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "Von A10: Dreieck Potsdam -> Sch\u00f6nefelder Kreuz, 1.6 km vor AD Nuthetal, aus Richtung Michendorf; in A10: AD Nuthetal auf die A115 in Richtung Dreieck Funkturm; nach A115: Dreieck Nuthetal -> Dreieck Funkturm, 3.6 km vor AS Saarmund, aus Richtung Nuthetal", + "", + "L\u00e4nge: 2.27 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "Streckenreinigung A115" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.058117649, + 52.30078656 + ], + [ + 13.0588398, + 52.300765601 + ], + [ + 13.061641, + 52.300693401 + ], + [ + 13.0621423, + 52.300674301 + ], + [ + 13.0652064, + 52.300561701 + ], + [ + 13.0714009, + 52.300370801 + ], + [ + 13.0724823, + 52.300263101 + ], + [ + 13.0733667, + 52.300171401 + ], + [ + 13.0740221, + 52.300082401 + ], + [ + 13.0741782, + 52.300061201 + ], + [ + 13.074793, + 52.299961801 + ], + [ + 13.0762198, + 52.299686401 + ], + [ + 13.0768413, + 52.299581301 + ], + [ + 13.0773215, + 52.299525601 + ], + [ + 13.0778068, + 52.299489801 + ], + [ + 13.0782948, + 52.299474101 + ], + [ + 13.0787834, + 52.299478601 + ], + [ + 13.0792703, + 52.299503301 + ], + [ + 13.0797534, + 52.299548101 + ], + [ + 13.0802305, + 52.299612701 + ], + [ + 13.0806994, + 52.299696901 + ], + [ + 13.0811579, + 52.299800201 + ], + [ + 13.0815812, + 52.299915501 + ], + [ + 13.0819917, + 52.300047201 + ], + [ + 13.0823877, + 52.300194801 + ], + [ + 13.0827675, + 52.300357601 + ], + [ + 13.0831295, + 52.300535001 + ], + [ + 13.0834334, + 52.300703401 + ], + [ + 13.0837329, + 52.300889601 + ], + [ + 13.0839763, + 52.301058801 + ], + [ + 13.0842054, + 52.301235301 + ], + [ + 13.0843833, + 52.301386301 + ], + [ + 13.0845835, + 52.301574001 + ], + [ + 13.0847445, + 52.301741801 + ], + [ + 13.0849674, + 52.302006901 + ], + [ + 13.0852267, + 52.302366501 + ], + [ + 13.0854243, + 52.302659801 + ], + [ + 13.0859645, + 52.303488701 + ], + [ + 13.0864737, + 52.304265101 + ], + [ + 13.086726766, + 52.30465097 + ] + ] + } + }, + { + "identifier": "2026-017606--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_013.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.30929059991926,13.089493510721187,52.302624281238806,13.097823270860902", + "point": "52.30929059991926,13.089493510721187", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "Reinigung Sch\u00e4chte A115", + "coordinate": { + "lat": 52.30929059991926, + "long": 13.089493510721187 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 16.04.26 von 08:00 bis 15:00 Uhr.", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "Von A115: Dreieck Funkturm -> Dreieck Nuthetal, 1.1 km vor AD Nuthetal, aus Richtung Saarmund; in A115: AD Nuthetal auf die A10 in Richtung Sch\u00f6nefelder Kreuz; nach A10: Dreieck Potsdam -> Sch\u00f6nefelder Kreuz, 5.9 km vor Siethener Elsbruch, aus Richtung Nuthetal", + "", + "L\u00e4nge: 1.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Reinigung Sch\u00e4chte A115" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.089493511, + 52.3092906 + ], + [ + 13.0893203, + 52.309026901 + ], + [ + 13.0880993, + 52.307126501 + ], + [ + 13.0871536, + 52.306361801 + ], + [ + 13.0863108, + 52.305751601 + ], + [ + 13.0860809, + 52.305564501 + ], + [ + 13.0858891, + 52.305408401 + ], + [ + 13.0857053, + 52.305235301 + ], + [ + 13.0855722, + 52.305090401 + ], + [ + 13.0854389, + 52.304922301 + ], + [ + 13.0853373, + 52.304771901 + ], + [ + 13.0852366, + 52.304593001 + ], + [ + 13.0851488, + 52.304394101 + ], + [ + 13.0850886, + 52.304209201 + ], + [ + 13.0850471, + 52.304015901 + ], + [ + 13.0850277, + 52.303838601 + ], + [ + 13.0850273, + 52.303632901 + ], + [ + 13.0850372, + 52.303519401 + ], + [ + 13.0850543, + 52.303406301 + ], + [ + 13.0850786, + 52.303293701 + ], + [ + 13.0851101, + 52.303181801 + ], + [ + 13.0851486, + 52.303070701 + ], + [ + 13.0851941, + 52.302960601 + ], + [ + 13.0852467, + 52.302851601 + ], + [ + 13.0853061, + 52.302744001 + ], + [ + 13.0853723, + 52.302637901 + ], + [ + 13.0854451, + 52.302533501 + ], + [ + 13.0855246, + 52.302430801 + ], + [ + 13.0856105, + 52.302330201 + ], + [ + 13.0857027, + 52.302231601 + ], + [ + 13.0858184, + 52.302119301 + ], + [ + 13.0859422, + 52.302010301 + ], + [ + 13.0860741, + 52.301904901 + ], + [ + 13.0862136, + 52.301803301 + ], + [ + 13.0863605, + 52.301705601 + ], + [ + 13.0865146, + 52.301612101 + ], + [ + 13.0866754, + 52.301523001 + ], + [ + 13.0868426, + 52.301438401 + ], + [ + 13.087016, + 52.301358601 + ], + [ + 13.087195, + 52.301283701 + ], + [ + 13.0873794, + 52.301213801 + ], + [ + 13.0875688, + 52.301149101 + ], + [ + 13.0877527, + 52.301092701 + ], + [ + 13.0879404, + 52.301041201 + ], + [ + 13.0881316, + 52.300994601 + ], + [ + 13.0883259, + 52.300953201 + ], + [ + 13.0885229, + 52.300916901 + ], + [ + 13.0887223, + 52.300885801 + ], + [ + 13.0889237, + 52.300860001 + ], + [ + 13.0891267, + 52.300839501 + ], + [ + 13.089331, + 52.300824301 + ], + [ + 13.0895361, + 52.300814601 + ], + [ + 13.0897418, + 52.300810301 + ], + [ + 13.0899351, + 52.300811201 + ], + [ + 13.0901354, + 52.300817101 + ], + [ + 13.0903177, + 52.300827001 + ], + [ + 13.0904972, + 52.300841001 + ], + [ + 13.0906749, + 52.300859101 + ], + [ + 13.0908552, + 52.300881701 + ], + [ + 13.0910795, + 52.300916201 + ], + [ + 13.0913625, + 52.300970001 + ], + [ + 13.0915357, + 52.301008901 + ], + [ + 13.0917117, + 52.301053201 + ], + [ + 13.0919454, + 52.301120101 + ], + [ + 13.0922292, + 52.301217001 + ], + [ + 13.0927127, + 52.301387601 + ], + [ + 13.0930143, + 52.301494301 + ], + [ + 13.0933098, + 52.301594401 + ], + [ + 13.0945748, + 52.302011401 + ], + [ + 13.0953873, + 52.302159201 + ], + [ + 13.0958061, + 52.302238301 + ], + [ + 13.0962387, + 52.302320001 + ], + [ + 13.0974003, + 52.302546901 + ], + [ + 13.097823271, + 52.302624281 + ] + ] + } + } + ] + }, + "A11": { + "roadworks": [ + { + "identifier": "2026-006778--vi-bs.2026-03-31_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de49", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.84443995158688,13.664818640098707,52.85650023425303,13.671554990263436", + "point": "52.84443995158688,13.664818640098707", + "startLcPosition": "6", + "impact": { + "lower": "Buckowsee-West", + "upper": "Lanke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Kreuz Uckermark", + "title": "A11 | Lanke - Buckowsee-West", + "coordinate": { + "lat": 52.84443995158688, + "long": 13.664818640098707 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 22:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A11: Berliner Ring -> Kreuz Uckermark, zwischen 10.7 km hinter AS Lanke und 3.4 km vor Buckowsee-West", + "", + "L\u00e4nge: 1.43 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.66481864, + 52.844439952 + ], + [ + 13.6649743, + 52.844966901 + ], + [ + 13.6651428, + 52.845551801 + ], + [ + 13.6652384, + 52.845871501 + ], + [ + 13.6653428, + 52.846188301 + ], + [ + 13.665412, + 52.846397901 + ], + [ + 13.6656308, + 52.847026801 + ], + [ + 13.6657531, + 52.847338001 + ], + [ + 13.6661894, + 52.848408301 + ], + [ + 13.6665828, + 52.849268501 + ], + [ + 13.6669109, + 52.849923501 + ], + [ + 13.667028, + 52.850149201 + ], + [ + 13.6672795, + 52.850610201 + ], + [ + 13.6675195, + 52.851015201 + ], + [ + 13.6686414, + 52.852808701 + ], + [ + 13.6695591, + 52.854090001 + ], + [ + 13.6701465, + 52.854832701 + ], + [ + 13.6705187, + 52.855309401 + ], + [ + 13.6709232, + 52.855782901 + ], + [ + 13.6714384, + 52.856367201 + ], + [ + 13.67155499, + 52.856500234 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-03-31_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de47", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.8470999130292,13.665659532636024,52.85650023425303,13.671554990263436", + "point": "52.8470999130292,13.665659532636024", + "startLcPosition": "6", + "impact": { + "lower": "Buckowsee-West", + "upper": "Lanke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Kreuz Uckermark", + "title": "A11 | Lanke - Buckowsee-West", + "coordinate": { + "lat": 52.8470999130292, + "long": 13.665659532636024 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 18:00 Uhr", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A11: Berliner Ring -> Kreuz Uckermark, zwischen 11.0 km hinter AS Lanke und 3.4 km vor Buckowsee-West", + "", + "L\u00e4nge: 1.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.665659533, + 52.847099913 + ], + [ + 13.6657531, + 52.847338001 + ], + [ + 13.6661894, + 52.848408301 + ], + [ + 13.6665828, + 52.849268501 + ], + [ + 13.6669109, + 52.849923501 + ], + [ + 13.667028, + 52.850149201 + ], + [ + 13.6672795, + 52.850610201 + ], + [ + 13.6675195, + 52.851015201 + ], + [ + 13.6686414, + 52.852808701 + ], + [ + 13.6695591, + 52.854090001 + ], + [ + 13.6701465, + 52.854832701 + ], + [ + 13.6705187, + 52.855309401 + ], + [ + 13.6709232, + 52.855782901 + ], + [ + 13.6714384, + 52.856367201 + ], + [ + 13.67155499, + 52.856500234 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-03-31_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de45", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.867602442036485,13.683448338855099,52.8562420196926,13.671088314984567", + "point": "52.867602442036485,13.683448338855099", + "startLcPosition": "8", + "impact": { + "lower": "Finowfurt", + "upper": "Buckowsee-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kreuz Uckermark -> Berliner Ring", + "title": "A11 | Buckowsee-West - Finowfurt", + "coordinate": { + "lat": 52.867602442036485, + "long": 13.683448338855099 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 22:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A11: Kreuz Uckermark -> Berliner Ring, zwischen 1.9 km hinter Buckowsee-West und 0.5 km vor AS Finowfurt", + "", + "L\u00e4nge: 1.52 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.683448339, + 52.867602442 + ], + [ + 13.6833078, + 52.867499501 + ], + [ + 13.6817745, + 52.866420601 + ], + [ + 13.6797062, + 52.864853101 + ], + [ + 13.678722, + 52.864105901 + ], + [ + 13.6777044, + 52.863249001 + ], + [ + 13.6772145, + 52.862815301 + ], + [ + 13.6762221, + 52.861883201 + ], + [ + 13.6756136, + 52.861309701 + ], + [ + 13.6749912, + 52.860668101 + ], + [ + 13.6740941, + 52.859703301 + ], + [ + 13.6724094, + 52.857804501 + ], + [ + 13.6716636, + 52.856948301 + ], + [ + 13.6712035, + 52.856380801 + ], + [ + 13.671088315, + 52.85624202 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-03-31_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de43", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.864127699192714,13.678750711808874,52.8562420196926,13.671088314984567", + "point": "52.864127699192714,13.678750711808874", + "startLcPosition": "8", + "impact": { + "lower": "Finowfurt", + "upper": "Buckowsee-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kreuz Uckermark -> Berliner Ring", + "title": "A11 | Buckowsee-West - Finowfurt", + "coordinate": { + "lat": 52.864127699192714, + "long": 13.678750711808874 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 18:00 Uhr", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A11: Kreuz Uckermark -> Berliner Ring, zwischen 2.4 km hinter Buckowsee-West und 0.5 km vor AS Finowfurt", + "", + "L\u00e4nge: 1.02 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.678750712, + 52.864127699 + ], + [ + 13.678722, + 52.864105901 + ], + [ + 13.6777044, + 52.863249001 + ], + [ + 13.6772145, + 52.862815301 + ], + [ + 13.6762221, + 52.861883201 + ], + [ + 13.6756136, + 52.861309701 + ], + [ + 13.6749912, + 52.860668101 + ], + [ + 13.6740941, + 52.859703301 + ], + [ + 13.6724094, + 52.857804501 + ], + [ + 13.6716636, + 52.856948301 + ], + [ + 13.6712035, + 52.856380801 + ], + [ + 13.671088315, + 52.85624202 + ] + ] + } + }, + { + "identifier": "2025-062953--vi-bs.2026-01-12_07-00-00-000.devi-zus.2026-01-12_07-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.21570457356277,13.96548773715232,53.2174992753807,13.9683335048697", + "point": "53.21570457356277,13.96548773715232", + "startLcPosition": "17", + "impact": { + "lower": "Gramzow", + "upper": "Rathsburgseen-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Kreuz Uckermark", + "title": "A11 | Rathsburgseen-Nord - Gramzow", + "coordinate": { + "lat": 53.21570457356277, + "long": 13.96548773715232 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.02.26 00:00 Uhr bis zum 28.05.26 24:00 Uhr.", + "29.05.26 von 00:00 bis 12:00 Uhr", + "", + "A11: Berliner Ring -> Kreuz Uckermark, zwischen 0.7 km hinter Rathsburgseen-Nord und 2.0 km vor AS Gramzow", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A11 Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.965487737, + 53.215704574 + ], + [ + 13.968333505, + 53.217499275 + ] + ] + } + }, + { + "identifier": "2025-062953--vi-bs.2026-01-12_07-00-00-000.devi-zus.2026-01-12_07-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.21176734023476,13.95897386558443,53.21019550634712,13.956495059990889", + "point": "53.21176734023476,13.95897386558443", + "startLcPosition": "18", + "impact": { + "lower": "Warnitz", + "upper": "Rathsburgseen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kreuz Uckermark -> Berliner Ring", + "title": "A11 | Rathsburgseen-S\u00fcd - Warnitz", + "coordinate": { + "lat": 53.21176734023476, + "long": 13.95897386558443 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.02.26 00:00 Uhr bis zum 28.05.26 24:00 Uhr.", + "29.05.26 von 00:00 bis 12:00 Uhr", + "", + "A11: Kreuz Uckermark -> Berliner Ring, zwischen 0.7 km hinter Rathsburgseen-S\u00fcd und 3.1 km vor AS Warnitz", + "", + "L\u00e4nge: 0.24 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A11 Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.958973866, + 53.21176734 + ], + [ + 13.9575941, + 53.210898401 + ], + [ + 13.9567617, + 53.210369901 + ], + [ + 13.95649506, + 53.210195506 + ] + ] + } + }, + { + "identifier": "2026-016936--vi-bs.2026-04-08_08-00-00-000_015.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.28931330121756,14.096513932266049,53.29510728936274,14.132812238057003", + "point": "53.28931330121756,14.096513932266049", + "startLcPosition": "20", + "impact": { + "lower": "Penkun", + "upper": "Kreuz Uckermark", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Stettin", + "title": "A11 | Kreuz Uckermark - Penkun", + "coordinate": { + "lat": 53.28931330121756, + "long": 14.096513932266049 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 18:30 Uhr", + "", + "A11: Berliner Ring -> Stettin, zwischen 7.5 km hinter AD Kreuz Uckermark und 9.5 km vor AS Penkun", + "", + "L\u00e4nge: 2.53 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A11 Schadstellensanierung in Gussasphalt AM Gramzow (4400047393 2024-414)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.096513932, + 53.289313301 + ], + [ + 14.0980029, + 53.289807801 + ], + [ + 14.1006042, + 53.290584801 + ], + [ + 14.1037121, + 53.291406601 + ], + [ + 14.1038147, + 53.291432601 + ], + [ + 14.105472, + 53.291840601 + ], + [ + 14.1071503, + 53.292215201 + ], + [ + 14.1084436, + 53.292487301 + ], + [ + 14.1097455, + 53.292744601 + ], + [ + 14.1113198, + 53.293034601 + ], + [ + 14.112407, + 53.293220101 + ], + [ + 14.1131449, + 53.293344501 + ], + [ + 14.1140055, + 53.293479901 + ], + [ + 14.1154296, + 53.293685801 + ], + [ + 14.1156544, + 53.293718101 + ], + [ + 14.1163864, + 53.293816001 + ], + [ + 14.1168976, + 53.293882301 + ], + [ + 14.118281, + 53.294046601 + ], + [ + 14.1194013, + 53.294181001 + ], + [ + 14.1210248, + 53.294347401 + ], + [ + 14.1221022, + 53.294442501 + ], + [ + 14.1241231, + 53.294596501 + ], + [ + 14.1262562, + 53.294740201 + ], + [ + 14.1280334, + 53.294847201 + ], + [ + 14.132812238, + 53.295107289 + ] + ] + } + }, + { + "identifier": "2025-045177--vi-bs.2025-12-05_09-00-00-000.devi-zus.2025-10-01_07-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.335421117007684,14.40694511982469,53.33557833005497,14.408039515657778", + "point": "53.335421117007684,14.40694511982469", + "startLcPosition": "22", + "impact": { + "lower": "Pomellen", + "upper": "Penkun", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kreuz Uckermark -> Stettin", + "title": "A11 | Penkun - Pomellen", + "startTimestamp": "2025-12-05T09:00:00+01:00", + "coordinate": { + "lat": 53.335421117007684, + "long": 14.40694511982469 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.12.25 um 09:00 Uhr", + "Ende: 30.06.27 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.27)", + "", + "A11: Kreuz Uckermark -> Stettin, zwischen 9.4 km hinter AS Penkun und Pomellen", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A11 Br\u00fcckenneubau in Polen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.40694512, + 53.335421117 + ], + [ + 14.4072415, + 53.335462301 + ], + [ + 14.408039516, + 53.33557833 + ] + ] + } + }, + { + "identifier": "2025-045177--vi-bs.2025-12-05_09-00-00-000.devi-zus.2025-10-01_07-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.32282684541803,14.3196494526179,53.335423146498975,14.406959724933389", + "point": "53.32282684541803,14.3196494526179", + "startLcPosition": "22", + "impact": { + "lower": "Pomellen", + "upper": "Penkun", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kreuz Uckermark -> Stettin", + "title": "A11 | Penkun - Pomellen", + "startTimestamp": "2025-12-05T09:00:00+01:00", + "coordinate": { + "lat": 53.32282684541803, + "long": 14.3196494526179 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.12.25 um 09:00 Uhr", + "Ende: 30.06.27 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.27)", + "", + "A11: Kreuz Uckermark -> Stettin, zwischen 3.4 km hinter AS Penkun und 0.1 km vor Pomellen", + "", + "L\u00e4nge: 6 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A11 Br\u00fcckenneubau in Polen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.319649453, + 53.322826845 + ], + [ + 14.3215236, + 53.323259801 + ], + [ + 14.3245011, + 53.323947601 + ], + [ + 14.3280579, + 53.324727101 + ], + [ + 14.3284521, + 53.324803801 + ], + [ + 14.3314052, + 53.325378601 + ], + [ + 14.3354044, + 53.326010401 + ], + [ + 14.3358686, + 53.326071401 + ], + [ + 14.3377236, + 53.326315001 + ], + [ + 14.3400854, + 53.326574701 + ], + [ + 14.3430732, + 53.326881801 + ], + [ + 14.3453935, + 53.327120201 + ], + [ + 14.3502308, + 53.327614701 + ], + [ + 14.3512006, + 53.327713901 + ], + [ + 14.3571108, + 53.328313701 + ], + [ + 14.3579451, + 53.328400301 + ], + [ + 14.3625661, + 53.328879901 + ], + [ + 14.3650111, + 53.329203901 + ], + [ + 14.3654282, + 53.329263801 + ], + [ + 14.3675582, + 53.329569801 + ], + [ + 14.3725555, + 53.330368001 + ], + [ + 14.3751352, + 53.330780101 + ], + [ + 14.3799734, + 53.331534101 + ], + [ + 14.3819074, + 53.331841701 + ], + [ + 14.3871295, + 53.332661501 + ], + [ + 14.3899417, + 53.333064001 + ], + [ + 14.3927544, + 53.333457301 + ], + [ + 14.3933622, + 53.333539001 + ], + [ + 14.3942758, + 53.333660001 + ], + [ + 14.3964385, + 53.333963501 + ], + [ + 14.4013139, + 53.334640501 + ], + [ + 14.4015106, + 53.334667701 + ], + [ + 14.4040727, + 53.335021901 + ], + [ + 14.4043761, + 53.335064101 + ], + [ + 14.406959725, + 53.335423146 + ] + ] + } + }, + { + "identifier": "2026-007306--vi-bs.2026-03-02_16-00-00-000.devi-zus.2026-02-23_00-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.31548376409573,14.269433363695432,53.314059930579425,14.271796213985704", + "point": "53.31548376409573,14.269433363695432", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kreuz Uckermark -> Stettin", + "title": "GST, A11, AS Penkun (Ausfahrt RF Stettin) Windpark Schwennenz", + "startTimestamp": "2026-03-02T16:00:00+01:00", + "coordinate": { + "lat": 53.31548376409573, + "long": 14.269433363695432 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 16:00 Uhr", + "Ende: 18.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.26)", + "", + "Von A11: Kreuz Uckermark -> Stettin, zwischen 10.6 km hinter AS Schm\u00f6lln und Pomellen nach Abfahrt von der A11: AS Penkun (aus Richtung Schm\u00f6lln)", + "", + "L\u00e4nge: 0.41 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "GST, A11, AS Penkun (Ausfahrt RF Stettin) Windpark Schwennenz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.269433364, + 53.315483764 + ], + [ + 14.2698479, + 53.315549101 + ], + [ + 14.270378, + 53.315628201 + ], + [ + 14.2708576, + 53.315693801 + ], + [ + 14.2715602, + 53.315734801 + ], + [ + 14.2717597, + 53.315730501 + ], + [ + 14.2719539, + 53.315705401 + ], + [ + 14.2721177, + 53.315672301 + ], + [ + 14.2722681, + 53.315621601 + ], + [ + 14.272404, + 53.315569201 + ], + [ + 14.2725319, + 53.315510301 + ], + [ + 14.2726658, + 53.315402901 + ], + [ + 14.2727631, + 53.315305301 + ], + [ + 14.2728256, + 53.315196401 + ], + [ + 14.2728601, + 53.315073501 + ], + [ + 14.2728574, + 53.314957301 + ], + [ + 14.2728508, + 53.314853701 + ], + [ + 14.2728311, + 53.314768901 + ], + [ + 14.2727102, + 53.314611101 + ], + [ + 14.2726248, + 53.314523201 + ], + [ + 14.2722687, + 53.314293201 + ], + [ + 14.2720017, + 53.314149101 + ], + [ + 14.2718654, + 53.314093101 + ], + [ + 14.271796214, + 53.314059931 + ] + ] + } + }, + { + "identifier": "2026-010640--vi-bs.2026-03-17_00-00-00-000.devi-zus.2026-03-17_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.22900452961198,13.98729128963844,53.229545554948196,13.989875483120306", + "point": "53.22900452961198,13.98729128963844", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Gramzow (aus Richtung Rathsburgseen-S\u00fcd)", + "title": "GST, A11, AS Gramzow (RF Stettin) zum Windpark Bietikow", + "startTimestamp": "2026-03-17T00:00:00+01:00", + "coordinate": { + "lat": 53.22900452961198, + "long": 13.98729128963844 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.03.26 um 00:00 Uhr", + "Ende: 18.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.26)", + "", + "Abfahrt von der A11: AS Gramzow (aus Richtung Rathsburgseen-S\u00fcd)", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "GST, A11, AS Gramzow (RF Stettin) zum Windpark Bietikow" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.98729129, + 53.22900453 + ], + [ + 13.9881586, + 53.229194101 + ], + [ + 13.9885888, + 53.229282401 + ], + [ + 13.989875483, + 53.229545555 + ] + ] + } + } + ] + }, + "A12": { + "roadworks": [ + { + "identifier": "2024-056148--vi-bs.2026-03-27_14-00-00-000.devi-zus.2025-03-03_00-00-00-000.f_004.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.333761727424125,14.061293706262003,52.343653112149944,14.177041929481238", + "point": "52.333761727424125,14.061293706262003", + "startLcPosition": "4", + "impact": { + "lower": "Kersdorfer See", + "upper": "Briesenluch", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Berliner Ring -> Frankfurt(Oder)", + "title": "A12 | Briesenluch - Kersdorfer See", + "startTimestamp": "2026-03-27T14:00:00+01:00", + "coordinate": { + "lat": 52.333761727424125, + "long": 14.061293706262003 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 14:00 Uhr", + "Ende: 17.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.08.28)", + "", + "A12: Berliner Ring -> Frankfurt(Oder), zwischen 7.8 km hinter Briesenluch und 3.1 km vor Kersdorfer See", + "", + "L\u00e4nge: 8.07 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A12, Fahrbahnerhaltung zwischen AS F\u00fcrstenwalde-West und AS Briesen (km 22,9-31,5), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.061293706, + 52.333761727 + ], + [ + 14.0634955, + 52.334195501 + ], + [ + 14.0641141, + 52.334306701 + ], + [ + 14.0649715, + 52.334410101 + ], + [ + 14.0659197, + 52.334486701 + ], + [ + 14.0668767, + 52.334522601 + ], + [ + 14.0673428, + 52.334532701 + ], + [ + 14.0688191, + 52.334554101 + ], + [ + 14.0696122, + 52.334566401 + ], + [ + 14.0724077, + 52.334597601 + ], + [ + 14.0728801, + 52.334602201 + ], + [ + 14.0738326, + 52.334612201 + ], + [ + 14.0747256, + 52.334622801 + ], + [ + 14.0752741, + 52.334630601 + ], + [ + 14.0767739, + 52.334644701 + ], + [ + 14.0791117, + 52.334686201 + ], + [ + 14.0817008, + 52.334712901 + ], + [ + 14.0832227, + 52.334736901 + ], + [ + 14.0838795, + 52.334740601 + ], + [ + 14.1101056, + 52.335356501 + ], + [ + 14.1130866, + 52.335429201 + ], + [ + 14.1156628, + 52.335498901 + ], + [ + 14.1185767, + 52.335565401 + ], + [ + 14.1205616, + 52.335616501 + ], + [ + 14.1290849, + 52.335820701 + ], + [ + 14.1359147, + 52.335986301 + ], + [ + 14.1427762, + 52.336139401 + ], + [ + 14.1441806, + 52.336197301 + ], + [ + 14.1456256, + 52.336291101 + ], + [ + 14.1469532, + 52.336419401 + ], + [ + 14.1484727, + 52.336615301 + ], + [ + 14.150026, + 52.336871901 + ], + [ + 14.1510285, + 52.337058201 + ], + [ + 14.1532169, + 52.337580001 + ], + [ + 14.1565969, + 52.338467001 + ], + [ + 14.159736, + 52.339299901 + ], + [ + 14.1605711, + 52.339519301 + ], + [ + 14.1617398, + 52.339823601 + ], + [ + 14.1658884, + 52.340914101 + ], + [ + 14.1732996, + 52.342858401 + ], + [ + 14.1744044, + 52.343139301 + ], + [ + 14.1755922, + 52.343410501 + ], + [ + 14.1767704, + 52.343617301 + ], + [ + 14.177041929, + 52.343653112 + ] + ] + } + }, + { + "identifier": "2024-056148--vi-bs.2026-03-27_14-00-00-000.devi-zus.2025-03-03_00-00-00-000.f_004.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.34375772732244,14.177005721188507,52.33389306944801,14.061223469303627", + "point": "52.34375772732244,14.177005721188507", + "startLcPosition": "7", + "impact": { + "lower": "Briesenluch", + "upper": "Kersdorfer See", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt(Oder) -> Berliner Ring", + "title": "A12 | Kersdorfer See - Briesenluch", + "startTimestamp": "2026-03-27T14:00:00+01:00", + "coordinate": { + "lat": 52.34375772732244, + "long": 14.177005721188507 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 14:00 Uhr", + "Ende: 17.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.08.28)", + "", + "A12: Frankfurt(Oder) -> Berliner Ring, zwischen 3.1 km hinter Kersdorfer See und 7.8 km vor Briesenluch", + "", + "L\u00e4nge: 8.07 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A12, Fahrbahnerhaltung zwischen AS F\u00fcrstenwalde-West und AS Briesen (km 22,9-31,5), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.177005721, + 52.343757727 + ], + [ + 14.1767161, + 52.343720601 + ], + [ + 14.1754741, + 52.343508001 + ], + [ + 14.1731911, + 52.342956001 + ], + [ + 14.1657755, + 52.341004201 + ], + [ + 14.1615066, + 52.339905901 + ], + [ + 14.1604894, + 52.339635001 + ], + [ + 14.1596378, + 52.339408301 + ], + [ + 14.1561007, + 52.338457301 + ], + [ + 14.1532123, + 52.337699301 + ], + [ + 14.1519034, + 52.337384601 + ], + [ + 14.1505591, + 52.337088001 + ], + [ + 14.1489422, + 52.336801201 + ], + [ + 14.1473209, + 52.336577401 + ], + [ + 14.1455934, + 52.336401801 + ], + [ + 14.1440368, + 52.336302301 + ], + [ + 14.1424914, + 52.336246601 + ], + [ + 14.1420037, + 52.336237001 + ], + [ + 14.1406784, + 52.336203901 + ], + [ + 14.1347239, + 52.336064001 + ], + [ + 14.1275151, + 52.335894801 + ], + [ + 14.1241508, + 52.335817101 + ], + [ + 14.1189466, + 52.335687401 + ], + [ + 14.1145198, + 52.335587001 + ], + [ + 14.111229, + 52.335518101 + ], + [ + 14.1086712, + 52.335453801 + ], + [ + 14.1074036, + 52.335426401 + ], + [ + 14.1060336, + 52.335393301 + ], + [ + 14.1033585, + 52.335329001 + ], + [ + 14.0838903, + 52.334861001 + ], + [ + 14.0833099, + 52.334858901 + ], + [ + 14.0816945, + 52.334842501 + ], + [ + 14.0786845, + 52.334801701 + ], + [ + 14.0767224, + 52.334762501 + ], + [ + 14.076602, + 52.334761001 + ], + [ + 14.0760623, + 52.334757701 + ], + [ + 14.0751532, + 52.334755501 + ], + [ + 14.074678, + 52.334743301 + ], + [ + 14.0734326, + 52.334726701 + ], + [ + 14.0729469, + 52.334720801 + ], + [ + 14.0724053, + 52.334711301 + ], + [ + 14.0672775, + 52.334646401 + ], + [ + 14.0668447, + 52.334635601 + ], + [ + 14.0660541, + 52.334607901 + ], + [ + 14.0653469, + 52.334559101 + ], + [ + 14.0644866, + 52.334467301 + ], + [ + 14.0638211, + 52.334384601 + ], + [ + 14.0630179, + 52.334243101 + ], + [ + 14.0620086, + 52.334053001 + ], + [ + 14.061223469, + 52.333893069 + ] + ] + } + }, + { + "identifier": "2025-058284--vi-bs.2026-04-08_08-00-00-000.devi-zus.2025-11-25_08-00-00-000_009.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.31464588128184,14.567256428315355,52.314485759050676,14.547505531774233", + "point": "52.31464588128184,14.567256428315355", + "startLcPosition": "15", + "impact": { + "lower": "Frankfurt(Oder)-Mitte", + "upper": "Frankfurt(Oder)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt(Oder) -> Berliner Ring", + "title": "A12 | Frankfurt(Oder) - Frankfurt(Oder)-Mitte", + "startTimestamp": "2026-04-08T08:00:00+02:00", + "coordinate": { + "lat": 52.31464588128184, + "long": 14.567256428315355 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 08:00 Uhr", + "Ende: 23.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.05.26)", + "", + "A12: Frankfurt(Oder) -> Berliner Ring, zwischen 0.7 km hinter Frankfurt(Oder) und 2.0 km vor AS Frankfurt(Oder)-Mitte", + "", + "L\u00e4nge: 1.35 km | Maximale Durchfahrtsbreite: 3.2 m", + "", + "A 12, Umbau auf 2-streifige Grenzkontrolle an Bundesgrenze Polen inkl. Verkehrssicherung (bei km 56,600) sowie Instandsetzung BW26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.567256428, + 52.314645881 + ], + [ + 14.5665681, + 52.314615701 + ], + [ + 14.5629965, + 52.314659101 + ], + [ + 14.5604119, + 52.314697601 + ], + [ + 14.557057, + 52.314733301 + ], + [ + 14.5556199, + 52.314744301 + ], + [ + 14.5537713, + 52.314703501 + ], + [ + 14.5513717, + 52.314628601 + ], + [ + 14.5479331, + 52.314499501 + ], + [ + 14.547505532, + 52.314485759 + ] + ] + } + } + ] + }, + "A13": { + "roadworks": [ + { + "identifier": "2025-048344--vi-bs.2026-02-17_00-00-00-000.devi-bs.2025-10-21_00-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.24916048461604,13.72634703523963,51.27429241242691,13.7255499822678", + "point": "51.24916048461604,13.72634703523963", + "startLcPosition": "3", + "impact": { + "lower": "Thiendorf", + "upper": "Radeburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Radeburg - Thiendorf", + "startTimestamp": "2026-02-17T00:00:00+01:00", + "coordinate": { + "lat": 51.24916048461604, + "long": 13.72634703523963 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.02.26 um 00:00 Uhr", + "Ende: 17.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 4.1 km hinter AS Radeburg und 2.4 km vor AS Thiendorf", + "", + "L\u00e4nge: 2.85 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A13 Km 141,65 - 135,55 RF Berlin - Instandsetzung FRS - 201-25" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.726347035, + 51.249160485 + ], + [ + 13.7263379, + 51.249209001 + ], + [ + 13.7262749, + 51.249493001 + ], + [ + 13.7260535, + 51.250273801 + ], + [ + 13.7257518, + 51.251071001 + ], + [ + 13.7249616, + 51.252774201 + ], + [ + 13.7241693, + 51.254487501 + ], + [ + 13.7240646, + 51.254711301 + ], + [ + 13.7240505, + 51.254743201 + ], + [ + 13.723721, + 51.255439701 + ], + [ + 13.7234088, + 51.256126601 + ], + [ + 13.7230941, + 51.256882801 + ], + [ + 13.7228634, + 51.257553701 + ], + [ + 13.7227717, + 51.257891301 + ], + [ + 13.7226936, + 51.258243701 + ], + [ + 13.7225849, + 51.258921401 + ], + [ + 13.7225606, + 51.259114301 + ], + [ + 13.7225361, + 51.259479501 + ], + [ + 13.7225254, + 51.260046901 + ], + [ + 13.7225481, + 51.260520601 + ], + [ + 13.7225903, + 51.260953401 + ], + [ + 13.7227051, + 51.261654401 + ], + [ + 13.7227832, + 51.262043401 + ], + [ + 13.7229127, + 51.262637401 + ], + [ + 13.7231192, + 51.263588201 + ], + [ + 13.7232689, + 51.264270801 + ], + [ + 13.7233308, + 51.264565601 + ], + [ + 13.723843, + 51.266918601 + ], + [ + 13.724087, + 51.268039901 + ], + [ + 13.7243566, + 51.269270601 + ], + [ + 13.724799, + 51.271294001 + ], + [ + 13.7250497, + 51.272452801 + ], + [ + 13.7250728, + 51.272559401 + ], + [ + 13.7252531, + 51.273328401 + ], + [ + 13.7254761, + 51.274094201 + ], + [ + 13.725549982, + 51.274292412 + ] + ] + } + }, + { + "identifier": "2025-048344--vi-bs.2026-02-17_00-00-00-000.devi-bs.2025-10-21_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.27562697579645,13.725964996511511,51.246009571394936,13.726609602636772", + "point": "51.27562697579645,13.725964996511511", + "startLcPosition": "4", + "impact": { + "lower": "Radeburg", + "upper": "Thiendorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Thiendorf - Radeburg", + "startTimestamp": "2026-02-17T00:00:00+01:00", + "coordinate": { + "lat": 51.27562697579645, + "long": 13.725964996511511 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.02.26 um 00:00 Uhr", + "Ende: 29.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 2.2 km hinter AS Thiendorf und 3.8 km vor AS Radeburg", + "", + "L\u00e4nge: 3.35 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A13 Km 141,65 - 135,55 RF Berlin - Instandsetzung FRS - 201-25" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.725964997, + 51.275626976 + ], + [ + 13.7257524, + 51.275222901 + ], + [ + 13.7255066, + 51.274666201 + ], + [ + 13.725297, + 51.274101401 + ], + [ + 13.7250761, + 51.273344101 + ], + [ + 13.7248968, + 51.272581701 + ], + [ + 13.724618, + 51.271301201 + ], + [ + 13.7243295, + 51.270000801 + ], + [ + 13.7241753, + 51.269271501 + ], + [ + 13.7236623, + 51.266921901 + ], + [ + 13.7231493, + 51.264562801 + ], + [ + 13.7230906, + 51.264283801 + ], + [ + 13.7228689, + 51.263225701 + ], + [ + 13.7227333, + 51.262637801 + ], + [ + 13.7226038, + 51.262052101 + ], + [ + 13.7225253, + 51.261649901 + ], + [ + 13.7224105, + 51.260949601 + ], + [ + 13.7223701, + 51.260520601 + ], + [ + 13.7223476, + 51.260039501 + ], + [ + 13.7223529, + 51.259480001 + ], + [ + 13.7224067, + 51.258912001 + ], + [ + 13.722517, + 51.258224601 + ], + [ + 13.7225984, + 51.257870101 + ], + [ + 13.7226924, + 51.257525201 + ], + [ + 13.7229228, + 51.256844001 + ], + [ + 13.7232396, + 51.256092301 + ], + [ + 13.723545, + 51.255403301 + ], + [ + 13.7238967, + 51.254672101 + ], + [ + 13.7240025, + 51.254447001 + ], + [ + 13.7247854, + 51.252741101 + ], + [ + 13.7255766, + 51.251045301 + ], + [ + 13.7258734, + 51.250265301 + ], + [ + 13.7261037, + 51.249464201 + ], + [ + 13.7261598, + 51.249196801 + ], + [ + 13.7262166, + 51.248903701 + ], + [ + 13.726304, + 51.248343801 + ], + [ + 13.7265021, + 51.246822601 + ], + [ + 13.726609603, + 51.246009571 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de295", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.4573199002005,13.851074469311165,51.46178514976209,13.85590113524792", + "point": "51.4573199002005,13.851074469311165", + "startLcPosition": "8", + "impact": { + "lower": "Ruhland", + "upper": "Ortrand", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ortrand - Ruhland", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.4573199002005, + "long": 13.851074469311165 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 11.0 km hinter AS Ortrand und 0.7 km vor AS Ruhland", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.851074469, + 51.4573199 + ], + [ + 13.8517391, + 51.457927801 + ], + [ + 13.8538611, + 51.459888801 + ], + [ + 13.8540835, + 51.460094601 + ], + [ + 13.8549644, + 51.460915801 + ], + [ + 13.855901135, + 51.46178515 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de232", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.4573199002005,13.851074469311165,51.46178514976209,13.85590113524792", + "point": "51.4573199002005,13.851074469311165", + "startLcPosition": "8", + "impact": { + "lower": "Ruhland", + "upper": "Ortrand", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ortrand - Ruhland", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.4573199002005, + "long": 13.851074469311165 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 11.0 km hinter AS Ortrand und 0.7 km vor AS Ruhland", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.851074469, + 51.4573199 + ], + [ + 13.8517391, + 51.457927801 + ], + [ + 13.8538611, + 51.459888801 + ], + [ + 13.8540835, + 51.460094601 + ], + [ + 13.8549644, + 51.460915801 + ], + [ + 13.855901135, + 51.46178515 + ] + ] + } + }, + { + "identifier": "2026-006768--vi-bs.2026-03-25_09-00-00-000.devi-zus.2026-03-02_09-00-00-000_003.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.414340473501724,13.806150254644713,51.427143260898845,13.817961406998386", + "point": "51.414340473501724,13.806150254644713", + "startLcPosition": "8", + "impact": { + "lower": "Ruhlander Heide", + "upper": "Ortrand", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ortrand - Ruhlander Heide", + "startTimestamp": "2026-03-25T09:00:00+01:00", + "coordinate": { + "lat": 51.414340473501724, + "long": 13.806150254644713 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.03.26 um 09:00 Uhr", + "Ende: 12.08.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.08.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 5.3 km hinter AS Ortrand und 4.2 km vor Ruhlander Heide", + "", + "L\u00e4nge: 1.65 km | Maximale Durchfahrtsbreite: 6.6 m", + "", + "A13, Sanierung Entw\u00e4sserungsrinnen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.806150255, + 51.414340474 + ], + [ + 13.8065305, + 51.414665501 + ], + [ + 13.8073404, + 51.415442501 + ], + [ + 13.8077733, + 51.415896101 + ], + [ + 13.8082451, + 51.416428601 + ], + [ + 13.8087425, + 51.417031901 + ], + [ + 13.8092209, + 51.417634301 + ], + [ + 13.8109895, + 51.419917001 + ], + [ + 13.8122769, + 51.421577101 + ], + [ + 13.8125195, + 51.421909801 + ], + [ + 13.8126039, + 51.422018501 + ], + [ + 13.8127758, + 51.422218501 + ], + [ + 13.813423, + 51.423007601 + ], + [ + 13.8141524, + 51.423811901 + ], + [ + 13.8142512, + 51.423915401 + ], + [ + 13.8145276, + 51.424186201 + ], + [ + 13.8151587, + 51.424794001 + ], + [ + 13.8160263, + 51.425550401 + ], + [ + 13.817961407, + 51.427143261 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de228", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.46178514976209,13.85590113524792,51.46677301859137,13.861337213422019", + "point": "51.46178514976209,13.85590113524792", + "startLcPosition": "10", + "impact": { + "lower": "Ruhland", + "upper": "Elsteraue", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Elsteraue - Ruhland", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.46178514976209, + "long": 13.85590113524792 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 0.4 km hinter Elsteraue und AS Ruhland", + "", + "L\u00e4nge: 0.67 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.855901135, + 51.46178515 + ], + [ + 13.8566335, + 51.462464801 + ], + [ + 13.8574611, + 51.463211601 + ], + [ + 13.8577041, + 51.463432301 + ], + [ + 13.8580414, + 51.463741401 + ], + [ + 13.8591343, + 51.464751301 + ], + [ + 13.8591761, + 51.464789101 + ], + [ + 13.8595622, + 51.465138801 + ], + [ + 13.8600281, + 51.465562201 + ], + [ + 13.8601854, + 51.465708901 + ], + [ + 13.861337213, + 51.466773019 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de291", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.46178514976209,13.85590113524792,51.466401086555166,13.86093462210252", + "point": "51.46178514976209,13.85590113524792", + "startLcPosition": "10", + "impact": { + "lower": "Ruhland", + "upper": "Elsteraue", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Elsteraue - Ruhland", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.46178514976209, + "long": 13.85590113524792 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 0.4 km hinter Elsteraue und 0.1 km vor AS Ruhland", + "", + "L\u00e4nge: 0.62 km | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.855901135, + 51.46178515 + ], + [ + 13.8566335, + 51.462464801 + ], + [ + 13.8574611, + 51.463211601 + ], + [ + 13.8577041, + 51.463432301 + ], + [ + 13.8580414, + 51.463741401 + ], + [ + 13.8591343, + 51.464751301 + ], + [ + 13.8591761, + 51.464789101 + ], + [ + 13.8595622, + 51.465138801 + ], + [ + 13.8600281, + 51.465562201 + ], + [ + 13.8601854, + 51.465708901 + ], + [ + 13.860934622, + 51.466401087 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de287", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.466401086555166,13.86093462210252,51.46827278429136,13.862959090038187", + "point": "51.466401086555166,13.86093462210252", + "startLcPosition": "10", + "impact": { + "lower": "Schwarzheide", + "upper": "Elsteraue", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Elsteraue - Schwarzheide", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.466401086555166, + "long": 13.86093462210252 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 1.0 km hinter Elsteraue und 3.1 km vor AS Schwarzheide", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 4.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.860934622, + 51.466401087 + ], + [ + 13.8618033, + 51.467203601 + ], + [ + 13.86295909, + 51.468272784 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de224", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.46677301859137,13.861337213422019,51.46902400284476,13.863772421569335", + "point": "51.46677301859137,13.861337213422019", + "startLcPosition": "10", + "impact": { + "lower": "Schwarzheide", + "upper": "Elsteraue", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Elsteraue - Schwarzheide", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.46677301859137, + "long": 13.861337213422019 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 1.0 km hinter Elsteraue und 3.0 km vor AS Schwarzheide", + "", + "L\u00e4nge: 0.3 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.861337213, + 51.466773019 + ], + [ + 13.8618033, + 51.467203601 + ], + [ + 13.8630177, + 51.468327001 + ], + [ + 13.8630618, + 51.468367801 + ], + [ + 13.863772422, + 51.469024003 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de226", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.466843945218095,13.861168061243362,51.461847983877355,13.855751339719145", + "point": "51.466843945218095,13.861168061243362", + "startLcPosition": "11", + "impact": { + "lower": "Elsteraue", + "upper": "Ruhland", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Ruhland - Elsteraue", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.466843945218095, + "long": 13.861168061243362 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen AS Ruhland und 0.4 km vor Elsteraue", + "", + "L\u00e4nge: 0.67 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.6 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.861168061, + 51.466843945 + ], + [ + 13.8600241, + 51.465773001 + ], + [ + 13.8593993, + 51.465196801 + ], + [ + 13.8589274, + 51.464777101 + ], + [ + 13.8578797, + 51.463796601 + ], + [ + 13.8574965, + 51.463449601 + ], + [ + 13.8572908, + 51.463266401 + ], + [ + 13.856091, + 51.462164601 + ], + [ + 13.85575134, + 51.461847984 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de220", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.46902400284476,13.863772421569335,51.47135054703573,13.86629764407364", + "point": "51.46902400284476,13.863772421569335", + "startLcPosition": "11", + "impact": { + "lower": "Schwarzheide", + "upper": "Ruhland", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ruhland - Schwarzheide", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.46902400284476, + "long": 13.863772421569335 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 0.3 km hinter AS Ruhland und 2.7 km vor AS Schwarzheide", + "", + "L\u00e4nge: 0.31 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.863772422, + 51.469024003 + ], + [ + 13.8647458, + 51.469922801 + ], + [ + 13.865878, + 51.470931901 + ], + [ + 13.8662771, + 51.471331401 + ], + [ + 13.866297644, + 51.471350547 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de216", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.47135054703573,13.86629764407364,51.47927839905131,13.874912183604879", + "point": "51.47135054703573,13.86629764407364", + "startLcPosition": "11", + "impact": { + "lower": "Schwarzheide", + "upper": "Ruhland", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ruhland - Schwarzheide", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.47135054703573, + "long": 13.86629764407364 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 0.6 km hinter AS Ruhland und 1.6 km vor AS Schwarzheide", + "", + "L\u00e4nge: 1.07 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.866297644, + 51.471350547 + ], + [ + 13.8668928, + 51.471905201 + ], + [ + 13.8672938, + 51.472273901 + ], + [ + 13.8675544, + 51.472513401 + ], + [ + 13.8700417, + 51.474799801 + ], + [ + 13.8704917, + 51.475216401 + ], + [ + 13.8706602, + 51.475370801 + ], + [ + 13.8719758, + 51.476576701 + ], + [ + 13.8739544, + 51.478386101 + ], + [ + 13.874912184, + 51.479278399 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de293", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.461847983877355,13.855751339719145,51.45738393220058,13.850923171936383", + "point": "51.461847983877355,13.855751339719145", + "startLcPosition": "11", + "impact": { + "lower": "Ortrand", + "upper": "Ruhland", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Ruhland - Ortrand", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.461847983877355, + "long": 13.855751339719145 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 0.7 km hinter AS Ruhland und 11.0 km vor AS Ortrand", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.85575134, + 51.461847984 + ], + [ + 13.8554925, + 51.461606701 + ], + [ + 13.8546894, + 51.460859001 + ], + [ + 13.8529792, + 51.459296601 + ], + [ + 13.850923172, + 51.457383932 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de289", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.4664704903601,13.86076913656245,51.461847983877355,13.855751339719145", + "point": "51.4664704903601,13.86076913656245", + "startLcPosition": "11", + "impact": { + "lower": "Elsteraue", + "upper": "Ruhland", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Ruhland - Elsteraue", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.4664704903601, + "long": 13.86076913656245 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 0.1 km hinter AS Ruhland und 0.4 km vor Elsteraue", + "", + "L\u00e4nge: 0.62 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.860769137, + 51.46647049 + ], + [ + 13.8600241, + 51.465773001 + ], + [ + 13.8593993, + 51.465196801 + ], + [ + 13.8589274, + 51.464777101 + ], + [ + 13.8578797, + 51.463796601 + ], + [ + 13.8574965, + 51.463449601 + ], + [ + 13.8572908, + 51.463266401 + ], + [ + 13.856091, + 51.462164601 + ], + [ + 13.85575134, + 51.461847984 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de283", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.46827278429136,13.862959090038187,51.47927839905131,13.874912183604879", + "point": "51.46827278429136,13.862959090038187", + "startLcPosition": "11", + "impact": { + "lower": "Schwarzheide", + "upper": "Ruhland", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ruhland - Schwarzheide", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.46827278429136, + "long": 13.862959090038187 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 0.2 km hinter AS Ruhland und 1.6 km vor AS Schwarzheide", + "", + "L\u00e4nge: 1.48 km | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.86295909, + 51.468272784 + ], + [ + 13.8630177, + 51.468327001 + ], + [ + 13.8630618, + 51.468367801 + ], + [ + 13.8647458, + 51.469922801 + ], + [ + 13.865878, + 51.470931901 + ], + [ + 13.8662771, + 51.471331401 + ], + [ + 13.8668928, + 51.471905201 + ], + [ + 13.8672938, + 51.472273901 + ], + [ + 13.8675544, + 51.472513401 + ], + [ + 13.8700417, + 51.474799801 + ], + [ + 13.8704917, + 51.475216401 + ], + [ + 13.8706602, + 51.475370801 + ], + [ + 13.8719758, + 51.476576701 + ], + [ + 13.8739544, + 51.478386101 + ], + [ + 13.874912184, + 51.479278399 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de279", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.47927839905131,13.874912183604879,51.48374479626906,13.879783391957057", + "point": "51.47927839905131,13.874912183604879", + "startLcPosition": "11", + "impact": { + "lower": "Schwarzheide", + "upper": "Ruhland", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ruhland - Schwarzheide", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.47927839905131, + "long": 13.874912183604879 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 1.6 km hinter AS Ruhland und 1.0 km vor AS Schwarzheide", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.874912184, + 51.479278399 + ], + [ + 13.8755205, + 51.479845101 + ], + [ + 13.8773596, + 51.481535301 + ], + [ + 13.8787088, + 51.482772901 + ], + [ + 13.8793927, + 51.483402301 + ], + [ + 13.879783392, + 51.483744796 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de230", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.461847983877355,13.855751339719145,51.45738393220058,13.850923171936383", + "point": "51.461847983877355,13.855751339719145", + "startLcPosition": "11", + "impact": { + "lower": "Ortrand", + "upper": "Ruhland", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Ruhland - Ortrand", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.461847983877355, + "long": 13.855751339719145 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 0.7 km hinter AS Ruhland und 11.0 km vor AS Ortrand", + "", + "L\u00e4nge: 0.6 km | Max. 120 km/h | Maximale Durchfahrtsbreite: 12 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.85575134, + 51.461847984 + ], + [ + 13.8554925, + 51.461606701 + ], + [ + 13.8546894, + 51.460859001 + ], + [ + 13.8529792, + 51.459296601 + ], + [ + 13.850923172, + 51.457383932 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de212", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.47927839905131,13.874912183604879,51.48170161514682,13.877540906274477", + "point": "51.47927839905131,13.874912183604879", + "startLcPosition": "11", + "impact": { + "lower": "Schwarzheide", + "upper": "Ruhland", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ruhland - Schwarzheide", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.47927839905131, + "long": 13.874912183604879 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 1.6 km hinter AS Ruhland und 1.3 km vor AS Schwarzheide", + "", + "L\u00e4nge: 0.33 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 12 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.874912184, + 51.479278399 + ], + [ + 13.8755205, + 51.479845101 + ], + [ + 13.8773596, + 51.481535301 + ], + [ + 13.877540906, + 51.481701615 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de208", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.48170161514682,13.877540906274477,51.48374479626906,13.879783391957057", + "point": "51.48170161514682,13.877540906274477", + "startLcPosition": "11", + "impact": { + "lower": "Schwarzheide", + "upper": "Ruhland", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ruhland - Schwarzheide", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.48170161514682, + "long": 13.877540906274477 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 2.0 km hinter AS Ruhland und 1.0 km vor AS Schwarzheide", + "", + "L\u00e4nge: 0.28 km | Max. 120 km/h | Maximale Durchfahrtsbreite: 12 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.877540906, + 51.481701615 + ], + [ + 13.8787088, + 51.482772901 + ], + [ + 13.8793927, + 51.483402301 + ], + [ + 13.879783392, + 51.483744796 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de218", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.47141219726988,13.866150125433395,51.469094788784325,13.863605380049792", + "point": "51.47141219726988,13.866150125433395", + "startLcPosition": "12", + "impact": { + "lower": "Ruhland", + "upper": "Schwarzheide", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Schwarzheide - Ruhland", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.47141219726988, + "long": 13.866150125433395 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 2.7 km hinter AS Schwarzheide und 0.3 km vor AS Ruhland", + "", + "L\u00e4nge: 0.31 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.866150125, + 51.471412197 + ], + [ + 13.8658362, + 51.471118801 + ], + [ + 13.8648603, + 51.470225401 + ], + [ + 13.8645987, + 51.469984601 + ], + [ + 13.8640514, + 51.469504401 + ], + [ + 13.86360538, + 51.469094789 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de214", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.479342708465055,13.874759454122493,51.47141219726988,13.866150125433395", + "point": "51.479342708465055,13.874759454122493", + "startLcPosition": "12", + "impact": { + "lower": "Ruhland", + "upper": "Schwarzheide", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Schwarzheide - Ruhland", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.479342708465055, + "long": 13.874759454122493 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 1.6 km hinter AS Schwarzheide und 0.6 km vor AS Ruhland", + "", + "L\u00e4nge: 1.07 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.6 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.874759454, + 51.479342708 + ], + [ + 13.8705946, + 51.475507401 + ], + [ + 13.870373, + 51.475302101 + ], + [ + 13.869812, + 51.474786801 + ], + [ + 13.8674128, + 51.472591601 + ], + [ + 13.8671436, + 51.472337901 + ], + [ + 13.8668559, + 51.472071801 + ], + [ + 13.866150125, + 51.471412197 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de285", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.4683448819948,13.862788845021186,51.4664704903601,13.86076913656245", + "point": "51.4683448819948,13.862788845021186", + "startLcPosition": "12", + "impact": { + "lower": "Elsteraue", + "upper": "Schwarzheide", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Schwarzheide - Elsteraue", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.4683448819948, + "long": 13.862788845021186 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 3.1 km hinter AS Schwarzheide und 1.0 km vor Elsteraue", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.862788845, + 51.468344882 + ], + [ + 13.8626949, + 51.468258601 + ], + [ + 13.8616657, + 51.467309801 + ], + [ + 13.860769137, + 51.46647049 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de281", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.479342708465055,13.874759454122493,51.4683448819948,13.862788845021186", + "point": "51.479342708465055,13.874759454122493", + "startLcPosition": "12", + "impact": { + "lower": "Ruhland", + "upper": "Schwarzheide", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Schwarzheide - Ruhland", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.479342708465055, + "long": 13.874759454122493 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 1.6 km hinter AS Schwarzheide und 0.2 km vor AS Ruhland", + "", + "L\u00e4nge: 1.48 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.874759454, + 51.479342708 + ], + [ + 13.8705946, + 51.475507401 + ], + [ + 13.870373, + 51.475302101 + ], + [ + 13.869812, + 51.474786801 + ], + [ + 13.8674128, + 51.472591601 + ], + [ + 13.8671436, + 51.472337901 + ], + [ + 13.8668559, + 51.472071801 + ], + [ + 13.8658362, + 51.471118801 + ], + [ + 13.8648603, + 51.470225401 + ], + [ + 13.8645987, + 51.469984601 + ], + [ + 13.8640514, + 51.469504401 + ], + [ + 13.862788845, + 51.468344882 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-20_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de277", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.48380286842082,13.879651627477145,51.479342708465055,13.874759454122493", + "point": "51.48380286842082,13.879651627477145", + "startLcPosition": "12", + "impact": { + "lower": "Ruhland", + "upper": "Schwarzheide", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Schwarzheide - Ruhland", + "startTimestamp": "2026-04-20T16:00:00+02:00", + "coordinate": { + "lat": 51.48380286842082, + "long": 13.879651627477145 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 16:00 Uhr", + "Ende: 24.04.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 1.0 km hinter AS Schwarzheide und 1.6 km vor AS Ruhland", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.879651627, + 51.483802868 + ], + [ + 13.8778279, + 51.482165401 + ], + [ + 13.8756586, + 51.480170601 + ], + [ + 13.874759454, + 51.479342708 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de222", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.469094788784325,13.863605380049792,51.466843945218095,13.861168061243362", + "point": "51.469094788784325,13.863605380049792", + "startLcPosition": "12", + "impact": { + "lower": "Elsteraue", + "upper": "Schwarzheide", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Schwarzheide - Elsteraue", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.469094788784325, + "long": 13.863605380049792 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 3.0 km hinter AS Schwarzheide und 1.0 km vor Elsteraue", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.86360538, + 51.469094789 + ], + [ + 13.8626949, + 51.468258601 + ], + [ + 13.8616657, + 51.467309801 + ], + [ + 13.861168061, + 51.466843945 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de210", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.48176474577211,13.877392177282086,51.47934270846503,13.874759454122492", + "point": "51.48176474577211,13.877392177282086", + "startLcPosition": "12", + "impact": { + "lower": "Ruhland", + "upper": "Schwarzheide", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Schwarzheide - Ruhland", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.48176474577211, + "long": 13.877392177282086 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 1.3 km hinter AS Schwarzheide und 1.6 km vor AS Ruhland", + "", + "L\u00e4nge: 0.33 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.877392177, + 51.481764746 + ], + [ + 13.8756586, + 51.480170601 + ], + [ + 13.874759454, + 51.479342708 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-02_16-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de206", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.48380286842082,13.879651627477145,51.48176474577211,13.877392177282086", + "point": "51.48380286842082,13.879651627477145", + "startLcPosition": "12", + "impact": { + "lower": "Ruhland", + "upper": "Schwarzheide", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Schwarzheide - Ruhland", + "startTimestamp": "2026-04-02T16:00:00+02:00", + "coordinate": { + "lat": 51.48380286842082, + "long": 13.879651627477145 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 16:00 Uhr", + "Ende: 20.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 1.0 km hinter AS Schwarzheide und 2.0 km vor AS Ruhland", + "", + "L\u00e4nge: 0.28 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.879651627, + 51.483802868 + ], + [ + 13.8778279, + 51.482165401 + ], + [ + 13.877392177, + 51.481764746 + ] + ] + } + }, + { + "identifier": "2026-006768--vi-bs.2026-03-16_09-00-00-000.devi-zus.2026-03-02_09-00-00-000_003.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.520255046979884,13.905874349591429,51.538311540413815,13.909641876903207", + "point": "51.520255046979884,13.905874349591429", + "startLcPosition": "12", + "impact": { + "lower": "Freienhufener Eck-Ost", + "upper": "Schwarzheide", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Schwarzheide - Freienhufener Eck-Ost", + "startTimestamp": "2026-03-16T09:00:00+01:00", + "coordinate": { + "lat": 51.520255046979884, + "long": 13.905874349591429 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 09:00 Uhr", + "Ende: 25.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.08.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 3.6 km hinter AS Schwarzheide und 2.5 km vor Freienhufener Eck-Ost", + "", + "L\u00e4nge: 2.05 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A13, Sanierung Entw\u00e4sserungsrinnen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.90587435, + 51.520255047 + ], + [ + 13.9058246, + 51.520548701 + ], + [ + 13.9057818, + 51.520776801 + ], + [ + 13.9056783, + 51.521352801 + ], + [ + 13.9054612, + 51.522689701 + ], + [ + 13.9053901, + 51.523179001 + ], + [ + 13.9053007, + 51.523716701 + ], + [ + 13.9052523, + 51.524265401 + ], + [ + 13.9052307, + 51.525110901 + ], + [ + 13.9052488, + 51.525629301 + ], + [ + 13.905295, + 51.526205201 + ], + [ + 13.9053503, + 51.526710201 + ], + [ + 13.9054594, + 51.527263401 + ], + [ + 13.9056019, + 51.527830401 + ], + [ + 13.9057785, + 51.528434401 + ], + [ + 13.9060437, + 51.529165401 + ], + [ + 13.9063659, + 51.530016001 + ], + [ + 13.9066132, + 51.530613101 + ], + [ + 13.9066883, + 51.530803401 + ], + [ + 13.9067818, + 51.531022601 + ], + [ + 13.9068989, + 51.531294901 + ], + [ + 13.9071454, + 51.531897601 + ], + [ + 13.9077202, + 51.533300401 + ], + [ + 13.9078775, + 51.533702501 + ], + [ + 13.9083145, + 51.534770101 + ], + [ + 13.9084558, + 51.535113101 + ], + [ + 13.9086428, + 51.535579401 + ], + [ + 13.9088455, + 51.536076901 + ], + [ + 13.9090098, + 51.536480001 + ], + [ + 13.9091681, + 51.536883801 + ], + [ + 13.9092528, + 51.537099701 + ], + [ + 13.9093965, + 51.537519201 + ], + [ + 13.9095576, + 51.538009901 + ], + [ + 13.909641877, + 51.53831154 + ] + ] + } + }, + { + "identifier": "2026-006768--vi-bs.2026-03-16_09-00-00-000.devi-zus.2026-03-02_09-00-00-000_003.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5383300239205,13.909469103004938,51.520243604545755,13.905699037163387", + "point": "51.5383300239205,13.909469103004938", + "startLcPosition": "14", + "impact": { + "lower": "Schwarzheide", + "upper": "Freienhufener Eck-Ost", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Freienhufener Eck-Ost - Schwarzheide", + "startTimestamp": "2026-03-16T09:00:00+01:00", + "coordinate": { + "lat": 51.5383300239205, + "long": 13.909469103004938 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 09:00 Uhr", + "Ende: 25.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.08.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 2.6 km hinter Freienhufener Eck-Ost und 3.6 km vor AS Schwarzheide", + "", + "L\u00e4nge: 2.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.6 m", + "", + "A13, Sanierung Entw\u00e4sserungsrinnen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.909469103, + 51.538330024 + ], + [ + 13.9093866, + 51.538023501 + ], + [ + 13.9092306, + 51.537542201 + ], + [ + 13.9090854, + 51.537122301 + ], + [ + 13.9089952, + 51.536901401 + ], + [ + 13.9088325, + 51.536502901 + ], + [ + 13.9087387, + 51.536286401 + ], + [ + 13.9084667, + 51.535599901 + ], + [ + 13.9083888, + 51.535407801 + ], + [ + 13.9081414, + 51.534797901 + ], + [ + 13.9077658, + 51.533880101 + ], + [ + 13.9075333, + 51.533316901 + ], + [ + 13.9070228, + 51.532048201 + ], + [ + 13.906627, + 51.531063001 + ], + [ + 13.906527, + 51.530828401 + ], + [ + 13.9064452, + 51.530635601 + ], + [ + 13.9062035, + 51.530038001 + ], + [ + 13.9056008, + 51.528438001 + ], + [ + 13.9054222, + 51.527843101 + ], + [ + 13.9052969, + 51.527278801 + ], + [ + 13.9052006, + 51.526730601 + ], + [ + 13.9051211, + 51.526180301 + ], + [ + 13.9050702, + 51.525633301 + ], + [ + 13.9050463, + 51.524966401 + ], + [ + 13.9050741, + 51.524276201 + ], + [ + 13.9051249, + 51.523710801 + ], + [ + 13.9052107, + 51.523168701 + ], + [ + 13.9052892, + 51.522699601 + ], + [ + 13.9055131, + 51.521338901 + ], + [ + 13.9056105, + 51.520779901 + ], + [ + 13.905699037, + 51.520243605 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_17-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de253", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.6597495257313,13.925261318950731,51.68369301976233,13.900925138346073", + "point": "51.6597495257313,13.925261318950731", + "startLcPosition": "16", + "impact": { + "lower": "Calau", + "upper": "Gro\u00dfr\u00e4schen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Gro\u00dfr\u00e4schen - Calau", + "startTimestamp": "2026-03-12T17:00:00+01:00", + "coordinate": { + "lat": 51.6597495257313, + "long": 13.925261318950731 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 17:00 Uhr", + "Ende: 31.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 8.9 km hinter AS Gro\u00dfr\u00e4schen und 12.2 km vor AS Calau", + "", + "L\u00e4nge: 3.51 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.925261319, + 51.659749526 + ], + [ + 13.9250107, + 51.659818001 + ], + [ + 13.9228992, + 51.660351501 + ], + [ + 13.9207682, + 51.660863501 + ], + [ + 13.9190644, + 51.661270901 + ], + [ + 13.9182373, + 51.661492501 + ], + [ + 13.9174196, + 51.661711201 + ], + [ + 13.9168827, + 51.661867701 + ], + [ + 13.9160635, + 51.662120201 + ], + [ + 13.9154593, + 51.662317601 + ], + [ + 13.9150082, + 51.662470101 + ], + [ + 13.9143714, + 51.662707801 + ], + [ + 13.9139662, + 51.662862001 + ], + [ + 13.9136462, + 51.662990801 + ], + [ + 13.9130572, + 51.663230301 + ], + [ + 13.9126196, + 51.663417801 + ], + [ + 13.912201, + 51.663608301 + ], + [ + 13.9114806, + 51.663938801 + ], + [ + 13.9105944, + 51.664396301 + ], + [ + 13.9097426, + 51.664870101 + ], + [ + 13.9092928, + 51.665130201 + ], + [ + 13.9088288, + 51.665401401 + ], + [ + 13.9082618, + 51.665767701 + ], + [ + 13.9078321, + 51.666057101 + ], + [ + 13.9073887, + 51.666370101 + ], + [ + 13.9065797, + 51.666985301 + ], + [ + 13.9057832, + 51.667634301 + ], + [ + 13.9049402, + 51.668425401 + ], + [ + 13.9042393, + 51.669161001 + ], + [ + 13.9034704, + 51.670023601 + ], + [ + 13.9029664, + 51.670714701 + ], + [ + 13.9024945, + 51.671419701 + ], + [ + 13.9020394, + 51.672152801 + ], + [ + 13.901655, + 51.672925501 + ], + [ + 13.9013638, + 51.673535501 + ], + [ + 13.9011331, + 51.674177001 + ], + [ + 13.9009503, + 51.674755601 + ], + [ + 13.9007997, + 51.675316101 + ], + [ + 13.9006503, + 51.675965601 + ], + [ + 13.9005415, + 51.676668101 + ], + [ + 13.9004773, + 51.677470501 + ], + [ + 13.9004664, + 51.678311601 + ], + [ + 13.900663, + 51.680831301 + ], + [ + 13.9007428, + 51.681661301 + ], + [ + 13.900925138, + 51.68369302 + ] + ] + } + }, + { + "identifier": "2026-015060--vi-bs.2026-04-15_09-00-00-000.devi-zus.2026-04-15_09-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.66291964108153,13.913822995373621,51.68369301976233,13.900925138346073", + "point": "51.66291964108153,13.913822995373621", + "startLcPosition": "16", + "impact": { + "lower": "Calau", + "upper": "Gro\u00dfr\u00e4schen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Gro\u00dfr\u00e4schen - Calau", + "startTimestamp": "2026-04-15T09:00:00+02:00", + "coordinate": { + "lat": 51.66291964108153, + "long": 13.913822995373621 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 09:00 Uhr", + "Ende: 15.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.04.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 9.8 km hinter AS Gro\u00dfr\u00e4schen und 12.2 km vor AS Calau", + "", + "L\u00e4nge: 2.64 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A13 Verkehrshalt, Durch\u00f6rterung, Km 83,20, H\u00f6he Bronkow" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.913822995, + 51.662919641 + ], + [ + 13.9136462, + 51.662990801 + ], + [ + 13.9130572, + 51.663230301 + ], + [ + 13.9126196, + 51.663417801 + ], + [ + 13.912201, + 51.663608301 + ], + [ + 13.9114806, + 51.663938801 + ], + [ + 13.9105944, + 51.664396301 + ], + [ + 13.9097426, + 51.664870101 + ], + [ + 13.9092928, + 51.665130201 + ], + [ + 13.9088288, + 51.665401401 + ], + [ + 13.9082618, + 51.665767701 + ], + [ + 13.9078321, + 51.666057101 + ], + [ + 13.9073887, + 51.666370101 + ], + [ + 13.9065797, + 51.666985301 + ], + [ + 13.9057832, + 51.667634301 + ], + [ + 13.9049402, + 51.668425401 + ], + [ + 13.9042393, + 51.669161001 + ], + [ + 13.9034704, + 51.670023601 + ], + [ + 13.9029664, + 51.670714701 + ], + [ + 13.9024945, + 51.671419701 + ], + [ + 13.9020394, + 51.672152801 + ], + [ + 13.901655, + 51.672925501 + ], + [ + 13.9013638, + 51.673535501 + ], + [ + 13.9011331, + 51.674177001 + ], + [ + 13.9009503, + 51.674755601 + ], + [ + 13.9007997, + 51.675316101 + ], + [ + 13.9006503, + 51.675965601 + ], + [ + 13.9005415, + 51.676668101 + ], + [ + 13.9004773, + 51.677470501 + ], + [ + 13.9004664, + 51.678311601 + ], + [ + 13.900663, + 51.680831301 + ], + [ + 13.9007428, + 51.681661301 + ], + [ + 13.900925138, + 51.68369302 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-fbm.2026-04-24_08-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de263", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.70062916720255,13.89986981064181,51.74068379902563,13.862787273847623", + "point": "51.70062916720255,13.89986981064181", + "startLcPosition": "17", + "impact": { + "lower": "Calau", + "upper": "Bronkow", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Bronkow - Calau", + "coordinate": { + "lat": 51.70062916720255, + "long": 13.89986981064181 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 08:00 bis 13:00 Uhr", + "27.04.26 von 08:00 bis 17:00 Uhr", + "28.04.26 von 08:00 bis 17:00 Uhr", + "29.04.26 von 08:00 bis 17:00 Uhr", + "30.04.26 von 08:00 bis 17:00 Uhr", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 4.2 km hinter AS Bronkow und 5.1 km vor AS Calau", + "", + "L\u00e4nge: 5.2 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.899869811, + 51.700629167 + ], + [ + 13.8998011, + 51.700775101 + ], + [ + 13.8987215, + 51.703056301 + ], + [ + 13.8968725, + 51.706923201 + ], + [ + 13.8966279, + 51.707454301 + ], + [ + 13.895462, + 51.709937201 + ], + [ + 13.8951353, + 51.710537401 + ], + [ + 13.8947893, + 51.711137101 + ], + [ + 13.8943403, + 51.711801301 + ], + [ + 13.8938689, + 51.712445601 + ], + [ + 13.8932988, + 51.713121501 + ], + [ + 13.8927186, + 51.713769001 + ], + [ + 13.8919763, + 51.714517601 + ], + [ + 13.8908305, + 51.715508001 + ], + [ + 13.8838796, + 51.721375401 + ], + [ + 13.8835233, + 51.721679501 + ], + [ + 13.8805568, + 51.724164401 + ], + [ + 13.8777298, + 51.726555101 + ], + [ + 13.8740769, + 51.729631501 + ], + [ + 13.8692694, + 51.733700201 + ], + [ + 13.8668618, + 51.735713201 + ], + [ + 13.866034, + 51.736472201 + ], + [ + 13.8652767, + 51.737245301 + ], + [ + 13.8647233, + 51.737858001 + ], + [ + 13.8642292, + 51.738468801 + ], + [ + 13.8637368, + 51.739121501 + ], + [ + 13.863274, + 51.739812601 + ], + [ + 13.862787274, + 51.740683799 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de179", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.78214769216573,13.874686721068436,51.78410601186752,13.87603041384419", + "point": "51.78214769216573,13.874686721068436", + "startLcPosition": "17", + "impact": { + "lower": "Calau", + "upper": "Bronkow", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Bronkow - Calau", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.78214769216573, + "long": 13.874686721068436 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 14.2 km hinter AS Bronkow und 0.1 km vor AS Calau", + "", + "L\u00e4nge: 0.24 km | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.874686721, + 51.782147692 + ], + [ + 13.8756642, + 51.783571801 + ], + [ + 13.8758906, + 51.783899301 + ], + [ + 13.876030414, + 51.784106012 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-23_09-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de259", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.71711118869304,13.888931480978556,51.72578512244709,13.878640338995961", + "point": "51.71711118869304,13.888931480978556", + "startLcPosition": "17", + "impact": { + "lower": "Calau", + "upper": "Bronkow", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Bronkow - Calau", + "startTimestamp": "2026-04-23T09:00:00+02:00", + "coordinate": { + "lat": 51.71711118869304, + "long": 13.888931480978556 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.04.26 um 09:00 Uhr", + "Ende: 30.04.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 6.3 km hinter AS Bronkow und 7.1 km vor AS Calau", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 5.7 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.888931481, + 51.717111189 + ], + [ + 13.8838796, + 51.721375401 + ], + [ + 13.8835233, + 51.721679501 + ], + [ + 13.8805568, + 51.724164401 + ], + [ + 13.878640339, + 51.725785122 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de183", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.77953708547024,13.87289503841075,51.78214769216573,13.874686721068436", + "point": "51.77953708547024,13.87289503841075", + "startLcPosition": "17", + "impact": { + "lower": "Calau", + "upper": "Bronkow", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Bronkow - Calau", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.77953708547024, + "long": 13.87289503841075 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 13.9 km hinter AS Bronkow und 0.3 km vor AS Calau", + "", + "L\u00e4nge: 0.32 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.872895038, + 51.779537085 + ], + [ + 13.874686721, + 51.782147692 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de175", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.78410601186752,13.87603041384419,51.78658922153664,13.877730436301588", + "point": "51.78410601186752,13.87603041384419", + "startLcPosition": "17", + "impact": { + "lower": "Lichtenauer Seen", + "upper": "Bronkow", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Bronkow - Lichtenauer Seen", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.78410601186752, + "long": 13.87603041384419 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 14.4 km hinter AS Bronkow und 3.5 km vor Lichtenauer Seen", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 4.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.876030414, + 51.784106012 + ], + [ + 13.8770097, + 51.785553801 + ], + [ + 13.877730436, + 51.786589222 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-13_12-00-00-000.devi-zus.2026-03-02_08-00-00-000.de63", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.67651897779408,13.900564595945397,51.68576389814241,13.901111014131898", + "point": "51.67651897779408,13.900564595945397", + "startLcPosition": "17", + "impact": { + "lower": "Calau", + "upper": "Bronkow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Bronkow - Calau", + "coordinate": { + "lat": 51.67651897779408, + "long": 13.900564595945397 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 22:00 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 22:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 22:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 22:00 bis zum 17.04.26 06:00 Uhr.", + "20.04.26 22:00 bis zum 21.04.26 06:00 Uhr.", + "21.04.26 22:00 bis zum 22.04.26 06:00 Uhr.", + "22.04.26 22:00 bis zum 23.04.26 06:00 Uhr.", + "23.04.26 22:00 bis zum 24.04.26 06:00 Uhr.", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 1.5 km hinter AS Bronkow und 11.9 km vor AS Calau", + "", + "L\u00e4nge: 1.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.900564596, + 51.676518978 + ], + [ + 13.9005415, + 51.676668101 + ], + [ + 13.9004773, + 51.677470501 + ], + [ + 13.9004664, + 51.678311601 + ], + [ + 13.900663, + 51.680831301 + ], + [ + 13.9007428, + 51.681661301 + ], + [ + 13.901111014, + 51.685763898 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-13_12-00-00-000.devi-zus.2026-03-02_08-00-00-000.de59", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.67651897779408,13.900564595945397,51.68576389814241,13.901111014131898", + "point": "51.67651897779408,13.900564595945397", + "startLcPosition": "17", + "impact": { + "lower": "Calau", + "upper": "Bronkow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Bronkow - Calau", + "coordinate": { + "lat": 51.67651897779408, + "long": 13.900564595945397 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 12:00 bis 18:00 Uhr", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "20.04.26 von 12:00 bis 18:00 Uhr", + "21.04.26 von 08:00 bis 18:00 Uhr", + "22.04.26 von 08:00 bis 18:00 Uhr", + "23.04.26 von 08:00 bis 18:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 1.5 km hinter AS Bronkow und 11.9 km vor AS Calau", + "", + "L\u00e4nge: 1.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.900564596, + 51.676518978 + ], + [ + 13.9005415, + 51.676668101 + ], + [ + 13.9004773, + 51.677470501 + ], + [ + 13.9004664, + 51.678311601 + ], + [ + 13.900663, + 51.680831301 + ], + [ + 13.9007428, + 51.681661301 + ], + [ + 13.901111014, + 51.685763898 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-fbm.2026-04-24_08-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de261", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.7406456605911,13.862610360267652,51.70059883488841,13.899702652168038", + "point": "51.7406456605911,13.862610360267652", + "startLcPosition": "18", + "impact": { + "lower": "Bronkow", + "upper": "Calau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Calau - Bronkow", + "coordinate": { + "lat": 51.7406456605911, + "long": 13.862610360267652 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 08:00 bis 13:00 Uhr", + "27.04.26 von 08:00 bis 17:00 Uhr", + "28.04.26 von 08:00 bis 17:00 Uhr", + "29.04.26 von 08:00 bis 17:00 Uhr", + "30.04.26 von 08:00 bis 17:00 Uhr", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 5.1 km hinter AS Calau und 4.3 km vor AS Bronkow", + "", + "L\u00e4nge: 5.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.86261036, + 51.740645661 + ], + [ + 13.8631123, + 51.739749301 + ], + [ + 13.8635612, + 51.739054601 + ], + [ + 13.8640584, + 51.738395201 + ], + [ + 13.8645692, + 51.737786001 + ], + [ + 13.8651452, + 51.737150501 + ], + [ + 13.8658205, + 51.736467201 + ], + [ + 13.8665274, + 51.735824301 + ], + [ + 13.867747, + 51.734754901 + ], + [ + 13.8690717, + 51.733668801 + ], + [ + 13.8703541, + 51.732599001 + ], + [ + 13.8739499, + 51.729567901 + ], + [ + 13.8775586, + 51.726514301 + ], + [ + 13.8837359, + 51.721300801 + ], + [ + 13.8907222, + 51.715438001 + ], + [ + 13.8918459, + 51.714436701 + ], + [ + 13.8925681, + 51.713722501 + ], + [ + 13.8931632, + 51.713071801 + ], + [ + 13.8937315, + 51.712388201 + ], + [ + 13.8941875, + 51.711757401 + ], + [ + 13.8946314, + 51.711097501 + ], + [ + 13.8949844, + 51.710496001 + ], + [ + 13.8953141, + 51.709860001 + ], + [ + 13.8964785, + 51.707444901 + ], + [ + 13.8967357, + 51.706910701 + ], + [ + 13.898547, + 51.703031601 + ], + [ + 13.8991867, + 51.701656801 + ], + [ + 13.8996381, + 51.700736501 + ], + [ + 13.899702652, + 51.700598835 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de177", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.78415201383172,13.875854941015973,51.782190618073614,13.874523247404188", + "point": "51.78415201383172,13.875854941015973", + "startLcPosition": "18", + "impact": { + "lower": "Bronkow", + "upper": "Calau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Calau - Bronkow", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.78415201383172, + "long": 13.875854941015973 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 0.1 km hinter AS Calau und 14.2 km vor AS Bronkow", + "", + "L\u00e4nge: 0.24 km | Maximale Durchfahrtsbreite: 4.6 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.875854941, + 51.784152014 + ], + [ + 13.8757909, + 51.784058701 + ], + [ + 13.874523247, + 51.782190618 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de171", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.78658922153664,13.877730436301588,51.78865222586057,13.87912144846533", + "point": "51.78658922153664,13.877730436301588", + "startLcPosition": "18", + "impact": { + "lower": "Lichtenauer Seen", + "upper": "Calau", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Calau - Lichtenauer Seen", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.78658922153664, + "long": 13.877730436301588 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 0.2 km hinter AS Calau und 3.2 km vor Lichtenauer Seen", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.877730436, + 51.786589222 + ], + [ + 13.8783075, + 51.787418201 + ], + [ + 13.8790976, + 51.788617401 + ], + [ + 13.879121448, + 51.788652226 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de167", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.78865222586057,13.87912144846533,51.79650438164036,13.882942484518972", + "point": "51.78865222586057,13.87912144846533", + "startLcPosition": "18", + "impact": { + "lower": "Lichtenauer Seen", + "upper": "Calau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Calau - Lichtenauer Seen", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.78865222586057, + "long": 13.87912144846533 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 0.5 km hinter AS Calau und 2.3 km vor Lichtenauer Seen", + "", + "L\u00e4nge: 0.92 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.65 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.879121448, + 51.788652226 + ], + [ + 13.8794624, + 51.789150101 + ], + [ + 13.8801023, + 51.790084501 + ], + [ + 13.8810856, + 51.791564301 + ], + [ + 13.881495, + 51.792309701 + ], + [ + 13.882032, + 51.793511201 + ], + [ + 13.8823076, + 51.794238401 + ], + [ + 13.8825393, + 51.795015601 + ], + [ + 13.882942485, + 51.796504382 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-04-23_09-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de257", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.72572063982735,13.878499095520795,51.71705106346844,13.888800246054897", + "point": "51.72572063982735,13.878499095520795", + "startLcPosition": "18", + "impact": { + "lower": "Bronkow", + "upper": "Calau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Calau - Bronkow", + "startTimestamp": "2026-04-23T09:00:00+02:00", + "coordinate": { + "lat": 51.72572063982735, + "long": 13.878499095520795 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.04.26 um 09:00 Uhr", + "Ende: 30.04.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 7.1 km hinter AS Calau und 6.3 km vor AS Bronkow", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 3.85 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.878499096, + 51.72572064 + ], + [ + 13.8837359, + 51.721300801 + ], + [ + 13.888800246, + 51.717051063 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_17-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de251", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.68369892823627,13.900754756557633,51.659640653316565,13.92518246010943", + "point": "51.68369892823627,13.900754756557633", + "startLcPosition": "18", + "impact": { + "lower": "Gro\u00dfr\u00e4schen", + "upper": "Calau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Calau - Gro\u00dfr\u00e4schen", + "startTimestamp": "2026-03-12T17:00:00+01:00", + "coordinate": { + "lat": 51.68369892823627, + "long": 13.900754756557633 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 17:00 Uhr", + "Ende: 31.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 12.2 km hinter AS Calau und 8.9 km vor AS Gro\u00dfr\u00e4schen", + "", + "L\u00e4nge: 3.51 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.900754757, + 51.683698928 + ], + [ + 13.9006127, + 51.682115901 + ], + [ + 13.90029, + 51.678305501 + ], + [ + 13.9002963, + 51.677473901 + ], + [ + 13.9003645, + 51.676660801 + ], + [ + 13.9004746, + 51.675945501 + ], + [ + 13.9006401, + 51.675261201 + ], + [ + 13.90078, + 51.674713701 + ], + [ + 13.9009677, + 51.674132901 + ], + [ + 13.9012097, + 51.673500301 + ], + [ + 13.9014862, + 51.672870601 + ], + [ + 13.9018908, + 51.672119301 + ], + [ + 13.9023373, + 51.671371701 + ], + [ + 13.9028151, + 51.670656101 + ], + [ + 13.903336, + 51.669969801 + ], + [ + 13.9040934, + 51.669105701 + ], + [ + 13.9048155, + 51.668346901 + ], + [ + 13.905678, + 51.667542601 + ], + [ + 13.90645, + 51.666906501 + ], + [ + 13.9072639, + 51.666295401 + ], + [ + 13.9076986, + 51.665989501 + ], + [ + 13.9081398, + 51.665689501 + ], + [ + 13.9087249, + 51.665312801 + ], + [ + 13.9093294, + 51.664952901 + ], + [ + 13.9097349, + 51.664719201 + ], + [ + 13.9105529, + 51.664276601 + ], + [ + 13.9115705, + 51.663762801 + ], + [ + 13.9120241, + 51.663550401 + ], + [ + 13.9125412, + 51.663318101 + ], + [ + 13.9129806, + 51.663130701 + ], + [ + 13.9134451, + 51.662936401 + ], + [ + 13.9138792, + 51.662763001 + ], + [ + 13.9143052, + 51.662590301 + ], + [ + 13.9155662, + 51.662129301 + ], + [ + 13.9163601, + 51.661878701 + ], + [ + 13.9173619, + 51.661587501 + ], + [ + 13.9181625, + 51.661385201 + ], + [ + 13.9190056, + 51.661171201 + ], + [ + 13.9207094, + 51.660756401 + ], + [ + 13.9228506, + 51.660242501 + ], + [ + 13.9249706, + 51.659701001 + ], + [ + 13.92518246, + 51.659640653 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de181", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.782190618073614,13.874523247404188,51.77957547233526,13.872748851654881", + "point": "51.782190618073614,13.874523247404188", + "startLcPosition": "18", + "impact": { + "lower": "Bronkow", + "upper": "Calau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Calau - Bronkow", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.782190618073614, + "long": 13.874523247404188 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 0.3 km hinter AS Calau und 13.9 km vor AS Bronkow", + "", + "L\u00e4nge: 0.32 km | Max. 120 km/h | Maximale Durchfahrtsbreite: 12 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.874523247, + 51.782190618 + ], + [ + 13.872748852, + 51.779575472 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de163", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.79650438164036,13.882942484518972,51.79872692906428,13.883544440607208", + "point": "51.79650438164036,13.882942484518972", + "startLcPosition": "18", + "impact": { + "lower": "Lichtenauer Seen", + "upper": "Calau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Calau - Lichtenauer Seen", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.79650438164036, + "long": 13.882942484518972 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 1.4 km hinter AS Calau und 2.1 km vor Lichtenauer Seen", + "", + "L\u00e4nge: 0.25 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 12 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.882942485, + 51.796504382 + ], + [ + 13.883544441, + 51.798726929 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de159", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.79872692906428,13.883544440607208,51.800586426934416,13.88404812027478", + "point": "51.79872692906428,13.883544440607208", + "startLcPosition": "18", + "impact": { + "lower": "Lichtenauer Seen", + "upper": "Calau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Calau - Lichtenauer Seen", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.79872692906428, + "long": 13.883544440607208 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 1.6 km hinter AS Calau und 1.9 km vor Lichtenauer Seen", + "", + "L\u00e4nge: 0.21 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.883544441, + 51.798726929 + ], + [ + 13.88404812, + 51.800586427 + ] + ] + } + }, + { + "identifier": "2026-015060--vi-bs.2026-04-15_09-00-00-000.devi-zus.2026-04-15_09-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.68369892823627,13.900754756557633,51.66282475182625,13.91372461015016", + "point": "51.68369892823627,13.900754756557633", + "startLcPosition": "18", + "impact": { + "lower": "Gro\u00dfr\u00e4schen", + "upper": "Calau", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Calau - Gro\u00dfr\u00e4schen", + "startTimestamp": "2026-04-15T09:00:00+02:00", + "coordinate": { + "lat": 51.68369892823627, + "long": 13.900754756557633 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 09:00 Uhr", + "Ende: 15.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.04.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 12.2 km hinter AS Calau und 9.7 km vor AS Gro\u00dfr\u00e4schen", + "", + "L\u00e4nge: 2.64 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A13 Verkehrshalt, Durch\u00f6rterung, Km 83,20, H\u00f6he Bronkow" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.900754757, + 51.683698928 + ], + [ + 13.9006127, + 51.682115901 + ], + [ + 13.90029, + 51.678305501 + ], + [ + 13.9002963, + 51.677473901 + ], + [ + 13.9003645, + 51.676660801 + ], + [ + 13.9004746, + 51.675945501 + ], + [ + 13.9006401, + 51.675261201 + ], + [ + 13.90078, + 51.674713701 + ], + [ + 13.9009677, + 51.674132901 + ], + [ + 13.9012097, + 51.673500301 + ], + [ + 13.9014862, + 51.672870601 + ], + [ + 13.9018908, + 51.672119301 + ], + [ + 13.9023373, + 51.671371701 + ], + [ + 13.9028151, + 51.670656101 + ], + [ + 13.903336, + 51.669969801 + ], + [ + 13.9040934, + 51.669105701 + ], + [ + 13.9048155, + 51.668346901 + ], + [ + 13.905678, + 51.667542601 + ], + [ + 13.90645, + 51.666906501 + ], + [ + 13.9072639, + 51.666295401 + ], + [ + 13.9076986, + 51.665989501 + ], + [ + 13.9081398, + 51.665689501 + ], + [ + 13.9087249, + 51.665312801 + ], + [ + 13.9093294, + 51.664952901 + ], + [ + 13.9097349, + 51.664719201 + ], + [ + 13.9105529, + 51.664276601 + ], + [ + 13.9115705, + 51.663762801 + ], + [ + 13.9120241, + 51.663550401 + ], + [ + 13.9125412, + 51.663318101 + ], + [ + 13.9129806, + 51.663130701 + ], + [ + 13.9134451, + 51.662936401 + ], + [ + 13.91372461, + 51.662824752 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-13_12-00-00-000.devi-zus.2026-03-02_08-00-00-000.de65", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.69534938662692,13.90154265343607,51.68486435810032,13.900859347667938", + "point": "51.69534938662692,13.90154265343607", + "startLcPosition": "18", + "impact": { + "lower": "Bronkow", + "upper": "Calau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Calau - Bronkow", + "coordinate": { + "lat": 51.69534938662692, + "long": 13.90154265343607 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 22:00 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 22:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 22:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 22:00 bis zum 17.04.26 06:00 Uhr.", + "20.04.26 22:00 bis zum 21.04.26 06:00 Uhr.", + "21.04.26 22:00 bis zum 22.04.26 06:00 Uhr.", + "22.04.26 22:00 bis zum 23.04.26 06:00 Uhr.", + "23.04.26 22:00 bis zum 24.04.26 06:00 Uhr.", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 10.9 km hinter AS Calau und 2.5 km vor AS Bronkow", + "", + "L\u00e4nge: 1.17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.901542653, + 51.695349387 + ], + [ + 13.9016072, + 51.694677101 + ], + [ + 13.9016262, + 51.693752501 + ], + [ + 13.9016072, + 51.693290001 + ], + [ + 13.9015693, + 51.692784101 + ], + [ + 13.9014799, + 51.691777301 + ], + [ + 13.900859348, + 51.684864358 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-13_12-00-00-000.devi-zus.2026-03-02_08-00-00-000.de61", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.69534938662692,13.90154265343607,51.68486435810032,13.900859347667938", + "point": "51.69534938662692,13.90154265343607", + "startLcPosition": "18", + "impact": { + "lower": "Bronkow", + "upper": "Calau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Calau - Bronkow", + "coordinate": { + "lat": 51.69534938662692, + "long": 13.90154265343607 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 12:00 bis 18:00 Uhr", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "20.04.26 von 08:00 bis 18:00 Uhr", + "21.04.26 von 08:00 bis 18:00 Uhr", + "22.04.26 von 08:00 bis 18:00 Uhr", + "23.04.26 von 08:00 bis 18:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 10.9 km hinter AS Calau und 2.5 km vor AS Bronkow", + "", + "L\u00e4nge: 1.17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.901542653, + 51.695349387 + ], + [ + 13.9016072, + 51.694677101 + ], + [ + 13.9016262, + 51.693752501 + ], + [ + 13.9016072, + 51.693290001 + ], + [ + 13.9015693, + 51.692784101 + ], + [ + 13.9014799, + 51.691777301 + ], + [ + 13.900859348, + 51.684864358 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de169", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.788697967332645,13.878948665175894,51.786636433970735,13.87755203808196", + "point": "51.788697967332645,13.878948665175894", + "startLcPosition": "19", + "impact": { + "lower": "Calau", + "upper": "Lichtenauer Seen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Lichtenauer Seen - Calau", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.788697967332645, + "long": 13.878948665175894 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 3.2 km hinter Lichtenauer Seen und 0.2 km vor AS Calau", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 4.6 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.878948665, + 51.788697967 + ], + [ + 13.8789227, + 51.788660401 + ], + [ + 13.8778348, + 51.787052201 + ], + [ + 13.877552038, + 51.786636434 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de165", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.79652488100111,13.88274623502741,51.788697967332666,13.878948665175894", + "point": "51.79652488100111,13.88274623502741", + "startLcPosition": "19", + "impact": { + "lower": "Calau", + "upper": "Lichtenauer Seen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Lichtenauer Seen - Calau", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.79652488100111, + "long": 13.88274623502741 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 2.3 km hinter Lichtenauer Seen und 0.5 km vor AS Calau", + "", + "L\u00e4nge: 0.92 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.6 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.882746235, + 51.796524881 + ], + [ + 13.8823457, + 51.795057601 + ], + [ + 13.8821293, + 51.794280201 + ], + [ + 13.8818747, + 51.793553801 + ], + [ + 13.8814582, + 51.792644901 + ], + [ + 13.8810535, + 51.791832501 + ], + [ + 13.879951, + 51.790148101 + ], + [ + 13.878948665, + 51.788697967 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de173", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.786636433970735,13.87755203808196,51.78415201383172,13.875854941015973", + "point": "51.786636433970735,13.87755203808196", + "startLcPosition": "19", + "impact": { + "lower": "Bronkow", + "upper": "Lichtenauer Seen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Lichtenauer Seen - Bronkow", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.786636433970735, + "long": 13.87755203808196 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 3.5 km hinter Lichtenauer Seen und 14.5 km vor AS Bronkow", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.877552038, + 51.786636434 + ], + [ + 13.8766801, + 51.785354301 + ], + [ + 13.875854941, + 51.784152014 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de161", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.79874694286208,13.883352865215494,51.796524881001105,13.88274623502741", + "point": "51.79874694286208,13.883352865215494", + "startLcPosition": "19", + "impact": { + "lower": "Calau", + "upper": "Lichtenauer Seen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Lichtenauer Seen - Calau", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.79874694286208, + "long": 13.883352865215494 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 2.1 km hinter Lichtenauer Seen und 1.4 km vor AS Calau", + "", + "L\u00e4nge: 0.25 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.883352865, + 51.798746943 + ], + [ + 13.882746235, + 51.796524881 + ] + ] + } + }, + { + "identifier": "2025-006524--vi-bs.2026-03-12_10-00-00-000.devi-zus.2025-03-03_00-00-00-000_003.de157", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.800606034438644,13.883860455823479,51.79874694286209,13.883352865215494", + "point": "51.800606034438644,13.883860455823479", + "startLcPosition": "19", + "impact": { + "lower": "Calau", + "upper": "Lichtenauer Seen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Lichtenauer Seen - Calau", + "startTimestamp": "2026-03-12T10:00:00+01:00", + "coordinate": { + "lat": 51.800606034438644, + "long": 13.883860455823479 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 10:00 Uhr", + "Ende: 08.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.06.26)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 1.9 km hinter Lichtenauer Seen und 1.6 km vor AS Calau", + "", + "L\u00e4nge: 0.21 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A 13, Erneuerung Korrosionsschutz an mehreren \u00dc-Bauwerken A 13 zw. AS Calau u. AS Ruhland (km 70,028-109,672), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.883860456, + 51.800606034 + ], + [ + 13.883352865, + 51.798746943 + ] + ] + } + }, + { + "identifier": "2026-017779--vi-bs.2026-04-10_08-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.846235820915155,13.918999717368038,51.840941228116094,13.921051550822478", + "point": "51.846235820915155,13.918999717368038", + "startLcPosition": "22", + "impact": { + "lower": "Kittlitz", + "upper": "L\u00fcbbenau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | L\u00fcbbenau - Kittlitz", + "coordinate": { + "lat": 51.846235820915155, + "long": 13.918999717368038 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 0.6 km hinter AS L\u00fcbbenau und 1.3 km vor AS Kittlitz", + "", + "L\u00e4nge: 0.68 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A13 von L\u00fcbbenau (AS) nach Kittlitz (AS) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.918999717, + 51.846235821 + ], + [ + 13.919212, + 51.846157801 + ], + [ + 13.9196966, + 51.845873101 + ], + [ + 13.9200112, + 51.845704401 + ], + [ + 13.9201911, + 51.845608801 + ], + [ + 13.9204009, + 51.845491201 + ], + [ + 13.9206341, + 51.845345501 + ], + [ + 13.9209815, + 51.845100201 + ], + [ + 13.9211456, + 51.844964001 + ], + [ + 13.9212718, + 51.844839101 + ], + [ + 13.9214327, + 51.844691501 + ], + [ + 13.9215737, + 51.844534701 + ], + [ + 13.9217435, + 51.844292601 + ], + [ + 13.9218917, + 51.844043601 + ], + [ + 13.9220583, + 51.843576501 + ], + [ + 13.9221044, + 51.843291401 + ], + [ + 13.922101, + 51.843005201 + ], + [ + 13.9220737, + 51.842767101 + ], + [ + 13.9220038, + 51.842529901 + ], + [ + 13.9217928, + 51.842056201 + ], + [ + 13.9216586, + 51.841813501 + ], + [ + 13.921516, + 51.841605401 + ], + [ + 13.9213827, + 51.841406501 + ], + [ + 13.921051551, + 51.840941228 + ] + ] + } + }, + { + "identifier": "2025-022607--vi-bs.2026-03-16_07-00-00-000.devi-zus.2025-09-01_00-00-00-000_004.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.0059189610457,13.71621912288207,52.09290792028192,13.648247294746769", + "point": "52.0059189610457,13.71621912288207", + "startLcPosition": "28", + "impact": { + "lower": "Teupitz", + "upper": "Am Bugkgraben", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Am Bugkgraben - Teupitz", + "startTimestamp": "2026-03-16T07:00:00+01:00", + "coordinate": { + "lat": 52.0059189610457, + "long": 13.71621912288207 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 07:00 Uhr", + "Ende: 06.05.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 1.4 km hinter Am Bugkgraben und 3.0 km vor AS Teupitz", + "", + "L\u00e4nge: 11.27 km | Maximale Durchfahrtsbreite: 7.3 m", + "", + "A13, Erhaltung Strecke zwischen AS Teupitz und AS Freiwalde km 27,950 bis 36,401 bdRF" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.716219123, + 52.005918961 + ], + [ + 13.7153724, + 52.006443901 + ], + [ + 13.7142469, + 52.007064901 + ], + [ + 13.7131199, + 52.007624201 + ], + [ + 13.709984, + 52.009084201 + ], + [ + 13.7018773, + 52.012893301 + ], + [ + 13.7001102, + 52.013723601 + ], + [ + 13.6976572, + 52.014854001 + ], + [ + 13.6961532, + 52.015572001 + ], + [ + 13.6918437, + 52.017607301 + ], + [ + 13.6900676, + 52.018635901 + ], + [ + 13.6892344, + 52.019171001 + ], + [ + 13.6876387, + 52.020385601 + ], + [ + 13.6868548, + 52.021051301 + ], + [ + 13.6866891, + 52.021203901 + ], + [ + 13.685908, + 52.021956501 + ], + [ + 13.6847636, + 52.023139001 + ], + [ + 13.676036, + 52.032137401 + ], + [ + 13.6706664, + 52.037664001 + ], + [ + 13.6696451, + 52.038717501 + ], + [ + 13.6686247, + 52.039768901 + ], + [ + 13.6636496, + 52.044894801 + ], + [ + 13.6602047, + 52.048443401 + ], + [ + 13.6586785, + 52.050015201 + ], + [ + 13.6575519, + 52.051208801 + ], + [ + 13.6566792, + 52.052229101 + ], + [ + 13.6559267, + 52.053220901 + ], + [ + 13.6555767, + 52.053786901 + ], + [ + 13.655284, + 52.054289301 + ], + [ + 13.6548867, + 52.055060501 + ], + [ + 13.6544198, + 52.056237901 + ], + [ + 13.6542592, + 52.056714901 + ], + [ + 13.6540342, + 52.057575901 + ], + [ + 13.653848, + 52.058475601 + ], + [ + 13.653212, + 52.061656801 + ], + [ + 13.6530709, + 52.062430501 + ], + [ + 13.6528774, + 52.063337201 + ], + [ + 13.6526038, + 52.064607801 + ], + [ + 13.6522646, + 52.066300901 + ], + [ + 13.6515142, + 52.070063401 + ], + [ + 13.6511346, + 52.071942301 + ], + [ + 13.650763, + 52.073814201 + ], + [ + 13.6502378, + 52.076391601 + ], + [ + 13.6498514, + 52.078324001 + ], + [ + 13.6496403, + 52.079641801 + ], + [ + 13.6495466, + 52.080531201 + ], + [ + 13.648247295, + 52.09290792 + ] + ] + } + }, + { + "identifier": "2025-022607--vi-bs.2026-03-16_07-00-00-000.devi-zus.2025-09-01_00-00-00-000_004.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.09290010617905,13.648050621285337,52.005838145254195,13.716086917436622", + "point": "52.09290010617905,13.648050621285337", + "startLcPosition": "31", + "impact": { + "lower": "Am Bugkgraben", + "upper": "Teupitz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Teupitz - Am Bugkgraben", + "startTimestamp": "2026-03-16T07:00:00+01:00", + "coordinate": { + "lat": 52.09290010617905, + "long": 13.648050621285337 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 07:00 Uhr", + "Ende: 06.05.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 3.0 km hinter AS Teupitz und 1.3 km vor Am Bugkgraben", + "", + "L\u00e4nge: 11.27 km | Maximale Durchfahrtsbreite: 7.3 m", + "", + "A13, Erhaltung Strecke zwischen AS Teupitz und AS Freiwalde km 27,950 bis 36,401 bdRF" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.648050621, + 52.092900106 + ], + [ + 13.6493456, + 52.080482001 + ], + [ + 13.6494341, + 52.079675201 + ], + [ + 13.6496242, + 52.078507001 + ], + [ + 13.6500138, + 52.076520201 + ], + [ + 13.6505311, + 52.074002601 + ], + [ + 13.6509129, + 52.072104001 + ], + [ + 13.6511459, + 52.070955201 + ], + [ + 13.6520611, + 52.066373801 + ], + [ + 13.6523951, + 52.064545401 + ], + [ + 13.6526646, + 52.063273001 + ], + [ + 13.6530418, + 52.061369001 + ], + [ + 13.6536686, + 52.058468301 + ], + [ + 13.6538476, + 52.057554101 + ], + [ + 13.6540733, + 52.056661101 + ], + [ + 13.6542392, + 52.056196901 + ], + [ + 13.6547317, + 52.054997201 + ], + [ + 13.6551168, + 52.054247501 + ], + [ + 13.6554077, + 52.053729201 + ], + [ + 13.6557774, + 52.053150801 + ], + [ + 13.656565, + 52.052117201 + ], + [ + 13.6574255, + 52.051091301 + ], + [ + 13.6600462, + 52.048388301 + ], + [ + 13.6684651, + 52.039715001 + ], + [ + 13.6694809, + 52.038671001 + ], + [ + 13.6705054, + 52.037611501 + ], + [ + 13.6723714, + 52.035681701 + ], + [ + 13.6846244, + 52.023060801 + ], + [ + 13.6857628, + 52.021887401 + ], + [ + 13.6864831, + 52.021188201 + ], + [ + 13.6866477, + 52.021036501 + ], + [ + 13.6874979, + 52.020308901 + ], + [ + 13.689091, + 52.019092201 + ], + [ + 13.6899925, + 52.018494901 + ], + [ + 13.6917231, + 52.017491801 + ], + [ + 13.6957876, + 52.015589301 + ], + [ + 13.6975524, + 52.014743401 + ], + [ + 13.700082, + 52.013582201 + ], + [ + 13.7023148, + 52.012537701 + ], + [ + 13.7099315, + 52.008974301 + ], + [ + 13.7130817, + 52.007505901 + ], + [ + 13.7141923, + 52.006945901 + ], + [ + 13.715276, + 52.006346001 + ], + [ + 13.716086917, + 52.005838145 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de55", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.18660730900213,13.617280159753603,52.19583203741419,13.61541625370232", + "point": "52.18660730900213,13.617280159753603", + "startLcPosition": "32", + "impact": { + "lower": "Am Kahlberg-West", + "upper": "Gro\u00df K\u00f6ris", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Gro\u00df K\u00f6ris - Am Kahlberg-West", + "coordinate": { + "lat": 52.18660730900213, + "long": 13.617280159753603 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 22:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 22:00 bis zum 17.04.26 06:00 Uhr.", + "20.04.26 22:00 bis zum 21.04.26 06:00 Uhr.", + "21.04.26 22:00 bis zum 22.04.26 06:00 Uhr.", + "22.04.26 22:00 bis zum 23.04.26 06:00 Uhr.", + "23.04.26 22:00 bis zum 24.04.26 06:00 Uhr.", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 3.8 km hinter AS Gro\u00df K\u00f6ris und 1.5 km vor Am Kahlberg-West", + "", + "L\u00e4nge: 1.04 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.61728016, + 52.186607309 + ], + [ + 13.6169073, + 52.187316601 + ], + [ + 13.6165062, + 52.188274301 + ], + [ + 13.6162069, + 52.189145301 + ], + [ + 13.615962, + 52.190045701 + ], + [ + 13.6158562, + 52.190668001 + ], + [ + 13.6157693, + 52.191305101 + ], + [ + 13.6156696, + 52.192575301 + ], + [ + 13.6155127, + 52.194621801 + ], + [ + 13.6154739, + 52.195128301 + ], + [ + 13.6154218, + 52.195794001 + ], + [ + 13.615416254, + 52.195832037 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de51", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.185769311908075,13.61778674729195,52.19458268543728,13.615515699109007", + "point": "52.185769311908075,13.61778674729195", + "startLcPosition": "32", + "impact": { + "lower": "Am Kahlberg-West", + "upper": "Gro\u00df K\u00f6ris", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Gro\u00df K\u00f6ris - Am Kahlberg-West", + "coordinate": { + "lat": 52.185769311908075, + "long": 13.61778674729195 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "20.04.26 von 12:00 bis 18:00 Uhr", + "21.04.26 von 08:00 bis 18:00 Uhr", + "22.04.26 von 08:00 bis 18:00 Uhr", + "23.04.26 von 08:00 bis 18:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 3.7 km hinter AS Gro\u00df K\u00f6ris und 1.6 km vor Am Kahlberg-West", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.617786747, + 52.185769312 + ], + [ + 13.617413, + 52.186354601 + ], + [ + 13.6169073, + 52.187316601 + ], + [ + 13.6165062, + 52.188274301 + ], + [ + 13.6162069, + 52.189145301 + ], + [ + 13.615962, + 52.190045701 + ], + [ + 13.6158562, + 52.190668001 + ], + [ + 13.6157693, + 52.191305101 + ], + [ + 13.6156696, + 52.192575301 + ], + [ + 13.615515699, + 52.194582685 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de57", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.203997419575686,13.611233641264548,52.195419800471235,13.615268204427734", + "point": "52.203997419575686,13.611233641264548", + "startLcPosition": "33", + "impact": { + "lower": "Gro\u00df K\u00f6ris", + "upper": "Am Kahlberg-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Am Kahlberg-West - Gro\u00df K\u00f6ris", + "coordinate": { + "lat": 52.203997419575686, + "long": 13.611233641264548 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 22:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 22:00 bis zum 17.04.26 06:00 Uhr.", + "20.04.26 22:00 bis zum 21.04.26 06:00 Uhr.", + "21.04.26 22:00 bis zum 22.04.26 06:00 Uhr.", + "22.04.26 22:00 bis zum 23.04.26 06:00 Uhr.", + "23.04.26 22:00 bis zum 24.04.26 06:00 Uhr.", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 0.5 km hinter Am Kahlberg-West und 4.8 km vor AS Gro\u00df K\u00f6ris", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.611233641, + 52.20399742 + ], + [ + 13.6122374, + 52.202559301 + ], + [ + 13.6132307, + 52.201113401 + ], + [ + 13.6138011, + 52.200160301 + ], + [ + 13.6141748, + 52.199408001 + ], + [ + 13.6145027, + 52.198660401 + ], + [ + 13.6148189, + 52.197782601 + ], + [ + 13.6149901, + 52.197128601 + ], + [ + 13.6151362, + 52.196442801 + ], + [ + 13.615232, + 52.195786101 + ], + [ + 13.615268204, + 52.1954198 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de53", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.203997419575686,13.611233641264548,52.195240539002874,13.615285922064869", + "point": "52.203997419575686,13.611233641264548", + "startLcPosition": "33", + "impact": { + "lower": "Gro\u00df K\u00f6ris", + "upper": "Am Kahlberg-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Am Kahlberg-West - Gro\u00df K\u00f6ris", + "coordinate": { + "lat": 52.203997419575686, + "long": 13.611233641264548 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "20.04.26 von 12:00 bis 18:00 Uhr", + "21.04.26 von 08:00 bis 18:00 Uhr", + "22.04.26 von 08:00 bis 18:00 Uhr", + "23.04.26 von 08:00 bis 18:00 Uhr", + "24.04.26 von 08:15 bis 12:00 Uhr", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 0.5 km hinter Am Kahlberg-West und 4.8 km vor AS Gro\u00df K\u00f6ris", + "", + "L\u00e4nge: 1.02 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.611233641, + 52.20399742 + ], + [ + 13.6122374, + 52.202559301 + ], + [ + 13.6132307, + 52.201113401 + ], + [ + 13.6138011, + 52.200160301 + ], + [ + 13.6141748, + 52.199408001 + ], + [ + 13.6145027, + 52.198660401 + ], + [ + 13.6148189, + 52.197782601 + ], + [ + 13.6149901, + 52.197128601 + ], + [ + 13.6151362, + 52.196442801 + ], + [ + 13.615232, + 52.195786101 + ], + [ + 13.615285922, + 52.195240539 + ] + ] + } + }, + { + "identifier": "2026-017783--vi-bs.2026-04-10_08-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.30943496644032,13.555593651008095,52.31257962158872,13.555298650410545", + "point": "52.30943496644032,13.555593651008095", + "startLcPosition": "37", + "impact": { + "lower": "Sch\u00f6nefelder Kreuz", + "upper": "Ragow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 | Ragow - Sch\u00f6nefelder Kreuz", + "coordinate": { + "lat": 52.30943496644032, + "long": 13.555593651008095 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 2.0 km hinter AS Ragow und 0.7 km vor AK Sch\u00f6nefelder Kreuz", + "", + "L\u00e4nge: 0.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A13 von Ragow (AS) nach Sch\u00f6nefelder Kreuz (AK) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.555593651, + 52.309434966 + ], + [ + 13.5555788, + 52.309557601 + ], + [ + 13.5554612, + 52.310620601 + ], + [ + 13.5553841, + 52.311433001 + ], + [ + 13.5553079, + 52.312477001 + ], + [ + 13.55529865, + 52.312579622 + ] + ] + } + }, + { + "identifier": "2026-016170--vi-bs.2026-04-20_10-00-00-000.devi-bs.2026-04-20_08-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.31836529588138,13.554558855320956,52.30490150414086,13.555848813337585", + "point": "52.31836529588138,13.554558855320956", + "startLcPosition": "38", + "impact": { + "lower": "Ragow", + "upper": "Sch\u00f6nefelder Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefelder Kreuz -> Dresden", + "title": "A13 | Sch\u00f6nefelder Kreuz - Ragow", + "coordinate": { + "lat": 52.31836529588138, + "long": 13.554558855320956 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 10:00 bis 15:00 Uhr", + "21.04.26 von 08:00 bis 15:00 Uhr", + "22.04.26 von 08:00 bis 15:00 Uhr", + "23.04.26 von 08:00 bis 15:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "", + "A13: Sch\u00f6nefelder Kreuz -> Dresden, zwischen 0.1 km hinter AK Sch\u00f6nefelder Kreuz und 1.5 km vor AS Ragow", + "", + "L\u00e4nge: 1.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A113 A13 km 1,30 - 0,0 - 1,5 (AK) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.554558855, + 52.318365296 + ], + [ + 13.5545662, + 52.318256401 + ], + [ + 13.554614, + 52.317837701 + ], + [ + 13.5546322, + 52.317389001 + ], + [ + 13.5547442, + 52.315685301 + ], + [ + 13.5549363, + 52.313385001 + ], + [ + 13.5550601, + 52.311774001 + ], + [ + 13.5551996, + 52.310431701 + ], + [ + 13.5553617, + 52.309381901 + ], + [ + 13.5554752, + 52.308718001 + ], + [ + 13.5556448, + 52.307444001 + ], + [ + 13.555848813, + 52.304901504 + ] + ] + } + }, + { + "identifier": "2026-008463--vi-bs.2026-03-04_00-00-00-000.devi-zus.2026-03-04_00-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.662051777001004,13.91628549455012,51.66598249610647,13.911998697840124", + "point": "51.662051777001004,13.91628549455012", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dresden -> Sch\u00f6nefelder Kreuz", + "title": "A13 AS Bronkow Umbau einer Anschlussstelle f\u00fcr GST", + "startTimestamp": "2026-03-04T00:00:00+01:00", + "coordinate": { + "lat": 51.662051777001004, + "long": 13.91628549455012 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.03.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.09.26)", + "", + "Von A13: Dresden -> Sch\u00f6nefelder Kreuz, zwischen 9.6 km hinter AS Gro\u00dfr\u00e4schen und AS Bronkow nach Abfahrt von der A13: AS Bronkow (aus Richtung Gro\u00dfr\u00e4schen)", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A13 AS Bronkow Umbau einer Anschlussstelle f\u00fcr GST" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.916285495, + 51.662051777 + ], + [ + 13.9160635, + 51.662120201 + ], + [ + 13.9154593, + 51.662317601 + ], + [ + 13.9150082, + 51.662470101 + ], + [ + 13.9143714, + 51.662707801 + ], + [ + 13.9139662, + 51.662862001 + ], + [ + 13.9136462, + 51.662990801 + ], + [ + 13.9132356, + 51.663279201 + ], + [ + 13.9131441, + 51.663374301 + ], + [ + 13.9130859, + 51.663475001 + ], + [ + 13.9130553, + 51.663578601 + ], + [ + 13.9130467, + 51.663692101 + ], + [ + 13.9130535, + 51.663790601 + ], + [ + 13.9130844, + 51.663885601 + ], + [ + 13.9131281, + 51.663974001 + ], + [ + 13.9132116, + 51.664119101 + ], + [ + 13.9132988, + 51.664239801 + ], + [ + 13.9133569, + 51.664369801 + ], + [ + 13.9133788, + 51.664498501 + ], + [ + 13.9133639, + 51.664658801 + ], + [ + 13.9132968, + 51.664808201 + ], + [ + 13.9131983, + 51.664954301 + ], + [ + 13.9130179, + 51.665153701 + ], + [ + 13.9125555, + 51.665650101 + ], + [ + 13.9124385, + 51.665750801 + ], + [ + 13.9123283, + 51.665828401 + ], + [ + 13.91224, + 51.665898001 + ], + [ + 13.9121264, + 51.665945001 + ], + [ + 13.911998698, + 51.665982496 + ] + ] + } + } + ] + }, + "A14": { + "roadworks": [ + { + "identifier": "2026-005910--vi-bs.2026-02-16_09-00-00-000.devi-zus.2026-02-16_09-00-00-000_010.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.57408575886969,11.495438630379201,53.56643451401545,11.48752335716284", + "point": "53.57408575886969,11.495438630379201", + "startLcPosition": "6", + "impact": { + "lower": "Plater Berg", + "upper": "Schwerin-Ost", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wismar -> Schwerin", + "title": "A14 | Schwerin-Ost - Plater Berg", + "coordinate": { + "lat": 53.57408575886969, + "long": 11.495438630379201 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "", + "A14: Wismar -> Schwerin, zwischen 2.2 km hinter AS Schwerin-Ost und 3.4 km vor Plater Berg", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A14 Bauwerkspr\u00fcfung St\u00f6rkanalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.49543863, + 53.574085759 + ], + [ + 11.4920275, + 53.570789501 + ], + [ + 11.491439, + 53.570220801 + ], + [ + 11.490802, + 53.569605201 + ], + [ + 11.487523357, + 53.566434514 + ] + ] + } + }, + { + "identifier": "2026-005910--vi-bs.2026-02-16_09-00-00-000.devi-zus.2026-02-16_09-00-00-000_010.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.56637635660977,11.48768203356767,53.57402700923162,11.49559891670628", + "point": "53.56637635660977,11.48768203356767", + "startLcPosition": "7", + "impact": { + "lower": "Schwerin-Ost", + "upper": "Plater Berg", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Wismar", + "title": "A14 | Plater Berg - Schwerin-Ost", + "coordinate": { + "lat": 53.56637635660977, + "long": 11.48768203356767 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "", + "A14: Schwerin -> Wismar, zwischen 3.4 km hinter Plater Berg und 2.2 km vor AS Schwerin-Ost", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A14 Bauwerkspr\u00fcfung St\u00f6rkanalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.487682034, + 53.566376357 + ], + [ + 11.4909135, + 53.569499901 + ], + [ + 11.4915544, + 53.570116901 + ], + [ + 11.4922002, + 53.570741301 + ], + [ + 11.4944037, + 53.572871501 + ], + [ + 11.495598917, + 53.574027009 + ] + ] + } + }, + { + "identifier": "2026-009058--vi-bs.2026-03-02_09-00-00-000.devi-bs.2026-03-02_09-00-00-000_055.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.18679150338098,11.687903164784545,53.29519969911223,11.527276726727573", + "point": "53.18679150338098,11.687903164784545", + "startLcPosition": "15", + "impact": { + "lower": "Grabow", + "upper": "Karst\u00e4dt", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wittenberge -> Schwerin", + "title": "A14 | Karst\u00e4dt - Grabow", + "coordinate": { + "lat": 53.18679150338098, + "long": 11.687903164784545 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag und Montag zwischen dem 30.03.26 und dem 13.04.26 von 09:00 bis 18:00 Uhr.", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 31.03.26 und dem 16.04.26 von 07:00 bis 18:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 10.04.26 und dem 17.04.26 von 07:00 bis 12:00 Uhr.", + "Die Baustelle gilt nicht an folgenden Tagen:", + "", + "A14: Wittenberge -> Schwerin, zwischen 4.5 km hinter AS Karst\u00e4dt und 0.6 km vor AS Grabow", + "", + "L\u00e4nge: 17.38 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A14 Fugensanierung AM Fahrbinde (4400044332)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.687903165, + 53.186791503 + ], + [ + 11.6870334, + 53.187308901 + ], + [ + 11.6857212, + 53.188077201 + ], + [ + 11.6841487, + 53.188919301 + ], + [ + 11.6830054, + 53.189517501 + ], + [ + 11.6819293, + 53.190080801 + ], + [ + 11.6797164, + 53.191132301 + ], + [ + 11.6786952, + 53.191600701 + ], + [ + 11.6767378, + 53.192441601 + ], + [ + 11.6746433, + 53.193371001 + ], + [ + 11.6737327, + 53.193800701 + ], + [ + 11.6723873, + 53.194470301 + ], + [ + 11.6716906, + 53.194824601 + ], + [ + 11.6698305, + 53.195824501 + ], + [ + 11.6685148, + 53.196560901 + ], + [ + 11.6678054, + 53.196990901 + ], + [ + 11.6663502, + 53.197857901 + ], + [ + 11.6652841, + 53.198505501 + ], + [ + 11.660208, + 53.201728101 + ], + [ + 11.6574387, + 53.203501801 + ], + [ + 11.6492988, + 53.208713801 + ], + [ + 11.6487801, + 53.209042601 + ], + [ + 11.6472724, + 53.210009601 + ], + [ + 11.6449935, + 53.211451001 + ], + [ + 11.6429105, + 53.212788101 + ], + [ + 11.6393978, + 53.215043601 + ], + [ + 11.6382508, + 53.215749101 + ], + [ + 11.636492, + 53.216806601 + ], + [ + 11.6352392, + 53.217535901 + ], + [ + 11.6337943, + 53.218299401 + ], + [ + 11.6321476, + 53.219057701 + ], + [ + 11.6316037, + 53.219295301 + ], + [ + 11.6301358, + 53.219906701 + ], + [ + 11.6293952, + 53.220187001 + ], + [ + 11.6284841, + 53.220524201 + ], + [ + 11.6264335, + 53.221189801 + ], + [ + 11.6251323, + 53.221559201 + ], + [ + 11.6242257, + 53.221798301 + ], + [ + 11.6226906, + 53.222164501 + ], + [ + 11.6203836, + 53.222614601 + ], + [ + 11.6188681, + 53.222863601 + ], + [ + 11.617929, + 53.222998901 + ], + [ + 11.6163407, + 53.223193001 + ], + [ + 11.6151707, + 53.223305801 + ], + [ + 11.6137206, + 53.223423201 + ], + [ + 11.6114136, + 53.223570701 + ], + [ + 11.6087039, + 53.223754601 + ], + [ + 11.6071868, + 53.223882001 + ], + [ + 11.6048764, + 53.224119201 + ], + [ + 11.6025096, + 53.224392401 + ], + [ + 11.6021211, + 53.224445001 + ], + [ + 11.6008299, + 53.224629601 + ], + [ + 11.5992525, + 53.224872601 + ], + [ + 11.5988832, + 53.224935101 + ], + [ + 11.5967345, + 53.225354201 + ], + [ + 11.5948794, + 53.225749201 + ], + [ + 11.5925499, + 53.226295301 + ], + [ + 11.5907543, + 53.226780701 + ], + [ + 11.5882726, + 53.227517501 + ], + [ + 11.5868416, + 53.227982901 + ], + [ + 11.5839602, + 53.229024101 + ], + [ + 11.5820967, + 53.229773001 + ], + [ + 11.5802792, + 53.230588601 + ], + [ + 11.578524, + 53.231459301 + ], + [ + 11.5762773, + 53.232625201 + ], + [ + 11.5741544, + 53.233834101 + ], + [ + 11.572809, + 53.234627201 + ], + [ + 11.5690649, + 53.236899601 + ], + [ + 11.5671873, + 53.238050601 + ], + [ + 11.5651807, + 53.239209301 + ], + [ + 11.5647087, + 53.239500201 + ], + [ + 11.5600419, + 53.242343001 + ], + [ + 11.5560435, + 53.244766601 + ], + [ + 11.5534873, + 53.246272701 + ], + [ + 11.5500104, + 53.248390501 + ], + [ + 11.5465679, + 53.250655201 + ], + [ + 11.5448311, + 53.251932401 + ], + [ + 11.5432086, + 53.253189501 + ], + [ + 11.5420014, + 53.254185401 + ], + [ + 11.5408346, + 53.255194801 + ], + [ + 11.5399916, + 53.255974601 + ], + [ + 11.539323, + 53.256634001 + ], + [ + 11.5380567, + 53.257859501 + ], + [ + 11.5374202, + 53.258521001 + ], + [ + 11.5367796, + 53.259226601 + ], + [ + 11.5355577, + 53.260584901 + ], + [ + 11.5337953, + 53.262844101 + ], + [ + 11.5322816, + 53.265061901 + ], + [ + 11.5307625, + 53.267659001 + ], + [ + 11.5296692, + 53.269940401 + ], + [ + 11.5287312, + 53.272230101 + ], + [ + 11.5277528, + 53.275455001 + ], + [ + 11.5271926, + 53.278097501 + ], + [ + 11.5269457, + 53.280373401 + ], + [ + 11.5268728, + 53.281522701 + ], + [ + 11.5268517, + 53.282672801 + ], + [ + 11.527276727, + 53.295199699 + ] + ] + } + }, + { + "identifier": "2026-015789--vi-fbm.2026-04-14_22-00-00-000.devi-zus.2026-04-14_22-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.057686761480014,11.596197691167935,52.055157888038664,11.606364823521673", + "point": "52.057686761480014,11.596197691167935", + "startLcPosition": "23", + "impact": { + "lower": "Magdeburg-Reform", + "upper": "S\u00fclzegrund", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Halle", + "title": "A14 | S\u00fclzegrund - Magdeburg-Reform", + "coordinate": { + "lat": 52.057686761480014, + "long": 11.596197691167935 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 22:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A14: Magdeburg -> Halle, zwischen 0.7 km hinter S\u00fclzegrund und 0.5 km vor AS Magdeburg-Reform", + "", + "L\u00e4nge: 0.75 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A14 AS Magdeburg-Reform FR Dresden (km 188,5), GST-Umbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.596197691, + 52.057686761 + ], + [ + 11.5981927, + 52.057191001 + ], + [ + 11.5997459, + 52.056804601 + ], + [ + 11.6021816, + 52.056197301 + ], + [ + 11.6042011, + 52.055695501 + ], + [ + 11.606364824, + 52.055157888 + ] + ] + } + }, + { + "identifier": "2026-017224--vi-bs.2026-04-15_19-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.973001426985185,11.671419442427258,51.956201625645825,11.681470625441973", + "point": "51.973001426985185,11.671419442427258", + "startLcPosition": "25", + "impact": { + "lower": "Dreih\u00f6henberg", + "upper": "Sch\u00f6nebeck", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Halle", + "title": "A14 | Sch\u00f6nebeck - Dreih\u00f6henberg", + "coordinate": { + "lat": 51.973001426985185, + "long": 11.671419442427258 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 19:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A14: Magdeburg -> Halle, zwischen 3.4 km hinter AS Sch\u00f6nebeck und 1.7 km vor Dreih\u00f6henberg", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A14 Br\u00fcckenbauwerk" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.671419442, + 51.973001427 + ], + [ + 11.6728962, + 51.969133601 + ], + [ + 11.6729922, + 51.968926201 + ], + [ + 11.6731018, + 51.968676001 + ], + [ + 11.6739314, + 51.966921801 + ], + [ + 11.6740507, + 51.966700401 + ], + [ + 11.6741681, + 51.966466501 + ], + [ + 11.6742538, + 51.966305901 + ], + [ + 11.6747402, + 51.965437401 + ], + [ + 11.6754263, + 51.964267201 + ], + [ + 11.6757395, + 51.963760201 + ], + [ + 11.6763408, + 51.962829601 + ], + [ + 11.6794819, + 51.958660901 + ], + [ + 11.6799571, + 51.958061701 + ], + [ + 11.681470625, + 51.956201626 + ] + ] + } + }, + { + "identifier": "2026-017331--vi-bs.2026-04-15_19-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.007831829664745,11.657175946993458,52.01197639698556,11.654351973362852", + "point": "52.007831829664745,11.657175946993458", + "startLcPosition": "25", + "impact": { + "lower": "Magdeburg-Reform", + "upper": "Sch\u00f6nebeck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle -> Magdeburg", + "title": "A14 | Sch\u00f6nebeck - Magdeburg-Reform", + "coordinate": { + "lat": 52.007831829664745, + "long": 11.657175946993458 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 19:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A14: Halle -> Magdeburg, zwischen 0.6 km hinter AS Sch\u00f6nebeck und 5.5 km vor AS Magdeburg-Reform", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A14 Sanierung Brandschaden " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.657175947, + 52.00783183 + ], + [ + 11.6560663, + 52.009532801 + ], + [ + 11.6556131, + 52.010217101 + ], + [ + 11.654351973, + 52.011976397 + ] + ] + } + }, + { + "identifier": "2026-017372--vi-bs.2026-04-09_06-00-00-000.devi-zus.2026-04-09_06-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.89037247513774,11.686920376398987,51.878767698030146,11.687170632826508", + "point": "51.89037247513774,11.686920376398987", + "startLcPosition": "27", + "impact": { + "lower": "Sta\u00dffurt", + "upper": "Calbe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Halle", + "title": "A14 | Calbe - Sta\u00dffurt", + "coordinate": { + "lat": 51.89037247513774, + "long": 11.686920376398987 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 10:00 bis 17:00 Uhr", + "", + "A14: Magdeburg -> Halle, zwischen 0.7 km hinter AS Calbe und 3.4 km vor AS Sta\u00dffurt", + "", + "L\u00e4nge: 1.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A14 von Dreih\u00f6henberg (Rastplatz) nach Calbe (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.686920376, + 51.890372475 + ], + [ + 11.6866207, + 51.889368701 + ], + [ + 11.6861889, + 51.887297201 + ], + [ + 11.6860209, + 51.885366601 + ], + [ + 11.6860326, + 51.884076501 + ], + [ + 11.686106, + 51.883112101 + ], + [ + 11.6862948, + 51.881836601 + ], + [ + 11.6865776, + 51.880556001 + ], + [ + 11.687170633, + 51.878767698 + ] + ] + } + }, + { + "identifier": "2026-017825--vi-bs.2026-04-10_09-00-00-000_013.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.87256506534994,11.690491597586021,51.872145871258304,11.690753125149289", + "point": "51.87256506534994,11.690491597586021", + "startLcPosition": "27", + "impact": { + "lower": "Sta\u00dffurt", + "upper": "Calbe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Halle", + "title": "A14 | Calbe - Sta\u00dffurt", + "coordinate": { + "lat": 51.87256506534994, + "long": 11.690491597586021 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "", + "A14: Magdeburg -> Halle, zwischen 2.7 km hinter AS Calbe und 2.6 km vor AS Sta\u00dffurt", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A14 von Calbe (AS) nach Sta\u00dffurt (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.690491598, + 51.872565065 + ], + [ + 11.690753125, + 51.872145871 + ] + ] + } + }, + { + "identifier": "2026-017690--vi-bs.2026-04-10_07-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.88254953163815,11.686373506108227,51.88299718924142,11.686310761010008", + "point": "51.88254953163815,11.686373506108227", + "startLcPosition": "28", + "impact": { + "lower": "Calbe", + "upper": "Sta\u00dffurt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle -> Magdeburg", + "title": "A14 | Sta\u00dffurt - Calbe", + "coordinate": { + "lat": 51.88254953163815, + "long": 11.686373506108227 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 09:00 Uhr", + "", + "A14: Halle -> Magdeburg, zwischen 3.8 km hinter AS Sta\u00dffurt und 1.5 km vor AS Calbe", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A14 von Sta\u00dffurt (AS) nach Calbe (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.686373506, + 51.882549532 + ], + [ + 11.686310761, + 51.882997189 + ] + ] + } + }, + { + "identifier": "2026-017382--vi-bs.2026-04-10_06-00-00-000.devi-bs.2026-04-10_06-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.804508475680755,11.684254738881663,51.8040555220771,11.684145469104658", + "point": "51.804508475680755,11.684254738881663", + "startLcPosition": "30", + "impact": { + "lower": "Pl\u00f6tzkau", + "upper": "Bernburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Halle", + "title": "A14 | Bernburg - Pl\u00f6tzkau", + "coordinate": { + "lat": 51.804508475680755, + "long": 11.684254738881663 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 13:00 Uhr", + "", + "A14: Magdeburg -> Halle, zwischen AS Bernburg und 8.0 km vor AS Pl\u00f6tzkau", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A14 von Bernburg (AS) nach Pl\u00f6tzkau (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.684254739, + 51.804508476 + ], + [ + 11.6841971, + 51.804265101 + ], + [ + 11.684145469, + 51.804055522 + ] + ] + } + }, + { + "identifier": "2026-017382--vi-bs.2026-04-10_06-00-00-000.devi-bs.2026-04-10_06-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.804508475680755,11.684254738881663,51.80272411970942,11.68374713943031", + "point": "51.804508475680755,11.684254738881663", + "startLcPosition": "30", + "impact": { + "lower": "Pl\u00f6tzkau", + "upper": "Bernburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Magdeburg -> Halle", + "title": "A14 | Bernburg - Pl\u00f6tzkau", + "coordinate": { + "lat": 51.804508475680755, + "long": 11.684254738881663 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 06:00 bis 10:00 Uhr", + "", + "A14: Magdeburg -> Halle, zwischen AS Bernburg und 7.8 km vor AS Pl\u00f6tzkau", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A14 von Bernburg (AS) nach Pl\u00f6tzkau (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.684254739, + 51.804508476 + ], + [ + 11.6841971, + 51.804265101 + ], + [ + 11.684116, + 51.803935901 + ], + [ + 11.6839012, + 51.803188701 + ], + [ + 11.683747139, + 51.80272412 + ] + ] + } + }, + { + "identifier": "2023-005107--vi-bs.2024-09-11_09-00-00-000.devi-zus.2024-03-04_07-00-00-000_098.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.578771035861344,11.889452935372985,51.5741228848638,11.900083278512824", + "point": "51.578771035861344,11.889452935372985", + "startLcPosition": "36", + "impact": { + "lower": "Halle-Trotha", + "upper": "Halle-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Magdeburg -> Halle", + "title": "A14 | Halle-Nord - Halle-Trotha", + "startTimestamp": "2024-09-11T09:00:00+02:00", + "coordinate": { + "lat": 51.578771035861344, + "long": 11.889452935372985 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.09.24 um 09:00 Uhr", + "Ende: 31.12.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.12.28)", + "", + "A14: Magdeburg -> Halle, zwischen 0.3 km hinter AS Halle-Nord und 0.3 km vor AS Halle-Trotha", + "", + "L\u00e4nge: 0.9 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A14 Anbind. A143 BW17A DEGES" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.889452935, + 51.578771036 + ], + [ + 11.889843, + 51.578557601 + ], + [ + 11.8904673, + 51.578226501 + ], + [ + 11.8911734, + 51.577857201 + ], + [ + 11.8922083, + 51.577342601 + ], + [ + 11.8934961, + 51.576734101 + ], + [ + 11.8950379, + 51.576050101 + ], + [ + 11.8958431, + 51.575713101 + ], + [ + 11.8966623, + 51.575381301 + ], + [ + 11.8976228, + 51.575008501 + ], + [ + 11.8982919, + 51.574757001 + ], + [ + 11.8994387, + 51.574342101 + ], + [ + 11.900083279, + 51.574122885 + ] + ] + } + }, + { + "identifier": "2023-005107--vi-bs.2024-09-11_09-00-00-000.devi-zus.2024-03-04_07-00-00-000_098.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.574222358443784,11.90017112166256,51.57885893819653,11.889576204378825", + "point": "51.574222358443784,11.90017112166256", + "startLcPosition": "37", + "impact": { + "lower": "Halle-Nord", + "upper": "Halle-Trotha", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> Magdeburg", + "title": "A14 | Halle-Trotha - Halle-Nord", + "startTimestamp": "2024-09-11T09:00:00+02:00", + "coordinate": { + "lat": 51.574222358443784, + "long": 11.90017112166256 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.09.24 um 09:00 Uhr", + "Ende: 31.12.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.12.28)", + "", + "A14: Halle -> Magdeburg, zwischen 0.3 km hinter AS Halle-Trotha und 0.3 km vor AS Halle-Nord", + "", + "L\u00e4nge: 0.9 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A14 Anbind. A143 BW17A DEGES" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.900171122, + 51.574222358 + ], + [ + 11.8994654, + 51.574466201 + ], + [ + 11.8983562, + 51.574865801 + ], + [ + 11.8976864, + 51.575118001 + ], + [ + 11.8967397, + 51.575484701 + ], + [ + 11.8963293, + 51.575650201 + ], + [ + 11.895896, + 51.575828101 + ], + [ + 11.8951137, + 51.576158701 + ], + [ + 11.893599, + 51.576829101 + ], + [ + 11.8923013, + 51.577442601 + ], + [ + 11.8914161, + 51.577885101 + ], + [ + 11.8905566, + 51.578327401 + ], + [ + 11.889576204, + 51.578858938 + ] + ] + } + }, + { + "identifier": "2025-062726--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-04-17_22-00-00-000.de10", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.44180508191633,12.140243230871627,51.43760831748336,12.149544720425242", + "point": "51.44180508191633,12.140243230871627", + "startLcPosition": "43", + "impact": { + "lower": "Schkeuditzer Kreuz", + "upper": "Gr\u00f6bers", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> Leipzig", + "title": "A14 | Gr\u00f6bers - Schkeuditzer Kreuz", + "startTimestamp": "2026-04-08T08:00:00+02:00", + "coordinate": { + "lat": 51.44180508191633, + "long": 12.140243230871627 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 08:00 Uhr", + "Ende: 24.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.04.26)", + "", + "A14: Halle -> Leipzig, zwischen 1.4 km hinter AS Gr\u00f6bers und 3.6 km vor AK Schkeuditzer Kreuz", + "", + "L\u00e4nge: 0.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A14 beide RF Abriss BW AS Groebers" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.140243231, + 51.441805082 + ], + [ + 12.1407692, + 51.441567401 + ], + [ + 12.1414575, + 51.441256001 + ], + [ + 12.143982, + 51.440091701 + ], + [ + 12.1449444, + 51.439674601 + ], + [ + 12.1459884, + 51.439200501 + ], + [ + 12.1465283, + 51.438950301 + ], + [ + 12.1489856, + 51.437848101 + ], + [ + 12.14954472, + 51.437608317 + ] + ] + } + }, + { + "identifier": "2025-045450--vi-bs.2025-10-31_14-00-00-000.devi-zus.2025-09-18_14-00-00-000_001.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.447065466483984,12.12858378094656,51.44141004926953,12.141117003023558", + "point": "51.447065466483984,12.12858378094656", + "startLcPosition": "43", + "impact": { + "lower": "Schkeuditzer Kreuz", + "upper": "Gr\u00f6bers", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> Leipzig", + "title": "A14 | Gr\u00f6bers - Schkeuditzer Kreuz", + "startTimestamp": "2025-10-31T14:00:00+01:00", + "coordinate": { + "lat": 51.447065466483984, + "long": 12.12858378094656 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.10.25 um 14:00 Uhr", + "Ende: 31.12.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A14: Halle -> Leipzig, zwischen 0.4 km hinter AS Gr\u00f6bers und 4.3 km vor AK Schkeuditzer Kreuz", + "", + "L\u00e4nge: 1.07 km | Maximale Durchfahrtsbreite: 8.45 m", + "", + "BAB 14 AS Gr\u00f6bers Sperrung der Br\u00fccke L 169" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.128583781, + 51.447065466 + ], + [ + 12.1291161, + 51.446825101 + ], + [ + 12.1326431, + 51.445223601 + ], + [ + 12.1370259, + 51.443238501 + ], + [ + 12.1389477, + 51.442390501 + ], + [ + 12.1407692, + 51.441567401 + ], + [ + 12.141117003, + 51.441410049 + ] + ] + } + }, + { + "identifier": "2025-062726--vi-bs.2026-04-08_08-00-00-000.devi-zus.2026-04-17_22-00-00-000.de12", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.438475120696076,12.147883622844748,51.442410515706456,12.139187107014914", + "point": "51.438475120696076,12.147883622844748", + "startLcPosition": "44", + "impact": { + "lower": "Gr\u00f6bers", + "upper": "Schkeuditzer Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Leipzig -> Halle", + "title": "A14 | Schkeuditzer Kreuz - Gr\u00f6bers", + "startTimestamp": "2026-04-08T08:00:00+02:00", + "coordinate": { + "lat": 51.438475120696076, + "long": 12.147883622844748 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 08:00 Uhr", + "Ende: 24.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.04.26)", + "", + "A14: Leipzig -> Halle, zwischen 3.7 km hinter AK Schkeuditzer Kreuz und 1.3 km vor AS Gr\u00f6bers", + "", + "L\u00e4nge: 0.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A14 beide RF Abriss BW AS Groebers" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.147883623, + 51.438475121 + ], + [ + 12.147335, + 51.438721701 + ], + [ + 12.1460986, + 51.439279801 + ], + [ + 12.1450545, + 51.439751901 + ], + [ + 12.143616, + 51.440400901 + ], + [ + 12.1416053, + 51.441314601 + ], + [ + 12.139187107, + 51.442410516 + ] + ] + } + }, + { + "identifier": "2025-045450--vi-bs.2025-10-31_14-00-00-000.devi-zus.2025-09-18_14-00-00-000_001.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43564657943857,12.15519369673725,51.43952166479445,12.145563697241233", + "point": "51.43564657943857,12.15519369673725", + "startLcPosition": "44", + "impact": { + "lower": "Gr\u00f6bers", + "upper": "Schkeuditzer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Leipzig -> Halle", + "title": "A14 | Schkeuditzer Kreuz - Gr\u00f6bers", + "startTimestamp": "2025-10-31T14:00:00+01:00", + "coordinate": { + "lat": 51.43564657943857, + "long": 12.15519369673725 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.10.25 um 14:00 Uhr", + "Ende: 31.12.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A14: Leipzig -> Halle, zwischen 3.1 km hinter AK Schkeuditzer Kreuz und 1.9 km vor AS Gr\u00f6bers", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 8.45 m", + "", + "BAB 14 AS Gr\u00f6bers Sperrung der Br\u00fccke L 169" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.155193697, + 51.435646579 + ], + [ + 12.1549507, + 51.435718301 + ], + [ + 12.1535875, + 51.436163201 + ], + [ + 12.1522466, + 51.436638501 + ], + [ + 12.1510042, + 51.437125201 + ], + [ + 12.1498647, + 51.437596601 + ], + [ + 12.1490773, + 51.437938601 + ], + [ + 12.147335, + 51.438721701 + ], + [ + 12.1460986, + 51.439279801 + ], + [ + 12.145563697, + 51.439521665 + ] + ] + } + }, + { + "identifier": "2026-016231--vi-bs.2026-04-13_10-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.36498045211461,12.476947397066759,51.364364417171615,12.477992303649726", + "point": "51.36498045211461,12.476947397066759", + "startLcPosition": "50", + "impact": { + "lower": "Leipzig-Ost", + "upper": "Leipzig-Nordost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle -> Leipzig", + "title": "A14 | Leipzig-Nordost - Leipzig-Ost", + "coordinate": { + "lat": 51.36498045211461, + "long": 12.476947397066759 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 15:00 Uhr", + "", + "A14: Halle -> Leipzig, zwischen 0.8 km hinter AS Leipzig-Nordost und 1.5 km vor AS Leipzig-Ost", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A14 Beseitigung Unfallfolgen Nr 311" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.476947397, + 51.364980452 + ], + [ + 12.477992304, + 51.364364417 + ] + ] + } + }, + { + "identifier": "2026-016532--vi-bs.2026-04-13_09-00-00-000.devi-bs.2026-04-13_09-00-00-000_009.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.354507527817056,12.496117285885797,51.35683515350215,12.491863266868322", + "point": "51.354507527817056,12.496117285885797", + "startLcPosition": "52", + "impact": { + "lower": "Leipzig-Nordost", + "upper": "Kleinp\u00f6sna", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nossen -> Halle", + "title": "A14 | Kleinp\u00f6sna - Leipzig-Nordost", + "coordinate": { + "lat": 51.354507527817056, + "long": 12.496117285885797 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 15:00 Uhr", + "", + "A14: Nossen -> Halle, zwischen 4.5 km hinter AS Kleinp\u00f6sna und 2.2 km vor AS Leipzig-Nordost", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A14 Km 74,50 - 72,00 RF Magdeburg - Baugrunduntersuchung - 062-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.496117286, + 51.354507528 + ], + [ + 12.4957322, + 51.354718901 + ], + [ + 12.4947839, + 51.355237401 + ], + [ + 12.4943299, + 51.355493801 + ], + [ + 12.4940729, + 51.355632301 + ], + [ + 12.4933484, + 51.356022801 + ], + [ + 12.491863267, + 51.356835154 + ] + ] + } + }, + { + "identifier": "2026-016532--vi-bs.2026-04-13_09-00-00-000.devi-bs.2026-04-13_09-00-00-000_009.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.34476764665494,12.506938108172026,51.352341506200844,12.500053829777988", + "point": "51.34476764665494,12.506938108172026", + "startLcPosition": "52", + "impact": { + "lower": "Leipzig-Ost", + "upper": "Kleinp\u00f6sna", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nossen -> Halle", + "title": "A14 | Kleinp\u00f6sna - Leipzig-Ost", + "coordinate": { + "lat": 51.34476764665494, + "long": 12.506938108172026 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "", + "A14: Nossen -> Halle, zwischen 3.1 km hinter AS Kleinp\u00f6sna und 0.5 km vor AS Leipzig-Ost", + "", + "L\u00e4nge: 0.98 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A14 Km 74,50 - 72,00 RF Magdeburg - Baugrunduntersuchung - 062-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.506938108, + 51.344767647 + ], + [ + 12.506761, + 51.345206901 + ], + [ + 12.5064652, + 51.345914601 + ], + [ + 12.5062912, + 51.346276801 + ], + [ + 12.5061159, + 51.346621501 + ], + [ + 12.5058581, + 51.347075001 + ], + [ + 12.5055723, + 51.347524001 + ], + [ + 12.5053304, + 51.347865901 + ], + [ + 12.5050793, + 51.348205501 + ], + [ + 12.5047736, + 51.348574701 + ], + [ + 12.5044374, + 51.348956901 + ], + [ + 12.504066, + 51.349348701 + ], + [ + 12.5038781, + 51.349543801 + ], + [ + 12.5036305, + 51.349773601 + ], + [ + 12.5035229, + 51.349869001 + ], + [ + 12.5030472, + 51.350290501 + ], + [ + 12.5027049, + 51.350571001 + ], + [ + 12.5023975, + 51.350808001 + ], + [ + 12.5020751, + 51.351050801 + ], + [ + 12.5015489, + 51.351416901 + ], + [ + 12.5012116, + 51.351641301 + ], + [ + 12.5008451, + 51.351873501 + ], + [ + 12.5005668, + 51.352042401 + ], + [ + 12.50005383, + 51.352341506 + ] + ] + } + }, + { + "identifier": "2026-016532--vi-bs.2026-04-13_09-00-00-000.devi-bs.2026-04-13_09-00-00-000_009.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.34476764665494,12.506938108172026,51.352341506200844,12.500053829777988", + "point": "51.34476764665494,12.506938108172026", + "startLcPosition": "52", + "impact": { + "lower": "Leipzig-Ost", + "upper": "Kleinp\u00f6sna", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nossen -> Halle", + "title": "A14 | Kleinp\u00f6sna - Leipzig-Ost", + "coordinate": { + "lat": 51.34476764665494, + "long": 12.506938108172026 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "", + "A14: Nossen -> Halle, zwischen 3.1 km hinter AS Kleinp\u00f6sna und 0.5 km vor AS Leipzig-Ost", + "", + "L\u00e4nge: 0.98 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A14 Km 74,50 - 72,00 RF Magdeburg - Baugrunduntersuchung - 062-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.506938108, + 51.344767647 + ], + [ + 12.506761, + 51.345206901 + ], + [ + 12.5064652, + 51.345914601 + ], + [ + 12.5062912, + 51.346276801 + ], + [ + 12.5061159, + 51.346621501 + ], + [ + 12.5058581, + 51.347075001 + ], + [ + 12.5055723, + 51.347524001 + ], + [ + 12.5053304, + 51.347865901 + ], + [ + 12.5050793, + 51.348205501 + ], + [ + 12.5047736, + 51.348574701 + ], + [ + 12.5044374, + 51.348956901 + ], + [ + 12.504066, + 51.349348701 + ], + [ + 12.5038781, + 51.349543801 + ], + [ + 12.5036305, + 51.349773601 + ], + [ + 12.5035229, + 51.349869001 + ], + [ + 12.5030472, + 51.350290501 + ], + [ + 12.5027049, + 51.350571001 + ], + [ + 12.5023975, + 51.350808001 + ], + [ + 12.5020751, + 51.351050801 + ], + [ + 12.5015489, + 51.351416901 + ], + [ + 12.5012116, + 51.351641301 + ], + [ + 12.5008451, + 51.351873501 + ], + [ + 12.5005668, + 51.352042401 + ], + [ + 12.50005383, + 51.352341506 + ] + ] + } + }, + { + "identifier": "2023-005186--vi-bs.2025-09-02_18-00-00-000.devi-zus.2022-07-13_00-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.25754465458947,12.738729028650932,51.25316359760375,12.793995426547063", + "point": "51.25754465458947,12.738729028650932", + "startLcPosition": "58", + "impact": { + "lower": "Mutzschen", + "upper": "Grimma", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Leipzig -> Nossen", + "title": "A14 | Grimma - Mutzschen", + "startTimestamp": "2025-09-02T18:00:00+02:00", + "coordinate": { + "lat": 51.25754465458947, + "long": 12.738729028650932 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.09.25 um 18:00 Uhr", + "Ende: 06.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.06.29)", + "", + "A14: Leipzig -> Nossen, zwischen 0.4 km hinter AS Grimma und 4.7 km vor AS Mutzschen", + "", + "L\u00e4nge: 4.05 km | Maximale Durchfahrtsbreite: 6.05 m", + "", + "A14 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.738729029, + 51.257544655 + ], + [ + 12.7446603, + 51.257867201 + ], + [ + 12.7450704, + 51.257889501 + ], + [ + 12.7517787, + 51.258256001 + ], + [ + 12.7528156, + 51.258312601 + ], + [ + 12.753764, + 51.258364001 + ], + [ + 12.758927, + 51.258645101 + ], + [ + 12.76513, + 51.258979901 + ], + [ + 12.7660216, + 51.259024001 + ], + [ + 12.7672606, + 51.259085201 + ], + [ + 12.7692916, + 51.259157901 + ], + [ + 12.7701856, + 51.259174801 + ], + [ + 12.7710812, + 51.259184101 + ], + [ + 12.7718871, + 51.259181501 + ], + [ + 12.7726985, + 51.259167601 + ], + [ + 12.7727479, + 51.259166101 + ], + [ + 12.7731827, + 51.259152401 + ], + [ + 12.7739754, + 51.259121201 + ], + [ + 12.7746193, + 51.259087701 + ], + [ + 12.7752569, + 51.259045701 + ], + [ + 12.7759044, + 51.258986301 + ], + [ + 12.7765082, + 51.258926001 + ], + [ + 12.7777253, + 51.258774201 + ], + [ + 12.7788214, + 51.258599301 + ], + [ + 12.7795483, + 51.258470301 + ], + [ + 12.7798585, + 51.258411601 + ], + [ + 12.7800192, + 51.258379601 + ], + [ + 12.7809877, + 51.258183101 + ], + [ + 12.7815532, + 51.258043601 + ], + [ + 12.7822169, + 51.257862501 + ], + [ + 12.7829544, + 51.257652301 + ], + [ + 12.7836751, + 51.257432301 + ], + [ + 12.7844821, + 51.257172601 + ], + [ + 12.7846341, + 51.257119101 + ], + [ + 12.7849261, + 51.257016101 + ], + [ + 12.7856112, + 51.256752901 + ], + [ + 12.7860516, + 51.256575301 + ], + [ + 12.7863822, + 51.256439401 + ], + [ + 12.7865081, + 51.256387601 + ], + [ + 12.7869466, + 51.256196401 + ], + [ + 12.7875763, + 51.255915101 + ], + [ + 12.7881854, + 51.255631101 + ], + [ + 12.7893983, + 51.255053801 + ], + [ + 12.7907035, + 51.254443401 + ], + [ + 12.7914344, + 51.254120501 + ], + [ + 12.7920341, + 51.253870801 + ], + [ + 12.7921172, + 51.253838101 + ], + [ + 12.7925722, + 51.253659101 + ], + [ + 12.7932148, + 51.253424201 + ], + [ + 12.7938735, + 51.253202201 + ], + [ + 12.793995427, + 51.253163598 + ] + ] + } + }, + { + "identifier": "2023-005186--vi-bs.2025-09-02_18-00-00-000.devi-zus.2022-07-13_00-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.25325840472144,12.794071310494179,51.25765566153711,12.738713374374267", + "point": "51.25325840472144,12.794071310494179", + "startLcPosition": "59", + "impact": { + "lower": "Grimma", + "upper": "Mutzschen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Nossen -> Leipzig", + "title": "A14 | Mutzschen - Grimma", + "startTimestamp": "2025-09-02T18:00:00+02:00", + "coordinate": { + "lat": 51.25325840472144, + "long": 12.794071310494179 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.09.25 um 18:00 Uhr", + "Ende: 06.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.06.29)", + "", + "A14: Nossen -> Leipzig, zwischen 4.7 km hinter AS Mutzschen und 0.4 km vor AS Grimma", + "", + "L\u00e4nge: 4.05 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A14 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.79407131, + 51.253258405 + ], + [ + 12.793949, + 51.253296801 + ], + [ + 12.7932965, + 51.253517201 + ], + [ + 12.7926571, + 51.253752101 + ], + [ + 12.7920997, + 51.253970501 + ], + [ + 12.7915321, + 51.254208501 + ], + [ + 12.7906587, + 51.254598101 + ], + [ + 12.7894885, + 51.255143101 + ], + [ + 12.7883046, + 51.255707301 + ], + [ + 12.7876781, + 51.256001401 + ], + [ + 12.7870362, + 51.256290001 + ], + [ + 12.7866152, + 51.256474701 + ], + [ + 12.7861667, + 51.256660701 + ], + [ + 12.7857009, + 51.256849201 + ], + [ + 12.7849934, + 51.257107701 + ], + [ + 12.7847312, + 51.257197401 + ], + [ + 12.7845316, + 51.257266901 + ], + [ + 12.7838329, + 51.257494701 + ], + [ + 12.7830489, + 51.257730601 + ], + [ + 12.7822847, + 51.257952101 + ], + [ + 12.7816249, + 51.258129201 + ], + [ + 12.7810613, + 51.258271901 + ], + [ + 12.7800767, + 51.258475701 + ], + [ + 12.7800371, + 51.258482901 + ], + [ + 12.7795791, + 51.258577501 + ], + [ + 12.7788696, + 51.258707401 + ], + [ + 12.7777126, + 51.258886001 + ], + [ + 12.7765925, + 51.259026601 + ], + [ + 12.7759379, + 51.259093601 + ], + [ + 12.775288, + 51.259149301 + ], + [ + 12.774626, + 51.259194101 + ], + [ + 12.7739982, + 51.259229301 + ], + [ + 12.7732164, + 51.259260901 + ], + [ + 12.7727095, + 51.259275401 + ], + [ + 12.7718871, + 51.259289601 + ], + [ + 12.7710477, + 51.259292101 + ], + [ + 12.7701669, + 51.259283701 + ], + [ + 12.7692975, + 51.259265701 + ], + [ + 12.7672191, + 51.259190801 + ], + [ + 12.7651095, + 51.259085701 + ], + [ + 12.7537487, + 51.258470601 + ], + [ + 12.7527999, + 51.258417501 + ], + [ + 12.7450631, + 51.257995201 + ], + [ + 12.7448015, + 51.257981501 + ], + [ + 12.7417618, + 51.257821701 + ], + [ + 12.7391327, + 51.257679401 + ], + [ + 12.738713374, + 51.257655662 + ] + ] + } + }, + { + "identifier": "2026-017785--vi-bs.2026-04-09_23-00-00-000.devi-zus.2026-04-09_23-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.1910996665405,12.998201363017943,51.184871448257724,13.020296363822801", + "point": "51.1910996665405,12.998201363017943", + "startLcPosition": "60", + "impact": { + "lower": "D\u00f6beln-Nord", + "upper": "Leisnig", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leipzig -> Nossen", + "title": "A14 | Leisnig - D\u00f6beln-Nord", + "coordinate": { + "lat": 51.1910996665405, + "long": 12.998201363017943 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 23:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A14: Leipzig -> Nossen, zwischen 2.2 km hinter AS Leisnig und 8.2 km vor AS D\u00f6beln-Nord", + "", + "L\u00e4nge: 1.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A14 von Leisnig (AS) nach D\u00f6beln-Nord (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.998201363, + 51.191099667 + ], + [ + 13.0022702, + 51.190183701 + ], + [ + 13.0039438, + 51.189801301 + ], + [ + 13.0059977, + 51.189347901 + ], + [ + 13.0068131, + 51.189158201 + ], + [ + 13.0078194, + 51.188924601 + ], + [ + 13.009261, + 51.188579501 + ], + [ + 13.0098745, + 51.188434001 + ], + [ + 13.0111538, + 51.188103001 + ], + [ + 13.0117384, + 51.187944701 + ], + [ + 13.0128078, + 51.187640101 + ], + [ + 13.014378, + 51.187164501 + ], + [ + 13.0156611, + 51.186733001 + ], + [ + 13.0161047, + 51.186575901 + ], + [ + 13.0170533, + 51.186235001 + ], + [ + 13.0179692, + 51.185881301 + ], + [ + 13.0198326, + 51.185090801 + ], + [ + 13.020296364, + 51.184871448 + ] + ] + } + }, + { + "identifier": "2026-017785--vi-bs.2026-04-09_23-00-00-000.devi-zus.2026-04-09_23-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.1910996665405,12.998201363017943,51.184871448257724,13.020296363822801", + "point": "51.1910996665405,12.998201363017943", + "startLcPosition": "60", + "impact": { + "lower": "D\u00f6beln-Nord", + "upper": "Leisnig", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leipzig -> Nossen", + "title": "A14 | Leisnig - D\u00f6beln-Nord", + "coordinate": { + "lat": 51.1910996665405, + "long": 12.998201363017943 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 23:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A14: Leipzig -> Nossen, zwischen 2.2 km hinter AS Leisnig und 8.2 km vor AS D\u00f6beln-Nord", + "", + "L\u00e4nge: 1.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A14 von Leisnig (AS) nach D\u00f6beln-Nord (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.998201363, + 51.191099667 + ], + [ + 13.0022702, + 51.190183701 + ], + [ + 13.0039438, + 51.189801301 + ], + [ + 13.0059977, + 51.189347901 + ], + [ + 13.0068131, + 51.189158201 + ], + [ + 13.0078194, + 51.188924601 + ], + [ + 13.009261, + 51.188579501 + ], + [ + 13.0098745, + 51.188434001 + ], + [ + 13.0111538, + 51.188103001 + ], + [ + 13.0117384, + 51.187944701 + ], + [ + 13.0128078, + 51.187640101 + ], + [ + 13.014378, + 51.187164501 + ], + [ + 13.0156611, + 51.186733001 + ], + [ + 13.0161047, + 51.186575901 + ], + [ + 13.0170533, + 51.186235001 + ], + [ + 13.0179692, + 51.185881301 + ], + [ + 13.0198326, + 51.185090801 + ], + [ + 13.020296364, + 51.184871448 + ] + ] + } + }, + { + "identifier": "2026-016549--vi-bs.2026-04-13_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_008.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.15203858011888,13.136036841760895,51.18730565942951,13.014299139276703", + "point": "51.15203858011888,13.136036841760895", + "startLcPosition": "63", + "impact": { + "lower": "M\u00fchlenberg", + "upper": "D\u00f6beln-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nossen -> Leipzig", + "title": "A14 | D\u00f6beln-Ost - M\u00fchlenberg", + "coordinate": { + "lat": 51.15203858011888, + "long": 13.136036841760895 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 13:00 Uhr", + "", + "A14: Nossen -> Leipzig, zwischen 5.6 km hinter AS D\u00f6beln-Ost und 0.1 km vor M\u00fchlenberg", + "", + "L\u00e4nge: 9.72 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Von A4 Dresden - Chemnitz, 0.7 km vor AD Nossen, aus Richtung Wilsdruff in A4 AD Nossen auf die A14 in Richtung Leipzig nach A14 Nossen - Leipzig, 2.2 km vor Hansens Holz, aus Richtung Nossen-Nord Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.136036842, + 51.15203858 + ], + [ + 13.1357817, + 51.152155601 + ], + [ + 13.1350595, + 51.152461101 + ], + [ + 13.1342295, + 51.152802101 + ], + [ + 13.1335231, + 51.153079401 + ], + [ + 13.1332934, + 51.153167701 + ], + [ + 13.132516, + 51.153456001 + ], + [ + 13.132044, + 51.153623101 + ], + [ + 13.1314125, + 51.153842601 + ], + [ + 13.130462, + 51.154152101 + ], + [ + 13.1303887, + 51.154178401 + ], + [ + 13.1297781, + 51.154362601 + ], + [ + 13.1291474, + 51.154549901 + ], + [ + 13.1277133, + 51.154945301 + ], + [ + 13.1270676, + 51.155112201 + ], + [ + 13.126423, + 51.155268501 + ], + [ + 13.1262463, + 51.155311701 + ], + [ + 13.1244653, + 51.155706001 + ], + [ + 13.1242271, + 51.155757601 + ], + [ + 13.1238949, + 51.155825601 + ], + [ + 13.1233394, + 51.155937501 + ], + [ + 13.1220343, + 51.156191101 + ], + [ + 13.1208655, + 51.156405701 + ], + [ + 13.1169997, + 51.157115301 + ], + [ + 13.1157951, + 51.157356001 + ], + [ + 13.1146337, + 51.157593801 + ], + [ + 13.1134752, + 51.157856301 + ], + [ + 13.1122214, + 51.158152601 + ], + [ + 13.1104896, + 51.158602301 + ], + [ + 13.108201, + 51.159256601 + ], + [ + 13.1062332, + 51.159891301 + ], + [ + 13.1057883, + 51.160043301 + ], + [ + 13.1047348, + 51.160410001 + ], + [ + 13.1036132, + 51.160830001 + ], + [ + 13.1025314, + 51.161244901 + ], + [ + 13.1004228, + 51.162115901 + ], + [ + 13.0986341, + 51.162881901 + ], + [ + 13.0977383, + 51.163266501 + ], + [ + 13.0968231, + 51.163654101 + ], + [ + 13.0950629, + 51.164373401 + ], + [ + 13.0941091, + 51.164738301 + ], + [ + 13.0931752, + 51.165081101 + ], + [ + 13.0924574, + 51.165327301 + ], + [ + 13.0917113, + 51.165568101 + ], + [ + 13.090929, + 51.165808801 + ], + [ + 13.0901532, + 51.166029701 + ], + [ + 13.0893691, + 51.166241901 + ], + [ + 13.0884998, + 51.166462401 + ], + [ + 13.0875645, + 51.166680801 + ], + [ + 13.0866212, + 51.166882401 + ], + [ + 13.0856409, + 51.167071601 + ], + [ + 13.0848567, + 51.167209501 + ], + [ + 13.0840533, + 51.167336401 + ], + [ + 13.0832334, + 51.167456201 + ], + [ + 13.0826502, + 51.167533201 + ], + [ + 13.0820614, + 51.167603001 + ], + [ + 13.0818249, + 51.167630701 + ], + [ + 13.0812816, + 51.167686701 + ], + [ + 13.0807377, + 51.167740001 + ], + [ + 13.0801903, + 51.167788401 + ], + [ + 13.0795985, + 51.167834201 + ], + [ + 13.0789849, + 51.167871601 + ], + [ + 13.0782808, + 51.167912801 + ], + [ + 13.0776229, + 51.167938501 + ], + [ + 13.0768794, + 51.167960401 + ], + [ + 13.0761344, + 51.167968001 + ], + [ + 13.0756241, + 51.167972501 + ], + [ + 13.0751074, + 51.167970501 + ], + [ + 13.0741014, + 51.167958501 + ], + [ + 13.0730677, + 51.167933201 + ], + [ + 13.0720551, + 51.167888101 + ], + [ + 13.0715672, + 51.167864901 + ], + [ + 13.0712848, + 51.167850201 + ], + [ + 13.0679366, + 51.167659101 + ], + [ + 13.0646889, + 51.167508101 + ], + [ + 13.0643816, + 51.167499201 + ], + [ + 13.0635226, + 51.167474401 + ], + [ + 13.0623636, + 51.167472901 + ], + [ + 13.0612166, + 51.167486501 + ], + [ + 13.0600597, + 51.167528101 + ], + [ + 13.0586099, + 51.167609101 + ], + [ + 13.0573236, + 51.167713001 + ], + [ + 13.0571518, + 51.167729101 + ], + [ + 13.0557722, + 51.167881101 + ], + [ + 13.0544132, + 51.168061101 + ], + [ + 13.053363, + 51.168230101 + ], + [ + 13.0523112, + 51.168415301 + ], + [ + 13.0513072, + 51.168616601 + ], + [ + 13.0504166, + 51.168808401 + ], + [ + 13.0503024, + 51.168835001 + ], + [ + 13.0493181, + 51.169075901 + ], + [ + 13.0483005, + 51.169340301 + ], + [ + 13.0473802, + 51.169605801 + ], + [ + 13.0464766, + 51.169882901 + ], + [ + 13.0450974, + 51.170343401 + ], + [ + 13.0439791, + 51.170756701 + ], + [ + 13.0435738, + 51.170913501 + ], + [ + 13.0429709, + 51.171157001 + ], + [ + 13.0423831, + 51.171412501 + ], + [ + 13.0412748, + 51.171909601 + ], + [ + 13.0408196, + 51.172123201 + ], + [ + 13.0396062, + 51.172740301 + ], + [ + 13.0385096, + 51.173338901 + ], + [ + 13.0382986, + 51.173460201 + ], + [ + 13.0372399, + 51.174108801 + ], + [ + 13.0360253, + 51.174908201 + ], + [ + 13.0337263, + 51.176519201 + ], + [ + 13.0335307, + 51.176658301 + ], + [ + 13.0334055, + 51.176747301 + ], + [ + 13.030177, + 51.179046901 + ], + [ + 13.0286899, + 51.180092401 + ], + [ + 13.0285085, + 51.180220001 + ], + [ + 13.0268129, + 51.181372801 + ], + [ + 13.0254805, + 51.182225601 + ], + [ + 13.0243601, + 51.182908201 + ], + [ + 13.0236645, + 51.183298401 + ], + [ + 13.0230489, + 51.183643801 + ], + [ + 13.0217022, + 51.184345301 + ], + [ + 13.0199437, + 51.185174001 + ], + [ + 13.0180433, + 51.185974601 + ], + [ + 13.0179541, + 51.186009601 + ], + [ + 13.0171089, + 51.186340901 + ], + [ + 13.0161551, + 51.186689501 + ], + [ + 13.0157118, + 51.186847401 + ], + [ + 13.0147609, + 51.187161901 + ], + [ + 13.014299139, + 51.187305659 + ] + ] + } + }, + { + "identifier": "2024-033026--vi-bs.2024-07-10_00-00-00-000.devi-zus.2024-07-10_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.59258742885251,11.504673990309216,53.59235221207239,11.504721583696314", + "point": "53.59258742885251,11.504673990309216", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A14 AS Schwerin Ost, GST", + "startTimestamp": "2024-07-10T00:00:00+02:00", + "coordinate": { + "lat": 53.59258742885251, + "long": 11.504673990309216 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.07.24 um 00:00 Uhr", + "Ende: 30.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.01.27)", + "", + "Abfahrt von der B321", + "", + "L\u00e4nge: 0.03 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A14 AS Schwerin Ost, GST" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.50467399, + 53.592587429 + ], + [ + 11.5046944, + 53.592557501 + ], + [ + 11.5047236, + 53.592486701 + ], + [ + 11.5047347, + 53.592415501 + ], + [ + 11.504721584, + 53.592352212 + ] + ] + } + }, + { + "identifier": "2024-033026--vi-bs.2024-07-10_00-00-00-000.devi-zus.2024-07-10_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.592477467900046,11.509064930670645,53.593065231836455,11.508945704182992", + "point": "53.592477467900046,11.509064930670645", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A14 AS Schwerin Ost, GST", + "startTimestamp": "2024-07-10T00:00:00+02:00", + "coordinate": { + "lat": 53.592477467900046, + "long": 11.509064930670645 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.07.24 um 00:00 Uhr", + "Ende: 30.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.01.27)", + "", + "Abfahrt von der B321", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A14 AS Schwerin Ost, GST" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.509064931, + 53.592477468 + ], + [ + 11.5089541, + 53.592576301 + ], + [ + 11.5089481, + 53.593048301 + ], + [ + 11.508945704, + 53.593065232 + ] + ] + } + }, + { + "identifier": "2025-037474--vi-bs.2025-08-06_00-00-00-000.devi-zus.2025-08-06_00-00-00-000_006.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.891175313773566,11.522794971693026,53.88972957922156,11.52598840080116", + "point": "53.891175313773566,11.522794971693026", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wismar Ost (aus Richtung Wismar Hafen)", + "title": "GST, A14 A20 Kreuz Wismar u. Ende A14 RF Wismar", + "startTimestamp": "2025-08-06T00:00:00+02:00", + "coordinate": { + "lat": 53.891175313773566, + "long": 11.522794971693026 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.08.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Auffahrt auf die A14: AS Wismar Ost (aus Richtung Wismar Hafen)", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "GST, A14 A20 Kreuz Wismar u. Ende A14 RF Wismar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.522794972, + 53.891175314 + ], + [ + 11.5230215, + 53.891129401 + ], + [ + 11.523381, + 53.891056501 + ], + [ + 11.52445, + 53.890832501 + ], + [ + 11.5247559, + 53.890755501 + ], + [ + 11.5249442, + 53.890697301 + ], + [ + 11.5251499, + 53.890615901 + ], + [ + 11.525351, + 53.890513601 + ], + [ + 11.5255139, + 53.890407301 + ], + [ + 11.5256745, + 53.890272801 + ], + [ + 11.5258006, + 53.890132501 + ], + [ + 11.5258978, + 53.889984101 + ], + [ + 11.5259673, + 53.889824401 + ], + [ + 11.525988401, + 53.889729579 + ] + ] + } + }, + { + "identifier": "2025-037474--vi-bs.2025-08-06_00-00-00-000.devi-zus.2025-08-06_00-00-00-000_006.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.8892699632559,11.526381750073147,53.89236053544015,11.528566835140467", + "point": "53.8892699632559,11.526381750073147", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wismar Ost (aus Richtung Wismar)", + "title": "GST, A14 A20 Kreuz Wismar u. Ende A14 RF Wismar", + "startTimestamp": "2025-08-06T00:00:00+02:00", + "coordinate": { + "lat": 53.8892699632559, + "long": 11.526381750073147 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.08.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Abfahrt von der A14: AS Wismar Ost (aus Richtung Wismar)", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "GST, A14 A20 Kreuz Wismar u. Ende A14 RF Wismar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.52638175, + 53.889269963 + ], + [ + 11.5263853, + 53.889481401 + ], + [ + 11.526408, + 53.889718101 + ], + [ + 11.5264417, + 53.889938501 + ], + [ + 11.5265152, + 53.890261801 + ], + [ + 11.5265999, + 53.890527801 + ], + [ + 11.5267321, + 53.890828401 + ], + [ + 11.5268842, + 53.891109601 + ], + [ + 11.5270623, + 53.891366301 + ], + [ + 11.5271625, + 53.891483801 + ], + [ + 11.5272706, + 53.891610701 + ], + [ + 11.5274676, + 53.891781101 + ], + [ + 11.5276896, + 53.891942601 + ], + [ + 11.5279404, + 53.892083901 + ], + [ + 11.528248, + 53.892230701 + ], + [ + 11.528566835, + 53.892360535 + ] + ] + } + }, + { + "identifier": "2026-009827--vi-bs.2026-03-02_16-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.59365425172913,11.506941153332637,53.59243309117279,11.50474270916085", + "point": "53.59365425172913,11.506941153332637", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wismar -> Schwerin", + "title": "GST, A14, AS Schwerin-Ost (RF Dresden) f\u00fcr GST-Umfahrung", + "startTimestamp": "2026-03-02T16:00:00+01:00", + "coordinate": { + "lat": 53.59365425172913, + "long": 11.506941153332637 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 16:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "Von A14: Wismar -> Schwerin, zwischen 10.8 km hinter AS Schwerin-Nord und AS Schwerin-Ost nach Abfahrt von der A14: AS Schwerin-Ost (aus Richtung Schwerin-Nord)", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "GST, A14, AS Schwerin-Ost (RF Dresden) f\u00fcr GST-Umfahrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.506941153, + 53.593654252 + ], + [ + 11.5068604, + 53.593370001 + ], + [ + 11.5066115, + 53.592521001 + ], + [ + 11.5065467, + 53.592314101 + ], + [ + 11.506452, + 53.592170801 + ], + [ + 11.5063181, + 53.591821201 + ], + [ + 11.5062036, + 53.591695301 + ], + [ + 11.506113, + 53.591616401 + ], + [ + 11.5060026, + 53.591553501 + ], + [ + 11.5058543, + 53.591492901 + ], + [ + 11.5057193, + 53.591459701 + ], + [ + 11.5055544, + 53.591442801 + ], + [ + 11.5054023, + 53.591449201 + ], + [ + 11.5052563, + 53.591475101 + ], + [ + 11.5051262, + 53.591514701 + ], + [ + 11.5049901, + 53.591565201 + ], + [ + 11.5048842, + 53.591634601 + ], + [ + 11.5047745, + 53.591739901 + ], + [ + 11.5047182, + 53.591822301 + ], + [ + 11.5046858, + 53.591909401 + ], + [ + 11.5046819, + 53.592049201 + ], + [ + 11.5046895, + 53.592197401 + ], + [ + 11.5047347, + 53.592415501 + ], + [ + 11.504742709, + 53.592433091 + ] + ] + } + } + ] + }, + "A15": { + "roadworks": [ + { + "identifier": "2026-006778--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de73", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.83855993472368,13.958679953786639,51.833619822032304,13.974341741853742", + "point": "51.83855993472368,13.958679953786639", + "startLcPosition": "0", + "impact": { + "lower": "Boblitz", + "upper": "Spreewald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Spreewald -> Cottbus", + "title": "A15 | Spreewald - Boblitz", + "coordinate": { + "lat": 51.83855993472368, + "long": 13.958679953786639 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 22:00 bis zum 21.04.26 06:00 Uhr.", + "21.04.26 22:00 bis zum 22.04.26 06:00 Uhr.", + "22.04.26 22:00 bis zum 23.04.26 06:00 Uhr.", + "23.04.26 22:00 bis zum 24.04.26 06:00 Uhr.", + "27.04.26 22:00 bis zum 28.04.26 06:00 Uhr.", + "28.04.26 22:00 bis zum 29.04.26 06:00 Uhr.", + "29.04.26 22:00 bis zum 30.04.26 06:15 Uhr.", + "", + "A15: Dreieck Spreewald -> Cottbus, zwischen 2.5 km hinter AD Spreewald und 0.1 km vor AS Boblitz", + "", + "L\u00e4nge: 1.22 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.958679954, + 51.838559935 + ], + [ + 13.9588861, + 51.838495801 + ], + [ + 13.9594866, + 51.838292201 + ], + [ + 13.9601398, + 51.838049001 + ], + [ + 13.9622096, + 51.837189501 + ], + [ + 13.9628161, + 51.836931601 + ], + [ + 13.963619, + 51.836610201 + ], + [ + 13.9642276, + 51.836396201 + ], + [ + 13.9652586, + 51.836044801 + ], + [ + 13.9661742, + 51.835762301 + ], + [ + 13.9674287, + 51.835414301 + ], + [ + 13.9678865, + 51.835295601 + ], + [ + 13.9686995, + 51.835087501 + ], + [ + 13.974341742, + 51.833619822 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de67", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.83855993472368,13.958679953786639,51.83265810879595,13.978080280307502", + "point": "51.83855993472368,13.958679953786639", + "startLcPosition": "0", + "impact": { + "lower": "Leipe", + "upper": "Spreewald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Spreewald -> Cottbus", + "title": "A15 | Spreewald - Leipe", + "coordinate": { + "lat": 51.83855993472368, + "long": 13.958679953786639 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "20.04.26 von 12:00 bis 18:00 Uhr", + "21.04.26 von 08:00 bis 18:00 Uhr", + "22.04.26 von 08:00 bis 18:00 Uhr", + "23.04.26 von 08:00 bis 18:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "27.04.26 von 12:00 bis 18:00 Uhr", + "28.04.26 von 08:00 bis 18:00 Uhr", + "29.04.26 von 08:00 bis 18:00 Uhr", + "30.04.26 von 08:00 bis 18:00 Uhr", + "01.05.26 von 08:00 bis 12:00 Uhr", + "04.05.26 von 12:00 bis 18:00 Uhr", + "05.05.26 von 08:00 bis 18:00 Uhr", + "06.05.26 von 08:00 bis 18:00 Uhr", + "07.05.26 von 08:00 bis 18:00 Uhr", + "08.05.26 von 08:00 bis 12:00 Uhr", + "", + "A15: Dreieck Spreewald -> Cottbus, zwischen 2.5 km hinter AD Spreewald und 1.3 km vor Leipe", + "", + "L\u00e4nge: 1.49 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.958679954, + 51.838559935 + ], + [ + 13.9588861, + 51.838495801 + ], + [ + 13.9594866, + 51.838292201 + ], + [ + 13.9601398, + 51.838049001 + ], + [ + 13.9622096, + 51.837189501 + ], + [ + 13.9628161, + 51.836931601 + ], + [ + 13.963619, + 51.836610201 + ], + [ + 13.9642276, + 51.836396201 + ], + [ + 13.9652586, + 51.836044801 + ], + [ + 13.9661742, + 51.835762301 + ], + [ + 13.9674287, + 51.835414301 + ], + [ + 13.9678865, + 51.835295601 + ], + [ + 13.9686995, + 51.835087501 + ], + [ + 13.9748838, + 51.833478801 + ], + [ + 13.9774432, + 51.832823601 + ], + [ + 13.97808028, + 51.832658109 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de71", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.83265810879595,13.978080280307502,51.83214081616086,13.980071540451199", + "point": "51.83265810879595,13.978080280307502", + "startLcPosition": "1", + "impact": { + "lower": "Leipe", + "upper": "Boblitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Spreewald -> Cottbus", + "title": "A15 | Boblitz - Leipe", + "coordinate": { + "lat": 51.83265810879595, + "long": 13.978080280307502 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "20.04.26 von 12:00 bis 18:00 Uhr", + "21.04.26 von 08:00 bis 18:00 Uhr", + "22.04.26 von 08:00 bis 18:00 Uhr", + "23.04.26 von 08:00 bis 18:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "27.04.26 von 12:00 bis 18:00 Uhr", + "28.04.26 von 08:00 bis 18:00 Uhr", + "29.04.26 von 08:00 bis 18:00 Uhr", + "30.04.26 von 08:00 bis 18:00 Uhr", + "01.05.26 von 08:00 bis 12:00 Uhr", + "04.05.26 von 12:00 bis 18:00 Uhr", + "05.05.26 von 08:00 bis 18:00 Uhr", + "06.05.26 von 08:00 bis 18:00 Uhr", + "07.05.26 von 08:00 bis 18:00 Uhr", + "08.05.26 von 08:00 bis 12:00 Uhr", + "", + "A15: Dreieck Spreewald -> Cottbus, zwischen 0.2 km hinter AS Boblitz und 1.2 km vor Leipe", + "", + "L\u00e4nge: 0.15 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.25 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.97808028, + 51.832658109 + ], + [ + 13.98007154, + 51.832140816 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de75", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.82965369780464,13.990173299618913,51.833867219366304,13.973880257077932", + "point": "51.82965369780464,13.990173299618913", + "startLcPosition": "2", + "impact": { + "lower": "Spreewald", + "upper": "Leipe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Cottbus -> Dreieck Spreewald", + "title": "A15 | Leipe - Spreewald", + "coordinate": { + "lat": 51.82965369780464, + "long": 13.990173299618913 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 22:00 bis zum 21.04.26 06:00 Uhr.", + "21.04.26 22:00 bis zum 22.04.26 06:00 Uhr.", + "22.04.26 22:00 bis zum 23.04.26 06:00 Uhr.", + "23.04.26 22:00 bis zum 24.04.26 06:00 Uhr.", + "27.04.26 22:00 bis zum 28.04.26 06:00 Uhr.", + "28.04.26 22:00 bis zum 29.04.26 06:00 Uhr.", + "29.04.26 22:00 bis zum 30.04.26 06:00 Uhr.", + "30.04.26 22:00 bis zum 01.05.26 06:00 Uhr.", + "", + "A15: Cottbus -> Dreieck Spreewald, zwischen 0.4 km hinter Leipe und 3.7 km vor AD Spreewald", + "", + "L\u00e4nge: 1.22 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.9901733, + 51.829653698 + ], + [ + 13.9891716, + 51.829914101 + ], + [ + 13.9887766, + 51.830011701 + ], + [ + 13.986241, + 51.830677501 + ], + [ + 13.9837452, + 51.831316101 + ], + [ + 13.9812145, + 51.831972001 + ], + [ + 13.9777153, + 51.832877101 + ], + [ + 13.9772294, + 51.833003501 + ], + [ + 13.9753245, + 51.833498901 + ], + [ + 13.9742423, + 51.833774301 + ], + [ + 13.973880257, + 51.833867219 + ] + ] + } + }, + { + "identifier": "2026-006778--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-03-02_08-00-00-000.de69", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.82965369780464,13.990173299618913,51.833867219366304,13.973880257077932", + "point": "51.82965369780464,13.990173299618913", + "startLcPosition": "2", + "impact": { + "lower": "Spreewald", + "upper": "Leipe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Cottbus -> Dreieck Spreewald", + "title": "A15 | Leipe - Spreewald", + "coordinate": { + "lat": 51.82965369780464, + "long": 13.990173299618913 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "20.04.26 von 12:00 bis 18:00 Uhr", + "21.04.26 von 08:00 bis 18:00 Uhr", + "22.04.26 von 08:00 bis 18:00 Uhr", + "23.04.26 von 08:00 bis 18:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "27.04.26 von 12:00 bis 18:00 Uhr", + "28.04.26 von 08:00 bis 18:00 Uhr", + "29.04.26 von 08:00 bis 18:00 Uhr", + "30.04.26 von 08:00 bis 18:00 Uhr", + "01.05.26 von 08:00 bis 12:15 Uhr", + "04.05.26 von 12:00 bis 18:00 Uhr", + "05.05.26 von 08:00 bis 18:00 Uhr", + "06.05.26 von 08:00 bis 18:00 Uhr", + "07.05.26 von 08:00 bis 18:00 Uhr", + "08.05.26 von 08:00 bis 12:00 Uhr", + "", + "A15: Cottbus -> Dreieck Spreewald, zwischen 0.4 km hinter Leipe und 3.7 km vor AD Spreewald", + "", + "L\u00e4nge: 1.22 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Modernisierung Dauerz\u00e4hlstellen Bundesautobahn Brandenburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.9901733, + 51.829653698 + ], + [ + 13.9891716, + 51.829914101 + ], + [ + 13.9887766, + 51.830011701 + ], + [ + 13.986241, + 51.830677501 + ], + [ + 13.9837452, + 51.831316101 + ], + [ + 13.9812145, + 51.831972001 + ], + [ + 13.9777153, + 51.832877101 + ], + [ + 13.9772294, + 51.833003501 + ], + [ + 13.9753245, + 51.833498901 + ], + [ + 13.9742423, + 51.833774301 + ], + [ + 13.973880257, + 51.833867219 + ] + ] + } + }, + { + "identifier": "2026-010047--vi-bs.2026-04-10_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.821771781645744,14.01098518299909,51.823628079752595,14.007835010250817", + "point": "51.821771781645744,14.01098518299909", + "startLcPosition": "4", + "impact": { + "lower": "Belten", + "upper": "Vetschau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Cottbus -> Dreieck Spreewald", + "title": "A15 | Vetschau - Belten", + "coordinate": { + "lat": 51.821771781645744, + "long": 14.01098518299909 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 13:00 Uhr", + "", + "A15: Cottbus -> Dreieck Spreewald, zwischen 5.6 km hinter AS Vetschau und 0.9 km vor Belten", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A15 von Vetschau (AS) nach Belten (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.010985183, + 51.821771782 + ], + [ + 14.0097032, + 51.822519801 + ], + [ + 14.008311, + 51.823353501 + ], + [ + 14.00783501, + 51.82362808 + ] + ] + } + }, + { + "identifier": "2026-015100--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-03-25_09-00-00-000_004.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.7168119508655,14.354995060173868,51.69670391115483,14.661858563332228", + "point": "51.7168119508655,14.354995060173868", + "startLcPosition": "8", + "impact": { + "lower": "Bademeusel", + "upper": "Cottbus-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Cottbus -> Breslau", + "title": "A15 | Cottbus-S\u00fcd - Bademeusel", + "coordinate": { + "lat": 51.7168119508655, + "long": 14.354995060173868 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:30 Uhr", + "14.04.26 von 09:00 bis 16:30 Uhr", + "15.04.26 von 09:00 bis 16:30 Uhr", + "16.04.26 von 09:00 bis 16:30 Uhr", + "", + "A15: Cottbus -> Breslau, zwischen 0.3 km hinter AS Cottbus-S\u00fcd und 6.3 km vor AS Bademeusel", + "", + "L\u00e4nge: 22.11 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A15, Fahrbahnerhaltung zw. AS Roggosen und AS Forst (km 42,500-47,500 li.RF), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.35499506, + 51.716811951 + ], + [ + 14.3581486, + 51.716809601 + ], + [ + 14.3587199, + 51.716806701 + ], + [ + 14.3600683, + 51.716803101 + ], + [ + 14.3685685, + 51.716761201 + ], + [ + 14.3692287, + 51.716756201 + ], + [ + 14.3742678, + 51.716735901 + ], + [ + 14.3758379, + 51.716729501 + ], + [ + 14.3766843, + 51.716725101 + ], + [ + 14.3773895, + 51.716726301 + ], + [ + 14.3783595, + 51.716717501 + ], + [ + 14.3792987, + 51.716677601 + ], + [ + 14.3802903, + 51.716628501 + ], + [ + 14.3812408, + 51.716563101 + ], + [ + 14.3821096, + 51.716477101 + ], + [ + 14.3834768, + 51.716319801 + ], + [ + 14.3841241, + 51.716233501 + ], + [ + 14.3848413, + 51.716114301 + ], + [ + 14.3855966, + 51.715986301 + ], + [ + 14.386331, + 51.715843301 + ], + [ + 14.3871308, + 51.715668501 + ], + [ + 14.3878146, + 51.715507901 + ], + [ + 14.3885154, + 51.715341801 + ], + [ + 14.3892349, + 51.715147401 + ], + [ + 14.3899262, + 51.714951901 + ], + [ + 14.3905656, + 51.714748501 + ], + [ + 14.3918223, + 51.714317301 + ], + [ + 14.3924579, + 51.714085201 + ], + [ + 14.3930468, + 51.713852001 + ], + [ + 14.3974644, + 51.711982301 + ], + [ + 14.4033263, + 51.709464101 + ], + [ + 14.4044944, + 51.708997801 + ], + [ + 14.4050621, + 51.708783001 + ], + [ + 14.4056431, + 51.708577201 + ], + [ + 14.4067032, + 51.708234001 + ], + [ + 14.4071431, + 51.708104801 + ], + [ + 14.4077328, + 51.707931701 + ], + [ + 14.4083158, + 51.707773401 + ], + [ + 14.4089119, + 51.707617401 + ], + [ + 14.4095318, + 51.707467301 + ], + [ + 14.4101715, + 51.707315701 + ], + [ + 14.4108143, + 51.707189101 + ], + [ + 14.4115173, + 51.707058101 + ], + [ + 14.4119464, + 51.706984101 + ], + [ + 14.4122939, + 51.706924201 + ], + [ + 14.4129692, + 51.706816501 + ], + [ + 14.4140657, + 51.706665201 + ], + [ + 14.4146737, + 51.706596001 + ], + [ + 14.4152974, + 51.706534601 + ], + [ + 14.4158783, + 51.706490201 + ], + [ + 14.4165737, + 51.706437001 + ], + [ + 14.4175801, + 51.706388701 + ], + [ + 14.4185046, + 51.706348701 + ], + [ + 14.4188304, + 51.706342701 + ], + [ + 14.4192218, + 51.706335501 + ], + [ + 14.4195647, + 51.706337701 + ], + [ + 14.4200209, + 51.706340501 + ], + [ + 14.4206592, + 51.706347001 + ], + [ + 14.4215327, + 51.706367401 + ], + [ + 14.4222998, + 51.706406101 + ], + [ + 14.4235333, + 51.706489601 + ], + [ + 14.425015, + 51.706638001 + ], + [ + 14.4359605, + 51.707875301 + ], + [ + 14.438742, + 51.708189701 + ], + [ + 14.4390808, + 51.708228001 + ], + [ + 14.4408685, + 51.708456701 + ], + [ + 14.4426926, + 51.708712901 + ], + [ + 14.4467738, + 51.709338901 + ], + [ + 14.4496093, + 51.709812401 + ], + [ + 14.4501756, + 51.709910701 + ], + [ + 14.4510938, + 51.710064901 + ], + [ + 14.4521695, + 51.710245601 + ], + [ + 14.4569793, + 51.711058701 + ], + [ + 14.4583933, + 51.711299401 + ], + [ + 14.4598451, + 51.711546201 + ], + [ + 14.4627744, + 51.712041601 + ], + [ + 14.4634621, + 51.712155801 + ], + [ + 14.4642836, + 51.712291401 + ], + [ + 14.4648029, + 51.712381701 + ], + [ + 14.465332, + 51.712473201 + ], + [ + 14.4661827, + 51.712626001 + ], + [ + 14.4675005, + 51.712856701 + ], + [ + 14.4687877, + 51.713058301 + ], + [ + 14.4700083, + 51.713224401 + ], + [ + 14.4711604, + 51.713357101 + ], + [ + 14.472336, + 51.713463001 + ], + [ + 14.4733026, + 51.713529201 + ], + [ + 14.4742758, + 51.713570701 + ], + [ + 14.4750578, + 51.713588101 + ], + [ + 14.4758391, + 51.713591001 + ], + [ + 14.4770408, + 51.713565001 + ], + [ + 14.478204, + 51.713521701 + ], + [ + 14.4789813, + 51.713466001 + ], + [ + 14.4797212, + 51.713400701 + ], + [ + 14.4847184, + 51.712915201 + ], + [ + 14.4851758, + 51.712870301 + ], + [ + 14.4958392, + 51.711826601 + ], + [ + 14.5156005, + 51.709883301 + ], + [ + 14.5167533, + 51.709776701 + ], + [ + 14.5174403, + 51.709730101 + ], + [ + 14.5181346, + 51.709693401 + ], + [ + 14.5315468, + 51.709184801 + ], + [ + 14.5373897, + 51.708982001 + ], + [ + 14.5432251, + 51.708756701 + ], + [ + 14.5445728, + 51.708719301 + ], + [ + 14.545619, + 51.708690601 + ], + [ + 14.546763, + 51.708683301 + ], + [ + 14.5479275, + 51.708714101 + ], + [ + 14.548941, + 51.708755701 + ], + [ + 14.5502186, + 51.708836101 + ], + [ + 14.5556006, + 51.709335901 + ], + [ + 14.5646511, + 51.710156101 + ], + [ + 14.5880307, + 51.712237601 + ], + [ + 14.5942745, + 51.712802501 + ], + [ + 14.5955318, + 51.712910701 + ], + [ + 14.5971062, + 51.713013401 + ], + [ + 14.5984106, + 51.713066601 + ], + [ + 14.598686, + 51.713076901 + ], + [ + 14.5988386, + 51.713076901 + ], + [ + 14.5990886, + 51.713075201 + ], + [ + 14.5997684, + 51.713078401 + ], + [ + 14.6008594, + 51.713049801 + ], + [ + 14.602072, + 51.712993001 + ], + [ + 14.6023776, + 51.712981901 + ], + [ + 14.60268, + 51.712967101 + ], + [ + 14.6040574, + 51.712835701 + ], + [ + 14.6050652, + 51.712721001 + ], + [ + 14.6059194, + 51.712602801 + ], + [ + 14.6068904, + 51.712448601 + ], + [ + 14.6073009, + 51.712383901 + ], + [ + 14.6081538, + 51.712227401 + ], + [ + 14.6092186, + 51.712009601 + ], + [ + 14.6101514, + 51.711807901 + ], + [ + 14.611446, + 51.711540501 + ], + [ + 14.6119032, + 51.711443901 + ], + [ + 14.6130809, + 51.711193301 + ], + [ + 14.6152701, + 51.710720501 + ], + [ + 14.6157288, + 51.710623001 + ], + [ + 14.6182749, + 51.710074701 + ], + [ + 14.6186152, + 51.710002201 + ], + [ + 14.6224754, + 51.709170101 + ], + [ + 14.6242223, + 51.708797801 + ], + [ + 14.6321246, + 51.707104401 + ], + [ + 14.6346964, + 51.706489501 + ], + [ + 14.6359165, + 51.706183801 + ], + [ + 14.6371161, + 51.705862801 + ], + [ + 14.6375433, + 51.705740401 + ], + [ + 14.6400727, + 51.704994901 + ], + [ + 14.649935, + 51.701704901 + ], + [ + 14.6526847, + 51.700796601 + ], + [ + 14.6538387, + 51.700387801 + ], + [ + 14.6551524, + 51.699906901 + ], + [ + 14.6557964, + 51.699671201 + ], + [ + 14.6568205, + 51.699245001 + ], + [ + 14.6592524, + 51.698127201 + ], + [ + 14.6612006, + 51.697087201 + ], + [ + 14.661858563, + 51.696703911 + ] + ] + } + }, + { + "identifier": "2024-024515--vi-bs.2025-10-20_09-00-00-000.devi-zus.2024-10-31_00-00-00-000.f.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.71446382741004,14.39139526692337,51.708394663250836,14.440383541587462", + "point": "51.71446382741004,14.39139526692337", + "startLcPosition": "8", + "impact": { + "lower": "Roggosen", + "upper": "Cottbus-S\u00fcd", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Cottbus -> Breslau", + "title": "A15 | Cottbus-S\u00fcd - Roggosen", + "startTimestamp": "2025-10-20T09:00:00+02:00", + "coordinate": { + "lat": 51.71446382741004, + "long": 14.39139526692337 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.10.25 um 09:00 Uhr", + "Ende: 28.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.26)", + "", + "A15: Cottbus -> Breslau, zwischen 2.9 km hinter AS Cottbus-S\u00fcd und 1.8 km vor AS Roggosen", + "", + "L\u00e4nge: 3.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A 15, Fahrbahnerhaltung, km 37,6 - km 40,16, FR Berlin, Neubau AS Cottbus-Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.391395267, + 51.714463827 + ], + [ + 14.3918223, + 51.714317301 + ], + [ + 14.3924579, + 51.714085201 + ], + [ + 14.3930468, + 51.713852001 + ], + [ + 14.3974644, + 51.711982301 + ], + [ + 14.4033263, + 51.709464101 + ], + [ + 14.4044944, + 51.708997801 + ], + [ + 14.4050621, + 51.708783001 + ], + [ + 14.4056431, + 51.708577201 + ], + [ + 14.4067032, + 51.708234001 + ], + [ + 14.4071431, + 51.708104801 + ], + [ + 14.4077328, + 51.707931701 + ], + [ + 14.4083158, + 51.707773401 + ], + [ + 14.4089119, + 51.707617401 + ], + [ + 14.4095318, + 51.707467301 + ], + [ + 14.4101715, + 51.707315701 + ], + [ + 14.4108143, + 51.707189101 + ], + [ + 14.4115173, + 51.707058101 + ], + [ + 14.4119464, + 51.706984101 + ], + [ + 14.4122939, + 51.706924201 + ], + [ + 14.4129692, + 51.706816501 + ], + [ + 14.4140657, + 51.706665201 + ], + [ + 14.4146737, + 51.706596001 + ], + [ + 14.4152974, + 51.706534601 + ], + [ + 14.4158783, + 51.706490201 + ], + [ + 14.4165737, + 51.706437001 + ], + [ + 14.4175801, + 51.706388701 + ], + [ + 14.4185046, + 51.706348701 + ], + [ + 14.4188304, + 51.706342701 + ], + [ + 14.4192218, + 51.706335501 + ], + [ + 14.4195647, + 51.706337701 + ], + [ + 14.4200209, + 51.706340501 + ], + [ + 14.4206592, + 51.706347001 + ], + [ + 14.4215327, + 51.706367401 + ], + [ + 14.4222998, + 51.706406101 + ], + [ + 14.4235333, + 51.706489601 + ], + [ + 14.425015, + 51.706638001 + ], + [ + 14.4359605, + 51.707875301 + ], + [ + 14.438742, + 51.708189701 + ], + [ + 14.4390808, + 51.708228001 + ], + [ + 14.440383542, + 51.708394663 + ] + ] + } + }, + { + "identifier": "2026-015100--vi-bs.2026-04-17_09-00-00-000.devi-zus.2026-03-25_09-00-00-000_004.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.707652774896225,14.433991255194863,51.70955721443659,14.558041886755552", + "point": "51.707652774896225,14.433991255194863", + "startLcPosition": "8", + "impact": { + "lower": "Forst", + "upper": "Cottbus-S\u00fcd", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Cottbus -> Breslau", + "title": "A15 | Cottbus-S\u00fcd - Forst", + "startTimestamp": "2026-04-17T09:00:00+02:00", + "coordinate": { + "lat": 51.707652774896225, + "long": 14.433991255194863 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.04.26 um 09:00 Uhr", + "Ende: 08.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A15: Cottbus -> Breslau, zwischen 6.1 km hinter AS Cottbus-S\u00fcd und 3.8 km vor AS Forst", + "", + "L\u00e4nge: 8.71 km | Maximale Durchfahrtsbreite: 3.8 m", + "", + "A15, Fahrbahnerhaltung zw. AS Roggosen und AS Forst (km 42,500-47,500 li.RF), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.433991255, + 51.707652775 + ], + [ + 14.4359605, + 51.707875301 + ], + [ + 14.438742, + 51.708189701 + ], + [ + 14.4390808, + 51.708228001 + ], + [ + 14.4408685, + 51.708456701 + ], + [ + 14.4426926, + 51.708712901 + ], + [ + 14.4467738, + 51.709338901 + ], + [ + 14.4496093, + 51.709812401 + ], + [ + 14.4501756, + 51.709910701 + ], + [ + 14.4510938, + 51.710064901 + ], + [ + 14.4521695, + 51.710245601 + ], + [ + 14.4569793, + 51.711058701 + ], + [ + 14.4583933, + 51.711299401 + ], + [ + 14.4598451, + 51.711546201 + ], + [ + 14.4627744, + 51.712041601 + ], + [ + 14.4634621, + 51.712155801 + ], + [ + 14.4642836, + 51.712291401 + ], + [ + 14.4648029, + 51.712381701 + ], + [ + 14.465332, + 51.712473201 + ], + [ + 14.4661827, + 51.712626001 + ], + [ + 14.4675005, + 51.712856701 + ], + [ + 14.4687877, + 51.713058301 + ], + [ + 14.4700083, + 51.713224401 + ], + [ + 14.4711604, + 51.713357101 + ], + [ + 14.472336, + 51.713463001 + ], + [ + 14.4733026, + 51.713529201 + ], + [ + 14.4742758, + 51.713570701 + ], + [ + 14.4750578, + 51.713588101 + ], + [ + 14.4758391, + 51.713591001 + ], + [ + 14.4770408, + 51.713565001 + ], + [ + 14.478204, + 51.713521701 + ], + [ + 14.4789813, + 51.713466001 + ], + [ + 14.4797212, + 51.713400701 + ], + [ + 14.4847184, + 51.712915201 + ], + [ + 14.4851758, + 51.712870301 + ], + [ + 14.4958392, + 51.711826601 + ], + [ + 14.5156005, + 51.709883301 + ], + [ + 14.5167533, + 51.709776701 + ], + [ + 14.5174403, + 51.709730101 + ], + [ + 14.5181346, + 51.709693401 + ], + [ + 14.5315468, + 51.709184801 + ], + [ + 14.5373897, + 51.708982001 + ], + [ + 14.5432251, + 51.708756701 + ], + [ + 14.5445728, + 51.708719301 + ], + [ + 14.545619, + 51.708690601 + ], + [ + 14.546763, + 51.708683301 + ], + [ + 14.5479275, + 51.708714101 + ], + [ + 14.548941, + 51.708755701 + ], + [ + 14.5502186, + 51.708836101 + ], + [ + 14.5556006, + 51.709335901 + ], + [ + 14.558041887, + 51.709557214 + ] + ] + } + }, + { + "identifier": "2026-015100--vi-bs.2026-03-25_09-00-00-000.devi-zus.2026-03-25_09-00-00-000_004.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.708394663250836,14.440383541587462,51.709230819869966,14.554468822316707", + "point": "51.708394663250836,14.440383541587462", + "startLcPosition": "8", + "impact": { + "lower": "Forst", + "upper": "Cottbus-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Cottbus -> Breslau", + "title": "A15 | Cottbus-S\u00fcd - Forst", + "startTimestamp": "2026-03-25T09:00:00+01:00", + "coordinate": { + "lat": 51.708394663250836, + "long": 14.440383541587462 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.03.26 um 09:00 Uhr", + "Ende: 17.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A15: Cottbus -> Breslau, zwischen 6.6 km hinter AS Cottbus-S\u00fcd und 4.0 km vor AS Forst", + "", + "L\u00e4nge: 8.01 km | Maximale Durchfahrtsbreite: 4.4 m", + "", + "A15, Fahrbahnerhaltung zw. AS Roggosen und AS Forst (km 42,500-47,500 li.RF), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.440383542, + 51.708394663 + ], + [ + 14.4408685, + 51.708456701 + ], + [ + 14.4426926, + 51.708712901 + ], + [ + 14.4467738, + 51.709338901 + ], + [ + 14.4496093, + 51.709812401 + ], + [ + 14.4501756, + 51.709910701 + ], + [ + 14.4510938, + 51.710064901 + ], + [ + 14.4521695, + 51.710245601 + ], + [ + 14.4569793, + 51.711058701 + ], + [ + 14.4583933, + 51.711299401 + ], + [ + 14.4598451, + 51.711546201 + ], + [ + 14.4627744, + 51.712041601 + ], + [ + 14.4634621, + 51.712155801 + ], + [ + 14.4642836, + 51.712291401 + ], + [ + 14.4648029, + 51.712381701 + ], + [ + 14.465332, + 51.712473201 + ], + [ + 14.4661827, + 51.712626001 + ], + [ + 14.4675005, + 51.712856701 + ], + [ + 14.4687877, + 51.713058301 + ], + [ + 14.4700083, + 51.713224401 + ], + [ + 14.4711604, + 51.713357101 + ], + [ + 14.472336, + 51.713463001 + ], + [ + 14.4733026, + 51.713529201 + ], + [ + 14.4742758, + 51.713570701 + ], + [ + 14.4750578, + 51.713588101 + ], + [ + 14.4758391, + 51.713591001 + ], + [ + 14.4770408, + 51.713565001 + ], + [ + 14.478204, + 51.713521701 + ], + [ + 14.4789813, + 51.713466001 + ], + [ + 14.4797212, + 51.713400701 + ], + [ + 14.4847184, + 51.712915201 + ], + [ + 14.4851758, + 51.712870301 + ], + [ + 14.4958392, + 51.711826601 + ], + [ + 14.5156005, + 51.709883301 + ], + [ + 14.5167533, + 51.709776701 + ], + [ + 14.5174403, + 51.709730101 + ], + [ + 14.5181346, + 51.709693401 + ], + [ + 14.5315468, + 51.709184801 + ], + [ + 14.5373897, + 51.708982001 + ], + [ + 14.5432251, + 51.708756701 + ], + [ + 14.5445728, + 51.708719301 + ], + [ + 14.545619, + 51.708690601 + ], + [ + 14.546763, + 51.708683301 + ], + [ + 14.5479275, + 51.708714101 + ], + [ + 14.548941, + 51.708755701 + ], + [ + 14.5502186, + 51.708836101 + ], + [ + 14.554468822, + 51.70923082 + ] + ] + } + }, + { + "identifier": "2024-024515--vi-bs.2025-10-20_09-00-00-000.devi-zus.2024-10-31_00-00-00-000.f.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.70849044408942,14.440352397784181,51.71455341222282,14.391474222232524", + "point": "51.70849044408942,14.440352397784181", + "startLcPosition": "9", + "impact": { + "lower": "Cottbus-S\u00fcd", + "upper": "Roggosen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Breslau -> Cottbus", + "title": "A15 | Roggosen - Cottbus-S\u00fcd", + "startTimestamp": "2025-10-20T09:00:00+02:00", + "coordinate": { + "lat": 51.70849044408942, + "long": 14.440352397784181 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.10.25 um 09:00 Uhr", + "Ende: 28.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.26)", + "", + "A15: Breslau -> Cottbus, zwischen 1.8 km hinter AS Roggosen und 2.9 km vor AS Cottbus-S\u00fcd", + "", + "L\u00e4nge: 3.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A 15, Fahrbahnerhaltung, km 37,6 - km 40,16, FR Berlin, Neubau AS Cottbus-Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.440352398, + 51.708490444 + ], + [ + 14.4390837, + 51.708333901 + ], + [ + 14.4321601, + 51.707552401 + ], + [ + 14.4284316, + 51.707131501 + ], + [ + 14.4249953, + 51.706743601 + ], + [ + 14.4235617, + 51.706600901 + ], + [ + 14.4222476, + 51.706507701 + ], + [ + 14.4214614, + 51.706467901 + ], + [ + 14.4207182, + 51.706448201 + ], + [ + 14.4199191, + 51.706443701 + ], + [ + 14.4192622, + 51.706440001 + ], + [ + 14.4185283, + 51.706450301 + ], + [ + 14.4183331, + 51.706457801 + ], + [ + 14.4178114, + 51.706477801 + ], + [ + 14.4176248, + 51.706489501 + ], + [ + 14.4173801, + 51.706504801 + ], + [ + 14.4171894, + 51.706513601 + ], + [ + 14.4168748, + 51.706528201 + ], + [ + 14.4165879, + 51.706541501 + ], + [ + 14.4159256, + 51.706592701 + ], + [ + 14.415888, + 51.706595601 + ], + [ + 14.4153133, + 51.706640001 + ], + [ + 14.4146974, + 51.706699001 + ], + [ + 14.4145002, + 51.706723701 + ], + [ + 14.4143081, + 51.706747801 + ], + [ + 14.4140989, + 51.706774101 + ], + [ + 14.4130088, + 51.706914801 + ], + [ + 14.4123201, + 51.707016901 + ], + [ + 14.4115458, + 51.707158201 + ], + [ + 14.4108523, + 51.707286201 + ], + [ + 14.4101571, + 51.707431401 + ], + [ + 14.4095769, + 51.707560001 + ], + [ + 14.4089808, + 51.707710101 + ], + [ + 14.4083799, + 51.707860201 + ], + [ + 14.4077743, + 51.708022701 + ], + [ + 14.4067459, + 51.708328201 + ], + [ + 14.4065028, + 51.708407001 + ], + [ + 14.4057037, + 51.708666201 + ], + [ + 14.4051309, + 51.708865401 + ], + [ + 14.4045681, + 51.709080301 + ], + [ + 14.4035248, + 51.709495901 + ], + [ + 14.4033934, + 51.709548201 + ], + [ + 14.397549, + 51.712056801 + ], + [ + 14.3931224, + 51.713940301 + ], + [ + 14.3925244, + 51.714180801 + ], + [ + 14.3918942, + 51.714412201 + ], + [ + 14.391474222, + 51.714553412 + ] + ] + } + }, + { + "identifier": "2026-015100--vi-bs.2026-04-17_09-00-00-000.devi-zus.2026-03-25_09-00-00-000_004.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.709657628295005,14.558018180568462,51.707755734176104,14.43396113013504", + "point": "51.709657628295005,14.558018180568462", + "startLcPosition": "10", + "impact": { + "lower": "Cottbus-S\u00fcd", + "upper": "Forst", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Breslau -> Cottbus", + "title": "A15 | Forst - Cottbus-S\u00fcd", + "startTimestamp": "2026-04-17T09:00:00+02:00", + "coordinate": { + "lat": 51.709657628295005, + "long": 14.558018180568462 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.04.26 um 09:00 Uhr", + "Ende: 08.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A15: Breslau -> Cottbus, zwischen 3.8 km hinter AS Forst und 6.1 km vor AS Cottbus-S\u00fcd", + "", + "L\u00e4nge: 8.71 km | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A15, Fahrbahnerhaltung zw. AS Roggosen und AS Forst (km 42,500-47,500 li.RF), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.558018181, + 51.709657628 + ], + [ + 14.5555985, + 51.709436401 + ], + [ + 14.5500588, + 51.708941901 + ], + [ + 14.5489298, + 51.708856901 + ], + [ + 14.5478707, + 51.708809001 + ], + [ + 14.5467506, + 51.708781501 + ], + [ + 14.545638, + 51.708796501 + ], + [ + 14.5445788, + 51.708821501 + ], + [ + 14.5432289, + 51.708859801 + ], + [ + 14.5373802, + 51.709085001 + ], + [ + 14.5315641, + 51.709286601 + ], + [ + 14.5181945, + 51.709789301 + ], + [ + 14.5174515, + 51.709825201 + ], + [ + 14.516756, + 51.709875201 + ], + [ + 14.5156353, + 51.709970601 + ], + [ + 14.4958538, + 51.711923901 + ], + [ + 14.4851796, + 51.712986301 + ], + [ + 14.4847577, + 51.713028001 + ], + [ + 14.4797134, + 51.713508301 + ], + [ + 14.4789741, + 51.713570401 + ], + [ + 14.4782057, + 51.713613701 + ], + [ + 14.4769839, + 51.713672001 + ], + [ + 14.4758522, + 51.713688401 + ], + [ + 14.475053, + 51.713686701 + ], + [ + 14.4742708, + 51.713665801 + ], + [ + 14.4732765, + 51.713627801 + ], + [ + 14.4723023, + 51.713564101 + ], + [ + 14.4711271, + 51.713458601 + ], + [ + 14.4700004, + 51.713332701 + ], + [ + 14.4687355, + 51.713149601 + ], + [ + 14.4674581, + 51.712949701 + ], + [ + 14.4660788, + 51.712717801 + ], + [ + 14.4651641, + 51.712559301 + ], + [ + 14.4646667, + 51.712473901 + ], + [ + 14.4642731, + 51.712406701 + ], + [ + 14.4628917, + 51.712171101 + ], + [ + 14.4617174, + 51.711970601 + ], + [ + 14.4613527, + 51.711908301 + ], + [ + 14.4602229, + 51.711715401 + ], + [ + 14.4595678, + 51.711608401 + ], + [ + 14.4575631, + 51.711280801 + ], + [ + 14.4523213, + 51.710384601 + ], + [ + 14.4512556, + 51.710207801 + ], + [ + 14.4504529, + 51.710068301 + ], + [ + 14.4467365, + 51.709435701 + ], + [ + 14.4425928, + 51.708803901 + ], + [ + 14.4408424, + 51.708550901 + ], + [ + 14.4390837, + 51.708333901 + ], + [ + 14.43396113, + 51.707755734 + ] + ] + } + }, + { + "identifier": "2026-015100--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-03-25_09-00-00-000_004.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.69678902714756,14.661986825335903,51.71692780193837,14.354995770335258", + "point": "51.69678902714756,14.661986825335903", + "startLcPosition": "11", + "impact": { + "lower": "Cottbus-S\u00fcd", + "upper": "Bademeusel", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Breslau -> Cottbus", + "title": "A15 | Bademeusel - Cottbus-S\u00fcd", + "coordinate": { + "lat": 51.69678902714756, + "long": 14.661986825335903 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:30 Uhr", + "14.04.26 von 09:00 bis 16:30 Uhr", + "15.04.26 von 09:00 bis 16:30 Uhr", + "16.04.26 von 09:00 bis 16:30 Uhr", + "", + "A15: Breslau -> Cottbus, zwischen 6.3 km hinter AS Bademeusel und 0.3 km vor AS Cottbus-S\u00fcd", + "", + "L\u00e4nge: 22.11 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A15, Fahrbahnerhaltung zw. AS Roggosen und AS Forst (km 42,500-47,500 li.RF), FR Berlin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 14.661986825, + 51.696789027 + ], + [ + 14.6613655, + 51.697150201 + ], + [ + 14.6593515, + 51.698210601 + ], + [ + 14.6579977, + 51.698855301 + ], + [ + 14.6575452, + 51.699070801 + ], + [ + 14.6568816, + 51.699347001 + ], + [ + 14.6556579, + 51.699824601 + ], + [ + 14.6547643, + 51.700172501 + ], + [ + 14.6539161, + 51.700491001 + ], + [ + 14.6526864, + 51.700924001 + ], + [ + 14.6504212, + 51.701689001 + ], + [ + 14.6494365, + 51.702012601 + ], + [ + 14.640139, + 51.705086801 + ], + [ + 14.6390952, + 51.705401601 + ], + [ + 14.637692, + 51.705808501 + ], + [ + 14.6371875, + 51.705945301 + ], + [ + 14.6347287, + 51.706601801 + ], + [ + 14.6322265, + 51.707193101 + ], + [ + 14.62826, + 51.708059101 + ], + [ + 14.6187543, + 51.710092601 + ], + [ + 14.6184466, + 51.710157901 + ], + [ + 14.615807, + 51.710720001 + ], + [ + 14.6153608, + 51.710818001 + ], + [ + 14.6124641, + 51.711426601 + ], + [ + 14.6119591, + 51.711538501 + ], + [ + 14.6115003, + 51.711634701 + ], + [ + 14.6095941, + 51.712040801 + ], + [ + 14.6082634, + 51.712322501 + ], + [ + 14.6073066, + 51.712495101 + ], + [ + 14.6070496, + 51.712540501 + ], + [ + 14.6054437, + 51.712787401 + ], + [ + 14.6048868, + 51.712859701 + ], + [ + 14.6044795, + 51.712902301 + ], + [ + 14.6040882, + 51.712947101 + ], + [ + 14.6032346, + 51.713027201 + ], + [ + 14.6023943, + 51.713096501 + ], + [ + 14.6009204, + 51.713157501 + ], + [ + 14.5996917, + 51.713183201 + ], + [ + 14.5985784, + 51.713178001 + ], + [ + 14.5970509, + 51.713126001 + ], + [ + 14.5954781, + 51.713019301 + ], + [ + 14.5942926, + 51.712913201 + ], + [ + 14.5878971, + 51.712340801 + ], + [ + 14.5646019, + 51.710259301 + ], + [ + 14.5555985, + 51.709436401 + ], + [ + 14.5500588, + 51.708941901 + ], + [ + 14.5489298, + 51.708856901 + ], + [ + 14.5478707, + 51.708809001 + ], + [ + 14.5467506, + 51.708781501 + ], + [ + 14.545638, + 51.708796501 + ], + [ + 14.5445788, + 51.708821501 + ], + [ + 14.5432289, + 51.708859801 + ], + [ + 14.5373802, + 51.709085001 + ], + [ + 14.5315641, + 51.709286601 + ], + [ + 14.5181945, + 51.709789301 + ], + [ + 14.5174515, + 51.709825201 + ], + [ + 14.516756, + 51.709875201 + ], + [ + 14.5156353, + 51.709970601 + ], + [ + 14.4958538, + 51.711923901 + ], + [ + 14.4851796, + 51.712986301 + ], + [ + 14.4847577, + 51.713028001 + ], + [ + 14.4797134, + 51.713508301 + ], + [ + 14.4789741, + 51.713570401 + ], + [ + 14.4782057, + 51.713613701 + ], + [ + 14.4769839, + 51.713672001 + ], + [ + 14.4758522, + 51.713688401 + ], + [ + 14.475053, + 51.713686701 + ], + [ + 14.4742708, + 51.713665801 + ], + [ + 14.4732765, + 51.713627801 + ], + [ + 14.4723023, + 51.713564101 + ], + [ + 14.4711271, + 51.713458601 + ], + [ + 14.4700004, + 51.713332701 + ], + [ + 14.4687355, + 51.713149601 + ], + [ + 14.4674581, + 51.712949701 + ], + [ + 14.4660788, + 51.712717801 + ], + [ + 14.4651641, + 51.712559301 + ], + [ + 14.4646667, + 51.712473901 + ], + [ + 14.4642731, + 51.712406701 + ], + [ + 14.4628917, + 51.712171101 + ], + [ + 14.4617174, + 51.711970601 + ], + [ + 14.4613527, + 51.711908301 + ], + [ + 14.4602229, + 51.711715401 + ], + [ + 14.4595678, + 51.711608401 + ], + [ + 14.4575631, + 51.711280801 + ], + [ + 14.4523213, + 51.710384601 + ], + [ + 14.4512556, + 51.710207801 + ], + [ + 14.4504529, + 51.710068301 + ], + [ + 14.4467365, + 51.709435701 + ], + [ + 14.4425928, + 51.708803901 + ], + [ + 14.4408424, + 51.708550901 + ], + [ + 14.4390837, + 51.708333901 + ], + [ + 14.4321601, + 51.707552401 + ], + [ + 14.4284316, + 51.707131501 + ], + [ + 14.4249953, + 51.706743601 + ], + [ + 14.4235617, + 51.706600901 + ], + [ + 14.4222476, + 51.706507701 + ], + [ + 14.4214614, + 51.706467901 + ], + [ + 14.4207182, + 51.706448201 + ], + [ + 14.4199191, + 51.706443701 + ], + [ + 14.4192622, + 51.706440001 + ], + [ + 14.4185283, + 51.706450301 + ], + [ + 14.4183331, + 51.706457801 + ], + [ + 14.4178114, + 51.706477801 + ], + [ + 14.4176248, + 51.706489501 + ], + [ + 14.4173801, + 51.706504801 + ], + [ + 14.4171894, + 51.706513601 + ], + [ + 14.4168748, + 51.706528201 + ], + [ + 14.4165879, + 51.706541501 + ], + [ + 14.4159256, + 51.706592701 + ], + [ + 14.415888, + 51.706595601 + ], + [ + 14.4153133, + 51.706640001 + ], + [ + 14.4146974, + 51.706699001 + ], + [ + 14.4145002, + 51.706723701 + ], + [ + 14.4143081, + 51.706747801 + ], + [ + 14.4140989, + 51.706774101 + ], + [ + 14.4130088, + 51.706914801 + ], + [ + 14.4123201, + 51.707016901 + ], + [ + 14.4115458, + 51.707158201 + ], + [ + 14.4108523, + 51.707286201 + ], + [ + 14.4101571, + 51.707431401 + ], + [ + 14.4095769, + 51.707560001 + ], + [ + 14.4089808, + 51.707710101 + ], + [ + 14.4083799, + 51.707860201 + ], + [ + 14.4077743, + 51.708022701 + ], + [ + 14.4067459, + 51.708328201 + ], + [ + 14.4065028, + 51.708407001 + ], + [ + 14.4057037, + 51.708666201 + ], + [ + 14.4051309, + 51.708865401 + ], + [ + 14.4045681, + 51.709080301 + ], + [ + 14.4035248, + 51.709495901 + ], + [ + 14.4033934, + 51.709548201 + ], + [ + 14.397549, + 51.712056801 + ], + [ + 14.3931224, + 51.713940301 + ], + [ + 14.3925244, + 51.714180801 + ], + [ + 14.3918942, + 51.714412201 + ], + [ + 14.3906165, + 51.714841801 + ], + [ + 14.3899737, + 51.715041601 + ], + [ + 14.3892053, + 51.715261101 + ], + [ + 14.3885416, + 51.715438901 + ], + [ + 14.3878786, + 51.715608701 + ], + [ + 14.3871736, + 51.715773001 + ], + [ + 14.3864211, + 51.715923001 + ], + [ + 14.3856512, + 51.716076101 + ], + [ + 14.384882, + 51.716216101 + ], + [ + 14.3841929, + 51.716329201 + ], + [ + 14.3834741, + 51.716430001 + ], + [ + 14.3821394, + 51.716580201 + ], + [ + 14.3812574, + 51.716664701 + ], + [ + 14.3803127, + 51.716732901 + ], + [ + 14.3798158, + 51.716766201 + ], + [ + 14.3793334, + 51.716786201 + ], + [ + 14.378341, + 51.716816901 + ], + [ + 14.3764938, + 51.716837001 + ], + [ + 14.3755891, + 51.716842701 + ], + [ + 14.3690286, + 51.716870001 + ], + [ + 14.3681784, + 51.716870301 + ], + [ + 14.3600688, + 51.716909801 + ], + [ + 14.3586587, + 51.716912601 + ], + [ + 14.3581363, + 51.716913701 + ], + [ + 14.35499577, + 51.716927802 + ] + ] + } + } + ] + }, + "A17": { + "roadworks": [ + { + "identifier": "2026-008025--vi-bs.2026-04-22_18-00-00-000.devi-zus.2026-04-22_18-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.03799089468194,13.612639008307948,51.00782124665624,13.729972329381482", + "point": "51.03799089468194,13.612639008307948", + "startLcPosition": "0", + "impact": { + "lower": "Dresden-S\u00fcdvorstadt", + "upper": "Dresden-West", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Dresden-West - Dresden-S\u00fcdvorstadt", + "coordinate": { + "lat": 51.03799089468194, + "long": 13.612639008307948 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 18:00 bis zum 23.04.26 06:00 Uhr.", + "", + "A17: Dresden -> Prag, zwischen 3.0 km hinter AD Dresden-West und AS Dresden-S\u00fcdvorstadt", + "", + "L\u00e4nge: 9.46 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A17 von Dresden-S\u00fcdvorstadt (AS) nach Dresden-Gorbitz (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.612639008, + 51.037990895 + ], + [ + 13.6126735, + 51.037976901 + ], + [ + 13.6128389, + 51.037909701 + ], + [ + 13.613031, + 51.037840001 + ], + [ + 13.6133982, + 51.037713901 + ], + [ + 13.6137641, + 51.037598601 + ], + [ + 13.6141992, + 51.037479901 + ], + [ + 13.6146147, + 51.037378601 + ], + [ + 13.6151294, + 51.037266201 + ], + [ + 13.6154461, + 51.037205801 + ], + [ + 13.6157836, + 51.037151501 + ], + [ + 13.6162322, + 51.037091201 + ], + [ + 13.6165486, + 51.037052801 + ], + [ + 13.6168694, + 51.037021501 + ], + [ + 13.6173868, + 51.036982701 + ], + [ + 13.6179574, + 51.036959601 + ], + [ + 13.6186688, + 51.036958501 + ], + [ + 13.6190075, + 51.036964701 + ], + [ + 13.6194939, + 51.036983101 + ], + [ + 13.6200935, + 51.037007101 + ], + [ + 13.621617, + 51.037071001 + ], + [ + 13.6224879, + 51.037095401 + ], + [ + 13.622999, + 51.037099301 + ], + [ + 13.6233645, + 51.037096001 + ], + [ + 13.6241131, + 51.037081201 + ], + [ + 13.6248557, + 51.037049601 + ], + [ + 13.6256066, + 51.036999901 + ], + [ + 13.6263738, + 51.036932001 + ], + [ + 13.6266589, + 51.036901301 + ], + [ + 13.6271391, + 51.036844001 + ], + [ + 13.6273574, + 51.036817901 + ], + [ + 13.627799, + 51.036756501 + ], + [ + 13.6284935, + 51.036647901 + ], + [ + 13.6291494, + 51.036533101 + ], + [ + 13.6301012, + 51.036333601 + ], + [ + 13.631044, + 51.036111101 + ], + [ + 13.6316532, + 51.035952601 + ], + [ + 13.6323847, + 51.035757701 + ], + [ + 13.6334607, + 51.035472001 + ], + [ + 13.6339845, + 51.035343201 + ], + [ + 13.6346175, + 51.035211101 + ], + [ + 13.6349755, + 51.035143901 + ], + [ + 13.635429, + 51.035069201 + ], + [ + 13.6357783, + 51.035019501 + ], + [ + 13.6362015, + 51.034967701 + ], + [ + 13.6367111, + 51.034915801 + ], + [ + 13.6373287, + 51.034874201 + ], + [ + 13.6376595, + 51.034859201 + ], + [ + 13.6379933, + 51.034849701 + ], + [ + 13.6385038, + 51.034844001 + ], + [ + 13.638836, + 51.034845801 + ], + [ + 13.639517, + 51.034872401 + ], + [ + 13.6400648, + 51.034906901 + ], + [ + 13.6405719, + 51.034950901 + ], + [ + 13.642566, + 51.035133301 + ], + [ + 13.6443178, + 51.035295701 + ], + [ + 13.6475247, + 51.035592801 + ], + [ + 13.649224, + 51.035750201 + ], + [ + 13.6518262, + 51.035982801 + ], + [ + 13.6530439, + 51.036063801 + ], + [ + 13.6539431, + 51.036113001 + ], + [ + 13.6545706, + 51.036137501 + ], + [ + 13.6553027, + 51.036156101 + ], + [ + 13.6558008, + 51.036163101 + ], + [ + 13.6562858, + 51.036160901 + ], + [ + 13.6568923, + 51.036151201 + ], + [ + 13.6574786, + 51.036133201 + ], + [ + 13.6580255, + 51.036104701 + ], + [ + 13.6585597, + 51.036064901 + ], + [ + 13.6590989, + 51.036014601 + ], + [ + 13.659751, + 51.035936001 + ], + [ + 13.6603053, + 51.035861401 + ], + [ + 13.6607304, + 51.035788801 + ], + [ + 13.661346, + 51.035672601 + ], + [ + 13.6615889, + 51.035621101 + ], + [ + 13.6620659, + 51.035507201 + ], + [ + 13.6624664, + 51.035405201 + ], + [ + 13.6627636, + 51.035329101 + ], + [ + 13.6631691, + 51.035202401 + ], + [ + 13.6634496, + 51.035116101 + ], + [ + 13.6641173, + 51.034880901 + ], + [ + 13.6645556, + 51.034711001 + ], + [ + 13.6649948, + 51.034524601 + ], + [ + 13.6653991, + 51.034342201 + ], + [ + 13.6658166, + 51.034138301 + ], + [ + 13.6663727, + 51.033840001 + ], + [ + 13.6667291, + 51.033631601 + ], + [ + 13.667067, + 51.033422501 + ], + [ + 13.6674264, + 51.033178901 + ], + [ + 13.6676975, + 51.032982901 + ], + [ + 13.6682752, + 51.032528701 + ], + [ + 13.6687006, + 51.032151501 + ], + [ + 13.6691188, + 51.031757301 + ], + [ + 13.6696897, + 51.031209201 + ], + [ + 13.6702928, + 51.030665001 + ], + [ + 13.6706583, + 51.030389801 + ], + [ + 13.6713093, + 51.029946101 + ], + [ + 13.6715294, + 51.029802601 + ], + [ + 13.671824, + 51.029631001 + ], + [ + 13.6722074, + 51.029418801 + ], + [ + 13.672796, + 51.029120401 + ], + [ + 13.6732193, + 51.028929201 + ], + [ + 13.6736542, + 51.028750801 + ], + [ + 13.6742327, + 51.028530001 + ], + [ + 13.6747849, + 51.028350201 + ], + [ + 13.6753951, + 51.028190001 + ], + [ + 13.6756409, + 51.028125801 + ], + [ + 13.6759465, + 51.028057601 + ], + [ + 13.6780481, + 51.027644501 + ], + [ + 13.6800282, + 51.027249701 + ], + [ + 13.6811071, + 51.026981401 + ], + [ + 13.6818132, + 51.026761001 + ], + [ + 13.682709, + 51.026446801 + ], + [ + 13.6836407, + 51.026057701 + ], + [ + 13.6844295, + 51.025670501 + ], + [ + 13.6849336, + 51.025373201 + ], + [ + 13.6853189, + 51.025134701 + ], + [ + 13.6857963, + 51.024716701 + ], + [ + 13.6864506, + 51.024009701 + ], + [ + 13.6868577, + 51.023463401 + ], + [ + 13.6871461, + 51.023102401 + ], + [ + 13.6873379, + 51.022843701 + ], + [ + 13.6881069, + 51.021791001 + ], + [ + 13.6883595, + 51.021458201 + ], + [ + 13.6893243, + 51.020209001 + ], + [ + 13.6903129, + 51.019272701 + ], + [ + 13.691121, + 51.018639701 + ], + [ + 13.6919613, + 51.018114301 + ], + [ + 13.6927855, + 51.017617501 + ], + [ + 13.6939158, + 51.017115101 + ], + [ + 13.6953411, + 51.016586001 + ], + [ + 13.6967519, + 51.016188001 + ], + [ + 13.698206, + 51.015868101 + ], + [ + 13.6999387, + 51.015553101 + ], + [ + 13.7015219, + 51.015313401 + ], + [ + 13.7033041, + 51.015064301 + ], + [ + 13.7049589, + 51.014878401 + ], + [ + 13.7069386, + 51.014630801 + ], + [ + 13.7120777, + 51.013993401 + ], + [ + 13.7143013, + 51.013679701 + ], + [ + 13.7159619, + 51.013291101 + ], + [ + 13.7170143, + 51.012978601 + ], + [ + 13.7178418, + 51.012705301 + ], + [ + 13.7182393, + 51.012560301 + ], + [ + 13.7186302, + 51.012408801 + ], + [ + 13.7187818, + 51.012348401 + ], + [ + 13.7188713, + 51.012312801 + ], + [ + 13.7194121, + 51.012081701 + ], + [ + 13.7200226, + 51.011794101 + ], + [ + 13.7210726, + 51.011236901 + ], + [ + 13.722025, + 51.010687301 + ], + [ + 13.7225956, + 51.010353701 + ], + [ + 13.72302, + 51.010120601 + ], + [ + 13.7234853, + 51.009871101 + ], + [ + 13.7240176, + 51.009616401 + ], + [ + 13.7242722, + 51.009508901 + ], + [ + 13.7247879, + 51.009280701 + ], + [ + 13.725588, + 51.008971301 + ], + [ + 13.7263238, + 51.008716301 + ], + [ + 13.7270674, + 51.008489601 + ], + [ + 13.7277236, + 51.008311801 + ], + [ + 13.7282573, + 51.008182101 + ], + [ + 13.7292421, + 51.007970201 + ], + [ + 13.729526, + 51.007911401 + ], + [ + 13.7297728, + 51.007861501 + ], + [ + 13.729972329, + 51.007821247 + ] + ] + } + }, + { + "identifier": "2026-007996--vi-bs.2026-04-20_18-00-00-000.devi-zus.2026-04-20_18-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.03799089468194,13.612639008307948,51.00782124665624,13.729972329381482", + "point": "51.03799089468194,13.612639008307948", + "startLcPosition": "0", + "impact": { + "lower": "Dresden-S\u00fcdvorstadt", + "upper": "Dresden-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Dresden-West - Dresden-S\u00fcdvorstadt", + "coordinate": { + "lat": 51.03799089468194, + "long": 13.612639008307948 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 18:00 bis zum 21.04.26 06:00 Uhr.", + "", + "A17: Dresden -> Prag, zwischen 3.0 km hinter AD Dresden-West und AS Dresden-S\u00fcdvorstadt", + "", + "L\u00e4nge: 9.46 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 von Dresden-S\u00fcdvorstadt (AS) nach Dresden-Gorbitz (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.612639008, + 51.037990895 + ], + [ + 13.6126735, + 51.037976901 + ], + [ + 13.6128389, + 51.037909701 + ], + [ + 13.613031, + 51.037840001 + ], + [ + 13.6133982, + 51.037713901 + ], + [ + 13.6137641, + 51.037598601 + ], + [ + 13.6141992, + 51.037479901 + ], + [ + 13.6146147, + 51.037378601 + ], + [ + 13.6151294, + 51.037266201 + ], + [ + 13.6154461, + 51.037205801 + ], + [ + 13.6157836, + 51.037151501 + ], + [ + 13.6162322, + 51.037091201 + ], + [ + 13.6165486, + 51.037052801 + ], + [ + 13.6168694, + 51.037021501 + ], + [ + 13.6173868, + 51.036982701 + ], + [ + 13.6179574, + 51.036959601 + ], + [ + 13.6186688, + 51.036958501 + ], + [ + 13.6190075, + 51.036964701 + ], + [ + 13.6194939, + 51.036983101 + ], + [ + 13.6200935, + 51.037007101 + ], + [ + 13.621617, + 51.037071001 + ], + [ + 13.6224879, + 51.037095401 + ], + [ + 13.622999, + 51.037099301 + ], + [ + 13.6233645, + 51.037096001 + ], + [ + 13.6241131, + 51.037081201 + ], + [ + 13.6248557, + 51.037049601 + ], + [ + 13.6256066, + 51.036999901 + ], + [ + 13.6263738, + 51.036932001 + ], + [ + 13.6266589, + 51.036901301 + ], + [ + 13.6271391, + 51.036844001 + ], + [ + 13.6273574, + 51.036817901 + ], + [ + 13.627799, + 51.036756501 + ], + [ + 13.6284935, + 51.036647901 + ], + [ + 13.6291494, + 51.036533101 + ], + [ + 13.6301012, + 51.036333601 + ], + [ + 13.631044, + 51.036111101 + ], + [ + 13.6316532, + 51.035952601 + ], + [ + 13.6323847, + 51.035757701 + ], + [ + 13.6334607, + 51.035472001 + ], + [ + 13.6339845, + 51.035343201 + ], + [ + 13.6346175, + 51.035211101 + ], + [ + 13.6349755, + 51.035143901 + ], + [ + 13.635429, + 51.035069201 + ], + [ + 13.6357783, + 51.035019501 + ], + [ + 13.6362015, + 51.034967701 + ], + [ + 13.6367111, + 51.034915801 + ], + [ + 13.6373287, + 51.034874201 + ], + [ + 13.6376595, + 51.034859201 + ], + [ + 13.6379933, + 51.034849701 + ], + [ + 13.6385038, + 51.034844001 + ], + [ + 13.638836, + 51.034845801 + ], + [ + 13.639517, + 51.034872401 + ], + [ + 13.6400648, + 51.034906901 + ], + [ + 13.6405719, + 51.034950901 + ], + [ + 13.642566, + 51.035133301 + ], + [ + 13.6443178, + 51.035295701 + ], + [ + 13.6475247, + 51.035592801 + ], + [ + 13.649224, + 51.035750201 + ], + [ + 13.6518262, + 51.035982801 + ], + [ + 13.6530439, + 51.036063801 + ], + [ + 13.6539431, + 51.036113001 + ], + [ + 13.6545706, + 51.036137501 + ], + [ + 13.6553027, + 51.036156101 + ], + [ + 13.6558008, + 51.036163101 + ], + [ + 13.6562858, + 51.036160901 + ], + [ + 13.6568923, + 51.036151201 + ], + [ + 13.6574786, + 51.036133201 + ], + [ + 13.6580255, + 51.036104701 + ], + [ + 13.6585597, + 51.036064901 + ], + [ + 13.6590989, + 51.036014601 + ], + [ + 13.659751, + 51.035936001 + ], + [ + 13.6603053, + 51.035861401 + ], + [ + 13.6607304, + 51.035788801 + ], + [ + 13.661346, + 51.035672601 + ], + [ + 13.6615889, + 51.035621101 + ], + [ + 13.6620659, + 51.035507201 + ], + [ + 13.6624664, + 51.035405201 + ], + [ + 13.6627636, + 51.035329101 + ], + [ + 13.6631691, + 51.035202401 + ], + [ + 13.6634496, + 51.035116101 + ], + [ + 13.6641173, + 51.034880901 + ], + [ + 13.6645556, + 51.034711001 + ], + [ + 13.6649948, + 51.034524601 + ], + [ + 13.6653991, + 51.034342201 + ], + [ + 13.6658166, + 51.034138301 + ], + [ + 13.6663727, + 51.033840001 + ], + [ + 13.6667291, + 51.033631601 + ], + [ + 13.667067, + 51.033422501 + ], + [ + 13.6674264, + 51.033178901 + ], + [ + 13.6676975, + 51.032982901 + ], + [ + 13.6682752, + 51.032528701 + ], + [ + 13.6687006, + 51.032151501 + ], + [ + 13.6691188, + 51.031757301 + ], + [ + 13.6696897, + 51.031209201 + ], + [ + 13.6702928, + 51.030665001 + ], + [ + 13.6706583, + 51.030389801 + ], + [ + 13.6713093, + 51.029946101 + ], + [ + 13.6715294, + 51.029802601 + ], + [ + 13.671824, + 51.029631001 + ], + [ + 13.6722074, + 51.029418801 + ], + [ + 13.672796, + 51.029120401 + ], + [ + 13.6732193, + 51.028929201 + ], + [ + 13.6736542, + 51.028750801 + ], + [ + 13.6742327, + 51.028530001 + ], + [ + 13.6747849, + 51.028350201 + ], + [ + 13.6753951, + 51.028190001 + ], + [ + 13.6756409, + 51.028125801 + ], + [ + 13.6759465, + 51.028057601 + ], + [ + 13.6780481, + 51.027644501 + ], + [ + 13.6800282, + 51.027249701 + ], + [ + 13.6811071, + 51.026981401 + ], + [ + 13.6818132, + 51.026761001 + ], + [ + 13.682709, + 51.026446801 + ], + [ + 13.6836407, + 51.026057701 + ], + [ + 13.6844295, + 51.025670501 + ], + [ + 13.6849336, + 51.025373201 + ], + [ + 13.6853189, + 51.025134701 + ], + [ + 13.6857963, + 51.024716701 + ], + [ + 13.6864506, + 51.024009701 + ], + [ + 13.6868577, + 51.023463401 + ], + [ + 13.6871461, + 51.023102401 + ], + [ + 13.6873379, + 51.022843701 + ], + [ + 13.6881069, + 51.021791001 + ], + [ + 13.6883595, + 51.021458201 + ], + [ + 13.6893243, + 51.020209001 + ], + [ + 13.6903129, + 51.019272701 + ], + [ + 13.691121, + 51.018639701 + ], + [ + 13.6919613, + 51.018114301 + ], + [ + 13.6927855, + 51.017617501 + ], + [ + 13.6939158, + 51.017115101 + ], + [ + 13.6953411, + 51.016586001 + ], + [ + 13.6967519, + 51.016188001 + ], + [ + 13.698206, + 51.015868101 + ], + [ + 13.6999387, + 51.015553101 + ], + [ + 13.7015219, + 51.015313401 + ], + [ + 13.7033041, + 51.015064301 + ], + [ + 13.7049589, + 51.014878401 + ], + [ + 13.7069386, + 51.014630801 + ], + [ + 13.7120777, + 51.013993401 + ], + [ + 13.7143013, + 51.013679701 + ], + [ + 13.7159619, + 51.013291101 + ], + [ + 13.7170143, + 51.012978601 + ], + [ + 13.7178418, + 51.012705301 + ], + [ + 13.7182393, + 51.012560301 + ], + [ + 13.7186302, + 51.012408801 + ], + [ + 13.7187818, + 51.012348401 + ], + [ + 13.7188713, + 51.012312801 + ], + [ + 13.7194121, + 51.012081701 + ], + [ + 13.7200226, + 51.011794101 + ], + [ + 13.7210726, + 51.011236901 + ], + [ + 13.722025, + 51.010687301 + ], + [ + 13.7225956, + 51.010353701 + ], + [ + 13.72302, + 51.010120601 + ], + [ + 13.7234853, + 51.009871101 + ], + [ + 13.7240176, + 51.009616401 + ], + [ + 13.7242722, + 51.009508901 + ], + [ + 13.7247879, + 51.009280701 + ], + [ + 13.725588, + 51.008971301 + ], + [ + 13.7263238, + 51.008716301 + ], + [ + 13.7270674, + 51.008489601 + ], + [ + 13.7277236, + 51.008311801 + ], + [ + 13.7282573, + 51.008182101 + ], + [ + 13.7292421, + 51.007970201 + ], + [ + 13.729526, + 51.007911401 + ], + [ + 13.7297728, + 51.007861501 + ], + [ + 13.729972329, + 51.007821247 + ] + ] + } + }, + { + "identifier": "2026-017238--vi-bs.2026-04-20_19-00-00-000.devi-zus.2026-04-20_19-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.0285889591205,13.67407822993644,51.0128365524324,13.71744439922145", + "point": "51.0285889591205,13.67407822993644", + "startLcPosition": "2", + "impact": { + "lower": "Dresden-S\u00fcdvorstadt", + "upper": "Altfranken", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Altfranken - Dresden-S\u00fcdvorstadt", + "coordinate": { + "lat": 51.0285889591205, + "long": 13.67407822993644 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:00 bis zum 21.04.26 06:00 Uhr.", + "", + "A17: Dresden -> Prag, zwischen 2.5 km hinter Altfranken und 1.1 km vor AS Dresden-S\u00fcdvorstadt", + "", + "L\u00e4nge: 3.7 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A17 von Dresden-S\u00fcdvorstadt (AS) nach Altfranken (Tunnel) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.67407823, + 51.028588959 + ], + [ + 13.6742327, + 51.028530001 + ], + [ + 13.6747849, + 51.028350201 + ], + [ + 13.6753951, + 51.028190001 + ], + [ + 13.6756409, + 51.028125801 + ], + [ + 13.6759465, + 51.028057601 + ], + [ + 13.6780481, + 51.027644501 + ], + [ + 13.6800282, + 51.027249701 + ], + [ + 13.6811071, + 51.026981401 + ], + [ + 13.6818132, + 51.026761001 + ], + [ + 13.682709, + 51.026446801 + ], + [ + 13.6836407, + 51.026057701 + ], + [ + 13.6844295, + 51.025670501 + ], + [ + 13.6849336, + 51.025373201 + ], + [ + 13.6853189, + 51.025134701 + ], + [ + 13.6857963, + 51.024716701 + ], + [ + 13.6864506, + 51.024009701 + ], + [ + 13.6868577, + 51.023463401 + ], + [ + 13.6871461, + 51.023102401 + ], + [ + 13.6873379, + 51.022843701 + ], + [ + 13.6881069, + 51.021791001 + ], + [ + 13.6883595, + 51.021458201 + ], + [ + 13.6893243, + 51.020209001 + ], + [ + 13.6903129, + 51.019272701 + ], + [ + 13.691121, + 51.018639701 + ], + [ + 13.6919613, + 51.018114301 + ], + [ + 13.6927855, + 51.017617501 + ], + [ + 13.6939158, + 51.017115101 + ], + [ + 13.6953411, + 51.016586001 + ], + [ + 13.6967519, + 51.016188001 + ], + [ + 13.698206, + 51.015868101 + ], + [ + 13.6999387, + 51.015553101 + ], + [ + 13.7015219, + 51.015313401 + ], + [ + 13.7033041, + 51.015064301 + ], + [ + 13.7049589, + 51.014878401 + ], + [ + 13.7069386, + 51.014630801 + ], + [ + 13.7120777, + 51.013993401 + ], + [ + 13.7143013, + 51.013679701 + ], + [ + 13.7159619, + 51.013291101 + ], + [ + 13.7170143, + 51.012978601 + ], + [ + 13.717444399, + 51.012836552 + ] + ] + } + }, + { + "identifier": "2026-017250--vi-bs.2026-04-22_19-00-00-000.devi-zus.2026-04-22_19-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.0285889591205,13.67407822993644,51.0128365524324,13.71744439922145", + "point": "51.0285889591205,13.67407822993644", + "startLcPosition": "2", + "impact": { + "lower": "Dresden-S\u00fcdvorstadt", + "upper": "Altfranken", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Altfranken - Dresden-S\u00fcdvorstadt", + "coordinate": { + "lat": 51.0285889591205, + "long": 13.67407822993644 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 19:00 bis zum 23.04.26 06:00 Uhr.", + "", + "A17: Dresden -> Prag, zwischen 2.5 km hinter Altfranken und 1.1 km vor AS Dresden-S\u00fcdvorstadt", + "", + "L\u00e4nge: 3.7 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A17 von Dresden-S\u00fcdvorstadt (AS) nach Altfranken (Tunnel) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.67407823, + 51.028588959 + ], + [ + 13.6742327, + 51.028530001 + ], + [ + 13.6747849, + 51.028350201 + ], + [ + 13.6753951, + 51.028190001 + ], + [ + 13.6756409, + 51.028125801 + ], + [ + 13.6759465, + 51.028057601 + ], + [ + 13.6780481, + 51.027644501 + ], + [ + 13.6800282, + 51.027249701 + ], + [ + 13.6811071, + 51.026981401 + ], + [ + 13.6818132, + 51.026761001 + ], + [ + 13.682709, + 51.026446801 + ], + [ + 13.6836407, + 51.026057701 + ], + [ + 13.6844295, + 51.025670501 + ], + [ + 13.6849336, + 51.025373201 + ], + [ + 13.6853189, + 51.025134701 + ], + [ + 13.6857963, + 51.024716701 + ], + [ + 13.6864506, + 51.024009701 + ], + [ + 13.6868577, + 51.023463401 + ], + [ + 13.6871461, + 51.023102401 + ], + [ + 13.6873379, + 51.022843701 + ], + [ + 13.6881069, + 51.021791001 + ], + [ + 13.6883595, + 51.021458201 + ], + [ + 13.6893243, + 51.020209001 + ], + [ + 13.6903129, + 51.019272701 + ], + [ + 13.691121, + 51.018639701 + ], + [ + 13.6919613, + 51.018114301 + ], + [ + 13.6927855, + 51.017617501 + ], + [ + 13.6939158, + 51.017115101 + ], + [ + 13.6953411, + 51.016586001 + ], + [ + 13.6967519, + 51.016188001 + ], + [ + 13.698206, + 51.015868101 + ], + [ + 13.6999387, + 51.015553101 + ], + [ + 13.7015219, + 51.015313401 + ], + [ + 13.7033041, + 51.015064301 + ], + [ + 13.7049589, + 51.014878401 + ], + [ + 13.7069386, + 51.014630801 + ], + [ + 13.7120777, + 51.013993401 + ], + [ + 13.7143013, + 51.013679701 + ], + [ + 13.7159619, + 51.013291101 + ], + [ + 13.7170143, + 51.012978601 + ], + [ + 13.717444399, + 51.012836552 + ] + ] + } + }, + { + "identifier": "2026-008025--vi-bs.2026-04-22_18-00-00-000.devi-zus.2026-04-22_18-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.00792845647463,13.730027131621439,51.03808770272521,13.612736518413998", + "point": "51.00792845647463,13.730027131621439", + "startLcPosition": "5", + "impact": { + "lower": "Dresden-West", + "upper": "Dresden-S\u00fcdvorstadt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Dresden-S\u00fcdvorstadt - Dresden-West", + "coordinate": { + "lat": 51.00792845647463, + "long": 13.730027131621439 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 18:00 bis zum 23.04.26 06:00 Uhr.", + "", + "A17: Prag -> Dresden, zwischen AS Dresden-S\u00fcdvorstadt und 2.7 km vor AD Dresden-West", + "", + "L\u00e4nge: 9.46 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A17 von Dresden-S\u00fcdvorstadt (AS) nach Dresden-Gorbitz (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.730027132, + 51.007928456 + ], + [ + 13.7297915, + 51.007976801 + ], + [ + 13.7292564, + 51.008086501 + ], + [ + 13.7283169, + 51.008285701 + ], + [ + 13.7273451, + 51.008534801 + ], + [ + 13.7270117, + 51.008632101 + ], + [ + 13.7264563, + 51.008801401 + ], + [ + 13.7258517, + 51.009009401 + ], + [ + 13.7256789, + 51.009068501 + ], + [ + 13.725181, + 51.009259901 + ], + [ + 13.7248222, + 51.009399801 + ], + [ + 13.7241306, + 51.009703701 + ], + [ + 13.7235956, + 51.009961101 + ], + [ + 13.7231133, + 51.010218201 + ], + [ + 13.7227302, + 51.010427701 + ], + [ + 13.722152, + 51.010763901 + ], + [ + 13.7219044, + 51.010909401 + ], + [ + 13.721322, + 51.011258401 + ], + [ + 13.7201667, + 51.011907001 + ], + [ + 13.7195582, + 51.012210901 + ], + [ + 13.7191778, + 51.012385201 + ], + [ + 13.7189568, + 51.012480801 + ], + [ + 13.7187802, + 51.012557201 + ], + [ + 13.718396, + 51.012714101 + ], + [ + 13.7180063, + 51.012866001 + ], + [ + 13.7171769, + 51.013160501 + ], + [ + 13.7161383, + 51.013478901 + ], + [ + 13.7143987, + 51.013890901 + ], + [ + 13.7125663, + 51.014161801 + ], + [ + 13.7121315, + 51.014223301 + ], + [ + 13.7069856, + 51.014861501 + ], + [ + 13.7048797, + 51.015113201 + ], + [ + 13.7033565, + 51.015282701 + ], + [ + 13.7016646, + 51.015516301 + ], + [ + 13.6999838, + 51.015769401 + ], + [ + 13.698547, + 51.016043901 + ], + [ + 13.6976517, + 51.016242501 + ], + [ + 13.6969578, + 51.016397301 + ], + [ + 13.6955715, + 51.016790401 + ], + [ + 13.6942339, + 51.017295001 + ], + [ + 13.6930568, + 51.017784401 + ], + [ + 13.6922069, + 51.018305101 + ], + [ + 13.6913511, + 51.018826501 + ], + [ + 13.6905789, + 51.019400101 + ], + [ + 13.6896769, + 51.020307501 + ], + [ + 13.6887309, + 51.021469101 + ], + [ + 13.6884271, + 51.021845801 + ], + [ + 13.68767, + 51.022887301 + ], + [ + 13.6874789, + 51.023141201 + ], + [ + 13.6872724, + 51.023422901 + ], + [ + 13.6867661, + 51.024072101 + ], + [ + 13.6860521, + 51.024908301 + ], + [ + 13.6859228, + 51.025032801 + ], + [ + 13.6855899, + 51.025302101 + ], + [ + 13.6849731, + 51.025665401 + ], + [ + 13.6838729, + 51.026234801 + ], + [ + 13.6828865, + 51.026650001 + ], + [ + 13.6820767, + 51.026956401 + ], + [ + 13.6810728, + 51.027257501 + ], + [ + 13.6801222, + 51.027491001 + ], + [ + 13.6782486, + 51.027843501 + ], + [ + 13.6760708, + 51.028279001 + ], + [ + 13.6757137, + 51.028346501 + ], + [ + 13.6754248, + 51.028412801 + ], + [ + 13.674949, + 51.028550901 + ], + [ + 13.6742235, + 51.028792101 + ], + [ + 13.673812, + 51.028942801 + ], + [ + 13.6732107, + 51.029183801 + ], + [ + 13.6728157, + 51.029361701 + ], + [ + 13.6723453, + 51.029589901 + ], + [ + 13.6718865, + 51.029835901 + ], + [ + 13.6714659, + 51.030082601 + ], + [ + 13.6710595, + 51.030350801 + ], + [ + 13.6705204, + 51.030739201 + ], + [ + 13.6702865, + 51.030923801 + ], + [ + 13.6698348, + 51.031326101 + ], + [ + 13.6692639, + 51.031871801 + ], + [ + 13.668877, + 51.032236201 + ], + [ + 13.6684508, + 51.032617801 + ], + [ + 13.6678673, + 51.033073901 + ], + [ + 13.6675387, + 51.033304201 + ], + [ + 13.6672232, + 51.033517601 + ], + [ + 13.6668637, + 51.033744401 + ], + [ + 13.6664836, + 51.033965101 + ], + [ + 13.665899, + 51.034275201 + ], + [ + 13.6654842, + 51.034477501 + ], + [ + 13.6650842, + 51.034652501 + ], + [ + 13.6646305, + 51.034847001 + ], + [ + 13.6642121, + 51.035005801 + ], + [ + 13.6635415, + 51.035240701 + ], + [ + 13.6632431, + 51.035334801 + ], + [ + 13.6628359, + 51.035452401 + ], + [ + 13.6625366, + 51.035538701 + ], + [ + 13.6621301, + 51.035639101 + ], + [ + 13.6616435, + 51.035754501 + ], + [ + 13.6614127, + 51.035805701 + ], + [ + 13.660797, + 51.035925301 + ], + [ + 13.6603555, + 51.035996101 + ], + [ + 13.6597896, + 51.036075401 + ], + [ + 13.6591215, + 51.036153501 + ], + [ + 13.6585917, + 51.036200901 + ], + [ + 13.6580559, + 51.036240601 + ], + [ + 13.6575139, + 51.036269001 + ], + [ + 13.656917, + 51.036288301 + ], + [ + 13.6563095, + 51.036298901 + ], + [ + 13.6558124, + 51.036299801 + ], + [ + 13.6553054, + 51.036294001 + ], + [ + 13.6545256, + 51.036273101 + ], + [ + 13.6538587, + 51.036245401 + ], + [ + 13.6530965, + 51.036201501 + ], + [ + 13.6518075, + 51.036112101 + ], + [ + 13.6507401, + 51.036020601 + ], + [ + 13.6491883, + 51.035877501 + ], + [ + 13.6442933, + 51.035424301 + ], + [ + 13.6425371, + 51.035269101 + ], + [ + 13.6405158, + 51.035082701 + ], + [ + 13.6400467, + 51.035043101 + ], + [ + 13.6395819, + 51.035011201 + ], + [ + 13.6390582, + 51.034987701 + ], + [ + 13.6385093, + 51.034978501 + ], + [ + 13.6379967, + 51.034987001 + ], + [ + 13.6374951, + 51.035002901 + ], + [ + 13.6369933, + 51.035033701 + ], + [ + 13.6367138, + 51.035057901 + ], + [ + 13.6362281, + 51.035103901 + ], + [ + 13.6358115, + 51.035157701 + ], + [ + 13.6354647, + 51.035204901 + ], + [ + 13.6346787, + 51.035342101 + ], + [ + 13.6340434, + 51.035478101 + ], + [ + 13.633515, + 51.035610101 + ], + [ + 13.6324458, + 51.035890301 + ], + [ + 13.631712, + 51.036089801 + ], + [ + 13.6309774, + 51.036275001 + ], + [ + 13.630321, + 51.036431501 + ], + [ + 13.6295884, + 51.036588001 + ], + [ + 13.6286167, + 51.036768001 + ], + [ + 13.6277774, + 51.036899501 + ], + [ + 13.6273726, + 51.036953801 + ], + [ + 13.6268643, + 51.037013201 + ], + [ + 13.6263796, + 51.037063601 + ], + [ + 13.6256399, + 51.037126501 + ], + [ + 13.6249308, + 51.037172101 + ], + [ + 13.6241408, + 51.037205101 + ], + [ + 13.6233549, + 51.037218501 + ], + [ + 13.6229781, + 51.037219201 + ], + [ + 13.6223014, + 51.037211101 + ], + [ + 13.6212553, + 51.037176001 + ], + [ + 13.6200525, + 51.037114801 + ], + [ + 13.6194969, + 51.037093201 + ], + [ + 13.6194026, + 51.037090301 + ], + [ + 13.6189099, + 51.037075201 + ], + [ + 13.6181663, + 51.037069501 + ], + [ + 13.6176218, + 51.037085101 + ], + [ + 13.6171483, + 51.037113501 + ], + [ + 13.6167181, + 51.037149301 + ], + [ + 13.6163181, + 51.037192501 + ], + [ + 13.6159141, + 51.037247201 + ], + [ + 13.6155453, + 51.037305501 + ], + [ + 13.6151832, + 51.037372801 + ], + [ + 13.6146876, + 51.037477301 + ], + [ + 13.6142724, + 51.037576401 + ], + [ + 13.613903, + 51.037678501 + ], + [ + 13.6135022, + 51.037804101 + ], + [ + 13.6131023, + 51.037942701 + ], + [ + 13.6127754, + 51.038072301 + ], + [ + 13.612736518, + 51.038087703 + ] + ] + } + }, + { + "identifier": "2026-007996--vi-bs.2026-04-20_18-00-00-000.devi-zus.2026-04-20_18-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.00792845647463,13.730027131621439,51.03808770272521,13.612736518413998", + "point": "51.00792845647463,13.730027131621439", + "startLcPosition": "5", + "impact": { + "lower": "Dresden-West", + "upper": "Dresden-S\u00fcdvorstadt", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Dresden-S\u00fcdvorstadt - Dresden-West", + "coordinate": { + "lat": 51.00792845647463, + "long": 13.730027131621439 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 18:00 bis zum 21.04.26 06:00 Uhr.", + "", + "A17: Prag -> Dresden, zwischen AS Dresden-S\u00fcdvorstadt und 2.7 km vor AD Dresden-West", + "", + "L\u00e4nge: 9.46 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 von Dresden-S\u00fcdvorstadt (AS) nach Dresden-Gorbitz (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.730027132, + 51.007928456 + ], + [ + 13.7297915, + 51.007976801 + ], + [ + 13.7292564, + 51.008086501 + ], + [ + 13.7283169, + 51.008285701 + ], + [ + 13.7273451, + 51.008534801 + ], + [ + 13.7270117, + 51.008632101 + ], + [ + 13.7264563, + 51.008801401 + ], + [ + 13.7258517, + 51.009009401 + ], + [ + 13.7256789, + 51.009068501 + ], + [ + 13.725181, + 51.009259901 + ], + [ + 13.7248222, + 51.009399801 + ], + [ + 13.7241306, + 51.009703701 + ], + [ + 13.7235956, + 51.009961101 + ], + [ + 13.7231133, + 51.010218201 + ], + [ + 13.7227302, + 51.010427701 + ], + [ + 13.722152, + 51.010763901 + ], + [ + 13.7219044, + 51.010909401 + ], + [ + 13.721322, + 51.011258401 + ], + [ + 13.7201667, + 51.011907001 + ], + [ + 13.7195582, + 51.012210901 + ], + [ + 13.7191778, + 51.012385201 + ], + [ + 13.7189568, + 51.012480801 + ], + [ + 13.7187802, + 51.012557201 + ], + [ + 13.718396, + 51.012714101 + ], + [ + 13.7180063, + 51.012866001 + ], + [ + 13.7171769, + 51.013160501 + ], + [ + 13.7161383, + 51.013478901 + ], + [ + 13.7143987, + 51.013890901 + ], + [ + 13.7125663, + 51.014161801 + ], + [ + 13.7121315, + 51.014223301 + ], + [ + 13.7069856, + 51.014861501 + ], + [ + 13.7048797, + 51.015113201 + ], + [ + 13.7033565, + 51.015282701 + ], + [ + 13.7016646, + 51.015516301 + ], + [ + 13.6999838, + 51.015769401 + ], + [ + 13.698547, + 51.016043901 + ], + [ + 13.6976517, + 51.016242501 + ], + [ + 13.6969578, + 51.016397301 + ], + [ + 13.6955715, + 51.016790401 + ], + [ + 13.6942339, + 51.017295001 + ], + [ + 13.6930568, + 51.017784401 + ], + [ + 13.6922069, + 51.018305101 + ], + [ + 13.6913511, + 51.018826501 + ], + [ + 13.6905789, + 51.019400101 + ], + [ + 13.6896769, + 51.020307501 + ], + [ + 13.6887309, + 51.021469101 + ], + [ + 13.6884271, + 51.021845801 + ], + [ + 13.68767, + 51.022887301 + ], + [ + 13.6874789, + 51.023141201 + ], + [ + 13.6872724, + 51.023422901 + ], + [ + 13.6867661, + 51.024072101 + ], + [ + 13.6860521, + 51.024908301 + ], + [ + 13.6859228, + 51.025032801 + ], + [ + 13.6855899, + 51.025302101 + ], + [ + 13.6849731, + 51.025665401 + ], + [ + 13.6838729, + 51.026234801 + ], + [ + 13.6828865, + 51.026650001 + ], + [ + 13.6820767, + 51.026956401 + ], + [ + 13.6810728, + 51.027257501 + ], + [ + 13.6801222, + 51.027491001 + ], + [ + 13.6782486, + 51.027843501 + ], + [ + 13.6760708, + 51.028279001 + ], + [ + 13.6757137, + 51.028346501 + ], + [ + 13.6754248, + 51.028412801 + ], + [ + 13.674949, + 51.028550901 + ], + [ + 13.6742235, + 51.028792101 + ], + [ + 13.673812, + 51.028942801 + ], + [ + 13.6732107, + 51.029183801 + ], + [ + 13.6728157, + 51.029361701 + ], + [ + 13.6723453, + 51.029589901 + ], + [ + 13.6718865, + 51.029835901 + ], + [ + 13.6714659, + 51.030082601 + ], + [ + 13.6710595, + 51.030350801 + ], + [ + 13.6705204, + 51.030739201 + ], + [ + 13.6702865, + 51.030923801 + ], + [ + 13.6698348, + 51.031326101 + ], + [ + 13.6692639, + 51.031871801 + ], + [ + 13.668877, + 51.032236201 + ], + [ + 13.6684508, + 51.032617801 + ], + [ + 13.6678673, + 51.033073901 + ], + [ + 13.6675387, + 51.033304201 + ], + [ + 13.6672232, + 51.033517601 + ], + [ + 13.6668637, + 51.033744401 + ], + [ + 13.6664836, + 51.033965101 + ], + [ + 13.665899, + 51.034275201 + ], + [ + 13.6654842, + 51.034477501 + ], + [ + 13.6650842, + 51.034652501 + ], + [ + 13.6646305, + 51.034847001 + ], + [ + 13.6642121, + 51.035005801 + ], + [ + 13.6635415, + 51.035240701 + ], + [ + 13.6632431, + 51.035334801 + ], + [ + 13.6628359, + 51.035452401 + ], + [ + 13.6625366, + 51.035538701 + ], + [ + 13.6621301, + 51.035639101 + ], + [ + 13.6616435, + 51.035754501 + ], + [ + 13.6614127, + 51.035805701 + ], + [ + 13.660797, + 51.035925301 + ], + [ + 13.6603555, + 51.035996101 + ], + [ + 13.6597896, + 51.036075401 + ], + [ + 13.6591215, + 51.036153501 + ], + [ + 13.6585917, + 51.036200901 + ], + [ + 13.6580559, + 51.036240601 + ], + [ + 13.6575139, + 51.036269001 + ], + [ + 13.656917, + 51.036288301 + ], + [ + 13.6563095, + 51.036298901 + ], + [ + 13.6558124, + 51.036299801 + ], + [ + 13.6553054, + 51.036294001 + ], + [ + 13.6545256, + 51.036273101 + ], + [ + 13.6538587, + 51.036245401 + ], + [ + 13.6530965, + 51.036201501 + ], + [ + 13.6518075, + 51.036112101 + ], + [ + 13.6507401, + 51.036020601 + ], + [ + 13.6491883, + 51.035877501 + ], + [ + 13.6442933, + 51.035424301 + ], + [ + 13.6425371, + 51.035269101 + ], + [ + 13.6405158, + 51.035082701 + ], + [ + 13.6400467, + 51.035043101 + ], + [ + 13.6395819, + 51.035011201 + ], + [ + 13.6390582, + 51.034987701 + ], + [ + 13.6385093, + 51.034978501 + ], + [ + 13.6379967, + 51.034987001 + ], + [ + 13.6374951, + 51.035002901 + ], + [ + 13.6369933, + 51.035033701 + ], + [ + 13.6367138, + 51.035057901 + ], + [ + 13.6362281, + 51.035103901 + ], + [ + 13.6358115, + 51.035157701 + ], + [ + 13.6354647, + 51.035204901 + ], + [ + 13.6346787, + 51.035342101 + ], + [ + 13.6340434, + 51.035478101 + ], + [ + 13.633515, + 51.035610101 + ], + [ + 13.6324458, + 51.035890301 + ], + [ + 13.631712, + 51.036089801 + ], + [ + 13.6309774, + 51.036275001 + ], + [ + 13.630321, + 51.036431501 + ], + [ + 13.6295884, + 51.036588001 + ], + [ + 13.6286167, + 51.036768001 + ], + [ + 13.6277774, + 51.036899501 + ], + [ + 13.6273726, + 51.036953801 + ], + [ + 13.6268643, + 51.037013201 + ], + [ + 13.6263796, + 51.037063601 + ], + [ + 13.6256399, + 51.037126501 + ], + [ + 13.6249308, + 51.037172101 + ], + [ + 13.6241408, + 51.037205101 + ], + [ + 13.6233549, + 51.037218501 + ], + [ + 13.6229781, + 51.037219201 + ], + [ + 13.6223014, + 51.037211101 + ], + [ + 13.6212553, + 51.037176001 + ], + [ + 13.6200525, + 51.037114801 + ], + [ + 13.6194969, + 51.037093201 + ], + [ + 13.6194026, + 51.037090301 + ], + [ + 13.6189099, + 51.037075201 + ], + [ + 13.6181663, + 51.037069501 + ], + [ + 13.6176218, + 51.037085101 + ], + [ + 13.6171483, + 51.037113501 + ], + [ + 13.6167181, + 51.037149301 + ], + [ + 13.6163181, + 51.037192501 + ], + [ + 13.6159141, + 51.037247201 + ], + [ + 13.6155453, + 51.037305501 + ], + [ + 13.6151832, + 51.037372801 + ], + [ + 13.6146876, + 51.037477301 + ], + [ + 13.6142724, + 51.037576401 + ], + [ + 13.613903, + 51.037678501 + ], + [ + 13.6135022, + 51.037804101 + ], + [ + 13.6131023, + 51.037942701 + ], + [ + 13.6127754, + 51.038072301 + ], + [ + 13.612736518, + 51.038087703 + ] + ] + } + }, + { + "identifier": "2026-017238--vi-bs.2026-04-20_19-00-00-000.devi-zus.2026-04-20_19-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.01301198792052,13.71759516057023,51.028783035441755,13.67425076846781", + "point": "51.01301198792052,13.71759516057023", + "startLcPosition": "5", + "impact": { + "lower": "Altfranken", + "upper": "Dresden-S\u00fcdvorstadt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Dresden-S\u00fcdvorstadt - Altfranken", + "coordinate": { + "lat": 51.01301198792052, + "long": 13.71759516057023 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:00 bis zum 21.04.26 06:00 Uhr.", + "", + "A17: Prag -> Dresden, zwischen 1.1 km hinter AS Dresden-S\u00fcdvorstadt und 2.5 km vor Altfranken", + "", + "L\u00e4nge: 3.7 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A17 von Dresden-S\u00fcdvorstadt (AS) nach Altfranken (Tunnel) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.717595161, + 51.013011988 + ], + [ + 13.7171769, + 51.013160501 + ], + [ + 13.7161383, + 51.013478901 + ], + [ + 13.7143987, + 51.013890901 + ], + [ + 13.7125663, + 51.014161801 + ], + [ + 13.7121315, + 51.014223301 + ], + [ + 13.7069856, + 51.014861501 + ], + [ + 13.7048797, + 51.015113201 + ], + [ + 13.7033565, + 51.015282701 + ], + [ + 13.7016646, + 51.015516301 + ], + [ + 13.6999838, + 51.015769401 + ], + [ + 13.698547, + 51.016043901 + ], + [ + 13.6976517, + 51.016242501 + ], + [ + 13.6969578, + 51.016397301 + ], + [ + 13.6955715, + 51.016790401 + ], + [ + 13.6942339, + 51.017295001 + ], + [ + 13.6930568, + 51.017784401 + ], + [ + 13.6922069, + 51.018305101 + ], + [ + 13.6913511, + 51.018826501 + ], + [ + 13.6905789, + 51.019400101 + ], + [ + 13.6896769, + 51.020307501 + ], + [ + 13.6887309, + 51.021469101 + ], + [ + 13.6884271, + 51.021845801 + ], + [ + 13.68767, + 51.022887301 + ], + [ + 13.6874789, + 51.023141201 + ], + [ + 13.6872724, + 51.023422901 + ], + [ + 13.6867661, + 51.024072101 + ], + [ + 13.6860521, + 51.024908301 + ], + [ + 13.6859228, + 51.025032801 + ], + [ + 13.6855899, + 51.025302101 + ], + [ + 13.6849731, + 51.025665401 + ], + [ + 13.6838729, + 51.026234801 + ], + [ + 13.6828865, + 51.026650001 + ], + [ + 13.6820767, + 51.026956401 + ], + [ + 13.6810728, + 51.027257501 + ], + [ + 13.6801222, + 51.027491001 + ], + [ + 13.6782486, + 51.027843501 + ], + [ + 13.6760708, + 51.028279001 + ], + [ + 13.6757137, + 51.028346501 + ], + [ + 13.6754248, + 51.028412801 + ], + [ + 13.674949, + 51.028550901 + ], + [ + 13.674250768, + 51.028783035 + ] + ] + } + }, + { + "identifier": "2026-017250--vi-bs.2026-04-22_19-00-00-000.devi-zus.2026-04-22_19-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.01301198792052,13.71759516057023,51.028783035441755,13.67425076846781", + "point": "51.01301198792052,13.71759516057023", + "startLcPosition": "5", + "impact": { + "lower": "Altfranken", + "upper": "Dresden-S\u00fcdvorstadt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Dresden-S\u00fcdvorstadt - Altfranken", + "coordinate": { + "lat": 51.01301198792052, + "long": 13.71759516057023 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 19:00 bis zum 23.04.26 06:00 Uhr.", + "", + "A17: Prag -> Dresden, zwischen 1.1 km hinter AS Dresden-S\u00fcdvorstadt und 2.5 km vor Altfranken", + "", + "L\u00e4nge: 3.7 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A17 von Dresden-S\u00fcdvorstadt (AS) nach Altfranken (Tunnel) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.717595161, + 51.013011988 + ], + [ + 13.7171769, + 51.013160501 + ], + [ + 13.7161383, + 51.013478901 + ], + [ + 13.7143987, + 51.013890901 + ], + [ + 13.7125663, + 51.014161801 + ], + [ + 13.7121315, + 51.014223301 + ], + [ + 13.7069856, + 51.014861501 + ], + [ + 13.7048797, + 51.015113201 + ], + [ + 13.7033565, + 51.015282701 + ], + [ + 13.7016646, + 51.015516301 + ], + [ + 13.6999838, + 51.015769401 + ], + [ + 13.698547, + 51.016043901 + ], + [ + 13.6976517, + 51.016242501 + ], + [ + 13.6969578, + 51.016397301 + ], + [ + 13.6955715, + 51.016790401 + ], + [ + 13.6942339, + 51.017295001 + ], + [ + 13.6930568, + 51.017784401 + ], + [ + 13.6922069, + 51.018305101 + ], + [ + 13.6913511, + 51.018826501 + ], + [ + 13.6905789, + 51.019400101 + ], + [ + 13.6896769, + 51.020307501 + ], + [ + 13.6887309, + 51.021469101 + ], + [ + 13.6884271, + 51.021845801 + ], + [ + 13.68767, + 51.022887301 + ], + [ + 13.6874789, + 51.023141201 + ], + [ + 13.6872724, + 51.023422901 + ], + [ + 13.6867661, + 51.024072101 + ], + [ + 13.6860521, + 51.024908301 + ], + [ + 13.6859228, + 51.025032801 + ], + [ + 13.6855899, + 51.025302101 + ], + [ + 13.6849731, + 51.025665401 + ], + [ + 13.6838729, + 51.026234801 + ], + [ + 13.6828865, + 51.026650001 + ], + [ + 13.6820767, + 51.026956401 + ], + [ + 13.6810728, + 51.027257501 + ], + [ + 13.6801222, + 51.027491001 + ], + [ + 13.6782486, + 51.027843501 + ], + [ + 13.6760708, + 51.028279001 + ], + [ + 13.6757137, + 51.028346501 + ], + [ + 13.6754248, + 51.028412801 + ], + [ + 13.674949, + 51.028550901 + ], + [ + 13.674250768, + 51.028783035 + ] + ] + } + }, + { + "identifier": "2026-003724--vi-bs.2026-04-20_09-00-00-000.devi-bs.2026-04-20_09-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.00690457159981,13.734451953815446,51.004681675757546,13.740690504898476", + "point": "51.00690457159981,13.734451953815446", + "startLcPosition": "5", + "impact": { + "lower": "Am N\u00f6thnitzgrund", + "upper": "Dresden-S\u00fcdvorstadt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Dresden-S\u00fcdvorstadt - Am N\u00f6thnitzgrund", + "coordinate": { + "lat": 51.00690457159981, + "long": 13.734451953815446 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "28.04.26 von 09:00 bis 17:00 Uhr", + "", + "A17: Dresden -> Prag, zwischen 0.3 km hinter AS Dresden-S\u00fcdvorstadt und 0.4 km vor Am N\u00f6thnitzgrund", + "", + "L\u00e4nge: 0.51 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 N\u00f6thnitzgrundbr\u00fccke - beide RF - Bauwerkspr\u00fcfung - 021-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.734451954, + 51.006904572 + ], + [ + 13.7344532, + 51.006904301 + ], + [ + 13.7350475, + 51.006762701 + ], + [ + 13.7355213, + 51.006640101 + ], + [ + 13.7359316, + 51.006529601 + ], + [ + 13.7363212, + 51.006418001 + ], + [ + 13.7370245, + 51.006194501 + ], + [ + 13.7376451, + 51.005976901 + ], + [ + 13.7380653, + 51.005823601 + ], + [ + 13.738492, + 51.005664401 + ], + [ + 13.7389481, + 51.005487701 + ], + [ + 13.7392974, + 51.005342801 + ], + [ + 13.739812, + 51.005112401 + ], + [ + 13.7404411, + 51.004810201 + ], + [ + 13.740690505, + 51.004681676 + ] + ] + } + }, + { + "identifier": "2026-003724--vi-bs.2026-04-20_09-00-00-000.devi-bs.2026-04-20_09-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.00690457159981,13.734451953815446,51.004681675757546,13.740690504898476", + "point": "51.00690457159981,13.734451953815446", + "startLcPosition": "5", + "impact": { + "lower": "Am N\u00f6thnitzgrund", + "upper": "Dresden-S\u00fcdvorstadt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Dresden-S\u00fcdvorstadt - Am N\u00f6thnitzgrund", + "coordinate": { + "lat": 51.00690457159981, + "long": 13.734451953815446 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 09:00 bis 17:00 Uhr", + "22.04.26 von 09:00 bis 17:00 Uhr", + "", + "A17: Dresden -> Prag, zwischen 0.3 km hinter AS Dresden-S\u00fcdvorstadt und 0.4 km vor Am N\u00f6thnitzgrund", + "", + "L\u00e4nge: 0.51 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 N\u00f6thnitzgrundbr\u00fccke - beide RF - Bauwerkspr\u00fcfung - 021-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.734451954, + 51.006904572 + ], + [ + 13.7344532, + 51.006904301 + ], + [ + 13.7350475, + 51.006762701 + ], + [ + 13.7355213, + 51.006640101 + ], + [ + 13.7359316, + 51.006529601 + ], + [ + 13.7363212, + 51.006418001 + ], + [ + 13.7370245, + 51.006194501 + ], + [ + 13.7376451, + 51.005976901 + ], + [ + 13.7380653, + 51.005823601 + ], + [ + 13.738492, + 51.005664401 + ], + [ + 13.7389481, + 51.005487701 + ], + [ + 13.7392974, + 51.005342801 + ], + [ + 13.739812, + 51.005112401 + ], + [ + 13.7404411, + 51.004810201 + ], + [ + 13.740690505, + 51.004681676 + ] + ] + } + }, + { + "identifier": "2026-003724--vi-bs.2026-04-20_09-00-00-000.devi-bs.2026-04-20_09-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.00527605167953,13.739744205618095,51.00679349722807,13.73540346888004", + "point": "51.00527605167953,13.739744205618095", + "startLcPosition": "6", + "impact": { + "lower": "Dresden-S\u00fcdvorstadt", + "upper": "Am N\u00f6thnitzgrund", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Am N\u00f6thnitzgrund - Dresden-S\u00fcdvorstadt", + "coordinate": { + "lat": 51.00527605167953, + "long": 13.739744205618095 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "28.04.26 von 09:00 bis 17:00 Uhr", + "", + "A17: Prag -> Dresden, zwischen 0.5 km hinter Am N\u00f6thnitzgrund und 0.4 km vor AS Dresden-S\u00fcdvorstadt", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 N\u00f6thnitzgrundbr\u00fccke - beide RF - Bauwerkspr\u00fcfung - 021-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.739744206, + 51.005276052 + ], + [ + 13.7394661, + 51.005399201 + ], + [ + 13.7390467, + 51.005579001 + ], + [ + 13.7386046, + 51.005751901 + ], + [ + 13.7381928, + 51.005906801 + ], + [ + 13.7377923, + 51.006056401 + ], + [ + 13.7373754, + 51.006202101 + ], + [ + 13.7370916, + 51.006296901 + ], + [ + 13.7364766, + 51.006493701 + ], + [ + 13.7359837, + 51.006639301 + ], + [ + 13.7354973, + 51.006770101 + ], + [ + 13.735403469, + 51.006793497 + ] + ] + } + }, + { + "identifier": "2026-003724--vi-bs.2026-04-20_09-00-00-000.devi-bs.2026-04-20_09-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.00527605167953,13.739744205618095,51.00679349722807,13.73540346888004", + "point": "51.00527605167953,13.739744205618095", + "startLcPosition": "6", + "impact": { + "lower": "Dresden-S\u00fcdvorstadt", + "upper": "Am N\u00f6thnitzgrund", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Am N\u00f6thnitzgrund - Dresden-S\u00fcdvorstadt", + "coordinate": { + "lat": 51.00527605167953, + "long": 13.739744205618095 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 17:00 Uhr", + "23.04.26 von 09:00 bis 17:00 Uhr", + "", + "A17: Prag -> Dresden, zwischen 0.5 km hinter Am N\u00f6thnitzgrund und 0.4 km vor AS Dresden-S\u00fcdvorstadt", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 N\u00f6thnitzgrundbr\u00fccke - beide RF - Bauwerkspr\u00fcfung - 021-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.739744206, + 51.005276052 + ], + [ + 13.7394661, + 51.005399201 + ], + [ + 13.7390467, + 51.005579001 + ], + [ + 13.7386046, + 51.005751901 + ], + [ + 13.7381928, + 51.005906801 + ], + [ + 13.7377923, + 51.006056401 + ], + [ + 13.7373754, + 51.006202101 + ], + [ + 13.7370916, + 51.006296901 + ], + [ + 13.7364766, + 51.006493701 + ], + [ + 13.7359837, + 51.006639301 + ], + [ + 13.7354973, + 51.006770101 + ], + [ + 13.735403469, + 51.006793497 + ] + ] + } + }, + { + "identifier": "2026-017492--vi-bs.2026-04-13_21-00-00-000.devi-zus.2026-04-13_21-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.94217962226956,13.87648633906464,50.95354816558229,13.870626322825677", + "point": "50.94217962226956,13.87648633906464", + "startLcPosition": "10", + "impact": { + "lower": "Heidenau in Sachsen", + "upper": "Bahretal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Bahretal - Heidenau in Sachsen", + "coordinate": { + "lat": 50.94217962226956, + "long": 13.87648633906464 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 21:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A17: Prag -> Dresden, zwischen 5.2 km hinter AS Bahretal und 5.1 km vor AS Heidenau in Sachsen", + "", + "L\u00e4nge: 1.35 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 Km 24,9 RF DD - AS Pirna - Markierungsarbeiten - 065-26" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.876486339, + 50.942179622 + ], + [ + 13.8761061, + 50.942499901 + ], + [ + 13.8754261, + 50.943158701 + ], + [ + 13.8752792, + 50.943312601 + ], + [ + 13.8748681, + 50.943753301 + ], + [ + 13.8746641, + 50.943999401 + ], + [ + 13.8742281, + 50.944562901 + ], + [ + 13.8739785, + 50.944917201 + ], + [ + 13.8735109, + 50.945665201 + ], + [ + 13.8732409, + 50.946160501 + ], + [ + 13.8730623, + 50.946531201 + ], + [ + 13.8728278, + 50.947106601 + ], + [ + 13.8727175, + 50.947425301 + ], + [ + 13.8725351, + 50.948054601 + ], + [ + 13.8723763, + 50.948712201 + ], + [ + 13.8721491, + 50.949829901 + ], + [ + 13.871913, + 50.950804101 + ], + [ + 13.8717229, + 50.951371501 + ], + [ + 13.8716674, + 50.951526701 + ], + [ + 13.8714841, + 50.952009401 + ], + [ + 13.8711435, + 50.952690001 + ], + [ + 13.8708096, + 50.953257001 + ], + [ + 13.870626323, + 50.953548166 + ] + ] + } + }, + { + "identifier": "2026-008050--vi-bs.2026-04-21_18-00-00-000.devi-zus.2026-04-21_18-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.788208200081435,13.892001219968055,50.78518953647685,13.895109829200203", + "point": "50.788208200081435,13.892001219968055", + "startLcPosition": "12", + "impact": { + "lower": "Breitenau-Sch\u00f6nwald", + "upper": "Am Heidenholz", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Am Heidenholz - Breitenau-Sch\u00f6nwald", + "coordinate": { + "lat": 50.788208200081435, + "long": 13.892001219968055 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 18:00 bis 24:00 Uhr", + "", + "A17: Dresden -> Prag, zwischen 4.0 km hinter Am Heidenholz und 0.3 km vor Breitenau-Sch\u00f6nwald", + "", + "L\u00e4nge: 0.4 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 von Breitenau-Sch\u00f6nwald nach Am Heidenholz (Rastplatz) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.89200122, + 50.7882082 + ], + [ + 13.8922955, + 50.787900601 + ], + [ + 13.8924996, + 50.787687301 + ], + [ + 13.8947755, + 50.785457701 + ], + [ + 13.895109829, + 50.785189536 + ] + ] + } + }, + { + "identifier": "2026-016995--vi-bs.2026-04-21_23-00-00-000.devi-zus.2026-04-21_23-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.788208200081435,13.892001219968055,50.78385098414006,13.896970430876696", + "point": "50.788208200081435,13.892001219968055", + "startLcPosition": "12", + "impact": { + "lower": "Breitenau-Sch\u00f6nwald", + "upper": "Am Heidenholz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Am Heidenholz - Breitenau-Sch\u00f6nwald", + "coordinate": { + "lat": 50.788208200081435, + "long": 13.892001219968055 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 23:00 bis zum 22.04.26 04:00 Uhr.", + "", + "A17: Dresden -> Prag, zwischen 4.0 km hinter Am Heidenholz und 0.1 km vor Breitenau-Sch\u00f6nwald", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A17 von Am Heidenholz (Rastplatz) nach Breitenau-Sch\u00f6nwald Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.89200122, + 50.7882082 + ], + [ + 13.8922955, + 50.787900601 + ], + [ + 13.8924996, + 50.787687301 + ], + [ + 13.8947755, + 50.785457701 + ], + [ + 13.8952232, + 50.785098601 + ], + [ + 13.8956788, + 50.784745801 + ], + [ + 13.8959571, + 50.784540601 + ], + [ + 13.8965704, + 50.784100501 + ], + [ + 13.8969325, + 50.783874601 + ], + [ + 13.896970431, + 50.783850984 + ] + ] + } + }, + { + "identifier": "2026-016989--vi-bs.2026-04-21_19-00-00-000.devi-zus.2026-04-21_19-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.78896314331841,13.89124072553352,50.78385098414006,13.896970430876696", + "point": "50.78896314331841,13.89124072553352", + "startLcPosition": "12", + "impact": { + "lower": "Breitenau-Sch\u00f6nwald", + "upper": "Am Heidenholz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Am Heidenholz - Breitenau-Sch\u00f6nwald", + "coordinate": { + "lat": 50.78896314331841, + "long": 13.89124072553352 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 19:00 bis zum 22.04.26 01:00 Uhr.", + "", + "A17: Dresden -> Prag, zwischen 3.9 km hinter Am Heidenholz und 0.1 km vor Breitenau-Sch\u00f6nwald", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 von Am Heidenholz (Rastplatz) nach Breitenau-Sch\u00f6nwald Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.891240726, + 50.788963143 + ], + [ + 13.8918403, + 50.788376401 + ], + [ + 13.8922955, + 50.787900601 + ], + [ + 13.8924996, + 50.787687301 + ], + [ + 13.8947755, + 50.785457701 + ], + [ + 13.8952232, + 50.785098601 + ], + [ + 13.8956788, + 50.784745801 + ], + [ + 13.8959571, + 50.784540601 + ], + [ + 13.8965704, + 50.784100501 + ], + [ + 13.8969325, + 50.783874601 + ], + [ + 13.896970431, + 50.783850984 + ] + ] + } + }, + { + "identifier": "2026-008054--vi-bs.2026-04-22_00-00-00-000.devi-zus.2026-04-22_00-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.788208200081435,13.892001219968055,50.78518953647685,13.895109829200203", + "point": "50.788208200081435,13.892001219968055", + "startLcPosition": "12", + "impact": { + "lower": "Breitenau-Sch\u00f6nwald", + "upper": "Am Heidenholz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dresden -> Prag", + "title": "A17 | Am Heidenholz - Breitenau-Sch\u00f6nwald", + "coordinate": { + "lat": 50.788208200081435, + "long": 13.892001219968055 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 00:00 bis 06:00 Uhr", + "", + "A17: Dresden -> Prag, zwischen 4.0 km hinter Am Heidenholz und 0.3 km vor Breitenau-Sch\u00f6nwald", + "", + "L\u00e4nge: 0.4 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A17 von Breitenau-Sch\u00f6nwald nach Am Heidenholz (Rastplatz) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.89200122, + 50.7882082 + ], + [ + 13.8922955, + 50.787900601 + ], + [ + 13.8924996, + 50.787687301 + ], + [ + 13.8947755, + 50.785457701 + ], + [ + 13.895109829, + 50.785189536 + ] + ] + } + }, + { + "identifier": "2026-008050--vi-bs.2026-04-21_18-00-00-000.devi-zus.2026-04-21_18-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.785257481940775,13.895245842136514,50.78826681767468,13.892153396077324", + "point": "50.785257481940775,13.895245842136514", + "startLcPosition": "13", + "impact": { + "lower": "Am Heidenholz", + "upper": "Breitenau-Sch\u00f6nwald", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Breitenau-Sch\u00f6nwald - Am Heidenholz", + "coordinate": { + "lat": 50.785257481940775, + "long": 13.895245842136514 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 18:00 bis 24:00 Uhr", + "", + "A17: Prag -> Dresden, zwischen 0.3 km hinter Breitenau-Sch\u00f6nwald und 4.0 km vor Am Heidenholz", + "", + "L\u00e4nge: 0.4 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 von Breitenau-Sch\u00f6nwald nach Am Heidenholz (Rastplatz) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.895245842, + 50.785257482 + ], + [ + 13.8949133, + 50.785525801 + ], + [ + 13.8926593, + 50.787739701 + ], + [ + 13.8924069, + 50.788003201 + ], + [ + 13.892153396, + 50.788266818 + ] + ] + } + }, + { + "identifier": "2026-016995--vi-bs.2026-04-21_23-00-00-000.devi-zus.2026-04-21_23-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.783930669460545,13.897093828792775,50.78826681767468,13.892153396077324", + "point": "50.783930669460545,13.897093828792775", + "startLcPosition": "13", + "impact": { + "lower": "Am Heidenholz", + "upper": "Breitenau-Sch\u00f6nwald", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Breitenau-Sch\u00f6nwald - Am Heidenholz", + "coordinate": { + "lat": 50.783930669460545, + "long": 13.897093828792775 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 23:00 bis zum 22.04.26 04:00 Uhr.", + "", + "A17: Prag -> Dresden, zwischen 0.1 km hinter Breitenau-Sch\u00f6nwald und 4.0 km vor Am Heidenholz", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A17 von Am Heidenholz (Rastplatz) nach Breitenau-Sch\u00f6nwald Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.897093829, + 50.783930669 + ], + [ + 13.8970814, + 50.783938401 + ], + [ + 13.8967011, + 50.784182501 + ], + [ + 13.8961961, + 50.784545901 + ], + [ + 13.895815, + 50.784820101 + ], + [ + 13.8953555, + 50.785169001 + ], + [ + 13.8949133, + 50.785525801 + ], + [ + 13.8926593, + 50.787739701 + ], + [ + 13.8924069, + 50.788003201 + ], + [ + 13.892153396, + 50.788266818 + ] + ] + } + }, + { + "identifier": "2026-016989--vi-bs.2026-04-21_19-00-00-000.devi-zus.2026-04-21_19-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.783930669460545,13.897093828792775,50.7890243840722,13.891390012207125", + "point": "50.783930669460545,13.897093828792775", + "startLcPosition": "13", + "impact": { + "lower": "Am Heidenholz", + "upper": "Breitenau-Sch\u00f6nwald", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Breitenau-Sch\u00f6nwald - Am Heidenholz", + "coordinate": { + "lat": 50.783930669460545, + "long": 13.897093828792775 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 19:00 bis zum 22.04.26 01:00 Uhr.", + "", + "A17: Prag -> Dresden, zwischen 0.1 km hinter Breitenau-Sch\u00f6nwald und 3.9 km vor Am Heidenholz", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A17 von Am Heidenholz (Rastplatz) nach Breitenau-Sch\u00f6nwald Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.897093829, + 50.783930669 + ], + [ + 13.8970814, + 50.783938401 + ], + [ + 13.8967011, + 50.784182501 + ], + [ + 13.8961961, + 50.784545901 + ], + [ + 13.895815, + 50.784820101 + ], + [ + 13.8953555, + 50.785169001 + ], + [ + 13.8949133, + 50.785525801 + ], + [ + 13.8926593, + 50.787739701 + ], + [ + 13.8924069, + 50.788003201 + ], + [ + 13.8920158, + 50.788409901 + ], + [ + 13.891390012, + 50.789024384 + ] + ] + } + }, + { + "identifier": "2026-008054--vi-bs.2026-04-22_00-00-00-000.devi-zus.2026-04-22_00-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.785257481940775,13.895245842136514,50.78826681767468,13.892153396077324", + "point": "50.785257481940775,13.895245842136514", + "startLcPosition": "13", + "impact": { + "lower": "Am Heidenholz", + "upper": "Breitenau-Sch\u00f6nwald", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Prag -> Dresden", + "title": "A17 | Breitenau-Sch\u00f6nwald - Am Heidenholz", + "coordinate": { + "lat": 50.785257481940775, + "long": 13.895245842136514 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 00:00 bis 06:00 Uhr", + "", + "A17: Prag -> Dresden, zwischen 0.3 km hinter Breitenau-Sch\u00f6nwald und 4.0 km vor Am Heidenholz", + "", + "L\u00e4nge: 0.4 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A17 von Breitenau-Sch\u00f6nwald nach Am Heidenholz (Rastplatz) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.895245842, + 50.785257482 + ], + [ + 13.8949133, + 50.785525801 + ], + [ + 13.8926593, + 50.787739701 + ], + [ + 13.8924069, + 50.788003201 + ], + [ + 13.892153396, + 50.788266818 + ] + ] + } + } + ] + }, + "A19": { + "roadworks": [ + { + "identifier": "2023-007252--vi-bs.2026-04-23_18-00-00-000.devi-zus.2025-10-01_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.1462204424547,12.452196701182142,53.162973831292646,12.44822523286785", + "point": "53.1462204424547,12.452196701182142", + "startLcPosition": "0", + "impact": { + "lower": "Eldetal", + "upper": "Wittstock/Dosse", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "A19 | Wittstock/Dosse - Eldetal", + "startTimestamp": "2026-04-23T18:00:00+02:00", + "coordinate": { + "lat": 53.1462204424547, + "long": 12.452196701182142 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.04.26 um 18:00 Uhr", + "Ende: 28.08.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 1.3 km hinter AD Wittstock/Dosse und 16.0 km vor Eldetal", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 3.7 m", + "", + "A19 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.452196701, + 53.146220442 + ], + [ + 12.4512921, + 53.147852801 + ], + [ + 12.450531, + 53.149314401 + ], + [ + 12.4500257, + 53.150352901 + ], + [ + 12.4498266, + 53.150818101 + ], + [ + 12.4496568, + 53.151234201 + ], + [ + 12.4495286, + 53.151562201 + ], + [ + 12.4492522, + 53.152308301 + ], + [ + 12.4488936, + 53.153452101 + ], + [ + 12.4487151, + 53.154062401 + ], + [ + 12.4485244, + 53.154804701 + ], + [ + 12.4484065, + 53.155381401 + ], + [ + 12.4482572, + 53.156126101 + ], + [ + 12.4480769, + 53.157477201 + ], + [ + 12.4480193, + 53.158006801 + ], + [ + 12.4479889, + 53.158561701 + ], + [ + 12.4479596, + 53.159385601 + ], + [ + 12.4479813, + 53.160130701 + ], + [ + 12.4480061, + 53.161109001 + ], + [ + 12.44813, + 53.162424601 + ], + [ + 12.448225233, + 53.162973831 + ] + ] + } + }, + { + "identifier": "2023-007252--vi-bs.2026-03-16_09-00-00-000.devi-zus.2025-10-01_00-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.1462204424547,12.452196701182142,53.16475431283997,12.448576267739991", + "point": "53.1462204424547,12.452196701182142", + "startLcPosition": "0", + "impact": { + "lower": "Eldetal", + "upper": "Wittstock/Dosse", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "A19 | Wittstock/Dosse - Eldetal", + "startTimestamp": "2026-03-16T09:00:00+01:00", + "coordinate": { + "lat": 53.1462204424547, + "long": 12.452196701182142 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 09:00 Uhr", + "Ende: 23.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 1.3 km hinter AD Wittstock/Dosse und 15.8 km vor Eldetal", + "", + "L\u00e4nge: 2.1 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A19 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.452196701, + 53.146220442 + ], + [ + 12.4512921, + 53.147852801 + ], + [ + 12.450531, + 53.149314401 + ], + [ + 12.4500257, + 53.150352901 + ], + [ + 12.4498266, + 53.150818101 + ], + [ + 12.4496568, + 53.151234201 + ], + [ + 12.4495286, + 53.151562201 + ], + [ + 12.4492522, + 53.152308301 + ], + [ + 12.4488936, + 53.153452101 + ], + [ + 12.4487151, + 53.154062401 + ], + [ + 12.4485244, + 53.154804701 + ], + [ + 12.4484065, + 53.155381401 + ], + [ + 12.4482572, + 53.156126101 + ], + [ + 12.4480769, + 53.157477201 + ], + [ + 12.4480193, + 53.158006801 + ], + [ + 12.4479889, + 53.158561701 + ], + [ + 12.4479596, + 53.159385601 + ], + [ + 12.4479813, + 53.160130701 + ], + [ + 12.4480061, + 53.161109001 + ], + [ + 12.44813, + 53.162424601 + ], + [ + 12.4484052, + 53.164011701 + ], + [ + 12.4485122, + 53.164497601 + ], + [ + 12.448576268, + 53.164754313 + ] + ] + } + }, + { + "identifier": "2026-010651--vi-bs.2026-03-09_09-00-00-000.devi-bs.2026-03-09_09-00-00-000_040.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.2673325730154,12.45262989589315,53.288138597980925,12.466830623184318", + "point": "53.2673325730154,12.45262989589315", + "startLcPosition": "1", + "impact": { + "lower": "Eldetal", + "upper": "Wittstock", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "A19 | Wittstock - Eldetal", + "coordinate": { + "lat": 53.2673325730154, + "long": 12.45262989589315 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 19:00 Uhr", + "14.04.26 von 07:00 bis 19:00 Uhr", + "15.04.26 von 07:00 bis 19:00 Uhr", + "16.04.26 von 07:00 bis 19:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "", + "A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 12.4 km hinter AS Wittstock und 1.7 km vor Eldetal", + "", + "L\u00e4nge: 2.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A19 Fahrbahninstandsetzung Betonfahrbahn AM Malchow (A-P0422-30_2024-314 Leitweg-ID 992-02766-22)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.452629896, + 53.267332573 + ], + [ + 12.452716, + 53.267480201 + ], + [ + 12.4533554, + 53.268491001 + ], + [ + 12.454054, + 53.269573601 + ], + [ + 12.454439, + 53.270126701 + ], + [ + 12.4547444, + 53.270565401 + ], + [ + 12.4558652, + 53.272192201 + ], + [ + 12.4570047, + 53.273848301 + ], + [ + 12.4578966, + 53.275153801 + ], + [ + 12.4587606, + 53.276431401 + ], + [ + 12.4597553, + 53.277893201 + ], + [ + 12.4607967, + 53.279384301 + ], + [ + 12.4617821, + 53.280826401 + ], + [ + 12.4627861, + 53.282271401 + ], + [ + 12.4637458, + 53.283659001 + ], + [ + 12.4647172, + 53.285070301 + ], + [ + 12.4664676, + 53.287602201 + ], + [ + 12.466830623, + 53.288138598 + ] + ] + } + }, + { + "identifier": "2026-010651--vi-bs.2026-03-09_09-00-00-000.devi-bs.2026-03-09_09-00-00-000_040.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.2673325730154,12.45262989589315,53.283977980161545,12.463965347625996", + "point": "53.2673325730154,12.45262989589315", + "startLcPosition": "1", + "impact": { + "lower": "Eldetal", + "upper": "Wittstock", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "A19 | Wittstock - Eldetal", + "coordinate": { + "lat": 53.2673325730154, + "long": 12.45262989589315 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 19:00 Uhr", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 12.4 km hinter AS Wittstock und 2.2 km vor Eldetal", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A19 Fahrbahninstandsetzung Betonfahrbahn AM Malchow (A-P0422-30_2024-314 Leitweg-ID 992-02766-22)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.452629896, + 53.267332573 + ], + [ + 12.452716, + 53.267480201 + ], + [ + 12.4533554, + 53.268491001 + ], + [ + 12.454054, + 53.269573601 + ], + [ + 12.454439, + 53.270126701 + ], + [ + 12.4547444, + 53.270565401 + ], + [ + 12.4558652, + 53.272192201 + ], + [ + 12.4570047, + 53.273848301 + ], + [ + 12.4578966, + 53.275153801 + ], + [ + 12.4587606, + 53.276431401 + ], + [ + 12.4597553, + 53.277893201 + ], + [ + 12.4607967, + 53.279384301 + ], + [ + 12.4617821, + 53.280826401 + ], + [ + 12.4627861, + 53.282271401 + ], + [ + 12.4637458, + 53.283659001 + ], + [ + 12.463965348, + 53.28397798 + ] + ] + } + }, + { + "identifier": "2026-017298--vi-bs.2026-04-20_09-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.25016755616264,12.447419553629286,53.6456474231652,12.369012792001078", + "point": "53.25016755616264,12.447419553629286", + "startLcPosition": "1", + "impact": { + "lower": "Krakow am See", + "upper": "Wittstock", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "A19 | Wittstock - Krakow am See", + "coordinate": { + "lat": 53.25016755616264, + "long": 12.447419553629286 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 09:00 bis 17:00 Uhr", + "21.04.26 von 07:00 bis 17:00 Uhr", + "22.04.26 von 07:00 bis 17:00 Uhr", + "23.04.26 von 07:00 bis 17:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "", + "A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 10.5 km hinter AS Wittstock und 4.2 km vor AS Krakow am See", + "", + "L\u00e4nge: 48.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A19 von Wittstock (AS) nach Krakow am See (AS) Markierungsarbeiten im Bereich der AM Malchow" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.447419554, + 53.250167556 + ], + [ + 12.4474716, + 53.251325101 + ], + [ + 12.4475861, + 53.252719301 + ], + [ + 12.4477775, + 53.254170801 + ], + [ + 12.4480741, + 53.255796801 + ], + [ + 12.4483239, + 53.256893301 + ], + [ + 12.4485901, + 53.257968901 + ], + [ + 12.4489077, + 53.259043101 + ], + [ + 12.4492602, + 53.260125601 + ], + [ + 12.4496572, + 53.261210801 + ], + [ + 12.4500612, + 53.262224801 + ], + [ + 12.4504628, + 53.263164801 + ], + [ + 12.4512964, + 53.264888201 + ], + [ + 12.4517564, + 53.265779301 + ], + [ + 12.452242, + 53.266667501 + ], + [ + 12.452716, + 53.267480201 + ], + [ + 12.4533554, + 53.268491001 + ], + [ + 12.454054, + 53.269573601 + ], + [ + 12.454439, + 53.270126701 + ], + [ + 12.4547444, + 53.270565401 + ], + [ + 12.4558652, + 53.272192201 + ], + [ + 12.4570047, + 53.273848301 + ], + [ + 12.4578966, + 53.275153801 + ], + [ + 12.4587606, + 53.276431401 + ], + [ + 12.4597553, + 53.277893201 + ], + [ + 12.4607967, + 53.279384301 + ], + [ + 12.4617821, + 53.280826401 + ], + [ + 12.4627861, + 53.282271401 + ], + [ + 12.4637458, + 53.283659001 + ], + [ + 12.4647172, + 53.285070301 + ], + [ + 12.4664676, + 53.287602201 + ], + [ + 12.4673586, + 53.288918701 + ], + [ + 12.4677041, + 53.289442001 + ], + [ + 12.4679868, + 53.289901001 + ], + [ + 12.4683547, + 53.290427301 + ], + [ + 12.4688986, + 53.291271601 + ], + [ + 12.4700251, + 53.293071301 + ], + [ + 12.4702724, + 53.293467501 + ], + [ + 12.4708412, + 53.294414301 + ], + [ + 12.4718465, + 53.296203901 + ], + [ + 12.472136, + 53.296721701 + ], + [ + 12.4730604, + 53.298548301 + ], + [ + 12.4737785, + 53.300059801 + ], + [ + 12.4738656, + 53.300263301 + ], + [ + 12.474521, + 53.301782201 + ], + [ + 12.4751164, + 53.303271001 + ], + [ + 12.475936, + 53.305597001 + ], + [ + 12.4763782, + 53.307029101 + ], + [ + 12.4764725, + 53.307350301 + ], + [ + 12.4768443, + 53.308613501 + ], + [ + 12.4771875, + 53.309990501 + ], + [ + 12.4774841, + 53.311364701 + ], + [ + 12.4776777, + 53.312386601 + ], + [ + 12.478013, + 53.314393601 + ], + [ + 12.4782919, + 53.316787601 + ], + [ + 12.4783912, + 53.318003701 + ], + [ + 12.4784609, + 53.319195801 + ], + [ + 12.4784904, + 53.321711201 + ], + [ + 12.4784153, + 53.324208901 + ], + [ + 12.4782642, + 53.326149501 + ], + [ + 12.4780532, + 53.327851801 + ], + [ + 12.4779325, + 53.328689601 + ], + [ + 12.4777367, + 53.329897401 + ], + [ + 12.4776185, + 53.330602801 + ], + [ + 12.4771084, + 53.332861001 + ], + [ + 12.476975, + 53.333451601 + ], + [ + 12.4767334, + 53.334367901 + ], + [ + 12.4760118, + 53.336960901 + ], + [ + 12.4750701, + 53.340059701 + ], + [ + 12.4742389, + 53.342793401 + ], + [ + 12.4739036, + 53.344133701 + ], + [ + 12.4736113, + 53.345434001 + ], + [ + 12.4733954, + 53.346630101 + ], + [ + 12.47328, + 53.347384201 + ], + [ + 12.4731318, + 53.348587801 + ], + [ + 12.4730467, + 53.349533001 + ], + [ + 12.4729742, + 53.350906701 + ], + [ + 12.472934, + 53.352157101 + ], + [ + 12.4728616, + 53.353956601 + ], + [ + 12.4728401, + 53.354284801 + ], + [ + 12.4727919, + 53.354893101 + ], + [ + 12.4726282, + 53.356338701 + ], + [ + 12.472478, + 53.357289601 + ], + [ + 12.472301, + 53.358123601 + ], + [ + 12.4720964, + 53.358928501 + ], + [ + 12.471888, + 53.359711501 + ], + [ + 12.4716401, + 53.360484001 + ], + [ + 12.4713016, + 53.361374101 + ], + [ + 12.4710502, + 53.362012901 + ], + [ + 12.4705068, + 53.363216801 + ], + [ + 12.4697945, + 53.364606101 + ], + [ + 12.4690625, + 53.365830101 + ], + [ + 12.468726, + 53.366365601 + ], + [ + 12.467402, + 53.368220001 + ], + [ + 12.4666134, + 53.369209001 + ], + [ + 12.4659643, + 53.369974001 + ], + [ + 12.4653045, + 53.370707001 + ], + [ + 12.4643309, + 53.371724701 + ], + [ + 12.4625418, + 53.373489801 + ], + [ + 12.4607501, + 53.375208401 + ], + [ + 12.4581269, + 53.377802101 + ], + [ + 12.4573464, + 53.378605301 + ], + [ + 12.4557317, + 53.380370101 + ], + [ + 12.4547709, + 53.381503301 + ], + [ + 12.4536087, + 53.382983301 + ], + [ + 12.4528091, + 53.384098101 + ], + [ + 12.4519292, + 53.385441601 + ], + [ + 12.4509509, + 53.387084101 + ], + [ + 12.4501202, + 53.388648701 + ], + [ + 12.4496039, + 53.389805201 + ], + [ + 12.4490184, + 53.391190801 + ], + [ + 12.4481157, + 53.393843401 + ], + [ + 12.4478308, + 53.394762401 + ], + [ + 12.4475109, + 53.395848401 + ], + [ + 12.4469157, + 53.397927801 + ], + [ + 12.4464166, + 53.399632301 + ], + [ + 12.4459884, + 53.400974301 + ], + [ + 12.4455991, + 53.402063101 + ], + [ + 12.4452951, + 53.402776701 + ], + [ + 12.444856, + 53.403755901 + ], + [ + 12.4444007, + 53.404671401 + ], + [ + 12.4439001, + 53.405596101 + ], + [ + 12.4432136, + 53.406729201 + ], + [ + 12.4425412, + 53.407732701 + ], + [ + 12.4417636, + 53.408797601 + ], + [ + 12.4407409, + 53.410068301 + ], + [ + 12.4396318, + 53.411325201 + ], + [ + 12.4386791, + 53.412318901 + ], + [ + 12.4376447, + 53.413311201 + ], + [ + 12.4366973, + 53.414174001 + ], + [ + 12.4356296, + 53.415074601 + ], + [ + 12.4340861, + 53.416336801 + ], + [ + 12.4327272, + 53.417405601 + ], + [ + 12.43121, + 53.418641001 + ], + [ + 12.4308741, + 53.418913901 + ], + [ + 12.4295446, + 53.420034201 + ], + [ + 12.4283117, + 53.421136301 + ], + [ + 12.4271325, + 53.422243901 + ], + [ + 12.425993, + 53.423365401 + ], + [ + 12.4244286, + 53.425012801 + ], + [ + 12.4229505, + 53.426685201 + ], + [ + 12.4220702, + 53.427764901 + ], + [ + 12.4211946, + 53.428830601 + ], + [ + 12.4203073, + 53.429865701 + ], + [ + 12.4194037, + 53.430885401 + ], + [ + 12.4185327, + 53.431791001 + ], + [ + 12.4176622, + 53.432647001 + ], + [ + 12.4167184, + 53.433517401 + ], + [ + 12.4157356, + 53.434375401 + ], + [ + 12.4148971, + 53.435053101 + ], + [ + 12.4140308, + 53.435723601 + ], + [ + 12.413377, + 53.436210501 + ], + [ + 12.4116345, + 53.437437101 + ], + [ + 12.4100818, + 53.438456701 + ], + [ + 12.4080107, + 53.439775401 + ], + [ + 12.4059109, + 53.441101201 + ], + [ + 12.4049088, + 53.441727201 + ], + [ + 12.4031813, + 53.442819701 + ], + [ + 12.4013428, + 53.443979401 + ], + [ + 12.3990051, + 53.445446701 + ], + [ + 12.39707, + 53.446679201 + ], + [ + 12.3959845, + 53.447393401 + ], + [ + 12.3949824, + 53.448082301 + ], + [ + 12.3942892, + 53.448575001 + ], + [ + 12.3933582, + 53.449254101 + ], + [ + 12.3924821, + 53.449939301 + ], + [ + 12.3919478, + 53.450373101 + ], + [ + 12.3908261, + 53.451317301 + ], + [ + 12.3897529, + 53.452299001 + ], + [ + 12.38897, + 53.453068501 + ], + [ + 12.3881655, + 53.453888101 + ], + [ + 12.3876484, + 53.454445901 + ], + [ + 12.3867954, + 53.455434801 + ], + [ + 12.3854126, + 53.457202601 + ], + [ + 12.3850958, + 53.457650101 + ], + [ + 12.3845971, + 53.458401201 + ], + [ + 12.3842213, + 53.458987201 + ], + [ + 12.3839804, + 53.459372801 + ], + [ + 12.383174, + 53.460831901 + ], + [ + 12.3828742, + 53.461420501 + ], + [ + 12.3825959, + 53.462025001 + ], + [ + 12.382242, + 53.462835401 + ], + [ + 12.382011, + 53.463400801 + ], + [ + 12.3816855, + 53.464266401 + ], + [ + 12.3813728, + 53.465225301 + ], + [ + 12.3810741, + 53.466367701 + ], + [ + 12.3808307, + 53.467524101 + ], + [ + 12.380659, + 53.468692901 + ], + [ + 12.3805222, + 53.470038801 + ], + [ + 12.3804858, + 53.470816501 + ], + [ + 12.3804794, + 53.471656701 + ], + [ + 12.3805598, + 53.473302101 + ], + [ + 12.3806724, + 53.474418001 + ], + [ + 12.380938, + 53.476566701 + ], + [ + 12.3814047, + 53.479961901 + ], + [ + 12.382035, + 53.484590601 + ], + [ + 12.3823864, + 53.487185701 + ], + [ + 12.382491, + 53.488023501 + ], + [ + 12.3825929, + 53.488862901 + ], + [ + 12.3826419, + 53.489314101 + ], + [ + 12.3827872, + 53.490881801 + ], + [ + 12.3828333, + 53.492287201 + ], + [ + 12.3828088, + 53.493241801 + ], + [ + 12.3826988, + 53.494464101 + ], + [ + 12.3826397, + 53.494954701 + ], + [ + 12.3825347, + 53.495435401 + ], + [ + 12.3823341, + 53.496336301 + ], + [ + 12.3820437, + 53.497238901 + ], + [ + 12.3815609, + 53.498384901 + ], + [ + 12.3812446, + 53.498987401 + ], + [ + 12.3809039, + 53.499578901 + ], + [ + 12.3805886, + 53.500061901 + ], + [ + 12.3802689, + 53.500544301 + ], + [ + 12.3793824, + 53.501676301 + ], + [ + 12.3786721, + 53.502431501 + ], + [ + 12.3779386, + 53.503173301 + ], + [ + 12.3771439, + 53.503859001 + ], + [ + 12.3763306, + 53.504529701 + ], + [ + 12.3754091, + 53.505227401 + ], + [ + 12.3744539, + 53.505904401 + ], + [ + 12.3724808, + 53.507169501 + ], + [ + 12.3704966, + 53.508355301 + ], + [ + 12.3684693, + 53.509496901 + ], + [ + 12.3667904, + 53.510427201 + ], + [ + 12.3652913, + 53.511275601 + ], + [ + 12.3643072, + 53.511833901 + ], + [ + 12.3633695, + 53.512394701 + ], + [ + 12.3624823, + 53.512951601 + ], + [ + 12.361595, + 53.513543101 + ], + [ + 12.3608035, + 53.514108201 + ], + [ + 12.3600646, + 53.514693201 + ], + [ + 12.3593478, + 53.515290801 + ], + [ + 12.3586973, + 53.515911701 + ], + [ + 12.3581019, + 53.516542101 + ], + [ + 12.3574341, + 53.517354201 + ], + [ + 12.3570301, + 53.517895701 + ], + [ + 12.3565047, + 53.518727301 + ], + [ + 12.3561008, + 53.519471401 + ], + [ + 12.3555544, + 53.520669501 + ], + [ + 12.3551621, + 53.521744001 + ], + [ + 12.35459, + 53.523523601 + ], + [ + 12.3541674, + 53.524953301 + ], + [ + 12.3537471, + 53.526370601 + ], + [ + 12.3532824, + 53.527744701 + ], + [ + 12.3528715, + 53.528785701 + ], + [ + 12.35233, + 53.529940101 + ], + [ + 12.3518848, + 53.530751601 + ], + [ + 12.3513349, + 53.531644401 + ], + [ + 12.3506805, + 53.532577001 + ], + [ + 12.3500421, + 53.533406001 + ], + [ + 12.3493179, + 53.534238201 + ], + [ + 12.3483443, + 53.535231301 + ], + [ + 12.3475155, + 53.535994901 + ], + [ + 12.3467886, + 53.536621401 + ], + [ + 12.3460563, + 53.537200001 + ], + [ + 12.3447984, + 53.538138901 + ], + [ + 12.3430228, + 53.539348701 + ], + [ + 12.3411238, + 53.540569701 + ], + [ + 12.3390692, + 53.541867101 + ], + [ + 12.3372721, + 53.542998701 + ], + [ + 12.3355367, + 53.544093701 + ], + [ + 12.3335438, + 53.545348001 + ], + [ + 12.3299443, + 53.547619001 + ], + [ + 12.3282384, + 53.548699401 + ], + [ + 12.3263367, + 53.549902601 + ], + [ + 12.3246013, + 53.551040401 + ], + [ + 12.3229169, + 53.552237101 + ], + [ + 12.3216134, + 53.553261701 + ], + [ + 12.3204225, + 53.554310201 + ], + [ + 12.3193657, + 53.555395201 + ], + [ + 12.3187112, + 53.556182401 + ], + [ + 12.3182632, + 53.556801601 + ], + [ + 12.3177288, + 53.557592001 + ], + [ + 12.3172015, + 53.558544401 + ], + [ + 12.3168617, + 53.559290701 + ], + [ + 12.3164689, + 53.560383901 + ], + [ + 12.3162282, + 53.561401301 + ], + [ + 12.3160902, + 53.562284201 + ], + [ + 12.3160229, + 53.563333101 + ], + [ + 12.3160619, + 53.564197101 + ], + [ + 12.3161595, + 53.564985401 + ], + [ + 12.3162959, + 53.565694601 + ], + [ + 12.3165439, + 53.566596401 + ], + [ + 12.316815, + 53.567352301 + ], + [ + 12.3172334, + 53.568260301 + ], + [ + 12.3178396, + 53.569338601 + ], + [ + 12.3184672, + 53.570249701 + ], + [ + 12.3191431, + 53.571082701 + ], + [ + 12.3201248, + 53.572138701 + ], + [ + 12.3212379, + 53.573158001 + ], + [ + 12.3229062, + 53.574444901 + ], + [ + 12.3243385, + 53.575378201 + ], + [ + 12.3262724, + 53.576516901 + ], + [ + 12.3281446, + 53.577510601 + ], + [ + 12.3304084, + 53.578630201 + ], + [ + 12.3328186, + 53.579806401 + ], + [ + 12.3357302, + 53.581224001 + ], + [ + 12.3377482, + 53.582195301 + ], + [ + 12.3396708, + 53.583124401 + ], + [ + 12.34266, + 53.584589801 + ], + [ + 12.3462606, + 53.586366801 + ], + [ + 12.3494222, + 53.588035601 + ], + [ + 12.3529714, + 53.590014801 + ], + [ + 12.3560582, + 53.591910701 + ], + [ + 12.3580523, + 53.593219001 + ], + [ + 12.3597242, + 53.594435801 + ], + [ + 12.3617743, + 53.596015601 + ], + [ + 12.3633154, + 53.597315401 + ], + [ + 12.3637815, + 53.597752201 + ], + [ + 12.364631, + 53.598528401 + ], + [ + 12.3658426, + 53.599728301 + ], + [ + 12.3660452, + 53.599928901 + ], + [ + 12.3674009, + 53.601373301 + ], + [ + 12.3686312, + 53.602812801 + ], + [ + 12.368998, + 53.603262901 + ], + [ + 12.3692803, + 53.603609301 + ], + [ + 12.3698341, + 53.604349701 + ], + [ + 12.3701361, + 53.604754201 + ], + [ + 12.3704698, + 53.605201101 + ], + [ + 12.371422, + 53.606622301 + ], + [ + 12.372012, + 53.607566001 + ], + [ + 12.3727657, + 53.608902701 + ], + [ + 12.3729619, + 53.609298801 + ], + [ + 12.3735193, + 53.610400801 + ], + [ + 12.3741273, + 53.611783001 + ], + [ + 12.3746925, + 53.613257001 + ], + [ + 12.3751735, + 53.614711501 + ], + [ + 12.3753837, + 53.615492701 + ], + [ + 12.375622, + 53.616451301 + ], + [ + 12.3758159, + 53.617332101 + ], + [ + 12.3759021, + 53.617767001 + ], + [ + 12.3760464, + 53.618645301 + ], + [ + 12.3761008, + 53.619088401 + ], + [ + 12.3761947, + 53.619960201 + ], + [ + 12.3762692, + 53.620829201 + ], + [ + 12.37632, + 53.621825601 + ], + [ + 12.3763212, + 53.623152501 + ], + [ + 12.3762769, + 53.624263901 + ], + [ + 12.3761582, + 53.625650701 + ], + [ + 12.3760349, + 53.626615501 + ], + [ + 12.3758439, + 53.627715401 + ], + [ + 12.3756162, + 53.628767701 + ], + [ + 12.375382, + 53.629759801 + ], + [ + 12.3753109, + 53.630028601 + ], + [ + 12.3747224, + 53.632040101 + ], + [ + 12.3737808, + 53.634746801 + ], + [ + 12.3727343, + 53.637326301 + ], + [ + 12.3715777, + 53.639953501 + ], + [ + 12.3695191, + 53.644526401 + ], + [ + 12.369012792, + 53.645647423 + ] + ] + } + }, + { + "identifier": "2026-017292--vi-bs.2026-04-13_09-00-00-000_013.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.25016755616264,12.447419553629286,53.6456474231652,12.369012792001078", + "point": "53.25016755616264,12.447419553629286", + "startLcPosition": "1", + "impact": { + "lower": "Krakow am See", + "upper": "Wittstock", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "A19 | Wittstock - Krakow am See", + "coordinate": { + "lat": 53.25016755616264, + "long": 12.447419553629286 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "", + "A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 10.5 km hinter AS Wittstock und 4.2 km vor AS Krakow am See", + "", + "L\u00e4nge: 48.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A19 von Wittstock (AS) nach Krakow am See (AS) Markierungsarbeiten im Bereich der AM Malchow" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.447419554, + 53.250167556 + ], + [ + 12.4474716, + 53.251325101 + ], + [ + 12.4475861, + 53.252719301 + ], + [ + 12.4477775, + 53.254170801 + ], + [ + 12.4480741, + 53.255796801 + ], + [ + 12.4483239, + 53.256893301 + ], + [ + 12.4485901, + 53.257968901 + ], + [ + 12.4489077, + 53.259043101 + ], + [ + 12.4492602, + 53.260125601 + ], + [ + 12.4496572, + 53.261210801 + ], + [ + 12.4500612, + 53.262224801 + ], + [ + 12.4504628, + 53.263164801 + ], + [ + 12.4512964, + 53.264888201 + ], + [ + 12.4517564, + 53.265779301 + ], + [ + 12.452242, + 53.266667501 + ], + [ + 12.452716, + 53.267480201 + ], + [ + 12.4533554, + 53.268491001 + ], + [ + 12.454054, + 53.269573601 + ], + [ + 12.454439, + 53.270126701 + ], + [ + 12.4547444, + 53.270565401 + ], + [ + 12.4558652, + 53.272192201 + ], + [ + 12.4570047, + 53.273848301 + ], + [ + 12.4578966, + 53.275153801 + ], + [ + 12.4587606, + 53.276431401 + ], + [ + 12.4597553, + 53.277893201 + ], + [ + 12.4607967, + 53.279384301 + ], + [ + 12.4617821, + 53.280826401 + ], + [ + 12.4627861, + 53.282271401 + ], + [ + 12.4637458, + 53.283659001 + ], + [ + 12.4647172, + 53.285070301 + ], + [ + 12.4664676, + 53.287602201 + ], + [ + 12.4673586, + 53.288918701 + ], + [ + 12.4677041, + 53.289442001 + ], + [ + 12.4679868, + 53.289901001 + ], + [ + 12.4683547, + 53.290427301 + ], + [ + 12.4688986, + 53.291271601 + ], + [ + 12.4700251, + 53.293071301 + ], + [ + 12.4702724, + 53.293467501 + ], + [ + 12.4708412, + 53.294414301 + ], + [ + 12.4718465, + 53.296203901 + ], + [ + 12.472136, + 53.296721701 + ], + [ + 12.4730604, + 53.298548301 + ], + [ + 12.4737785, + 53.300059801 + ], + [ + 12.4738656, + 53.300263301 + ], + [ + 12.474521, + 53.301782201 + ], + [ + 12.4751164, + 53.303271001 + ], + [ + 12.475936, + 53.305597001 + ], + [ + 12.4763782, + 53.307029101 + ], + [ + 12.4764725, + 53.307350301 + ], + [ + 12.4768443, + 53.308613501 + ], + [ + 12.4771875, + 53.309990501 + ], + [ + 12.4774841, + 53.311364701 + ], + [ + 12.4776777, + 53.312386601 + ], + [ + 12.478013, + 53.314393601 + ], + [ + 12.4782919, + 53.316787601 + ], + [ + 12.4783912, + 53.318003701 + ], + [ + 12.4784609, + 53.319195801 + ], + [ + 12.4784904, + 53.321711201 + ], + [ + 12.4784153, + 53.324208901 + ], + [ + 12.4782642, + 53.326149501 + ], + [ + 12.4780532, + 53.327851801 + ], + [ + 12.4779325, + 53.328689601 + ], + [ + 12.4777367, + 53.329897401 + ], + [ + 12.4776185, + 53.330602801 + ], + [ + 12.4771084, + 53.332861001 + ], + [ + 12.476975, + 53.333451601 + ], + [ + 12.4767334, + 53.334367901 + ], + [ + 12.4760118, + 53.336960901 + ], + [ + 12.4750701, + 53.340059701 + ], + [ + 12.4742389, + 53.342793401 + ], + [ + 12.4739036, + 53.344133701 + ], + [ + 12.4736113, + 53.345434001 + ], + [ + 12.4733954, + 53.346630101 + ], + [ + 12.47328, + 53.347384201 + ], + [ + 12.4731318, + 53.348587801 + ], + [ + 12.4730467, + 53.349533001 + ], + [ + 12.4729742, + 53.350906701 + ], + [ + 12.472934, + 53.352157101 + ], + [ + 12.4728616, + 53.353956601 + ], + [ + 12.4728401, + 53.354284801 + ], + [ + 12.4727919, + 53.354893101 + ], + [ + 12.4726282, + 53.356338701 + ], + [ + 12.472478, + 53.357289601 + ], + [ + 12.472301, + 53.358123601 + ], + [ + 12.4720964, + 53.358928501 + ], + [ + 12.471888, + 53.359711501 + ], + [ + 12.4716401, + 53.360484001 + ], + [ + 12.4713016, + 53.361374101 + ], + [ + 12.4710502, + 53.362012901 + ], + [ + 12.4705068, + 53.363216801 + ], + [ + 12.4697945, + 53.364606101 + ], + [ + 12.4690625, + 53.365830101 + ], + [ + 12.468726, + 53.366365601 + ], + [ + 12.467402, + 53.368220001 + ], + [ + 12.4666134, + 53.369209001 + ], + [ + 12.4659643, + 53.369974001 + ], + [ + 12.4653045, + 53.370707001 + ], + [ + 12.4643309, + 53.371724701 + ], + [ + 12.4625418, + 53.373489801 + ], + [ + 12.4607501, + 53.375208401 + ], + [ + 12.4581269, + 53.377802101 + ], + [ + 12.4573464, + 53.378605301 + ], + [ + 12.4557317, + 53.380370101 + ], + [ + 12.4547709, + 53.381503301 + ], + [ + 12.4536087, + 53.382983301 + ], + [ + 12.4528091, + 53.384098101 + ], + [ + 12.4519292, + 53.385441601 + ], + [ + 12.4509509, + 53.387084101 + ], + [ + 12.4501202, + 53.388648701 + ], + [ + 12.4496039, + 53.389805201 + ], + [ + 12.4490184, + 53.391190801 + ], + [ + 12.4481157, + 53.393843401 + ], + [ + 12.4478308, + 53.394762401 + ], + [ + 12.4475109, + 53.395848401 + ], + [ + 12.4469157, + 53.397927801 + ], + [ + 12.4464166, + 53.399632301 + ], + [ + 12.4459884, + 53.400974301 + ], + [ + 12.4455991, + 53.402063101 + ], + [ + 12.4452951, + 53.402776701 + ], + [ + 12.444856, + 53.403755901 + ], + [ + 12.4444007, + 53.404671401 + ], + [ + 12.4439001, + 53.405596101 + ], + [ + 12.4432136, + 53.406729201 + ], + [ + 12.4425412, + 53.407732701 + ], + [ + 12.4417636, + 53.408797601 + ], + [ + 12.4407409, + 53.410068301 + ], + [ + 12.4396318, + 53.411325201 + ], + [ + 12.4386791, + 53.412318901 + ], + [ + 12.4376447, + 53.413311201 + ], + [ + 12.4366973, + 53.414174001 + ], + [ + 12.4356296, + 53.415074601 + ], + [ + 12.4340861, + 53.416336801 + ], + [ + 12.4327272, + 53.417405601 + ], + [ + 12.43121, + 53.418641001 + ], + [ + 12.4308741, + 53.418913901 + ], + [ + 12.4295446, + 53.420034201 + ], + [ + 12.4283117, + 53.421136301 + ], + [ + 12.4271325, + 53.422243901 + ], + [ + 12.425993, + 53.423365401 + ], + [ + 12.4244286, + 53.425012801 + ], + [ + 12.4229505, + 53.426685201 + ], + [ + 12.4220702, + 53.427764901 + ], + [ + 12.4211946, + 53.428830601 + ], + [ + 12.4203073, + 53.429865701 + ], + [ + 12.4194037, + 53.430885401 + ], + [ + 12.4185327, + 53.431791001 + ], + [ + 12.4176622, + 53.432647001 + ], + [ + 12.4167184, + 53.433517401 + ], + [ + 12.4157356, + 53.434375401 + ], + [ + 12.4148971, + 53.435053101 + ], + [ + 12.4140308, + 53.435723601 + ], + [ + 12.413377, + 53.436210501 + ], + [ + 12.4116345, + 53.437437101 + ], + [ + 12.4100818, + 53.438456701 + ], + [ + 12.4080107, + 53.439775401 + ], + [ + 12.4059109, + 53.441101201 + ], + [ + 12.4049088, + 53.441727201 + ], + [ + 12.4031813, + 53.442819701 + ], + [ + 12.4013428, + 53.443979401 + ], + [ + 12.3990051, + 53.445446701 + ], + [ + 12.39707, + 53.446679201 + ], + [ + 12.3959845, + 53.447393401 + ], + [ + 12.3949824, + 53.448082301 + ], + [ + 12.3942892, + 53.448575001 + ], + [ + 12.3933582, + 53.449254101 + ], + [ + 12.3924821, + 53.449939301 + ], + [ + 12.3919478, + 53.450373101 + ], + [ + 12.3908261, + 53.451317301 + ], + [ + 12.3897529, + 53.452299001 + ], + [ + 12.38897, + 53.453068501 + ], + [ + 12.3881655, + 53.453888101 + ], + [ + 12.3876484, + 53.454445901 + ], + [ + 12.3867954, + 53.455434801 + ], + [ + 12.3854126, + 53.457202601 + ], + [ + 12.3850958, + 53.457650101 + ], + [ + 12.3845971, + 53.458401201 + ], + [ + 12.3842213, + 53.458987201 + ], + [ + 12.3839804, + 53.459372801 + ], + [ + 12.383174, + 53.460831901 + ], + [ + 12.3828742, + 53.461420501 + ], + [ + 12.3825959, + 53.462025001 + ], + [ + 12.382242, + 53.462835401 + ], + [ + 12.382011, + 53.463400801 + ], + [ + 12.3816855, + 53.464266401 + ], + [ + 12.3813728, + 53.465225301 + ], + [ + 12.3810741, + 53.466367701 + ], + [ + 12.3808307, + 53.467524101 + ], + [ + 12.380659, + 53.468692901 + ], + [ + 12.3805222, + 53.470038801 + ], + [ + 12.3804858, + 53.470816501 + ], + [ + 12.3804794, + 53.471656701 + ], + [ + 12.3805598, + 53.473302101 + ], + [ + 12.3806724, + 53.474418001 + ], + [ + 12.380938, + 53.476566701 + ], + [ + 12.3814047, + 53.479961901 + ], + [ + 12.382035, + 53.484590601 + ], + [ + 12.3823864, + 53.487185701 + ], + [ + 12.382491, + 53.488023501 + ], + [ + 12.3825929, + 53.488862901 + ], + [ + 12.3826419, + 53.489314101 + ], + [ + 12.3827872, + 53.490881801 + ], + [ + 12.3828333, + 53.492287201 + ], + [ + 12.3828088, + 53.493241801 + ], + [ + 12.3826988, + 53.494464101 + ], + [ + 12.3826397, + 53.494954701 + ], + [ + 12.3825347, + 53.495435401 + ], + [ + 12.3823341, + 53.496336301 + ], + [ + 12.3820437, + 53.497238901 + ], + [ + 12.3815609, + 53.498384901 + ], + [ + 12.3812446, + 53.498987401 + ], + [ + 12.3809039, + 53.499578901 + ], + [ + 12.3805886, + 53.500061901 + ], + [ + 12.3802689, + 53.500544301 + ], + [ + 12.3793824, + 53.501676301 + ], + [ + 12.3786721, + 53.502431501 + ], + [ + 12.3779386, + 53.503173301 + ], + [ + 12.3771439, + 53.503859001 + ], + [ + 12.3763306, + 53.504529701 + ], + [ + 12.3754091, + 53.505227401 + ], + [ + 12.3744539, + 53.505904401 + ], + [ + 12.3724808, + 53.507169501 + ], + [ + 12.3704966, + 53.508355301 + ], + [ + 12.3684693, + 53.509496901 + ], + [ + 12.3667904, + 53.510427201 + ], + [ + 12.3652913, + 53.511275601 + ], + [ + 12.3643072, + 53.511833901 + ], + [ + 12.3633695, + 53.512394701 + ], + [ + 12.3624823, + 53.512951601 + ], + [ + 12.361595, + 53.513543101 + ], + [ + 12.3608035, + 53.514108201 + ], + [ + 12.3600646, + 53.514693201 + ], + [ + 12.3593478, + 53.515290801 + ], + [ + 12.3586973, + 53.515911701 + ], + [ + 12.3581019, + 53.516542101 + ], + [ + 12.3574341, + 53.517354201 + ], + [ + 12.3570301, + 53.517895701 + ], + [ + 12.3565047, + 53.518727301 + ], + [ + 12.3561008, + 53.519471401 + ], + [ + 12.3555544, + 53.520669501 + ], + [ + 12.3551621, + 53.521744001 + ], + [ + 12.35459, + 53.523523601 + ], + [ + 12.3541674, + 53.524953301 + ], + [ + 12.3537471, + 53.526370601 + ], + [ + 12.3532824, + 53.527744701 + ], + [ + 12.3528715, + 53.528785701 + ], + [ + 12.35233, + 53.529940101 + ], + [ + 12.3518848, + 53.530751601 + ], + [ + 12.3513349, + 53.531644401 + ], + [ + 12.3506805, + 53.532577001 + ], + [ + 12.3500421, + 53.533406001 + ], + [ + 12.3493179, + 53.534238201 + ], + [ + 12.3483443, + 53.535231301 + ], + [ + 12.3475155, + 53.535994901 + ], + [ + 12.3467886, + 53.536621401 + ], + [ + 12.3460563, + 53.537200001 + ], + [ + 12.3447984, + 53.538138901 + ], + [ + 12.3430228, + 53.539348701 + ], + [ + 12.3411238, + 53.540569701 + ], + [ + 12.3390692, + 53.541867101 + ], + [ + 12.3372721, + 53.542998701 + ], + [ + 12.3355367, + 53.544093701 + ], + [ + 12.3335438, + 53.545348001 + ], + [ + 12.3299443, + 53.547619001 + ], + [ + 12.3282384, + 53.548699401 + ], + [ + 12.3263367, + 53.549902601 + ], + [ + 12.3246013, + 53.551040401 + ], + [ + 12.3229169, + 53.552237101 + ], + [ + 12.3216134, + 53.553261701 + ], + [ + 12.3204225, + 53.554310201 + ], + [ + 12.3193657, + 53.555395201 + ], + [ + 12.3187112, + 53.556182401 + ], + [ + 12.3182632, + 53.556801601 + ], + [ + 12.3177288, + 53.557592001 + ], + [ + 12.3172015, + 53.558544401 + ], + [ + 12.3168617, + 53.559290701 + ], + [ + 12.3164689, + 53.560383901 + ], + [ + 12.3162282, + 53.561401301 + ], + [ + 12.3160902, + 53.562284201 + ], + [ + 12.3160229, + 53.563333101 + ], + [ + 12.3160619, + 53.564197101 + ], + [ + 12.3161595, + 53.564985401 + ], + [ + 12.3162959, + 53.565694601 + ], + [ + 12.3165439, + 53.566596401 + ], + [ + 12.316815, + 53.567352301 + ], + [ + 12.3172334, + 53.568260301 + ], + [ + 12.3178396, + 53.569338601 + ], + [ + 12.3184672, + 53.570249701 + ], + [ + 12.3191431, + 53.571082701 + ], + [ + 12.3201248, + 53.572138701 + ], + [ + 12.3212379, + 53.573158001 + ], + [ + 12.3229062, + 53.574444901 + ], + [ + 12.3243385, + 53.575378201 + ], + [ + 12.3262724, + 53.576516901 + ], + [ + 12.3281446, + 53.577510601 + ], + [ + 12.3304084, + 53.578630201 + ], + [ + 12.3328186, + 53.579806401 + ], + [ + 12.3357302, + 53.581224001 + ], + [ + 12.3377482, + 53.582195301 + ], + [ + 12.3396708, + 53.583124401 + ], + [ + 12.34266, + 53.584589801 + ], + [ + 12.3462606, + 53.586366801 + ], + [ + 12.3494222, + 53.588035601 + ], + [ + 12.3529714, + 53.590014801 + ], + [ + 12.3560582, + 53.591910701 + ], + [ + 12.3580523, + 53.593219001 + ], + [ + 12.3597242, + 53.594435801 + ], + [ + 12.3617743, + 53.596015601 + ], + [ + 12.3633154, + 53.597315401 + ], + [ + 12.3637815, + 53.597752201 + ], + [ + 12.364631, + 53.598528401 + ], + [ + 12.3658426, + 53.599728301 + ], + [ + 12.3660452, + 53.599928901 + ], + [ + 12.3674009, + 53.601373301 + ], + [ + 12.3686312, + 53.602812801 + ], + [ + 12.368998, + 53.603262901 + ], + [ + 12.3692803, + 53.603609301 + ], + [ + 12.3698341, + 53.604349701 + ], + [ + 12.3701361, + 53.604754201 + ], + [ + 12.3704698, + 53.605201101 + ], + [ + 12.371422, + 53.606622301 + ], + [ + 12.372012, + 53.607566001 + ], + [ + 12.3727657, + 53.608902701 + ], + [ + 12.3729619, + 53.609298801 + ], + [ + 12.3735193, + 53.610400801 + ], + [ + 12.3741273, + 53.611783001 + ], + [ + 12.3746925, + 53.613257001 + ], + [ + 12.3751735, + 53.614711501 + ], + [ + 12.3753837, + 53.615492701 + ], + [ + 12.375622, + 53.616451301 + ], + [ + 12.3758159, + 53.617332101 + ], + [ + 12.3759021, + 53.617767001 + ], + [ + 12.3760464, + 53.618645301 + ], + [ + 12.3761008, + 53.619088401 + ], + [ + 12.3761947, + 53.619960201 + ], + [ + 12.3762692, + 53.620829201 + ], + [ + 12.37632, + 53.621825601 + ], + [ + 12.3763212, + 53.623152501 + ], + [ + 12.3762769, + 53.624263901 + ], + [ + 12.3761582, + 53.625650701 + ], + [ + 12.3760349, + 53.626615501 + ], + [ + 12.3758439, + 53.627715401 + ], + [ + 12.3756162, + 53.628767701 + ], + [ + 12.375382, + 53.629759801 + ], + [ + 12.3753109, + 53.630028601 + ], + [ + 12.3747224, + 53.632040101 + ], + [ + 12.3737808, + 53.634746801 + ], + [ + 12.3727343, + 53.637326301 + ], + [ + 12.3715777, + 53.639953501 + ], + [ + 12.3695191, + 53.644526401 + ], + [ + 12.369012792, + 53.645647423 + ] + ] + } + }, + { + "identifier": "2026-016983--vi-bs.2026-04-07_07-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.25016755616264,12.447419553629286,53.6456474231652,12.369012792001078", + "point": "53.25016755616264,12.447419553629286", + "startLcPosition": "1", + "impact": { + "lower": "Krakow am See", + "upper": "Wittstock", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "A19 | Wittstock - Krakow am See", + "coordinate": { + "lat": 53.25016755616264, + "long": 12.447419553629286 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 17:00 Uhr", + "10.04.26 von 07:00 bis 14:00 Uhr", + "", + "A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 10.5 km hinter AS Wittstock und 4.2 km vor AS Krakow am See", + "", + "L\u00e4nge: 48.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A19 von Wittstock (AS) nach Krakow am See (AS) Markierungsarbeiten in der KW 15 im Bereich der AM Malchow" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.447419554, + 53.250167556 + ], + [ + 12.4474716, + 53.251325101 + ], + [ + 12.4475861, + 53.252719301 + ], + [ + 12.4477775, + 53.254170801 + ], + [ + 12.4480741, + 53.255796801 + ], + [ + 12.4483239, + 53.256893301 + ], + [ + 12.4485901, + 53.257968901 + ], + [ + 12.4489077, + 53.259043101 + ], + [ + 12.4492602, + 53.260125601 + ], + [ + 12.4496572, + 53.261210801 + ], + [ + 12.4500612, + 53.262224801 + ], + [ + 12.4504628, + 53.263164801 + ], + [ + 12.4512964, + 53.264888201 + ], + [ + 12.4517564, + 53.265779301 + ], + [ + 12.452242, + 53.266667501 + ], + [ + 12.452716, + 53.267480201 + ], + [ + 12.4533554, + 53.268491001 + ], + [ + 12.454054, + 53.269573601 + ], + [ + 12.454439, + 53.270126701 + ], + [ + 12.4547444, + 53.270565401 + ], + [ + 12.4558652, + 53.272192201 + ], + [ + 12.4570047, + 53.273848301 + ], + [ + 12.4578966, + 53.275153801 + ], + [ + 12.4587606, + 53.276431401 + ], + [ + 12.4597553, + 53.277893201 + ], + [ + 12.4607967, + 53.279384301 + ], + [ + 12.4617821, + 53.280826401 + ], + [ + 12.4627861, + 53.282271401 + ], + [ + 12.4637458, + 53.283659001 + ], + [ + 12.4647172, + 53.285070301 + ], + [ + 12.4664676, + 53.287602201 + ], + [ + 12.4673586, + 53.288918701 + ], + [ + 12.4677041, + 53.289442001 + ], + [ + 12.4679868, + 53.289901001 + ], + [ + 12.4683547, + 53.290427301 + ], + [ + 12.4688986, + 53.291271601 + ], + [ + 12.4700251, + 53.293071301 + ], + [ + 12.4702724, + 53.293467501 + ], + [ + 12.4708412, + 53.294414301 + ], + [ + 12.4718465, + 53.296203901 + ], + [ + 12.472136, + 53.296721701 + ], + [ + 12.4730604, + 53.298548301 + ], + [ + 12.4737785, + 53.300059801 + ], + [ + 12.4738656, + 53.300263301 + ], + [ + 12.474521, + 53.301782201 + ], + [ + 12.4751164, + 53.303271001 + ], + [ + 12.475936, + 53.305597001 + ], + [ + 12.4763782, + 53.307029101 + ], + [ + 12.4764725, + 53.307350301 + ], + [ + 12.4768443, + 53.308613501 + ], + [ + 12.4771875, + 53.309990501 + ], + [ + 12.4774841, + 53.311364701 + ], + [ + 12.4776777, + 53.312386601 + ], + [ + 12.478013, + 53.314393601 + ], + [ + 12.4782919, + 53.316787601 + ], + [ + 12.4783912, + 53.318003701 + ], + [ + 12.4784609, + 53.319195801 + ], + [ + 12.4784904, + 53.321711201 + ], + [ + 12.4784153, + 53.324208901 + ], + [ + 12.4782642, + 53.326149501 + ], + [ + 12.4780532, + 53.327851801 + ], + [ + 12.4779325, + 53.328689601 + ], + [ + 12.4777367, + 53.329897401 + ], + [ + 12.4776185, + 53.330602801 + ], + [ + 12.4771084, + 53.332861001 + ], + [ + 12.476975, + 53.333451601 + ], + [ + 12.4767334, + 53.334367901 + ], + [ + 12.4760118, + 53.336960901 + ], + [ + 12.4750701, + 53.340059701 + ], + [ + 12.4742389, + 53.342793401 + ], + [ + 12.4739036, + 53.344133701 + ], + [ + 12.4736113, + 53.345434001 + ], + [ + 12.4733954, + 53.346630101 + ], + [ + 12.47328, + 53.347384201 + ], + [ + 12.4731318, + 53.348587801 + ], + [ + 12.4730467, + 53.349533001 + ], + [ + 12.4729742, + 53.350906701 + ], + [ + 12.472934, + 53.352157101 + ], + [ + 12.4728616, + 53.353956601 + ], + [ + 12.4728401, + 53.354284801 + ], + [ + 12.4727919, + 53.354893101 + ], + [ + 12.4726282, + 53.356338701 + ], + [ + 12.472478, + 53.357289601 + ], + [ + 12.472301, + 53.358123601 + ], + [ + 12.4720964, + 53.358928501 + ], + [ + 12.471888, + 53.359711501 + ], + [ + 12.4716401, + 53.360484001 + ], + [ + 12.4713016, + 53.361374101 + ], + [ + 12.4710502, + 53.362012901 + ], + [ + 12.4705068, + 53.363216801 + ], + [ + 12.4697945, + 53.364606101 + ], + [ + 12.4690625, + 53.365830101 + ], + [ + 12.468726, + 53.366365601 + ], + [ + 12.467402, + 53.368220001 + ], + [ + 12.4666134, + 53.369209001 + ], + [ + 12.4659643, + 53.369974001 + ], + [ + 12.4653045, + 53.370707001 + ], + [ + 12.4643309, + 53.371724701 + ], + [ + 12.4625418, + 53.373489801 + ], + [ + 12.4607501, + 53.375208401 + ], + [ + 12.4581269, + 53.377802101 + ], + [ + 12.4573464, + 53.378605301 + ], + [ + 12.4557317, + 53.380370101 + ], + [ + 12.4547709, + 53.381503301 + ], + [ + 12.4536087, + 53.382983301 + ], + [ + 12.4528091, + 53.384098101 + ], + [ + 12.4519292, + 53.385441601 + ], + [ + 12.4509509, + 53.387084101 + ], + [ + 12.4501202, + 53.388648701 + ], + [ + 12.4496039, + 53.389805201 + ], + [ + 12.4490184, + 53.391190801 + ], + [ + 12.4481157, + 53.393843401 + ], + [ + 12.4478308, + 53.394762401 + ], + [ + 12.4475109, + 53.395848401 + ], + [ + 12.4469157, + 53.397927801 + ], + [ + 12.4464166, + 53.399632301 + ], + [ + 12.4459884, + 53.400974301 + ], + [ + 12.4455991, + 53.402063101 + ], + [ + 12.4452951, + 53.402776701 + ], + [ + 12.444856, + 53.403755901 + ], + [ + 12.4444007, + 53.404671401 + ], + [ + 12.4439001, + 53.405596101 + ], + [ + 12.4432136, + 53.406729201 + ], + [ + 12.4425412, + 53.407732701 + ], + [ + 12.4417636, + 53.408797601 + ], + [ + 12.4407409, + 53.410068301 + ], + [ + 12.4396318, + 53.411325201 + ], + [ + 12.4386791, + 53.412318901 + ], + [ + 12.4376447, + 53.413311201 + ], + [ + 12.4366973, + 53.414174001 + ], + [ + 12.4356296, + 53.415074601 + ], + [ + 12.4340861, + 53.416336801 + ], + [ + 12.4327272, + 53.417405601 + ], + [ + 12.43121, + 53.418641001 + ], + [ + 12.4308741, + 53.418913901 + ], + [ + 12.4295446, + 53.420034201 + ], + [ + 12.4283117, + 53.421136301 + ], + [ + 12.4271325, + 53.422243901 + ], + [ + 12.425993, + 53.423365401 + ], + [ + 12.4244286, + 53.425012801 + ], + [ + 12.4229505, + 53.426685201 + ], + [ + 12.4220702, + 53.427764901 + ], + [ + 12.4211946, + 53.428830601 + ], + [ + 12.4203073, + 53.429865701 + ], + [ + 12.4194037, + 53.430885401 + ], + [ + 12.4185327, + 53.431791001 + ], + [ + 12.4176622, + 53.432647001 + ], + [ + 12.4167184, + 53.433517401 + ], + [ + 12.4157356, + 53.434375401 + ], + [ + 12.4148971, + 53.435053101 + ], + [ + 12.4140308, + 53.435723601 + ], + [ + 12.413377, + 53.436210501 + ], + [ + 12.4116345, + 53.437437101 + ], + [ + 12.4100818, + 53.438456701 + ], + [ + 12.4080107, + 53.439775401 + ], + [ + 12.4059109, + 53.441101201 + ], + [ + 12.4049088, + 53.441727201 + ], + [ + 12.4031813, + 53.442819701 + ], + [ + 12.4013428, + 53.443979401 + ], + [ + 12.3990051, + 53.445446701 + ], + [ + 12.39707, + 53.446679201 + ], + [ + 12.3959845, + 53.447393401 + ], + [ + 12.3949824, + 53.448082301 + ], + [ + 12.3942892, + 53.448575001 + ], + [ + 12.3933582, + 53.449254101 + ], + [ + 12.3924821, + 53.449939301 + ], + [ + 12.3919478, + 53.450373101 + ], + [ + 12.3908261, + 53.451317301 + ], + [ + 12.3897529, + 53.452299001 + ], + [ + 12.38897, + 53.453068501 + ], + [ + 12.3881655, + 53.453888101 + ], + [ + 12.3876484, + 53.454445901 + ], + [ + 12.3867954, + 53.455434801 + ], + [ + 12.3854126, + 53.457202601 + ], + [ + 12.3850958, + 53.457650101 + ], + [ + 12.3845971, + 53.458401201 + ], + [ + 12.3842213, + 53.458987201 + ], + [ + 12.3839804, + 53.459372801 + ], + [ + 12.383174, + 53.460831901 + ], + [ + 12.3828742, + 53.461420501 + ], + [ + 12.3825959, + 53.462025001 + ], + [ + 12.382242, + 53.462835401 + ], + [ + 12.382011, + 53.463400801 + ], + [ + 12.3816855, + 53.464266401 + ], + [ + 12.3813728, + 53.465225301 + ], + [ + 12.3810741, + 53.466367701 + ], + [ + 12.3808307, + 53.467524101 + ], + [ + 12.380659, + 53.468692901 + ], + [ + 12.3805222, + 53.470038801 + ], + [ + 12.3804858, + 53.470816501 + ], + [ + 12.3804794, + 53.471656701 + ], + [ + 12.3805598, + 53.473302101 + ], + [ + 12.3806724, + 53.474418001 + ], + [ + 12.380938, + 53.476566701 + ], + [ + 12.3814047, + 53.479961901 + ], + [ + 12.382035, + 53.484590601 + ], + [ + 12.3823864, + 53.487185701 + ], + [ + 12.382491, + 53.488023501 + ], + [ + 12.3825929, + 53.488862901 + ], + [ + 12.3826419, + 53.489314101 + ], + [ + 12.3827872, + 53.490881801 + ], + [ + 12.3828333, + 53.492287201 + ], + [ + 12.3828088, + 53.493241801 + ], + [ + 12.3826988, + 53.494464101 + ], + [ + 12.3826397, + 53.494954701 + ], + [ + 12.3825347, + 53.495435401 + ], + [ + 12.3823341, + 53.496336301 + ], + [ + 12.3820437, + 53.497238901 + ], + [ + 12.3815609, + 53.498384901 + ], + [ + 12.3812446, + 53.498987401 + ], + [ + 12.3809039, + 53.499578901 + ], + [ + 12.3805886, + 53.500061901 + ], + [ + 12.3802689, + 53.500544301 + ], + [ + 12.3793824, + 53.501676301 + ], + [ + 12.3786721, + 53.502431501 + ], + [ + 12.3779386, + 53.503173301 + ], + [ + 12.3771439, + 53.503859001 + ], + [ + 12.3763306, + 53.504529701 + ], + [ + 12.3754091, + 53.505227401 + ], + [ + 12.3744539, + 53.505904401 + ], + [ + 12.3724808, + 53.507169501 + ], + [ + 12.3704966, + 53.508355301 + ], + [ + 12.3684693, + 53.509496901 + ], + [ + 12.3667904, + 53.510427201 + ], + [ + 12.3652913, + 53.511275601 + ], + [ + 12.3643072, + 53.511833901 + ], + [ + 12.3633695, + 53.512394701 + ], + [ + 12.3624823, + 53.512951601 + ], + [ + 12.361595, + 53.513543101 + ], + [ + 12.3608035, + 53.514108201 + ], + [ + 12.3600646, + 53.514693201 + ], + [ + 12.3593478, + 53.515290801 + ], + [ + 12.3586973, + 53.515911701 + ], + [ + 12.3581019, + 53.516542101 + ], + [ + 12.3574341, + 53.517354201 + ], + [ + 12.3570301, + 53.517895701 + ], + [ + 12.3565047, + 53.518727301 + ], + [ + 12.3561008, + 53.519471401 + ], + [ + 12.3555544, + 53.520669501 + ], + [ + 12.3551621, + 53.521744001 + ], + [ + 12.35459, + 53.523523601 + ], + [ + 12.3541674, + 53.524953301 + ], + [ + 12.3537471, + 53.526370601 + ], + [ + 12.3532824, + 53.527744701 + ], + [ + 12.3528715, + 53.528785701 + ], + [ + 12.35233, + 53.529940101 + ], + [ + 12.3518848, + 53.530751601 + ], + [ + 12.3513349, + 53.531644401 + ], + [ + 12.3506805, + 53.532577001 + ], + [ + 12.3500421, + 53.533406001 + ], + [ + 12.3493179, + 53.534238201 + ], + [ + 12.3483443, + 53.535231301 + ], + [ + 12.3475155, + 53.535994901 + ], + [ + 12.3467886, + 53.536621401 + ], + [ + 12.3460563, + 53.537200001 + ], + [ + 12.3447984, + 53.538138901 + ], + [ + 12.3430228, + 53.539348701 + ], + [ + 12.3411238, + 53.540569701 + ], + [ + 12.3390692, + 53.541867101 + ], + [ + 12.3372721, + 53.542998701 + ], + [ + 12.3355367, + 53.544093701 + ], + [ + 12.3335438, + 53.545348001 + ], + [ + 12.3299443, + 53.547619001 + ], + [ + 12.3282384, + 53.548699401 + ], + [ + 12.3263367, + 53.549902601 + ], + [ + 12.3246013, + 53.551040401 + ], + [ + 12.3229169, + 53.552237101 + ], + [ + 12.3216134, + 53.553261701 + ], + [ + 12.3204225, + 53.554310201 + ], + [ + 12.3193657, + 53.555395201 + ], + [ + 12.3187112, + 53.556182401 + ], + [ + 12.3182632, + 53.556801601 + ], + [ + 12.3177288, + 53.557592001 + ], + [ + 12.3172015, + 53.558544401 + ], + [ + 12.3168617, + 53.559290701 + ], + [ + 12.3164689, + 53.560383901 + ], + [ + 12.3162282, + 53.561401301 + ], + [ + 12.3160902, + 53.562284201 + ], + [ + 12.3160229, + 53.563333101 + ], + [ + 12.3160619, + 53.564197101 + ], + [ + 12.3161595, + 53.564985401 + ], + [ + 12.3162959, + 53.565694601 + ], + [ + 12.3165439, + 53.566596401 + ], + [ + 12.316815, + 53.567352301 + ], + [ + 12.3172334, + 53.568260301 + ], + [ + 12.3178396, + 53.569338601 + ], + [ + 12.3184672, + 53.570249701 + ], + [ + 12.3191431, + 53.571082701 + ], + [ + 12.3201248, + 53.572138701 + ], + [ + 12.3212379, + 53.573158001 + ], + [ + 12.3229062, + 53.574444901 + ], + [ + 12.3243385, + 53.575378201 + ], + [ + 12.3262724, + 53.576516901 + ], + [ + 12.3281446, + 53.577510601 + ], + [ + 12.3304084, + 53.578630201 + ], + [ + 12.3328186, + 53.579806401 + ], + [ + 12.3357302, + 53.581224001 + ], + [ + 12.3377482, + 53.582195301 + ], + [ + 12.3396708, + 53.583124401 + ], + [ + 12.34266, + 53.584589801 + ], + [ + 12.3462606, + 53.586366801 + ], + [ + 12.3494222, + 53.588035601 + ], + [ + 12.3529714, + 53.590014801 + ], + [ + 12.3560582, + 53.591910701 + ], + [ + 12.3580523, + 53.593219001 + ], + [ + 12.3597242, + 53.594435801 + ], + [ + 12.3617743, + 53.596015601 + ], + [ + 12.3633154, + 53.597315401 + ], + [ + 12.3637815, + 53.597752201 + ], + [ + 12.364631, + 53.598528401 + ], + [ + 12.3658426, + 53.599728301 + ], + [ + 12.3660452, + 53.599928901 + ], + [ + 12.3674009, + 53.601373301 + ], + [ + 12.3686312, + 53.602812801 + ], + [ + 12.368998, + 53.603262901 + ], + [ + 12.3692803, + 53.603609301 + ], + [ + 12.3698341, + 53.604349701 + ], + [ + 12.3701361, + 53.604754201 + ], + [ + 12.3704698, + 53.605201101 + ], + [ + 12.371422, + 53.606622301 + ], + [ + 12.372012, + 53.607566001 + ], + [ + 12.3727657, + 53.608902701 + ], + [ + 12.3729619, + 53.609298801 + ], + [ + 12.3735193, + 53.610400801 + ], + [ + 12.3741273, + 53.611783001 + ], + [ + 12.3746925, + 53.613257001 + ], + [ + 12.3751735, + 53.614711501 + ], + [ + 12.3753837, + 53.615492701 + ], + [ + 12.375622, + 53.616451301 + ], + [ + 12.3758159, + 53.617332101 + ], + [ + 12.3759021, + 53.617767001 + ], + [ + 12.3760464, + 53.618645301 + ], + [ + 12.3761008, + 53.619088401 + ], + [ + 12.3761947, + 53.619960201 + ], + [ + 12.3762692, + 53.620829201 + ], + [ + 12.37632, + 53.621825601 + ], + [ + 12.3763212, + 53.623152501 + ], + [ + 12.3762769, + 53.624263901 + ], + [ + 12.3761582, + 53.625650701 + ], + [ + 12.3760349, + 53.626615501 + ], + [ + 12.3758439, + 53.627715401 + ], + [ + 12.3756162, + 53.628767701 + ], + [ + 12.375382, + 53.629759801 + ], + [ + 12.3753109, + 53.630028601 + ], + [ + 12.3747224, + 53.632040101 + ], + [ + 12.3737808, + 53.634746801 + ], + [ + 12.3727343, + 53.637326301 + ], + [ + 12.3715777, + 53.639953501 + ], + [ + 12.3695191, + 53.644526401 + ], + [ + 12.369012792, + 53.645647423 + ] + ] + } + }, + { + "identifier": "2023-007252--vi-bs.2026-04-23_18-00-00-000.devi-zus.2025-10-01_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.16298657953688,12.448026972466259,53.146184904259826,12.452019220210273", + "point": "53.16298657953688,12.448026972466259", + "startLcPosition": "2", + "impact": { + "lower": "Wittstock/Dosse", + "upper": "Eldetal", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rostock -> Dreieck Wittstock/Dosse", + "title": "A19 | Eldetal - Wittstock/Dosse", + "startTimestamp": "2026-04-23T18:00:00+02:00", + "coordinate": { + "lat": 53.16298657953688, + "long": 12.448026972466259 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.04.26 um 18:00 Uhr", + "Ende: 28.08.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A19: Rostock -> Dreieck Wittstock/Dosse, zwischen 16.0 km hinter Eldetal und 1.3 km vor AD Wittstock/Dosse", + "", + "L\u00e4nge: 1.9 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A19 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.448026972, + 53.16298658 + ], + [ + 12.4479353, + 53.162492501 + ], + [ + 12.4478221, + 53.161115301 + ], + [ + 12.4477902, + 53.160143401 + ], + [ + 12.4477687, + 53.159315101 + ], + [ + 12.4478166, + 53.158308101 + ], + [ + 12.4478338, + 53.158024401 + ], + [ + 12.4480755, + 53.156218201 + ], + [ + 12.4482098, + 53.155366801 + ], + [ + 12.4483344, + 53.154799801 + ], + [ + 12.4485113, + 53.154071801 + ], + [ + 12.4490602, + 53.152285001 + ], + [ + 12.4493471, + 53.151540401 + ], + [ + 12.4494677, + 53.151218601 + ], + [ + 12.4496421, + 53.150786501 + ], + [ + 12.4498489, + 53.150323201 + ], + [ + 12.4503493, + 53.149292201 + ], + [ + 12.4511164, + 53.147815801 + ], + [ + 12.45201922, + 53.146184904 + ] + ] + } + }, + { + "identifier": "2023-007252--vi-bs.2026-03-16_09-00-00-000.devi-zus.2025-10-01_00-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.164772460568145,12.448373976888076,53.146184904259826,12.452019220210273", + "point": "53.164772460568145,12.448373976888076", + "startLcPosition": "2", + "impact": { + "lower": "Wittstock/Dosse", + "upper": "Eldetal", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rostock -> Dreieck Wittstock/Dosse", + "title": "A19 | Eldetal - Wittstock/Dosse", + "startTimestamp": "2026-03-16T09:00:00+01:00", + "coordinate": { + "lat": 53.164772460568145, + "long": 12.448373976888076 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 09:00 Uhr", + "Ende: 23.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A19: Rostock -> Dreieck Wittstock/Dosse, zwischen 15.8 km hinter Eldetal und 1.3 km vor AD Wittstock/Dosse", + "", + "L\u00e4nge: 2.1 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A19 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.448373977, + 53.164772461 + ], + [ + 12.4483105, + 53.164514601 + ], + [ + 12.4479353, + 53.162492501 + ], + [ + 12.4478221, + 53.161115301 + ], + [ + 12.4477902, + 53.160143401 + ], + [ + 12.4477687, + 53.159315101 + ], + [ + 12.4478166, + 53.158308101 + ], + [ + 12.4478338, + 53.158024401 + ], + [ + 12.4480755, + 53.156218201 + ], + [ + 12.4482098, + 53.155366801 + ], + [ + 12.4483344, + 53.154799801 + ], + [ + 12.4485113, + 53.154071801 + ], + [ + 12.4490602, + 53.152285001 + ], + [ + 12.4493471, + 53.151540401 + ], + [ + 12.4494677, + 53.151218601 + ], + [ + 12.4496421, + 53.150786501 + ], + [ + 12.4498489, + 53.150323201 + ], + [ + 12.4503493, + 53.149292201 + ], + [ + 12.4511164, + 53.147815801 + ], + [ + 12.45201922, + 53.146184904 + ] + ] + } + }, + { + "identifier": "2025-004123--vi-bs.2025-01-29_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.006437331736656,12.203116132504784,54.01405906073344,12.202483050077074", + "point": "54.006437331736656,12.203116132504784", + "startLcPosition": "17", + "impact": { + "lower": "Rostock", + "upper": "Zarnow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "A19 | Zarnow - Rostock", + "startTimestamp": "2025-01-29T00:00:00+01:00", + "coordinate": { + "lat": 54.006437331736656, + "long": 12.203116132504784 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.01.25 um 00:00 Uhr", + "Ende: 01.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.10.26)", + "", + "A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 4.3 km hinter Zarnow und 1.6 km vor AK Rostock", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A19, AS Kavelstorf - Absicherung GST-Auffahrt RF Rostock (ab Betonwerk)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.203116133, + 54.006437332 + ], + [ + 12.2031462, + 54.006973701 + ], + [ + 12.2031736, + 54.007717601 + ], + [ + 12.2031315, + 54.009357801 + ], + [ + 12.2030511, + 54.010154601 + ], + [ + 12.2029312, + 54.011128201 + ], + [ + 12.2028518, + 54.011644801 + ], + [ + 12.2024928, + 54.013993901 + ], + [ + 12.20248305, + 54.014059061 + ] + ] + } + }, + { + "identifier": "2026-004471--vi-bs.2026-02-03_08-00-00-000_048.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.99409387610364,12.199385872527577,53.32070669108643,12.478295597474357", + "point": "53.99409387610364,12.199385872527577", + "startLcPosition": "18", + "impact": { + "lower": "Eldetal", + "upper": "Kavelstorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Rostock -> Dreieck Wittstock/Dosse", + "title": "A19 | Kavelstorf - Eldetal", + "coordinate": { + "lat": 53.99409387610364, + "long": 12.199385872527577 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 03.02.26 und dem 30.04.26 von 08:00 bis 17:00 Uhr.", + "Jeden Freitag und Freitag zwischen dem 06.02.26 und dem 24.04.26 von 08:00 bis 12:00 Uhr.", + "Jeden Montag und Montag zwischen dem 09.02.26 und dem 27.04.26 von 09:00 bis 17:00 Uhr.", + "", + "A19: Rostock -> Dreieck Wittstock/Dosse, zwischen 1.9 km hinter AS Kavelstorf und 2.0 km vor Eldetal", + "", + "L\u00e4nge: 82.79 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A19 von Kavelstorf (AS) nach Eldetal (Rastplatz) Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.199385873, + 53.994093876 + ], + [ + 12.1987743, + 53.992369801 + ], + [ + 12.1976352, + 53.989200401 + ], + [ + 12.1965825, + 53.986140601 + ], + [ + 12.1962746, + 53.984991301 + ], + [ + 12.1960977, + 53.984099001 + ], + [ + 12.1960022, + 53.983149701 + ], + [ + 12.1959961, + 53.982073501 + ], + [ + 12.1960823, + 53.981000901 + ], + [ + 12.1962549, + 53.979872101 + ], + [ + 12.1964623, + 53.978750501 + ], + [ + 12.1967652, + 53.977189101 + ], + [ + 12.1969882, + 53.976008801 + ], + [ + 12.1971666, + 53.974864501 + ], + [ + 12.1973312, + 53.973694901 + ], + [ + 12.1974298, + 53.972723601 + ], + [ + 12.1974871, + 53.971899101 + ], + [ + 12.1975238, + 53.970985501 + ], + [ + 12.1975376, + 53.969824001 + ], + [ + 12.1975151, + 53.968990101 + ], + [ + 12.197403, + 53.967034201 + ], + [ + 12.1972286, + 53.964766901 + ], + [ + 12.1970945, + 53.962715601 + ], + [ + 12.1970516, + 53.961772001 + ], + [ + 12.1970408, + 53.960842501 + ], + [ + 12.1970677, + 53.959996701 + ], + [ + 12.197122, + 53.959199101 + ], + [ + 12.1972071, + 53.958379101 + ], + [ + 12.1973377, + 53.957555801 + ], + [ + 12.1975555, + 53.956525301 + ], + [ + 12.1977842, + 53.955721801 + ], + [ + 12.1980586, + 53.954899101 + ], + [ + 12.198614, + 53.953526501 + ], + [ + 12.1991563, + 53.952411601 + ], + [ + 12.1996202, + 53.951588701 + ], + [ + 12.2003732, + 53.950405501 + ], + [ + 12.2011232, + 53.949341701 + ], + [ + 12.2020861, + 53.948121501 + ], + [ + 12.2029095, + 53.947168101 + ], + [ + 12.2040119, + 53.945995201 + ], + [ + 12.2054436, + 53.944581501 + ], + [ + 12.2069626, + 53.943208401 + ], + [ + 12.2088045, + 53.941658401 + ], + [ + 12.2108332, + 53.940066001 + ], + [ + 12.2111875, + 53.939793001 + ], + [ + 12.2126084, + 53.938750301 + ], + [ + 12.2140467, + 53.937720601 + ], + [ + 12.2155213, + 53.936685101 + ], + [ + 12.2170313, + 53.935644601 + ], + [ + 12.2203289, + 53.933411701 + ], + [ + 12.2237261, + 53.931123601 + ], + [ + 12.2253033, + 53.929967701 + ], + [ + 12.2267384, + 53.928817501 + ], + [ + 12.2281679, + 53.927583001 + ], + [ + 12.229407, + 53.926414301 + ], + [ + 12.2305301, + 53.925240701 + ], + [ + 12.2316806, + 53.923947501 + ], + [ + 12.2327061, + 53.922666901 + ], + [ + 12.2336412, + 53.921344801 + ], + [ + 12.2344789, + 53.920019801 + ], + [ + 12.2352324, + 53.918706501 + ], + [ + 12.2366068, + 53.916043201 + ], + [ + 12.2373986, + 53.914660401 + ], + [ + 12.2378269, + 53.913994401 + ], + [ + 12.238286, + 53.913322901 + ], + [ + 12.239281, + 53.911962101 + ], + [ + 12.2398357, + 53.911268601 + ], + [ + 12.2404427, + 53.910560801 + ], + [ + 12.2428755, + 53.907879301 + ], + [ + 12.2443574, + 53.906315801 + ], + [ + 12.2457416, + 53.904832701 + ], + [ + 12.2478536, + 53.902567801 + ], + [ + 12.2491742, + 53.901134301 + ], + [ + 12.250111, + 53.900125601 + ], + [ + 12.2510444, + 53.899071501 + ], + [ + 12.2518142, + 53.898183401 + ], + [ + 12.2528817, + 53.896879501 + ], + [ + 12.253791, + 53.895676701 + ], + [ + 12.2546536, + 53.894467601 + ], + [ + 12.2552607, + 53.893501701 + ], + [ + 12.2558314, + 53.892523501 + ], + [ + 12.256038, + 53.892124001 + ], + [ + 12.2564518, + 53.891358601 + ], + [ + 12.2567251, + 53.890762501 + ], + [ + 12.2569531, + 53.890245601 + ], + [ + 12.2575432, + 53.888788101 + ], + [ + 12.2577361, + 53.888220501 + ], + [ + 12.2580472, + 53.887209601 + ], + [ + 12.2582952, + 53.886238201 + ], + [ + 12.2584856, + 53.885394001 + ], + [ + 12.2586117, + 53.884617801 + ], + [ + 12.2587243, + 53.883756201 + ], + [ + 12.2588397, + 53.882689001 + ], + [ + 12.2589309, + 53.881195001 + ], + [ + 12.2589696, + 53.879337401 + ], + [ + 12.258948, + 53.877459301 + ], + [ + 12.2588987, + 53.874671201 + ], + [ + 12.2588802, + 53.873129001 + ], + [ + 12.258898, + 53.870906101 + ], + [ + 12.2590066, + 53.869088901 + ], + [ + 12.2591187, + 53.867904701 + ], + [ + 12.2592746, + 53.866750701 + ], + [ + 12.2594595, + 53.865737001 + ], + [ + 12.2597121, + 53.864645001 + ], + [ + 12.2599925, + 53.863649401 + ], + [ + 12.2605235, + 53.862159801 + ], + [ + 12.2608429, + 53.861438101 + ], + [ + 12.2612188, + 53.860655001 + ], + [ + 12.2620075, + 53.859239501 + ], + [ + 12.2625621, + 53.858392701 + ], + [ + 12.2629904, + 53.857767601 + ], + [ + 12.2637421, + 53.856791701 + ], + [ + 12.2646172, + 53.855748601 + ], + [ + 12.2653628, + 53.854958101 + ], + [ + 12.266184, + 53.854141401 + ], + [ + 12.2670947, + 53.853312501 + ], + [ + 12.2679557, + 53.852581601 + ], + [ + 12.2688462, + 53.851883901 + ], + [ + 12.2698332, + 53.851157701 + ], + [ + 12.2710805, + 53.850304801 + ], + [ + 12.2719066, + 53.849774801 + ], + [ + 12.2729825, + 53.849103301 + ], + [ + 12.2743122, + 53.848347101 + ], + [ + 12.2756509, + 53.847611801 + ], + [ + 12.2773434, + 53.846706701 + ], + [ + 12.2800766, + 53.845277801 + ], + [ + 12.2818979, + 53.844324001 + ], + [ + 12.2835323, + 53.843448601 + ], + [ + 12.2847498, + 53.842788701 + ], + [ + 12.2857054, + 53.842252101 + ], + [ + 12.2863476, + 53.841890701 + ], + [ + 12.2877583, + 53.841053301 + ], + [ + 12.2887843, + 53.840413401 + ], + [ + 12.2898781, + 53.839704401 + ], + [ + 12.2908394, + 53.839053601 + ], + [ + 12.2915573, + 53.838530001 + ], + [ + 12.2919768, + 53.838213401 + ], + [ + 12.292713, + 53.837647401 + ], + [ + 12.2933536, + 53.837112801 + ], + [ + 12.2938703, + 53.836668001 + ], + [ + 12.2943092, + 53.836276401 + ], + [ + 12.2950117, + 53.835600801 + ], + [ + 12.295447, + 53.835149601 + ], + [ + 12.295916, + 53.834631701 + ], + [ + 12.2963283, + 53.834158601 + ], + [ + 12.2967689, + 53.833617701 + ], + [ + 12.2971519, + 53.833108601 + ], + [ + 12.2975819, + 53.832499401 + ], + [ + 12.2978758, + 53.832049401 + ], + [ + 12.2984926, + 53.830996201 + ], + [ + 12.298806, + 53.830373701 + ], + [ + 12.2990856, + 53.829756201 + ], + [ + 12.2993415, + 53.829123501 + ], + [ + 12.2995539, + 53.828497901 + ], + [ + 12.2996428, + 53.828234801 + ], + [ + 12.2998105, + 53.827629101 + ], + [ + 12.2999554, + 53.827008501 + ], + [ + 12.3000921, + 53.826258101 + ], + [ + 12.3001924, + 53.825435201 + ], + [ + 12.3002519, + 53.824574201 + ], + [ + 12.3002605, + 53.823649901 + ], + [ + 12.3002525, + 53.823267601 + ], + [ + 12.3002337, + 53.822820301 + ], + [ + 12.3001983, + 53.822339101 + ], + [ + 12.3001383, + 53.821737601 + ], + [ + 12.3000095, + 53.820708901 + ], + [ + 12.299849, + 53.819780701 + ], + [ + 12.2997577, + 53.819309701 + ], + [ + 12.2995792, + 53.818466001 + ], + [ + 12.2994902, + 53.818049701 + ], + [ + 12.2992482, + 53.817010601 + ], + [ + 12.2989956, + 53.816026501 + ], + [ + 12.2981945, + 53.812881401 + ], + [ + 12.2979265, + 53.811515201 + ], + [ + 12.2977509, + 53.810161701 + ], + [ + 12.2976615, + 53.808626201 + ], + [ + 12.2976584, + 53.807934901 + ], + [ + 12.2976738, + 53.807101601 + ], + [ + 12.2977231, + 53.806450301 + ], + [ + 12.2977847, + 53.805815301 + ], + [ + 12.2979353, + 53.804702901 + ], + [ + 12.2981294, + 53.803635501 + ], + [ + 12.29829, + 53.802953201 + ], + [ + 12.2984687, + 53.802269101 + ], + [ + 12.298658, + 53.801575401 + ], + [ + 12.2988869, + 53.800902301 + ], + [ + 12.2991947, + 53.800072401 + ], + [ + 12.2995327, + 53.799233601 + ], + [ + 12.2999173, + 53.798385101 + ], + [ + 12.3003207, + 53.797555001 + ], + [ + 12.3007975, + 53.796682801 + ], + [ + 12.3012985, + 53.795830001 + ], + [ + 12.3018499, + 53.794968701 + ], + [ + 12.3024296, + 53.794121901 + ], + [ + 12.3029685, + 53.793377401 + ], + [ + 12.3035453, + 53.792650701 + ], + [ + 12.3042057, + 53.791854901 + ], + [ + 12.3048937, + 53.791072701 + ], + [ + 12.3057234, + 53.790189601 + ], + [ + 12.306592, + 53.789319001 + ], + [ + 12.3083744, + 53.787625701 + ], + [ + 12.3101999, + 53.785926701 + ], + [ + 12.3119929, + 53.784204901 + ], + [ + 12.3121888, + 53.784014301 + ], + [ + 12.3128182, + 53.783401901 + ], + [ + 12.3135565, + 53.782664101 + ], + [ + 12.3141225, + 53.782074101 + ], + [ + 12.3152051, + 53.780945701 + ], + [ + 12.315528, + 53.780579301 + ], + [ + 12.3158588, + 53.780204101 + ], + [ + 12.3165931, + 53.779356501 + ], + [ + 12.3172998, + 53.778496501 + ], + [ + 12.3179795, + 53.777636701 + ], + [ + 12.3181714, + 53.777392401 + ], + [ + 12.3188375, + 53.776493301 + ], + [ + 12.3193574, + 53.775781401 + ], + [ + 12.3195903, + 53.775442901 + ], + [ + 12.3197219, + 53.775218701 + ], + [ + 12.3203888, + 53.774224001 + ], + [ + 12.3206373, + 53.773813901 + ], + [ + 12.3207492, + 53.773620001 + ], + [ + 12.3217325, + 53.771929001 + ], + [ + 12.3222668, + 53.770933001 + ], + [ + 12.3227585, + 53.769927401 + ], + [ + 12.3234799, + 53.768327601 + ], + [ + 12.324097, + 53.766742401 + ], + [ + 12.3245523, + 53.765472501 + ], + [ + 12.3251754, + 53.763522501 + ], + [ + 12.3252863, + 53.763127301 + ], + [ + 12.3258442, + 53.761213401 + ], + [ + 12.3263126, + 53.759554901 + ], + [ + 12.3267695, + 53.757950401 + ], + [ + 12.3270121, + 53.757153001 + ], + [ + 12.3272642, + 53.756358501 + ], + [ + 12.3276049, + 53.755346801 + ], + [ + 12.3279637, + 53.754356901 + ], + [ + 12.3281664, + 53.753842101 + ], + [ + 12.3283744, + 53.753335901 + ], + [ + 12.3287985, + 53.752344701 + ], + [ + 12.3292437, + 53.751421701 + ], + [ + 12.3295371, + 53.750840001 + ], + [ + 12.3302436, + 53.749545301 + ], + [ + 12.3308605, + 53.748519101 + ], + [ + 12.3314035, + 53.747669501 + ], + [ + 12.3320075, + 53.746785001 + ], + [ + 12.332563, + 53.746012301 + ], + [ + 12.3331005, + 53.745326701 + ], + [ + 12.3336469, + 53.744633901 + ], + [ + 12.3342115, + 53.743953101 + ], + [ + 12.3346391, + 53.743448201 + ], + [ + 12.3350776, + 53.742957401 + ], + [ + 12.335971, + 53.741976801 + ], + [ + 12.3368064, + 53.741149001 + ], + [ + 12.3378022, + 53.740178901 + ], + [ + 12.3387602, + 53.739295301 + ], + [ + 12.3397419, + 53.738422701 + ], + [ + 12.3415323, + 53.736941501 + ], + [ + 12.3433992, + 53.735456001 + ], + [ + 12.345235, + 53.734016901 + ], + [ + 12.3471912, + 53.732495701 + ], + [ + 12.3480675, + 53.731828901 + ], + [ + 12.350063, + 53.730275501 + ], + [ + 12.3502317, + 53.730147301 + ], + [ + 12.351012, + 53.729536501 + ], + [ + 12.3518967, + 53.728837501 + ], + [ + 12.3527501, + 53.728113101 + ], + [ + 12.3536353, + 53.727308501 + ], + [ + 12.354169, + 53.726748401 + ], + [ + 12.3546005, + 53.726245601 + ], + [ + 12.3549965, + 53.725740301 + ], + [ + 12.3555489, + 53.724936301 + ], + [ + 12.3560278, + 53.724102101 + ], + [ + 12.3562284, + 53.723676401 + ], + [ + 12.3564233, + 53.723254301 + ], + [ + 12.3566483, + 53.722665401 + ], + [ + 12.3567853, + 53.722114901 + ], + [ + 12.356908, + 53.721602101 + ], + [ + 12.3570302, + 53.720848801 + ], + [ + 12.3570708, + 53.720152701 + ], + [ + 12.3570802, + 53.719463001 + ], + [ + 12.3570537, + 53.718658501 + ], + [ + 12.3569991, + 53.717982201 + ], + [ + 12.3568283, + 53.715749601 + ], + [ + 12.3567641, + 53.714966401 + ], + [ + 12.3567545, + 53.713682201 + ], + [ + 12.3568494, + 53.712210801 + ], + [ + 12.3570066, + 53.710792601 + ], + [ + 12.3571029, + 53.710249901 + ], + [ + 12.3572519, + 53.709459101 + ], + [ + 12.3574531, + 53.708641101 + ], + [ + 12.3576723, + 53.707840801 + ], + [ + 12.3579245, + 53.707061301 + ], + [ + 12.3581975, + 53.706298601 + ], + [ + 12.3585075, + 53.705513901 + ], + [ + 12.3588444, + 53.704732101 + ], + [ + 12.3592192, + 53.703955301 + ], + [ + 12.3596117, + 53.703169801 + ], + [ + 12.360585, + 53.701500601 + ], + [ + 12.3611046, + 53.700718001 + ], + [ + 12.3616459, + 53.699950401 + ], + [ + 12.3622119, + 53.699190601 + ], + [ + 12.362799, + 53.698447901 + ], + [ + 12.3637755, + 53.697293301 + ], + [ + 12.3648323, + 53.696160901 + ], + [ + 12.3658393, + 53.695082301 + ], + [ + 12.3668715, + 53.693987701 + ], + [ + 12.3673706, + 53.693418601 + ], + [ + 12.367829, + 53.692863101 + ], + [ + 12.3684336, + 53.692028401 + ], + [ + 12.3689629, + 53.691167701 + ], + [ + 12.3692838, + 53.690555101 + ], + [ + 12.3695646, + 53.689936801 + ], + [ + 12.3699541, + 53.688872801 + ], + [ + 12.3699873, + 53.688732001 + ], + [ + 12.3700335, + 53.688560401 + ], + [ + 12.3701943, + 53.687869401 + ], + [ + 12.3703155, + 53.686943301 + ], + [ + 12.3703495, + 53.686454701 + ], + [ + 12.3703514, + 53.685755201 + ], + [ + 12.3703013, + 53.684959201 + ], + [ + 12.370245, + 53.684550901 + ], + [ + 12.3701799, + 53.684177101 + ], + [ + 12.370032, + 53.683547601 + ], + [ + 12.3698379, + 53.682912601 + ], + [ + 12.3696328, + 53.682342601 + ], + [ + 12.3694108, + 53.681820901 + ], + [ + 12.3692173, + 53.681423601 + ], + [ + 12.3689835, + 53.680969001 + ], + [ + 12.3687559, + 53.680573801 + ], + [ + 12.3681802, + 53.679608101 + ], + [ + 12.3675848, + 53.678641401 + ], + [ + 12.3672206, + 53.678039801 + ], + [ + 12.3668493, + 53.677440901 + ], + [ + 12.3664505, + 53.676742301 + ], + [ + 12.3657598, + 53.675455001 + ], + [ + 12.3650612, + 53.673942801 + ], + [ + 12.3644587, + 53.672414301 + ], + [ + 12.3641925, + 53.671664601 + ], + [ + 12.3638119, + 53.670405801 + ], + [ + 12.3635662, + 53.669405401 + ], + [ + 12.3633552, + 53.668409001 + ], + [ + 12.3632544, + 53.667837001 + ], + [ + 12.3631792, + 53.667222601 + ], + [ + 12.3630456, + 53.666037101 + ], + [ + 12.3629802, + 53.664857001 + ], + [ + 12.3629662, + 53.663753001 + ], + [ + 12.3630082, + 53.662467601 + ], + [ + 12.3631203, + 53.661147701 + ], + [ + 12.3632963, + 53.659891501 + ], + [ + 12.363528, + 53.658680101 + ], + [ + 12.3636667, + 53.658120201 + ], + [ + 12.3638372, + 53.657444901 + ], + [ + 12.3641991, + 53.656243801 + ], + [ + 12.3646334, + 53.655026101 + ], + [ + 12.3651148, + 53.653823001 + ], + [ + 12.3672295, + 53.649138301 + ], + [ + 12.3693286, + 53.644488601 + ], + [ + 12.3709444, + 53.640898701 + ], + [ + 12.3713909, + 53.639934101 + ], + [ + 12.3717499, + 53.639090801 + ], + [ + 12.372549, + 53.637280301 + ], + [ + 12.3735759, + 53.634735501 + ], + [ + 12.3744881, + 53.632115001 + ], + [ + 12.3748867, + 53.630833301 + ], + [ + 12.3752152, + 53.629636001 + ], + [ + 12.37535, + 53.629077701 + ], + [ + 12.3757638, + 53.627013801 + ], + [ + 12.3758194, + 53.626678301 + ], + [ + 12.3759803, + 53.625402601 + ], + [ + 12.3760674, + 53.624490101 + ], + [ + 12.3761133, + 53.623626401 + ], + [ + 12.3761348, + 53.622455601 + ], + [ + 12.3760692, + 53.620652901 + ], + [ + 12.3758906, + 53.618961401 + ], + [ + 12.3758558, + 53.618752601 + ], + [ + 12.3756913, + 53.617713401 + ], + [ + 12.375491, + 53.616680801 + ], + [ + 12.3751182, + 53.615213101 + ], + [ + 12.3747885, + 53.614111001 + ], + [ + 12.3744109, + 53.613003101 + ], + [ + 12.3739401, + 53.611813301 + ], + [ + 12.373298, + 53.610379401 + ], + [ + 12.3727282, + 53.609252801 + ], + [ + 12.3725217, + 53.608840701 + ], + [ + 12.3718348, + 53.607644701 + ], + [ + 12.3712262, + 53.606652501 + ], + [ + 12.370274, + 53.605233001 + ], + [ + 12.3699361, + 53.604805401 + ], + [ + 12.3687523, + 53.603255801 + ], + [ + 12.367466, + 53.601699401 + ], + [ + 12.3661184, + 53.600262801 + ], + [ + 12.3656063, + 53.599766801 + ], + [ + 12.3643506, + 53.598501001 + ], + [ + 12.3636162, + 53.597806001 + ], + [ + 12.363152, + 53.597387401 + ], + [ + 12.3616389, + 53.596104301 + ], + [ + 12.3595561, + 53.594491201 + ], + [ + 12.3579169, + 53.593318801 + ], + [ + 12.3558901, + 53.591968901 + ], + [ + 12.3528079, + 53.590089601 + ], + [ + 12.3492774, + 53.588121501 + ], + [ + 12.3461298, + 53.586474901 + ], + [ + 12.3425222, + 53.584669301 + ], + [ + 12.3395815, + 53.583219601 + ], + [ + 12.3374894, + 53.582211701 + ], + [ + 12.3356316, + 53.581322801 + ], + [ + 12.3326645, + 53.579885001 + ], + [ + 12.3313058, + 53.579232001 + ], + [ + 12.3300382, + 53.578607901 + ], + [ + 12.3279676, + 53.577587101 + ], + [ + 12.3261222, + 53.576615601 + ], + [ + 12.3241454, + 53.575464201 + ], + [ + 12.3226997, + 53.574521401 + ], + [ + 12.3210367, + 53.573239301 + ], + [ + 12.3198405, + 53.572153001 + ], + [ + 12.3189285, + 53.571164001 + ], + [ + 12.3182365, + 53.570302301 + ], + [ + 12.3176196, + 53.569402301 + ], + [ + 12.3170188, + 53.568328701 + ], + [ + 12.3166031, + 53.567412001 + ], + [ + 12.316302, + 53.566594001 + ], + [ + 12.3160601, + 53.565703101 + ], + [ + 12.3159213, + 53.565049201 + ], + [ + 12.3158212, + 53.564211801 + ], + [ + 12.3157858, + 53.563328901 + ], + [ + 12.3158424, + 53.562351501 + ], + [ + 12.3159805, + 53.561378201 + ], + [ + 12.3162282, + 53.560356501 + ], + [ + 12.3166317, + 53.559252901 + ], + [ + 12.316975, + 53.558502301 + ], + [ + 12.3174775, + 53.557573101 + ], + [ + 12.3179978, + 53.556774201 + ], + [ + 12.3184779, + 53.556121801 + ], + [ + 12.3191162, + 53.555366601 + ], + [ + 12.3202347, + 53.554214501 + ], + [ + 12.3213666, + 53.553220301 + ], + [ + 12.3227935, + 53.552103201 + ], + [ + 12.3243975, + 53.550968701 + ], + [ + 12.3262107, + 53.549770301 + ], + [ + 12.3280158, + 53.548621401 + ], + [ + 12.3297968, + 53.547494701 + ], + [ + 12.3333722, + 53.545244401 + ], + [ + 12.3353114, + 53.544020401 + ], + [ + 12.3371165, + 53.542877601 + ], + [ + 12.3389378, + 53.541730001 + ], + [ + 12.3409575, + 53.540464501 + ], + [ + 12.3428457, + 53.539240301 + ], + [ + 12.3445865, + 53.538046401 + ], + [ + 12.3458471, + 53.537136201 + ], + [ + 12.3465579, + 53.536560801 + ], + [ + 12.3472982, + 53.535932701 + ], + [ + 12.3481511, + 53.535143701 + ], + [ + 12.3490658, + 53.534199901 + ], + [ + 12.3498141, + 53.533339101 + ], + [ + 12.3504713, + 53.532497301 + ], + [ + 12.3511123, + 53.531579101 + ], + [ + 12.3516595, + 53.530703801 + ], + [ + 12.3520682, + 53.529937701 + ], + [ + 12.3526076, + 53.528796801 + ], + [ + 12.3530466, + 53.527716901 + ], + [ + 12.3535183, + 53.526383101 + ], + [ + 12.3539689, + 53.524933901 + ], + [ + 12.3543962, + 53.523493001 + ], + [ + 12.354959, + 53.521741201 + ], + [ + 12.3553746, + 53.520634801 + ], + [ + 12.3559303, + 53.519393701 + ], + [ + 12.3563179, + 53.518678701 + ], + [ + 12.3568503, + 53.517847101 + ], + [ + 12.3572426, + 53.517309801 + ], + [ + 12.3579361, + 53.516475401 + ], + [ + 12.3585339, + 53.515847901 + ], + [ + 12.3591713, + 53.515228601 + ], + [ + 12.3598787, + 53.514645401 + ], + [ + 12.3606494, + 53.514034601 + ], + [ + 12.3614222, + 53.513488901 + ], + [ + 12.362304, + 53.512897501 + ], + [ + 12.3632053, + 53.512330201 + ], + [ + 12.3641493, + 53.511766001 + ], + [ + 12.3651536, + 53.511189601 + ], + [ + 12.3666386, + 53.510348101 + ], + [ + 12.3682974, + 53.509440201 + ], + [ + 12.3703727, + 53.508266801 + ], + [ + 12.3723407, + 53.507090401 + ], + [ + 12.3743091, + 53.505822501 + ], + [ + 12.3752418, + 53.505162901 + ], + [ + 12.3761405, + 53.504481701 + ], + [ + 12.376993, + 53.503791201 + ], + [ + 12.3777817, + 53.503091201 + ], + [ + 12.3785127, + 53.502371901 + ], + [ + 12.3792091, + 53.501609401 + ], + [ + 12.3796804, + 53.501049101 + ], + [ + 12.3801141, + 53.500455901 + ], + [ + 12.3805485, + 53.499814501 + ], + [ + 12.3810742, + 53.498954301 + ], + [ + 12.3813765, + 53.498360101 + ], + [ + 12.3818457, + 53.497219801 + ], + [ + 12.3820191, + 53.496709101 + ], + [ + 12.3821864, + 53.496139601 + ], + [ + 12.3823217, + 53.495566201 + ], + [ + 12.3824296, + 53.495095801 + ], + [ + 12.3824868, + 53.494639701 + ], + [ + 12.3825504, + 53.494163601 + ], + [ + 12.382618, + 53.493274401 + ], + [ + 12.3826423, + 53.492204701 + ], + [ + 12.3825564, + 53.490213801 + ], + [ + 12.3825057, + 53.489751201 + ], + [ + 12.3824069, + 53.488888301 + ], + [ + 12.382162, + 53.487041901 + ], + [ + 12.3807592, + 53.476651401 + ], + [ + 12.3804766, + 53.474354101 + ], + [ + 12.380372, + 53.473290901 + ], + [ + 12.3802889, + 53.471660901 + ], + [ + 12.3802954, + 53.470811701 + ], + [ + 12.3803372, + 53.469961501 + ], + [ + 12.3803449, + 53.469812601 + ], + [ + 12.3804661, + 53.468639901 + ], + [ + 12.3806587, + 53.467493801 + ], + [ + 12.3808951, + 53.466341601 + ], + [ + 12.3810279, + 53.465833801 + ], + [ + 12.3811849, + 53.465233301 + ], + [ + 12.3814998, + 53.464254301 + ], + [ + 12.3818239, + 53.463370701 + ], + [ + 12.3820568, + 53.462797001 + ], + [ + 12.3824084, + 53.462001901 + ], + [ + 12.3826624, + 53.461439301 + ], + [ + 12.3829809, + 53.460800901 + ], + [ + 12.3836612, + 53.459544801 + ], + [ + 12.384035, + 53.458950901 + ], + [ + 12.3844136, + 53.458367901 + ], + [ + 12.3849147, + 53.457620801 + ], + [ + 12.3855707, + 53.456710401 + ], + [ + 12.3862989, + 53.455785101 + ], + [ + 12.3868662, + 53.455110201 + ], + [ + 12.3874824, + 53.454400901 + ], + [ + 12.3881434, + 53.453686901 + ], + [ + 12.3887913, + 53.453018601 + ], + [ + 12.3896296, + 53.452203401 + ], + [ + 12.3906445, + 53.451279601 + ], + [ + 12.391719, + 53.450373101 + ], + [ + 12.3923378, + 53.449871501 + ], + [ + 12.3932032, + 53.449190001 + ], + [ + 12.3941347, + 53.448504801 + ], + [ + 12.3948258, + 53.448014501 + ], + [ + 12.3958585, + 53.447309901 + ], + [ + 12.3969297, + 53.446600501 + ], + [ + 12.398871, + 53.445368001 + ], + [ + 12.4011863, + 53.443901901 + ], + [ + 12.4030338, + 53.442747901 + ], + [ + 12.4047624, + 53.441652101 + ], + [ + 12.4057971, + 53.441003101 + ], + [ + 12.4078538, + 53.439710201 + ], + [ + 12.4099417, + 53.438376001 + ], + [ + 12.4114845, + 53.437363601 + ], + [ + 12.4132229, + 53.436132601 + ], + [ + 12.4138557, + 53.435676301 + ], + [ + 12.41475, + 53.434968301 + ], + [ + 12.4155883, + 53.434286701 + ], + [ + 12.4165526, + 53.433459001 + ], + [ + 12.417489, + 53.432592301 + ], + [ + 12.4183833, + 53.431717301 + ], + [ + 12.4192332, + 53.430833901 + ], + [ + 12.4201415, + 53.429808601 + ], + [ + 12.4210288, + 53.428766601 + ], + [ + 12.4218904, + 53.427712001 + ], + [ + 12.4227707, + 53.426649101 + ], + [ + 12.4242535, + 53.424965501 + ], + [ + 12.4258366, + 53.423301401 + ], + [ + 12.4269457, + 53.422205001 + ], + [ + 12.4281039, + 53.421114101 + ], + [ + 12.4293858, + 53.419974401 + ], + [ + 12.4307514, + 53.418808301 + ], + [ + 12.4310877, + 53.418528401 + ], + [ + 12.4325754, + 53.417337401 + ], + [ + 12.433939, + 53.416263001 + ], + [ + 12.4354801, + 53.415006401 + ], + [ + 12.4365187, + 53.414126601 + ], + [ + 12.4375069, + 53.413231901 + ], + [ + 12.4385226, + 53.412254901 + ], + [ + 12.4394543, + 53.411282001 + ], + [ + 12.4405658, + 53.410021001 + ], + [ + 12.4415698, + 53.408776701 + ], + [ + 12.4423497, + 53.407709101 + ], + [ + 12.4430245, + 53.406697101 + ], + [ + 12.443711, + 53.405558501 + ], + [ + 12.4442294, + 53.404632801 + ], + [ + 12.4446629, + 53.403748601 + ], + [ + 12.4451243, + 53.402735501 + ], + [ + 12.4454044, + 53.402058901 + ], + [ + 12.445822, + 53.400915301 + ], + [ + 12.4462397, + 53.399577401 + ], + [ + 12.4467298, + 53.397909801 + ], + [ + 12.4473171, + 53.395841501 + ], + [ + 12.4476394, + 53.394747101 + ], + [ + 12.4479172, + 53.393850601 + ], + [ + 12.4483608, + 53.392522301 + ], + [ + 12.4488416, + 53.391178701 + ], + [ + 12.4494087, + 53.389782201 + ], + [ + 12.4499738, + 53.388571101 + ], + [ + 12.4506141, + 53.387329701 + ], + [ + 12.4510918, + 53.386492001 + ], + [ + 12.4515547, + 53.385706801 + ], + [ + 12.4522757, + 53.384589401 + ], + [ + 12.4529382, + 53.383616701 + ], + [ + 12.4534413, + 53.382933701 + ], + [ + 12.4546434, + 53.381394701 + ], + [ + 12.4555842, + 53.380290101 + ], + [ + 12.4564647, + 53.379310401 + ], + [ + 12.4579794, + 53.377730101 + ], + [ + 12.4606214, + 53.375125201 + ], + [ + 12.4623863, + 53.373433801 + ], + [ + 12.4641485, + 53.371684701 + ], + [ + 12.4651302, + 53.370681301 + ], + [ + 12.465798, + 53.369918001 + ], + [ + 12.4664713, + 53.369143401 + ], + [ + 12.4669353, + 53.368562501 + ], + [ + 12.4672384, + 53.368181601 + ], + [ + 12.4677545, + 53.367473001 + ], + [ + 12.4683185, + 53.366671601 + ], + [ + 12.4687352, + 53.366038201 + ], + [ + 12.4694713, + 53.364807001 + ], + [ + 12.4700515, + 53.363721401 + ], + [ + 12.4704763, + 53.362849201 + ], + [ + 12.4708648, + 53.361972701 + ], + [ + 12.4714463, + 53.360448801 + ], + [ + 12.4716948, + 53.359708301 + ], + [ + 12.4719182, + 53.358919801 + ], + [ + 12.4721186, + 53.358117201 + ], + [ + 12.4722876, + 53.357312001 + ], + [ + 12.4724512, + 53.356316301 + ], + [ + 12.4726095, + 53.354902701 + ], + [ + 12.4726551, + 53.354286401 + ], + [ + 12.4726685, + 53.353975801 + ], + [ + 12.4727489, + 53.352163501 + ], + [ + 12.4727811, + 53.350892301 + ], + [ + 12.4728562, + 53.349534601 + ], + [ + 12.4729435, + 53.348581001 + ], + [ + 12.4730949, + 53.347387401 + ], + [ + 12.4732103, + 53.346633301 + ], + [ + 12.4734262, + 53.345438801 + ], + [ + 12.4737078, + 53.344119301 + ], + [ + 12.4740538, + 53.342803001 + ], + [ + 12.4748826, + 53.340047001 + ], + [ + 12.4758187, + 53.336952901 + ], + [ + 12.4765429, + 53.334350301 + ], + [ + 12.4771686, + 53.331673101 + ], + [ + 12.477549, + 53.329883001 + ], + [ + 12.477734, + 53.328710401 + ], + [ + 12.4778601, + 53.327871001 + ], + [ + 12.4780666, + 53.326157001 + ], + [ + 12.4782276, + 53.324210501 + ], + [ + 12.4783053, + 53.321719301 + ], + [ + 12.478295597, + 53.320706691 + ] + ] + } + }, + { + "identifier": "2025-059223--vi-bs.2025-12-02_12-00-00-000.devi-zus.2025-12-02_08-30-00-000_005.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.11894050818642,12.165908410500606,54.12003848289111,12.164128763567536", + "point": "54.11894050818642,12.165908410500606", + "startLcPosition": "23", + "impact": { + "lower": "Rostock-\u00dcberseehafen", + "upper": "Rostock-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "A19 | Rostock-Nord - Rostock-\u00dcberseehafen", + "startTimestamp": "2025-12-02T12:00:00+01:00", + "coordinate": { + "lat": 54.11894050818642, + "long": 12.165908410500606 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.12.25 um 12:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 0.1 km hinter AS Rostock-Nord und 3.7 km vor AS Rostock-\u00dcberseehafen", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "GST, A19 AS Rostock-Nord, Ausfahrt RF \u00dcberseehafen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.165908411, + 54.118940508 + ], + [ + 12.164128764, + 54.120038483 + ] + ] + } + }, + { + "identifier": "2026-008126--vi-bs.2026-02-26_00-00-00-000.devi-zus.2026-02-25_08-30-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.08228850212666,12.198951685405097,54.08144889427495,12.198693536955346", + "point": "54.08228850212666,12.198951685405097", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Rostock-S\u00fcd (aus Richtung Kessin)", + "title": "GST, A19, AS Rostock-S\u00fcd, Ausfahrt RF \u00dcberseehafen (Windpark Broderstorf)", + "startTimestamp": "2026-02-26T00:00:00+01:00", + "coordinate": { + "lat": 54.08228850212666, + "long": 12.198951685405097 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.02.26 um 00:00 Uhr", + "Ende: 18.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.05.26)", + "", + "Abfahrt von der A19: AS Rostock-S\u00fcd (aus Richtung Kessin)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "GST, A19, AS Rostock-S\u00fcd, Ausfahrt RF \u00dcberseehafen (Windpark Broderstorf)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.198951685, + 54.082288502 + ], + [ + 12.198697, + 54.081458301 + ], + [ + 12.198693537, + 54.081448894 + ] + ] + } + }, + { + "identifier": "2026-016085--vi-fbm.2026-04-07_08-30-00-000.devi-zus.2026-04-02_00-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.49048395119272,12.382750324640831,53.49307228313476,12.385362130357722", + "point": "53.49048395119272,12.382750324640831", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "GST, A19, AS Malchow (WP Passow, Wessin u. Herzberg-Granzin)", + "coordinate": { + "lat": 53.49048395119272, + "long": 12.382750324640831 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 16:30 Uhr", + "10.04.26 von 08:30 bis 13:00 Uhr", + "", + "Von A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 3.8 km hinter AS Waren und AS Malchow nach Abfahrt von der A19: AS Malchow (aus Richtung Waren)", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 3 m", + "", + "GST, A19, AS Malchow (WP Passow, Wessin u. Herzberg-Granzin)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.382750325, + 53.490483951 + ], + [ + 12.3827872, + 53.490881801 + ], + [ + 12.3830414, + 53.491512901 + ], + [ + 12.3831745, + 53.491742101 + ], + [ + 12.3833519, + 53.491968601 + ], + [ + 12.3835808, + 53.492170001 + ], + [ + 12.3838727, + 53.492361701 + ], + [ + 12.3841692, + 53.492522801 + ], + [ + 12.3845334, + 53.492742301 + ], + [ + 12.3849868, + 53.492955001 + ], + [ + 12.3851451, + 53.492995301 + ], + [ + 12.385257, + 53.493026801 + ], + [ + 12.385302, + 53.493042501 + ], + [ + 12.38536213, + 53.493072283 + ] + ] + } + }, + { + "identifier": "2025-044385--vi-bs.2025-09-15_00-00-00-000.devi-zus.2025-09-15_00-00-00-000_005.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.77286617388547,12.322846743990963,53.774149023453816,12.322514913522477", + "point": "53.77286617388547,12.322846743990963", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "GST, A19 AS G\u00fcstrow (beide RF - GST-Wendeman\u00f6ver)", + "startTimestamp": "2025-09-15T00:00:00+02:00", + "coordinate": { + "lat": 53.77286617388547, + "long": 12.322846743990963 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.09.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Abfahrt von der B104", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "GST, A19 AS G\u00fcstrow (beide RF - GST-Wendeman\u00f6ver)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.322846744, + 53.772866174 + ], + [ + 12.3228474, + 53.772867101 + ], + [ + 12.3228507, + 53.772901601 + ], + [ + 12.3228461, + 53.772945201 + ], + [ + 12.32283, + 53.772986801 + ], + [ + 12.3227992, + 53.773063401 + ], + [ + 12.322772, + 53.773301901 + ], + [ + 12.3226734, + 53.773629801 + ], + [ + 12.322514914, + 53.774149023 + ] + ] + } + }, + { + "identifier": "2025-044385--vi-bs.2025-09-15_00-00-00-000.devi-zus.2025-09-15_00-00-00-000_005.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.77647824717588,12.318172641754487,53.77362654761146,12.31770172529941", + "point": "53.77647824717588,12.318172641754487", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS G\u00fcstrow (aus Richtung Glasewitz)", + "title": "GST, A19 AS G\u00fcstrow (beide RF - GST-Wendeman\u00f6ver)", + "startTimestamp": "2025-09-15T00:00:00+02:00", + "coordinate": { + "lat": 53.77647824717588, + "long": 12.318172641754487 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.09.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Abfahrt von der A19: AS G\u00fcstrow (aus Richtung Glasewitz)", + "", + "L\u00e4nge: 0.32 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "GST, A19 AS G\u00fcstrow (beide RF - GST-Wendeman\u00f6ver)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.318172642, + 53.776478247 + ], + [ + 12.3180767, + 53.776120801 + ], + [ + 12.3179692, + 53.775838201 + ], + [ + 12.3178875, + 53.775494901 + ], + [ + 12.3178442, + 53.775291301 + ], + [ + 12.3178299, + 53.774952801 + ], + [ + 12.3177755, + 53.774239501 + ], + [ + 12.3177344, + 53.773925201 + ], + [ + 12.3176915, + 53.773865801 + ], + [ + 12.317701725, + 53.773626548 + ] + ] + } + }, + { + "identifier": "2026-017237--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.88921881150784,12.25923082369444,53.88825736669132,12.259820076430746", + "point": "53.88921881150784,12.25923082369444", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "GST, A19 AS Laage, beide RF (Wendeman\u00f6ver - Probefahrt Betonwerk Kavelstorf)", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 53.88921881150784, + "long": 12.25923082369444 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 10.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "Abfahrt von der B103", + "", + "L\u00e4nge: 0.11 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "GST, A19 AS Laage, beide RF (Wendeman\u00f6ver - Probefahrt Betonwerk Kavelstorf)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.259230824, + 53.889218812 + ], + [ + 12.2593605, + 53.889082201 + ], + [ + 12.2594648, + 53.888970301 + ], + [ + 12.2594831, + 53.888935201 + ], + [ + 12.2595061, + 53.888888701 + ], + [ + 12.259820076, + 53.888257367 + ] + ] + } + }, + { + "identifier": "2026-017237--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.89063135151916,12.25502844557367,53.888077143884416,12.255959367694043", + "point": "53.89063135151916,12.25502844557367", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Laage (aus Richtung Kritzkow)", + "title": "GST, A19 AS Laage, beide RF (Wendeman\u00f6ver - Probefahrt Betonwerk Kavelstorf)", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 53.89063135151916, + "long": 12.25502844557367 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 10.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "Abfahrt von der A19: AS Laage (aus Richtung Kritzkow)", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "GST, A19 AS Laage, beide RF (Wendeman\u00f6ver - Probefahrt Betonwerk Kavelstorf)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.255028446, + 53.890631352 + ], + [ + 12.2549206, + 53.890439901 + ], + [ + 12.2548734, + 53.890239101 + ], + [ + 12.2548781, + 53.890038301 + ], + [ + 12.2549485, + 53.889914201 + ], + [ + 12.2551321, + 53.889547001 + ], + [ + 12.2558359, + 53.888272701 + ], + [ + 12.255959368, + 53.888077144 + ] + ] + } + }, + { + "identifier": "2026-016085--vi-bs.2026-04-02_00-00-00-000.devi-zus.2026-04-02_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.49048395119272,12.382750324640831,53.49307228313476,12.385362130357722", + "point": "53.49048395119272,12.382750324640831", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "GST, A19, AS Malchow (WP Passow, Wessin u. Herzberg-Granzin)", + "startTimestamp": "2026-04-02T00:00:00+02:00", + "coordinate": { + "lat": 53.49048395119272, + "long": 12.382750324640831 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 00:00 Uhr", + "Ende: 17.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.10.26)", + "", + "Von A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 3.8 km hinter AS Waren und AS Malchow nach Abfahrt von der A19: AS Malchow (aus Richtung Waren)", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "GST, A19, AS Malchow (WP Passow, Wessin u. Herzberg-Granzin)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.382750325, + 53.490483951 + ], + [ + 12.3827872, + 53.490881801 + ], + [ + 12.3830414, + 53.491512901 + ], + [ + 12.3831745, + 53.491742101 + ], + [ + 12.3833519, + 53.491968601 + ], + [ + 12.3835808, + 53.492170001 + ], + [ + 12.3838727, + 53.492361701 + ], + [ + 12.3841692, + 53.492522801 + ], + [ + 12.3845334, + 53.492742301 + ], + [ + 12.3849868, + 53.492955001 + ], + [ + 12.3851451, + 53.492995301 + ], + [ + 12.385257, + 53.493026801 + ], + [ + 12.385302, + 53.493042501 + ], + [ + 12.38536213, + 53.493072283 + ] + ] + } + }, + { + "identifier": "2025-056489--vi-bs.2026-01-14_00-00-00-000.devi-zus.2026-01-14_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.61651064568464,12.378510578663937,53.61902544205882,12.3761302433328", + "point": "53.61651064568464,12.378510578663937", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Linstow (aus Richtung Kiether Berg)", + "title": "GST, A19, AS Linstow (beide RF) Wendeman\u00f6ver Fl\u00fcgeltransporte", + "startTimestamp": "2026-01-14T00:00:00+01:00", + "coordinate": { + "lat": 53.61651064568464, + "long": 12.378510578663937 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.01.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "Auffahrt auf die A19: AS Linstow (aus Richtung Kiether Berg)", + "", + "L\u00e4nge: 0.34 km | Maximale Durchfahrtsbreite: 4 m", + "", + "GST, A19, AS Linstow (beide RF) Wendeman\u00f6ver Fl\u00fcgeltransporte" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.378510579, + 53.616510646 + ], + [ + 12.3785203, + 53.616510501 + ], + [ + 12.3785193, + 53.616589601 + ], + [ + 12.3784982, + 53.616670801 + ], + [ + 12.3784486, + 53.616808601 + ], + [ + 12.3783946, + 53.616869401 + ], + [ + 12.3783656, + 53.616998801 + ], + [ + 12.3782588, + 53.617227501 + ], + [ + 12.3781088, + 53.617400201 + ], + [ + 12.3778907, + 53.617574801 + ], + [ + 12.3775395, + 53.617756501 + ], + [ + 12.3772632, + 53.617848301 + ], + [ + 12.3769063, + 53.617998901 + ], + [ + 12.3766798, + 53.618124901 + ], + [ + 12.3765, + 53.618256501 + ], + [ + 12.3763482, + 53.618415801 + ], + [ + 12.3762385, + 53.618582001 + ], + [ + 12.3761824, + 53.618755101 + ], + [ + 12.3761731, + 53.618933801 + ], + [ + 12.376130243, + 53.619025442 + ] + ] + } + }, + { + "identifier": "2025-056489--vi-bs.2026-01-14_00-00-00-000.devi-zus.2026-01-14_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.61870326493184,12.375847990183269,53.61689311484113,12.371787355323251", + "point": "53.61870326493184,12.375847990183269", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rostock -> Dreieck Wittstock/Dosse", + "title": "GST, A19, AS Linstow (beide RF) Wendeman\u00f6ver Fl\u00fcgeltransporte", + "startTimestamp": "2026-01-14T00:00:00+01:00", + "coordinate": { + "lat": 53.61870326493184, + "long": 12.375847990183269 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.01.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "Von A19: Rostock -> Dreieck Wittstock/Dosse, zwischen 1.0 km hinter Linstow und AS Linstow nach Abfahrt von der A19: AS Linstow (aus Richtung Linstow)", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 4 m", + "", + "GST, A19, AS Linstow (beide RF) Wendeman\u00f6ver Fl\u00fcgeltransporte" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.37584799, + 53.618703265 + ], + [ + 12.3756913, + 53.617713401 + ], + [ + 12.375491, + 53.616680801 + ], + [ + 12.3752711, + 53.616388201 + ], + [ + 12.3751636, + 53.616269001 + ], + [ + 12.3749862, + 53.616148501 + ], + [ + 12.374769, + 53.616050201 + ], + [ + 12.3745355, + 53.615993401 + ], + [ + 12.374295, + 53.615961501 + ], + [ + 12.3740242, + 53.615948501 + ], + [ + 12.3739363, + 53.615948601 + ], + [ + 12.3734126, + 53.615952301 + ], + [ + 12.3724835, + 53.615967501 + ], + [ + 12.3723536, + 53.615980401 + ], + [ + 12.3722279, + 53.615998601 + ], + [ + 12.3720451, + 53.616045101 + ], + [ + 12.371897, + 53.616108401 + ], + [ + 12.3717499, + 53.616213601 + ], + [ + 12.3716495, + 53.616341101 + ], + [ + 12.3716191, + 53.616456001 + ], + [ + 12.3716173, + 53.616542901 + ], + [ + 12.3716308, + 53.616629201 + ], + [ + 12.3717018, + 53.616702401 + ], + [ + 12.3717599, + 53.616819801 + ], + [ + 12.371787355, + 53.616893115 + ] + ] + } + }, + { + "identifier": "2025-037041--vi-bs.2025-09-15_00-00-00-000.devi-zus.2025-08-13_09-00-00-000_007.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.049858894041066,12.199018908704799,54.04714138024048,12.201577274383867", + "point": "54.049858894041066,12.199018908704799", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Wittstock/Dosse -> Rostock", + "title": "GST, A19, AS Kessin", + "startTimestamp": "2025-09-15T00:00:00+02:00", + "coordinate": { + "lat": 54.049858894041066, + "long": 12.199018908704799 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.09.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Von A19: Dreieck Wittstock/Dosse -> Rostock, zwischen 0.2 km hinter AS Kessin und AS Rostock-S\u00fcd nach Abfahrt von der A19: AS Kessin (aus Richtung Rostock)", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "GST, A19, AS Kessin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.199018909, + 54.049858894 + ], + [ + 12.199016, + 54.049889801 + ], + [ + 12.1990526, + 54.049956701 + ], + [ + 12.1990765, + 54.049995501 + ], + [ + 12.1991131, + 54.050065201 + ], + [ + 12.1991459, + 54.050115001 + ], + [ + 12.1991902, + 54.050161501 + ], + [ + 12.1992634, + 54.050214901 + ], + [ + 12.1994001, + 54.050278201 + ], + [ + 12.1994924, + 54.050306701 + ], + [ + 12.1995864, + 54.050324301 + ], + [ + 12.1996846, + 54.050332201 + ], + [ + 12.1997877, + 54.050330201 + ], + [ + 12.1998774, + 54.050323901 + ], + [ + 12.1999823, + 54.050308201 + ], + [ + 12.2000845, + 54.050283001 + ], + [ + 12.2001783, + 54.050243001 + ], + [ + 12.2003479, + 54.050150601 + ], + [ + 12.200483, + 54.050073001 + ], + [ + 12.2012934, + 54.049517401 + ], + [ + 12.2014515, + 54.049393701 + ], + [ + 12.2015806, + 54.049281001 + ], + [ + 12.2017634, + 54.049091701 + ], + [ + 12.2019187, + 54.048868401 + ], + [ + 12.2020331, + 54.048636301 + ], + [ + 12.2020623, + 54.048538901 + ], + [ + 12.2020969, + 54.048387401 + ], + [ + 12.202106, + 54.048238701 + ], + [ + 12.2021038, + 54.048087701 + ], + [ + 12.2020744, + 54.047936801 + ], + [ + 12.2020147, + 54.047749401 + ], + [ + 12.2019962, + 54.047691201 + ], + [ + 12.2019078, + 54.047528201 + ], + [ + 12.2018299, + 54.047405301 + ], + [ + 12.2017524, + 54.047308001 + ], + [ + 12.2016702, + 54.047217101 + ], + [ + 12.201577274, + 54.04714138 + ] + ] + } + }, + { + "identifier": "2025-037041--vi-bs.2025-09-15_00-00-00-000.devi-zus.2025-08-13_09-00-00-000_007.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.053230119953334,12.198017681846075,54.05001705227397,12.196475284507894", + "point": "54.053230119953334,12.198017681846075", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Kessin (aus Richtung Rostock-S\u00fcd)", + "title": "GST, A19, AS Kessin", + "startTimestamp": "2025-09-15T00:00:00+02:00", + "coordinate": { + "lat": 54.053230119953334, + "long": 12.198017681846075 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.09.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Abfahrt von der A19: AS Kessin (aus Richtung Rostock-S\u00fcd)", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "GST, A19, AS Kessin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.198017682, + 54.05323012 + ], + [ + 12.1979598, + 54.052947501 + ], + [ + 12.1979076, + 54.052768701 + ], + [ + 12.1977934, + 54.052553201 + ], + [ + 12.1976147, + 54.052336201 + ], + [ + 12.1972548, + 54.051990301 + ], + [ + 12.1971904, + 54.051909401 + ], + [ + 12.1971212, + 54.051795701 + ], + [ + 12.1970536, + 54.051663901 + ], + [ + 12.1970114, + 54.051481701 + ], + [ + 12.1969967, + 54.051297901 + ], + [ + 12.1969506, + 54.051086601 + ], + [ + 12.1968803, + 54.050776501 + ], + [ + 12.1968196, + 54.050509101 + ], + [ + 12.1967811, + 54.050402301 + ], + [ + 12.1966873, + 54.050234201 + ], + [ + 12.1966753, + 54.050215401 + ], + [ + 12.196591, + 54.050103801 + ], + [ + 12.196475285, + 54.050017052 + ] + ] + } + } + ] + }, + "A20": { + "roadworks": [ + { + "identifier": "2026-014887--vi-bs.2026-04-20_07-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.83434583896329,10.616058684544944,53.83717057710649,10.611660365469342", + "point": "53.83434583896329,10.616058684544944", + "startLcPosition": "6", + "impact": { + "lower": "L\u00fcbeck", + "upper": "L\u00fcbeck-Genin", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Rostock -> L\u00fcbeck", + "title": "A20 | L\u00fcbeck-Genin - L\u00fcbeck", + "coordinate": { + "lat": 53.83434583896329, + "long": 10.616058684544944 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 07:00 bis 17:00 Uhr", + "21.04.26 von 07:00 bis 17:00 Uhr", + "22.04.26 von 07:00 bis 17:00 Uhr", + "23.04.26 von 07:00 bis 17:00 Uhr", + "", + "A20: Rostock -> L\u00fcbeck, zwischen 1.9 km hinter AS L\u00fcbeck-Genin und 1.9 km vor AK L\u00fcbeck", + "", + "L\u00e4nge: 0.43 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A20 von Moisling (Tunnel) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.616058685, + 53.834345839 + ], + [ + 10.6154373, + 53.834617401 + ], + [ + 10.6146373, + 53.835013901 + ], + [ + 10.6139612, + 53.835408501 + ], + [ + 10.6133826, + 53.835773701 + ], + [ + 10.6126692, + 53.836278801 + ], + [ + 10.6123581, + 53.836535401 + ], + [ + 10.6118555, + 53.836974701 + ], + [ + 10.611660365, + 53.837170577 + ] + ] + } + }, + { + "identifier": "2025-037439--vi-bs.2025-08-06_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.81503294905126,10.874992024384522,53.815446029985075,10.883183964141502", + "point": "53.81503294905126,10.874992024384522", + "startLcPosition": "10", + "impact": { + "lower": "Sch\u00f6nberg", + "upper": "L\u00fcdersdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " L\u00fcbeck -> Rostock", + "title": "A20 | L\u00fcdersdorf - Sch\u00f6nberg", + "startTimestamp": "2025-08-06T00:00:00+02:00", + "coordinate": { + "lat": 53.81503294905126, + "long": 10.874992024384522 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.08.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A20: L\u00fcbeck -> Rostock, zwischen 2.7 km hinter AS L\u00fcdersdorf und 5.7 km vor AS Sch\u00f6nberg", + "", + "L\u00e4nge: 0.54 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "GST, A20, Tank- u. Rastanlage Sch\u00f6nberger Land S\u00fcd (RF Stettin)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.874992024, + 53.815032949 + ], + [ + 10.8758616, + 53.815095401 + ], + [ + 10.8788739, + 53.815271601 + ], + [ + 10.8818655, + 53.815398301 + ], + [ + 10.8824866, + 53.815423701 + ], + [ + 10.883183964, + 53.81544603 + ] + ] + } + }, + { + "identifier": "2025-037714--vi-bs.2025-08-06_00-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.81549559986983,10.88139845872527,53.8149950571843,10.873086484287722", + "point": "53.81549559986983,10.88139845872527", + "startLcPosition": "12", + "impact": { + "lower": "L\u00fcdersdorf", + "upper": "Sch\u00f6nberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rostock -> L\u00fcbeck", + "title": "A20 | Sch\u00f6nberg - L\u00fcdersdorf", + "startTimestamp": "2025-08-06T00:00:00+02:00", + "coordinate": { + "lat": 53.81549559986983, + "long": 10.88139845872527 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.08.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A20: Rostock -> L\u00fcbeck, zwischen 5.8 km hinter AS Sch\u00f6nberg und 2.6 km vor AS L\u00fcdersdorf", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "GST, A20, Tank- und Rastanlage Sch\u00f6nberger Land Nord (RF L\u00fcbeck)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.881398459, + 53.8154956 + ], + [ + 10.8788429, + 53.815382701 + ], + [ + 10.8784026, + 53.815359901 + ], + [ + 10.8770731, + 53.815286101 + ], + [ + 10.8758324, + 53.815206201 + ], + [ + 10.8743483, + 53.815097501 + ], + [ + 10.873086484, + 53.814995057 + ] + ] + } + }, + { + "identifier": "2025-013303--vi-bs.2026-03-12_06-00-00-000.devi-zus.2025-06-01_00-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.8985026838447,11.708108204672843,53.91204602797317,11.769813338565552", + "point": "53.8985026838447,11.708108204672843", + "startLcPosition": "20", + "impact": { + "lower": "Kr\u00f6pelin", + "upper": "Selliner See", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " L\u00fcbeck -> Rostock", + "title": "A20 | Selliner See - Kr\u00f6pelin", + "startTimestamp": "2026-03-12T06:00:00+01:00", + "coordinate": { + "lat": 53.8985026838447, + "long": 11.708108204672843 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 06:00 Uhr", + "Ende: 31.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "A20: L\u00fcbeck -> Rostock, zwischen 5.3 km hinter Selliner See und 9.3 km vor AS Kr\u00f6pelin", + "", + "L\u00e4nge: 4.34 km | Maximale Durchfahrtsbreite: 3.8 m", + "", + "A20, Fahrbahnerhaltung zwischen AS Neukloster und AS Kr\u00f6pelin (km92.000-96.345) inkl AS Neukloster und T u. R Fuchsberg, beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.708108205, + 53.898502684 + ], + [ + 11.7098442, + 53.899124901 + ], + [ + 11.7112569, + 53.899607801 + ], + [ + 11.712415, + 53.899995801 + ], + [ + 11.7141386, + 53.900558301 + ], + [ + 11.7152822, + 53.900910701 + ], + [ + 11.7154954, + 53.900975201 + ], + [ + 11.7168783, + 53.901393501 + ], + [ + 11.7177689, + 53.901648701 + ], + [ + 11.7199046, + 53.902245101 + ], + [ + 11.7215061, + 53.902666301 + ], + [ + 11.7232074, + 53.903097701 + ], + [ + 11.7242931, + 53.903362501 + ], + [ + 11.7261291, + 53.903791501 + ], + [ + 11.7282802, + 53.904265501 + ], + [ + 11.7308149, + 53.904796501 + ], + [ + 11.7330331, + 53.905243601 + ], + [ + 11.7356054, + 53.905738201 + ], + [ + 11.7383117, + 53.906250201 + ], + [ + 11.7410073, + 53.906747901 + ], + [ + 11.7436895, + 53.907233001 + ], + [ + 11.7457435, + 53.907616401 + ], + [ + 11.7485276, + 53.908112601 + ], + [ + 11.7510945, + 53.908577201 + ], + [ + 11.7532688, + 53.908978801 + ], + [ + 11.7552851, + 53.909344501 + ], + [ + 11.7572365, + 53.909698901 + ], + [ + 11.7592591, + 53.910068901 + ], + [ + 11.7623247, + 53.910627701 + ], + [ + 11.7645516, + 53.911035101 + ], + [ + 11.7670804, + 53.911508201 + ], + [ + 11.769813339, + 53.912046028 + ] + ] + } + }, + { + "identifier": "2025-013303--vi-bs.2026-03-12_06-00-00-000.devi-zus.2025-06-01_00-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.91214562762755,11.769757343829756,53.89859697633057,11.708011382880473", + "point": "53.91214562762755,11.769757343829756", + "startLcPosition": "23", + "impact": { + "lower": "Selliner See", + "upper": "Kr\u00f6pelin", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rostock -> L\u00fcbeck", + "title": "A20 | Kr\u00f6pelin - Selliner See", + "startTimestamp": "2026-03-12T06:00:00+01:00", + "coordinate": { + "lat": 53.91214562762755, + "long": 11.769757343829756 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 06:00 Uhr", + "Ende: 31.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "A20: Rostock -> L\u00fcbeck, zwischen 9.3 km hinter AS Kr\u00f6pelin und 5.3 km vor Selliner See", + "", + "L\u00e4nge: 4.34 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A20, Fahrbahnerhaltung zwischen AS Neukloster und AS Kr\u00f6pelin (km92.000-96.345) inkl AS Neukloster und T u. R Fuchsberg, beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.769757344, + 53.912145628 + ], + [ + 11.7669847, + 53.911605901 + ], + [ + 11.7646512, + 53.911167101 + ], + [ + 11.7621269, + 53.910703301 + ], + [ + 11.7530541, + 53.909054601 + ], + [ + 11.7510658, + 53.908690901 + ], + [ + 11.7484901, + 53.908223201 + ], + [ + 11.7457006, + 53.907727001 + ], + [ + 11.7436386, + 53.907337301 + ], + [ + 11.7408786, + 53.906836401 + ], + [ + 11.7382554, + 53.906356001 + ], + [ + 11.7355732, + 53.905847301 + ], + [ + 11.7329714, + 53.905349501 + ], + [ + 11.7307667, + 53.904902301 + ], + [ + 11.7283124, + 53.904388801 + ], + [ + 11.7260433, + 53.903887801 + ], + [ + 11.724235, + 53.903465801 + ], + [ + 11.7231409, + 53.903203301 + ], + [ + 11.7215836, + 53.902815601 + ], + [ + 11.7197808, + 53.902331801 + ], + [ + 11.7172864, + 53.901634501 + ], + [ + 11.7168175, + 53.901500401 + ], + [ + 11.7152276, + 53.901019701 + ], + [ + 11.7140501, + 53.900654701 + ], + [ + 11.7123286, + 53.900099001 + ], + [ + 11.7111681, + 53.899708201 + ], + [ + 11.7097368, + 53.899214301 + ], + [ + 11.708011383, + 53.898596976 + ] + ] + } + }, + { + "identifier": "2025-002206--vi-fbm.2026-03-26_16-00-00-000.devi-zus.2025-09-08_00-00-00-000_003.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.02781157609694,12.211894659706362,54.04016645380377,12.333066750652822", + "point": "54.02781157609694,12.211894659706362", + "startLcPosition": "29", + "impact": { + "lower": "Speckmoor", + "upper": "Rostock", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " L\u00fcbeck -> Stettin", + "title": "A20 | Rostock - Speckmoor", + "startTimestamp": "2026-03-26T16:00:00+01:00", + "coordinate": { + "lat": 54.02781157609694, + "long": 12.211894659706362 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 16:00 Uhr", + "Ende: 26.06.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.07.26)", + "", + "A20: L\u00fcbeck -> Stettin, zwischen 0.8 km hinter AK Rostock und 2.4 km vor Speckmoor", + "", + "L\u00e4nge: 8.41 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.3 m", + "", + "A 20, Fahrbahninstandsetzung zwischen AK Rostock und AS Sanitz (km 129,500 - 137,925) inkl. AS Dummerstorf, beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.21189466, + 54.027811576 + ], + [ + 12.2119169, + 54.027809501 + ], + [ + 12.2128864, + 54.027708101 + ], + [ + 12.2136796, + 54.027615901 + ], + [ + 12.2151581, + 54.027426201 + ], + [ + 12.2162604, + 54.027272601 + ], + [ + 12.2194247, + 54.026821701 + ], + [ + 12.2207856, + 54.026633301 + ], + [ + 12.2220291, + 54.026482401 + ], + [ + 12.2232304, + 54.026351901 + ], + [ + 12.2245022, + 54.026230601 + ], + [ + 12.2255202, + 54.026154001 + ], + [ + 12.2266202, + 54.026081401 + ], + [ + 12.2277361, + 54.026029101 + ], + [ + 12.2283714, + 54.026003701 + ], + [ + 12.2292909, + 54.025975801 + ], + [ + 12.2310603, + 54.025949401 + ], + [ + 12.2316993, + 54.025941501 + ], + [ + 12.2347246, + 54.025920601 + ], + [ + 12.2365203, + 54.025908201 + ], + [ + 12.2406793, + 54.025865801 + ], + [ + 12.2582312, + 54.025737801 + ], + [ + 12.2637488, + 54.025693901 + ], + [ + 12.268274, + 54.025662401 + ], + [ + 12.2716411, + 54.025643201 + ], + [ + 12.2740539, + 54.025652301 + ], + [ + 12.2758553, + 54.025681401 + ], + [ + 12.2775507, + 54.025744601 + ], + [ + 12.2783313, + 54.025782401 + ], + [ + 12.279719, + 54.025860401 + ], + [ + 12.2807962, + 54.025938401 + ], + [ + 12.2818928, + 54.026040601 + ], + [ + 12.2828402, + 54.026138201 + ], + [ + 12.2834489, + 54.026206201 + ], + [ + 12.2844574, + 54.026344901 + ], + [ + 12.2860461, + 54.026586601 + ], + [ + 12.2876095, + 54.026861901 + ], + [ + 12.289199, + 54.027196101 + ], + [ + 12.2907467, + 54.027568901 + ], + [ + 12.2920266, + 54.027910901 + ], + [ + 12.2932792, + 54.028273301 + ], + [ + 12.2942314, + 54.028578901 + ], + [ + 12.2949773, + 54.028824601 + ], + [ + 12.2966427, + 54.029440701 + ], + [ + 12.2977612, + 54.029894401 + ], + [ + 12.2988609, + 54.030362301 + ], + [ + 12.3010254, + 54.031419401 + ], + [ + 12.3022917, + 54.032102201 + ], + [ + 12.30381, + 54.032964901 + ], + [ + 12.3050948, + 54.033699901 + ], + [ + 12.3065111, + 54.034475701 + ], + [ + 12.3077524, + 54.035096201 + ], + [ + 12.3090056, + 54.035684201 + ], + [ + 12.310762, + 54.036420101 + ], + [ + 12.3121167, + 54.036921801 + ], + [ + 12.3126002, + 54.037098401 + ], + [ + 12.3135929, + 54.037427901 + ], + [ + 12.3144877, + 54.037707801 + ], + [ + 12.3154275, + 54.037976701 + ], + [ + 12.3163832, + 54.038239501 + ], + [ + 12.3172342, + 54.038449701 + ], + [ + 12.3190318, + 54.038860501 + ], + [ + 12.3200096, + 54.039058001 + ], + [ + 12.3210964, + 54.039262501 + ], + [ + 12.3223245, + 54.039459101 + ], + [ + 12.324025, + 54.039694601 + ], + [ + 12.3259036, + 54.039907601 + ], + [ + 12.3279903, + 54.040057301 + ], + [ + 12.328901, + 54.040107201 + ], + [ + 12.3300738, + 54.040149201 + ], + [ + 12.3318371, + 54.040175601 + ], + [ + 12.3325113, + 54.040171601 + ], + [ + 12.3329213, + 54.040169401 + ], + [ + 12.333066751, + 54.040166454 + ] + ] + } + }, + { + "identifier": "2025-002206--vi-fbm.2026-03-26_16-00-00-000.devi-zus.2025-09-08_00-00-00-000_003.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "54.04026227347722,12.333071757881958,54.027914665187886,12.21192211655043", + "point": "54.04026227347722,12.333071757881958", + "startLcPosition": "31", + "impact": { + "lower": "Rostock", + "upper": "Speckmoor", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stettin -> L\u00fcbeck", + "title": "A20 | Speckmoor - Rostock", + "startTimestamp": "2026-03-26T16:00:00+01:00", + "coordinate": { + "lat": 54.04026227347722, + "long": 12.333071757881958 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 16:00 Uhr", + "Ende: 26.06.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.07.26)", + "", + "A20: Stettin -> L\u00fcbeck, zwischen 2.4 km hinter Speckmoor und 0.8 km vor AK Rostock", + "", + "L\u00e4nge: 8.41 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A 20, Fahrbahninstandsetzung zwischen AK Rostock und AS Sanitz (km 129,500 - 137,925) inkl. AS Dummerstorf, beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.333071758, + 54.040262273 + ], + [ + 12.3329641, + 54.040264001 + ], + [ + 12.3324955, + 54.040269401 + ], + [ + 12.3318313, + 54.040271101 + ], + [ + 12.3301233, + 54.040252101 + ], + [ + 12.3291435, + 54.040218201 + ], + [ + 12.3279522, + 54.040152901 + ], + [ + 12.3258503, + 54.039994401 + ], + [ + 12.324206, + 54.039812501 + ], + [ + 12.3223305, + 54.039565601 + ], + [ + 12.3209446, + 54.039337201 + ], + [ + 12.3189988, + 54.038959501 + ], + [ + 12.31716, + 54.038536301 + ], + [ + 12.3164638, + 54.038363701 + ], + [ + 12.3154949, + 54.038104101 + ], + [ + 12.3145207, + 54.037827401 + ], + [ + 12.3135117, + 54.037512101 + ], + [ + 12.3120039, + 54.037001501 + ], + [ + 12.3104027, + 54.036394001 + ], + [ + 12.3089412, + 54.035781201 + ], + [ + 12.30768, + 54.035182801 + ], + [ + 12.3064588, + 54.034577901 + ], + [ + 12.3036479, + 54.033014101 + ], + [ + 12.3020956, + 54.032129901 + ], + [ + 12.3009212, + 54.031494001 + ], + [ + 12.2999073, + 54.030988701 + ], + [ + 12.2987765, + 54.030458501 + ], + [ + 12.2980674, + 54.030145901 + ], + [ + 12.2976566, + 54.029966901 + ], + [ + 12.2965623, + 54.029522201 + ], + [ + 12.2949107, + 54.028928601 + ], + [ + 12.2941563, + 54.028667201 + ], + [ + 12.2931934, + 54.028361501 + ], + [ + 12.2919032, + 54.027988101 + ], + [ + 12.290648, + 54.027651001 + ], + [ + 12.2890708, + 54.027272801 + ], + [ + 12.2875947, + 54.026962901 + ], + [ + 12.2859648, + 54.026677301 + ], + [ + 12.2844279, + 54.026439401 + ], + [ + 12.2833538, + 54.026302001 + ], + [ + 12.2818898, + 54.026140301 + ], + [ + 12.2807828, + 54.026037601 + ], + [ + 12.2796938, + 54.025955701 + ], + [ + 12.2783044, + 54.025872201 + ], + [ + 12.2775427, + 54.025839101 + ], + [ + 12.2758412, + 54.025781201 + ], + [ + 12.2740185, + 54.025745801 + ], + [ + 12.2716504, + 54.025740501 + ], + [ + 12.2682857, + 54.025762501 + ], + [ + 12.2637558, + 54.025789901 + ], + [ + 12.2586211, + 54.025829701 + ], + [ + 12.2559592, + 54.025851601 + ], + [ + 12.2462944, + 54.025921301 + ], + [ + 12.2415482, + 54.025957501 + ], + [ + 12.2396103, + 54.025980201 + ], + [ + 12.2381335, + 54.025989201 + ], + [ + 12.2365371, + 54.025999901 + ], + [ + 12.2335557, + 54.026021901 + ], + [ + 12.2330216, + 54.026025801 + ], + [ + 12.2314349, + 54.026038701 + ], + [ + 12.2301033, + 54.026059101 + ], + [ + 12.2293245, + 54.026075001 + ], + [ + 12.2281567, + 54.026109501 + ], + [ + 12.2277497, + 54.026124701 + ], + [ + 12.2266427, + 54.026180001 + ], + [ + 12.225526, + 54.026253401 + ], + [ + 12.2245287, + 54.026328201 + ], + [ + 12.2232768, + 54.026444901 + ], + [ + 12.2220601, + 54.026577201 + ], + [ + 12.220839, + 54.026730801 + ], + [ + 12.2194656, + 54.026918001 + ], + [ + 12.2162975, + 54.027369101 + ], + [ + 12.2151946, + 54.027523401 + ], + [ + 12.2137204, + 54.027714801 + ], + [ + 12.212903, + 54.027812001 + ], + [ + 12.2119589, + 54.027911301 + ], + [ + 12.211922117, + 54.027914665 + ] + ] + } + }, + { + "identifier": "2026-006738--vi-bs.2026-02-17_08-00-00-000_035.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "54.08548975454428,12.950192614773522,54.07427707531808,12.91757343244777", + "point": "54.08548975454428,12.950192614773522", + "startLcPosition": "38", + "impact": { + "lower": "Trebeltal", + "upper": "Grimmen-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stettin -> Rostock", + "title": "A20 | Grimmen-West - Trebeltal", + "coordinate": { + "lat": 54.08548975454428, + "long": 12.950192614773522 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 18:30 Uhr", + "14.04.26 von 08:00 bis 18:30 Uhr", + "15.04.26 von 08:00 bis 18:30 Uhr", + "16.04.26 von 08:00 bis 18:30 Uhr", + "", + "A20: Stettin -> Rostock, zwischen 2.1 km hinter AS Grimmen-West und 3.3 km vor Trebeltal", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A20 Schadstellensanierung Gussasphalt AM S\u00fcderholz (A-P0422-30 NOO-2024-0257)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.950192615, + 54.085489755 + ], + [ + 12.9501424, + 54.085473901 + ], + [ + 12.9482667, + 54.084828301 + ], + [ + 12.9468638, + 54.084290901 + ], + [ + 12.9459178, + 54.083914701 + ], + [ + 12.9445741, + 54.083336701 + ], + [ + 12.9422581, + 54.082258601 + ], + [ + 12.9402671, + 54.081304301 + ], + [ + 12.9389197, + 54.080657501 + ], + [ + 12.9369655, + 54.079746401 + ], + [ + 12.9355546, + 54.079101901 + ], + [ + 12.9340676, + 54.078468501 + ], + [ + 12.9322946, + 54.077786901 + ], + [ + 12.9313543, + 54.077442401 + ], + [ + 12.9304354, + 54.077134101 + ], + [ + 12.9293767, + 54.076798501 + ], + [ + 12.9283371, + 54.076482201 + ], + [ + 12.9275543, + 54.076256501 + ], + [ + 12.9271099, + 54.076139401 + ], + [ + 12.9253148, + 54.075679501 + ], + [ + 12.9248402, + 54.075569001 + ], + [ + 12.9234757, + 54.075263801 + ], + [ + 12.921894, + 54.074948401 + ], + [ + 12.9206003, + 54.074718701 + ], + [ + 12.9188734, + 54.074450001 + ], + [ + 12.917573432, + 54.074277075 + ] + ] + } + }, + { + "identifier": "2026-017566--vi-bs.2026-04-10_08-15-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "54.02445881109305,13.280084085816052,53.95078691809378,13.368565461289364", + "point": "54.02445881109305,13.280084085816052", + "startLcPosition": "42", + "impact": { + "lower": "G\u00fctzkow", + "upper": "Greifswald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Rostock -> Stettin", + "title": "A20 | Greifswald - G\u00fctzkow", + "coordinate": { + "lat": 54.02445881109305, + "long": 13.280084085816052 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:15 bis 11:15 Uhr", + "", + "A20: Rostock -> Stettin, zwischen 7.2 km hinter AS Greifswald und 0.3 km vor AS G\u00fctzkow", + "", + "L\u00e4nge: 10.5 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A20 von Greifswald (AS) nach G\u00fctzkow (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.280084086, + 54.024458811 + ], + [ + 13.2811197, + 54.022971801 + ], + [ + 13.282594, + 54.021034401 + ], + [ + 13.2842921, + 54.019032801 + ], + [ + 13.2852589, + 54.017977801 + ], + [ + 13.2862845, + 54.016905001 + ], + [ + 13.2873698, + 54.015823501 + ], + [ + 13.2883696, + 54.014881901 + ], + [ + 13.2895115, + 54.013850401 + ], + [ + 13.2906463, + 54.012868001 + ], + [ + 13.2918343, + 54.011887301 + ], + [ + 13.2930175, + 54.010951001 + ], + [ + 13.2943931, + 54.009910901 + ], + [ + 13.2958903, + 54.008830601 + ], + [ + 13.2982273, + 54.007259301 + ], + [ + 13.2995899, + 54.006394201 + ], + [ + 13.3010678, + 54.005493701 + ], + [ + 13.3024532, + 54.004685501 + ], + [ + 13.3038519, + 54.003905201 + ], + [ + 13.3054385, + 54.003052301 + ], + [ + 13.3070389, + 54.002227601 + ], + [ + 13.3085592, + 54.001483701 + ], + [ + 13.3096493, + 54.000965901 + ], + [ + 13.3107278, + 54.000467601 + ], + [ + 13.3116275, + 54.000066101 + ], + [ + 13.3122874, + 53.999777101 + ], + [ + 13.3133447, + 53.999321901 + ], + [ + 13.3140514, + 53.999025501 + ], + [ + 13.3147834, + 53.998726301 + ], + [ + 13.3155695, + 53.998411001 + ], + [ + 13.3169694, + 53.997866001 + ], + [ + 13.3181644, + 53.997413901 + ], + [ + 13.3192333, + 53.997020801 + ], + [ + 13.321753, + 53.996118101 + ], + [ + 13.323608, + 53.995465301 + ], + [ + 13.324808, + 53.995047101 + ], + [ + 13.3259258, + 53.994654101 + ], + [ + 13.3279784, + 53.993931601 + ], + [ + 13.3291277, + 53.993512901 + ], + [ + 13.3300314, + 53.993181401 + ], + [ + 13.3312212, + 53.992730001 + ], + [ + 13.3321479, + 53.992366601 + ], + [ + 13.3330711, + 53.991994801 + ], + [ + 13.3345498, + 53.991380201 + ], + [ + 13.3358836, + 53.990795301 + ], + [ + 13.337059, + 53.990263801 + ], + [ + 13.3381856, + 53.989734601 + ], + [ + 13.3393697, + 53.989157501 + ], + [ + 13.3405816, + 53.988543101 + ], + [ + 13.3421592, + 53.987713001 + ], + [ + 13.3433917, + 53.987022301 + ], + [ + 13.3444041, + 53.986439601 + ], + [ + 13.3453846, + 53.985857601 + ], + [ + 13.3463306, + 53.985273301 + ], + [ + 13.3480047, + 53.984198001 + ], + [ + 13.3503107, + 53.982595901 + ], + [ + 13.3523828, + 53.981026301 + ], + [ + 13.3537278, + 53.979935701 + ], + [ + 13.3551132, + 53.978747601 + ], + [ + 13.3552412, + 53.978636201 + ], + [ + 13.3566452, + 53.977329501 + ], + [ + 13.3574036, + 53.976585601 + ], + [ + 13.3580805, + 53.975898301 + ], + [ + 13.3592791, + 53.974618501 + ], + [ + 13.3604623, + 53.973233901 + ], + [ + 13.3611037, + 53.972448501 + ], + [ + 13.3617598, + 53.971610701 + ], + [ + 13.362616, + 53.970425001 + ], + [ + 13.3634426, + 53.969211701 + ], + [ + 13.36422, + 53.967966501 + ], + [ + 13.3650862, + 53.966432201 + ], + [ + 13.3654837, + 53.965672901 + ], + [ + 13.3658714, + 53.964889801 + ], + [ + 13.3665909, + 53.963279401 + ], + [ + 13.3670019, + 53.962229901 + ], + [ + 13.3673349, + 53.961308501 + ], + [ + 13.367793, + 53.959849101 + ], + [ + 13.3679953, + 53.959098701 + ], + [ + 13.3680472, + 53.958888801 + ], + [ + 13.3682722, + 53.957963101 + ], + [ + 13.3685805, + 53.956367801 + ], + [ + 13.3687685, + 53.954899301 + ], + [ + 13.3688325, + 53.953451901 + ], + [ + 13.3688154, + 53.952662401 + ], + [ + 13.36876, + 53.951999001 + ], + [ + 13.3686824, + 53.951401301 + ], + [ + 13.368577, + 53.950838401 + ], + [ + 13.368565461, + 53.950786918 + ] + ] + } + }, + { + "identifier": "2026-017808--vi-bs.2026-04-10_08-15-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "54.02445881109305,13.280084085816052,53.95078691809378,13.368565461289364", + "point": "54.02445881109305,13.280084085816052", + "startLcPosition": "42", + "impact": { + "lower": "G\u00fctzkow", + "upper": "Greifswald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Rostock -> Stettin", + "title": "A20 | Greifswald - G\u00fctzkow", + "coordinate": { + "lat": 54.02445881109305, + "long": 13.280084085816052 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:15 bis 11:15 Uhr", + "", + "A20: Rostock -> Stettin, zwischen 7.2 km hinter AS Greifswald und 0.3 km vor AS G\u00fctzkow", + "", + "L\u00e4nge: 10.5 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A20 von Greifswald (AS) nach G\u00fctzkow (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.280084086, + 54.024458811 + ], + [ + 13.2811197, + 54.022971801 + ], + [ + 13.282594, + 54.021034401 + ], + [ + 13.2842921, + 54.019032801 + ], + [ + 13.2852589, + 54.017977801 + ], + [ + 13.2862845, + 54.016905001 + ], + [ + 13.2873698, + 54.015823501 + ], + [ + 13.2883696, + 54.014881901 + ], + [ + 13.2895115, + 54.013850401 + ], + [ + 13.2906463, + 54.012868001 + ], + [ + 13.2918343, + 54.011887301 + ], + [ + 13.2930175, + 54.010951001 + ], + [ + 13.2943931, + 54.009910901 + ], + [ + 13.2958903, + 54.008830601 + ], + [ + 13.2982273, + 54.007259301 + ], + [ + 13.2995899, + 54.006394201 + ], + [ + 13.3010678, + 54.005493701 + ], + [ + 13.3024532, + 54.004685501 + ], + [ + 13.3038519, + 54.003905201 + ], + [ + 13.3054385, + 54.003052301 + ], + [ + 13.3070389, + 54.002227601 + ], + [ + 13.3085592, + 54.001483701 + ], + [ + 13.3096493, + 54.000965901 + ], + [ + 13.3107278, + 54.000467601 + ], + [ + 13.3116275, + 54.000066101 + ], + [ + 13.3122874, + 53.999777101 + ], + [ + 13.3133447, + 53.999321901 + ], + [ + 13.3140514, + 53.999025501 + ], + [ + 13.3147834, + 53.998726301 + ], + [ + 13.3155695, + 53.998411001 + ], + [ + 13.3169694, + 53.997866001 + ], + [ + 13.3181644, + 53.997413901 + ], + [ + 13.3192333, + 53.997020801 + ], + [ + 13.321753, + 53.996118101 + ], + [ + 13.323608, + 53.995465301 + ], + [ + 13.324808, + 53.995047101 + ], + [ + 13.3259258, + 53.994654101 + ], + [ + 13.3279784, + 53.993931601 + ], + [ + 13.3291277, + 53.993512901 + ], + [ + 13.3300314, + 53.993181401 + ], + [ + 13.3312212, + 53.992730001 + ], + [ + 13.3321479, + 53.992366601 + ], + [ + 13.3330711, + 53.991994801 + ], + [ + 13.3345498, + 53.991380201 + ], + [ + 13.3358836, + 53.990795301 + ], + [ + 13.337059, + 53.990263801 + ], + [ + 13.3381856, + 53.989734601 + ], + [ + 13.3393697, + 53.989157501 + ], + [ + 13.3405816, + 53.988543101 + ], + [ + 13.3421592, + 53.987713001 + ], + [ + 13.3433917, + 53.987022301 + ], + [ + 13.3444041, + 53.986439601 + ], + [ + 13.3453846, + 53.985857601 + ], + [ + 13.3463306, + 53.985273301 + ], + [ + 13.3480047, + 53.984198001 + ], + [ + 13.3503107, + 53.982595901 + ], + [ + 13.3523828, + 53.981026301 + ], + [ + 13.3537278, + 53.979935701 + ], + [ + 13.3551132, + 53.978747601 + ], + [ + 13.3552412, + 53.978636201 + ], + [ + 13.3566452, + 53.977329501 + ], + [ + 13.3574036, + 53.976585601 + ], + [ + 13.3580805, + 53.975898301 + ], + [ + 13.3592791, + 53.974618501 + ], + [ + 13.3604623, + 53.973233901 + ], + [ + 13.3611037, + 53.972448501 + ], + [ + 13.3617598, + 53.971610701 + ], + [ + 13.362616, + 53.970425001 + ], + [ + 13.3634426, + 53.969211701 + ], + [ + 13.36422, + 53.967966501 + ], + [ + 13.3650862, + 53.966432201 + ], + [ + 13.3654837, + 53.965672901 + ], + [ + 13.3658714, + 53.964889801 + ], + [ + 13.3665909, + 53.963279401 + ], + [ + 13.3670019, + 53.962229901 + ], + [ + 13.3673349, + 53.961308501 + ], + [ + 13.367793, + 53.959849101 + ], + [ + 13.3679953, + 53.959098701 + ], + [ + 13.3680472, + 53.958888801 + ], + [ + 13.3682722, + 53.957963101 + ], + [ + 13.3685805, + 53.956367801 + ], + [ + 13.3687685, + 53.954899301 + ], + [ + 13.3688325, + 53.953451901 + ], + [ + 13.3688154, + 53.952662401 + ], + [ + 13.36876, + 53.951999001 + ], + [ + 13.3686824, + 53.951401301 + ], + [ + 13.368577, + 53.950838401 + ], + [ + 13.368565461, + 53.950786918 + ] + ] + } + }, + { + "identifier": "2026-017798--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_009.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.77060749239162,13.33043934788332,53.78431420530651,13.32635464712558", + "point": "53.77060749239162,13.33043934788332", + "startLcPosition": "48", + "impact": { + "lower": "Anklam", + "upper": "Altentreptow", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stettin -> Rostock", + "title": "A20 | Altentreptow - Anklam", + "coordinate": { + "lat": 53.77060749239162, + "long": 13.33043934788332 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A20: Stettin -> Rostock, zwischen 6.7 km hinter AS Altentreptow und 1.1 km vor AS Anklam", + "", + "L\u00e4nge: 1.55 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A20 Fahrbahninstandsetzung AM Glienke (NOO-2024-0124 - ARV 2024-372 - A-P0422-30 4400045139)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.330439348, + 53.770607492 + ], + [ + 13.3302664, + 53.771291301 + ], + [ + 13.3298814, + 53.772821601 + ], + [ + 13.3294842, + 53.774311401 + ], + [ + 13.3292489, + 53.775130501 + ], + [ + 13.3288882, + 53.776424901 + ], + [ + 13.3286758, + 53.777180901 + ], + [ + 13.3281279, + 53.778949601 + ], + [ + 13.3266559, + 53.783481901 + ], + [ + 13.326354647, + 53.784314205 + ] + ] + } + }, + { + "identifier": "2026-017798--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_009.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.77504462161756,13.329273570720629,53.78431420530651,13.32635464712558", + "point": "53.77504462161756,13.329273570720629", + "startLcPosition": "48", + "impact": { + "lower": "Anklam", + "upper": "Altentreptow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stettin -> Rostock", + "title": "A20 | Altentreptow - Anklam", + "coordinate": { + "lat": 53.77504462161756, + "long": 13.329273570720629 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 17:00 Uhr", + "", + "A20: Stettin -> Rostock, zwischen 7.2 km hinter AS Altentreptow und 1.1 km vor AS Anklam", + "", + "L\u00e4nge: 1.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A20 Fahrbahninstandsetzung AM Glienke (NOO-2024-0124 - ARV 2024-372 - A-P0422-30 4400045139)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.329273571, + 53.775044622 + ], + [ + 13.3292489, + 53.775130501 + ], + [ + 13.3288882, + 53.776424901 + ], + [ + 13.3286758, + 53.777180901 + ], + [ + 13.3281279, + 53.778949601 + ], + [ + 13.3266559, + 53.783481901 + ], + [ + 13.326354647, + 53.784314205 + ] + ] + } + }, + { + "identifier": "2026-017798--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_009.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.6692942302772,13.345108508865014,53.67455535355755,13.338035532936951", + "point": "53.6692942302772,13.345108508865014", + "startLcPosition": "49", + "impact": { + "lower": "Altentreptow", + "upper": "Neubrandenburg-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stettin -> Rostock", + "title": "A20 | Neubrandenburg-Nord - Altentreptow", + "coordinate": { + "lat": 53.6692942302772, + "long": 13.345108508865014 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 17:00 Uhr", + "", + "A20: Stettin -> Rostock, zwischen 0.6 km hinter AS Neubrandenburg-Nord und 4.2 km vor AS Altentreptow", + "", + "L\u00e4nge: 0.75 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A20 Fahrbahninstandsetzung AM Glienke (NOO-2024-0124 - ARV 2024-372 - A-P0422-30 4400045139)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.345108509, + 53.66929423 + ], + [ + 13.3443945, + 53.669812901 + ], + [ + 13.3435594, + 53.670423601 + ], + [ + 13.3424772, + 53.671205801 + ], + [ + 13.3422574, + 53.671367201 + ], + [ + 13.3410792, + 53.672229601 + ], + [ + 13.3400042, + 53.673030201 + ], + [ + 13.339082, + 53.673737801 + ], + [ + 13.338035533, + 53.674555354 + ] + ] + } + }, + { + "identifier": "2026-017798--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_009.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.672778463974716,13.340342223751291,53.67455535355755,13.338035532936951", + "point": "53.672778463974716,13.340342223751291", + "startLcPosition": "49", + "impact": { + "lower": "Altentreptow", + "upper": "Neubrandenburg-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stettin -> Rostock", + "title": "A20 | Neubrandenburg-Nord - Altentreptow", + "coordinate": { + "lat": 53.672778463974716, + "long": 13.340342223751291 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A20: Stettin -> Rostock, zwischen 1.1 km hinter AS Neubrandenburg-Nord und 4.2 km vor AS Altentreptow", + "", + "L\u00e4nge: 0.25 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A20 Fahrbahninstandsetzung AM Glienke (NOO-2024-0124 - ARV 2024-372 - A-P0422-30 4400045139)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.340342224, + 53.672778464 + ], + [ + 13.3400042, + 53.673030201 + ], + [ + 13.339082, + 53.673737801 + ], + [ + 13.338035533, + 53.674555354 + ] + ] + } + }, + { + "identifier": "2024-012760--vi-fbm.2026-03-11_07-00-00-000.devi-zus.2024-06-01_00-00-00-000_003.f.de12", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.549421963256414,13.561370056817864,53.54594542035298,13.699449167036338", + "point": "53.549421963256414,13.561370056817864", + "startLcPosition": "51", + "impact": { + "lower": "Strasburg (Uckermark)", + "upper": "Neubrandenburg-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rostock -> Stettin", + "title": "A20 | Neubrandenburg-Ost - Strasburg (Uckermark)", + "startTimestamp": "2026-03-11T07:00:00+01:00", + "coordinate": { + "lat": 53.549421963256414, + "long": 13.561370056817864 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.03.26 um 07:00 Uhr", + "Ende: 20.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "A20: Rostock -> Stettin, zwischen 10.2 km hinter AS Neubrandenburg-Ost und 0.4 km vor AS Strasburg (Uckermark)", + "", + "L\u00e4nge: 9.4 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A20 Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.561370057, + 53.549421963 + ], + [ + 13.5614804, + 53.549394401 + ], + [ + 13.5615039, + 53.549388501 + ], + [ + 13.5629138, + 53.549069901 + ], + [ + 13.564356, + 53.548771901 + ], + [ + 13.5649318, + 53.548664701 + ], + [ + 13.5657549, + 53.548520901 + ], + [ + 13.5670343, + 53.548311001 + ], + [ + 13.5682766, + 53.548127501 + ], + [ + 13.5692448, + 53.547996001 + ], + [ + 13.5705389, + 53.547858501 + ], + [ + 13.5713095, + 53.547781601 + ], + [ + 13.5723814, + 53.547692501 + ], + [ + 13.5733983, + 53.547614101 + ], + [ + 13.5742353, + 53.547564501 + ], + [ + 13.575181, + 53.547517901 + ], + [ + 13.5761095, + 53.547487901 + ], + [ + 13.5772385, + 53.547462501 + ], + [ + 13.5783488, + 53.547457901 + ], + [ + 13.5794632, + 53.547460801 + ], + [ + 13.5804775, + 53.547481701 + ], + [ + 13.5819173, + 53.547538201 + ], + [ + 13.5831443, + 53.547605201 + ], + [ + 13.5844063, + 53.547694101 + ], + [ + 13.5852583, + 53.547770701 + ], + [ + 13.5862336, + 53.547865101 + ], + [ + 13.5872843, + 53.547981401 + ], + [ + 13.5884038, + 53.548123501 + ], + [ + 13.5894851, + 53.548278801 + ], + [ + 13.5906346, + 53.548463301 + ], + [ + 13.592215, + 53.548747201 + ], + [ + 13.5935417, + 53.549013301 + ], + [ + 13.5939523, + 53.549098601 + ], + [ + 13.5962278, + 53.549601101 + ], + [ + 13.5985762, + 53.550132201 + ], + [ + 13.6001665, + 53.550477701 + ], + [ + 13.6017159, + 53.550798601 + ], + [ + 13.6031824, + 53.551092101 + ], + [ + 13.6047458, + 53.551377301 + ], + [ + 13.6064708, + 53.551668901 + ], + [ + 13.6074102, + 53.551834201 + ], + [ + 13.6090739, + 53.552096801 + ], + [ + 13.6108748, + 53.552360601 + ], + [ + 13.612192, + 53.552539801 + ], + [ + 13.6134955, + 53.552706301 + ], + [ + 13.6148985, + 53.552875301 + ], + [ + 13.6164379, + 53.553046501 + ], + [ + 13.6170441, + 53.553109101 + ], + [ + 13.6188373, + 53.553284001 + ], + [ + 13.6205373, + 53.553430601 + ], + [ + 13.6220729, + 53.553549201 + ], + [ + 13.6240594, + 53.553683401 + ], + [ + 13.62555, + 53.553768201 + ], + [ + 13.6267175, + 53.553823301 + ], + [ + 13.6278778, + 53.553870301 + ], + [ + 13.6293259, + 53.553920501 + ], + [ + 13.6307398, + 53.553956001 + ], + [ + 13.631933, + 53.553977001 + ], + [ + 13.6331587, + 53.553991601 + ], + [ + 13.6350716, + 53.553994401 + ], + [ + 13.6364029, + 53.553984201 + ], + [ + 13.6376237, + 53.553966301 + ], + [ + 13.6380788, + 53.553955401 + ], + [ + 13.6394499, + 53.553923701 + ], + [ + 13.6407359, + 53.553879901 + ], + [ + 13.6423615, + 53.553813701 + ], + [ + 13.6438231, + 53.553738001 + ], + [ + 13.6453494, + 53.553647201 + ], + [ + 13.6467075, + 53.553556601 + ], + [ + 13.6478493, + 53.553470301 + ], + [ + 13.6489016, + 53.553383701 + ], + [ + 13.6505919, + 53.553229701 + ], + [ + 13.6521329, + 53.553078201 + ], + [ + 13.6536602, + 53.552911501 + ], + [ + 13.6551592, + 53.552733501 + ], + [ + 13.6565106, + 53.552549001 + ], + [ + 13.657832, + 53.552371301 + ], + [ + 13.6596051, + 53.552112101 + ], + [ + 13.6605972, + 53.551960001 + ], + [ + 13.6615635, + 53.551804901 + ], + [ + 13.6636809, + 53.551443901 + ], + [ + 13.6654983, + 53.551111901 + ], + [ + 13.6668671, + 53.550843901 + ], + [ + 13.6684385, + 53.550521001 + ], + [ + 13.6705712, + 53.550062601 + ], + [ + 13.6728295, + 53.549549401 + ], + [ + 13.6738805, + 53.549320901 + ], + [ + 13.6769156, + 53.548705701 + ], + [ + 13.6787952, + 53.548382001 + ], + [ + 13.681719, + 53.547950201 + ], + [ + 13.6849654, + 53.547578601 + ], + [ + 13.6870988, + 53.547390801 + ], + [ + 13.6897698, + 53.547200401 + ], + [ + 13.6922481, + 53.546990001 + ], + [ + 13.6949709, + 53.546668901 + ], + [ + 13.6959879, + 53.546520701 + ], + [ + 13.6967319, + 53.546413001 + ], + [ + 13.698798, + 53.546062701 + ], + [ + 13.6988651, + 53.546051301 + ], + [ + 13.699449167, + 53.54594542 + ] + ] + } + }, + { + "identifier": "2024-012760--vi-fbm.2026-03-11_07-00-00-000.devi-zus.2024-06-01_00-00-00-000_003.f.de14", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.54603578219347,13.699497077096758,53.549454625064776,13.561385976905022", + "point": "53.54603578219347,13.699497077096758", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stettin -> Rostock", + "title": "A20 Erneuerung der Fahrbahn", + "startTimestamp": "2026-03-11T07:00:00+01:00", + "coordinate": { + "lat": 53.54603578219347, + "long": 13.699497077096758 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.03.26 um 07:00 Uhr", + "Ende: 20.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "Von A20: Stettin -> Rostock, 6.8 km vor Brohmer Berge, aus Richtung Strasburg (Uckermark); Abfahrt von der A20 in AS Strasburg (Uckermark); nach Auffahrt auf die A20: AS Friedland i.M. (aus Richtung Brohmer Berge)", + "", + "L\u00e4nge: 9.4 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A20 Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.699497077, + 53.546035782 + ], + [ + 13.6990806, + 53.546116801 + ], + [ + 13.6988651, + 53.546051301 + ], + [ + 13.698798, + 53.546062701 + ], + [ + 13.6967319, + 53.546413001 + ], + [ + 13.6959879, + 53.546520701 + ], + [ + 13.6949709, + 53.546668901 + ], + [ + 13.6922481, + 53.546990001 + ], + [ + 13.6897698, + 53.547200401 + ], + [ + 13.6870988, + 53.547390801 + ], + [ + 13.6849654, + 53.547578601 + ], + [ + 13.681719, + 53.547950201 + ], + [ + 13.6787952, + 53.548382001 + ], + [ + 13.6769156, + 53.548705701 + ], + [ + 13.6738805, + 53.549320901 + ], + [ + 13.6728295, + 53.549549401 + ], + [ + 13.6705712, + 53.550062601 + ], + [ + 13.6684385, + 53.550521001 + ], + [ + 13.6668671, + 53.550843901 + ], + [ + 13.6654983, + 53.551111901 + ], + [ + 13.6636809, + 53.551443901 + ], + [ + 13.6615635, + 53.551804901 + ], + [ + 13.6605972, + 53.551960001 + ], + [ + 13.6596051, + 53.552112101 + ], + [ + 13.657832, + 53.552371301 + ], + [ + 13.6565106, + 53.552549001 + ], + [ + 13.6551592, + 53.552733501 + ], + [ + 13.6536602, + 53.552911501 + ], + [ + 13.6521329, + 53.553078201 + ], + [ + 13.6505919, + 53.553229701 + ], + [ + 13.6489016, + 53.553383701 + ], + [ + 13.6478493, + 53.553470301 + ], + [ + 13.6467075, + 53.553556601 + ], + [ + 13.6453494, + 53.553647201 + ], + [ + 13.6438231, + 53.553738001 + ], + [ + 13.6423615, + 53.553813701 + ], + [ + 13.6407359, + 53.553879901 + ], + [ + 13.6394499, + 53.553923701 + ], + [ + 13.6380788, + 53.553955401 + ], + [ + 13.6376237, + 53.553966301 + ], + [ + 13.6364029, + 53.553984201 + ], + [ + 13.6350716, + 53.553994401 + ], + [ + 13.6331587, + 53.553991601 + ], + [ + 13.631933, + 53.553977001 + ], + [ + 13.6307398, + 53.553956001 + ], + [ + 13.6293259, + 53.553920501 + ], + [ + 13.6278778, + 53.553870301 + ], + [ + 13.6267175, + 53.553823301 + ], + [ + 13.62555, + 53.553768201 + ], + [ + 13.6240594, + 53.553683401 + ], + [ + 13.6220729, + 53.553549201 + ], + [ + 13.6205373, + 53.553430601 + ], + [ + 13.6188373, + 53.553284001 + ], + [ + 13.6170441, + 53.553109101 + ], + [ + 13.6164379, + 53.553046501 + ], + [ + 13.6148985, + 53.552875301 + ], + [ + 13.6134955, + 53.552706301 + ], + [ + 13.612192, + 53.552539801 + ], + [ + 13.6108748, + 53.552360601 + ], + [ + 13.6090739, + 53.552096801 + ], + [ + 13.6074102, + 53.551834201 + ], + [ + 13.6064708, + 53.551668901 + ], + [ + 13.6047458, + 53.551377301 + ], + [ + 13.6031824, + 53.551092101 + ], + [ + 13.6017159, + 53.550798601 + ], + [ + 13.6001665, + 53.550477701 + ], + [ + 13.5985762, + 53.550132201 + ], + [ + 13.5962278, + 53.549601101 + ], + [ + 13.5939523, + 53.549098601 + ], + [ + 13.5935417, + 53.549013301 + ], + [ + 13.592215, + 53.548747201 + ], + [ + 13.5906346, + 53.548463301 + ], + [ + 13.5894851, + 53.548278801 + ], + [ + 13.5884038, + 53.548123501 + ], + [ + 13.5872843, + 53.547981401 + ], + [ + 13.5862336, + 53.547865101 + ], + [ + 13.5852583, + 53.547770701 + ], + [ + 13.5844063, + 53.547694101 + ], + [ + 13.5831443, + 53.547605201 + ], + [ + 13.5819173, + 53.547538201 + ], + [ + 13.5804775, + 53.547481701 + ], + [ + 13.5794632, + 53.547460801 + ], + [ + 13.5783488, + 53.547457901 + ], + [ + 13.5772385, + 53.547462501 + ], + [ + 13.5761095, + 53.547487901 + ], + [ + 13.575181, + 53.547517901 + ], + [ + 13.5742353, + 53.547564501 + ], + [ + 13.5733983, + 53.547614101 + ], + [ + 13.5723814, + 53.547692501 + ], + [ + 13.5713095, + 53.547781601 + ], + [ + 13.5705389, + 53.547858501 + ], + [ + 13.5692448, + 53.547996001 + ], + [ + 13.5682766, + 53.548127501 + ], + [ + 13.5670343, + 53.548311001 + ], + [ + 13.5657549, + 53.548520901 + ], + [ + 13.5649318, + 53.548664701 + ], + [ + 13.564356, + 53.548771901 + ], + [ + 13.5629138, + 53.549069901 + ], + [ + 13.5615039, + 53.549388501 + ], + [ + 13.561385977, + 53.549454625 + ] + ] + } + }, + { + "identifier": "2025-037474--vi-bs.2025-08-06_00-00-00-000.devi-zus.2025-08-06_00-00-00-000_006.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.87857588216419,11.536875848422918,53.877127716536705,11.537409367276103", + "point": "53.87857588216419,11.536875848422918", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Wismar (aus Richtung Jesendorf) nach A14", + "title": "GST, A14 A20 Kreuz Wismar u. Ende A14 RF Wismar", + "startTimestamp": "2025-08-06T00:00:00+02:00", + "coordinate": { + "lat": 53.87857588216419, + "long": 11.536875848422918 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.08.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Von Auffahrt auf die A14: AK Wismar (aus Richtung Jesendorf) nach A14: Schwerin -> Wismar, zwischen AS Jesendorf und 0.2 km vor AK Wismar", + "", + "L\u00e4nge: 0.34 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "GST, A14 A20 Kreuz Wismar u. Ende A14 RF Wismar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.536875848, + 53.878575882 + ], + [ + 11.5369666, + 53.878599901 + ], + [ + 11.5373905, + 53.878635801 + ], + [ + 11.5375462, + 53.878633301 + ], + [ + 11.537755, + 53.878603101 + ], + [ + 11.5379641, + 53.878533101 + ], + [ + 11.5381274, + 53.878427601 + ], + [ + 11.5382549, + 53.878280801 + ], + [ + 11.5387951, + 53.877454401 + ], + [ + 11.5388009, + 53.877318101 + ], + [ + 11.538742, + 53.877185101 + ], + [ + 11.5385889, + 53.877066501 + ], + [ + 11.5383732, + 53.876995501 + ], + [ + 11.5381113, + 53.876966501 + ], + [ + 11.5378736, + 53.877001001 + ], + [ + 11.5374339, + 53.877114801 + ], + [ + 11.537409367, + 53.877127717 + ] + ] + } + }, + { + "identifier": "2025-037474--vi-bs.2025-08-06_00-00-00-000.devi-zus.2025-08-06_00-00-00-000_006.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.88077571001538,11.53185937272802,53.877233849822886,11.531177491230082", + "point": "53.88077571001538,11.53185937272802", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Wismar (aus Richtung Wismar Ost)", + "title": "GST, A14 A20 Kreuz Wismar u. Ende A14 RF Wismar", + "startTimestamp": "2025-08-06T00:00:00+02:00", + "coordinate": { + "lat": 53.88077571001538, + "long": 11.53185937272802 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.08.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Abfahrt von der A14: AK Wismar (aus Richtung Wismar Ost)", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "GST, A14 A20 Kreuz Wismar u. Ende A14 RF Wismar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.531859373, + 53.88077571 + ], + [ + 11.5319685, + 53.880606701 + ], + [ + 11.5320143, + 53.880480401 + ], + [ + 11.5320354, + 53.880358301 + ], + [ + 11.5320616, + 53.880205901 + ], + [ + 11.5320492, + 53.880106101 + ], + [ + 11.5319828, + 53.879942101 + ], + [ + 11.531843, + 53.879629701 + ], + [ + 11.5318217, + 53.879474401 + ], + [ + 11.5318233, + 53.879343901 + ], + [ + 11.5319551, + 53.878305201 + ], + [ + 11.5319468, + 53.878104201 + ], + [ + 11.5319125, + 53.877953101 + ], + [ + 11.5318428, + 53.877798301 + ], + [ + 11.5316696, + 53.877582901 + ], + [ + 11.5314683, + 53.877415701 + ], + [ + 11.531177491, + 53.87723385 + ] + ] + } + } + ] + }, + "A21": { + "roadworks": [ + { + "identifier": "2024-005604--vi-bs.2026-02-28_05-00-00-000.devi-zus.2025-05-19_00-00-00-000.f_002.de16", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.80065562558891,10.315242867951259,53.877237664970025,10.310569148370272", + "point": "53.80065562558891,10.315242867951259", + "startLcPosition": "4", + "impact": { + "lower": "Schwisseler Kamp", + "upper": "Bad Oldesloe-S\u00fcd", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bargteheide -> Kiel", + "title": "A21 | Bad Oldesloe-S\u00fcd - Schwisseler Kamp", + "startTimestamp": "2026-02-28T05:00:00+01:00", + "coordinate": { + "lat": 53.80065562558891, + "long": 10.315242867951259 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.02.26 um 05:00 Uhr", + "Ende: 05.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.12.26)", + "", + "A21: Bargteheide -> Kiel, zwischen 0.8 km hinter AS Bad Oldesloe-S\u00fcd und 1.9 km vor Schwisseler Kamp", + "", + "L\u00e4nge: 9.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A21, AS Leezen - AS Bad Oldesloe-S\u00fcd, Erneuerung der Fahrbahn " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.315242868, + 53.800655626 + ], + [ + 10.3152496, + 53.800669101 + ], + [ + 10.3154778, + 53.801080201 + ], + [ + 10.3156989, + 53.801430201 + ], + [ + 10.3159722, + 53.801826401 + ], + [ + 10.3164365, + 53.802414701 + ], + [ + 10.3172561, + 53.803442601 + ], + [ + 10.3180919, + 53.804470501 + ], + [ + 10.3223624, + 53.809807201 + ], + [ + 10.3225761, + 53.810062001 + ], + [ + 10.3236142, + 53.811369901 + ], + [ + 10.3243082, + 53.812197901 + ], + [ + 10.324614, + 53.812645701 + ], + [ + 10.324791, + 53.812945801 + ], + [ + 10.3249627, + 53.813395901 + ], + [ + 10.3251307, + 53.813812101 + ], + [ + 10.3252776, + 53.814233901 + ], + [ + 10.3253818, + 53.814647401 + ], + [ + 10.3254732, + 53.815024101 + ], + [ + 10.3255108, + 53.815317501 + ], + [ + 10.3255692, + 53.815925701 + ], + [ + 10.3255611, + 53.816384901 + ], + [ + 10.3255057, + 53.816907901 + ], + [ + 10.3253777, + 53.817533801 + ], + [ + 10.3252498, + 53.817978101 + ], + [ + 10.3250084, + 53.818564401 + ], + [ + 10.3247598, + 53.819080401 + ], + [ + 10.3244696, + 53.819574701 + ], + [ + 10.3241498, + 53.820051501 + ], + [ + 10.3234281, + 53.821093401 + ], + [ + 10.3214257, + 53.823945001 + ], + [ + 10.3211946, + 53.824259201 + ], + [ + 10.320549, + 53.825116001 + ], + [ + 10.3201411, + 53.825598601 + ], + [ + 10.3196628, + 53.826116201 + ], + [ + 10.3193727, + 53.826416301 + ], + [ + 10.3190689, + 53.826712801 + ], + [ + 10.3183741, + 53.827354301 + ], + [ + 10.3179015, + 53.827752501 + ], + [ + 10.3174193, + 53.828150501 + ], + [ + 10.3167367, + 53.828656001 + ], + [ + 10.3160352, + 53.829142401 + ], + [ + 10.3154305, + 53.829543301 + ], + [ + 10.3148686, + 53.829900301 + ], + [ + 10.3137197, + 53.830603601 + ], + [ + 10.3130953, + 53.830981701 + ], + [ + 10.3129698, + 53.831060301 + ], + [ + 10.3125055, + 53.831359001 + ], + [ + 10.3120476, + 53.831672801 + ], + [ + 10.3116131, + 53.832006201 + ], + [ + 10.3113079, + 53.832277901 + ], + [ + 10.3110027, + 53.832590601 + ], + [ + 10.310752, + 53.832875801 + ], + [ + 10.3105335, + 53.833173401 + ], + [ + 10.3103591, + 53.833441701 + ], + [ + 10.3101981, + 53.833731401 + ], + [ + 10.310056, + 53.834032901 + ], + [ + 10.3099683, + 53.834255401 + ], + [ + 10.3098394, + 53.834679101 + ], + [ + 10.3097717, + 53.835043801 + ], + [ + 10.3097422, + 53.835345801 + ], + [ + 10.3097377, + 53.835629201 + ], + [ + 10.3097469, + 53.836038701 + ], + [ + 10.3097764, + 53.836455001 + ], + [ + 10.3098266, + 53.837229201 + ], + [ + 10.3098338, + 53.837356801 + ], + [ + 10.3098435, + 53.837903201 + ], + [ + 10.3098461, + 53.838395401 + ], + [ + 10.3098047, + 53.839090001 + ], + [ + 10.3097556, + 53.839522601 + ], + [ + 10.3096929, + 53.839901801 + ], + [ + 10.309554, + 53.840658001 + ], + [ + 10.3093473, + 53.841440801 + ], + [ + 10.3091049, + 53.842149701 + ], + [ + 10.3083449, + 53.844058701 + ], + [ + 10.3069218, + 53.847635301 + ], + [ + 10.3066899, + 53.848265901 + ], + [ + 10.3064994, + 53.848887501 + ], + [ + 10.3062731, + 53.849695901 + ], + [ + 10.3061391, + 53.850239701 + ], + [ + 10.30602, + 53.850830001 + ], + [ + 10.3059296, + 53.851352101 + ], + [ + 10.3057341, + 53.854010901 + ], + [ + 10.3056869, + 53.855425001 + ], + [ + 10.3055542, + 53.857561001 + ], + [ + 10.3055438, + 53.857785001 + ], + [ + 10.3055083, + 53.858564201 + ], + [ + 10.3054923, + 53.859012901 + ], + [ + 10.305495, + 53.859247001 + ], + [ + 10.3055164, + 53.859523701 + ], + [ + 10.3055527, + 53.859791801 + ], + [ + 10.3056152, + 53.860115901 + ], + [ + 10.3056988, + 53.860379601 + ], + [ + 10.3058292, + 53.860732401 + ], + [ + 10.3059347, + 53.860947201 + ], + [ + 10.3062523, + 53.861576301 + ], + [ + 10.3064197, + 53.861873501 + ], + [ + 10.3065813, + 53.862081701 + ], + [ + 10.3067765, + 53.862328001 + ], + [ + 10.3070936, + 53.862698501 + ], + [ + 10.3075131, + 53.863142301 + ], + [ + 10.3086595, + 53.864378901 + ], + [ + 10.3089046, + 53.864671701 + ], + [ + 10.3091628, + 53.865007401 + ], + [ + 10.3092731, + 53.865154601 + ], + [ + 10.309636, + 53.865720101 + ], + [ + 10.3098741, + 53.866181801 + ], + [ + 10.3101, + 53.866704801 + ], + [ + 10.3102309, + 53.867135601 + ], + [ + 10.3103192, + 53.867498601 + ], + [ + 10.3104196, + 53.868093601 + ], + [ + 10.3104525, + 53.868578101 + ], + [ + 10.3104457, + 53.868953801 + ], + [ + 10.3103156, + 53.871126301 + ], + [ + 10.3103448, + 53.872183301 + ], + [ + 10.3104074, + 53.873094701 + ], + [ + 10.3105755, + 53.875976701 + ], + [ + 10.3105865, + 53.876838101 + ], + [ + 10.310569148, + 53.877237665 + ] + ] + } + }, + { + "identifier": "2024-005604--vi-bs.2026-02-28_05-00-00-000.devi-zus.2025-05-19_00-00-00-000.f_002.de14", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.87723522647022,10.310384967718765,53.80068841042202,10.315058340271014", + "point": "53.87723522647022,10.310384967718765", + "startLcPosition": "7", + "impact": { + "lower": "Bad Oldesloe-S\u00fcd", + "upper": "Schwisseler Kamp", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kiel -> Bargteheide", + "title": "A21 | Schwisseler Kamp - Bad Oldesloe-S\u00fcd", + "startTimestamp": "2026-02-28T05:00:00+01:00", + "coordinate": { + "lat": 53.87723522647022, + "long": 10.310384967718765 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.02.26 um 05:00 Uhr", + "Ende: 05.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.12.26)", + "", + "A21: Kiel -> Bargteheide, zwischen 1.9 km hinter Schwisseler Kamp und 0.8 km vor AS Bad Oldesloe-S\u00fcd", + "", + "L\u00e4nge: 9.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A21, AS Leezen - AS Bad Oldesloe-S\u00fcd, Erneuerung der Fahrbahn " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.310384968, + 53.877235226 + ], + [ + 10.3103978, + 53.876847001 + ], + [ + 10.3103975, + 53.875974501 + ], + [ + 10.3102369, + 53.873165201 + ], + [ + 10.310172, + 53.872204601 + ], + [ + 10.3101436, + 53.871116301 + ], + [ + 10.3102642, + 53.869036901 + ], + [ + 10.3102771, + 53.868594601 + ], + [ + 10.3102386, + 53.868067401 + ], + [ + 10.3101627, + 53.867581801 + ], + [ + 10.3100738, + 53.867216301 + ], + [ + 10.309885, + 53.866639801 + ], + [ + 10.3096711, + 53.866162901 + ], + [ + 10.3094912, + 53.865803501 + ], + [ + 10.3091323, + 53.865243501 + ], + [ + 10.3090144, + 53.865072601 + ], + [ + 10.3087592, + 53.864734501 + ], + [ + 10.308535, + 53.864476201 + ], + [ + 10.3073854, + 53.863206301 + ], + [ + 10.3071821, + 53.863002201 + ], + [ + 10.3070131, + 53.862814001 + ], + [ + 10.3065944, + 53.862333201 + ], + [ + 10.3064364, + 53.862135401 + ], + [ + 10.3062681, + 53.861896001 + ], + [ + 10.3061333, + 53.861687801 + ], + [ + 10.3059695, + 53.861415801 + ], + [ + 10.3058789, + 53.861240101 + ], + [ + 10.3057364, + 53.860908001 + ], + [ + 10.3055645, + 53.860527701 + ], + [ + 10.3054553, + 53.860173201 + ], + [ + 10.3053906, + 53.859892801 + ], + [ + 10.3053448, + 53.859607701 + ], + [ + 10.3053281, + 53.859399301 + ], + [ + 10.3053369, + 53.858508601 + ], + [ + 10.3053848, + 53.857771201 + ], + [ + 10.3053894, + 53.857555901 + ], + [ + 10.3054889, + 53.855677201 + ], + [ + 10.3055533, + 53.854259801 + ], + [ + 10.305758, + 53.851343001 + ], + [ + 10.3058435, + 53.850815001 + ], + [ + 10.3059692, + 53.850219001 + ], + [ + 10.3061083, + 53.849670201 + ], + [ + 10.3063125, + 53.848878501 + ], + [ + 10.3065272, + 53.848246401 + ], + [ + 10.3067688, + 53.847611701 + ], + [ + 10.3081727, + 53.844034001 + ], + [ + 10.3089436, + 53.842092101 + ], + [ + 10.3091607, + 53.841460401 + ], + [ + 10.3093871, + 53.840658901 + ], + [ + 10.3095193, + 53.839893701 + ], + [ + 10.3095826, + 53.839525001 + ], + [ + 10.3096284, + 53.839092001 + ], + [ + 10.3096637, + 53.838389001 + ], + [ + 10.3096718, + 53.837942701 + ], + [ + 10.3096361, + 53.837360801 + ], + [ + 10.3096257, + 53.837240401 + ], + [ + 10.3095617, + 53.836465101 + ], + [ + 10.3095417, + 53.836036401 + ], + [ + 10.309511, + 53.835627301 + ], + [ + 10.3095249, + 53.835331601 + ], + [ + 10.309555, + 53.835026301 + ], + [ + 10.3096195, + 53.834656901 + ], + [ + 10.3097497, + 53.834230701 + ], + [ + 10.3098347, + 53.834009901 + ], + [ + 10.3099772, + 53.833712301 + ], + [ + 10.3101499, + 53.833401301 + ], + [ + 10.3103464, + 53.833098301 + ], + [ + 10.310575, + 53.832795101 + ], + [ + 10.3108206, + 53.832506901 + ], + [ + 10.311096, + 53.832233601 + ], + [ + 10.3114951, + 53.831874501 + ], + [ + 10.3118746, + 53.831582601 + ], + [ + 10.312389, + 53.831233501 + ], + [ + 10.3128068, + 53.830970601 + ], + [ + 10.3129341, + 53.830893001 + ], + [ + 10.3135782, + 53.830517401 + ], + [ + 10.3147425, + 53.829828201 + ], + [ + 10.3153085, + 53.829473601 + ], + [ + 10.3158651, + 53.829101101 + ], + [ + 10.3165705, + 53.828612501 + ], + [ + 10.3172491, + 53.828103801 + ], + [ + 10.3177459, + 53.827703401 + ], + [ + 10.3182207, + 53.827298601 + ], + [ + 10.3189227, + 53.826654201 + ], + [ + 10.3192278, + 53.826355401 + ], + [ + 10.3195167, + 53.826053501 + ], + [ + 10.3199936, + 53.825528201 + ], + [ + 10.3204012, + 53.825050201 + ], + [ + 10.321032, + 53.824217501 + ], + [ + 10.3212642, + 53.823896201 + ], + [ + 10.3232986, + 53.820993201 + ], + [ + 10.3240122, + 53.819987501 + ], + [ + 10.3243113, + 53.819517401 + ], + [ + 10.3245804, + 53.819057201 + ], + [ + 10.3248286, + 53.818560801 + ], + [ + 10.3250638, + 53.817968301 + ], + [ + 10.3251934, + 53.817524901 + ], + [ + 10.3252961, + 53.817138901 + ], + [ + 10.3254113, + 53.816390901 + ], + [ + 10.3254127, + 53.815955701 + ], + [ + 10.3253383, + 53.815332201 + ], + [ + 10.3252154, + 53.814658901 + ], + [ + 10.3251138, + 53.814263401 + ], + [ + 10.3250238, + 53.813840601 + ], + [ + 10.3246888, + 53.813179201 + ], + [ + 10.3243801, + 53.812694401 + ], + [ + 10.3240868, + 53.812230101 + ], + [ + 10.3238176, + 53.811881201 + ], + [ + 10.3235189, + 53.811491301 + ], + [ + 10.3224092, + 53.810080401 + ], + [ + 10.3221891, + 53.809819601 + ], + [ + 10.3179298, + 53.804505801 + ], + [ + 10.3170969, + 53.803485001 + ], + [ + 10.3162905, + 53.802474601 + ], + [ + 10.3158013, + 53.801843901 + ], + [ + 10.3155398, + 53.801468901 + ], + [ + 10.3152969, + 53.801095201 + ], + [ + 10.3150655, + 53.800702301 + ], + [ + 10.31505834, + 53.80068841 + ] + ] + } + }, + { + "identifier": "2026-016370--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "54.05173062392353,10.231488852410246,54.16071866849511,10.203392038822042", + "point": "54.05173062392353,10.231488852410246", + "startLcPosition": "17", + "impact": { + "lower": "Nettelsee", + "upper": "Trappenkamp", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bargteheide -> Kiel", + "title": "A21 | Trappenkamp - Nettelsee", + "coordinate": { + "lat": 54.05173062392353, + "long": 10.231488852410246 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 18:00 Uhr", + "14.04.26 von 07:00 bis 18:00 Uhr", + "15.04.26 von 07:00 bis 18:00 Uhr", + "16.04.26 von 07:00 bis 18:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "20.04.26 von 07:00 bis 18:00 Uhr", + "21.04.26 von 07:00 bis 18:00 Uhr", + "22.04.26 von 07:00 bis 18:00 Uhr", + "23.04.26 von 07:00 bis 18:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "27.04.26 von 07:00 bis 18:00 Uhr", + "28.04.26 von 07:00 bis 18:00 Uhr", + "29.04.26 von 07:00 bis 18:00 Uhr", + "30.04.26 von 07:00 bis 18:00 Uhr", + "01.05.26 von 07:00 bis 12:00 Uhr", + "04.05.26 von 07:00 bis 18:00 Uhr", + "05.05.26 von 07:00 bis 18:00 Uhr", + "06.05.26 von 07:00 bis 18:00 Uhr", + "07.05.26 von 07:00 bis 18:00 Uhr", + "08.05.26 von 07:00 bis 12:00 Uhr", + "11.05.26 von 07:00 bis 18:00 Uhr", + "12.05.26 von 07:00 bis 18:00 Uhr", + "13.05.26 von 07:00 bis 18:00 Uhr", + "", + "A21: Bargteheide -> Kiel, zwischen 1.3 km hinter AS Trappenkamp und 0.4 km vor AS Nettelsee", + "", + "L\u00e4nge: 12.52 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A21 von Depenauer Moor (Parkplatz) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.231488852, + 54.051730624 + ], + [ + 10.2305595, + 54.052919701 + ], + [ + 10.2299136, + 54.053709701 + ], + [ + 10.2282194, + 54.055881601 + ], + [ + 10.2235971, + 54.061796601 + ], + [ + 10.2218079, + 54.064068301 + ], + [ + 10.2216707, + 54.064242501 + ], + [ + 10.2208125, + 54.065337601 + ], + [ + 10.2202639, + 54.066092701 + ], + [ + 10.2195946, + 54.067046401 + ], + [ + 10.2187961, + 54.068264001 + ], + [ + 10.2181426, + 54.069367901 + ], + [ + 10.217735, + 54.070107601 + ], + [ + 10.217489, + 54.070573901 + ], + [ + 10.2171231, + 54.071301401 + ], + [ + 10.2168117, + 54.072027001 + ], + [ + 10.2166767, + 54.072297801 + ], + [ + 10.216144, + 54.073559001 + ], + [ + 10.2159459, + 54.074045001 + ], + [ + 10.2158622, + 54.074266701 + ], + [ + 10.2156444, + 54.074844101 + ], + [ + 10.2154856, + 54.075284901 + ], + [ + 10.2154024, + 54.075515801 + ], + [ + 10.2151324, + 54.076436501 + ], + [ + 10.2149642, + 54.077197001 + ], + [ + 10.2148327, + 54.077729001 + ], + [ + 10.2146113, + 54.078697401 + ], + [ + 10.2144687, + 54.079502701 + ], + [ + 10.2143309, + 54.080309001 + ], + [ + 10.2142576, + 54.080958201 + ], + [ + 10.2141989, + 54.081610201 + ], + [ + 10.2140716, + 54.083636501 + ], + [ + 10.213758, + 54.088630101 + ], + [ + 10.2137477, + 54.088840001 + ], + [ + 10.2134062, + 54.094295001 + ], + [ + 10.2130546, + 54.099662701 + ], + [ + 10.2130401, + 54.099889401 + ], + [ + 10.2129485, + 54.101775301 + ], + [ + 10.2129343, + 54.102431001 + ], + [ + 10.2129395, + 54.102753201 + ], + [ + 10.2129666, + 54.103136801 + ], + [ + 10.2130239, + 54.104286701 + ], + [ + 10.2130405, + 54.104550001 + ], + [ + 10.2130807, + 54.104952301 + ], + [ + 10.2131561, + 54.105523201 + ], + [ + 10.213257, + 54.106173601 + ], + [ + 10.2133792, + 54.106816501 + ], + [ + 10.2134884, + 54.107300901 + ], + [ + 10.2136456, + 54.107945001 + ], + [ + 10.2138116, + 54.108535501 + ], + [ + 10.2140244, + 54.109229301 + ], + [ + 10.2141867, + 54.109715501 + ], + [ + 10.2147679, + 54.111297401 + ], + [ + 10.2154457, + 54.113163601 + ], + [ + 10.2159538, + 54.114560901 + ], + [ + 10.2162067, + 54.115256301 + ], + [ + 10.2165704, + 54.116244101 + ], + [ + 10.2175897, + 54.119011901 + ], + [ + 10.2181842, + 54.120702001 + ], + [ + 10.2182865, + 54.121021601 + ], + [ + 10.2183941, + 54.121391501 + ], + [ + 10.2184934, + 54.121770701 + ], + [ + 10.2185469, + 54.122008101 + ], + [ + 10.2186311, + 54.122468501 + ], + [ + 10.218677, + 54.122786101 + ], + [ + 10.2187007, + 54.123056701 + ], + [ + 10.2187095, + 54.123509101 + ], + [ + 10.2187031, + 54.123775401 + ], + [ + 10.2186954, + 54.124206501 + ], + [ + 10.2186776, + 54.124428201 + ], + [ + 10.2186385, + 54.124749601 + ], + [ + 10.2185957, + 54.125019101 + ], + [ + 10.2185228, + 54.125398401 + ], + [ + 10.2184428, + 54.125717101 + ], + [ + 10.2182118, + 54.126526501 + ], + [ + 10.2180076, + 54.127164301 + ], + [ + 10.2177375, + 54.127966901 + ], + [ + 10.2174769, + 54.128711001 + ], + [ + 10.2171294, + 54.129661701 + ], + [ + 10.216564, + 54.131151601 + ], + [ + 10.2161084, + 54.132263601 + ], + [ + 10.2158017, + 54.132987001 + ], + [ + 10.2157068, + 54.133210801 + ], + [ + 10.2152893, + 54.134161301 + ], + [ + 10.2149049, + 54.134999001 + ], + [ + 10.2144067, + 54.136084601 + ], + [ + 10.2141682, + 54.136604201 + ], + [ + 10.2140704, + 54.136815801 + ], + [ + 10.2135696, + 54.137877501 + ], + [ + 10.2133274, + 54.138399301 + ], + [ + 10.2131197, + 54.138814601 + ], + [ + 10.2129586, + 54.139163201 + ], + [ + 10.2126914, + 54.139713201 + ], + [ + 10.2125824, + 54.139939301 + ], + [ + 10.2121254, + 54.140815201 + ], + [ + 10.2117966, + 54.141462701 + ], + [ + 10.2114778, + 54.142087701 + ], + [ + 10.2111788, + 54.142631501 + ], + [ + 10.2108835, + 54.143167101 + ], + [ + 10.2104375, + 54.143943001 + ], + [ + 10.2099118, + 54.144827001 + ], + [ + 10.2097508, + 54.145078901 + ], + [ + 10.2096304, + 54.145270501 + ], + [ + 10.208981, + 54.146322001 + ], + [ + 10.2087235, + 54.146733201 + ], + [ + 10.2085166, + 54.147097301 + ], + [ + 10.2082337, + 54.147544401 + ], + [ + 10.2080098, + 54.147899801 + ], + [ + 10.2074759, + 54.148761401 + ], + [ + 10.2066592, + 54.150099001 + ], + [ + 10.2062855, + 54.150734401 + ], + [ + 10.2058295, + 54.151465601 + ], + [ + 10.2055915, + 54.151864901 + ], + [ + 10.2052575, + 54.152432201 + ], + [ + 10.204979, + 54.152939501 + ], + [ + 10.2047549, + 54.153400401 + ], + [ + 10.2045603, + 54.153809501 + ], + [ + 10.2043828, + 54.154208601 + ], + [ + 10.204322, + 54.154357701 + ], + [ + 10.2041544, + 54.154768401 + ], + [ + 10.204004, + 54.155213101 + ], + [ + 10.2037754, + 54.156018101 + ], + [ + 10.2037343, + 54.156177001 + ], + [ + 10.2036669, + 54.156437101 + ], + [ + 10.2035923, + 54.156856001 + ], + [ + 10.2035156, + 54.157297301 + ], + [ + 10.2034633, + 54.157651301 + ], + [ + 10.2034046, + 54.158159901 + ], + [ + 10.2033667, + 54.158507301 + ], + [ + 10.2033378, + 54.159046201 + ], + [ + 10.2033234, + 54.159636001 + ], + [ + 10.203369, + 54.160383601 + ], + [ + 10.203384, + 54.160636701 + ], + [ + 10.203392039, + 54.160718668 + ] + ] + } + }, + { + "identifier": "2026-016370--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "54.1607237100937,10.203194366330875,54.05168155569208,10.23130749041108", + "point": "54.1607237100937,10.203194366330875", + "startLcPosition": "21", + "impact": { + "lower": "Trappenkamp", + "upper": "Nettelsee", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kiel -> Bargteheide", + "title": "A21 | Nettelsee - Trappenkamp", + "coordinate": { + "lat": 54.1607237100937, + "long": 10.203194366330875 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 18:00 Uhr", + "14.04.26 von 07:00 bis 18:00 Uhr", + "15.04.26 von 07:00 bis 18:00 Uhr", + "16.04.26 von 07:00 bis 18:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "20.04.26 von 07:00 bis 18:00 Uhr", + "21.04.26 von 07:00 bis 18:00 Uhr", + "22.04.26 von 07:00 bis 18:00 Uhr", + "23.04.26 von 07:00 bis 18:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "27.04.26 von 07:00 bis 18:00 Uhr", + "28.04.26 von 07:00 bis 18:00 Uhr", + "29.04.26 von 07:00 bis 18:00 Uhr", + "30.04.26 von 07:00 bis 18:00 Uhr", + "01.05.26 von 07:00 bis 12:00 Uhr", + "04.05.26 von 07:00 bis 18:00 Uhr", + "05.05.26 von 07:00 bis 18:00 Uhr", + "06.05.26 von 07:00 bis 18:00 Uhr", + "07.05.26 von 07:00 bis 18:00 Uhr", + "08.05.26 von 07:00 bis 12:00 Uhr", + "11.05.26 von 07:00 bis 18:00 Uhr", + "12.05.26 von 07:00 bis 18:00 Uhr", + "13.05.26 von 07:00 bis 18:00 Uhr", + "", + "A21: Kiel -> Bargteheide, zwischen 0.4 km hinter AS Nettelsee und 1.3 km vor AS Trappenkamp", + "", + "L\u00e4nge: 12.52 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A21 von Depenauer Moor (Parkplatz) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.203194366, + 54.16072371 + ], + [ + 10.2031781, + 54.160352001 + ], + [ + 10.2031426, + 54.159576601 + ], + [ + 10.2031684, + 54.158743601 + ], + [ + 10.2032016, + 54.158169501 + ], + [ + 10.2032432, + 54.157838001 + ], + [ + 10.2032821, + 54.157575801 + ], + [ + 10.2033409, + 54.157182901 + ], + [ + 10.2034166, + 54.156788501 + ], + [ + 10.203467, + 54.156474301 + ], + [ + 10.2035754, + 54.156018601 + ], + [ + 10.2036932, + 54.155609401 + ], + [ + 10.2039213, + 54.154869101 + ], + [ + 10.2042756, + 54.154024101 + ], + [ + 10.2044327, + 54.153663201 + ], + [ + 10.2046111, + 54.153299801 + ], + [ + 10.2048287, + 54.152884701 + ], + [ + 10.2051316, + 54.152328001 + ], + [ + 10.2053573, + 54.151913801 + ], + [ + 10.2056342, + 54.151459701 + ], + [ + 10.2061004, + 54.150690401 + ], + [ + 10.2065823, + 54.149921701 + ], + [ + 10.207347, + 54.148713101 + ], + [ + 10.2078514, + 54.147867801 + ], + [ + 10.2080503, + 54.147534401 + ], + [ + 10.2083454, + 54.147039601 + ], + [ + 10.2085438, + 54.146690801 + ], + [ + 10.2088492, + 54.146184801 + ], + [ + 10.2094437, + 54.145232601 + ], + [ + 10.2095711, + 54.145028701 + ], + [ + 10.2097234, + 54.144788801 + ], + [ + 10.210239, + 54.143927301 + ], + [ + 10.2106293, + 54.143223601 + ], + [ + 10.2110827, + 54.142401001 + ], + [ + 10.2112086, + 54.142172601 + ], + [ + 10.2115189, + 54.141609601 + ], + [ + 10.2117418, + 54.141185901 + ], + [ + 10.2119905, + 54.140684401 + ], + [ + 10.2123909, + 54.139923101 + ], + [ + 10.2125751, + 54.139542801 + ], + [ + 10.212771, + 54.139138301 + ], + [ + 10.212881, + 54.138904201 + ], + [ + 10.2134021, + 54.137809201 + ], + [ + 10.2135362, + 54.137515001 + ], + [ + 10.2137458, + 54.137037801 + ], + [ + 10.2140543, + 54.136407701 + ], + [ + 10.2142099, + 54.136070201 + ], + [ + 10.2147132, + 54.134978801 + ], + [ + 10.2147664, + 54.134865801 + ], + [ + 10.2151094, + 54.134123201 + ], + [ + 10.2155003, + 54.133230101 + ], + [ + 10.2159039, + 54.132287801 + ], + [ + 10.2163788, + 54.131117301 + ], + [ + 10.2169663, + 54.129585801 + ], + [ + 10.2173105, + 54.128634301 + ], + [ + 10.2175501, + 54.127948901 + ], + [ + 10.2178036, + 54.127198201 + ], + [ + 10.2180238, + 54.126506201 + ], + [ + 10.218241, + 54.125752001 + ], + [ + 10.2183226, + 54.125433601 + ], + [ + 10.2184025, + 54.125056801 + ], + [ + 10.2184691, + 54.124612801 + ], + [ + 10.2184902, + 54.124410801 + ], + [ + 10.2185132, + 54.124132901 + ], + [ + 10.2185176, + 54.123777001 + ], + [ + 10.2185199, + 54.123510801 + ], + [ + 10.2184966, + 54.122945501 + ], + [ + 10.2184454, + 54.122510201 + ], + [ + 10.2183594, + 54.122026901 + ], + [ + 10.2183139, + 54.121817101 + ], + [ + 10.2182071, + 54.121411901 + ], + [ + 10.2181065, + 54.121064001 + ], + [ + 10.218008, + 54.120752601 + ], + [ + 10.2176798, + 54.119831601 + ], + [ + 10.2169986, + 54.117967201 + ], + [ + 10.2167123, + 54.117189201 + ], + [ + 10.216029, + 54.115308301 + ], + [ + 10.2152653, + 54.113209901 + ], + [ + 10.2145893, + 54.111348801 + ], + [ + 10.2140083, + 54.109762101 + ], + [ + 10.2138275, + 54.109228501 + ], + [ + 10.2135998, + 54.108483201 + ], + [ + 10.2134517, + 54.107941101 + ], + [ + 10.2132933, + 54.107302201 + ], + [ + 10.2131885, + 54.106817101 + ], + [ + 10.2130669, + 54.106170501 + ], + [ + 10.2129738, + 54.105579101 + ], + [ + 10.2128859, + 54.104932401 + ], + [ + 10.2128556, + 54.104602601 + ], + [ + 10.2128398, + 54.104287201 + ], + [ + 10.2127703, + 54.103137501 + ], + [ + 10.2127493, + 54.102756201 + ], + [ + 10.2127458, + 54.102434401 + ], + [ + 10.2127542, + 54.101782101 + ], + [ + 10.2128535, + 54.099885401 + ], + [ + 10.2128694, + 54.099653301 + ], + [ + 10.2132178, + 54.094282901 + ], + [ + 10.2135564, + 54.088808601 + ], + [ + 10.2135696, + 54.088591401 + ], + [ + 10.2140081, + 54.081595301 + ], + [ + 10.214069, + 54.080940101 + ], + [ + 10.2141446, + 54.080285901 + ], + [ + 10.2142831, + 54.079478601 + ], + [ + 10.2144278, + 54.078672401 + ], + [ + 10.2146503, + 54.077700701 + ], + [ + 10.2147792, + 54.077115501 + ], + [ + 10.2149475, + 54.076408501 + ], + [ + 10.2151858, + 54.075608301 + ], + [ + 10.2154668, + 54.074813401 + ], + [ + 10.2157683, + 54.074021801 + ], + [ + 10.215935, + 54.073598001 + ], + [ + 10.2160924, + 54.073108401 + ], + [ + 10.2166188, + 54.072006101 + ], + [ + 10.2169324, + 54.071326901 + ], + [ + 10.2172968, + 54.070598801 + ], + [ + 10.2175427, + 54.070135901 + ], + [ + 10.2177976, + 54.069665501 + ], + [ + 10.2179776, + 54.069355901 + ], + [ + 10.2187132, + 54.068131901 + ], + [ + 10.21941, + 54.067068701 + ], + [ + 10.2201563, + 54.066007301 + ], + [ + 10.220735, + 54.065271601 + ], + [ + 10.221585, + 54.064186101 + ], + [ + 10.22174, + 54.063997001 + ], + [ + 10.2234731, + 54.061775901 + ], + [ + 10.2257278, + 54.058903201 + ], + [ + 10.2281129, + 54.055864201 + ], + [ + 10.2299018, + 54.053480801 + ], + [ + 10.23130749, + 54.051681556 + ] + ] + } + } + ] + }, + "A23": { + "roadworks": [ + { + "identifier": "2026-015449--vi-bs.2026-04-10_09-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.63914151015016,9.840570381191627,53.637301393169025,9.845051421296832", + "point": "53.63914151015016,9.840570381191627", + "startLcPosition": "3", + "impact": { + "lower": "Halstenbek-Krupunder", + "upper": "Halstenbek/Rellingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heide -> Hamburg", + "title": "A23 | Halstenbek/Rellingen - Halstenbek-Krupunder", + "coordinate": { + "lat": 53.63914151015016, + "long": 9.840570381191627 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 13:00 Uhr", + "", + "A23: Heide -> Hamburg, zwischen 0.2 km hinter AS Halstenbek/Rellingen und 1.9 km vor AS Halstenbek-Krupunder", + "", + "L\u00e4nge: 0.36 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A23 von HalstenbekRellingen (AS) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.840570381, + 53.63914151 + ], + [ + 9.8414785, + 53.638765401 + ], + [ + 9.8425923, + 53.638305701 + ], + [ + 9.8437272, + 53.637832201 + ], + [ + 9.8448616, + 53.637375501 + ], + [ + 9.845051421, + 53.637301393 + ] + ] + } + }, + { + "identifier": "2026-015384--vi-bs.2026-04-09_13-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.648654460943185,9.824501832052263,53.64916570032593,9.823820969339852", + "point": "53.648654460943185,9.824501832052263", + "startLcPosition": "4", + "impact": { + "lower": "Pinneberg-Mitte", + "upper": "Pinneberg-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Heide", + "title": "A23 | Pinneberg-S\u00fcd - Pinneberg-Mitte", + "coordinate": { + "lat": 53.648654460943185, + "long": 9.824501832052263 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 13:00 bis 15:30 Uhr", + "", + "A23: Hamburg -> Heide, zwischen AS Pinneberg-S\u00fcd und 0.7 km vor AS Pinneberg-Mitte", + "", + "L\u00e4nge: 0.07 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A23 von Pinneberg-S\u00fcd (AS) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.824501832, + 53.648654461 + ], + [ + 9.8244121, + 53.648715101 + ], + [ + 9.8240123, + 53.649011601 + ], + [ + 9.823820969, + 53.6491657 + ] + ] + } + }, + { + "identifier": "2026-006798--vi-bs.2026-04-02_00-00-00-000.devi-zus.2026-03-16_00-00-00-000_003.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.81931888816678,9.6518347901319,53.825525281910096,9.639577170443708", + "point": "53.81931888816678,9.6518347901319", + "startLcPosition": "11", + "impact": { + "lower": "Steinburg", + "upper": "Horst/Elmshorn", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Heide", + "title": "A23 | Horst/Elmshorn - Steinburg", + "startTimestamp": "2026-04-02T00:00:00+02:00", + "coordinate": { + "lat": 53.81931888816678, + "long": 9.6518347901319 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 00:00 Uhr", + "Ende: 16.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.04.26)", + "", + "A23: Hamburg -> Heide, zwischen 2.1 km hinter AS Horst/Elmshorn und 0.6 km vor Steinburg", + "", + "L\u00e4nge: 1.06 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A23, AS Horst_Elmshorn bis AS Hohenfelde, Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.65183479, + 53.819318888 + ], + [ + 9.6488291, + 53.820844801 + ], + [ + 9.6473169, + 53.821612501 + ], + [ + 9.6461604, + 53.822199601 + ], + [ + 9.6458892, + 53.822337601 + ], + [ + 9.6454789, + 53.822546501 + ], + [ + 9.6453387, + 53.822617901 + ], + [ + 9.6425293, + 53.824048201 + ], + [ + 9.6421793, + 53.824223901 + ], + [ + 9.6414796, + 53.824574701 + ], + [ + 9.63957717, + 53.825525282 + ] + ] + } + }, + { + "identifier": "2026-006798--vi-bs.2026-04-02_00-00-00-000.devi-zus.2026-03-16_00-00-00-000_003.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.825449648374736,9.63946884037431,53.81924824329593,9.651732687651625", + "point": "53.825449648374736,9.63946884037431", + "startLcPosition": "12", + "impact": { + "lower": "Horst/Elmshorn", + "upper": "Steinburg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heide -> Hamburg", + "title": "A23 | Steinburg - Horst/Elmshorn", + "startTimestamp": "2026-04-02T00:00:00+02:00", + "coordinate": { + "lat": 53.825449648374736, + "long": 9.63946884037431 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 00:00 Uhr", + "Ende: 16.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.04.26)", + "", + "A23: Heide -> Hamburg, zwischen 0.6 km hinter Steinburg und 2.1 km vor AS Horst/Elmshorn", + "", + "L\u00e4nge: 1.06 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A23, AS Horst_Elmshorn bis AS Hohenfelde, Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.63946884, + 53.825449648 + ], + [ + 9.6406736, + 53.824843701 + ], + [ + 9.6420472, + 53.824155601 + ], + [ + 9.6424092, + 53.823972201 + ], + [ + 9.6452551, + 53.822519601 + ], + [ + 9.6453958, + 53.822447801 + ], + [ + 9.6458043, + 53.822239201 + ], + [ + 9.646099, + 53.822088801 + ], + [ + 9.648533, + 53.820861201 + ], + [ + 9.651732688, + 53.819248243 + ] + ] + } + }, + { + "identifier": "2026-011678--vi-bs.2026-03-16_09-00-00-000.devi-bs.2026-03-16_09-00-00-000_053.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "54.18993421512431,9.046212239499008,53.64513496769727,9.830444061132354", + "point": "54.18993421512431,9.046212239499008", + "startLcPosition": "29", + "impact": { + "lower": "Halstenbek/Rellingen", + "upper": "Anschluss B5", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heide -> Hamburg", + "title": "A23 | Anschluss B5 - Halstenbek/Rellingen", + "coordinate": { + "lat": 54.18993421512431, + "long": 9.046212239499008 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 17.04.26 von 07:00 bis 18:00 Uhr.", + "13.04.26 von 07:00 bis 18:00 Uhr", + "", + "A23: Heide -> Hamburg, zwischen 0.8 km hinter Anschluss B5 und 0.8 km vor AS Halstenbek/Rellingen", + "", + "L\u00e4nge: 88.2 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A23, AS HalstenbekRellingen (AS) nach Anschluss B5 beide RiFa Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.046212239, + 54.189934215 + ], + [ + 9.0462593, + 54.189814301 + ], + [ + 9.0465369, + 54.189167301 + ], + [ + 9.047281, + 54.187781301 + ], + [ + 9.0479007, + 54.186738601 + ], + [ + 9.0486306, + 54.185703001 + ], + [ + 9.0489608, + 54.185282701 + ], + [ + 9.0494634, + 54.184654801 + ], + [ + 9.0499792, + 54.184046601 + ], + [ + 9.0508749, + 54.183070101 + ], + [ + 9.0517942, + 54.182168701 + ], + [ + 9.0526013, + 54.181425901 + ], + [ + 9.0537528, + 54.180450001 + ], + [ + 9.0545277, + 54.179843801 + ], + [ + 9.054987, + 54.179500501 + ], + [ + 9.0556175, + 54.179052901 + ], + [ + 9.0562298, + 54.178629101 + ], + [ + 9.056825, + 54.178237701 + ], + [ + 9.0575719, + 54.177766801 + ], + [ + 9.0589341, + 54.176967501 + ], + [ + 9.060352, + 54.176198501 + ], + [ + 9.0610415, + 54.175844701 + ], + [ + 9.0618198, + 54.175464201 + ], + [ + 9.063131, + 54.174854301 + ], + [ + 9.0637726, + 54.174576501 + ], + [ + 9.0647495, + 54.174171201 + ], + [ + 9.0665801, + 54.173464801 + ], + [ + 9.0684691, + 54.172810701 + ], + [ + 9.0701861, + 54.172280901 + ], + [ + 9.0718473, + 54.171812001 + ], + [ + 9.0736913, + 54.171349901 + ], + [ + 9.0747644, + 54.171102201 + ], + [ + 9.0755473, + 54.170937301 + ], + [ + 9.0773151, + 54.170592501 + ], + [ + 9.0786937, + 54.170356001 + ], + [ + 9.0794951, + 54.170228401 + ], + [ + 9.0818421, + 54.169872301 + ], + [ + 9.0833703, + 54.169645601 + ], + [ + 9.0859684, + 54.169253401 + ], + [ + 9.0862107, + 54.169217001 + ], + [ + 9.087535, + 54.169025001 + ], + [ + 9.0892133, + 54.168773401 + ], + [ + 9.0903833, + 54.168598801 + ], + [ + 9.0908937, + 54.168522701 + ], + [ + 9.091795, + 54.168388201 + ], + [ + 9.0924048, + 54.168302101 + ], + [ + 9.0932218, + 54.168181201 + ], + [ + 9.0949912, + 54.167912701 + ], + [ + 9.0966159, + 54.167679301 + ], + [ + 9.0980174, + 54.167491801 + ], + [ + 9.0987591, + 54.167416501 + ], + [ + 9.099372, + 54.167347801 + ], + [ + 9.1002059, + 54.167264601 + ], + [ + 9.1019179, + 54.167124101 + ], + [ + 9.1036688, + 54.167019801 + ], + [ + 9.1039437, + 54.167004701 + ], + [ + 9.1052291, + 54.166956601 + ], + [ + 9.1069115, + 54.166925501 + ], + [ + 9.1073542, + 54.166926401 + ], + [ + 9.1076413, + 54.166925401 + ], + [ + 9.1086465, + 54.166932201 + ], + [ + 9.1097725, + 54.166954901 + ], + [ + 9.1108739, + 54.166993901 + ], + [ + 9.1129516, + 54.167092901 + ], + [ + 9.1180578, + 54.167362201 + ], + [ + 9.1197305, + 54.167439301 + ], + [ + 9.1213233, + 54.167504301 + ], + [ + 9.1219943, + 54.167527501 + ], + [ + 9.1229333, + 54.167553801 + ], + [ + 9.1247147, + 54.167583801 + ], + [ + 9.1265413, + 54.167589501 + ], + [ + 9.1283061, + 54.167572101 + ], + [ + 9.1301421, + 54.167528801 + ], + [ + 9.1320679, + 54.167451101 + ], + [ + 9.134006, + 54.167346201 + ], + [ + 9.1349638, + 54.167286301 + ], + [ + 9.1358583, + 54.167218401 + ], + [ + 9.1377531, + 54.167064301 + ], + [ + 9.138472, + 54.166997801 + ], + [ + 9.1397264, + 54.166875501 + ], + [ + 9.1407049, + 54.166766501 + ], + [ + 9.141778, + 54.166638601 + ], + [ + 9.1427399, + 54.166518301 + ], + [ + 9.1438201, + 54.166368201 + ], + [ + 9.1458553, + 54.166069301 + ], + [ + 9.1521872, + 54.165039401 + ], + [ + 9.1549573, + 54.164629001 + ], + [ + 9.1558889, + 54.164505601 + ], + [ + 9.156734, + 54.164404901 + ], + [ + 9.1577065, + 54.164302901 + ], + [ + 9.1587927, + 54.164202901 + ], + [ + 9.1597087, + 54.164129601 + ], + [ + 9.1607131, + 54.164060801 + ], + [ + 9.1616222, + 54.164015401 + ], + [ + 9.1626509, + 54.163977101 + ], + [ + 9.1634193, + 54.163950101 + ], + [ + 9.1647089, + 54.163926501 + ], + [ + 9.1664865, + 54.163913001 + ], + [ + 9.1681407, + 54.163906001 + ], + [ + 9.1736273, + 54.163878401 + ], + [ + 9.1818128, + 54.163844901 + ], + [ + 9.1918047, + 54.163798401 + ], + [ + 9.1936769, + 54.163777101 + ], + [ + 9.1946407, + 54.163753501 + ], + [ + 9.1954616, + 54.163727401 + ], + [ + 9.1961977, + 54.163692601 + ], + [ + 9.1973824, + 54.163627701 + ], + [ + 9.1983887, + 54.163560201 + ], + [ + 9.1997589, + 54.163442601 + ], + [ + 9.2011054, + 54.163309601 + ], + [ + 9.20192, + 54.163212901 + ], + [ + 9.2030798, + 54.163061301 + ], + [ + 9.2043242, + 54.162879201 + ], + [ + 9.2050859, + 54.162753001 + ], + [ + 9.2059978, + 54.162593101 + ], + [ + 9.2069825, + 54.162406301 + ], + [ + 9.2088631, + 54.162008301 + ], + [ + 9.2113603, + 54.161421401 + ], + [ + 9.2138412, + 54.160791501 + ], + [ + 9.219014, + 54.159483401 + ], + [ + 9.2209558, + 54.158972701 + ], + [ + 9.2233664, + 54.158254401 + ], + [ + 9.2255589, + 54.157518401 + ], + [ + 9.2274018, + 54.156815501 + ], + [ + 9.2283768, + 54.156413401 + ], + [ + 9.228928, + 54.156177001 + ], + [ + 9.2294716, + 54.155933901 + ], + [ + 9.2300143, + 54.155688501 + ], + [ + 9.2305387, + 54.155438801 + ], + [ + 9.231511, + 54.154956101 + ], + [ + 9.232207, + 54.154605501 + ], + [ + 9.2329433, + 54.154212101 + ], + [ + 9.2336071, + 54.153835901 + ], + [ + 9.2343785, + 54.153380701 + ], + [ + 9.2349469, + 54.153038001 + ], + [ + 9.2356268, + 54.152602101 + ], + [ + 9.2367539, + 54.151844501 + ], + [ + 9.2373957, + 54.151394101 + ], + [ + 9.2379671, + 54.150981801 + ], + [ + 9.2391423, + 54.150098201 + ], + [ + 9.2412616, + 54.148391401 + ], + [ + 9.2415296, + 54.148171001 + ], + [ + 9.2416832, + 54.148034901 + ], + [ + 9.2425699, + 54.147226301 + ], + [ + 9.2430606, + 54.146777201 + ], + [ + 9.2436212, + 54.146236501 + ], + [ + 9.2447008, + 54.145162201 + ], + [ + 9.2456707, + 54.144131301 + ], + [ + 9.2464563, + 54.143266701 + ], + [ + 9.2471849, + 54.142373101 + ], + [ + 9.2482048, + 54.141076901 + ], + [ + 9.2488692, + 54.140154701 + ], + [ + 9.2497339, + 54.138868801 + ], + [ + 9.2505603, + 54.137535801 + ], + [ + 9.2510147, + 54.136731801 + ], + [ + 9.2513804, + 54.136025401 + ], + [ + 9.2520728, + 54.134599901 + ], + [ + 9.2525573, + 54.133523001 + ], + [ + 9.2526677, + 54.133259801 + ], + [ + 9.253006, + 54.132467001 + ], + [ + 9.2546487, + 54.128415801 + ], + [ + 9.2578531, + 54.120485201 + ], + [ + 9.2584227, + 54.119109401 + ], + [ + 9.2589485, + 54.117771601 + ], + [ + 9.259809, + 54.115594101 + ], + [ + 9.2606769, + 54.113562301 + ], + [ + 9.2613163, + 54.111937001 + ], + [ + 9.2623561, + 54.109370501 + ], + [ + 9.2639004, + 54.105523601 + ], + [ + 9.2645927, + 54.103593201 + ], + [ + 9.2648978, + 54.102649501 + ], + [ + 9.2651988, + 54.101642501 + ], + [ + 9.265512, + 54.100410701 + ], + [ + 9.2657544, + 54.099236201 + ], + [ + 9.2659222, + 54.098106301 + ], + [ + 9.2660735, + 54.096805901 + ], + [ + 9.2661219, + 54.096188901 + ], + [ + 9.2661536, + 54.095571401 + ], + [ + 9.2661935, + 54.094249301 + ], + [ + 9.266194, + 54.091565201 + ], + [ + 9.266196, + 54.090276201 + ], + [ + 9.2662175, + 54.089742901 + ], + [ + 9.2662561, + 54.089099901 + ], + [ + 9.2663301, + 54.088467001 + ], + [ + 9.2664367, + 54.087866501 + ], + [ + 9.2665943, + 54.087230501 + ], + [ + 9.2667975, + 54.086588701 + ], + [ + 9.2669886, + 54.086095401 + ], + [ + 9.2672026, + 54.085606501 + ], + [ + 9.267509, + 54.084992501 + ], + [ + 9.2678422, + 54.084421301 + ], + [ + 9.2682573, + 54.083784901 + ], + [ + 9.268778, + 54.083086801 + ], + [ + 9.2690418, + 54.082755101 + ], + [ + 9.2693866, + 54.082363001 + ], + [ + 9.269823, + 54.081903801 + ], + [ + 9.2705278, + 54.081217101 + ], + [ + 9.2713099, + 54.080551801 + ], + [ + 9.2717535, + 54.080201401 + ], + [ + 9.2721369, + 54.079911901 + ], + [ + 9.2725891, + 54.079585301 + ], + [ + 9.2730177, + 54.079298701 + ], + [ + 9.2735707, + 54.078947201 + ], + [ + 9.2741517, + 54.078596601 + ], + [ + 9.2747388, + 54.078260401 + ], + [ + 9.2754959, + 54.077864901 + ], + [ + 9.2761792, + 54.077527101 + ], + [ + 9.2768283, + 54.077222601 + ], + [ + 9.2774921, + 54.076937001 + ], + [ + 9.2783041, + 54.076609801 + ], + [ + 9.2792477, + 54.076262601 + ], + [ + 9.2802831, + 54.075915801 + ], + [ + 9.2809448, + 54.075709501 + ], + [ + 9.2816582, + 54.075508801 + ], + [ + 9.2827564, + 54.075225101 + ], + [ + 9.2837393, + 54.074997601 + ], + [ + 9.2847563, + 54.074787401 + ], + [ + 9.28616, + 54.074532401 + ], + [ + 9.2869277, + 54.074413101 + ], + [ + 9.2885715, + 54.074157601 + ], + [ + 9.2889317, + 54.074102501 + ], + [ + 9.2918426, + 54.073657301 + ], + [ + 9.2961159, + 54.073002901 + ], + [ + 9.3035243, + 54.071869701 + ], + [ + 9.3055895, + 54.071541701 + ], + [ + 9.3111889, + 54.070579301 + ], + [ + 9.316918, + 54.069562201 + ], + [ + 9.3191142, + 54.069152601 + ], + [ + 9.3234988, + 54.068319601 + ], + [ + 9.3271281, + 54.067598601 + ], + [ + 9.3273914, + 54.067545301 + ], + [ + 9.3306964, + 54.066876101 + ], + [ + 9.3352293, + 54.065916701 + ], + [ + 9.3355715, + 54.065841001 + ], + [ + 9.3392126, + 54.065033501 + ], + [ + 9.3435354, + 54.064042701 + ], + [ + 9.3477161, + 54.063051801 + ], + [ + 9.3511701, + 54.062209901 + ], + [ + 9.3548366, + 54.061292701 + ], + [ + 9.358466, + 54.060352201 + ], + [ + 9.3609637, + 54.059690801 + ], + [ + 9.3619752, + 54.059422701 + ], + [ + 9.3642672, + 54.058801801 + ], + [ + 9.3667031, + 54.058130001 + ], + [ + 9.3682028, + 54.057707201 + ], + [ + 9.3703799, + 54.057083301 + ], + [ + 9.3721037, + 54.056589301 + ], + [ + 9.3739749, + 54.056042101 + ], + [ + 9.3771756, + 54.055079601 + ], + [ + 9.3791956, + 54.054473401 + ], + [ + 9.3804759, + 54.054075401 + ], + [ + 9.3834302, + 54.053156701 + ], + [ + 9.3866075, + 54.052148701 + ], + [ + 9.389705, + 54.051136801 + ], + [ + 9.3927927, + 54.050110201 + ], + [ + 9.3961868, + 54.048939801 + ], + [ + 9.397818, + 54.048382001 + ], + [ + 9.399436, + 54.047814001 + ], + [ + 9.4008176, + 54.047319401 + ], + [ + 9.4010964, + 54.047219501 + ], + [ + 9.4035759, + 54.046331801 + ], + [ + 9.4062248, + 54.045359501 + ], + [ + 9.4108308, + 54.043623501 + ], + [ + 9.4125528, + 54.042965601 + ], + [ + 9.4156513, + 54.041759601 + ], + [ + 9.4188025, + 54.040500901 + ], + [ + 9.421675, + 54.039332901 + ], + [ + 9.4239119, + 54.038404101 + ], + [ + 9.4263562, + 54.037367101 + ], + [ + 9.4286321, + 54.036394401 + ], + [ + 9.4370246, + 54.032624001 + ], + [ + 9.4420546, + 54.030332201 + ], + [ + 9.4440257, + 54.029397601 + ], + [ + 9.446755, + 54.028084901 + ], + [ + 9.4492709, + 54.026838801 + ], + [ + 9.4523122, + 54.025255801 + ], + [ + 9.4532344, + 54.024763701 + ], + [ + 9.4563858, + 54.023031601 + ], + [ + 9.4590105, + 54.021457301 + ], + [ + 9.4608773, + 54.020301501 + ], + [ + 9.4631848, + 54.018802101 + ], + [ + 9.4653506, + 54.017267001 + ], + [ + 9.4668583, + 54.016157601 + ], + [ + 9.4684071, + 54.014966901 + ], + [ + 9.4713827, + 54.012574501 + ], + [ + 9.4734942, + 54.010681301 + ], + [ + 9.4753336, + 54.008943201 + ], + [ + 9.4755225, + 54.008758901 + ], + [ + 9.4776055, + 54.006612801 + ], + [ + 9.4787335, + 54.005388501 + ], + [ + 9.4790776, + 54.005038301 + ], + [ + 9.4801752, + 54.003776001 + ], + [ + 9.4813025, + 54.002384601 + ], + [ + 9.483363, + 53.999641401 + ], + [ + 9.4843581, + 53.998220101 + ], + [ + 9.4854388, + 53.996542501 + ], + [ + 9.4855188, + 53.996403201 + ], + [ + 9.4863085, + 53.995075801 + ], + [ + 9.4872611, + 53.993396901 + ], + [ + 9.4873908, + 53.993151501 + ], + [ + 9.4885201, + 53.990925501 + ], + [ + 9.4894518, + 53.988775501 + ], + [ + 9.4898301, + 53.987798501 + ], + [ + 9.4900986, + 53.987068001 + ], + [ + 9.4908611, + 53.984678001 + ], + [ + 9.4914856, + 53.981545601 + ], + [ + 9.4916961, + 53.979746101 + ], + [ + 9.4917566, + 53.978866001 + ], + [ + 9.4917639, + 53.977815901 + ], + [ + 9.4918145, + 53.972488701 + ], + [ + 9.4918179, + 53.972273001 + ], + [ + 9.4918388, + 53.969940401 + ], + [ + 9.4918406, + 53.969742901 + ], + [ + 9.4918604, + 53.967659901 + ], + [ + 9.4918626, + 53.967436601 + ], + [ + 9.4918524, + 53.966810401 + ], + [ + 9.4918251, + 53.964754301 + ], + [ + 9.4917277, + 53.963512101 + ], + [ + 9.4915333, + 53.961858401 + ], + [ + 9.4913577, + 53.960928501 + ], + [ + 9.4911912, + 53.960132501 + ], + [ + 9.4908085, + 53.958650901 + ], + [ + 9.490532, + 53.957723601 + ], + [ + 9.4904147, + 53.957372901 + ], + [ + 9.4903265, + 53.957109201 + ], + [ + 9.4900319, + 53.956312201 + ], + [ + 9.4894884, + 53.954883401 + ], + [ + 9.4888122, + 53.953107101 + ], + [ + 9.4885246, + 53.952314401 + ], + [ + 9.4883249, + 53.951763901 + ], + [ + 9.4880286, + 53.950904601 + ], + [ + 9.4878025, + 53.950139801 + ], + [ + 9.4876263, + 53.949442801 + ], + [ + 9.4874084, + 53.948485701 + ], + [ + 9.4872807, + 53.947756301 + ], + [ + 9.4871962, + 53.947091501 + ], + [ + 9.4871453, + 53.946625501 + ], + [ + 9.4869961, + 53.945257901 + ], + [ + 9.4868527, + 53.944383501 + ], + [ + 9.486678, + 53.943458401 + ], + [ + 9.4864577, + 53.942521201 + ], + [ + 9.4861798, + 53.941507001 + ], + [ + 9.4858235, + 53.940462501 + ], + [ + 9.4854172, + 53.939447601 + ], + [ + 9.4850943, + 53.938742201 + ], + [ + 9.4847219, + 53.937995601 + ], + [ + 9.4846457, + 53.937842601 + ], + [ + 9.4842329, + 53.937084201 + ], + [ + 9.4837524, + 53.936269701 + ], + [ + 9.4831395, + 53.935279701 + ], + [ + 9.482944, + 53.934975101 + ], + [ + 9.4822847, + 53.933971301 + ], + [ + 9.482049, + 53.933623801 + ], + [ + 9.4817811, + 53.933187401 + ], + [ + 9.4816184, + 53.932930601 + ], + [ + 9.4813399, + 53.932457701 + ], + [ + 9.481141, + 53.932098501 + ], + [ + 9.4808048, + 53.931473601 + ], + [ + 9.4805236, + 53.930842101 + ], + [ + 9.480106, + 53.929745801 + ], + [ + 9.4798753, + 53.928899701 + ], + [ + 9.4797553, + 53.928214301 + ], + [ + 9.4795514, + 53.926801401 + ], + [ + 9.4793948, + 53.925826001 + ], + [ + 9.4792033, + 53.924297001 + ], + [ + 9.4791328, + 53.923521501 + ], + [ + 9.4791397, + 53.922722701 + ], + [ + 9.4791931, + 53.922181101 + ], + [ + 9.479248, + 53.921738701 + ], + [ + 9.479363, + 53.921078501 + ], + [ + 9.4795176, + 53.920394601 + ], + [ + 9.4795491, + 53.920274301 + ], + [ + 9.4798847, + 53.919071101 + ], + [ + 9.4801199, + 53.918377801 + ], + [ + 9.4804418, + 53.917605101 + ], + [ + 9.4807159, + 53.916978701 + ], + [ + 9.4810262, + 53.916373601 + ], + [ + 9.4815257, + 53.915483301 + ], + [ + 9.4817418, + 53.915110501 + ], + [ + 9.4820742, + 53.914574301 + ], + [ + 9.4825426, + 53.913846601 + ], + [ + 9.482987, + 53.913173101 + ], + [ + 9.4838156, + 53.912056101 + ], + [ + 9.4848072, + 53.910846201 + ], + [ + 9.4858882, + 53.909696001 + ], + [ + 9.4860914, + 53.909492201 + ], + [ + 9.4864984, + 53.909123701 + ], + [ + 9.486974, + 53.908692901 + ], + [ + 9.4878946, + 53.907933401 + ], + [ + 9.4886749, + 53.907329301 + ], + [ + 9.4895605, + 53.906689901 + ], + [ + 9.4908187, + 53.905851001 + ], + [ + 9.4915655, + 53.905393401 + ], + [ + 9.4923122, + 53.904954801 + ], + [ + 9.4927385, + 53.904708901 + ], + [ + 9.4931809, + 53.904460701 + ], + [ + 9.4937681, + 53.904134101 + ], + [ + 9.4943976, + 53.903805001 + ], + [ + 9.4952404, + 53.903376501 + ], + [ + 9.4957676, + 53.903120701 + ], + [ + 9.4961651, + 53.902933401 + ], + [ + 9.4964765, + 53.902783501 + ], + [ + 9.4974877, + 53.902336401 + ], + [ + 9.4982666, + 53.901995201 + ], + [ + 9.4992708, + 53.901591701 + ], + [ + 9.5007904, + 53.901002801 + ], + [ + 9.5029454, + 53.900281701 + ], + [ + 9.5048402, + 53.899679101 + ], + [ + 9.5067219, + 53.899080601 + ], + [ + 9.5078019, + 53.898727901 + ], + [ + 9.5087075, + 53.898418101 + ], + [ + 9.509692, + 53.898045001 + ], + [ + 9.5106773, + 53.897668601 + ], + [ + 9.5113042, + 53.897402701 + ], + [ + 9.5125488, + 53.896813301 + ], + [ + 9.5136685, + 53.896261501 + ], + [ + 9.5148361, + 53.895686101 + ], + [ + 9.5160016, + 53.895148301 + ], + [ + 9.5169079, + 53.894749001 + ], + [ + 9.5181006, + 53.894264401 + ], + [ + 9.5191737, + 53.893874001 + ], + [ + 9.5200159, + 53.893579101 + ], + [ + 9.5225636, + 53.892738601 + ], + [ + 9.5226922, + 53.892695401 + ], + [ + 9.5228043, + 53.892657801 + ], + [ + 9.5230818, + 53.892564801 + ], + [ + 9.5265694, + 53.891381801 + ], + [ + 9.5298382, + 53.890259801 + ], + [ + 9.5301736, + 53.890136901 + ], + [ + 9.5304774, + 53.890025601 + ], + [ + 9.5320901, + 53.889419401 + ], + [ + 9.5336798, + 53.888783101 + ], + [ + 9.5369002, + 53.887399701 + ], + [ + 9.5402036, + 53.885797301 + ], + [ + 9.5432649, + 53.884152201 + ], + [ + 9.5472124, + 53.881713601 + ], + [ + 9.5492641, + 53.880349901 + ], + [ + 9.5513059, + 53.878881801 + ], + [ + 9.5541516, + 53.876659101 + ], + [ + 9.5549841, + 53.876001101 + ], + [ + 9.5570399, + 53.874293601 + ], + [ + 9.5582921, + 53.873202101 + ], + [ + 9.5593238, + 53.872310601 + ], + [ + 9.5603441, + 53.871421501 + ], + [ + 9.5611552, + 53.870685301 + ], + [ + 9.5619352, + 53.869977301 + ], + [ + 9.5631207, + 53.868901301 + ], + [ + 9.5667309, + 53.865624201 + ], + [ + 9.5697662, + 53.862857601 + ], + [ + 9.5721618, + 53.860780801 + ], + [ + 9.5746862, + 53.858640901 + ], + [ + 9.5780312, + 53.855956901 + ], + [ + 9.5800604, + 53.854444001 + ], + [ + 9.5820961, + 53.852991301 + ], + [ + 9.5847199, + 53.851270401 + ], + [ + 9.5868951, + 53.849910401 + ], + [ + 9.5890204, + 53.848636701 + ], + [ + 9.5909375, + 53.847580601 + ], + [ + 9.592952, + 53.846512001 + ], + [ + 9.5937753, + 53.846095901 + ], + [ + 9.5939513, + 53.846006901 + ], + [ + 9.5946734, + 53.845641901 + ], + [ + 9.5949023, + 53.845534601 + ], + [ + 9.596914, + 53.844572401 + ], + [ + 9.599308, + 53.843485201 + ], + [ + 9.5994169, + 53.843438201 + ], + [ + 9.6010067, + 53.842739601 + ], + [ + 9.602881, + 53.841951001 + ], + [ + 9.6050297, + 53.841044401 + ], + [ + 9.6066853, + 53.840359001 + ], + [ + 9.6132732, + 53.837630101 + ], + [ + 9.6176094, + 53.835758301 + ], + [ + 9.6198373, + 53.834796601 + ], + [ + 9.6225101, + 53.833592101 + ], + [ + 9.6240658, + 53.832879201 + ], + [ + 9.6266661, + 53.831698201 + ], + [ + 9.62906, + 53.830553901 + ], + [ + 9.6313154, + 53.829468001 + ], + [ + 9.6335601, + 53.828380501 + ], + [ + 9.6358088, + 53.827281201 + ], + [ + 9.6381292, + 53.826123401 + ], + [ + 9.6406736, + 53.824843701 + ], + [ + 9.6420472, + 53.824155601 + ], + [ + 9.6424092, + 53.823972201 + ], + [ + 9.6452551, + 53.822519601 + ], + [ + 9.6453958, + 53.822447801 + ], + [ + 9.6458043, + 53.822239201 + ], + [ + 9.646099, + 53.822088801 + ], + [ + 9.648533, + 53.820861201 + ], + [ + 9.6522612, + 53.818981801 + ], + [ + 9.6667421, + 53.811646801 + ], + [ + 9.6691693, + 53.810376101 + ], + [ + 9.6713015, + 53.809266301 + ], + [ + 9.674724, + 53.807456701 + ], + [ + 9.6752778, + 53.807151501 + ], + [ + 9.6764522, + 53.806517801 + ], + [ + 9.6773539, + 53.806010701 + ], + [ + 9.6789415, + 53.805123101 + ], + [ + 9.6803202, + 53.804330101 + ], + [ + 9.6823004, + 53.803157601 + ], + [ + 9.6834315, + 53.802467701 + ], + [ + 9.6858038, + 53.800979801 + ], + [ + 9.6882055, + 53.799352701 + ], + [ + 9.6895808, + 53.798382301 + ], + [ + 9.6924718, + 53.796185501 + ], + [ + 9.694305, + 53.794660601 + ], + [ + 9.6951418, + 53.793917501 + ], + [ + 9.695975, + 53.793148601 + ], + [ + 9.6975991, + 53.791556801 + ], + [ + 9.6983984, + 53.790699901 + ], + [ + 9.6991699, + 53.789837601 + ], + [ + 9.699826, + 53.789059301 + ], + [ + 9.7006601, + 53.788003301 + ], + [ + 9.7011866, + 53.787289001 + ], + [ + 9.7018605, + 53.786330301 + ], + [ + 9.7026019, + 53.785177001 + ], + [ + 9.7029837, + 53.784531501 + ], + [ + 9.7034993, + 53.783609801 + ], + [ + 9.7039069, + 53.782828701 + ], + [ + 9.7047695, + 53.780969701 + ], + [ + 9.7054054, + 53.779193901 + ], + [ + 9.7059547, + 53.777378201 + ], + [ + 9.7063725, + 53.775576801 + ], + [ + 9.7066919, + 53.773795801 + ], + [ + 9.7071009, + 53.770594001 + ], + [ + 9.7074551, + 53.766837301 + ], + [ + 9.7075022, + 53.766257601 + ], + [ + 9.7076851, + 53.764100601 + ], + [ + 9.7078546, + 53.762107701 + ], + [ + 9.7079484, + 53.761112001 + ], + [ + 9.7080638, + 53.760114001 + ], + [ + 9.7081858, + 53.759098201 + ], + [ + 9.7083452, + 53.758084501 + ], + [ + 9.7087411, + 53.755899901 + ], + [ + 9.7090488, + 53.754470701 + ], + [ + 9.7095596, + 53.752457401 + ], + [ + 9.7100176, + 53.750861901 + ], + [ + 9.7105899, + 53.749059201 + ], + [ + 9.7115555, + 53.746398201 + ], + [ + 9.7117965, + 53.745798701 + ], + [ + 9.7120591, + 53.745167201 + ], + [ + 9.7125077, + 53.744218601 + ], + [ + 9.713034, + 53.743202101 + ], + [ + 9.7135539, + 53.742222801 + ], + [ + 9.7140213, + 53.741435501 + ], + [ + 9.7144152, + 53.740785301 + ], + [ + 9.7150456, + 53.739876301 + ], + [ + 9.7156659, + 53.739025301 + ], + [ + 9.7160293, + 53.738554001 + ], + [ + 9.7164128, + 53.738090501 + ], + [ + 9.7167383, + 53.737702501 + ], + [ + 9.7177701, + 53.736567801 + ], + [ + 9.7188682, + 53.735421801 + ], + [ + 9.7195287, + 53.734776801 + ], + [ + 9.7202874, + 53.734079301 + ], + [ + 9.721236, + 53.733245101 + ], + [ + 9.7218066, + 53.732776101 + ], + [ + 9.7225114, + 53.732212301 + ], + [ + 9.7232794, + 53.731615701 + ], + [ + 9.7238465, + 53.731200401 + ], + [ + 9.7244931, + 53.730738501 + ], + [ + 9.7256508, + 53.729946301 + ], + [ + 9.7276496, + 53.728682001 + ], + [ + 9.7287864, + 53.728012801 + ], + [ + 9.7302331, + 53.727209501 + ], + [ + 9.7310408, + 53.726780301 + ], + [ + 9.7319354, + 53.726332701 + ], + [ + 9.732709, + 53.725952201 + ], + [ + 9.7341357, + 53.725287901 + ], + [ + 9.7349124, + 53.724939201 + ], + [ + 9.7358298, + 53.724546401 + ], + [ + 9.7367571, + 53.724164201 + ], + [ + 9.7380429, + 53.723637401 + ], + [ + 9.7397015, + 53.722999701 + ], + [ + 9.7422223, + 53.722054501 + ], + [ + 9.7448051, + 53.721108901 + ], + [ + 9.7468938, + 53.720348301 + ], + [ + 9.7486964, + 53.719669101 + ], + [ + 9.7500947, + 53.719122401 + ], + [ + 9.7511713, + 53.718696401 + ], + [ + 9.7519009, + 53.718402301 + ], + [ + 9.7525679, + 53.718124901 + ], + [ + 9.7535125, + 53.717714101 + ], + [ + 9.7538806, + 53.717549201 + ], + [ + 9.7545915, + 53.717230701 + ], + [ + 9.755375, + 53.716864601 + ], + [ + 9.756504, + 53.716316601 + ], + [ + 9.7569876, + 53.716071601 + ], + [ + 9.7577249, + 53.715700101 + ], + [ + 9.7583455, + 53.715370401 + ], + [ + 9.7591637, + 53.714922001 + ], + [ + 9.7596871, + 53.714618801 + ], + [ + 9.7612413, + 53.713701901 + ], + [ + 9.7629435, + 53.712604001 + ], + [ + 9.7633345, + 53.712343801 + ], + [ + 9.7636786, + 53.712108201 + ], + [ + 9.7639948, + 53.711885001 + ], + [ + 9.7643552, + 53.711628401 + ], + [ + 9.76474, + 53.711339201 + ], + [ + 9.7652532, + 53.710966001 + ], + [ + 9.7660497, + 53.710350601 + ], + [ + 9.7664066, + 53.710065101 + ], + [ + 9.7668383, + 53.709713101 + ], + [ + 9.7671549, + 53.709448401 + ], + [ + 9.7679214, + 53.708783701 + ], + [ + 9.7683746, + 53.708378501 + ], + [ + 9.7686688, + 53.708106501 + ], + [ + 9.7690015, + 53.707792001 + ], + [ + 9.7696647, + 53.707146701 + ], + [ + 9.7702519, + 53.706550401 + ], + [ + 9.7705401, + 53.706243701 + ], + [ + 9.7716505, + 53.705029001 + ], + [ + 9.7719204, + 53.704724101 + ], + [ + 9.7727914, + 53.703685701 + ], + [ + 9.7731695, + 53.703230101 + ], + [ + 9.773874, + 53.702345801 + ], + [ + 9.7742971, + 53.701802101 + ], + [ + 9.774688, + 53.701299901 + ], + [ + 9.7754374, + 53.700326401 + ], + [ + 9.7761474, + 53.699392901 + ], + [ + 9.7771797, + 53.698071901 + ], + [ + 9.7776514, + 53.697493101 + ], + [ + 9.7781318, + 53.696915901 + ], + [ + 9.7785828, + 53.696384801 + ], + [ + 9.7790788, + 53.695809801 + ], + [ + 9.7798838, + 53.694910901 + ], + [ + 9.7810493, + 53.693655801 + ], + [ + 9.7815673, + 53.693119101 + ], + [ + 9.7822622, + 53.692409601 + ], + [ + 9.783498, + 53.691196701 + ], + [ + 9.7844908, + 53.690258701 + ], + [ + 9.788742, + 53.686356801 + ], + [ + 9.7917379, + 53.683617601 + ], + [ + 9.7935828, + 53.681935101 + ], + [ + 9.7950584, + 53.680580701 + ], + [ + 9.7960896, + 53.679640401 + ], + [ + 9.7975285, + 53.678359101 + ], + [ + 9.7979247, + 53.678022401 + ], + [ + 9.7987509, + 53.677320401 + ], + [ + 9.7993881, + 53.676779001 + ], + [ + 9.8009555, + 53.675488101 + ], + [ + 9.8019907, + 53.674666401 + ], + [ + 9.8038871, + 53.673190701 + ], + [ + 9.8064819, + 53.671281801 + ], + [ + 9.8095621, + 53.669055301 + ], + [ + 9.8126769, + 53.666740001 + ], + [ + 9.8131275, + 53.666387101 + ], + [ + 9.814308, + 53.665449601 + ], + [ + 9.8156006, + 53.664399601 + ], + [ + 9.8170435, + 53.663188001 + ], + [ + 9.8175211, + 53.662762901 + ], + [ + 9.8181152, + 53.662221301 + ], + [ + 9.8184767, + 53.661852401 + ], + [ + 9.8188537, + 53.661438501 + ], + [ + 9.8192576, + 53.660919401 + ], + [ + 9.8197117, + 53.660251701 + ], + [ + 9.8198288, + 53.660045501 + ], + [ + 9.8199927, + 53.659738601 + ], + [ + 9.8201206, + 53.659473001 + ], + [ + 9.8202692, + 53.659135601 + ], + [ + 9.8204341, + 53.658668501 + ], + [ + 9.8205139, + 53.658418201 + ], + [ + 9.820634, + 53.657906001 + ], + [ + 9.8207522, + 53.657224701 + ], + [ + 9.8208222, + 53.656746501 + ], + [ + 9.8210048, + 53.655498101 + ], + [ + 9.8211244, + 53.654680701 + ], + [ + 9.8213012, + 53.653471801 + ], + [ + 9.8213528, + 53.653119101 + ], + [ + 9.8214764, + 53.652480801 + ], + [ + 9.821592, + 53.652062001 + ], + [ + 9.8216999, + 53.651736501 + ], + [ + 9.8217839, + 53.651524401 + ], + [ + 9.8218667, + 53.651338001 + ], + [ + 9.8220224, + 53.651043601 + ], + [ + 9.8221801, + 53.650780001 + ], + [ + 9.8223173, + 53.650569501 + ], + [ + 9.8224274, + 53.650421301 + ], + [ + 9.8226998, + 53.650079101 + ], + [ + 9.8228047, + 53.649957801 + ], + [ + 9.8229474, + 53.649807701 + ], + [ + 9.8233156, + 53.649436901 + ], + [ + 9.8236239, + 53.649167101 + ], + [ + 9.8239619, + 53.648897801 + ], + [ + 9.8242895, + 53.648656701 + ], + [ + 9.8245545, + 53.648481401 + ], + [ + 9.8248762, + 53.648276701 + ], + [ + 9.8249131, + 53.648247901 + ], + [ + 9.8252729, + 53.648040101 + ], + [ + 9.8257422, + 53.647776101 + ], + [ + 9.8262956, + 53.647479301 + ], + [ + 9.8275119, + 53.646854001 + ], + [ + 9.8275847, + 53.646817201 + ], + [ + 9.8281468, + 53.646521401 + ], + [ + 9.8286529, + 53.646244401 + ], + [ + 9.8290097, + 53.646040901 + ], + [ + 9.8293711, + 53.645825901 + ], + [ + 9.8296809, + 53.645633701 + ], + [ + 9.8301992, + 53.645301301 + ], + [ + 9.830444061, + 53.645134968 + ] + ] + } + }, + { + "identifier": "2026-011678--vi-bs.2026-03-16_09-00-00-000.devi-bs.2026-03-16_09-00-00-000_053.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.64519215736743,9.830554857548492,54.18996041712444,9.046392685556068", + "point": "53.64519215736743,9.830554857548492", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Heide", + "title": "A23, AS HalstenbekRellingen (AS) nach Anschluss B5 beide RiFa Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 53.64519215736743, + "long": 9.830554857548492 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 17.04.26 von 07:00 bis 18:00 Uhr.", + "13.04.26 von 07:00 bis 18:00 Uhr", + "", + "Von A23: Hamburg -> Heide, zwischen 0.8 km hinter AS Halstenbek/Rellingen und Nord-Ostsee-Kanal nach A23: Hamburg -> Heide, zwischen Nord-Ostsee-Kanal und 0.8 km vor Anschluss B5", + "", + "L\u00e4nge: 88.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A23, AS HalstenbekRellingen (AS) nach Anschluss B5 beide RiFa Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.830554858, + 53.645192157 + ], + [ + 9.8303053, + 53.645364101 + ], + [ + 9.829789, + 53.645699701 + ], + [ + 9.8294782, + 53.645889201 + ], + [ + 9.8290618, + 53.646138501 + ], + [ + 9.8288013, + 53.646288301 + ], + [ + 9.8282448, + 53.646593901 + ], + [ + 9.8277021, + 53.646880801 + ], + [ + 9.8276268, + 53.646916901 + ], + [ + 9.8269794, + 53.647248001 + ], + [ + 9.8263436, + 53.647577601 + ], + [ + 9.825839, + 53.647850901 + ], + [ + 9.8252596, + 53.648175801 + ], + [ + 9.8250144, + 53.648318901 + ], + [ + 9.8246678, + 53.648542301 + ], + [ + 9.8244121, + 53.648715101 + ], + [ + 9.8240123, + 53.649011601 + ], + [ + 9.8237497, + 53.649223101 + ], + [ + 9.8234432, + 53.649488501 + ], + [ + 9.8232236, + 53.649707301 + ], + [ + 9.8230954, + 53.649835101 + ], + [ + 9.8230078, + 53.649936201 + ], + [ + 9.8228916, + 53.650060401 + ], + [ + 9.8227094, + 53.650274101 + ], + [ + 9.822593, + 53.650423901 + ], + [ + 9.8224614, + 53.650604401 + ], + [ + 9.8223449, + 53.650779101 + ], + [ + 9.8221641, + 53.651075501 + ], + [ + 9.8220176, + 53.651357601 + ], + [ + 9.8219325, + 53.651546101 + ], + [ + 9.8218471, + 53.651756101 + ], + [ + 9.8217359, + 53.652074001 + ], + [ + 9.8216194, + 53.652493501 + ], + [ + 9.8215006, + 53.653132601 + ], + [ + 9.8214497, + 53.653477101 + ], + [ + 9.8212726, + 53.654675301 + ], + [ + 9.8211523, + 53.655501401 + ], + [ + 9.8209697, + 53.656754901 + ], + [ + 9.8209009, + 53.657227401 + ], + [ + 9.8207828, + 53.657916801 + ], + [ + 9.8206587, + 53.658428301 + ], + [ + 9.8205799, + 53.658684801 + ], + [ + 9.8204093, + 53.659160701 + ], + [ + 9.8202644, + 53.659502201 + ], + [ + 9.8201318, + 53.659776501 + ], + [ + 9.8199714, + 53.660078201 + ], + [ + 9.8198528, + 53.660287401 + ], + [ + 9.8194024, + 53.660949801 + ], + [ + 9.8189299, + 53.661547301 + ], + [ + 9.8186119, + 53.661897501 + ], + [ + 9.8182529, + 53.662262901 + ], + [ + 9.8176625, + 53.662809401 + ], + [ + 9.8171631, + 53.663243401 + ], + [ + 9.815729, + 53.664447001 + ], + [ + 9.8144353, + 53.665500301 + ], + [ + 9.8131482, + 53.666521101 + ], + [ + 9.81272, + 53.666848401 + ], + [ + 9.8096879, + 53.669117601 + ], + [ + 9.8065575, + 53.671371301 + ], + [ + 9.8039788, + 53.673275001 + ], + [ + 9.8022081, + 53.674649101 + ], + [ + 9.8010716, + 53.675552701 + ], + [ + 9.7995247, + 53.676816201 + ], + [ + 9.798855, + 53.677386501 + ], + [ + 9.7980559, + 53.678066901 + ], + [ + 9.7975591, + 53.678503001 + ], + [ + 9.797331, + 53.678704301 + ], + [ + 9.7967416, + 53.679221601 + ], + [ + 9.7951676, + 53.680650601 + ], + [ + 9.7935431, + 53.682138001 + ], + [ + 9.7918853, + 53.683676101 + ], + [ + 9.7886209, + 53.686675501 + ], + [ + 9.7858537, + 53.689215101 + ], + [ + 9.7844816, + 53.690473401 + ], + [ + 9.7836569, + 53.691257501 + ], + [ + 9.782431, + 53.692455301 + ], + [ + 9.781689, + 53.693212601 + ], + [ + 9.7812425, + 53.693679601 + ], + [ + 9.7801143, + 53.694895901 + ], + [ + 9.7792796, + 53.695827201 + ], + [ + 9.7787793, + 53.696406001 + ], + [ + 9.7782879, + 53.696985001 + ], + [ + 9.7778197, + 53.697546701 + ], + [ + 9.7773635, + 53.698106901 + ], + [ + 9.7765513, + 53.699140101 + ], + [ + 9.7753035, + 53.700770601 + ], + [ + 9.7741925, + 53.702214401 + ], + [ + 9.7732045, + 53.703455201 + ], + [ + 9.772107, + 53.704762401 + ], + [ + 9.7714309, + 53.705529401 + ], + [ + 9.7707196, + 53.706292701 + ], + [ + 9.7706877, + 53.706329201 + ], + [ + 9.7704303, + 53.706604401 + ], + [ + 9.7698391, + 53.707210901 + ], + [ + 9.7688278, + 53.708177601 + ], + [ + 9.7680626, + 53.708857901 + ], + [ + 9.7674049, + 53.709448501 + ], + [ + 9.7667021, + 53.710024301 + ], + [ + 9.7655743, + 53.710914501 + ], + [ + 9.7649166, + 53.711404001 + ], + [ + 9.7640227, + 53.712052001 + ], + [ + 9.7630953, + 53.712684401 + ], + [ + 9.7622497, + 53.713238601 + ], + [ + 9.7613852, + 53.713777101 + ], + [ + 9.7602797, + 53.714449701 + ], + [ + 9.7591196, + 53.715108301 + ], + [ + 9.7576082, + 53.715918001 + ], + [ + 9.7566119, + 53.716427701 + ], + [ + 9.7562887, + 53.716581601 + ], + [ + 9.7547259, + 53.717323801 + ], + [ + 9.7536233, + 53.717812501 + ], + [ + 9.7526757, + 53.718222001 + ], + [ + 9.7502159, + 53.719222101 + ], + [ + 9.7490468, + 53.719668801 + ], + [ + 9.7469806, + 53.720442201 + ], + [ + 9.7437822, + 53.721624601 + ], + [ + 9.7397951, + 53.723107701 + ], + [ + 9.7374016, + 53.724061601 + ], + [ + 9.7359559, + 53.724644901 + ], + [ + 9.7350282, + 53.725041501 + ], + [ + 9.7342304, + 53.725402001 + ], + [ + 9.732878, + 53.726028801 + ], + [ + 9.7320986, + 53.726409301 + ], + [ + 9.7313755, + 53.726779601 + ], + [ + 9.7303863, + 53.727296101 + ], + [ + 9.7289752, + 53.728059101 + ], + [ + 9.7277796, + 53.728760901 + ], + [ + 9.725989, + 53.729907601 + ], + [ + 9.7246809, + 53.730779401 + ], + [ + 9.723975, + 53.731285201 + ], + [ + 9.7234681, + 53.731660101 + ], + [ + 9.7226834, + 53.732257901 + ], + [ + 9.7220055, + 53.732820901 + ], + [ + 9.7212821, + 53.733427401 + ], + [ + 9.7204316, + 53.734149401 + ], + [ + 9.7196993, + 53.734824701 + ], + [ + 9.7189943, + 53.735504801 + ], + [ + 9.717928, + 53.736621101 + ], + [ + 9.717438, + 53.737164201 + ], + [ + 9.716918, + 53.737761101 + ], + [ + 9.7165993, + 53.738142901 + ], + [ + 9.7158662, + 53.739073801 + ], + [ + 9.7152132, + 53.739927801 + ], + [ + 9.7146065, + 53.740812901 + ], + [ + 9.7142865, + 53.741344501 + ], + [ + 9.713719, + 53.742265701 + ], + [ + 9.7131828, + 53.743240101 + ], + [ + 9.7129253, + 53.743742901 + ], + [ + 9.712691, + 53.744243201 + ], + [ + 9.7122558, + 53.745189501 + ], + [ + 9.7121295, + 53.745466001 + ], + [ + 9.7119932, + 53.745816801 + ], + [ + 9.711747, + 53.746427701 + ], + [ + 9.7114266, + 53.747234301 + ], + [ + 9.7112337, + 53.747737401 + ], + [ + 9.7107602, + 53.749092101 + ], + [ + 9.7105161, + 53.749849001 + ], + [ + 9.709731, + 53.752469701 + ], + [ + 9.7092453, + 53.754457301 + ], + [ + 9.7089173, + 53.755904501 + ], + [ + 9.7085362, + 53.758089801 + ], + [ + 9.7083722, + 53.759105401 + ], + [ + 9.7082292, + 53.760335501 + ], + [ + 9.7081295, + 53.761119101 + ], + [ + 9.7080464, + 53.762118001 + ], + [ + 9.7078714, + 53.764116401 + ], + [ + 9.7076732, + 53.766368001 + ], + [ + 9.707633, + 53.766811101 + ], + [ + 9.7075516, + 53.767704301 + ], + [ + 9.7072866, + 53.770611001 + ], + [ + 9.7070921, + 53.772301901 + ], + [ + 9.7068762, + 53.773820101 + ], + [ + 9.7065593, + 53.775609301 + ], + [ + 9.7062348, + 53.777026801 + ], + [ + 9.7061523, + 53.777387201 + ], + [ + 9.7058938, + 53.778289201 + ], + [ + 9.7056111, + 53.779187401 + ], + [ + 9.7049521, + 53.780984501 + ], + [ + 9.704905, + 53.781085801 + ], + [ + 9.7040893, + 53.782864701 + ], + [ + 9.7036815, + 53.783646501 + ], + [ + 9.7031648, + 53.784575401 + ], + [ + 9.7026669, + 53.785405501 + ], + [ + 9.70205, + 53.786357801 + ], + [ + 9.7013835, + 53.787313501 + ], + [ + 9.7008217, + 53.788068801 + ], + [ + 9.7000086, + 53.789101901 + ], + [ + 9.6996711, + 53.789507901 + ], + [ + 9.6993099, + 53.789926301 + ], + [ + 9.6985512, + 53.790779101 + ], + [ + 9.6977469, + 53.791623601 + ], + [ + 9.6960994, + 53.793239201 + ], + [ + 9.6959056, + 53.793417601 + ], + [ + 9.6952774, + 53.793995701 + ], + [ + 9.6944503, + 53.794730201 + ], + [ + 9.69263, + 53.796251601 + ], + [ + 9.6915054, + 53.797104301 + ], + [ + 9.6897147, + 53.798462001 + ], + [ + 9.6883544, + 53.799431401 + ], + [ + 9.6866806, + 53.800556401 + ], + [ + 9.6859089, + 53.801075101 + ], + [ + 9.6835699, + 53.802555701 + ], + [ + 9.6824421, + 53.803241601 + ], + [ + 9.6815029, + 53.803797301 + ], + [ + 9.6804394, + 53.804426601 + ], + [ + 9.6790733, + 53.805212901 + ], + [ + 9.6774909, + 53.806100701 + ], + [ + 9.6765797, + 53.806606501 + ], + [ + 9.6759131, + 53.806968301 + ], + [ + 9.6754133, + 53.807239501 + ], + [ + 9.6748487, + 53.807540901 + ], + [ + 9.671409, + 53.809360401 + ], + [ + 9.6699517, + 53.810119901 + ], + [ + 9.6692829, + 53.810468401 + ], + [ + 9.6668331, + 53.811731401 + ], + [ + 9.6646299, + 53.812845901 + ], + [ + 9.659145, + 53.815620401 + ], + [ + 9.6531202, + 53.818667701 + ], + [ + 9.6523642, + 53.819050101 + ], + [ + 9.6488291, + 53.820844801 + ], + [ + 9.6473169, + 53.821612501 + ], + [ + 9.6461604, + 53.822199601 + ], + [ + 9.6458892, + 53.822337601 + ], + [ + 9.6454789, + 53.822546501 + ], + [ + 9.6453387, + 53.822617901 + ], + [ + 9.6425293, + 53.824048201 + ], + [ + 9.6421793, + 53.824223901 + ], + [ + 9.6414796, + 53.824574701 + ], + [ + 9.6383008, + 53.826163001 + ], + [ + 9.635901, + 53.827366801 + ], + [ + 9.6356643, + 53.827483001 + ], + [ + 9.6336706, + 53.828462101 + ], + [ + 9.6314376, + 53.829541601 + ], + [ + 9.630007, + 53.830228801 + ], + [ + 9.6291938, + 53.830619401 + ], + [ + 9.6270127, + 53.831659601 + ], + [ + 9.6241673, + 53.832965901 + ], + [ + 9.6238589, + 53.833106601 + ], + [ + 9.6225921, + 53.833684301 + ], + [ + 9.6199218, + 53.834885801 + ], + [ + 9.6187878, + 53.835385301 + ], + [ + 9.6176666, + 53.835867001 + ], + [ + 9.6173686, + 53.835995001 + ], + [ + 9.6133641, + 53.837730701 + ], + [ + 9.6118485, + 53.838359101 + ], + [ + 9.6068092, + 53.840448401 + ], + [ + 9.6054571, + 53.841006501 + ], + [ + 9.6046606, + 53.841335301 + ], + [ + 9.6029932, + 53.842034101 + ], + [ + 9.601311, + 53.842752001 + ], + [ + 9.5995168, + 53.843527001 + ], + [ + 9.5991476, + 53.843692801 + ], + [ + 9.5983087, + 53.844069601 + ], + [ + 9.5970236, + 53.844665601 + ], + [ + 9.5950995, + 53.845582301 + ], + [ + 9.5948981, + 53.845680401 + ], + [ + 9.5940767, + 53.846095501 + ], + [ + 9.5939025, + 53.846183501 + ], + [ + 9.5934047, + 53.846435101 + ], + [ + 9.5930748, + 53.846601801 + ], + [ + 9.5910654, + 53.847668401 + ], + [ + 9.5891814, + 53.848712001 + ], + [ + 9.5878466, + 53.849501101 + ], + [ + 9.5869974, + 53.850002801 + ], + [ + 9.5848291, + 53.851354701 + ], + [ + 9.5826771, + 53.852777801 + ], + [ + 9.5822589, + 53.853068801 + ], + [ + 9.5801959, + 53.854528601 + ], + [ + 9.5781854, + 53.856035001 + ], + [ + 9.5773839, + 53.856656401 + ], + [ + 9.5748472, + 53.858709101 + ], + [ + 9.573438, + 53.859885101 + ], + [ + 9.5723041, + 53.860849901 + ], + [ + 9.5699612, + 53.862917401 + ], + [ + 9.5691843, + 53.863620101 + ], + [ + 9.5669203, + 53.865668001 + ], + [ + 9.5649856, + 53.867424901 + ], + [ + 9.5631099, + 53.869128101 + ], + [ + 9.5621074, + 53.870041301 + ], + [ + 9.5613323, + 53.870747401 + ], + [ + 9.5607806, + 53.871240101 + ], + [ + 9.5605139, + 53.871478301 + ], + [ + 9.5595062, + 53.872381801 + ], + [ + 9.5584632, + 53.873273501 + ], + [ + 9.5572034, + 53.874367901 + ], + [ + 9.5566579, + 53.874848401 + ], + [ + 9.5555065, + 53.875789401 + ], + [ + 9.554337, + 53.876717401 + ], + [ + 9.551944, + 53.878579401 + ], + [ + 9.5514414, + 53.878970401 + ], + [ + 9.5494236, + 53.880428201 + ], + [ + 9.5475727, + 53.881661301 + ], + [ + 9.5473373, + 53.881818101 + ], + [ + 9.545373, + 53.883042101 + ], + [ + 9.5433722, + 53.884243201 + ], + [ + 9.5416684, + 53.885169901 + ], + [ + 9.5403286, + 53.885898701 + ], + [ + 9.5370147, + 53.887499901 + ], + [ + 9.5360849, + 53.887913101 + ], + [ + 9.5337996, + 53.888889401 + ], + [ + 9.5322081, + 53.889523701 + ], + [ + 9.5305784, + 53.890131301 + ], + [ + 9.5299574, + 53.890360201 + ], + [ + 9.5295257, + 53.890517901 + ], + [ + 9.5266981, + 53.891494801 + ], + [ + 9.523022, + 53.892710301 + ], + [ + 9.5228922, + 53.892751401 + ], + [ + 9.52278, + 53.892788901 + ], + [ + 9.520095, + 53.893681101 + ], + [ + 9.5192685, + 53.893969401 + ], + [ + 9.5181989, + 53.894356101 + ], + [ + 9.5177304, + 53.894547501 + ], + [ + 9.5170166, + 53.894839301 + ], + [ + 9.5161088, + 53.895247301 + ], + [ + 9.5155292, + 53.895525301 + ], + [ + 9.5142337, + 53.896150301 + ], + [ + 9.5133541, + 53.896590801 + ], + [ + 9.5124337, + 53.897031701 + ], + [ + 9.5115298, + 53.897435701 + ], + [ + 9.5106387, + 53.897815201 + ], + [ + 9.5103047, + 53.897952301 + ], + [ + 9.5102751, + 53.897964501 + ], + [ + 9.5098502, + 53.898138901 + ], + [ + 9.5091225, + 53.898408201 + ], + [ + 9.5080048, + 53.898788601 + ], + [ + 9.5036294, + 53.900177501 + ], + [ + 9.5026298, + 53.900505001 + ], + [ + 9.5009865, + 53.901066801 + ], + [ + 9.4990275, + 53.901823701 + ], + [ + 9.4982985, + 53.902124001 + ], + [ + 9.4975505, + 53.902445301 + ], + [ + 9.4966156, + 53.902869901 + ], + [ + 9.4963138, + 53.903015501 + ], + [ + 9.4958934, + 53.903210701 + ], + [ + 9.4953662, + 53.903466501 + ], + [ + 9.4948349, + 53.903727901 + ], + [ + 9.4939186, + 53.904207801 + ], + [ + 9.4932129, + 53.904599501 + ], + [ + 9.4924689, + 53.905028201 + ], + [ + 9.4916588, + 53.905510701 + ], + [ + 9.4909762, + 53.905947101 + ], + [ + 9.4897212, + 53.906792201 + ], + [ + 9.4884982, + 53.907700101 + ], + [ + 9.4872021, + 53.908732301 + ], + [ + 9.4866139, + 53.909262201 + ], + [ + 9.4862887, + 53.909555101 + ], + [ + 9.4860539, + 53.909785201 + ], + [ + 9.4850074, + 53.910867701 + ], + [ + 9.4839817, + 53.912089201 + ], + [ + 9.4831631, + 53.913199101 + ], + [ + 9.4827284, + 53.913855401 + ], + [ + 9.4822498, + 53.914616501 + ], + [ + 9.4817157, + 53.915528601 + ], + [ + 9.4812402, + 53.916411801 + ], + [ + 9.4809307, + 53.917025201 + ], + [ + 9.4806756, + 53.917614301 + ], + [ + 9.4803566, + 53.918422401 + ], + [ + 9.4801235, + 53.919093801 + ], + [ + 9.4798096, + 53.919970101 + ], + [ + 9.479705, + 53.920397301 + ], + [ + 9.4795652, + 53.921080501 + ], + [ + 9.4794658, + 53.921748401 + ], + [ + 9.4794234, + 53.922213601 + ], + [ + 9.4793812, + 53.922731801 + ], + [ + 9.4793769, + 53.923505601 + ], + [ + 9.4794525, + 53.924279201 + ], + [ + 9.4796694, + 53.925837801 + ], + [ + 9.4798226, + 53.926730801 + ], + [ + 9.48004, + 53.928210001 + ], + [ + 9.4801558, + 53.928883701 + ], + [ + 9.4803728, + 53.929709801 + ], + [ + 9.4807493, + 53.930803401 + ], + [ + 9.4810115, + 53.931425701 + ], + [ + 9.4813321, + 53.932066001 + ], + [ + 9.4816924, + 53.932705901 + ], + [ + 9.481953, + 53.933165501 + ], + [ + 9.4822269, + 53.933597401 + ], + [ + 9.4826217, + 53.934208501 + ], + [ + 9.483149, + 53.934976901 + ], + [ + 9.483341, + 53.935283901 + ], + [ + 9.4839682, + 53.936231101 + ], + [ + 9.4844406, + 53.937046001 + ], + [ + 9.4848548, + 53.937790801 + ], + [ + 9.4849334, + 53.937940301 + ], + [ + 9.4853049, + 53.938704201 + ], + [ + 9.4854615, + 53.939051401 + ], + [ + 9.4856296, + 53.939424201 + ], + [ + 9.4860365, + 53.940435101 + ], + [ + 9.4864059, + 53.941485001 + ], + [ + 9.4867, + 53.942505001 + ], + [ + 9.4869137, + 53.943463401 + ], + [ + 9.487085, + 53.944380901 + ], + [ + 9.4872104, + 53.945253101 + ], + [ + 9.487416, + 53.947085201 + ], + [ + 9.4874941, + 53.947753801 + ], + [ + 9.4875507, + 53.948067401 + ], + [ + 9.4876251, + 53.948479501 + ], + [ + 9.487811, + 53.949435701 + ], + [ + 9.4879877, + 53.950123301 + ], + [ + 9.4882171, + 53.950895101 + ], + [ + 9.4885033, + 53.951740301 + ], + [ + 9.4889941, + 53.953086001 + ], + [ + 9.4896641, + 53.954868701 + ], + [ + 9.4902014, + 53.956297201 + ], + [ + 9.4904953, + 53.957094201 + ], + [ + 9.4905369, + 53.957219401 + ], + [ + 9.4906995, + 53.957708401 + ], + [ + 9.4909033, + 53.958326701 + ], + [ + 9.4911642, + 53.959227701 + ], + [ + 9.4914071, + 53.960257301 + ], + [ + 9.4915333, + 53.960918401 + ], + [ + 9.4916702, + 53.961672601 + ], + [ + 9.491702, + 53.961847601 + ], + [ + 9.4917886, + 53.962476201 + ], + [ + 9.4919118, + 53.963508801 + ], + [ + 9.4920105, + 53.964756101 + ], + [ + 9.4920413, + 53.965788101 + ], + [ + 9.492035, + 53.966136801 + ], + [ + 9.4920272, + 53.967456101 + ], + [ + 9.4920251, + 53.967669701 + ], + [ + 9.4920048, + 53.969745701 + ], + [ + 9.4920028, + 53.969944001 + ], + [ + 9.4919992, + 53.970254001 + ], + [ + 9.491976, + 53.972233201 + ], + [ + 9.4919751, + 53.972457901 + ], + [ + 9.4919495, + 53.975231401 + ], + [ + 9.4919256, + 53.977813201 + ], + [ + 9.4919021, + 53.978859401 + ], + [ + 9.4918592, + 53.979741301 + ], + [ + 9.4916285, + 53.981553901 + ], + [ + 9.49103, + 53.984671301 + ], + [ + 9.4902674, + 53.987093501 + ], + [ + 9.4899902, + 53.987825801 + ], + [ + 9.4897475, + 53.988478301 + ], + [ + 9.4896239, + 53.988810501 + ], + [ + 9.4886995, + 53.990932201 + ], + [ + 9.4878763, + 53.992571501 + ], + [ + 9.4875669, + 53.993187501 + ], + [ + 9.4874452, + 53.993428401 + ], + [ + 9.486453, + 53.995154301 + ], + [ + 9.4856856, + 53.996431801 + ], + [ + 9.4856009, + 53.996573001 + ], + [ + 9.4853133, + 53.997048101 + ], + [ + 9.4845157, + 53.998261401 + ], + [ + 9.4835339, + 53.999677801 + ], + [ + 9.4825552, + 54.001017301 + ], + [ + 9.4814463, + 54.002447401 + ], + [ + 9.4803287, + 54.003834201 + ], + [ + 9.4795341, + 54.004765201 + ], + [ + 9.4793856, + 54.004948401 + ], + [ + 9.4790255, + 54.005338401 + ], + [ + 9.4778009, + 54.006664501 + ], + [ + 9.4762168, + 54.008305401 + ], + [ + 9.4758068, + 54.008710301 + ], + [ + 9.4755063, + 54.008996001 + ], + [ + 9.4736578, + 54.010721101 + ], + [ + 9.4714639, + 54.012655701 + ], + [ + 9.471075, + 54.012979001 + ], + [ + 9.4685212, + 54.015054401 + ], + [ + 9.4669766, + 54.016244501 + ], + [ + 9.4666583, + 54.016476901 + ], + [ + 9.4654759, + 54.017340201 + ], + [ + 9.4633178, + 54.018887401 + ], + [ + 9.4616005, + 54.020003901 + ], + [ + 9.4610251, + 54.020378001 + ], + [ + 9.4591466, + 54.021529201 + ], + [ + 9.4565013, + 54.023107401 + ], + [ + 9.4562343, + 54.023254501 + ], + [ + 9.453358, + 54.024863001 + ], + [ + 9.4524393, + 54.025340601 + ], + [ + 9.4506731, + 54.026253401 + ], + [ + 9.4493882, + 54.026917501 + ], + [ + 9.4450831, + 54.029036901 + ], + [ + 9.4441463, + 54.029498101 + ], + [ + 9.4421541, + 54.030430601 + ], + [ + 9.4394111, + 54.031708201 + ], + [ + 9.4388883, + 54.031944801 + ], + [ + 9.437172, + 54.032737401 + ], + [ + 9.4329093, + 54.034665401 + ], + [ + 9.4287463, + 54.036482401 + ], + [ + 9.4266334, + 54.037397401 + ], + [ + 9.4204357, + 54.039980701 + ], + [ + 9.4157721, + 54.041845001 + ], + [ + 9.4141015, + 54.042495101 + ], + [ + 9.4110157, + 54.043695701 + ], + [ + 9.4075279, + 54.045000901 + ], + [ + 9.403672, + 54.046425001 + ], + [ + 9.4012365, + 54.047308001 + ], + [ + 9.4012083, + 54.047317701 + ], + [ + 9.4009256, + 54.047414801 + ], + [ + 9.3995423, + 54.047906401 + ], + [ + 9.3963042, + 54.049043001 + ], + [ + 9.394602, + 54.049627201 + ], + [ + 9.3906565, + 54.050950301 + ], + [ + 9.3866861, + 54.052251601 + ], + [ + 9.3812901, + 54.053959301 + ], + [ + 9.3772746, + 54.055185301 + ], + [ + 9.3746249, + 54.055976601 + ], + [ + 9.3690979, + 54.057580401 + ], + [ + 9.3676434, + 54.057988501 + ], + [ + 9.3667841, + 54.058229501 + ], + [ + 9.3631239, + 54.059236101 + ], + [ + 9.3610343, + 54.059798801 + ], + [ + 9.3606977, + 54.059885401 + ], + [ + 9.3572174, + 54.060804701 + ], + [ + 9.3537137, + 54.061694501 + ], + [ + 9.3501726, + 54.062575701 + ], + [ + 9.3466206, + 54.063439301 + ], + [ + 9.3430766, + 54.064266801 + ], + [ + 9.3424256, + 54.064413601 + ], + [ + 9.3393218, + 54.065113701 + ], + [ + 9.3356368, + 54.065937501 + ], + [ + 9.3352922, + 54.066009601 + ], + [ + 9.3324915, + 54.066607101 + ], + [ + 9.3271698, + 54.067706601 + ], + [ + 9.326961, + 54.067791501 + ], + [ + 9.3256656, + 54.068052401 + ], + [ + 9.3241218, + 54.068359601 + ], + [ + 9.3236037, + 54.068480701 + ], + [ + 9.3231573, + 54.068584001 + ], + [ + 9.3212464, + 54.068956801 + ], + [ + 9.3209276, + 54.069013101 + ], + [ + 9.3206074, + 54.069050801 + ], + [ + 9.3192314, + 54.069248101 + ], + [ + 9.3176749, + 54.069541801 + ], + [ + 9.3169703, + 54.069663601 + ], + [ + 9.3112412, + 54.070680701 + ], + [ + 9.3102372, + 54.070850601 + ], + [ + 9.3055955, + 54.071636201 + ], + [ + 9.3035732, + 54.071961701 + ], + [ + 9.3027034, + 54.072096201 + ], + [ + 9.3024088, + 54.072141701 + ], + [ + 9.2985422, + 54.072739601 + ], + [ + 9.296147, + 54.073101901 + ], + [ + 9.2958419, + 54.073148401 + ], + [ + 9.2918822, + 54.073752501 + ], + [ + 9.2890317, + 54.074187701 + ], + [ + 9.2886954, + 54.074239101 + ], + [ + 9.2884719, + 54.074273901 + ], + [ + 9.2862145, + 54.074625801 + ], + [ + 9.2848152, + 54.074879401 + ], + [ + 9.2838113, + 54.075082401 + ], + [ + 9.2828279, + 54.075310001 + ], + [ + 9.2817281, + 54.075592901 + ], + [ + 9.2812867, + 54.075718001 + ], + [ + 9.2810146, + 54.075795201 + ], + [ + 9.2803687, + 54.075993001 + ], + [ + 9.2793322, + 54.076345201 + ], + [ + 9.2783789, + 54.076694101 + ], + [ + 9.2775914, + 54.077013301 + ], + [ + 9.2769275, + 54.077299701 + ], + [ + 9.2762758, + 54.077603401 + ], + [ + 9.2756219, + 54.077925201 + ], + [ + 9.2750259, + 54.078250101 + ], + [ + 9.2742717, + 54.078661001 + ], + [ + 9.2736941, + 54.079011001 + ], + [ + 9.2731306, + 54.079367801 + ], + [ + 9.272695, + 54.079666401 + ], + [ + 9.2722521, + 54.079982701 + ], + [ + 9.2718568, + 54.080281601 + ], + [ + 9.2714236, + 54.080623801 + ], + [ + 9.2706404, + 54.081292601 + ], + [ + 9.2702341, + 54.081691001 + ], + [ + 9.2699371, + 54.081982201 + ], + [ + 9.269402, + 54.082552201 + ], + [ + 9.2689201, + 54.083126401 + ], + [ + 9.2684504, + 54.083755001 + ], + [ + 9.2679921, + 54.084462901 + ], + [ + 9.2676364, + 54.085077401 + ], + [ + 9.2674026, + 54.085541701 + ], + [ + 9.2672553, + 54.085869501 + ], + [ + 9.2671549, + 54.086093001 + ], + [ + 9.2669433, + 54.086648201 + ], + [ + 9.2667418, + 54.087286301 + ], + [ + 9.2665896, + 54.087926801 + ], + [ + 9.266479, + 54.088567701 + ], + [ + 9.2664219, + 54.089100301 + ], + [ + 9.2663771, + 54.089740501 + ], + [ + 9.266365, + 54.090220301 + ], + [ + 9.2663562, + 54.091548201 + ], + [ + 9.2663545, + 54.094266501 + ], + [ + 9.2663442, + 54.094717001 + ], + [ + 9.2663251, + 54.095550901 + ], + [ + 9.2662882, + 54.096197501 + ], + [ + 9.2662437, + 54.096796101 + ], + [ + 9.2660937, + 54.098088901 + ], + [ + 9.2659123, + 54.099259701 + ], + [ + 9.2656569, + 54.100499601 + ], + [ + 9.2653583, + 54.101654601 + ], + [ + 9.2650534, + 54.102709301 + ], + [ + 9.2649853, + 54.102915101 + ], + [ + 9.2647373, + 54.103665301 + ], + [ + 9.2640524, + 54.105555501 + ], + [ + 9.263059, + 54.108032301 + ], + [ + 9.2625214, + 54.109372501 + ], + [ + 9.261204, + 54.112676101 + ], + [ + 9.2608411, + 54.113586001 + ], + [ + 9.2600225, + 54.115602101 + ], + [ + 9.2595356, + 54.116798501 + ], + [ + 9.2586934, + 54.118867801 + ], + [ + 9.258006, + 54.120556701 + ], + [ + 9.2577723, + 54.121142401 + ], + [ + 9.2573115, + 54.122297601 + ], + [ + 9.2559761, + 54.125599701 + ], + [ + 9.2548233, + 54.128450101 + ], + [ + 9.2542362, + 54.129881101 + ], + [ + 9.2531721, + 54.132475001 + ], + [ + 9.2528384, + 54.133278801 + ], + [ + 9.2527118, + 54.133548801 + ], + [ + 9.2525089, + 54.134010601 + ], + [ + 9.2524084, + 54.134226501 + ], + [ + 9.2521653, + 54.134748801 + ], + [ + 9.251841, + 54.135451001 + ], + [ + 9.2513288, + 54.136484101 + ], + [ + 9.2508208, + 54.137404401 + ], + [ + 9.2500274, + 54.138684301 + ], + [ + 9.2499046, + 54.138882301 + ], + [ + 9.2495075, + 54.139492101 + ], + [ + 9.2490863, + 54.140091301 + ], + [ + 9.2486505, + 54.140721001 + ], + [ + 9.2482279, + 54.141291501 + ], + [ + 9.2474353, + 54.142304901 + ], + [ + 9.2470176, + 54.142809301 + ], + [ + 9.2466212, + 54.143287901 + ], + [ + 9.2458258, + 54.144182901 + ], + [ + 9.2448832, + 54.145177901 + ], + [ + 9.2438226, + 54.146240701 + ], + [ + 9.2433784, + 54.146677401 + ], + [ + 9.2426653, + 54.147328401 + ], + [ + 9.2418205, + 54.148098401 + ], + [ + 9.2416852, + 54.148215501 + ], + [ + 9.2403871, + 54.149300901 + ], + [ + 9.2392582, + 54.150195901 + ], + [ + 9.2375299, + 54.151478201 + ], + [ + 9.2363356, + 54.152302801 + ], + [ + 9.2357663, + 54.152678201 + ], + [ + 9.2350824, + 54.153114101 + ], + [ + 9.2345175, + 54.153457901 + ], + [ + 9.2337479, + 54.153906601 + ], + [ + 9.2329111, + 54.154375401 + ], + [ + 9.2323586, + 54.154673901 + ], + [ + 9.2311461, + 54.155300601 + ], + [ + 9.2296355, + 54.156004801 + ], + [ + 9.2281554, + 54.156649501 + ], + [ + 9.2274353, + 54.156938801 + ], + [ + 9.2265455, + 54.157288201 + ], + [ + 9.225632, + 54.157625401 + ], + [ + 9.2245473, + 54.158001301 + ], + [ + 9.2234404, + 54.158363801 + ], + [ + 9.22225, + 54.158728401 + ], + [ + 9.221574, + 54.158921501 + ], + [ + 9.2210176, + 54.159080501 + ], + [ + 9.2190761, + 54.159593401 + ], + [ + 9.2168078, + 54.160171701 + ], + [ + 9.2145659, + 54.160736101 + ], + [ + 9.2126597, + 54.161218501 + ], + [ + 9.2101747, + 54.161829401 + ], + [ + 9.2089188, + 54.162124201 + ], + [ + 9.2070268, + 54.162523201 + ], + [ + 9.2060114, + 54.162710001 + ], + [ + 9.2051328, + 54.162857501 + ], + [ + 9.2043376, + 54.162992501 + ], + [ + 9.2030955, + 54.163177001 + ], + [ + 9.2019345, + 54.163326201 + ], + [ + 9.2011244, + 54.163416201 + ], + [ + 9.2000326, + 54.163535201 + ], + [ + 9.1984098, + 54.163674201 + ], + [ + 9.1973909, + 54.163747101 + ], + [ + 9.1954856, + 54.163842101 + ], + [ + 9.1936526, + 54.163893201 + ], + [ + 9.192419, + 54.163908001 + ], + [ + 9.1846128, + 54.163952501 + ], + [ + 9.1770735, + 54.163983301 + ], + [ + 9.169461, + 54.164016901 + ], + [ + 9.1654701, + 54.164035301 + ], + [ + 9.1634429, + 54.164067001 + ], + [ + 9.1624006, + 54.164105101 + ], + [ + 9.1616974, + 54.164130801 + ], + [ + 9.160709, + 54.164182301 + ], + [ + 9.159773, + 54.164241901 + ], + [ + 9.1587742, + 54.164320401 + ], + [ + 9.1578525, + 54.164404601 + ], + [ + 9.1568473, + 54.164510601 + ], + [ + 9.1559394, + 54.164613401 + ], + [ + 9.1549745, + 54.164740901 + ], + [ + 9.1540472, + 54.164873101 + ], + [ + 9.1522937, + 54.165137801 + ], + [ + 9.1458982, + 54.166177701 + ], + [ + 9.1439184, + 54.166456801 + ], + [ + 9.142777, + 54.166614701 + ], + [ + 9.1418468, + 54.166730001 + ], + [ + 9.1407068, + 54.166877201 + ], + [ + 9.139561, + 54.167002401 + ], + [ + 9.1377733, + 54.167178901 + ], + [ + 9.1349336, + 54.167402801 + ], + [ + 9.1329901, + 54.167521001 + ], + [ + 9.1310669, + 54.167603901 + ], + [ + 9.1296802, + 54.167650501 + ], + [ + 9.1282935, + 54.167680301 + ], + [ + 9.1265449, + 54.167699501 + ], + [ + 9.1241665, + 54.167685601 + ], + [ + 9.1220125, + 54.167640601 + ], + [ + 9.1197057, + 54.167547201 + ], + [ + 9.1165012, + 54.167389901 + ], + [ + 9.1129663, + 54.167202801 + ], + [ + 9.1108722, + 54.167103101 + ], + [ + 9.1097641, + 54.167067101 + ], + [ + 9.108936, + 54.167050201 + ], + [ + 9.1076231, + 54.167036401 + ], + [ + 9.1073827, + 54.167036301 + ], + [ + 9.1052481, + 54.167068301 + ], + [ + 9.1039754, + 54.167113901 + ], + [ + 9.1036967, + 54.167127901 + ], + [ + 9.1028447, + 54.167176301 + ], + [ + 9.101987, + 54.167229601 + ], + [ + 9.1012981, + 54.167284001 + ], + [ + 9.1002501, + 54.167370801 + ], + [ + 9.099405, + 54.167456001 + ], + [ + 9.0987994, + 54.167520801 + ], + [ + 9.098082, + 54.167604701 + ], + [ + 9.0966557, + 54.167788101 + ], + [ + 9.0950494, + 54.168019401 + ], + [ + 9.0938105, + 54.168197201 + ], + [ + 9.0932715, + 54.168274601 + ], + [ + 9.0924578, + 54.168396301 + ], + [ + 9.0920742, + 54.168455701 + ], + [ + 9.0909306, + 54.168630601 + ], + [ + 9.0904164, + 54.168707601 + ], + [ + 9.0890293, + 54.168911801 + ], + [ + 9.0861298, + 54.169345701 + ], + [ + 9.0859961, + 54.169365201 + ], + [ + 9.0830457, + 54.169807401 + ], + [ + 9.0796156, + 54.170324501 + ], + [ + 9.0789767, + 54.170426401 + ], + [ + 9.0787269, + 54.170466301 + ], + [ + 9.0774019, + 54.170684101 + ], + [ + 9.0755747, + 54.171051401 + ], + [ + 9.0748018, + 54.171219801 + ], + [ + 9.0738329, + 54.171432601 + ], + [ + 9.0727852, + 54.171691301 + ], + [ + 9.0717873, + 54.171951101 + ], + [ + 9.070252, + 54.172381901 + ], + [ + 9.0693936, + 54.172644301 + ], + [ + 9.0685453, + 54.172913001 + ], + [ + 9.0667151, + 54.173546001 + ], + [ + 9.0651297, + 54.174153301 + ], + [ + 9.0639035, + 54.174656501 + ], + [ + 9.0632509, + 54.174941501 + ], + [ + 9.0619447, + 54.175541201 + ], + [ + 9.0611595, + 54.175925101 + ], + [ + 9.0603636, + 54.176335601 + ], + [ + 9.0591495, + 54.177004501 + ], + [ + 9.0576841, + 54.177857601 + ], + [ + 9.0569493, + 54.178328001 + ], + [ + 9.0563546, + 54.178719901 + ], + [ + 9.0557036, + 54.179164901 + ], + [ + 9.0551043, + 54.179598101 + ], + [ + 9.0541858, + 54.180296301 + ], + [ + 9.0534599, + 54.180884501 + ], + [ + 9.0527602, + 54.181479501 + ], + [ + 9.0518996, + 54.182247401 + ], + [ + 9.0510401, + 54.183113701 + ], + [ + 9.0501466, + 54.184080501 + ], + [ + 9.0496239, + 54.184697101 + ], + [ + 9.048815, + 54.185738601 + ], + [ + 9.0480952, + 54.186788701 + ], + [ + 9.04747, + 54.187807701 + ], + [ + 9.0470486, + 54.188575001 + ], + [ + 9.0467358, + 54.189205201 + ], + [ + 9.0464455, + 54.189840401 + ], + [ + 9.046392686, + 54.189960417 + ] + ] + } + } + ] + }, + "A24": { + "roadworks": [ + { + "identifier": "2026-017812--vi-bs.2026-04-01_00-00-00-000_003.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.56264786356263,10.084021963186963,53.56399232645041,10.097650803995279", + "point": "53.56264786356263,10.084021963186963", + "startLcPosition": "0", + "impact": { + "lower": "Hamburg-Jenfeld", + "upper": "Hamburg-Horn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Schwerin", + "title": "A24 | Hamburg-Horn - Hamburg-Jenfeld", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 53.56264786356263, + "long": 10.084021963186963 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A24: Hamburg -> Schwerin, zwischen 0.9 km hinter AS Hamburg-Horn und 1.7 km vor AS Hamburg-Jenfeld", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 6 m", + "", + "A24 Hamburg - Schwerin, zwischen 0.9 km hinter AS Hamburg-Horn und 1.7 km vor AS Hamburg-Jenfeld Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.084021963, + 53.562647864 + ], + [ + 10.0845963, + 53.562700901 + ], + [ + 10.089285, + 53.563109501 + ], + [ + 10.0914374, + 53.563298801 + ], + [ + 10.0936608, + 53.563514901 + ], + [ + 10.0944588, + 53.563594601 + ], + [ + 10.0955746, + 53.563723601 + ], + [ + 10.0974628, + 53.563965701 + ], + [ + 10.097650804, + 53.563992326 + ] + ] + } + }, + { + "identifier": "2026-015448--vi-bs.2026-04-15_07-00-00-000.devi-zus.2026-04-15_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.55167616117121,10.626934911048663,53.551500813019366,10.631294522727323", + "point": "53.55167616117121,10.626934911048663", + "startLcPosition": "9", + "impact": { + "lower": "Hornbek", + "upper": "Tramm", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Schwerin", + "title": "A24 | Tramm - Hornbek", + "coordinate": { + "lat": 53.55167616117121, + "long": 10.626934911048663 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:00 bis 18:00 Uhr", + "", + "A24: Hamburg -> Schwerin, zwischen 0.7 km hinter Tramm und 0.9 km vor AS Hornbek", + "", + "L\u00e4nge: 0.29 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A24 von Tramm (Parkplatz) Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.626934911, + 53.551676161 + ], + [ + 10.6272813, + 53.551649301 + ], + [ + 10.6294365, + 53.551535301 + ], + [ + 10.630777, + 53.551510401 + ], + [ + 10.631294523, + 53.551500813 + ] + ] + } + }, + { + "identifier": "2026-015448--vi-bs.2026-04-15_07-00-00-000.devi-zus.2026-04-15_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.552803960510026,10.618802550778582,53.55337953868124,10.615885338867985", + "point": "53.552803960510026,10.618802550778582", + "startLcPosition": "10", + "impact": { + "lower": "Talkau", + "upper": "Roseburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Hamburg", + "title": "A24 | Roseburg - Talkau", + "coordinate": { + "lat": 53.552803960510026, + "long": 10.618802550778582 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:00 bis 18:00 Uhr", + "", + "A24: Schwerin -> Hamburg, zwischen 0.7 km hinter Roseburg und 3.9 km vor AS Talkau", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A24 von Tramm (Parkplatz) Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.618802551, + 53.552803961 + ], + [ + 10.6185544, + 53.552847301 + ], + [ + 10.6172598, + 53.553097101 + ], + [ + 10.6159352, + 53.553369201 + ], + [ + 10.615885339, + 53.553379539 + ] + ] + } + }, + { + "identifier": "2026-011178--vi-bs.2026-03-16_07-00-00-000.devi-zus.2026-03-16_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.55045410116142,10.681556012176154,53.516607589659856,10.821284897903462", + "point": "53.55045410116142,10.681556012176154", + "startLcPosition": "11", + "impact": { + "lower": "Gallin/Valluhn", + "upper": "Hornbek", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Schwerin", + "title": "A24 | Hornbek - Gallin/Valluhn", + "coordinate": { + "lat": 53.55045410116142, + "long": 10.681556012176154 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 12:00 Uhr", + "", + "A24: Hamburg -> Schwerin, zwischen 2.4 km hinter AS Hornbek und 1.2 km vor Gallin/Valluhn", + "", + "L\u00e4nge: 10.02 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A24 von Gudow (Raststaette) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.681556012, + 53.550454101 + ], + [ + 10.6820392, + 53.550397501 + ], + [ + 10.6844788, + 53.550070901 + ], + [ + 10.6870626, + 53.549693701 + ], + [ + 10.6873153, + 53.549656201 + ], + [ + 10.6892493, + 53.549344801 + ], + [ + 10.6910953, + 53.549020201 + ], + [ + 10.6929803, + 53.548652301 + ], + [ + 10.6940825, + 53.548425201 + ], + [ + 10.6944148, + 53.548351601 + ], + [ + 10.6966268, + 53.547857901 + ], + [ + 10.6989183, + 53.547293501 + ], + [ + 10.7006192, + 53.546829201 + ], + [ + 10.7014681, + 53.546594201 + ], + [ + 10.7023068, + 53.546348901 + ], + [ + 10.7035992, + 53.545959101 + ], + [ + 10.7057213, + 53.545281601 + ], + [ + 10.714377, + 53.542398001 + ], + [ + 10.7187295, + 53.540968901 + ], + [ + 10.7212535, + 53.540160001 + ], + [ + 10.7239627, + 53.539311101 + ], + [ + 10.7264026, + 53.538592501 + ], + [ + 10.7294224, + 53.537786901 + ], + [ + 10.7303462, + 53.537525001 + ], + [ + 10.7306318, + 53.537451501 + ], + [ + 10.7322532, + 53.537042001 + ], + [ + 10.7348637, + 53.536418201 + ], + [ + 10.7385372, + 53.535608901 + ], + [ + 10.7409116, + 53.535116001 + ], + [ + 10.7413139, + 53.535038301 + ], + [ + 10.7544457, + 53.532389601 + ], + [ + 10.7619645, + 53.530892201 + ], + [ + 10.7632415, + 53.530636001 + ], + [ + 10.7660347, + 53.530075701 + ], + [ + 10.7680593, + 53.529660201 + ], + [ + 10.7700902, + 53.529234501 + ], + [ + 10.7715945, + 53.528908501 + ], + [ + 10.7738944, + 53.528386901 + ], + [ + 10.7759786, + 53.527889701 + ], + [ + 10.7780513, + 53.527373401 + ], + [ + 10.7819424, + 53.526411001 + ], + [ + 10.7825802, + 53.526255201 + ], + [ + 10.7886292, + 53.524756501 + ], + [ + 10.7941252, + 53.523373701 + ], + [ + 10.7961465, + 53.522870901 + ], + [ + 10.798452, + 53.522297801 + ], + [ + 10.799881, + 53.521942301 + ], + [ + 10.8130623, + 53.518661001 + ], + [ + 10.814858, + 53.518212301 + ], + [ + 10.8160586, + 53.517915101 + ], + [ + 10.821284898, + 53.51660759 + ] + ] + } + }, + { + "identifier": "2025-061931--vi-bs.2026-03-16_06-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.551646769221,10.667698373175485,53.551247105122115,10.673690829516515", + "point": "53.551646769221,10.667698373175485", + "startLcPosition": "11", + "impact": { + "lower": "Gudow", + "upper": "Hornbek", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Schwerin", + "title": "A24 | Hornbek - Gudow", + "startTimestamp": "2026-04-08T06:00:00+02:00", + "coordinate": { + "lat": 53.551646769221, + "long": 10.667698373175485 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 06:00 Uhr", + "Ende: 12.06.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.26)", + "", + "A24: Hamburg -> Schwerin, zwischen 1.5 km hinter AS Hornbek und 4.1 km vor AS Gudow", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A24, AS Hornbek bis AS Gudow, Schallschutzarbeiten, L\u00e4rmschutzwand" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.667698373, + 53.551646769 + ], + [ + 10.6679218, + 53.551636301 + ], + [ + 10.6701873, + 53.551508101 + ], + [ + 10.670511, + 53.551486401 + ], + [ + 10.6730153, + 53.551304801 + ], + [ + 10.67369083, + 53.551247105 + ] + ] + } + }, + { + "identifier": "2026-011178--vi-bs.2026-03-16_07-00-00-000.devi-zus.2026-03-16_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.51680208994445,10.82099658453553,53.55086608313589,10.67893881754974", + "point": "53.51680208994445,10.82099658453553", + "startLcPosition": "14", + "impact": { + "lower": "Hornbek", + "upper": "Gallin/Valluhn", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Hamburg", + "title": "A24 | Gallin/Valluhn - Hornbek", + "coordinate": { + "lat": 53.51680208994445, + "long": 10.82099658453553 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 18:00 Uhr", + "10.04.26 von 09:00 bis 12:00 Uhr", + "", + "A24: Schwerin -> Hamburg, zwischen 1.3 km hinter Gallin/Valluhn und 2.2 km vor AS Hornbek", + "", + "L\u00e4nge: 10.18 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A24 von Gudow (Raststaette) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.820996585, + 53.51680209 + ], + [ + 10.8199198, + 53.517070401 + ], + [ + 10.816997, + 53.517803301 + ], + [ + 10.7996158, + 53.522133101 + ], + [ + 10.7971745, + 53.522739801 + ], + [ + 10.7941783, + 53.523487601 + ], + [ + 10.7826536, + 53.526353301 + ], + [ + 10.7820146, + 53.526516201 + ], + [ + 10.7781245, + 53.527487001 + ], + [ + 10.7760376, + 53.527998901 + ], + [ + 10.7739479, + 53.528493301 + ], + [ + 10.7716414, + 53.529019301 + ], + [ + 10.7701672, + 53.529340301 + ], + [ + 10.7681277, + 53.529768701 + ], + [ + 10.7660987, + 53.530178701 + ], + [ + 10.7620091, + 53.531002301 + ], + [ + 10.754481, + 53.532506301 + ], + [ + 10.7412509, + 53.535166501 + ], + [ + 10.740872, + 53.535242901 + ], + [ + 10.7386106, + 53.535716001 + ], + [ + 10.7349294, + 53.536531901 + ], + [ + 10.7325791, + 53.537097701 + ], + [ + 10.7307981, + 53.537535501 + ], + [ + 10.7304923, + 53.537613701 + ], + [ + 10.7302227, + 53.537683501 + ], + [ + 10.7272182, + 53.538501001 + ], + [ + 10.7245151, + 53.539283201 + ], + [ + 10.7232154, + 53.539681401 + ], + [ + 10.7213567, + 53.540255601 + ], + [ + 10.7188126, + 53.541069301 + ], + [ + 10.7144456, + 53.542508501 + ], + [ + 10.7058322, + 53.545380801 + ], + [ + 10.7036783, + 53.546061901 + ], + [ + 10.7023815, + 53.546449801 + ], + [ + 10.7015419, + 53.546700901 + ], + [ + 10.700693, + 53.546937601 + ], + [ + 10.6989797, + 53.547396801 + ], + [ + 10.6967072, + 53.547960701 + ], + [ + 10.6944763, + 53.548465101 + ], + [ + 10.6941535, + 53.548530301 + ], + [ + 10.6930487, + 53.548761501 + ], + [ + 10.6911457, + 53.549128001 + ], + [ + 10.6893043, + 53.549452301 + ], + [ + 10.6872706, + 53.549786301 + ], + [ + 10.6870199, + 53.549821701 + ], + [ + 10.6845332, + 53.550180501 + ], + [ + 10.6820291, + 53.550500601 + ], + [ + 10.6811372, + 53.550611701 + ], + [ + 10.678938818, + 53.550866083 + ] + ] + } + }, + { + "identifier": "2025-041849--vi-bs.2026-01-14_16-00-00-000.devi-zus.2025-11-01_08-00-00-000_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.48088204285838,11.288822170549237,53.475341541033785,11.301785090967678", + "point": "53.48088204285838,11.288822170549237", + "startLcPosition": "19", + "impact": { + "lower": "Schremmheide", + "upper": "Hagenow", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Schwerin", + "title": "A24 | Hagenow - Schremmheide", + "startTimestamp": "2026-01-14T16:00:00+01:00", + "coordinate": { + "lat": 53.48088204285838, + "long": 11.288822170549237 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.01.26 um 16:00 Uhr", + "Ende: 05.06.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.06.26)", + "", + "A24: Hamburg -> Schwerin, zwischen 1.3 km hinter AS Hagenow und 3.1 km vor Schremmheide", + "", + "L\u00e4nge: 1.06 km | Maximale Durchfahrtsbreite: 4.65 m", + "", + "A24, Errichtung Behelfsbr\u00fccke Rifa Hamburg bei Neu Zachun (km 83,723) 2025-399" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.288822171, + 53.480882043 + ], + [ + 11.2896296, + 53.480564901 + ], + [ + 11.2905537, + 53.480186701 + ], + [ + 11.2920655, + 53.479548401 + ], + [ + 11.2936087, + 53.478854601 + ], + [ + 11.2960643, + 53.477739801 + ], + [ + 11.2965818, + 53.477505801 + ], + [ + 11.2979364, + 53.476908801 + ], + [ + 11.2988752, + 53.476508101 + ], + [ + 11.2999434, + 53.476064001 + ], + [ + 11.301785091, + 53.475341541 + ] + ] + } + }, + { + "identifier": "2025-041849--vi-bs.2026-01-14_16-00-00-000.devi-zus.2025-11-01_08-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.47543498049712,11.301887403098755,53.48097205076408,11.28892156375975", + "point": "53.47543498049712,11.301887403098755", + "startLcPosition": "20", + "impact": { + "lower": "Hagenow", + "upper": "Schremmheide", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Schwerin -> Hamburg", + "title": "A24 | Schremmheide - Hagenow", + "startTimestamp": "2026-01-14T16:00:00+01:00", + "coordinate": { + "lat": 53.47543498049712, + "long": 11.301887403098755 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.01.26 um 16:00 Uhr", + "Ende: 05.06.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.06.26)", + "", + "A24: Schwerin -> Hamburg, zwischen 3.1 km hinter Schremmheide und 1.3 km vor AS Hagenow", + "", + "L\u00e4nge: 1.06 km | Maximale Durchfahrtsbreite: 4.65 m", + "", + "A24, Errichtung Behelfsbr\u00fccke Rifa Hamburg bei Neu Zachun (km 83,723) 2025-399" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.301887403, + 53.47543498 + ], + [ + 11.3000415, + 53.476151601 + ], + [ + 11.2989731, + 53.476599101 + ], + [ + 11.2980625, + 53.476988601 + ], + [ + 11.2967443, + 53.477579801 + ], + [ + 11.2962055, + 53.477821601 + ], + [ + 11.2937455, + 53.478936001 + ], + [ + 11.2921714, + 53.479633701 + ], + [ + 11.2906864, + 53.480270501 + ], + [ + 11.2897664, + 53.480640001 + ], + [ + 11.288921564, + 53.480972051 + ] + ] + } + }, + { + "identifier": "2025-041879--vi-bs.2026-01-07_16-00-00-000.devi-zus.2025-11-01_08-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.42989919284695,11.442097702345027,53.4315161629469,11.461465212862914", + "point": "53.42989919284695,11.442097702345027", + "startLcPosition": "20", + "impact": { + "lower": "W\u00f6bbelin", + "upper": "Schremmheide", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Schwerin", + "title": "A24 | Schremmheide - W\u00f6bbelin", + "startTimestamp": "2026-01-07T16:00:00+01:00", + "coordinate": { + "lat": 53.42989919284695, + "long": 11.442097702345027 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.01.26 um 16:00 Uhr", + "Ende: 05.06.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A24: Hamburg -> Schwerin, zwischen 7.9 km hinter Schremmheide und 2.1 km vor AS W\u00f6bbelin", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 3.55 m", + "", + "A24, Errichtung Behelfsbr\u00fccke Rifa Hamburg bei L\u00fcblow (km 95,750) 2025-400" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.442097702, + 53.429899193 + ], + [ + 11.4422755, + 53.429905801 + ], + [ + 11.4441251, + 53.429991301 + ], + [ + 11.4461091, + 53.430113801 + ], + [ + 11.4487396, + 53.430310601 + ], + [ + 11.4500861, + 53.430430901 + ], + [ + 11.4514411, + 53.430566301 + ], + [ + 11.4522277, + 53.430646801 + ], + [ + 11.4553164, + 53.430961301 + ], + [ + 11.4579172, + 53.431220601 + ], + [ + 11.4591861, + 53.431337301 + ], + [ + 11.4600733, + 53.431408801 + ], + [ + 11.4610067, + 53.431482301 + ], + [ + 11.461465213, + 53.431516163 + ] + ] + } + }, + { + "identifier": "2025-041879--vi-bs.2026-01-07_16-00-00-000.devi-zus.2025-11-01_08-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.431625213835034,11.461442550291954,53.43000740429886,11.442086455329523", + "point": "53.431625213835034,11.461442550291954", + "startLcPosition": "21", + "impact": { + "lower": "Schremmheide", + "upper": "W\u00f6bbelin", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Schwerin -> Hamburg", + "title": "A24 | W\u00f6bbelin - Schremmheide", + "startTimestamp": "2026-01-07T16:00:00+01:00", + "coordinate": { + "lat": 53.431625213835034, + "long": 11.461442550291954 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.01.26 um 16:00 Uhr", + "Ende: 05.06.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A24: Schwerin -> Hamburg, zwischen 2.1 km hinter AS W\u00f6bbelin und 7.9 km vor Schremmheide", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 3.55 m", + "", + "A24, Errichtung Behelfsbr\u00fccke Rifa Hamburg bei L\u00fcblow (km 95,750) 2025-400" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.46144255, + 53.431625214 + ], + [ + 11.460973, + 53.431590301 + ], + [ + 11.4600545, + 53.431519801 + ], + [ + 11.4591439, + 53.431445501 + ], + [ + 11.457875, + 53.431325901 + ], + [ + 11.4552792, + 53.431067701 + ], + [ + 11.4521824, + 53.430754101 + ], + [ + 11.451396, + 53.430673201 + ], + [ + 11.4500472, + 53.430538601 + ], + [ + 11.4487056, + 53.430420701 + ], + [ + 11.4460786, + 53.430226001 + ], + [ + 11.4440943, + 53.430102001 + ], + [ + 11.4422567, + 53.430013701 + ], + [ + 11.442086455, + 53.430007404 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de37", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.28042975260347,12.082557969961922,53.27660900417323,12.091804024297998", + "point": "53.28042975260347,12.082557969961922", + "startLcPosition": "27", + "impact": { + "lower": "Dorngrund Nord", + "upper": "Suckow", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Suckow - Dorngrund Nord", + "coordinate": { + "lat": 53.28042975260347, + "long": 12.082557969961922 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 7.1 km hinter AS Suckow und 3.7 km vor Dorngrund Nord", + "", + "L\u00e4nge: 0.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.08255797, + 53.280429753 + ], + [ + 12.0830132, + 53.280213401 + ], + [ + 12.0857246, + 53.278985701 + ], + [ + 12.0866786, + 53.278579501 + ], + [ + 12.0885335, + 53.277820501 + ], + [ + 12.0902522, + 53.277156201 + ], + [ + 12.0914697, + 53.276725401 + ], + [ + 12.091804024, + 53.276609004 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de35", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.28042975260347,12.082557969961922,53.27660900417323,12.091804024297998", + "point": "53.28042975260347,12.082557969961922", + "startLcPosition": "27", + "impact": { + "lower": "Dorngrund Nord", + "upper": "Suckow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Suckow - Dorngrund Nord", + "coordinate": { + "lat": 53.28042975260347, + "long": 12.082557969961922 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 7.1 km hinter AS Suckow und 3.7 km vor Dorngrund Nord", + "", + "L\u00e4nge: 0.75 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.08255797, + 53.280429753 + ], + [ + 12.0830132, + 53.280213401 + ], + [ + 12.0857246, + 53.278985701 + ], + [ + 12.0866786, + 53.278579501 + ], + [ + 12.0885335, + 53.277820501 + ], + [ + 12.0902522, + 53.277156201 + ], + [ + 12.0914697, + 53.276725401 + ], + [ + 12.091804024, + 53.276609004 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de33", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.28388017950156,12.075667440538092,53.27927876941399,12.085077378599403", + "point": "53.28388017950156,12.075667440538092", + "startLcPosition": "27", + "impact": { + "lower": "Dorngrund Nord", + "upper": "Suckow", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Suckow - Dorngrund Nord", + "coordinate": { + "lat": 53.28388017950156, + "long": 12.075667440538092 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 6.5 km hinter AS Suckow und 4.2 km vor Dorngrund Nord", + "", + "L\u00e4nge: 0.81 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.075667441, + 53.28388018 + ], + [ + 12.0771517, + 53.283158401 + ], + [ + 12.0779161, + 53.282783301 + ], + [ + 12.0787784, + 53.282350301 + ], + [ + 12.0795992, + 53.281925301 + ], + [ + 12.0805736, + 53.281423501 + ], + [ + 12.081797, + 53.280791401 + ], + [ + 12.0830132, + 53.280213401 + ], + [ + 12.085077379, + 53.279278769 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.28388017950156,12.075667440538092,53.27927876941399,12.085077378599403", + "point": "53.28388017950156,12.075667440538092", + "startLcPosition": "27", + "impact": { + "lower": "Dorngrund Nord", + "upper": "Suckow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Suckow - Dorngrund Nord", + "coordinate": { + "lat": 53.28388017950156, + "long": 12.075667440538092 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 6.5 km hinter AS Suckow und 4.2 km vor Dorngrund Nord", + "", + "L\u00e4nge: 0.81 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.075667441, + 53.28388018 + ], + [ + 12.0771517, + 53.283158401 + ], + [ + 12.0779161, + 53.282783301 + ], + [ + 12.0787784, + 53.282350301 + ], + [ + 12.0795992, + 53.281925301 + ], + [ + 12.0805736, + 53.281423501 + ], + [ + 12.081797, + 53.280791401 + ], + [ + 12.0830132, + 53.280213401 + ], + [ + 12.085077379, + 53.279278769 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.28388017950156,12.075667440538092,53.27946830684312,12.084658789595085", + "point": "53.28388017950156,12.075667440538092", + "startLcPosition": "27", + "impact": { + "lower": "Dorngrund Nord", + "upper": "Suckow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Suckow - Dorngrund Nord", + "coordinate": { + "lat": 53.28388017950156, + "long": 12.075667440538092 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 6.5 km hinter AS Suckow und 4.3 km vor Dorngrund Nord", + "", + "L\u00e4nge: 0.78 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.075667441, + 53.28388018 + ], + [ + 12.0771517, + 53.283158401 + ], + [ + 12.0779161, + 53.282783301 + ], + [ + 12.0787784, + 53.282350301 + ], + [ + 12.0795992, + 53.281925301 + ], + [ + 12.0805736, + 53.281423501 + ], + [ + 12.081797, + 53.280791401 + ], + [ + 12.0830132, + 53.280213401 + ], + [ + 12.08465879, + 53.279468307 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de27", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.28871531396805,12.063074479925783,53.28442646921544,12.07448294828171", + "point": "53.28871531396805,12.063074479925783", + "startLcPosition": "27", + "impact": { + "lower": "Putlitz", + "upper": "Suckow", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Suckow - Putlitz", + "coordinate": { + "lat": 53.28871531396805, + "long": 12.063074479925783 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 5.5 km hinter AS Suckow und 0.8 km vor AS Putlitz", + "", + "L\u00e4nge: 0.9 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.06307448, + 53.288715314 + ], + [ + 12.0646115, + 53.288239701 + ], + [ + 12.0676332, + 53.287191101 + ], + [ + 12.0687143, + 53.286785301 + ], + [ + 12.0707448, + 53.286000201 + ], + [ + 12.0721735, + 53.285412301 + ], + [ + 12.074482948, + 53.284426469 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de41", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.268662916391264,12.12436799785167,53.26650235682585,12.13391347610233", + "point": "53.268662916391264,12.12436799785167", + "startLcPosition": "28", + "impact": { + "lower": "Dorngrund Nord", + "upper": "Putlitz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Putlitz - Dorngrund Nord", + "coordinate": { + "lat": 53.268662916391264, + "long": 12.12436799785167 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 3.0 km hinter AS Putlitz und 0.7 km vor Dorngrund Nord", + "", + "L\u00e4nge: 0.68 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.124367998, + 53.268662916 + ], + [ + 12.1271306, + 53.268057201 + ], + [ + 12.1299711, + 53.267426801 + ], + [ + 12.1328177, + 53.266761101 + ], + [ + 12.133913476, + 53.266502357 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de39", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.268662916391264,12.12436799785167,53.26650235682585,12.13391347610233", + "point": "53.268662916391264,12.12436799785167", + "startLcPosition": "28", + "impact": { + "lower": "Dorngrund Nord", + "upper": "Putlitz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Putlitz - Dorngrund Nord", + "coordinate": { + "lat": 53.268662916391264, + "long": 12.12436799785167 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 3.0 km hinter AS Putlitz und 0.7 km vor Dorngrund Nord", + "", + "L\u00e4nge: 0.68 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.124367998, + 53.268662916 + ], + [ + 12.1271306, + 53.268057201 + ], + [ + 12.1299711, + 53.267426801 + ], + [ + 12.1328177, + 53.266761101 + ], + [ + 12.133913476, + 53.266502357 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.27692278818678,12.091240801098587,53.28052681576336,12.082663592048798", + "point": "53.27692278818678,12.091240801098587", + "startLcPosition": "29", + "impact": { + "lower": "Suckow", + "upper": "Dorngrund Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Dorngrund Nord - Suckow", + "coordinate": { + "lat": 53.27692278818678, + "long": 12.091240801098587 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 3.8 km hinter Dorngrund Nord und 7.1 km vor AS Suckow", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.091240801, + 53.276922788 + ], + [ + 12.0911241, + 53.276962901 + ], + [ + 12.0886783, + 53.277894801 + ], + [ + 12.0865899, + 53.278748001 + ], + [ + 12.0851096, + 53.279386601 + ], + [ + 12.0830205, + 53.280366101 + ], + [ + 12.082663592, + 53.280526816 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.27692278818678,12.091240801098587,53.28052681576336,12.082663592048798", + "point": "53.27692278818678,12.091240801098587", + "startLcPosition": "29", + "impact": { + "lower": "Suckow", + "upper": "Dorngrund Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Dorngrund Nord - Suckow", + "coordinate": { + "lat": 53.27692278818678, + "long": 12.091240801098587 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 3.8 km hinter Dorngrund Nord und 7.1 km vor AS Suckow", + "", + "L\u00e4nge: 0.7 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.091240801, + 53.276922788 + ], + [ + 12.0911241, + 53.276962901 + ], + [ + 12.0886783, + 53.277894801 + ], + [ + 12.0865899, + 53.278748001 + ], + [ + 12.0851096, + 53.279386601 + ], + [ + 12.0830205, + 53.280366101 + ], + [ + 12.082663592, + 53.280526816 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.274052841911264,12.10057050545566,53.277641089254786,12.089344197390675", + "point": "53.274052841911264,12.10057050545566", + "startLcPosition": "29", + "impact": { + "lower": "Putlitz", + "upper": "Dorngrund Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Dorngrund Nord - Putlitz", + "coordinate": { + "lat": 53.274052841911264, + "long": 12.10057050545566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 3.1 km hinter Dorngrund Nord und 0.4 km vor AS Putlitz", + "", + "L\u00e4nge: 0.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.100570505, + 53.274052842 + ], + [ + 12.1001208, + 53.274170201 + ], + [ + 12.0984766, + 53.274611301 + ], + [ + 12.0971429, + 53.275003301 + ], + [ + 12.0957434, + 53.275434101 + ], + [ + 12.0942628, + 53.275907201 + ], + [ + 12.0926884, + 53.276425201 + ], + [ + 12.0911241, + 53.276962901 + ], + [ + 12.089344197, + 53.277641089 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.274052841911264,12.10057050545566,53.277641089254786,12.089344197390675", + "point": "53.274052841911264,12.10057050545566", + "startLcPosition": "29", + "impact": { + "lower": "Putlitz", + "upper": "Dorngrund Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Dorngrund Nord - Putlitz", + "coordinate": { + "lat": 53.274052841911264, + "long": 12.10057050545566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 3.1 km hinter Dorngrund Nord und 0.4 km vor AS Putlitz", + "", + "L\u00e4nge: 0.85 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.100570505, + 53.274052842 + ], + [ + 12.1001208, + 53.274170201 + ], + [ + 12.0984766, + 53.274611301 + ], + [ + 12.0971429, + 53.275003301 + ], + [ + 12.0957434, + 53.275434101 + ], + [ + 12.0942628, + 53.275907201 + ], + [ + 12.0926884, + 53.276425201 + ], + [ + 12.0911241, + 53.276962901 + ], + [ + 12.089344197, + 53.277641089 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.274052841911264,12.10057050545566,53.277641089254786,12.089344197390675", + "point": "53.274052841911264,12.10057050545566", + "startLcPosition": "29", + "impact": { + "lower": "Putlitz", + "upper": "Dorngrund Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Dorngrund Nord - Putlitz", + "coordinate": { + "lat": 53.274052841911264, + "long": 12.10057050545566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 3.1 km hinter Dorngrund Nord und 0.4 km vor AS Putlitz", + "", + "L\u00e4nge: 0.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.100570505, + 53.274052842 + ], + [ + 12.1001208, + 53.274170201 + ], + [ + 12.0984766, + 53.274611301 + ], + [ + 12.0971429, + 53.275003301 + ], + [ + 12.0957434, + 53.275434101 + ], + [ + 12.0942628, + 53.275907201 + ], + [ + 12.0926884, + 53.276425201 + ], + [ + 12.0911241, + 53.276962901 + ], + [ + 12.089344197, + 53.277641089 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.27091715176102,12.114605464481128,53.273533614324776,12.102639439324378", + "point": "53.27091715176102,12.114605464481128", + "startLcPosition": "29", + "impact": { + "lower": "Putlitz", + "upper": "Dorngrund Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Dorngrund Nord - Putlitz", + "coordinate": { + "lat": 53.27091715176102, + "long": 12.114605464481128 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 2.1 km hinter Dorngrund Nord und 1.4 km vor AS Putlitz", + "", + "L\u00e4nge: 0.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.114605464, + 53.270917152 + ], + [ + 12.111783, + 53.271541301 + ], + [ + 12.1083659, + 53.272274301 + ], + [ + 12.1064481, + 53.272702601 + ], + [ + 12.1040502, + 53.273207801 + ], + [ + 12.102639439, + 53.273533614 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.26428787411823,12.142437659636668,53.267350466549445,12.130780883344677", + "point": "53.26428787411823,12.142437659636668", + "startLcPosition": "29", + "impact": { + "lower": "Putlitz", + "upper": "Dorngrund Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Dorngrund Nord - Putlitz", + "coordinate": { + "lat": 53.26428787411823, + "long": 12.142437659636668 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 0.1 km hinter Dorngrund Nord und 3.4 km vor AS Putlitz", + "", + "L\u00e4nge: 0.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.14243766, + 53.264287874 + ], + [ + 12.1408395, + 53.264758101 + ], + [ + 12.1387945, + 53.265349601 + ], + [ + 12.1379426, + 53.265591501 + ], + [ + 12.1355823, + 53.266212401 + ], + [ + 12.1337754, + 53.266651401 + ], + [ + 12.1329161, + 53.266849601 + ], + [ + 12.1310384, + 53.267292201 + ], + [ + 12.130780883, + 53.267350467 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.26428787411823,12.142437659636668,53.267350466549445,12.130780883344677", + "point": "53.26428787411823,12.142437659636668", + "startLcPosition": "29", + "impact": { + "lower": "Putlitz", + "upper": "Dorngrund Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Dorngrund Nord - Putlitz", + "coordinate": { + "lat": 53.26428787411823, + "long": 12.142437659636668 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 0.1 km hinter Dorngrund Nord und 3.4 km vor AS Putlitz", + "", + "L\u00e4nge: 0.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.14243766, + 53.264287874 + ], + [ + 12.1408395, + 53.264758101 + ], + [ + 12.1387945, + 53.265349601 + ], + [ + 12.1379426, + 53.265591501 + ], + [ + 12.1355823, + 53.266212401 + ], + [ + 12.1337754, + 53.266651401 + ], + [ + 12.1329161, + 53.266849601 + ], + [ + 12.1310384, + 53.267292201 + ], + [ + 12.130780883, + 53.267350467 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de47", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.247832297153785,12.177705792100157,53.24105617072364,12.187507895661886", + "point": "53.247832297153785,12.177705792100157", + "startLcPosition": "30", + "impact": { + "lower": "Meyenburg", + "upper": "Dorngrund S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Dorngrund S\u00fcd - Meyenburg", + "coordinate": { + "lat": 53.247832297153785, + "long": 12.177705792100157 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 2.9 km hinter Dorngrund S\u00fcd und 1.5 km vor AS Meyenburg", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.177705792, + 53.247832297 + ], + [ + 12.1818888, + 53.244986501 + ], + [ + 12.1850658, + 53.242589201 + ], + [ + 12.187507896, + 53.241056171 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de45", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.25960543756065,12.155218983669233,53.25477657703831,12.16602320188119", + "point": "53.25960543756065,12.155218983669233", + "startLcPosition": "30", + "impact": { + "lower": "Meyenburg", + "upper": "Dorngrund S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Dorngrund S\u00fcd - Meyenburg", + "coordinate": { + "lat": 53.25960543756065, + "long": 12.155218983669233 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 0.9 km hinter Dorngrund S\u00fcd und 3.6 km vor AS Meyenburg", + "", + "L\u00e4nge: 0.9 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.155218984, + 53.259605438 + ], + [ + 12.1552726, + 53.259584801 + ], + [ + 12.1597377, + 53.257800301 + ], + [ + 12.165172, + 53.255219101 + ], + [ + 12.166023202, + 53.254776577 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de43", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.25960543756065,12.155218983669233,53.25477657703831,12.16602320188119", + "point": "53.25960543756065,12.155218983669233", + "startLcPosition": "30", + "impact": { + "lower": "Meyenburg", + "upper": "Dorngrund S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Dorngrund S\u00fcd - Meyenburg", + "coordinate": { + "lat": 53.25960543756065, + "long": 12.155218983669233 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Schwerin -> Pritzwalk, zwischen 0.9 km hinter Dorngrund S\u00fcd und 3.6 km vor AS Meyenburg", + "", + "L\u00e4nge: 0.9 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.155218984, + 53.259605438 + ], + [ + 12.1552726, + 53.259584801 + ], + [ + 12.1597377, + 53.257800301 + ], + [ + 12.165172, + 53.255219101 + ], + [ + 12.166023202, + 53.254776577 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.25247610536709,12.170595673710034,53.2563002650555,12.16322434701156", + "point": "53.25247610536709,12.170595673710034", + "startLcPosition": "31", + "impact": { + "lower": "Dorngrund S\u00fcd", + "upper": "Meyenburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Meyenburg - Dorngrund S\u00fcd", + "coordinate": { + "lat": 53.25247610536709, + "long": 12.170595673710034 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 3.2 km hinter AS Meyenburg und 1.5 km vor Dorngrund S\u00fcd", + "", + "L\u00e4nge: 0.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.170595674, + 53.252476105 + ], + [ + 12.1704301, + 53.252571601 + ], + [ + 12.1653033, + 53.255309801 + ], + [ + 12.163224347, + 53.256300265 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.25247610536709,12.170595673710034,53.2563002650555,12.16322434701156", + "point": "53.25247610536709,12.170595673710034", + "startLcPosition": "31", + "impact": { + "lower": "Dorngrund S\u00fcd", + "upper": "Meyenburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Meyenburg - Dorngrund S\u00fcd", + "coordinate": { + "lat": 53.25247610536709, + "long": 12.170595673710034 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 3.2 km hinter AS Meyenburg und 1.5 km vor Dorngrund S\u00fcd", + "", + "L\u00e4nge: 0.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.170595674, + 53.252476105 + ], + [ + 12.1704301, + 53.252571601 + ], + [ + 12.1653033, + 53.255309801 + ], + [ + 12.163224347, + 53.256300265 + ] + ] + } + }, + { + "identifier": "2024-052399--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-03-17_07-00-00-000_002.de9", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.20623858674527,12.259761240678912,53.164566670014395,12.378438742229406", + "point": "53.20623858674527,12.259761240678912", + "startLcPosition": "31", + "impact": { + "lower": "Pritzwalk", + "upper": "Meyenburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Meyenburg - Pritzwalk", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 53.20623858674527, + "long": 12.259761240678912 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 27.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.04.26)", + "", + "A24: Schwerin -> Pritzwalk, zwischen 4.7 km hinter AS Meyenburg und 2.6 km vor AS Pritzwalk", + "", + "L\u00e4nge: 9.55 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A24,Fahrbahnerhaltung zwischen AS Meyenburg und AS Pritzwalk (km 158,621-166,403), FR Hamburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.259761241, + 53.206238587 + ], + [ + 12.2640252, + 53.203997401 + ], + [ + 12.2661795, + 53.202805301 + ], + [ + 12.2684794, + 53.201451301 + ], + [ + 12.2700475, + 53.200516901 + ], + [ + 12.2722294, + 53.199110501 + ], + [ + 12.2737929, + 53.198026201 + ], + [ + 12.2746527, + 53.197420901 + ], + [ + 12.2757951, + 53.196570901 + ], + [ + 12.276518, + 53.196012301 + ], + [ + 12.2772569, + 53.195445401 + ], + [ + 12.2782163, + 53.194666201 + ], + [ + 12.2789947, + 53.194020501 + ], + [ + 12.2846752, + 53.189198501 + ], + [ + 12.2880916, + 53.186786301 + ], + [ + 12.2937689, + 53.183421401 + ], + [ + 12.2980578, + 53.181267201 + ], + [ + 12.3025972, + 53.179242701 + ], + [ + 12.3089886, + 53.176970701 + ], + [ + 12.3151553, + 53.175133501 + ], + [ + 12.3179503, + 53.174422501 + ], + [ + 12.3207829, + 53.173789001 + ], + [ + 12.3236191, + 53.173216201 + ], + [ + 12.3264687, + 53.172706801 + ], + [ + 12.3318168, + 53.171942301 + ], + [ + 12.3371898, + 53.171384901 + ], + [ + 12.3526444, + 53.169992301 + ], + [ + 12.3576128, + 53.169408901 + ], + [ + 12.3612911, + 53.168853801 + ], + [ + 12.3626522, + 53.168613901 + ], + [ + 12.3658684, + 53.167983501 + ], + [ + 12.3684423, + 53.167413601 + ], + [ + 12.370821, + 53.166829201 + ], + [ + 12.3733536, + 53.166145801 + ], + [ + 12.3762487, + 53.165284701 + ], + [ + 12.378438742, + 53.16456667 + ] + ] + } + }, + { + "identifier": "2024-052399--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-03-17_07-00-00-000_002.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.20623858674527,12.259761240678912,53.164566670014395,12.378438742229406", + "point": "53.20623858674527,12.259761240678912", + "startLcPosition": "31", + "impact": { + "lower": "Pritzwalk", + "upper": "Meyenburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Schwerin -> Pritzwalk", + "title": "A24 | Meyenburg - Pritzwalk", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 53.20623858674527, + "long": 12.259761240678912 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 27.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.04.26)", + "", + "A24: Schwerin -> Pritzwalk, zwischen 4.7 km hinter AS Meyenburg und 2.6 km vor AS Pritzwalk", + "", + "L\u00e4nge: 9.55 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A24,Fahrbahnerhaltung zwischen AS Meyenburg und AS Pritzwalk (km 158,621-166,403), FR Hamburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.259761241, + 53.206238587 + ], + [ + 12.2640252, + 53.203997401 + ], + [ + 12.2661795, + 53.202805301 + ], + [ + 12.2684794, + 53.201451301 + ], + [ + 12.2700475, + 53.200516901 + ], + [ + 12.2722294, + 53.199110501 + ], + [ + 12.2737929, + 53.198026201 + ], + [ + 12.2746527, + 53.197420901 + ], + [ + 12.2757951, + 53.196570901 + ], + [ + 12.276518, + 53.196012301 + ], + [ + 12.2772569, + 53.195445401 + ], + [ + 12.2782163, + 53.194666201 + ], + [ + 12.2789947, + 53.194020501 + ], + [ + 12.2846752, + 53.189198501 + ], + [ + 12.2880916, + 53.186786301 + ], + [ + 12.2937689, + 53.183421401 + ], + [ + 12.2980578, + 53.181267201 + ], + [ + 12.3025972, + 53.179242701 + ], + [ + 12.3089886, + 53.176970701 + ], + [ + 12.3151553, + 53.175133501 + ], + [ + 12.3179503, + 53.174422501 + ], + [ + 12.3207829, + 53.173789001 + ], + [ + 12.3236191, + 53.173216201 + ], + [ + 12.3264687, + 53.172706801 + ], + [ + 12.3318168, + 53.171942301 + ], + [ + 12.3371898, + 53.171384901 + ], + [ + 12.3526444, + 53.169992301 + ], + [ + 12.3576128, + 53.169408901 + ], + [ + 12.3612911, + 53.168853801 + ], + [ + 12.3626522, + 53.168613901 + ], + [ + 12.3658684, + 53.167983501 + ], + [ + 12.3684423, + 53.167413601 + ], + [ + 12.370821, + 53.166829201 + ], + [ + 12.3733536, + 53.166145801 + ], + [ + 12.3762487, + 53.165284701 + ], + [ + 12.378438742, + 53.16456667 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.230490558468865,12.211664740920769,53.23304203471616,12.204278654493052", + "point": "53.230490558468865,12.211664740920769", + "startLcPosition": "32", + "impact": { + "lower": "Dorngrund S\u00fcd", + "upper": "Pritzwalk", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Pritzwalk - Dorngrund S\u00fcd", + "coordinate": { + "lat": 53.230490558468865, + "long": 12.211664740920769 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 16.4 km hinter AS Pritzwalk und 5.3 km vor Dorngrund S\u00fcd", + "", + "L\u00e4nge: 0.57 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.211664741, + 53.230490558 + ], + [ + 12.2109189, + 53.230765601 + ], + [ + 12.2094753, + 53.231267901 + ], + [ + 12.2080245, + 53.231767201 + ], + [ + 12.2058168, + 53.232500901 + ], + [ + 12.2048478, + 53.232840901 + ], + [ + 12.204278654, + 53.233042035 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.22521643357229,12.223783359137974,53.229769566406254,12.213581630345713", + "point": "53.22521643357229,12.223783359137974", + "startLcPosition": "32", + "impact": { + "lower": "Meyenburg", + "upper": "Pritzwalk", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Pritzwalk - Meyenburg", + "coordinate": { + "lat": 53.22521643357229, + "long": 12.223783359137974 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Pritzwalk -> Schwerin, zwischen 15.4 km hinter AS Pritzwalk und 0.6 km vor AS Meyenburg", + "", + "L\u00e4nge: 0.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.223783359, + 53.225216434 + ], + [ + 12.2227534, + 53.225737001 + ], + [ + 12.2220373, + 53.226088601 + ], + [ + 12.2212836, + 53.226464401 + ], + [ + 12.2180017, + 53.227942901 + ], + [ + 12.2170497, + 53.228375101 + ], + [ + 12.2146195, + 53.229362601 + ], + [ + 12.214374, + 53.229460701 + ], + [ + 12.2140843, + 53.229577501 + ], + [ + 12.21358163, + 53.229769566 + ] + ] + } + }, + { + "identifier": "2024-052399--vi-bs.2026-03-23_09-00-00-000.devi-zus.2026-03-17_07-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.16145880868109,12.386750780478746,53.19952440075067,12.271827756213685", + "point": "53.16145880868109,12.386750780478746", + "startLcPosition": "32", + "impact": { + "lower": "Meyenburg", + "upper": "Pritzwalk", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Pritzwalk - Meyenburg", + "startTimestamp": "2026-03-23T09:00:00+01:00", + "coordinate": { + "lat": 53.16145880868109, + "long": 12.386750780478746 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 09:00 Uhr", + "Ende: 13.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.04.26)", + "", + "A24: Pritzwalk -> Schwerin, zwischen 2.0 km hinter AS Pritzwalk und 5.8 km vor AS Meyenburg", + "", + "L\u00e4nge: 9.1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A24,Fahrbahnerhaltung zwischen AS Meyenburg und AS Pritzwalk (km 158,621-166,403), FR Hamburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.38675078, + 53.161458809 + ], + [ + 12.3858016, + 53.161878201 + ], + [ + 12.3842506, + 53.162528001 + ], + [ + 12.3829781, + 53.163041101 + ], + [ + 12.3803965, + 53.164017301 + ], + [ + 12.3787012, + 53.164619301 + ], + [ + 12.3761363, + 53.165436001 + ], + [ + 12.3733673, + 53.166263001 + ], + [ + 12.3706394, + 53.167001701 + ], + [ + 12.3682395, + 53.167579001 + ], + [ + 12.3658224, + 53.168103401 + ], + [ + 12.3626421, + 53.168730001 + ], + [ + 12.361303, + 53.168975801 + ], + [ + 12.3576165, + 53.169555001 + ], + [ + 12.3526395, + 53.170129801 + ], + [ + 12.3371872, + 53.171533901 + ], + [ + 12.3348389, + 53.171741801 + ], + [ + 12.3318394, + 53.172077201 + ], + [ + 12.3305152, + 53.172253601 + ], + [ + 12.3265148, + 53.172829401 + ], + [ + 12.3236949, + 53.173348001 + ], + [ + 12.3208378, + 53.173922801 + ], + [ + 12.3179991, + 53.174547201 + ], + [ + 12.3152096, + 53.175246601 + ], + [ + 12.3132283, + 53.175818301 + ], + [ + 12.3102542, + 53.176712701 + ], + [ + 12.3090588, + 53.177089901 + ], + [ + 12.3075769, + 53.177592301 + ], + [ + 12.3039318, + 53.178925701 + ], + [ + 12.302753, + 53.179387901 + ], + [ + 12.2989188, + 53.181054001 + ], + [ + 12.2981959, + 53.181390001 + ], + [ + 12.2959859, + 53.182470901 + ], + [ + 12.294874, + 53.183035901 + ], + [ + 12.293962, + 53.183534201 + ], + [ + 12.2927631, + 53.184194801 + ], + [ + 12.2916366, + 53.184838501 + ], + [ + 12.2896075, + 53.186060001 + ], + [ + 12.2888015, + 53.186580001 + ], + [ + 12.2882972, + 53.186907001 + ], + [ + 12.2857451, + 53.188666901 + ], + [ + 12.2848828, + 53.189282401 + ], + [ + 12.2838085, + 53.190112501 + ], + [ + 12.2795488, + 53.193740001 + ], + [ + 12.2786356, + 53.194508701 + ], + [ + 12.278024, + 53.195018601 + ], + [ + 12.2770783, + 53.195758701 + ], + [ + 12.2763675, + 53.196326401 + ], + [ + 12.275045, + 53.197299701 + ], + [ + 12.2742141, + 53.197911601 + ], + [ + 12.273733, + 53.198250601 + ], + [ + 12.2723944, + 53.199157701 + ], + [ + 12.271827756, + 53.199524401 + ] + ] + } + }, + { + "identifier": "2024-052399--vi-bs.2026-03-23_09-00-00-000.devi-zus.2026-03-17_07-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.16145880868109,12.386750780478746,53.19952440075067,12.271827756213685", + "point": "53.16145880868109,12.386750780478746", + "startLcPosition": "32", + "impact": { + "lower": "Meyenburg", + "upper": "Pritzwalk", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Pritzwalk -> Schwerin", + "title": "A24 | Pritzwalk - Meyenburg", + "startTimestamp": "2026-03-23T09:00:00+01:00", + "coordinate": { + "lat": 53.16145880868109, + "long": 12.386750780478746 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 09:00 Uhr", + "Ende: 13.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.04.26)", + "", + "A24: Pritzwalk -> Schwerin, zwischen 2.0 km hinter AS Pritzwalk und 5.8 km vor AS Meyenburg", + "", + "L\u00e4nge: 9.1 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A24,Fahrbahnerhaltung zwischen AS Meyenburg und AS Pritzwalk (km 158,621-166,403), FR Hamburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.38675078, + 53.161458809 + ], + [ + 12.3858016, + 53.161878201 + ], + [ + 12.3842506, + 53.162528001 + ], + [ + 12.3829781, + 53.163041101 + ], + [ + 12.3803965, + 53.164017301 + ], + [ + 12.3787012, + 53.164619301 + ], + [ + 12.3761363, + 53.165436001 + ], + [ + 12.3733673, + 53.166263001 + ], + [ + 12.3706394, + 53.167001701 + ], + [ + 12.3682395, + 53.167579001 + ], + [ + 12.3658224, + 53.168103401 + ], + [ + 12.3626421, + 53.168730001 + ], + [ + 12.361303, + 53.168975801 + ], + [ + 12.3576165, + 53.169555001 + ], + [ + 12.3526395, + 53.170129801 + ], + [ + 12.3371872, + 53.171533901 + ], + [ + 12.3348389, + 53.171741801 + ], + [ + 12.3318394, + 53.172077201 + ], + [ + 12.3305152, + 53.172253601 + ], + [ + 12.3265148, + 53.172829401 + ], + [ + 12.3236949, + 53.173348001 + ], + [ + 12.3208378, + 53.173922801 + ], + [ + 12.3179991, + 53.174547201 + ], + [ + 12.3152096, + 53.175246601 + ], + [ + 12.3132283, + 53.175818301 + ], + [ + 12.3102542, + 53.176712701 + ], + [ + 12.3090588, + 53.177089901 + ], + [ + 12.3075769, + 53.177592301 + ], + [ + 12.3039318, + 53.178925701 + ], + [ + 12.302753, + 53.179387901 + ], + [ + 12.2989188, + 53.181054001 + ], + [ + 12.2981959, + 53.181390001 + ], + [ + 12.2959859, + 53.182470901 + ], + [ + 12.294874, + 53.183035901 + ], + [ + 12.293962, + 53.183534201 + ], + [ + 12.2927631, + 53.184194801 + ], + [ + 12.2916366, + 53.184838501 + ], + [ + 12.2896075, + 53.186060001 + ], + [ + 12.2888015, + 53.186580001 + ], + [ + 12.2882972, + 53.186907001 + ], + [ + 12.2857451, + 53.188666901 + ], + [ + 12.2848828, + 53.189282401 + ], + [ + 12.2838085, + 53.190112501 + ], + [ + 12.2795488, + 53.193740001 + ], + [ + 12.2786356, + 53.194508701 + ], + [ + 12.278024, + 53.195018601 + ], + [ + 12.2770783, + 53.195758701 + ], + [ + 12.2763675, + 53.196326401 + ], + [ + 12.275045, + 53.197299701 + ], + [ + 12.2742141, + 53.197911601 + ], + [ + 12.273733, + 53.198250601 + ], + [ + 12.2723944, + 53.199157701 + ], + [ + 12.271827756, + 53.199524401 + ] + ] + } + }, + { + "identifier": "2026-017204--vi-bs.2026-04-14_07-30-00-000.devi-bs.2026-04-14_07-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.14501164864147,12.414109324968987,53.14958663146706,12.405966804318574", + "point": "53.14501164864147,12.414109324968987", + "startLcPosition": "33", + "impact": { + "lower": "Meyenburg", + "upper": "Wittstock/Dosse", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Schwerin", + "title": "A24 | Wittstock/Dosse - Meyenburg", + "coordinate": { + "lat": 53.14501164864147, + "long": 12.414109324968987 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:30 bis 16:00 Uhr", + "", + "A24: Berliner Ring -> Schwerin, zwischen 3.2 km hinter AD Wittstock/Dosse und 16.7 km vor AS Meyenburg", + "", + "L\u00e4nge: 0.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A24 div. Bauwerkspr\u00fcfungen AM Wittstock" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.414109325, + 53.145011649 + ], + [ + 12.4126463, + 53.145726801 + ], + [ + 12.4111786, + 53.146498201 + ], + [ + 12.4092692, + 53.147577601 + ], + [ + 12.4074301, + 53.148664001 + ], + [ + 12.4072317, + 53.148785001 + ], + [ + 12.4064113, + 53.149296301 + ], + [ + 12.4063597, + 53.149325501 + ], + [ + 12.405966804, + 53.149586631 + ] + ] + } + }, + { + "identifier": "2026-016357--vi-bs.2026-04-21_12-00-00-000.devi-bs.2026-04-20_10-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.90955434588196,12.732192206823335,52.75089693116027,12.86993658693891", + "point": "52.90955434588196,12.732192206823335", + "startLcPosition": "38", + "impact": { + "lower": "Kremmen", + "upper": "Walsleben-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Berliner Ring", + "title": "A24 | Walsleben-Ost - Kremmen", + "coordinate": { + "lat": 52.90955434588196, + "long": 12.732192206823335 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 12:00 bis 15:00 Uhr", + "22.04.26 von 08:00 bis 15:00 Uhr", + "", + "A24: Pritzwalk -> Berliner Ring, zwischen 6.6 km hinter Walsleben-Ost und 8.3 km vor AS Kremmen", + "", + "L\u00e4nge: 21.21 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A24 von Fehrbellin (AS) nach Walsleben-Ost (Raststaette) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.732192207, + 52.909554346 + ], + [ + 12.7323311, + 52.909471601 + ], + [ + 12.7342871, + 52.908292801 + ], + [ + 12.7350839, + 52.907809501 + ], + [ + 12.7354378, + 52.907585401 + ], + [ + 12.7378207, + 52.906056201 + ], + [ + 12.7393296, + 52.905009601 + ], + [ + 12.7398229, + 52.904649201 + ], + [ + 12.7405654, + 52.904084401 + ], + [ + 12.7415646, + 52.903280801 + ], + [ + 12.742939, + 52.902060401 + ], + [ + 12.7443455, + 52.900789601 + ], + [ + 12.7451359, + 52.900000401 + ], + [ + 12.7458037, + 52.899276401 + ], + [ + 12.7467553, + 52.898169801 + ], + [ + 12.7479029, + 52.896724101 + ], + [ + 12.7484055, + 52.896018401 + ], + [ + 12.7493044, + 52.894670101 + ], + [ + 12.7501167, + 52.893297201 + ], + [ + 12.7506528, + 52.892333101 + ], + [ + 12.752414, + 52.888956101 + ], + [ + 12.7537405, + 52.886380401 + ], + [ + 12.7564243, + 52.881230101 + ], + [ + 12.757561, + 52.879047601 + ], + [ + 12.7578626, + 52.878468401 + ], + [ + 12.7579862, + 52.878230101 + ], + [ + 12.7591686, + 52.875950001 + ], + [ + 12.7596741, + 52.874959101 + ], + [ + 12.7609028, + 52.872617701 + ], + [ + 12.7622087, + 52.870084001 + ], + [ + 12.763858, + 52.866967001 + ], + [ + 12.7639121, + 52.866869601 + ], + [ + 12.7639689, + 52.866767401 + ], + [ + 12.7652631, + 52.864437301 + ], + [ + 12.7665125, + 52.862347001 + ], + [ + 12.7675585, + 52.860719501 + ], + [ + 12.7687709, + 52.859002901 + ], + [ + 12.7693771, + 52.858185101 + ], + [ + 12.7704553, + 52.856824701 + ], + [ + 12.77115, + 52.856000401 + ], + [ + 12.772188, + 52.854821301 + ], + [ + 12.7731858, + 52.853749101 + ], + [ + 12.7743043, + 52.852589401 + ], + [ + 12.7747975, + 52.852101301 + ], + [ + 12.7762379, + 52.850676901 + ], + [ + 12.7777673, + 52.849225201 + ], + [ + 12.7786476, + 52.848408601 + ], + [ + 12.7794553, + 52.847670101 + ], + [ + 12.7808029, + 52.846437901 + ], + [ + 12.7811663, + 52.846107401 + ], + [ + 12.784597, + 52.842957901 + ], + [ + 12.7856233, + 52.841936101 + ], + [ + 12.7866214, + 52.840899301 + ], + [ + 12.7876088, + 52.839768401 + ], + [ + 12.7885361, + 52.838637401 + ], + [ + 12.7894248, + 52.837402301 + ], + [ + 12.790118, + 52.836373001 + ], + [ + 12.7909407, + 52.834967701 + ], + [ + 12.7914121, + 52.834109701 + ], + [ + 12.7918527, + 52.833216201 + ], + [ + 12.7924535, + 52.831796001 + ], + [ + 12.7926846, + 52.831205901 + ], + [ + 12.7929834, + 52.830314201 + ], + [ + 12.7932361, + 52.829448601 + ], + [ + 12.7934795, + 52.828564401 + ], + [ + 12.7936697, + 52.827649701 + ], + [ + 12.7938238, + 52.826755201 + ], + [ + 12.7939732, + 52.825572901 + ], + [ + 12.7940433, + 52.824576801 + ], + [ + 12.7940993, + 52.823393001 + ], + [ + 12.7940967, + 52.822718401 + ], + [ + 12.7940999, + 52.822469901 + ], + [ + 12.794118, + 52.819540901 + ], + [ + 12.7941133, + 52.817792501 + ], + [ + 12.7941086, + 52.816663501 + ], + [ + 12.7941287, + 52.808804901 + ], + [ + 12.7941329, + 52.807140801 + ], + [ + 12.7941343, + 52.806940201 + ], + [ + 12.7941436, + 52.806765201 + ], + [ + 12.7942097, + 52.805197001 + ], + [ + 12.7943152, + 52.803319801 + ], + [ + 12.7943742, + 52.802512201 + ], + [ + 12.7944437, + 52.801867601 + ], + [ + 12.7946149, + 52.800602301 + ], + [ + 12.7947732, + 52.799645501 + ], + [ + 12.7949904, + 52.798427601 + ], + [ + 12.7952453, + 52.797227501 + ], + [ + 12.7956047, + 52.795811701 + ], + [ + 12.7959614, + 52.794645601 + ], + [ + 12.7963476, + 52.793497301 + ], + [ + 12.7966883, + 52.792558201 + ], + [ + 12.7972301, + 52.791233001 + ], + [ + 12.7980133, + 52.789521801 + ], + [ + 12.7986083, + 52.788358701 + ], + [ + 12.7991768, + 52.787319601 + ], + [ + 12.8002562, + 52.785505001 + ], + [ + 12.8009778, + 52.784415701 + ], + [ + 12.801995, + 52.782957901 + ], + [ + 12.8029359, + 52.781708501 + ], + [ + 12.8048109, + 52.779453001 + ], + [ + 12.8058744, + 52.778270401 + ], + [ + 12.807258, + 52.776844201 + ], + [ + 12.8089111, + 52.775257901 + ], + [ + 12.8100483, + 52.774235201 + ], + [ + 12.8112205, + 52.773218201 + ], + [ + 12.8139307, + 52.771062401 + ], + [ + 12.8160285, + 52.769542401 + ], + [ + 12.8181426, + 52.768113301 + ], + [ + 12.8196508, + 52.767156401 + ], + [ + 12.8206465, + 52.766538501 + ], + [ + 12.8219982, + 52.765751601 + ], + [ + 12.8238917, + 52.764678801 + ], + [ + 12.8254438, + 52.763854101 + ], + [ + 12.8271797, + 52.762978301 + ], + [ + 12.8300884, + 52.761598601 + ], + [ + 12.8323314, + 52.760616001 + ], + [ + 12.8339367, + 52.759950401 + ], + [ + 12.8358592, + 52.759191601 + ], + [ + 12.8379235, + 52.758427101 + ], + [ + 12.8397999, + 52.757767001 + ], + [ + 12.8419043, + 52.757069601 + ], + [ + 12.8435595, + 52.756550601 + ], + [ + 12.8446279, + 52.756234301 + ], + [ + 12.8466179, + 52.755674901 + ], + [ + 12.8487455, + 52.755104901 + ], + [ + 12.85044, + 52.754683201 + ], + [ + 12.8530569, + 52.754074701 + ], + [ + 12.8545978, + 52.753736401 + ], + [ + 12.8561488, + 52.753413101 + ], + [ + 12.8619198, + 52.752302001 + ], + [ + 12.8622451, + 52.752237801 + ], + [ + 12.8623194, + 52.752223701 + ], + [ + 12.8644284, + 52.751851701 + ], + [ + 12.8679682, + 52.751235001 + ], + [ + 12.869936587, + 52.750896931 + ] + ] + } + }, + { + "identifier": "2026-016357--vi-bs.2026-04-20_12-00-00-000.devi-bs.2026-04-20_10-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.9127517057703,12.726950616543968,52.83725342780934,12.789525063357488", + "point": "52.9127517057703,12.726950616543968", + "startLcPosition": "38", + "impact": { + "lower": "Fehrbellin", + "upper": "Walsleben-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Berliner Ring", + "title": "A24 | Walsleben-Ost - Fehrbellin", + "coordinate": { + "lat": 52.9127517057703, + "long": 12.726950616543968 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 12:00 bis 15:00 Uhr", + "21.04.26 von 08:00 bis 15:00 Uhr", + "", + "A24: Pritzwalk -> Berliner Ring, zwischen 6.1 km hinter Walsleben-Ost und 3.9 km vor AS Fehrbellin", + "", + "L\u00e4nge: 9.52 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A24 von Fehrbellin (AS) nach Walsleben-Ost (Raststaette) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.726950617, + 52.912751706 + ], + [ + 12.7279784, + 52.912093401 + ], + [ + 12.7290049, + 52.911467001 + ], + [ + 12.729584, + 52.911122801 + ], + [ + 12.7298268, + 52.910978801 + ], + [ + 12.7314867, + 52.909981501 + ], + [ + 12.7321572, + 52.909575201 + ], + [ + 12.7323311, + 52.909471601 + ], + [ + 12.7342871, + 52.908292801 + ], + [ + 12.7350839, + 52.907809501 + ], + [ + 12.7354378, + 52.907585401 + ], + [ + 12.7378207, + 52.906056201 + ], + [ + 12.7393296, + 52.905009601 + ], + [ + 12.7398229, + 52.904649201 + ], + [ + 12.7405654, + 52.904084401 + ], + [ + 12.7415646, + 52.903280801 + ], + [ + 12.742939, + 52.902060401 + ], + [ + 12.7443455, + 52.900789601 + ], + [ + 12.7451359, + 52.900000401 + ], + [ + 12.7458037, + 52.899276401 + ], + [ + 12.7467553, + 52.898169801 + ], + [ + 12.7479029, + 52.896724101 + ], + [ + 12.7484055, + 52.896018401 + ], + [ + 12.7493044, + 52.894670101 + ], + [ + 12.7501167, + 52.893297201 + ], + [ + 12.7506528, + 52.892333101 + ], + [ + 12.752414, + 52.888956101 + ], + [ + 12.7537405, + 52.886380401 + ], + [ + 12.7564243, + 52.881230101 + ], + [ + 12.757561, + 52.879047601 + ], + [ + 12.7578626, + 52.878468401 + ], + [ + 12.7579862, + 52.878230101 + ], + [ + 12.7591686, + 52.875950001 + ], + [ + 12.7596741, + 52.874959101 + ], + [ + 12.7609028, + 52.872617701 + ], + [ + 12.7622087, + 52.870084001 + ], + [ + 12.763858, + 52.866967001 + ], + [ + 12.7639121, + 52.866869601 + ], + [ + 12.7639689, + 52.866767401 + ], + [ + 12.7652631, + 52.864437301 + ], + [ + 12.7665125, + 52.862347001 + ], + [ + 12.7675585, + 52.860719501 + ], + [ + 12.7687709, + 52.859002901 + ], + [ + 12.7693771, + 52.858185101 + ], + [ + 12.7704553, + 52.856824701 + ], + [ + 12.77115, + 52.856000401 + ], + [ + 12.772188, + 52.854821301 + ], + [ + 12.7731858, + 52.853749101 + ], + [ + 12.7743043, + 52.852589401 + ], + [ + 12.7747975, + 52.852101301 + ], + [ + 12.7762379, + 52.850676901 + ], + [ + 12.7777673, + 52.849225201 + ], + [ + 12.7786476, + 52.848408601 + ], + [ + 12.7794553, + 52.847670101 + ], + [ + 12.7808029, + 52.846437901 + ], + [ + 12.7811663, + 52.846107401 + ], + [ + 12.784597, + 52.842957901 + ], + [ + 12.7856233, + 52.841936101 + ], + [ + 12.7866214, + 52.840899301 + ], + [ + 12.7876088, + 52.839768401 + ], + [ + 12.7885361, + 52.838637401 + ], + [ + 12.7894248, + 52.837402301 + ], + [ + 12.789525063, + 52.837253428 + ] + ] + } + }, + { + "identifier": "2026-016849--vi-bs.2026-04-07_07-00-00-000.devi-zus.2026-04-07_07-00-00-000_002.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.9127517057703,12.726950616543968,52.806229716014286,12.79416617108336", + "point": "52.9127517057703,12.726950616543968", + "startLcPosition": "38", + "impact": { + "lower": "Fehrbellin", + "upper": "Walsleben-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Berliner Ring", + "title": "A24 | Walsleben-Ost - Fehrbellin", + "coordinate": { + "lat": 52.9127517057703, + "long": 12.726950616543968 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 15:30 Uhr", + "10.04.26 von 07:00 bis 15:30 Uhr", + "", + "A24: Pritzwalk -> Berliner Ring, zwischen 6.1 km hinter Walsleben-Ost und 0.4 km vor AS Fehrbellin", + "", + "L\u00e4nge: 13.02 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.726950617, + 52.912751706 + ], + [ + 12.7279784, + 52.912093401 + ], + [ + 12.7290049, + 52.911467001 + ], + [ + 12.729584, + 52.911122801 + ], + [ + 12.7298268, + 52.910978801 + ], + [ + 12.7314867, + 52.909981501 + ], + [ + 12.7321572, + 52.909575201 + ], + [ + 12.7323311, + 52.909471601 + ], + [ + 12.7342871, + 52.908292801 + ], + [ + 12.7350839, + 52.907809501 + ], + [ + 12.7354378, + 52.907585401 + ], + [ + 12.7378207, + 52.906056201 + ], + [ + 12.7393296, + 52.905009601 + ], + [ + 12.7398229, + 52.904649201 + ], + [ + 12.7405654, + 52.904084401 + ], + [ + 12.7415646, + 52.903280801 + ], + [ + 12.742939, + 52.902060401 + ], + [ + 12.7443455, + 52.900789601 + ], + [ + 12.7451359, + 52.900000401 + ], + [ + 12.7458037, + 52.899276401 + ], + [ + 12.7467553, + 52.898169801 + ], + [ + 12.7479029, + 52.896724101 + ], + [ + 12.7484055, + 52.896018401 + ], + [ + 12.7493044, + 52.894670101 + ], + [ + 12.7501167, + 52.893297201 + ], + [ + 12.7506528, + 52.892333101 + ], + [ + 12.752414, + 52.888956101 + ], + [ + 12.7537405, + 52.886380401 + ], + [ + 12.7564243, + 52.881230101 + ], + [ + 12.757561, + 52.879047601 + ], + [ + 12.7578626, + 52.878468401 + ], + [ + 12.7579862, + 52.878230101 + ], + [ + 12.7591686, + 52.875950001 + ], + [ + 12.7596741, + 52.874959101 + ], + [ + 12.7609028, + 52.872617701 + ], + [ + 12.7622087, + 52.870084001 + ], + [ + 12.763858, + 52.866967001 + ], + [ + 12.7639121, + 52.866869601 + ], + [ + 12.7639689, + 52.866767401 + ], + [ + 12.7652631, + 52.864437301 + ], + [ + 12.7665125, + 52.862347001 + ], + [ + 12.7675585, + 52.860719501 + ], + [ + 12.7687709, + 52.859002901 + ], + [ + 12.7693771, + 52.858185101 + ], + [ + 12.7704553, + 52.856824701 + ], + [ + 12.77115, + 52.856000401 + ], + [ + 12.772188, + 52.854821301 + ], + [ + 12.7731858, + 52.853749101 + ], + [ + 12.7743043, + 52.852589401 + ], + [ + 12.7747975, + 52.852101301 + ], + [ + 12.7762379, + 52.850676901 + ], + [ + 12.7777673, + 52.849225201 + ], + [ + 12.7786476, + 52.848408601 + ], + [ + 12.7794553, + 52.847670101 + ], + [ + 12.7808029, + 52.846437901 + ], + [ + 12.7811663, + 52.846107401 + ], + [ + 12.784597, + 52.842957901 + ], + [ + 12.7856233, + 52.841936101 + ], + [ + 12.7866214, + 52.840899301 + ], + [ + 12.7876088, + 52.839768401 + ], + [ + 12.7885361, + 52.838637401 + ], + [ + 12.7894248, + 52.837402301 + ], + [ + 12.790118, + 52.836373001 + ], + [ + 12.7909407, + 52.834967701 + ], + [ + 12.7914121, + 52.834109701 + ], + [ + 12.7918527, + 52.833216201 + ], + [ + 12.7924535, + 52.831796001 + ], + [ + 12.7926846, + 52.831205901 + ], + [ + 12.7929834, + 52.830314201 + ], + [ + 12.7932361, + 52.829448601 + ], + [ + 12.7934795, + 52.828564401 + ], + [ + 12.7936697, + 52.827649701 + ], + [ + 12.7938238, + 52.826755201 + ], + [ + 12.7939732, + 52.825572901 + ], + [ + 12.7940433, + 52.824576801 + ], + [ + 12.7940993, + 52.823393001 + ], + [ + 12.7940967, + 52.822718401 + ], + [ + 12.7940999, + 52.822469901 + ], + [ + 12.794118, + 52.819540901 + ], + [ + 12.7941133, + 52.817792501 + ], + [ + 12.7941086, + 52.816663501 + ], + [ + 12.7941287, + 52.808804901 + ], + [ + 12.7941329, + 52.807140801 + ], + [ + 12.7941343, + 52.806940201 + ], + [ + 12.7941436, + 52.806765201 + ], + [ + 12.794166171, + 52.806229716 + ] + ] + } + }, + { + "identifier": "2026-017646--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_006.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.9127517057703,12.726950616543968,52.806229716014286,12.79416617108336", + "point": "52.9127517057703,12.726950616543968", + "startLcPosition": "38", + "impact": { + "lower": "Fehrbellin", + "upper": "Walsleben-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Berliner Ring", + "title": "A24 | Walsleben-Ost - Fehrbellin", + "coordinate": { + "lat": 52.9127517057703, + "long": 12.726950616543968 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:30 Uhr", + "14.04.26 von 07:00 bis 15:30 Uhr", + "15.04.26 von 07:00 bis 15:30 Uhr", + "16.04.26 von 07:00 bis 15:30 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A24: Pritzwalk -> Berliner Ring, zwischen 6.1 km hinter Walsleben-Ost und 0.4 km vor AS Fehrbellin", + "", + "L\u00e4nge: 13.02 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Gr\u00fcnpflege Unimog " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.726950617, + 52.912751706 + ], + [ + 12.7279784, + 52.912093401 + ], + [ + 12.7290049, + 52.911467001 + ], + [ + 12.729584, + 52.911122801 + ], + [ + 12.7298268, + 52.910978801 + ], + [ + 12.7314867, + 52.909981501 + ], + [ + 12.7321572, + 52.909575201 + ], + [ + 12.7323311, + 52.909471601 + ], + [ + 12.7342871, + 52.908292801 + ], + [ + 12.7350839, + 52.907809501 + ], + [ + 12.7354378, + 52.907585401 + ], + [ + 12.7378207, + 52.906056201 + ], + [ + 12.7393296, + 52.905009601 + ], + [ + 12.7398229, + 52.904649201 + ], + [ + 12.7405654, + 52.904084401 + ], + [ + 12.7415646, + 52.903280801 + ], + [ + 12.742939, + 52.902060401 + ], + [ + 12.7443455, + 52.900789601 + ], + [ + 12.7451359, + 52.900000401 + ], + [ + 12.7458037, + 52.899276401 + ], + [ + 12.7467553, + 52.898169801 + ], + [ + 12.7479029, + 52.896724101 + ], + [ + 12.7484055, + 52.896018401 + ], + [ + 12.7493044, + 52.894670101 + ], + [ + 12.7501167, + 52.893297201 + ], + [ + 12.7506528, + 52.892333101 + ], + [ + 12.752414, + 52.888956101 + ], + [ + 12.7537405, + 52.886380401 + ], + [ + 12.7564243, + 52.881230101 + ], + [ + 12.757561, + 52.879047601 + ], + [ + 12.7578626, + 52.878468401 + ], + [ + 12.7579862, + 52.878230101 + ], + [ + 12.7591686, + 52.875950001 + ], + [ + 12.7596741, + 52.874959101 + ], + [ + 12.7609028, + 52.872617701 + ], + [ + 12.7622087, + 52.870084001 + ], + [ + 12.763858, + 52.866967001 + ], + [ + 12.7639121, + 52.866869601 + ], + [ + 12.7639689, + 52.866767401 + ], + [ + 12.7652631, + 52.864437301 + ], + [ + 12.7665125, + 52.862347001 + ], + [ + 12.7675585, + 52.860719501 + ], + [ + 12.7687709, + 52.859002901 + ], + [ + 12.7693771, + 52.858185101 + ], + [ + 12.7704553, + 52.856824701 + ], + [ + 12.77115, + 52.856000401 + ], + [ + 12.772188, + 52.854821301 + ], + [ + 12.7731858, + 52.853749101 + ], + [ + 12.7743043, + 52.852589401 + ], + [ + 12.7747975, + 52.852101301 + ], + [ + 12.7762379, + 52.850676901 + ], + [ + 12.7777673, + 52.849225201 + ], + [ + 12.7786476, + 52.848408601 + ], + [ + 12.7794553, + 52.847670101 + ], + [ + 12.7808029, + 52.846437901 + ], + [ + 12.7811663, + 52.846107401 + ], + [ + 12.784597, + 52.842957901 + ], + [ + 12.7856233, + 52.841936101 + ], + [ + 12.7866214, + 52.840899301 + ], + [ + 12.7876088, + 52.839768401 + ], + [ + 12.7885361, + 52.838637401 + ], + [ + 12.7894248, + 52.837402301 + ], + [ + 12.790118, + 52.836373001 + ], + [ + 12.7909407, + 52.834967701 + ], + [ + 12.7914121, + 52.834109701 + ], + [ + 12.7918527, + 52.833216201 + ], + [ + 12.7924535, + 52.831796001 + ], + [ + 12.7926846, + 52.831205901 + ], + [ + 12.7929834, + 52.830314201 + ], + [ + 12.7932361, + 52.829448601 + ], + [ + 12.7934795, + 52.828564401 + ], + [ + 12.7936697, + 52.827649701 + ], + [ + 12.7938238, + 52.826755201 + ], + [ + 12.7939732, + 52.825572901 + ], + [ + 12.7940433, + 52.824576801 + ], + [ + 12.7940993, + 52.823393001 + ], + [ + 12.7940967, + 52.822718401 + ], + [ + 12.7940999, + 52.822469901 + ], + [ + 12.794118, + 52.819540901 + ], + [ + 12.7941133, + 52.817792501 + ], + [ + 12.7941086, + 52.816663501 + ], + [ + 12.7941287, + 52.808804901 + ], + [ + 12.7941329, + 52.807140801 + ], + [ + 12.7941343, + 52.806940201 + ], + [ + 12.7941436, + 52.806765201 + ], + [ + 12.794166171, + 52.806229716 + ] + ] + } + }, + { + "identifier": "2026-017654--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_005.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.9127517057703,12.726950616543968,52.806229716014286,12.79416617108336", + "point": "52.9127517057703,12.726950616543968", + "startLcPosition": "38", + "impact": { + "lower": "Fehrbellin", + "upper": "Walsleben-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Berliner Ring", + "title": "A24 | Walsleben-Ost - Fehrbellin", + "coordinate": { + "lat": 52.9127517057703, + "long": 12.726950616543968 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:30 Uhr", + "14.04.26 von 07:00 bis 15:30 Uhr", + "15.04.26 von 07:00 bis 15:30 Uhr", + "16.04.26 von 07:00 bis 15:30 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A24: Pritzwalk -> Berliner Ring, zwischen 6.1 km hinter Walsleben-Ost und 0.4 km vor AS Fehrbellin", + "", + "L\u00e4nge: 13.02 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.726950617, + 52.912751706 + ], + [ + 12.7279784, + 52.912093401 + ], + [ + 12.7290049, + 52.911467001 + ], + [ + 12.729584, + 52.911122801 + ], + [ + 12.7298268, + 52.910978801 + ], + [ + 12.7314867, + 52.909981501 + ], + [ + 12.7321572, + 52.909575201 + ], + [ + 12.7323311, + 52.909471601 + ], + [ + 12.7342871, + 52.908292801 + ], + [ + 12.7350839, + 52.907809501 + ], + [ + 12.7354378, + 52.907585401 + ], + [ + 12.7378207, + 52.906056201 + ], + [ + 12.7393296, + 52.905009601 + ], + [ + 12.7398229, + 52.904649201 + ], + [ + 12.7405654, + 52.904084401 + ], + [ + 12.7415646, + 52.903280801 + ], + [ + 12.742939, + 52.902060401 + ], + [ + 12.7443455, + 52.900789601 + ], + [ + 12.7451359, + 52.900000401 + ], + [ + 12.7458037, + 52.899276401 + ], + [ + 12.7467553, + 52.898169801 + ], + [ + 12.7479029, + 52.896724101 + ], + [ + 12.7484055, + 52.896018401 + ], + [ + 12.7493044, + 52.894670101 + ], + [ + 12.7501167, + 52.893297201 + ], + [ + 12.7506528, + 52.892333101 + ], + [ + 12.752414, + 52.888956101 + ], + [ + 12.7537405, + 52.886380401 + ], + [ + 12.7564243, + 52.881230101 + ], + [ + 12.757561, + 52.879047601 + ], + [ + 12.7578626, + 52.878468401 + ], + [ + 12.7579862, + 52.878230101 + ], + [ + 12.7591686, + 52.875950001 + ], + [ + 12.7596741, + 52.874959101 + ], + [ + 12.7609028, + 52.872617701 + ], + [ + 12.7622087, + 52.870084001 + ], + [ + 12.763858, + 52.866967001 + ], + [ + 12.7639121, + 52.866869601 + ], + [ + 12.7639689, + 52.866767401 + ], + [ + 12.7652631, + 52.864437301 + ], + [ + 12.7665125, + 52.862347001 + ], + [ + 12.7675585, + 52.860719501 + ], + [ + 12.7687709, + 52.859002901 + ], + [ + 12.7693771, + 52.858185101 + ], + [ + 12.7704553, + 52.856824701 + ], + [ + 12.77115, + 52.856000401 + ], + [ + 12.772188, + 52.854821301 + ], + [ + 12.7731858, + 52.853749101 + ], + [ + 12.7743043, + 52.852589401 + ], + [ + 12.7747975, + 52.852101301 + ], + [ + 12.7762379, + 52.850676901 + ], + [ + 12.7777673, + 52.849225201 + ], + [ + 12.7786476, + 52.848408601 + ], + [ + 12.7794553, + 52.847670101 + ], + [ + 12.7808029, + 52.846437901 + ], + [ + 12.7811663, + 52.846107401 + ], + [ + 12.784597, + 52.842957901 + ], + [ + 12.7856233, + 52.841936101 + ], + [ + 12.7866214, + 52.840899301 + ], + [ + 12.7876088, + 52.839768401 + ], + [ + 12.7885361, + 52.838637401 + ], + [ + 12.7894248, + 52.837402301 + ], + [ + 12.790118, + 52.836373001 + ], + [ + 12.7909407, + 52.834967701 + ], + [ + 12.7914121, + 52.834109701 + ], + [ + 12.7918527, + 52.833216201 + ], + [ + 12.7924535, + 52.831796001 + ], + [ + 12.7926846, + 52.831205901 + ], + [ + 12.7929834, + 52.830314201 + ], + [ + 12.7932361, + 52.829448601 + ], + [ + 12.7934795, + 52.828564401 + ], + [ + 12.7936697, + 52.827649701 + ], + [ + 12.7938238, + 52.826755201 + ], + [ + 12.7939732, + 52.825572901 + ], + [ + 12.7940433, + 52.824576801 + ], + [ + 12.7940993, + 52.823393001 + ], + [ + 12.7940967, + 52.822718401 + ], + [ + 12.7940999, + 52.822469901 + ], + [ + 12.794118, + 52.819540901 + ], + [ + 12.7941133, + 52.817792501 + ], + [ + 12.7941086, + 52.816663501 + ], + [ + 12.7941287, + 52.808804901 + ], + [ + 12.7941329, + 52.807140801 + ], + [ + 12.7941343, + 52.806940201 + ], + [ + 12.7941436, + 52.806765201 + ], + [ + 12.794166171, + 52.806229716 + ] + ] + } + }, + { + "identifier": "2026-016849--vi-bs.2026-04-07_10-00-00-000.devi-zus.2026-04-07_07-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.806229716014286,12.79416617108336,52.71164782482938,13.019354086739028", + "point": "52.806229716014286,12.79416617108336", + "startLcPosition": "40", + "impact": { + "lower": "Havelland", + "upper": "Neuruppin-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Berliner Ring", + "title": "A24 | Neuruppin-S\u00fcd - Havelland", + "coordinate": { + "lat": 52.806229716014286, + "long": 12.79416617108336 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A24: Pritzwalk -> Berliner Ring, zwischen 5.1 km hinter AS Neuruppin-S\u00fcd und AD Havelland", + "", + "L\u00e4nge: 19.91 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.794166171, + 52.806229716 + ], + [ + 12.7942097, + 52.805197001 + ], + [ + 12.7943152, + 52.803319801 + ], + [ + 12.7943742, + 52.802512201 + ], + [ + 12.7944437, + 52.801867601 + ], + [ + 12.7946149, + 52.800602301 + ], + [ + 12.7947732, + 52.799645501 + ], + [ + 12.7949904, + 52.798427601 + ], + [ + 12.7952453, + 52.797227501 + ], + [ + 12.7956047, + 52.795811701 + ], + [ + 12.7959614, + 52.794645601 + ], + [ + 12.7963476, + 52.793497301 + ], + [ + 12.7966883, + 52.792558201 + ], + [ + 12.7972301, + 52.791233001 + ], + [ + 12.7980133, + 52.789521801 + ], + [ + 12.7986083, + 52.788358701 + ], + [ + 12.7991768, + 52.787319601 + ], + [ + 12.8002562, + 52.785505001 + ], + [ + 12.8009778, + 52.784415701 + ], + [ + 12.801995, + 52.782957901 + ], + [ + 12.8029359, + 52.781708501 + ], + [ + 12.8048109, + 52.779453001 + ], + [ + 12.8058744, + 52.778270401 + ], + [ + 12.807258, + 52.776844201 + ], + [ + 12.8089111, + 52.775257901 + ], + [ + 12.8100483, + 52.774235201 + ], + [ + 12.8112205, + 52.773218201 + ], + [ + 12.8139307, + 52.771062401 + ], + [ + 12.8160285, + 52.769542401 + ], + [ + 12.8181426, + 52.768113301 + ], + [ + 12.8196508, + 52.767156401 + ], + [ + 12.8206465, + 52.766538501 + ], + [ + 12.8219982, + 52.765751601 + ], + [ + 12.8238917, + 52.764678801 + ], + [ + 12.8254438, + 52.763854101 + ], + [ + 12.8271797, + 52.762978301 + ], + [ + 12.8300884, + 52.761598601 + ], + [ + 12.8323314, + 52.760616001 + ], + [ + 12.8339367, + 52.759950401 + ], + [ + 12.8358592, + 52.759191601 + ], + [ + 12.8379235, + 52.758427101 + ], + [ + 12.8397999, + 52.757767001 + ], + [ + 12.8419043, + 52.757069601 + ], + [ + 12.8435595, + 52.756550601 + ], + [ + 12.8446279, + 52.756234301 + ], + [ + 12.8466179, + 52.755674901 + ], + [ + 12.8487455, + 52.755104901 + ], + [ + 12.85044, + 52.754683201 + ], + [ + 12.8530569, + 52.754074701 + ], + [ + 12.8545978, + 52.753736401 + ], + [ + 12.8561488, + 52.753413101 + ], + [ + 12.8619198, + 52.752302001 + ], + [ + 12.8622451, + 52.752237801 + ], + [ + 12.8623194, + 52.752223701 + ], + [ + 12.8644284, + 52.751851701 + ], + [ + 12.8679682, + 52.751235001 + ], + [ + 12.8754279, + 52.749953601 + ], + [ + 12.8788082, + 52.749349201 + ], + [ + 12.8818642, + 52.748761901 + ], + [ + 12.8841565, + 52.748299401 + ], + [ + 12.8868709, + 52.747708201 + ], + [ + 12.8890091, + 52.747202801 + ], + [ + 12.8905342, + 52.746820401 + ], + [ + 12.892426, + 52.746333601 + ], + [ + 12.8943763, + 52.745787201 + ], + [ + 12.8964961, + 52.745171701 + ], + [ + 12.8985234, + 52.744543101 + ], + [ + 12.90056, + 52.743881001 + ], + [ + 12.9023531, + 52.743261701 + ], + [ + 12.9045314, + 52.742474601 + ], + [ + 12.9061151, + 52.741877701 + ], + [ + 12.9073069, + 52.741402401 + ], + [ + 12.9082993, + 52.741009401 + ], + [ + 12.9099438, + 52.740323201 + ], + [ + 12.9114805, + 52.739653701 + ], + [ + 12.9130294, + 52.738960801 + ], + [ + 12.9139787, + 52.738516501 + ], + [ + 12.9153529, + 52.737870401 + ], + [ + 12.9167595, + 52.737198401 + ], + [ + 12.9187536, + 52.736216201 + ], + [ + 12.9198066, + 52.735688201 + ], + [ + 12.9220324, + 52.734571801 + ], + [ + 12.9244595, + 52.733349601 + ], + [ + 12.9295711, + 52.730767001 + ], + [ + 12.9310799, + 52.730006401 + ], + [ + 12.9311684, + 52.729960001 + ], + [ + 12.9321421, + 52.729470201 + ], + [ + 12.9334963, + 52.728789101 + ], + [ + 12.9346825, + 52.728190701 + ], + [ + 12.9374425, + 52.726795301 + ], + [ + 12.9394856, + 52.725796901 + ], + [ + 12.9412952, + 52.724954101 + ], + [ + 12.9429671, + 52.724225801 + ], + [ + 12.944674, + 52.723535601 + ], + [ + 12.9462851, + 52.722943101 + ], + [ + 12.947511, + 52.722507501 + ], + [ + 12.9488887, + 52.722052101 + ], + [ + 12.950355, + 52.721596701 + ], + [ + 12.9516743, + 52.721214801 + ], + [ + 12.9531734, + 52.720806101 + ], + [ + 12.9548266, + 52.720384601 + ], + [ + 12.9562369, + 52.720059301 + ], + [ + 12.957785, + 52.719734001 + ], + [ + 12.9585703, + 52.719578001 + ], + [ + 12.9587291, + 52.719546501 + ], + [ + 12.9592234, + 52.719448301 + ], + [ + 12.9608555, + 52.719161201 + ], + [ + 12.9625764, + 52.718884001 + ], + [ + 12.963246, + 52.718792101 + ], + [ + 12.9640528, + 52.718685101 + ], + [ + 12.9651278, + 52.718548701 + ], + [ + 12.9660614, + 52.718441401 + ], + [ + 12.9672152, + 52.718313201 + ], + [ + 12.9684245, + 52.718192301 + ], + [ + 12.9696663, + 52.718076101 + ], + [ + 12.9713761, + 52.717920001 + ], + [ + 12.9745395, + 52.717646701 + ], + [ + 12.9761004, + 52.717485401 + ], + [ + 12.9769857, + 52.717404501 + ], + [ + 12.9782768, + 52.717275801 + ], + [ + 12.9806, + 52.717046101 + ], + [ + 12.9828298, + 52.716815501 + ], + [ + 12.985229, + 52.716556201 + ], + [ + 12.9863156, + 52.716434401 + ], + [ + 12.9888913, + 52.716137801 + ], + [ + 12.9912893, + 52.715848701 + ], + [ + 12.9938628, + 52.715525701 + ], + [ + 12.9980894, + 52.714986601 + ], + [ + 12.9993223, + 52.714811801 + ], + [ + 13.0012476, + 52.714520701 + ], + [ + 13.0035016, + 52.714199301 + ], + [ + 13.007028, + 52.713670001 + ], + [ + 13.0085551, + 52.713440901 + ], + [ + 13.0100805, + 52.713185701 + ], + [ + 13.0145588, + 52.712458801 + ], + [ + 13.0166105, + 52.712112201 + ], + [ + 13.0168, + 52.712080201 + ], + [ + 13.019354087, + 52.711647825 + ] + ] + } + }, + { + "identifier": "2026-016149--vi-bs.2026-04-20_10-00-00-000.devi-zus.2026-04-20_07-30-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.80445154948279,12.794251595567406,52.717358992559,12.977442250432004", + "point": "52.80445154948279,12.794251595567406", + "startLcPosition": "40", + "impact": { + "lower": "Kremmen", + "upper": "Neuruppin-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Berliner Ring", + "title": "A24 | Neuruppin-S\u00fcd - Kremmen", + "coordinate": { + "lat": 52.80445154948279, + "long": 12.794251595567406 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 10:00 bis 15:00 Uhr", + "21.04.26 von 08:00 bis 15:00 Uhr", + "22.04.26 von 08:00 bis 15:00 Uhr", + "23.04.26 von 08:00 bis 15:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "27.04.26 von 10:00 bis 15:00 Uhr", + "28.04.26 von 08:00 bis 15:00 Uhr", + "29.04.26 von 08:00 bis 15:00 Uhr", + "04.05.26 von 10:00 bis 15:00 Uhr", + "05.05.26 von 08:00 bis 15:00 Uhr", + "06.05.26 von 08:00 bis 15:00 Uhr", + "07.05.26 von 08:00 bis 15:00 Uhr", + "08.05.26 von 08:00 bis 12:00 Uhr", + "", + "A24: Pritzwalk -> Berliner Ring, zwischen 5.3 km hinter AS Neuruppin-S\u00fcd und AS Kremmen", + "", + "L\u00e4nge: 16.8 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A24 von Kremmen (AS) nach Neuruppin-S\u00fcd (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.794251596, + 52.804451549 + ], + [ + 12.7943152, + 52.803319801 + ], + [ + 12.7943742, + 52.802512201 + ], + [ + 12.7944437, + 52.801867601 + ], + [ + 12.7946149, + 52.800602301 + ], + [ + 12.7947732, + 52.799645501 + ], + [ + 12.7949904, + 52.798427601 + ], + [ + 12.7952453, + 52.797227501 + ], + [ + 12.7956047, + 52.795811701 + ], + [ + 12.7959614, + 52.794645601 + ], + [ + 12.7963476, + 52.793497301 + ], + [ + 12.7966883, + 52.792558201 + ], + [ + 12.7972301, + 52.791233001 + ], + [ + 12.7980133, + 52.789521801 + ], + [ + 12.7986083, + 52.788358701 + ], + [ + 12.7991768, + 52.787319601 + ], + [ + 12.8002562, + 52.785505001 + ], + [ + 12.8009778, + 52.784415701 + ], + [ + 12.801995, + 52.782957901 + ], + [ + 12.8029359, + 52.781708501 + ], + [ + 12.8048109, + 52.779453001 + ], + [ + 12.8058744, + 52.778270401 + ], + [ + 12.807258, + 52.776844201 + ], + [ + 12.8089111, + 52.775257901 + ], + [ + 12.8100483, + 52.774235201 + ], + [ + 12.8112205, + 52.773218201 + ], + [ + 12.8139307, + 52.771062401 + ], + [ + 12.8160285, + 52.769542401 + ], + [ + 12.8181426, + 52.768113301 + ], + [ + 12.8196508, + 52.767156401 + ], + [ + 12.8206465, + 52.766538501 + ], + [ + 12.8219982, + 52.765751601 + ], + [ + 12.8238917, + 52.764678801 + ], + [ + 12.8254438, + 52.763854101 + ], + [ + 12.8271797, + 52.762978301 + ], + [ + 12.8300884, + 52.761598601 + ], + [ + 12.8323314, + 52.760616001 + ], + [ + 12.8339367, + 52.759950401 + ], + [ + 12.8358592, + 52.759191601 + ], + [ + 12.8379235, + 52.758427101 + ], + [ + 12.8397999, + 52.757767001 + ], + [ + 12.8419043, + 52.757069601 + ], + [ + 12.8435595, + 52.756550601 + ], + [ + 12.8446279, + 52.756234301 + ], + [ + 12.8466179, + 52.755674901 + ], + [ + 12.8487455, + 52.755104901 + ], + [ + 12.85044, + 52.754683201 + ], + [ + 12.8530569, + 52.754074701 + ], + [ + 12.8545978, + 52.753736401 + ], + [ + 12.8561488, + 52.753413101 + ], + [ + 12.8619198, + 52.752302001 + ], + [ + 12.8622451, + 52.752237801 + ], + [ + 12.8623194, + 52.752223701 + ], + [ + 12.8644284, + 52.751851701 + ], + [ + 12.8679682, + 52.751235001 + ], + [ + 12.8754279, + 52.749953601 + ], + [ + 12.8788082, + 52.749349201 + ], + [ + 12.8818642, + 52.748761901 + ], + [ + 12.8841565, + 52.748299401 + ], + [ + 12.8868709, + 52.747708201 + ], + [ + 12.8890091, + 52.747202801 + ], + [ + 12.8905342, + 52.746820401 + ], + [ + 12.892426, + 52.746333601 + ], + [ + 12.8943763, + 52.745787201 + ], + [ + 12.8964961, + 52.745171701 + ], + [ + 12.8985234, + 52.744543101 + ], + [ + 12.90056, + 52.743881001 + ], + [ + 12.9023531, + 52.743261701 + ], + [ + 12.9045314, + 52.742474601 + ], + [ + 12.9061151, + 52.741877701 + ], + [ + 12.9073069, + 52.741402401 + ], + [ + 12.9082993, + 52.741009401 + ], + [ + 12.9099438, + 52.740323201 + ], + [ + 12.9114805, + 52.739653701 + ], + [ + 12.9130294, + 52.738960801 + ], + [ + 12.9139787, + 52.738516501 + ], + [ + 12.9153529, + 52.737870401 + ], + [ + 12.9167595, + 52.737198401 + ], + [ + 12.9187536, + 52.736216201 + ], + [ + 12.9198066, + 52.735688201 + ], + [ + 12.9220324, + 52.734571801 + ], + [ + 12.9244595, + 52.733349601 + ], + [ + 12.9295711, + 52.730767001 + ], + [ + 12.9310799, + 52.730006401 + ], + [ + 12.9311684, + 52.729960001 + ], + [ + 12.9321421, + 52.729470201 + ], + [ + 12.9334963, + 52.728789101 + ], + [ + 12.9346825, + 52.728190701 + ], + [ + 12.9374425, + 52.726795301 + ], + [ + 12.9394856, + 52.725796901 + ], + [ + 12.9412952, + 52.724954101 + ], + [ + 12.9429671, + 52.724225801 + ], + [ + 12.944674, + 52.723535601 + ], + [ + 12.9462851, + 52.722943101 + ], + [ + 12.947511, + 52.722507501 + ], + [ + 12.9488887, + 52.722052101 + ], + [ + 12.950355, + 52.721596701 + ], + [ + 12.9516743, + 52.721214801 + ], + [ + 12.9531734, + 52.720806101 + ], + [ + 12.9548266, + 52.720384601 + ], + [ + 12.9562369, + 52.720059301 + ], + [ + 12.957785, + 52.719734001 + ], + [ + 12.9585703, + 52.719578001 + ], + [ + 12.9587291, + 52.719546501 + ], + [ + 12.9592234, + 52.719448301 + ], + [ + 12.9608555, + 52.719161201 + ], + [ + 12.9625764, + 52.718884001 + ], + [ + 12.963246, + 52.718792101 + ], + [ + 12.9640528, + 52.718685101 + ], + [ + 12.9651278, + 52.718548701 + ], + [ + 12.9660614, + 52.718441401 + ], + [ + 12.9672152, + 52.718313201 + ], + [ + 12.9684245, + 52.718192301 + ], + [ + 12.9696663, + 52.718076101 + ], + [ + 12.9713761, + 52.717920001 + ], + [ + 12.9745395, + 52.717646701 + ], + [ + 12.9761004, + 52.717485401 + ], + [ + 12.9769857, + 52.717404501 + ], + [ + 12.97744225, + 52.717358993 + ] + ] + } + }, + { + "identifier": "2026-017646--vi-bs.2026-04-13_10-00-00-000.devi-zus.2026-04-13_07-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.806229716014286,12.79416617108336,52.71164782482938,13.019354086739028", + "point": "52.806229716014286,12.79416617108336", + "startLcPosition": "40", + "impact": { + "lower": "Havelland", + "upper": "Neuruppin-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Berliner Ring", + "title": "A24 | Neuruppin-S\u00fcd - Havelland", + "coordinate": { + "lat": 52.806229716014286, + "long": 12.79416617108336 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A24: Pritzwalk -> Berliner Ring, zwischen 5.1 km hinter AS Neuruppin-S\u00fcd und AD Havelland", + "", + "L\u00e4nge: 19.91 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Gr\u00fcnpflege Unimog " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.794166171, + 52.806229716 + ], + [ + 12.7942097, + 52.805197001 + ], + [ + 12.7943152, + 52.803319801 + ], + [ + 12.7943742, + 52.802512201 + ], + [ + 12.7944437, + 52.801867601 + ], + [ + 12.7946149, + 52.800602301 + ], + [ + 12.7947732, + 52.799645501 + ], + [ + 12.7949904, + 52.798427601 + ], + [ + 12.7952453, + 52.797227501 + ], + [ + 12.7956047, + 52.795811701 + ], + [ + 12.7959614, + 52.794645601 + ], + [ + 12.7963476, + 52.793497301 + ], + [ + 12.7966883, + 52.792558201 + ], + [ + 12.7972301, + 52.791233001 + ], + [ + 12.7980133, + 52.789521801 + ], + [ + 12.7986083, + 52.788358701 + ], + [ + 12.7991768, + 52.787319601 + ], + [ + 12.8002562, + 52.785505001 + ], + [ + 12.8009778, + 52.784415701 + ], + [ + 12.801995, + 52.782957901 + ], + [ + 12.8029359, + 52.781708501 + ], + [ + 12.8048109, + 52.779453001 + ], + [ + 12.8058744, + 52.778270401 + ], + [ + 12.807258, + 52.776844201 + ], + [ + 12.8089111, + 52.775257901 + ], + [ + 12.8100483, + 52.774235201 + ], + [ + 12.8112205, + 52.773218201 + ], + [ + 12.8139307, + 52.771062401 + ], + [ + 12.8160285, + 52.769542401 + ], + [ + 12.8181426, + 52.768113301 + ], + [ + 12.8196508, + 52.767156401 + ], + [ + 12.8206465, + 52.766538501 + ], + [ + 12.8219982, + 52.765751601 + ], + [ + 12.8238917, + 52.764678801 + ], + [ + 12.8254438, + 52.763854101 + ], + [ + 12.8271797, + 52.762978301 + ], + [ + 12.8300884, + 52.761598601 + ], + [ + 12.8323314, + 52.760616001 + ], + [ + 12.8339367, + 52.759950401 + ], + [ + 12.8358592, + 52.759191601 + ], + [ + 12.8379235, + 52.758427101 + ], + [ + 12.8397999, + 52.757767001 + ], + [ + 12.8419043, + 52.757069601 + ], + [ + 12.8435595, + 52.756550601 + ], + [ + 12.8446279, + 52.756234301 + ], + [ + 12.8466179, + 52.755674901 + ], + [ + 12.8487455, + 52.755104901 + ], + [ + 12.85044, + 52.754683201 + ], + [ + 12.8530569, + 52.754074701 + ], + [ + 12.8545978, + 52.753736401 + ], + [ + 12.8561488, + 52.753413101 + ], + [ + 12.8619198, + 52.752302001 + ], + [ + 12.8622451, + 52.752237801 + ], + [ + 12.8623194, + 52.752223701 + ], + [ + 12.8644284, + 52.751851701 + ], + [ + 12.8679682, + 52.751235001 + ], + [ + 12.8754279, + 52.749953601 + ], + [ + 12.8788082, + 52.749349201 + ], + [ + 12.8818642, + 52.748761901 + ], + [ + 12.8841565, + 52.748299401 + ], + [ + 12.8868709, + 52.747708201 + ], + [ + 12.8890091, + 52.747202801 + ], + [ + 12.8905342, + 52.746820401 + ], + [ + 12.892426, + 52.746333601 + ], + [ + 12.8943763, + 52.745787201 + ], + [ + 12.8964961, + 52.745171701 + ], + [ + 12.8985234, + 52.744543101 + ], + [ + 12.90056, + 52.743881001 + ], + [ + 12.9023531, + 52.743261701 + ], + [ + 12.9045314, + 52.742474601 + ], + [ + 12.9061151, + 52.741877701 + ], + [ + 12.9073069, + 52.741402401 + ], + [ + 12.9082993, + 52.741009401 + ], + [ + 12.9099438, + 52.740323201 + ], + [ + 12.9114805, + 52.739653701 + ], + [ + 12.9130294, + 52.738960801 + ], + [ + 12.9139787, + 52.738516501 + ], + [ + 12.9153529, + 52.737870401 + ], + [ + 12.9167595, + 52.737198401 + ], + [ + 12.9187536, + 52.736216201 + ], + [ + 12.9198066, + 52.735688201 + ], + [ + 12.9220324, + 52.734571801 + ], + [ + 12.9244595, + 52.733349601 + ], + [ + 12.9295711, + 52.730767001 + ], + [ + 12.9310799, + 52.730006401 + ], + [ + 12.9311684, + 52.729960001 + ], + [ + 12.9321421, + 52.729470201 + ], + [ + 12.9334963, + 52.728789101 + ], + [ + 12.9346825, + 52.728190701 + ], + [ + 12.9374425, + 52.726795301 + ], + [ + 12.9394856, + 52.725796901 + ], + [ + 12.9412952, + 52.724954101 + ], + [ + 12.9429671, + 52.724225801 + ], + [ + 12.944674, + 52.723535601 + ], + [ + 12.9462851, + 52.722943101 + ], + [ + 12.947511, + 52.722507501 + ], + [ + 12.9488887, + 52.722052101 + ], + [ + 12.950355, + 52.721596701 + ], + [ + 12.9516743, + 52.721214801 + ], + [ + 12.9531734, + 52.720806101 + ], + [ + 12.9548266, + 52.720384601 + ], + [ + 12.9562369, + 52.720059301 + ], + [ + 12.957785, + 52.719734001 + ], + [ + 12.9585703, + 52.719578001 + ], + [ + 12.9587291, + 52.719546501 + ], + [ + 12.9592234, + 52.719448301 + ], + [ + 12.9608555, + 52.719161201 + ], + [ + 12.9625764, + 52.718884001 + ], + [ + 12.963246, + 52.718792101 + ], + [ + 12.9640528, + 52.718685101 + ], + [ + 12.9651278, + 52.718548701 + ], + [ + 12.9660614, + 52.718441401 + ], + [ + 12.9672152, + 52.718313201 + ], + [ + 12.9684245, + 52.718192301 + ], + [ + 12.9696663, + 52.718076101 + ], + [ + 12.9713761, + 52.717920001 + ], + [ + 12.9745395, + 52.717646701 + ], + [ + 12.9761004, + 52.717485401 + ], + [ + 12.9769857, + 52.717404501 + ], + [ + 12.9782768, + 52.717275801 + ], + [ + 12.9806, + 52.717046101 + ], + [ + 12.9828298, + 52.716815501 + ], + [ + 12.985229, + 52.716556201 + ], + [ + 12.9863156, + 52.716434401 + ], + [ + 12.9888913, + 52.716137801 + ], + [ + 12.9912893, + 52.715848701 + ], + [ + 12.9938628, + 52.715525701 + ], + [ + 12.9980894, + 52.714986601 + ], + [ + 12.9993223, + 52.714811801 + ], + [ + 13.0012476, + 52.714520701 + ], + [ + 13.0035016, + 52.714199301 + ], + [ + 13.007028, + 52.713670001 + ], + [ + 13.0085551, + 52.713440901 + ], + [ + 13.0100805, + 52.713185701 + ], + [ + 13.0145588, + 52.712458801 + ], + [ + 13.0166105, + 52.712112201 + ], + [ + 13.0168, + 52.712080201 + ], + [ + 13.019354087, + 52.711647825 + ] + ] + } + }, + { + "identifier": "2026-017654--vi-bs.2026-04-13_10-00-00-000.devi-zus.2026-04-13_07-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.806229716014286,12.79416617108336,52.71164782482938,13.019354086739028", + "point": "52.806229716014286,12.79416617108336", + "startLcPosition": "40", + "impact": { + "lower": "Havelland", + "upper": "Neuruppin-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Pritzwalk -> Berliner Ring", + "title": "A24 | Neuruppin-S\u00fcd - Havelland", + "coordinate": { + "lat": 52.806229716014286, + "long": 12.79416617108336 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A24: Pritzwalk -> Berliner Ring, zwischen 5.1 km hinter AS Neuruppin-S\u00fcd und AD Havelland", + "", + "L\u00e4nge: 19.91 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.794166171, + 52.806229716 + ], + [ + 12.7942097, + 52.805197001 + ], + [ + 12.7943152, + 52.803319801 + ], + [ + 12.7943742, + 52.802512201 + ], + [ + 12.7944437, + 52.801867601 + ], + [ + 12.7946149, + 52.800602301 + ], + [ + 12.7947732, + 52.799645501 + ], + [ + 12.7949904, + 52.798427601 + ], + [ + 12.7952453, + 52.797227501 + ], + [ + 12.7956047, + 52.795811701 + ], + [ + 12.7959614, + 52.794645601 + ], + [ + 12.7963476, + 52.793497301 + ], + [ + 12.7966883, + 52.792558201 + ], + [ + 12.7972301, + 52.791233001 + ], + [ + 12.7980133, + 52.789521801 + ], + [ + 12.7986083, + 52.788358701 + ], + [ + 12.7991768, + 52.787319601 + ], + [ + 12.8002562, + 52.785505001 + ], + [ + 12.8009778, + 52.784415701 + ], + [ + 12.801995, + 52.782957901 + ], + [ + 12.8029359, + 52.781708501 + ], + [ + 12.8048109, + 52.779453001 + ], + [ + 12.8058744, + 52.778270401 + ], + [ + 12.807258, + 52.776844201 + ], + [ + 12.8089111, + 52.775257901 + ], + [ + 12.8100483, + 52.774235201 + ], + [ + 12.8112205, + 52.773218201 + ], + [ + 12.8139307, + 52.771062401 + ], + [ + 12.8160285, + 52.769542401 + ], + [ + 12.8181426, + 52.768113301 + ], + [ + 12.8196508, + 52.767156401 + ], + [ + 12.8206465, + 52.766538501 + ], + [ + 12.8219982, + 52.765751601 + ], + [ + 12.8238917, + 52.764678801 + ], + [ + 12.8254438, + 52.763854101 + ], + [ + 12.8271797, + 52.762978301 + ], + [ + 12.8300884, + 52.761598601 + ], + [ + 12.8323314, + 52.760616001 + ], + [ + 12.8339367, + 52.759950401 + ], + [ + 12.8358592, + 52.759191601 + ], + [ + 12.8379235, + 52.758427101 + ], + [ + 12.8397999, + 52.757767001 + ], + [ + 12.8419043, + 52.757069601 + ], + [ + 12.8435595, + 52.756550601 + ], + [ + 12.8446279, + 52.756234301 + ], + [ + 12.8466179, + 52.755674901 + ], + [ + 12.8487455, + 52.755104901 + ], + [ + 12.85044, + 52.754683201 + ], + [ + 12.8530569, + 52.754074701 + ], + [ + 12.8545978, + 52.753736401 + ], + [ + 12.8561488, + 52.753413101 + ], + [ + 12.8619198, + 52.752302001 + ], + [ + 12.8622451, + 52.752237801 + ], + [ + 12.8623194, + 52.752223701 + ], + [ + 12.8644284, + 52.751851701 + ], + [ + 12.8679682, + 52.751235001 + ], + [ + 12.8754279, + 52.749953601 + ], + [ + 12.8788082, + 52.749349201 + ], + [ + 12.8818642, + 52.748761901 + ], + [ + 12.8841565, + 52.748299401 + ], + [ + 12.8868709, + 52.747708201 + ], + [ + 12.8890091, + 52.747202801 + ], + [ + 12.8905342, + 52.746820401 + ], + [ + 12.892426, + 52.746333601 + ], + [ + 12.8943763, + 52.745787201 + ], + [ + 12.8964961, + 52.745171701 + ], + [ + 12.8985234, + 52.744543101 + ], + [ + 12.90056, + 52.743881001 + ], + [ + 12.9023531, + 52.743261701 + ], + [ + 12.9045314, + 52.742474601 + ], + [ + 12.9061151, + 52.741877701 + ], + [ + 12.9073069, + 52.741402401 + ], + [ + 12.9082993, + 52.741009401 + ], + [ + 12.9099438, + 52.740323201 + ], + [ + 12.9114805, + 52.739653701 + ], + [ + 12.9130294, + 52.738960801 + ], + [ + 12.9139787, + 52.738516501 + ], + [ + 12.9153529, + 52.737870401 + ], + [ + 12.9167595, + 52.737198401 + ], + [ + 12.9187536, + 52.736216201 + ], + [ + 12.9198066, + 52.735688201 + ], + [ + 12.9220324, + 52.734571801 + ], + [ + 12.9244595, + 52.733349601 + ], + [ + 12.9295711, + 52.730767001 + ], + [ + 12.9310799, + 52.730006401 + ], + [ + 12.9311684, + 52.729960001 + ], + [ + 12.9321421, + 52.729470201 + ], + [ + 12.9334963, + 52.728789101 + ], + [ + 12.9346825, + 52.728190701 + ], + [ + 12.9374425, + 52.726795301 + ], + [ + 12.9394856, + 52.725796901 + ], + [ + 12.9412952, + 52.724954101 + ], + [ + 12.9429671, + 52.724225801 + ], + [ + 12.944674, + 52.723535601 + ], + [ + 12.9462851, + 52.722943101 + ], + [ + 12.947511, + 52.722507501 + ], + [ + 12.9488887, + 52.722052101 + ], + [ + 12.950355, + 52.721596701 + ], + [ + 12.9516743, + 52.721214801 + ], + [ + 12.9531734, + 52.720806101 + ], + [ + 12.9548266, + 52.720384601 + ], + [ + 12.9562369, + 52.720059301 + ], + [ + 12.957785, + 52.719734001 + ], + [ + 12.9585703, + 52.719578001 + ], + [ + 12.9587291, + 52.719546501 + ], + [ + 12.9592234, + 52.719448301 + ], + [ + 12.9608555, + 52.719161201 + ], + [ + 12.9625764, + 52.718884001 + ], + [ + 12.963246, + 52.718792101 + ], + [ + 12.9640528, + 52.718685101 + ], + [ + 12.9651278, + 52.718548701 + ], + [ + 12.9660614, + 52.718441401 + ], + [ + 12.9672152, + 52.718313201 + ], + [ + 12.9684245, + 52.718192301 + ], + [ + 12.9696663, + 52.718076101 + ], + [ + 12.9713761, + 52.717920001 + ], + [ + 12.9745395, + 52.717646701 + ], + [ + 12.9761004, + 52.717485401 + ], + [ + 12.9769857, + 52.717404501 + ], + [ + 12.9782768, + 52.717275801 + ], + [ + 12.9806, + 52.717046101 + ], + [ + 12.9828298, + 52.716815501 + ], + [ + 12.985229, + 52.716556201 + ], + [ + 12.9863156, + 52.716434401 + ], + [ + 12.9888913, + 52.716137801 + ], + [ + 12.9912893, + 52.715848701 + ], + [ + 12.9938628, + 52.715525701 + ], + [ + 12.9980894, + 52.714986601 + ], + [ + 12.9993223, + 52.714811801 + ], + [ + 13.0012476, + 52.714520701 + ], + [ + 13.0035016, + 52.714199301 + ], + [ + 13.007028, + 52.713670001 + ], + [ + 13.0085551, + 52.713440901 + ], + [ + 13.0100805, + 52.713185701 + ], + [ + 13.0145588, + 52.712458801 + ], + [ + 13.0166105, + 52.712112201 + ], + [ + 13.0168, + 52.712080201 + ], + [ + 13.019354087, + 52.711647825 + ] + ] + } + }, + { + "identifier": "2026-016357--vi-bs.2026-04-21_08-00-00-000.devi-bs.2026-04-20_10-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.83728682900562,12.7896998591098,52.912817667053204,12.727087206452259", + "point": "52.83728682900562,12.7896998591098", + "startLcPosition": "41", + "impact": { + "lower": "Walsleben-Ost", + "upper": "Fehrbellin", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Pritzwalk", + "title": "A24 | Fehrbellin - Walsleben-Ost", + "coordinate": { + "lat": 52.83728682900562, + "long": 12.7896998591098 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 08:00 bis 15:00 Uhr", + "22.04.26 von 08:00 bis 15:00 Uhr", + "", + "A24: Berliner Ring -> Pritzwalk, zwischen 3.9 km hinter AS Fehrbellin und 6.1 km vor Walsleben-Ost", + "", + "L\u00e4nge: 9.52 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A24 von Fehrbellin (AS) nach Walsleben-Ost (Raststaette) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.789699859, + 52.837286829 + ], + [ + 12.7895973, + 52.837439501 + ], + [ + 12.7886529, + 52.838737901 + ], + [ + 12.7877858, + 52.839813201 + ], + [ + 12.7867807, + 52.840948401 + ], + [ + 12.7857486, + 52.842035301 + ], + [ + 12.7847098, + 52.843033601 + ], + [ + 12.7829219, + 52.844711801 + ], + [ + 12.7824057, + 52.845180301 + ], + [ + 12.7809421, + 52.846503701 + ], + [ + 12.7787419, + 52.848520901 + ], + [ + 12.7782711, + 52.848944301 + ], + [ + 12.777238, + 52.849927701 + ], + [ + 12.7768438, + 52.850302901 + ], + [ + 12.7757795, + 52.851329301 + ], + [ + 12.7744518, + 52.852650901 + ], + [ + 12.7733602, + 52.853781501 + ], + [ + 12.772357, + 52.854861801 + ], + [ + 12.7712895, + 52.856073201 + ], + [ + 12.7705868, + 52.856897601 + ], + [ + 12.76953, + 52.858233701 + ], + [ + 12.7689104, + 52.859075801 + ], + [ + 12.7677168, + 52.860773001 + ], + [ + 12.76666, + 52.862402101 + ], + [ + 12.7654117, + 52.864482201 + ], + [ + 12.764133, + 52.866800001 + ], + [ + 12.7640765, + 52.866902301 + ], + [ + 12.7640314, + 52.866984101 + ], + [ + 12.7623928, + 52.870099001 + ], + [ + 12.7610727, + 52.872645401 + ], + [ + 12.7600185, + 52.874685201 + ], + [ + 12.7593491, + 52.875967101 + ], + [ + 12.7583003, + 52.877954601 + ], + [ + 12.7565814, + 52.881300501 + ], + [ + 12.7539485, + 52.886362001 + ], + [ + 12.7533438, + 52.887526101 + ], + [ + 12.7525242, + 52.889120101 + ], + [ + 12.750805, + 52.892387601 + ], + [ + 12.7502936, + 52.893304701 + ], + [ + 12.7494177, + 52.894777901 + ], + [ + 12.7485842, + 52.896049401 + ], + [ + 12.7480498, + 52.896790201 + ], + [ + 12.7469313, + 52.898208901 + ], + [ + 12.7459111, + 52.899377801 + ], + [ + 12.7452573, + 52.900075001 + ], + [ + 12.7444945, + 52.900846601 + ], + [ + 12.7436765, + 52.901625801 + ], + [ + 12.7430077, + 52.902239701 + ], + [ + 12.742134, + 52.903000601 + ], + [ + 12.7413287, + 52.903654401 + ], + [ + 12.740946, + 52.903966101 + ], + [ + 12.7393373, + 52.905178001 + ], + [ + 12.7386763, + 52.905639801 + ], + [ + 12.7382607, + 52.905930001 + ], + [ + 12.7377839, + 52.906260001 + ], + [ + 12.7371963, + 52.906635801 + ], + [ + 12.7352972, + 52.907832101 + ], + [ + 12.7324669, + 52.909554501 + ], + [ + 12.732293, + 52.909658101 + ], + [ + 12.7316147, + 52.910056201 + ], + [ + 12.7299581, + 52.911049901 + ], + [ + 12.7297132, + 52.911197001 + ], + [ + 12.7291695, + 52.911523401 + ], + [ + 12.7280556, + 52.912202501 + ], + [ + 12.727087206, + 52.912817667 + ] + ] + } + }, + { + "identifier": "2026-016357--vi-bs.2026-04-20_10-00-00-000.devi-bs.2026-04-20_10-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.83728682900562,12.7896998591098,52.912817667053204,12.727087206452259", + "point": "52.83728682900562,12.7896998591098", + "startLcPosition": "41", + "impact": { + "lower": "Walsleben-Ost", + "upper": "Fehrbellin", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Pritzwalk", + "title": "A24 | Fehrbellin - Walsleben-Ost", + "coordinate": { + "lat": 52.83728682900562, + "long": 12.7896998591098 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 10:00 bis 15:00 Uhr", + "21.04.26 von 08:00 bis 15:00 Uhr", + "", + "A24: Berliner Ring -> Pritzwalk, zwischen 3.9 km hinter AS Fehrbellin und 6.1 km vor Walsleben-Ost", + "", + "L\u00e4nge: 9.52 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A24 von Fehrbellin (AS) nach Walsleben-Ost (Raststaette) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.789699859, + 52.837286829 + ], + [ + 12.7895973, + 52.837439501 + ], + [ + 12.7886529, + 52.838737901 + ], + [ + 12.7877858, + 52.839813201 + ], + [ + 12.7867807, + 52.840948401 + ], + [ + 12.7857486, + 52.842035301 + ], + [ + 12.7847098, + 52.843033601 + ], + [ + 12.7829219, + 52.844711801 + ], + [ + 12.7824057, + 52.845180301 + ], + [ + 12.7809421, + 52.846503701 + ], + [ + 12.7787419, + 52.848520901 + ], + [ + 12.7782711, + 52.848944301 + ], + [ + 12.777238, + 52.849927701 + ], + [ + 12.7768438, + 52.850302901 + ], + [ + 12.7757795, + 52.851329301 + ], + [ + 12.7744518, + 52.852650901 + ], + [ + 12.7733602, + 52.853781501 + ], + [ + 12.772357, + 52.854861801 + ], + [ + 12.7712895, + 52.856073201 + ], + [ + 12.7705868, + 52.856897601 + ], + [ + 12.76953, + 52.858233701 + ], + [ + 12.7689104, + 52.859075801 + ], + [ + 12.7677168, + 52.860773001 + ], + [ + 12.76666, + 52.862402101 + ], + [ + 12.7654117, + 52.864482201 + ], + [ + 12.764133, + 52.866800001 + ], + [ + 12.7640765, + 52.866902301 + ], + [ + 12.7640314, + 52.866984101 + ], + [ + 12.7623928, + 52.870099001 + ], + [ + 12.7610727, + 52.872645401 + ], + [ + 12.7600185, + 52.874685201 + ], + [ + 12.7593491, + 52.875967101 + ], + [ + 12.7583003, + 52.877954601 + ], + [ + 12.7565814, + 52.881300501 + ], + [ + 12.7539485, + 52.886362001 + ], + [ + 12.7533438, + 52.887526101 + ], + [ + 12.7525242, + 52.889120101 + ], + [ + 12.750805, + 52.892387601 + ], + [ + 12.7502936, + 52.893304701 + ], + [ + 12.7494177, + 52.894777901 + ], + [ + 12.7485842, + 52.896049401 + ], + [ + 12.7480498, + 52.896790201 + ], + [ + 12.7469313, + 52.898208901 + ], + [ + 12.7459111, + 52.899377801 + ], + [ + 12.7452573, + 52.900075001 + ], + [ + 12.7444945, + 52.900846601 + ], + [ + 12.7436765, + 52.901625801 + ], + [ + 12.7430077, + 52.902239701 + ], + [ + 12.742134, + 52.903000601 + ], + [ + 12.7413287, + 52.903654401 + ], + [ + 12.740946, + 52.903966101 + ], + [ + 12.7393373, + 52.905178001 + ], + [ + 12.7386763, + 52.905639801 + ], + [ + 12.7382607, + 52.905930001 + ], + [ + 12.7377839, + 52.906260001 + ], + [ + 12.7371963, + 52.906635801 + ], + [ + 12.7352972, + 52.907832101 + ], + [ + 12.7324669, + 52.909554501 + ], + [ + 12.732293, + 52.909658101 + ], + [ + 12.7316147, + 52.910056201 + ], + [ + 12.7299581, + 52.911049901 + ], + [ + 12.7297132, + 52.911197001 + ], + [ + 12.7291695, + 52.911523401 + ], + [ + 12.7280556, + 52.912202501 + ], + [ + 12.727087206, + 52.912817667 + ] + ] + } + }, + { + "identifier": "2026-016849--vi-bs.2026-04-07_07-00-00-000.devi-zus.2026-04-07_07-00-00-000_002.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.80623211373236,12.794350289960606,52.912817667053204,12.727087206452259", + "point": "52.80623211373236,12.794350289960606", + "startLcPosition": "41", + "impact": { + "lower": "Walsleben-Ost", + "upper": "Fehrbellin", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Pritzwalk", + "title": "A24 | Fehrbellin - Walsleben-Ost", + "coordinate": { + "lat": 52.80623211373236, + "long": 12.794350289960606 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 15:30 Uhr", + "10.04.26 von 07:00 bis 15:30 Uhr", + "", + "A24: Berliner Ring -> Pritzwalk, zwischen 0.4 km hinter AS Fehrbellin und 6.1 km vor Walsleben-Ost", + "", + "L\u00e4nge: 13.02 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.79435029, + 52.806232114 + ], + [ + 12.7943302, + 52.806890701 + ], + [ + 12.7943233, + 52.807096001 + ], + [ + 12.794315, + 52.807549701 + ], + [ + 12.7943057, + 52.808575301 + ], + [ + 12.7942908, + 52.816735501 + ], + [ + 12.7943001, + 52.817795301 + ], + [ + 12.7943001, + 52.819538001 + ], + [ + 12.7942786, + 52.822471501 + ], + [ + 12.7942765, + 52.822704901 + ], + [ + 12.7942721, + 52.823404301 + ], + [ + 12.7942254, + 52.824600801 + ], + [ + 12.794146, + 52.825568701 + ], + [ + 12.7940059, + 52.826746801 + ], + [ + 12.7938471, + 52.827659601 + ], + [ + 12.7936489, + 52.828573701 + ], + [ + 12.7934209, + 52.829452401 + ], + [ + 12.7931652, + 52.830323501 + ], + [ + 12.7928602, + 52.831217101 + ], + [ + 12.7926168, + 52.831853701 + ], + [ + 12.7920129, + 52.833285101 + ], + [ + 12.7915785, + 52.834150601 + ], + [ + 12.7911194, + 52.834993801 + ], + [ + 12.7902937, + 52.836402801 + ], + [ + 12.7895973, + 52.837439501 + ], + [ + 12.7886529, + 52.838737901 + ], + [ + 12.7877858, + 52.839813201 + ], + [ + 12.7867807, + 52.840948401 + ], + [ + 12.7857486, + 52.842035301 + ], + [ + 12.7847098, + 52.843033601 + ], + [ + 12.7829219, + 52.844711801 + ], + [ + 12.7824057, + 52.845180301 + ], + [ + 12.7809421, + 52.846503701 + ], + [ + 12.7787419, + 52.848520901 + ], + [ + 12.7782711, + 52.848944301 + ], + [ + 12.777238, + 52.849927701 + ], + [ + 12.7768438, + 52.850302901 + ], + [ + 12.7757795, + 52.851329301 + ], + [ + 12.7744518, + 52.852650901 + ], + [ + 12.7733602, + 52.853781501 + ], + [ + 12.772357, + 52.854861801 + ], + [ + 12.7712895, + 52.856073201 + ], + [ + 12.7705868, + 52.856897601 + ], + [ + 12.76953, + 52.858233701 + ], + [ + 12.7689104, + 52.859075801 + ], + [ + 12.7677168, + 52.860773001 + ], + [ + 12.76666, + 52.862402101 + ], + [ + 12.7654117, + 52.864482201 + ], + [ + 12.764133, + 52.866800001 + ], + [ + 12.7640765, + 52.866902301 + ], + [ + 12.7640314, + 52.866984101 + ], + [ + 12.7623928, + 52.870099001 + ], + [ + 12.7610727, + 52.872645401 + ], + [ + 12.7600185, + 52.874685201 + ], + [ + 12.7593491, + 52.875967101 + ], + [ + 12.7583003, + 52.877954601 + ], + [ + 12.7565814, + 52.881300501 + ], + [ + 12.7539485, + 52.886362001 + ], + [ + 12.7533438, + 52.887526101 + ], + [ + 12.7525242, + 52.889120101 + ], + [ + 12.750805, + 52.892387601 + ], + [ + 12.7502936, + 52.893304701 + ], + [ + 12.7494177, + 52.894777901 + ], + [ + 12.7485842, + 52.896049401 + ], + [ + 12.7480498, + 52.896790201 + ], + [ + 12.7469313, + 52.898208901 + ], + [ + 12.7459111, + 52.899377801 + ], + [ + 12.7452573, + 52.900075001 + ], + [ + 12.7444945, + 52.900846601 + ], + [ + 12.7436765, + 52.901625801 + ], + [ + 12.7430077, + 52.902239701 + ], + [ + 12.742134, + 52.903000601 + ], + [ + 12.7413287, + 52.903654401 + ], + [ + 12.740946, + 52.903966101 + ], + [ + 12.7393373, + 52.905178001 + ], + [ + 12.7386763, + 52.905639801 + ], + [ + 12.7382607, + 52.905930001 + ], + [ + 12.7377839, + 52.906260001 + ], + [ + 12.7371963, + 52.906635801 + ], + [ + 12.7352972, + 52.907832101 + ], + [ + 12.7324669, + 52.909554501 + ], + [ + 12.732293, + 52.909658101 + ], + [ + 12.7316147, + 52.910056201 + ], + [ + 12.7299581, + 52.911049901 + ], + [ + 12.7297132, + 52.911197001 + ], + [ + 12.7291695, + 52.911523401 + ], + [ + 12.7280556, + 52.912202501 + ], + [ + 12.727087206, + 52.912817667 + ] + ] + } + }, + { + "identifier": "2026-017646--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_006.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.80623211373236,12.794350289960606,52.912817667053204,12.727087206452259", + "point": "52.80623211373236,12.794350289960606", + "startLcPosition": "41", + "impact": { + "lower": "Walsleben-Ost", + "upper": "Fehrbellin", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Pritzwalk", + "title": "A24 | Fehrbellin - Walsleben-Ost", + "coordinate": { + "lat": 52.80623211373236, + "long": 12.794350289960606 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:30 Uhr", + "14.04.26 von 07:00 bis 15:30 Uhr", + "15.04.26 von 07:00 bis 15:30 Uhr", + "16.04.26 von 07:00 bis 15:30 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A24: Berliner Ring -> Pritzwalk, zwischen 0.4 km hinter AS Fehrbellin und 6.1 km vor Walsleben-Ost", + "", + "L\u00e4nge: 13.02 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Gr\u00fcnpflege Unimog " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.79435029, + 52.806232114 + ], + [ + 12.7943302, + 52.806890701 + ], + [ + 12.7943233, + 52.807096001 + ], + [ + 12.794315, + 52.807549701 + ], + [ + 12.7943057, + 52.808575301 + ], + [ + 12.7942908, + 52.816735501 + ], + [ + 12.7943001, + 52.817795301 + ], + [ + 12.7943001, + 52.819538001 + ], + [ + 12.7942786, + 52.822471501 + ], + [ + 12.7942765, + 52.822704901 + ], + [ + 12.7942721, + 52.823404301 + ], + [ + 12.7942254, + 52.824600801 + ], + [ + 12.794146, + 52.825568701 + ], + [ + 12.7940059, + 52.826746801 + ], + [ + 12.7938471, + 52.827659601 + ], + [ + 12.7936489, + 52.828573701 + ], + [ + 12.7934209, + 52.829452401 + ], + [ + 12.7931652, + 52.830323501 + ], + [ + 12.7928602, + 52.831217101 + ], + [ + 12.7926168, + 52.831853701 + ], + [ + 12.7920129, + 52.833285101 + ], + [ + 12.7915785, + 52.834150601 + ], + [ + 12.7911194, + 52.834993801 + ], + [ + 12.7902937, + 52.836402801 + ], + [ + 12.7895973, + 52.837439501 + ], + [ + 12.7886529, + 52.838737901 + ], + [ + 12.7877858, + 52.839813201 + ], + [ + 12.7867807, + 52.840948401 + ], + [ + 12.7857486, + 52.842035301 + ], + [ + 12.7847098, + 52.843033601 + ], + [ + 12.7829219, + 52.844711801 + ], + [ + 12.7824057, + 52.845180301 + ], + [ + 12.7809421, + 52.846503701 + ], + [ + 12.7787419, + 52.848520901 + ], + [ + 12.7782711, + 52.848944301 + ], + [ + 12.777238, + 52.849927701 + ], + [ + 12.7768438, + 52.850302901 + ], + [ + 12.7757795, + 52.851329301 + ], + [ + 12.7744518, + 52.852650901 + ], + [ + 12.7733602, + 52.853781501 + ], + [ + 12.772357, + 52.854861801 + ], + [ + 12.7712895, + 52.856073201 + ], + [ + 12.7705868, + 52.856897601 + ], + [ + 12.76953, + 52.858233701 + ], + [ + 12.7689104, + 52.859075801 + ], + [ + 12.7677168, + 52.860773001 + ], + [ + 12.76666, + 52.862402101 + ], + [ + 12.7654117, + 52.864482201 + ], + [ + 12.764133, + 52.866800001 + ], + [ + 12.7640765, + 52.866902301 + ], + [ + 12.7640314, + 52.866984101 + ], + [ + 12.7623928, + 52.870099001 + ], + [ + 12.7610727, + 52.872645401 + ], + [ + 12.7600185, + 52.874685201 + ], + [ + 12.7593491, + 52.875967101 + ], + [ + 12.7583003, + 52.877954601 + ], + [ + 12.7565814, + 52.881300501 + ], + [ + 12.7539485, + 52.886362001 + ], + [ + 12.7533438, + 52.887526101 + ], + [ + 12.7525242, + 52.889120101 + ], + [ + 12.750805, + 52.892387601 + ], + [ + 12.7502936, + 52.893304701 + ], + [ + 12.7494177, + 52.894777901 + ], + [ + 12.7485842, + 52.896049401 + ], + [ + 12.7480498, + 52.896790201 + ], + [ + 12.7469313, + 52.898208901 + ], + [ + 12.7459111, + 52.899377801 + ], + [ + 12.7452573, + 52.900075001 + ], + [ + 12.7444945, + 52.900846601 + ], + [ + 12.7436765, + 52.901625801 + ], + [ + 12.7430077, + 52.902239701 + ], + [ + 12.742134, + 52.903000601 + ], + [ + 12.7413287, + 52.903654401 + ], + [ + 12.740946, + 52.903966101 + ], + [ + 12.7393373, + 52.905178001 + ], + [ + 12.7386763, + 52.905639801 + ], + [ + 12.7382607, + 52.905930001 + ], + [ + 12.7377839, + 52.906260001 + ], + [ + 12.7371963, + 52.906635801 + ], + [ + 12.7352972, + 52.907832101 + ], + [ + 12.7324669, + 52.909554501 + ], + [ + 12.732293, + 52.909658101 + ], + [ + 12.7316147, + 52.910056201 + ], + [ + 12.7299581, + 52.911049901 + ], + [ + 12.7297132, + 52.911197001 + ], + [ + 12.7291695, + 52.911523401 + ], + [ + 12.7280556, + 52.912202501 + ], + [ + 12.727087206, + 52.912817667 + ] + ] + } + }, + { + "identifier": "2026-017654--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_005.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.80623211373236,12.794350289960606,52.912817667053204,12.727087206452259", + "point": "52.80623211373236,12.794350289960606", + "startLcPosition": "41", + "impact": { + "lower": "Walsleben-Ost", + "upper": "Fehrbellin", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Pritzwalk", + "title": "A24 | Fehrbellin - Walsleben-Ost", + "coordinate": { + "lat": 52.80623211373236, + "long": 12.794350289960606 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:30 Uhr", + "14.04.26 von 07:00 bis 15:30 Uhr", + "15.04.26 von 07:00 bis 15:30 Uhr", + "16.04.26 von 07:00 bis 15:30 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A24: Berliner Ring -> Pritzwalk, zwischen 0.4 km hinter AS Fehrbellin und 6.1 km vor Walsleben-Ost", + "", + "L\u00e4nge: 13.02 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.79435029, + 52.806232114 + ], + [ + 12.7943302, + 52.806890701 + ], + [ + 12.7943233, + 52.807096001 + ], + [ + 12.794315, + 52.807549701 + ], + [ + 12.7943057, + 52.808575301 + ], + [ + 12.7942908, + 52.816735501 + ], + [ + 12.7943001, + 52.817795301 + ], + [ + 12.7943001, + 52.819538001 + ], + [ + 12.7942786, + 52.822471501 + ], + [ + 12.7942765, + 52.822704901 + ], + [ + 12.7942721, + 52.823404301 + ], + [ + 12.7942254, + 52.824600801 + ], + [ + 12.794146, + 52.825568701 + ], + [ + 12.7940059, + 52.826746801 + ], + [ + 12.7938471, + 52.827659601 + ], + [ + 12.7936489, + 52.828573701 + ], + [ + 12.7934209, + 52.829452401 + ], + [ + 12.7931652, + 52.830323501 + ], + [ + 12.7928602, + 52.831217101 + ], + [ + 12.7926168, + 52.831853701 + ], + [ + 12.7920129, + 52.833285101 + ], + [ + 12.7915785, + 52.834150601 + ], + [ + 12.7911194, + 52.834993801 + ], + [ + 12.7902937, + 52.836402801 + ], + [ + 12.7895973, + 52.837439501 + ], + [ + 12.7886529, + 52.838737901 + ], + [ + 12.7877858, + 52.839813201 + ], + [ + 12.7867807, + 52.840948401 + ], + [ + 12.7857486, + 52.842035301 + ], + [ + 12.7847098, + 52.843033601 + ], + [ + 12.7829219, + 52.844711801 + ], + [ + 12.7824057, + 52.845180301 + ], + [ + 12.7809421, + 52.846503701 + ], + [ + 12.7787419, + 52.848520901 + ], + [ + 12.7782711, + 52.848944301 + ], + [ + 12.777238, + 52.849927701 + ], + [ + 12.7768438, + 52.850302901 + ], + [ + 12.7757795, + 52.851329301 + ], + [ + 12.7744518, + 52.852650901 + ], + [ + 12.7733602, + 52.853781501 + ], + [ + 12.772357, + 52.854861801 + ], + [ + 12.7712895, + 52.856073201 + ], + [ + 12.7705868, + 52.856897601 + ], + [ + 12.76953, + 52.858233701 + ], + [ + 12.7689104, + 52.859075801 + ], + [ + 12.7677168, + 52.860773001 + ], + [ + 12.76666, + 52.862402101 + ], + [ + 12.7654117, + 52.864482201 + ], + [ + 12.764133, + 52.866800001 + ], + [ + 12.7640765, + 52.866902301 + ], + [ + 12.7640314, + 52.866984101 + ], + [ + 12.7623928, + 52.870099001 + ], + [ + 12.7610727, + 52.872645401 + ], + [ + 12.7600185, + 52.874685201 + ], + [ + 12.7593491, + 52.875967101 + ], + [ + 12.7583003, + 52.877954601 + ], + [ + 12.7565814, + 52.881300501 + ], + [ + 12.7539485, + 52.886362001 + ], + [ + 12.7533438, + 52.887526101 + ], + [ + 12.7525242, + 52.889120101 + ], + [ + 12.750805, + 52.892387601 + ], + [ + 12.7502936, + 52.893304701 + ], + [ + 12.7494177, + 52.894777901 + ], + [ + 12.7485842, + 52.896049401 + ], + [ + 12.7480498, + 52.896790201 + ], + [ + 12.7469313, + 52.898208901 + ], + [ + 12.7459111, + 52.899377801 + ], + [ + 12.7452573, + 52.900075001 + ], + [ + 12.7444945, + 52.900846601 + ], + [ + 12.7436765, + 52.901625801 + ], + [ + 12.7430077, + 52.902239701 + ], + [ + 12.742134, + 52.903000601 + ], + [ + 12.7413287, + 52.903654401 + ], + [ + 12.740946, + 52.903966101 + ], + [ + 12.7393373, + 52.905178001 + ], + [ + 12.7386763, + 52.905639801 + ], + [ + 12.7382607, + 52.905930001 + ], + [ + 12.7377839, + 52.906260001 + ], + [ + 12.7371963, + 52.906635801 + ], + [ + 12.7352972, + 52.907832101 + ], + [ + 12.7324669, + 52.909554501 + ], + [ + 12.732293, + 52.909658101 + ], + [ + 12.7316147, + 52.910056201 + ], + [ + 12.7299581, + 52.911049901 + ], + [ + 12.7297132, + 52.911197001 + ], + [ + 12.7291695, + 52.911523401 + ], + [ + 12.7280556, + 52.912202501 + ], + [ + 12.727087206, + 52.912817667 + ] + ] + } + }, + { + "identifier": "2026-016149--vi-bs.2026-04-20_10-00-00-000.devi-zus.2026-04-20_07-30-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.71749788719549,12.977478466359656,52.80445514372193,12.794431678098423", + "point": "52.71749788719549,12.977478466359656", + "startLcPosition": "44", + "impact": { + "lower": "Neuruppin-S\u00fcd", + "upper": "Kremmen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Pritzwalk", + "title": "A24 | Kremmen - Neuruppin-S\u00fcd", + "coordinate": { + "lat": 52.71749788719549, + "long": 12.977478466359656 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 10:00 bis 15:00 Uhr", + "21.04.26 von 08:00 bis 15:00 Uhr", + "22.04.26 von 08:00 bis 15:00 Uhr", + "23.04.26 von 08:00 bis 15:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "27.04.26 von 10:00 bis 15:00 Uhr", + "28.04.26 von 08:00 bis 15:00 Uhr", + "29.04.26 von 08:00 bis 15:00 Uhr", + "04.05.26 von 10:00 bis 15:00 Uhr", + "05.05.26 von 08:00 bis 15:00 Uhr", + "06.05.26 von 08:00 bis 15:00 Uhr", + "07.05.26 von 08:00 bis 15:00 Uhr", + "08.05.26 von 08:00 bis 13:00 Uhr", + "", + "A24: Berliner Ring -> Pritzwalk, zwischen AS Kremmen und 5.3 km vor AS Neuruppin-S\u00fcd", + "", + "L\u00e4nge: 16.8 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A24 von Kremmen (AS) nach Neuruppin-S\u00fcd (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.977478466, + 52.717497887 + ], + [ + 12.9760232, + 52.717633101 + ], + [ + 12.9752892, + 52.717705701 + ], + [ + 12.9710749, + 52.718076301 + ], + [ + 12.9688431, + 52.718287101 + ], + [ + 12.9672323, + 52.718440101 + ], + [ + 12.9652145, + 52.718670001 + ], + [ + 12.9638452, + 52.718841001 + ], + [ + 12.9608672, + 52.719268701 + ], + [ + 12.9595818, + 52.719496501 + ], + [ + 12.9593028, + 52.719545901 + ], + [ + 12.9588222, + 52.719641701 + ], + [ + 12.9586598, + 52.719674101 + ], + [ + 12.957848, + 52.719835901 + ], + [ + 12.9562883, + 52.720159801 + ], + [ + 12.9548639, + 52.720486501 + ], + [ + 12.9532644, + 52.720893801 + ], + [ + 12.9517397, + 52.721306801 + ], + [ + 12.9504298, + 52.721692901 + ], + [ + 12.948933, + 52.722158201 + ], + [ + 12.9479487, + 52.722484501 + ], + [ + 12.9476488, + 52.722583901 + ], + [ + 12.9463893, + 52.723054301 + ], + [ + 12.9454142, + 52.723421801 + ], + [ + 12.9447853, + 52.723658901 + ], + [ + 12.9431299, + 52.724322001 + ], + [ + 12.9417724, + 52.724897901 + ], + [ + 12.9385039, + 52.726410901 + ], + [ + 12.9379353, + 52.726693301 + ], + [ + 12.9361174, + 52.727596401 + ], + [ + 12.9312724, + 52.730045001 + ], + [ + 12.9245449, + 52.733443101 + ], + [ + 12.9221463, + 52.734655501 + ], + [ + 12.9199367, + 52.735768201 + ], + [ + 12.9188675, + 52.736297401 + ], + [ + 12.9168693, + 52.737279601 + ], + [ + 12.9154525, + 52.737957701 + ], + [ + 12.9141231, + 52.738590301 + ], + [ + 12.9130864, + 52.739067901 + ], + [ + 12.9115964, + 52.739738601 + ], + [ + 12.9100291, + 52.740416701 + ], + [ + 12.9084361, + 52.741082501 + ], + [ + 12.9073876, + 52.741504601 + ], + [ + 12.9062661, + 52.741946701 + ], + [ + 12.9046208, + 52.742569701 + ], + [ + 12.9024271, + 52.743356801 + ], + [ + 12.9006524, + 52.743972401 + ], + [ + 12.8985049, + 52.744668101 + ], + [ + 12.8965793, + 52.745264901 + ], + [ + 12.8944441, + 52.745884101 + ], + [ + 12.8925092, + 52.746423201 + ], + [ + 12.8906297, + 52.746911801 + ], + [ + 12.8890831, + 52.747299701 + ], + [ + 12.8869664, + 52.747797701 + ], + [ + 12.8842119, + 52.748402001 + ], + [ + 12.8819443, + 52.748864501 + ], + [ + 12.8788286, + 52.749456201 + ], + [ + 12.8754771, + 52.750054301 + ], + [ + 12.8680113, + 52.751335701 + ], + [ + 12.8644713, + 52.751958801 + ], + [ + 12.8620242, + 52.752390501 + ], + [ + 12.8599706, + 52.752772701 + ], + [ + 12.8573799, + 52.753281001 + ], + [ + 12.8556955, + 52.753619701 + ], + [ + 12.8532741, + 52.754138301 + ], + [ + 12.850002, + 52.754907801 + ], + [ + 12.848498, + 52.755287201 + ], + [ + 12.8466769, + 52.755772301 + ], + [ + 12.8447173, + 52.756329401 + ], + [ + 12.8436505, + 52.756648101 + ], + [ + 12.842009, + 52.757157301 + ], + [ + 12.8398461, + 52.757873301 + ], + [ + 12.8380006, + 52.758525901 + ], + [ + 12.8360349, + 52.759253101 + ], + [ + 12.834026, + 52.760041801 + ], + [ + 12.8324023, + 52.760718601 + ], + [ + 12.830147, + 52.761699301 + ], + [ + 12.8272509, + 52.763075501 + ], + [ + 12.8255597, + 52.763940201 + ], + [ + 12.8243017, + 52.764595601 + ], + [ + 12.8221105, + 52.765820701 + ], + [ + 12.8207645, + 52.766622901 + ], + [ + 12.819907, + 52.767136701 + ], + [ + 12.8177116, + 52.768556001 + ], + [ + 12.816988, + 52.769038101 + ], + [ + 12.816229, + 52.769565001 + ], + [ + 12.8154772, + 52.770099001 + ], + [ + 12.8138847, + 52.771277201 + ], + [ + 12.812911, + 52.772041501 + ], + [ + 12.8113862, + 52.773269001 + ], + [ + 12.8101977, + 52.774293201 + ], + [ + 12.8090582, + 52.775318701 + ], + [ + 12.8074051, + 52.776916201 + ], + [ + 12.806045, + 52.778316501 + ], + [ + 12.804979, + 52.779496801 + ], + [ + 12.8030993, + 52.781763601 + ], + [ + 12.8021637, + 52.782995901 + ], + [ + 12.8011587, + 52.784430501 + ], + [ + 12.8004371, + 52.785535701 + ], + [ + 12.7993414, + 52.787355201 + ], + [ + 12.7988035, + 52.788351301 + ], + [ + 12.7981796, + 52.789581801 + ], + [ + 12.7973883, + 52.791302801 + ], + [ + 12.796868, + 52.792582501 + ], + [ + 12.7965139, + 52.793528101 + ], + [ + 12.7961304, + 52.794653701 + ], + [ + 12.795779, + 52.795834401 + ], + [ + 12.7954223, + 52.797240501 + ], + [ + 12.7951648, + 52.798450301 + ], + [ + 12.7949529, + 52.799647101 + ], + [ + 12.7947973, + 52.800608701 + ], + [ + 12.7946414, + 52.801831701 + ], + [ + 12.7944607, + 52.803922701 + ], + [ + 12.7944503, + 52.804103901 + ], + [ + 12.794431678, + 52.804455144 + ] + ] + } + }, + { + "identifier": "2026-016849--vi-bs.2026-04-07_10-00-00-000.devi-zus.2026-04-07_07-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.71175737874356,13.019404285787322,52.80623211373236,12.794350289960606", + "point": "52.71175737874356,13.019404285787322", + "startLcPosition": "45", + "impact": { + "lower": "Neuruppin-S\u00fcd", + "upper": "Havelland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Pritzwalk", + "title": "A24 | Havelland - Neuruppin-S\u00fcd", + "coordinate": { + "lat": 52.71175737874356, + "long": 13.019404285787322 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 15:00 Uhr", + "", + "A24: Berliner Ring -> Pritzwalk, zwischen AD Havelland und 5.1 km vor AS Neuruppin-S\u00fcd", + "", + "L\u00e4nge: 19.91 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.019404286, + 52.711757379 + ], + [ + 13.0193105, + 52.711773201 + ], + [ + 13.0184648, + 52.711915201 + ], + [ + 13.0132967, + 52.712782901 + ], + [ + 13.0130701, + 52.712820901 + ], + [ + 13.011848, + 52.713028001 + ], + [ + 13.0100478, + 52.713343901 + ], + [ + 13.0093444, + 52.713452101 + ], + [ + 13.0071866, + 52.713787901 + ], + [ + 13.0058866, + 52.713992701 + ], + [ + 13.0030153, + 52.714401701 + ], + [ + 12.9997139, + 52.714893701 + ], + [ + 12.9976999, + 52.715162701 + ], + [ + 12.9967376, + 52.715287901 + ], + [ + 12.9956056, + 52.715437701 + ], + [ + 12.9938733, + 52.715673301 + ], + [ + 12.9912881, + 52.715997401 + ], + [ + 12.9889157, + 52.716283101 + ], + [ + 12.986333, + 52.716579201 + ], + [ + 12.9844435, + 52.716784601 + ], + [ + 12.9821608, + 52.717031001 + ], + [ + 12.980053, + 52.717248001 + ], + [ + 12.9780842, + 52.717441601 + ], + [ + 12.9760232, + 52.717633101 + ], + [ + 12.9752892, + 52.717705701 + ], + [ + 12.9710749, + 52.718076301 + ], + [ + 12.9688431, + 52.718287101 + ], + [ + 12.9672323, + 52.718440101 + ], + [ + 12.9652145, + 52.718670001 + ], + [ + 12.9638452, + 52.718841001 + ], + [ + 12.9608672, + 52.719268701 + ], + [ + 12.9595818, + 52.719496501 + ], + [ + 12.9593028, + 52.719545901 + ], + [ + 12.9588222, + 52.719641701 + ], + [ + 12.9586598, + 52.719674101 + ], + [ + 12.957848, + 52.719835901 + ], + [ + 12.9562883, + 52.720159801 + ], + [ + 12.9548639, + 52.720486501 + ], + [ + 12.9532644, + 52.720893801 + ], + [ + 12.9517397, + 52.721306801 + ], + [ + 12.9504298, + 52.721692901 + ], + [ + 12.948933, + 52.722158201 + ], + [ + 12.9479487, + 52.722484501 + ], + [ + 12.9476488, + 52.722583901 + ], + [ + 12.9463893, + 52.723054301 + ], + [ + 12.9454142, + 52.723421801 + ], + [ + 12.9447853, + 52.723658901 + ], + [ + 12.9431299, + 52.724322001 + ], + [ + 12.9417724, + 52.724897901 + ], + [ + 12.9385039, + 52.726410901 + ], + [ + 12.9379353, + 52.726693301 + ], + [ + 12.9361174, + 52.727596401 + ], + [ + 12.9312724, + 52.730045001 + ], + [ + 12.9245449, + 52.733443101 + ], + [ + 12.9221463, + 52.734655501 + ], + [ + 12.9199367, + 52.735768201 + ], + [ + 12.9188675, + 52.736297401 + ], + [ + 12.9168693, + 52.737279601 + ], + [ + 12.9154525, + 52.737957701 + ], + [ + 12.9141231, + 52.738590301 + ], + [ + 12.9130864, + 52.739067901 + ], + [ + 12.9115964, + 52.739738601 + ], + [ + 12.9100291, + 52.740416701 + ], + [ + 12.9084361, + 52.741082501 + ], + [ + 12.9073876, + 52.741504601 + ], + [ + 12.9062661, + 52.741946701 + ], + [ + 12.9046208, + 52.742569701 + ], + [ + 12.9024271, + 52.743356801 + ], + [ + 12.9006524, + 52.743972401 + ], + [ + 12.8985049, + 52.744668101 + ], + [ + 12.8965793, + 52.745264901 + ], + [ + 12.8944441, + 52.745884101 + ], + [ + 12.8925092, + 52.746423201 + ], + [ + 12.8906297, + 52.746911801 + ], + [ + 12.8890831, + 52.747299701 + ], + [ + 12.8869664, + 52.747797701 + ], + [ + 12.8842119, + 52.748402001 + ], + [ + 12.8819443, + 52.748864501 + ], + [ + 12.8788286, + 52.749456201 + ], + [ + 12.8754771, + 52.750054301 + ], + [ + 12.8680113, + 52.751335701 + ], + [ + 12.8644713, + 52.751958801 + ], + [ + 12.8620242, + 52.752390501 + ], + [ + 12.8599706, + 52.752772701 + ], + [ + 12.8573799, + 52.753281001 + ], + [ + 12.8556955, + 52.753619701 + ], + [ + 12.8532741, + 52.754138301 + ], + [ + 12.850002, + 52.754907801 + ], + [ + 12.848498, + 52.755287201 + ], + [ + 12.8466769, + 52.755772301 + ], + [ + 12.8447173, + 52.756329401 + ], + [ + 12.8436505, + 52.756648101 + ], + [ + 12.842009, + 52.757157301 + ], + [ + 12.8398461, + 52.757873301 + ], + [ + 12.8380006, + 52.758525901 + ], + [ + 12.8360349, + 52.759253101 + ], + [ + 12.834026, + 52.760041801 + ], + [ + 12.8324023, + 52.760718601 + ], + [ + 12.830147, + 52.761699301 + ], + [ + 12.8272509, + 52.763075501 + ], + [ + 12.8255597, + 52.763940201 + ], + [ + 12.8243017, + 52.764595601 + ], + [ + 12.8221105, + 52.765820701 + ], + [ + 12.8207645, + 52.766622901 + ], + [ + 12.819907, + 52.767136701 + ], + [ + 12.8177116, + 52.768556001 + ], + [ + 12.816988, + 52.769038101 + ], + [ + 12.816229, + 52.769565001 + ], + [ + 12.8154772, + 52.770099001 + ], + [ + 12.8138847, + 52.771277201 + ], + [ + 12.812911, + 52.772041501 + ], + [ + 12.8113862, + 52.773269001 + ], + [ + 12.8101977, + 52.774293201 + ], + [ + 12.8090582, + 52.775318701 + ], + [ + 12.8074051, + 52.776916201 + ], + [ + 12.806045, + 52.778316501 + ], + [ + 12.804979, + 52.779496801 + ], + [ + 12.8030993, + 52.781763601 + ], + [ + 12.8021637, + 52.782995901 + ], + [ + 12.8011587, + 52.784430501 + ], + [ + 12.8004371, + 52.785535701 + ], + [ + 12.7993414, + 52.787355201 + ], + [ + 12.7988035, + 52.788351301 + ], + [ + 12.7981796, + 52.789581801 + ], + [ + 12.7973883, + 52.791302801 + ], + [ + 12.796868, + 52.792582501 + ], + [ + 12.7965139, + 52.793528101 + ], + [ + 12.7961304, + 52.794653701 + ], + [ + 12.795779, + 52.795834401 + ], + [ + 12.7954223, + 52.797240501 + ], + [ + 12.7951648, + 52.798450301 + ], + [ + 12.7949529, + 52.799647101 + ], + [ + 12.7947973, + 52.800608701 + ], + [ + 12.7946414, + 52.801831701 + ], + [ + 12.7944607, + 52.803922701 + ], + [ + 12.7944503, + 52.804103901 + ], + [ + 12.7943925, + 52.805194101 + ], + [ + 12.7943691, + 52.805673501 + ], + [ + 12.7943513, + 52.806199001 + ], + [ + 12.79435029, + 52.806232114 + ] + ] + } + }, + { + "identifier": "2026-017646--vi-bs.2026-04-13_10-00-00-000.devi-zus.2026-04-13_07-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.71175737874356,13.019404285787322,52.80623211373236,12.794350289960606", + "point": "52.71175737874356,13.019404285787322", + "startLcPosition": "45", + "impact": { + "lower": "Neuruppin-S\u00fcd", + "upper": "Havelland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Pritzwalk", + "title": "A24 | Havelland - Neuruppin-S\u00fcd", + "coordinate": { + "lat": 52.71175737874356, + "long": 13.019404285787322 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A24: Berliner Ring -> Pritzwalk, zwischen AD Havelland und 5.1 km vor AS Neuruppin-S\u00fcd", + "", + "L\u00e4nge: 19.91 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Gr\u00fcnpflege Unimog " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.019404286, + 52.711757379 + ], + [ + 13.0193105, + 52.711773201 + ], + [ + 13.0184648, + 52.711915201 + ], + [ + 13.0132967, + 52.712782901 + ], + [ + 13.0130701, + 52.712820901 + ], + [ + 13.011848, + 52.713028001 + ], + [ + 13.0100478, + 52.713343901 + ], + [ + 13.0093444, + 52.713452101 + ], + [ + 13.0071866, + 52.713787901 + ], + [ + 13.0058866, + 52.713992701 + ], + [ + 13.0030153, + 52.714401701 + ], + [ + 12.9997139, + 52.714893701 + ], + [ + 12.9976999, + 52.715162701 + ], + [ + 12.9967376, + 52.715287901 + ], + [ + 12.9956056, + 52.715437701 + ], + [ + 12.9938733, + 52.715673301 + ], + [ + 12.9912881, + 52.715997401 + ], + [ + 12.9889157, + 52.716283101 + ], + [ + 12.986333, + 52.716579201 + ], + [ + 12.9844435, + 52.716784601 + ], + [ + 12.9821608, + 52.717031001 + ], + [ + 12.980053, + 52.717248001 + ], + [ + 12.9780842, + 52.717441601 + ], + [ + 12.9760232, + 52.717633101 + ], + [ + 12.9752892, + 52.717705701 + ], + [ + 12.9710749, + 52.718076301 + ], + [ + 12.9688431, + 52.718287101 + ], + [ + 12.9672323, + 52.718440101 + ], + [ + 12.9652145, + 52.718670001 + ], + [ + 12.9638452, + 52.718841001 + ], + [ + 12.9608672, + 52.719268701 + ], + [ + 12.9595818, + 52.719496501 + ], + [ + 12.9593028, + 52.719545901 + ], + [ + 12.9588222, + 52.719641701 + ], + [ + 12.9586598, + 52.719674101 + ], + [ + 12.957848, + 52.719835901 + ], + [ + 12.9562883, + 52.720159801 + ], + [ + 12.9548639, + 52.720486501 + ], + [ + 12.9532644, + 52.720893801 + ], + [ + 12.9517397, + 52.721306801 + ], + [ + 12.9504298, + 52.721692901 + ], + [ + 12.948933, + 52.722158201 + ], + [ + 12.9479487, + 52.722484501 + ], + [ + 12.9476488, + 52.722583901 + ], + [ + 12.9463893, + 52.723054301 + ], + [ + 12.9454142, + 52.723421801 + ], + [ + 12.9447853, + 52.723658901 + ], + [ + 12.9431299, + 52.724322001 + ], + [ + 12.9417724, + 52.724897901 + ], + [ + 12.9385039, + 52.726410901 + ], + [ + 12.9379353, + 52.726693301 + ], + [ + 12.9361174, + 52.727596401 + ], + [ + 12.9312724, + 52.730045001 + ], + [ + 12.9245449, + 52.733443101 + ], + [ + 12.9221463, + 52.734655501 + ], + [ + 12.9199367, + 52.735768201 + ], + [ + 12.9188675, + 52.736297401 + ], + [ + 12.9168693, + 52.737279601 + ], + [ + 12.9154525, + 52.737957701 + ], + [ + 12.9141231, + 52.738590301 + ], + [ + 12.9130864, + 52.739067901 + ], + [ + 12.9115964, + 52.739738601 + ], + [ + 12.9100291, + 52.740416701 + ], + [ + 12.9084361, + 52.741082501 + ], + [ + 12.9073876, + 52.741504601 + ], + [ + 12.9062661, + 52.741946701 + ], + [ + 12.9046208, + 52.742569701 + ], + [ + 12.9024271, + 52.743356801 + ], + [ + 12.9006524, + 52.743972401 + ], + [ + 12.8985049, + 52.744668101 + ], + [ + 12.8965793, + 52.745264901 + ], + [ + 12.8944441, + 52.745884101 + ], + [ + 12.8925092, + 52.746423201 + ], + [ + 12.8906297, + 52.746911801 + ], + [ + 12.8890831, + 52.747299701 + ], + [ + 12.8869664, + 52.747797701 + ], + [ + 12.8842119, + 52.748402001 + ], + [ + 12.8819443, + 52.748864501 + ], + [ + 12.8788286, + 52.749456201 + ], + [ + 12.8754771, + 52.750054301 + ], + [ + 12.8680113, + 52.751335701 + ], + [ + 12.8644713, + 52.751958801 + ], + [ + 12.8620242, + 52.752390501 + ], + [ + 12.8599706, + 52.752772701 + ], + [ + 12.8573799, + 52.753281001 + ], + [ + 12.8556955, + 52.753619701 + ], + [ + 12.8532741, + 52.754138301 + ], + [ + 12.850002, + 52.754907801 + ], + [ + 12.848498, + 52.755287201 + ], + [ + 12.8466769, + 52.755772301 + ], + [ + 12.8447173, + 52.756329401 + ], + [ + 12.8436505, + 52.756648101 + ], + [ + 12.842009, + 52.757157301 + ], + [ + 12.8398461, + 52.757873301 + ], + [ + 12.8380006, + 52.758525901 + ], + [ + 12.8360349, + 52.759253101 + ], + [ + 12.834026, + 52.760041801 + ], + [ + 12.8324023, + 52.760718601 + ], + [ + 12.830147, + 52.761699301 + ], + [ + 12.8272509, + 52.763075501 + ], + [ + 12.8255597, + 52.763940201 + ], + [ + 12.8243017, + 52.764595601 + ], + [ + 12.8221105, + 52.765820701 + ], + [ + 12.8207645, + 52.766622901 + ], + [ + 12.819907, + 52.767136701 + ], + [ + 12.8177116, + 52.768556001 + ], + [ + 12.816988, + 52.769038101 + ], + [ + 12.816229, + 52.769565001 + ], + [ + 12.8154772, + 52.770099001 + ], + [ + 12.8138847, + 52.771277201 + ], + [ + 12.812911, + 52.772041501 + ], + [ + 12.8113862, + 52.773269001 + ], + [ + 12.8101977, + 52.774293201 + ], + [ + 12.8090582, + 52.775318701 + ], + [ + 12.8074051, + 52.776916201 + ], + [ + 12.806045, + 52.778316501 + ], + [ + 12.804979, + 52.779496801 + ], + [ + 12.8030993, + 52.781763601 + ], + [ + 12.8021637, + 52.782995901 + ], + [ + 12.8011587, + 52.784430501 + ], + [ + 12.8004371, + 52.785535701 + ], + [ + 12.7993414, + 52.787355201 + ], + [ + 12.7988035, + 52.788351301 + ], + [ + 12.7981796, + 52.789581801 + ], + [ + 12.7973883, + 52.791302801 + ], + [ + 12.796868, + 52.792582501 + ], + [ + 12.7965139, + 52.793528101 + ], + [ + 12.7961304, + 52.794653701 + ], + [ + 12.795779, + 52.795834401 + ], + [ + 12.7954223, + 52.797240501 + ], + [ + 12.7951648, + 52.798450301 + ], + [ + 12.7949529, + 52.799647101 + ], + [ + 12.7947973, + 52.800608701 + ], + [ + 12.7946414, + 52.801831701 + ], + [ + 12.7944607, + 52.803922701 + ], + [ + 12.7944503, + 52.804103901 + ], + [ + 12.7943925, + 52.805194101 + ], + [ + 12.7943691, + 52.805673501 + ], + [ + 12.7943513, + 52.806199001 + ], + [ + 12.79435029, + 52.806232114 + ] + ] + } + }, + { + "identifier": "2026-017654--vi-bs.2026-04-13_10-00-00-000.devi-zus.2026-04-13_07-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.71175737874356,13.019404285787322,52.80623211373236,12.794350289960606", + "point": "52.71175737874356,13.019404285787322", + "startLcPosition": "45", + "impact": { + "lower": "Neuruppin-S\u00fcd", + "upper": "Havelland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Berliner Ring -> Pritzwalk", + "title": "A24 | Havelland - Neuruppin-S\u00fcd", + "coordinate": { + "lat": 52.71175737874356, + "long": 13.019404285787322 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A24: Berliner Ring -> Pritzwalk, zwischen AD Havelland und 5.1 km vor AS Neuruppin-S\u00fcd", + "", + "L\u00e4nge: 19.91 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A10 A24 Reinigungsarbeiten Kehrmaschine" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.019404286, + 52.711757379 + ], + [ + 13.0193105, + 52.711773201 + ], + [ + 13.0184648, + 52.711915201 + ], + [ + 13.0132967, + 52.712782901 + ], + [ + 13.0130701, + 52.712820901 + ], + [ + 13.011848, + 52.713028001 + ], + [ + 13.0100478, + 52.713343901 + ], + [ + 13.0093444, + 52.713452101 + ], + [ + 13.0071866, + 52.713787901 + ], + [ + 13.0058866, + 52.713992701 + ], + [ + 13.0030153, + 52.714401701 + ], + [ + 12.9997139, + 52.714893701 + ], + [ + 12.9976999, + 52.715162701 + ], + [ + 12.9967376, + 52.715287901 + ], + [ + 12.9956056, + 52.715437701 + ], + [ + 12.9938733, + 52.715673301 + ], + [ + 12.9912881, + 52.715997401 + ], + [ + 12.9889157, + 52.716283101 + ], + [ + 12.986333, + 52.716579201 + ], + [ + 12.9844435, + 52.716784601 + ], + [ + 12.9821608, + 52.717031001 + ], + [ + 12.980053, + 52.717248001 + ], + [ + 12.9780842, + 52.717441601 + ], + [ + 12.9760232, + 52.717633101 + ], + [ + 12.9752892, + 52.717705701 + ], + [ + 12.9710749, + 52.718076301 + ], + [ + 12.9688431, + 52.718287101 + ], + [ + 12.9672323, + 52.718440101 + ], + [ + 12.9652145, + 52.718670001 + ], + [ + 12.9638452, + 52.718841001 + ], + [ + 12.9608672, + 52.719268701 + ], + [ + 12.9595818, + 52.719496501 + ], + [ + 12.9593028, + 52.719545901 + ], + [ + 12.9588222, + 52.719641701 + ], + [ + 12.9586598, + 52.719674101 + ], + [ + 12.957848, + 52.719835901 + ], + [ + 12.9562883, + 52.720159801 + ], + [ + 12.9548639, + 52.720486501 + ], + [ + 12.9532644, + 52.720893801 + ], + [ + 12.9517397, + 52.721306801 + ], + [ + 12.9504298, + 52.721692901 + ], + [ + 12.948933, + 52.722158201 + ], + [ + 12.9479487, + 52.722484501 + ], + [ + 12.9476488, + 52.722583901 + ], + [ + 12.9463893, + 52.723054301 + ], + [ + 12.9454142, + 52.723421801 + ], + [ + 12.9447853, + 52.723658901 + ], + [ + 12.9431299, + 52.724322001 + ], + [ + 12.9417724, + 52.724897901 + ], + [ + 12.9385039, + 52.726410901 + ], + [ + 12.9379353, + 52.726693301 + ], + [ + 12.9361174, + 52.727596401 + ], + [ + 12.9312724, + 52.730045001 + ], + [ + 12.9245449, + 52.733443101 + ], + [ + 12.9221463, + 52.734655501 + ], + [ + 12.9199367, + 52.735768201 + ], + [ + 12.9188675, + 52.736297401 + ], + [ + 12.9168693, + 52.737279601 + ], + [ + 12.9154525, + 52.737957701 + ], + [ + 12.9141231, + 52.738590301 + ], + [ + 12.9130864, + 52.739067901 + ], + [ + 12.9115964, + 52.739738601 + ], + [ + 12.9100291, + 52.740416701 + ], + [ + 12.9084361, + 52.741082501 + ], + [ + 12.9073876, + 52.741504601 + ], + [ + 12.9062661, + 52.741946701 + ], + [ + 12.9046208, + 52.742569701 + ], + [ + 12.9024271, + 52.743356801 + ], + [ + 12.9006524, + 52.743972401 + ], + [ + 12.8985049, + 52.744668101 + ], + [ + 12.8965793, + 52.745264901 + ], + [ + 12.8944441, + 52.745884101 + ], + [ + 12.8925092, + 52.746423201 + ], + [ + 12.8906297, + 52.746911801 + ], + [ + 12.8890831, + 52.747299701 + ], + [ + 12.8869664, + 52.747797701 + ], + [ + 12.8842119, + 52.748402001 + ], + [ + 12.8819443, + 52.748864501 + ], + [ + 12.8788286, + 52.749456201 + ], + [ + 12.8754771, + 52.750054301 + ], + [ + 12.8680113, + 52.751335701 + ], + [ + 12.8644713, + 52.751958801 + ], + [ + 12.8620242, + 52.752390501 + ], + [ + 12.8599706, + 52.752772701 + ], + [ + 12.8573799, + 52.753281001 + ], + [ + 12.8556955, + 52.753619701 + ], + [ + 12.8532741, + 52.754138301 + ], + [ + 12.850002, + 52.754907801 + ], + [ + 12.848498, + 52.755287201 + ], + [ + 12.8466769, + 52.755772301 + ], + [ + 12.8447173, + 52.756329401 + ], + [ + 12.8436505, + 52.756648101 + ], + [ + 12.842009, + 52.757157301 + ], + [ + 12.8398461, + 52.757873301 + ], + [ + 12.8380006, + 52.758525901 + ], + [ + 12.8360349, + 52.759253101 + ], + [ + 12.834026, + 52.760041801 + ], + [ + 12.8324023, + 52.760718601 + ], + [ + 12.830147, + 52.761699301 + ], + [ + 12.8272509, + 52.763075501 + ], + [ + 12.8255597, + 52.763940201 + ], + [ + 12.8243017, + 52.764595601 + ], + [ + 12.8221105, + 52.765820701 + ], + [ + 12.8207645, + 52.766622901 + ], + [ + 12.819907, + 52.767136701 + ], + [ + 12.8177116, + 52.768556001 + ], + [ + 12.816988, + 52.769038101 + ], + [ + 12.816229, + 52.769565001 + ], + [ + 12.8154772, + 52.770099001 + ], + [ + 12.8138847, + 52.771277201 + ], + [ + 12.812911, + 52.772041501 + ], + [ + 12.8113862, + 52.773269001 + ], + [ + 12.8101977, + 52.774293201 + ], + [ + 12.8090582, + 52.775318701 + ], + [ + 12.8074051, + 52.776916201 + ], + [ + 12.806045, + 52.778316501 + ], + [ + 12.804979, + 52.779496801 + ], + [ + 12.8030993, + 52.781763601 + ], + [ + 12.8021637, + 52.782995901 + ], + [ + 12.8011587, + 52.784430501 + ], + [ + 12.8004371, + 52.785535701 + ], + [ + 12.7993414, + 52.787355201 + ], + [ + 12.7988035, + 52.788351301 + ], + [ + 12.7981796, + 52.789581801 + ], + [ + 12.7973883, + 52.791302801 + ], + [ + 12.796868, + 52.792582501 + ], + [ + 12.7965139, + 52.793528101 + ], + [ + 12.7961304, + 52.794653701 + ], + [ + 12.795779, + 52.795834401 + ], + [ + 12.7954223, + 52.797240501 + ], + [ + 12.7951648, + 52.798450301 + ], + [ + 12.7949529, + 52.799647101 + ], + [ + 12.7947973, + 52.800608701 + ], + [ + 12.7946414, + 52.801831701 + ], + [ + 12.7944607, + 52.803922701 + ], + [ + 12.7944503, + 52.804103901 + ], + [ + 12.7943925, + 52.805194101 + ], + [ + 12.7943691, + 52.805673501 + ], + [ + 12.7943513, + 52.806199001 + ], + [ + 12.79435029, + 52.806232114 + ] + ] + } + }, + { + "identifier": "2026-016725--vi-fbm.2026-04-21_08-00-00-000.devi-zus.2026-04-21_08-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.233071992338125,12.205780282888222,53.233042593182894,12.206979567234251", + "point": "53.233071992338125,12.205780282888222", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Meyenburg (aus Richtung Pritzwalk)", + "title": "GST, A24, AS Meyenburg (beide RF) (Wendeman\u00f6ver f. WP Meyenburg-Frehne)", + "coordinate": { + "lat": 53.233071992338125, + "long": 12.205780282888222 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 08:00 bis 16:00 Uhr", + "", + "Auffahrt auf die A24: AS Meyenburg (aus Richtung Pritzwalk)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "GST, A24, AS Meyenburg (beide RF) (Wendeman\u00f6ver f. WP Meyenburg-Frehne)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.205780283, + 53.233071992 + ], + [ + 12.2060159, + 53.233063001 + ], + [ + 12.206603, + 53.233071701 + ], + [ + 12.206979567, + 53.233042593 + ] + ] + } + }, + { + "identifier": "2026-016725--vi-fbm.2026-04-21_08-00-00-000.devi-zus.2026-04-21_08-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.2332226672587,12.200151355892295,53.23189881975894,12.205120041085767", + "point": "53.2332226672587,12.200151355892295", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Meyenburg (aus Richtung Dorngrund S\u00fcd)", + "title": "GST, A24, AS Meyenburg (beide RF) (Wendeman\u00f6ver f. WP Meyenburg-Frehne)", + "coordinate": { + "lat": 53.2332226672587, + "long": 12.200151355892295 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 08:00 bis 16:00 Uhr", + "", + "Abfahrt von der A24: AS Meyenburg (aus Richtung Dorngrund S\u00fcd)", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "GST, A24, AS Meyenburg (beide RF) (Wendeman\u00f6ver f. WP Meyenburg-Frehne)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.200151356, + 53.233222667 + ], + [ + 12.2003795, + 53.232967501 + ], + [ + 12.2007654, + 53.232722701 + ], + [ + 12.2010258, + 53.232586201 + ], + [ + 12.2013448, + 53.232459801 + ], + [ + 12.2016599, + 53.232380801 + ], + [ + 12.2019186, + 53.232317201 + ], + [ + 12.2021595, + 53.232271301 + ], + [ + 12.2025196, + 53.232223201 + ], + [ + 12.2043892, + 53.232019001 + ], + [ + 12.2048569, + 53.231933101 + ], + [ + 12.205120041, + 53.23189882 + ] + ] + } + }, + { + "identifier": "2026-015458--vi-bs.2026-04-07_16-00-00-000.devi-zus.2026-04-07_08-30-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.277916621838884,12.088644724890553,53.28051381785491,12.085602673438638", + "point": "53.277916621838884,12.088644724890553", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Putlitz (aus Richtung Dorngrund Nord)", + "title": "GST, A24, AS Putlitz, Ausfahrt RF Hamburg, Windpark Meyenburg-Frehne", + "startTimestamp": "2026-04-07T16:00:00+02:00", + "coordinate": { + "lat": 53.277916621838884, + "long": 12.088644724890553 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 16:00 Uhr", + "Ende: 18.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.07.26)", + "", + "Abfahrt von der A24: AS Putlitz (aus Richtung Dorngrund Nord)", + "", + "L\u00e4nge: 0.36 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "GST, A24, AS Putlitz, Ausfahrt RF Hamburg, Windpark Meyenburg-Frehne" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.088644725, + 53.277916622 + ], + [ + 12.0882964, + 53.278143001 + ], + [ + 12.0882101, + 53.278201901 + ], + [ + 12.0881351, + 53.278256701 + ], + [ + 12.0880738, + 53.278307401 + ], + [ + 12.0880003, + 53.278371701 + ], + [ + 12.0879254, + 53.278452701 + ], + [ + 12.0878671, + 53.278531501 + ], + [ + 12.0878141, + 53.278613001 + ], + [ + 12.0877641, + 53.278699501 + ], + [ + 12.0877217, + 53.278784601 + ], + [ + 12.0875271, + 53.279249601 + ], + [ + 12.0874816, + 53.279336101 + ], + [ + 12.087412, + 53.279436201 + ], + [ + 12.0873264, + 53.279528501 + ], + [ + 12.0872454, + 53.279606401 + ], + [ + 12.087178, + 53.279663401 + ], + [ + 12.0871174, + 53.279710501 + ], + [ + 12.0870318, + 53.279764901 + ], + [ + 12.0869765, + 53.279796601 + ], + [ + 12.0868989, + 53.279837101 + ], + [ + 12.0868274, + 53.279878501 + ], + [ + 12.0867289, + 53.279929201 + ], + [ + 12.0858732, + 53.280329001 + ], + [ + 12.08574, + 53.280422701 + ], + [ + 12.0856862, + 53.280462101 + ], + [ + 12.0856112, + 53.280509201 + ], + [ + 12.085602673, + 53.280513818 + ] + ] + } + }, + { + "identifier": "2026-012330--vi-bs.2026-03-11_00-00-00-000.devi-zus.2026-03-11_00-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.43168554135419,11.494224233062678,53.43181443794052,11.492985930268624", + "point": "53.43168554135419,11.494224233062678", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS W\u00f6bbelin (aus Richtung Schwerin)", + "title": "GST, A24, AS W\u00f6bbelin (beide RF) - Wendeman\u00f6ver und KGW-Transporte", + "startTimestamp": "2026-03-11T00:00:00+01:00", + "coordinate": { + "lat": 53.43168554135419, + "long": 11.494224233062678 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.03.26 um 00:00 Uhr", + "Ende: 22.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.08.26)", + "", + "Abfahrt von der A24: AS W\u00f6bbelin (aus Richtung Schwerin)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "GST, A24, AS W\u00f6bbelin (beide RF) - Wendeman\u00f6ver und KGW-Transporte" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.494224233, + 53.431685541 + ], + [ + 11.49408, + 53.431698001 + ], + [ + 11.4930958, + 53.431809501 + ], + [ + 11.493011, + 53.431817101 + ], + [ + 11.49298593, + 53.431814438 + ] + ] + } + }, + { + "identifier": "2026-012330--vi-bs.2026-03-11_00-00-00-000.devi-zus.2026-03-11_00-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.429304100036916,11.49367671811474,53.429310231673405,11.492598714579122", + "point": "53.429304100036916,11.49367671811474", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS W\u00f6bbelin (aus Richtung Schremmheide)", + "title": "GST, A24, AS W\u00f6bbelin (beide RF) - Wendeman\u00f6ver und KGW-Transporte", + "startTimestamp": "2026-03-11T00:00:00+01:00", + "coordinate": { + "lat": 53.429304100036916, + "long": 11.49367671811474 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.03.26 um 00:00 Uhr", + "Ende: 22.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.08.26)", + "", + "Auffahrt auf die A24: AS W\u00f6bbelin (aus Richtung Schremmheide)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "GST, A24, AS W\u00f6bbelin (beide RF) - Wendeman\u00f6ver und KGW-Transporte" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.493676718, + 53.4293041 + ], + [ + 11.493561, + 53.429290201 + ], + [ + 11.4934207, + 53.429282601 + ], + [ + 11.4927871, + 53.429294801 + ], + [ + 11.492598715, + 53.429310232 + ] + ] + } + }, + { + "identifier": "2026-016725--vi-bs.2026-04-21_16-00-00-000.devi-zus.2026-04-21_08-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.23307256227282,12.205765347521044,53.23304029853898,12.207009252398962", + "point": "53.23307256227282,12.205765347521044", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Meyenburg (aus Richtung Pritzwalk)", + "title": "GST, A24, AS Meyenburg (beide RF) (Wendeman\u00f6ver f. WP Meyenburg-Frehne)", + "startTimestamp": "2026-04-21T16:00:00+02:00", + "coordinate": { + "lat": 53.23307256227282, + "long": 12.205765347521044 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.04.26 um 16:00 Uhr", + "Ende: 19.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "Auffahrt auf die A24: AS Meyenburg (aus Richtung Pritzwalk)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "GST, A24, AS Meyenburg (beide RF) (Wendeman\u00f6ver f. WP Meyenburg-Frehne)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.205765348, + 53.233072562 + ], + [ + 12.2060159, + 53.233063001 + ], + [ + 12.206603, + 53.233071701 + ], + [ + 12.207009252, + 53.233040299 + ] + ] + } + }, + { + "identifier": "2026-016725--vi-bs.2026-04-21_16-00-00-000.devi-zus.2026-04-21_08-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.2332226672587,12.200151355892295,53.23189881975894,12.205120041085767", + "point": "53.2332226672587,12.200151355892295", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Meyenburg (aus Richtung Dorngrund S\u00fcd)", + "title": "GST, A24, AS Meyenburg (beide RF) (Wendeman\u00f6ver f. WP Meyenburg-Frehne)", + "startTimestamp": "2026-04-21T16:00:00+02:00", + "coordinate": { + "lat": 53.2332226672587, + "long": 12.200151355892295 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.04.26 um 16:00 Uhr", + "Ende: 19.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "Abfahrt von der A24: AS Meyenburg (aus Richtung Dorngrund S\u00fcd)", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "GST, A24, AS Meyenburg (beide RF) (Wendeman\u00f6ver f. WP Meyenburg-Frehne)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.200151356, + 53.233222667 + ], + [ + 12.2003795, + 53.232967501 + ], + [ + 12.2007654, + 53.232722701 + ], + [ + 12.2010258, + 53.232586201 + ], + [ + 12.2013448, + 53.232459801 + ], + [ + 12.2016599, + 53.232380801 + ], + [ + 12.2019186, + 53.232317201 + ], + [ + 12.2021595, + 53.232271301 + ], + [ + 12.2025196, + 53.232223201 + ], + [ + 12.2043892, + 53.232019001 + ], + [ + 12.2048569, + 53.231933101 + ], + [ + 12.205120041, + 53.23189882 + ] + ] + } + } + ] + }, + "A25": { + "roadworks": [ + { + "identifier": "2023-005099--vi-fbm.2026-03-10_20-00-00-000.devi-zus.2025-09-01_00-00-00-000.de64", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.50313607328627,10.0841356046663,53.47532092834784,10.205760334296214", + "point": "53.50313607328627,10.0841356046663", + "startLcPosition": "0", + "impact": { + "lower": "Hamburg-Curslack", + "upper": "Hamburg-S\u00fcdost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Geesthacht", + "title": "A25 | Hamburg-S\u00fcdost - Hamburg-Curslack", + "coordinate": { + "lat": 53.50313607328627, + "long": 10.0841356046663 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 19:00 bis zum 11.04.26 05:00 Uhr.", + "Jeden Samstag und Sonntag zwischen dem 11.04.26 und dem 13.04.26 von 19:00 bis 00:00 Uhr.", + "12.04.26 von 00:00 bis 05:00 Uhr", + "", + "A25: Hamburg -> Geesthacht, zwischen 0.4 km hinter AD Hamburg-S\u00fcdost und 2.3 km vor AS Hamburg-Curslack", + "", + "L\u00e4nge: 9.1 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A25, AD HH-S\u00fcdost bis AS HH-Neuallerm\u00f6he-West, beide RiFa, Erneuerung Deck- und Binderschicht, km 0,5-6,2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.084135605, + 53.503136073 + ], + [ + 10.0846654, + 53.502812001 + ], + [ + 10.0852722, + 53.502469901 + ], + [ + 10.0855925, + 53.502298201 + ], + [ + 10.0867595, + 53.501675401 + ], + [ + 10.0887632, + 53.500635901 + ], + [ + 10.0902439, + 53.499881001 + ], + [ + 10.0919233, + 53.498940801 + ], + [ + 10.0950995, + 53.496975201 + ], + [ + 10.0951771, + 53.496925701 + ], + [ + 10.0952298, + 53.496890701 + ], + [ + 10.0974306, + 53.495435501 + ], + [ + 10.0984825, + 53.494737001 + ], + [ + 10.1006536, + 53.493352001 + ], + [ + 10.1018466, + 53.492652901 + ], + [ + 10.1025912, + 53.492226201 + ], + [ + 10.1033618, + 53.491784701 + ], + [ + 10.1037902, + 53.491561901 + ], + [ + 10.1053051, + 53.490789301 + ], + [ + 10.1080779, + 53.489485901 + ], + [ + 10.108543, + 53.489298301 + ], + [ + 10.1113739, + 53.488145501 + ], + [ + 10.1131293, + 53.487505001 + ], + [ + 10.1136258, + 53.487329801 + ], + [ + 10.1140121, + 53.487203701 + ], + [ + 10.1151966, + 53.486821001 + ], + [ + 10.1165675, + 53.486410101 + ], + [ + 10.1174102, + 53.486184001 + ], + [ + 10.1182187, + 53.485994301 + ], + [ + 10.1191351, + 53.485796901 + ], + [ + 10.1200631, + 53.485617501 + ], + [ + 10.1207663, + 53.485505101 + ], + [ + 10.122058, + 53.485321201 + ], + [ + 10.1227495, + 53.485240001 + ], + [ + 10.1256689, + 53.484948601 + ], + [ + 10.1309028, + 53.484468301 + ], + [ + 10.1338176, + 53.484130901 + ], + [ + 10.1358936, + 53.483854501 + ], + [ + 10.1378156, + 53.483558701 + ], + [ + 10.1387647, + 53.483399201 + ], + [ + 10.1397106, + 53.483227301 + ], + [ + 10.1412589, + 53.482934701 + ], + [ + 10.1420463, + 53.482774701 + ], + [ + 10.1428181, + 53.482610201 + ], + [ + 10.1440192, + 53.482341501 + ], + [ + 10.1449, + 53.482140901 + ], + [ + 10.1457396, + 53.481933501 + ], + [ + 10.1474538, + 53.481487501 + ], + [ + 10.1487572, + 53.481136901 + ], + [ + 10.1501523, + 53.480730801 + ], + [ + 10.1513526, + 53.480361201 + ], + [ + 10.1521613, + 53.480102501 + ], + [ + 10.1526498, + 53.479941501 + ], + [ + 10.1530936, + 53.479795201 + ], + [ + 10.1547903, + 53.479207901 + ], + [ + 10.1580862, + 53.478061101 + ], + [ + 10.1605428, + 53.477271901 + ], + [ + 10.1630174, + 53.476573701 + ], + [ + 10.166852, + 53.475562201 + ], + [ + 10.1696139, + 53.474946101 + ], + [ + 10.1705013, + 53.474759001 + ], + [ + 10.1713885, + 53.474581601 + ], + [ + 10.1717018, + 53.474521201 + ], + [ + 10.1722611, + 53.474415401 + ], + [ + 10.1731023, + 53.474264501 + ], + [ + 10.1740068, + 53.474105201 + ], + [ + 10.1748438, + 53.473957801 + ], + [ + 10.1754767, + 53.473854001 + ], + [ + 10.1763109, + 53.473724201 + ], + [ + 10.1770983, + 53.473610201 + ], + [ + 10.1779924, + 53.473480801 + ], + [ + 10.1805362, + 53.473164101 + ], + [ + 10.1813152, + 53.473073801 + ], + [ + 10.1821076, + 53.472988901 + ], + [ + 10.1835455, + 53.472850501 + ], + [ + 10.1847997, + 53.472756801 + ], + [ + 10.1867193, + 53.472656001 + ], + [ + 10.1879329, + 53.472630001 + ], + [ + 10.1895295, + 53.472644101 + ], + [ + 10.1909159, + 53.472703901 + ], + [ + 10.1921841, + 53.472789401 + ], + [ + 10.1931019, + 53.472870101 + ], + [ + 10.1939915, + 53.472983301 + ], + [ + 10.1953277, + 53.473180601 + ], + [ + 10.1965458, + 53.473379301 + ], + [ + 10.1976489, + 53.473591901 + ], + [ + 10.1986574, + 53.473793201 + ], + [ + 10.1998158, + 53.474043601 + ], + [ + 10.2011206, + 53.474333201 + ], + [ + 10.2021796, + 53.474571301 + ], + [ + 10.2028227, + 53.474718001 + ], + [ + 10.2042088, + 53.475017501 + ], + [ + 10.2052656, + 53.475233201 + ], + [ + 10.205760334, + 53.475320928 + ] + ] + } + }, + { + "identifier": "2023-005099--vi-bs.2026-04-13_05-00-00-000.devi-zus.2025-09-01_00-00-00-000.de84", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.50440260520094,10.082375048842303,53.47595869078556,10.165348982685064", + "point": "53.50440260520094,10.082375048842303", + "startLcPosition": "0", + "impact": { + "lower": "Hamburg-Nettelnburg", + "upper": "Hamburg-S\u00fcdost", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hamburg -> Geesthacht", + "title": "A25 | Hamburg-S\u00fcdost - Hamburg-Nettelnburg", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 53.50440260520094, + "long": 10.082375048842303 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 12.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.10.26)", + "", + "A25: Hamburg -> Geesthacht, zwischen 0.2 km hinter AD Hamburg-S\u00fcdost und 0.8 km vor AS Hamburg-Nettelnburg", + "", + "L\u00e4nge: 6.51 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A25, AD HH-S\u00fcdost bis AS HH-Neuallerm\u00f6he-West, beide RiFa, Erneuerung Deck- und Binderschicht, km 0,5-6,2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.082375049, + 53.504402605 + ], + [ + 10.0831693, + 53.503789701 + ], + [ + 10.0836012, + 53.503481401 + ], + [ + 10.0841215, + 53.503144701 + ], + [ + 10.0846654, + 53.502812001 + ], + [ + 10.0852722, + 53.502469901 + ], + [ + 10.0855925, + 53.502298201 + ], + [ + 10.0867595, + 53.501675401 + ], + [ + 10.0887632, + 53.500635901 + ], + [ + 10.0902439, + 53.499881001 + ], + [ + 10.0919233, + 53.498940801 + ], + [ + 10.0950995, + 53.496975201 + ], + [ + 10.0951771, + 53.496925701 + ], + [ + 10.0952298, + 53.496890701 + ], + [ + 10.0974306, + 53.495435501 + ], + [ + 10.0984825, + 53.494737001 + ], + [ + 10.1006536, + 53.493352001 + ], + [ + 10.1018466, + 53.492652901 + ], + [ + 10.1025912, + 53.492226201 + ], + [ + 10.1033618, + 53.491784701 + ], + [ + 10.1037902, + 53.491561901 + ], + [ + 10.1053051, + 53.490789301 + ], + [ + 10.1080779, + 53.489485901 + ], + [ + 10.108543, + 53.489298301 + ], + [ + 10.1113739, + 53.488145501 + ], + [ + 10.1131293, + 53.487505001 + ], + [ + 10.1136258, + 53.487329801 + ], + [ + 10.1140121, + 53.487203701 + ], + [ + 10.1151966, + 53.486821001 + ], + [ + 10.1165675, + 53.486410101 + ], + [ + 10.1174102, + 53.486184001 + ], + [ + 10.1182187, + 53.485994301 + ], + [ + 10.1191351, + 53.485796901 + ], + [ + 10.1200631, + 53.485617501 + ], + [ + 10.1207663, + 53.485505101 + ], + [ + 10.122058, + 53.485321201 + ], + [ + 10.1227495, + 53.485240001 + ], + [ + 10.1256689, + 53.484948601 + ], + [ + 10.1309028, + 53.484468301 + ], + [ + 10.1338176, + 53.484130901 + ], + [ + 10.1358936, + 53.483854501 + ], + [ + 10.1378156, + 53.483558701 + ], + [ + 10.1387647, + 53.483399201 + ], + [ + 10.1397106, + 53.483227301 + ], + [ + 10.1412589, + 53.482934701 + ], + [ + 10.1420463, + 53.482774701 + ], + [ + 10.1428181, + 53.482610201 + ], + [ + 10.1440192, + 53.482341501 + ], + [ + 10.1449, + 53.482140901 + ], + [ + 10.1457396, + 53.481933501 + ], + [ + 10.1474538, + 53.481487501 + ], + [ + 10.1487572, + 53.481136901 + ], + [ + 10.1501523, + 53.480730801 + ], + [ + 10.1513526, + 53.480361201 + ], + [ + 10.1521613, + 53.480102501 + ], + [ + 10.1526498, + 53.479941501 + ], + [ + 10.1530936, + 53.479795201 + ], + [ + 10.1547903, + 53.479207901 + ], + [ + 10.1580862, + 53.478061101 + ], + [ + 10.1605428, + 53.477271901 + ], + [ + 10.1630174, + 53.476573701 + ], + [ + 10.165348983, + 53.475958691 + ] + ] + } + }, + { + "identifier": "2026-014756--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.47269333910953,10.186008314037645,53.4687504740794,10.262382242156326", + "point": "53.47269333910953,10.186008314037645", + "startLcPosition": "3", + "impact": { + "lower": "Geesthacht", + "upper": "Hamburg-Nettelnburg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamburg -> Geesthacht", + "title": "A25 | Hamburg-Nettelnburg - Geesthacht", + "coordinate": { + "lat": 53.47269333910953, + "long": 10.186008314037645 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A25: Hamburg -> Geesthacht, zwischen 0.6 km hinter AS Hamburg-Nettelnburg und 4.8 km vor Geesthacht", + "", + "L\u00e4nge: 5.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A25 von Hamburg-Bergedorf (AS) Beide RIFA Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.186008314, + 53.472693339 + ], + [ + 10.1867193, + 53.472656001 + ], + [ + 10.1879329, + 53.472630001 + ], + [ + 10.1895295, + 53.472644101 + ], + [ + 10.1909159, + 53.472703901 + ], + [ + 10.1921841, + 53.472789401 + ], + [ + 10.1931019, + 53.472870101 + ], + [ + 10.1939915, + 53.472983301 + ], + [ + 10.1953277, + 53.473180601 + ], + [ + 10.1965458, + 53.473379301 + ], + [ + 10.1976489, + 53.473591901 + ], + [ + 10.1986574, + 53.473793201 + ], + [ + 10.1998158, + 53.474043601 + ], + [ + 10.2011206, + 53.474333201 + ], + [ + 10.2021796, + 53.474571301 + ], + [ + 10.2028227, + 53.474718001 + ], + [ + 10.2042088, + 53.475017501 + ], + [ + 10.2052656, + 53.475233201 + ], + [ + 10.20627, + 53.475411301 + ], + [ + 10.2065694, + 53.475467401 + ], + [ + 10.2074085, + 53.475615301 + ], + [ + 10.2082314, + 53.475747701 + ], + [ + 10.2088909, + 53.475858801 + ], + [ + 10.209542, + 53.475958401 + ], + [ + 10.2105952, + 53.476108801 + ], + [ + 10.2111415, + 53.476181101 + ], + [ + 10.2116906, + 53.476253901 + ], + [ + 10.2125123, + 53.476348601 + ], + [ + 10.2135107, + 53.476461801 + ], + [ + 10.2145167, + 53.476568201 + ], + [ + 10.2153781, + 53.476650201 + ], + [ + 10.2162394, + 53.476723301 + ], + [ + 10.2179638, + 53.476837001 + ], + [ + 10.2192593, + 53.476908001 + ], + [ + 10.2205555, + 53.476963601 + ], + [ + 10.2218275, + 53.477005301 + ], + [ + 10.2230842, + 53.477021201 + ], + [ + 10.2245432, + 53.477021301 + ], + [ + 10.2260135, + 53.477004101 + ], + [ + 10.2271532, + 53.476969201 + ], + [ + 10.2283882, + 53.476922801 + ], + [ + 10.2299954, + 53.476838801 + ], + [ + 10.2315288, + 53.476734801 + ], + [ + 10.2328245, + 53.476628601 + ], + [ + 10.2344374, + 53.476476601 + ], + [ + 10.2359117, + 53.476325401 + ], + [ + 10.2367299, + 53.476227101 + ], + [ + 10.2373416, + 53.476152901 + ], + [ + 10.2380724, + 53.476054901 + ], + [ + 10.2387231, + 53.475959001 + ], + [ + 10.2393547, + 53.475862301 + ], + [ + 10.2403741, + 53.475697101 + ], + [ + 10.2411647, + 53.475554601 + ], + [ + 10.2421505, + 53.475351501 + ], + [ + 10.2429559, + 53.475161601 + ], + [ + 10.2436498, + 53.474993001 + ], + [ + 10.244456, + 53.474765701 + ], + [ + 10.2451523, + 53.474558601 + ], + [ + 10.2458367, + 53.474343101 + ], + [ + 10.2465156, + 53.474119601 + ], + [ + 10.2471738, + 53.473900301 + ], + [ + 10.2500306, + 53.472860601 + ], + [ + 10.2537599, + 53.471482801 + ], + [ + 10.2553731, + 53.470905901 + ], + [ + 10.2574902, + 53.470188001 + ], + [ + 10.2585724, + 53.469838101 + ], + [ + 10.2596754, + 53.469511001 + ], + [ + 10.2617387, + 53.468924901 + ], + [ + 10.262382242, + 53.468750474 + ] + ] + } + }, + { + "identifier": "2023-005099--vi-bs.2026-04-13_05-00-00-000.devi-zus.2025-09-01_00-00-00-000.de82", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.47604062149082,10.165408984897253,53.504528375845574,10.08265578354498", + "point": "53.47604062149082,10.165408984897253", + "startLcPosition": "3", + "impact": { + "lower": "Hamburg-S\u00fcdost", + "upper": "Hamburg-Nettelnburg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Geesthacht -> Hamburg", + "title": "A25 | Hamburg-Nettelnburg - Hamburg-S\u00fcdost", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 53.47604062149082, + "long": 10.165408984897253 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 12.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.10.26)", + "", + "A25: Geesthacht -> Hamburg, zwischen 0.8 km hinter AS Hamburg-Nettelnburg und 0.3 km vor AD Hamburg-S\u00fcdost", + "", + "L\u00e4nge: 6.51 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A25, AD HH-S\u00fcdost bis AS HH-Neuallerm\u00f6he-West, beide RiFa, Erneuerung Deck- und Binderschicht, km 0,5-6,2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.165408985, + 53.476040621 + ], + [ + 10.1630636, + 53.476647901 + ], + [ + 10.1605998, + 53.477366701 + ], + [ + 10.1581548, + 53.478163701 + ], + [ + 10.1548715, + 53.479294301 + ], + [ + 10.1531636, + 53.479884701 + ], + [ + 10.1527242, + 53.480029101 + ], + [ + 10.1522328, + 53.480190501 + ], + [ + 10.1514193, + 53.480451101 + ], + [ + 10.150833, + 53.480637401 + ], + [ + 10.1502044, + 53.480825401 + ], + [ + 10.14881, + 53.481228301 + ], + [ + 10.1475281, + 53.481579801 + ], + [ + 10.1455433, + 53.482091801 + ], + [ + 10.1449545, + 53.482232001 + ], + [ + 10.1440698, + 53.482437001 + ], + [ + 10.1428682, + 53.482703401 + ], + [ + 10.1420919, + 53.482868601 + ], + [ + 10.1413053, + 53.483028601 + ], + [ + 10.1397601, + 53.483319501 + ], + [ + 10.138812, + 53.483494101 + ], + [ + 10.1378478, + 53.483654601 + ], + [ + 10.135914, + 53.483954901 + ], + [ + 10.1338627, + 53.484230301 + ], + [ + 10.130931, + 53.484569201 + ], + [ + 10.1257103, + 53.485042201 + ], + [ + 10.1229031, + 53.485323601 + ], + [ + 10.1222044, + 53.485406501 + ], + [ + 10.120845, + 53.485595101 + ], + [ + 10.1200977, + 53.485718401 + ], + [ + 10.1191887, + 53.485892601 + ], + [ + 10.1182797, + 53.486086901 + ], + [ + 10.1178177, + 53.486196101 + ], + [ + 10.1174911, + 53.486277401 + ], + [ + 10.1170671, + 53.486391401 + ], + [ + 10.1162716, + 53.486620101 + ], + [ + 10.1150523, + 53.486975001 + ], + [ + 10.1137082, + 53.487425801 + ], + [ + 10.1132232, + 53.487598101 + ], + [ + 10.1114821, + 53.488226001 + ], + [ + 10.1093666, + 53.489089301 + ], + [ + 10.1086396, + 53.489386901 + ], + [ + 10.1081657, + 53.489579401 + ], + [ + 10.1065528, + 53.490334001 + ], + [ + 10.1054023, + 53.490876901 + ], + [ + 10.1034786, + 53.491865101 + ], + [ + 10.1007892, + 53.493428601 + ], + [ + 10.0985925, + 53.494807901 + ], + [ + 10.0975433, + 53.495504101 + ], + [ + 10.0953527, + 53.496956401 + ], + [ + 10.0952211, + 53.497040201 + ], + [ + 10.094279, + 53.497632601 + ], + [ + 10.0920356, + 53.499014001 + ], + [ + 10.0903204, + 53.499982701 + ], + [ + 10.0888682, + 53.500723501 + ], + [ + 10.0885879, + 53.500866501 + ], + [ + 10.0868788, + 53.501768001 + ], + [ + 10.0860189, + 53.502228901 + ], + [ + 10.0854412, + 53.502556101 + ], + [ + 10.0848804, + 53.502899701 + ], + [ + 10.0843495, + 53.503242101 + ], + [ + 10.0838531, + 53.503593301 + ], + [ + 10.0835282, + 53.503828601 + ], + [ + 10.0834158, + 53.503909901 + ], + [ + 10.082655784, + 53.504528376 + ] + ] + } + }, + { + "identifier": "2026-014756--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.46884181844363,10.262451736429634,53.47279046716779,10.186022986180411", + "point": "53.46884181844363,10.262451736429634", + "startLcPosition": "6", + "impact": { + "lower": "Hamburg-Nettelnburg", + "upper": "Geesthacht", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Geesthacht -> Hamburg", + "title": "A25 | Geesthacht - Hamburg-Nettelnburg", + "coordinate": { + "lat": 53.46884181844363, + "long": 10.262451736429634 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A25: Geesthacht -> Hamburg, zwischen 4.8 km hinter Geesthacht und 0.6 km vor AS Hamburg-Nettelnburg", + "", + "L\u00e4nge: 5.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A25 von Hamburg-Bergedorf (AS) Beide RIFA Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.262451736, + 53.468841818 + ], + [ + 10.2618085, + 53.469015901 + ], + [ + 10.2597541, + 53.469600301 + ], + [ + 10.2586462, + 53.469929901 + ], + [ + 10.25757, + 53.470277101 + ], + [ + 10.2554665, + 53.470988301 + ], + [ + 10.2538329, + 53.471572801 + ], + [ + 10.2501231, + 53.472947501 + ], + [ + 10.2472757, + 53.473982401 + ], + [ + 10.2466069, + 53.474211401 + ], + [ + 10.2459212, + 53.474438301 + ], + [ + 10.2452247, + 53.474652401 + ], + [ + 10.2445154, + 53.474858301 + ], + [ + 10.2441896, + 53.474949601 + ], + [ + 10.2437274, + 53.475079101 + ], + [ + 10.2430162, + 53.475257501 + ], + [ + 10.2422095, + 53.475447801 + ], + [ + 10.2412217, + 53.475655301 + ], + [ + 10.2404113, + 53.475805501 + ], + [ + 10.2393929, + 53.475974301 + ], + [ + 10.2387651, + 53.476067601 + ], + [ + 10.2380957, + 53.476162601 + ], + [ + 10.2373751, + 53.476252201 + ], + [ + 10.2367708, + 53.476326001 + ], + [ + 10.2359425, + 53.476422601 + ], + [ + 10.234446, + 53.476578701 + ], + [ + 10.2328565, + 53.476729801 + ], + [ + 10.2315557, + 53.476835401 + ], + [ + 10.23002, + 53.476938401 + ], + [ + 10.2284028, + 53.477019801 + ], + [ + 10.2271649, + 53.477065701 + ], + [ + 10.2260113, + 53.477102301 + ], + [ + 10.2245473, + 53.477119501 + ], + [ + 10.2230996, + 53.477117501 + ], + [ + 10.2218301, + 53.477100301 + ], + [ + 10.2205194, + 53.477061801 + ], + [ + 10.2192459, + 53.477009301 + ], + [ + 10.2179322, + 53.476936801 + ], + [ + 10.2162121, + 53.476815501 + ], + [ + 10.2153499, + 53.476746701 + ], + [ + 10.2144895, + 53.476665301 + ], + [ + 10.2134822, + 53.476560401 + ], + [ + 10.2124767, + 53.476449901 + ], + [ + 10.2116553, + 53.476348501 + ], + [ + 10.2111066, + 53.476278401 + ], + [ + 10.2105593, + 53.476201201 + ], + [ + 10.2099495, + 53.476116001 + ], + [ + 10.2095042, + 53.476053701 + ], + [ + 10.2088569, + 53.475953801 + ], + [ + 10.208183, + 53.475843801 + ], + [ + 10.2073697, + 53.475713001 + ], + [ + 10.2065181, + 53.475560801 + ], + [ + 10.2052302, + 53.475315201 + ], + [ + 10.204214, + 53.475111001 + ], + [ + 10.2028246, + 53.474811201 + ], + [ + 10.2017924, + 53.474589601 + ], + [ + 10.2009436, + 53.474390901 + ], + [ + 10.199865, + 53.474161101 + ], + [ + 10.198704, + 53.473911501 + ], + [ + 10.1982642, + 53.473819401 + ], + [ + 10.1965037, + 53.473470001 + ], + [ + 10.1952884, + 53.473271101 + ], + [ + 10.1941233, + 53.473106201 + ], + [ + 10.1933142, + 53.473007201 + ], + [ + 10.1921593, + 53.472891501 + ], + [ + 10.1908946, + 53.472802601 + ], + [ + 10.1895282, + 53.472741101 + ], + [ + 10.1879392, + 53.472728301 + ], + [ + 10.1867276, + 53.472751801 + ], + [ + 10.186022986, + 53.472790467 + ] + ] + } + } + ] + }, + "A26": { + "roadworks": [] + }, + "A27": { + "roadworks": [ + { + "identifier": "2026-017449--vi-bs.2026-04-09_08-30-00-000.devi-zus.2026-04-09_08-30-00-000.de10", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.80160840830346,9.640389883534606,52.80044877787817,9.64265997911836", + "point": "52.80160840830346,9.640389883534606", + "startLcPosition": "2", + "impact": { + "lower": "Krelinger Heide", + "upper": "D\u00fcshorn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Walsrode", + "title": "A27 | D\u00fcshorn - Krelinger Heide", + "coordinate": { + "lat": 52.80160840830346, + "long": 9.640389883534606 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 13:00 bis 15:30 Uhr", + "", + "A27: Bremen -> Walsrode, zwischen 3.3 km hinter D\u00fcshorn und 0.9 km vor Krelinger Heide", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 von Timmerloh (Parkplatz) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.640389884, + 52.801608408 + ], + [ + 9.6409662, + 52.801308301 + ], + [ + 9.6419709, + 52.800793301 + ], + [ + 9.642659979, + 52.800448778 + ] + ] + } + }, + { + "identifier": "2026-017449--vi-bs.2026-04-09_08-30-00-000.devi-zus.2026-04-09_08-30-00-000.de8", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.80160840830346,9.640389883534606,52.80044877787817,9.64265997911836", + "point": "52.80160840830346,9.640389883534606", + "startLcPosition": "2", + "impact": { + "lower": "Krelinger Heide", + "upper": "D\u00fcshorn", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Walsrode", + "title": "A27 | D\u00fcshorn - Krelinger Heide", + "coordinate": { + "lat": 52.80160840830346, + "long": 9.640389883534606 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:30 Uhr", + "", + "A27: Bremen -> Walsrode, zwischen 3.3 km hinter D\u00fcshorn und 0.9 km vor Krelinger Heide", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 von Timmerloh (Parkplatz) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.640389884, + 52.801608408 + ], + [ + 9.6409662, + 52.801308301 + ], + [ + 9.6419709, + 52.800793301 + ], + [ + 9.642659979, + 52.800448778 + ] + ] + } + }, + { + "identifier": "2025-031353--vi-bs.2026-04-01_00-00-00-000.devi-zus.2026-04-01_00-00-00-000_003.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.98523681960597,9.209758610106686,52.98616407101454,9.208135415646144", + "point": "52.98523681960597,9.209758610106686", + "startLcPosition": "9", + "impact": { + "lower": "Goldbach", + "upper": "Verden-Nord", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Walsrode -> Bremen", + "title": "A27 | Verden-Nord - Goldbach", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 52.98523681960597, + "long": 9.209758610106686 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 01.06.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.27)", + "", + "A27: Walsrode -> Bremen, zwischen 3.7 km hinter AS Verden-Nord und 2.3 km vor Goldbach", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 6 m", + "", + "BW 3317 - Ersatzneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.20975861, + 52.98523682 + ], + [ + 9.2090918, + 52.985621101 + ], + [ + 9.208135416, + 52.986164071 + ] + ] + } + }, + { + "identifier": "2025-031353--vi-bs.2026-04-01_00-00-00-000.devi-zus.2026-04-01_00-00-00-000_003.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.98607373993249,9.207995141160092,52.98514700471436,9.209615510793991", + "point": "52.98607373993249,9.207995141160092", + "startLcPosition": "10", + "impact": { + "lower": "Verden-Nord", + "upper": "Goldbach", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Walsrode", + "title": "A27 | Goldbach - Verden-Nord", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 52.98607373993249, + "long": 9.207995141160092 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 01.06.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.27)", + "", + "A27: Bremen -> Walsrode, zwischen 2.3 km hinter Goldbach und 3.7 km vor AS Verden-Nord", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 6 m", + "", + "BW 3317 - Ersatzneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.207995141, + 52.98607374 + ], + [ + 9.2089613, + 52.985529401 + ], + [ + 9.209615511, + 52.985147005 + ] + ] + } + }, + { + "identifier": "2026-016723--vi-bs.2026-04-13_08-00-00-000_010.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.02469525233538,9.027540458006866,53.060859626355715,8.967312563646738", + "point": "53.02469525233538,9.027540458006866", + "startLcPosition": "14", + "impact": { + "lower": "Bremen-Vahr", + "upper": "Achim-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Walsrode -> Bremerhaven", + "title": "A27 | Achim-Nord - Bremen-Vahr", + "coordinate": { + "lat": 53.02469525233538, + "long": 9.027540458006866 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A27: Walsrode -> Bremerhaven, zwischen 0.3 km hinter AS Achim-Nord und 5.3 km vor AS Bremen-Vahr", + "", + "L\u00e4nge: 6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A27 von Achim-Nord (AS) nach Bremen-Vahr (AS) Beschilderungsarbeiten-Kontrolle der Schilderrbr\u00fccken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.027540458, + 53.024695252 + ], + [ + 9.0266799, + 53.024865301 + ], + [ + 9.025527, + 53.025102801 + ], + [ + 9.0248709, + 53.025245101 + ], + [ + 9.0231348, + 53.025629301 + ], + [ + 9.0209735, + 53.026131601 + ], + [ + 9.0185201, + 53.026751101 + ], + [ + 9.0166392, + 53.027267901 + ], + [ + 9.0149187, + 53.027740701 + ], + [ + 9.01216, + 53.028567001 + ], + [ + 9.0104397, + 53.029104401 + ], + [ + 9.0087215, + 53.029675901 + ], + [ + 9.0079414, + 53.029951801 + ], + [ + 9.0074191, + 53.030128101 + ], + [ + 9.0062311, + 53.030548701 + ], + [ + 9.0051866, + 53.030926201 + ], + [ + 9.0029153, + 53.031798201 + ], + [ + 9.0013265, + 53.032437101 + ], + [ + 8.9997588, + 53.033105901 + ], + [ + 8.9975774, + 53.034074901 + ], + [ + 8.9968892, + 53.034393001 + ], + [ + 8.9956619, + 53.034996501 + ], + [ + 8.995076, + 53.035284601 + ], + [ + 8.9938803, + 53.035892401 + ], + [ + 8.9927451, + 53.036484801 + ], + [ + 8.9912701, + 53.037275501 + ], + [ + 8.9902964, + 53.037820401 + ], + [ + 8.9898027, + 53.038087701 + ], + [ + 8.9885817, + 53.038778001 + ], + [ + 8.9863597, + 53.040086001 + ], + [ + 8.9852186, + 53.040775501 + ], + [ + 8.9841755, + 53.041424601 + ], + [ + 8.9840557, + 53.041498401 + ], + [ + 8.9835528, + 53.041814301 + ], + [ + 8.9829461, + 53.042196101 + ], + [ + 8.9823827, + 53.042561101 + ], + [ + 8.9812595, + 53.043286901 + ], + [ + 8.9805546, + 53.043749101 + ], + [ + 8.9796659, + 53.044342101 + ], + [ + 8.978963, + 53.044813301 + ], + [ + 8.9779482, + 53.045504201 + ], + [ + 8.9768462, + 53.046257401 + ], + [ + 8.9763293, + 53.046615701 + ], + [ + 8.9757956, + 53.046979101 + ], + [ + 8.9752269, + 53.047385501 + ], + [ + 8.9747358, + 53.047764601 + ], + [ + 8.9742387, + 53.048174201 + ], + [ + 8.9739261, + 53.048460401 + ], + [ + 8.9735919, + 53.048773201 + ], + [ + 8.973275, + 53.049096501 + ], + [ + 8.9729851, + 53.049410401 + ], + [ + 8.9726756, + 53.049769801 + ], + [ + 8.9724996, + 53.049990301 + ], + [ + 8.9722649, + 53.050284901 + ], + [ + 8.9720547, + 53.050577601 + ], + [ + 8.9716997, + 53.051113501 + ], + [ + 8.9715363, + 53.051388901 + ], + [ + 8.9713863, + 53.051661301 + ], + [ + 8.9710602, + 53.052356401 + ], + [ + 8.9708083, + 53.052931901 + ], + [ + 8.9707439, + 53.053077901 + ], + [ + 8.9696566, + 53.055510901 + ], + [ + 8.9693392, + 53.056243301 + ], + [ + 8.9691616, + 53.056653101 + ], + [ + 8.9691261, + 53.056738301 + ], + [ + 8.9686081, + 53.057938301 + ], + [ + 8.9684941, + 53.058197201 + ], + [ + 8.9683949, + 53.058425201 + ], + [ + 8.9681952, + 53.058856401 + ], + [ + 8.9679525, + 53.059396101 + ], + [ + 8.9674831, + 53.060472201 + ], + [ + 8.9673361, + 53.060805801 + ], + [ + 8.967312564, + 53.060859626 + ] + ] + } + }, + { + "identifier": "2026-017049--vi-bs.2026-04-07_19-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.03831391080087,8.989402587587387,53.04342207178957,8.981053353493285", + "point": "53.03831391080087,8.989402587587387", + "startLcPosition": "14", + "impact": { + "lower": "Bremen-Sebaldsbr\u00fcck", + "upper": "Achim-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Walsrode -> Bremerhaven", + "title": "A27 | Achim-Nord - Bremen-Sebaldsbr\u00fcck", + "coordinate": { + "lat": 53.03831391080087, + "long": 8.989402587587387 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A27: Walsrode -> Bremerhaven, zwischen 3.3 km hinter AS Achim-Nord und 1.9 km vor AS Bremen-Sebaldsbr\u00fcck", + "", + "L\u00e4nge: 0.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A27 von Achim-Nord (AS) nach Bremen-Sebaldsbr\u00fcck (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.989402588, + 53.038313911 + ], + [ + 8.9885817, + 53.038778001 + ], + [ + 8.9863597, + 53.040086001 + ], + [ + 8.9852186, + 53.040775501 + ], + [ + 8.9841755, + 53.041424601 + ], + [ + 8.9840557, + 53.041498401 + ], + [ + 8.9835528, + 53.041814301 + ], + [ + 8.9829461, + 53.042196101 + ], + [ + 8.9823827, + 53.042561101 + ], + [ + 8.9812595, + 53.043286901 + ], + [ + 8.981053353, + 53.043422072 + ] + ] + } + }, + { + "identifier": "2026-017698--vi-fbm.2026-04-22_00-00-00-000.devi-zus.2026-04-10_00-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.090227748496034,8.895013151145314,53.10945285296555,8.869090960347172", + "point": "53.090227748496034,8.895013151145314", + "startLcPosition": "18", + "impact": { + "lower": "Bremen-Horn/Lehe", + "upper": "Achterk\u00e4mpe", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Achterk\u00e4mpe - Bremen-Horn/Lehe", + "coordinate": { + "lat": 53.090227748496034, + "long": 8.895013151145314 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 00:00 Uhr bis zum 26.04.26 24:00 Uhr.", + "", + "A27: Bremen -> Bremerhaven, zwischen 0.1 km hinter Achterk\u00e4mpe und 0.2 km vor AS Bremen-Horn/Lehe", + "", + "L\u00e4nge: 2.81 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "BW 15 - Herstellung von Mittelstreifen\u00fcberfahrten f\u00fcr die Umfahrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.895013151, + 53.090227748 + ], + [ + 8.8925696, + 53.091800101 + ], + [ + 8.8904443, + 53.093177101 + ], + [ + 8.8897496, + 53.093633701 + ], + [ + 8.8892644, + 53.093960901 + ], + [ + 8.8888031, + 53.094292001 + ], + [ + 8.8883837, + 53.094628401 + ], + [ + 8.8879453, + 53.094986001 + ], + [ + 8.8876348, + 53.095264001 + ], + [ + 8.8873281, + 53.095547501 + ], + [ + 8.8867581, + 53.096126001 + ], + [ + 8.8863667, + 53.096568001 + ], + [ + 8.8859247, + 53.097108301 + ], + [ + 8.8855354, + 53.097658801 + ], + [ + 8.8852143, + 53.098154601 + ], + [ + 8.8847093, + 53.099056001 + ], + [ + 8.8841736, + 53.099976501 + ], + [ + 8.8840413, + 53.100187101 + ], + [ + 8.8838585, + 53.100472601 + ], + [ + 8.8835629, + 53.100892001 + ], + [ + 8.883386, + 53.101126501 + ], + [ + 8.8829505, + 53.101650001 + ], + [ + 8.8823218, + 53.102319201 + ], + [ + 8.8818626, + 53.102754501 + ], + [ + 8.8815885, + 53.102993401 + ], + [ + 8.8810895, + 53.103426401 + ], + [ + 8.8806007, + 53.103806501 + ], + [ + 8.8798464, + 53.104343901 + ], + [ + 8.8789069, + 53.104942901 + ], + [ + 8.8779009, + 53.105507301 + ], + [ + 8.8770597, + 53.105932301 + ], + [ + 8.876814, + 53.106056401 + ], + [ + 8.8748162, + 53.106939301 + ], + [ + 8.8733252, + 53.107590501 + ], + [ + 8.871774, + 53.108274801 + ], + [ + 8.8696233, + 53.109220901 + ], + [ + 8.86909096, + 53.109452853 + ] + ] + } + }, + { + "identifier": "2026-017698--vi-fbm.2026-04-10_00-00-00-000.devi-zus.2026-04-10_00-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.090227748496034,8.895013151145314,53.10945285296555,8.869090960347172", + "point": "53.090227748496034,8.895013151145314", + "startLcPosition": "18", + "impact": { + "lower": "Bremen-Horn/Lehe", + "upper": "Achterk\u00e4mpe", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Achterk\u00e4mpe - Bremen-Horn/Lehe", + "coordinate": { + "lat": 53.090227748496034, + "long": 8.895013151145314 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 00:00 Uhr bis zum 13.04.26 24:00 Uhr.", + "", + "A27: Bremen -> Bremerhaven, zwischen 0.1 km hinter Achterk\u00e4mpe und 0.2 km vor AS Bremen-Horn/Lehe", + "", + "L\u00e4nge: 2.81 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "BW 15 - Herstellung von Mittelstreifen\u00fcberfahrten f\u00fcr die Umfahrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.895013151, + 53.090227748 + ], + [ + 8.8925696, + 53.091800101 + ], + [ + 8.8904443, + 53.093177101 + ], + [ + 8.8897496, + 53.093633701 + ], + [ + 8.8892644, + 53.093960901 + ], + [ + 8.8888031, + 53.094292001 + ], + [ + 8.8883837, + 53.094628401 + ], + [ + 8.8879453, + 53.094986001 + ], + [ + 8.8876348, + 53.095264001 + ], + [ + 8.8873281, + 53.095547501 + ], + [ + 8.8867581, + 53.096126001 + ], + [ + 8.8863667, + 53.096568001 + ], + [ + 8.8859247, + 53.097108301 + ], + [ + 8.8855354, + 53.097658801 + ], + [ + 8.8852143, + 53.098154601 + ], + [ + 8.8847093, + 53.099056001 + ], + [ + 8.8841736, + 53.099976501 + ], + [ + 8.8840413, + 53.100187101 + ], + [ + 8.8838585, + 53.100472601 + ], + [ + 8.8835629, + 53.100892001 + ], + [ + 8.883386, + 53.101126501 + ], + [ + 8.8829505, + 53.101650001 + ], + [ + 8.8823218, + 53.102319201 + ], + [ + 8.8818626, + 53.102754501 + ], + [ + 8.8815885, + 53.102993401 + ], + [ + 8.8810895, + 53.103426401 + ], + [ + 8.8806007, + 53.103806501 + ], + [ + 8.8798464, + 53.104343901 + ], + [ + 8.8789069, + 53.104942901 + ], + [ + 8.8779009, + 53.105507301 + ], + [ + 8.8770597, + 53.105932301 + ], + [ + 8.876814, + 53.106056401 + ], + [ + 8.8748162, + 53.106939301 + ], + [ + 8.8733252, + 53.107590501 + ], + [ + 8.871774, + 53.108274801 + ], + [ + 8.8696233, + 53.109220901 + ], + [ + 8.86909096, + 53.109452853 + ] + ] + } + }, + { + "identifier": "2026-017698--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-10_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.090227748496034,8.895013151145314,53.10945285296555,8.869090960347172", + "point": "53.090227748496034,8.895013151145314", + "startLcPosition": "18", + "impact": { + "lower": "Bremen-Horn/Lehe", + "upper": "Achterk\u00e4mpe", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Achterk\u00e4mpe - Bremen-Horn/Lehe", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 53.090227748496034, + "long": 8.895013151145314 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 23.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.04.26)", + "", + "A27: Bremen -> Bremerhaven, zwischen 0.1 km hinter Achterk\u00e4mpe und 0.2 km vor AS Bremen-Horn/Lehe", + "", + "L\u00e4nge: 2.81 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "BW 15 - Herstellung von Mittelstreifen\u00fcberfahrten f\u00fcr die Umfahrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.895013151, + 53.090227748 + ], + [ + 8.8925696, + 53.091800101 + ], + [ + 8.8904443, + 53.093177101 + ], + [ + 8.8897496, + 53.093633701 + ], + [ + 8.8892644, + 53.093960901 + ], + [ + 8.8888031, + 53.094292001 + ], + [ + 8.8883837, + 53.094628401 + ], + [ + 8.8879453, + 53.094986001 + ], + [ + 8.8876348, + 53.095264001 + ], + [ + 8.8873281, + 53.095547501 + ], + [ + 8.8867581, + 53.096126001 + ], + [ + 8.8863667, + 53.096568001 + ], + [ + 8.8859247, + 53.097108301 + ], + [ + 8.8855354, + 53.097658801 + ], + [ + 8.8852143, + 53.098154601 + ], + [ + 8.8847093, + 53.099056001 + ], + [ + 8.8841736, + 53.099976501 + ], + [ + 8.8840413, + 53.100187101 + ], + [ + 8.8838585, + 53.100472601 + ], + [ + 8.8835629, + 53.100892001 + ], + [ + 8.883386, + 53.101126501 + ], + [ + 8.8829505, + 53.101650001 + ], + [ + 8.8823218, + 53.102319201 + ], + [ + 8.8818626, + 53.102754501 + ], + [ + 8.8815885, + 53.102993401 + ], + [ + 8.8810895, + 53.103426401 + ], + [ + 8.8806007, + 53.103806501 + ], + [ + 8.8798464, + 53.104343901 + ], + [ + 8.8789069, + 53.104942901 + ], + [ + 8.8779009, + 53.105507301 + ], + [ + 8.8770597, + 53.105932301 + ], + [ + 8.876814, + 53.106056401 + ], + [ + 8.8748162, + 53.106939301 + ], + [ + 8.8733252, + 53.107590501 + ], + [ + 8.871774, + 53.108274801 + ], + [ + 8.8696233, + 53.109220901 + ], + [ + 8.86909096, + 53.109452853 + ] + ] + } + }, + { + "identifier": "2026-016145--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_004.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.11631825563335,8.824215134857573,53.119668428555734,8.795452476596605", + "point": "53.11631825563335,8.824215134857573", + "startLcPosition": "20", + "impact": { + "lower": "Fahrwiesen", + "upper": "Bremen-Horn/Lehe", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Bremen-Horn/Lehe - Fahrwiesen", + "coordinate": { + "lat": 53.11631825563335, + "long": 8.824215134857573 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A27: Bremen -> Bremerhaven, zwischen 3.0 km hinter AS Bremen-Horn/Lehe und 0.1 km vor Fahrwiesen", + "", + "L\u00e4nge: 1.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A27 von Bremen-HornLehe (AS) nach Fahrwiesen (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.824215135, + 53.116318256 + ], + [ + 8.8215109, + 53.116414301 + ], + [ + 8.8189648, + 53.116491601 + ], + [ + 8.818849, + 53.116494401 + ], + [ + 8.8187746, + 53.116496201 + ], + [ + 8.8175438, + 53.116534101 + ], + [ + 8.8167503, + 53.116565501 + ], + [ + 8.8164368, + 53.116575101 + ], + [ + 8.8126913, + 53.116710401 + ], + [ + 8.8121708, + 53.116743101 + ], + [ + 8.8113112, + 53.116823701 + ], + [ + 8.8103585, + 53.116898901 + ], + [ + 8.8093386, + 53.117013001 + ], + [ + 8.8083672, + 53.117137201 + ], + [ + 8.80716, + 53.117324801 + ], + [ + 8.8057784, + 53.117575501 + ], + [ + 8.8043151, + 53.117865401 + ], + [ + 8.7994457, + 53.118861901 + ], + [ + 8.797987, + 53.119161001 + ], + [ + 8.7963768, + 53.119489901 + ], + [ + 8.795452477, + 53.119668429 + ] + ] + } + }, + { + "identifier": "2026-016145--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_004.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.11631825563335,8.824215134857573,53.119668428555734,8.795452476596605", + "point": "53.11631825563335,8.824215134857573", + "startLcPosition": "20", + "impact": { + "lower": "Fahrwiesen", + "upper": "Bremen-Horn/Lehe", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Bremen-Horn/Lehe - Fahrwiesen", + "coordinate": { + "lat": 53.11631825563335, + "long": 8.824215134857573 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A27: Bremen -> Bremerhaven, zwischen 3.0 km hinter AS Bremen-Horn/Lehe und 0.1 km vor Fahrwiesen", + "", + "L\u00e4nge: 1.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A27 von Bremen-HornLehe (AS) nach Fahrwiesen (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.824215135, + 53.116318256 + ], + [ + 8.8215109, + 53.116414301 + ], + [ + 8.8189648, + 53.116491601 + ], + [ + 8.818849, + 53.116494401 + ], + [ + 8.8187746, + 53.116496201 + ], + [ + 8.8175438, + 53.116534101 + ], + [ + 8.8167503, + 53.116565501 + ], + [ + 8.8164368, + 53.116575101 + ], + [ + 8.8126913, + 53.116710401 + ], + [ + 8.8121708, + 53.116743101 + ], + [ + 8.8113112, + 53.116823701 + ], + [ + 8.8103585, + 53.116898901 + ], + [ + 8.8093386, + 53.117013001 + ], + [ + 8.8083672, + 53.117137201 + ], + [ + 8.80716, + 53.117324801 + ], + [ + 8.8057784, + 53.117575501 + ], + [ + 8.8043151, + 53.117865401 + ], + [ + 8.7994457, + 53.118861901 + ], + [ + 8.797987, + 53.119161001 + ], + [ + 8.7963768, + 53.119489901 + ], + [ + 8.795452477, + 53.119668429 + ] + ] + } + }, + { + "identifier": "2026-016145--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_004.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.11631825563335,8.824215134857573,53.119668428555734,8.795452476596605", + "point": "53.11631825563335,8.824215134857573", + "startLcPosition": "20", + "impact": { + "lower": "Fahrwiesen", + "upper": "Bremen-Horn/Lehe", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Bremen-Horn/Lehe - Fahrwiesen", + "coordinate": { + "lat": 53.11631825563335, + "long": 8.824215134857573 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A27: Bremen -> Bremerhaven, zwischen 3.0 km hinter AS Bremen-Horn/Lehe und 0.1 km vor Fahrwiesen", + "", + "L\u00e4nge: 1.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A27 von Bremen-HornLehe (AS) nach Fahrwiesen (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.824215135, + 53.116318256 + ], + [ + 8.8215109, + 53.116414301 + ], + [ + 8.8189648, + 53.116491601 + ], + [ + 8.818849, + 53.116494401 + ], + [ + 8.8187746, + 53.116496201 + ], + [ + 8.8175438, + 53.116534101 + ], + [ + 8.8167503, + 53.116565501 + ], + [ + 8.8164368, + 53.116575101 + ], + [ + 8.8126913, + 53.116710401 + ], + [ + 8.8121708, + 53.116743101 + ], + [ + 8.8113112, + 53.116823701 + ], + [ + 8.8103585, + 53.116898901 + ], + [ + 8.8093386, + 53.117013001 + ], + [ + 8.8083672, + 53.117137201 + ], + [ + 8.80716, + 53.117324801 + ], + [ + 8.8057784, + 53.117575501 + ], + [ + 8.8043151, + 53.117865401 + ], + [ + 8.7994457, + 53.118861901 + ], + [ + 8.797987, + 53.119161001 + ], + [ + 8.7963768, + 53.119489901 + ], + [ + 8.795452477, + 53.119668429 + ] + ] + } + }, + { + "identifier": "2026-017698--vi-fbm.2026-04-22_00-00-00-000.devi-zus.2026-04-10_00-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.10933721089016,8.868953106218676,53.09014110073292,8.894858194011977", + "point": "53.10933721089016,8.868953106218676", + "startLcPosition": "20", + "impact": { + "lower": "Achterk\u00e4mpe", + "upper": "Bremen-Horn/Lehe", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Bremen-Horn/Lehe - Achterk\u00e4mpe", + "coordinate": { + "lat": 53.10933721089016, + "long": 8.868953106218676 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 00:00 Uhr bis zum 26.04.26 24:00 Uhr.", + "", + "A27: Bremerhaven -> Bremen, zwischen 0.2 km hinter AS Bremen-Horn/Lehe und 0.1 km vor Achterk\u00e4mpe", + "", + "L\u00e4nge: 2.81 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "BW 15 - Herstellung von Mittelstreifen\u00fcberfahrten f\u00fcr die Umfahrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.868953106, + 53.109337211 + ], + [ + 8.8716463, + 53.108182501 + ], + [ + 8.8725204, + 53.107795001 + ], + [ + 8.874197, + 53.107070001 + ], + [ + 8.8761153, + 53.106213001 + ], + [ + 8.877767, + 53.105428901 + ], + [ + 8.878753, + 53.104873001 + ], + [ + 8.8796839, + 53.104276101 + ], + [ + 8.8805369, + 53.103674601 + ], + [ + 8.8809583, + 53.103336101 + ], + [ + 8.8814808, + 53.102883001 + ], + [ + 8.8817512, + 53.102637101 + ], + [ + 8.8821593, + 53.102254801 + ], + [ + 8.8827834, + 53.101590901 + ], + [ + 8.8830888, + 53.101229301 + ], + [ + 8.8833827, + 53.100848901 + ], + [ + 8.8835833, + 53.100562001 + ], + [ + 8.8837838, + 53.100270201 + ], + [ + 8.8839943, + 53.099939201 + ], + [ + 8.8845197, + 53.099026501 + ], + [ + 8.8850407, + 53.098108001 + ], + [ + 8.8853592, + 53.097613401 + ], + [ + 8.8857512, + 53.097059301 + ], + [ + 8.886254, + 53.096446501 + ], + [ + 8.8865963, + 53.096062101 + ], + [ + 8.8871646, + 53.095485501 + ], + [ + 8.8874839, + 53.095188001 + ], + [ + 8.8877856, + 53.094924301 + ], + [ + 8.8882377, + 53.094550201 + ], + [ + 8.8886523, + 53.094226201 + ], + [ + 8.888903, + 53.094043701 + ], + [ + 8.8895937, + 53.093562101 + ], + [ + 8.890757, + 53.092805401 + ], + [ + 8.8939857, + 53.090710801 + ], + [ + 8.894858194, + 53.090141101 + ] + ] + } + }, + { + "identifier": "2026-017698--vi-fbm.2026-04-10_00-00-00-000.devi-zus.2026-04-10_00-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.10933721089016,8.868953106218676,53.09014110073292,8.894858194011977", + "point": "53.10933721089016,8.868953106218676", + "startLcPosition": "20", + "impact": { + "lower": "Achterk\u00e4mpe", + "upper": "Bremen-Horn/Lehe", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Bremen-Horn/Lehe - Achterk\u00e4mpe", + "coordinate": { + "lat": 53.10933721089016, + "long": 8.868953106218676 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 00:00 Uhr bis zum 13.04.26 24:00 Uhr.", + "", + "A27: Bremerhaven -> Bremen, zwischen 0.2 km hinter AS Bremen-Horn/Lehe und 0.1 km vor Achterk\u00e4mpe", + "", + "L\u00e4nge: 2.81 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "BW 15 - Herstellung von Mittelstreifen\u00fcberfahrten f\u00fcr die Umfahrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.868953106, + 53.109337211 + ], + [ + 8.8716463, + 53.108182501 + ], + [ + 8.8725204, + 53.107795001 + ], + [ + 8.874197, + 53.107070001 + ], + [ + 8.8761153, + 53.106213001 + ], + [ + 8.877767, + 53.105428901 + ], + [ + 8.878753, + 53.104873001 + ], + [ + 8.8796839, + 53.104276101 + ], + [ + 8.8805369, + 53.103674601 + ], + [ + 8.8809583, + 53.103336101 + ], + [ + 8.8814808, + 53.102883001 + ], + [ + 8.8817512, + 53.102637101 + ], + [ + 8.8821593, + 53.102254801 + ], + [ + 8.8827834, + 53.101590901 + ], + [ + 8.8830888, + 53.101229301 + ], + [ + 8.8833827, + 53.100848901 + ], + [ + 8.8835833, + 53.100562001 + ], + [ + 8.8837838, + 53.100270201 + ], + [ + 8.8839943, + 53.099939201 + ], + [ + 8.8845197, + 53.099026501 + ], + [ + 8.8850407, + 53.098108001 + ], + [ + 8.8853592, + 53.097613401 + ], + [ + 8.8857512, + 53.097059301 + ], + [ + 8.886254, + 53.096446501 + ], + [ + 8.8865963, + 53.096062101 + ], + [ + 8.8871646, + 53.095485501 + ], + [ + 8.8874839, + 53.095188001 + ], + [ + 8.8877856, + 53.094924301 + ], + [ + 8.8882377, + 53.094550201 + ], + [ + 8.8886523, + 53.094226201 + ], + [ + 8.888903, + 53.094043701 + ], + [ + 8.8895937, + 53.093562101 + ], + [ + 8.890757, + 53.092805401 + ], + [ + 8.8939857, + 53.090710801 + ], + [ + 8.894858194, + 53.090141101 + ] + ] + } + }, + { + "identifier": "2026-017698--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-10_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.10933721089016,8.868953106218676,53.09014110073292,8.894858194011977", + "point": "53.10933721089016,8.868953106218676", + "startLcPosition": "20", + "impact": { + "lower": "Achterk\u00e4mpe", + "upper": "Bremen-Horn/Lehe", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Bremen-Horn/Lehe - Achterk\u00e4mpe", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 53.10933721089016, + "long": 8.868953106218676 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 23.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.04.26)", + "", + "A27: Bremerhaven -> Bremen, zwischen 0.2 km hinter AS Bremen-Horn/Lehe und 0.1 km vor Achterk\u00e4mpe", + "", + "L\u00e4nge: 2.81 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "BW 15 - Herstellung von Mittelstreifen\u00fcberfahrten f\u00fcr die Umfahrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.868953106, + 53.109337211 + ], + [ + 8.8716463, + 53.108182501 + ], + [ + 8.8725204, + 53.107795001 + ], + [ + 8.874197, + 53.107070001 + ], + [ + 8.8761153, + 53.106213001 + ], + [ + 8.877767, + 53.105428901 + ], + [ + 8.878753, + 53.104873001 + ], + [ + 8.8796839, + 53.104276101 + ], + [ + 8.8805369, + 53.103674601 + ], + [ + 8.8809583, + 53.103336101 + ], + [ + 8.8814808, + 53.102883001 + ], + [ + 8.8817512, + 53.102637101 + ], + [ + 8.8821593, + 53.102254801 + ], + [ + 8.8827834, + 53.101590901 + ], + [ + 8.8830888, + 53.101229301 + ], + [ + 8.8833827, + 53.100848901 + ], + [ + 8.8835833, + 53.100562001 + ], + [ + 8.8837838, + 53.100270201 + ], + [ + 8.8839943, + 53.099939201 + ], + [ + 8.8845197, + 53.099026501 + ], + [ + 8.8850407, + 53.098108001 + ], + [ + 8.8853592, + 53.097613401 + ], + [ + 8.8857512, + 53.097059301 + ], + [ + 8.886254, + 53.096446501 + ], + [ + 8.8865963, + 53.096062101 + ], + [ + 8.8871646, + 53.095485501 + ], + [ + 8.8874839, + 53.095188001 + ], + [ + 8.8877856, + 53.094924301 + ], + [ + 8.8882377, + 53.094550201 + ], + [ + 8.8886523, + 53.094226201 + ], + [ + 8.888903, + 53.094043701 + ], + [ + 8.8895937, + 53.093562101 + ], + [ + 8.890757, + 53.092805401 + ], + [ + 8.8939857, + 53.090710801 + ], + [ + 8.894858194, + 53.090141101 + ] + ] + } + }, + { + "identifier": "2026-016145--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_004.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.11631825563335,8.824215134857573,53.119668428555734,8.795452476596605", + "point": "53.11631825563335,8.824215134857573", + "startLcPosition": "20", + "impact": { + "lower": "Fahrwiesen", + "upper": "Bremen-Horn/Lehe", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Bremen-Horn/Lehe - Fahrwiesen", + "coordinate": { + "lat": 53.11631825563335, + "long": 8.824215134857573 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A27: Bremen -> Bremerhaven, zwischen 3.0 km hinter AS Bremen-Horn/Lehe und 0.1 km vor Fahrwiesen", + "", + "L\u00e4nge: 1.98 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A27 von Bremen-HornLehe (AS) nach Fahrwiesen (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.824215135, + 53.116318256 + ], + [ + 8.8215109, + 53.116414301 + ], + [ + 8.8189648, + 53.116491601 + ], + [ + 8.818849, + 53.116494401 + ], + [ + 8.8187746, + 53.116496201 + ], + [ + 8.8175438, + 53.116534101 + ], + [ + 8.8167503, + 53.116565501 + ], + [ + 8.8164368, + 53.116575101 + ], + [ + 8.8126913, + 53.116710401 + ], + [ + 8.8121708, + 53.116743101 + ], + [ + 8.8113112, + 53.116823701 + ], + [ + 8.8103585, + 53.116898901 + ], + [ + 8.8093386, + 53.117013001 + ], + [ + 8.8083672, + 53.117137201 + ], + [ + 8.80716, + 53.117324801 + ], + [ + 8.8057784, + 53.117575501 + ], + [ + 8.8043151, + 53.117865401 + ], + [ + 8.7994457, + 53.118861901 + ], + [ + 8.797987, + 53.119161001 + ], + [ + 8.7963768, + 53.119489901 + ], + [ + 8.795452477, + 53.119668429 + ] + ] + } + }, + { + "identifier": "2026-016145--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_004.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.11953501807602,8.795379053587245,53.11619341956086,8.824203208391486", + "point": "53.11953501807602,8.795379053587245", + "startLcPosition": "22", + "impact": { + "lower": "Bremen-Horn/Lehe", + "upper": "Fahrwiesen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Fahrwiesen - Bremen-Horn/Lehe", + "coordinate": { + "lat": 53.11953501807602, + "long": 8.795379053587245 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A27: Bremerhaven -> Bremen, zwischen 0.1 km hinter Fahrwiesen und 3.0 km vor AS Bremen-Horn/Lehe", + "", + "L\u00e4nge: 1.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A27 von Bremen-HornLehe (AS) nach Fahrwiesen (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.795379054, + 53.119535018 + ], + [ + 8.7998103, + 53.118624101 + ], + [ + 8.8060011, + 53.117351401 + ], + [ + 8.8070328, + 53.117178701 + ], + [ + 8.8087445, + 53.116917401 + ], + [ + 8.8097939, + 53.116801401 + ], + [ + 8.8111398, + 53.116681101 + ], + [ + 8.8124833, + 53.116580301 + ], + [ + 8.816889, + 53.116416401 + ], + [ + 8.8173577, + 53.116406901 + ], + [ + 8.8176813, + 53.116395901 + ], + [ + 8.8187672, + 53.116374101 + ], + [ + 8.8189608, + 53.116370001 + ], + [ + 8.8208056, + 53.116307801 + ], + [ + 8.824203208, + 53.11619342 + ] + ] + } + }, + { + "identifier": "2026-016145--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_004.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.11953501807602,8.795379053587245,53.11619341956086,8.824203208391486", + "point": "53.11953501807602,8.795379053587245", + "startLcPosition": "22", + "impact": { + "lower": "Bremen-Horn/Lehe", + "upper": "Fahrwiesen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Fahrwiesen - Bremen-Horn/Lehe", + "coordinate": { + "lat": 53.11953501807602, + "long": 8.795379053587245 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A27: Bremerhaven -> Bremen, zwischen 0.1 km hinter Fahrwiesen und 3.0 km vor AS Bremen-Horn/Lehe", + "", + "L\u00e4nge: 1.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A27 von Bremen-HornLehe (AS) nach Fahrwiesen (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.795379054, + 53.119535018 + ], + [ + 8.7998103, + 53.118624101 + ], + [ + 8.8060011, + 53.117351401 + ], + [ + 8.8070328, + 53.117178701 + ], + [ + 8.8087445, + 53.116917401 + ], + [ + 8.8097939, + 53.116801401 + ], + [ + 8.8111398, + 53.116681101 + ], + [ + 8.8124833, + 53.116580301 + ], + [ + 8.816889, + 53.116416401 + ], + [ + 8.8173577, + 53.116406901 + ], + [ + 8.8176813, + 53.116395901 + ], + [ + 8.8187672, + 53.116374101 + ], + [ + 8.8189608, + 53.116370001 + ], + [ + 8.8208056, + 53.116307801 + ], + [ + 8.824203208, + 53.11619342 + ] + ] + } + }, + { + "identifier": "2026-016145--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_004.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.11953501807602,8.795379053587245,53.11619341956086,8.824203208391486", + "point": "53.11953501807602,8.795379053587245", + "startLcPosition": "22", + "impact": { + "lower": "Bremen-Horn/Lehe", + "upper": "Fahrwiesen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Fahrwiesen - Bremen-Horn/Lehe", + "coordinate": { + "lat": 53.11953501807602, + "long": 8.795379053587245 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A27: Bremerhaven -> Bremen, zwischen 0.1 km hinter Fahrwiesen und 3.0 km vor AS Bremen-Horn/Lehe", + "", + "L\u00e4nge: 1.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A27 von Bremen-HornLehe (AS) nach Fahrwiesen (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.795379054, + 53.119535018 + ], + [ + 8.7998103, + 53.118624101 + ], + [ + 8.8060011, + 53.117351401 + ], + [ + 8.8070328, + 53.117178701 + ], + [ + 8.8087445, + 53.116917401 + ], + [ + 8.8097939, + 53.116801401 + ], + [ + 8.8111398, + 53.116681101 + ], + [ + 8.8124833, + 53.116580301 + ], + [ + 8.816889, + 53.116416401 + ], + [ + 8.8173577, + 53.116406901 + ], + [ + 8.8176813, + 53.116395901 + ], + [ + 8.8187672, + 53.116374101 + ], + [ + 8.8189608, + 53.116370001 + ], + [ + 8.8208056, + 53.116307801 + ], + [ + 8.824203208, + 53.11619342 + ] + ] + } + }, + { + "identifier": "2026-016145--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_004.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.11953501807602,8.795379053587245,53.11619341956086,8.824203208391486", + "point": "53.11953501807602,8.795379053587245", + "startLcPosition": "22", + "impact": { + "lower": "Bremen-Horn/Lehe", + "upper": "Fahrwiesen", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Fahrwiesen - Bremen-Horn/Lehe", + "coordinate": { + "lat": 53.11953501807602, + "long": 8.795379053587245 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A27: Bremerhaven -> Bremen, zwischen 0.1 km hinter Fahrwiesen und 3.0 km vor AS Bremen-Horn/Lehe", + "", + "L\u00e4nge: 1.98 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A27 von Bremen-HornLehe (AS) nach Fahrwiesen (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.795379054, + 53.119535018 + ], + [ + 8.7998103, + 53.118624101 + ], + [ + 8.8060011, + 53.117351401 + ], + [ + 8.8070328, + 53.117178701 + ], + [ + 8.8087445, + 53.116917401 + ], + [ + 8.8097939, + 53.116801401 + ], + [ + 8.8111398, + 53.116681101 + ], + [ + 8.8124833, + 53.116580301 + ], + [ + 8.816889, + 53.116416401 + ], + [ + 8.8173577, + 53.116406901 + ], + [ + 8.8176813, + 53.116395901 + ], + [ + 8.8187672, + 53.116374101 + ], + [ + 8.8189608, + 53.116370001 + ], + [ + 8.8208056, + 53.116307801 + ], + [ + 8.824203208, + 53.11619342 + ] + ] + } + }, + { + "identifier": "2025-046086--vi-bs.2025-09-23_07-00-00-000.devi-zus.2025-09-23_07-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.20902048588838,8.660973400769828,53.21140488087647,8.657319663993619", + "point": "53.20902048588838,8.660973400769828", + "startLcPosition": "27", + "impact": { + "lower": "Schwanewede", + "upper": "Ihlpohl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Ihlpohl - Schwanewede", + "startTimestamp": "2025-09-23T07:00:00+02:00", + "coordinate": { + "lat": 53.20902048588838, + "long": 8.660973400769828 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.09.25 um 07:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A27: Bremen -> Bremerhaven, zwischen 3.6 km hinter AS Ihlpohl und 2.0 km vor AS Schwanewede", + "", + "L\u00e4nge: 0.36 km | Maximale Durchfahrtsbreite: 9 m", + "", + "Teilsperrung Parkpl\u00e4tze Habichthorst und Bremer Schweiz f\u00fcr Errichtung von E-Ladeinfrastruktur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.660973401, + 53.209020486 + ], + [ + 8.660877, + 53.209078701 + ], + [ + 8.6602649, + 53.209447101 + ], + [ + 8.6592229, + 53.210112401 + ], + [ + 8.6575814, + 53.211219301 + ], + [ + 8.657319664, + 53.211404881 + ] + ] + } + }, + { + "identifier": "2025-046086--vi-bs.2025-09-23_07-00-00-000.devi-zus.2025-09-23_07-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.20902048588838,8.660973400769828,53.21140488087647,8.657319663993619", + "point": "53.20902048588838,8.660973400769828", + "startLcPosition": "27", + "impact": { + "lower": "Schwanewede", + "upper": "Ihlpohl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Ihlpohl - Schwanewede", + "startTimestamp": "2025-09-23T07:00:00+02:00", + "coordinate": { + "lat": 53.20902048588838, + "long": 8.660973400769828 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.09.25 um 07:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A27: Bremen -> Bremerhaven, zwischen 3.6 km hinter AS Ihlpohl und 2.0 km vor AS Schwanewede", + "", + "L\u00e4nge: 0.36 km | Maximale Durchfahrtsbreite: 9 m", + "", + "Teilsperrung Parkpl\u00e4tze Habichthorst und Bremer Schweiz f\u00fcr Errichtung von E-Ladeinfrastruktur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.660973401, + 53.209020486 + ], + [ + 8.660877, + 53.209078701 + ], + [ + 8.6602649, + 53.209447101 + ], + [ + 8.6592229, + 53.210112401 + ], + [ + 8.6575814, + 53.211219301 + ], + [ + 8.657319664, + 53.211404881 + ] + ] + } + }, + { + "identifier": "2026-017541--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-04-09_08-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.30679588783758,8.618970904408524,53.3702362656004,8.576935833087898", + "point": "53.30679588783758,8.618970904408524", + "startLcPosition": "29", + "impact": { + "lower": "Hagen", + "upper": "Schwanewede", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Schwanewede - Hagen", + "coordinate": { + "lat": 53.30679588783758, + "long": 8.618970904408524 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "10.04.26 von 08:00 bis 17:00 Uhr", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A27: Bremen -> Bremerhaven, zwischen 9.1 km hinter AS Schwanewede und AS Hagen", + "", + "L\u00e4nge: 7.85 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A27 von Schwanewede (AS) nach Hagen (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.618970904, + 53.306795888 + ], + [ + 8.6189718, + 53.306821701 + ], + [ + 8.6189959, + 53.307622301 + ], + [ + 8.6190926, + 53.308692101 + ], + [ + 8.6191392, + 53.309192801 + ], + [ + 8.619458, + 53.311303201 + ], + [ + 8.619463, + 53.311331801 + ], + [ + 8.6195952, + 53.312038501 + ], + [ + 8.6197495, + 53.313019501 + ], + [ + 8.6198274, + 53.313620101 + ], + [ + 8.6199438, + 53.314290601 + ], + [ + 8.6201456, + 53.315734701 + ], + [ + 8.6202366, + 53.316847601 + ], + [ + 8.6202894, + 53.317588701 + ], + [ + 8.6202991, + 53.318012801 + ], + [ + 8.620306, + 53.319007601 + ], + [ + 8.6202524, + 53.320054901 + ], + [ + 8.6202309, + 53.320306201 + ], + [ + 8.6201325, + 53.321300801 + ], + [ + 8.6199207, + 53.322647201 + ], + [ + 8.6197934, + 53.323242201 + ], + [ + 8.6196497, + 53.323868901 + ], + [ + 8.6192959, + 53.325130301 + ], + [ + 8.6190616, + 53.325836001 + ], + [ + 8.6187486, + 53.326669201 + ], + [ + 8.618358, + 53.327617401 + ], + [ + 8.6179781, + 53.328435601 + ], + [ + 8.6176251, + 53.329136601 + ], + [ + 8.6175279, + 53.329332701 + ], + [ + 8.6170862, + 53.330142901 + ], + [ + 8.6164565, + 53.331186901 + ], + [ + 8.6156667, + 53.332381201 + ], + [ + 8.6150165, + 53.333275501 + ], + [ + 8.6143293, + 53.334115001 + ], + [ + 8.6126184, + 53.336109101 + ], + [ + 8.6114359, + 53.337305701 + ], + [ + 8.6110263, + 53.337722201 + ], + [ + 8.6092841, + 53.339305101 + ], + [ + 8.6080472, + 53.340366701 + ], + [ + 8.6049011, + 53.343025801 + ], + [ + 8.6038952, + 53.343873501 + ], + [ + 8.6028904, + 53.344718301 + ], + [ + 8.6019496, + 53.345512901 + ], + [ + 8.6001352, + 53.347052301 + ], + [ + 8.5976868, + 53.349115301 + ], + [ + 8.5964659, + 53.350147701 + ], + [ + 8.5955328, + 53.350924201 + ], + [ + 8.5946044, + 53.351714901 + ], + [ + 8.5942148, + 53.352041901 + ], + [ + 8.5924089, + 53.353564001 + ], + [ + 8.5909779, + 53.354765701 + ], + [ + 8.5892425, + 53.356231901 + ], + [ + 8.5872826, + 53.357874701 + ], + [ + 8.5855901, + 53.359332201 + ], + [ + 8.58534, + 53.359547101 + ], + [ + 8.5845972, + 53.360207201 + ], + [ + 8.5837439, + 53.361010601 + ], + [ + 8.5833183, + 53.361419001 + ], + [ + 8.5831439, + 53.361598801 + ], + [ + 8.5829024, + 53.361833101 + ], + [ + 8.5820961, + 53.362682301 + ], + [ + 8.5810989, + 53.363815701 + ], + [ + 8.5805944, + 53.364423901 + ], + [ + 8.5801198, + 53.365030001 + ], + [ + 8.5798594, + 53.365362701 + ], + [ + 8.5796544, + 53.365640201 + ], + [ + 8.579362, + 53.366046901 + ], + [ + 8.5785574, + 53.367252701 + ], + [ + 8.5784435, + 53.367466301 + ], + [ + 8.5780209, + 53.368148101 + ], + [ + 8.5776749, + 53.368738701 + ], + [ + 8.5771026, + 53.369866001 + ], + [ + 8.576935833, + 53.370236266 + ] + ] + } + }, + { + "identifier": "2025-046086--vi-bs.2025-09-23_07-00-00-000.devi-zus.2025-09-23_07-00-00-000_002.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.212305641612005,8.65584337431026,53.21025126702006,8.658760706215528", + "point": "53.212305641612005,8.65584337431026", + "startLcPosition": "29", + "impact": { + "lower": "Ihlpohl", + "upper": "Schwanewede", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Schwanewede - Ihlpohl", + "startTimestamp": "2025-09-23T07:00:00+02:00", + "coordinate": { + "lat": 53.212305641612005, + "long": 8.65584337431026 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.09.25 um 07:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A27: Bremerhaven -> Bremen, zwischen 1.9 km hinter AS Schwanewede und 3.8 km vor AS Ihlpohl", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 9 m", + "", + "Teilsperrung Parkpl\u00e4tze Habichthorst und Bremer Schweiz f\u00fcr Errichtung von E-Ladeinfrastruktur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.655843374, + 53.212305642 + ], + [ + 8.6559822, + 53.212198401 + ], + [ + 8.657518, + 53.211087601 + ], + [ + 8.6585779, + 53.210372101 + ], + [ + 8.658760706, + 53.210251267 + ] + ] + } + }, + { + "identifier": "2025-046086--vi-bs.2025-09-23_07-00-00-000.devi-zus.2025-09-23_07-00-00-000_002.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.212305641612005,8.65584337431026,53.21025126702006,8.658760706215528", + "point": "53.212305641612005,8.65584337431026", + "startLcPosition": "29", + "impact": { + "lower": "Ihlpohl", + "upper": "Schwanewede", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Schwanewede - Ihlpohl", + "startTimestamp": "2025-09-23T07:00:00+02:00", + "coordinate": { + "lat": 53.212305641612005, + "long": 8.65584337431026 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.09.25 um 07:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A27: Bremerhaven -> Bremen, zwischen 1.9 km hinter AS Schwanewede und 3.8 km vor AS Ihlpohl", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 9 m", + "", + "Teilsperrung Parkpl\u00e4tze Habichthorst und Bremer Schweiz f\u00fcr Errichtung von E-Ladeinfrastruktur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.655843374, + 53.212305642 + ], + [ + 8.6559822, + 53.212198401 + ], + [ + 8.657518, + 53.211087601 + ], + [ + 8.6585779, + 53.210372101 + ], + [ + 8.658760706, + 53.210251267 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.32293911838097,8.619858244834871,53.32338529879865,8.619760588563814", + "point": "53.32293911838097,8.619858244834871", + "startLcPosition": "30", + "impact": { + "lower": "Harmonie", + "upper": "Uthlede", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Uthlede - Harmonie", + "coordinate": { + "lat": 53.32293911838097, + "long": 8.619858244834871 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremen -> Bremerhaven, zwischen 1.6 km hinter AS Uthlede und 2.2 km vor Harmonie", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.619858245, + 53.322939118 + ], + [ + 8.6197934, + 53.323242201 + ], + [ + 8.619760589, + 53.323385299 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.32249056292299,8.619945341170954,53.32293911838099,8.619858244834871", + "point": "53.32249056292299,8.619945341170954", + "startLcPosition": "30", + "impact": { + "lower": "Harmonie", + "upper": "Uthlede", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Uthlede - Harmonie", + "coordinate": { + "lat": 53.32249056292299, + "long": 8.619945341170954 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremen -> Bremerhaven, zwischen 1.5 km hinter AS Uthlede und 2.3 km vor Harmonie", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.619945341, + 53.322490563 + ], + [ + 8.6199207, + 53.322647201 + ], + [ + 8.619858245, + 53.322939118 + ] + ] + } + }, + { + "identifier": "2025-009182--vi-fbm.2025-09-18_00-00-00-000.devi-zus.2025-08-11_00-00-00-000.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.33952906267947,8.60902316225093,53.34320135299699,8.604692790058483", + "point": "53.33952906267947,8.60902316225093", + "startLcPosition": "30", + "impact": { + "lower": "Binnermoor", + "upper": "Uthlede", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Uthlede - Binnermoor", + "startTimestamp": "2025-09-18T00:00:00+02:00", + "coordinate": { + "lat": 53.33952906267947, + "long": 8.60902316225093 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.09.25 um 00:00 Uhr", + "Ende: 15.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.09.26)", + "", + "A27: Bremen -> Bremerhaven, zwischen 3.6 km hinter AS Uthlede und 2.3 km vor Binnermoor", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Erneuerung von Durchl\u00e4ssen (BW 7331a und BW 7334a )" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.609023162, + 53.339529063 + ], + [ + 8.6080472, + 53.340366701 + ], + [ + 8.6049011, + 53.343025801 + ], + [ + 8.60469279, + 53.343201353 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.35595420349021,8.589302381739998,53.35522548701095,8.590181935403805", + "point": "53.35595420349021,8.589302381739998", + "startLcPosition": "32", + "impact": { + "lower": "Harmonie", + "upper": "Binnermoor", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Binnermoor - Harmonie", + "coordinate": { + "lat": 53.35595420349021, + "long": 8.589302381739998 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremerhaven -> Bremen, zwischen 0.5 km hinter Binnermoor und 1.9 km vor Harmonie", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.589302382, + 53.355954203 + ], + [ + 8.590181935, + 53.355225487 + ] + ] + } + }, + { + "identifier": "2026-017541--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-04-09_08-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.441570932031254,8.583277751508843,53.49663576551955,8.626858866550904", + "point": "53.441570932031254,8.583277751508843", + "startLcPosition": "33", + "impact": { + "lower": "Bremerhaven-Geestem\u00fcnde", + "upper": "Hagen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Hagen - Bremerhaven-Geestem\u00fcnde", + "coordinate": { + "lat": 53.441570932031254, + "long": 8.583277751508843 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "10.04.26 von 08:00 bis 17:00 Uhr", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A27: Bremen -> Bremerhaven, zwischen 8.0 km hinter AS Hagen und 3.3 km vor AS Bremerhaven-Geestem\u00fcnde", + "", + "L\u00e4nge: 6.85 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A27 von Schwanewede (AS) nach Hagen (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.583277752, + 53.441570932 + ], + [ + 8.5836549, + 53.442558201 + ], + [ + 8.5840087, + 53.443408601 + ], + [ + 8.5846826, + 53.444902801 + ], + [ + 8.5852916, + 53.446135701 + ], + [ + 8.5858932, + 53.447254201 + ], + [ + 8.5867526, + 53.448670501 + ], + [ + 8.5872044, + 53.449475901 + ], + [ + 8.5878005, + 53.450396001 + ], + [ + 8.5887537, + 53.451785901 + ], + [ + 8.5897069, + 53.453079301 + ], + [ + 8.5909626, + 53.454658501 + ], + [ + 8.5912925, + 53.455045701 + ], + [ + 8.5916747, + 53.455497201 + ], + [ + 8.591924, + 53.455790801 + ], + [ + 8.5928143, + 53.456795501 + ], + [ + 8.5944898, + 53.458580201 + ], + [ + 8.5949296, + 53.458993601 + ], + [ + 8.5967322, + 53.460717601 + ], + [ + 8.5977652, + 53.461641401 + ], + [ + 8.5990995, + 53.462785001 + ], + [ + 8.5992305, + 53.462874101 + ], + [ + 8.5995891, + 53.463175901 + ], + [ + 8.6011355, + 53.464382901 + ], + [ + 8.6012788, + 53.464498601 + ], + [ + 8.6017603, + 53.464902901 + ], + [ + 8.6020608, + 53.465165301 + ], + [ + 8.6030779, + 53.465892801 + ], + [ + 8.6043467, + 53.466869501 + ], + [ + 8.6062647, + 53.468330001 + ], + [ + 8.60803, + 53.469670801 + ], + [ + 8.6088167, + 53.470295501 + ], + [ + 8.6096941, + 53.470986401 + ], + [ + 8.6112328, + 53.472253201 + ], + [ + 8.6115995, + 53.472564201 + ], + [ + 8.6123895, + 53.473245301 + ], + [ + 8.6136853, + 53.474460601 + ], + [ + 8.6141153, + 53.474872801 + ], + [ + 8.6142397, + 53.474992101 + ], + [ + 8.6148232, + 53.475583301 + ], + [ + 8.6152247, + 53.476005901 + ], + [ + 8.6156989, + 53.476498401 + ], + [ + 8.6165093, + 53.477409001 + ], + [ + 8.6169143, + 53.477884101 + ], + [ + 8.6175763, + 53.478660801 + ], + [ + 8.617937, + 53.479135701 + ], + [ + 8.6187778, + 53.480242601 + ], + [ + 8.6191701, + 53.480778601 + ], + [ + 8.6201376, + 53.482233301 + ], + [ + 8.6207474, + 53.483218801 + ], + [ + 8.6212552, + 53.484100701 + ], + [ + 8.621642, + 53.484813801 + ], + [ + 8.6219176, + 53.485315101 + ], + [ + 8.6223578, + 53.486245301 + ], + [ + 8.6223699, + 53.486273301 + ], + [ + 8.6228304, + 53.487224201 + ], + [ + 8.6234284, + 53.488529601 + ], + [ + 8.624071, + 53.489977801 + ], + [ + 8.624422, + 53.490788201 + ], + [ + 8.6247198, + 53.491480501 + ], + [ + 8.6255181, + 53.493351001 + ], + [ + 8.6259239, + 53.494298901 + ], + [ + 8.6261108, + 53.494769701 + ], + [ + 8.6261827, + 53.494941601 + ], + [ + 8.6265499, + 53.495848601 + ], + [ + 8.6265551, + 53.495861401 + ], + [ + 8.6266736, + 53.496150401 + ], + [ + 8.626858867, + 53.496635766 + ] + ] + } + }, + { + "identifier": "2026-017541--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-04-09_08-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.37020315228167,8.57673841067499,53.3067977054077,8.618800596714424", + "point": "53.37020315228167,8.57673841067499", + "startLcPosition": "33", + "impact": { + "lower": "Schwanewede", + "upper": "Hagen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Hagen - Schwanewede", + "coordinate": { + "lat": 53.37020315228167, + "long": 8.57673841067499 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "10.04.26 von 08:00 bis 17:00 Uhr", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A27: Bremerhaven -> Bremen, zwischen AS Hagen und 9.1 km vor AS Schwanewede", + "", + "L\u00e4nge: 7.85 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A27 von Schwanewede (AS) nach Hagen (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.576738411, + 53.370203152 + ], + [ + 8.5773421, + 53.368981001 + ], + [ + 8.5776486, + 53.368406701 + ], + [ + 8.5783753, + 53.367204801 + ], + [ + 8.5790285, + 53.366226601 + ], + [ + 8.579363, + 53.365744301 + ], + [ + 8.5796796, + 53.365328201 + ], + [ + 8.5804125, + 53.364351201 + ], + [ + 8.5811789, + 53.363440301 + ], + [ + 8.5818108, + 53.362750001 + ], + [ + 8.5824165, + 53.362101401 + ], + [ + 8.5826767, + 53.361836201 + ], + [ + 8.5840238, + 53.360523901 + ], + [ + 8.5848184, + 53.359805301 + ], + [ + 8.5854386, + 53.359269801 + ], + [ + 8.5866442, + 53.358221201 + ], + [ + 8.5868603, + 53.357977401 + ], + [ + 8.5877157, + 53.357268701 + ], + [ + 8.5910205, + 53.354530701 + ], + [ + 8.5922744, + 53.353477701 + ], + [ + 8.5940569, + 53.351970001 + ], + [ + 8.5951429, + 53.351051701 + ], + [ + 8.5971813, + 53.349341801 + ], + [ + 8.5987866, + 53.347988501 + ], + [ + 8.6005117, + 53.346526801 + ], + [ + 8.6027268, + 53.344655801 + ], + [ + 8.60495, + 53.342783501 + ], + [ + 8.6055912, + 53.342243701 + ], + [ + 8.6069516, + 53.341098201 + ], + [ + 8.6090761, + 53.339284301 + ], + [ + 8.6107063, + 53.337802801 + ], + [ + 8.6112609, + 53.337242901 + ], + [ + 8.6113851, + 53.337117501 + ], + [ + 8.6122635, + 53.336212501 + ], + [ + 8.6137121, + 53.334577501 + ], + [ + 8.614841, + 53.333229601 + ], + [ + 8.6154905, + 53.332332101 + ], + [ + 8.6156409, + 53.332048401 + ], + [ + 8.616279, + 53.331145801 + ], + [ + 8.6169149, + 53.330076501 + ], + [ + 8.6173503, + 53.329304101 + ], + [ + 8.6174481, + 53.329103801 + ], + [ + 8.6178023, + 53.328384601 + ], + [ + 8.6181745, + 53.327577201 + ], + [ + 8.6185703, + 53.326632901 + ], + [ + 8.6188714, + 53.325827101 + ], + [ + 8.6191024, + 53.325111601 + ], + [ + 8.6194558, + 53.323854601 + ], + [ + 8.6195979, + 53.323251301 + ], + [ + 8.6197293, + 53.322642201 + ], + [ + 8.6199529, + 53.321325401 + ], + [ + 8.6200552, + 53.320299001 + ], + [ + 8.6200935, + 53.319819901 + ], + [ + 8.6201264, + 53.319006701 + ], + [ + 8.6201222, + 53.318055901 + ], + [ + 8.6200942, + 53.317328501 + ], + [ + 8.620059, + 53.316778101 + ], + [ + 8.6200061, + 53.316273801 + ], + [ + 8.6199698, + 53.315845201 + ], + [ + 8.6198842, + 53.315167901 + ], + [ + 8.6197674, + 53.314315101 + ], + [ + 8.6196561, + 53.313621401 + ], + [ + 8.6192767, + 53.311336601 + ], + [ + 8.6192089, + 53.310917101 + ], + [ + 8.6189431, + 53.309047301 + ], + [ + 8.6188673, + 53.308333301 + ], + [ + 8.6188175, + 53.307485601 + ], + [ + 8.618800597, + 53.306797705 + ] + ] + } + }, + { + "identifier": "2025-009182--vi-bs.2026-04-13_00-00-00-000.devi-zus.2025-08-11_00-00-00-000.de23", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.38313480215153,8.574846087776656,53.42010029274778,8.580687182669946", + "point": "53.38313480215153,8.574846087776656", + "startLcPosition": "33", + "impact": { + "lower": "Stotel", + "upper": "Hagen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Hagen - Stotel", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 53.38313480215153, + "long": 8.574846087776656 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 05.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.09.26)", + "", + "A27: Bremen -> Bremerhaven, zwischen 1.4 km hinter AS Hagen und 2.4 km vor AS Stotel", + "", + "L\u00e4nge: 4.14 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "Erneuerung von Durchl\u00e4ssen (BW 7331a und BW 7334a )" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.574846088, + 53.383134802 + ], + [ + 8.5749247, + 53.383648001 + ], + [ + 8.5749861, + 53.383990701 + ], + [ + 8.5750474, + 53.384359301 + ], + [ + 8.5750842, + 53.384551801 + ], + [ + 8.5751644, + 53.384895401 + ], + [ + 8.575289, + 53.385475001 + ], + [ + 8.575762, + 53.387301901 + ], + [ + 8.576294, + 53.389138201 + ], + [ + 8.5768386, + 53.390903301 + ], + [ + 8.5773609, + 53.392690501 + ], + [ + 8.5776569, + 53.393763801 + ], + [ + 8.57786, + 53.394500001 + ], + [ + 8.5783231, + 53.396311201 + ], + [ + 8.5787342, + 53.398070701 + ], + [ + 8.5791112, + 53.399829301 + ], + [ + 8.5791868, + 53.400249701 + ], + [ + 8.5794692, + 53.401822801 + ], + [ + 8.5796173, + 53.402669801 + ], + [ + 8.5797744, + 53.403672501 + ], + [ + 8.5798465, + 53.404172401 + ], + [ + 8.5800344, + 53.405547301 + ], + [ + 8.5802621, + 53.407386501 + ], + [ + 8.5804353, + 53.409301401 + ], + [ + 8.5805553, + 53.411159601 + ], + [ + 8.5805744, + 53.411627901 + ], + [ + 8.5806381, + 53.413056701 + ], + [ + 8.580681, + 53.414953701 + ], + [ + 8.5807049, + 53.416841801 + ], + [ + 8.580687183, + 53.420100293 + ] + ] + } + }, + { + "identifier": "2025-009182--vi-bs.2026-04-10_08-00-00-000.devi-zus.2025-08-11_00-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.39130003606243,8.5769545399896,53.39306315674615,8.577463671173126", + "point": "53.39130003606243,8.5769545399896", + "startLcPosition": "33", + "impact": { + "lower": "Stotel", + "upper": "Hagen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Hagen - Stotel", + "startTimestamp": "2026-04-10T08:00:00+02:00", + "coordinate": { + "lat": 53.39130003606243, + "long": 8.5769545399896 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 08:00 Uhr", + "Ende: 13.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.09.26)", + "", + "A27: Bremen -> Bremerhaven, zwischen 2.4 km hinter AS Hagen und 5.5 km vor AS Stotel", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 4.85 m", + "", + "Erneuerung von Durchl\u00e4ssen (BW 7331a und BW 7334a )" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.57695454, + 53.391300036 + ], + [ + 8.5773609, + 53.392690501 + ], + [ + 8.577463671, + 53.393063157 + ] + ] + } + }, + { + "identifier": "2025-009182--vi-bs.2025-12-03_18-00-00-000.devi-zus.2025-08-11_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.39130003606243,8.5769545399896,53.39306315674615,8.577463671173126", + "point": "53.39130003606243,8.5769545399896", + "startLcPosition": "33", + "impact": { + "lower": "Stotel", + "upper": "Hagen", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Hagen - Stotel", + "startTimestamp": "2025-12-03T18:00:00+01:00", + "coordinate": { + "lat": 53.39130003606243, + "long": 8.5769545399896 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.12.25 um 18:00 Uhr", + "Ende: 11.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.09.26)", + "", + "A27: Bremen -> Bremerhaven, zwischen 2.4 km hinter AS Hagen und 5.5 km vor AS Stotel", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 4.85 m", + "", + "Erneuerung von Durchl\u00e4ssen (BW 7331a und BW 7334a )" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.57695454, + 53.391300036 + ], + [ + 8.5773609, + 53.392690501 + ], + [ + 8.577463671, + 53.393063157 + ] + ] + } + }, + { + "identifier": "2025-009182--vi-bs.2026-04-13_00-00-00-000.devi-zus.2025-08-11_00-00-00-000.de25", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.42009989503209,8.580497140839404,53.38314505514485,8.574655855232793", + "point": "53.42009989503209,8.580497140839404", + "startLcPosition": "34", + "impact": { + "lower": "Hagen", + "upper": "Stotel", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Stotel - Hagen", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 53.42009989503209, + "long": 8.580497140839404 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 05.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.09.26)", + "", + "A27: Bremerhaven -> Bremen, zwischen 2.4 km hinter AS Stotel und 1.4 km vor AS Hagen", + "", + "L\u00e4nge: 4.14 km | Maximale Durchfahrtsbreite: 4.85 m", + "", + "Erneuerung von Durchl\u00e4ssen (BW 7331a und BW 7334a )" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.580497141, + 53.420099895 + ], + [ + 8.5805142, + 53.417412401 + ], + [ + 8.5805062, + 53.415429901 + ], + [ + 8.5804519, + 53.413018701 + ], + [ + 8.580392, + 53.411631901 + ], + [ + 8.5803731, + 53.411141801 + ], + [ + 8.5802605, + 53.409534601 + ], + [ + 8.5801204, + 53.407877801 + ], + [ + 8.5799332, + 53.406230301 + ], + [ + 8.5797165, + 53.404549301 + ], + [ + 8.5794291, + 53.402681901 + ], + [ + 8.5789922, + 53.400260701 + ], + [ + 8.5789181, + 53.399848801 + ], + [ + 8.5784992, + 53.397868801 + ], + [ + 8.5780753, + 53.396100801 + ], + [ + 8.5776281, + 53.394338301 + ], + [ + 8.5774684, + 53.393774001 + ], + [ + 8.5771228, + 53.392568001 + ], + [ + 8.5766036, + 53.390800501 + ], + [ + 8.5756074, + 53.387446901 + ], + [ + 8.5750927, + 53.385465101 + ], + [ + 8.5749753, + 53.384909001 + ], + [ + 8.574903, + 53.384570701 + ], + [ + 8.5747996, + 53.384015501 + ], + [ + 8.5747342, + 53.383672301 + ], + [ + 8.574655855, + 53.383145055 + ] + ] + } + }, + { + "identifier": "2025-009182--vi-bs.2026-04-10_08-00-00-000.devi-zus.2025-08-11_00-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.393082626628896,8.57727027241976,53.39132078157227,8.576756427011984", + "point": "53.393082626628896,8.57727027241976", + "startLcPosition": "34", + "impact": { + "lower": "Hagen", + "upper": "Stotel", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Stotel - Hagen", + "startTimestamp": "2026-04-10T08:00:00+02:00", + "coordinate": { + "lat": 53.393082626628896, + "long": 8.57727027241976 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 08:00 Uhr", + "Ende: 13.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.09.26)", + "", + "A27: Bremerhaven -> Bremen, zwischen 5.5 km hinter AS Stotel und 2.4 km vor AS Hagen", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 4.85 m", + "", + "Erneuerung von Durchl\u00e4ssen (BW 7331a und BW 7334a )" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.577270272, + 53.393082627 + ], + [ + 8.5771228, + 53.392568001 + ], + [ + 8.576756427, + 53.391320782 + ] + ] + } + }, + { + "identifier": "2025-009182--vi-bs.2025-12-03_18-00-00-000.devi-zus.2025-08-11_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.393082626628896,8.57727027241976,53.39132078157227,8.576756427011984", + "point": "53.393082626628896,8.57727027241976", + "startLcPosition": "34", + "impact": { + "lower": "Hagen", + "upper": "Stotel", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Stotel - Hagen", + "startTimestamp": "2025-12-03T18:00:00+01:00", + "coordinate": { + "lat": 53.393082626628896, + "long": 8.57727027241976 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.12.25 um 18:00 Uhr", + "Ende: 11.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.09.26)", + "", + "A27: Bremerhaven -> Bremen, zwischen 5.5 km hinter AS Stotel und 2.4 km vor AS Hagen", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 4.85 m", + "", + "Erneuerung von Durchl\u00e4ssen (BW 7331a und BW 7334a )" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.577270272, + 53.393082627 + ], + [ + 8.5771228, + 53.392568001 + ], + [ + 8.576756427, + 53.391320782 + ] + ] + } + }, + { + "identifier": "2026-017263--vi-bs.2026-04-16_08-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.47125595005852,8.610021494205887,53.47272562886254,8.611786735564841", + "point": "53.47125595005852,8.610021494205887", + "startLcPosition": "35", + "impact": { + "lower": "Nesse", + "upper": "Bremerhaven-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Bremerhaven-S\u00fcd - Nesse", + "coordinate": { + "lat": 53.47125595005852, + "long": 8.610021494205887 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 18:00 Uhr", + "", + "A27: Bremen -> Bremerhaven, zwischen 0.9 km hinter AS Bremerhaven-S\u00fcd und 0.6 km vor Nesse", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A27 Entst\u00f6rung an der Mautbr\u00fccke ID 4019" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.610021494, + 53.47125595 + ], + [ + 8.6112328, + 53.472253201 + ], + [ + 8.6115995, + 53.472564201 + ], + [ + 8.611786736, + 53.472725629 + ] + ] + } + }, + { + "identifier": "2023-001334--vi-bs.2025-08-08_15-00-00-000.devi-zus.2024-02-22_00-00-00-000.f_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.49513090794328,8.626259339839313,53.496864385485566,8.626945357067656", + "point": "53.49513090794328,8.626259339839313", + "startLcPosition": "36", + "impact": { + "lower": "Bremerhaven-Geestem\u00fcnde", + "upper": "Nesse", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Nesse - Bremerhaven-Geestem\u00fcnde", + "startTimestamp": "2025-08-08T15:00:00+02:00", + "coordinate": { + "lat": 53.49513090794328, + "long": 8.626259339839313 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.08.25 um 15:00 Uhr", + "Ende: 31.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.08.26)", + "", + "A27: Bremen -> Bremerhaven, zwischen 2.0 km hinter Nesse und 3.3 km vor AS Bremerhaven-Geestem\u00fcnde", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A27 Ersatzneubau BW 1037 Brhv-Wulsdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.62625934, + 53.495130908 + ], + [ + 8.6265499, + 53.495848601 + ], + [ + 8.6265551, + 53.495861401 + ], + [ + 8.6266736, + 53.496150401 + ], + [ + 8.6269311, + 53.496825001 + ], + [ + 8.626945357, + 53.496864385 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.51452439600281,8.628248874226566,53.51496888401425,8.628126940474612", + "point": "53.51452439600281,8.628248874226566", + "startLcPosition": "37", + "impact": { + "lower": "Bremerhaven-Geestem\u00fcnde", + "upper": "Bremerhaven-Wulsdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Bremerhaven-Wulsdorf - Bremerhaven-Geestem\u00fcnde", + "coordinate": { + "lat": 53.51452439600281, + "long": 8.628248874226566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremen -> Bremerhaven, zwischen 2.1 km hinter AS Bremerhaven-Wulsdorf und 1.3 km vor AS Bremerhaven-Geestem\u00fcnde", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.628248874, + 53.514524396 + ], + [ + 8.628191, + 53.514750901 + ], + [ + 8.62812694, + 53.514968884 + ] + ] + } + }, + { + "identifier": "2026-017541--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-04-09_08-00-00-000_002.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.49666260266014,8.626660239273907,53.44159618554516,8.58308842502698", + "point": "53.49666260266014,8.626660239273907", + "startLcPosition": "38", + "impact": { + "lower": "Hagen", + "upper": "Bremerhaven-Geestem\u00fcnde", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Bremerhaven-Geestem\u00fcnde - Hagen", + "coordinate": { + "lat": 53.49666260266014, + "long": 8.626660239273907 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "10.04.26 von 08:00 bis 17:00 Uhr", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A27: Bremerhaven -> Bremen, zwischen 3.3 km hinter AS Bremerhaven-Geestem\u00fcnde und 8.0 km vor AS Hagen", + "", + "L\u00e4nge: 6.85 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A27 von Schwanewede (AS) nach Hagen (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.626660239, + 53.496662603 + ], + [ + 8.6265324, + 53.496324701 + ], + [ + 8.6264747, + 53.496189201 + ], + [ + 8.6263595, + 53.495909301 + ], + [ + 8.6263472, + 53.495879501 + ], + [ + 8.6251713, + 53.493050601 + ], + [ + 8.6244225, + 53.491291601 + ], + [ + 8.6238698, + 53.490010101 + ], + [ + 8.6232268, + 53.488557901 + ], + [ + 8.6224866, + 53.486932501 + ], + [ + 8.622162, + 53.486274101 + ], + [ + 8.6217061, + 53.485334901 + ], + [ + 8.6215058, + 53.484962401 + ], + [ + 8.6209961, + 53.484014401 + ], + [ + 8.620562, + 53.483267301 + ], + [ + 8.6195754, + 53.481695101 + ], + [ + 8.6193138, + 53.481301201 + ], + [ + 8.6189904, + 53.480847701 + ], + [ + 8.6184647, + 53.480110701 + ], + [ + 8.6177659, + 53.479189301 + ], + [ + 8.6173634, + 53.478683501 + ], + [ + 8.6167319, + 53.477940001 + ], + [ + 8.6163414, + 53.477476401 + ], + [ + 8.6153289, + 53.476356101 + ], + [ + 8.6140739, + 53.475065501 + ], + [ + 8.6138222, + 53.474820901 + ], + [ + 8.6135228, + 53.474530001 + ], + [ + 8.6121767, + 53.473279801 + ], + [ + 8.6120045, + 53.473130901 + ], + [ + 8.6111024, + 53.472341201 + ], + [ + 8.609522, + 53.471047501 + ], + [ + 8.6086585, + 53.470369801 + ], + [ + 8.6078723, + 53.469749601 + ], + [ + 8.6076245, + 53.469564301 + ], + [ + 8.6036051, + 53.466519001 + ], + [ + 8.602611, + 53.465750801 + ], + [ + 8.6016542, + 53.465063101 + ], + [ + 8.6014266, + 53.464877001 + ], + [ + 8.6009559, + 53.464512601 + ], + [ + 8.5994009, + 53.463254501 + ], + [ + 8.5989328, + 53.462853801 + ], + [ + 8.5978973, + 53.461987301 + ], + [ + 8.5969204, + 53.461102501 + ], + [ + 8.5962708, + 53.460505201 + ], + [ + 8.595656, + 53.459927001 + ], + [ + 8.5943669, + 53.458659001 + ], + [ + 8.5927901, + 53.457005101 + ], + [ + 8.5915017, + 53.455544001 + ], + [ + 8.5908501, + 53.454779501 + ], + [ + 8.5907561, + 53.454664801 + ], + [ + 8.5895735, + 53.453171201 + ], + [ + 8.5886041, + 53.451863101 + ], + [ + 8.5877493, + 53.450624601 + ], + [ + 8.5876213, + 53.450431901 + ], + [ + 8.58702, + 53.449508601 + ], + [ + 8.585814, + 53.447477301 + ], + [ + 8.5857122, + 53.447288501 + ], + [ + 8.5852783, + 53.446481401 + ], + [ + 8.5852119, + 53.446356401 + ], + [ + 8.5848436, + 53.445648701 + ], + [ + 8.5845822, + 53.445109401 + ], + [ + 8.5842141, + 53.444330001 + ], + [ + 8.583388, + 53.442397901 + ], + [ + 8.5831844, + 53.441858801 + ], + [ + 8.583088425, + 53.441596186 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.52731913551521,8.62361702937448,53.527766084703714,8.623446040735276", + "point": "53.52731913551521,8.62361702937448", + "startLcPosition": "38", + "impact": { + "lower": "Bremerhaven-Zentrum", + "upper": "Bremerhaven-Geestem\u00fcnde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Bremerhaven", + "title": "A27 | Bremerhaven-Geestem\u00fcnde - Bremerhaven-Zentrum", + "coordinate": { + "lat": 53.52731913551521, + "long": 8.62361702937448 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremen -> Bremerhaven, zwischen 0.1 km hinter AS Bremerhaven-Geestem\u00fcnde und 2.2 km vor AS Bremerhaven-Zentrum", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.623617029, + 53.527319136 + ], + [ + 8.623446041, + 53.527766085 + ] + ] + } + }, + { + "identifier": "2023-001334--vi-bs.2025-08-08_15-00-00-000.devi-zus.2024-02-22_00-00-00-000.f_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.49689057448172,8.626746489640063,53.49516159628047,8.626048770514775", + "point": "53.49689057448172,8.626746489640063", + "startLcPosition": "38", + "impact": { + "lower": "Nesse", + "upper": "Bremerhaven-Geestem\u00fcnde", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremerhaven -> Bremen", + "title": "A27 | Bremerhaven-Geestem\u00fcnde - Nesse", + "startTimestamp": "2025-08-08T15:00:00+02:00", + "coordinate": { + "lat": 53.49689057448172, + "long": 8.626746489640063 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.08.25 um 15:00 Uhr", + "Ende: 31.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.08.26)", + "", + "A27: Bremerhaven -> Bremen, zwischen 3.3 km hinter AS Bremerhaven-Geestem\u00fcnde und 2.0 km vor Nesse", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A27 Ersatzneubau BW 1037 Brhv-Wulsdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.62674649, + 53.496890574 + ], + [ + 8.6265324, + 53.496324701 + ], + [ + 8.6264747, + 53.496189201 + ], + [ + 8.6263595, + 53.495909301 + ], + [ + 8.6263472, + 53.495879501 + ], + [ + 8.626048771, + 53.495161596 + ] + ] + } + }, + { + "identifier": "2026-017541--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-04-09_08-00-00-000_002.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.54851774871988,8.619648093645178,53.62130036215612,8.66479865574555", + "point": "53.54851774871988,8.619648093645178", + "startLcPosition": "39", + "impact": { + "lower": "Debstedt", + "upper": "Bremerhaven-Zentrum", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Cuxhaven", + "title": "A27 | Bremerhaven-Zentrum - Debstedt", + "coordinate": { + "lat": 53.54851774871988, + "long": 8.619648093645178 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "10.04.26 von 08:00 bis 17:00 Uhr", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A27: Bremen -> Cuxhaven, zwischen 0.2 km hinter AS Bremerhaven-Zentrum und AS Debstedt", + "", + "L\u00e4nge: 9.04 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A27 von Schwanewede (AS) nach Hagen (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.619648094, + 53.548517749 + ], + [ + 8.6196846, + 53.549880901 + ], + [ + 8.6196683, + 53.550918101 + ], + [ + 8.6196742, + 53.551501401 + ], + [ + 8.6196782, + 53.551896601 + ], + [ + 8.6196814, + 53.552137201 + ], + [ + 8.6197069, + 53.554029201 + ], + [ + 8.6197172, + 53.557061801 + ], + [ + 8.6197208, + 53.557185001 + ], + [ + 8.6197509, + 53.560504701 + ], + [ + 8.6198144, + 53.566104701 + ], + [ + 8.6198272, + 53.567259701 + ], + [ + 8.6198493, + 53.570081501 + ], + [ + 8.6198533, + 53.570748701 + ], + [ + 8.6198534, + 53.571268901 + ], + [ + 8.6198883, + 53.572835801 + ], + [ + 8.6200315, + 53.574317901 + ], + [ + 8.6200954, + 53.574640101 + ], + [ + 8.6201839, + 53.575082001 + ], + [ + 8.6203904, + 53.576132201 + ], + [ + 8.6206259, + 53.576977401 + ], + [ + 8.6210764, + 53.578141001 + ], + [ + 8.6213973, + 53.578794301 + ], + [ + 8.6215443, + 53.579092301 + ], + [ + 8.6217304, + 53.579444801 + ], + [ + 8.6222108, + 53.580286101 + ], + [ + 8.6227999, + 53.581146901 + ], + [ + 8.6229747, + 53.581399601 + ], + [ + 8.6235578, + 53.582163001 + ], + [ + 8.6241402, + 53.582871301 + ], + [ + 8.6247698, + 53.583533001 + ], + [ + 8.6249061, + 53.583676201 + ], + [ + 8.6250683, + 53.583826901 + ], + [ + 8.6261751, + 53.584847501 + ], + [ + 8.6266116, + 53.585211501 + ], + [ + 8.6273204, + 53.585802801 + ], + [ + 8.6286874, + 53.586805301 + ], + [ + 8.6302431, + 53.587817001 + ], + [ + 8.6327308, + 53.589249301 + ], + [ + 8.6345807, + 53.590242601 + ], + [ + 8.636238, + 53.591122201 + ], + [ + 8.6387891, + 53.592485201 + ], + [ + 8.6413646, + 53.593892501 + ], + [ + 8.6440403, + 53.595465601 + ], + [ + 8.6455294, + 53.596424001 + ], + [ + 8.6461711, + 53.596835501 + ], + [ + 8.6483721, + 53.598353701 + ], + [ + 8.6505474, + 53.600038401 + ], + [ + 8.652809, + 53.601929901 + ], + [ + 8.6542311, + 53.603297001 + ], + [ + 8.6545229, + 53.603596901 + ], + [ + 8.6547601, + 53.603838901 + ], + [ + 8.6555733, + 53.604671801 + ], + [ + 8.6563012, + 53.605462701 + ], + [ + 8.6576177, + 53.606963501 + ], + [ + 8.6582809, + 53.607787101 + ], + [ + 8.6584749, + 53.608028101 + ], + [ + 8.6598507, + 53.609918301 + ], + [ + 8.6603797, + 53.610722701 + ], + [ + 8.6606283, + 53.611111101 + ], + [ + 8.6610393, + 53.611791701 + ], + [ + 8.6612429, + 53.612129101 + ], + [ + 8.6613598, + 53.612353401 + ], + [ + 8.6629467, + 53.615389101 + ], + [ + 8.663275, + 53.616263601 + ], + [ + 8.6634374, + 53.616696101 + ], + [ + 8.6636827, + 53.617349601 + ], + [ + 8.6640988, + 53.618587501 + ], + [ + 8.6644426, + 53.619777201 + ], + [ + 8.6645589, + 53.620258001 + ], + [ + 8.6645919, + 53.620407401 + ], + [ + 8.664798656, + 53.621300362 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.57582150970847,8.620329307967824,53.576414654530936,8.620469099638994", + "point": "53.57582150970847,8.620329307967824", + "startLcPosition": "39", + "impact": { + "lower": "Bremerhaven-\u00dcberseeh\u00e4fen", + "upper": "Bremerhaven-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremen -> Cuxhaven", + "title": "A27 | Bremerhaven-Zentrum - Bremerhaven-\u00dcberseeh\u00e4fen", + "coordinate": { + "lat": 53.57582150970847, + "long": 8.620329307967824 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremen -> Cuxhaven, zwischen 3.2 km hinter AS Bremerhaven-Zentrum und 0.7 km vor AS Bremerhaven-\u00dcberseeh\u00e4fen", + "", + "L\u00e4nge: 0.07 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.620329308, + 53.57582151 + ], + [ + 8.6203904, + 53.576132201 + ], + [ + 8.6204691, + 53.576414655 + ] + ] + } + }, + { + "identifier": "2026-015228--vi-bs.2026-04-08_09-00-00-000.devi-zus.2026-04-07_09-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.55631124569449,8.619714650756247,53.56215352096509,8.619769595069288", + "point": "53.55631124569449,8.619714650756247", + "startLcPosition": "39", + "impact": { + "lower": "Bremerhaven-\u00dcberseeh\u00e4fen", + "upper": "Bremerhaven-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bremen -> Cuxhaven", + "title": "A27 | Bremerhaven-Zentrum - Bremerhaven-\u00dcberseeh\u00e4fen", + "startTimestamp": "2026-04-08T09:00:00+02:00", + "coordinate": { + "lat": 53.55631124569449, + "long": 8.619714650756247 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 09:00 Uhr", + "Ende: 11.05.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.05.26)", + "", + "A27: Bremen -> Cuxhaven, zwischen 1.0 km hinter AS Bremerhaven-Zentrum und 2.3 km vor AS Bremerhaven-\u00dcberseeh\u00e4fen", + "", + "L\u00e4nge: 0.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "Instandsetzung Fahrbahntafel BW 1007-2 (Moorbr\u00fccke)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.619714651, + 53.556311246 + ], + [ + 8.6197172, + 53.557061801 + ], + [ + 8.6197208, + 53.557185001 + ], + [ + 8.6197509, + 53.560504701 + ], + [ + 8.619769595, + 53.562153521 + ] + ] + } + }, + { + "identifier": "2026-017541--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-04-09_08-00-00-000_002.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.62131614581277,8.664602043931799,53.54851900996289,8.619453821344164", + "point": "53.62131614581277,8.664602043931799", + "startLcPosition": "42", + "impact": { + "lower": "Bremerhaven-Zentrum", + "upper": "Debstedt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Cuxhaven -> Bremen", + "title": "A27 | Debstedt - Bremerhaven-Zentrum", + "coordinate": { + "lat": 53.62131614581277, + "long": 8.664602043931799 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "10.04.26 von 08:00 bis 17:00 Uhr", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A27: Cuxhaven -> Bremen, zwischen AS Debstedt und 0.2 km vor AS Bremerhaven-Zentrum", + "", + "L\u00e4nge: 9.04 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A27 von Schwanewede (AS) nach Hagen (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.664602044, + 53.621316146 + ], + [ + 8.6645107, + 53.620905401 + ], + [ + 8.6643988, + 53.620423301 + ], + [ + 8.6643331, + 53.620128601 + ], + [ + 8.6641336, + 53.619382101 + ], + [ + 8.6638237, + 53.618363901 + ], + [ + 8.6634252, + 53.617204301 + ], + [ + 8.6627096, + 53.615402501 + ], + [ + 8.6610371, + 53.612173501 + ], + [ + 8.6608341, + 53.611835501 + ], + [ + 8.6604346, + 53.611175501 + ], + [ + 8.6603485, + 53.611045701 + ], + [ + 8.6601947, + 53.610813601 + ], + [ + 8.6594546, + 53.609712801 + ], + [ + 8.658232, + 53.608025301 + ], + [ + 8.6571008, + 53.606609901 + ], + [ + 8.6562799, + 53.605678001 + ], + [ + 8.6553878, + 53.604724101 + ], + [ + 8.6543365, + 53.603663701 + ], + [ + 8.6540333, + 53.603356301 + ], + [ + 8.6525994, + 53.602008601 + ], + [ + 8.6504016, + 53.600126601 + ], + [ + 8.6481437, + 53.598400901 + ], + [ + 8.645992, + 53.596918301 + ], + [ + 8.6453578, + 53.596510801 + ], + [ + 8.6438795, + 53.595561501 + ], + [ + 8.6412772, + 53.594026601 + ], + [ + 8.638982, + 53.592772701 + ], + [ + 8.638425, + 53.592468401 + ], + [ + 8.6367789, + 53.591586101 + ], + [ + 8.6360501, + 53.591195501 + ], + [ + 8.6344465, + 53.590359601 + ], + [ + 8.6344144, + 53.590342901 + ], + [ + 8.632568, + 53.589340601 + ], + [ + 8.6300038, + 53.587869201 + ], + [ + 8.6284948, + 53.586875101 + ], + [ + 8.6272542, + 53.585963001 + ], + [ + 8.6271596, + 53.585892801 + ], + [ + 8.6257896, + 53.584767601 + ], + [ + 8.6248812, + 53.583881301 + ], + [ + 8.6245992, + 53.583583301 + ], + [ + 8.623981, + 53.582930001 + ], + [ + 8.6233784, + 53.582239401 + ], + [ + 8.6227807, + 53.581448701 + ], + [ + 8.6221287, + 53.580500301 + ], + [ + 8.6220195, + 53.580323801 + ], + [ + 8.6215319, + 53.579479201 + ], + [ + 8.6211749, + 53.578808601 + ], + [ + 8.6208678, + 53.578165201 + ], + [ + 8.6205994, + 53.577494201 + ], + [ + 8.6203555, + 53.576759701 + ], + [ + 8.6201565, + 53.576006101 + ], + [ + 8.6199774, + 53.575094001 + ], + [ + 8.6198228, + 53.574325201 + ], + [ + 8.6196892, + 53.572853601 + ], + [ + 8.6196419, + 53.571250901 + ], + [ + 8.6196379, + 53.570741401 + ], + [ + 8.6196247, + 53.567232501 + ], + [ + 8.6196119, + 53.566105101 + ], + [ + 8.6195502, + 53.560521901 + ], + [ + 8.6195469, + 53.560210801 + ], + [ + 8.6195218, + 53.557159801 + ], + [ + 8.6195187, + 53.557062601 + ], + [ + 8.6195067, + 53.554959401 + ], + [ + 8.6195014, + 53.554012001 + ], + [ + 8.619481, + 53.551479201 + ], + [ + 8.6194716, + 53.550864201 + ], + [ + 8.6194685, + 53.550410101 + ], + [ + 8.6194579, + 53.548829601 + ], + [ + 8.619453821, + 53.54851901 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.684603216433324,8.658973230890648,53.68415811202925,8.658839985273943", + "point": "53.684603216433324,8.658973230890648", + "startLcPosition": "44", + "impact": { + "lower": "Neuenwalde", + "upper": "Krempel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Cuxhaven -> Bremerhaven", + "title": "A27 | Krempel - Neuenwalde", + "coordinate": { + "lat": 53.684603216433324, + "long": 8.658973230890648 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Cuxhaven -> Bremerhaven, zwischen 2.9 km hinter Krempel und 0.7 km vor AS Neuenwalde", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.658973231, + 53.684603216 + ], + [ + 8.6588917, + 53.684358801 + ], + [ + 8.658839985, + 53.684158112 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.81076863761606,8.707203811513613,53.81121410957609,8.707270807286402", + "point": "53.81076863761606,8.707203811513613", + "startLcPosition": "46", + "impact": { + "lower": "Altenwalde", + "upper": "Nordholz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Cuxhaven", + "title": "A27 | Nordholz - Altenwalde", + "coordinate": { + "lat": 53.81076863761606, + "long": 8.707203811513613 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremerhaven -> Cuxhaven, zwischen 8.0 km hinter AS Nordholz und 0.8 km vor AS Altenwalde", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.707203812, + 53.810768638 + ], + [ + 8.7072566, + 53.811152701 + ], + [ + 8.707270807, + 53.81121411 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.80988259231034,8.707084515306015,53.810320710032535,8.707142246261148", + "point": "53.80988259231034,8.707084515306015", + "startLcPosition": "46", + "impact": { + "lower": "Altenwalde", + "upper": "Nordholz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Cuxhaven", + "title": "A27 | Nordholz - Altenwalde", + "coordinate": { + "lat": 53.80988259231034, + "long": 8.707084515306015 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremerhaven -> Cuxhaven, zwischen 7.9 km hinter AS Nordholz und 0.9 km vor AS Altenwalde", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.707084515, + 53.809882592 + ], + [ + 8.7070919, + 53.809954401 + ], + [ + 8.707142246, + 53.81032071 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.79560132117811,8.708007341724988,53.79604987983066,8.707958262868807", + "point": "53.79560132117811,8.708007341724988", + "startLcPosition": "46", + "impact": { + "lower": "Altenwalde", + "upper": "Nordholz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Cuxhaven", + "title": "A27 | Nordholz - Altenwalde", + "coordinate": { + "lat": 53.79560132117811, + "long": 8.708007341724988 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremerhaven -> Cuxhaven, zwischen 6.3 km hinter AS Nordholz und 2.5 km vor AS Altenwalde", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.708007342, + 53.795601321 + ], + [ + 8.7079913, + 53.795750701 + ], + [ + 8.7079603, + 53.796031401 + ], + [ + 8.707958263, + 53.79604988 + ] + ] + } + }, + { + "identifier": "2026-015438--vi-bs.2026-04-20_09-00-00-000.devi-zus.2026-04-20_09-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.82591850654239,8.715741299062753,53.828162273965795,8.71825628604465", + "point": "53.82591850654239,8.715741299062753", + "startLcPosition": "47", + "impact": { + "lower": "Cuxhaven", + "upper": "Altenwalde", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Cuxhaven", + "title": "A27 | Altenwalde - Cuxhaven", + "coordinate": { + "lat": 53.82591850654239, + "long": 8.715741299062753 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 09:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "22.04.26 von 09:00 bis 15:00 Uhr", + "23.04.26 von 09:00 bis 15:00 Uhr", + "24.04.26 von 09:00 bis 15:00 Uhr", + "", + "A27: Bremerhaven -> Cuxhaven, zwischen 0.9 km hinter AS Altenwalde und 1.7 km vor Cuxhaven", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A27 Sheltertausch an der Mautbr\u00fccke ID 4010" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.715741299, + 53.825918507 + ], + [ + 8.7162942, + 53.826440001 + ], + [ + 8.7164874, + 53.826619101 + ], + [ + 8.7173806, + 53.827430801 + ], + [ + 8.718256286, + 53.828162274 + ] + ] + } + }, + { + "identifier": "2026-015438--vi-bs.2026-04-20_09-00-00-000.devi-zus.2026-04-20_09-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.82591850654239,8.715741299062753,53.828162273965795,8.71825628604465", + "point": "53.82591850654239,8.715741299062753", + "startLcPosition": "47", + "impact": { + "lower": "Cuxhaven", + "upper": "Altenwalde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Cuxhaven", + "title": "A27 | Altenwalde - Cuxhaven", + "coordinate": { + "lat": 53.82591850654239, + "long": 8.715741299062753 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 09:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "22.04.26 von 09:00 bis 15:00 Uhr", + "23.04.26 von 09:00 bis 15:00 Uhr", + "24.04.26 von 09:00 bis 15:00 Uhr", + "", + "A27: Bremerhaven -> Cuxhaven, zwischen 0.9 km hinter AS Altenwalde und 1.7 km vor Cuxhaven", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A27 Sheltertausch an der Mautbr\u00fccke ID 4010" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.715741299, + 53.825918507 + ], + [ + 8.7162942, + 53.826440001 + ], + [ + 8.7164874, + 53.826619101 + ], + [ + 8.7173806, + 53.827430801 + ], + [ + 8.718256286, + 53.828162274 + ] + ] + } + }, + { + "identifier": "2026-017241--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_003.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.82629919492609,8.7161449124649,53.82705408285637,8.716966051767772", + "point": "53.82629919492609,8.7161449124649", + "startLcPosition": "47", + "impact": { + "lower": "Cuxhaven", + "upper": "Altenwalde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bremerhaven -> Cuxhaven", + "title": "A27 | Altenwalde - Cuxhaven", + "coordinate": { + "lat": 53.82629919492609, + "long": 8.7161449124649 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 07:00 bis 17:00 Uhr", + "", + "A27: Bremerhaven -> Cuxhaven, zwischen 0.9 km hinter AS Altenwalde und 1.9 km vor Cuxhaven", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A27 von Uthlede (AS) nach Harmonie (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.716144912, + 53.826299195 + ], + [ + 8.7162942, + 53.826440001 + ], + [ + 8.7164874, + 53.826619101 + ], + [ + 8.716966052, + 53.827054083 + ] + ] + } + } + ] + }, + "A28": { + "roadworks": [ + { + "identifier": "2026-016035--vi-bs.2026-04-15_08-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.05742596177857,8.48622338153913,53.05669368824728,8.490515636412994", + "point": "53.05742596177857,8.48622338153913", + "startLcPosition": "28", + "impact": { + "lower": "Hasbruch", + "upper": "Hude", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oldenburg -> Bremen", + "title": "A28 | Hude - Hasbruch", + "coordinate": { + "lat": 53.05742596177857, + "long": 8.48622338153913 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 18:00 Uhr", + "", + "A28: Oldenburg -> Bremen, zwischen 1.5 km hinter AS Hude und 0.8 km vor Hasbruch", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A28 von Hude (AS) nach Hasbruch (Raststaette) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.486223382, + 53.057425962 + ], + [ + 8.4874366, + 53.057217801 + ], + [ + 8.4894505, + 53.056877501 + ], + [ + 8.490515636, + 53.056693688 + ] + ] + } + }, + { + "identifier": "2023-003021--vi-fbm.2023-12-05_00-00-00-000.devi-zus.2023-11-22_09-00-00-000.f_001.de8", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.03256749658276,8.671065701488192,53.03149050092311,8.66711779999987", + "point": "53.03256749658276,8.671065701488192", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Delmenhorst (aus Richtung Gro\u00df Mackenstedt)", + "title": "A28 Ersatzneubau DEL 22", + "startTimestamp": "2023-12-05T00:00:00+01:00", + "coordinate": { + "lat": 53.03256749658276, + "long": 8.671065701488192 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.12.23 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "Auffahrt auf die A28: AD Delmenhorst (aus Richtung Gro\u00df Mackenstedt)", + "", + "L\u00e4nge: 0.29 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A28 Ersatzneubau DEL 22" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.671065701, + 53.032567497 + ], + [ + 8.6702775, + 53.032236701 + ], + [ + 8.6691599, + 53.031837201 + ], + [ + 8.6688612, + 53.031747901 + ], + [ + 8.6684147, + 53.031644801 + ], + [ + 8.6679721, + 53.031561701 + ], + [ + 8.667625, + 53.031521201 + ], + [ + 8.6671178, + 53.031490501 + ] + ] + } + } + ] + }, + "A29": { + "roadworks": [ + { + "identifier": "2025-044224--vi-bs.2026-04-15_07-30-00-000.devi-zus.2025-11-10_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.89215491595186,8.172414901888049,52.94742244952578,8.179955614312918", + "point": "52.89215491595186,8.172414901888049", + "startLcPosition": "0", + "impact": { + "lower": "Gro\u00dfenkneten", + "upper": "Ahlhorner Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ahlhorner Heide -> Oldenburg", + "title": "A29 | Ahlhorner Heide - Gro\u00dfenkneten", + "startTimestamp": "2026-04-15T07:30:00+02:00", + "coordinate": { + "lat": 52.89215491595186, + "long": 8.172414901888049 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 07:30 Uhr", + "Ende: 21.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "A29: Ahlhorner Heide -> Oldenburg, zwischen 6.0 km hinter AD Ahlhorner Heide und 0.4 km vor AS Gro\u00dfenkneten", + "", + "L\u00e4nge: 6.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 2.8 m", + "", + "A29 Betonfeldsanierung zw. AD Ahlhorner Heide und AS Gro\u00dfenkneten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.172414902, + 52.892154916 + ], + [ + 8.1719753, + 52.892498101 + ], + [ + 8.1714307, + 52.892944001 + ], + [ + 8.1712607, + 52.893083801 + ], + [ + 8.1704187, + 52.893834701 + ], + [ + 8.1699762, + 52.894250801 + ], + [ + 8.1694345, + 52.894793901 + ], + [ + 8.1690958, + 52.895150401 + ], + [ + 8.1686768, + 52.895613701 + ], + [ + 8.1684022, + 52.895931901 + ], + [ + 8.1678262, + 52.896636601 + ], + [ + 8.1677027, + 52.896804901 + ], + [ + 8.1674979, + 52.897083601 + ], + [ + 8.1673604, + 52.897270701 + ], + [ + 8.1671789, + 52.897532601 + ], + [ + 8.1669976, + 52.897796301 + ], + [ + 8.1668237, + 52.898075901 + ], + [ + 8.1663403, + 52.898877201 + ], + [ + 8.1661574, + 52.899203901 + ], + [ + 8.1659528, + 52.899595701 + ], + [ + 8.1656175, + 52.900238001 + ], + [ + 8.1652229, + 52.901202701 + ], + [ + 8.1651524, + 52.901452101 + ], + [ + 8.1648469, + 52.902426601 + ], + [ + 8.1647168, + 52.902937601 + ], + [ + 8.1646175, + 52.903401101 + ], + [ + 8.1644745, + 52.904235201 + ], + [ + 8.1643778, + 52.905119801 + ], + [ + 8.1643445, + 52.905978501 + ], + [ + 8.1643705, + 52.906889901 + ], + [ + 8.1644587, + 52.907863101 + ], + [ + 8.1645316, + 52.908378801 + ], + [ + 8.1646214, + 52.908883701 + ], + [ + 8.1647444, + 52.909442201 + ], + [ + 8.1649357, + 52.910156201 + ], + [ + 8.1651812, + 52.910951801 + ], + [ + 8.1653292, + 52.911429901 + ], + [ + 8.1658482, + 52.912793301 + ], + [ + 8.1662759, + 52.913791401 + ], + [ + 8.1665692, + 52.914517901 + ], + [ + 8.1670554, + 52.915566201 + ], + [ + 8.1673363, + 52.916182601 + ], + [ + 8.167636, + 52.916835201 + ], + [ + 8.1681283, + 52.917912901 + ], + [ + 8.1688027, + 52.919426101 + ], + [ + 8.1694612, + 52.920868101 + ], + [ + 8.1701201, + 52.922314701 + ], + [ + 8.1706571, + 52.923513201 + ], + [ + 8.1712129, + 52.924718301 + ], + [ + 8.1718092, + 52.926042301 + ], + [ + 8.1724354, + 52.927405401 + ], + [ + 8.1730439, + 52.928745601 + ], + [ + 8.173647, + 52.930085601 + ], + [ + 8.1743443, + 52.931613901 + ], + [ + 8.1745975, + 52.932169401 + ], + [ + 8.1749739, + 52.932995201 + ], + [ + 8.1754939, + 52.934162101 + ], + [ + 8.1759904, + 52.935304701 + ], + [ + 8.1765488, + 52.936612901 + ], + [ + 8.1770733, + 52.937901001 + ], + [ + 8.1775648, + 52.939214501 + ], + [ + 8.1780305, + 52.940508901 + ], + [ + 8.1785103, + 52.941971201 + ], + [ + 8.1789542, + 52.943430001 + ], + [ + 8.1793416, + 52.944869801 + ], + [ + 8.1796495, + 52.946086201 + ], + [ + 8.179955614, + 52.94742245 + ] + ] + } + }, + { + "identifier": "2025-044224--vi-bs.2026-03-16_07-30-00-000.devi-zus.2025-11-10_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.852492387382576,8.227075217749777,52.895937504249126,8.168397620098558", + "point": "52.852492387382576,8.227075217749777", + "startLcPosition": "0", + "impact": { + "lower": "Ahlhorn", + "upper": "Ahlhorner Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ahlhorner Heide -> Oldenburg", + "title": "A29 | Ahlhorner Heide - Ahlhorn", + "startTimestamp": "2026-03-16T07:30:00+01:00", + "coordinate": { + "lat": 52.852492387382576, + "long": 8.227075217749777 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 07:30 Uhr", + "Ende: 14.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "A29: Ahlhorner Heide -> Oldenburg, zwischen AD Ahlhorner Heide und 0.1 km vor AS Ahlhorn", + "", + "L\u00e4nge: 6.48 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 2.8 m", + "", + "A29 Betonfeldsanierung zw. AD Ahlhorner Heide und AS Gro\u00dfenkneten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.227075218, + 52.852492387 + ], + [ + 8.2268096, + 52.853098101 + ], + [ + 8.2264761, + 52.853830601 + ], + [ + 8.2257713, + 52.855438001 + ], + [ + 8.2255139, + 52.856031601 + ], + [ + 8.2248089, + 52.857653801 + ], + [ + 8.2239097, + 52.859700501 + ], + [ + 8.2234259, + 52.860729201 + ], + [ + 8.222822, + 52.861911701 + ], + [ + 8.222097, + 52.863170401 + ], + [ + 8.2217129, + 52.863778301 + ], + [ + 8.2213146, + 52.864380501 + ], + [ + 8.2208852, + 52.865010001 + ], + [ + 8.2204539, + 52.865585001 + ], + [ + 8.2200161, + 52.866147401 + ], + [ + 8.2195237, + 52.866769801 + ], + [ + 8.2189612, + 52.867430901 + ], + [ + 8.2184171, + 52.868050301 + ], + [ + 8.2174991, + 52.869027701 + ], + [ + 8.2169888, + 52.869536901 + ], + [ + 8.2165137, + 52.869997601 + ], + [ + 8.2154745, + 52.870948801 + ], + [ + 8.2143654, + 52.871895201 + ], + [ + 8.2131313, + 52.872893701 + ], + [ + 8.2117716, + 52.873897601 + ], + [ + 8.2107005, + 52.874650001 + ], + [ + 8.2095498, + 52.875409501 + ], + [ + 8.2084594, + 52.876086901 + ], + [ + 8.2072681, + 52.876792901 + ], + [ + 8.2060307, + 52.877488501 + ], + [ + 8.2048231, + 52.878127101 + ], + [ + 8.203852, + 52.878609801 + ], + [ + 8.2022271, + 52.879380701 + ], + [ + 8.2008631, + 52.879986201 + ], + [ + 8.1995378, + 52.880545801 + ], + [ + 8.1979304, + 52.881181601 + ], + [ + 8.1963694, + 52.881771901 + ], + [ + 8.1949019, + 52.882302801 + ], + [ + 8.1934323, + 52.882823601 + ], + [ + 8.192034, + 52.883301201 + ], + [ + 8.1906531, + 52.883781901 + ], + [ + 8.1892578, + 52.884259201 + ], + [ + 8.1878776, + 52.884743601 + ], + [ + 8.1853493, + 52.885645901 + ], + [ + 8.1849332, + 52.885794401 + ], + [ + 8.1839773, + 52.886162901 + ], + [ + 8.1826278, + 52.886689601 + ], + [ + 8.181242, + 52.887258901 + ], + [ + 8.1798442, + 52.887860001 + ], + [ + 8.1785385, + 52.888471601 + ], + [ + 8.177245, + 52.889122201 + ], + [ + 8.1768294, + 52.889345101 + ], + [ + 8.1760869, + 52.889754801 + ], + [ + 8.1752973, + 52.890213101 + ], + [ + 8.174961, + 52.890416101 + ], + [ + 8.1737145, + 52.891228901 + ], + [ + 8.1725124, + 52.892078801 + ], + [ + 8.1719753, + 52.892498101 + ], + [ + 8.1714307, + 52.892944001 + ], + [ + 8.1712607, + 52.893083801 + ], + [ + 8.1704187, + 52.893834701 + ], + [ + 8.1699762, + 52.894250801 + ], + [ + 8.1694345, + 52.894793901 + ], + [ + 8.1690958, + 52.895150401 + ], + [ + 8.1686768, + 52.895613701 + ], + [ + 8.1684022, + 52.895931901 + ], + [ + 8.16839762, + 52.895937504 + ] + ] + } + }, + { + "identifier": "2025-044224--vi-bs.2026-04-13_07-30-00-000.devi-zus.2025-11-10_00-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.90184393980752,8.164858396870166,52.85836547682125,8.224328101271997", + "point": "52.90184393980752,8.164858396870166", + "startLcPosition": "2", + "impact": { + "lower": "Ahlhorner Heide", + "upper": "Ahlhorn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oldenburg -> Ahlhorner Heide", + "title": "A29 | Ahlhorn - Ahlhorner Heide", + "startTimestamp": "2026-04-13T07:30:00+02:00", + "coordinate": { + "lat": 52.90184393980752, + "long": 8.164858396870166 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:30 Uhr", + "Ende: 29.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "A29: Oldenburg -> Ahlhorner Heide, zwischen 1.3 km hinter Ahlhorn und 0.7 km vor AD Ahlhorner Heide", + "", + "L\u00e4nge: 6.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 2.8 m", + "", + "A29 Betonfeldsanierung zw. AD Ahlhorner Heide und AS Gro\u00dfenkneten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.164858397, + 52.90184394 + ], + [ + 8.1649723, + 52.901464401 + ], + [ + 8.165044, + 52.901246401 + ], + [ + 8.1651393, + 52.901025501 + ], + [ + 8.1654798, + 52.900213101 + ], + [ + 8.1657951, + 52.899571401 + ], + [ + 8.1659039, + 52.899360001 + ], + [ + 8.165997, + 52.899179001 + ], + [ + 8.1661794, + 52.898849601 + ], + [ + 8.1666653, + 52.898042401 + ], + [ + 8.1668411, + 52.897766601 + ], + [ + 8.1670227, + 52.897498801 + ], + [ + 8.167326, + 52.897063701 + ], + [ + 8.1675451, + 52.896770301 + ], + [ + 8.1679033, + 52.896313501 + ], + [ + 8.168249, + 52.895888901 + ], + [ + 8.1685272, + 52.895569201 + ], + [ + 8.168946, + 52.895104801 + ], + [ + 8.1692864, + 52.894747901 + ], + [ + 8.1696357, + 52.894390701 + ], + [ + 8.1702495, + 52.893797701 + ], + [ + 8.1713103, + 52.892878701 + ], + [ + 8.1718691, + 52.892415101 + ], + [ + 8.1724568, + 52.891966101 + ], + [ + 8.1736145, + 52.891140901 + ], + [ + 8.1748731, + 52.890328501 + ], + [ + 8.1752008, + 52.890126301 + ], + [ + 8.1759953, + 52.889670601 + ], + [ + 8.176729, + 52.889264701 + ], + [ + 8.1771454, + 52.889047601 + ], + [ + 8.1784301, + 52.888395001 + ], + [ + 8.1797967, + 52.887751401 + ], + [ + 8.1811754, + 52.887153301 + ], + [ + 8.1825815, + 52.886582501 + ], + [ + 8.1838843, + 52.886077601 + ], + [ + 8.1848535, + 52.885706601 + ], + [ + 8.1878449, + 52.884631601 + ], + [ + 8.1892151, + 52.884159701 + ], + [ + 8.1906177, + 52.883676801 + ], + [ + 8.1919751, + 52.883205201 + ], + [ + 8.1933757, + 52.882722301 + ], + [ + 8.1948748, + 52.882190901 + ], + [ + 8.1963035, + 52.881680601 + ], + [ + 8.1978721, + 52.881081101 + ], + [ + 8.1994469, + 52.880459101 + ], + [ + 8.2008256, + 52.879880701 + ], + [ + 8.2021672, + 52.879277701 + ], + [ + 8.2038, + 52.878503001 + ], + [ + 8.204752, + 52.878023701 + ], + [ + 8.2059224, + 52.877411901 + ], + [ + 8.2072264, + 52.876677701 + ], + [ + 8.2083531, + 52.876011501 + ], + [ + 8.2094985, + 52.875288501 + ], + [ + 8.2106089, + 52.874559501 + ], + [ + 8.2116801, + 52.873808701 + ], + [ + 8.212998, + 52.872828401 + ], + [ + 8.2142492, + 52.871824201 + ], + [ + 8.2153724, + 52.870858301 + ], + [ + 8.2163984, + 52.869916301 + ], + [ + 8.2168804, + 52.869458901 + ], + [ + 8.2173699, + 52.868956001 + ], + [ + 8.2182753, + 52.867997101 + ], + [ + 8.218855, + 52.867336601 + ], + [ + 8.2194007, + 52.866695301 + ], + [ + 8.2198735, + 52.866106901 + ], + [ + 8.2203227, + 52.865516901 + ], + [ + 8.220732, + 52.864965601 + ], + [ + 8.2211635, + 52.864343401 + ], + [ + 8.2215654, + 52.863734601 + ], + [ + 8.2219441, + 52.863131701 + ], + [ + 8.2226684, + 52.861871501 + ], + [ + 8.2232725, + 52.860706601 + ], + [ + 8.2237527, + 52.859677501 + ], + [ + 8.224328101, + 52.858365477 + ] + ] + } + }, + { + "identifier": "2025-011319--vi-bs.2026-03-26_08-00-00-000.devi-zus.2025-10-29_08-00-00-000_016.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.08841977853671,8.259677791948222,53.099376506766234,8.267238345914516", + "point": "53.08841977853671,8.259677791948222", + "startLcPosition": "6", + "impact": { + "lower": "Oldenburg-Ost", + "upper": "Sandkrug", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ahlhorner Heide -> Oldenburg", + "title": "A29 | Sandkrug - Oldenburg-Ost", + "startTimestamp": "2026-03-26T08:00:00+01:00", + "coordinate": { + "lat": 53.08841977853671, + "long": 8.259677791948222 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 08:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A29: Ahlhorner Heide -> Oldenburg, zwischen 3.6 km hinter AS Sandkrug und 1.6 km vor AK Oldenburg-Ost", + "", + "L\u00e4nge: 1.32 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.9 m", + "", + "A29 BW Sprungweg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.259677792, + 53.088419779 + ], + [ + 8.2597384, + 53.088491401 + ], + [ + 8.2615712, + 53.090807201 + ], + [ + 8.2630362, + 53.092805401 + ], + [ + 8.2650948, + 53.095814201 + ], + [ + 8.2656012, + 53.096617601 + ], + [ + 8.266473, + 53.098063801 + ], + [ + 8.26722, + 53.099343001 + ], + [ + 8.267238346, + 53.099376507 + ] + ] + } + }, + { + "identifier": "2023-000774--vi-bs.2026-03-02_03-00-00-000.devi-zus.2023-10-06_00-00-00-000.f_001.de109", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.13440417849682,8.276381422465743,53.17369328867224,8.26760230197682", + "point": "53.13440417849682,8.276381422465743", + "startLcPosition": "7", + "impact": { + "lower": "Bornhorster Wiesen", + "upper": "Oldenburg-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ahlhorner Heide -> Wilhelmshaven", + "title": "A29 | Oldenburg-Ost - Bornhorster Wiesen", + "startTimestamp": "2026-03-02T03:00:00+01:00", + "coordinate": { + "lat": 53.13440417849682, + "long": 8.276381422465743 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 03:00 Uhr", + "Ende: 05.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.07.29)", + "", + "A29: Ahlhorner Heide -> Wilhelmshaven, zwischen 2.4 km hinter AK Oldenburg-Ost und 1.2 km vor Bornhorster Wiesen", + "", + "L\u00e4nge: 4.42 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A 29, Grunderneuerung Abschnitt 130 sowie Ersatzneubau Huntebr\u00fccke und BW OL-Hafen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.276381422, + 53.134404178 + ], + [ + 8.2763816, + 53.134409101 + ], + [ + 8.2763853, + 53.134802301 + ], + [ + 8.2763939, + 53.135732401 + ], + [ + 8.2763955, + 53.136313601 + ], + [ + 8.2763981, + 53.137599201 + ], + [ + 8.2763915, + 53.137932101 + ], + [ + 8.276374, + 53.138407401 + ], + [ + 8.276346, + 53.139295001 + ], + [ + 8.2761945, + 53.142155501 + ], + [ + 8.2759323, + 53.145050901 + ], + [ + 8.27553, + 53.148176801 + ], + [ + 8.275506, + 53.148332101 + ], + [ + 8.2753225, + 53.149518601 + ], + [ + 8.2750454, + 53.151200601 + ], + [ + 8.2746677, + 53.153001501 + ], + [ + 8.2742147, + 53.155161801 + ], + [ + 8.2739276, + 53.156293601 + ], + [ + 8.273622, + 53.157457301 + ], + [ + 8.2729651, + 53.159815501 + ], + [ + 8.2724012, + 53.161655401 + ], + [ + 8.2719875, + 53.162921401 + ], + [ + 8.2717875, + 53.163519701 + ], + [ + 8.271553, + 53.164195701 + ], + [ + 8.2714688, + 53.164432601 + ], + [ + 8.2712802, + 53.164963501 + ], + [ + 8.2709801, + 53.165780401 + ], + [ + 8.2708929, + 53.166007401 + ], + [ + 8.2704546, + 53.167148301 + ], + [ + 8.2698106, + 53.168757801 + ], + [ + 8.2695244, + 53.169446501 + ], + [ + 8.2694684, + 53.169574901 + ], + [ + 8.2694053, + 53.169719501 + ], + [ + 8.2686511, + 53.171445401 + ], + [ + 8.267602302, + 53.173693289 + ] + ] + } + }, + { + "identifier": "2023-000774--vi-bs.2026-03-02_03-00-00-000.devi-zus.2023-10-06_00-00-00-000.f_001.de105", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.11689240869778,8.274059061091792,53.13440417849682,8.276381422465743", + "point": "53.11689240869778,8.274059061091792", + "startLcPosition": "7", + "impact": { + "lower": "Oldenburg-Hafen", + "upper": "Oldenburg-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ahlhorner Heide -> Wilhelmshaven", + "title": "A29 | Oldenburg-Ost - Oldenburg-Hafen", + "startTimestamp": "2026-03-02T03:00:00+01:00", + "coordinate": { + "lat": 53.11689240869778, + "long": 8.274059061091792 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 03:00 Uhr", + "Ende: 05.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.07.29)", + "", + "A29: Ahlhorner Heide -> Wilhelmshaven, zwischen 0.4 km hinter AK Oldenburg-Ost und 0.4 km vor AS Oldenburg-Hafen", + "", + "L\u00e4nge: 1.95 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A 29, Grunderneuerung Abschnitt 130 sowie Ersatzneubau Huntebr\u00fccke und BW OL-Hafen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.274059061, + 53.116892409 + ], + [ + 8.274603, + 53.119234801 + ], + [ + 8.2746571, + 53.119504001 + ], + [ + 8.2747611, + 53.120022101 + ], + [ + 8.2749728, + 53.121098301 + ], + [ + 8.2749763, + 53.121117801 + ], + [ + 8.2750066, + 53.121285901 + ], + [ + 8.2752487, + 53.122629401 + ], + [ + 8.2753132, + 53.123067301 + ], + [ + 8.2754061, + 53.123651001 + ], + [ + 8.2757359, + 53.125950901 + ], + [ + 8.2759219, + 53.127517401 + ], + [ + 8.2759641, + 53.127894001 + ], + [ + 8.276101, + 53.129308701 + ], + [ + 8.2761369, + 53.129831401 + ], + [ + 8.2763048, + 53.132279601 + ], + [ + 8.276381422, + 53.134404178 + ] + ] + } + }, + { + "identifier": "2025-011319--vi-bs.2026-03-25_08-00-00-000.devi-zus.2025-10-29_08-00-00-000_016.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.09940777133901,8.267080260931875,53.08847178094167,8.259508496951348", + "point": "53.09940777133901,8.267080260931875", + "startLcPosition": "7", + "impact": { + "lower": "Sandkrug", + "upper": "Oldenburg-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oldenburg -> Ahlhorner Heide", + "title": "A29 | Oldenburg-Ost - Sandkrug", + "startTimestamp": "2026-03-25T08:00:00+01:00", + "coordinate": { + "lat": 53.09940777133901, + "long": 8.267080260931875 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.03.26 um 08:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A29: Oldenburg -> Ahlhorner Heide, zwischen 1.6 km hinter AK Oldenburg-Ost und 3.6 km vor AS Sandkrug", + "", + "L\u00e4nge: 1.32 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.85 m", + "", + "A29 BW Sprungweg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.267080261, + 53.099407771 + ], + [ + 8.2670597, + 53.099370001 + ], + [ + 8.2663183, + 53.098083901 + ], + [ + 8.2654327, + 53.096646901 + ], + [ + 8.264877, + 53.095783001 + ], + [ + 8.2636686, + 53.093996701 + ], + [ + 8.2634195, + 53.093628601 + ], + [ + 8.2628957, + 53.092851201 + ], + [ + 8.2614078, + 53.090840401 + ], + [ + 8.2597484, + 53.088754601 + ], + [ + 8.259508497, + 53.088471781 + ] + ] + } + }, + { + "identifier": "2023-000774--vi-bs.2026-03-02_03-00-00-000.devi-zus.2023-10-06_00-00-00-000.f_001.de107", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.134406718632135,8.276194856013007,53.11690815285149,8.273874503489354", + "point": "53.134406718632135,8.276194856013007", + "startLcPosition": "8", + "impact": { + "lower": "Oldenburg-Ost", + "upper": "Oldenburg-Hafen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wilhelmshaven -> Ahlhorner Heide", + "title": "A29 | Oldenburg-Hafen - Oldenburg-Ost", + "startTimestamp": "2026-03-02T03:00:00+01:00", + "coordinate": { + "lat": 53.134406718632135, + "long": 8.276194856013007 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 03:00 Uhr", + "Ende: 05.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.07.29)", + "", + "A29: Wilhelmshaven -> Ahlhorner Heide, zwischen 0.4 km hinter AS Oldenburg-Hafen und 0.4 km vor AK Oldenburg-Ost", + "", + "L\u00e4nge: 1.95 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A 29, Grunderneuerung Abschnitt 130 sowie Ersatzneubau Huntebr\u00fccke und BW OL-Hafen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.276194856, + 53.134406719 + ], + [ + 8.2761115, + 53.132280901 + ], + [ + 8.2759513, + 53.129839501 + ], + [ + 8.2759172, + 53.129319101 + ], + [ + 8.2757764, + 53.127934901 + ], + [ + 8.2757396, + 53.127556301 + ], + [ + 8.2755446, + 53.125954701 + ], + [ + 8.2752315, + 53.123757501 + ], + [ + 8.275144, + 53.123167301 + ], + [ + 8.2750793, + 53.122795801 + ], + [ + 8.2748255, + 53.121297701 + ], + [ + 8.2747453, + 53.120932401 + ], + [ + 8.2744561, + 53.119482101 + ], + [ + 8.2743781, + 53.119091001 + ], + [ + 8.2740986, + 53.117844401 + ], + [ + 8.273874503, + 53.116908153 + ] + ] + } + }, + { + "identifier": "2023-000774--vi-bs.2026-03-02_03-00-00-000.devi-zus.2023-10-06_00-00-00-000.f_001.de111", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.17366225181543,8.267418286523586,53.134406718632135,8.276194856013007", + "point": "53.17366225181543,8.267418286523586", + "startLcPosition": "11", + "impact": { + "lower": "Oldenburg-Ost", + "upper": "Bornhorster Wiesen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wilhelmshaven -> Ahlhorner Heide", + "title": "A29 | Bornhorster Wiesen - Oldenburg-Ost", + "startTimestamp": "2026-03-02T03:00:00+01:00", + "coordinate": { + "lat": 53.17366225181543, + "long": 8.267418286523586 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 03:00 Uhr", + "Ende: 05.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.07.29)", + "", + "A29: Wilhelmshaven -> Ahlhorner Heide, zwischen 1.2 km hinter Bornhorster Wiesen und 2.4 km vor AK Oldenburg-Ost", + "", + "L\u00e4nge: 4.42 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A 29, Grunderneuerung Abschnitt 130 sowie Ersatzneubau Huntebr\u00fccke und BW OL-Hafen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.267418287, + 53.173662252 + ], + [ + 8.2684702, + 53.171413801 + ], + [ + 8.2692141, + 53.169713001 + ], + [ + 8.2693396, + 53.169413901 + ], + [ + 8.2693858, + 53.169298301 + ], + [ + 8.2702309, + 53.167235201 + ], + [ + 8.2707151, + 53.165992901 + ], + [ + 8.2709576, + 53.165313401 + ], + [ + 8.2710975, + 53.164940601 + ], + [ + 8.2713653, + 53.164185901 + ], + [ + 8.2716043, + 53.163498601 + ], + [ + 8.2718055, + 53.162898401 + ], + [ + 8.2722161, + 53.161645101 + ], + [ + 8.2727793, + 53.159795301 + ], + [ + 8.2734397, + 53.157435001 + ], + [ + 8.2737422, + 53.156273001 + ], + [ + 8.2740235, + 53.155147401 + ], + [ + 8.2744775, + 53.152982301 + ], + [ + 8.2748541, + 53.151186201 + ], + [ + 8.2751321, + 53.149504701 + ], + [ + 8.2753182, + 53.148322101 + ], + [ + 8.2753433, + 53.148162701 + ], + [ + 8.2757443, + 53.145045801 + ], + [ + 8.2759045, + 53.143384001 + ], + [ + 8.2760044, + 53.142154701 + ], + [ + 8.2760671, + 53.141161301 + ], + [ + 8.2761551, + 53.139294801 + ], + [ + 8.2761576, + 53.139241401 + ], + [ + 8.2761957, + 53.138011101 + ], + [ + 8.2762002, + 53.137685001 + ], + [ + 8.2762064, + 53.137072201 + ], + [ + 8.2762072, + 53.135733201 + ], + [ + 8.2762024, + 53.134806401 + ], + [ + 8.2762012, + 53.134568501 + ], + [ + 8.276194856, + 53.134406719 + ] + ] + } + }, + { + "identifier": "2026-017771--vi-bs.2026-04-10_08-30-00-000.devi-zus.2026-04-10_08-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.22110417076558,8.208102609196885,53.22904126535132,8.189953975068763", + "point": "53.22110417076558,8.208102609196885", + "startLcPosition": "12", + "impact": { + "lower": "Rastede", + "upper": "Oldenburg-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oldenburg -> Wilhelmshaven", + "title": "A29 | Oldenburg-Nord - Rastede", + "coordinate": { + "lat": 53.22110417076558, + "long": 8.208102609196885 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:45 bis 13:30 Uhr", + "", + "A29: Oldenburg -> Wilhelmshaven, zwischen 1.6 km hinter AK Oldenburg-Nord und 1.9 km vor AS Rastede", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A29 von Oldenburg-Nord (AK) nach Rastede (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.208102609, + 53.221104171 + ], + [ + 8.2061074, + 53.222053401 + ], + [ + 8.2042832, + 53.222869001 + ], + [ + 8.2025279, + 53.223615201 + ], + [ + 8.2016264, + 53.223997001 + ], + [ + 8.2004493, + 53.224486701 + ], + [ + 8.1975761, + 53.225670301 + ], + [ + 8.1952026, + 53.226659101 + ], + [ + 8.1937636, + 53.227278601 + ], + [ + 8.1928794, + 53.227668701 + ], + [ + 8.1920802, + 53.228025901 + ], + [ + 8.1912381, + 53.228419501 + ], + [ + 8.1909393, + 53.228559101 + ], + [ + 8.189953975, + 53.229041265 + ] + ] + } + }, + { + "identifier": "2026-017771--vi-bs.2026-04-10_08-30-00-000.devi-zus.2026-04-10_08-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.22110417076558,8.208102609196885,53.22904126535132,8.189953975068763", + "point": "53.22110417076558,8.208102609196885", + "startLcPosition": "12", + "impact": { + "lower": "Rastede", + "upper": "Oldenburg-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oldenburg -> Wilhelmshaven", + "title": "A29 | Oldenburg-Nord - Rastede", + "coordinate": { + "lat": 53.22110417076558, + "long": 8.208102609196885 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:30 bis 13:30 Uhr", + "", + "A29: Oldenburg -> Wilhelmshaven, zwischen 1.6 km hinter AK Oldenburg-Nord und 1.9 km vor AS Rastede", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A29 von Oldenburg-Nord (AK) nach Rastede (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.208102609, + 53.221104171 + ], + [ + 8.2061074, + 53.222053401 + ], + [ + 8.2042832, + 53.222869001 + ], + [ + 8.2025279, + 53.223615201 + ], + [ + 8.2016264, + 53.223997001 + ], + [ + 8.2004493, + 53.224486701 + ], + [ + 8.1975761, + 53.225670301 + ], + [ + 8.1952026, + 53.226659101 + ], + [ + 8.1937636, + 53.227278601 + ], + [ + 8.1928794, + 53.227668701 + ], + [ + 8.1920802, + 53.228025901 + ], + [ + 8.1912381, + 53.228419501 + ], + [ + 8.1909393, + 53.228559101 + ], + [ + 8.189953975, + 53.229041265 + ] + ] + } + }, + { + "identifier": "2026-017771--vi-bs.2026-04-10_08-30-00-000.devi-zus.2026-04-10_08-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.253972284736776,8.172624863401314,53.266347664473514,8.163708931000114", + "point": "53.253972284736776,8.172624863401314", + "startLcPosition": "13", + "impact": { + "lower": "Hahn-Lehmden", + "upper": "Rastede", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oldenburg -> Wilhelmshaven", + "title": "A29 | Rastede - Hahn-Lehmden", + "coordinate": { + "lat": 53.253972284736776, + "long": 8.172624863401314 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:30 bis 13:30 Uhr", + "", + "A29: Oldenburg -> Wilhelmshaven, zwischen 1.2 km hinter AS Rastede und 1.7 km vor AS Hahn-Lehmden", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A29 von Oldenburg-Nord (AK) nach Rastede (AS) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.172624863, + 53.253972285 + ], + [ + 8.1726185, + 53.253984401 + ], + [ + 8.1720802, + 53.254932601 + ], + [ + 8.1715135, + 53.255863101 + ], + [ + 8.1709538, + 53.256733001 + ], + [ + 8.1703089, + 53.257683101 + ], + [ + 8.169657, + 53.258607501 + ], + [ + 8.1685463, + 53.260088701 + ], + [ + 8.1680945, + 53.260668901 + ], + [ + 8.1673766, + 53.261590801 + ], + [ + 8.1650438, + 53.264560001 + ], + [ + 8.163999, + 53.265949101 + ], + [ + 8.163708931, + 53.266347664 + ] + ] + } + }, + { + "identifier": "2024-022481--vi-bs.2025-08-27_00-00-00-000.devi-zus.2025-01-01_00-00-00-000.f.de28", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.423023036466915,8.072016278209924,53.434938449005685,8.042815976737685", + "point": "53.423023036466915,8.072016278209924", + "startLcPosition": "19", + "impact": { + "lower": "Zetel", + "upper": "Varel/Bockhorn", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oldenburg -> Wilhelmshaven", + "title": "A29 | Varel/Bockhorn - Zetel", + "startTimestamp": "2025-08-27T00:00:00+02:00", + "coordinate": { + "lat": 53.423023036466915, + "long": 8.072016278209924 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.08.25 um 00:00 Uhr", + "Ende: 19.06.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A29: Oldenburg -> Wilhelmshaven, zwischen 3.8 km hinter AS Varel/Bockhorn und 1.8 km vor AS Zetel", + "", + "L\u00e4nge: 2.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.6 m", + "", + "A 29 Ersatzneubau BW Steinhauser Tief (BW 2514512)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.072016278, + 53.423023036 + ], + [ + 8.068192, + 53.424569701 + ], + [ + 8.0573789, + 53.428877401 + ], + [ + 8.0560954, + 53.429375101 + ], + [ + 8.0557045, + 53.429536501 + ], + [ + 8.055354, + 53.429677201 + ], + [ + 8.0552769, + 53.429708201 + ], + [ + 8.0482053, + 53.432546901 + ], + [ + 8.0463367, + 53.433354001 + ], + [ + 8.0440586, + 53.434342801 + ], + [ + 8.043769, + 53.434480801 + ], + [ + 8.042815977, + 53.434938449 + ] + ] + } + }, + { + "identifier": "2026-010928--vi-bs.2026-03-10_08-00-00-000.devi-zus.2026-03-10_08-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.41668734969989,8.08758695090985,53.41871560112555,8.082597093969301", + "point": "53.41668734969989,8.08758695090985", + "startLcPosition": "19", + "impact": { + "lower": "Zetel", + "upper": "Varel/Bockhorn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oldenburg -> Wilhelmshaven", + "title": "A29 | Varel/Bockhorn - Zetel", + "coordinate": { + "lat": 53.41668734969989, + "long": 8.08758695090985 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "04.05.26 von 08:00 bis 16:00 Uhr", + "05.05.26 von 08:00 bis 16:00 Uhr", + "06.05.26 von 08:00 bis 16:00 Uhr", + "07.05.26 von 08:00 bis 16:00 Uhr", + "08.05.26 von 08:00 bis 16:00 Uhr", + "", + "A29: Oldenburg -> Wilhelmshaven, zwischen 2.5 km hinter AS Varel/Bockhorn und 5.0 km vor AS Zetel", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A29 von Zetel (AS) nach VarelBockhorn (AS) Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.087586951, + 53.41668735 + ], + [ + 8.0865692, + 53.417114501 + ], + [ + 8.0841843, + 53.418080201 + ], + [ + 8.082597094, + 53.418715601 + ] + ] + } + }, + { + "identifier": "2024-022481--vi-bs.2025-08-27_00-00-00-000.devi-zus.2025-01-01_00-00-00-000.f.de30", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.434850282832244,8.042695890633366,53.42291005088756,8.071888389611711", + "point": "53.434850282832244,8.042695890633366", + "startLcPosition": "20", + "impact": { + "lower": "Varel/Bockhorn", + "upper": "Zetel", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wilhelmshaven -> Oldenburg", + "title": "A29 | Zetel - Varel/Bockhorn", + "startTimestamp": "2025-08-27T00:00:00+02:00", + "coordinate": { + "lat": 53.434850282832244, + "long": 8.042695890633366 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.08.25 um 00:00 Uhr", + "Ende: 19.06.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A29: Wilhelmshaven -> Oldenburg, zwischen 1.8 km hinter AS Zetel und 3.8 km vor AS Varel/Bockhorn", + "", + "L\u00e4nge: 2.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A 29 Ersatzneubau BW Steinhauser Tief (BW 2514512)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.042695891, + 53.434850283 + ], + [ + 8.0435741, + 53.434413501 + ], + [ + 8.0438685, + 53.434273801 + ], + [ + 8.0459621, + 53.433344901 + ], + [ + 8.0483286, + 53.432324601 + ], + [ + 8.055179, + 53.429605901 + ], + [ + 8.0552575, + 53.429574801 + ], + [ + 8.0556931, + 53.429401901 + ], + [ + 8.0560884, + 53.429242201 + ], + [ + 8.0572582, + 53.428750001 + ], + [ + 8.0680815, + 53.424442101 + ], + [ + 8.07188839, + 53.422910051 + ] + ] + } + }, + { + "identifier": "2026-017628--vi-bs.2026-04-09_07-00-00-000_015.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.448060601881046,8.024979685221474,53.53151704373104,8.014432357168372", + "point": "53.448060601881046,8.024979685221474", + "startLcPosition": "20", + "impact": { + "lower": "Fedderwarden", + "upper": "Zetel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oldenburg -> Wilhelmshaven", + "title": "A29 | Zetel - Fedderwarden", + "coordinate": { + "lat": 53.448060601881046, + "long": 8.024979685221474 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 15:30 Uhr", + "", + "A29: Oldenburg -> Wilhelmshaven, zwischen 0.1 km hinter AS Zetel und 2.8 km vor AS Fedderwarden", + "", + "L\u00e4nge: 10 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A29 von Zetel (AS) nach Fedderwarden (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.024979685, + 53.448060602 + ], + [ + 8.0248595, + 53.448195801 + ], + [ + 8.0241127, + 53.449109201 + ], + [ + 8.0232671, + 53.450224301 + ], + [ + 8.0227715, + 53.450911301 + ], + [ + 8.0223145, + 53.451605701 + ], + [ + 8.0218703, + 53.452281801 + ], + [ + 8.021467, + 53.452960401 + ], + [ + 8.0209261, + 53.453907701 + ], + [ + 8.0204301, + 53.454857601 + ], + [ + 8.0199659, + 53.455825101 + ], + [ + 8.019549, + 53.456796201 + ], + [ + 8.0190553, + 53.458107301 + ], + [ + 8.0188313, + 53.458764401 + ], + [ + 8.0186491, + 53.459369801 + ], + [ + 8.0184976, + 53.459924301 + ], + [ + 8.0183029, + 53.460634501 + ], + [ + 8.0182599, + 53.460826901 + ], + [ + 8.0181319, + 53.461399601 + ], + [ + 8.0178966, + 53.462635401 + ], + [ + 8.0177061, + 53.463873701 + ], + [ + 8.0173421, + 53.466350301 + ], + [ + 8.0171004, + 53.467770101 + ], + [ + 8.0169444, + 53.468536901 + ], + [ + 8.0167701, + 53.469301301 + ], + [ + 8.0165689, + 53.470035301 + ], + [ + 8.0163477, + 53.470768001 + ], + [ + 8.0161799, + 53.471279001 + ], + [ + 8.0159994, + 53.471786301 + ], + [ + 8.0156314, + 53.472702301 + ], + [ + 8.0152363, + 53.473616001 + ], + [ + 8.0148937, + 53.474322601 + ], + [ + 8.0147894, + 53.474507101 + ], + [ + 8.01474, + 53.474604501 + ], + [ + 8.0144687, + 53.475141601 + ], + [ + 8.0141685, + 53.475666701 + ], + [ + 8.0136479, + 53.476543201 + ], + [ + 8.0130875, + 53.477409001 + ], + [ + 8.0124798, + 53.478277601 + ], + [ + 8.0118381, + 53.479135801 + ], + [ + 8.0111092, + 53.480037401 + ], + [ + 8.0103466, + 53.480926901 + ], + [ + 8.0093717, + 53.481981901 + ], + [ + 8.0088766, + 53.482483501 + ], + [ + 8.0081762, + 53.483191301 + ], + [ + 8.0066013, + 53.484742501 + ], + [ + 8.006091, + 53.485247401 + ], + [ + 8.0055919, + 53.485723501 + ], + [ + 8.0051249, + 53.486186801 + ], + [ + 8.0050193, + 53.486291601 + ], + [ + 8.0046878, + 53.486629401 + ], + [ + 8.0042456, + 53.487092401 + ], + [ + 8.0041102, + 53.487232501 + ], + [ + 8.0037582, + 53.487596701 + ], + [ + 8.0031754, + 53.488214401 + ], + [ + 8.0026271, + 53.488848801 + ], + [ + 8.0022512, + 53.489274401 + ], + [ + 8.0019058, + 53.489706001 + ], + [ + 8.0015427, + 53.490148901 + ], + [ + 8.0013325, + 53.490428001 + ], + [ + 8.0009161, + 53.490978801 + ], + [ + 8.0008063, + 53.491129901 + ], + [ + 8.0003026, + 53.491850801 + ], + [ + 7.9998909, + 53.492468301 + ], + [ + 7.9995152, + 53.493086801 + ], + [ + 7.9992418, + 53.493527901 + ], + [ + 7.998983, + 53.493973101 + ], + [ + 7.9987402, + 53.494421401 + ], + [ + 7.998291, + 53.495291801 + ], + [ + 7.9978869, + 53.496164101 + ], + [ + 7.9974816, + 53.497123601 + ], + [ + 7.9974589, + 53.497177101 + ], + [ + 7.9972201, + 53.497807201 + ], + [ + 7.9969983, + 53.498447101 + ], + [ + 7.9966722, + 53.499509601 + ], + [ + 7.9964419, + 53.500428501 + ], + [ + 7.9962927, + 53.501051601 + ], + [ + 7.9961779, + 53.501676801 + ], + [ + 7.9960728, + 53.502304001 + ], + [ + 7.9959884, + 53.502930201 + ], + [ + 7.9959714, + 53.503134301 + ], + [ + 7.9959306, + 53.503522001 + ], + [ + 7.9958991, + 53.503907101 + ], + [ + 7.9958424, + 53.504973601 + ], + [ + 7.9958408, + 53.505253901 + ], + [ + 7.9958502, + 53.506181301 + ], + [ + 7.9959563, + 53.507672701 + ], + [ + 7.9960097, + 53.508209601 + ], + [ + 7.9960889, + 53.508744701 + ], + [ + 7.996277, + 53.509814901 + ], + [ + 7.9965207, + 53.510876601 + ], + [ + 7.9968188, + 53.511934201 + ], + [ + 7.9971457, + 53.512934901 + ], + [ + 7.9975265, + 53.513931801 + ], + [ + 7.9978564, + 53.514727601 + ], + [ + 7.9980348, + 53.515125501 + ], + [ + 7.9982336, + 53.515521801 + ], + [ + 7.9986045, + 53.516265301 + ], + [ + 7.998879, + 53.516776301 + ], + [ + 7.9991493, + 53.517268201 + ], + [ + 7.9995031, + 53.517839801 + ], + [ + 7.9998627, + 53.518425201 + ], + [ + 8.0002052, + 53.518952601 + ], + [ + 8.0007333, + 53.519714401 + ], + [ + 8.0010123, + 53.520086401 + ], + [ + 8.0013178, + 53.520500701 + ], + [ + 8.0014265, + 53.520641801 + ], + [ + 8.0016839, + 53.520975901 + ], + [ + 8.0019951, + 53.521362301 + ], + [ + 8.0026012, + 53.522081301 + ], + [ + 8.0033791, + 53.522945201 + ], + [ + 8.0035772, + 53.523162001 + ], + [ + 8.0044282, + 53.524044301 + ], + [ + 8.0051459, + 53.524740801 + ], + [ + 8.0058693, + 53.525384701 + ], + [ + 8.0064555, + 53.525922101 + ], + [ + 8.007399, + 53.526716201 + ], + [ + 8.0083602, + 53.527487201 + ], + [ + 8.0090652, + 53.528026401 + ], + [ + 8.0096187, + 53.528437901 + ], + [ + 8.010058, + 53.528752501 + ], + [ + 8.0116745, + 53.529853001 + ], + [ + 8.0128042, + 53.530558801 + ], + [ + 8.0136768, + 53.531086701 + ], + [ + 8.014432357, + 53.531517044 + ] + ] + } + } + ] + }, + "A30": { + "roadworks": [ + { + "identifier": "2024-018698--vi-bs.2025-08-20_05-00-00-000.devi-zus.2025-05-05_20-00-00-000.f.de67", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.31044561570921,7.47408984202374,52.289968329271765,7.55414730156429", + "point": "52.31044561570921,7.47408984202374", + "startLcPosition": "10", + "impact": { + "lower": "H\u00f6rstel", + "upper": "Rheine-Nord", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Amsterdam -> Osnabr\u00fcck", + "title": "A30 | Rheine-Nord - H\u00f6rstel", + "startTimestamp": "2025-08-20T05:00:00+02:00", + "coordinate": { + "lat": 52.31044561570921, + "long": 7.47408984202374 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.08.25 um 05:00 Uhr", + "Ende: 31.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "A30: Amsterdam -> Osnabr\u00fcck, zwischen 3.3 km hinter AS Rheine-Nord und 3.2 km vor AS H\u00f6rstel", + "", + "L\u00e4nge: 6.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahnsanierung von DEK-Br\u00fccke bis Rheine-Kanalhafen - AlD 18698" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.474089842, + 52.310445616 + ], + [ + 7.4749258, + 52.310168401 + ], + [ + 7.4770544, + 52.309419601 + ], + [ + 7.477472, + 52.309269501 + ], + [ + 7.4791392, + 52.308640801 + ], + [ + 7.4812386, + 52.307805701 + ], + [ + 7.4832963, + 52.306956201 + ], + [ + 7.4838872, + 52.306703301 + ], + [ + 7.4847284, + 52.306327501 + ], + [ + 7.4861359, + 52.305734601 + ], + [ + 7.4883329, + 52.304766801 + ], + [ + 7.4890352, + 52.304457401 + ], + [ + 7.4895177, + 52.304248101 + ], + [ + 7.4901265, + 52.303965201 + ], + [ + 7.4906869, + 52.303726701 + ], + [ + 7.4932458, + 52.302631901 + ], + [ + 7.4942883, + 52.302153901 + ], + [ + 7.4945924, + 52.302022601 + ], + [ + 7.4956289, + 52.301578901 + ], + [ + 7.496357, + 52.301260401 + ], + [ + 7.4984916, + 52.300384701 + ], + [ + 7.5006778, + 52.299551201 + ], + [ + 7.5009097, + 52.299469201 + ], + [ + 7.5028031, + 52.298796601 + ], + [ + 7.5049691, + 52.298082801 + ], + [ + 7.5092853, + 52.296728201 + ], + [ + 7.511173, + 52.296145301 + ], + [ + 7.5119165, + 52.295908901 + ], + [ + 7.5136445, + 52.295382001 + ], + [ + 7.5147382, + 52.295056001 + ], + [ + 7.5158396, + 52.294738901 + ], + [ + 7.5181164, + 52.294120501 + ], + [ + 7.5199319, + 52.293671001 + ], + [ + 7.5205332, + 52.293529501 + ], + [ + 7.5227348, + 52.293034101 + ], + [ + 7.5250638, + 52.292563901 + ], + [ + 7.5274222, + 52.292141301 + ], + [ + 7.5297865, + 52.291771801 + ], + [ + 7.5322238, + 52.291443201 + ], + [ + 7.5345354, + 52.291181601 + ], + [ + 7.5350941, + 52.291128301 + ], + [ + 7.5354853, + 52.291093701 + ], + [ + 7.5368738, + 52.290965301 + ], + [ + 7.5389508, + 52.290802301 + ], + [ + 7.5402704, + 52.290726901 + ], + [ + 7.5417437, + 52.290643401 + ], + [ + 7.5447549, + 52.290472301 + ], + [ + 7.5460684, + 52.290403601 + ], + [ + 7.5464826, + 52.290383401 + ], + [ + 7.5466933, + 52.290373201 + ], + [ + 7.547269, + 52.290345101 + ], + [ + 7.5487554, + 52.290272701 + ], + [ + 7.5507615, + 52.290175001 + ], + [ + 7.554147302, + 52.289968329 + ] + ] + } + }, + { + "identifier": "2024-018698--vi-bs.2025-08-20_05-00-00-000.devi-zus.2025-05-05_20-00-00-000.f.de75", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.311600752530566,7.470447930177865,52.31044561570921,7.47408984202374", + "point": "52.311600752530566,7.470447930177865", + "startLcPosition": "10", + "impact": { + "lower": "Rheine", + "upper": "Rheine-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Amsterdam -> Osnabr\u00fcck", + "title": "A30 | Rheine-Nord - Rheine", + "startTimestamp": "2025-08-20T05:00:00+02:00", + "coordinate": { + "lat": 52.311600752530566, + "long": 7.470447930177865 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.08.25 um 05:00 Uhr", + "Ende: 31.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "A30: Amsterdam -> Osnabr\u00fcck, zwischen 3.0 km hinter AS Rheine-Nord und 1.3 km vor AS Rheine", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahnsanierung von DEK-Br\u00fccke bis Rheine-Kanalhafen - AlD 18698" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.47044793, + 52.311600753 + ], + [ + 7.470465, + 52.311595701 + ], + [ + 7.4727283, + 52.310897101 + ], + [ + 7.474089842, + 52.310445616 + ] + ] + } + }, + { + "identifier": "2024-018698--vi-bs.2025-08-20_05-00-00-000.devi-zus.2025-05-05_20-00-00-000.f.de65", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.31433825412493,7.460093431233255,52.311600752530566,7.470447930177879", + "point": "52.31433825412493,7.460093431233255", + "startLcPosition": "10", + "impact": { + "lower": "Rheine", + "upper": "Rheine-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Amsterdam -> Osnabr\u00fcck", + "title": "A30 | Rheine-Nord - Rheine", + "startTimestamp": "2025-08-20T05:00:00+02:00", + "coordinate": { + "lat": 52.31433825412493, + "long": 7.460093431233255 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.08.25 um 05:00 Uhr", + "Ende: 31.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "A30: Amsterdam -> Osnabr\u00fcck, zwischen 2.2 km hinter AS Rheine-Nord und 1.6 km vor AS Rheine", + "", + "L\u00e4nge: 0.77 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A30 - grundhafte Fahrbahnsanierung von DEK-Br\u00fccke bis Rheine-Kanalhafen - AlD 18698" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.460093431, + 52.314338254 + ], + [ + 7.4602443, + 52.314304001 + ], + [ + 7.4624491, + 52.313773101 + ], + [ + 7.4649199, + 52.313153701 + ], + [ + 7.4656737, + 52.312946201 + ], + [ + 7.4667107, + 52.312677801 + ], + [ + 7.468575, + 52.312155001 + ], + [ + 7.47044793, + 52.311600753 + ] + ] + } + }, + { + "identifier": "2025-021480--vi-bs.2025-11-19_19-00-00-000.devi-zus.2025-09-01_19-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.3111621047114,7.472385155357347,52.314091936825335,7.461821478824964", + "point": "52.3111621047114,7.472385155357347", + "startLcPosition": "11", + "impact": { + "lower": "Rheine-Nord", + "upper": "Rheine", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Amsterdam", + "title": "A30 | Rheine - Rheine-Nord", + "startTimestamp": "2025-11-19T19:00:00+01:00", + "coordinate": { + "lat": 52.3111621047114, + "long": 7.472385155357347 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.11.25 um 19:00 Uhr", + "Ende: 31.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "A30: Osnabr\u00fcck -> Amsterdam, zwischen 1.4 km hinter AS Rheine und 2.3 km vor AS Rheine-Nord", + "", + "L\u00e4nge: 0.79 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A30 - Br\u00fcckeninstandsetzung DEK-Br\u00fccke - AlD 21480" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.472385155, + 52.311162105 + ], + [ + 7.4705702, + 52.311734301 + ], + [ + 7.4686635, + 52.312311001 + ], + [ + 7.4664838, + 52.312916401 + ], + [ + 7.4655228, + 52.313188101 + ], + [ + 7.4647012, + 52.313394501 + ], + [ + 7.4625297, + 52.313931001 + ], + [ + 7.461821479, + 52.314091937 + ] + ] + } + }, + { + "identifier": "2024-018698--vi-bs.2025-08-20_05-00-00-000.devi-zus.2025-05-05_20-00-00-000.f.de73", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.31056577825342,7.474196234912028,52.3111621047114,7.472385155357347", + "point": "52.31056577825342,7.474196234912028", + "startLcPosition": "11", + "impact": { + "lower": "Rheine-Nord", + "upper": "Rheine", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Amsterdam", + "title": "A30 | Rheine - Rheine-Nord", + "startTimestamp": "2025-08-20T05:00:00+02:00", + "coordinate": { + "lat": 52.31056577825342, + "long": 7.474196234912028 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.08.25 um 05:00 Uhr", + "Ende: 31.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "A30: Osnabr\u00fcck -> Amsterdam, zwischen 1.3 km hinter AS Rheine und 3.1 km vor AS Rheine-Nord", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahnsanierung von DEK-Br\u00fccke bis Rheine-Kanalhafen - AlD 18698" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.474196235, + 52.310565778 + ], + [ + 7.4728308, + 52.311021601 + ], + [ + 7.472385155, + 52.311162105 + ] + ] + } + }, + { + "identifier": "2026-017643--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_012.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.28981948222175,7.556329568175591,52.26848245594956,7.664213795171758", + "point": "52.28981948222175,7.556329568175591", + "startLcPosition": "12", + "impact": { + "lower": "Ibbenb\u00fcren", + "upper": "Rheine-Kanalhafen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Rheine -> Osnabr\u00fcck", + "title": "A30 | Rheine-Kanalhafen - Ibbenb\u00fcren", + "coordinate": { + "lat": 52.28981948222175, + "long": 7.556329568175591 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 17:00 Uhr", + "", + "A30: Rheine -> Osnabr\u00fcck, zwischen 1.0 km hinter AS Rheine-Kanalhafen und 3.5 km vor AS Ibbenb\u00fcren", + "", + "L\u00e4nge: 8 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A30 - Vermessungsarbeiten - Wanderbaustelle - AkD 17643" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.556329568, + 52.289819482 + ], + [ + 7.5599836, + 52.289540001 + ], + [ + 7.5613481, + 52.289397201 + ], + [ + 7.5620364, + 52.289334201 + ], + [ + 7.564468, + 52.289101101 + ], + [ + 7.5689291, + 52.288628101 + ], + [ + 7.5706906, + 52.288441601 + ], + [ + 7.5713611, + 52.288371101 + ], + [ + 7.5737334, + 52.288125801 + ], + [ + 7.5761287, + 52.287902001 + ], + [ + 7.5785351, + 52.287699601 + ], + [ + 7.5807734, + 52.287544701 + ], + [ + 7.5825374, + 52.287462801 + ], + [ + 7.5831031, + 52.287445101 + ], + [ + 7.5854144, + 52.287379601 + ], + [ + 7.5877271, + 52.287358701 + ], + [ + 7.5887445, + 52.287364301 + ], + [ + 7.5893076, + 52.287369501 + ], + [ + 7.5923415, + 52.287428201 + ], + [ + 7.5956296, + 52.287535301 + ], + [ + 7.596393, + 52.287562701 + ], + [ + 7.5986127, + 52.287596801 + ], + [ + 7.6002351, + 52.287627001 + ], + [ + 7.6007735, + 52.287631501 + ], + [ + 7.6018564, + 52.287641801 + ], + [ + 7.6030226, + 52.287637501 + ], + [ + 7.6040935, + 52.287653701 + ], + [ + 7.6047567, + 52.287640101 + ], + [ + 7.6050836, + 52.287631801 + ], + [ + 7.6061907, + 52.287590701 + ], + [ + 7.6077469, + 52.287519901 + ], + [ + 7.6089037, + 52.287445101 + ], + [ + 7.6098805, + 52.287374901 + ], + [ + 7.6110968, + 52.287270001 + ], + [ + 7.6120173, + 52.287179601 + ], + [ + 7.6124931, + 52.287128001 + ], + [ + 7.6130417, + 52.287070101 + ], + [ + 7.614308, + 52.286917701 + ], + [ + 7.6153778, + 52.286774601 + ], + [ + 7.6165639, + 52.286602801 + ], + [ + 7.6177453, + 52.286413101 + ], + [ + 7.6189202, + 52.286210401 + ], + [ + 7.6200817, + 52.285992801 + ], + [ + 7.621224, + 52.285765101 + ], + [ + 7.622404, + 52.285511001 + ], + [ + 7.6235459, + 52.285246001 + ], + [ + 7.6246569, + 52.284977001 + ], + [ + 7.6257145, + 52.284698301 + ], + [ + 7.6265805, + 52.284465201 + ], + [ + 7.6269246, + 52.284370901 + ], + [ + 7.6285465, + 52.283897101 + ], + [ + 7.6298216, + 52.283491701 + ], + [ + 7.6310662, + 52.283075801 + ], + [ + 7.6324123, + 52.282590201 + ], + [ + 7.6336318, + 52.282132801 + ], + [ + 7.6346494, + 52.281724701 + ], + [ + 7.6357548, + 52.281265601 + ], + [ + 7.6366528, + 52.280872101 + ], + [ + 7.6378727, + 52.280316801 + ], + [ + 7.6387405, + 52.279915501 + ], + [ + 7.6401436, + 52.279213501 + ], + [ + 7.6420466, + 52.278215101 + ], + [ + 7.6427493, + 52.277825401 + ], + [ + 7.6431187, + 52.277625501 + ], + [ + 7.6462559, + 52.275928401 + ], + [ + 7.6503583, + 52.273803301 + ], + [ + 7.652534, + 52.272771501 + ], + [ + 7.6544272, + 52.271975401 + ], + [ + 7.65485, + 52.271798001 + ], + [ + 7.6566568, + 52.271067701 + ], + [ + 7.6574197, + 52.270779901 + ], + [ + 7.6586902, + 52.270300501 + ], + [ + 7.6597811, + 52.269917401 + ], + [ + 7.6601086, + 52.269807501 + ], + [ + 7.661454, + 52.269347301 + ], + [ + 7.6625618, + 52.268996401 + ], + [ + 7.6637841, + 52.268616201 + ], + [ + 7.664213795, + 52.268482456 + ] + ] + } + }, + { + "identifier": "2024-018698--vi-bs.2025-08-20_05-00-00-000.devi-zus.2025-05-05_20-00-00-000.f.de77", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.289968329271765,7.55414730156429,52.28970823503391,7.557784234009019", + "point": "52.289968329271765,7.55414730156429", + "startLcPosition": "12", + "impact": { + "lower": "H\u00f6rstel", + "upper": "Rheine-Kanalhafen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rheine -> Osnabr\u00fcck", + "title": "A30 | Rheine-Kanalhafen - H\u00f6rstel", + "startTimestamp": "2025-08-20T05:00:00+02:00", + "coordinate": { + "lat": 52.289968329271765, + "long": 7.55414730156429 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.08.25 um 05:00 Uhr", + "Ende: 31.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "A30: Rheine -> Osnabr\u00fcck, zwischen 0.9 km hinter AS Rheine-Kanalhafen und 3.0 km vor AS H\u00f6rstel", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahnsanierung von DEK-Br\u00fccke bis Rheine-Kanalhafen - AlD 18698" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.554147302, + 52.289968329 + ], + [ + 7.5553171, + 52.289896901 + ], + [ + 7.557784234, + 52.289708235 + ] + ] + } + }, + { + "identifier": "2024-018698--vi-bs.2025-08-20_05-00-00-000.devi-zus.2025-05-05_20-00-00-000.f.de69", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.29010643828866,7.554169461638585,52.31056577825342,7.474196234912028", + "point": "52.29010643828866,7.554169461638585", + "startLcPosition": "13", + "impact": { + "lower": "Rheine-Nord", + "upper": "H\u00f6rstel", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Amsterdam", + "title": "A30 | H\u00f6rstel - Rheine-Nord", + "startTimestamp": "2025-08-20T05:00:00+02:00", + "coordinate": { + "lat": 52.29010643828866, + "long": 7.554169461638585 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.08.25 um 05:00 Uhr", + "Ende: 31.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "A30: Osnabr\u00fcck -> Amsterdam, zwischen 3.2 km hinter AS H\u00f6rstel und 3.3 km vor AS Rheine-Nord", + "", + "L\u00e4nge: 6.03 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahnsanierung von DEK-Br\u00fccke bis Rheine-Kanalhafen - AlD 18698" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.554169462, + 52.290106438 + ], + [ + 7.55075, + 52.290310001 + ], + [ + 7.5487768, + 52.290410001 + ], + [ + 7.5466652, + 52.290517001 + ], + [ + 7.5464707, + 52.290526901 + ], + [ + 7.5421409, + 52.290765001 + ], + [ + 7.5407225, + 52.290843801 + ], + [ + 7.5402443, + 52.290873601 + ], + [ + 7.5393067, + 52.290931901 + ], + [ + 7.5385867, + 52.290966901 + ], + [ + 7.536903, + 52.291108201 + ], + [ + 7.5360946, + 52.291181401 + ], + [ + 7.5355117, + 52.291238301 + ], + [ + 7.5351431, + 52.291271801 + ], + [ + 7.5345752, + 52.291325801 + ], + [ + 7.5322632, + 52.291588001 + ], + [ + 7.5298668, + 52.291910601 + ], + [ + 7.5274931, + 52.292285701 + ], + [ + 7.525138, + 52.292705201 + ], + [ + 7.5228119, + 52.293172101 + ], + [ + 7.5206131, + 52.293664901 + ], + [ + 7.5200153, + 52.293808001 + ], + [ + 7.5182024, + 52.294261801 + ], + [ + 7.5159627, + 52.294869501 + ], + [ + 7.5148587, + 52.295189601 + ], + [ + 7.5137605, + 52.295516501 + ], + [ + 7.5120496, + 52.296037201 + ], + [ + 7.5112976, + 52.296275901 + ], + [ + 7.5094046, + 52.296859501 + ], + [ + 7.5050942, + 52.298211601 + ], + [ + 7.5029377, + 52.298927801 + ], + [ + 7.5010566, + 52.299590401 + ], + [ + 7.5008114, + 52.299678201 + ], + [ + 7.4986285, + 52.300514101 + ], + [ + 7.4964882, + 52.301389901 + ], + [ + 7.4947539, + 52.302142401 + ], + [ + 7.49445, + 52.302274301 + ], + [ + 7.4916413, + 52.303504401 + ], + [ + 7.4908314, + 52.303861001 + ], + [ + 7.4901997, + 52.304137501 + ], + [ + 7.4896337, + 52.304385401 + ], + [ + 7.4892055, + 52.304572101 + ], + [ + 7.4862789, + 52.305859801 + ], + [ + 7.4847666, + 52.306512001 + ], + [ + 7.4839817, + 52.306857301 + ], + [ + 7.4834485, + 52.307080801 + ], + [ + 7.4813782, + 52.307936701 + ], + [ + 7.4792667, + 52.308754201 + ], + [ + 7.477515, + 52.309409001 + ], + [ + 7.4771048, + 52.309558501 + ], + [ + 7.4750223, + 52.310290001 + ], + [ + 7.474196235, + 52.310565778 + ] + ] + } + }, + { + "identifier": "2026-017643--vi-bs.2026-04-17_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_012.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.28751004008951,7.588329317513595,52.289078402337516,7.566077712951118", + "point": "52.28751004008951,7.588329317513595", + "startLcPosition": "13", + "impact": { + "lower": "Rheine-Kanalhafen", + "upper": "H\u00f6rstel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | H\u00f6rstel - Rheine-Kanalhafen", + "coordinate": { + "lat": 52.28751004008951, + "long": 7.588329317513595 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 08:00 bis 17:00 Uhr", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 0.9 km hinter AS H\u00f6rstel und 1.7 km vor AS Rheine-Kanalhafen", + "", + "L\u00e4nge: 1.53 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A30 - Vermessungsarbeiten - Wanderbaustelle - AkD 17643" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.588329318, + 52.28751004 + ], + [ + 7.5877304, + 52.287506801 + ], + [ + 7.5854178, + 52.287529201 + ], + [ + 7.5831085, + 52.287592501 + ], + [ + 7.5825768, + 52.287607701 + ], + [ + 7.5808176, + 52.287689201 + ], + [ + 7.5785631, + 52.287845001 + ], + [ + 7.5761607, + 52.288042601 + ], + [ + 7.5737641, + 52.288266601 + ], + [ + 7.5711872, + 52.288533201 + ], + [ + 7.5705984, + 52.288596401 + ], + [ + 7.5689779, + 52.288771501 + ], + [ + 7.566077713, + 52.289078402 + ] + ] + } + }, + { + "identifier": "2024-018698--vi-bs.2025-08-20_05-00-00-000.devi-zus.2025-05-05_20-00-00-000.f.de71", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.289078402337516,7.566077712951118,52.29010643828866,7.554169461638585", + "point": "52.289078402337516,7.566077712951118", + "startLcPosition": "13", + "impact": { + "lower": "Rheine-Kanalhafen", + "upper": "H\u00f6rstel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | H\u00f6rstel - Rheine-Kanalhafen", + "startTimestamp": "2025-08-20T05:00:00+02:00", + "coordinate": { + "lat": 52.289078402337516, + "long": 7.566077712951118 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.08.25 um 05:00 Uhr", + "Ende: 31.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 2.4 km hinter AS H\u00f6rstel und 0.9 km vor AS Rheine-Kanalhafen", + "", + "L\u00e4nge: 0.82 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A30 - grundhafte Fahrbahnsanierung von DEK-Br\u00fccke bis Rheine-Kanalhafen - AlD 18698" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.566077713, + 52.289078402 + ], + [ + 7.5645078, + 52.289244501 + ], + [ + 7.5627098, + 52.289430901 + ], + [ + 7.561957, + 52.289501801 + ], + [ + 7.5599583, + 52.289683301 + ], + [ + 7.5553506, + 52.290036101 + ], + [ + 7.554169462, + 52.290106438 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de58", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.25780551658366,7.707863011541828,52.25710598453383,7.713425594426919", + "point": "52.25780551658366,7.707863011541828", + "startLcPosition": "14", + "impact": { + "lower": "Laggenbeck", + "upper": "Ibbenb\u00fcren-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rheine -> Osnabr\u00fcck", + "title": "A30 | Ibbenb\u00fcren-West - Laggenbeck", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.25780551658366, + "long": 7.707863011541828 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "A30: Rheine -> Osnabr\u00fcck, zwischen 3.8 km hinter AS Ibbenb\u00fcren-West und 4.2 km vor AS Laggenbeck", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.707863012, + 52.257805517 + ], + [ + 7.7084311, + 52.257713501 + ], + [ + 7.7091847, + 52.257596001 + ], + [ + 7.7100644, + 52.257473601 + ], + [ + 7.7109396, + 52.257363101 + ], + [ + 7.7112893, + 52.257318201 + ], + [ + 7.7117917, + 52.257262701 + ], + [ + 7.7132025, + 52.257123801 + ], + [ + 7.713425594, + 52.257105985 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de54", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.25972193868788,7.69920346518762,52.25780551658366,7.707863011541828", + "point": "52.25972193868788,7.69920346518762", + "startLcPosition": "14", + "impact": { + "lower": "Ibbenb\u00fcren", + "upper": "Ibbenb\u00fcren-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rheine -> Osnabr\u00fcck", + "title": "A30 | Ibbenb\u00fcren-West - Ibbenb\u00fcren", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.25972193868788, + "long": 7.69920346518762 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "A30: Rheine -> Osnabr\u00fcck, zwischen 3.1 km hinter AS Ibbenb\u00fcren-West und 0.3 km vor AS Ibbenb\u00fcren", + "", + "L\u00e4nge: 0.63 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.699203465, + 52.259721939 + ], + [ + 7.7014011, + 52.259184601 + ], + [ + 7.7018278, + 52.259081201 + ], + [ + 7.7037874, + 52.258613301 + ], + [ + 7.7049778, + 52.258351101 + ], + [ + 7.7062249, + 52.258095001 + ], + [ + 7.7068015, + 52.257989601 + ], + [ + 7.7073803, + 52.257883701 + ], + [ + 7.707863012, + 52.257805517 + ] + ] + } + }, + { + "identifier": "2026-015552--vi-bs.2026-04-07_20-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.278465665213886,7.641908610098232,52.287787200664354,7.603108500404135", + "point": "52.278465665213886,7.641908610098232", + "startLcPosition": "14", + "impact": { + "lower": "H\u00f6rstel", + "upper": "Ibbenb\u00fcren-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | Ibbenb\u00fcren-West - H\u00f6rstel", + "coordinate": { + "lat": 52.278465665213886, + "long": 7.641908610098232 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 11.04.26 von 20:00 bis 00:00 Uhr.", + "Jeden Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 08.04.26 und dem 11.04.26 von 00:00 bis 06:00 Uhr.", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 1.3 km hinter AS Ibbenb\u00fcren-West und 0.1 km vor AS H\u00f6rstel", + "", + "L\u00e4nge: 2.9 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A30- Sonstiges - Wanderbaustelle - AkD 15552" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.64190861, + 52.278465665 + ], + [ + 7.6402856, + 52.279304601 + ], + [ + 7.6388937, + 52.279991201 + ], + [ + 7.6379541, + 52.280440601 + ], + [ + 7.6367561, + 52.280987001 + ], + [ + 7.6358583, + 52.281370601 + ], + [ + 7.6347299, + 52.281838701 + ], + [ + 7.6337421, + 52.282227901 + ], + [ + 7.6325148, + 52.282690101 + ], + [ + 7.631137, + 52.283178401 + ], + [ + 7.6299196, + 52.283586901 + ], + [ + 7.6286431, + 52.283989501 + ], + [ + 7.6269488, + 52.284485101 + ], + [ + 7.62659, + 52.284582101 + ], + [ + 7.6257865, + 52.284801301 + ], + [ + 7.6247627, + 52.285068201 + ], + [ + 7.6235924, + 52.285354101 + ], + [ + 7.622477, + 52.285608101 + ], + [ + 7.6212814, + 52.285867001 + ], + [ + 7.6201135, + 52.286103001 + ], + [ + 7.618974, + 52.286314801 + ], + [ + 7.6177935, + 52.286519601 + ], + [ + 7.6165968, + 52.286709701 + ], + [ + 7.6154189, + 52.286883201 + ], + [ + 7.6143433, + 52.287026001 + ], + [ + 7.61323, + 52.287160701 + ], + [ + 7.6126751, + 52.287221801 + ], + [ + 7.6120025, + 52.287290901 + ], + [ + 7.6110367, + 52.287386401 + ], + [ + 7.6099107, + 52.287482101 + ], + [ + 7.6089226, + 52.287555501 + ], + [ + 7.6078073, + 52.287627301 + ], + [ + 7.606253, + 52.287703901 + ], + [ + 7.6050911, + 52.287738401 + ], + [ + 7.6047643, + 52.287747401 + ], + [ + 7.6041427, + 52.287758501 + ], + [ + 7.6031085, + 52.287787201 + ] + ] + } + }, + { + "identifier": "2026-017643--vi-bs.2026-04-14_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_012.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.268807709452766,7.663168429498242,52.262739281253914,7.686858848446282", + "point": "52.268807709452766,7.663168429498242", + "startLcPosition": "14", + "impact": { + "lower": "Ibbenb\u00fcren", + "upper": "Ibbenb\u00fcren-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Rheine -> Osnabr\u00fcck", + "title": "A30 | Ibbenb\u00fcren-West - Ibbenb\u00fcren", + "coordinate": { + "lat": 52.268807709452766, + "long": 7.663168429498242 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "", + "A30: Rheine -> Osnabr\u00fcck, zwischen 0.5 km hinter AS Ibbenb\u00fcren-West und 1.8 km vor AS Ibbenb\u00fcren", + "", + "L\u00e4nge: 1.75 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A30 - Vermessungsarbeiten - Wanderbaustelle - AkD 17643" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.663168429, + 52.268807709 + ], + [ + 7.6637841, + 52.268616201 + ], + [ + 7.6649182, + 52.268263201 + ], + [ + 7.6660569, + 52.267934601 + ], + [ + 7.6672067, + 52.267618501 + ], + [ + 7.6695086, + 52.267012201 + ], + [ + 7.670952, + 52.266676501 + ], + [ + 7.6728541, + 52.266201901 + ], + [ + 7.673967, + 52.265928701 + ], + [ + 7.6762802, + 52.265363301 + ], + [ + 7.6786258, + 52.264750701 + ], + [ + 7.686858848, + 52.262739281 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de52", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.262739281253914,7.686858848446282,52.25972193868788,7.69920346518762", + "point": "52.262739281253914,7.686858848446282", + "startLcPosition": "14", + "impact": { + "lower": "Ibbenb\u00fcren", + "upper": "Ibbenb\u00fcren-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rheine -> Osnabr\u00fcck", + "title": "A30 | Ibbenb\u00fcren-West - Ibbenb\u00fcren", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.262739281253914, + "long": 7.686858848446282 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "A30: Rheine -> Osnabr\u00fcck, zwischen 2.2 km hinter AS Ibbenb\u00fcren-West und 0.9 km vor AS Ibbenb\u00fcren", + "", + "L\u00e4nge: 0.91 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.686858848, + 52.262739281 + ], + [ + 7.699203465, + 52.259721939 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de64", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.25710598453383,7.713425594426919,52.25854191040738,7.74045573701985", + "point": "52.25710598453383,7.713425594426919", + "startLcPosition": "15", + "impact": { + "lower": "Laggenbeck", + "upper": "Ibbenb\u00fcren", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rheine -> Osnabr\u00fcck", + "title": "A30 | Ibbenb\u00fcren - Laggenbeck", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.25710598453383, + "long": 7.713425594426919 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "A30: Rheine -> Osnabr\u00fcck, zwischen 0.1 km hinter AS Ibbenb\u00fcren und 2.3 km vor AS Laggenbeck", + "", + "L\u00e4nge: 1.86 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.713425594, + 52.257105985 + ], + [ + 7.71393, + 52.257065701 + ], + [ + 7.7146748, + 52.257011701 + ], + [ + 7.7153694, + 52.256965901 + ], + [ + 7.716104, + 52.256928501 + ], + [ + 7.7168822, + 52.256895101 + ], + [ + 7.7171011, + 52.256892501 + ], + [ + 7.7174865, + 52.256881001 + ], + [ + 7.7180712, + 52.256862701 + ], + [ + 7.7189834, + 52.256849501 + ], + [ + 7.7199465, + 52.256851601 + ], + [ + 7.720744, + 52.256857001 + ], + [ + 7.7215504, + 52.256874001 + ], + [ + 7.7227157, + 52.256909401 + ], + [ + 7.7239186, + 52.256960601 + ], + [ + 7.7251575, + 52.257025001 + ], + [ + 7.7257794, + 52.257062401 + ], + [ + 7.7264179, + 52.257106701 + ], + [ + 7.7270323, + 52.257151401 + ], + [ + 7.7276579, + 52.257201101 + ], + [ + 7.728236, + 52.257250201 + ], + [ + 7.7286616, + 52.257287301 + ], + [ + 7.7292737, + 52.257340601 + ], + [ + 7.73132, + 52.257539401 + ], + [ + 7.7318457, + 52.257592701 + ], + [ + 7.7341148, + 52.257836601 + ], + [ + 7.7364215, + 52.258094301 + ], + [ + 7.740455737, + 52.25854191 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de56", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.25791320371971,7.70790757468112,52.25983382629185,7.6992764854904205", + "point": "52.25791320371971,7.70790757468112", + "startLcPosition": "15", + "impact": { + "lower": "Ibbenb\u00fcren-West", + "upper": "Ibbenb\u00fcren", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | Ibbenb\u00fcren - Ibbenb\u00fcren-West", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.25791320371971, + "long": 7.70790757468112 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 0.3 km hinter AS Ibbenb\u00fcren und 3.1 km vor AS Ibbenb\u00fcren-West", + "", + "L\u00e4nge: 0.63 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.707907575, + 52.257913204 + ], + [ + 7.7074124, + 52.257987001 + ], + [ + 7.7062698, + 52.258198901 + ], + [ + 7.7050312, + 52.258453501 + ], + [ + 7.7038341, + 52.258720001 + ], + [ + 7.7018765, + 52.259190601 + ], + [ + 7.7014763, + 52.259290301 + ], + [ + 7.699276485, + 52.259833826 + ] + ] + } + }, + { + "identifier": "2026-017643--vi-bs.2026-04-17_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_012.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.26002184884958,7.698515448910903,52.27321312071775,7.651930853461615", + "point": "52.26002184884958,7.698515448910903", + "startLcPosition": "15", + "impact": { + "lower": "H\u00f6rstel", + "upper": "Ibbenb\u00fcren", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | Ibbenb\u00fcren - H\u00f6rstel", + "coordinate": { + "lat": 52.26002184884958, + "long": 7.698515448910903 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 08:00 bis 17:00 Uhr", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 0.9 km hinter AS Ibbenb\u00fcren und 3.9 km vor AS H\u00f6rstel", + "", + "L\u00e4nge: 3.52 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A30 - Vermessungsarbeiten - Wanderbaustelle - AkD 17643" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.698515449, + 52.260021849 + ], + [ + 7.6787149, + 52.264911501 + ], + [ + 7.6763286, + 52.265464901 + ], + [ + 7.674063, + 52.266020601 + ], + [ + 7.6712679, + 52.266713601 + ], + [ + 7.669616, + 52.267154801 + ], + [ + 7.6673063, + 52.267765101 + ], + [ + 7.6661587, + 52.268077801 + ], + [ + 7.6650191, + 52.268404201 + ], + [ + 7.6638501, + 52.268716701 + ], + [ + 7.6621983, + 52.269234001 + ], + [ + 7.6613598, + 52.269500101 + ], + [ + 7.6602045, + 52.269899001 + ], + [ + 7.659876, + 52.270013101 + ], + [ + 7.659648, + 52.270092401 + ], + [ + 7.658327, + 52.270559101 + ], + [ + 7.6568397, + 52.271123801 + ], + [ + 7.6548766, + 52.271920701 + ], + [ + 7.6545116, + 52.272073701 + ], + [ + 7.6537308, + 52.272404901 + ], + [ + 7.6523125, + 52.273032901 + ], + [ + 7.651930853, + 52.273213121 + ] + ] + } + }, + { + "identifier": "2026-017643--vi-bs.2026-04-16_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_012.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.261700400210664,7.69172020480575,52.27321312071775,7.651930853461615", + "point": "52.261700400210664,7.69172020480575", + "startLcPosition": "15", + "impact": { + "lower": "H\u00f6rstel", + "upper": "Ibbenb\u00fcren", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | Ibbenb\u00fcren - H\u00f6rstel", + "coordinate": { + "lat": 52.261700400210664, + "long": 7.69172020480575 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 17:00 Uhr", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 1.4 km hinter AS Ibbenb\u00fcren und 3.9 km vor AS H\u00f6rstel", + "", + "L\u00e4nge: 3.01 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A30 - Vermessungsarbeiten - Wanderbaustelle - AkD 17643" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.691720205, + 52.2617004 + ], + [ + 7.6787149, + 52.264911501 + ], + [ + 7.6763286, + 52.265464901 + ], + [ + 7.674063, + 52.266020601 + ], + [ + 7.6712679, + 52.266713601 + ], + [ + 7.669616, + 52.267154801 + ], + [ + 7.6673063, + 52.267765101 + ], + [ + 7.6661587, + 52.268077801 + ], + [ + 7.6650191, + 52.268404201 + ], + [ + 7.6638501, + 52.268716701 + ], + [ + 7.6621983, + 52.269234001 + ], + [ + 7.6613598, + 52.269500101 + ], + [ + 7.6602045, + 52.269899001 + ], + [ + 7.659876, + 52.270013101 + ], + [ + 7.659648, + 52.270092401 + ], + [ + 7.658327, + 52.270559101 + ], + [ + 7.6568397, + 52.271123801 + ], + [ + 7.6548766, + 52.271920701 + ], + [ + 7.6545116, + 52.272073701 + ], + [ + 7.6537308, + 52.272404901 + ], + [ + 7.6523125, + 52.273032901 + ], + [ + 7.651930853, + 52.273213121 + ] + ] + } + }, + { + "identifier": "2026-017643--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_012.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.26815042373127,7.665905147975689,52.28751004008951,7.588329317513595", + "point": "52.26815042373127,7.665905147975689", + "startLcPosition": "15", + "impact": { + "lower": "Rheine-Kanalhafen", + "upper": "Ibbenb\u00fcren", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | Ibbenb\u00fcren - Rheine-Kanalhafen", + "coordinate": { + "lat": 52.26815042373127, + "long": 7.665905147975689 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 3.3 km hinter AS Ibbenb\u00fcren und 3.2 km vor AS Rheine-Kanalhafen", + "", + "L\u00e4nge: 5.92 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A30 - Vermessungsarbeiten - Wanderbaustelle - AkD 17643" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.665905148, + 52.268150424 + ], + [ + 7.6650191, + 52.268404201 + ], + [ + 7.6638501, + 52.268716701 + ], + [ + 7.6621983, + 52.269234001 + ], + [ + 7.6613598, + 52.269500101 + ], + [ + 7.6602045, + 52.269899001 + ], + [ + 7.659876, + 52.270013101 + ], + [ + 7.659648, + 52.270092401 + ], + [ + 7.658327, + 52.270559101 + ], + [ + 7.6568397, + 52.271123801 + ], + [ + 7.6548766, + 52.271920701 + ], + [ + 7.6545116, + 52.272073701 + ], + [ + 7.6537308, + 52.272404901 + ], + [ + 7.6523125, + 52.273032901 + ], + [ + 7.650458, + 52.273908601 + ], + [ + 7.6463899, + 52.276046601 + ], + [ + 7.6433099, + 52.277744801 + ], + [ + 7.64294, + 52.277953701 + ], + [ + 7.6421757, + 52.278327601 + ], + [ + 7.6402856, + 52.279304601 + ], + [ + 7.6388937, + 52.279991201 + ], + [ + 7.6379541, + 52.280440601 + ], + [ + 7.6367561, + 52.280987001 + ], + [ + 7.6358583, + 52.281370601 + ], + [ + 7.6347299, + 52.281838701 + ], + [ + 7.6337421, + 52.282227901 + ], + [ + 7.6325148, + 52.282690101 + ], + [ + 7.631137, + 52.283178401 + ], + [ + 7.6299196, + 52.283586901 + ], + [ + 7.6286431, + 52.283989501 + ], + [ + 7.6269488, + 52.284485101 + ], + [ + 7.62659, + 52.284582101 + ], + [ + 7.6257865, + 52.284801301 + ], + [ + 7.6247627, + 52.285068201 + ], + [ + 7.6235924, + 52.285354101 + ], + [ + 7.622477, + 52.285608101 + ], + [ + 7.6212814, + 52.285867001 + ], + [ + 7.6201135, + 52.286103001 + ], + [ + 7.618974, + 52.286314801 + ], + [ + 7.6177935, + 52.286519601 + ], + [ + 7.6165968, + 52.286709701 + ], + [ + 7.6154189, + 52.286883201 + ], + [ + 7.6143433, + 52.287026001 + ], + [ + 7.61323, + 52.287160701 + ], + [ + 7.6126751, + 52.287221801 + ], + [ + 7.6120025, + 52.287290901 + ], + [ + 7.6110367, + 52.287386401 + ], + [ + 7.6099107, + 52.287482101 + ], + [ + 7.6089226, + 52.287555501 + ], + [ + 7.6078073, + 52.287627301 + ], + [ + 7.606253, + 52.287703901 + ], + [ + 7.6050911, + 52.287738401 + ], + [ + 7.6047643, + 52.287747401 + ], + [ + 7.6041427, + 52.287758501 + ], + [ + 7.6030292, + 52.287789401 + ], + [ + 7.6018687, + 52.287789601 + ], + [ + 7.6007651, + 52.287782001 + ], + [ + 7.6002262, + 52.287776701 + ], + [ + 7.5986119, + 52.287750801 + ], + [ + 7.5968995, + 52.287704901 + ], + [ + 7.5962924, + 52.287685201 + ], + [ + 7.5955658, + 52.287664901 + ], + [ + 7.5940726, + 52.287622701 + ], + [ + 7.5923286, + 52.287574701 + ], + [ + 7.5893072, + 52.287517301 + ], + [ + 7.5887847, + 52.287512501 + ], + [ + 7.588329318, + 52.28751004 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de68", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.25854191040738,7.74045573701985,52.25900812931244,7.745079585538378", + "point": "52.25854191040738,7.74045573701985", + "startLcPosition": "15", + "impact": { + "lower": "Laggenbeck", + "upper": "Ibbenb\u00fcren", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rheine -> Osnabr\u00fcck", + "title": "A30 | Ibbenb\u00fcren - Laggenbeck", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.25854191040738, + "long": 7.74045573701985 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "A30: Rheine -> Osnabr\u00fcck, zwischen 2.0 km hinter AS Ibbenb\u00fcren und 2.0 km vor AS Laggenbeck", + "", + "L\u00e4nge: 0.32 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.740455737, + 52.25854191 + ], + [ + 7.7415861, + 52.258667301 + ], + [ + 7.745079586, + 52.259008129 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de66", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.25867487742841,7.740416749342652,52.25722744292411,7.713456626634078", + "point": "52.25867487742841,7.740416749342652", + "startLcPosition": "16", + "impact": { + "lower": "Ibbenb\u00fcren", + "upper": "Laggenbeck", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | Laggenbeck - Ibbenb\u00fcren", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.25867487742841, + "long": 7.740416749342652 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 2.3 km hinter AS Laggenbeck und 0.1 km vor AS Ibbenb\u00fcren", + "", + "L\u00e4nge: 1.86 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.740416749, + 52.258674877 + ], + [ + 7.7363436, + 52.258226501 + ], + [ + 7.7360161, + 52.258190501 + ], + [ + 7.73187, + 52.257734101 + ], + [ + 7.731056, + 52.257644501 + ], + [ + 7.7292432, + 52.257445001 + ], + [ + 7.7286334, + 52.257392101 + ], + [ + 7.7282052, + 52.257355001 + ], + [ + 7.7276157, + 52.257305001 + ], + [ + 7.7270176, + 52.257260801 + ], + [ + 7.726369, + 52.257209701 + ], + [ + 7.7257474, + 52.257170301 + ], + [ + 7.7251334, + 52.257131601 + ], + [ + 7.7239012, + 52.257067601 + ], + [ + 7.7227027, + 52.257014701 + ], + [ + 7.7215485, + 52.256978701 + ], + [ + 7.7207502, + 52.256963401 + ], + [ + 7.7199432, + 52.256960001 + ], + [ + 7.7189745, + 52.256956701 + ], + [ + 7.7180757, + 52.256967901 + ], + [ + 7.7175412, + 52.256986201 + ], + [ + 7.7171536, + 52.256997001 + ], + [ + 7.7168836, + 52.257003601 + ], + [ + 7.7161322, + 52.257034901 + ], + [ + 7.7153871, + 52.257073701 + ], + [ + 7.7146753, + 52.257118101 + ], + [ + 7.7139341, + 52.257174601 + ], + [ + 7.713456627, + 52.257227443 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de60", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.25722744292411,7.713456626634078,52.25791320371971,7.70790757468112", + "point": "52.25722744292411,7.713456626634078", + "startLcPosition": "16", + "impact": { + "lower": "Ibbenb\u00fcren-West", + "upper": "Laggenbeck", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | Laggenbeck - Ibbenb\u00fcren-West", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.25722744292411, + "long": 7.713456626634078 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 4.2 km hinter AS Laggenbeck und 3.8 km vor AS Ibbenb\u00fcren-West", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.713456627, + 52.257227443 + ], + [ + 7.7131805, + 52.257258001 + ], + [ + 7.7118662, + 52.257390501 + ], + [ + 7.7113603, + 52.257444901 + ], + [ + 7.710968, + 52.257489001 + ], + [ + 7.7094671, + 52.257678401 + ], + [ + 7.7089216, + 52.257756101 + ], + [ + 7.7081109, + 52.257882901 + ], + [ + 7.707907575, + 52.257913204 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de70", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.25961037298774,7.755297934886924,52.258676464496624,7.740431169024319", + "point": "52.25961037298774,7.755297934886924", + "startLcPosition": "16", + "impact": { + "lower": "Ibbenb\u00fcren", + "upper": "Laggenbeck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Rheine", + "title": "A30 | Laggenbeck - Ibbenb\u00fcren", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.25961037298774, + "long": 7.755297934886924 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "A30: Osnabr\u00fcck -> Rheine, zwischen 1.3 km hinter AS Laggenbeck und 2.0 km vor AS Ibbenb\u00fcren", + "", + "L\u00e4nge: 1.02 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.755297935, + 52.259610373 + ], + [ + 7.7545028, + 52.259617501 + ], + [ + 7.752858, + 52.259598001 + ], + [ + 7.7523941, + 52.259588301 + ], + [ + 7.7514542, + 52.259562801 + ], + [ + 7.7502221, + 52.259508001 + ], + [ + 7.748998, + 52.259438601 + ], + [ + 7.7465515, + 52.259272301 + ], + [ + 7.7442404, + 52.259069901 + ], + [ + 7.7419371, + 52.258842201 + ], + [ + 7.740431169, + 52.258676464 + ] + ] + } + }, + { + "identifier": "2026-017736--vi-bs.2026-04-13_20-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.26051224977204,7.841804893580818,52.26087807372111,7.847787109392866", + "point": "52.26051224977204,7.841804893580818", + "startLcPosition": "16", + "impact": { + "lower": "Lotte", + "upper": "Laggenbeck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Rheine -> Osnabr\u00fcck", + "title": "A30 | Laggenbeck - Lotte", + "coordinate": { + "lat": 52.26051224977204, + "long": 7.841804893580818 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A30: Rheine -> Osnabr\u00fcck, zwischen 4.9 km hinter AS Laggenbeck und 3.3 km vor AS Lotte", + "", + "L\u00e4nge: 0.41 km | Maximale Durchfahrtsbreite: 6.8 m", + "", + "A30 - Arbeiten an Schutzeinrichtungen - AkD 17736" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.841804894, + 52.26051225 + ], + [ + 7.843245, + 52.260642901 + ], + [ + 7.8442312, + 52.260708801 + ], + [ + 7.8456733, + 52.260795501 + ], + [ + 7.8469615, + 52.260851301 + ], + [ + 7.847787109, + 52.260878074 + ] + ] + } + }, + { + "identifier": "2026-017789--vi-bs.2026-04-23_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.22942912690979,8.185011719171488,52.23013257455384,8.181531473848372", + "point": "52.22942912690979,8.185011719171488", + "startLcPosition": "27", + "impact": { + "lower": "Bissendorf", + "upper": "Rottkamp-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bad Oeynhausen -> Osnabr\u00fcck", + "title": "A30 | Rottkamp-S\u00fcd - Bissendorf", + "coordinate": { + "lat": 52.22942912690979, + "long": 8.185011719171488 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 09:00 Uhr", + "", + "A30: Bad Oeynhausen -> Osnabr\u00fcck, zwischen 1.0 km hinter Rottkamp-S\u00fcd und 1.4 km vor AS Bissendorf", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A30 - Beseitigung Unfallfolgen - AkD 17789" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.185011719, + 52.229429127 + ], + [ + 8.1834749, + 52.229766901 + ], + [ + 8.1823872, + 52.229973201 + ], + [ + 8.181531474, + 52.230132575 + ] + ] + } + }, + { + "identifier": "2026-017384--vi-bs.2026-04-22_09-00-00-000.devi-bs.2026-04-22_09-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.19051341798794,8.670503062798097,52.19178650964384,8.674792987734458", + "point": "52.19051341798794,8.670503062798097", + "startLcPosition": "37", + "impact": { + "lower": "L\u00f6hne", + "upper": "Kirchlengern", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bad Oeynhausen", + "title": "A30 | Kirchlengern - L\u00f6hne", + "coordinate": { + "lat": 52.19051341798794, + "long": 8.670503062798097 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 09:00 bis 16:00 Uhr", + "", + "A30: Osnabr\u00fcck -> Bad Oeynhausen, zwischen 0.6 km hinter AS Kirchlengern und 3.3 km vor AS L\u00f6hne", + "", + "L\u00e4nge: 0.32 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A30 - Br\u00fcckenwartung - AkD 17384" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.670503063, + 52.190513418 + ], + [ + 8.6725037, + 52.191051801 + ], + [ + 8.6738448, + 52.191458001 + ], + [ + 8.674792988, + 52.19178651 + ] + ] + } + }, + { + "identifier": "2026-017384--vi-bs.2026-04-22_09-00-00-000.devi-bs.2026-04-22_09-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.19244624582006,8.676288675017494,52.19106569958404,8.672104055211499", + "point": "52.19244624582006,8.676288675017494", + "startLcPosition": "38", + "impact": { + "lower": "Kirchlengern", + "upper": "L\u00f6hne", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bad Oeynhausen -> Osnabr\u00fcck", + "title": "A30 | L\u00f6hne - Kirchlengern", + "coordinate": { + "lat": 52.19244624582006, + "long": 8.676288675017494 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 09:00 bis 16:00 Uhr", + "", + "A30: Bad Oeynhausen -> Osnabr\u00fcck, zwischen 3.2 km hinter AS L\u00f6hne und 0.8 km vor AS Kirchlengern", + "", + "L\u00e4nge: 0.32 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A30 - Br\u00fcckenwartung - AkD 17384" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.676288675, + 52.192446246 + ], + [ + 8.6738769, + 52.191639801 + ], + [ + 8.672528, + 52.191186401 + ], + [ + 8.672104055, + 52.1910657 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de74", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.25728211354689,7.709207602580034,52.2574511056072,7.709804210302702", + "point": "52.25728211354689,7.709207602580034", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Ibbenb\u00fcren (aus Richtung Ibbenb\u00fcren-West)", + "title": "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.25728211354689, + "long": 7.709207602580034 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "Auffahrt auf die A30: AS Ibbenb\u00fcren (aus Richtung Ibbenb\u00fcren-West)", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.709207603, + 52.257282114 + ], + [ + 7.7092752, + 52.257332401 + ], + [ + 7.7094438, + 52.257401201 + ], + [ + 7.7096457, + 52.257437401 + ], + [ + 7.70980421, + 52.257451106 + ] + ] + } + }, + { + "identifier": "2024-018700--vi-bs.2026-01-30_22-30-00-000.devi-zus.2025-05-05_19-00-00-000.f.de72", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.257650921310216,7.707893696894775,52.25729283331042,7.7085251031583875", + "point": "52.257650921310216,7.707893696894775", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Ibbenb\u00fcren (aus Richtung Ibbenb\u00fcren-West)", + "title": "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700", + "startTimestamp": "2026-01-30T22:30:00+01:00", + "coordinate": { + "lat": 52.257650921310216, + "long": 7.707893696894775 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.01.26 um 22:30 Uhr", + "Ende: 06.08.26 um 19:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 28.06.27)", + "", + "Abfahrt von der A30: AS Ibbenb\u00fcren (aus Richtung Ibbenb\u00fcren-West)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A30 - grundhafte Fahrbahninstandsetzung - AlD 18700" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.707893697, + 52.257650921 + ], + [ + 7.7081922, + 52.257553901 + ], + [ + 7.7083883, + 52.257398101 + ], + [ + 7.708525103, + 52.257292833 + ] + ] + } + } + ] + }, + "A31": { + "roadworks": [ + { + "identifier": "2026-016931--vi-bs.2026-04-08_09-00-00-000.devi-zus.2026-04-08_09-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.556175989866546,6.926421885378545,52.25268859435279,7.168500636815467", + "point": "51.556175989866546,6.926421885378545", + "startLcPosition": "0", + "impact": { + "lower": "Gut Friedrichstal", + "upper": "Bottrop", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> Lingen (Ems)", + "title": "A31 | Bottrop - Gut Friedrichstal", + "coordinate": { + "lat": 51.556175989866546, + "long": 6.926421885378545 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:00 Uhr", + "10.04.26 von 09:00 bis 16:00 Uhr", + "11.04.26 von 09:00 bis 16:00 Uhr", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "17.04.26 von 09:00 bis 16:00 Uhr", + "18.04.26 von 09:00 bis 16:00 Uhr", + "20.04.26 von 09:00 bis 16:00 Uhr", + "21.04.26 von 09:00 bis 16:00 Uhr", + "22.04.26 von 09:00 bis 16:00 Uhr", + "23.04.26 von 09:00 bis 16:00 Uhr", + "24.04.26 von 09:00 bis 13:00 Uhr", + "", + "A31: Oberhausen -> Lingen (Ems), zwischen 0.1 km hinter AD Bottrop und 3.8 km vor Gut Friedrichstal", + "", + "L\u00e4nge: 81.24 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A31 - Reinigungsarbeiten - Wanderbaustelle - AkD 16931" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.926421885, + 51.55617599 + ], + [ + 6.9267546, + 51.557075601 + ], + [ + 6.9269399, + 51.557628201 + ], + [ + 6.9270645, + 51.557999901 + ], + [ + 6.9272872, + 51.558762801 + ], + [ + 6.9274457, + 51.559675801 + ], + [ + 6.9275389, + 51.560177401 + ], + [ + 6.9276734, + 51.560654801 + ], + [ + 6.928981, + 51.564897601 + ], + [ + 6.9290743, + 51.565189501 + ], + [ + 6.9296106, + 51.566671401 + ], + [ + 6.930233, + 51.568206301 + ], + [ + 6.9309116, + 51.569701501 + ], + [ + 6.9316594, + 51.571178601 + ], + [ + 6.9334018, + 51.574296101 + ], + [ + 6.9359935, + 51.579051701 + ], + [ + 6.9370351, + 51.581182001 + ], + [ + 6.9379818, + 51.583344401 + ], + [ + 6.9383449, + 51.584289101 + ], + [ + 6.938791, + 51.585483301 + ], + [ + 6.9388712, + 51.585705701 + ], + [ + 6.9389512, + 51.585927601 + ], + [ + 6.9393716, + 51.587253701 + ], + [ + 6.9394444, + 51.587528701 + ], + [ + 6.9395802, + 51.587939401 + ], + [ + 6.9399299, + 51.589237301 + ], + [ + 6.9401332, + 51.590120101 + ], + [ + 6.9401826, + 51.590291201 + ], + [ + 6.9402834, + 51.590711601 + ], + [ + 6.9409009, + 51.594255401 + ], + [ + 6.9410276, + 51.595382701 + ], + [ + 6.9410464, + 51.595539001 + ], + [ + 6.9412186, + 51.597818801 + ], + [ + 6.941299, + 51.599945001 + ], + [ + 6.9412665, + 51.600997201 + ], + [ + 6.9412596, + 51.601223801 + ], + [ + 6.9412334, + 51.602072101 + ], + [ + 6.941071, + 51.604338401 + ], + [ + 6.9409963, + 51.604990101 + ], + [ + 6.9409814, + 51.605120201 + ], + [ + 6.9408705, + 51.605939901 + ], + [ + 6.9405903, + 51.607658601 + ], + [ + 6.9402529, + 51.609196701 + ], + [ + 6.939748, + 51.611210201 + ], + [ + 6.9397108, + 51.611355401 + ], + [ + 6.9386591, + 51.614834401 + ], + [ + 6.9374836, + 51.618041601 + ], + [ + 6.9372458, + 51.618668401 + ], + [ + 6.9368765, + 51.619597001 + ], + [ + 6.9362213, + 51.621383201 + ], + [ + 6.9359292, + 51.622148301 + ], + [ + 6.9358713, + 51.622300001 + ], + [ + 6.9354211, + 51.623479301 + ], + [ + 6.9349515, + 51.624824801 + ], + [ + 6.9343544, + 51.626730201 + ], + [ + 6.9340297, + 51.628130301 + ], + [ + 6.9338564, + 51.628907401 + ], + [ + 6.933733, + 51.629496701 + ], + [ + 6.93372, + 51.629571501 + ], + [ + 6.9335684, + 51.630456301 + ], + [ + 6.9335038, + 51.630854301 + ], + [ + 6.9333795, + 51.631966101 + ], + [ + 6.9333203, + 51.632664501 + ], + [ + 6.933243, + 51.634381801 + ], + [ + 6.9331816, + 51.636221001 + ], + [ + 6.9331892, + 51.637983601 + ], + [ + 6.9331822, + 51.638212201 + ], + [ + 6.9331415, + 51.640534001 + ], + [ + 6.9330234, + 51.642431301 + ], + [ + 6.932924, + 51.643342601 + ], + [ + 6.9329058, + 51.643509201 + ], + [ + 6.9328647, + 51.643886401 + ], + [ + 6.9326367, + 51.645336401 + ], + [ + 6.9324513, + 51.646181401 + ], + [ + 6.9322559, + 51.647022601 + ], + [ + 6.9319872, + 51.648048201 + ], + [ + 6.9317592, + 51.648793301 + ], + [ + 6.9315842, + 51.649407101 + ], + [ + 6.9313725, + 51.649945101 + ], + [ + 6.9313045, + 51.650125801 + ], + [ + 6.9312021, + 51.650397801 + ], + [ + 6.9304992, + 51.652127101 + ], + [ + 6.9299046, + 51.653474601 + ], + [ + 6.9298027, + 51.653659301 + ], + [ + 6.9296749, + 51.653890801 + ], + [ + 6.9294001, + 51.654388801 + ], + [ + 6.9288388, + 51.655394301 + ], + [ + 6.9282026, + 51.656463501 + ], + [ + 6.9278936, + 51.656961901 + ], + [ + 6.9274324, + 51.657666201 + ], + [ + 6.9267864, + 51.658553301 + ], + [ + 6.9262452, + 51.659289001 + ], + [ + 6.9256608, + 51.660072901 + ], + [ + 6.9252741, + 51.660582001 + ], + [ + 6.9232871, + 51.663066701 + ], + [ + 6.9230328, + 51.663377401 + ], + [ + 6.9219013, + 51.664835901 + ], + [ + 6.921175, + 51.665825901 + ], + [ + 6.9205877, + 51.666666101 + ], + [ + 6.9198924, + 51.667863801 + ], + [ + 6.9192857, + 51.669078101 + ], + [ + 6.9189557, + 51.669866101 + ], + [ + 6.9186411, + 51.670783101 + ], + [ + 6.9183485, + 51.671839701 + ], + [ + 6.9181818, + 51.672654901 + ], + [ + 6.9180966, + 51.673221201 + ], + [ + 6.9180142, + 51.674050201 + ], + [ + 6.9180049, + 51.674221601 + ], + [ + 6.9179972, + 51.674381401 + ], + [ + 6.9179901, + 51.674469301 + ], + [ + 6.9180118, + 51.676058801 + ], + [ + 6.9180176, + 51.676186501 + ], + [ + 6.9181556, + 51.677290201 + ], + [ + 6.9182895, + 51.677988301 + ], + [ + 6.9184122, + 51.678537701 + ], + [ + 6.9185468, + 51.679011901 + ], + [ + 6.9186461, + 51.679363501 + ], + [ + 6.9187932, + 51.679815201 + ], + [ + 6.9188839, + 51.680062101 + ], + [ + 6.9190058, + 51.680410001 + ], + [ + 6.9193203, + 51.681132101 + ], + [ + 6.9193573, + 51.681231201 + ], + [ + 6.9195368, + 51.681680301 + ], + [ + 6.9198506, + 51.682425401 + ], + [ + 6.9202532, + 51.683273101 + ], + [ + 6.9207965, + 51.684420001 + ], + [ + 6.9213333, + 51.685569501 + ], + [ + 6.9220423, + 51.687079701 + ], + [ + 6.9222708, + 51.687604601 + ], + [ + 6.9228109, + 51.688933501 + ], + [ + 6.9232167, + 51.690064901 + ], + [ + 6.9235221, + 51.691086101 + ], + [ + 6.9238948, + 51.692502801 + ], + [ + 6.9240909, + 51.693342001 + ], + [ + 6.9243469, + 51.694597401 + ], + [ + 6.9247168, + 51.696948601 + ], + [ + 6.9249753, + 51.698880101 + ], + [ + 6.9250748, + 51.699624301 + ], + [ + 6.9252774, + 51.700979201 + ], + [ + 6.9253379, + 51.701325001 + ], + [ + 6.925516, + 51.702343401 + ], + [ + 6.9256288, + 51.702886801 + ], + [ + 6.9258324, + 51.703781901 + ], + [ + 6.9258987, + 51.704054201 + ], + [ + 6.9261434, + 51.704964701 + ], + [ + 6.9263719, + 51.705705001 + ], + [ + 6.9266279, + 51.706524501 + ], + [ + 6.9269434, + 51.707371601 + ], + [ + 6.9272042, + 51.708037501 + ], + [ + 6.9275761, + 51.708912901 + ], + [ + 6.9279286, + 51.709700701 + ], + [ + 6.9283277, + 51.710533001 + ], + [ + 6.9287517, + 51.711343001 + ], + [ + 6.9292137, + 51.712164901 + ], + [ + 6.9296048, + 51.712841801 + ], + [ + 6.930013, + 51.713501501 + ], + [ + 6.9303588, + 51.714033101 + ], + [ + 6.9307129, + 51.714560601 + ], + [ + 6.9314479, + 51.715603601 + ], + [ + 6.9326036, + 51.717117001 + ], + [ + 6.9329683, + 51.717559301 + ], + [ + 6.9333471, + 51.718014201 + ], + [ + 6.9341853, + 51.718975501 + ], + [ + 6.9354158, + 51.720295101 + ], + [ + 6.9363254, + 51.721201501 + ], + [ + 6.936946, + 51.721796101 + ], + [ + 6.9375886, + 51.722388401 + ], + [ + 6.9383697, + 51.723087301 + ], + [ + 6.93965, + 51.724170101 + ], + [ + 6.9408591, + 51.725135301 + ], + [ + 6.9420375, + 51.726032201 + ], + [ + 6.9432198, + 51.726905101 + ], + [ + 6.9449317, + 51.728144201 + ], + [ + 6.946681, + 51.729381401 + ], + [ + 6.9480778, + 51.730390601 + ], + [ + 6.9493766, + 51.731358401 + ], + [ + 6.9508407, + 51.732495801 + ], + [ + 6.9519887, + 51.733442401 + ], + [ + 6.9526858, + 51.734037301 + ], + [ + 6.9535299, + 51.734800301 + ], + [ + 6.9542534, + 51.735468201 + ], + [ + 6.9552759, + 51.736467301 + ], + [ + 6.956319, + 51.737558401 + ], + [ + 6.95661, + 51.737875601 + ], + [ + 6.9575024, + 51.738880301 + ], + [ + 6.9579672, + 51.739446101 + ], + [ + 6.9582687, + 51.739813801 + ], + [ + 6.9594321, + 51.741290001 + ], + [ + 6.9601992, + 51.742368501 + ], + [ + 6.960615, + 51.742990201 + ], + [ + 6.9611308, + 51.743786101 + ], + [ + 6.9616269, + 51.744606501 + ], + [ + 6.9620858, + 51.745406001 + ], + [ + 6.9624835, + 51.746143601 + ], + [ + 6.962854, + 51.746866701 + ], + [ + 6.9632155, + 51.747631101 + ], + [ + 6.9636782, + 51.748672301 + ], + [ + 6.9640356, + 51.749562501 + ], + [ + 6.9644426, + 51.750680801 + ], + [ + 6.9647555, + 51.751642901 + ], + [ + 6.9650414, + 51.752595701 + ], + [ + 6.9654073, + 51.754123301 + ], + [ + 6.9654858, + 51.754478701 + ], + [ + 6.9655633, + 51.754894501 + ], + [ + 6.9656948, + 51.755684801 + ], + [ + 6.9658572, + 51.756862601 + ], + [ + 6.965995, + 51.758222801 + ], + [ + 6.9659939, + 51.758497701 + ], + [ + 6.9660104, + 51.758771801 + ], + [ + 6.9660269, + 51.759113601 + ], + [ + 6.9660559, + 51.760706401 + ], + [ + 6.9660255, + 51.762263001 + ], + [ + 6.9659903, + 51.763066401 + ], + [ + 6.9659525, + 51.763844401 + ], + [ + 6.9658739, + 51.765416501 + ], + [ + 6.9658416, + 51.766007701 + ], + [ + 6.9658137, + 51.766589401 + ], + [ + 6.9657342, + 51.768359901 + ], + [ + 6.9657151, + 51.769539701 + ], + [ + 6.9657251, + 51.770718301 + ], + [ + 6.965786, + 51.772218301 + ], + [ + 6.9658451, + 51.773023201 + ], + [ + 6.9659121, + 51.773810501 + ], + [ + 6.9661094, + 51.775348001 + ], + [ + 6.9663525, + 51.776882901 + ], + [ + 6.9665929, + 51.778106601 + ], + [ + 6.9666277, + 51.778259101 + ], + [ + 6.9666545, + 51.778376701 + ], + [ + 6.9667467, + 51.778780801 + ], + [ + 6.9668849, + 51.779296301 + ], + [ + 6.9671098, + 51.780241201 + ], + [ + 6.9673439, + 51.781075901 + ], + [ + 6.9675258, + 51.781664501 + ], + [ + 6.9680755, + 51.783332101 + ], + [ + 6.9685768, + 51.784674801 + ], + [ + 6.9689639, + 51.785623201 + ], + [ + 6.9691047, + 51.785951201 + ], + [ + 6.9694503, + 51.786745101 + ], + [ + 6.9699813, + 51.787885101 + ], + [ + 6.9705497, + 51.789019401 + ], + [ + 6.9712065, + 51.790249001 + ], + [ + 6.9715511, + 51.790859101 + ], + [ + 6.9718806, + 51.791426401 + ], + [ + 6.9726362, + 51.792654901 + ], + [ + 6.9730303, + 51.793283301 + ], + [ + 6.9734186, + 51.793853701 + ], + [ + 6.9740392, + 51.794775401 + ], + [ + 6.9746766, + 51.795675001 + ], + [ + 6.9754623, + 51.796752001 + ], + [ + 6.976271, + 51.797817801 + ], + [ + 6.9775451, + 51.799454501 + ], + [ + 6.978834, + 51.801083901 + ], + [ + 6.9814426, + 51.804340301 + ], + [ + 6.9824211, + 51.805580401 + ], + [ + 6.9829596, + 51.806209601 + ], + [ + 6.9839249, + 51.807491501 + ], + [ + 6.9859796, + 51.810082301 + ], + [ + 6.9870725, + 51.811431501 + ], + [ + 6.9887203, + 51.813511801 + ], + [ + 6.9918032, + 51.817384701 + ], + [ + 6.9969352, + 51.823966701 + ], + [ + 6.9979158, + 51.825337401 + ], + [ + 6.99884, + 51.826733701 + ], + [ + 6.9995103, + 51.827788901 + ], + [ + 7.0001695, + 51.828884101 + ], + [ + 7.0007519, + 51.829903401 + ], + [ + 7.001324, + 51.830964401 + ], + [ + 7.0022607, + 51.832856201 + ], + [ + 7.0027046, + 51.833801201 + ], + [ + 7.0033152, + 51.835291101 + ], + [ + 7.0038691, + 51.836752101 + ], + [ + 7.0045248, + 51.838742101 + ], + [ + 7.0048026, + 51.839689701 + ], + [ + 7.005075, + 51.840705201 + ], + [ + 7.0055004, + 51.842658201 + ], + [ + 7.0057807, + 51.844146401 + ], + [ + 7.005969, + 51.845478401 + ], + [ + 7.0061665, + 51.847562101 + ], + [ + 7.0062706, + 51.848999901 + ], + [ + 7.0063489, + 51.850771601 + ], + [ + 7.0063606, + 51.851401901 + ], + [ + 7.0063873, + 51.852574901 + ], + [ + 7.0064071, + 51.853676201 + ], + [ + 7.0064111, + 51.854133001 + ], + [ + 7.0064469, + 51.855779801 + ], + [ + 7.0064882, + 51.857127801 + ], + [ + 7.0065109, + 51.857719201 + ], + [ + 7.0065133, + 51.857870501 + ], + [ + 7.006524, + 51.858091801 + ], + [ + 7.0065722, + 51.859089901 + ], + [ + 7.0066556, + 51.860287201 + ], + [ + 7.0068684, + 51.862145901 + ], + [ + 7.0071816, + 51.864171901 + ], + [ + 7.0074546, + 51.865518101 + ], + [ + 7.007863, + 51.867227701 + ], + [ + 7.0083313, + 51.868882901 + ], + [ + 7.0087744, + 51.870241501 + ], + [ + 7.009259, + 51.871568301 + ], + [ + 7.0098599, + 51.873068801 + ], + [ + 7.0103404, + 51.874162401 + ], + [ + 7.0107762, + 51.875097601 + ], + [ + 7.0112334, + 51.876020801 + ], + [ + 7.0121662, + 51.877765201 + ], + [ + 7.0128707, + 51.878982501 + ], + [ + 7.0133296, + 51.879748101 + ], + [ + 7.0144317, + 51.881497701 + ], + [ + 7.0155398, + 51.883204601 + ], + [ + 7.0161318, + 51.884107201 + ], + [ + 7.0166863, + 51.884941401 + ], + [ + 7.0177778, + 51.886608601 + ], + [ + 7.0180202, + 51.886983201 + ], + [ + 7.0181658, + 51.887206301 + ], + [ + 7.0183936, + 51.887556401 + ], + [ + 7.0186564, + 51.887970001 + ], + [ + 7.0189433, + 51.888417201 + ], + [ + 7.0189872, + 51.888487501 + ], + [ + 7.0192431, + 51.888909201 + ], + [ + 7.0195068, + 51.889322301 + ], + [ + 7.0198002, + 51.889789801 + ], + [ + 7.0200882, + 51.890260501 + ], + [ + 7.0203389, + 51.890683101 + ], + [ + 7.0205454, + 51.891039001 + ], + [ + 7.0208061, + 51.891498601 + ], + [ + 7.0209402, + 51.891749401 + ], + [ + 7.0210501, + 51.891950701 + ], + [ + 7.0214, + 51.892582601 + ], + [ + 7.021537, + 51.892838801 + ], + [ + 7.0217831, + 51.893307901 + ], + [ + 7.0220074, + 51.893753101 + ], + [ + 7.0222543, + 51.894248501 + ], + [ + 7.022802, + 51.895395301 + ], + [ + 7.0232549, + 51.896438901 + ], + [ + 7.0234625, + 51.896940901 + ], + [ + 7.0238485, + 51.897899401 + ], + [ + 7.0242262, + 51.898948301 + ], + [ + 7.0246617, + 51.900218901 + ], + [ + 7.0254158, + 51.902667501 + ], + [ + 7.0260665, + 51.905037401 + ], + [ + 7.0274222, + 51.909785201 + ], + [ + 7.027973, + 51.911469201 + ], + [ + 7.0285406, + 51.913135101 + ], + [ + 7.0292249, + 51.914823501 + ], + [ + 7.0299615, + 51.916521001 + ], + [ + 7.0305958, + 51.917822001 + ], + [ + 7.0312888, + 51.919147101 + ], + [ + 7.0320454, + 51.920480701 + ], + [ + 7.0328384, + 51.921759901 + ], + [ + 7.0341509, + 51.923767101 + ], + [ + 7.035514, + 51.925733501 + ], + [ + 7.03764, + 51.928657701 + ], + [ + 7.038542, + 51.929881901 + ], + [ + 7.0393414, + 51.930977001 + ], + [ + 7.0397324, + 51.931546501 + ], + [ + 7.0399928, + 51.931922901 + ], + [ + 7.0403891, + 51.932526101 + ], + [ + 7.0409011, + 51.933355401 + ], + [ + 7.0410726, + 51.933636901 + ], + [ + 7.041758, + 51.934848501 + ], + [ + 7.0424908, + 51.936189201 + ], + [ + 7.0430613, + 51.937425401 + ], + [ + 7.0430881, + 51.937490101 + ], + [ + 7.0431695, + 51.937675701 + ], + [ + 7.0434266, + 51.938279301 + ], + [ + 7.0438611, + 51.939411601 + ], + [ + 7.0442659, + 51.940589801 + ], + [ + 7.044451, + 51.941153501 + ], + [ + 7.044619, + 51.941732001 + ], + [ + 7.0448408, + 51.942595201 + ], + [ + 7.0450487, + 51.943474101 + ], + [ + 7.0452305, + 51.944345201 + ], + [ + 7.0452591, + 51.944502601 + ], + [ + 7.0454028, + 51.945305201 + ], + [ + 7.0455301, + 51.946119301 + ], + [ + 7.0456462, + 51.946982401 + ], + [ + 7.045867, + 51.948771301 + ], + [ + 7.0461485, + 51.951730601 + ], + [ + 7.0463726, + 51.954678501 + ], + [ + 7.0467353, + 51.959146501 + ], + [ + 7.047069, + 51.963368801 + ], + [ + 7.0472209, + 51.965177101 + ], + [ + 7.04746, + 51.967611701 + ], + [ + 7.0476313, + 51.968811601 + ], + [ + 7.047844, + 51.969884901 + ], + [ + 7.0480676, + 51.970924401 + ], + [ + 7.0483462, + 51.972047801 + ], + [ + 7.0492264, + 51.975276201 + ], + [ + 7.0496496, + 51.976959501 + ], + [ + 7.0499835, + 51.978645801 + ], + [ + 7.0501143, + 51.979487701 + ], + [ + 7.0502198, + 51.980337701 + ], + [ + 7.0503501, + 51.982034001 + ], + [ + 7.050378, + 51.982882701 + ], + [ + 7.0503787, + 51.983728101 + ], + [ + 7.050351, + 51.984574001 + ], + [ + 7.0503067, + 51.985426001 + ], + [ + 7.0499331, + 51.989331001 + ], + [ + 7.0498494, + 51.990297101 + ], + [ + 7.0497733, + 51.991266201 + ], + [ + 7.0497301, + 51.992242001 + ], + [ + 7.0497488, + 51.993209701 + ], + [ + 7.04975, + 51.993895201 + ], + [ + 7.0497668, + 51.994580601 + ], + [ + 7.0497997, + 51.995953501 + ], + [ + 7.0499235, + 51.997333701 + ], + [ + 7.0500973, + 51.998709201 + ], + [ + 7.0502735, + 51.999777701 + ], + [ + 7.050483, + 52.000843101 + ], + [ + 7.0509993, + 52.003037001 + ], + [ + 7.0513051, + 52.004139401 + ], + [ + 7.0513802, + 52.004397401 + ], + [ + 7.051671, + 52.005298601 + ], + [ + 7.0519492, + 52.006085901 + ], + [ + 7.0525012, + 52.007537501 + ], + [ + 7.0529513, + 52.008629501 + ], + [ + 7.0534293, + 52.009673501 + ], + [ + 7.0545051, + 52.011784301 + ], + [ + 7.0567285, + 52.016019001 + ], + [ + 7.0577156, + 52.017965701 + ], + [ + 7.0581869, + 52.018949501 + ], + [ + 7.0586364, + 52.019936701 + ], + [ + 7.0594463, + 52.021929201 + ], + [ + 7.0601303, + 52.023958501 + ], + [ + 7.060818, + 52.026313201 + ], + [ + 7.0610682, + 52.027515901 + ], + [ + 7.0613057, + 52.028707801 + ], + [ + 7.0615246, + 52.030016301 + ], + [ + 7.0616681, + 52.031332501 + ], + [ + 7.0618847, + 52.033940901 + ], + [ + 7.0618914, + 52.036515901 + ], + [ + 7.0618557, + 52.037804001 + ], + [ + 7.061813, + 52.039092101 + ], + [ + 7.0617298, + 52.041196801 + ], + [ + 7.0616972, + 52.043335401 + ], + [ + 7.0617107, + 52.044503201 + ], + [ + 7.061761, + 52.045669601 + ], + [ + 7.0618274, + 52.046859201 + ], + [ + 7.0618453, + 52.047054901 + ], + [ + 7.0619089, + 52.047564201 + ], + [ + 7.0621461, + 52.049235101 + ], + [ + 7.0624094, + 52.050782901 + ], + [ + 7.0624548, + 52.051003101 + ], + [ + 7.062592, + 52.051604801 + ], + [ + 7.0628538, + 52.052652601 + ], + [ + 7.0629252, + 52.052949201 + ], + [ + 7.0629948, + 52.053219101 + ], + [ + 7.0631093, + 52.053657401 + ], + [ + 7.0633203, + 52.054320401 + ], + [ + 7.0634748, + 52.054820201 + ], + [ + 7.0637012, + 52.055503201 + ], + [ + 7.0641564, + 52.056766501 + ], + [ + 7.0642707, + 52.057059201 + ], + [ + 7.0647314, + 52.058214201 + ], + [ + 7.0655276, + 52.059996201 + ], + [ + 7.0664141, + 52.061757601 + ], + [ + 7.0674231, + 52.063552201 + ], + [ + 7.0685017, + 52.065324101 + ], + [ + 7.0708459, + 52.068823601 + ], + [ + 7.0737164, + 52.072794301 + ], + [ + 7.0766468, + 52.076755301 + ], + [ + 7.077204, + 52.077539201 + ], + [ + 7.0777431, + 52.078329201 + ], + [ + 7.078478, + 52.079445901 + ], + [ + 7.0790286, + 52.080298901 + ], + [ + 7.0797614, + 52.081500301 + ], + [ + 7.0803369, + 52.082487201 + ], + [ + 7.0808739, + 52.083472601 + ], + [ + 7.0815296, + 52.084757001 + ], + [ + 7.0818889, + 52.085454501 + ], + [ + 7.0822589, + 52.086281401 + ], + [ + 7.082429, + 52.086741901 + ], + [ + 7.0829698, + 52.088022901 + ], + [ + 7.0834609, + 52.089316801 + ], + [ + 7.0839118, + 52.090619801 + ], + [ + 7.0843063, + 52.091888801 + ], + [ + 7.0846585, + 52.093164501 + ], + [ + 7.0849662, + 52.094443701 + ], + [ + 7.0852304, + 52.095727001 + ], + [ + 7.0854083, + 52.096703301 + ], + [ + 7.0855582, + 52.097681001 + ], + [ + 7.0856789, + 52.098659201 + ], + [ + 7.085779, + 52.099637701 + ], + [ + 7.085811, + 52.100045001 + ], + [ + 7.0858549, + 52.100604801 + ], + [ + 7.0859116, + 52.101572201 + ], + [ + 7.0859286, + 52.101964701 + ], + [ + 7.0859547, + 52.102566901 + ], + [ + 7.0859812, + 52.103561701 + ], + [ + 7.0859992, + 52.106105601 + ], + [ + 7.0860117, + 52.109423501 + ], + [ + 7.0861117, + 52.112309401 + ], + [ + 7.0863213, + 52.115195001 + ], + [ + 7.0864578, + 52.116540601 + ], + [ + 7.0865904, + 52.117985101 + ], + [ + 7.0866895, + 52.118597101 + ], + [ + 7.0867399, + 52.118891901 + ], + [ + 7.0868866, + 52.120089601 + ], + [ + 7.0869195, + 52.120359101 + ], + [ + 7.0870425, + 52.121091601 + ], + [ + 7.0871552, + 52.121757501 + ], + [ + 7.0872658, + 52.122404701 + ], + [ + 7.087318, + 52.122691001 + ], + [ + 7.0874288, + 52.123300001 + ], + [ + 7.0877046, + 52.124697701 + ], + [ + 7.0881722, + 52.126690501 + ], + [ + 7.0883881, + 52.127716601 + ], + [ + 7.0885827, + 52.128744901 + ], + [ + 7.08889, + 52.130477501 + ], + [ + 7.0891616, + 52.132210501 + ], + [ + 7.0894031, + 52.133945901 + ], + [ + 7.0896005, + 52.135686101 + ], + [ + 7.0898193, + 52.138116101 + ], + [ + 7.0898316, + 52.138305001 + ], + [ + 7.089848, + 52.138555601 + ], + [ + 7.0898985, + 52.139330901 + ], + [ + 7.0899641, + 52.140546501 + ], + [ + 7.0900256, + 52.141959001 + ], + [ + 7.0901256, + 52.143371001 + ], + [ + 7.0902731, + 52.144781201 + ], + [ + 7.0904681, + 52.146190401 + ], + [ + 7.0905717, + 52.146819801 + ], + [ + 7.0906874, + 52.147448001 + ], + [ + 7.0909454, + 52.148702901 + ], + [ + 7.0912396, + 52.149950201 + ], + [ + 7.0915668, + 52.151195801 + ], + [ + 7.0919528, + 52.152470701 + ], + [ + 7.0923722, + 52.153740801 + ], + [ + 7.0928332, + 52.155003301 + ], + [ + 7.0933276, + 52.156259501 + ], + [ + 7.0938955, + 52.157581101 + ], + [ + 7.0945086, + 52.158893001 + ], + [ + 7.0951613, + 52.160192001 + ], + [ + 7.0958392, + 52.161484501 + ], + [ + 7.0970129, + 52.163624001 + ], + [ + 7.0982521, + 52.165747301 + ], + [ + 7.0991746, + 52.167266401 + ], + [ + 7.1001278, + 52.168778001 + ], + [ + 7.1011087, + 52.170283201 + ], + [ + 7.102113, + 52.171780201 + ], + [ + 7.1030537, + 52.173119801 + ], + [ + 7.1040399, + 52.174497801 + ], + [ + 7.1060542, + 52.177183201 + ], + [ + 7.1079822, + 52.179784101 + ], + [ + 7.109813, + 52.182394801 + ], + [ + 7.1101207, + 52.182840001 + ], + [ + 7.1104262, + 52.183286901 + ], + [ + 7.1107301, + 52.183731801 + ], + [ + 7.1110394, + 52.184188401 + ], + [ + 7.1112376, + 52.184481501 + ], + [ + 7.1114415, + 52.184789501 + ], + [ + 7.111738, + 52.185234901 + ], + [ + 7.1119363, + 52.185534201 + ], + [ + 7.1121338, + 52.185835601 + ], + [ + 7.11233, + 52.186135101 + ], + [ + 7.112522, + 52.186431201 + ], + [ + 7.1127197, + 52.186738401 + ], + [ + 7.1129103, + 52.187034001 + ], + [ + 7.1131344, + 52.187384601 + ], + [ + 7.1133888, + 52.187785501 + ], + [ + 7.1135811, + 52.188091701 + ], + [ + 7.1137714, + 52.188394001 + ], + [ + 7.1139603, + 52.188697301 + ], + [ + 7.1141465, + 52.188998101 + ], + [ + 7.1143348, + 52.189303401 + ], + [ + 7.1145236, + 52.189610101 + ], + [ + 7.1147015, + 52.189903301 + ], + [ + 7.1148916, + 52.190213601 + ], + [ + 7.1150719, + 52.190512601 + ], + [ + 7.1152549, + 52.190814701 + ], + [ + 7.1154356, + 52.191115501 + ], + [ + 7.1156186, + 52.191424301 + ], + [ + 7.1157979, + 52.191726701 + ], + [ + 7.116082, + 52.192213201 + ], + [ + 7.1163206, + 52.192621001 + ], + [ + 7.1164983, + 52.192925501 + ], + [ + 7.1166734, + 52.193232001 + ], + [ + 7.1168474, + 52.193535701 + ], + [ + 7.1171074, + 52.193997101 + ], + [ + 7.1172786, + 52.194299801 + ], + [ + 7.1174497, + 52.194605901 + ], + [ + 7.1176211, + 52.194913001 + ], + [ + 7.117791, + 52.195217801 + ], + [ + 7.1179556, + 52.195523201 + ], + [ + 7.1181271, + 52.195830701 + ], + [ + 7.118295, + 52.196136401 + ], + [ + 7.1184642, + 52.196449101 + ], + [ + 7.1186276, + 52.196752601 + ], + [ + 7.1187538, + 52.196979401 + ], + [ + 7.1198067, + 52.198934801 + ], + [ + 7.1216936, + 52.202396201 + ], + [ + 7.1221219, + 52.203156701 + ], + [ + 7.1232134, + 52.205053201 + ], + [ + 7.1236227, + 52.205722601 + ], + [ + 7.1247483, + 52.207473401 + ], + [ + 7.1258346, + 52.209097701 + ], + [ + 7.1278029, + 52.211835001 + ], + [ + 7.1292107, + 52.213647001 + ], + [ + 7.130679, + 52.215439001 + ], + [ + 7.1321006, + 52.217057401 + ], + [ + 7.133541, + 52.218663801 + ], + [ + 7.1361314, + 52.221468601 + ], + [ + 7.136489, + 52.221855801 + ], + [ + 7.1377691, + 52.223166101 + ], + [ + 7.139594, + 52.224988301 + ], + [ + 7.1409211, + 52.226271401 + ], + [ + 7.142828, + 52.228071001 + ], + [ + 7.1464372, + 52.231314501 + ], + [ + 7.1501816, + 52.234501101 + ], + [ + 7.1521504, + 52.236130001 + ], + [ + 7.154066, + 52.237779001 + ], + [ + 7.1558505, + 52.239358801 + ], + [ + 7.1575851, + 52.240958401 + ], + [ + 7.1607156, + 52.244007501 + ], + [ + 7.1620294, + 52.245330401 + ], + [ + 7.1643349, + 52.247838401 + ], + [ + 7.1656127, + 52.249277301 + ], + [ + 7.1668618, + 52.250746201 + ], + [ + 7.168500637, + 52.252688594 + ] + ] + } + }, + { + "identifier": "2026-016970--vi-bs.2026-04-07_09-00-00-000_019.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.576197638874675,6.934221875218805,51.57511681520715,6.933631930320583", + "point": "51.576197638874675,6.934221875218805", + "startLcPosition": "1", + "impact": { + "lower": "Bottrop", + "upper": "Gladbeck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gronau -> Oberhausen", + "title": "A31 | Gladbeck - Bottrop", + "coordinate": { + "lat": 51.576197638874675, + "long": 6.934221875218805 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:00 Uhr", + "", + "A31: Gronau -> Oberhausen, zwischen 1.1 km hinter AS Gladbeck und 2.0 km vor AD Bottrop", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A31 - Gr\u00fcnpflege - AkD 16970" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.934221875, + 51.576197639 + ], + [ + 6.93363193, + 51.575116815 + ] + ] + } + }, + { + "identifier": "2023-004593--vi-bs.2026-04-14_06-00-00-000.devi-zus.2026-03-02_19-00-00-000.de18", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.38562986933139,7.245219906295639,52.364276683694385,7.255127075401817", + "point": "52.38562986933139,7.245219906295639", + "startLcPosition": "30", + "impact": { + "lower": "Emsb\u00fcren", + "upper": "Bergeler Feld Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Lingen (Ems) -> Gronau", + "title": "A31 | Bergeler Feld Ost - Emsb\u00fcren", + "startTimestamp": "2026-04-14T06:00:00+02:00", + "coordinate": { + "lat": 52.38562986933139, + "long": 7.245219906295639 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.04.26 um 06:00 Uhr", + "Ende: 17.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.09.27)", + "", + "A31: Lingen (Ems) -> Gronau, zwischen 0.5 km hinter Bergeler Feld Ost und 0.9 km vor AS Emsb\u00fcren", + "", + "L\u00e4nge: 2.48 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A31 - Sanierung der Fahrbahn zw. AS Emsb\u00fcren und AS Wietmarschen - AlD 4593" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.245219906, + 52.385629869 + ], + [ + 7.245245, + 52.385184501 + ], + [ + 7.2453689, + 52.384120701 + ], + [ + 7.2455308, + 52.383077801 + ], + [ + 7.2457259, + 52.382177501 + ], + [ + 7.245918, + 52.381496901 + ], + [ + 7.2463409, + 52.380150401 + ], + [ + 7.2466915, + 52.379238501 + ], + [ + 7.2470743, + 52.378338001 + ], + [ + 7.2480036, + 52.376494901 + ], + [ + 7.2486565, + 52.375368801 + ], + [ + 7.2498238, + 52.373479801 + ], + [ + 7.2510102, + 52.371593801 + ], + [ + 7.2521805, + 52.369724801 + ], + [ + 7.2523425, + 52.369457001 + ], + [ + 7.2532739, + 52.367892501 + ], + [ + 7.2541395, + 52.366322001 + ], + [ + 7.2546888, + 52.365216801 + ], + [ + 7.255127075, + 52.364276684 + ] + ] + } + }, + { + "identifier": "2026-017467--vi-bs.2026-04-09_07-00-00-000.devi-zus.2026-04-09_07-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.39712831604151,7.24811498730597,52.45742517413866,7.242073227430402", + "point": "52.39712831604151,7.24811498730597", + "startLcPosition": "31", + "impact": { + "lower": "Lingen", + "upper": "Bergeler Feld West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gronau -> Meppen", + "title": "A31 | Bergeler Feld West - Lingen", + "coordinate": { + "lat": 52.39712831604151, + "long": 7.24811498730597 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "", + "A31: Gronau -> Meppen, zwischen 0.4 km hinter Bergeler Feld West und 3.4 km vor AS Lingen", + "", + "L\u00e4nge: 7.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A31 - Beseitigung Unfallfolgen - Wanderbaustelle - AkD 17467" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.248114987, + 52.397128316 + ], + [ + 7.2481455, + 52.397189101 + ], + [ + 7.2489885, + 52.398754501 + ], + [ + 7.2499156, + 52.400340701 + ], + [ + 7.2518505, + 52.403489701 + ], + [ + 7.2537883, + 52.406621601 + ], + [ + 7.2557315, + 52.409766401 + ], + [ + 7.2563718, + 52.410844501 + ], + [ + 7.2569588, + 52.411951101 + ], + [ + 7.257488, + 52.413062301 + ], + [ + 7.2579856, + 52.414193101 + ], + [ + 7.2584715, + 52.415405801 + ], + [ + 7.2589026, + 52.416652101 + ], + [ + 7.2592799, + 52.417910301 + ], + [ + 7.2595956, + 52.419179701 + ], + [ + 7.2598596, + 52.420523101 + ], + [ + 7.2600627, + 52.421894501 + ], + [ + 7.2601458, + 52.422573401 + ], + [ + 7.2602001, + 52.423257501 + ], + [ + 7.2602095, + 52.423456301 + ], + [ + 7.2602136, + 52.423547801 + ], + [ + 7.2602649, + 52.424619401 + ], + [ + 7.2602782, + 52.425248101 + ], + [ + 7.2602786, + 52.425896701 + ], + [ + 7.2602191, + 52.427193601 + ], + [ + 7.2600978, + 52.428498001 + ], + [ + 7.2600171, + 52.429154101 + ], + [ + 7.2599288, + 52.429769101 + ], + [ + 7.2597997, + 52.430503601 + ], + [ + 7.2596724, + 52.431149001 + ], + [ + 7.2593438, + 52.432531901 + ], + [ + 7.2591551, + 52.433220901 + ], + [ + 7.2589426, + 52.433913801 + ], + [ + 7.2584484, + 52.435325001 + ], + [ + 7.2583388, + 52.435609201 + ], + [ + 7.2582686, + 52.435784601 + ], + [ + 7.2581673, + 52.436055001 + ], + [ + 7.2578528, + 52.436813801 + ], + [ + 7.2571648, + 52.438303801 + ], + [ + 7.2563871, + 52.439807101 + ], + [ + 7.2559451, + 52.440570501 + ], + [ + 7.2555412, + 52.441246601 + ], + [ + 7.2538935, + 52.443970101 + ], + [ + 7.2534524, + 52.444678501 + ], + [ + 7.2529247, + 52.445486701 + ], + [ + 7.2523629, + 52.446325101 + ], + [ + 7.2520494, + 52.446773701 + ], + [ + 7.2517421, + 52.447210101 + ], + [ + 7.2511488, + 52.448014501 + ], + [ + 7.2505955, + 52.448732501 + ], + [ + 7.2504518, + 52.448914201 + ], + [ + 7.2498247, + 52.449708101 + ], + [ + 7.2484683, + 52.451287601 + ], + [ + 7.246987, + 52.452891001 + ], + [ + 7.2453731, + 52.454502501 + ], + [ + 7.2433981, + 52.456315901 + ], + [ + 7.242073227, + 52.457425174 + ] + ] + } + }, + { + "identifier": "2023-004593--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-03-02_19-00-00-000.de10", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.51532166618686,7.199493349890007,52.54194698224622,7.195136667566038", + "point": "52.51532166618686,7.199493349890007", + "startLcPosition": "32", + "impact": { + "lower": "Wietmarschen", + "upper": "Lingen", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Lingen (Ems) -> Meppen", + "title": "A31 | Lingen - Wietmarschen", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.51532166618686, + "long": 7.199493349890007 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 20.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.09.27)", + "", + "A31: Lingen (Ems) -> Meppen, zwischen 3.9 km hinter AS Lingen und 0.2 km vor AS Wietmarschen", + "", + "L\u00e4nge: 2.98 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A31 - Sanierung der Fahrbahn zw. AS Emsb\u00fcren und AS Wietmarschen - AlD 4593" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.19949335, + 52.515321666 + ], + [ + 7.199492, + 52.515450901 + ], + [ + 7.1994908, + 52.515581901 + ], + [ + 7.1994894, + 52.515688001 + ], + [ + 7.1994889, + 52.516665001 + ], + [ + 7.199463, + 52.519148701 + ], + [ + 7.1993961, + 52.520739601 + ], + [ + 7.1992734, + 52.522334701 + ], + [ + 7.1991807, + 52.523088801 + ], + [ + 7.1991157, + 52.523630601 + ], + [ + 7.1990686, + 52.523928901 + ], + [ + 7.1988523, + 52.525236001 + ], + [ + 7.198795, + 52.525549601 + ], + [ + 7.1982432, + 52.528190001 + ], + [ + 7.1979455, + 52.529492401 + ], + [ + 7.1976591, + 52.530780401 + ], + [ + 7.1975593, + 52.531244401 + ], + [ + 7.1972236, + 52.532783701 + ], + [ + 7.1966925, + 52.535094401 + ], + [ + 7.1962956, + 52.536869201 + ], + [ + 7.1958932, + 52.538651701 + ], + [ + 7.195136668, + 52.541946982 + ] + ] + } + }, + { + "identifier": "2023-004593--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-03-02_19-00-00-000.de8", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.512626331895,7.199533125691541,52.51532166618686,7.199493349890007", + "point": "52.512626331895,7.199533125691541", + "startLcPosition": "32", + "impact": { + "lower": "Ems-Vechte", + "upper": "Lingen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Lingen (Ems) -> Meppen", + "title": "A31 | Lingen - Ems-Vechte", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.512626331895, + "long": 7.199533125691541 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 20.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.09.27)", + "", + "A31: Lingen (Ems) -> Meppen, zwischen 3.6 km hinter AS Lingen und 1.4 km vor Ems-Vechte", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A31 - Sanierung der Fahrbahn zw. AS Emsb\u00fcren und AS Wietmarschen - AlD 4593" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.199533126, + 52.512626332 + ], + [ + 7.1995181, + 52.512951401 + ], + [ + 7.1995052, + 52.514187101 + ], + [ + 7.19949335, + 52.515321666 + ] + ] + } + }, + { + "identifier": "2026-017467--vi-bs.2026-04-09_07-00-00-000.devi-zus.2026-04-09_07-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.53409806326188,7.196752609831283,52.284068641067655,7.210535006755913", + "point": "52.53409806326188,7.196752609831283", + "startLcPosition": "34", + "impact": { + "lower": "Gut Friedrichstal", + "upper": "Wietmarschen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Meppen -> Gronau", + "title": "A31 | Wietmarschen - Gut Friedrichstal", + "coordinate": { + "lat": 52.53409806326188, + "long": 7.196752609831283 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "", + "A31: Meppen -> Gronau, zwischen 1.1 km hinter AS Wietmarschen und 0.9 km vor Gut Friedrichstal", + "", + "L\u00e4nge: 30.78 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A31 - Beseitigung Unfallfolgen - Wanderbaustelle - AkD 17467" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.19675261, + 52.534098063 + ], + [ + 7.1970637, + 52.532720701 + ], + [ + 7.1974295, + 52.531061501 + ], + [ + 7.1974968, + 52.530778201 + ], + [ + 7.19778, + 52.529486001 + ], + [ + 7.198075, + 52.528179401 + ], + [ + 7.1983667, + 52.526843501 + ], + [ + 7.1986303, + 52.525516401 + ], + [ + 7.1987004, + 52.525087501 + ], + [ + 7.1989088, + 52.523913201 + ], + [ + 7.1989809, + 52.523352701 + ], + [ + 7.1990299, + 52.522978601 + ], + [ + 7.1991092, + 52.522324501 + ], + [ + 7.1992367, + 52.520729101 + ], + [ + 7.1992936, + 52.519140901 + ], + [ + 7.1993075, + 52.518524501 + ], + [ + 7.1993169, + 52.517901001 + ], + [ + 7.1993247, + 52.516659201 + ], + [ + 7.1993231, + 52.515688901 + ], + [ + 7.1993238, + 52.515582801 + ], + [ + 7.1993276, + 52.515456601 + ], + [ + 7.1993426, + 52.514164601 + ], + [ + 7.1993544, + 52.512958201 + ], + [ + 7.1994006, + 52.511700201 + ], + [ + 7.1994993, + 52.510248801 + ], + [ + 7.1996006, + 52.509210201 + ], + [ + 7.1998413, + 52.507315401 + ], + [ + 7.1999301, + 52.506822201 + ], + [ + 7.2000122, + 52.506307401 + ], + [ + 7.2001756, + 52.505396401 + ], + [ + 7.2005936, + 52.503486301 + ], + [ + 7.2010963, + 52.501582601 + ], + [ + 7.2014142, + 52.500514501 + ], + [ + 7.2015885, + 52.499978601 + ], + [ + 7.2017607, + 52.499438601 + ], + [ + 7.2025407, + 52.497293301 + ], + [ + 7.2027402, + 52.496785601 + ], + [ + 7.2029624, + 52.496229501 + ], + [ + 7.203417, + 52.495158701 + ], + [ + 7.2043911, + 52.493004601 + ], + [ + 7.2052356, + 52.491303001 + ], + [ + 7.2061583, + 52.489602201 + ], + [ + 7.2066285, + 52.488756901 + ], + [ + 7.2071316, + 52.487911801 + ], + [ + 7.2076517, + 52.487065701 + ], + [ + 7.2081774, + 52.486225401 + ], + [ + 7.2085268, + 52.485648701 + ], + [ + 7.209584, + 52.484113201 + ], + [ + 7.2099231, + 52.483644501 + ], + [ + 7.2105864, + 52.482725301 + ], + [ + 7.2111928, + 52.481912501 + ], + [ + 7.2114282, + 52.481584201 + ], + [ + 7.2117453, + 52.481179901 + ], + [ + 7.2122684, + 52.480496901 + ], + [ + 7.2124497, + 52.480284901 + ], + [ + 7.2128116, + 52.479851201 + ], + [ + 7.2131808, + 52.479404101 + ], + [ + 7.2142513, + 52.478190301 + ], + [ + 7.215441, + 52.476918801 + ], + [ + 7.2166975, + 52.475638201 + ], + [ + 7.217331, + 52.475024101 + ], + [ + 7.2180336, + 52.474373201 + ], + [ + 7.2194444, + 52.473113501 + ], + [ + 7.2207042, + 52.472054501 + ], + [ + 7.2220032, + 52.471017701 + ], + [ + 7.2233467, + 52.470000201 + ], + [ + 7.224762, + 52.468973301 + ], + [ + 7.2266165, + 52.467702301 + ], + [ + 7.2285506, + 52.466455001 + ], + [ + 7.2311107, + 52.464886301 + ], + [ + 7.2336934, + 52.463301501 + ], + [ + 7.2360506, + 52.461781801 + ], + [ + 7.2371478, + 52.461027401 + ], + [ + 7.2382452, + 52.460245601 + ], + [ + 7.2392657, + 52.459493501 + ], + [ + 7.2400901, + 52.458865801 + ], + [ + 7.2404786, + 52.458574601 + ], + [ + 7.2408978, + 52.458245701 + ], + [ + 7.24323, + 52.456277201 + ], + [ + 7.2452647, + 52.454399301 + ], + [ + 7.2468523, + 52.452819501 + ], + [ + 7.2483298, + 52.451218001 + ], + [ + 7.2496772, + 52.449630301 + ], + [ + 7.2502941, + 52.448871201 + ], + [ + 7.2504326, + 52.448688101 + ], + [ + 7.2509557, + 52.448002301 + ], + [ + 7.2515705, + 52.447165301 + ], + [ + 7.2518714, + 52.446741901 + ], + [ + 7.2521638, + 52.446318101 + ], + [ + 7.2527309, + 52.445466501 + ], + [ + 7.253285, + 52.444605101 + ], + [ + 7.2536994, + 52.443979701 + ], + [ + 7.2553474, + 52.441252201 + ], + [ + 7.2557887, + 52.440507801 + ], + [ + 7.2562014, + 52.439780201 + ], + [ + 7.25699, + 52.438286701 + ], + [ + 7.2576729, + 52.436796101 + ], + [ + 7.257985, + 52.436040201 + ], + [ + 7.258095, + 52.435759601 + ], + [ + 7.2581678, + 52.435584601 + ], + [ + 7.2582794, + 52.435285001 + ], + [ + 7.2587508, + 52.433909001 + ], + [ + 7.2589608, + 52.433214001 + ], + [ + 7.2591519, + 52.432517901 + ], + [ + 7.2594978, + 52.431132101 + ], + [ + 7.2596258, + 52.430441301 + ], + [ + 7.2597591, + 52.429742701 + ], + [ + 7.2598466, + 52.429138301 + ], + [ + 7.2599396, + 52.428486101 + ], + [ + 7.2600611, + 52.427182701 + ], + [ + 7.2601101, + 52.425892401 + ], + [ + 7.2601166, + 52.425250701 + ], + [ + 7.260111, + 52.424615301 + ], + [ + 7.2600576, + 52.423546201 + ], + [ + 7.2600533, + 52.423454601 + ], + [ + 7.2600434, + 52.423245801 + ], + [ + 7.2599837, + 52.422573801 + ], + [ + 7.2599064, + 52.421894901 + ], + [ + 7.2597026, + 52.420526701 + ], + [ + 7.2594287, + 52.419187601 + ], + [ + 7.259118, + 52.417926201 + ], + [ + 7.2587475, + 52.416669801 + ], + [ + 7.2583153, + 52.415431001 + ], + [ + 7.2578318, + 52.414221901 + ], + [ + 7.2573364, + 52.413092201 + ], + [ + 7.2568022, + 52.411986901 + ], + [ + 7.2562138, + 52.410877701 + ], + [ + 7.2555787, + 52.409794601 + ], + [ + 7.2536336, + 52.406648701 + ], + [ + 7.2516964, + 52.403516001 + ], + [ + 7.2497644, + 52.400372701 + ], + [ + 7.2488419, + 52.398784701 + ], + [ + 7.2481786, + 52.397569401 + ], + [ + 7.2479819, + 52.397209101 + ], + [ + 7.2473927, + 52.396032201 + ], + [ + 7.2471946, + 52.395580501 + ], + [ + 7.2468198, + 52.394723601 + ], + [ + 7.2463847, + 52.393609801 + ], + [ + 7.24585, + 52.391903501 + ], + [ + 7.2458151, + 52.391772401 + ], + [ + 7.2456129, + 52.390910601 + ], + [ + 7.2454558, + 52.390043901 + ], + [ + 7.245322, + 52.389196001 + ], + [ + 7.2452324, + 52.388340201 + ], + [ + 7.2451839, + 52.387290601 + ], + [ + 7.2451851, + 52.386247601 + ], + [ + 7.245245, + 52.385184501 + ], + [ + 7.2453689, + 52.384120701 + ], + [ + 7.2455308, + 52.383077801 + ], + [ + 7.2457259, + 52.382177501 + ], + [ + 7.245918, + 52.381496901 + ], + [ + 7.2463409, + 52.380150401 + ], + [ + 7.2466915, + 52.379238501 + ], + [ + 7.2470743, + 52.378338001 + ], + [ + 7.2480036, + 52.376494901 + ], + [ + 7.2486565, + 52.375368801 + ], + [ + 7.2498238, + 52.373479801 + ], + [ + 7.2510102, + 52.371593801 + ], + [ + 7.2521805, + 52.369724801 + ], + [ + 7.2523425, + 52.369457001 + ], + [ + 7.2532739, + 52.367892501 + ], + [ + 7.2541395, + 52.366322001 + ], + [ + 7.2546888, + 52.365216801 + ], + [ + 7.2552107, + 52.364097301 + ], + [ + 7.2556574, + 52.363097601 + ], + [ + 7.2560657, + 52.362092001 + ], + [ + 7.2563633, + 52.361317101 + ], + [ + 7.2564013, + 52.361208201 + ], + [ + 7.2564507, + 52.361080701 + ], + [ + 7.2565647, + 52.360774501 + ], + [ + 7.2573063, + 52.358495601 + ], + [ + 7.2576708, + 52.357176901 + ], + [ + 7.2581089, + 52.355316101 + ], + [ + 7.2583193, + 52.354257901 + ], + [ + 7.2584887, + 52.353193601 + ], + [ + 7.2586806, + 52.351755201 + ], + [ + 7.2587637, + 52.350957001 + ], + [ + 7.2588336, + 52.350127001 + ], + [ + 7.2589226, + 52.348304701 + ], + [ + 7.2589311, + 52.347255001 + ], + [ + 7.2589302, + 52.346671201 + ], + [ + 7.2588929, + 52.345742801 + ], + [ + 7.2588901, + 52.345674101 + ], + [ + 7.2588857, + 52.345502401 + ], + [ + 7.2588776, + 52.345159301 + ], + [ + 7.2588637, + 52.344929301 + ], + [ + 7.2588103, + 52.344078401 + ], + [ + 7.2587177, + 52.343047101 + ], + [ + 7.2585511, + 52.341671001 + ], + [ + 7.2584679, + 52.340943601 + ], + [ + 7.2581242, + 52.338486401 + ], + [ + 7.2580211, + 52.337781301 + ], + [ + 7.257925, + 52.337124301 + ], + [ + 7.2579031, + 52.336999701 + ], + [ + 7.2578755, + 52.336790901 + ], + [ + 7.257847, + 52.336577601 + ], + [ + 7.2576764, + 52.335324101 + ], + [ + 7.2574579, + 52.333279901 + ], + [ + 7.2572964, + 52.331385801 + ], + [ + 7.2572255, + 52.329292701 + ], + [ + 7.2572514, + 52.327973001 + ], + [ + 7.2573553, + 52.326402901 + ], + [ + 7.2574909, + 52.325108601 + ], + [ + 7.2576381, + 52.323828801 + ], + [ + 7.2576789, + 52.323417701 + ], + [ + 7.2577625, + 52.322775501 + ], + [ + 7.2578188, + 52.322106601 + ], + [ + 7.25785, + 52.321753801 + ], + [ + 7.2578671, + 52.321377701 + ], + [ + 7.2578742, + 52.321196801 + ], + [ + 7.257931, + 52.319849501 + ], + [ + 7.2579153, + 52.318871501 + ], + [ + 7.2578608, + 52.317794101 + ], + [ + 7.2577132, + 52.316735401 + ], + [ + 7.2576422, + 52.316178501 + ], + [ + 7.2575475, + 52.315654601 + ], + [ + 7.2573384, + 52.314662901 + ], + [ + 7.2571047, + 52.313842601 + ], + [ + 7.2569411, + 52.313283301 + ], + [ + 7.2568616, + 52.313030401 + ], + [ + 7.2567389, + 52.312609601 + ], + [ + 7.2563664, + 52.311578001 + ], + [ + 7.2559415, + 52.310538301 + ], + [ + 7.255473, + 52.309521801 + ], + [ + 7.2549016, + 52.308428401 + ], + [ + 7.2547639, + 52.308179501 + ], + [ + 7.2545095, + 52.307731401 + ], + [ + 7.2540418, + 52.306953501 + ], + [ + 7.2535344, + 52.306187701 + ], + [ + 7.2529835, + 52.305394101 + ], + [ + 7.2524333, + 52.304662601 + ], + [ + 7.2518702, + 52.303936101 + ], + [ + 7.251274, + 52.303224901 + ], + [ + 7.251007, + 52.302923101 + ], + [ + 7.250593, + 52.302453701 + ], + [ + 7.2497991, + 52.301604601 + ], + [ + 7.2489696, + 52.300769501 + ], + [ + 7.2473324, + 52.299239901 + ], + [ + 7.246628, + 52.298625201 + ], + [ + 7.2459086, + 52.298035501 + ], + [ + 7.2447384, + 52.297129401 + ], + [ + 7.2436676, + 52.296345401 + ], + [ + 7.243143, + 52.295983401 + ], + [ + 7.2423135, + 52.295424701 + ], + [ + 7.2417185, + 52.295035401 + ], + [ + 7.2410471, + 52.294609101 + ], + [ + 7.2406698, + 52.294376901 + ], + [ + 7.2397251, + 52.293809701 + ], + [ + 7.2392801, + 52.293547701 + ], + [ + 7.2385208, + 52.293133801 + ], + [ + 7.2373844, + 52.292513501 + ], + [ + 7.2361913, + 52.291908001 + ], + [ + 7.2350499, + 52.291359401 + ], + [ + 7.2338189, + 52.290788901 + ], + [ + 7.2325629, + 52.290234501 + ], + [ + 7.2312932, + 52.289712001 + ], + [ + 7.2299696, + 52.289198901 + ], + [ + 7.2283981, + 52.288632701 + ], + [ + 7.2279111, + 52.288459101 + ], + [ + 7.2272023, + 52.288216501 + ], + [ + 7.226266, + 52.287914901 + ], + [ + 7.2254557, + 52.287663901 + ], + [ + 7.2243202, + 52.287324501 + ], + [ + 7.2231832, + 52.287004201 + ], + [ + 7.2220063, + 52.286695901 + ], + [ + 7.2205703, + 52.286335701 + ], + [ + 7.2187802, + 52.285912601 + ], + [ + 7.2172368, + 52.285568301 + ], + [ + 7.2157161, + 52.285228201 + ], + [ + 7.212808, + 52.284585001 + ], + [ + 7.210535007, + 52.284068641 + ] + ] + } + }, + { + "identifier": "2026-016395--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-03-23_07-00-00-000_025.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.9866512860713,7.250780538029417,53.06489717694491,7.238647125884013", + "point": "52.9866512860713,7.250780538029417", + "startLcPosition": "46", + "impact": { + "lower": "Rhede (Ems)", + "upper": "D\u00f6rpen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Meppen -> Leer", + "title": "A31 | D\u00f6rpen - Rhede (Ems)", + "coordinate": { + "lat": 52.9866512860713, + "long": 7.250780538029417 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 18:00 Uhr", + "14.04.26 von 07:00 bis 18:00 Uhr", + "15.04.26 von 07:00 bis 18:00 Uhr", + "", + "A31: Meppen -> Leer, zwischen AS D\u00f6rpen und 0.1 km vor AS Rhede (Ems)", + "", + "L\u00e4nge: 8.77 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A31 - Tiefbauarbeiten neben der Fahrbahn - Wanderbaustelle - AkD 16395" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.250780538, + 52.986651286 + ], + [ + 7.2507814, + 52.986670601 + ], + [ + 7.2508905, + 52.988532201 + ], + [ + 7.2511613, + 52.992411201 + ], + [ + 7.2512463, + 52.995030401 + ], + [ + 7.2513181, + 52.997638801 + ], + [ + 7.2512297, + 53.002200401 + ], + [ + 7.2511659, + 53.003248601 + ], + [ + 7.2511145, + 53.004296501 + ], + [ + 7.2508994, + 53.006392801 + ], + [ + 7.2507546, + 53.007557401 + ], + [ + 7.250579, + 53.008801101 + ], + [ + 7.2503998, + 53.009936901 + ], + [ + 7.2501954, + 53.011120201 + ], + [ + 7.2499447, + 53.012408301 + ], + [ + 7.2496702, + 53.013702401 + ], + [ + 7.2494924, + 53.014502201 + ], + [ + 7.2493942, + 53.014924301 + ], + [ + 7.2489453, + 53.016745801 + ], + [ + 7.2486653, + 53.017817201 + ], + [ + 7.24849, + 53.018464701 + ], + [ + 7.2477684, + 53.021008501 + ], + [ + 7.2472822, + 53.022609401 + ], + [ + 7.246772, + 53.024268401 + ], + [ + 7.2459415, + 53.026911301 + ], + [ + 7.245161, + 53.029314801 + ], + [ + 7.2447866, + 53.030492301 + ], + [ + 7.2440729, + 53.032708101 + ], + [ + 7.2435915, + 53.034323901 + ], + [ + 7.2432817, + 53.035256901 + ], + [ + 7.2430016, + 53.036284001 + ], + [ + 7.2426746, + 53.037290801 + ], + [ + 7.2423924, + 53.038246101 + ], + [ + 7.2417221, + 53.040694301 + ], + [ + 7.2413535, + 53.042146201 + ], + [ + 7.2410797, + 53.043268501 + ], + [ + 7.2407682, + 53.044661301 + ], + [ + 7.2406316, + 53.045298801 + ], + [ + 7.2403957, + 53.046488001 + ], + [ + 7.2402504, + 53.047241301 + ], + [ + 7.2400417, + 53.048428401 + ], + [ + 7.2399461, + 53.049022401 + ], + [ + 7.2397907, + 53.049982801 + ], + [ + 7.2396627, + 53.050853101 + ], + [ + 7.2395134, + 53.051987801 + ], + [ + 7.2394259, + 53.052634501 + ], + [ + 7.2393298, + 53.053550001 + ], + [ + 7.2392001, + 53.054723701 + ], + [ + 7.2391472, + 53.055264101 + ], + [ + 7.2391262, + 53.055498101 + ], + [ + 7.239064, + 53.056191201 + ], + [ + 7.2390137, + 53.056754301 + ], + [ + 7.2389701, + 53.057269601 + ], + [ + 7.2389241, + 53.057926101 + ], + [ + 7.2388524, + 53.058854301 + ], + [ + 7.2388366, + 53.059232701 + ], + [ + 7.2387575, + 53.060736101 + ], + [ + 7.238737, + 53.061064001 + ], + [ + 7.2386803, + 53.062709001 + ], + [ + 7.2386629, + 53.063848801 + ], + [ + 7.238647126, + 53.064897177 + ] + ] + } + }, + { + "identifier": "2026-016395--vi-bs.2026-04-23_07-00-00-000.devi-zus.2026-03-23_07-00-00-000_025.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.9866512860713,7.250780538029417,53.06489717694491,7.238647125884013", + "point": "52.9866512860713,7.250780538029417", + "startLcPosition": "46", + "impact": { + "lower": "Rhede (Ems)", + "upper": "D\u00f6rpen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Meppen -> Leer", + "title": "A31 | D\u00f6rpen - Rhede (Ems)", + "coordinate": { + "lat": 52.9866512860713, + "long": 7.250780538029417 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 07:00 bis 18:00 Uhr", + "24.04.26 von 07:00 bis 18:00 Uhr", + "27.04.26 von 07:00 bis 18:00 Uhr", + "", + "A31: Meppen -> Leer, zwischen AS D\u00f6rpen und 0.1 km vor AS Rhede (Ems)", + "", + "L\u00e4nge: 8.77 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A31 - Tiefbauarbeiten neben der Fahrbahn - Wanderbaustelle - AkD 16395" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.250780538, + 52.986651286 + ], + [ + 7.2507814, + 52.986670601 + ], + [ + 7.2508905, + 52.988532201 + ], + [ + 7.2511613, + 52.992411201 + ], + [ + 7.2512463, + 52.995030401 + ], + [ + 7.2513181, + 52.997638801 + ], + [ + 7.2512297, + 53.002200401 + ], + [ + 7.2511659, + 53.003248601 + ], + [ + 7.2511145, + 53.004296501 + ], + [ + 7.2508994, + 53.006392801 + ], + [ + 7.2507546, + 53.007557401 + ], + [ + 7.250579, + 53.008801101 + ], + [ + 7.2503998, + 53.009936901 + ], + [ + 7.2501954, + 53.011120201 + ], + [ + 7.2499447, + 53.012408301 + ], + [ + 7.2496702, + 53.013702401 + ], + [ + 7.2494924, + 53.014502201 + ], + [ + 7.2493942, + 53.014924301 + ], + [ + 7.2489453, + 53.016745801 + ], + [ + 7.2486653, + 53.017817201 + ], + [ + 7.24849, + 53.018464701 + ], + [ + 7.2477684, + 53.021008501 + ], + [ + 7.2472822, + 53.022609401 + ], + [ + 7.246772, + 53.024268401 + ], + [ + 7.2459415, + 53.026911301 + ], + [ + 7.245161, + 53.029314801 + ], + [ + 7.2447866, + 53.030492301 + ], + [ + 7.2440729, + 53.032708101 + ], + [ + 7.2435915, + 53.034323901 + ], + [ + 7.2432817, + 53.035256901 + ], + [ + 7.2430016, + 53.036284001 + ], + [ + 7.2426746, + 53.037290801 + ], + [ + 7.2423924, + 53.038246101 + ], + [ + 7.2417221, + 53.040694301 + ], + [ + 7.2413535, + 53.042146201 + ], + [ + 7.2410797, + 53.043268501 + ], + [ + 7.2407682, + 53.044661301 + ], + [ + 7.2406316, + 53.045298801 + ], + [ + 7.2403957, + 53.046488001 + ], + [ + 7.2402504, + 53.047241301 + ], + [ + 7.2400417, + 53.048428401 + ], + [ + 7.2399461, + 53.049022401 + ], + [ + 7.2397907, + 53.049982801 + ], + [ + 7.2396627, + 53.050853101 + ], + [ + 7.2395134, + 53.051987801 + ], + [ + 7.2394259, + 53.052634501 + ], + [ + 7.2393298, + 53.053550001 + ], + [ + 7.2392001, + 53.054723701 + ], + [ + 7.2391472, + 53.055264101 + ], + [ + 7.2391262, + 53.055498101 + ], + [ + 7.239064, + 53.056191201 + ], + [ + 7.2390137, + 53.056754301 + ], + [ + 7.2389701, + 53.057269601 + ], + [ + 7.2389241, + 53.057926101 + ], + [ + 7.2388524, + 53.058854301 + ], + [ + 7.2388366, + 53.059232701 + ], + [ + 7.2387575, + 53.060736101 + ], + [ + 7.238737, + 53.061064001 + ], + [ + 7.2386803, + 53.062709001 + ], + [ + 7.2386629, + 53.063848801 + ], + [ + 7.238647126, + 53.064897177 + ] + ] + } + }, + { + "identifier": "2026-016702--vi-bs.2026-04-08_08-30-00-000.devi-zus.2026-04-08_08-30-00-000.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.36433970291722,7.377617995780649,53.359086554167256,7.398319833849527", + "point": "53.36433970291722,7.377617995780649", + "startLcPosition": "60", + "impact": { + "lower": "Neermoor", + "upper": "Riepe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Emden -> Leer", + "title": "A31 | Riepe - Neermoor", + "coordinate": { + "lat": 53.36433970291722, + "long": 7.377617995780649 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 15:30 Uhr", + "", + "A31: Emden -> Leer, zwischen 2.0 km hinter AS Riepe und 6.6 km vor AS Neermoor", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A31 von Olle Rheen (Parkplatz) nach Bunde (AD) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.377617996, + 53.364339703 + ], + [ + 7.3779783, + 53.364275001 + ], + [ + 7.3802397, + 53.363827501 + ], + [ + 7.3818941, + 53.363487901 + ], + [ + 7.3845684, + 53.362909201 + ], + [ + 7.3856734, + 53.362652101 + ], + [ + 7.3878728, + 53.362115601 + ], + [ + 7.3886737, + 53.361911701 + ], + [ + 7.3900321, + 53.361569201 + ], + [ + 7.3910736, + 53.361298101 + ], + [ + 7.3922903, + 53.360965401 + ], + [ + 7.3935864, + 53.360597901 + ], + [ + 7.3953746, + 53.360063901 + ], + [ + 7.3971703, + 53.359485201 + ], + [ + 7.3981436, + 53.359149501 + ], + [ + 7.398319834, + 53.359086554 + ] + ] + } + }, + { + "identifier": "2026-016702--vi-bs.2026-04-08_08-30-00-000.devi-zus.2026-04-08_08-30-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.3665982085873,7.361521157178019,53.36318299031425,7.383303202746368", + "point": "53.3665982085873,7.361521157178019", + "startLcPosition": "60", + "impact": { + "lower": "Neermoor", + "upper": "Riepe", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Emden -> Leer", + "title": "A31 | Riepe - Neermoor", + "coordinate": { + "lat": 53.3665982085873, + "long": 7.361521157178019 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 15:30 Uhr", + "", + "A31: Emden -> Leer, zwischen 0.9 km hinter AS Riepe und 7.7 km vor AS Neermoor", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A31 von Olle Rheen (Parkplatz) nach Bunde (AD) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.361521157, + 53.366598209 + ], + [ + 7.361677, + 53.366583201 + ], + [ + 7.3643368, + 53.366315001 + ], + [ + 7.3669813, + 53.365992501 + ], + [ + 7.3701854, + 53.365557401 + ], + [ + 7.3725922, + 53.365199001 + ], + [ + 7.3730999, + 53.365115601 + ], + [ + 7.3754884, + 53.364722101 + ], + [ + 7.3779783, + 53.364275001 + ], + [ + 7.3802397, + 53.363827501 + ], + [ + 7.3818941, + 53.363487901 + ], + [ + 7.383303203, + 53.36318299 + ] + ] + } + }, + { + "identifier": "2026-016702--vi-bs.2026-04-08_08-30-00-000.devi-zus.2026-04-08_08-30-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.3665982085873,7.361521157178019,53.36318299031425,7.383303202746368", + "point": "53.3665982085873,7.361521157178019", + "startLcPosition": "60", + "impact": { + "lower": "Neermoor", + "upper": "Riepe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Emden -> Leer", + "title": "A31 | Riepe - Neermoor", + "coordinate": { + "lat": 53.3665982085873, + "long": 7.361521157178019 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 15:30 Uhr", + "", + "A31: Emden -> Leer, zwischen 0.9 km hinter AS Riepe und 7.7 km vor AS Neermoor", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A31 von Olle Rheen (Parkplatz) nach Bunde (AD) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.361521157, + 53.366598209 + ], + [ + 7.361677, + 53.366583201 + ], + [ + 7.3643368, + 53.366315001 + ], + [ + 7.3669813, + 53.365992501 + ], + [ + 7.3701854, + 53.365557401 + ], + [ + 7.3725922, + 53.365199001 + ], + [ + 7.3730999, + 53.365115601 + ], + [ + 7.3754884, + 53.364722101 + ], + [ + 7.3779783, + 53.364275001 + ], + [ + 7.3802397, + 53.363827501 + ], + [ + 7.3818941, + 53.363487901 + ], + [ + 7.383303203, + 53.36318299 + ] + ] + } + }, + { + "identifier": "2026-016702--vi-bs.2026-04-08_08-30-00-000.devi-zus.2026-04-08_08-30-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.364672751711716,7.262950424514953,53.368581682395714,7.242350341332874", + "point": "53.364672751711716,7.262950424514953", + "startLcPosition": "60", + "impact": { + "lower": "Emden-Wolthusen", + "upper": "Riepe", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leer -> Emden", + "title": "A31 | Riepe - Emden-Wolthusen", + "coordinate": { + "lat": 53.364672751711716, + "long": 7.262950424514953 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 15:30 Uhr", + "", + "A31: Leer -> Emden, zwischen 5.8 km hinter AS Riepe und 0.7 km vor AS Emden-Wolthusen", + "", + "L\u00e4nge: 1.52 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A31 von Olle Rheen (Parkplatz) nach Bunde (AD) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.262950425, + 53.364672752 + ], + [ + 7.2621473, + 53.364700601 + ], + [ + 7.2613138, + 53.364737601 + ], + [ + 7.2606844, + 53.364760001 + ], + [ + 7.2591316, + 53.364840101 + ], + [ + 7.2580356, + 53.364894001 + ], + [ + 7.2568475, + 53.364959901 + ], + [ + 7.2556297, + 53.365053201 + ], + [ + 7.2545454, + 53.365126401 + ], + [ + 7.2537978, + 53.365190801 + ], + [ + 7.2529507, + 53.365256301 + ], + [ + 7.2522921, + 53.365305001 + ], + [ + 7.2513133, + 53.365399501 + ], + [ + 7.2506499, + 53.365459101 + ], + [ + 7.2492328, + 53.365594101 + ], + [ + 7.2487508, + 53.365655601 + ], + [ + 7.2483244, + 53.365707501 + ], + [ + 7.2478832, + 53.365765901 + ], + [ + 7.2475497, + 53.365817001 + ], + [ + 7.247123, + 53.365892301 + ], + [ + 7.2468196, + 53.365954601 + ], + [ + 7.2464838, + 53.366034701 + ], + [ + 7.2463569, + 53.366062901 + ], + [ + 7.2459081, + 53.366193001 + ], + [ + 7.2456184, + 53.366283401 + ], + [ + 7.2452817, + 53.366401601 + ], + [ + 7.2449046, + 53.366557401 + ], + [ + 7.2446784, + 53.366663201 + ], + [ + 7.2445538, + 53.366725601 + ], + [ + 7.2443435, + 53.366834901 + ], + [ + 7.2439915, + 53.367041901 + ], + [ + 7.2437708, + 53.367181101 + ], + [ + 7.243608, + 53.367297101 + ], + [ + 7.2432985, + 53.367525401 + ], + [ + 7.2430645, + 53.367727001 + ], + [ + 7.2428274, + 53.367953001 + ], + [ + 7.2424912, + 53.368378801 + ], + [ + 7.242399, + 53.368503501 + ], + [ + 7.242350341, + 53.368581682 + ] + ] + } + }, + { + "identifier": "2026-016702--vi-bs.2026-04-08_08-30-00-000.devi-zus.2026-04-08_08-30-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "53.38575581827305,7.228627476232751,53.38807056075159,7.206534043106589", + "point": "53.38575581827305,7.228627476232751", + "startLcPosition": "62", + "impact": { + "lower": "Pewsum", + "upper": "Emden-Wolthusen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leer -> Emden", + "title": "A31 | Emden-Wolthusen - Pewsum", + "coordinate": { + "lat": 53.38575581827305, + "long": 7.228627476232751 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 15:30 Uhr", + "", + "A31: Leer -> Emden, zwischen 1.5 km hinter AS Emden-Wolthusen und 1.8 km vor AS Pewsum", + "", + "L\u00e4nge: 1.52 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A31 von Olle Rheen (Parkplatz) nach Bunde (AD) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.228627476, + 53.385755818 + ], + [ + 7.2283456, + 53.385862901 + ], + [ + 7.2279618, + 53.386006001 + ], + [ + 7.2275441, + 53.386150001 + ], + [ + 7.227086, + 53.386306701 + ], + [ + 7.2264297, + 53.386511501 + ], + [ + 7.2257654, + 53.386699201 + ], + [ + 7.2251555, + 53.386860401 + ], + [ + 7.2246203, + 53.386997601 + ], + [ + 7.2241088, + 53.387105801 + ], + [ + 7.2236506, + 53.387202301 + ], + [ + 7.2231528, + 53.387298301 + ], + [ + 7.2229131, + 53.387348701 + ], + [ + 7.2226307, + 53.387399501 + ], + [ + 7.2222971, + 53.387459001 + ], + [ + 7.2218529, + 53.387525101 + ], + [ + 7.2214364, + 53.387584601 + ], + [ + 7.2208537, + 53.387664401 + ], + [ + 7.2205201, + 53.387704001 + ], + [ + 7.2202612, + 53.387734401 + ], + [ + 7.2198409, + 53.387783501 + ], + [ + 7.2196877, + 53.387798101 + ], + [ + 7.2191528, + 53.387848001 + ], + [ + 7.2189143, + 53.387870501 + ], + [ + 7.2172553, + 53.387992101 + ], + [ + 7.2153853, + 53.388088601 + ], + [ + 7.214131, + 53.388134701 + ], + [ + 7.2126955, + 53.388168801 + ], + [ + 7.2122643, + 53.388175501 + ], + [ + 7.2118858, + 53.388177601 + ], + [ + 7.2106395, + 53.388179801 + ], + [ + 7.2099133, + 53.388174301 + ], + [ + 7.2093129, + 53.388162101 + ], + [ + 7.2085145, + 53.388142501 + ], + [ + 7.2071965, + 53.388098201 + ], + [ + 7.206746, + 53.388080701 + ], + [ + 7.206534043, + 53.388070561 + ] + ] + } + }, + { + "identifier": "2026-016931--vi-bs.2026-04-08_09-00-00-000.devi-zus.2026-04-08_09-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.25274011454693,7.1683384257349285,51.55628036564612,6.92573233473535", + "point": "52.25274011454693,7.1683384257349285", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Lingen (Ems) -> Oberhausen", + "title": "A31 - Reinigungsarbeiten - Wanderbaustelle - AkD 16931", + "coordinate": { + "lat": 52.25274011454693, + "long": 7.1683384257349285 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:00 Uhr", + "10.04.26 von 09:00 bis 16:00 Uhr", + "11.04.26 von 09:00 bis 16:00 Uhr", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "17.04.26 von 09:00 bis 16:00 Uhr", + "18.04.26 von 09:00 bis 16:00 Uhr", + "20.04.26 von 09:00 bis 16:00 Uhr", + "21.04.26 von 09:00 bis 16:00 Uhr", + "22.04.26 von 09:00 bis 16:00 Uhr", + "23.04.26 von 09:00 bis 16:00 Uhr", + "24.04.26 von 09:00 bis 13:00 Uhr", + "", + "Von A31: Lingen (Ems) -> Oberhausen, zwischen 3.8 km hinter Gut Friedrichstal und AD Bottrop nach Abfahrt von der A31: AD Bottrop (aus Richtung Gladbeck)", + "", + "L\u00e4nge: 81.24 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A31 - Reinigungsarbeiten - Wanderbaustelle - AkD 16931" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.168338426, + 52.252740115 + ], + [ + 7.1666915, + 52.250785901 + ], + [ + 7.1654091, + 52.249286601 + ], + [ + 7.164003, + 52.247722401 + ], + [ + 7.1619778, + 52.245549801 + ], + [ + 7.160717, + 52.244301601 + ], + [ + 7.1573877, + 52.241043201 + ], + [ + 7.1556479, + 52.239444501 + ], + [ + 7.1538734, + 52.237859601 + ], + [ + 7.1519606, + 52.236216101 + ], + [ + 7.1499999, + 52.234593501 + ], + [ + 7.1462385, + 52.231406401 + ], + [ + 7.1426227, + 52.228149901 + ], + [ + 7.1420565, + 52.227614701 + ], + [ + 7.1404994, + 52.226142801 + ], + [ + 7.1393925, + 52.225067001 + ], + [ + 7.1372632, + 52.222938601 + ], + [ + 7.1362793, + 52.221938501 + ], + [ + 7.1333347, + 52.218745601 + ], + [ + 7.1318838, + 52.217128501 + ], + [ + 7.1304428, + 52.215501301 + ], + [ + 7.1289737, + 52.213710901 + ], + [ + 7.1275702, + 52.211894601 + ], + [ + 7.1256514, + 52.209141101 + ], + [ + 7.1234467, + 52.205744201 + ], + [ + 7.1230418, + 52.205064601 + ], + [ + 7.1219236, + 52.203155101 + ], + [ + 7.1214666, + 52.202338201 + ], + [ + 7.1211663, + 52.201797001 + ], + [ + 7.1206632, + 52.200878401 + ], + [ + 7.1204944, + 52.200569001 + ], + [ + 7.1203272, + 52.200261001 + ], + [ + 7.1201606, + 52.199953101 + ], + [ + 7.1194189, + 52.198575701 + ], + [ + 7.1190017, + 52.197803401 + ], + [ + 7.1188337, + 52.197490501 + ], + [ + 7.1185942, + 52.197045201 + ], + [ + 7.118491, + 52.196854501 + ], + [ + 7.1183387, + 52.196573901 + ], + [ + 7.1181738, + 52.196267001 + ], + [ + 7.1180013, + 52.195955301 + ], + [ + 7.1178373, + 52.195654201 + ], + [ + 7.1176662, + 52.195341401 + ], + [ + 7.1174987, + 52.195036101 + ], + [ + 7.1173473, + 52.194764801 + ], + [ + 7.1171942, + 52.194491001 + ], + [ + 7.1170196, + 52.194181701 + ], + [ + 7.1168484, + 52.193878501 + ], + [ + 7.1166773, + 52.193575001 + ], + [ + 7.1165022, + 52.193269301 + ], + [ + 7.1163297, + 52.192966801 + ], + [ + 7.1161509, + 52.192661801 + ], + [ + 7.1159752, + 52.192358501 + ], + [ + 7.1157066, + 52.191902201 + ], + [ + 7.1155305, + 52.191598901 + ], + [ + 7.115348, + 52.191294201 + ], + [ + 7.1151569, + 52.190972101 + ], + [ + 7.1149743, + 52.190669501 + ], + [ + 7.1147911, + 52.190365701 + ], + [ + 7.1146077, + 52.190062201 + ], + [ + 7.1144231, + 52.189760101 + ], + [ + 7.1142361, + 52.189457001 + ], + [ + 7.1139604, + 52.189012701 + ], + [ + 7.1137703, + 52.188707901 + ], + [ + 7.1135854, + 52.188410801 + ], + [ + 7.1132972, + 52.187952301 + ], + [ + 7.1131056, + 52.187653001 + ], + [ + 7.1129018, + 52.187328101 + ], + [ + 7.1125195, + 52.186731101 + ], + [ + 7.1117206, + 52.185509301 + ], + [ + 7.1113489, + 52.184948901 + ], + [ + 7.1111551, + 52.184659901 + ], + [ + 7.1109548, + 52.184359601 + ], + [ + 7.110654, + 52.183912801 + ], + [ + 7.1103592, + 52.183479001 + ], + [ + 7.1100534, + 52.183034901 + ], + [ + 7.1096421, + 52.182437301 + ], + [ + 7.1077431, + 52.179835401 + ], + [ + 7.1058223, + 52.177238001 + ], + [ + 7.1038003, + 52.174547501 + ], + [ + 7.102823, + 52.173191101 + ], + [ + 7.1018744, + 52.171824601 + ], + [ + 7.100863, + 52.170332201 + ], + [ + 7.0998771, + 52.168831701 + ], + [ + 7.0989265, + 52.167319401 + ], + [ + 7.0980026, + 52.165799601 + ], + [ + 7.0967584, + 52.163675701 + ], + [ + 7.0955843, + 52.161531701 + ], + [ + 7.0949007, + 52.160238201 + ], + [ + 7.0942505, + 52.158936201 + ], + [ + 7.093648, + 52.157622501 + ], + [ + 7.0930739, + 52.156302601 + ], + [ + 7.0925725, + 52.155045401 + ], + [ + 7.0921129, + 52.153780301 + ], + [ + 7.0916922, + 52.152506301 + ], + [ + 7.0913147, + 52.151226101 + ], + [ + 7.0909758, + 52.149976201 + ], + [ + 7.0906819, + 52.148720501 + ], + [ + 7.0904287, + 52.147458201 + ], + [ + 7.0903183, + 52.146826001 + ], + [ + 7.0902139, + 52.146194601 + ], + [ + 7.0900193, + 52.144785201 + ], + [ + 7.0898655, + 52.143373801 + ], + [ + 7.0897707, + 52.141959101 + ], + [ + 7.0897159, + 52.140543601 + ], + [ + 7.0896527, + 52.139330601 + ], + [ + 7.0896024, + 52.138604701 + ], + [ + 7.0895842, + 52.138341201 + ], + [ + 7.0895687, + 52.138117901 + ], + [ + 7.089352, + 52.135693301 + ], + [ + 7.0891515, + 52.133954101 + ], + [ + 7.0889141, + 52.132216701 + ], + [ + 7.0886419, + 52.130484901 + ], + [ + 7.0883405, + 52.128754601 + ], + [ + 7.0881362, + 52.127728401 + ], + [ + 7.0879235, + 52.126707201 + ], + [ + 7.0874798, + 52.124663501 + ], + [ + 7.087223, + 52.123215401 + ], + [ + 7.0868877, + 52.121411701 + ], + [ + 7.0868109, + 52.120985101 + ], + [ + 7.086709, + 52.120361901 + ], + [ + 7.0865788, + 52.119470201 + ], + [ + 7.0865162, + 52.118988801 + ], + [ + 7.0864888, + 52.118798701 + ], + [ + 7.0864445, + 52.118498501 + ], + [ + 7.0863575, + 52.117812901 + ], + [ + 7.0862673, + 52.116586701 + ], + [ + 7.0861034, + 52.115190701 + ], + [ + 7.0858711, + 52.112315201 + ], + [ + 7.0857678, + 52.109425901 + ], + [ + 7.0857448, + 52.106492701 + ], + [ + 7.0857383, + 52.103560001 + ], + [ + 7.0857125, + 52.102565901 + ], + [ + 7.0856782, + 52.101571901 + ], + [ + 7.085636, + 52.101020301 + ], + [ + 7.0856246, + 52.100609901 + ], + [ + 7.085546, + 52.099648201 + ], + [ + 7.0854425, + 52.098671301 + ], + [ + 7.0853174, + 52.097695201 + ], + [ + 7.0851992, + 52.097006401 + ], + [ + 7.0849903, + 52.095747001 + ], + [ + 7.0848978, + 52.095280801 + ], + [ + 7.0847359, + 52.094465201 + ], + [ + 7.0844232, + 52.093189801 + ], + [ + 7.0840693, + 52.091915801 + ], + [ + 7.0836771, + 52.090645901 + ], + [ + 7.0832286, + 52.089352501 + ], + [ + 7.0827416, + 52.088065601 + ], + [ + 7.0822019, + 52.086789101 + ], + [ + 7.082035, + 52.086313101 + ], + [ + 7.0816623, + 52.085508001 + ], + [ + 7.0813258, + 52.084790501 + ], + [ + 7.0806594, + 52.083526901 + ], + [ + 7.0801206, + 52.082532601 + ], + [ + 7.0795456, + 52.081552601 + ], + [ + 7.0788039, + 52.080351201 + ], + [ + 7.0782482, + 52.079489201 + ], + [ + 7.0775279, + 52.078392201 + ], + [ + 7.0769871, + 52.077612501 + ], + [ + 7.0735069, + 52.072855901 + ], + [ + 7.0706212, + 52.068884301 + ], + [ + 7.0682727, + 52.065386101 + ], + [ + 7.0671854, + 52.063609801 + ], + [ + 7.0661842, + 52.061808301 + ], + [ + 7.0652915, + 52.060040601 + ], + [ + 7.0644916, + 52.058253401 + ], + [ + 7.0639176, + 52.056809901 + ], + [ + 7.0634001, + 52.055353901 + ], + [ + 7.0632383, + 52.054856601 + ], + [ + 7.0630793, + 52.054344701 + ], + [ + 7.0629301, + 52.053842501 + ], + [ + 7.062796, + 52.053316001 + ], + [ + 7.0627294, + 52.053080801 + ], + [ + 7.0626348, + 52.052670101 + ], + [ + 7.0624164, + 52.051734701 + ], + [ + 7.0622668, + 52.051095201 + ], + [ + 7.0622039, + 52.050838401 + ], + [ + 7.0619376, + 52.049235501 + ], + [ + 7.0617835, + 52.048027501 + ], + [ + 7.0617205, + 52.047569401 + ], + [ + 7.0616745, + 52.047109801 + ], + [ + 7.0616518, + 52.046907101 + ], + [ + 7.0615197, + 52.045681901 + ], + [ + 7.0614701, + 52.044507501 + ], + [ + 7.0614567, + 52.043333101 + ], + [ + 7.0614986, + 52.041196801 + ], + [ + 7.0615789, + 52.039089101 + ], + [ + 7.0616304, + 52.037802501 + ], + [ + 7.061683, + 52.036550801 + ], + [ + 7.0616926, + 52.035710401 + ], + [ + 7.0616455, + 52.033946001 + ], + [ + 7.0614614, + 52.031334801 + ], + [ + 7.0612996, + 52.030029201 + ], + [ + 7.0611189, + 52.028735201 + ], + [ + 7.0608798, + 52.027527901 + ], + [ + 7.0605909, + 52.026289001 + ], + [ + 7.0601834, + 52.024855101 + ], + [ + 7.059908, + 52.023962401 + ], + [ + 7.0596262, + 52.023035701 + ], + [ + 7.0592183, + 52.021960601 + ], + [ + 7.0584039, + 52.019975001 + ], + [ + 7.0579576, + 52.018988401 + ], + [ + 7.0574838, + 52.018006601 + ], + [ + 7.0564899, + 52.016054301 + ], + [ + 7.0542935, + 52.011808601 + ], + [ + 7.0532494, + 52.009696301 + ], + [ + 7.0527574, + 52.008634101 + ], + [ + 7.0523089, + 52.007561901 + ], + [ + 7.051482, + 52.005286201 + ], + [ + 7.0513706, + 52.004921501 + ], + [ + 7.0511856, + 52.004405701 + ], + [ + 7.0508836, + 52.003436901 + ], + [ + 7.0507751, + 52.003055001 + ], + [ + 7.0502578, + 52.000878701 + ], + [ + 7.0500534, + 51.999786801 + ], + [ + 7.0498969, + 51.998681601 + ], + [ + 7.0497041, + 51.997326301 + ], + [ + 7.0495817, + 51.995957601 + ], + [ + 7.0495717, + 51.994633701 + ], + [ + 7.0495431, + 51.993945001 + ], + [ + 7.049533, + 51.993259601 + ], + [ + 7.0495469, + 51.992282201 + ], + [ + 7.0495954, + 51.991331001 + ], + [ + 7.0496771, + 51.990225901 + ], + [ + 7.0497582, + 51.989311001 + ], + [ + 7.0499583, + 51.987461101 + ], + [ + 7.0501302, + 51.985404701 + ], + [ + 7.0501749, + 51.984558901 + ], + [ + 7.0502003, + 51.983718501 + ], + [ + 7.0502001, + 51.982873401 + ], + [ + 7.0501717, + 51.982027501 + ], + [ + 7.0500407, + 51.980330401 + ], + [ + 7.0499394, + 51.979505401 + ], + [ + 7.0498069, + 51.978647301 + ], + [ + 7.049658, + 51.977846701 + ], + [ + 7.0494784, + 51.977015501 + ], + [ + 7.0490414, + 51.975277801 + ], + [ + 7.0487229, + 51.974096501 + ], + [ + 7.0481393, + 51.971927501 + ], + [ + 7.0478709, + 51.970851701 + ], + [ + 7.0476354, + 51.969758601 + ], + [ + 7.0474378, + 51.968684901 + ], + [ + 7.0472884, + 51.967592201 + ], + [ + 7.0468993, + 51.963372501 + ], + [ + 7.046675, + 51.960614801 + ], + [ + 7.0465594, + 51.959131201 + ], + [ + 7.0461969, + 51.954652101 + ], + [ + 7.0459579, + 51.951745901 + ], + [ + 7.0458235, + 51.950120601 + ], + [ + 7.0456847, + 51.948744201 + ], + [ + 7.0454731, + 51.946986501 + ], + [ + 7.0453443, + 51.946119701 + ], + [ + 7.0452107, + 51.945249301 + ], + [ + 7.0450754, + 51.944503201 + ], + [ + 7.0450427, + 51.944348501 + ], + [ + 7.0448702, + 51.943501301 + ], + [ + 7.044662, + 51.942629401 + ], + [ + 7.0445138, + 51.942031801 + ], + [ + 7.044449, + 51.941801001 + ], + [ + 7.0443116, + 51.941321501 + ], + [ + 7.0439106, + 51.940068301 + ], + [ + 7.0435278, + 51.939006801 + ], + [ + 7.0431001, + 51.937960301 + ], + [ + 7.0429934, + 51.937709001 + ], + [ + 7.04291, + 51.937527101 + ], + [ + 7.0426896, + 51.937052701 + ], + [ + 7.0425065, + 51.936649201 + ], + [ + 7.0422913, + 51.936209401 + ], + [ + 7.0419322, + 51.935469501 + ], + [ + 7.0416632, + 51.934961601 + ], + [ + 7.0409306, + 51.933671201 + ], + [ + 7.0402055, + 51.932569901 + ], + [ + 7.0398642, + 51.932053001 + ], + [ + 7.0396257, + 51.931699501 + ], + [ + 7.0391643, + 51.931033701 + ], + [ + 7.038376, + 51.929905901 + ], + [ + 7.0374691, + 51.928665801 + ], + [ + 7.0353524, + 51.925757401 + ], + [ + 7.0339754, + 51.923824901 + ], + [ + 7.0326491, + 51.921765301 + ], + [ + 7.0318741, + 51.920478801 + ], + [ + 7.0311281, + 51.919162801 + ], + [ + 7.0304368, + 51.917846301 + ], + [ + 7.0298054, + 51.916544601 + ], + [ + 7.0290451, + 51.914856901 + ], + [ + 7.028374, + 51.913132201 + ], + [ + 7.0277937, + 51.911480101 + ], + [ + 7.0272525, + 51.909778501 + ], + [ + 7.0259199, + 51.905051001 + ], + [ + 7.0257617, + 51.904509801 + ], + [ + 7.0253988, + 51.903268501 + ], + [ + 7.0252195, + 51.902657001 + ], + [ + 7.024781, + 51.901201601 + ], + [ + 7.0244749, + 51.900234101 + ], + [ + 7.02402, + 51.898891601 + ], + [ + 7.0236757, + 51.897949701 + ], + [ + 7.0231853, + 51.896716301 + ], + [ + 7.0230825, + 51.896484701 + ], + [ + 7.0226103, + 51.895414901 + ], + [ + 7.0222003, + 51.894557901 + ], + [ + 7.0218175, + 51.893730401 + ], + [ + 7.0213329, + 51.892808901 + ], + [ + 7.0207642, + 51.891747601 + ], + [ + 7.0202526, + 51.890864401 + ], + [ + 7.0192065, + 51.889118001 + ], + [ + 7.0187203, + 51.888353801 + ], + [ + 7.0176299, + 51.886666301 + ], + [ + 7.016553, + 51.885037001 + ], + [ + 7.0159637, + 51.884140401 + ], + [ + 7.0153644, + 51.883231501 + ], + [ + 7.0142491, + 51.881527101 + ], + [ + 7.013138, + 51.879739201 + ], + [ + 7.0126803, + 51.878981601 + ], + [ + 7.0119844, + 51.877777201 + ], + [ + 7.0110966, + 51.876096901 + ], + [ + 7.0106013, + 51.875116701 + ], + [ + 7.0101723, + 51.874196601 + ], + [ + 7.0096803, + 51.873082501 + ], + [ + 7.0090871, + 51.871622001 + ], + [ + 7.0086059, + 51.870294201 + ], + [ + 7.0081574, + 51.868892101 + ], + [ + 7.0076795, + 51.867196001 + ], + [ + 7.0072834, + 51.865562001 + ], + [ + 7.0070141, + 51.864178401 + ], + [ + 7.0066731, + 51.862125601 + ], + [ + 7.0064909, + 51.860589201 + ], + [ + 7.0063913, + 51.859278201 + ], + [ + 7.0063456, + 51.858096201 + ], + [ + 7.0063362, + 51.857874901 + ], + [ + 7.0062592, + 51.855781601 + ], + [ + 7.0062366, + 51.854149101 + ], + [ + 7.0062272, + 51.853691201 + ], + [ + 7.0062139, + 51.852586301 + ], + [ + 7.0061738, + 51.851392401 + ], + [ + 7.0061555, + 51.850785801 + ], + [ + 7.0061167, + 51.850146101 + ], + [ + 7.0060781, + 51.848875601 + ], + [ + 7.0060577, + 51.848296801 + ], + [ + 7.006009, + 51.847599601 + ], + [ + 7.0059545, + 51.846960501 + ], + [ + 7.0058913, + 51.846319101 + ], + [ + 7.0058052, + 51.845579201 + ], + [ + 7.0057105, + 51.844877901 + ], + [ + 7.0055971, + 51.844125201 + ], + [ + 7.0053608, + 51.842784901 + ], + [ + 7.0049046, + 51.840750401 + ], + [ + 7.0046371, + 51.839744801 + ], + [ + 7.0043583, + 51.838788801 + ], + [ + 7.0036965, + 51.836786501 + ], + [ + 7.0033437, + 51.835836601 + ], + [ + 7.0029727, + 51.834901601 + ], + [ + 7.0025075, + 51.833804801 + ], + [ + 7.0020798, + 51.832869201 + ], + [ + 7.0011603, + 51.831016201 + ], + [ + 7.0005814, + 51.829941201 + ], + [ + 6.9999757, + 51.828878401 + ], + [ + 6.9993374, + 51.827819701 + ], + [ + 6.9986613, + 51.826762001 + ], + [ + 6.9977503, + 51.825417501 + ], + [ + 6.9967689, + 51.824045801 + ], + [ + 6.9957863, + 51.822724901 + ], + [ + 6.9946919, + 51.821314501 + ], + [ + 6.9931584, + 51.819371901 + ], + [ + 6.9916578, + 51.817483101 + ], + [ + 6.9885419, + 51.813566001 + ], + [ + 6.98505, + 51.809178201 + ], + [ + 6.9842571, + 51.808211701 + ], + [ + 6.9840365, + 51.807886501 + ], + [ + 6.9820098, + 51.805336001 + ], + [ + 6.9810977, + 51.804179201 + ], + [ + 6.9785901, + 51.801025101 + ], + [ + 6.9773393, + 51.799451301 + ], + [ + 6.9761026, + 51.797864501 + ], + [ + 6.9753014, + 51.796801201 + ], + [ + 6.9745237, + 51.795733801 + ], + [ + 6.9741943, + 51.795279901 + ], + [ + 6.9738731, + 51.794821501 + ], + [ + 6.9732308, + 51.793879201 + ], + [ + 6.9728295, + 51.793263001 + ], + [ + 6.9724481, + 51.792658601 + ], + [ + 6.9717395, + 51.791503301 + ], + [ + 6.9714032, + 51.790924601 + ], + [ + 6.9710574, + 51.790310701 + ], + [ + 6.970421, + 51.789122601 + ], + [ + 6.9698654, + 51.788037901 + ], + [ + 6.9697298, + 51.787744701 + ], + [ + 6.9692857, + 51.786788001 + ], + [ + 6.9689686, + 51.786069601 + ], + [ + 6.9686675, + 51.785349001 + ], + [ + 6.9684062, + 51.784697901 + ], + [ + 6.9679078, + 51.783358201 + ], + [ + 6.9673499, + 51.781682101 + ], + [ + 6.9671784, + 51.781116401 + ], + [ + 6.9669245, + 51.780269101 + ], + [ + 6.9667015, + 51.779339801 + ], + [ + 6.9665611, + 51.778753301 + ], + [ + 6.9664797, + 51.778391701 + ], + [ + 6.9664532, + 51.778273601 + ], + [ + 6.9664216, + 51.778133201 + ], + [ + 6.9661738, + 51.776894801 + ], + [ + 6.9659274, + 51.775357701 + ], + [ + 6.9657296, + 51.773814301 + ], + [ + 6.9656138, + 51.772270301 + ], + [ + 6.965547, + 51.770737501 + ], + [ + 6.9655405, + 51.769533601 + ], + [ + 6.9655529, + 51.768333301 + ], + [ + 6.9656346, + 51.766592701 + ], + [ + 6.9656612, + 51.766006001 + ], + [ + 6.9656941, + 51.765409101 + ], + [ + 6.9657765, + 51.763846001 + ], + [ + 6.9658415, + 51.762264601 + ], + [ + 6.965874, + 51.760704401 + ], + [ + 6.9658643, + 51.759654201 + ], + [ + 6.9658329, + 51.758801301 + ], + [ + 6.965811, + 51.758375401 + ], + [ + 6.9657766, + 51.757948301 + ], + [ + 6.9657359, + 51.757401401 + ], + [ + 6.9656764, + 51.756850201 + ], + [ + 6.9655969, + 51.756225801 + ], + [ + 6.9654976, + 51.755599301 + ], + [ + 6.965376, + 51.754866701 + ], + [ + 6.9652386, + 51.754199401 + ], + [ + 6.9650602, + 51.753405801 + ], + [ + 6.9648576, + 51.752608501 + ], + [ + 6.9647476, + 51.752219401 + ], + [ + 6.964579, + 51.751652801 + ], + [ + 6.9642683, + 51.750698401 + ], + [ + 6.9638531, + 51.749575001 + ], + [ + 6.9635049, + 51.748704201 + ], + [ + 6.9630407, + 51.747662001 + ], + [ + 6.9626758, + 51.746893601 + ], + [ + 6.962301, + 51.746164101 + ], + [ + 6.9618997, + 51.745424001 + ], + [ + 6.9614714, + 51.744670001 + ], + [ + 6.9609569, + 51.743829301 + ], + [ + 6.9606884, + 51.743405101 + ], + [ + 6.9604394, + 51.743021301 + ], + [ + 6.9600229, + 51.742397801 + ], + [ + 6.9592602, + 51.741329701 + ], + [ + 6.9582153, + 51.739977601 + ], + [ + 6.9579105, + 51.739605601 + ], + [ + 6.9573361, + 51.738920101 + ], + [ + 6.9565435, + 51.738033201 + ], + [ + 6.9562495, + 51.737712701 + ], + [ + 6.9550974, + 51.736507001 + ], + [ + 6.9541593, + 51.735589701 + ], + [ + 6.9533964, + 51.734876201 + ], + [ + 6.9525689, + 51.734131901 + ], + [ + 6.9518521, + 51.733519201 + ], + [ + 6.950714, + 51.732578901 + ], + [ + 6.9492341, + 51.731425701 + ], + [ + 6.9479465, + 51.730470501 + ], + [ + 6.9465318, + 51.729446501 + ], + [ + 6.9447662, + 51.728246701 + ], + [ + 6.9430782, + 51.726971201 + ], + [ + 6.941901, + 51.726104201 + ], + [ + 6.9407286, + 51.725216401 + ], + [ + 6.9394976, + 51.724233901 + ], + [ + 6.9382183, + 51.723146501 + ], + [ + 6.9374404, + 51.722459401 + ], + [ + 6.9368189, + 51.721877101 + ], + [ + 6.9361575, + 51.721250901 + ], + [ + 6.9352682, + 51.720361101 + ], + [ + 6.9340452, + 51.719047601 + ], + [ + 6.9332623, + 51.718159301 + ], + [ + 6.9327993, + 51.717610201 + ], + [ + 6.9324437, + 51.717163601 + ], + [ + 6.9312774, + 51.715641401 + ], + [ + 6.930547, + 51.714612801 + ], + [ + 6.930191, + 51.714074201 + ], + [ + 6.9298466, + 51.713539301 + ], + [ + 6.9294367, + 51.712874301 + ], + [ + 6.9290411, + 51.712206201 + ], + [ + 6.9285811, + 51.711378501 + ], + [ + 6.9281518, + 51.710558001 + ], + [ + 6.9277486, + 51.709737401 + ], + [ + 6.9273993, + 51.708982701 + ], + [ + 6.9270076, + 51.708081201 + ], + [ + 6.9267524, + 51.707421101 + ], + [ + 6.9264037, + 51.706558501 + ], + [ + 6.9261452, + 51.705736901 + ], + [ + 6.9259603, + 51.704990601 + ], + [ + 6.925719, + 51.704073001 + ], + [ + 6.9255866, + 51.703528701 + ], + [ + 6.9255449, + 51.703357001 + ], + [ + 6.9254449, + 51.702904501 + ], + [ + 6.9253348, + 51.702354201 + ], + [ + 6.9251497, + 51.701333701 + ], + [ + 6.9250916, + 51.701024201 + ], + [ + 6.9248969, + 51.699629101 + ], + [ + 6.9247533, + 51.698630101 + ], + [ + 6.9245368, + 51.696958401 + ], + [ + 6.9241703, + 51.694667401 + ], + [ + 6.9239154, + 51.693370501 + ], + [ + 6.9237283, + 51.692552201 + ], + [ + 6.9236131, + 51.692169901 + ], + [ + 6.9234236, + 51.691484301 + ], + [ + 6.9229907, + 51.690089901 + ], + [ + 6.922582, + 51.688962301 + ], + [ + 6.9220478, + 51.687651801 + ], + [ + 6.9218169, + 51.687109001 + ], + [ + 6.9217326, + 51.686923301 + ], + [ + 6.9209917, + 51.685225101 + ], + [ + 6.9205337, + 51.684260901 + ], + [ + 6.9200734, + 51.683294301 + ], + [ + 6.9192854, + 51.681614301 + ], + [ + 6.9191786, + 51.681386601 + ], + [ + 6.9191241, + 51.681252801 + ], + [ + 6.9190879, + 51.681167601 + ], + [ + 6.9187891, + 51.680433901 + ], + [ + 6.918619, + 51.679908801 + ], + [ + 6.9184552, + 51.679361501 + ], + [ + 6.9182973, + 51.678831901 + ], + [ + 6.9181363, + 51.678198701 + ], + [ + 6.9180429, + 51.677737101 + ], + [ + 6.917957, + 51.677250101 + ], + [ + 6.9178279, + 51.676213901 + ], + [ + 6.9178208, + 51.676089601 + ], + [ + 6.9178172, + 51.674359601 + ], + [ + 6.9178251, + 51.674196401 + ], + [ + 6.9178329, + 51.674063001 + ], + [ + 6.917905, + 51.673318201 + ], + [ + 6.9179943, + 51.672686201 + ], + [ + 6.9181882, + 51.671775601 + ], + [ + 6.9184338, + 51.670852101 + ], + [ + 6.9187626, + 51.669896301 + ], + [ + 6.9191072, + 51.669063001 + ], + [ + 6.9197127, + 51.667845801 + ], + [ + 6.9200479, + 51.667260401 + ], + [ + 6.9204208, + 51.666644601 + ], + [ + 6.9210122, + 51.665784201 + ], + [ + 6.9217085, + 51.664823101 + ], + [ + 6.9231174, + 51.663014101 + ], + [ + 6.9250554, + 51.660589201 + ], + [ + 6.9266661, + 51.658461801 + ], + [ + 6.927231, + 51.657644501 + ], + [ + 6.928045, + 51.656379601 + ], + [ + 6.9287948, + 51.655166201 + ], + [ + 6.9294866, + 51.653851401 + ], + [ + 6.9296053, + 51.653625701 + ], + [ + 6.9303649, + 51.652030201 + ], + [ + 6.9308687, + 51.650836201 + ], + [ + 6.9310635, + 51.650323101 + ], + [ + 6.9311614, + 51.650065101 + ], + [ + 6.93135, + 51.649568301 + ], + [ + 6.9315909, + 51.648772301 + ], + [ + 6.9318085, + 51.648050601 + ], + [ + 6.9320931, + 51.647009201 + ], + [ + 6.9322845, + 51.646158301 + ], + [ + 6.9324543, + 51.645306701 + ], + [ + 6.9326937, + 51.643870601 + ], + [ + 6.9327383, + 51.643444301 + ], + [ + 6.9327523, + 51.643311001 + ], + [ + 6.932845, + 51.642425801 + ], + [ + 6.9329556, + 51.640528001 + ], + [ + 6.9329932, + 51.638632501 + ], + [ + 6.9329907, + 51.638210901 + ], + [ + 6.9329881, + 51.637987801 + ], + [ + 6.9330037, + 51.636066501 + ], + [ + 6.9330457, + 51.634437401 + ], + [ + 6.9331055, + 51.633448901 + ], + [ + 6.933196, + 51.631953501 + ], + [ + 6.9332476, + 51.631491301 + ], + [ + 6.9333203, + 51.630838301 + ], + [ + 6.933402, + 51.630231201 + ], + [ + 6.9335647, + 51.629381001 + ], + [ + 6.9335741, + 51.629307801 + ], + [ + 6.9337033, + 51.628735001 + ], + [ + 6.9339112, + 51.627778601 + ], + [ + 6.9340955, + 51.627001601 + ], + [ + 6.9346222, + 51.625271301 + ], + [ + 6.9352513, + 51.623452401 + ], + [ + 6.935704, + 51.622244401 + ], + [ + 6.9357555, + 51.622106801 + ], + [ + 6.9370032, + 51.618776901 + ], + [ + 6.9384563, + 51.614808201 + ], + [ + 6.9395331, + 51.611311301 + ], + [ + 6.9395766, + 51.611168801 + ], + [ + 6.9399378, + 51.609817001 + ], + [ + 6.9402209, + 51.608461601 + ], + [ + 6.9403481, + 51.607878701 + ], + [ + 6.9404082, + 51.607603401 + ], + [ + 6.940563, + 51.606703801 + ], + [ + 6.9407109, + 51.605699301 + ], + [ + 6.9407753, + 51.605131801 + ], + [ + 6.9407893, + 51.605009101 + ], + [ + 6.94087, + 51.604298201 + ], + [ + 6.941063, + 51.602080301 + ], + [ + 6.9410821, + 51.601235601 + ], + [ + 6.9410877, + 51.600990701 + ], + [ + 6.9411113, + 51.599949601 + ], + [ + 6.9410509, + 51.597815601 + ], + [ + 6.9408439, + 51.595478801 + ], + [ + 6.9408302, + 51.595323901 + ], + [ + 6.9407343, + 51.594241301 + ], + [ + 6.9401038, + 51.590715301 + ], + [ + 6.9399777, + 51.590213401 + ], + [ + 6.9399281, + 51.590016301 + ], + [ + 6.9397097, + 51.589147201 + ], + [ + 6.9395106, + 51.588408601 + ], + [ + 6.9392769, + 51.587595001 + ], + [ + 6.9391959, + 51.587332401 + ], + [ + 6.9386888, + 51.585730701 + ], + [ + 6.9386125, + 51.585500501 + ], + [ + 6.9381656, + 51.584332001 + ], + [ + 6.9377895, + 51.583348301 + ], + [ + 6.9368489, + 51.581203701 + ], + [ + 6.9357924, + 51.579074701 + ], + [ + 6.933388, + 51.574669901 + ], + [ + 6.9314662, + 51.571192601 + ], + [ + 6.930733, + 51.569722201 + ], + [ + 6.9300628, + 51.568242001 + ], + [ + 6.9294448, + 51.566699901 + ], + [ + 6.929307, + 51.566320401 + ], + [ + 6.9289063, + 51.565217201 + ], + [ + 6.9288074, + 51.564931601 + ], + [ + 6.9283414, + 51.563454501 + ], + [ + 6.9277526, + 51.561601401 + ], + [ + 6.9271636, + 51.559721301 + ], + [ + 6.9270389, + 51.559330101 + ], + [ + 6.9269091, + 51.559000201 + ], + [ + 6.9267844, + 51.558686101 + ], + [ + 6.9266216, + 51.558380401 + ], + [ + 6.9261268, + 51.557375801 + ], + [ + 6.9258032, + 51.556453801 + ], + [ + 6.925732335, + 51.556280366 + ] + ] + } + } + ] + }, + "A33": { + "roadworks": [ + { + "identifier": "2026-017463--vi-fbm.2026-04-08_10-30-00-000.devi-fbm.2026-04-08_10-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.649864325280184,8.715778651242369,51.628628875271296,8.724483047871116", + "point": "51.649864325280184,8.715778651242369", + "startLcPosition": "4", + "impact": { + "lower": "Letzter Heller", + "upper": "Paderborn-M\u00f6nkeloh", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bielefeld -> Brilon", + "title": "A33 | Paderborn-M\u00f6nkeloh - Letzter Heller", + "coordinate": { + "lat": 51.649864325280184, + "long": 8.715778651242369 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "", + "A33: Bielefeld -> Brilon, zwischen 3.8 km hinter AS Paderborn-M\u00f6nkeloh und 0.2 km vor Letzter Heller", + "", + "L\u00e4nge: 2.44 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A33 - Baustelleneinrichtung - AkD 17463" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.715778651, + 51.649864325 + ], + [ + 8.7161193, + 51.649277001 + ], + [ + 8.7161953, + 51.649131601 + ], + [ + 8.7162956, + 51.648934501 + ], + [ + 8.7164314, + 51.648669401 + ], + [ + 8.7168376, + 51.647726901 + ], + [ + 8.7172299, + 51.646672901 + ], + [ + 8.7174353, + 51.645992901 + ], + [ + 8.7178315, + 51.644565601 + ], + [ + 8.7187418, + 51.640896901 + ], + [ + 8.7190794, + 51.639726601 + ], + [ + 8.7194854, + 51.638456101 + ], + [ + 8.7199032, + 51.637371701 + ], + [ + 8.7205055, + 51.635948901 + ], + [ + 8.7211001, + 51.634687301 + ], + [ + 8.721841, + 51.633285101 + ], + [ + 8.7223868, + 51.632307001 + ], + [ + 8.7235501, + 51.630280201 + ], + [ + 8.7244209, + 51.628742401 + ], + [ + 8.724483048, + 51.628628875 + ] + ] + } + }, + { + "identifier": "2026-017290--vi-fbm.2026-04-13_09-00-00-000.devi-fbm.2026-04-13_09-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.94314224030359,8.5428886681965,51.919853766407094,8.616776137481757", + "point": "51.94314224030359,8.5428886681965", + "startLcPosition": "13", + "impact": { + "lower": "Schlo\u00df Holte-Stukenbrock", + "upper": "Bielefeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bielefeld -> Brilon", + "title": "A33 | Bielefeld - Schlo\u00df Holte-Stukenbrock", + "coordinate": { + "lat": 51.94314224030359, + "long": 8.5428886681965 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "", + "A33: Bielefeld -> Brilon, zwischen AK Bielefeld und AS Schlo\u00df Holte-Stukenbrock", + "", + "L\u00e4nge: 5.99 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A33 - Baustelleneinrichtung - AkD 17290" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.542888668, + 51.94314224 + ], + [ + 8.5433595, + 51.943125401 + ], + [ + 8.544411, + 51.943068201 + ], + [ + 8.5453002, + 51.943005401 + ], + [ + 8.5460625, + 51.942939001 + ], + [ + 8.5474125, + 51.942806401 + ], + [ + 8.5489408, + 51.942611901 + ], + [ + 8.5492657, + 51.942573801 + ], + [ + 8.5495069, + 51.942542301 + ], + [ + 8.5497696, + 51.942506101 + ], + [ + 8.550021, + 51.942467301 + ], + [ + 8.5502813, + 51.942428701 + ], + [ + 8.5505303, + 51.942386401 + ], + [ + 8.5507871, + 51.942346601 + ], + [ + 8.551042, + 51.942300101 + ], + [ + 8.5515381, + 51.942216301 + ], + [ + 8.5520091, + 51.942129501 + ], + [ + 8.5523563, + 51.942063701 + ], + [ + 8.5530044, + 51.941932701 + ], + [ + 8.5532521, + 51.941881001 + ], + [ + 8.5535194, + 51.941824501 + ], + [ + 8.5537666, + 51.941771201 + ], + [ + 8.5539956, + 51.941720001 + ], + [ + 8.554239, + 51.941664101 + ], + [ + 8.5545045, + 51.941604801 + ], + [ + 8.5547314, + 51.941553601 + ], + [ + 8.5549669, + 51.941493701 + ], + [ + 8.5551126, + 51.941458501 + ], + [ + 8.5554507, + 51.941374701 + ], + [ + 8.5556997, + 51.941313301 + ], + [ + 8.5559433, + 51.941251201 + ], + [ + 8.5561805, + 51.941189101 + ], + [ + 8.5564283, + 51.941123801 + ], + [ + 8.556661, + 51.941059701 + ], + [ + 8.5568981, + 51.940994301 + ], + [ + 8.5571352, + 51.940927601 + ], + [ + 8.5573723, + 51.940858201 + ], + [ + 8.5576093, + 51.940787401 + ], + [ + 8.5578432, + 51.940721301 + ], + [ + 8.5580743, + 51.940650201 + ], + [ + 8.5583214, + 51.940576501 + ], + [ + 8.5585459, + 51.940505301 + ], + [ + 8.5587969, + 51.940425001 + ], + [ + 8.5590133, + 51.940355201 + ], + [ + 8.5591445, + 51.940311901 + ], + [ + 8.5594746, + 51.940203001 + ], + [ + 8.559714, + 51.940122701 + ], + [ + 8.5599438, + 51.940044401 + ], + [ + 8.5601693, + 51.939965401 + ], + [ + 8.5603985, + 51.939884701 + ], + [ + 8.5606258, + 51.939800201 + ], + [ + 8.5608376, + 51.939723801 + ], + [ + 8.5610642, + 51.939639001 + ], + [ + 8.5612929, + 51.939553501 + ], + [ + 8.5615164, + 51.939467901 + ], + [ + 8.5617398, + 51.939381701 + ], + [ + 8.5619627, + 51.939294201 + ], + [ + 8.5621846, + 51.939206801 + ], + [ + 8.5623964, + 51.939119301 + ], + [ + 8.5626177, + 51.939027201 + ], + [ + 8.5628379, + 51.938936301 + ], + [ + 8.5630551, + 51.938845101 + ], + [ + 8.5632648, + 51.938755001 + ], + [ + 8.5634681, + 51.938664901 + ], + [ + 8.5636952, + 51.938566601 + ], + [ + 8.5638981, + 51.938473001 + ], + [ + 8.5641057, + 51.938379301 + ], + [ + 8.5643212, + 51.938282201 + ], + [ + 8.5645316, + 51.938183201 + ], + [ + 8.5647388, + 51.938086101 + ], + [ + 8.5649419, + 51.937990301 + ], + [ + 8.5651485, + 51.937891601 + ], + [ + 8.5653615, + 51.937787101 + ], + [ + 8.5655687, + 51.937683001 + ], + [ + 8.5657594, + 51.937584601 + ], + [ + 8.5659695, + 51.937478501 + ], + [ + 8.5663614, + 51.937273501 + ], + [ + 8.5665634, + 51.937165601 + ], + [ + 8.5667598, + 51.937058701 + ], + [ + 8.5669654, + 51.936948401 + ], + [ + 8.5671509, + 51.936845501 + ], + [ + 8.5673467, + 51.936733701 + ], + [ + 8.567472, + 51.936661801 + ], + [ + 8.5676602, + 51.936555101 + ], + [ + 8.5678981, + 51.936417201 + ], + [ + 8.5681138, + 51.936295901 + ], + [ + 8.5683141, + 51.936178601 + ], + [ + 8.5684972, + 51.936067501 + ], + [ + 8.5686906, + 51.935949201 + ], + [ + 8.5688621, + 51.935846201 + ], + [ + 8.5690438, + 51.935735001 + ], + [ + 8.5692343, + 51.935617601 + ], + [ + 8.569416, + 51.935504701 + ], + [ + 8.5697804, + 51.935274201 + ], + [ + 8.5699625, + 51.935156801 + ], + [ + 8.5701457, + 51.935037601 + ], + [ + 8.5703274, + 51.934921001 + ], + [ + 8.5705032, + 51.934805401 + ], + [ + 8.5706835, + 51.934686601 + ], + [ + 8.5708659, + 51.934564601 + ], + [ + 8.5710351, + 51.934452901 + ], + [ + 8.5712223, + 51.934326301 + ], + [ + 8.5713933, + 51.934213901 + ], + [ + 8.5715684, + 51.934093101 + ], + [ + 8.5717393, + 51.933977501 + ], + [ + 8.5719238, + 51.933851001 + ], + [ + 8.572103, + 51.933729601 + ], + [ + 8.5722772, + 51.933610401 + ], + [ + 8.5724449, + 51.933493901 + ], + [ + 8.5726304, + 51.933364801 + ], + [ + 8.5727941, + 51.933253001 + ], + [ + 8.5729734, + 51.933127201 + ], + [ + 8.5731454, + 51.933009001 + ], + [ + 8.5733215, + 51.932887601 + ], + [ + 8.5734999, + 51.932757901 + ], + [ + 8.5736665, + 51.932644201 + ], + [ + 8.5738458, + 51.932519001 + ], + [ + 8.5740085, + 51.932403401 + ], + [ + 8.5741846, + 51.932279401 + ], + [ + 8.5743551, + 51.932158901 + ], + [ + 8.5745317, + 51.932034101 + ], + [ + 8.5747006, + 51.931917201 + ], + [ + 8.5748747, + 51.931794501 + ], + [ + 8.5750474, + 51.931673601 + ], + [ + 8.5752342, + 51.931542201 + ], + [ + 8.5753907, + 51.931431001 + ], + [ + 8.575573, + 51.931303901 + ], + [ + 8.5757398, + 51.931187601 + ], + [ + 8.5759149, + 51.931061701 + ], + [ + 8.576088, + 51.930945401 + ], + [ + 8.5762579, + 51.930826601 + ], + [ + 8.5764361, + 51.930704601 + ], + [ + 8.5766108, + 51.930584101 + ], + [ + 8.5767884, + 51.930464401 + ], + [ + 8.5769604, + 51.930345501 + ], + [ + 8.5771428, + 51.930225401 + ], + [ + 8.5773251, + 51.930103401 + ], + [ + 8.5775168, + 51.929975601 + ], + [ + 8.5776971, + 51.929856801 + ], + [ + 8.5778745, + 51.929741301 + ], + [ + 8.5780618, + 51.929620401 + ], + [ + 8.578239, + 51.929504701 + ], + [ + 8.5784213, + 51.929392301 + ], + [ + 8.5786016, + 51.929276601 + ], + [ + 8.5787928, + 51.929159101 + ], + [ + 8.5789777, + 51.929043401 + ], + [ + 8.579157, + 51.928932301 + ], + [ + 8.579349, + 51.928817201 + ], + [ + 8.5795321, + 51.928708001 + ], + [ + 8.5797227, + 51.928594901 + ], + [ + 8.5799185, + 51.928479301 + ], + [ + 8.5801064, + 51.928370301 + ], + [ + 8.5803061, + 51.928256901 + ], + [ + 8.5804926, + 51.928152801 + ], + [ + 8.5806905, + 51.928044101 + ], + [ + 8.5808807, + 51.927939601 + ], + [ + 8.581079, + 51.927832701 + ], + [ + 8.5812707, + 51.927729801 + ], + [ + 8.5814673, + 51.927624801 + ], + [ + 8.5816625, + 51.927528101 + ], + [ + 8.5819116, + 51.927398001 + ], + [ + 8.5824243, + 51.927152401 + ], + [ + 8.5831282, + 51.926824401 + ], + [ + 8.5837648, + 51.926546201 + ], + [ + 8.584215, + 51.926361501 + ], + [ + 8.5848701, + 51.926108301 + ], + [ + 8.5853186, + 51.925944401 + ], + [ + 8.5862118, + 51.925646101 + ], + [ + 8.5865055, + 51.925553401 + ], + [ + 8.5871793, + 51.925356401 + ], + [ + 8.5876753, + 51.925221401 + ], + [ + 8.5883909, + 51.925042301 + ], + [ + 8.589131, + 51.924875201 + ], + [ + 8.5901374, + 51.924680501 + ], + [ + 8.5906279, + 51.924596501 + ], + [ + 8.5911453, + 51.924514701 + ], + [ + 8.5918788, + 51.924416001 + ], + [ + 8.5921606, + 51.924382901 + ], + [ + 8.5929323, + 51.924297101 + ], + [ + 8.5937366, + 51.924233301 + ], + [ + 8.5946119, + 51.924180301 + ], + [ + 8.5953239, + 51.924155901 + ], + [ + 8.5960248, + 51.924144301 + ], + [ + 8.5966181, + 51.924149901 + ], + [ + 8.5976097, + 51.924173601 + ], + [ + 8.5984159, + 51.924213701 + ], + [ + 8.5994039, + 51.924284301 + ], + [ + 8.6002294, + 51.924351801 + ], + [ + 8.6009715, + 51.924411301 + ], + [ + 8.6022501, + 51.924502601 + ], + [ + 8.6033003, + 51.924547401 + ], + [ + 8.604156, + 51.924561101 + ], + [ + 8.6052008, + 51.924535801 + ], + [ + 8.6059584, + 51.924484001 + ], + [ + 8.6068562, + 51.924390901 + ], + [ + 8.6076767, + 51.924276601 + ], + [ + 8.60829, + 51.924167601 + ], + [ + 8.6093352, + 51.923949101 + ], + [ + 8.60996, + 51.923782101 + ], + [ + 8.610605, + 51.923594301 + ], + [ + 8.6116922, + 51.923210701 + ], + [ + 8.6123024, + 51.922962301 + ], + [ + 8.6129424, + 51.922674601 + ], + [ + 8.613516, + 51.922383601 + ], + [ + 8.6138966, + 51.922173801 + ], + [ + 8.61453, + 51.921789501 + ], + [ + 8.615038, + 51.921433001 + ], + [ + 8.6155848, + 51.921010901 + ], + [ + 8.6159097, + 51.920729601 + ], + [ + 8.6162043, + 51.920459701 + ], + [ + 8.616565, + 51.920098801 + ], + [ + 8.616776137, + 51.919853766 + ] + ] + } + }, + { + "identifier": "2026-017290--vi-fbm.2026-04-13_09-00-00-000.devi-fbm.2026-04-13_09-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.94183700063784,8.553460264522831,51.919853766407094,8.616776137481757", + "point": "51.94183700063784,8.553460264522831", + "startLcPosition": "13", + "impact": { + "lower": "Schlo\u00df Holte-Stukenbrock", + "upper": "Bielefeld", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bielefeld -> Brilon", + "title": "A33 | Bielefeld - Schlo\u00df Holte-Stukenbrock", + "coordinate": { + "lat": 51.94183700063784, + "long": 8.553460264522831 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "20.04.26 von 09:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "22.04.26 von 09:00 bis 15:00 Uhr", + "23.04.26 von 09:00 bis 15:00 Uhr", + "24.04.26 von 09:00 bis 12:00 Uhr", + "", + "A33: Bielefeld -> Brilon, zwischen 0.7 km hinter AK Bielefeld und AS Schlo\u00df Holte-Stukenbrock", + "", + "L\u00e4nge: 5.25 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A33 - Baustelleneinrichtung - AkD 17290" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.553460265, + 51.941837001 + ], + [ + 8.5535194, + 51.941824501 + ], + [ + 8.5537666, + 51.941771201 + ], + [ + 8.5539956, + 51.941720001 + ], + [ + 8.554239, + 51.941664101 + ], + [ + 8.5545045, + 51.941604801 + ], + [ + 8.5547314, + 51.941553601 + ], + [ + 8.5549669, + 51.941493701 + ], + [ + 8.5551126, + 51.941458501 + ], + [ + 8.5554507, + 51.941374701 + ], + [ + 8.5556997, + 51.941313301 + ], + [ + 8.5559433, + 51.941251201 + ], + [ + 8.5561805, + 51.941189101 + ], + [ + 8.5564283, + 51.941123801 + ], + [ + 8.556661, + 51.941059701 + ], + [ + 8.5568981, + 51.940994301 + ], + [ + 8.5571352, + 51.940927601 + ], + [ + 8.5573723, + 51.940858201 + ], + [ + 8.5576093, + 51.940787401 + ], + [ + 8.5578432, + 51.940721301 + ], + [ + 8.5580743, + 51.940650201 + ], + [ + 8.5583214, + 51.940576501 + ], + [ + 8.5585459, + 51.940505301 + ], + [ + 8.5587969, + 51.940425001 + ], + [ + 8.5590133, + 51.940355201 + ], + [ + 8.5591445, + 51.940311901 + ], + [ + 8.5594746, + 51.940203001 + ], + [ + 8.559714, + 51.940122701 + ], + [ + 8.5599438, + 51.940044401 + ], + [ + 8.5601693, + 51.939965401 + ], + [ + 8.5603985, + 51.939884701 + ], + [ + 8.5606258, + 51.939800201 + ], + [ + 8.5608376, + 51.939723801 + ], + [ + 8.5610642, + 51.939639001 + ], + [ + 8.5612929, + 51.939553501 + ], + [ + 8.5615164, + 51.939467901 + ], + [ + 8.5617398, + 51.939381701 + ], + [ + 8.5619627, + 51.939294201 + ], + [ + 8.5621846, + 51.939206801 + ], + [ + 8.5623964, + 51.939119301 + ], + [ + 8.5626177, + 51.939027201 + ], + [ + 8.5628379, + 51.938936301 + ], + [ + 8.5630551, + 51.938845101 + ], + [ + 8.5632648, + 51.938755001 + ], + [ + 8.5634681, + 51.938664901 + ], + [ + 8.5636952, + 51.938566601 + ], + [ + 8.5638981, + 51.938473001 + ], + [ + 8.5641057, + 51.938379301 + ], + [ + 8.5643212, + 51.938282201 + ], + [ + 8.5645316, + 51.938183201 + ], + [ + 8.5647388, + 51.938086101 + ], + [ + 8.5649419, + 51.937990301 + ], + [ + 8.5651485, + 51.937891601 + ], + [ + 8.5653615, + 51.937787101 + ], + [ + 8.5655687, + 51.937683001 + ], + [ + 8.5657594, + 51.937584601 + ], + [ + 8.5659695, + 51.937478501 + ], + [ + 8.5663614, + 51.937273501 + ], + [ + 8.5665634, + 51.937165601 + ], + [ + 8.5667598, + 51.937058701 + ], + [ + 8.5669654, + 51.936948401 + ], + [ + 8.5671509, + 51.936845501 + ], + [ + 8.5673467, + 51.936733701 + ], + [ + 8.567472, + 51.936661801 + ], + [ + 8.5676602, + 51.936555101 + ], + [ + 8.5678981, + 51.936417201 + ], + [ + 8.5681138, + 51.936295901 + ], + [ + 8.5683141, + 51.936178601 + ], + [ + 8.5684972, + 51.936067501 + ], + [ + 8.5686906, + 51.935949201 + ], + [ + 8.5688621, + 51.935846201 + ], + [ + 8.5690438, + 51.935735001 + ], + [ + 8.5692343, + 51.935617601 + ], + [ + 8.569416, + 51.935504701 + ], + [ + 8.5697804, + 51.935274201 + ], + [ + 8.5699625, + 51.935156801 + ], + [ + 8.5701457, + 51.935037601 + ], + [ + 8.5703274, + 51.934921001 + ], + [ + 8.5705032, + 51.934805401 + ], + [ + 8.5706835, + 51.934686601 + ], + [ + 8.5708659, + 51.934564601 + ], + [ + 8.5710351, + 51.934452901 + ], + [ + 8.5712223, + 51.934326301 + ], + [ + 8.5713933, + 51.934213901 + ], + [ + 8.5715684, + 51.934093101 + ], + [ + 8.5717393, + 51.933977501 + ], + [ + 8.5719238, + 51.933851001 + ], + [ + 8.572103, + 51.933729601 + ], + [ + 8.5722772, + 51.933610401 + ], + [ + 8.5724449, + 51.933493901 + ], + [ + 8.5726304, + 51.933364801 + ], + [ + 8.5727941, + 51.933253001 + ], + [ + 8.5729734, + 51.933127201 + ], + [ + 8.5731454, + 51.933009001 + ], + [ + 8.5733215, + 51.932887601 + ], + [ + 8.5734999, + 51.932757901 + ], + [ + 8.5736665, + 51.932644201 + ], + [ + 8.5738458, + 51.932519001 + ], + [ + 8.5740085, + 51.932403401 + ], + [ + 8.5741846, + 51.932279401 + ], + [ + 8.5743551, + 51.932158901 + ], + [ + 8.5745317, + 51.932034101 + ], + [ + 8.5747006, + 51.931917201 + ], + [ + 8.5748747, + 51.931794501 + ], + [ + 8.5750474, + 51.931673601 + ], + [ + 8.5752342, + 51.931542201 + ], + [ + 8.5753907, + 51.931431001 + ], + [ + 8.575573, + 51.931303901 + ], + [ + 8.5757398, + 51.931187601 + ], + [ + 8.5759149, + 51.931061701 + ], + [ + 8.576088, + 51.930945401 + ], + [ + 8.5762579, + 51.930826601 + ], + [ + 8.5764361, + 51.930704601 + ], + [ + 8.5766108, + 51.930584101 + ], + [ + 8.5767884, + 51.930464401 + ], + [ + 8.5769604, + 51.930345501 + ], + [ + 8.5771428, + 51.930225401 + ], + [ + 8.5773251, + 51.930103401 + ], + [ + 8.5775168, + 51.929975601 + ], + [ + 8.5776971, + 51.929856801 + ], + [ + 8.5778745, + 51.929741301 + ], + [ + 8.5780618, + 51.929620401 + ], + [ + 8.578239, + 51.929504701 + ], + [ + 8.5784213, + 51.929392301 + ], + [ + 8.5786016, + 51.929276601 + ], + [ + 8.5787928, + 51.929159101 + ], + [ + 8.5789777, + 51.929043401 + ], + [ + 8.579157, + 51.928932301 + ], + [ + 8.579349, + 51.928817201 + ], + [ + 8.5795321, + 51.928708001 + ], + [ + 8.5797227, + 51.928594901 + ], + [ + 8.5799185, + 51.928479301 + ], + [ + 8.5801064, + 51.928370301 + ], + [ + 8.5803061, + 51.928256901 + ], + [ + 8.5804926, + 51.928152801 + ], + [ + 8.5806905, + 51.928044101 + ], + [ + 8.5808807, + 51.927939601 + ], + [ + 8.581079, + 51.927832701 + ], + [ + 8.5812707, + 51.927729801 + ], + [ + 8.5814673, + 51.927624801 + ], + [ + 8.5816625, + 51.927528101 + ], + [ + 8.5819116, + 51.927398001 + ], + [ + 8.5824243, + 51.927152401 + ], + [ + 8.5831282, + 51.926824401 + ], + [ + 8.5837648, + 51.926546201 + ], + [ + 8.584215, + 51.926361501 + ], + [ + 8.5848701, + 51.926108301 + ], + [ + 8.5853186, + 51.925944401 + ], + [ + 8.5862118, + 51.925646101 + ], + [ + 8.5865055, + 51.925553401 + ], + [ + 8.5871793, + 51.925356401 + ], + [ + 8.5876753, + 51.925221401 + ], + [ + 8.5883909, + 51.925042301 + ], + [ + 8.589131, + 51.924875201 + ], + [ + 8.5901374, + 51.924680501 + ], + [ + 8.5906279, + 51.924596501 + ], + [ + 8.5911453, + 51.924514701 + ], + [ + 8.5918788, + 51.924416001 + ], + [ + 8.5921606, + 51.924382901 + ], + [ + 8.5929323, + 51.924297101 + ], + [ + 8.5937366, + 51.924233301 + ], + [ + 8.5946119, + 51.924180301 + ], + [ + 8.5953239, + 51.924155901 + ], + [ + 8.5960248, + 51.924144301 + ], + [ + 8.5966181, + 51.924149901 + ], + [ + 8.5976097, + 51.924173601 + ], + [ + 8.5984159, + 51.924213701 + ], + [ + 8.5994039, + 51.924284301 + ], + [ + 8.6002294, + 51.924351801 + ], + [ + 8.6009715, + 51.924411301 + ], + [ + 8.6022501, + 51.924502601 + ], + [ + 8.6033003, + 51.924547401 + ], + [ + 8.604156, + 51.924561101 + ], + [ + 8.6052008, + 51.924535801 + ], + [ + 8.6059584, + 51.924484001 + ], + [ + 8.6068562, + 51.924390901 + ], + [ + 8.6076767, + 51.924276601 + ], + [ + 8.60829, + 51.924167601 + ], + [ + 8.6093352, + 51.923949101 + ], + [ + 8.60996, + 51.923782101 + ], + [ + 8.610605, + 51.923594301 + ], + [ + 8.6116922, + 51.923210701 + ], + [ + 8.6123024, + 51.922962301 + ], + [ + 8.6129424, + 51.922674601 + ], + [ + 8.613516, + 51.922383601 + ], + [ + 8.6138966, + 51.922173801 + ], + [ + 8.61453, + 51.921789501 + ], + [ + 8.615038, + 51.921433001 + ], + [ + 8.6155848, + 51.921010901 + ], + [ + 8.6159097, + 51.920729601 + ], + [ + 8.6162043, + 51.920459701 + ], + [ + 8.616565, + 51.920098801 + ], + [ + 8.616776137, + 51.919853766 + ] + ] + } + }, + { + "identifier": "2026-000600--vi-bs.2026-01-26_19-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.93905947762469,8.562540145034328,51.919853766407094,8.616776137481757", + "point": "51.93905947762469,8.562540145034328", + "startLcPosition": "13", + "impact": { + "lower": "Schlo\u00df Holte-Stukenbrock", + "upper": "Bielefeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bielefeld -> Brilon", + "title": "A33 | Bielefeld - Schlo\u00df Holte-Stukenbrock", + "startTimestamp": "2026-02-08T09:00:00+01:00", + "coordinate": { + "lat": 51.93905947762469, + "long": 8.562540145034328 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.02.26 um 09:00 Uhr", + "Ende: 01.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A33: Bielefeld -> Brilon, zwischen 1.4 km hinter AK Bielefeld und AS Schlo\u00df Holte-Stukenbrock", + "", + "L\u00e4nge: 4.55 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A33 - Sanierung L\u00e4rmschutzwand - AlD 0600" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.562540145, + 51.939059478 + ], + [ + 8.5626177, + 51.939027201 + ], + [ + 8.5628379, + 51.938936301 + ], + [ + 8.5630551, + 51.938845101 + ], + [ + 8.5632648, + 51.938755001 + ], + [ + 8.5634681, + 51.938664901 + ], + [ + 8.5636952, + 51.938566601 + ], + [ + 8.5638981, + 51.938473001 + ], + [ + 8.5641057, + 51.938379301 + ], + [ + 8.5643212, + 51.938282201 + ], + [ + 8.5645316, + 51.938183201 + ], + [ + 8.5647388, + 51.938086101 + ], + [ + 8.5649419, + 51.937990301 + ], + [ + 8.5651485, + 51.937891601 + ], + [ + 8.5653615, + 51.937787101 + ], + [ + 8.5655687, + 51.937683001 + ], + [ + 8.5657594, + 51.937584601 + ], + [ + 8.5659695, + 51.937478501 + ], + [ + 8.5663614, + 51.937273501 + ], + [ + 8.5665634, + 51.937165601 + ], + [ + 8.5667598, + 51.937058701 + ], + [ + 8.5669654, + 51.936948401 + ], + [ + 8.5671509, + 51.936845501 + ], + [ + 8.5673467, + 51.936733701 + ], + [ + 8.567472, + 51.936661801 + ], + [ + 8.5676602, + 51.936555101 + ], + [ + 8.5678981, + 51.936417201 + ], + [ + 8.5681138, + 51.936295901 + ], + [ + 8.5683141, + 51.936178601 + ], + [ + 8.5684972, + 51.936067501 + ], + [ + 8.5686906, + 51.935949201 + ], + [ + 8.5688621, + 51.935846201 + ], + [ + 8.5690438, + 51.935735001 + ], + [ + 8.5692343, + 51.935617601 + ], + [ + 8.569416, + 51.935504701 + ], + [ + 8.5697804, + 51.935274201 + ], + [ + 8.5699625, + 51.935156801 + ], + [ + 8.5701457, + 51.935037601 + ], + [ + 8.5703274, + 51.934921001 + ], + [ + 8.5705032, + 51.934805401 + ], + [ + 8.5706835, + 51.934686601 + ], + [ + 8.5708659, + 51.934564601 + ], + [ + 8.5710351, + 51.934452901 + ], + [ + 8.5712223, + 51.934326301 + ], + [ + 8.5713933, + 51.934213901 + ], + [ + 8.5715684, + 51.934093101 + ], + [ + 8.5717393, + 51.933977501 + ], + [ + 8.5719238, + 51.933851001 + ], + [ + 8.572103, + 51.933729601 + ], + [ + 8.5722772, + 51.933610401 + ], + [ + 8.5724449, + 51.933493901 + ], + [ + 8.5726304, + 51.933364801 + ], + [ + 8.5727941, + 51.933253001 + ], + [ + 8.5729734, + 51.933127201 + ], + [ + 8.5731454, + 51.933009001 + ], + [ + 8.5733215, + 51.932887601 + ], + [ + 8.5734999, + 51.932757901 + ], + [ + 8.5736665, + 51.932644201 + ], + [ + 8.5738458, + 51.932519001 + ], + [ + 8.5740085, + 51.932403401 + ], + [ + 8.5741846, + 51.932279401 + ], + [ + 8.5743551, + 51.932158901 + ], + [ + 8.5745317, + 51.932034101 + ], + [ + 8.5747006, + 51.931917201 + ], + [ + 8.5748747, + 51.931794501 + ], + [ + 8.5750474, + 51.931673601 + ], + [ + 8.5752342, + 51.931542201 + ], + [ + 8.5753907, + 51.931431001 + ], + [ + 8.575573, + 51.931303901 + ], + [ + 8.5757398, + 51.931187601 + ], + [ + 8.5759149, + 51.931061701 + ], + [ + 8.576088, + 51.930945401 + ], + [ + 8.5762579, + 51.930826601 + ], + [ + 8.5764361, + 51.930704601 + ], + [ + 8.5766108, + 51.930584101 + ], + [ + 8.5767884, + 51.930464401 + ], + [ + 8.5769604, + 51.930345501 + ], + [ + 8.5771428, + 51.930225401 + ], + [ + 8.5773251, + 51.930103401 + ], + [ + 8.5775168, + 51.929975601 + ], + [ + 8.5776971, + 51.929856801 + ], + [ + 8.5778745, + 51.929741301 + ], + [ + 8.5780618, + 51.929620401 + ], + [ + 8.578239, + 51.929504701 + ], + [ + 8.5784213, + 51.929392301 + ], + [ + 8.5786016, + 51.929276601 + ], + [ + 8.5787928, + 51.929159101 + ], + [ + 8.5789777, + 51.929043401 + ], + [ + 8.579157, + 51.928932301 + ], + [ + 8.579349, + 51.928817201 + ], + [ + 8.5795321, + 51.928708001 + ], + [ + 8.5797227, + 51.928594901 + ], + [ + 8.5799185, + 51.928479301 + ], + [ + 8.5801064, + 51.928370301 + ], + [ + 8.5803061, + 51.928256901 + ], + [ + 8.5804926, + 51.928152801 + ], + [ + 8.5806905, + 51.928044101 + ], + [ + 8.5808807, + 51.927939601 + ], + [ + 8.581079, + 51.927832701 + ], + [ + 8.5812707, + 51.927729801 + ], + [ + 8.5814673, + 51.927624801 + ], + [ + 8.5816625, + 51.927528101 + ], + [ + 8.5819116, + 51.927398001 + ], + [ + 8.5824243, + 51.927152401 + ], + [ + 8.5831282, + 51.926824401 + ], + [ + 8.5837648, + 51.926546201 + ], + [ + 8.584215, + 51.926361501 + ], + [ + 8.5848701, + 51.926108301 + ], + [ + 8.5853186, + 51.925944401 + ], + [ + 8.5862118, + 51.925646101 + ], + [ + 8.5865055, + 51.925553401 + ], + [ + 8.5871793, + 51.925356401 + ], + [ + 8.5876753, + 51.925221401 + ], + [ + 8.5883909, + 51.925042301 + ], + [ + 8.589131, + 51.924875201 + ], + [ + 8.5901374, + 51.924680501 + ], + [ + 8.5906279, + 51.924596501 + ], + [ + 8.5911453, + 51.924514701 + ], + [ + 8.5918788, + 51.924416001 + ], + [ + 8.5921606, + 51.924382901 + ], + [ + 8.5929323, + 51.924297101 + ], + [ + 8.5937366, + 51.924233301 + ], + [ + 8.5946119, + 51.924180301 + ], + [ + 8.5953239, + 51.924155901 + ], + [ + 8.5960248, + 51.924144301 + ], + [ + 8.5966181, + 51.924149901 + ], + [ + 8.5976097, + 51.924173601 + ], + [ + 8.5984159, + 51.924213701 + ], + [ + 8.5994039, + 51.924284301 + ], + [ + 8.6002294, + 51.924351801 + ], + [ + 8.6009715, + 51.924411301 + ], + [ + 8.6022501, + 51.924502601 + ], + [ + 8.6033003, + 51.924547401 + ], + [ + 8.604156, + 51.924561101 + ], + [ + 8.6052008, + 51.924535801 + ], + [ + 8.6059584, + 51.924484001 + ], + [ + 8.6068562, + 51.924390901 + ], + [ + 8.6076767, + 51.924276601 + ], + [ + 8.60829, + 51.924167601 + ], + [ + 8.6093352, + 51.923949101 + ], + [ + 8.60996, + 51.923782101 + ], + [ + 8.610605, + 51.923594301 + ], + [ + 8.6116922, + 51.923210701 + ], + [ + 8.6123024, + 51.922962301 + ], + [ + 8.6129424, + 51.922674601 + ], + [ + 8.613516, + 51.922383601 + ], + [ + 8.6138966, + 51.922173801 + ], + [ + 8.61453, + 51.921789501 + ], + [ + 8.615038, + 51.921433001 + ], + [ + 8.6155848, + 51.921010901 + ], + [ + 8.6159097, + 51.920729601 + ], + [ + 8.6162043, + 51.920459701 + ], + [ + 8.616565, + 51.920098801 + ], + [ + 8.616776137, + 51.919853766 + ] + ] + } + }, + { + "identifier": "2026-016813--vi-bs.2026-04-09_08-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.09576254429865,8.211832313627722,52.09427205507459,8.216278239755159", + "point": "52.09576254429865,8.211832313627722", + "startLcPosition": "20", + "impact": { + "lower": "Borgholzhausen", + "upper": "Dissen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bielefeld", + "title": "A33 | Dissen-S\u00fcd - Borgholzhausen", + "coordinate": { + "lat": 52.09576254429865, + "long": 8.211832313627722 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "", + "A33: Osnabr\u00fcck -> Bielefeld, zwischen 1.2 km hinter AS Dissen-S\u00fcd und 2.7 km vor AS Borgholzhausen", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A33 - Bauwerksarbeiten - AkD 16813" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.211832314, + 52.095762544 + ], + [ + 8.2118656, + 52.095751601 + ], + [ + 8.2144832, + 52.094906301 + ], + [ + 8.21627824, + 52.094272055 + ] + ] + } + }, + { + "identifier": "2023-004601--vi-bs.2025-12-17_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_019.f.de35", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.16993870816566,8.156338032710893,52.17620980432649,8.152325466228843", + "point": "52.16993870816566,8.156338032710893", + "startLcPosition": "23", + "impact": { + "lower": "Borgloh/Kloster Oesede", + "upper": "Hilter am Teutoburger Wald", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bielefeld -> Osnabr\u00fcck", + "title": "A33 | Hilter am Teutoburger Wald - Borgloh/Kloster Oesede", + "startTimestamp": "2025-12-17T19:00:00+01:00", + "coordinate": { + "lat": 52.16993870816566, + "long": 8.156338032710893 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.12.25 um 19:00 Uhr", + "Ende: 05.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.02.28)", + "", + "A33: Bielefeld -> Osnabr\u00fcck, zwischen 3.1 km hinter AS Hilter am Teutoburger Wald und 2.8 km vor AS Borgloh/Kloster Oesede", + "", + "L\u00e4nge: 0.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A33 - Fahrbahnverbreiterung - AlD 4601" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.156338033, + 52.169938708 + ], + [ + 8.1556515, + 52.170952801 + ], + [ + 8.1542493, + 52.173095901 + ], + [ + 8.1534133, + 52.174351901 + ], + [ + 8.1533323, + 52.174486901 + ], + [ + 8.152325466, + 52.176209804 + ] + ] + } + }, + { + "identifier": "2026-017777--vi-bs.2026-04-22_08-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.149968075626376,8.156593586052052,52.15172284088434,8.15715731751524", + "point": "52.149968075626376,8.156593586052052", + "startLcPosition": "23", + "impact": { + "lower": "Teutoburger Wald", + "upper": "Hilter am Teutoburger Wald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bielefeld -> Osnabr\u00fcck", + "title": "A33 | Hilter am Teutoburger Wald - Teutoburger Wald", + "coordinate": { + "lat": 52.149968075626376, + "long": 8.156593586052052 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 08:00 bis 09:00 Uhr", + "", + "A33: Bielefeld -> Osnabr\u00fcck, zwischen 0.8 km hinter AS Hilter am Teutoburger Wald und 2.1 km vor Teutoburger Wald", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A33 - Beseitigung Unfallfolgen - AkD 17777" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.156593586, + 52.149968076 + ], + [ + 8.1566551, + 52.150275001 + ], + [ + 8.1567925, + 52.150769601 + ], + [ + 8.1571383, + 52.151681801 + ], + [ + 8.157157318, + 52.151722841 + ] + ] + } + }, + { + "identifier": "2023-004601--vi-bs.2025-12-17_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_019.f.de37", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.17620980432649,8.152325466228843,52.22597596515384,8.095985888389434", + "point": "52.17620980432649,8.152325466228843", + "startLcPosition": "24", + "impact": { + "lower": "Osnabr\u00fcck-S\u00fcd", + "upper": "Teutoburger Wald", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bielefeld -> Osnabr\u00fcck", + "title": "A33 | Teutoburger Wald - Osnabr\u00fcck-S\u00fcd", + "startTimestamp": "2025-12-17T19:00:00+01:00", + "coordinate": { + "lat": 52.17620980432649, + "long": 8.152325466228843 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.12.25 um 19:00 Uhr", + "Ende: 05.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.02.28)", + "", + "A33: Bielefeld -> Osnabr\u00fcck, zwischen 0.7 km hinter Teutoburger Wald und 2.3 km vor AK Osnabr\u00fcck-S\u00fcd", + "", + "L\u00e4nge: 7.05 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A33 - Fahrbahnverbreiterung - AlD 4601" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.152325466, + 52.176209804 + ], + [ + 8.1519065, + 52.176926701 + ], + [ + 8.1506681, + 52.179396801 + ], + [ + 8.1495853, + 52.181929101 + ], + [ + 8.1486953, + 52.184499801 + ], + [ + 8.147921, + 52.187141201 + ], + [ + 8.1471757, + 52.189796201 + ], + [ + 8.1462338, + 52.192622501 + ], + [ + 8.1461027, + 52.192944601 + ], + [ + 8.1456597, + 52.193991101 + ], + [ + 8.1450878, + 52.195127201 + ], + [ + 8.1444754, + 52.196234801 + ], + [ + 8.1441213, + 52.196799901 + ], + [ + 8.1436727, + 52.197495701 + ], + [ + 8.1435326, + 52.197695101 + ], + [ + 8.1430042, + 52.198430001 + ], + [ + 8.1427271, + 52.198795101 + ], + [ + 8.1422009, + 52.199450101 + ], + [ + 8.1416507, + 52.200098701 + ], + [ + 8.1414361, + 52.200348901 + ], + [ + 8.1409001, + 52.200952001 + ], + [ + 8.1405634, + 52.201311801 + ], + [ + 8.140267, + 52.201614301 + ], + [ + 8.1398645, + 52.202005101 + ], + [ + 8.1396514, + 52.202214301 + ], + [ + 8.1388034, + 52.203015001 + ], + [ + 8.1382009, + 52.203559101 + ], + [ + 8.1377739, + 52.203944501 + ], + [ + 8.1372401, + 52.204386601 + ], + [ + 8.1366889, + 52.204825501 + ], + [ + 8.1357203, + 52.205556301 + ], + [ + 8.1352714, + 52.205880001 + ], + [ + 8.13481, + 52.206199701 + ], + [ + 8.1340684, + 52.206702601 + ], + [ + 8.1336929, + 52.206954101 + ], + [ + 8.1333075, + 52.207198101 + ], + [ + 8.1325516, + 52.207670801 + ], + [ + 8.1317806, + 52.208130501 + ], + [ + 8.1312025, + 52.208467101 + ], + [ + 8.1305918, + 52.208806901 + ], + [ + 8.1300317, + 52.209115501 + ], + [ + 8.129459, + 52.209417101 + ], + [ + 8.1288904, + 52.209711301 + ], + [ + 8.1283215, + 52.209997401 + ], + [ + 8.1257877, + 52.211202801 + ], + [ + 8.1231381, + 52.212376801 + ], + [ + 8.1228639, + 52.212492701 + ], + [ + 8.1223909, + 52.212688501 + ], + [ + 8.1204742, + 52.213488301 + ], + [ + 8.1181465, + 52.214440001 + ], + [ + 8.1159014, + 52.215353301 + ], + [ + 8.1145044, + 52.215924501 + ], + [ + 8.113807, + 52.216216201 + ], + [ + 8.1117633, + 52.217071501 + ], + [ + 8.1104945, + 52.217617901 + ], + [ + 8.1092399, + 52.218178401 + ], + [ + 8.1083543, + 52.218578001 + ], + [ + 8.1069619, + 52.219234901 + ], + [ + 8.1055967, + 52.219904501 + ], + [ + 8.1042605, + 52.220588701 + ], + [ + 8.10362, + 52.220938001 + ], + [ + 8.1024718, + 52.221578101 + ], + [ + 8.1017052, + 52.222031701 + ], + [ + 8.1007195, + 52.222631801 + ], + [ + 8.0998823, + 52.223164501 + ], + [ + 8.0990636, + 52.223704001 + ], + [ + 8.0985067, + 52.224085301 + ], + [ + 8.0982189, + 52.224287301 + ], + [ + 8.097926, + 52.224498301 + ], + [ + 8.0966843, + 52.225413801 + ], + [ + 8.095985888, + 52.225975965 + ] + ] + } + }, + { + "identifier": "2023-004601--vi-bs.2025-12-17_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_019.f.de51", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.22597596515384,8.095985888389434,52.2294272744007,8.092340393557214", + "point": "52.22597596515384,8.095985888389434", + "startLcPosition": "26", + "impact": { + "lower": "Osnabr\u00fcck-S\u00fcd", + "upper": "Harderberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bielefeld -> Osnabr\u00fcck", + "title": "A33 | Harderberg - Osnabr\u00fcck-S\u00fcd", + "startTimestamp": "2025-12-17T19:00:00+01:00", + "coordinate": { + "lat": 52.22597596515384, + "long": 8.095985888389434 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.12.25 um 19:00 Uhr", + "Ende: 05.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.02.28)", + "", + "A33: Bielefeld -> Osnabr\u00fcck, zwischen 0.2 km hinter AS Harderberg und 1.9 km vor AK Osnabr\u00fcck-S\u00fcd", + "", + "L\u00e4nge: 0.46 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A33 - Fahrbahnverbreiterung - AlD 4601" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.095985888, + 52.225975965 + ], + [ + 8.0957032, + 52.226203501 + ], + [ + 8.0943701, + 52.227358101 + ], + [ + 8.0940128, + 52.227692001 + ], + [ + 8.0937736, + 52.227925101 + ], + [ + 8.0930812, + 52.228619701 + ], + [ + 8.0928214, + 52.228891901 + ], + [ + 8.0925719, + 52.229164701 + ], + [ + 8.092340394, + 52.229427274 + ] + ] + } + }, + { + "identifier": "2023-004601--vi-bs.2025-12-17_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_019.f.de39", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.22591712372413,8.095861290125258,52.17617668168817,8.15217512592206", + "point": "52.22591712372413,8.095861290125258", + "startLcPosition": "27", + "impact": { + "lower": "Teutoburger Wald", + "upper": "Osnabr\u00fcck-S\u00fcd", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bielefeld", + "title": "A33 | Osnabr\u00fcck-S\u00fcd - Teutoburger Wald", + "startTimestamp": "2025-12-17T19:00:00+01:00", + "coordinate": { + "lat": 52.22591712372413, + "long": 8.095861290125258 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.12.25 um 19:00 Uhr", + "Ende: 05.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.02.28)", + "", + "A33: Osnabr\u00fcck -> Bielefeld, zwischen 2.4 km hinter AK Osnabr\u00fcck-S\u00fcd und 0.7 km vor Teutoburger Wald", + "", + "L\u00e4nge: 7.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A33 - Fahrbahnverbreiterung - AlD 4601" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.09586129, + 52.225917124 + ], + [ + 8.0965656, + 52.225362401 + ], + [ + 8.0977533, + 52.224473001 + ], + [ + 8.0980311, + 52.224272401 + ], + [ + 8.0989555, + 52.223634401 + ], + [ + 8.099771, + 52.223095501 + ], + [ + 8.100406, + 52.222686701 + ], + [ + 8.1006167, + 52.222551101 + ], + [ + 8.1016783, + 52.221910301 + ], + [ + 8.1023707, + 52.221504301 + ], + [ + 8.1035228, + 52.220865401 + ], + [ + 8.1042236, + 52.220485601 + ], + [ + 8.1055284, + 52.219812501 + ], + [ + 8.1068702, + 52.219153301 + ], + [ + 8.1082614, + 52.218503101 + ], + [ + 8.1091461, + 52.218098801 + ], + [ + 8.1104019, + 52.217539901 + ], + [ + 8.1116642, + 52.216995001 + ], + [ + 8.1137252, + 52.216129101 + ], + [ + 8.1144105, + 52.215848101 + ], + [ + 8.1158099, + 52.215274201 + ], + [ + 8.1180375, + 52.214365101 + ], + [ + 8.1203892, + 52.213407301 + ], + [ + 8.1222949, + 52.212614501 + ], + [ + 8.1227864, + 52.212412101 + ], + [ + 8.1231075, + 52.212274601 + ], + [ + 8.1256787, + 52.211131601 + ], + [ + 8.1282025, + 52.209930901 + ], + [ + 8.1287844, + 52.209639801 + ], + [ + 8.1293544, + 52.209346501 + ], + [ + 8.1299204, + 52.209047301 + ], + [ + 8.1304966, + 52.208730901 + ], + [ + 8.1311046, + 52.208388201 + ], + [ + 8.1317036, + 52.208040201 + ], + [ + 8.1324121, + 52.207622301 + ], + [ + 8.1332016, + 52.207133501 + ], + [ + 8.1335789, + 52.206888401 + ], + [ + 8.1339369, + 52.206646001 + ], + [ + 8.1346866, + 52.206139701 + ], + [ + 8.1351547, + 52.205815001 + ], + [ + 8.1356068, + 52.205485701 + ], + [ + 8.1365468, + 52.204777001 + ], + [ + 8.137102, + 52.204332401 + ], + [ + 8.1376443, + 52.203881801 + ], + [ + 8.1380542, + 52.203512901 + ], + [ + 8.1386703, + 52.202955601 + ], + [ + 8.1395091, + 52.202175201 + ], + [ + 8.1397126, + 52.201980001 + ], + [ + 8.1401114, + 52.201581401 + ], + [ + 8.1404204, + 52.201265901 + ], + [ + 8.1407471, + 52.200909901 + ], + [ + 8.1411795, + 52.200417901 + ], + [ + 8.1414275, + 52.200143301 + ], + [ + 8.1420533, + 52.199414701 + ], + [ + 8.1425757, + 52.198759901 + ], + [ + 8.1428526, + 52.198390501 + ], + [ + 8.1433805, + 52.197654601 + ], + [ + 8.1435118, + 52.197468501 + ], + [ + 8.143956, + 52.196775301 + ], + [ + 8.1442956, + 52.196193801 + ], + [ + 8.1448458, + 52.195241701 + ], + [ + 8.1451554, + 52.194678901 + ], + [ + 8.145481, + 52.194007501 + ], + [ + 8.14595, + 52.192914701 + ], + [ + 8.1460874, + 52.192576401 + ], + [ + 8.1470075, + 52.189786901 + ], + [ + 8.1477611, + 52.187132501 + ], + [ + 8.1485542, + 52.184434301 + ], + [ + 8.1494262, + 52.181901801 + ], + [ + 8.1505118, + 52.179398301 + ], + [ + 8.1510882, + 52.178183201 + ], + [ + 8.1517637, + 52.176885701 + ], + [ + 8.152175126, + 52.176176682 + ] + ] + } + }, + { + "identifier": "2023-004601--vi-bs.2025-12-17_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_019.f.de41", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.236556650093355,8.087952530675073,52.22591712372413,8.095861290125258", + "point": "52.236556650093355,8.087952530675073", + "startLcPosition": "27", + "impact": { + "lower": "Harderberg", + "upper": "Osnabr\u00fcck-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Osnabr\u00fcck -> Bielefeld", + "title": "A33 | Osnabr\u00fcck-S\u00fcd - Harderberg", + "startTimestamp": "2025-12-17T19:00:00+01:00", + "coordinate": { + "lat": 52.236556650093355, + "long": 8.087952530675073 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.12.25 um 19:00 Uhr", + "Ende: 05.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.02.28)", + "", + "A33: Osnabr\u00fcck -> Bielefeld, zwischen 1.0 km hinter AK Osnabr\u00fcck-S\u00fcd und 0.2 km vor AS Harderberg", + "", + "L\u00e4nge: 1.31 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A33 - Fahrbahnverbreiterung - AlD 4601" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.087952531, + 52.23655665 + ], + [ + 8.0879566, + 52.236542901 + ], + [ + 8.0881524, + 52.235983401 + ], + [ + 8.088256, + 52.235705101 + ], + [ + 8.0884346, + 52.235271601 + ], + [ + 8.088613, + 52.234856801 + ], + [ + 8.0887511, + 52.234553801 + ], + [ + 8.0890864, + 52.233872001 + ], + [ + 8.0894136, + 52.233262101 + ], + [ + 8.089821, + 52.232566601 + ], + [ + 8.0903884, + 52.231686701 + ], + [ + 8.0910305, + 52.230792601 + ], + [ + 8.0914736, + 52.230229201 + ], + [ + 8.0919414, + 52.229669501 + ], + [ + 8.0924243, + 52.229129701 + ], + [ + 8.0926779, + 52.228851701 + ], + [ + 8.092937, + 52.228575601 + ], + [ + 8.0936328, + 52.227881601 + ], + [ + 8.0938691, + 52.227650301 + ], + [ + 8.0940153, + 52.227510601 + ], + [ + 8.0942415, + 52.227303101 + ], + [ + 8.0949016, + 52.226705201 + ], + [ + 8.0955957, + 52.226126301 + ], + [ + 8.09586129, + 52.225917124 + ] + ] + } + }, + { + "identifier": "2026-017506--vi-bs.2026-04-10_09-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.261489991030395,8.097083529146245,52.26342387513755,8.098964430232925", + "point": "52.261489991030395,8.097083529146245", + "startLcPosition": "28", + "impact": { + "lower": "Osnabr\u00fcck-L\u00fcstringen", + "upper": "Osnabr\u00fcck-Fledder", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bielefeld -> Osnabr\u00fcck", + "title": "A33 | Osnabr\u00fcck-Fledder - Osnabr\u00fcck-L\u00fcstringen", + "coordinate": { + "lat": 52.261489991030395, + "long": 8.097083529146245 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 13:00 Uhr", + "", + "A33: Bielefeld -> Osnabr\u00fcck, zwischen 0.7 km hinter AS Osnabr\u00fcck-Fledder und 0.5 km vor AS Osnabr\u00fcck-L\u00fcstringen", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A33 - Fahrbahninstandsetzung - AkD 17506" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.097083529, + 52.261489991 + ], + [ + 8.0973395, + 52.261779501 + ], + [ + 8.097985, + 52.262453401 + ], + [ + 8.0984563, + 52.262923701 + ], + [ + 8.09896443, + 52.263423875 + ] + ] + } + }, + { + "identifier": "2023-004601--vi-bs.2025-12-17_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_019.f.de49", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.22391949344701,8.097331159065368,52.22335612025854,8.09912870721119", + "point": "52.22391949344701,8.097331159065368", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Harderberg (aus Richtung Osnabr\u00fcck-S\u00fcd)", + "title": "A33 - Fahrbahnverbreiterung - AlD 4601", + "startTimestamp": "2025-12-17T19:00:00+01:00", + "coordinate": { + "lat": 52.22391949344701, + "long": 8.097331159065368 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.12.25 um 19:00 Uhr", + "Ende: 05.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.02.28)", + "", + "Auffahrt auf die A33: AS Harderberg (aus Richtung Osnabr\u00fcck-S\u00fcd)", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A33 - Fahrbahnverbreiterung - AlD 4601" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.097331159, + 52.223919493 + ], + [ + 8.0975531, + 52.223877901 + ], + [ + 8.0979182, + 52.223793601 + ], + [ + 8.098256, + 52.223699601 + ], + [ + 8.0986099, + 52.223577901 + ], + [ + 8.0991152, + 52.223361601 + ], + [ + 8.099128707, + 52.22335612 + ] + ] + } + }, + { + "identifier": "2023-004601--vi-bs.2025-12-17_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_019.f.de47", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.225221360426836,8.096393158471077,52.22438766216198,8.095934568831973", + "point": "52.225221360426836,8.096393158471077", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Harderberg (aus Richtung Osnabr\u00fcck-S\u00fcd)", + "title": "A33 - Fahrbahnverbreiterung - AlD 4601", + "startTimestamp": "2025-12-17T19:00:00+01:00", + "coordinate": { + "lat": 52.225221360426836, + "long": 8.096393158471077 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.12.25 um 19:00 Uhr", + "Ende: 05.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.02.28)", + "", + "Abfahrt von der A33: AS Harderberg (aus Richtung Osnabr\u00fcck-S\u00fcd)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A33 - Fahrbahnverbreiterung - AlD 4601" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.096393158, + 52.22522136 + ], + [ + 8.0964226, + 52.225150201 + ], + [ + 8.0964292, + 52.225001601 + ], + [ + 8.0963858, + 52.224840401 + ], + [ + 8.0963097, + 52.224704501 + ], + [ + 8.0961698, + 52.224547501 + ], + [ + 8.0960741, + 52.224477801 + ], + [ + 8.095934569, + 52.224387662 + ] + ] + } + }, + { + "identifier": "2023-004601--vi-bs.2025-12-17_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_019.f.de45", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.19935096849923,8.141178753444814,52.19766284406662,8.143096979677155", + "point": "52.19935096849923,8.141178753444814", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Borgloh/Kloster Oesede (aus Richtung Harderberg)", + "title": "A33 - Fahrbahnverbreiterung - AlD 4601", + "startTimestamp": "2025-12-17T19:00:00+01:00", + "coordinate": { + "lat": 52.19935096849923, + "long": 8.141178753444814 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.12.25 um 19:00 Uhr", + "Ende: 05.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.02.28)", + "", + "Auffahrt auf die A33: AS Borgloh/Kloster Oesede (aus Richtung Harderberg)", + "", + "L\u00e4nge: 0.23 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A33 - Fahrbahnverbreiterung - AlD 4601" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.141178753, + 52.199350968 + ], + [ + 8.1421158, + 52.198554801 + ], + [ + 8.1430688, + 52.197688101 + ], + [ + 8.14309698, + 52.197662844 + ] + ] + } + }, + { + "identifier": "2023-004601--vi-bs.2025-12-17_19-00-00-000.devi-zus.2024-05-02_19-00-00-000_019.f.de43", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.20176738239115,8.139776629414342,52.200969961045274,8.139837994429362", + "point": "52.20176738239115,8.139776629414342", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Borgloh/Kloster Oesede (aus Richtung Harderberg)", + "title": "A33 - Fahrbahnverbreiterung - AlD 4601", + "startTimestamp": "2025-12-17T19:00:00+01:00", + "coordinate": { + "lat": 52.20176738239115, + "long": 8.139776629414342 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.12.25 um 19:00 Uhr", + "Ende: 05.11.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.02.28)", + "", + "Abfahrt von der A33: AS Borgloh/Kloster Oesede (aus Richtung Harderberg)", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A33 - Fahrbahnverbreiterung - AlD 4601" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.139776629, + 52.201767382 + ], + [ + 8.1398034, + 52.201723601 + ], + [ + 8.1399428, + 52.201379601 + ], + [ + 8.1399486, + 52.201143201 + ], + [ + 8.1398798, + 52.200997401 + ], + [ + 8.139837994, + 52.200969961 + ] + ] + } + } + ] + }, + "A36": { + "roadworks": [ + { + "identifier": "2026-017803--vi-bs.2026-04-10_09-00-00-000_012.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.949736405560046,10.584335640741996,51.958978391008344,10.578898643721239", + "point": "51.949736405560046,10.584335640741996", + "startLcPosition": "15", + "impact": { + "lower": "Vienenburg-Nord", + "upper": "Vienenburg-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Vienenburg -> Wolfenb\u00fcttel", + "title": "A36 | Vienenburg-Ost - Vienenburg-Nord", + "coordinate": { + "lat": 51.949736405560046, + "long": 10.584335640741996 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 18:00 Uhr", + "", + "A36: Vienenburg -> Wolfenb\u00fcttel, zwischen AS Vienenburg-Ost und AS Vienenburg-Nord", + "", + "L\u00e4nge: 1.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A36 von Vienenburg-Ost (AS) nach Vienenburg-Nord (AS) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.584335641, + 51.949736406 + ], + [ + 10.584161, + 51.950523601 + ], + [ + 10.5839813, + 51.951104001 + ], + [ + 10.5838104, + 51.951591301 + ], + [ + 10.5836078, + 51.952012901 + ], + [ + 10.5834087, + 51.952396801 + ], + [ + 10.5832146, + 51.952735001 + ], + [ + 10.5830379, + 51.953012601 + ], + [ + 10.580746, + 51.956312501 + ], + [ + 10.5797084, + 51.957811401 + ], + [ + 10.578898644, + 51.958978391 + ] + ] + } + }, + { + "identifier": "2024-003228--vi-bs.2026-03-08_12-00-00-000.devi-zus.2025-09-15_00-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.938128746035524,10.612982935259797,51.872590279708895,10.755356501299934", + "point": "51.938128746035524,10.612982935259797", + "startLcPosition": "16", + "impact": { + "lower": "Wernigerode-Nord", + "upper": "Nordharz", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Vienenburg -> A14 Autobahnkreuz Bernburg", + "title": "A36 | Nordharz - Wernigerode-Nord", + "startTimestamp": "2026-03-08T12:00:00+01:00", + "coordinate": { + "lat": 51.938128746035524, + "long": 10.612982935259797 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.03.26 um 12:00 Uhr", + "Ende: 21.11.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.11.26)", + "", + "A36: Vienenburg -> A14 Autobahnkreuz Bernburg, zwischen 2.2 km hinter AD Nordharz und 0.5 km vor Wernigerode-Nord", + "", + "L\u00e4nge: 12.6 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A36 1.TA RF BS Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.612982935, + 51.938128746 + ], + [ + 10.6130775, + 51.938120001 + ], + [ + 10.6139899, + 51.938032001 + ], + [ + 10.6145629, + 51.937975801 + ], + [ + 10.6166269, + 51.937778601 + ], + [ + 10.6178617, + 51.937664701 + ], + [ + 10.6189447, + 51.937558401 + ], + [ + 10.6208636, + 51.937359001 + ], + [ + 10.6220565, + 51.937235201 + ], + [ + 10.6231258, + 51.937114201 + ], + [ + 10.6245804, + 51.936927201 + ], + [ + 10.6253738, + 51.936827101 + ], + [ + 10.6257178, + 51.936778001 + ], + [ + 10.6261921, + 51.936710101 + ], + [ + 10.6281469, + 51.936416101 + ], + [ + 10.6291412, + 51.936259001 + ], + [ + 10.631123, + 51.935881301 + ], + [ + 10.632264, + 51.935630601 + ], + [ + 10.6336324, + 51.935312601 + ], + [ + 10.6338809, + 51.935251901 + ], + [ + 10.6344223, + 51.935113301 + ], + [ + 10.6347627, + 51.935022101 + ], + [ + 10.6354241, + 51.934841301 + ], + [ + 10.6360722, + 51.934654101 + ], + [ + 10.6371943, + 51.934313401 + ], + [ + 10.6376453, + 51.934168601 + ], + [ + 10.63816, + 51.933999101 + ], + [ + 10.6386555, + 51.933831101 + ], + [ + 10.6395173, + 51.933524601 + ], + [ + 10.6401514, + 51.933288401 + ], + [ + 10.6414245, + 51.932788401 + ], + [ + 10.6425822, + 51.932304201 + ], + [ + 10.6436619, + 51.931813801 + ], + [ + 10.64461, + 51.931356701 + ], + [ + 10.6453615, + 51.930974101 + ], + [ + 10.6463213, + 51.930460401 + ], + [ + 10.646694, + 51.930251401 + ], + [ + 10.6468745, + 51.930150301 + ], + [ + 10.6470558, + 51.930048601 + ], + [ + 10.6472044, + 51.929965301 + ], + [ + 10.6481672, + 51.929390301 + ], + [ + 10.6491551, + 51.928764301 + ], + [ + 10.6505288, + 51.927825201 + ], + [ + 10.6512806, + 51.927266301 + ], + [ + 10.6516124, + 51.927016701 + ], + [ + 10.6520562, + 51.926680701 + ], + [ + 10.6533373, + 51.925663001 + ], + [ + 10.6549399, + 51.924302201 + ], + [ + 10.6563649, + 51.923047501 + ], + [ + 10.6566066, + 51.922822601 + ], + [ + 10.6578044, + 51.921754701 + ], + [ + 10.6582269, + 51.921361901 + ], + [ + 10.6595321, + 51.920194501 + ], + [ + 10.6612433, + 51.918660401 + ], + [ + 10.6614576, + 51.918467101 + ], + [ + 10.6617469, + 51.918215901 + ], + [ + 10.6629232, + 51.917189001 + ], + [ + 10.6634464, + 51.916739601 + ], + [ + 10.665032, + 51.915378401 + ], + [ + 10.665872, + 51.914677601 + ], + [ + 10.6666773, + 51.914022201 + ], + [ + 10.66745, + 51.913386401 + ], + [ + 10.6690195, + 51.912143501 + ], + [ + 10.6703758, + 51.911107701 + ], + [ + 10.6720435, + 51.909887901 + ], + [ + 10.6730012, + 51.909193401 + ], + [ + 10.6741161, + 51.908428901 + ], + [ + 10.6748641, + 51.907916001 + ], + [ + 10.6755097, + 51.907493801 + ], + [ + 10.6761788, + 51.907068501 + ], + [ + 10.6769727, + 51.906578001 + ], + [ + 10.6774892, + 51.906268001 + ], + [ + 10.6779353, + 51.906005701 + ], + [ + 10.6783904, + 51.905746301 + ], + [ + 10.678852, + 51.905488301 + ], + [ + 10.6793185, + 51.905233701 + ], + [ + 10.6797958, + 51.904981301 + ], + [ + 10.6802603, + 51.904736201 + ], + [ + 10.6810205, + 51.904357101 + ], + [ + 10.6822473, + 51.903779201 + ], + [ + 10.6834685, + 51.903251901 + ], + [ + 10.6839493, + 51.903054301 + ], + [ + 10.6844163, + 51.902868801 + ], + [ + 10.685102, + 51.902607501 + ], + [ + 10.6858095, + 51.902347901 + ], + [ + 10.6868588, + 51.901995501 + ], + [ + 10.6878471, + 51.901681901 + ], + [ + 10.6897005, + 51.901142201 + ], + [ + 10.6916981, + 51.900586601 + ], + [ + 10.6937305, + 51.900024201 + ], + [ + 10.6954125, + 51.899542501 + ], + [ + 10.6965325, + 51.899198501 + ], + [ + 10.6978049, + 51.898769101 + ], + [ + 10.6989364, + 51.898344501 + ], + [ + 10.6999879, + 51.897936001 + ], + [ + 10.700317, + 51.897794001 + ], + [ + 10.7006488, + 51.897650901 + ], + [ + 10.7011098, + 51.897452001 + ], + [ + 10.702388, + 51.896842601 + ], + [ + 10.7034984, + 51.896280701 + ], + [ + 10.7042551, + 51.895862201 + ], + [ + 10.7051394, + 51.895349201 + ], + [ + 10.7058875, + 51.894875701 + ], + [ + 10.7067263, + 51.894328801 + ], + [ + 10.7068626, + 51.894231901 + ], + [ + 10.707, + 51.894134201 + ], + [ + 10.7071954, + 51.893995301 + ], + [ + 10.7074866, + 51.893788401 + ], + [ + 10.7075822, + 51.893720401 + ], + [ + 10.7084726, + 51.893052501 + ], + [ + 10.7092562, + 51.892371401 + ], + [ + 10.7095418, + 51.892136501 + ], + [ + 10.7095838, + 51.892100001 + ], + [ + 10.7102509, + 51.891486601 + ], + [ + 10.7110166, + 51.890782701 + ], + [ + 10.7116414, + 51.890180201 + ], + [ + 10.7123501, + 51.889500101 + ], + [ + 10.7127301, + 51.889142001 + ], + [ + 10.7131156, + 51.888784501 + ], + [ + 10.7133899, + 51.888535501 + ], + [ + 10.7136729, + 51.888283401 + ], + [ + 10.7138998, + 51.888086601 + ], + [ + 10.714129, + 51.887890501 + ], + [ + 10.7143904, + 51.887672201 + ], + [ + 10.7147851, + 51.887354401 + ], + [ + 10.7150502, + 51.887148201 + ], + [ + 10.7152861, + 51.886969801 + ], + [ + 10.7157118, + 51.886656401 + ], + [ + 10.7162337, + 51.886295601 + ], + [ + 10.7167152, + 51.885978201 + ], + [ + 10.7169686, + 51.885816801 + ], + [ + 10.7172422, + 51.885647101 + ], + [ + 10.7176409, + 51.885408201 + ], + [ + 10.718412, + 51.884970501 + ], + [ + 10.7189937, + 51.884660401 + ], + [ + 10.7192384, + 51.884535001 + ], + [ + 10.7195794, + 51.884364201 + ], + [ + 10.7207471, + 51.883812301 + ], + [ + 10.7219014, + 51.883333901 + ], + [ + 10.7229503, + 51.882925801 + ], + [ + 10.7238812, + 51.882599401 + ], + [ + 10.7256697, + 51.882057001 + ], + [ + 10.726108, + 51.881936501 + ], + [ + 10.7272345, + 51.881640701 + ], + [ + 10.7285133, + 51.881323301 + ], + [ + 10.7312185, + 51.880701401 + ], + [ + 10.7314065, + 51.880657101 + ], + [ + 10.7316123, + 51.880608601 + ], + [ + 10.732414, + 51.880419801 + ], + [ + 10.7338986, + 51.880051901 + ], + [ + 10.7350862, + 51.879724101 + ], + [ + 10.7361251, + 51.879419701 + ], + [ + 10.7373624, + 51.879002801 + ], + [ + 10.7384944, + 51.878596001 + ], + [ + 10.7390309, + 51.878383301 + ], + [ + 10.7400822, + 51.877947901 + ], + [ + 10.7439845, + 51.876244301 + ], + [ + 10.7456093, + 51.875530201 + ], + [ + 10.7473686, + 51.874817201 + ], + [ + 10.7483828, + 51.874438501 + ], + [ + 10.7495903, + 51.874029801 + ], + [ + 10.7505949, + 51.873722501 + ], + [ + 10.7515442, + 51.873457601 + ], + [ + 10.7525575, + 51.873195801 + ], + [ + 10.7535867, + 51.872945501 + ], + [ + 10.7539217, + 51.872872701 + ], + [ + 10.7541079, + 51.872832701 + ], + [ + 10.7546894, + 51.872715201 + ], + [ + 10.755356501, + 51.87259028 + ] + ] + } + }, + { + "identifier": "2026-012337--vi-bs.2026-04-07_09-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.94529011683523,10.585273066735793,51.96957344475745,10.56857083114292", + "point": "51.94529011683523,10.585273066735793", + "startLcPosition": "16", + "impact": { + "lower": "Lengde", + "upper": "Nordharz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " A14 Autobahnkreuz Bernburg -> Wolfenb\u00fcttel", + "title": "A36 | Nordharz - Lengde", + "coordinate": { + "lat": 51.94529011683523, + "long": 10.585273066735793 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:00 Uhr", + "10.04.26 von 09:00 bis 16:00 Uhr", + "", + "A36: A14 Autobahnkreuz Bernburg -> Wolfenb\u00fcttel, zwischen 0.8 km hinter AD Nordharz und 2.1 km vor AS Lengde", + "", + "L\u00e4nge: 2.99 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A36 - Kanalarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.585273067, + 51.945290117 + ], + [ + 10.5852605, + 51.945350301 + ], + [ + 10.5851918, + 51.945679401 + ], + [ + 10.5849435, + 51.946868601 + ], + [ + 10.5848718, + 51.947212001 + ], + [ + 10.5845379, + 51.948811201 + ], + [ + 10.5844908, + 51.949037001 + ], + [ + 10.584161, + 51.950523601 + ], + [ + 10.5839813, + 51.951104001 + ], + [ + 10.5838104, + 51.951591301 + ], + [ + 10.5836078, + 51.952012901 + ], + [ + 10.5834087, + 51.952396801 + ], + [ + 10.5832146, + 51.952735001 + ], + [ + 10.5830379, + 51.953012601 + ], + [ + 10.580746, + 51.956312501 + ], + [ + 10.5797084, + 51.957811401 + ], + [ + 10.578896, + 51.958982201 + ], + [ + 10.5775851, + 51.960854401 + ], + [ + 10.5769518, + 51.961762901 + ], + [ + 10.5757656, + 51.963464601 + ], + [ + 10.5750184, + 51.964528201 + ], + [ + 10.5739379, + 51.966063301 + ], + [ + 10.5736896, + 51.966380001 + ], + [ + 10.5734121, + 51.966676801 + ], + [ + 10.5730873, + 51.966990701 + ], + [ + 10.5727521, + 51.967278001 + ], + [ + 10.5723032, + 51.967600001 + ], + [ + 10.5719243, + 51.967835601 + ], + [ + 10.57155, + 51.968050801 + ], + [ + 10.5711597, + 51.968254901 + ], + [ + 10.5703892, + 51.968652701 + ], + [ + 10.568570831, + 51.969573445 + ] + ] + } + }, + { + "identifier": "2024-003228--vi-bs.2026-03-08_12-00-00-000.devi-zus.2025-09-15_00-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.87268584123215,10.7554026456941,51.93822495736241,10.613006510528844", + "point": "51.87268584123215,10.7554026456941", + "startLcPosition": "20", + "impact": { + "lower": "Nordharz", + "upper": "Wernigerode-Nord", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " A14 Autobahnkreuz Bernburg -> Vienenburg", + "title": "A36 | Wernigerode-Nord - Nordharz", + "startTimestamp": "2026-03-08T12:00:00+01:00", + "coordinate": { + "lat": 51.87268584123215, + "long": 10.7554026456941 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.03.26 um 12:00 Uhr", + "Ende: 21.11.26 um 13:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.11.26)", + "", + "A36: A14 Autobahnkreuz Bernburg -> Vienenburg, zwischen 0.5 km hinter Wernigerode-Nord und 2.0 km vor AD Nordharz", + "", + "L\u00e4nge: 12.6 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A36 1.TA RF BS Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.755402646, + 51.872685841 + ], + [ + 10.7551676, + 51.872728801 + ], + [ + 10.754731, + 51.872812901 + ], + [ + 10.7541377, + 51.872931901 + ], + [ + 10.7539624, + 51.872968401 + ], + [ + 10.7536407, + 51.873039901 + ], + [ + 10.7526194, + 51.873286601 + ], + [ + 10.7516125, + 51.873548801 + ], + [ + 10.7506603, + 51.873812501 + ], + [ + 10.7496501, + 51.874122601 + ], + [ + 10.7484741, + 51.874522201 + ], + [ + 10.7474606, + 51.874899201 + ], + [ + 10.7457125, + 51.875607701 + ], + [ + 10.7439933, + 51.876371601 + ], + [ + 10.7401923, + 51.878029501 + ], + [ + 10.7390946, + 51.878471801 + ], + [ + 10.7385549, + 51.878690401 + ], + [ + 10.7374598, + 51.879086101 + ], + [ + 10.7362191, + 51.879499601 + ], + [ + 10.7351586, + 51.879815401 + ], + [ + 10.7339398, + 51.880150401 + ], + [ + 10.73248, + 51.880507201 + ], + [ + 10.7316136, + 51.880712401 + ], + [ + 10.7314093, + 51.880760801 + ], + [ + 10.7312752, + 51.880792601 + ], + [ + 10.7285507, + 51.881424501 + ], + [ + 10.7272879, + 51.881731401 + ], + [ + 10.7261827, + 51.882026701 + ], + [ + 10.7257448, + 51.882144901 + ], + [ + 10.723949, + 51.882690201 + ], + [ + 10.723065, + 51.883006001 + ], + [ + 10.7219662, + 51.883421201 + ], + [ + 10.7208325, + 51.883898901 + ], + [ + 10.7195898, + 51.884485601 + ], + [ + 10.719282, + 51.884640701 + ], + [ + 10.7189803, + 51.884797401 + ], + [ + 10.7186809, + 51.884956901 + ], + [ + 10.7183872, + 51.885116801 + ], + [ + 10.718083, + 51.885288301 + ], + [ + 10.7177485, + 51.885483801 + ], + [ + 10.717432, + 51.885673601 + ], + [ + 10.717141, + 51.885849901 + ], + [ + 10.7168737, + 51.886019401 + ], + [ + 10.7166012, + 51.886196501 + ], + [ + 10.7163346, + 51.886376101 + ], + [ + 10.7158534, + 51.886709201 + ], + [ + 10.7156423, + 51.886862701 + ], + [ + 10.7154226, + 51.887025001 + ], + [ + 10.7151655, + 51.887218601 + ], + [ + 10.714926, + 51.887405801 + ], + [ + 10.7146552, + 51.887623301 + ], + [ + 10.7144447, + 51.887794701 + ], + [ + 10.7142227, + 51.887982001 + ], + [ + 10.7140148, + 51.888162401 + ], + [ + 10.7138754, + 51.888285401 + ], + [ + 10.7137889, + 51.888359401 + ], + [ + 10.7135377, + 51.888580801 + ], + [ + 10.7132746, + 51.888818801 + ], + [ + 10.7128146, + 51.889244901 + ], + [ + 10.7123625, + 51.889669201 + ], + [ + 10.7117813, + 51.890228001 + ], + [ + 10.7111441, + 51.890836601 + ], + [ + 10.709687, + 51.892180501 + ], + [ + 10.7096336, + 51.892227101 + ], + [ + 10.709341, + 51.892482501 + ], + [ + 10.7085883, + 51.893114801 + ], + [ + 10.7077063, + 51.893781201 + ], + [ + 10.707609, + 51.893851201 + ], + [ + 10.7073315, + 51.894050801 + ], + [ + 10.707144, + 51.894185601 + ], + [ + 10.7070099, + 51.894282001 + ], + [ + 10.7068746, + 51.894379301 + ], + [ + 10.7060562, + 51.894917401 + ], + [ + 10.7052512, + 51.895421301 + ], + [ + 10.7044088, + 51.895913201 + ], + [ + 10.703607, + 51.896352001 + ], + [ + 10.7025365, + 51.896901701 + ], + [ + 10.7012248, + 51.897521201 + ], + [ + 10.7008996, + 51.897660101 + ], + [ + 10.7005603, + 51.897804901 + ], + [ + 10.7001151, + 51.897995001 + ], + [ + 10.6990423, + 51.898424201 + ], + [ + 10.6979172, + 51.898844001 + ], + [ + 10.6965548, + 51.899303901 + ], + [ + 10.6954947, + 51.899631401 + ], + [ + 10.6938039, + 51.900117701 + ], + [ + 10.6917288, + 51.900692401 + ], + [ + 10.6897487, + 51.901236101 + ], + [ + 10.6879164, + 51.901771801 + ], + [ + 10.6869087, + 51.902087801 + ], + [ + 10.6858911, + 51.902435101 + ], + [ + 10.6852414, + 51.902670801 + ], + [ + 10.6846512, + 51.902895001 + ], + [ + 10.6840961, + 51.903113001 + ], + [ + 10.6835392, + 51.903340701 + ], + [ + 10.6831064, + 51.903525101 + ], + [ + 10.682641, + 51.903728601 + ], + [ + 10.6823822, + 51.903844301 + ], + [ + 10.6817834, + 51.904120001 + ], + [ + 10.681084, + 51.904453401 + ], + [ + 10.6804884, + 51.904751001 + ], + [ + 10.6802539, + 51.904870501 + ], + [ + 10.6800684, + 51.904967601 + ], + [ + 10.6798085, + 51.905103101 + ], + [ + 10.6793392, + 51.905353301 + ], + [ + 10.6788771, + 51.905606101 + ], + [ + 10.6785621, + 51.905782301 + ], + [ + 10.6782462, + 51.905962601 + ], + [ + 10.6779619, + 51.906126501 + ], + [ + 10.6776904, + 51.906287001 + ], + [ + 10.6771468, + 51.906617201 + ], + [ + 10.6766151, + 51.906944201 + ], + [ + 10.6748755, + 51.908066801 + ], + [ + 10.6740948, + 51.908593301 + ], + [ + 10.6731133, + 51.909271901 + ], + [ + 10.6721927, + 51.909936101 + ], + [ + 10.6705164, + 51.911168401 + ], + [ + 10.6691581, + 51.912202701 + ], + [ + 10.6675777, + 51.913445501 + ], + [ + 10.6668216, + 51.914063301 + ], + [ + 10.6660054, + 51.914734001 + ], + [ + 10.6651578, + 51.915430101 + ], + [ + 10.6648739, + 51.915677801 + ], + [ + 10.6635748, + 51.916787001 + ], + [ + 10.6633478, + 51.916986001 + ], + [ + 10.6632169, + 51.917104801 + ], + [ + 10.6618798, + 51.918262901 + ], + [ + 10.6601473, + 51.919819301 + ], + [ + 10.6599569, + 51.919989901 + ], + [ + 10.6596614, + 51.920249601 + ], + [ + 10.6585283, + 51.921262401 + ], + [ + 10.6581861, + 51.921571901 + ], + [ + 10.6565152, + 51.923085801 + ], + [ + 10.655054, + 51.924370901 + ], + [ + 10.6534609, + 51.925723101 + ], + [ + 10.6521597, + 51.926755701 + ], + [ + 10.6517523, + 51.927068501 + ], + [ + 10.6514156, + 51.927327001 + ], + [ + 10.6506584, + 51.927882901 + ], + [ + 10.6492594, + 51.928840301 + ], + [ + 10.6482748, + 51.929463501 + ], + [ + 10.6473093, + 51.930039601 + ], + [ + 10.6470328, + 51.930194601 + ], + [ + 10.6468596, + 51.930291601 + ], + [ + 10.6464091, + 51.930544101 + ], + [ + 10.645458, + 51.931050701 + ], + [ + 10.644699, + 51.931436001 + ], + [ + 10.6436395, + 51.931945001 + ], + [ + 10.6431529, + 51.932166201 + ], + [ + 10.6426474, + 51.932392101 + ], + [ + 10.6415316, + 51.932864301 + ], + [ + 10.6409139, + 51.933111401 + ], + [ + 10.6402273, + 51.933377201 + ], + [ + 10.6396935, + 51.933574901 + ], + [ + 10.6391189, + 51.933782201 + ], + [ + 10.6387634, + 51.933906901 + ], + [ + 10.6383591, + 51.934045801 + ], + [ + 10.6377405, + 51.934250101 + ], + [ + 10.637369, + 51.934370901 + ], + [ + 10.6366662, + 51.934587201 + ], + [ + 10.6361069, + 51.934753701 + ], + [ + 10.6354643, + 51.934938801 + ], + [ + 10.6347857, + 51.935124601 + ], + [ + 10.6342775, + 51.935258801 + ], + [ + 10.6337503, + 51.935392701 + ], + [ + 10.632309, + 51.935728901 + ], + [ + 10.6311309, + 51.935982501 + ], + [ + 10.629198, + 51.936348901 + ], + [ + 10.6280136, + 51.936544701 + ], + [ + 10.6265159, + 51.936761401 + ], + [ + 10.6256524, + 51.936883901 + ], + [ + 10.6253315, + 51.936928101 + ], + [ + 10.6248642, + 51.936984201 + ], + [ + 10.6231836, + 51.937201901 + ], + [ + 10.6220863, + 51.937326901 + ], + [ + 10.6208906, + 51.937455701 + ], + [ + 10.6189771, + 51.937655601 + ], + [ + 10.6178808, + 51.937764501 + ], + [ + 10.6166528, + 51.937876301 + ], + [ + 10.6145828, + 51.938073101 + ], + [ + 10.6140107, + 51.938130001 + ], + [ + 10.6130378, + 51.938222001 + ], + [ + 10.613006511, + 51.938224957 + ] + ] + } + }, + { + "identifier": "2026-017289--vi-bs.2026-04-09_12-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.80473423472937,11.00488961555425,51.804776574271465,11.005612895468298", + "point": "51.80473423472937,11.00488961555425", + "startLcPosition": "24", + "impact": { + "lower": "Thale", + "upper": "Blankenburg Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Vienenburg -> A14 Autobahnkreuz Bernburg", + "title": "A36 | Blankenburg Ost - Thale", + "coordinate": { + "lat": 51.80473423472937, + "long": 11.00488961555425 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 12:00 bis 16:00 Uhr", + "", + "A36: Vienenburg -> A14 Autobahnkreuz Bernburg, zwischen 0.5 km hinter Blankenburg Ost und 1.7 km vor Thale", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A36 von Blankenburg Ost nach Thale Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.004889616, + 51.804734235 + ], + [ + 11.0055482, + 51.804772201 + ], + [ + 11.005612895, + 51.804776574 + ] + ] + } + }, + { + "identifier": "2026-017293--vi-bs.2026-04-13_07-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.81473830095324,11.161628085387816,51.813940235679574,11.166897652536901", + "point": "51.81473830095324,11.161628085387816", + "startLcPosition": "26", + "impact": { + "lower": "Quedlinburg Ost", + "upper": "Quedlinburg Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Vienenburg -> A14 Autobahnkreuz Bernburg", + "title": "A36 | Quedlinburg Zentrum - Quedlinburg Ost", + "coordinate": { + "lat": 51.81473830095324, + "long": 11.161628085387816 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 18:00 Uhr", + "", + "A36: Vienenburg -> A14 Autobahnkreuz Bernburg, zwischen 2.4 km hinter Quedlinburg Zentrum und 2.1 km vor Quedlinburg Ost", + "", + "L\u00e4nge: 0.38 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A36 von Quedlinburg Zentrum nach Quedlinburg Ost Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.161628085, + 51.814738301 + ], + [ + 11.1619701, + 51.814704201 + ], + [ + 11.1636392, + 51.814486101 + ], + [ + 11.1650289, + 51.814278601 + ], + [ + 11.165987, + 51.814112001 + ], + [ + 11.166897653, + 51.813940236 + ] + ] + } + }, + { + "identifier": "2026-017399--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_006.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.803925628469074,11.268384048347851,51.8040429292586,11.272579712803632", + "point": "51.803925628469074,11.268384048347851", + "startLcPosition": "27", + "impact": { + "lower": "Hoym", + "upper": "Quedlinburg Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Vienenburg -> A14 Autobahnkreuz Bernburg", + "title": "A36 | Quedlinburg Ost - Hoym", + "coordinate": { + "lat": 51.803925628469074, + "long": 11.268384048347851 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 09:30 Uhr", + "", + "A36: Vienenburg -> A14 Autobahnkreuz Bernburg, zwischen 5.2 km hinter Quedlinburg Ost und 4.0 km vor Hoym", + "", + "L\u00e4nge: 0.29 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A36 von Quedlinburg Ost nach Hoym Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.268384048, + 51.803925628 + ], + [ + 11.2687912, + 51.803944401 + ], + [ + 11.2693281, + 51.803962601 + ], + [ + 11.269937, + 51.803983801 + ], + [ + 11.270547, + 51.804000601 + ], + [ + 11.2716876, + 51.804027301 + ], + [ + 11.272579713, + 51.804042929 + ] + ] + } + }, + { + "identifier": "2026-017399--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_006.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.79792521775352,11.31590607672894,51.796878137094275,11.319111479557655", + "point": "51.79792521775352,11.31590607672894", + "startLcPosition": "27", + "impact": { + "lower": "Hoym", + "upper": "Quedlinburg Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Vienenburg -> A14 Autobahnkreuz Bernburg", + "title": "A36 | Quedlinburg Ost - Hoym", + "coordinate": { + "lat": 51.79792521775352, + "long": 11.31590607672894 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 10:30 Uhr", + "", + "A36: Vienenburg -> A14 Autobahnkreuz Bernburg, zwischen 8.6 km hinter Quedlinburg Ost und 0.6 km vor Hoym", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A36 von Quedlinburg Ost nach Hoym Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.315906077, + 51.797925218 + ], + [ + 11.3184563, + 51.797097501 + ], + [ + 11.31911148, + 51.796878137 + ] + ] + } + }, + { + "identifier": "2026-017399--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.796878137094275,11.319111479557655,51.795369777566634,11.323546660831886", + "point": "51.796878137094275,11.319111479557655", + "startLcPosition": "27", + "impact": { + "lower": "Hoym", + "upper": "Quedlinburg Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Vienenburg -> A14 Autobahnkreuz Bernburg", + "title": "A36 | Quedlinburg Ost - Hoym", + "coordinate": { + "lat": 51.796878137094275, + "long": 11.319111479557655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 11:00 Uhr", + "", + "A36: Vienenburg -> A14 Autobahnkreuz Bernburg, zwischen 8.8 km hinter Quedlinburg Ost und 0.3 km vor Hoym", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A36 von Quedlinburg Ost nach Hoym Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.31911148, + 51.796878137 + ], + [ + 11.3199135, + 51.796609601 + ], + [ + 11.3213685, + 51.796113801 + ], + [ + 11.323546661, + 51.795369778 + ] + ] + } + }, + { + "identifier": "2026-017399--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.78587721239481,11.352266018101401,51.7845471293554,11.356863947534244", + "point": "51.78587721239481,11.352266018101401", + "startLcPosition": "28", + "impact": { + "lower": "Aschersleben-West", + "upper": "Hoym", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Vienenburg -> A14 Autobahnkreuz Bernburg", + "title": "A36 | Hoym - Aschersleben-West", + "coordinate": { + "lat": 51.78587721239481, + "long": 11.352266018101401 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 11:30 bis 12:30 Uhr", + "", + "A36: Vienenburg -> A14 Autobahnkreuz Bernburg, zwischen 2.0 km hinter Hoym und 3.8 km vor Aschersleben-West", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A36 von Quedlinburg Ost nach Hoym Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.352266018, + 51.785877212 + ], + [ + 11.3531657, + 51.785614101 + ], + [ + 11.3543723, + 51.785259101 + ], + [ + 11.3555861, + 51.784912701 + ], + [ + 11.3568023, + 51.784564401 + ], + [ + 11.356863948, + 51.784547129 + ] + ] + } + }, + { + "identifier": "2025-026789--vi-bs.2025-06-23_08-00-00-000.devi-zus.2025-06-19_09-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.7830079034396,11.556318431508224,51.78701561972383,11.56932196286881", + "point": "51.7830079034396,11.556318431508224", + "startLcPosition": "31", + "impact": { + "lower": "G\u00fcsten", + "upper": "Aschersleben-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Vienenburg -> A14 Autobahnkreuz Bernburg", + "title": "A36 | Aschersleben-Ost - G\u00fcsten", + "startTimestamp": "2025-06-23T08:00:00+02:00", + "coordinate": { + "lat": 51.7830079034396, + "long": 11.556318431508224 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.06.25 um 08:00 Uhr", + "Ende: 19.06.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A36: Vienenburg -> A14 Autobahnkreuz Bernburg, zwischen 3.2 km hinter Aschersleben-Ost und 0.1 km vor G\u00fcsten", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Hinweis- und Umleitungsbeschilderung aufgrund Bauma\u00dfnahme L 72 - OD Neundorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.556318432, + 51.783007903 + ], + [ + 11.5609123, + 51.784427001 + ], + [ + 11.5647164, + 51.785599801 + ], + [ + 11.5671512, + 51.786345401 + ], + [ + 11.569321963, + 51.78701562 + ] + ] + } + }, + { + "identifier": "2025-026789--vi-bs.2025-06-23_08-00-00-000.devi-zus.2025-06-19_09-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.809447393329926,11.666825084559708,51.811051221014296,11.652800408080273", + "point": "51.809447393329926,11.666825084559708", + "startLcPosition": "34", + "impact": { + "lower": "Ilberstedt", + "upper": "A 14 AS Bernburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " A14 Autobahnkreuz Bernburg -> Vienenburg", + "title": "A36 | A 14 AS Bernburg - Ilberstedt", + "startTimestamp": "2025-06-23T08:00:00+02:00", + "coordinate": { + "lat": 51.809447393329926, + "long": 11.666825084559708 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.06.25 um 08:00 Uhr", + "Ende: 19.06.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A36: A14 Autobahnkreuz Bernburg -> Vienenburg, zwischen 1.3 km hinter A 14 AS Bernburg und 0.5 km vor Ilberstedt", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Hinweis- und Umleitungsbeschilderung aufgrund Bauma\u00dfnahme L 72 - OD Neundorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.666825085, + 51.809447393 + ], + [ + 11.6663696, + 51.809564501 + ], + [ + 11.665468, + 51.809800101 + ], + [ + 11.6636324, + 51.810281001 + ], + [ + 11.6632246, + 51.810388101 + ], + [ + 11.6628211, + 51.810484701 + ], + [ + 11.6620101, + 51.810675901 + ], + [ + 11.6613906, + 51.810797501 + ], + [ + 11.6608746, + 51.810887901 + ], + [ + 11.6604254, + 51.810959301 + ], + [ + 11.6599896, + 51.811025601 + ], + [ + 11.6595769, + 51.811074801 + ], + [ + 11.6591708, + 51.811119501 + ], + [ + 11.6586667, + 51.811166801 + ], + [ + 11.6581671, + 51.811206301 + ], + [ + 11.6576569, + 51.811236701 + ], + [ + 11.6572605, + 51.811251601 + ], + [ + 11.6568666, + 51.811264901 + ], + [ + 11.6563368, + 51.811269701 + ], + [ + 11.6556982, + 51.811260901 + ], + [ + 11.6552279, + 51.811247701 + ], + [ + 11.6548752, + 51.811235201 + ], + [ + 11.6543278, + 51.811198101 + ], + [ + 11.6537267, + 51.811152501 + ], + [ + 11.6532175, + 51.811101001 + ], + [ + 11.652800408, + 51.811051221 + ] + ] + } + } + ] + }, + "A37": { + "roadworks": [ + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.30459475018587,9.868170929091978,52.30795119535485,9.824590090728512", + "point": "52.30459475018587,9.868170929091978", + "startLcPosition": "0", + "impact": { + "lower": "Messe-S\u00fcd", + "upper": "Hannover-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hannover-S\u00fcd -> Messe", + "title": "A37 | Hannover-S\u00fcd - Messe-S\u00fcd", + "coordinate": { + "lat": 52.30459475018587, + "long": 9.868170929091978 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A37: Hannover-S\u00fcd -> Messe, zwischen 0.6 km hinter AD Hannover-S\u00fcd und 1.5 km vor AS Messe-S\u00fcd", + "", + "L\u00e4nge: 3.04 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.868170929, + 52.30459475 + ], + [ + 9.8639142, + 52.304728201 + ], + [ + 9.851423, + 52.305118201 + ], + [ + 9.8443693, + 52.305336001 + ], + [ + 9.8408534, + 52.305449901 + ], + [ + 9.8402129, + 52.305468901 + ], + [ + 9.8398469, + 52.305479801 + ], + [ + 9.838143, + 52.305530401 + ], + [ + 9.8350985, + 52.305620401 + ], + [ + 9.8341705, + 52.305663101 + ], + [ + 9.8335504, + 52.305701601 + ], + [ + 9.8328575, + 52.305757501 + ], + [ + 9.8322125, + 52.305822201 + ], + [ + 9.8315939, + 52.305900901 + ], + [ + 9.830852, + 52.306017501 + ], + [ + 9.8305058, + 52.306080601 + ], + [ + 9.8300035, + 52.306172101 + ], + [ + 9.8291457, + 52.306359001 + ], + [ + 9.8281987, + 52.306604101 + ], + [ + 9.8275636, + 52.306792101 + ], + [ + 9.826889, + 52.307014001 + ], + [ + 9.826107, + 52.307297001 + ], + [ + 9.8255454, + 52.307525401 + ], + [ + 9.8248635, + 52.307824301 + ], + [ + 9.8246935, + 52.307903201 + ], + [ + 9.824590091, + 52.307951195 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.3078549987459,9.824429541506403,52.30448381849665,9.86832351113014", + "point": "52.3078549987459,9.824429541506403", + "startLcPosition": "2", + "impact": { + "lower": "Hannover-S\u00fcd", + "upper": "Messe-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Messe -> Hannover-S\u00fcd", + "title": "A37 | Messe-S\u00fcd - Hannover-S\u00fcd", + "coordinate": { + "lat": 52.3078549987459, + "long": 9.824429541506403 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "A37: Messe -> Hannover-S\u00fcd, zwischen 1.5 km hinter AS Messe-S\u00fcd und 0.5 km vor AD Hannover-S\u00fcd", + "", + "L\u00e4nge: 3.05 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.824429542, + 52.307854999 + ], + [ + 9.8247532, + 52.307694101 + ], + [ + 9.825442, + 52.307412901 + ], + [ + 9.8258255, + 52.307263601 + ], + [ + 9.8260298, + 52.307184101 + ], + [ + 9.8265035, + 52.307011201 + ], + [ + 9.8267975, + 52.306903901 + ], + [ + 9.8274741, + 52.306682401 + ], + [ + 9.8281293, + 52.306490901 + ], + [ + 9.8290822, + 52.306238801 + ], + [ + 9.8299451, + 52.306057501 + ], + [ + 9.8307996, + 52.305902201 + ], + [ + 9.8315474, + 52.305783101 + ], + [ + 9.8321793, + 52.305702301 + ], + [ + 9.8328164, + 52.305639101 + ], + [ + 9.8335172, + 52.305583701 + ], + [ + 9.8341476, + 52.305546901 + ], + [ + 9.8350942, + 52.305504201 + ], + [ + 9.836033, + 52.305472901 + ], + [ + 9.8379437, + 52.305413801 + ], + [ + 9.838267, + 52.305403601 + ], + [ + 9.839796, + 52.305355501 + ], + [ + 9.8413664, + 52.305304301 + ], + [ + 9.8423708, + 52.305271501 + ], + [ + 9.8515213, + 52.304994201 + ], + [ + 9.8544669, + 52.304903001 + ], + [ + 9.8639244, + 52.304610201 + ], + [ + 9.868323511, + 52.304483818 + ] + ] + } + }, + { + "identifier": "2024-002204--vi-bs.2025-12-05_00-00-00-000.devi-zus.2024-01-19_00-00-00-000_075.f.de78", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.44688280324282,9.939656099044042,52.40801619227031,9.823585735541165", + "point": "52.44688280324282,9.939656099044042", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Burgdorf -> Messe", + "title": "GE A37 zwischen AS Misburg und AS Beinhorn - BP3", + "startTimestamp": "2025-12-05T00:00:00+01:00", + "coordinate": { + "lat": 52.44688280324282, + "long": 9.939656099044042 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.12.25 um 00:00 Uhr", + "Ende: 21.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.04.26)", + "", + "Von A37: Burgdorf -> Messe, zwischen 1.6 km hinter Burgdorf/B188 und AS Beinhorn nach A37: km 27.28", + "", + "L\u00e4nge: 9.27 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "GE A37 zwischen AS Misburg und AS Beinhorn - BP3" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.939656099, + 52.446882803 + ], + [ + 9.9392494, + 52.446492101 + ], + [ + 9.9387448, + 52.446028901 + ], + [ + 9.9377245, + 52.445155401 + ], + [ + 9.9371137, + 52.444664401 + ], + [ + 9.9362787, + 52.444030201 + ], + [ + 9.9357692, + 52.443665501 + ], + [ + 9.9352463, + 52.443308601 + ], + [ + 9.9339283, + 52.442447901 + ], + [ + 9.9333891, + 52.442124101 + ], + [ + 9.9319913, + 52.441345301 + ], + [ + 9.9308608, + 52.440783201 + ], + [ + 9.9298579, + 52.440314301 + ], + [ + 9.9285765, + 52.439778801 + ], + [ + 9.9272343, + 52.439301401 + ], + [ + 9.9262895, + 52.438981001 + ], + [ + 9.9259408, + 52.438862801 + ], + [ + 9.9246185, + 52.438463401 + ], + [ + 9.922868, + 52.438027201 + ], + [ + 9.9211805, + 52.437674901 + ], + [ + 9.9192091, + 52.437348501 + ], + [ + 9.9169266, + 52.437036201 + ], + [ + 9.9143198, + 52.436722401 + ], + [ + 9.9117429, + 52.436395401 + ], + [ + 9.9106818, + 52.436250101 + ], + [ + 9.9096178, + 52.436088901 + ], + [ + 9.9086239, + 52.435918501 + ], + [ + 9.9076156, + 52.435731701 + ], + [ + 9.9061471, + 52.435408601 + ], + [ + 9.9055575, + 52.435269801 + ], + [ + 9.9048149, + 52.435079301 + ], + [ + 9.904266, + 52.434925601 + ], + [ + 9.9037207, + 52.434765901 + ], + [ + 9.9028788, + 52.434501701 + ], + [ + 9.9021296, + 52.434246101 + ], + [ + 9.9014356, + 52.433995501 + ], + [ + 9.9007526, + 52.433735101 + ], + [ + 9.9001146, + 52.433474301 + ], + [ + 9.8994859, + 52.433204201 + ], + [ + 9.8986444, + 52.432824401 + ], + [ + 9.8978177, + 52.432430201 + ], + [ + 9.8972299, + 52.432141101 + ], + [ + 9.8962294, + 52.431633201 + ], + [ + 9.8946311, + 52.430805301 + ], + [ + 9.8930242, + 52.429972801 + ], + [ + 9.8927509, + 52.429835401 + ], + [ + 9.8925191, + 52.429718001 + ], + [ + 9.8918805, + 52.429399601 + ], + [ + 9.8906649, + 52.428828801 + ], + [ + 9.8895567, + 52.428338401 + ], + [ + 9.8889811, + 52.428105501 + ], + [ + 9.8883591, + 52.427863901 + ], + [ + 9.8876939, + 52.427619101 + ], + [ + 9.8869666, + 52.427365801 + ], + [ + 9.886252, + 52.427138001 + ], + [ + 9.8857671, + 52.426989501 + ], + [ + 9.8849813, + 52.426762101 + ], + [ + 9.8844426, + 52.426619901 + ], + [ + 9.88386, + 52.426469801 + ], + [ + 9.8829726, + 52.426260601 + ], + [ + 9.8817829, + 52.426011601 + ], + [ + 9.8810713, + 52.425873801 + ], + [ + 9.8802834, + 52.425734201 + ], + [ + 9.8792033, + 52.425552801 + ], + [ + 9.8773837, + 52.425272201 + ], + [ + 9.8753782, + 52.424973201 + ], + [ + 9.8741316, + 52.424786301 + ], + [ + 9.8725553, + 52.424533401 + ], + [ + 9.8715015, + 52.424345101 + ], + [ + 9.8704538, + 52.424143101 + ], + [ + 9.8696132, + 52.423967301 + ], + [ + 9.8687742, + 52.423771401 + ], + [ + 9.8681138, + 52.423608201 + ], + [ + 9.8674634, + 52.423435801 + ], + [ + 9.8664141, + 52.423126401 + ], + [ + 9.8657589, + 52.422922901 + ], + [ + 9.8651058, + 52.422703701 + ], + [ + 9.863972, + 52.422288701 + ], + [ + 9.8632832, + 52.422016701 + ], + [ + 9.8626089, + 52.421735501 + ], + [ + 9.8615933, + 52.421276401 + ], + [ + 9.8609658, + 52.420972301 + ], + [ + 9.8603598, + 52.420662301 + ], + [ + 9.8597708, + 52.420343301 + ], + [ + 9.8591802, + 52.420004701 + ], + [ + 9.8580462, + 52.419306301 + ], + [ + 9.8570766, + 52.418661701 + ], + [ + 9.8564589, + 52.418235601 + ], + [ + 9.8554678, + 52.417520101 + ], + [ + 9.8544483, + 52.416772701 + ], + [ + 9.8535157, + 52.416080201 + ], + [ + 9.8519944, + 52.415005501 + ], + [ + 9.8517005, + 52.414809001 + ], + [ + 9.8508289, + 52.414230401 + ], + [ + 9.8499455, + 52.413694101 + ], + [ + 9.8489001, + 52.413108901 + ], + [ + 9.8481425, + 52.412719901 + ], + [ + 9.847139, + 52.412255101 + ], + [ + 9.8466736, + 52.412052401 + ], + [ + 9.8461867, + 52.411854901 + ], + [ + 9.8454657, + 52.411589601 + ], + [ + 9.8448248, + 52.411365601 + ], + [ + 9.8443644, + 52.411221101 + ], + [ + 9.8437044, + 52.411018401 + ], + [ + 9.8429541, + 52.410815401 + ], + [ + 9.8422786, + 52.410643601 + ], + [ + 9.8418718, + 52.410549801 + ], + [ + 9.841097, + 52.410391701 + ], + [ + 9.8405997, + 52.410293801 + ], + [ + 9.8399184, + 52.410178901 + ], + [ + 9.8396166, + 52.410132401 + ], + [ + 9.8390675, + 52.410054901 + ], + [ + 9.8381664, + 52.409946601 + ], + [ + 9.8374648, + 52.409873201 + ], + [ + 9.835896, + 52.409751101 + ], + [ + 9.8337173, + 52.409618701 + ], + [ + 9.8321508, + 52.409518001 + ], + [ + 9.831651, + 52.409482301 + ], + [ + 9.8310583, + 52.409434601 + ], + [ + 9.8301271, + 52.409348701 + ], + [ + 9.8295972, + 52.409289901 + ], + [ + 9.8287127, + 52.409177801 + ], + [ + 9.828361, + 52.409125301 + ], + [ + 9.8277077, + 52.409016601 + ], + [ + 9.8273609, + 52.408958601 + ], + [ + 9.8266603, + 52.408819401 + ], + [ + 9.8258485, + 52.408640001 + ], + [ + 9.8253754, + 52.408525901 + ], + [ + 9.824838, + 52.408387601 + ], + [ + 9.8244352, + 52.408275001 + ], + [ + 9.8238983, + 52.408116501 + ], + [ + 9.823585736, + 52.408016192 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.30448219344456,9.868380038569162,52.29979593085656,9.882414321402036", + "point": "52.30448219344456,9.868380038569162", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Messe -> Hannover-S\u00fcd", + "title": "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten", + "coordinate": { + "lat": 52.30448219344456, + "long": 9.868380038569162 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "Von A37: Messe -> Hannover-S\u00fcd, 0.5 km vor AD Hannover-S\u00fcd, aus Richtung Abzweig A37/B6; in A37: AD Hannover-S\u00fcd auf die A7 in Richtung Kassel; nach A7: Hannover -> Kassel, 7.7 km vor An der Alpe, aus Richtung Hannover-S\u00fcd", + "", + "L\u00e4nge: 1.13 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.868380039, + 52.304482193 + ], + [ + 9.869138, + 52.304460401 + ], + [ + 9.8693605, + 52.304454001 + ], + [ + 9.8696059, + 52.304447001 + ], + [ + 9.87038, + 52.304407001 + ], + [ + 9.8712888, + 52.304340701 + ], + [ + 9.8720833, + 52.304254201 + ], + [ + 9.8728143, + 52.304160801 + ], + [ + 9.8733397, + 52.304071301 + ], + [ + 9.8740013, + 52.303931401 + ], + [ + 9.8748998, + 52.303682601 + ], + [ + 9.8761797, + 52.303316001 + ], + [ + 9.8766346, + 52.303154301 + ], + [ + 9.8770736, + 52.302976001 + ], + [ + 9.8776331, + 52.302719901 + ], + [ + 9.878248, + 52.302397401 + ], + [ + 9.8786326, + 52.302171101 + ], + [ + 9.8799493, + 52.301443701 + ], + [ + 9.8803007, + 52.301201001 + ], + [ + 9.881042, + 52.300696101 + ], + [ + 9.8821737, + 52.299950701 + ], + [ + 9.882414321, + 52.299795931 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.29678240163615,9.887635731067006,52.304588571282615,9.868367900885517", + "point": "52.29678240163615,9.887635731067006", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Hannover", + "title": "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten", + "coordinate": { + "lat": 52.29678240163615, + "long": 9.887635731067006 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 17:00 Uhr", + "15.04.26 von 08:00 bis 17:00 Uhr", + "", + "Von A7: Kassel -> Hannover, 1.1 km vor AD Hannover-S\u00fcd, aus Richtung An der Alpe; in A7: AD Hannover-S\u00fcd auf die A37 in Richtung Messe; nach A37: Hannover-S\u00fcd -> Messe, 2.7 km vor AS Abzweig A37/B6, aus Richtung Hannover-S\u00fcd", + "", + "L\u00e4nge: 1.72 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.887635731, + 52.296782402 + ], + [ + 9.8849225, + 52.298440501 + ], + [ + 9.8841404, + 52.299171901 + ], + [ + 9.8838733, + 52.299445501 + ], + [ + 9.8835558, + 52.299803601 + ], + [ + 9.8831879, + 52.300319901 + ], + [ + 9.8826879, + 52.301076901 + ], + [ + 9.8824772, + 52.301368101 + ], + [ + 9.8821775, + 52.301699101 + ], + [ + 9.8818642, + 52.302010301 + ], + [ + 9.881557, + 52.302272501 + ], + [ + 9.8811887, + 52.302535501 + ], + [ + 9.880861, + 52.302769701 + ], + [ + 9.8804932, + 52.302983501 + ], + [ + 9.8798613, + 52.303306701 + ], + [ + 9.8792138, + 52.303574001 + ], + [ + 9.8787617, + 52.303736701 + ], + [ + 9.8781772, + 52.303907601 + ], + [ + 9.877474, + 52.304080701 + ], + [ + 9.8768808, + 52.304192201 + ], + [ + 9.8760314, + 52.304308601 + ], + [ + 9.8754007, + 52.304361401 + ], + [ + 9.8746755, + 52.304394901 + ], + [ + 9.8719715, + 52.304476001 + ], + [ + 9.8696004, + 52.304549901 + ], + [ + 9.868367901, + 52.304588571 + ] + ] + } + } + ] + }, + "A38": { + "roadworks": [ + { + "identifier": "2026-004147--vi-bs.2026-04-20_08-00-00-000.devi-zus.2026-04-20_08-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.398922790107,10.336218169700986,51.396953727949736,10.350942746652857", + "point": "51.398922790107,10.336218169700986", + "startLcPosition": "8", + "impact": { + "lower": "Eichsfeld", + "upper": "Leinetal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Leinetal - Eichsfeld", + "coordinate": { + "lat": 51.398922790107, + "long": 10.336218169700986 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 20.04.26 und dem 23.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 11.5 km hinter Leinetal und 4.7 km vor Eichsfeld", + "", + "L\u00e4nge: 1.05 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 Ausschilderung LGS 2026 Bereich AS Leinefelde-Worbis" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.33621817, + 51.39892279 + ], + [ + 10.336697, + 51.398851001 + ], + [ + 10.3387761, + 51.398536501 + ], + [ + 10.3390883, + 51.398491101 + ], + [ + 10.3395144, + 51.398425001 + ], + [ + 10.3398997, + 51.398364801 + ], + [ + 10.3418221, + 51.398076701 + ], + [ + 10.3421926, + 51.398022501 + ], + [ + 10.342833, + 51.397928801 + ], + [ + 10.3443849, + 51.397711001 + ], + [ + 10.345454, + 51.397565701 + ], + [ + 10.3468083, + 51.397394901 + ], + [ + 10.3483216, + 51.397217401 + ], + [ + 10.3495044, + 51.397088001 + ], + [ + 10.3503337, + 51.397006501 + ], + [ + 10.350942747, + 51.396953728 + ] + ] + } + }, + { + "identifier": "2026-004147--vi-bs.2026-04-20_08-00-00-000.devi-zus.2026-04-20_08-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.397061816883365,10.351009967586606,51.399031394370034,10.336259379771308", + "point": "51.397061816883365,10.351009967586606", + "startLcPosition": "10", + "impact": { + "lower": "Leinetal", + "upper": "Eichsfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Eichsfeld - Leinetal", + "coordinate": { + "lat": 51.397061816883365, + "long": 10.351009967586606 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 20.04.26 und dem 23.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 4.6 km hinter Eichsfeld und 11.5 km vor Leinetal", + "", + "L\u00e4nge: 1.05 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 Ausschilderung LGS 2026 Bereich AS Leinefelde-Worbis" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.351009968, + 51.397061817 + ], + [ + 10.3502994, + 51.397122101 + ], + [ + 10.3495942, + 51.397191101 + ], + [ + 10.3481921, + 51.397342101 + ], + [ + 10.3468501, + 51.397499201 + ], + [ + 10.3462189, + 51.397582401 + ], + [ + 10.3454835, + 51.397673701 + ], + [ + 10.3449335, + 51.397747701 + ], + [ + 10.3445284, + 51.397803201 + ], + [ + 10.3441068, + 51.397860001 + ], + [ + 10.3433196, + 51.397971101 + ], + [ + 10.3422318, + 51.398129601 + ], + [ + 10.3410561, + 51.398305701 + ], + [ + 10.3401833, + 51.398435901 + ], + [ + 10.3388187, + 51.398650101 + ], + [ + 10.3367203, + 51.398963901 + ], + [ + 10.33625938, + 51.399031394 + ] + ] + } + }, + { + "identifier": "2026-007005--vi-fbm.2026-04-10_08-00-00-000.devi-zus.2026-03-09_08-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.422786266544705,10.587988863674616,51.470031720212766,11.095891143936452", + "point": "51.422786266544705,10.587988863674616", + "startLcPosition": "12", + "impact": { + "lower": "Ro\u00dfla", + "upper": "H\u00f6llberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | H\u00f6llberg - Ro\u00dfla", + "coordinate": { + "lat": 51.422786266544705, + "long": 10.587988863674616 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 10.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "17.04.26 von 08:00 bis 16:00 Uhr", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 8.1 km hinter H\u00f6llberg und AS Ro\u00dfla", + "", + "L\u00e4nge: 41.94 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 zw. AS Bleicherode und Ro\u00dfla, Umleitungsbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.587988864, + 51.422786267 + ], + [ + 10.5881987, + 51.422922601 + ], + [ + 10.5886461, + 51.423213401 + ], + [ + 10.5891215, + 51.423536501 + ], + [ + 10.5895886, + 51.423880001 + ], + [ + 10.5899118, + 51.424131301 + ], + [ + 10.590349, + 51.424480601 + ], + [ + 10.5906873, + 51.424771301 + ], + [ + 10.5912018, + 51.425258201 + ], + [ + 10.5916534, + 51.425707101 + ], + [ + 10.5925219, + 51.426647501 + ], + [ + 10.592933, + 51.427113801 + ], + [ + 10.593265, + 51.427507901 + ], + [ + 10.5936034, + 51.427883801 + ], + [ + 10.5941664, + 51.428476401 + ], + [ + 10.5946101, + 51.428954801 + ], + [ + 10.5949841, + 51.429297301 + ], + [ + 10.5952473, + 51.429548401 + ], + [ + 10.5954337, + 51.429705601 + ], + [ + 10.5957412, + 51.429947601 + ], + [ + 10.5958044, + 51.429997901 + ], + [ + 10.5962137, + 51.430297001 + ], + [ + 10.5966152, + 51.430571201 + ], + [ + 10.5966495, + 51.430596801 + ], + [ + 10.5969473, + 51.430792001 + ], + [ + 10.5970994, + 51.430900701 + ], + [ + 10.5973879, + 51.431080201 + ], + [ + 10.5979177, + 51.431408301 + ], + [ + 10.5980927, + 51.431511101 + ], + [ + 10.5982977, + 51.431636601 + ], + [ + 10.5989256, + 51.431979501 + ], + [ + 10.5992876, + 51.432177001 + ], + [ + 10.599982, + 51.432499501 + ], + [ + 10.6002509, + 51.432611801 + ], + [ + 10.6009639, + 51.432918901 + ], + [ + 10.6016839, + 51.433204001 + ], + [ + 10.6020438, + 51.433327101 + ], + [ + 10.6024048, + 51.433456601 + ], + [ + 10.6031908, + 51.433710001 + ], + [ + 10.6035921, + 51.433827601 + ], + [ + 10.6039692, + 51.433937001 + ], + [ + 10.6045274, + 51.434083601 + ], + [ + 10.6051459, + 51.434233201 + ], + [ + 10.6055505, + 51.434329001 + ], + [ + 10.6061412, + 51.434457801 + ], + [ + 10.6065424, + 51.434538001 + ], + [ + 10.6071536, + 51.434653001 + ], + [ + 10.6078431, + 51.434744701 + ], + [ + 10.6083992, + 51.434813801 + ], + [ + 10.6092507, + 51.434918001 + ], + [ + 10.6100861, + 51.434986301 + ], + [ + 10.6105252, + 51.435021501 + ], + [ + 10.6110994, + 51.435053201 + ], + [ + 10.6118528, + 51.435080701 + ], + [ + 10.6125898, + 51.435088501 + ], + [ + 10.613462, + 51.435076601 + ], + [ + 10.6139105, + 51.435066701 + ], + [ + 10.6143954, + 51.435045901 + ], + [ + 10.6151643, + 51.434998401 + ], + [ + 10.6156209, + 51.434966201 + ], + [ + 10.6164438, + 51.434899601 + ], + [ + 10.6172908, + 51.434817101 + ], + [ + 10.6201361, + 51.434510501 + ], + [ + 10.6206438, + 51.434454001 + ], + [ + 10.6210834, + 51.434410201 + ], + [ + 10.6220299, + 51.434321601 + ], + [ + 10.6227975, + 51.434255901 + ], + [ + 10.6235754, + 51.434206501 + ], + [ + 10.6239491, + 51.434180001 + ], + [ + 10.6240904, + 51.434171501 + ], + [ + 10.6245535, + 51.434154601 + ], + [ + 10.6248616, + 51.434143901 + ], + [ + 10.6262081, + 51.434116801 + ], + [ + 10.6274109, + 51.434124801 + ], + [ + 10.628603, + 51.434170001 + ], + [ + 10.6302227, + 51.434276301 + ], + [ + 10.6308952, + 51.434343701 + ], + [ + 10.6315316, + 51.434404301 + ], + [ + 10.6328506, + 51.434570601 + ], + [ + 10.6339593, + 51.434749801 + ], + [ + 10.6345742, + 51.434857301 + ], + [ + 10.6350653, + 51.434953101 + ], + [ + 10.636064, + 51.435156901 + ], + [ + 10.63614, + 51.435174401 + ], + [ + 10.6368795, + 51.435345201 + ], + [ + 10.6379476, + 51.435625601 + ], + [ + 10.6391444, + 51.435960901 + ], + [ + 10.6403818, + 51.436381401 + ], + [ + 10.6413169, + 51.436716501 + ], + [ + 10.6423407, + 51.437116801 + ], + [ + 10.6433495, + 51.437560001 + ], + [ + 10.6439284, + 51.437823901 + ], + [ + 10.6453087, + 51.438537501 + ], + [ + 10.6457817, + 51.438801901 + ], + [ + 10.6459937, + 51.438920401 + ], + [ + 10.6465995, + 51.439259101 + ], + [ + 10.6475194, + 51.439778701 + ], + [ + 10.649283, + 51.440747401 + ], + [ + 10.6501404, + 51.441218301 + ], + [ + 10.6515546, + 51.441829101 + ], + [ + 10.6524706, + 51.442171201 + ], + [ + 10.6532895, + 51.442431601 + ], + [ + 10.6540518, + 51.442632901 + ], + [ + 10.654237, + 51.442679601 + ], + [ + 10.6544994, + 51.442745501 + ], + [ + 10.6557305, + 51.443024301 + ], + [ + 10.6576516, + 51.443337301 + ], + [ + 10.6584281, + 51.443422701 + ], + [ + 10.6593089, + 51.443497401 + ], + [ + 10.6600661, + 51.443534201 + ], + [ + 10.6609531, + 51.443559601 + ], + [ + 10.6614962, + 51.443565101 + ], + [ + 10.6623497, + 51.443565101 + ], + [ + 10.6628215, + 51.443560101 + ], + [ + 10.6644746, + 51.443542401 + ], + [ + 10.6656649, + 51.443555601 + ], + [ + 10.6671185, + 51.443628301 + ], + [ + 10.6689898, + 51.443793901 + ], + [ + 10.6703216, + 51.443978501 + ], + [ + 10.6715983, + 51.444218401 + ], + [ + 10.6727943, + 51.444498301 + ], + [ + 10.673244, + 51.444616101 + ], + [ + 10.6736658, + 51.444738101 + ], + [ + 10.6741863, + 51.444895201 + ], + [ + 10.6747015, + 51.445062701 + ], + [ + 10.6752502, + 51.445242601 + ], + [ + 10.6763459, + 51.445669901 + ], + [ + 10.6764872, + 51.445725001 + ], + [ + 10.6770714, + 51.446009901 + ], + [ + 10.6777358, + 51.446338101 + ], + [ + 10.6783292, + 51.446633101 + ], + [ + 10.6790972, + 51.447080901 + ], + [ + 10.679867, + 51.447564801 + ], + [ + 10.6803574, + 51.447906101 + ], + [ + 10.6812099, + 51.448559901 + ], + [ + 10.6816093, + 51.448917201 + ], + [ + 10.6819714, + 51.449250301 + ], + [ + 10.6823562, + 51.449611601 + ], + [ + 10.6829128, + 51.450207501 + ], + [ + 10.6832669, + 51.450638001 + ], + [ + 10.683598, + 51.451074501 + ], + [ + 10.6838914, + 51.451512801 + ], + [ + 10.6841644, + 51.451977501 + ], + [ + 10.6843315, + 51.452273501 + ], + [ + 10.684557, + 51.452750901 + ], + [ + 10.6847388, + 51.453154101 + ], + [ + 10.6849583, + 51.453783401 + ], + [ + 10.6851995, + 51.454574701 + ], + [ + 10.6854012, + 51.455370501 + ], + [ + 10.6858886, + 51.457414801 + ], + [ + 10.6861105, + 51.458277101 + ], + [ + 10.6862348, + 51.458877001 + ], + [ + 10.6863696, + 51.459406001 + ], + [ + 10.68683, + 51.461382701 + ], + [ + 10.6868911, + 51.461642101 + ], + [ + 10.6871958, + 51.462947901 + ], + [ + 10.6876077, + 51.464648001 + ], + [ + 10.6880806, + 51.466594601 + ], + [ + 10.6884204, + 51.467993301 + ], + [ + 10.6886739, + 51.468924801 + ], + [ + 10.688944, + 51.469766001 + ], + [ + 10.6892895, + 51.470600501 + ], + [ + 10.689376, + 51.470809501 + ], + [ + 10.6897083, + 51.471629201 + ], + [ + 10.6901074, + 51.472397801 + ], + [ + 10.6903905, + 51.472893501 + ], + [ + 10.6907512, + 51.473494901 + ], + [ + 10.6911252, + 51.474088401 + ], + [ + 10.6914409, + 51.474555401 + ], + [ + 10.6917425, + 51.474970201 + ], + [ + 10.6918193, + 51.475075701 + ], + [ + 10.6922919, + 51.475701501 + ], + [ + 10.6928417, + 51.476372101 + ], + [ + 10.6936295, + 51.477256801 + ], + [ + 10.694431, + 51.478086601 + ], + [ + 10.6952952, + 51.478907201 + ], + [ + 10.6957295, + 51.479305601 + ], + [ + 10.6961641, + 51.479681801 + ], + [ + 10.6971088, + 51.480449901 + ], + [ + 10.6981091, + 51.481196601 + ], + [ + 10.6988182, + 51.481701901 + ], + [ + 10.6994199, + 51.482107801 + ], + [ + 10.6995483, + 51.482194501 + ], + [ + 10.7000678, + 51.482531301 + ], + [ + 10.7006025, + 51.482853501 + ], + [ + 10.7011341, + 51.483176901 + ], + [ + 10.7016378, + 51.483474901 + ], + [ + 10.7020997, + 51.483728101 + ], + [ + 10.7026893, + 51.484049501 + ], + [ + 10.7032836, + 51.484353401 + ], + [ + 10.7034408, + 51.484429601 + ], + [ + 10.7040953, + 51.484757001 + ], + [ + 10.7048994, + 51.485145201 + ], + [ + 10.7053874, + 51.485366201 + ], + [ + 10.7057255, + 51.485519301 + ], + [ + 10.7066165, + 51.485892801 + ], + [ + 10.7074689, + 51.486244201 + ], + [ + 10.7084077, + 51.486605001 + ], + [ + 10.7097976, + 51.487102001 + ], + [ + 10.710664, + 51.487384101 + ], + [ + 10.7110905, + 51.487522901 + ], + [ + 10.7124638, + 51.487937101 + ], + [ + 10.7136058, + 51.488248401 + ], + [ + 10.7145446, + 51.488495601 + ], + [ + 10.7159072, + 51.488806201 + ], + [ + 10.7167916, + 51.488999501 + ], + [ + 10.7175538, + 51.489145401 + ], + [ + 10.7176318, + 51.489159601 + ], + [ + 10.7190003, + 51.489408901 + ], + [ + 10.7201703, + 51.489595201 + ], + [ + 10.7207942, + 51.489685801 + ], + [ + 10.7226982, + 51.489919701 + ], + [ + 10.7233453, + 51.489991701 + ], + [ + 10.724374, + 51.490084701 + ], + [ + 10.7249167, + 51.490128201 + ], + [ + 10.7255357, + 51.490171501 + ], + [ + 10.7264121, + 51.490223501 + ], + [ + 10.726868, + 51.490245501 + ], + [ + 10.7273609, + 51.490268101 + ], + [ + 10.7278844, + 51.490286901 + ], + [ + 10.7286489, + 51.490306501 + ], + [ + 10.7291626, + 51.490313001 + ], + [ + 10.7300166, + 51.490318501 + ], + [ + 10.7305335, + 51.490317901 + ], + [ + 10.7310493, + 51.490308801 + ], + [ + 10.7318173, + 51.490290001 + ], + [ + 10.7320577, + 51.490282901 + ], + [ + 10.7325156, + 51.490269301 + ], + [ + 10.7332733, + 51.490237101 + ], + [ + 10.7338675, + 51.490205201 + ], + [ + 10.7355446, + 51.490087601 + ], + [ + 10.7363541, + 51.490013701 + ], + [ + 10.7371267, + 51.489933401 + ], + [ + 10.7386718, + 51.489747001 + ], + [ + 10.7394216, + 51.489637701 + ], + [ + 10.7402063, + 51.489522301 + ], + [ + 10.7411204, + 51.489374401 + ], + [ + 10.7418258, + 51.489247601 + ], + [ + 10.7431735, + 51.488981301 + ], + [ + 10.7441962, + 51.488766401 + ], + [ + 10.745043, + 51.488567201 + ], + [ + 10.7459187, + 51.488343901 + ], + [ + 10.7462946, + 51.488248001 + ], + [ + 10.7472318, + 51.487993901 + ], + [ + 10.7485832, + 51.487595001 + ], + [ + 10.7492028, + 51.487399401 + ], + [ + 10.7497627, + 51.487210501 + ], + [ + 10.7506571, + 51.486901601 + ], + [ + 10.7514687, + 51.486612701 + ], + [ + 10.7519518, + 51.486431501 + ], + [ + 10.7524086, + 51.486251601 + ], + [ + 10.7525239, + 51.486204301 + ], + [ + 10.7534412, + 51.485827901 + ], + [ + 10.7543815, + 51.485431201 + ], + [ + 10.7550695, + 51.485119501 + ], + [ + 10.7553598, + 51.484977201 + ], + [ + 10.7568177, + 51.484253801 + ], + [ + 10.7579684, + 51.483653101 + ], + [ + 10.7581797, + 51.483539401 + ], + [ + 10.7590819, + 51.483053401 + ], + [ + 10.7592461, + 51.482959701 + ], + [ + 10.7601093, + 51.482491401 + ], + [ + 10.7613624, + 51.481817901 + ], + [ + 10.7620574, + 51.481444401 + ], + [ + 10.7636444, + 51.480591401 + ], + [ + 10.7648431, + 51.479947101 + ], + [ + 10.7654382, + 51.479626501 + ], + [ + 10.7683528, + 51.478071601 + ], + [ + 10.7692438, + 51.477587101 + ], + [ + 10.7737458, + 51.475138701 + ], + [ + 10.774485, + 51.474739701 + ], + [ + 10.7759988, + 51.473927501 + ], + [ + 10.7763322, + 51.473748601 + ], + [ + 10.7766279, + 51.473583301 + ], + [ + 10.7799677, + 51.471782701 + ], + [ + 10.7816863, + 51.470858201 + ], + [ + 10.7821439, + 51.470609501 + ], + [ + 10.7827405, + 51.470287001 + ], + [ + 10.7846699, + 51.469243901 + ], + [ + 10.7855844, + 51.468751301 + ], + [ + 10.7894141, + 51.466688401 + ], + [ + 10.7906424, + 51.466040201 + ], + [ + 10.7925902, + 51.465012301 + ], + [ + 10.794013, + 51.464275901 + ], + [ + 10.7953386, + 51.463634901 + ], + [ + 10.7960568, + 51.463306001 + ], + [ + 10.7964235, + 51.463138101 + ], + [ + 10.7972606, + 51.462763701 + ], + [ + 10.7981978, + 51.462359501 + ], + [ + 10.7988635, + 51.462086701 + ], + [ + 10.7990659, + 51.462007301 + ], + [ + 10.7996571, + 51.461769901 + ], + [ + 10.800056, + 51.461615501 + ], + [ + 10.800494, + 51.461455701 + ], + [ + 10.8009582, + 51.461279101 + ], + [ + 10.8015781, + 51.461057001 + ], + [ + 10.8022323, + 51.460835301 + ], + [ + 10.8023188, + 51.460807201 + ], + [ + 10.8036691, + 51.460367701 + ], + [ + 10.804131, + 51.460224701 + ], + [ + 10.8060122, + 51.459708701 + ], + [ + 10.8073666, + 51.459390501 + ], + [ + 10.8086784, + 51.459114901 + ], + [ + 10.8096776, + 51.458942301 + ], + [ + 10.809904, + 51.458903201 + ], + [ + 10.811803, + 51.458633801 + ], + [ + 10.8133362, + 51.458474301 + ], + [ + 10.814689, + 51.458368001 + ], + [ + 10.8154541, + 51.458328401 + ], + [ + 10.8163718, + 51.458298201 + ], + [ + 10.8169965, + 51.458288401 + ], + [ + 10.8177602, + 51.458286701 + ], + [ + 10.8185298, + 51.458290801 + ], + [ + 10.8193234, + 51.458317001 + ], + [ + 10.8203286, + 51.458361301 + ], + [ + 10.8213219, + 51.458433101 + ], + [ + 10.821336, + 51.458434101 + ], + [ + 10.8224086, + 51.458526001 + ], + [ + 10.8238272, + 51.458699201 + ], + [ + 10.8246429, + 51.458807601 + ], + [ + 10.8261434, + 51.459061501 + ], + [ + 10.8276255, + 51.459364501 + ], + [ + 10.8287325, + 51.459621401 + ], + [ + 10.8296525, + 51.459860401 + ], + [ + 10.8298177, + 51.459905101 + ], + [ + 10.830177, + 51.460005801 + ], + [ + 10.8317711, + 51.460495301 + ], + [ + 10.8330331, + 51.460935301 + ], + [ + 10.8345209, + 51.461523501 + ], + [ + 10.8354333, + 51.461928401 + ], + [ + 10.8367173, + 51.462565601 + ], + [ + 10.8374489, + 51.462928701 + ], + [ + 10.8378872, + 51.463164201 + ], + [ + 10.8387288, + 51.463631201 + ], + [ + 10.8424866, + 51.465691801 + ], + [ + 10.8455113, + 51.467362101 + ], + [ + 10.8464892, + 51.467902301 + ], + [ + 10.8476364, + 51.468542401 + ], + [ + 10.8498467, + 51.469786201 + ], + [ + 10.8525869, + 51.471258401 + ], + [ + 10.8532447, + 51.471608301 + ], + [ + 10.8533666, + 51.471673101 + ], + [ + 10.8539965, + 51.472008201 + ], + [ + 10.8555854, + 51.472787801 + ], + [ + 10.8575641, + 51.473623101 + ], + [ + 10.8590463, + 51.474165701 + ], + [ + 10.8594527, + 51.474296101 + ], + [ + 10.8597939, + 51.474405501 + ], + [ + 10.8604952, + 51.474619101 + ], + [ + 10.8618735, + 51.474988301 + ], + [ + 10.8632012, + 51.475317301 + ], + [ + 10.8644591, + 51.475567901 + ], + [ + 10.8658754, + 51.475796801 + ], + [ + 10.8668441, + 51.475931001 + ], + [ + 10.8676175, + 51.476024601 + ], + [ + 10.8681626, + 51.476088201 + ], + [ + 10.8689975, + 51.476167701 + ], + [ + 10.8697963, + 51.476227401 + ], + [ + 10.8707029, + 51.476274201 + ], + [ + 10.8713737, + 51.476299001 + ], + [ + 10.8721006, + 51.476312101 + ], + [ + 10.8728447, + 51.476309801 + ], + [ + 10.8735555, + 51.476297701 + ], + [ + 10.8738562, + 51.476291001 + ], + [ + 10.8743674, + 51.476276201 + ], + [ + 10.874844, + 51.476260301 + ], + [ + 10.8758135, + 51.476202001 + ], + [ + 10.8766116, + 51.476136101 + ], + [ + 10.8768979, + 51.476112501 + ], + [ + 10.8777856, + 51.476022801 + ], + [ + 10.8787351, + 51.475894801 + ], + [ + 10.8792455, + 51.475826001 + ], + [ + 10.8805797, + 51.475613201 + ], + [ + 10.881791, + 51.475376101 + ], + [ + 10.8831152, + 51.475079101 + ], + [ + 10.8846081, + 51.474697001 + ], + [ + 10.8862307, + 51.474251401 + ], + [ + 10.8878947, + 51.473772101 + ], + [ + 10.8901286, + 51.473124101 + ], + [ + 10.8923812, + 51.472491201 + ], + [ + 10.8942491, + 51.471993601 + ], + [ + 10.8955963, + 51.471663001 + ], + [ + 10.8964641, + 51.471458601 + ], + [ + 10.8980414, + 51.471119801 + ], + [ + 10.8994285, + 51.470861001 + ], + [ + 10.9008318, + 51.470618601 + ], + [ + 10.9021291, + 51.470429401 + ], + [ + 10.9034963, + 51.470260901 + ], + [ + 10.9049142, + 51.470112001 + ], + [ + 10.9061325, + 51.470008401 + ], + [ + 10.9064861, + 51.469982701 + ], + [ + 10.9081115, + 51.469888201 + ], + [ + 10.910071, + 51.469804201 + ], + [ + 10.911668, + 51.469767401 + ], + [ + 10.9123253, + 51.469758101 + ], + [ + 10.9140211, + 51.469760901 + ], + [ + 10.9173536, + 51.469766401 + ], + [ + 10.9212577, + 51.469807701 + ], + [ + 10.9225162, + 51.469821001 + ], + [ + 10.9281671, + 51.469834801 + ], + [ + 10.9289232, + 51.469836701 + ], + [ + 10.9293407, + 51.469828801 + ], + [ + 10.9316079, + 51.469799901 + ], + [ + 10.9355251, + 51.469595401 + ], + [ + 10.9394023, + 51.469274601 + ], + [ + 10.9419286, + 51.469023201 + ], + [ + 10.944838, + 51.468663501 + ], + [ + 10.9461556, + 51.468496401 + ], + [ + 10.9483179, + 51.468237101 + ], + [ + 10.9493938, + 51.468107201 + ], + [ + 10.9523784, + 51.467746701 + ], + [ + 10.9545564, + 51.467526101 + ], + [ + 10.9558664, + 51.467437001 + ], + [ + 10.9564232, + 51.467399201 + ], + [ + 10.9581908, + 51.467328001 + ], + [ + 10.960094, + 51.467321701 + ], + [ + 10.9621615, + 51.467374101 + ], + [ + 10.9632035, + 51.467439701 + ], + [ + 10.9639233, + 51.467485001 + ], + [ + 10.9650707, + 51.467572901 + ], + [ + 10.9667864, + 51.467782301 + ], + [ + 10.9692437, + 51.468164001 + ], + [ + 10.9710673, + 51.468520701 + ], + [ + 10.9795516, + 51.470425901 + ], + [ + 10.9803059, + 51.470568201 + ], + [ + 10.9810645, + 51.470701301 + ], + [ + 10.9818339, + 51.470826301 + ], + [ + 10.9826072, + 51.470941801 + ], + [ + 10.9832058, + 51.471022601 + ], + [ + 10.9838065, + 51.471096901 + ], + [ + 10.9844091, + 51.471164901 + ], + [ + 10.9850136, + 51.471226501 + ], + [ + 10.9856196, + 51.471281601 + ], + [ + 10.9862271, + 51.471330301 + ], + [ + 10.9868358, + 51.471372501 + ], + [ + 10.9874455, + 51.471408201 + ], + [ + 10.9880562, + 51.471437401 + ], + [ + 10.9886676, + 51.471460201 + ], + [ + 10.9892795, + 51.471476401 + ], + [ + 10.9898917, + 51.471486101 + ], + [ + 10.9905042, + 51.471489301 + ], + [ + 10.9911166, + 51.471486001 + ], + [ + 10.9917289, + 51.471476201 + ], + [ + 10.9923408, + 51.471459801 + ], + [ + 10.9929521, + 51.471437001 + ], + [ + 10.9935628, + 51.471407601 + ], + [ + 10.9941725, + 51.471371801 + ], + [ + 10.9947812, + 51.471329501 + ], + [ + 10.9953887, + 51.471280701 + ], + [ + 10.9959947, + 51.471225501 + ], + [ + 10.9965991, + 51.471163801 + ], + [ + 10.9972017, + 51.471095701 + ], + [ + 10.9978024, + 51.471021201 + ], + [ + 10.9984009, + 51.470940301 + ], + [ + 10.9989972, + 51.470853101 + ], + [ + 11.0002246, + 51.470659401 + ], + [ + 11.0014174, + 51.470435201 + ], + [ + 11.0026413, + 51.470151401 + ], + [ + 11.0038583, + 51.469856601 + ], + [ + 11.0053289, + 51.469459701 + ], + [ + 11.0067841, + 51.469034101 + ], + [ + 11.0087631, + 51.468362201 + ], + [ + 11.0112778, + 51.467420701 + ], + [ + 11.0124969, + 51.466959401 + ], + [ + 11.0134972, + 51.466586701 + ], + [ + 11.0148087, + 51.466137201 + ], + [ + 11.0162063, + 51.465691401 + ], + [ + 11.0172781, + 51.465386501 + ], + [ + 11.0182186, + 51.465149501 + ], + [ + 11.0192435, + 51.464911201 + ], + [ + 11.0198743, + 51.464787201 + ], + [ + 11.0208913, + 51.464604201 + ], + [ + 11.0215656, + 51.464496601 + ], + [ + 11.0223547, + 51.464384101 + ], + [ + 11.0230011, + 51.464304601 + ], + [ + 11.0232171, + 51.464280601 + ], + [ + 11.0238495, + 51.464217201 + ], + [ + 11.0243483, + 51.464168901 + ], + [ + 11.0251064, + 51.464110501 + ], + [ + 11.0257026, + 51.464069101 + ], + [ + 11.0259913, + 51.464057101 + ], + [ + 11.0268428, + 51.464028001 + ], + [ + 11.027565, + 51.464015101 + ], + [ + 11.0285105, + 51.464011001 + ], + [ + 11.0300232, + 51.464053001 + ], + [ + 11.0303051, + 51.464064701 + ], + [ + 11.0308614, + 51.464093301 + ], + [ + 11.0312627, + 51.464122301 + ], + [ + 11.0317168, + 51.464159001 + ], + [ + 11.0329102, + 51.464280801 + ], + [ + 11.0340505, + 51.464423001 + ], + [ + 11.035485, + 51.464652501 + ], + [ + 11.0368977, + 51.464916501 + ], + [ + 11.038387, + 51.465266401 + ], + [ + 11.0394082, + 51.465542201 + ], + [ + 11.0401069, + 51.465755801 + ], + [ + 11.0406868, + 51.465933201 + ], + [ + 11.0416327, + 51.466256301 + ], + [ + 11.04212, + 51.466432901 + ], + [ + 11.0430997, + 51.466818301 + ], + [ + 11.0444203, + 51.467393501 + ], + [ + 11.0450301, + 51.467682601 + ], + [ + 11.0458676, + 51.468097801 + ], + [ + 11.0461975, + 51.468261401 + ], + [ + 11.0468977, + 51.468625901 + ], + [ + 11.0473778, + 51.468881501 + ], + [ + 11.0483888, + 51.469418801 + ], + [ + 11.0494154, + 51.469964401 + ], + [ + 11.0506564, + 51.470624001 + ], + [ + 11.0514309, + 51.471024301 + ], + [ + 11.0522156, + 51.471410101 + ], + [ + 11.0530411, + 51.471784201 + ], + [ + 11.0539306, + 51.472158101 + ], + [ + 11.0549052, + 51.472534101 + ], + [ + 11.0559288, + 51.472883301 + ], + [ + 11.0567727, + 51.473166401 + ], + [ + 11.0577389, + 51.473452401 + ], + [ + 11.0587935, + 51.473731001 + ], + [ + 11.0597096, + 51.473947101 + ], + [ + 11.0602899, + 51.474065101 + ], + [ + 11.0625519, + 51.474459101 + ], + [ + 11.0638775, + 51.474638201 + ], + [ + 11.0651222, + 51.474775001 + ], + [ + 11.066612, + 51.474891301 + ], + [ + 11.0681209, + 51.474960101 + ], + [ + 11.06971, + 51.474968101 + ], + [ + 11.0713905, + 51.474929901 + ], + [ + 11.072489, + 51.474872401 + ], + [ + 11.0737782, + 51.474768001 + ], + [ + 11.0746664, + 51.474664901 + ], + [ + 11.0757579, + 51.474531101 + ], + [ + 11.0769331, + 51.474348301 + ], + [ + 11.0780874, + 51.474139401 + ], + [ + 11.0794111, + 51.473884201 + ], + [ + 11.0810023, + 51.473520901 + ], + [ + 11.0842506, + 51.472740501 + ], + [ + 11.0876283, + 51.471865601 + ], + [ + 11.0882611, + 51.471706201 + ], + [ + 11.0887874, + 51.471573601 + ], + [ + 11.0894859, + 51.471401201 + ], + [ + 11.0905829, + 51.471137201 + ], + [ + 11.0924155, + 51.470712601 + ], + [ + 11.0940829, + 51.470370801 + ], + [ + 11.095805, + 51.470046501 + ], + [ + 11.095891144, + 51.47003172 + ] + ] + } + }, + { + "identifier": "2026-007005--vi-bs.2026-03-16_08-00-00-000.devi-zus.2026-03-09_08-00-00-000_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.422786266544705,10.587988863674616,51.470031720212766,11.095891143936452", + "point": "51.422786266544705,10.587988863674616", + "startLcPosition": "12", + "impact": { + "lower": "Ro\u00dfla", + "upper": "H\u00f6llberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | H\u00f6llberg - Ro\u00dfla", + "startTimestamp": "2026-03-16T08:00:00+01:00", + "coordinate": { + "lat": 51.422786266544705, + "long": 10.587988863674616 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 08:00 Uhr", + "Ende: 10.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.04.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 8.1 km hinter H\u00f6llberg und AS Ro\u00dfla", + "", + "L\u00e4nge: 41.94 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 zw. AS Bleicherode und Ro\u00dfla, Umleitungsbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.587988864, + 51.422786267 + ], + [ + 10.5881987, + 51.422922601 + ], + [ + 10.5886461, + 51.423213401 + ], + [ + 10.5891215, + 51.423536501 + ], + [ + 10.5895886, + 51.423880001 + ], + [ + 10.5899118, + 51.424131301 + ], + [ + 10.590349, + 51.424480601 + ], + [ + 10.5906873, + 51.424771301 + ], + [ + 10.5912018, + 51.425258201 + ], + [ + 10.5916534, + 51.425707101 + ], + [ + 10.5925219, + 51.426647501 + ], + [ + 10.592933, + 51.427113801 + ], + [ + 10.593265, + 51.427507901 + ], + [ + 10.5936034, + 51.427883801 + ], + [ + 10.5941664, + 51.428476401 + ], + [ + 10.5946101, + 51.428954801 + ], + [ + 10.5949841, + 51.429297301 + ], + [ + 10.5952473, + 51.429548401 + ], + [ + 10.5954337, + 51.429705601 + ], + [ + 10.5957412, + 51.429947601 + ], + [ + 10.5958044, + 51.429997901 + ], + [ + 10.5962137, + 51.430297001 + ], + [ + 10.5966152, + 51.430571201 + ], + [ + 10.5966495, + 51.430596801 + ], + [ + 10.5969473, + 51.430792001 + ], + [ + 10.5970994, + 51.430900701 + ], + [ + 10.5973879, + 51.431080201 + ], + [ + 10.5979177, + 51.431408301 + ], + [ + 10.5980927, + 51.431511101 + ], + [ + 10.5982977, + 51.431636601 + ], + [ + 10.5989256, + 51.431979501 + ], + [ + 10.5992876, + 51.432177001 + ], + [ + 10.599982, + 51.432499501 + ], + [ + 10.6002509, + 51.432611801 + ], + [ + 10.6009639, + 51.432918901 + ], + [ + 10.6016839, + 51.433204001 + ], + [ + 10.6020438, + 51.433327101 + ], + [ + 10.6024048, + 51.433456601 + ], + [ + 10.6031908, + 51.433710001 + ], + [ + 10.6035921, + 51.433827601 + ], + [ + 10.6039692, + 51.433937001 + ], + [ + 10.6045274, + 51.434083601 + ], + [ + 10.6051459, + 51.434233201 + ], + [ + 10.6055505, + 51.434329001 + ], + [ + 10.6061412, + 51.434457801 + ], + [ + 10.6065424, + 51.434538001 + ], + [ + 10.6071536, + 51.434653001 + ], + [ + 10.6078431, + 51.434744701 + ], + [ + 10.6083992, + 51.434813801 + ], + [ + 10.6092507, + 51.434918001 + ], + [ + 10.6100861, + 51.434986301 + ], + [ + 10.6105252, + 51.435021501 + ], + [ + 10.6110994, + 51.435053201 + ], + [ + 10.6118528, + 51.435080701 + ], + [ + 10.6125898, + 51.435088501 + ], + [ + 10.613462, + 51.435076601 + ], + [ + 10.6139105, + 51.435066701 + ], + [ + 10.6143954, + 51.435045901 + ], + [ + 10.6151643, + 51.434998401 + ], + [ + 10.6156209, + 51.434966201 + ], + [ + 10.6164438, + 51.434899601 + ], + [ + 10.6172908, + 51.434817101 + ], + [ + 10.6201361, + 51.434510501 + ], + [ + 10.6206438, + 51.434454001 + ], + [ + 10.6210834, + 51.434410201 + ], + [ + 10.6220299, + 51.434321601 + ], + [ + 10.6227975, + 51.434255901 + ], + [ + 10.6235754, + 51.434206501 + ], + [ + 10.6239491, + 51.434180001 + ], + [ + 10.6240904, + 51.434171501 + ], + [ + 10.6245535, + 51.434154601 + ], + [ + 10.6248616, + 51.434143901 + ], + [ + 10.6262081, + 51.434116801 + ], + [ + 10.6274109, + 51.434124801 + ], + [ + 10.628603, + 51.434170001 + ], + [ + 10.6302227, + 51.434276301 + ], + [ + 10.6308952, + 51.434343701 + ], + [ + 10.6315316, + 51.434404301 + ], + [ + 10.6328506, + 51.434570601 + ], + [ + 10.6339593, + 51.434749801 + ], + [ + 10.6345742, + 51.434857301 + ], + [ + 10.6350653, + 51.434953101 + ], + [ + 10.636064, + 51.435156901 + ], + [ + 10.63614, + 51.435174401 + ], + [ + 10.6368795, + 51.435345201 + ], + [ + 10.6379476, + 51.435625601 + ], + [ + 10.6391444, + 51.435960901 + ], + [ + 10.6403818, + 51.436381401 + ], + [ + 10.6413169, + 51.436716501 + ], + [ + 10.6423407, + 51.437116801 + ], + [ + 10.6433495, + 51.437560001 + ], + [ + 10.6439284, + 51.437823901 + ], + [ + 10.6453087, + 51.438537501 + ], + [ + 10.6457817, + 51.438801901 + ], + [ + 10.6459937, + 51.438920401 + ], + [ + 10.6465995, + 51.439259101 + ], + [ + 10.6475194, + 51.439778701 + ], + [ + 10.649283, + 51.440747401 + ], + [ + 10.6501404, + 51.441218301 + ], + [ + 10.6515546, + 51.441829101 + ], + [ + 10.6524706, + 51.442171201 + ], + [ + 10.6532895, + 51.442431601 + ], + [ + 10.6540518, + 51.442632901 + ], + [ + 10.654237, + 51.442679601 + ], + [ + 10.6544994, + 51.442745501 + ], + [ + 10.6557305, + 51.443024301 + ], + [ + 10.6576516, + 51.443337301 + ], + [ + 10.6584281, + 51.443422701 + ], + [ + 10.6593089, + 51.443497401 + ], + [ + 10.6600661, + 51.443534201 + ], + [ + 10.6609531, + 51.443559601 + ], + [ + 10.6614962, + 51.443565101 + ], + [ + 10.6623497, + 51.443565101 + ], + [ + 10.6628215, + 51.443560101 + ], + [ + 10.6644746, + 51.443542401 + ], + [ + 10.6656649, + 51.443555601 + ], + [ + 10.6671185, + 51.443628301 + ], + [ + 10.6689898, + 51.443793901 + ], + [ + 10.6703216, + 51.443978501 + ], + [ + 10.6715983, + 51.444218401 + ], + [ + 10.6727943, + 51.444498301 + ], + [ + 10.673244, + 51.444616101 + ], + [ + 10.6736658, + 51.444738101 + ], + [ + 10.6741863, + 51.444895201 + ], + [ + 10.6747015, + 51.445062701 + ], + [ + 10.6752502, + 51.445242601 + ], + [ + 10.6763459, + 51.445669901 + ], + [ + 10.6764872, + 51.445725001 + ], + [ + 10.6770714, + 51.446009901 + ], + [ + 10.6777358, + 51.446338101 + ], + [ + 10.6783292, + 51.446633101 + ], + [ + 10.6790972, + 51.447080901 + ], + [ + 10.679867, + 51.447564801 + ], + [ + 10.6803574, + 51.447906101 + ], + [ + 10.6812099, + 51.448559901 + ], + [ + 10.6816093, + 51.448917201 + ], + [ + 10.6819714, + 51.449250301 + ], + [ + 10.6823562, + 51.449611601 + ], + [ + 10.6829128, + 51.450207501 + ], + [ + 10.6832669, + 51.450638001 + ], + [ + 10.683598, + 51.451074501 + ], + [ + 10.6838914, + 51.451512801 + ], + [ + 10.6841644, + 51.451977501 + ], + [ + 10.6843315, + 51.452273501 + ], + [ + 10.684557, + 51.452750901 + ], + [ + 10.6847388, + 51.453154101 + ], + [ + 10.6849583, + 51.453783401 + ], + [ + 10.6851995, + 51.454574701 + ], + [ + 10.6854012, + 51.455370501 + ], + [ + 10.6858886, + 51.457414801 + ], + [ + 10.6861105, + 51.458277101 + ], + [ + 10.6862348, + 51.458877001 + ], + [ + 10.6863696, + 51.459406001 + ], + [ + 10.68683, + 51.461382701 + ], + [ + 10.6868911, + 51.461642101 + ], + [ + 10.6871958, + 51.462947901 + ], + [ + 10.6876077, + 51.464648001 + ], + [ + 10.6880806, + 51.466594601 + ], + [ + 10.6884204, + 51.467993301 + ], + [ + 10.6886739, + 51.468924801 + ], + [ + 10.688944, + 51.469766001 + ], + [ + 10.6892895, + 51.470600501 + ], + [ + 10.689376, + 51.470809501 + ], + [ + 10.6897083, + 51.471629201 + ], + [ + 10.6901074, + 51.472397801 + ], + [ + 10.6903905, + 51.472893501 + ], + [ + 10.6907512, + 51.473494901 + ], + [ + 10.6911252, + 51.474088401 + ], + [ + 10.6914409, + 51.474555401 + ], + [ + 10.6917425, + 51.474970201 + ], + [ + 10.6918193, + 51.475075701 + ], + [ + 10.6922919, + 51.475701501 + ], + [ + 10.6928417, + 51.476372101 + ], + [ + 10.6936295, + 51.477256801 + ], + [ + 10.694431, + 51.478086601 + ], + [ + 10.6952952, + 51.478907201 + ], + [ + 10.6957295, + 51.479305601 + ], + [ + 10.6961641, + 51.479681801 + ], + [ + 10.6971088, + 51.480449901 + ], + [ + 10.6981091, + 51.481196601 + ], + [ + 10.6988182, + 51.481701901 + ], + [ + 10.6994199, + 51.482107801 + ], + [ + 10.6995483, + 51.482194501 + ], + [ + 10.7000678, + 51.482531301 + ], + [ + 10.7006025, + 51.482853501 + ], + [ + 10.7011341, + 51.483176901 + ], + [ + 10.7016378, + 51.483474901 + ], + [ + 10.7020997, + 51.483728101 + ], + [ + 10.7026893, + 51.484049501 + ], + [ + 10.7032836, + 51.484353401 + ], + [ + 10.7034408, + 51.484429601 + ], + [ + 10.7040953, + 51.484757001 + ], + [ + 10.7048994, + 51.485145201 + ], + [ + 10.7053874, + 51.485366201 + ], + [ + 10.7057255, + 51.485519301 + ], + [ + 10.7066165, + 51.485892801 + ], + [ + 10.7074689, + 51.486244201 + ], + [ + 10.7084077, + 51.486605001 + ], + [ + 10.7097976, + 51.487102001 + ], + [ + 10.710664, + 51.487384101 + ], + [ + 10.7110905, + 51.487522901 + ], + [ + 10.7124638, + 51.487937101 + ], + [ + 10.7136058, + 51.488248401 + ], + [ + 10.7145446, + 51.488495601 + ], + [ + 10.7159072, + 51.488806201 + ], + [ + 10.7167916, + 51.488999501 + ], + [ + 10.7175538, + 51.489145401 + ], + [ + 10.7176318, + 51.489159601 + ], + [ + 10.7190003, + 51.489408901 + ], + [ + 10.7201703, + 51.489595201 + ], + [ + 10.7207942, + 51.489685801 + ], + [ + 10.7226982, + 51.489919701 + ], + [ + 10.7233453, + 51.489991701 + ], + [ + 10.724374, + 51.490084701 + ], + [ + 10.7249167, + 51.490128201 + ], + [ + 10.7255357, + 51.490171501 + ], + [ + 10.7264121, + 51.490223501 + ], + [ + 10.726868, + 51.490245501 + ], + [ + 10.7273609, + 51.490268101 + ], + [ + 10.7278844, + 51.490286901 + ], + [ + 10.7286489, + 51.490306501 + ], + [ + 10.7291626, + 51.490313001 + ], + [ + 10.7300166, + 51.490318501 + ], + [ + 10.7305335, + 51.490317901 + ], + [ + 10.7310493, + 51.490308801 + ], + [ + 10.7318173, + 51.490290001 + ], + [ + 10.7320577, + 51.490282901 + ], + [ + 10.7325156, + 51.490269301 + ], + [ + 10.7332733, + 51.490237101 + ], + [ + 10.7338675, + 51.490205201 + ], + [ + 10.7355446, + 51.490087601 + ], + [ + 10.7363541, + 51.490013701 + ], + [ + 10.7371267, + 51.489933401 + ], + [ + 10.7386718, + 51.489747001 + ], + [ + 10.7394216, + 51.489637701 + ], + [ + 10.7402063, + 51.489522301 + ], + [ + 10.7411204, + 51.489374401 + ], + [ + 10.7418258, + 51.489247601 + ], + [ + 10.7431735, + 51.488981301 + ], + [ + 10.7441962, + 51.488766401 + ], + [ + 10.745043, + 51.488567201 + ], + [ + 10.7459187, + 51.488343901 + ], + [ + 10.7462946, + 51.488248001 + ], + [ + 10.7472318, + 51.487993901 + ], + [ + 10.7485832, + 51.487595001 + ], + [ + 10.7492028, + 51.487399401 + ], + [ + 10.7497627, + 51.487210501 + ], + [ + 10.7506571, + 51.486901601 + ], + [ + 10.7514687, + 51.486612701 + ], + [ + 10.7519518, + 51.486431501 + ], + [ + 10.7524086, + 51.486251601 + ], + [ + 10.7525239, + 51.486204301 + ], + [ + 10.7534412, + 51.485827901 + ], + [ + 10.7543815, + 51.485431201 + ], + [ + 10.7550695, + 51.485119501 + ], + [ + 10.7553598, + 51.484977201 + ], + [ + 10.7568177, + 51.484253801 + ], + [ + 10.7579684, + 51.483653101 + ], + [ + 10.7581797, + 51.483539401 + ], + [ + 10.7590819, + 51.483053401 + ], + [ + 10.7592461, + 51.482959701 + ], + [ + 10.7601093, + 51.482491401 + ], + [ + 10.7613624, + 51.481817901 + ], + [ + 10.7620574, + 51.481444401 + ], + [ + 10.7636444, + 51.480591401 + ], + [ + 10.7648431, + 51.479947101 + ], + [ + 10.7654382, + 51.479626501 + ], + [ + 10.7683528, + 51.478071601 + ], + [ + 10.7692438, + 51.477587101 + ], + [ + 10.7737458, + 51.475138701 + ], + [ + 10.774485, + 51.474739701 + ], + [ + 10.7759988, + 51.473927501 + ], + [ + 10.7763322, + 51.473748601 + ], + [ + 10.7766279, + 51.473583301 + ], + [ + 10.7799677, + 51.471782701 + ], + [ + 10.7816863, + 51.470858201 + ], + [ + 10.7821439, + 51.470609501 + ], + [ + 10.7827405, + 51.470287001 + ], + [ + 10.7846699, + 51.469243901 + ], + [ + 10.7855844, + 51.468751301 + ], + [ + 10.7894141, + 51.466688401 + ], + [ + 10.7906424, + 51.466040201 + ], + [ + 10.7925902, + 51.465012301 + ], + [ + 10.794013, + 51.464275901 + ], + [ + 10.7953386, + 51.463634901 + ], + [ + 10.7960568, + 51.463306001 + ], + [ + 10.7964235, + 51.463138101 + ], + [ + 10.7972606, + 51.462763701 + ], + [ + 10.7981978, + 51.462359501 + ], + [ + 10.7988635, + 51.462086701 + ], + [ + 10.7990659, + 51.462007301 + ], + [ + 10.7996571, + 51.461769901 + ], + [ + 10.800056, + 51.461615501 + ], + [ + 10.800494, + 51.461455701 + ], + [ + 10.8009582, + 51.461279101 + ], + [ + 10.8015781, + 51.461057001 + ], + [ + 10.8022323, + 51.460835301 + ], + [ + 10.8023188, + 51.460807201 + ], + [ + 10.8036691, + 51.460367701 + ], + [ + 10.804131, + 51.460224701 + ], + [ + 10.8060122, + 51.459708701 + ], + [ + 10.8073666, + 51.459390501 + ], + [ + 10.8086784, + 51.459114901 + ], + [ + 10.8096776, + 51.458942301 + ], + [ + 10.809904, + 51.458903201 + ], + [ + 10.811803, + 51.458633801 + ], + [ + 10.8133362, + 51.458474301 + ], + [ + 10.814689, + 51.458368001 + ], + [ + 10.8154541, + 51.458328401 + ], + [ + 10.8163718, + 51.458298201 + ], + [ + 10.8169965, + 51.458288401 + ], + [ + 10.8177602, + 51.458286701 + ], + [ + 10.8185298, + 51.458290801 + ], + [ + 10.8193234, + 51.458317001 + ], + [ + 10.8203286, + 51.458361301 + ], + [ + 10.8213219, + 51.458433101 + ], + [ + 10.821336, + 51.458434101 + ], + [ + 10.8224086, + 51.458526001 + ], + [ + 10.8238272, + 51.458699201 + ], + [ + 10.8246429, + 51.458807601 + ], + [ + 10.8261434, + 51.459061501 + ], + [ + 10.8276255, + 51.459364501 + ], + [ + 10.8287325, + 51.459621401 + ], + [ + 10.8296525, + 51.459860401 + ], + [ + 10.8298177, + 51.459905101 + ], + [ + 10.830177, + 51.460005801 + ], + [ + 10.8317711, + 51.460495301 + ], + [ + 10.8330331, + 51.460935301 + ], + [ + 10.8345209, + 51.461523501 + ], + [ + 10.8354333, + 51.461928401 + ], + [ + 10.8367173, + 51.462565601 + ], + [ + 10.8374489, + 51.462928701 + ], + [ + 10.8378872, + 51.463164201 + ], + [ + 10.8387288, + 51.463631201 + ], + [ + 10.8424866, + 51.465691801 + ], + [ + 10.8455113, + 51.467362101 + ], + [ + 10.8464892, + 51.467902301 + ], + [ + 10.8476364, + 51.468542401 + ], + [ + 10.8498467, + 51.469786201 + ], + [ + 10.8525869, + 51.471258401 + ], + [ + 10.8532447, + 51.471608301 + ], + [ + 10.8533666, + 51.471673101 + ], + [ + 10.8539965, + 51.472008201 + ], + [ + 10.8555854, + 51.472787801 + ], + [ + 10.8575641, + 51.473623101 + ], + [ + 10.8590463, + 51.474165701 + ], + [ + 10.8594527, + 51.474296101 + ], + [ + 10.8597939, + 51.474405501 + ], + [ + 10.8604952, + 51.474619101 + ], + [ + 10.8618735, + 51.474988301 + ], + [ + 10.8632012, + 51.475317301 + ], + [ + 10.8644591, + 51.475567901 + ], + [ + 10.8658754, + 51.475796801 + ], + [ + 10.8668441, + 51.475931001 + ], + [ + 10.8676175, + 51.476024601 + ], + [ + 10.8681626, + 51.476088201 + ], + [ + 10.8689975, + 51.476167701 + ], + [ + 10.8697963, + 51.476227401 + ], + [ + 10.8707029, + 51.476274201 + ], + [ + 10.8713737, + 51.476299001 + ], + [ + 10.8721006, + 51.476312101 + ], + [ + 10.8728447, + 51.476309801 + ], + [ + 10.8735555, + 51.476297701 + ], + [ + 10.8738562, + 51.476291001 + ], + [ + 10.8743674, + 51.476276201 + ], + [ + 10.874844, + 51.476260301 + ], + [ + 10.8758135, + 51.476202001 + ], + [ + 10.8766116, + 51.476136101 + ], + [ + 10.8768979, + 51.476112501 + ], + [ + 10.8777856, + 51.476022801 + ], + [ + 10.8787351, + 51.475894801 + ], + [ + 10.8792455, + 51.475826001 + ], + [ + 10.8805797, + 51.475613201 + ], + [ + 10.881791, + 51.475376101 + ], + [ + 10.8831152, + 51.475079101 + ], + [ + 10.8846081, + 51.474697001 + ], + [ + 10.8862307, + 51.474251401 + ], + [ + 10.8878947, + 51.473772101 + ], + [ + 10.8901286, + 51.473124101 + ], + [ + 10.8923812, + 51.472491201 + ], + [ + 10.8942491, + 51.471993601 + ], + [ + 10.8955963, + 51.471663001 + ], + [ + 10.8964641, + 51.471458601 + ], + [ + 10.8980414, + 51.471119801 + ], + [ + 10.8994285, + 51.470861001 + ], + [ + 10.9008318, + 51.470618601 + ], + [ + 10.9021291, + 51.470429401 + ], + [ + 10.9034963, + 51.470260901 + ], + [ + 10.9049142, + 51.470112001 + ], + [ + 10.9061325, + 51.470008401 + ], + [ + 10.9064861, + 51.469982701 + ], + [ + 10.9081115, + 51.469888201 + ], + [ + 10.910071, + 51.469804201 + ], + [ + 10.911668, + 51.469767401 + ], + [ + 10.9123253, + 51.469758101 + ], + [ + 10.9140211, + 51.469760901 + ], + [ + 10.9173536, + 51.469766401 + ], + [ + 10.9212577, + 51.469807701 + ], + [ + 10.9225162, + 51.469821001 + ], + [ + 10.9281671, + 51.469834801 + ], + [ + 10.9289232, + 51.469836701 + ], + [ + 10.9293407, + 51.469828801 + ], + [ + 10.9316079, + 51.469799901 + ], + [ + 10.9355251, + 51.469595401 + ], + [ + 10.9394023, + 51.469274601 + ], + [ + 10.9419286, + 51.469023201 + ], + [ + 10.944838, + 51.468663501 + ], + [ + 10.9461556, + 51.468496401 + ], + [ + 10.9483179, + 51.468237101 + ], + [ + 10.9493938, + 51.468107201 + ], + [ + 10.9523784, + 51.467746701 + ], + [ + 10.9545564, + 51.467526101 + ], + [ + 10.9558664, + 51.467437001 + ], + [ + 10.9564232, + 51.467399201 + ], + [ + 10.9581908, + 51.467328001 + ], + [ + 10.960094, + 51.467321701 + ], + [ + 10.9621615, + 51.467374101 + ], + [ + 10.9632035, + 51.467439701 + ], + [ + 10.9639233, + 51.467485001 + ], + [ + 10.9650707, + 51.467572901 + ], + [ + 10.9667864, + 51.467782301 + ], + [ + 10.9692437, + 51.468164001 + ], + [ + 10.9710673, + 51.468520701 + ], + [ + 10.9795516, + 51.470425901 + ], + [ + 10.9803059, + 51.470568201 + ], + [ + 10.9810645, + 51.470701301 + ], + [ + 10.9818339, + 51.470826301 + ], + [ + 10.9826072, + 51.470941801 + ], + [ + 10.9832058, + 51.471022601 + ], + [ + 10.9838065, + 51.471096901 + ], + [ + 10.9844091, + 51.471164901 + ], + [ + 10.9850136, + 51.471226501 + ], + [ + 10.9856196, + 51.471281601 + ], + [ + 10.9862271, + 51.471330301 + ], + [ + 10.9868358, + 51.471372501 + ], + [ + 10.9874455, + 51.471408201 + ], + [ + 10.9880562, + 51.471437401 + ], + [ + 10.9886676, + 51.471460201 + ], + [ + 10.9892795, + 51.471476401 + ], + [ + 10.9898917, + 51.471486101 + ], + [ + 10.9905042, + 51.471489301 + ], + [ + 10.9911166, + 51.471486001 + ], + [ + 10.9917289, + 51.471476201 + ], + [ + 10.9923408, + 51.471459801 + ], + [ + 10.9929521, + 51.471437001 + ], + [ + 10.9935628, + 51.471407601 + ], + [ + 10.9941725, + 51.471371801 + ], + [ + 10.9947812, + 51.471329501 + ], + [ + 10.9953887, + 51.471280701 + ], + [ + 10.9959947, + 51.471225501 + ], + [ + 10.9965991, + 51.471163801 + ], + [ + 10.9972017, + 51.471095701 + ], + [ + 10.9978024, + 51.471021201 + ], + [ + 10.9984009, + 51.470940301 + ], + [ + 10.9989972, + 51.470853101 + ], + [ + 11.0002246, + 51.470659401 + ], + [ + 11.0014174, + 51.470435201 + ], + [ + 11.0026413, + 51.470151401 + ], + [ + 11.0038583, + 51.469856601 + ], + [ + 11.0053289, + 51.469459701 + ], + [ + 11.0067841, + 51.469034101 + ], + [ + 11.0087631, + 51.468362201 + ], + [ + 11.0112778, + 51.467420701 + ], + [ + 11.0124969, + 51.466959401 + ], + [ + 11.0134972, + 51.466586701 + ], + [ + 11.0148087, + 51.466137201 + ], + [ + 11.0162063, + 51.465691401 + ], + [ + 11.0172781, + 51.465386501 + ], + [ + 11.0182186, + 51.465149501 + ], + [ + 11.0192435, + 51.464911201 + ], + [ + 11.0198743, + 51.464787201 + ], + [ + 11.0208913, + 51.464604201 + ], + [ + 11.0215656, + 51.464496601 + ], + [ + 11.0223547, + 51.464384101 + ], + [ + 11.0230011, + 51.464304601 + ], + [ + 11.0232171, + 51.464280601 + ], + [ + 11.0238495, + 51.464217201 + ], + [ + 11.0243483, + 51.464168901 + ], + [ + 11.0251064, + 51.464110501 + ], + [ + 11.0257026, + 51.464069101 + ], + [ + 11.0259913, + 51.464057101 + ], + [ + 11.0268428, + 51.464028001 + ], + [ + 11.027565, + 51.464015101 + ], + [ + 11.0285105, + 51.464011001 + ], + [ + 11.0300232, + 51.464053001 + ], + [ + 11.0303051, + 51.464064701 + ], + [ + 11.0308614, + 51.464093301 + ], + [ + 11.0312627, + 51.464122301 + ], + [ + 11.0317168, + 51.464159001 + ], + [ + 11.0329102, + 51.464280801 + ], + [ + 11.0340505, + 51.464423001 + ], + [ + 11.035485, + 51.464652501 + ], + [ + 11.0368977, + 51.464916501 + ], + [ + 11.038387, + 51.465266401 + ], + [ + 11.0394082, + 51.465542201 + ], + [ + 11.0401069, + 51.465755801 + ], + [ + 11.0406868, + 51.465933201 + ], + [ + 11.0416327, + 51.466256301 + ], + [ + 11.04212, + 51.466432901 + ], + [ + 11.0430997, + 51.466818301 + ], + [ + 11.0444203, + 51.467393501 + ], + [ + 11.0450301, + 51.467682601 + ], + [ + 11.0458676, + 51.468097801 + ], + [ + 11.0461975, + 51.468261401 + ], + [ + 11.0468977, + 51.468625901 + ], + [ + 11.0473778, + 51.468881501 + ], + [ + 11.0483888, + 51.469418801 + ], + [ + 11.0494154, + 51.469964401 + ], + [ + 11.0506564, + 51.470624001 + ], + [ + 11.0514309, + 51.471024301 + ], + [ + 11.0522156, + 51.471410101 + ], + [ + 11.0530411, + 51.471784201 + ], + [ + 11.0539306, + 51.472158101 + ], + [ + 11.0549052, + 51.472534101 + ], + [ + 11.0559288, + 51.472883301 + ], + [ + 11.0567727, + 51.473166401 + ], + [ + 11.0577389, + 51.473452401 + ], + [ + 11.0587935, + 51.473731001 + ], + [ + 11.0597096, + 51.473947101 + ], + [ + 11.0602899, + 51.474065101 + ], + [ + 11.0625519, + 51.474459101 + ], + [ + 11.0638775, + 51.474638201 + ], + [ + 11.0651222, + 51.474775001 + ], + [ + 11.066612, + 51.474891301 + ], + [ + 11.0681209, + 51.474960101 + ], + [ + 11.06971, + 51.474968101 + ], + [ + 11.0713905, + 51.474929901 + ], + [ + 11.072489, + 51.474872401 + ], + [ + 11.0737782, + 51.474768001 + ], + [ + 11.0746664, + 51.474664901 + ], + [ + 11.0757579, + 51.474531101 + ], + [ + 11.0769331, + 51.474348301 + ], + [ + 11.0780874, + 51.474139401 + ], + [ + 11.0794111, + 51.473884201 + ], + [ + 11.0810023, + 51.473520901 + ], + [ + 11.0842506, + 51.472740501 + ], + [ + 11.0876283, + 51.471865601 + ], + [ + 11.0882611, + 51.471706201 + ], + [ + 11.0887874, + 51.471573601 + ], + [ + 11.0894859, + 51.471401201 + ], + [ + 11.0905829, + 51.471137201 + ], + [ + 11.0924155, + 51.470712601 + ], + [ + 11.0940829, + 51.470370801 + ], + [ + 11.095805, + 51.470046501 + ], + [ + 11.095891144, + 51.47003172 + ] + ] + } + }, + { + "identifier": "2026-016202--vi-bs.2026-04-12_08-00-00-000.devi-bs.2026-04-12_08-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.48896704013972,10.71664308038428,51.48911191604463,10.717378867987295", + "point": "51.48896704013972,10.71664308038428", + "startLcPosition": "14", + "impact": { + "lower": "Gro\u00dfwechsungen", + "upper": "Galgenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Galgenberg - Gro\u00dfwechsungen", + "coordinate": { + "lat": 51.48896704013972, + "long": 10.71664308038428 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "12.04.26 von 08:00 bis 16:00 Uhr", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 10.0 km hinter Galgenberg und 0.2 km vor AS Gro\u00dfwechsungen", + "", + "L\u00e4nge: 0.06 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "38 BRW_2026-016202_RF-L_km68,175-69,05_Bauwerkspr\u00fcfung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.71664308, + 51.48896704 + ], + [ + 10.7167916, + 51.488999501 + ], + [ + 10.717378868, + 51.489111916 + ] + ] + } + }, + { + "identifier": "2024-054304--vi-bs.2026-04-07_00-00-00-000.devi-zus.2026-04-07_00-00-00-000_003.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.48756237545409,10.748686548462999,51.472403668784665,10.778815961881753", + "point": "51.48756237545409,10.748686548462999", + "startLcPosition": "15", + "impact": { + "lower": "Kesselberg", + "upper": "Gro\u00dfwechsungen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Gro\u00dfwechsungen - Kesselberg", + "startTimestamp": "2026-04-07T00:00:00+02:00", + "coordinate": { + "lat": 51.48756237545409, + "long": 10.748686548462999 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 00:00 Uhr", + "Ende: 14.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.07.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 2.1 km hinter AS Gro\u00dfwechsungen und Kesselberg", + "", + "L\u00e4nge: 2.69 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "38 BRW_2024-054304_bRF_71,2-73,9_INS A-Bauwerke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.748686548, + 51.487562375 + ], + [ + 10.7492028, + 51.487399401 + ], + [ + 10.7497627, + 51.487210501 + ], + [ + 10.7506571, + 51.486901601 + ], + [ + 10.7514687, + 51.486612701 + ], + [ + 10.7519518, + 51.486431501 + ], + [ + 10.7524086, + 51.486251601 + ], + [ + 10.7525239, + 51.486204301 + ], + [ + 10.7534412, + 51.485827901 + ], + [ + 10.7543815, + 51.485431201 + ], + [ + 10.7550695, + 51.485119501 + ], + [ + 10.7553598, + 51.484977201 + ], + [ + 10.7568177, + 51.484253801 + ], + [ + 10.7579684, + 51.483653101 + ], + [ + 10.7581797, + 51.483539401 + ], + [ + 10.7590819, + 51.483053401 + ], + [ + 10.7592461, + 51.482959701 + ], + [ + 10.7601093, + 51.482491401 + ], + [ + 10.7613624, + 51.481817901 + ], + [ + 10.7620574, + 51.481444401 + ], + [ + 10.7636444, + 51.480591401 + ], + [ + 10.7648431, + 51.479947101 + ], + [ + 10.7654382, + 51.479626501 + ], + [ + 10.7683528, + 51.478071601 + ], + [ + 10.7692438, + 51.477587101 + ], + [ + 10.7737458, + 51.475138701 + ], + [ + 10.774485, + 51.474739701 + ], + [ + 10.7759988, + 51.473927501 + ], + [ + 10.7763322, + 51.473748601 + ], + [ + 10.7766279, + 51.473583301 + ], + [ + 10.778815962, + 51.472403669 + ] + ] + } + }, + { + "identifier": "2026-017571--vi-bs.2026-04-10_07-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.49007800913753,10.724299976622916,51.4747542215532,10.774458099018293", + "point": "51.49007800913753,10.724299976622916", + "startLcPosition": "15", + "impact": { + "lower": "Kesselberg", + "upper": "Gro\u00dfwechsungen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Gro\u00dfwechsungen - Kesselberg", + "coordinate": { + "lat": 51.49007800913753, + "long": 10.724299976622916 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 11:45 Uhr", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 0.3 km hinter AS Gro\u00dfwechsungen und 0.4 km vor Kesselberg", + "", + "L\u00e4nge: 4.04 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A38 von Gro\u00dfwechsungen (AS) nach Kesselberg (Rastplatz) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.724299977, + 51.490078009 + ], + [ + 10.724374, + 51.490084701 + ], + [ + 10.7249167, + 51.490128201 + ], + [ + 10.7255357, + 51.490171501 + ], + [ + 10.7264121, + 51.490223501 + ], + [ + 10.726868, + 51.490245501 + ], + [ + 10.7273609, + 51.490268101 + ], + [ + 10.7278844, + 51.490286901 + ], + [ + 10.7286489, + 51.490306501 + ], + [ + 10.7291626, + 51.490313001 + ], + [ + 10.7300166, + 51.490318501 + ], + [ + 10.7305335, + 51.490317901 + ], + [ + 10.7310493, + 51.490308801 + ], + [ + 10.7318173, + 51.490290001 + ], + [ + 10.7320577, + 51.490282901 + ], + [ + 10.7325156, + 51.490269301 + ], + [ + 10.7332733, + 51.490237101 + ], + [ + 10.7338675, + 51.490205201 + ], + [ + 10.7355446, + 51.490087601 + ], + [ + 10.7363541, + 51.490013701 + ], + [ + 10.7371267, + 51.489933401 + ], + [ + 10.7386718, + 51.489747001 + ], + [ + 10.7394216, + 51.489637701 + ], + [ + 10.7402063, + 51.489522301 + ], + [ + 10.7411204, + 51.489374401 + ], + [ + 10.7418258, + 51.489247601 + ], + [ + 10.7431735, + 51.488981301 + ], + [ + 10.7441962, + 51.488766401 + ], + [ + 10.745043, + 51.488567201 + ], + [ + 10.7459187, + 51.488343901 + ], + [ + 10.7462946, + 51.488248001 + ], + [ + 10.7472318, + 51.487993901 + ], + [ + 10.7485832, + 51.487595001 + ], + [ + 10.7492028, + 51.487399401 + ], + [ + 10.7497627, + 51.487210501 + ], + [ + 10.7506571, + 51.486901601 + ], + [ + 10.7514687, + 51.486612701 + ], + [ + 10.7519518, + 51.486431501 + ], + [ + 10.7524086, + 51.486251601 + ], + [ + 10.7525239, + 51.486204301 + ], + [ + 10.7534412, + 51.485827901 + ], + [ + 10.7543815, + 51.485431201 + ], + [ + 10.7550695, + 51.485119501 + ], + [ + 10.7553598, + 51.484977201 + ], + [ + 10.7568177, + 51.484253801 + ], + [ + 10.7579684, + 51.483653101 + ], + [ + 10.7581797, + 51.483539401 + ], + [ + 10.7590819, + 51.483053401 + ], + [ + 10.7592461, + 51.482959701 + ], + [ + 10.7601093, + 51.482491401 + ], + [ + 10.7613624, + 51.481817901 + ], + [ + 10.7620574, + 51.481444401 + ], + [ + 10.7636444, + 51.480591401 + ], + [ + 10.7648431, + 51.479947101 + ], + [ + 10.7654382, + 51.479626501 + ], + [ + 10.7683528, + 51.478071601 + ], + [ + 10.7692438, + 51.477587101 + ], + [ + 10.7737458, + 51.475138701 + ], + [ + 10.774458099, + 51.474754222 + ] + ] + } + }, + { + "identifier": "2024-054304--vi-bs.2026-04-07_00-00-00-000.devi-zus.2026-04-07_00-00-00-000_003.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.47248995939086,10.778935285631341,51.48766428470412,10.748769133500286", + "point": "51.47248995939086,10.778935285631341", + "startLcPosition": "17", + "impact": { + "lower": "Gro\u00dfwechsungen", + "upper": "Kesselberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Kesselberg - Gro\u00dfwechsungen", + "startTimestamp": "2026-04-07T00:00:00+02:00", + "coordinate": { + "lat": 51.47248995939086, + "long": 10.778935285631341 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 00:00 Uhr", + "Ende: 14.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.07.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen Kesselberg und 2.1 km vor AS Gro\u00dfwechsungen", + "", + "L\u00e4nge: 2.69 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "38 BRW_2024-054304_bRF_71,2-73,9_INS A-Bauwerke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.778935286, + 51.472489959 + ], + [ + 10.7764952, + 51.473806301 + ], + [ + 10.7759705, + 51.474089301 + ], + [ + 10.7755492, + 51.474316501 + ], + [ + 10.7745972, + 51.474829501 + ], + [ + 10.7738393, + 51.475240001 + ], + [ + 10.7708976, + 51.476827801 + ], + [ + 10.769351, + 51.477663701 + ], + [ + 10.7669991, + 51.478934801 + ], + [ + 10.7656144, + 51.479683101 + ], + [ + 10.7650162, + 51.480005401 + ], + [ + 10.763765, + 51.480665501 + ], + [ + 10.7622348, + 51.481498601 + ], + [ + 10.7615396, + 51.481876501 + ], + [ + 10.7601745, + 51.482618701 + ], + [ + 10.7594515, + 51.483006301 + ], + [ + 10.7592871, + 51.483093201 + ], + [ + 10.7582642, + 51.483640601 + ], + [ + 10.7569133, + 51.484344901 + ], + [ + 10.7556981, + 51.484958701 + ], + [ + 10.7551858, + 51.485206701 + ], + [ + 10.7546607, + 51.485442201 + ], + [ + 10.753344, + 51.486007401 + ], + [ + 10.7526175, + 51.486306001 + ], + [ + 10.7519822, + 51.486549701 + ], + [ + 10.7518118, + 51.486612301 + ], + [ + 10.7507445, + 51.487001901 + ], + [ + 10.7492751, + 51.487504401 + ], + [ + 10.748769134, + 51.487664285 + ] + ] + } + }, + { + "identifier": "2025-054642--vi-bs.2026-04-13_08-00-00-000.devi-zus.2025-11-14_08-00-00-000_005.de9", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.4524292317429,11.213703002733666,51.448540380928726,11.277917126465853", + "point": "51.4524292317429,11.213703002733666", + "startLcPosition": "22", + "impact": { + "lower": "Sangerhausen-S\u00fcd", + "upper": "Ro\u00dfla", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Ro\u00dfla - Sangerhausen-S\u00fcd", + "startTimestamp": "2026-04-13T08:00:00+02:00", + "coordinate": { + "lat": 51.4524292317429, + "long": 11.213703002733666 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 08:00 Uhr", + "Ende: 08.05.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.05.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 8.6 km hinter AS Ro\u00dfla und 1.9 km vor AS Sangerhausen-S\u00fcd", + "", + "L\u00e4nge: 4.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A38 RF L AS SGH Verbreiterung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.213703003, + 51.452429232 + ], + [ + 11.215426, + 51.452425301 + ], + [ + 11.2183108, + 51.452479701 + ], + [ + 11.2213713, + 51.452470801 + ], + [ + 11.2215486, + 51.452470201 + ], + [ + 11.2218557, + 51.452463101 + ], + [ + 11.2224108, + 51.452450201 + ], + [ + 11.223228, + 51.452423201 + ], + [ + 11.2250867, + 51.452306401 + ], + [ + 11.2271889, + 51.452122201 + ], + [ + 11.2295496, + 51.451875901 + ], + [ + 11.2301576, + 51.451809801 + ], + [ + 11.2306347, + 51.451766401 + ], + [ + 11.23171, + 51.451641101 + ], + [ + 11.2328501, + 51.451516701 + ], + [ + 11.2386345, + 51.450904101 + ], + [ + 11.2443472, + 51.450295401 + ], + [ + 11.2481393, + 51.449895501 + ], + [ + 11.249192, + 51.449783001 + ], + [ + 11.2493129, + 51.449770001 + ], + [ + 11.2540212, + 51.449266701 + ], + [ + 11.2580972, + 51.448817501 + ], + [ + 11.2606935, + 51.448533501 + ], + [ + 11.2611382, + 51.448483801 + ], + [ + 11.2632144, + 51.448278501 + ], + [ + 11.2637272, + 51.448235001 + ], + [ + 11.2646524, + 51.448165401 + ], + [ + 11.2648873, + 51.448150501 + ], + [ + 11.2661255, + 51.448061801 + ], + [ + 11.2668178, + 51.448032901 + ], + [ + 11.2673059, + 51.448010701 + ], + [ + 11.2691741, + 51.447974601 + ], + [ + 11.270082, + 51.447971201 + ], + [ + 11.2716417, + 51.448003701 + ], + [ + 11.2732265, + 51.448074401 + ], + [ + 11.2737547, + 51.448112001 + ], + [ + 11.2753669, + 51.448232801 + ], + [ + 11.2763491, + 51.448338601 + ], + [ + 11.2774991, + 51.448483001 + ], + [ + 11.277917126, + 51.448540381 + ] + ] + } + }, + { + "identifier": "2026-007005--vi-fbm.2026-04-10_08-00-00-000.devi-zus.2026-03-09_08-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.46866064044661,11.112290839636284,51.43405998776002,10.603955516790087", + "point": "51.46866064044661,11.112290839636284", + "startLcPosition": "23", + "impact": { + "lower": "Bleicherode", + "upper": "Helmetal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Helmetal - Bleicherode", + "coordinate": { + "lat": 51.46866064044661, + "long": 11.112290839636284 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 10.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 8.3 km hinter Helmetal und 0.4 km vor AS Bleicherode", + "", + "L\u00e4nge: 41.39 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 zw. AS Bleicherode und Ro\u00dfla, Umleitungsbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.11229084, + 51.46866064 + ], + [ + 11.110153, + 51.468768401 + ], + [ + 11.1075461, + 51.468892601 + ], + [ + 11.1049478, + 51.469043101 + ], + [ + 11.103768, + 51.469138301 + ], + [ + 11.1026885, + 51.469235001 + ], + [ + 11.1012632, + 51.469393601 + ], + [ + 11.1009991, + 51.469423001 + ], + [ + 11.0986789, + 51.469709101 + ], + [ + 11.0979992, + 51.469811201 + ], + [ + 11.0969356, + 51.469974101 + ], + [ + 11.096686, + 51.470012301 + ], + [ + 11.0965691, + 51.470031801 + ], + [ + 11.0963143, + 51.470074301 + ], + [ + 11.095857, + 51.470152601 + ], + [ + 11.0935155, + 51.470603101 + ], + [ + 11.0924686, + 51.470813101 + ], + [ + 11.0906553, + 51.471234101 + ], + [ + 11.0895503, + 51.471501401 + ], + [ + 11.0886902, + 51.471718001 + ], + [ + 11.0881518, + 51.471850301 + ], + [ + 11.0876894, + 51.471963901 + ], + [ + 11.0843037, + 51.472833601 + ], + [ + 11.081079, + 51.473624801 + ], + [ + 11.0794722, + 51.473993601 + ], + [ + 11.0781426, + 51.474243701 + ], + [ + 11.0769734, + 51.474450201 + ], + [ + 11.0757938, + 51.474633601 + ], + [ + 11.0747092, + 51.474771701 + ], + [ + 11.0738035, + 51.474871001 + ], + [ + 11.0725086, + 51.474974001 + ], + [ + 11.0713921, + 51.475036601 + ], + [ + 11.0697073, + 51.475080101 + ], + [ + 11.0681174, + 51.475064801 + ], + [ + 11.0666013, + 51.474997401 + ], + [ + 11.0650914, + 51.474881901 + ], + [ + 11.0638292, + 51.474740101 + ], + [ + 11.0625256, + 51.474564001 + ], + [ + 11.0602314, + 51.474163701 + ], + [ + 11.059651, + 51.474047701 + ], + [ + 11.0587363, + 51.473835401 + ], + [ + 11.0576661, + 51.473548401 + ], + [ + 11.0567003, + 51.473257801 + ], + [ + 11.0558611, + 51.472980501 + ], + [ + 11.0548252, + 51.472624701 + ], + [ + 11.0538493, + 51.472252001 + ], + [ + 11.052955, + 51.471873901 + ], + [ + 11.0521172, + 51.471497201 + ], + [ + 11.0513232, + 51.471107101 + ], + [ + 11.0505255, + 51.470703201 + ], + [ + 11.049912, + 51.470381901 + ], + [ + 11.0495447, + 51.470185201 + ], + [ + 11.0493037, + 51.470056201 + ], + [ + 11.0482879, + 51.469512401 + ], + [ + 11.0472828, + 51.468974301 + ], + [ + 11.0461029, + 51.468354801 + ], + [ + 11.0449388, + 51.467771901 + ], + [ + 11.044333, + 51.467489501 + ], + [ + 11.0430765, + 51.466941401 + ], + [ + 11.0427706, + 51.466814401 + ], + [ + 11.0420419, + 51.466525301 + ], + [ + 11.0415728, + 51.466355801 + ], + [ + 11.0406207, + 51.466034301 + ], + [ + 11.0400471, + 51.465860101 + ], + [ + 11.0393293, + 51.465642101 + ], + [ + 11.0383209, + 51.465370801 + ], + [ + 11.0368366, + 51.465019001 + ], + [ + 11.0354421, + 51.464759401 + ], + [ + 11.0340164, + 51.464534501 + ], + [ + 11.0328677, + 51.464387601 + ], + [ + 11.0317168, + 51.464269901 + ], + [ + 11.0312691, + 51.464235001 + ], + [ + 11.030849, + 51.464203901 + ], + [ + 11.0303026, + 51.464175301 + ], + [ + 11.0300186, + 51.464162301 + ], + [ + 11.0284884, + 51.464117101 + ], + [ + 11.0275677, + 51.464118801 + ], + [ + 11.0268682, + 51.464128901 + ], + [ + 11.0259997, + 51.464163201 + ], + [ + 11.0257261, + 51.464177401 + ], + [ + 11.0251252, + 51.464218201 + ], + [ + 11.0243782, + 51.464277901 + ], + [ + 11.0236424, + 51.464340801 + ], + [ + 11.0230405, + 51.464406501 + ], + [ + 11.0224075, + 51.464485501 + ], + [ + 11.0216218, + 51.464598901 + ], + [ + 11.0212682, + 51.464653201 + ], + [ + 11.020603, + 51.464769601 + ], + [ + 11.0199367, + 51.464889601 + ], + [ + 11.0193112, + 51.465012901 + ], + [ + 11.0182841, + 51.465245701 + ], + [ + 11.0173393, + 51.465484801 + ], + [ + 11.0162744, + 51.465787101 + ], + [ + 11.0148806, + 51.466227301 + ], + [ + 11.0135764, + 51.466680701 + ], + [ + 11.0125932, + 51.467041401 + ], + [ + 11.0113628, + 51.467505001 + ], + [ + 11.008843, + 51.468450801 + ], + [ + 11.0068408, + 51.469133501 + ], + [ + 11.0053959, + 51.469565001 + ], + [ + 11.0039334, + 51.469956501 + ], + [ + 11.002703, + 51.470250001 + ], + [ + 11.0014704, + 51.470540101 + ], + [ + 11.0002756, + 51.470759601 + ], + [ + 10.9990311, + 51.470953801 + ], + [ + 10.9984322, + 51.471042801 + ], + [ + 10.997831, + 51.471125301 + ], + [ + 10.9972276, + 51.471201301 + ], + [ + 10.9966221, + 51.471270801 + ], + [ + 10.9960149, + 51.471333801 + ], + [ + 10.9954059, + 51.471390201 + ], + [ + 10.9947955, + 51.471440001 + ], + [ + 10.9941838, + 51.471483201 + ], + [ + 10.993571, + 51.471519901 + ], + [ + 10.9929572, + 51.471549901 + ], + [ + 10.9923427, + 51.471573301 + ], + [ + 10.9917277, + 51.471590001 + ], + [ + 10.9911123, + 51.471600101 + ], + [ + 10.9904967, + 51.471603601 + ], + [ + 10.989881, + 51.471600501 + ], + [ + 10.9892656, + 51.471590701 + ], + [ + 10.9886505, + 51.471574201 + ], + [ + 10.988036, + 51.471551201 + ], + [ + 10.9874222, + 51.471521501 + ], + [ + 10.9868094, + 51.471485201 + ], + [ + 10.9861976, + 51.471442201 + ], + [ + 10.9855871, + 51.471392701 + ], + [ + 10.9849781, + 51.471336701 + ], + [ + 10.9843707, + 51.471274001 + ], + [ + 10.9837652, + 51.471204801 + ], + [ + 10.9831617, + 51.471129101 + ], + [ + 10.9825604, + 51.471046901 + ], + [ + 10.9820253, + 51.470970801 + ], + [ + 10.9814925, + 51.470888801 + ], + [ + 10.9809622, + 51.470800801 + ], + [ + 10.9804776, + 51.470714801 + ], + [ + 10.9799953, + 51.470623901 + ], + [ + 10.9795155, + 51.470528101 + ], + [ + 10.9710358, + 51.468646301 + ], + [ + 10.9691964, + 51.468289001 + ], + [ + 10.9667877, + 51.467905601 + ], + [ + 10.9651243, + 51.467713301 + ], + [ + 10.9639188, + 51.467600201 + ], + [ + 10.9638782, + 51.467597601 + ], + [ + 10.9621144, + 51.467484001 + ], + [ + 10.9600784, + 51.467429001 + ], + [ + 10.9581914, + 51.467438501 + ], + [ + 10.9563588, + 51.467526101 + ], + [ + 10.9562751, + 51.467532301 + ], + [ + 10.9545235, + 51.467662801 + ], + [ + 10.9523355, + 51.467873701 + ], + [ + 10.9495002, + 51.468208801 + ], + [ + 10.9483238, + 51.468347901 + ], + [ + 10.9470304, + 51.468512601 + ], + [ + 10.9462578, + 51.468604601 + ], + [ + 10.9449505, + 51.468769201 + ], + [ + 10.9420251, + 51.469136901 + ], + [ + 10.9419948, + 51.469140201 + ], + [ + 10.9394338, + 51.469415901 + ], + [ + 10.9355664, + 51.469704901 + ], + [ + 10.9355348, + 51.469706601 + ], + [ + 10.9315961, + 51.469917201 + ], + [ + 10.9294068, + 51.469940501 + ], + [ + 10.9289867, + 51.469948701 + ], + [ + 10.9281778, + 51.469947701 + ], + [ + 10.925324, + 51.469964301 + ], + [ + 10.9225011, + 51.469940401 + ], + [ + 10.9212472, + 51.469925101 + ], + [ + 10.9173223, + 51.469877301 + ], + [ + 10.9140238, + 51.469878201 + ], + [ + 10.9116638, + 51.469878901 + ], + [ + 10.9100749, + 51.469916701 + ], + [ + 10.9081145, + 51.469998001 + ], + [ + 10.906566, + 51.470090001 + ], + [ + 10.9062336, + 51.470114801 + ], + [ + 10.9049381, + 51.470222101 + ], + [ + 10.9035372, + 51.470371601 + ], + [ + 10.9021795, + 51.470541601 + ], + [ + 10.900864, + 51.470731401 + ], + [ + 10.8994692, + 51.470965401 + ], + [ + 10.898101, + 51.471224001 + ], + [ + 10.8965287, + 51.471566401 + ], + [ + 10.8958155, + 51.471730801 + ], + [ + 10.8943152, + 51.472097601 + ], + [ + 10.8924523, + 51.472592501 + ], + [ + 10.8902013, + 51.473222401 + ], + [ + 10.8879663, + 51.473870601 + ], + [ + 10.8862971, + 51.474354001 + ], + [ + 10.8846883, + 51.474802301 + ], + [ + 10.8831798, + 51.475182001 + ], + [ + 10.8818481, + 51.475486001 + ], + [ + 10.8806253, + 51.475727601 + ], + [ + 10.8792981, + 51.475935101 + ], + [ + 10.8778226, + 51.476131001 + ], + [ + 10.8769287, + 51.476225501 + ], + [ + 10.8758166, + 51.476316301 + ], + [ + 10.8748502, + 51.476373201 + ], + [ + 10.874311, + 51.476393201 + ], + [ + 10.8739305, + 51.476403001 + ], + [ + 10.8733052, + 51.476418201 + ], + [ + 10.8728515, + 51.476420201 + ], + [ + 10.8720857, + 51.476420801 + ], + [ + 10.8713678, + 51.476406801 + ], + [ + 10.8706891, + 51.476383601 + ], + [ + 10.8697704, + 51.476332501 + ], + [ + 10.8689867, + 51.476274601 + ], + [ + 10.8681392, + 51.476196101 + ], + [ + 10.8676644, + 51.476147301 + ], + [ + 10.8668788, + 51.476049801 + ], + [ + 10.8658459, + 51.475908801 + ], + [ + 10.8644108, + 51.475676601 + ], + [ + 10.8631395, + 51.475422601 + ], + [ + 10.8617957, + 51.475096801 + ], + [ + 10.8603715, + 51.474706501 + ], + [ + 10.8597252, + 51.474508701 + ], + [ + 10.8593646, + 51.474392401 + ], + [ + 10.8589241, + 51.474250301 + ], + [ + 10.8574691, + 51.473721301 + ], + [ + 10.8554291, + 51.472855601 + ], + [ + 10.8537617, + 51.472039101 + ], + [ + 10.8530401, + 51.471651201 + ], + [ + 10.852466, + 51.471342701 + ], + [ + 10.8524087, + 51.471311901 + ], + [ + 10.8495744, + 51.469812401 + ], + [ + 10.8475041, + 51.468636201 + ], + [ + 10.846365, + 51.467989001 + ], + [ + 10.8453823, + 51.467452101 + ], + [ + 10.8423596, + 51.465783701 + ], + [ + 10.8408722, + 51.464962701 + ], + [ + 10.8377688, + 51.463249601 + ], + [ + 10.8373294, + 51.463014901 + ], + [ + 10.8365951, + 51.462639901 + ], + [ + 10.8358442, + 51.462256501 + ], + [ + 10.8348664, + 51.461812401 + ], + [ + 10.8338867, + 51.461404001 + ], + [ + 10.8327709, + 51.460978101 + ], + [ + 10.8318017, + 51.460627701 + ], + [ + 10.8309576, + 51.460362401 + ], + [ + 10.8301019, + 51.460108901 + ], + [ + 10.8297397, + 51.460012301 + ], + [ + 10.8286134, + 51.459714401 + ], + [ + 10.8276237, + 51.459482001 + ], + [ + 10.826161, + 51.459180401 + ], + [ + 10.8247446, + 51.458941001 + ], + [ + 10.8237238, + 51.458798601 + ], + [ + 10.8223083, + 51.458634801 + ], + [ + 10.821242, + 51.458544201 + ], + [ + 10.8203184, + 51.458475501 + ], + [ + 10.8199439, + 51.458459101 + ], + [ + 10.8192748, + 51.458429901 + ], + [ + 10.8185234, + 51.458403501 + ], + [ + 10.8177951, + 51.458394901 + ], + [ + 10.8170259, + 51.458401101 + ], + [ + 10.8164462, + 51.458410101 + ], + [ + 10.816368, + 51.458412801 + ], + [ + 10.8156541, + 51.458437801 + ], + [ + 10.81487, + 51.458468201 + ], + [ + 10.8134114, + 51.458576501 + ], + [ + 10.811794, + 51.458746601 + ], + [ + 10.8100366, + 51.458995301 + ], + [ + 10.8097411, + 51.459046201 + ], + [ + 10.8087749, + 51.459212601 + ], + [ + 10.8073901, + 51.459503501 + ], + [ + 10.806145, + 51.459798901 + ], + [ + 10.8042216, + 51.460321001 + ], + [ + 10.8023873, + 51.460902001 + ], + [ + 10.8012352, + 51.461297401 + ], + [ + 10.8006199, + 51.461539601 + ], + [ + 10.8001591, + 51.461717901 + ], + [ + 10.7989655, + 51.462181401 + ], + [ + 10.7983021, + 51.462456201 + ], + [ + 10.7981548, + 51.462524801 + ], + [ + 10.7977942, + 51.462677501 + ], + [ + 10.7975354, + 51.462786701 + ], + [ + 10.796712, + 51.463146101 + ], + [ + 10.7961626, + 51.463400801 + ], + [ + 10.7955414, + 51.463684701 + ], + [ + 10.7942888, + 51.464295201 + ], + [ + 10.7935064, + 51.464683001 + ], + [ + 10.7926278, + 51.465139301 + ], + [ + 10.7907602, + 51.466126301 + ], + [ + 10.7895252, + 51.466777501 + ], + [ + 10.785715, + 51.468843201 + ], + [ + 10.7845468, + 51.469464901 + ], + [ + 10.7832318, + 51.470168801 + ], + [ + 10.7824343, + 51.470602301 + ], + [ + 10.782224, + 51.470716601 + ], + [ + 10.781748, + 51.470971801 + ], + [ + 10.780077, + 51.471874001 + ], + [ + 10.7764952, + 51.473806301 + ], + [ + 10.7759705, + 51.474089301 + ], + [ + 10.7755492, + 51.474316501 + ], + [ + 10.7745972, + 51.474829501 + ], + [ + 10.7738393, + 51.475240001 + ], + [ + 10.7708976, + 51.476827801 + ], + [ + 10.769351, + 51.477663701 + ], + [ + 10.7669991, + 51.478934801 + ], + [ + 10.7656144, + 51.479683101 + ], + [ + 10.7650162, + 51.480005401 + ], + [ + 10.763765, + 51.480665501 + ], + [ + 10.7622348, + 51.481498601 + ], + [ + 10.7615396, + 51.481876501 + ], + [ + 10.7601745, + 51.482618701 + ], + [ + 10.7594515, + 51.483006301 + ], + [ + 10.7592871, + 51.483093201 + ], + [ + 10.7582642, + 51.483640601 + ], + [ + 10.7569133, + 51.484344901 + ], + [ + 10.7556981, + 51.484958701 + ], + [ + 10.7551858, + 51.485206701 + ], + [ + 10.7546607, + 51.485442201 + ], + [ + 10.753344, + 51.486007401 + ], + [ + 10.7526175, + 51.486306001 + ], + [ + 10.7519822, + 51.486549701 + ], + [ + 10.7518118, + 51.486612301 + ], + [ + 10.7507445, + 51.487001901 + ], + [ + 10.7492751, + 51.487504401 + ], + [ + 10.7486637, + 51.487697601 + ], + [ + 10.748207, + 51.487833501 + ], + [ + 10.7476707, + 51.487992101 + ], + [ + 10.746666, + 51.488273301 + ], + [ + 10.7460367, + 51.488437301 + ], + [ + 10.7454244, + 51.488591901 + ], + [ + 10.7450181, + 51.488694501 + ], + [ + 10.7443567, + 51.488849401 + ], + [ + 10.7432512, + 51.489087701 + ], + [ + 10.741874, + 51.489358101 + ], + [ + 10.7409273, + 51.489526301 + ], + [ + 10.740247, + 51.489632401 + ], + [ + 10.7394478, + 51.489754301 + ], + [ + 10.7387198, + 51.489856501 + ], + [ + 10.7371757, + 51.490040801 + ], + [ + 10.7363637, + 51.490127501 + ], + [ + 10.7355482, + 51.490201001 + ], + [ + 10.7338695, + 51.490316101 + ], + [ + 10.7332676, + 51.490349201 + ], + [ + 10.73251, + 51.490382901 + ], + [ + 10.7320357, + 51.490399901 + ], + [ + 10.7310345, + 51.490422501 + ], + [ + 10.7305284, + 51.490430401 + ], + [ + 10.7300084, + 51.490431201 + ], + [ + 10.7291565, + 51.490424401 + ], + [ + 10.7286361, + 51.490418601 + ], + [ + 10.7278743, + 51.490397001 + ], + [ + 10.7273327, + 51.490379001 + ], + [ + 10.7268424, + 51.490359601 + ], + [ + 10.7263611, + 51.490332401 + ], + [ + 10.7255517, + 51.490285101 + ], + [ + 10.724872, + 51.490242101 + ], + [ + 10.7234556, + 51.490114901 + ], + [ + 10.723239, + 51.490094301 + ], + [ + 10.7225564, + 51.490025901 + ], + [ + 10.7208051, + 51.489805101 + ], + [ + 10.7194688, + 51.489607701 + ], + [ + 10.7189497, + 51.489518101 + ], + [ + 10.7175025, + 51.489256101 + ], + [ + 10.7161816, + 51.488995501 + ], + [ + 10.7157364, + 51.488892701 + ], + [ + 10.7148524, + 51.488690301 + ], + [ + 10.7146748, + 51.488646301 + ], + [ + 10.7137535, + 51.488410501 + ], + [ + 10.7124612, + 51.488060601 + ], + [ + 10.7115781, + 51.487800801 + ], + [ + 10.7105916, + 51.487489501 + ], + [ + 10.7096689, + 51.487182201 + ], + [ + 10.7085526, + 51.486788701 + ], + [ + 10.7072061, + 51.486274301 + ], + [ + 10.706343, + 51.485919501 + ], + [ + 10.7052695, + 51.485452501 + ], + [ + 10.7044381, + 51.485068301 + ], + [ + 10.7034194, + 51.484569901 + ], + [ + 10.7031196, + 51.484403101 + ], + [ + 10.7026254, + 51.484159001 + ], + [ + 10.7020085, + 51.483825001 + ], + [ + 10.7011019, + 51.483310501 + ], + [ + 10.7005038, + 51.482948101 + ], + [ + 10.6999376, + 51.482605601 + ], + [ + 10.6994149, + 51.482270501 + ], + [ + 10.6992769, + 51.482177301 + ], + [ + 10.6986876, + 51.481779301 + ], + [ + 10.697961, + 51.481257601 + ], + [ + 10.6969749, + 51.480522501 + ], + [ + 10.6960309, + 51.479750401 + ], + [ + 10.6956154, + 51.479393401 + ], + [ + 10.695133, + 51.478955201 + ], + [ + 10.6942856, + 51.478141101 + ], + [ + 10.6934727, + 51.477312701 + ], + [ + 10.6926279, + 51.476365901 + ], + [ + 10.6921317, + 51.475744701 + ], + [ + 10.6915791, + 51.475022001 + ], + [ + 10.691255, + 51.474572101 + ], + [ + 10.6909586, + 51.474130801 + ], + [ + 10.6905922, + 51.473558801 + ], + [ + 10.6902448, + 51.472967401 + ], + [ + 10.6899535, + 51.472464801 + ], + [ + 10.6896475, + 51.471855201 + ], + [ + 10.6893881, + 51.471318401 + ], + [ + 10.6891041, + 51.470647701 + ], + [ + 10.6887243, + 51.469665801 + ], + [ + 10.6884915, + 51.468897401 + ], + [ + 10.6882354, + 51.468017801 + ], + [ + 10.6878948, + 51.466595801 + ], + [ + 10.6874121, + 51.464611501 + ], + [ + 10.687024, + 51.462970201 + ], + [ + 10.6867119, + 51.461662101 + ], + [ + 10.6866469, + 51.461399201 + ], + [ + 10.6861902, + 51.459422101 + ], + [ + 10.6860516, + 51.458862301 + ], + [ + 10.6859275, + 51.458230501 + ], + [ + 10.6857109, + 51.457431201 + ], + [ + 10.6852414, + 51.455469201 + ], + [ + 10.6851355, + 51.455040301 + ], + [ + 10.6850142, + 51.454562201 + ], + [ + 10.6847752, + 51.453780001 + ], + [ + 10.6845404, + 51.453142001 + ], + [ + 10.6843902, + 51.452793301 + ], + [ + 10.6841691, + 51.452334401 + ], + [ + 10.6839931, + 51.452026101 + ], + [ + 10.6837237, + 51.451559301 + ], + [ + 10.6834519, + 51.451159501 + ], + [ + 10.6830992, + 51.450682601 + ], + [ + 10.6827942, + 51.450318601 + ], + [ + 10.6826087, + 51.450105201 + ], + [ + 10.6822619, + 51.449729101 + ], + [ + 10.6818472, + 51.449315601 + ], + [ + 10.6814598, + 51.448968601 + ], + [ + 10.6810228, + 51.448585201 + ], + [ + 10.6806672, + 51.448284601 + ], + [ + 10.6801735, + 51.447949101 + ], + [ + 10.679679, + 51.447601301 + ], + [ + 10.6789282, + 51.447130301 + ], + [ + 10.6781409, + 51.446688201 + ], + [ + 10.6775429, + 51.446394901 + ], + [ + 10.6768874, + 51.446069201 + ], + [ + 10.6762574, + 51.445778201 + ], + [ + 10.6751096, + 51.445334701 + ], + [ + 10.6744804, + 51.445121201 + ], + [ + 10.6740132, + 51.444969901 + ], + [ + 10.6735193, + 51.444821801 + ], + [ + 10.6731106, + 51.444704801 + ], + [ + 10.6725407, + 51.444559401 + ], + [ + 10.671508, + 51.444317801 + ], + [ + 10.6702728, + 51.444086601 + ], + [ + 10.6689433, + 51.443903801 + ], + [ + 10.6670802, + 51.443745301 + ], + [ + 10.66588, + 51.443675601 + ], + [ + 10.6649305, + 51.443656201 + ], + [ + 10.6628215, + 51.443676501 + ], + [ + 10.6615797, + 51.443684801 + ], + [ + 10.6597029, + 51.443655201 + ], + [ + 10.6584334, + 51.443544201 + ], + [ + 10.6556903, + 51.443153001 + ], + [ + 10.6544964, + 51.442866101 + ], + [ + 10.6542227, + 51.442798601 + ], + [ + 10.6536972, + 51.442663001 + ], + [ + 10.6527984, + 51.442399501 + ], + [ + 10.652101, + 51.442163601 + ], + [ + 10.651433, + 51.441915201 + ], + [ + 10.6506413, + 51.441606901 + ], + [ + 10.6500451, + 51.441335601 + ], + [ + 10.6491637, + 51.440851101 + ], + [ + 10.6479798, + 51.440222801 + ], + [ + 10.6464681, + 51.439330501 + ], + [ + 10.6458438, + 51.438985101 + ], + [ + 10.6456334, + 51.438865401 + ], + [ + 10.6452455, + 51.438641001 + ], + [ + 10.6438103, + 51.437909001 + ], + [ + 10.6431486, + 51.437605501 + ], + [ + 10.6422367, + 51.437212401 + ], + [ + 10.64132, + 51.436844301 + ], + [ + 10.6402891, + 51.436471201 + ], + [ + 10.6393957, + 51.436177201 + ], + [ + 10.6386077, + 51.435934601 + ], + [ + 10.6377713, + 51.435704501 + ], + [ + 10.6367885, + 51.435446701 + ], + [ + 10.6360791, + 51.435282701 + ], + [ + 10.6350079, + 51.435054801 + ], + [ + 10.6345077, + 51.434958901 + ], + [ + 10.6338778, + 51.434850601 + ], + [ + 10.6327862, + 51.434671901 + ], + [ + 10.6315023, + 51.434514201 + ], + [ + 10.6308712, + 51.434453501 + ], + [ + 10.6302323, + 51.434392001 + ], + [ + 10.6290455, + 51.434308201 + ], + [ + 10.6274218, + 51.434236101 + ], + [ + 10.6259994, + 51.434233001 + ], + [ + 10.625394, + 51.434240001 + ], + [ + 10.6248736, + 51.434252301 + ], + [ + 10.623957, + 51.434296301 + ], + [ + 10.6233891, + 51.434329001 + ], + [ + 10.6228077, + 51.434370001 + ], + [ + 10.6221033, + 51.434428301 + ], + [ + 10.6217274, + 51.434462401 + ], + [ + 10.6211196, + 51.434518901 + ], + [ + 10.6197974, + 51.434660101 + ], + [ + 10.6182956, + 51.434825901 + ], + [ + 10.6172529, + 51.434935401 + ], + [ + 10.6164734, + 51.435011801 + ], + [ + 10.6156606, + 51.435079401 + ], + [ + 10.6147556, + 51.435138501 + ], + [ + 10.6142552, + 51.435162901 + ], + [ + 10.6136968, + 51.435183101 + ], + [ + 10.6126761, + 51.435201201 + ], + [ + 10.6118671, + 51.435191601 + ], + [ + 10.6110982, + 51.435185701 + ], + [ + 10.6105363, + 51.435153501 + ], + [ + 10.6100541, + 51.435117701 + ], + [ + 10.6093368, + 51.435049301 + ], + [ + 10.6083781, + 51.434942201 + ], + [ + 10.6077809, + 51.434869001 + ], + [ + 10.6071067, + 51.434767501 + ], + [ + 10.6064948, + 51.434653601 + ], + [ + 10.6060493, + 51.434566801 + ], + [ + 10.6054423, + 51.434428801 + ], + [ + 10.604988, + 51.434329201 + ], + [ + 10.6044749, + 51.434194001 + ], + [ + 10.6040893, + 51.434098801 + ], + [ + 10.603955517, + 51.434059988 + ] + ] + } + }, + { + "identifier": "2026-007005--vi-bs.2026-03-16_08-00-00-000.devi-zus.2026-03-09_08-00-00-000_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.46866064044661,11.112290839636284,51.43405998776002,10.603955516790087", + "point": "51.46866064044661,11.112290839636284", + "startLcPosition": "23", + "impact": { + "lower": "Bleicherode", + "upper": "Helmetal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Helmetal - Bleicherode", + "startTimestamp": "2026-03-16T08:00:00+01:00", + "coordinate": { + "lat": 51.46866064044661, + "long": 11.112290839636284 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 08:00 Uhr", + "Ende: 10.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.04.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 8.3 km hinter Helmetal und 0.4 km vor AS Bleicherode", + "", + "L\u00e4nge: 41.39 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 zw. AS Bleicherode und Ro\u00dfla, Umleitungsbeschilderung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.11229084, + 51.46866064 + ], + [ + 11.110153, + 51.468768401 + ], + [ + 11.1075461, + 51.468892601 + ], + [ + 11.1049478, + 51.469043101 + ], + [ + 11.103768, + 51.469138301 + ], + [ + 11.1026885, + 51.469235001 + ], + [ + 11.1012632, + 51.469393601 + ], + [ + 11.1009991, + 51.469423001 + ], + [ + 11.0986789, + 51.469709101 + ], + [ + 11.0979992, + 51.469811201 + ], + [ + 11.0969356, + 51.469974101 + ], + [ + 11.096686, + 51.470012301 + ], + [ + 11.0965691, + 51.470031801 + ], + [ + 11.0963143, + 51.470074301 + ], + [ + 11.095857, + 51.470152601 + ], + [ + 11.0935155, + 51.470603101 + ], + [ + 11.0924686, + 51.470813101 + ], + [ + 11.0906553, + 51.471234101 + ], + [ + 11.0895503, + 51.471501401 + ], + [ + 11.0886902, + 51.471718001 + ], + [ + 11.0881518, + 51.471850301 + ], + [ + 11.0876894, + 51.471963901 + ], + [ + 11.0843037, + 51.472833601 + ], + [ + 11.081079, + 51.473624801 + ], + [ + 11.0794722, + 51.473993601 + ], + [ + 11.0781426, + 51.474243701 + ], + [ + 11.0769734, + 51.474450201 + ], + [ + 11.0757938, + 51.474633601 + ], + [ + 11.0747092, + 51.474771701 + ], + [ + 11.0738035, + 51.474871001 + ], + [ + 11.0725086, + 51.474974001 + ], + [ + 11.0713921, + 51.475036601 + ], + [ + 11.0697073, + 51.475080101 + ], + [ + 11.0681174, + 51.475064801 + ], + [ + 11.0666013, + 51.474997401 + ], + [ + 11.0650914, + 51.474881901 + ], + [ + 11.0638292, + 51.474740101 + ], + [ + 11.0625256, + 51.474564001 + ], + [ + 11.0602314, + 51.474163701 + ], + [ + 11.059651, + 51.474047701 + ], + [ + 11.0587363, + 51.473835401 + ], + [ + 11.0576661, + 51.473548401 + ], + [ + 11.0567003, + 51.473257801 + ], + [ + 11.0558611, + 51.472980501 + ], + [ + 11.0548252, + 51.472624701 + ], + [ + 11.0538493, + 51.472252001 + ], + [ + 11.052955, + 51.471873901 + ], + [ + 11.0521172, + 51.471497201 + ], + [ + 11.0513232, + 51.471107101 + ], + [ + 11.0505255, + 51.470703201 + ], + [ + 11.049912, + 51.470381901 + ], + [ + 11.0495447, + 51.470185201 + ], + [ + 11.0493037, + 51.470056201 + ], + [ + 11.0482879, + 51.469512401 + ], + [ + 11.0472828, + 51.468974301 + ], + [ + 11.0461029, + 51.468354801 + ], + [ + 11.0449388, + 51.467771901 + ], + [ + 11.044333, + 51.467489501 + ], + [ + 11.0430765, + 51.466941401 + ], + [ + 11.0427706, + 51.466814401 + ], + [ + 11.0420419, + 51.466525301 + ], + [ + 11.0415728, + 51.466355801 + ], + [ + 11.0406207, + 51.466034301 + ], + [ + 11.0400471, + 51.465860101 + ], + [ + 11.0393293, + 51.465642101 + ], + [ + 11.0383209, + 51.465370801 + ], + [ + 11.0368366, + 51.465019001 + ], + [ + 11.0354421, + 51.464759401 + ], + [ + 11.0340164, + 51.464534501 + ], + [ + 11.0328677, + 51.464387601 + ], + [ + 11.0317168, + 51.464269901 + ], + [ + 11.0312691, + 51.464235001 + ], + [ + 11.030849, + 51.464203901 + ], + [ + 11.0303026, + 51.464175301 + ], + [ + 11.0300186, + 51.464162301 + ], + [ + 11.0284884, + 51.464117101 + ], + [ + 11.0275677, + 51.464118801 + ], + [ + 11.0268682, + 51.464128901 + ], + [ + 11.0259997, + 51.464163201 + ], + [ + 11.0257261, + 51.464177401 + ], + [ + 11.0251252, + 51.464218201 + ], + [ + 11.0243782, + 51.464277901 + ], + [ + 11.0236424, + 51.464340801 + ], + [ + 11.0230405, + 51.464406501 + ], + [ + 11.0224075, + 51.464485501 + ], + [ + 11.0216218, + 51.464598901 + ], + [ + 11.0212682, + 51.464653201 + ], + [ + 11.020603, + 51.464769601 + ], + [ + 11.0199367, + 51.464889601 + ], + [ + 11.0193112, + 51.465012901 + ], + [ + 11.0182841, + 51.465245701 + ], + [ + 11.0173393, + 51.465484801 + ], + [ + 11.0162744, + 51.465787101 + ], + [ + 11.0148806, + 51.466227301 + ], + [ + 11.0135764, + 51.466680701 + ], + [ + 11.0125932, + 51.467041401 + ], + [ + 11.0113628, + 51.467505001 + ], + [ + 11.008843, + 51.468450801 + ], + [ + 11.0068408, + 51.469133501 + ], + [ + 11.0053959, + 51.469565001 + ], + [ + 11.0039334, + 51.469956501 + ], + [ + 11.002703, + 51.470250001 + ], + [ + 11.0014704, + 51.470540101 + ], + [ + 11.0002756, + 51.470759601 + ], + [ + 10.9990311, + 51.470953801 + ], + [ + 10.9984322, + 51.471042801 + ], + [ + 10.997831, + 51.471125301 + ], + [ + 10.9972276, + 51.471201301 + ], + [ + 10.9966221, + 51.471270801 + ], + [ + 10.9960149, + 51.471333801 + ], + [ + 10.9954059, + 51.471390201 + ], + [ + 10.9947955, + 51.471440001 + ], + [ + 10.9941838, + 51.471483201 + ], + [ + 10.993571, + 51.471519901 + ], + [ + 10.9929572, + 51.471549901 + ], + [ + 10.9923427, + 51.471573301 + ], + [ + 10.9917277, + 51.471590001 + ], + [ + 10.9911123, + 51.471600101 + ], + [ + 10.9904967, + 51.471603601 + ], + [ + 10.989881, + 51.471600501 + ], + [ + 10.9892656, + 51.471590701 + ], + [ + 10.9886505, + 51.471574201 + ], + [ + 10.988036, + 51.471551201 + ], + [ + 10.9874222, + 51.471521501 + ], + [ + 10.9868094, + 51.471485201 + ], + [ + 10.9861976, + 51.471442201 + ], + [ + 10.9855871, + 51.471392701 + ], + [ + 10.9849781, + 51.471336701 + ], + [ + 10.9843707, + 51.471274001 + ], + [ + 10.9837652, + 51.471204801 + ], + [ + 10.9831617, + 51.471129101 + ], + [ + 10.9825604, + 51.471046901 + ], + [ + 10.9820253, + 51.470970801 + ], + [ + 10.9814925, + 51.470888801 + ], + [ + 10.9809622, + 51.470800801 + ], + [ + 10.9804776, + 51.470714801 + ], + [ + 10.9799953, + 51.470623901 + ], + [ + 10.9795155, + 51.470528101 + ], + [ + 10.9710358, + 51.468646301 + ], + [ + 10.9691964, + 51.468289001 + ], + [ + 10.9667877, + 51.467905601 + ], + [ + 10.9651243, + 51.467713301 + ], + [ + 10.9639188, + 51.467600201 + ], + [ + 10.9638782, + 51.467597601 + ], + [ + 10.9621144, + 51.467484001 + ], + [ + 10.9600784, + 51.467429001 + ], + [ + 10.9581914, + 51.467438501 + ], + [ + 10.9563588, + 51.467526101 + ], + [ + 10.9562751, + 51.467532301 + ], + [ + 10.9545235, + 51.467662801 + ], + [ + 10.9523355, + 51.467873701 + ], + [ + 10.9495002, + 51.468208801 + ], + [ + 10.9483238, + 51.468347901 + ], + [ + 10.9470304, + 51.468512601 + ], + [ + 10.9462578, + 51.468604601 + ], + [ + 10.9449505, + 51.468769201 + ], + [ + 10.9420251, + 51.469136901 + ], + [ + 10.9419948, + 51.469140201 + ], + [ + 10.9394338, + 51.469415901 + ], + [ + 10.9355664, + 51.469704901 + ], + [ + 10.9355348, + 51.469706601 + ], + [ + 10.9315961, + 51.469917201 + ], + [ + 10.9294068, + 51.469940501 + ], + [ + 10.9289867, + 51.469948701 + ], + [ + 10.9281778, + 51.469947701 + ], + [ + 10.925324, + 51.469964301 + ], + [ + 10.9225011, + 51.469940401 + ], + [ + 10.9212472, + 51.469925101 + ], + [ + 10.9173223, + 51.469877301 + ], + [ + 10.9140238, + 51.469878201 + ], + [ + 10.9116638, + 51.469878901 + ], + [ + 10.9100749, + 51.469916701 + ], + [ + 10.9081145, + 51.469998001 + ], + [ + 10.906566, + 51.470090001 + ], + [ + 10.9062336, + 51.470114801 + ], + [ + 10.9049381, + 51.470222101 + ], + [ + 10.9035372, + 51.470371601 + ], + [ + 10.9021795, + 51.470541601 + ], + [ + 10.900864, + 51.470731401 + ], + [ + 10.8994692, + 51.470965401 + ], + [ + 10.898101, + 51.471224001 + ], + [ + 10.8965287, + 51.471566401 + ], + [ + 10.8958155, + 51.471730801 + ], + [ + 10.8943152, + 51.472097601 + ], + [ + 10.8924523, + 51.472592501 + ], + [ + 10.8902013, + 51.473222401 + ], + [ + 10.8879663, + 51.473870601 + ], + [ + 10.8862971, + 51.474354001 + ], + [ + 10.8846883, + 51.474802301 + ], + [ + 10.8831798, + 51.475182001 + ], + [ + 10.8818481, + 51.475486001 + ], + [ + 10.8806253, + 51.475727601 + ], + [ + 10.8792981, + 51.475935101 + ], + [ + 10.8778226, + 51.476131001 + ], + [ + 10.8769287, + 51.476225501 + ], + [ + 10.8758166, + 51.476316301 + ], + [ + 10.8748502, + 51.476373201 + ], + [ + 10.874311, + 51.476393201 + ], + [ + 10.8739305, + 51.476403001 + ], + [ + 10.8733052, + 51.476418201 + ], + [ + 10.8728515, + 51.476420201 + ], + [ + 10.8720857, + 51.476420801 + ], + [ + 10.8713678, + 51.476406801 + ], + [ + 10.8706891, + 51.476383601 + ], + [ + 10.8697704, + 51.476332501 + ], + [ + 10.8689867, + 51.476274601 + ], + [ + 10.8681392, + 51.476196101 + ], + [ + 10.8676644, + 51.476147301 + ], + [ + 10.8668788, + 51.476049801 + ], + [ + 10.8658459, + 51.475908801 + ], + [ + 10.8644108, + 51.475676601 + ], + [ + 10.8631395, + 51.475422601 + ], + [ + 10.8617957, + 51.475096801 + ], + [ + 10.8603715, + 51.474706501 + ], + [ + 10.8597252, + 51.474508701 + ], + [ + 10.8593646, + 51.474392401 + ], + [ + 10.8589241, + 51.474250301 + ], + [ + 10.8574691, + 51.473721301 + ], + [ + 10.8554291, + 51.472855601 + ], + [ + 10.8537617, + 51.472039101 + ], + [ + 10.8530401, + 51.471651201 + ], + [ + 10.852466, + 51.471342701 + ], + [ + 10.8524087, + 51.471311901 + ], + [ + 10.8495744, + 51.469812401 + ], + [ + 10.8475041, + 51.468636201 + ], + [ + 10.846365, + 51.467989001 + ], + [ + 10.8453823, + 51.467452101 + ], + [ + 10.8423596, + 51.465783701 + ], + [ + 10.8408722, + 51.464962701 + ], + [ + 10.8377688, + 51.463249601 + ], + [ + 10.8373294, + 51.463014901 + ], + [ + 10.8365951, + 51.462639901 + ], + [ + 10.8358442, + 51.462256501 + ], + [ + 10.8348664, + 51.461812401 + ], + [ + 10.8338867, + 51.461404001 + ], + [ + 10.8327709, + 51.460978101 + ], + [ + 10.8318017, + 51.460627701 + ], + [ + 10.8309576, + 51.460362401 + ], + [ + 10.8301019, + 51.460108901 + ], + [ + 10.8297397, + 51.460012301 + ], + [ + 10.8286134, + 51.459714401 + ], + [ + 10.8276237, + 51.459482001 + ], + [ + 10.826161, + 51.459180401 + ], + [ + 10.8247446, + 51.458941001 + ], + [ + 10.8237238, + 51.458798601 + ], + [ + 10.8223083, + 51.458634801 + ], + [ + 10.821242, + 51.458544201 + ], + [ + 10.8203184, + 51.458475501 + ], + [ + 10.8199439, + 51.458459101 + ], + [ + 10.8192748, + 51.458429901 + ], + [ + 10.8185234, + 51.458403501 + ], + [ + 10.8177951, + 51.458394901 + ], + [ + 10.8170259, + 51.458401101 + ], + [ + 10.8164462, + 51.458410101 + ], + [ + 10.816368, + 51.458412801 + ], + [ + 10.8156541, + 51.458437801 + ], + [ + 10.81487, + 51.458468201 + ], + [ + 10.8134114, + 51.458576501 + ], + [ + 10.811794, + 51.458746601 + ], + [ + 10.8100366, + 51.458995301 + ], + [ + 10.8097411, + 51.459046201 + ], + [ + 10.8087749, + 51.459212601 + ], + [ + 10.8073901, + 51.459503501 + ], + [ + 10.806145, + 51.459798901 + ], + [ + 10.8042216, + 51.460321001 + ], + [ + 10.8023873, + 51.460902001 + ], + [ + 10.8012352, + 51.461297401 + ], + [ + 10.8006199, + 51.461539601 + ], + [ + 10.8001591, + 51.461717901 + ], + [ + 10.7989655, + 51.462181401 + ], + [ + 10.7983021, + 51.462456201 + ], + [ + 10.7981548, + 51.462524801 + ], + [ + 10.7977942, + 51.462677501 + ], + [ + 10.7975354, + 51.462786701 + ], + [ + 10.796712, + 51.463146101 + ], + [ + 10.7961626, + 51.463400801 + ], + [ + 10.7955414, + 51.463684701 + ], + [ + 10.7942888, + 51.464295201 + ], + [ + 10.7935064, + 51.464683001 + ], + [ + 10.7926278, + 51.465139301 + ], + [ + 10.7907602, + 51.466126301 + ], + [ + 10.7895252, + 51.466777501 + ], + [ + 10.785715, + 51.468843201 + ], + [ + 10.7845468, + 51.469464901 + ], + [ + 10.7832318, + 51.470168801 + ], + [ + 10.7824343, + 51.470602301 + ], + [ + 10.782224, + 51.470716601 + ], + [ + 10.781748, + 51.470971801 + ], + [ + 10.780077, + 51.471874001 + ], + [ + 10.7764952, + 51.473806301 + ], + [ + 10.7759705, + 51.474089301 + ], + [ + 10.7755492, + 51.474316501 + ], + [ + 10.7745972, + 51.474829501 + ], + [ + 10.7738393, + 51.475240001 + ], + [ + 10.7708976, + 51.476827801 + ], + [ + 10.769351, + 51.477663701 + ], + [ + 10.7669991, + 51.478934801 + ], + [ + 10.7656144, + 51.479683101 + ], + [ + 10.7650162, + 51.480005401 + ], + [ + 10.763765, + 51.480665501 + ], + [ + 10.7622348, + 51.481498601 + ], + [ + 10.7615396, + 51.481876501 + ], + [ + 10.7601745, + 51.482618701 + ], + [ + 10.7594515, + 51.483006301 + ], + [ + 10.7592871, + 51.483093201 + ], + [ + 10.7582642, + 51.483640601 + ], + [ + 10.7569133, + 51.484344901 + ], + [ + 10.7556981, + 51.484958701 + ], + [ + 10.7551858, + 51.485206701 + ], + [ + 10.7546607, + 51.485442201 + ], + [ + 10.753344, + 51.486007401 + ], + [ + 10.7526175, + 51.486306001 + ], + [ + 10.7519822, + 51.486549701 + ], + [ + 10.7518118, + 51.486612301 + ], + [ + 10.7507445, + 51.487001901 + ], + [ + 10.7492751, + 51.487504401 + ], + [ + 10.7486637, + 51.487697601 + ], + [ + 10.748207, + 51.487833501 + ], + [ + 10.7476707, + 51.487992101 + ], + [ + 10.746666, + 51.488273301 + ], + [ + 10.7460367, + 51.488437301 + ], + [ + 10.7454244, + 51.488591901 + ], + [ + 10.7450181, + 51.488694501 + ], + [ + 10.7443567, + 51.488849401 + ], + [ + 10.7432512, + 51.489087701 + ], + [ + 10.741874, + 51.489358101 + ], + [ + 10.7409273, + 51.489526301 + ], + [ + 10.740247, + 51.489632401 + ], + [ + 10.7394478, + 51.489754301 + ], + [ + 10.7387198, + 51.489856501 + ], + [ + 10.7371757, + 51.490040801 + ], + [ + 10.7363637, + 51.490127501 + ], + [ + 10.7355482, + 51.490201001 + ], + [ + 10.7338695, + 51.490316101 + ], + [ + 10.7332676, + 51.490349201 + ], + [ + 10.73251, + 51.490382901 + ], + [ + 10.7320357, + 51.490399901 + ], + [ + 10.7310345, + 51.490422501 + ], + [ + 10.7305284, + 51.490430401 + ], + [ + 10.7300084, + 51.490431201 + ], + [ + 10.7291565, + 51.490424401 + ], + [ + 10.7286361, + 51.490418601 + ], + [ + 10.7278743, + 51.490397001 + ], + [ + 10.7273327, + 51.490379001 + ], + [ + 10.7268424, + 51.490359601 + ], + [ + 10.7263611, + 51.490332401 + ], + [ + 10.7255517, + 51.490285101 + ], + [ + 10.724872, + 51.490242101 + ], + [ + 10.7234556, + 51.490114901 + ], + [ + 10.723239, + 51.490094301 + ], + [ + 10.7225564, + 51.490025901 + ], + [ + 10.7208051, + 51.489805101 + ], + [ + 10.7194688, + 51.489607701 + ], + [ + 10.7189497, + 51.489518101 + ], + [ + 10.7175025, + 51.489256101 + ], + [ + 10.7161816, + 51.488995501 + ], + [ + 10.7157364, + 51.488892701 + ], + [ + 10.7148524, + 51.488690301 + ], + [ + 10.7146748, + 51.488646301 + ], + [ + 10.7137535, + 51.488410501 + ], + [ + 10.7124612, + 51.488060601 + ], + [ + 10.7115781, + 51.487800801 + ], + [ + 10.7105916, + 51.487489501 + ], + [ + 10.7096689, + 51.487182201 + ], + [ + 10.7085526, + 51.486788701 + ], + [ + 10.7072061, + 51.486274301 + ], + [ + 10.706343, + 51.485919501 + ], + [ + 10.7052695, + 51.485452501 + ], + [ + 10.7044381, + 51.485068301 + ], + [ + 10.7034194, + 51.484569901 + ], + [ + 10.7031196, + 51.484403101 + ], + [ + 10.7026254, + 51.484159001 + ], + [ + 10.7020085, + 51.483825001 + ], + [ + 10.7011019, + 51.483310501 + ], + [ + 10.7005038, + 51.482948101 + ], + [ + 10.6999376, + 51.482605601 + ], + [ + 10.6994149, + 51.482270501 + ], + [ + 10.6992769, + 51.482177301 + ], + [ + 10.6986876, + 51.481779301 + ], + [ + 10.697961, + 51.481257601 + ], + [ + 10.6969749, + 51.480522501 + ], + [ + 10.6960309, + 51.479750401 + ], + [ + 10.6956154, + 51.479393401 + ], + [ + 10.695133, + 51.478955201 + ], + [ + 10.6942856, + 51.478141101 + ], + [ + 10.6934727, + 51.477312701 + ], + [ + 10.6926279, + 51.476365901 + ], + [ + 10.6921317, + 51.475744701 + ], + [ + 10.6915791, + 51.475022001 + ], + [ + 10.691255, + 51.474572101 + ], + [ + 10.6909586, + 51.474130801 + ], + [ + 10.6905922, + 51.473558801 + ], + [ + 10.6902448, + 51.472967401 + ], + [ + 10.6899535, + 51.472464801 + ], + [ + 10.6896475, + 51.471855201 + ], + [ + 10.6893881, + 51.471318401 + ], + [ + 10.6891041, + 51.470647701 + ], + [ + 10.6887243, + 51.469665801 + ], + [ + 10.6884915, + 51.468897401 + ], + [ + 10.6882354, + 51.468017801 + ], + [ + 10.6878948, + 51.466595801 + ], + [ + 10.6874121, + 51.464611501 + ], + [ + 10.687024, + 51.462970201 + ], + [ + 10.6867119, + 51.461662101 + ], + [ + 10.6866469, + 51.461399201 + ], + [ + 10.6861902, + 51.459422101 + ], + [ + 10.6860516, + 51.458862301 + ], + [ + 10.6859275, + 51.458230501 + ], + [ + 10.6857109, + 51.457431201 + ], + [ + 10.6852414, + 51.455469201 + ], + [ + 10.6851355, + 51.455040301 + ], + [ + 10.6850142, + 51.454562201 + ], + [ + 10.6847752, + 51.453780001 + ], + [ + 10.6845404, + 51.453142001 + ], + [ + 10.6843902, + 51.452793301 + ], + [ + 10.6841691, + 51.452334401 + ], + [ + 10.6839931, + 51.452026101 + ], + [ + 10.6837237, + 51.451559301 + ], + [ + 10.6834519, + 51.451159501 + ], + [ + 10.6830992, + 51.450682601 + ], + [ + 10.6827942, + 51.450318601 + ], + [ + 10.6826087, + 51.450105201 + ], + [ + 10.6822619, + 51.449729101 + ], + [ + 10.6818472, + 51.449315601 + ], + [ + 10.6814598, + 51.448968601 + ], + [ + 10.6810228, + 51.448585201 + ], + [ + 10.6806672, + 51.448284601 + ], + [ + 10.6801735, + 51.447949101 + ], + [ + 10.679679, + 51.447601301 + ], + [ + 10.6789282, + 51.447130301 + ], + [ + 10.6781409, + 51.446688201 + ], + [ + 10.6775429, + 51.446394901 + ], + [ + 10.6768874, + 51.446069201 + ], + [ + 10.6762574, + 51.445778201 + ], + [ + 10.6751096, + 51.445334701 + ], + [ + 10.6744804, + 51.445121201 + ], + [ + 10.6740132, + 51.444969901 + ], + [ + 10.6735193, + 51.444821801 + ], + [ + 10.6731106, + 51.444704801 + ], + [ + 10.6725407, + 51.444559401 + ], + [ + 10.671508, + 51.444317801 + ], + [ + 10.6702728, + 51.444086601 + ], + [ + 10.6689433, + 51.443903801 + ], + [ + 10.6670802, + 51.443745301 + ], + [ + 10.66588, + 51.443675601 + ], + [ + 10.6649305, + 51.443656201 + ], + [ + 10.6628215, + 51.443676501 + ], + [ + 10.6615797, + 51.443684801 + ], + [ + 10.6597029, + 51.443655201 + ], + [ + 10.6584334, + 51.443544201 + ], + [ + 10.6556903, + 51.443153001 + ], + [ + 10.6544964, + 51.442866101 + ], + [ + 10.6542227, + 51.442798601 + ], + [ + 10.6536972, + 51.442663001 + ], + [ + 10.6527984, + 51.442399501 + ], + [ + 10.652101, + 51.442163601 + ], + [ + 10.651433, + 51.441915201 + ], + [ + 10.6506413, + 51.441606901 + ], + [ + 10.6500451, + 51.441335601 + ], + [ + 10.6491637, + 51.440851101 + ], + [ + 10.6479798, + 51.440222801 + ], + [ + 10.6464681, + 51.439330501 + ], + [ + 10.6458438, + 51.438985101 + ], + [ + 10.6456334, + 51.438865401 + ], + [ + 10.6452455, + 51.438641001 + ], + [ + 10.6438103, + 51.437909001 + ], + [ + 10.6431486, + 51.437605501 + ], + [ + 10.6422367, + 51.437212401 + ], + [ + 10.64132, + 51.436844301 + ], + [ + 10.6402891, + 51.436471201 + ], + [ + 10.6393957, + 51.436177201 + ], + [ + 10.6386077, + 51.435934601 + ], + [ + 10.6377713, + 51.435704501 + ], + [ + 10.6367885, + 51.435446701 + ], + [ + 10.6360791, + 51.435282701 + ], + [ + 10.6350079, + 51.435054801 + ], + [ + 10.6345077, + 51.434958901 + ], + [ + 10.6338778, + 51.434850601 + ], + [ + 10.6327862, + 51.434671901 + ], + [ + 10.6315023, + 51.434514201 + ], + [ + 10.6308712, + 51.434453501 + ], + [ + 10.6302323, + 51.434392001 + ], + [ + 10.6290455, + 51.434308201 + ], + [ + 10.6274218, + 51.434236101 + ], + [ + 10.6259994, + 51.434233001 + ], + [ + 10.625394, + 51.434240001 + ], + [ + 10.6248736, + 51.434252301 + ], + [ + 10.623957, + 51.434296301 + ], + [ + 10.6233891, + 51.434329001 + ], + [ + 10.6228077, + 51.434370001 + ], + [ + 10.6221033, + 51.434428301 + ], + [ + 10.6217274, + 51.434462401 + ], + [ + 10.6211196, + 51.434518901 + ], + [ + 10.6197974, + 51.434660101 + ], + [ + 10.6182956, + 51.434825901 + ], + [ + 10.6172529, + 51.434935401 + ], + [ + 10.6164734, + 51.435011801 + ], + [ + 10.6156606, + 51.435079401 + ], + [ + 10.6147556, + 51.435138501 + ], + [ + 10.6142552, + 51.435162901 + ], + [ + 10.6136968, + 51.435183101 + ], + [ + 10.6126761, + 51.435201201 + ], + [ + 10.6118671, + 51.435191601 + ], + [ + 10.6110982, + 51.435185701 + ], + [ + 10.6105363, + 51.435153501 + ], + [ + 10.6100541, + 51.435117701 + ], + [ + 10.6093368, + 51.435049301 + ], + [ + 10.6083781, + 51.434942201 + ], + [ + 10.6077809, + 51.434869001 + ], + [ + 10.6071067, + 51.434767501 + ], + [ + 10.6064948, + 51.434653601 + ], + [ + 10.6060493, + 51.434566801 + ], + [ + 10.6054423, + 51.434428801 + ], + [ + 10.604988, + 51.434329201 + ], + [ + 10.6044749, + 51.434194001 + ], + [ + 10.6040893, + 51.434098801 + ], + [ + 10.603955517, + 51.434059988 + ] + ] + } + }, + { + "identifier": "2026-016515--vi-bs.2026-04-07_09-00-00-000_007.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.45259744621355,11.219470141535659,51.460809922166376,11.186640188312502", + "point": "51.45259744621355,11.219470141535659", + "startLcPosition": "23", + "impact": { + "lower": "Ro\u00dfla", + "upper": "Helmetal", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Helmetal - Ro\u00dfla", + "startTimestamp": "2026-04-07T09:00:00+02:00", + "coordinate": { + "lat": 51.45259744621355, + "long": 11.219470141535659 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 09:00 Uhr", + "Ende: 10.04.26 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.04.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 0.4 km hinter Helmetal und 6.5 km vor AS Ro\u00dfla", + "", + "L\u00e4nge: 2.55 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A38 von Helmetal (Rastplatz) nach Ro\u00dfla (AS) Instandsetzung der Deckschicht" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.219470142, + 51.452597446 + ], + [ + 11.2183377, + 51.452587701 + ], + [ + 11.2154215, + 51.452544301 + ], + [ + 11.2140774, + 51.452525301 + ], + [ + 11.2127567, + 51.452532401 + ], + [ + 11.2115887, + 51.452567801 + ], + [ + 11.2112877, + 51.452580601 + ], + [ + 11.2097992, + 51.452689001 + ], + [ + 11.2080404, + 51.452876401 + ], + [ + 11.2065618, + 51.453083901 + ], + [ + 11.2052053, + 51.453328901 + ], + [ + 11.2037175, + 51.453644401 + ], + [ + 11.202108, + 51.454056001 + ], + [ + 11.2007827, + 51.454448101 + ], + [ + 11.1992261, + 51.454972301 + ], + [ + 11.1973815, + 51.455722201 + ], + [ + 11.1966873, + 51.456033401 + ], + [ + 11.1964318, + 51.456154601 + ], + [ + 11.1955182, + 51.456590901 + ], + [ + 11.1908248, + 51.459103301 + ], + [ + 11.1893169, + 51.459795201 + ], + [ + 11.1877375, + 51.460429901 + ], + [ + 11.187245, + 51.460599901 + ], + [ + 11.186640188, + 51.460809922 + ] + ] + } + }, + { + "identifier": "2024-040680--vi-bs.2026-03-31_10-00-00-000.devi-zus.2025-03-10_08-00-00-000.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.445967903431146,11.568922199620243,51.429734681348954,11.623419130487605", + "point": "51.445967903431146,11.568922199620243", + "startLcPosition": "29", + "impact": { + "lower": "Querfurt", + "upper": "Lutherstadt Eisleben", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "BREAKDOWN_LANE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Lutherstadt Eisleben - Querfurt", + "startTimestamp": "2026-03-31T10:00:00+02:00", + "coordinate": { + "lat": 51.445967903431146, + "long": 11.568922199620243 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.03.26 um 10:00 Uhr", + "Ende: 30.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 1.8 km hinter AS Lutherstadt Eisleben und 2.2 km vor AS Querfurt", + "", + "L\u00e4nge: 4.59 km | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A38 Bodenwelle beseitigen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.5689222, + 51.445967903 + ], + [ + 11.5738427, + 51.446404301 + ], + [ + 11.5795054, + 51.446900701 + ], + [ + 11.5806093, + 51.446972601 + ], + [ + 11.5821686, + 51.447055601 + ], + [ + 11.5839308, + 51.447095201 + ], + [ + 11.5847105, + 51.447093901 + ], + [ + 11.585849, + 51.447076201 + ], + [ + 11.5870956, + 51.447039701 + ], + [ + 11.5880651, + 51.446985301 + ], + [ + 11.5893236, + 51.446906301 + ], + [ + 11.5905427, + 51.446793301 + ], + [ + 11.5919414, + 51.446638801 + ], + [ + 11.5930396, + 51.446476401 + ], + [ + 11.5943581, + 51.446267701 + ], + [ + 11.5957116, + 51.446017501 + ], + [ + 11.5973461, + 51.445674201 + ], + [ + 11.5985361, + 51.445366101 + ], + [ + 11.6004624, + 51.444843701 + ], + [ + 11.6017127, + 51.444448901 + ], + [ + 11.6029371, + 51.444037101 + ], + [ + 11.6046167, + 51.443391801 + ], + [ + 11.6053014, + 51.443106201 + ], + [ + 11.6069119, + 51.442383201 + ], + [ + 11.6077349, + 51.441986201 + ], + [ + 11.6090176, + 51.441322401 + ], + [ + 11.6098834, + 51.440826601 + ], + [ + 11.6108394, + 51.440251601 + ], + [ + 11.611591, + 51.439764701 + ], + [ + 11.6131118, + 51.438708601 + ], + [ + 11.6134897, + 51.438411901 + ], + [ + 11.6153077, + 51.436901201 + ], + [ + 11.6169579, + 51.435453501 + ], + [ + 11.6200199, + 51.432731001 + ], + [ + 11.6203638, + 51.432425301 + ], + [ + 11.6224158, + 51.430635701 + ], + [ + 11.62341913, + 51.429734681 + ] + ] + } + }, + { + "identifier": "2024-040680--vi-bs.2026-04-07_06-00-00-000.devi-zus.2025-03-10_08-00-00-000.f.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43340246561021,11.619264744148584,51.418182782685925,11.655598807579251", + "point": "51.43340246561021,11.619264744148584", + "startLcPosition": "29", + "impact": { + "lower": "Querfurter Platte", + "upper": "Lutherstadt Eisleben", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Lutherstadt Eisleben - Querfurter Platte", + "startTimestamp": "2026-04-07T06:00:00+02:00", + "coordinate": { + "lat": 51.43340246561021, + "long": 11.619264744148584 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 06:00 Uhr", + "Ende: 08.06.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 5.8 km hinter AS Lutherstadt Eisleben und 5.4 km vor Querfurter Platte", + "", + "L\u00e4nge: 3.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A38 Bodenwelle beseitigen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.619264744, + 51.433402466 + ], + [ + 11.6200199, + 51.432731001 + ], + [ + 11.6203638, + 51.432425301 + ], + [ + 11.6224158, + 51.430635701 + ], + [ + 11.6253649, + 51.427987201 + ], + [ + 11.6272005, + 51.426386601 + ], + [ + 11.6280175, + 51.425712501 + ], + [ + 11.6289501, + 51.425043901 + ], + [ + 11.6305102, + 51.424022801 + ], + [ + 11.6319507, + 51.423212701 + ], + [ + 11.6337389, + 51.422359901 + ], + [ + 11.6352372, + 51.421727901 + ], + [ + 11.6369994, + 51.421087501 + ], + [ + 11.6385273, + 51.420619201 + ], + [ + 11.6399115, + 51.420253401 + ], + [ + 11.6411327, + 51.419973101 + ], + [ + 11.6427602, + 51.419657201 + ], + [ + 11.644255, + 51.419424001 + ], + [ + 11.6452925, + 51.419286101 + ], + [ + 11.6465815, + 51.419145401 + ], + [ + 11.6474229, + 51.419064101 + ], + [ + 11.6507117, + 51.418758001 + ], + [ + 11.6528983, + 51.418529601 + ], + [ + 11.6534673, + 51.418463301 + ], + [ + 11.6542227, + 51.418377001 + ], + [ + 11.655598808, + 51.418182783 + ] + ] + } + }, + { + "identifier": "2024-040680--vi-bs.2026-03-16_10-00-00-000.devi-zus.2025-03-10_08-00-00-000.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.439170151413336,11.612447172293601,51.42825929426198,11.62506194378956", + "point": "51.439170151413336,11.612447172293601", + "startLcPosition": "29", + "impact": { + "lower": "Querfurt", + "upper": "Lutherstadt Eisleben", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Lutherstadt Eisleben - Querfurt", + "startTimestamp": "2026-03-16T10:00:00+01:00", + "coordinate": { + "lat": 51.439170151413336, + "long": 11.612447172293601 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 10:00 Uhr", + "Ende: 30.11.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 5.0 km hinter AS Lutherstadt Eisleben und 2.0 km vor AS Querfurt", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A38 Bodenwelle beseitigen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.612447172, + 51.439170151 + ], + [ + 11.6131118, + 51.438708601 + ], + [ + 11.6134897, + 51.438411901 + ], + [ + 11.6153077, + 51.436901201 + ], + [ + 11.6169579, + 51.435453501 + ], + [ + 11.6200199, + 51.432731001 + ], + [ + 11.6203638, + 51.432425301 + ], + [ + 11.6224158, + 51.430635701 + ], + [ + 11.625061944, + 51.428259294 + ] + ] + } + }, + { + "identifier": "2024-040680--vi-bs.2026-04-07_06-00-00-000.devi-zus.2025-03-10_08-00-00-000.f.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.418182782685925,11.655598807579251,51.411639079332566,11.67749784163495", + "point": "51.418182782685925,11.655598807579251", + "startLcPosition": "30", + "impact": { + "lower": "Querfurter Platte", + "upper": "Querfurt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BREAKDOWN_LANE", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Querfurt - Querfurter Platte", + "startTimestamp": "2026-04-07T06:00:00+02:00", + "coordinate": { + "lat": 51.418182782685925, + "long": 11.655598807579251 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 06:00 Uhr", + "Ende: 08.06.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 0.5 km hinter AS Querfurt und 3.7 km vor Querfurter Platte", + "", + "L\u00e4nge: 1.7 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A38 Bodenwelle beseitigen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.655598808, + 51.418182783 + ], + [ + 11.6561846, + 51.418100101 + ], + [ + 11.6578911, + 51.417813601 + ], + [ + 11.6597348, + 51.417468301 + ], + [ + 11.6615368, + 51.417091901 + ], + [ + 11.663127, + 51.416719801 + ], + [ + 11.6646155, + 51.416344401 + ], + [ + 11.6660805, + 51.415916501 + ], + [ + 11.6677611, + 51.415355801 + ], + [ + 11.6701051, + 51.414533301 + ], + [ + 11.673309, + 51.413305401 + ], + [ + 11.677497842, + 51.411639079 + ] + ] + } + }, + { + "identifier": "2024-040680--vi-bs.2026-03-31_10-00-00-000.devi-zus.2025-03-10_08-00-00-000.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.42979377991465,11.623554120034607,51.446087799630796,11.568895619311052", + "point": "51.42979377991465,11.623554120034607", + "startLcPosition": "30", + "impact": { + "lower": "Lutherstadt Eisleben", + "upper": "Querfurt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BREAKDOWN_LANE", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Querfurt - Lutherstadt Eisleben", + "startTimestamp": "2026-03-31T10:00:00+02:00", + "coordinate": { + "lat": 51.42979377991465, + "long": 11.623554120034607 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.03.26 um 10:00 Uhr", + "Ende: 30.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 2.2 km hinter AS Querfurt und 1.8 km vor AS Lutherstadt Eisleben", + "", + "L\u00e4nge: 4.59 km | Maximale Durchfahrtsbreite: 4.8 m", + "", + "A38 Bodenwelle beseitigen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.62355412, + 51.42979378 + ], + [ + 11.6225263, + 51.430709801 + ], + [ + 11.6205068, + 51.432487901 + ], + [ + 11.6201627, + 51.432793101 + ], + [ + 11.617102, + 51.435507701 + ], + [ + 11.6154725, + 51.436947901 + ], + [ + 11.6136396, + 51.438482001 + ], + [ + 11.6132403, + 51.438799001 + ], + [ + 11.6115496, + 51.439952201 + ], + [ + 11.6108382, + 51.440419201 + ], + [ + 11.6108228, + 51.440428101 + ], + [ + 11.6099413, + 51.440937701 + ], + [ + 11.6091701, + 51.441378001 + ], + [ + 11.6079446, + 51.442017201 + ], + [ + 11.6069377, + 51.442506301 + ], + [ + 11.6053859, + 51.443208901 + ], + [ + 11.6047132, + 51.443490201 + ], + [ + 11.6030001, + 51.444137901 + ], + [ + 11.6018093, + 51.444555801 + ], + [ + 11.6005104, + 51.444951201 + ], + [ + 11.598545, + 51.445487001 + ], + [ + 11.5973689, + 51.445774701 + ], + [ + 11.5957689, + 51.446120601 + ], + [ + 11.5944266, + 51.446372001 + ], + [ + 11.5930948, + 51.446582001 + ], + [ + 11.5919576, + 51.446744501 + ], + [ + 11.5905511, + 51.446895801 + ], + [ + 11.5893477, + 51.447008201 + ], + [ + 11.5880951, + 51.447095201 + ], + [ + 11.5871549, + 51.447141401 + ], + [ + 11.5859069, + 51.447180601 + ], + [ + 11.5847795, + 51.447207601 + ], + [ + 11.5838708, + 51.447203801 + ], + [ + 11.5821523, + 51.447158801 + ], + [ + 11.5808082, + 51.447106901 + ], + [ + 11.579458, + 51.447006201 + ], + [ + 11.5738209, + 51.446510301 + ], + [ + 11.568895619, + 51.4460878 + ] + ] + } + }, + { + "identifier": "2024-040680--vi-bs.2026-03-16_10-00-00-000.devi-zus.2025-03-10_08-00-00-000.f.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.42192102942652,11.635086782284933,51.43272981457874,11.620234053142564", + "point": "51.42192102942652,11.635086782284933", + "startLcPosition": "30", + "impact": { + "lower": "Lutherstadt Eisleben", + "upper": "Querfurt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Querfurt - Lutherstadt Eisleben", + "startTimestamp": "2026-03-16T10:00:00+01:00", + "coordinate": { + "lat": 51.42192102942652, + "long": 11.635086782284933 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 10:00 Uhr", + "Ende: 30.11.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 1.0 km hinter AS Querfurt und 6.0 km vor AS Lutherstadt Eisleben", + "", + "L\u00e4nge: 1.6 km | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A38 Bodenwelle beseitigen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.635086782, + 51.421921029 + ], + [ + 11.6338481, + 51.422435801 + ], + [ + 11.6320707, + 51.423305801 + ], + [ + 11.6306595, + 51.424088501 + ], + [ + 11.6290535, + 51.425124601 + ], + [ + 11.6281595, + 51.425785501 + ], + [ + 11.6273459, + 51.426451101 + ], + [ + 11.6255098, + 51.428050701 + ], + [ + 11.6225263, + 51.430709801 + ], + [ + 11.6205068, + 51.432487901 + ], + [ + 11.620234053, + 51.432729815 + ] + ] + } + }, + { + "identifier": "2024-040680--vi-bs.2026-04-07_06-00-00-000.devi-zus.2025-03-10_08-00-00-000.f.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.41172922718066,11.677589566202537,51.41828416914308,11.655635318740307", + "point": "51.41172922718066,11.677589566202537", + "startLcPosition": "31", + "impact": { + "lower": "Querfurt", + "upper": "Querfurter Platte", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "BREAKDOWN_LANE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Querfurter Platte - Querfurt", + "startTimestamp": "2026-04-07T06:00:00+02:00", + "coordinate": { + "lat": 51.41172922718066, + "long": 11.677589566202537 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 06:00 Uhr", + "Ende: 08.06.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 3.7 km hinter Querfurter Platte und 0.5 km vor AS Querfurt", + "", + "L\u00e4nge: 1.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A38 Bodenwelle beseitigen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.677589566, + 51.411729227 + ], + [ + 11.6736223, + 51.413307901 + ], + [ + 11.6701884, + 51.414623701 + ], + [ + 11.6678475, + 51.415449101 + ], + [ + 11.6661552, + 51.416012401 + ], + [ + 11.6646779, + 51.416448101 + ], + [ + 11.6631865, + 51.416824101 + ], + [ + 11.6616009, + 51.417195001 + ], + [ + 11.6597741, + 51.417580901 + ], + [ + 11.6579664, + 51.417907501 + ], + [ + 11.6561263, + 51.418215201 + ], + [ + 11.655635319, + 51.418284169 + ] + ] + } + }, + { + "identifier": "2024-040680--vi-bs.2026-04-07_06-00-00-000.devi-zus.2025-03-10_08-00-00-000.f.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.41828416914308,11.655635318740307,51.433464521025705,11.619405718192361", + "point": "51.41828416914308,11.655635318740307", + "startLcPosition": "31", + "impact": { + "lower": "Lutherstadt Eisleben", + "upper": "Querfurter Platte", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Querfurter Platte - Lutherstadt Eisleben", + "startTimestamp": "2026-04-07T06:00:00+02:00", + "coordinate": { + "lat": 51.41828416914308, + "long": 11.655635318740307 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 06:00 Uhr", + "Ende: 08.06.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 5.4 km hinter Querfurter Platte und 5.9 km vor AS Lutherstadt Eisleben", + "", + "L\u00e4nge: 3.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A38 Bodenwelle beseitigen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.655635319, + 51.418284169 + ], + [ + 11.6538659, + 51.418532701 + ], + [ + 11.6508517, + 51.418851201 + ], + [ + 11.6474683, + 51.419169601 + ], + [ + 11.6466129, + 51.419253301 + ], + [ + 11.6453283, + 51.419393501 + ], + [ + 11.6450559, + 51.419421201 + ], + [ + 11.643675, + 51.419615601 + ], + [ + 11.6427685, + 51.419760601 + ], + [ + 11.6419503, + 51.419912901 + ], + [ + 11.6411632, + 51.420082101 + ], + [ + 11.6399588, + 51.420357601 + ], + [ + 11.63856, + 51.420722801 + ], + [ + 11.6371207, + 51.421175201 + ], + [ + 11.6353152, + 51.421826101 + ], + [ + 11.6338481, + 51.422435801 + ], + [ + 11.6320707, + 51.423305801 + ], + [ + 11.6306595, + 51.424088501 + ], + [ + 11.6290535, + 51.425124601 + ], + [ + 11.6281595, + 51.425785501 + ], + [ + 11.6273459, + 51.426451101 + ], + [ + 11.6255098, + 51.428050701 + ], + [ + 11.6225263, + 51.430709801 + ], + [ + 11.6205068, + 51.432487901 + ], + [ + 11.6201627, + 51.432793101 + ], + [ + 11.619405718, + 51.433464521 + ] + ] + } + }, + { + "identifier": "2024-002293--vi-bs.2026-04-21_08-00-00-000.devi-zus.2026-02-16_08-00-00-000_010.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.38267463121414,11.911010574503761,51.30479761363217,11.959506285033566", + "point": "51.38267463121414,11.911010574503761", + "startLcPosition": "34", + "impact": { + "lower": "Leuna", + "upper": "Bad Lauchst\u00e4dt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Bad Lauchst\u00e4dt - Leuna", + "startTimestamp": "2026-04-21T08:00:00+02:00", + "coordinate": { + "lat": 51.38267463121414, + "long": 11.911010574503761 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.04.26 um 08:00 Uhr", + "Ende: 07.11.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.11.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 1.4 km hinter AS Bad Lauchst\u00e4dt und 4.7 km vor AS Leuna", + "", + "L\u00e4nge: 9.52 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A38 Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.911010575, + 51.382674631 + ], + [ + 11.9112363, + 51.382108501 + ], + [ + 11.9114572, + 51.381402701 + ], + [ + 11.9117103, + 51.380598201 + ], + [ + 11.9118753, + 51.379882101 + ], + [ + 11.911966, + 51.379435301 + ], + [ + 11.9120606, + 51.378833401 + ], + [ + 11.9121149, + 51.378423701 + ], + [ + 11.9121733, + 51.377894801 + ], + [ + 11.9122118, + 51.377321201 + ], + [ + 11.9122432, + 51.376700901 + ], + [ + 11.9122504, + 51.376197901 + ], + [ + 11.9122027, + 51.373705701 + ], + [ + 11.9121829, + 51.373362501 + ], + [ + 11.912174, + 51.372078001 + ], + [ + 11.9121909, + 51.371798001 + ], + [ + 11.9122139, + 51.371433901 + ], + [ + 11.9122579, + 51.371052201 + ], + [ + 11.9123241, + 51.370417001 + ], + [ + 11.9123818, + 51.370098401 + ], + [ + 11.9127275, + 51.368747201 + ], + [ + 11.9129104, + 51.368156801 + ], + [ + 11.9133271, + 51.366819201 + ], + [ + 11.917097, + 51.354665101 + ], + [ + 11.9173096, + 51.354075101 + ], + [ + 11.9175015, + 51.353602901 + ], + [ + 11.9177746, + 51.352998001 + ], + [ + 11.918049, + 51.352457401 + ], + [ + 11.9183309, + 51.351945601 + ], + [ + 11.9186491, + 51.351425101 + ], + [ + 11.9189672, + 51.350945001 + ], + [ + 11.9193729, + 51.350367901 + ], + [ + 11.9206898, + 51.348572401 + ], + [ + 11.920824, + 51.348381601 + ], + [ + 11.9212171, + 51.347852801 + ], + [ + 11.9217612, + 51.347115101 + ], + [ + 11.9224558, + 51.346188401 + ], + [ + 11.9228471, + 51.345639601 + ], + [ + 11.9241516, + 51.343901301 + ], + [ + 11.9278852, + 51.338867701 + ], + [ + 11.929084, + 51.337245401 + ], + [ + 11.930262, + 51.335763401 + ], + [ + 11.9311614, + 51.334687001 + ], + [ + 11.9320009, + 51.333817401 + ], + [ + 11.9331381, + 51.332715701 + ], + [ + 11.9344252, + 51.331574301 + ], + [ + 11.9357985, + 51.330343001 + ], + [ + 11.9369049, + 51.329325901 + ], + [ + 11.937843, + 51.328302301 + ], + [ + 11.9387934, + 51.327167201 + ], + [ + 11.9395002, + 51.326164501 + ], + [ + 11.940539, + 51.324510301 + ], + [ + 11.9415829, + 51.322747101 + ], + [ + 11.9426236, + 51.320997501 + ], + [ + 11.9429375, + 51.320469801 + ], + [ + 11.9433835, + 51.319667801 + ], + [ + 11.943585, + 51.319356401 + ], + [ + 11.9437813, + 51.319034801 + ], + [ + 11.9441332, + 51.318433801 + ], + [ + 11.9453189, + 51.316408701 + ], + [ + 11.9456846, + 51.315807501 + ], + [ + 11.9458812, + 51.315483701 + ], + [ + 11.9461601, + 51.315044501 + ], + [ + 11.9463041, + 51.314824801 + ], + [ + 11.9463681, + 51.314727101 + ], + [ + 11.9466496, + 51.314306201 + ], + [ + 11.9469431, + 51.313884201 + ], + [ + 11.9471627, + 51.313590001 + ], + [ + 11.9474106, + 51.313260801 + ], + [ + 11.9477316, + 51.312858701 + ], + [ + 11.9480443, + 51.312486801 + ], + [ + 11.9484354, + 51.312055201 + ], + [ + 11.9487578, + 51.311709301 + ], + [ + 11.948941, + 51.311530101 + ], + [ + 11.9497585, + 51.310754701 + ], + [ + 11.9500411, + 51.310507901 + ], + [ + 11.9507653, + 51.309906501 + ], + [ + 11.9509809, + 51.309744301 + ], + [ + 11.9513209, + 51.309483101 + ], + [ + 11.9518021, + 51.309138501 + ], + [ + 11.9520299, + 51.308967301 + ], + [ + 11.9527591, + 51.308475201 + ], + [ + 11.953412, + 51.308086201 + ], + [ + 11.9543213, + 51.307548001 + ], + [ + 11.954692, + 51.307337801 + ], + [ + 11.9550661, + 51.307129601 + ], + [ + 11.9556845, + 51.306799801 + ], + [ + 11.9563518, + 51.306442201 + ], + [ + 11.9567475, + 51.306238201 + ], + [ + 11.9586772, + 51.305229701 + ], + [ + 11.959506285, + 51.304797614 + ] + ] + } + }, + { + "identifier": "2024-002293--vi-bs.2026-03-09_09-00-00-000.devi-zus.2026-02-16_08-00-00-000_010.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.390497653002996,11.905777686479833,51.30193111746902,11.965024755920737", + "point": "51.390497653002996,11.905777686479833", + "startLcPosition": "34", + "impact": { + "lower": "Leuna", + "upper": "Bad Lauchst\u00e4dt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Bad Lauchst\u00e4dt - Leuna", + "startTimestamp": "2026-03-09T09:00:00+01:00", + "coordinate": { + "lat": 51.390497653002996, + "long": 11.905777686479833 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 09:00 Uhr", + "Ende: 21.04.26 um 07:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.11.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 0.5 km hinter AS Bad Lauchst\u00e4dt und 4.2 km vor AS Leuna", + "", + "L\u00e4nge: 10.96 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A38 Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.905777686, + 51.390497653 + ], + [ + 11.9061492, + 51.390117801 + ], + [ + 11.9067553, + 51.389472001 + ], + [ + 11.9072915, + 51.388840601 + ], + [ + 11.9078043, + 51.388220901 + ], + [ + 11.9083171, + 51.387548801 + ], + [ + 11.9087834, + 51.386876801 + ], + [ + 11.9092309, + 51.386187201 + ], + [ + 11.9096738, + 51.385503501 + ], + [ + 11.9100701, + 51.384796401 + ], + [ + 11.9102053, + 51.384511601 + ], + [ + 11.9103789, + 51.384150501 + ], + [ + 11.9106892, + 51.383477501 + ], + [ + 11.9109627, + 51.382794701 + ], + [ + 11.9112363, + 51.382108501 + ], + [ + 11.9114572, + 51.381402701 + ], + [ + 11.9117103, + 51.380598201 + ], + [ + 11.9118753, + 51.379882101 + ], + [ + 11.911966, + 51.379435301 + ], + [ + 11.9120606, + 51.378833401 + ], + [ + 11.9121149, + 51.378423701 + ], + [ + 11.9121733, + 51.377894801 + ], + [ + 11.9122118, + 51.377321201 + ], + [ + 11.9122432, + 51.376700901 + ], + [ + 11.9122504, + 51.376197901 + ], + [ + 11.9122027, + 51.373705701 + ], + [ + 11.9121829, + 51.373362501 + ], + [ + 11.912174, + 51.372078001 + ], + [ + 11.9121909, + 51.371798001 + ], + [ + 11.9122139, + 51.371433901 + ], + [ + 11.9122579, + 51.371052201 + ], + [ + 11.9123241, + 51.370417001 + ], + [ + 11.9123818, + 51.370098401 + ], + [ + 11.9127275, + 51.368747201 + ], + [ + 11.9129104, + 51.368156801 + ], + [ + 11.9133271, + 51.366819201 + ], + [ + 11.917097, + 51.354665101 + ], + [ + 11.9173096, + 51.354075101 + ], + [ + 11.9175015, + 51.353602901 + ], + [ + 11.9177746, + 51.352998001 + ], + [ + 11.918049, + 51.352457401 + ], + [ + 11.9183309, + 51.351945601 + ], + [ + 11.9186491, + 51.351425101 + ], + [ + 11.9189672, + 51.350945001 + ], + [ + 11.9193729, + 51.350367901 + ], + [ + 11.9206898, + 51.348572401 + ], + [ + 11.920824, + 51.348381601 + ], + [ + 11.9212171, + 51.347852801 + ], + [ + 11.9217612, + 51.347115101 + ], + [ + 11.9224558, + 51.346188401 + ], + [ + 11.9228471, + 51.345639601 + ], + [ + 11.9241516, + 51.343901301 + ], + [ + 11.9278852, + 51.338867701 + ], + [ + 11.929084, + 51.337245401 + ], + [ + 11.930262, + 51.335763401 + ], + [ + 11.9311614, + 51.334687001 + ], + [ + 11.9320009, + 51.333817401 + ], + [ + 11.9331381, + 51.332715701 + ], + [ + 11.9344252, + 51.331574301 + ], + [ + 11.9357985, + 51.330343001 + ], + [ + 11.9369049, + 51.329325901 + ], + [ + 11.937843, + 51.328302301 + ], + [ + 11.9387934, + 51.327167201 + ], + [ + 11.9395002, + 51.326164501 + ], + [ + 11.940539, + 51.324510301 + ], + [ + 11.9415829, + 51.322747101 + ], + [ + 11.9426236, + 51.320997501 + ], + [ + 11.9429375, + 51.320469801 + ], + [ + 11.9433835, + 51.319667801 + ], + [ + 11.943585, + 51.319356401 + ], + [ + 11.9437813, + 51.319034801 + ], + [ + 11.9441332, + 51.318433801 + ], + [ + 11.9453189, + 51.316408701 + ], + [ + 11.9456846, + 51.315807501 + ], + [ + 11.9458812, + 51.315483701 + ], + [ + 11.9461601, + 51.315044501 + ], + [ + 11.9463041, + 51.314824801 + ], + [ + 11.9463681, + 51.314727101 + ], + [ + 11.9466496, + 51.314306201 + ], + [ + 11.9469431, + 51.313884201 + ], + [ + 11.9471627, + 51.313590001 + ], + [ + 11.9474106, + 51.313260801 + ], + [ + 11.9477316, + 51.312858701 + ], + [ + 11.9480443, + 51.312486801 + ], + [ + 11.9484354, + 51.312055201 + ], + [ + 11.9487578, + 51.311709301 + ], + [ + 11.948941, + 51.311530101 + ], + [ + 11.9497585, + 51.310754701 + ], + [ + 11.9500411, + 51.310507901 + ], + [ + 11.9507653, + 51.309906501 + ], + [ + 11.9509809, + 51.309744301 + ], + [ + 11.9513209, + 51.309483101 + ], + [ + 11.9518021, + 51.309138501 + ], + [ + 11.9520299, + 51.308967301 + ], + [ + 11.9527591, + 51.308475201 + ], + [ + 11.953412, + 51.308086201 + ], + [ + 11.9543213, + 51.307548001 + ], + [ + 11.954692, + 51.307337801 + ], + [ + 11.9550661, + 51.307129601 + ], + [ + 11.9556845, + 51.306799801 + ], + [ + 11.9563518, + 51.306442201 + ], + [ + 11.9567475, + 51.306238201 + ], + [ + 11.9586772, + 51.305229701 + ], + [ + 11.9615664, + 51.303723901 + ], + [ + 11.9621539, + 51.303418601 + ], + [ + 11.9628347, + 51.303075301 + ], + [ + 11.9636286, + 51.302662801 + ], + [ + 11.9642164, + 51.302354601 + ], + [ + 11.9648262, + 51.302040001 + ], + [ + 11.965024756, + 51.301931117 + ] + ] + } + }, + { + "identifier": "2026-017735--vi-bs.2026-04-16_08-00-00-000.devi-zus.2026-05-13_08-00-00-000_001.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.36853120923075,11.912996578504185,51.369389153810246,11.912749855299909", + "point": "51.36853120923075,11.912996578504185", + "startLcPosition": "36", + "impact": { + "lower": "Merseburg-Nord", + "upper": "Geiseltal", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Geiseltal - Merseburg-Nord", + "coordinate": { + "lat": 51.36853120923075, + "long": 11.912996578504185 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 10:30 Uhr", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 2.5 km hinter Geiseltal und 0.1 km vor AS Merseburg-Nord", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A143 von Holleben (AS) nach Teutschenthal (AS) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.912996579, + 51.368531209 + ], + [ + 11.912749855, + 51.369389154 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-fbm.2026-02-03_08-00-00-000.devi-zus.2025-04-14_08-00-00-000.de39", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.30479761363217,11.959506285033566,51.258701016275374,11.992009839063838", + "point": "51.30479761363217,11.959506285033566", + "startLcPosition": "37", + "impact": { + "lower": "Saaletal", + "upper": "Merseburg-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Merseburg-S\u00fcd - Saaletal", + "startTimestamp": "2026-02-03T08:00:00+01:00", + "coordinate": { + "lat": 51.30479761363217, + "long": 11.959506285033566 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.02.26 um 08:00 Uhr", + "Ende: 15.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 0.9 km hinter AS Merseburg-S\u00fcd und 0.6 km vor Saaletal", + "", + "L\u00e4nge: 6.01 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.959506285, + 51.304797614 + ], + [ + 11.9615664, + 51.303723901 + ], + [ + 11.9621539, + 51.303418601 + ], + [ + 11.9628347, + 51.303075301 + ], + [ + 11.9636286, + 51.302662801 + ], + [ + 11.9642164, + 51.302354601 + ], + [ + 11.9648262, + 51.302040001 + ], + [ + 11.9655837, + 51.301624601 + ], + [ + 11.9661612, + 51.301292901 + ], + [ + 11.9669904, + 51.300802201 + ], + [ + 11.9676278, + 51.300394501 + ], + [ + 11.9685086, + 51.299781001 + ], + [ + 11.9693209, + 51.299156801 + ], + [ + 11.9700259, + 51.298572401 + ], + [ + 11.9705203, + 51.298121201 + ], + [ + 11.9709418, + 51.297722401 + ], + [ + 11.9713622, + 51.297298601 + ], + [ + 11.9717376, + 51.296895501 + ], + [ + 11.9720857, + 51.296490801 + ], + [ + 11.9725643, + 51.295907301 + ], + [ + 11.9731542, + 51.295084901 + ], + [ + 11.9735059, + 51.294540601 + ], + [ + 11.9738423, + 51.293953501 + ], + [ + 11.9741028, + 51.293465101 + ], + [ + 11.9743109, + 51.293012801 + ], + [ + 11.9744905, + 51.292605301 + ], + [ + 11.9747298, + 51.291985301 + ], + [ + 11.9749291, + 51.291384701 + ], + [ + 11.9751196, + 51.290621201 + ], + [ + 11.9752769, + 51.289834401 + ], + [ + 11.9753658, + 51.289092401 + ], + [ + 11.9753933, + 51.288707301 + ], + [ + 11.9754087, + 51.288309301 + ], + [ + 11.9754078, + 51.287895701 + ], + [ + 11.975392, + 51.287433601 + ], + [ + 11.9753122, + 51.286451901 + ], + [ + 11.9752444, + 51.285838001 + ], + [ + 11.9748644, + 51.282661501 + ], + [ + 11.9745937, + 51.280373901 + ], + [ + 11.9744256, + 51.278868501 + ], + [ + 11.9743778, + 51.278372401 + ], + [ + 11.9743408, + 51.277889101 + ], + [ + 11.9743054, + 51.277391301 + ], + [ + 11.9742889, + 51.276906401 + ], + [ + 11.9742895, + 51.276443401 + ], + [ + 11.9743062, + 51.275943801 + ], + [ + 11.9743375, + 51.275466701 + ], + [ + 11.9743878, + 51.274980501 + ], + [ + 11.9744542, + 51.274507601 + ], + [ + 11.9745476, + 51.273996001 + ], + [ + 11.9746529, + 51.273524601 + ], + [ + 11.9747751, + 51.273065101 + ], + [ + 11.9749203, + 51.272577901 + ], + [ + 11.97509, + 51.272095701 + ], + [ + 11.9752658, + 51.271637601 + ], + [ + 11.9754623, + 51.271165401 + ], + [ + 11.9756854, + 51.270690401 + ], + [ + 11.9759243, + 51.270226101 + ], + [ + 11.9761733, + 51.269771301 + ], + [ + 11.9762866, + 51.269585301 + ], + [ + 11.9767336, + 51.268875001 + ], + [ + 11.9775301, + 51.267768301 + ], + [ + 11.9777411, + 51.267502901 + ], + [ + 11.9780942, + 51.267087101 + ], + [ + 11.9784748, + 51.266658901 + ], + [ + 11.9790165, + 51.266068801 + ], + [ + 11.9796879, + 51.265435201 + ], + [ + 11.9801132, + 51.265044101 + ], + [ + 11.9807132, + 51.264534901 + ], + [ + 11.9810793, + 51.264233701 + ], + [ + 11.9815621, + 51.263864501 + ], + [ + 11.9820633, + 51.263493801 + ], + [ + 11.9825704, + 51.263133601 + ], + [ + 11.9831112, + 51.262774701 + ], + [ + 11.9836492, + 51.262429501 + ], + [ + 11.9842032, + 51.262099001 + ], + [ + 11.9847766, + 51.261769101 + ], + [ + 11.9853479, + 51.261445401 + ], + [ + 11.9856617, + 51.261276601 + ], + [ + 11.9859372, + 51.261139201 + ], + [ + 11.9865478, + 51.260838801 + ], + [ + 11.9871399, + 51.260557501 + ], + [ + 11.9877947, + 51.260261301 + ], + [ + 11.9884345, + 51.259987601 + ], + [ + 11.9890793, + 51.259728101 + ], + [ + 11.9897374, + 51.259472401 + ], + [ + 11.9903971, + 51.259231201 + ], + [ + 11.9910767, + 51.259000001 + ], + [ + 11.9917693, + 51.258776001 + ], + [ + 11.992009839, + 51.258701016 + ] + ] + } + }, + { + "identifier": "2026-017824--vi-bs.2026-04-13_08-00-00-000_026.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.267424859580245,11.977807373774079,51.25666766109946,11.999975450740942", + "point": "51.267424859580245,11.977807373774079", + "startLcPosition": "37", + "impact": { + "lower": "Saaletal", + "upper": "Merseburg-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Merseburg-S\u00fcd - Saaletal", + "coordinate": { + "lat": 51.267424859580245, + "long": 11.977807373774079 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 5.5 km hinter AS Merseburg-S\u00fcd und Saaletal", + "", + "L\u00e4nge: 2.01 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A38 von Merseburg-S\u00fcd (AS) nach Saaletal (Rastplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.977807374, + 51.26742486 + ], + [ + 11.9780942, + 51.267087101 + ], + [ + 11.9784748, + 51.266658901 + ], + [ + 11.9790165, + 51.266068801 + ], + [ + 11.9796879, + 51.265435201 + ], + [ + 11.9801132, + 51.265044101 + ], + [ + 11.9807132, + 51.264534901 + ], + [ + 11.9810793, + 51.264233701 + ], + [ + 11.9815621, + 51.263864501 + ], + [ + 11.9820633, + 51.263493801 + ], + [ + 11.9825704, + 51.263133601 + ], + [ + 11.9831112, + 51.262774701 + ], + [ + 11.9836492, + 51.262429501 + ], + [ + 11.9842032, + 51.262099001 + ], + [ + 11.9847766, + 51.261769101 + ], + [ + 11.9853479, + 51.261445401 + ], + [ + 11.9856617, + 51.261276601 + ], + [ + 11.9859372, + 51.261139201 + ], + [ + 11.9865478, + 51.260838801 + ], + [ + 11.9871399, + 51.260557501 + ], + [ + 11.9877947, + 51.260261301 + ], + [ + 11.9884345, + 51.259987601 + ], + [ + 11.9890793, + 51.259728101 + ], + [ + 11.9897374, + 51.259472401 + ], + [ + 11.9903971, + 51.259231201 + ], + [ + 11.9910767, + 51.259000001 + ], + [ + 11.9917693, + 51.258776001 + ], + [ + 11.9921953, + 51.258643201 + ], + [ + 11.9924475, + 51.258569701 + ], + [ + 11.9931614, + 51.258365101 + ], + [ + 11.993855, + 51.258173901 + ], + [ + 11.994609, + 51.257978701 + ], + [ + 11.9971099, + 51.257358801 + ], + [ + 11.997244, + 51.257328101 + ], + [ + 11.9974777, + 51.257269601 + ], + [ + 11.9977113, + 51.257206201 + ], + [ + 11.999975451, + 51.256667661 + ] + ] + } + }, + { + "identifier": "2024-002293--vi-bs.2026-04-21_08-00-00-000.devi-zus.2026-02-16_08-00-00-000_010.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.30488264236387,11.959619411670433,51.38270611473375,11.91122956688979", + "point": "51.30488264236387,11.959619411670433", + "startLcPosition": "38", + "impact": { + "lower": "Bad Lauchst\u00e4dt", + "upper": "Leuna", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Leuna - Bad Lauchst\u00e4dt", + "startTimestamp": "2026-04-21T08:00:00+02:00", + "coordinate": { + "lat": 51.30488264236387, + "long": 11.959619411670433 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.04.26 um 08:00 Uhr", + "Ende: 07.11.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.11.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 4.7 km hinter AS Leuna und 1.5 km vor AS Bad Lauchst\u00e4dt", + "", + "L\u00e4nge: 9.52 km | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A38 Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.959619412, + 51.304882642 + ], + [ + 11.959115, + 51.305147001 + ], + [ + 11.9568554, + 51.306318201 + ], + [ + 11.9564559, + 51.306524301 + ], + [ + 11.9558595, + 51.306849201 + ], + [ + 11.9551922, + 51.307207301 + ], + [ + 11.9547897, + 51.307430101 + ], + [ + 11.9544843, + 51.307602701 + ], + [ + 11.9534476, + 51.308230201 + ], + [ + 11.9529593, + 51.308534601 + ], + [ + 11.9521018, + 51.309095001 + ], + [ + 11.9519385, + 51.309196901 + ], + [ + 11.9516758, + 51.309383601 + ], + [ + 11.9512022, + 51.309740501 + ], + [ + 11.9509537, + 51.309933301 + ], + [ + 11.9502395, + 51.310516501 + ], + [ + 11.9498374, + 51.310869701 + ], + [ + 11.9494013, + 51.311278501 + ], + [ + 11.9490008, + 51.311679501 + ], + [ + 11.9488387, + 51.311841201 + ], + [ + 11.9485118, + 51.312186401 + ], + [ + 11.9482217, + 51.312510401 + ], + [ + 11.9479321, + 51.312851401 + ], + [ + 11.9476063, + 51.313255601 + ], + [ + 11.947289, + 51.313668301 + ], + [ + 11.9471881, + 51.313800701 + ], + [ + 11.9468133, + 51.314336701 + ], + [ + 11.946254, + 51.315194901 + ], + [ + 11.9460471, + 51.315511301 + ], + [ + 11.9459024, + 51.315750501 + ], + [ + 11.9455181, + 51.316387901 + ], + [ + 11.9451861, + 51.316966501 + ], + [ + 11.9446839, + 51.317814501 + ], + [ + 11.9436517, + 51.319583401 + ], + [ + 11.9434454, + 51.319893501 + ], + [ + 11.9429232, + 51.320803601 + ], + [ + 11.940684, + 51.324620801 + ], + [ + 11.9396415, + 51.326247901 + ], + [ + 11.9388374, + 51.327396701 + ], + [ + 11.9378824, + 51.328535901 + ], + [ + 11.937206, + 51.329277801 + ], + [ + 11.9359403, + 51.330456801 + ], + [ + 11.9343726, + 51.331849901 + ], + [ + 11.9329734, + 51.333128601 + ], + [ + 11.9317774, + 51.334287601 + ], + [ + 11.9312113, + 51.334918701 + ], + [ + 11.9304813, + 51.335745901 + ], + [ + 11.9288915, + 51.337777401 + ], + [ + 11.9281599, + 51.338772101 + ], + [ + 11.9242591, + 51.344013701 + ], + [ + 11.9230076, + 51.345718301 + ], + [ + 11.922606, + 51.346245101 + ], + [ + 11.9219047, + 51.347171701 + ], + [ + 11.9213774, + 51.347897701 + ], + [ + 11.9207864, + 51.348705401 + ], + [ + 11.9195572, + 51.350378101 + ], + [ + 11.9191188, + 51.351002301 + ], + [ + 11.918802, + 51.351482501 + ], + [ + 11.9184646, + 51.352036101 + ], + [ + 11.9182046, + 51.352497901 + ], + [ + 11.9179119, + 51.353085201 + ], + [ + 11.9176903, + 51.353590601 + ], + [ + 11.9174449, + 51.354212501 + ], + [ + 11.9172912, + 51.354644301 + ], + [ + 11.9136872, + 51.366237801 + ], + [ + 11.9130993, + 51.368174001 + ], + [ + 11.9127302, + 51.369457501 + ], + [ + 11.912634, + 51.370030001 + ], + [ + 11.9125711, + 51.370350101 + ], + [ + 11.9124219, + 51.371128701 + ], + [ + 11.9123953, + 51.371426901 + ], + [ + 11.9123698, + 51.371821801 + ], + [ + 11.9123576, + 51.373370101 + ], + [ + 11.9123647, + 51.373729501 + ], + [ + 11.9124127, + 51.376333801 + ], + [ + 11.912405, + 51.376899301 + ], + [ + 11.9123847, + 51.377298301 + ], + [ + 11.9122964, + 51.378426101 + ], + [ + 11.9122347, + 51.378863701 + ], + [ + 11.9122026, + 51.379119801 + ], + [ + 11.9120466, + 51.379910801 + ], + [ + 11.9119751, + 51.380243301 + ], + [ + 11.9118863, + 51.380621801 + ], + [ + 11.9118531, + 51.380759801 + ], + [ + 11.9116518, + 51.381442101 + ], + [ + 11.9114204, + 51.382167601 + ], + [ + 11.911229567, + 51.382706115 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-04-10_11-00-00-000.devi-zus.2025-04-14_08-00-00-000.de92", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.25911588724584,11.990736060703853,51.23733902702794,12.045989715135418", + "point": "51.25911588724584,11.990736060703853", + "startLcPosition": "38", + "impact": { + "lower": "Rippachtal", + "upper": "Leuna", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Leuna - Rippachtal", + "startTimestamp": "2026-04-10T11:00:00+02:00", + "coordinate": { + "lat": 51.25911588724584, + "long": 11.990736060703853 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 11:00 Uhr", + "Ende: 27.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 1.2 km hinter AS Leuna und 0.9 km vor AK Rippachtal", + "", + "L\u00e4nge: 4.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.990736061, + 51.259115887 + ], + [ + 11.9910767, + 51.259000001 + ], + [ + 11.9917693, + 51.258776001 + ], + [ + 11.9921953, + 51.258643201 + ], + [ + 11.9924475, + 51.258569701 + ], + [ + 11.9931614, + 51.258365101 + ], + [ + 11.993855, + 51.258173901 + ], + [ + 11.994609, + 51.257978701 + ], + [ + 11.9971099, + 51.257358801 + ], + [ + 11.997244, + 51.257328101 + ], + [ + 11.9974777, + 51.257269601 + ], + [ + 11.9977113, + 51.257206201 + ], + [ + 12.0005012, + 51.256542601 + ], + [ + 12.0025275, + 51.256052901 + ], + [ + 12.0028372, + 51.255982201 + ], + [ + 12.0052058, + 51.255397201 + ], + [ + 12.0062631, + 51.255135101 + ], + [ + 12.0074741, + 51.254838101 + ], + [ + 12.0086506, + 51.254519501 + ], + [ + 12.0095476, + 51.254261301 + ], + [ + 12.0108056, + 51.253852001 + ], + [ + 12.0117441, + 51.253521601 + ], + [ + 12.0130375, + 51.252994701 + ], + [ + 12.0140203, + 51.252555301 + ], + [ + 12.0151707, + 51.252003801 + ], + [ + 12.0165068, + 51.251265801 + ], + [ + 12.0173921, + 51.250713701 + ], + [ + 12.0182085, + 51.250177301 + ], + [ + 12.0195659, + 51.249159501 + ], + [ + 12.0208263, + 51.248060801 + ], + [ + 12.0214209, + 51.247498801 + ], + [ + 12.0222265, + 51.246664801 + ], + [ + 12.0227846, + 51.246097301 + ], + [ + 12.0233687, + 51.245537001 + ], + [ + 12.0239762, + 51.244986501 + ], + [ + 12.0246069, + 51.244445801 + ], + [ + 12.0251091, + 51.244041801 + ], + [ + 12.0256296, + 51.243647201 + ], + [ + 12.0261677, + 51.243262001 + ], + [ + 12.0267232, + 51.242886601 + ], + [ + 12.0272955, + 51.242521301 + ], + [ + 12.0278841, + 51.242166201 + ], + [ + 12.0284887, + 51.241821801 + ], + [ + 12.0291086, + 51.241488301 + ], + [ + 12.0297435, + 51.241166001 + ], + [ + 12.0303891, + 51.240856901 + ], + [ + 12.0313578, + 51.240424001 + ], + [ + 12.0324431, + 51.239991501 + ], + [ + 12.0334261, + 51.239633301 + ], + [ + 12.0343338, + 51.239316901 + ], + [ + 12.0353602, + 51.239006501 + ], + [ + 12.03629, + 51.238754801 + ], + [ + 12.0373119, + 51.238494101 + ], + [ + 12.0384428, + 51.238236501 + ], + [ + 12.0389421, + 51.238142301 + ], + [ + 12.0398063, + 51.237981701 + ], + [ + 12.0411393, + 51.237766601 + ], + [ + 12.0418765, + 51.237671101 + ], + [ + 12.04247, + 51.237598501 + ], + [ + 12.0434622, + 51.237498001 + ], + [ + 12.044372, + 51.237425701 + ], + [ + 12.0454385, + 51.237362701 + ], + [ + 12.0457197, + 51.237346701 + ], + [ + 12.045989715, + 51.237339027 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-03-02_10-00-00-000.devi-zus.2025-04-14_08-00-00-000.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.25911588724584,11.990736060703853,51.23733902702794,12.045989715135418", + "point": "51.25911588724584,11.990736060703853", + "startLcPosition": "38", + "impact": { + "lower": "Rippachtal", + "upper": "Leuna", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Leuna - Rippachtal", + "startTimestamp": "2026-03-02T10:00:00+01:00", + "coordinate": { + "lat": 51.25911588724584, + "long": 11.990736060703853 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 10:00 Uhr", + "Ende: 10.04.26 um 11:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 1.2 km hinter AS Leuna und 0.9 km vor AK Rippachtal", + "", + "L\u00e4nge: 4.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.990736061, + 51.259115887 + ], + [ + 11.9910767, + 51.259000001 + ], + [ + 11.9917693, + 51.258776001 + ], + [ + 11.9921953, + 51.258643201 + ], + [ + 11.9924475, + 51.258569701 + ], + [ + 11.9931614, + 51.258365101 + ], + [ + 11.993855, + 51.258173901 + ], + [ + 11.994609, + 51.257978701 + ], + [ + 11.9971099, + 51.257358801 + ], + [ + 11.997244, + 51.257328101 + ], + [ + 11.9974777, + 51.257269601 + ], + [ + 11.9977113, + 51.257206201 + ], + [ + 12.0005012, + 51.256542601 + ], + [ + 12.0025275, + 51.256052901 + ], + [ + 12.0028372, + 51.255982201 + ], + [ + 12.0052058, + 51.255397201 + ], + [ + 12.0062631, + 51.255135101 + ], + [ + 12.0074741, + 51.254838101 + ], + [ + 12.0086506, + 51.254519501 + ], + [ + 12.0095476, + 51.254261301 + ], + [ + 12.0108056, + 51.253852001 + ], + [ + 12.0117441, + 51.253521601 + ], + [ + 12.0130375, + 51.252994701 + ], + [ + 12.0140203, + 51.252555301 + ], + [ + 12.0151707, + 51.252003801 + ], + [ + 12.0165068, + 51.251265801 + ], + [ + 12.0173921, + 51.250713701 + ], + [ + 12.0182085, + 51.250177301 + ], + [ + 12.0195659, + 51.249159501 + ], + [ + 12.0208263, + 51.248060801 + ], + [ + 12.0214209, + 51.247498801 + ], + [ + 12.0222265, + 51.246664801 + ], + [ + 12.0227846, + 51.246097301 + ], + [ + 12.0233687, + 51.245537001 + ], + [ + 12.0239762, + 51.244986501 + ], + [ + 12.0246069, + 51.244445801 + ], + [ + 12.0251091, + 51.244041801 + ], + [ + 12.0256296, + 51.243647201 + ], + [ + 12.0261677, + 51.243262001 + ], + [ + 12.0267232, + 51.242886601 + ], + [ + 12.0272955, + 51.242521301 + ], + [ + 12.0278841, + 51.242166201 + ], + [ + 12.0284887, + 51.241821801 + ], + [ + 12.0291086, + 51.241488301 + ], + [ + 12.0297435, + 51.241166001 + ], + [ + 12.0303891, + 51.240856901 + ], + [ + 12.0313578, + 51.240424001 + ], + [ + 12.0324431, + 51.239991501 + ], + [ + 12.0334261, + 51.239633301 + ], + [ + 12.0343338, + 51.239316901 + ], + [ + 12.0353602, + 51.239006501 + ], + [ + 12.03629, + 51.238754801 + ], + [ + 12.0373119, + 51.238494101 + ], + [ + 12.0384428, + 51.238236501 + ], + [ + 12.0389421, + 51.238142301 + ], + [ + 12.0398063, + 51.237981701 + ], + [ + 12.0411393, + 51.237766601 + ], + [ + 12.0418765, + 51.237671101 + ], + [ + 12.04247, + 51.237598501 + ], + [ + 12.0434622, + 51.237498001 + ], + [ + 12.044372, + 51.237425701 + ], + [ + 12.0454385, + 51.237362701 + ], + [ + 12.0457197, + 51.237346701 + ], + [ + 12.045989715, + 51.237339027 + ] + ] + } + }, + { + "identifier": "2024-002293--vi-bs.2026-03-09_09-00-00-000.devi-zus.2026-02-16_08-00-00-000_010.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.302014010615686,11.965139860112624,51.39055489255502,11.90592680884556", + "point": "51.302014010615686,11.965139860112624", + "startLcPosition": "38", + "impact": { + "lower": "Bad Lauchst\u00e4dt", + "upper": "Leuna", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Leuna - Bad Lauchst\u00e4dt", + "startTimestamp": "2026-03-09T09:00:00+01:00", + "coordinate": { + "lat": 51.302014010615686, + "long": 11.965139860112624 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 09:00 Uhr", + "Ende: 21.04.26 um 07:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.11.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 4.2 km hinter AS Leuna und 0.5 km vor AS Bad Lauchst\u00e4dt", + "", + "L\u00e4nge: 10.96 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.96513986, + 51.302014011 + ], + [ + 11.9646861, + 51.302260801 + ], + [ + 11.9622274, + 51.303520701 + ], + [ + 11.961653, + 51.303816801 + ], + [ + 11.959115, + 51.305147001 + ], + [ + 11.9568554, + 51.306318201 + ], + [ + 11.9564559, + 51.306524301 + ], + [ + 11.9558595, + 51.306849201 + ], + [ + 11.9551922, + 51.307207301 + ], + [ + 11.9547897, + 51.307430101 + ], + [ + 11.9544843, + 51.307602701 + ], + [ + 11.9534476, + 51.308230201 + ], + [ + 11.9529593, + 51.308534601 + ], + [ + 11.9521018, + 51.309095001 + ], + [ + 11.9519385, + 51.309196901 + ], + [ + 11.9516758, + 51.309383601 + ], + [ + 11.9512022, + 51.309740501 + ], + [ + 11.9509537, + 51.309933301 + ], + [ + 11.9502395, + 51.310516501 + ], + [ + 11.9498374, + 51.310869701 + ], + [ + 11.9494013, + 51.311278501 + ], + [ + 11.9490008, + 51.311679501 + ], + [ + 11.9488387, + 51.311841201 + ], + [ + 11.9485118, + 51.312186401 + ], + [ + 11.9482217, + 51.312510401 + ], + [ + 11.9479321, + 51.312851401 + ], + [ + 11.9476063, + 51.313255601 + ], + [ + 11.947289, + 51.313668301 + ], + [ + 11.9471881, + 51.313800701 + ], + [ + 11.9468133, + 51.314336701 + ], + [ + 11.946254, + 51.315194901 + ], + [ + 11.9460471, + 51.315511301 + ], + [ + 11.9459024, + 51.315750501 + ], + [ + 11.9455181, + 51.316387901 + ], + [ + 11.9451861, + 51.316966501 + ], + [ + 11.9446839, + 51.317814501 + ], + [ + 11.9436517, + 51.319583401 + ], + [ + 11.9434454, + 51.319893501 + ], + [ + 11.9429232, + 51.320803601 + ], + [ + 11.940684, + 51.324620801 + ], + [ + 11.9396415, + 51.326247901 + ], + [ + 11.9388374, + 51.327396701 + ], + [ + 11.9378824, + 51.328535901 + ], + [ + 11.937206, + 51.329277801 + ], + [ + 11.9359403, + 51.330456801 + ], + [ + 11.9343726, + 51.331849901 + ], + [ + 11.9329734, + 51.333128601 + ], + [ + 11.9317774, + 51.334287601 + ], + [ + 11.9312113, + 51.334918701 + ], + [ + 11.9304813, + 51.335745901 + ], + [ + 11.9288915, + 51.337777401 + ], + [ + 11.9281599, + 51.338772101 + ], + [ + 11.9242591, + 51.344013701 + ], + [ + 11.9230076, + 51.345718301 + ], + [ + 11.922606, + 51.346245101 + ], + [ + 11.9219047, + 51.347171701 + ], + [ + 11.9213774, + 51.347897701 + ], + [ + 11.9207864, + 51.348705401 + ], + [ + 11.9195572, + 51.350378101 + ], + [ + 11.9191188, + 51.351002301 + ], + [ + 11.918802, + 51.351482501 + ], + [ + 11.9184646, + 51.352036101 + ], + [ + 11.9182046, + 51.352497901 + ], + [ + 11.9179119, + 51.353085201 + ], + [ + 11.9176903, + 51.353590601 + ], + [ + 11.9174449, + 51.354212501 + ], + [ + 11.9172912, + 51.354644301 + ], + [ + 11.9136872, + 51.366237801 + ], + [ + 11.9130993, + 51.368174001 + ], + [ + 11.9127302, + 51.369457501 + ], + [ + 11.912634, + 51.370030001 + ], + [ + 11.9125711, + 51.370350101 + ], + [ + 11.9124219, + 51.371128701 + ], + [ + 11.9123953, + 51.371426901 + ], + [ + 11.9123698, + 51.371821801 + ], + [ + 11.9123576, + 51.373370101 + ], + [ + 11.9123647, + 51.373729501 + ], + [ + 11.9124127, + 51.376333801 + ], + [ + 11.912405, + 51.376899301 + ], + [ + 11.9123847, + 51.377298301 + ], + [ + 11.9122964, + 51.378426101 + ], + [ + 11.9122347, + 51.378863701 + ], + [ + 11.9122026, + 51.379119801 + ], + [ + 11.9120466, + 51.379910801 + ], + [ + 11.9119751, + 51.380243301 + ], + [ + 11.9118863, + 51.380621801 + ], + [ + 11.9118531, + 51.380759801 + ], + [ + 11.9116518, + 51.381442101 + ], + [ + 11.9114204, + 51.382167601 + ], + [ + 11.9111784, + 51.382850501 + ], + [ + 11.9109049, + 51.383533301 + ], + [ + 11.9105735, + 51.384209601 + ], + [ + 11.9103789, + 51.384577201 + ], + [ + 11.9102153, + 51.384883901 + ], + [ + 11.9098318, + 51.385522701 + ], + [ + 11.9094005, + 51.386189101 + ], + [ + 11.9089797, + 51.386862001 + ], + [ + 11.90848, + 51.387538201 + ], + [ + 11.9080118, + 51.388184901 + ], + [ + 11.9074911, + 51.388841401 + ], + [ + 11.9069282, + 51.389484701 + ], + [ + 11.9063654, + 51.390108401 + ], + [ + 11.905926809, + 51.390554893 + ] + ] + } + }, + { + "identifier": "2026-017735--vi-bs.2026-04-16_08-00-00-000.devi-zus.2026-05-13_08-00-00-000_001.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.264360578138195,11.980925085140628,51.26365646446483,11.981843374287022", + "point": "51.264360578138195,11.980925085140628", + "startLcPosition": "38", + "impact": { + "lower": "Saaletal", + "upper": "Leuna", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Leuna - Saaletal", + "coordinate": { + "lat": 51.264360578138195, + "long": 11.980925085140628 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 10:30 bis 16:00 Uhr", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 0.3 km hinter AS Leuna und 1.5 km vor Saaletal", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A143 von Holleben (AS) nach Teutschenthal (AS) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.980925085, + 51.264360578 + ], + [ + 11.9810793, + 51.264233701 + ], + [ + 11.9815621, + 51.263864501 + ], + [ + 11.981843374, + 51.263656464 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-04-10_11-00-00-000.devi-zus.2025-04-14_08-00-00-000.de88", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.23733902702794,12.045989715135418,51.237036100036924,12.069773552347622", + "point": "51.23733902702794,12.045989715135418", + "startLcPosition": "39", + "impact": { + "lower": "L\u00fctzen", + "upper": "Saaletal", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Saaletal - L\u00fctzen", + "startTimestamp": "2026-04-10T11:00:00+02:00", + "coordinate": { + "lat": 51.23733902702794, + "long": 12.045989715135418 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 11:00 Uhr", + "Ende: 27.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 4.0 km hinter Saaletal und 4.9 km vor AS L\u00fctzen", + "", + "L\u00e4nge: 1.66 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.045989715, + 51.237339027 + ], + [ + 12.0467435, + 51.237317601 + ], + [ + 12.0475009, + 51.237309501 + ], + [ + 12.0485341, + 51.237308801 + ], + [ + 12.051415, + 51.237328101 + ], + [ + 12.0533852, + 51.237340301 + ], + [ + 12.0577351, + 51.237352101 + ], + [ + 12.0588278, + 51.237354101 + ], + [ + 12.0600085, + 51.237348401 + ], + [ + 12.0625639, + 51.237311401 + ], + [ + 12.0635972, + 51.237287901 + ], + [ + 12.0646705, + 51.237260001 + ], + [ + 12.0657571, + 51.237222601 + ], + [ + 12.0669288, + 51.237177601 + ], + [ + 12.0692351, + 51.237064401 + ], + [ + 12.069773552, + 51.2370361 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-03-02_10-00-00-000.devi-zus.2025-04-14_08-00-00-000.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.23733902702794,12.045989715135418,51.237036100036924,12.069773552347622", + "point": "51.23733902702794,12.045989715135418", + "startLcPosition": "39", + "impact": { + "lower": "L\u00fctzen", + "upper": "Saaletal", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Saaletal - L\u00fctzen", + "startTimestamp": "2026-03-02T10:00:00+01:00", + "coordinate": { + "lat": 51.23733902702794, + "long": 12.045989715135418 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 10:00 Uhr", + "Ende: 10.04.26 um 11:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 4.0 km hinter Saaletal und 4.9 km vor AS L\u00fctzen", + "", + "L\u00e4nge: 1.66 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.045989715, + 51.237339027 + ], + [ + 12.0467435, + 51.237317601 + ], + [ + 12.0475009, + 51.237309501 + ], + [ + 12.0485341, + 51.237308801 + ], + [ + 12.051415, + 51.237328101 + ], + [ + 12.0533852, + 51.237340301 + ], + [ + 12.0577351, + 51.237352101 + ], + [ + 12.0588278, + 51.237354101 + ], + [ + 12.0600085, + 51.237348401 + ], + [ + 12.0625639, + 51.237311401 + ], + [ + 12.0635972, + 51.237287901 + ], + [ + 12.0646705, + 51.237260001 + ], + [ + 12.0657571, + 51.237222601 + ], + [ + 12.0669288, + 51.237177601 + ], + [ + 12.0692351, + 51.237064401 + ], + [ + 12.069773552, + 51.2370361 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-04-10_11-00-00-000.devi-zus.2025-04-14_08-00-00-000.de90", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.237455269592985,12.045997655406083,51.259212750186485,11.990819191516856", + "point": "51.237455269592985,12.045997655406083", + "startLcPosition": "40", + "impact": { + "lower": "Leuna", + "upper": "Rippachtal", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Rippachtal - Leuna", + "startTimestamp": "2026-04-10T11:00:00+02:00", + "coordinate": { + "lat": 51.237455269592985, + "long": 12.045997655406083 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 11:00 Uhr", + "Ende: 27.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 0.9 km hinter AK Rippachtal und 1.2 km vor AS Leuna", + "", + "L\u00e4nge: 4.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.045997655, + 51.23745527 + ], + [ + 12.0457146, + 51.237462301 + ], + [ + 12.0454547, + 51.237473801 + ], + [ + 12.04348, + 51.237601901 + ], + [ + 12.0424993, + 51.237706001 + ], + [ + 12.0417579, + 51.237795901 + ], + [ + 12.0411734, + 51.237872401 + ], + [ + 12.0402379, + 51.238023001 + ], + [ + 12.0394345, + 51.238164301 + ], + [ + 12.0385264, + 51.238339801 + ], + [ + 12.0374813, + 51.238568501 + ], + [ + 12.0363687, + 51.238851401 + ], + [ + 12.0354328, + 51.239101601 + ], + [ + 12.0347812, + 51.239309901 + ], + [ + 12.034447, + 51.239412901 + ], + [ + 12.0334921, + 51.239729801 + ], + [ + 12.0325142, + 51.240095301 + ], + [ + 12.0314919, + 51.240524001 + ], + [ + 12.0305199, + 51.240963901 + ], + [ + 12.0298767, + 51.241271901 + ], + [ + 12.0292466, + 51.241591801 + ], + [ + 12.0286313, + 51.241922801 + ], + [ + 12.0280313, + 51.242264601 + ], + [ + 12.027447, + 51.242617001 + ], + [ + 12.026879, + 51.242979601 + ], + [ + 12.0263277, + 51.243352201 + ], + [ + 12.0257936, + 51.243734501 + ], + [ + 12.0252771, + 51.244126101 + ], + [ + 12.0247788, + 51.244527001 + ], + [ + 12.0241517, + 51.245064501 + ], + [ + 12.0235474, + 51.245612101 + ], + [ + 12.0229664, + 51.246169501 + ], + [ + 12.0224098, + 51.246735401 + ], + [ + 12.0215433, + 51.247577701 + ], + [ + 12.0209547, + 51.248130301 + ], + [ + 12.0197152, + 51.249242201 + ], + [ + 12.0183651, + 51.250230501 + ], + [ + 12.0177065, + 51.250670301 + ], + [ + 12.0166594, + 51.251369501 + ], + [ + 12.0152315, + 51.252110201 + ], + [ + 12.0141809, + 51.252622401 + ], + [ + 12.013136, + 51.253087701 + ], + [ + 12.011861, + 51.253603401 + ], + [ + 12.0111984, + 51.253848601 + ], + [ + 12.009968, + 51.254260001 + ], + [ + 12.0086882, + 51.254638501 + ], + [ + 12.0073642, + 51.254992901 + ], + [ + 12.0057073, + 51.255400501 + ], + [ + 12.0029485, + 51.256062001 + ], + [ + 11.9977394, + 51.257328501 + ], + [ + 11.9974846, + 51.257393301 + ], + [ + 11.9972481, + 51.257447901 + ], + [ + 11.997124, + 51.257478201 + ], + [ + 11.9949453, + 51.258010801 + ], + [ + 11.9932979, + 51.258449401 + ], + [ + 11.9926165, + 51.258642001 + ], + [ + 11.9919207, + 51.258850301 + ], + [ + 11.991232, + 51.259074101 + ], + [ + 11.990819192, + 51.25921275 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-03-02_10-00-00-000.devi-zus.2025-04-14_08-00-00-000.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.237455269592985,12.045997655406083,51.259212750186485,11.990819191516856", + "point": "51.237455269592985,12.045997655406083", + "startLcPosition": "40", + "impact": { + "lower": "Leuna", + "upper": "Rippachtal", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | Rippachtal - Leuna", + "startTimestamp": "2026-03-02T10:00:00+01:00", + "coordinate": { + "lat": 51.237455269592985, + "long": 12.045997655406083 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 10:00 Uhr", + "Ende: 10.04.26 um 11:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 0.9 km hinter AK Rippachtal und 1.2 km vor AS Leuna", + "", + "L\u00e4nge: 4.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.045997655, + 51.23745527 + ], + [ + 12.0457146, + 51.237462301 + ], + [ + 12.0454547, + 51.237473801 + ], + [ + 12.04348, + 51.237601901 + ], + [ + 12.0424993, + 51.237706001 + ], + [ + 12.0417579, + 51.237795901 + ], + [ + 12.0411734, + 51.237872401 + ], + [ + 12.0402379, + 51.238023001 + ], + [ + 12.0394345, + 51.238164301 + ], + [ + 12.0385264, + 51.238339801 + ], + [ + 12.0374813, + 51.238568501 + ], + [ + 12.0363687, + 51.238851401 + ], + [ + 12.0354328, + 51.239101601 + ], + [ + 12.0347812, + 51.239309901 + ], + [ + 12.034447, + 51.239412901 + ], + [ + 12.0334921, + 51.239729801 + ], + [ + 12.0325142, + 51.240095301 + ], + [ + 12.0314919, + 51.240524001 + ], + [ + 12.0305199, + 51.240963901 + ], + [ + 12.0298767, + 51.241271901 + ], + [ + 12.0292466, + 51.241591801 + ], + [ + 12.0286313, + 51.241922801 + ], + [ + 12.0280313, + 51.242264601 + ], + [ + 12.027447, + 51.242617001 + ], + [ + 12.026879, + 51.242979601 + ], + [ + 12.0263277, + 51.243352201 + ], + [ + 12.0257936, + 51.243734501 + ], + [ + 12.0252771, + 51.244126101 + ], + [ + 12.0247788, + 51.244527001 + ], + [ + 12.0241517, + 51.245064501 + ], + [ + 12.0235474, + 51.245612101 + ], + [ + 12.0229664, + 51.246169501 + ], + [ + 12.0224098, + 51.246735401 + ], + [ + 12.0215433, + 51.247577701 + ], + [ + 12.0209547, + 51.248130301 + ], + [ + 12.0197152, + 51.249242201 + ], + [ + 12.0183651, + 51.250230501 + ], + [ + 12.0177065, + 51.250670301 + ], + [ + 12.0166594, + 51.251369501 + ], + [ + 12.0152315, + 51.252110201 + ], + [ + 12.0141809, + 51.252622401 + ], + [ + 12.013136, + 51.253087701 + ], + [ + 12.011861, + 51.253603401 + ], + [ + 12.0111984, + 51.253848601 + ], + [ + 12.009968, + 51.254260001 + ], + [ + 12.0086882, + 51.254638501 + ], + [ + 12.0073642, + 51.254992901 + ], + [ + 12.0057073, + 51.255400501 + ], + [ + 12.0029485, + 51.256062001 + ], + [ + 11.9977394, + 51.257328501 + ], + [ + 11.9974846, + 51.257393301 + ], + [ + 11.9972481, + 51.257447901 + ], + [ + 11.997124, + 51.257478201 + ], + [ + 11.9949453, + 51.258010801 + ], + [ + 11.9932979, + 51.258449401 + ], + [ + 11.9926165, + 51.258642001 + ], + [ + 11.9919207, + 51.258850301 + ], + [ + 11.991232, + 51.259074101 + ], + [ + 11.990819192, + 51.25921275 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-04-10_11-00-00-000.devi-zus.2025-04-14_08-00-00-000.de84", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.23545860809035,12.090242914422902,51.2399122591556,12.146758839717496", + "point": "51.23545860809035,12.090242914422902", + "startLcPosition": "40", + "impact": { + "lower": "Landesgrenze", + "upper": "Rippachtal", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Leipzig", + "title": "A38 | Rippachtal - Landesgrenze", + "startTimestamp": "2026-04-10T11:00:00+02:00", + "coordinate": { + "lat": 51.23545860809035, + "long": 12.090242914422902 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 11:00 Uhr", + "Ende: 27.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: G\u00f6ttingen -> Leipzig, zwischen 2.2 km hinter AK Rippachtal und 3.3 km vor Landesgrenze", + "", + "L\u00e4nge: 4.03 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.090242914, + 51.235458608 + ], + [ + 12.0941317, + 51.235134601 + ], + [ + 12.0953756, + 51.235033301 + ], + [ + 12.096907, + 51.234909401 + ], + [ + 12.0992198, + 51.234750801 + ], + [ + 12.1015219, + 51.234624601 + ], + [ + 12.1038912, + 51.234529901 + ], + [ + 12.1057659, + 51.234488001 + ], + [ + 12.1078347, + 51.234495801 + ], + [ + 12.1101656, + 51.234549501 + ], + [ + 12.1121731, + 51.234639701 + ], + [ + 12.1139474, + 51.234767001 + ], + [ + 12.1157608, + 51.234916401 + ], + [ + 12.1177918, + 51.235145601 + ], + [ + 12.1200886, + 51.235441201 + ], + [ + 12.122349, + 51.235773301 + ], + [ + 12.1245305, + 51.236133701 + ], + [ + 12.1279379, + 51.236709901 + ], + [ + 12.1317805, + 51.237399701 + ], + [ + 12.1329582, + 51.237603201 + ], + [ + 12.1357756, + 51.238098301 + ], + [ + 12.1379474, + 51.238483701 + ], + [ + 12.1403497, + 51.238905801 + ], + [ + 12.1446272, + 51.239621701 + ], + [ + 12.14675884, + 51.239912259 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-04-10_11-00-00-000.devi-zus.2025-04-14_08-00-00-000.de80", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.237036100036924,12.069773552347622,51.23551653117027,12.089547543571328", + "point": "51.237036100036924,12.069773552347622", + "startLcPosition": "40", + "impact": { + "lower": "L\u00fctzen", + "upper": "Rippachtal", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Rippachtal - L\u00fctzen", + "startTimestamp": "2026-04-10T11:00:00+02:00", + "coordinate": { + "lat": 51.237036100036924, + "long": 12.069773552347622 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 11:00 Uhr", + "Ende: 27.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 0.7 km hinter AK Rippachtal und 3.5 km vor AS L\u00fctzen", + "", + "L\u00e4nge: 1.39 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.069773552, + 51.2370361 + ], + [ + 12.070213, + 51.237013001 + ], + [ + 12.0726311, + 51.236864701 + ], + [ + 12.0751414, + 51.236678201 + ], + [ + 12.0796682, + 51.236339001 + ], + [ + 12.089547544, + 51.235516531 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-03-02_10-00-00-000.devi-zus.2025-04-14_08-00-00-000.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.23545860809035,12.090242914422902,51.2399122591556,12.146758839717496", + "point": "51.23545860809035,12.090242914422902", + "startLcPosition": "40", + "impact": { + "lower": "Landesgrenze", + "upper": "Rippachtal", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Leipzig", + "title": "A38 | Rippachtal - Landesgrenze", + "startTimestamp": "2026-03-02T10:00:00+01:00", + "coordinate": { + "lat": 51.23545860809035, + "long": 12.090242914422902 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 10:00 Uhr", + "Ende: 10.04.26 um 11:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: G\u00f6ttingen -> Leipzig, zwischen 2.2 km hinter AK Rippachtal und 3.3 km vor Landesgrenze", + "", + "L\u00e4nge: 4.03 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.090242914, + 51.235458608 + ], + [ + 12.0941317, + 51.235134601 + ], + [ + 12.0953756, + 51.235033301 + ], + [ + 12.096907, + 51.234909401 + ], + [ + 12.0992198, + 51.234750801 + ], + [ + 12.1015219, + 51.234624601 + ], + [ + 12.1038912, + 51.234529901 + ], + [ + 12.1057659, + 51.234488001 + ], + [ + 12.1078347, + 51.234495801 + ], + [ + 12.1101656, + 51.234549501 + ], + [ + 12.1121731, + 51.234639701 + ], + [ + 12.1139474, + 51.234767001 + ], + [ + 12.1157608, + 51.234916401 + ], + [ + 12.1177918, + 51.235145601 + ], + [ + 12.1200886, + 51.235441201 + ], + [ + 12.122349, + 51.235773301 + ], + [ + 12.1245305, + 51.236133701 + ], + [ + 12.1279379, + 51.236709901 + ], + [ + 12.1317805, + 51.237399701 + ], + [ + 12.1329582, + 51.237603201 + ], + [ + 12.1357756, + 51.238098301 + ], + [ + 12.1379474, + 51.238483701 + ], + [ + 12.1403497, + 51.238905801 + ], + [ + 12.1446272, + 51.239621701 + ], + [ + 12.14675884, + 51.239912259 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-03-02_10-00-00-000.devi-zus.2025-04-14_08-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.237036100036924,12.069773552347622,51.23551653117027,12.089547543571328", + "point": "51.237036100036924,12.069773552347622", + "startLcPosition": "40", + "impact": { + "lower": "L\u00fctzen", + "upper": "Rippachtal", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " G\u00f6ttingen -> Halle", + "title": "A38 | Rippachtal - L\u00fctzen", + "startTimestamp": "2026-03-02T10:00:00+01:00", + "coordinate": { + "lat": 51.237036100036924, + "long": 12.069773552347622 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 10:00 Uhr", + "Ende: 10.04.26 um 11:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: G\u00f6ttingen -> Halle, zwischen 0.7 km hinter AK Rippachtal und 3.5 km vor AS L\u00fctzen", + "", + "L\u00e4nge: 1.39 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.069773552, + 51.2370361 + ], + [ + 12.070213, + 51.237013001 + ], + [ + 12.0726311, + 51.236864701 + ], + [ + 12.0751414, + 51.236678201 + ], + [ + 12.0796682, + 51.236339001 + ], + [ + 12.089547544, + 51.235516531 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-04-10_11-00-00-000.devi-zus.2025-04-14_08-00-00-000.de86", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.23714697035669,12.069789280041396,51.237455269592985,12.045997655406083", + "point": "51.23714697035669,12.069789280041396", + "startLcPosition": "41", + "impact": { + "lower": "Saaletal", + "upper": "L\u00fctzen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | L\u00fctzen - Saaletal", + "startTimestamp": "2026-04-10T11:00:00+02:00", + "coordinate": { + "lat": 51.23714697035669, + "long": 12.069789280041396 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 11:00 Uhr", + "Ende: 27.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 4.9 km hinter AS L\u00fctzen und 4.0 km vor Saaletal", + "", + "L\u00e4nge: 1.66 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.06978928, + 51.23714697 + ], + [ + 12.0692446, + 51.237180201 + ], + [ + 12.0674835, + 51.237266001 + ], + [ + 12.0669357, + 51.237292101 + ], + [ + 12.065771, + 51.237339101 + ], + [ + 12.064664, + 51.237375401 + ], + [ + 12.0633299, + 51.237408701 + ], + [ + 12.0625759, + 51.237427201 + ], + [ + 12.0601179, + 51.237458201 + ], + [ + 12.0589405, + 51.237467301 + ], + [ + 12.0577364, + 51.237468101 + ], + [ + 12.0544157, + 51.237460301 + ], + [ + 12.0539844, + 51.237458401 + ], + [ + 12.0533834, + 51.237455801 + ], + [ + 12.0512867, + 51.237436801 + ], + [ + 12.0485467, + 51.237431701 + ], + [ + 12.0475331, + 51.237428101 + ], + [ + 12.0467571, + 51.237436401 + ], + [ + 12.045997655, + 51.23745527 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-03-02_10-00-00-000.devi-zus.2025-04-14_08-00-00-000.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.23714697035669,12.069789280041396,51.237455269592985,12.045997655406083", + "point": "51.23714697035669,12.069789280041396", + "startLcPosition": "41", + "impact": { + "lower": "Saaletal", + "upper": "L\u00fctzen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | L\u00fctzen - Saaletal", + "startTimestamp": "2026-03-02T10:00:00+01:00", + "coordinate": { + "lat": 51.23714697035669, + "long": 12.069789280041396 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 10:00 Uhr", + "Ende: 10.04.26 um 11:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 4.9 km hinter AS L\u00fctzen und 4.0 km vor Saaletal", + "", + "L\u00e4nge: 1.66 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.06978928, + 51.23714697 + ], + [ + 12.0692446, + 51.237180201 + ], + [ + 12.0674835, + 51.237266001 + ], + [ + 12.0669357, + 51.237292101 + ], + [ + 12.065771, + 51.237339101 + ], + [ + 12.064664, + 51.237375401 + ], + [ + 12.0633299, + 51.237408701 + ], + [ + 12.0625759, + 51.237427201 + ], + [ + 12.0601179, + 51.237458201 + ], + [ + 12.0589405, + 51.237467301 + ], + [ + 12.0577364, + 51.237468101 + ], + [ + 12.0544157, + 51.237460301 + ], + [ + 12.0539844, + 51.237458401 + ], + [ + 12.0533834, + 51.237455801 + ], + [ + 12.0512867, + 51.237436801 + ], + [ + 12.0485467, + 51.237431701 + ], + [ + 12.0475331, + 51.237428101 + ], + [ + 12.0467571, + 51.237436401 + ], + [ + 12.045997655, + 51.23745527 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-04-10_11-00-00-000.devi-zus.2025-04-14_08-00-00-000.de78", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.23562705253905,12.089570953268908,51.23714697035669,12.069789280041396", + "point": "51.23562705253905,12.089570953268908", + "startLcPosition": "41", + "impact": { + "lower": "Rippachtal", + "upper": "L\u00fctzen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | L\u00fctzen - Rippachtal", + "startTimestamp": "2026-04-10T11:00:00+02:00", + "coordinate": { + "lat": 51.23562705253905, + "long": 12.089570953268908 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 11:00 Uhr", + "Ende: 27.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 3.5 km hinter AS L\u00fctzen und 0.7 km vor AK Rippachtal", + "", + "L\u00e4nge: 1.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.089570953, + 51.235627053 + ], + [ + 12.0796405, + 51.236457201 + ], + [ + 12.0744384, + 51.236857001 + ], + [ + 12.0729654, + 51.236956701 + ], + [ + 12.0706443, + 51.237094801 + ], + [ + 12.06978928, + 51.23714697 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-03-02_10-00-00-000.devi-zus.2025-04-14_08-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.23562705253905,12.089570953268908,51.23714697035669,12.069789280041396", + "point": "51.23562705253905,12.089570953268908", + "startLcPosition": "41", + "impact": { + "lower": "Rippachtal", + "upper": "L\u00fctzen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> G\u00f6ttingen", + "title": "A38 | L\u00fctzen - Rippachtal", + "startTimestamp": "2026-03-02T10:00:00+01:00", + "coordinate": { + "lat": 51.23562705253905, + "long": 12.089570953268908 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 10:00 Uhr", + "Ende: 10.04.26 um 11:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: Halle -> G\u00f6ttingen, zwischen 3.5 km hinter AS L\u00fctzen und 0.7 km vor AK Rippachtal", + "", + "L\u00e4nge: 1.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.089570953, + 51.235627053 + ], + [ + 12.0796405, + 51.236457201 + ], + [ + 12.0744384, + 51.236857001 + ], + [ + 12.0729654, + 51.236956701 + ], + [ + 12.0706443, + 51.237094801 + ], + [ + 12.06978928, + 51.23714697 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-04-10_11-00-00-000.devi-zus.2025-04-14_08-00-00-000.de82", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.240052456758306,12.146711901895255,51.235568893633825,12.090266275345146", + "point": "51.240052456758306,12.146711901895255", + "startLcPosition": "42", + "impact": { + "lower": "Rippachtal", + "upper": "Landesgrenze", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Leipzig -> G\u00f6ttingen", + "title": "A38 | Landesgrenze - Rippachtal", + "startTimestamp": "2026-04-10T11:00:00+02:00", + "coordinate": { + "lat": 51.240052456758306, + "long": 12.146711901895255 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 11:00 Uhr", + "Ende: 27.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: Leipzig -> G\u00f6ttingen, zwischen 3.3 km hinter Landesgrenze und 2.2 km vor AK Rippachtal", + "", + "L\u00e4nge: 4.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.146711902, + 51.240052457 + ], + [ + 12.1445344, + 51.239777001 + ], + [ + 12.1401847, + 51.238995601 + ], + [ + 12.1374268, + 51.238508201 + ], + [ + 12.1353349, + 51.238135901 + ], + [ + 12.132797, + 51.237691701 + ], + [ + 12.1278414, + 51.236811101 + ], + [ + 12.1256216, + 51.236425801 + ], + [ + 12.1244842, + 51.236232801 + ], + [ + 12.1222482, + 51.235877901 + ], + [ + 12.1200517, + 51.235547401 + ], + [ + 12.1177503, + 51.235251401 + ], + [ + 12.1157277, + 51.235033901 + ], + [ + 12.1139607, + 51.234874901 + ], + [ + 12.1121696, + 51.234749401 + ], + [ + 12.1101311, + 51.234654101 + ], + [ + 12.1078425, + 51.234608601 + ], + [ + 12.1058773, + 51.234604301 + ], + [ + 12.103774, + 51.234648101 + ], + [ + 12.1014585, + 51.234743701 + ], + [ + 12.0991822, + 51.234867901 + ], + [ + 12.0971142, + 51.235010601 + ], + [ + 12.0957766, + 51.235112201 + ], + [ + 12.0945105, + 51.235213801 + ], + [ + 12.090266275, + 51.235568894 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-bs.2026-03-02_10-00-00-000.devi-zus.2025-04-14_08-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.240052456758306,12.146711901895255,51.235568893633825,12.090266275345146", + "point": "51.240052456758306,12.146711901895255", + "startLcPosition": "42", + "impact": { + "lower": "Rippachtal", + "upper": "Landesgrenze", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Leipzig -> G\u00f6ttingen", + "title": "A38 | Landesgrenze - Rippachtal", + "startTimestamp": "2026-03-02T10:00:00+01:00", + "coordinate": { + "lat": 51.240052456758306, + "long": 12.146711901895255 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 10:00 Uhr", + "Ende: 10.04.26 um 11:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: Leipzig -> G\u00f6ttingen, zwischen 3.3 km hinter Landesgrenze und 2.2 km vor AK Rippachtal", + "", + "L\u00e4nge: 4.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.146711902, + 51.240052457 + ], + [ + 12.1445344, + 51.239777001 + ], + [ + 12.1401847, + 51.238995601 + ], + [ + 12.1374268, + 51.238508201 + ], + [ + 12.1353349, + 51.238135901 + ], + [ + 12.132797, + 51.237691701 + ], + [ + 12.1278414, + 51.236811101 + ], + [ + 12.1256216, + 51.236425801 + ], + [ + 12.1244842, + 51.236232801 + ], + [ + 12.1222482, + 51.235877901 + ], + [ + 12.1200517, + 51.235547401 + ], + [ + 12.1177503, + 51.235251401 + ], + [ + 12.1157277, + 51.235033901 + ], + [ + 12.1139607, + 51.234874901 + ], + [ + 12.1121696, + 51.234749401 + ], + [ + 12.1101311, + 51.234654101 + ], + [ + 12.1078425, + 51.234608601 + ], + [ + 12.1058773, + 51.234604301 + ], + [ + 12.103774, + 51.234648101 + ], + [ + 12.1014585, + 51.234743701 + ], + [ + 12.0991822, + 51.234867901 + ], + [ + 12.0971142, + 51.235010601 + ], + [ + 12.0957766, + 51.235112201 + ], + [ + 12.0945105, + 51.235213801 + ], + [ + 12.090266275, + 51.235568894 + ] + ] + } + }, + { + "identifier": "2024-000823--vi-fbm.2026-04-07_20-00-00-000.devi-zus.2027-03-01_00-00-00-000_002.de65", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.256361606220246,12.296380825572289,51.26061623721147,12.441970429299602", + "point": "51.256361606220246,12.296380825572289", + "startLcPosition": "44", + "impact": { + "lower": "Leipzig-S\u00fcdost", + "upper": "Leipzig-S\u00fcdwest", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle -> Leipzig", + "title": "A38 | Leipzig-S\u00fcdwest - Leipzig-S\u00fcdost", + "coordinate": { + "lat": 51.256361606220246, + "long": 12.296380825572289 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 11.04.26 von 20:00 bis 00:00 Uhr.", + "Jeden Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 08.04.26 und dem 11.04.26 von 00:00 bis 06:00 Uhr.", + "", + "A38: Halle -> Leipzig, zwischen 2.1 km hinter AS Leipzig-S\u00fcdwest und 1.8 km vor AS Leipzig-S\u00fcdost", + "", + "L\u00e4nge: 11.01 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "FBE A38 Km 193,58 - 208,32 Richtungsfahrbahn Dresden" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.296380826, + 51.256361606 + ], + [ + 12.2977874, + 51.255655501 + ], + [ + 12.299356, + 51.254874201 + ], + [ + 12.3003665, + 51.254360501 + ], + [ + 12.3014031, + 51.253870101 + ], + [ + 12.3019564, + 51.253618801 + ], + [ + 12.3021741, + 51.253519901 + ], + [ + 12.3027189, + 51.253280301 + ], + [ + 12.303473, + 51.252957501 + ], + [ + 12.3050096, + 51.252327001 + ], + [ + 12.3052074, + 51.252250001 + ], + [ + 12.3060115, + 51.251941601 + ], + [ + 12.3070619, + 51.251555601 + ], + [ + 12.3077634, + 51.251307201 + ], + [ + 12.3080667, + 51.251205801 + ], + [ + 12.3097215, + 51.250652301 + ], + [ + 12.3119459, + 51.249980301 + ], + [ + 12.3135687, + 51.249531401 + ], + [ + 12.3145603, + 51.249285001 + ], + [ + 12.3155891, + 51.249029401 + ], + [ + 12.318002, + 51.248499801 + ], + [ + 12.3204549, + 51.248034101 + ], + [ + 12.3213547, + 51.247881501 + ], + [ + 12.3229085, + 51.247630901 + ], + [ + 12.3254022, + 51.247302301 + ], + [ + 12.3273841, + 51.247094401 + ], + [ + 12.3283899, + 51.247007701 + ], + [ + 12.3294298, + 51.246921501 + ], + [ + 12.3311736, + 51.246809901 + ], + [ + 12.3329211, + 51.246728201 + ], + [ + 12.3347955, + 51.246674701 + ], + [ + 12.3355973, + 51.246659401 + ], + [ + 12.3368018, + 51.246653201 + ], + [ + 12.3378493, + 51.246663901 + ], + [ + 12.3404776, + 51.246720601 + ], + [ + 12.3427588, + 51.246759101 + ], + [ + 12.343291, + 51.246768101 + ], + [ + 12.3569961, + 51.246983901 + ], + [ + 12.3602063, + 51.247017501 + ], + [ + 12.3612537, + 51.247035201 + ], + [ + 12.3661272, + 51.247118801 + ], + [ + 12.3684179, + 51.247173901 + ], + [ + 12.369588, + 51.247208701 + ], + [ + 12.370688, + 51.247249301 + ], + [ + 12.373604, + 51.247386301 + ], + [ + 12.3738472, + 51.247399901 + ], + [ + 12.3775782, + 51.247648201 + ], + [ + 12.3786941, + 51.247739901 + ], + [ + 12.3797246, + 51.247827901 + ], + [ + 12.380747, + 51.247907901 + ], + [ + 12.3813094, + 51.247947601 + ], + [ + 12.3817913, + 51.247978701 + ], + [ + 12.3829776, + 51.248050701 + ], + [ + 12.3840772, + 51.248107501 + ], + [ + 12.3847531, + 51.248135601 + ], + [ + 12.3858028, + 51.248175301 + ], + [ + 12.386378, + 51.248192301 + ], + [ + 12.3878797, + 51.248224901 + ], + [ + 12.3891786, + 51.248239101 + ], + [ + 12.3916169, + 51.248229801 + ], + [ + 12.3932668, + 51.248198601 + ], + [ + 12.3941005, + 51.248169501 + ], + [ + 12.3951084, + 51.248131901 + ], + [ + 12.3963257, + 51.248069901 + ], + [ + 12.3971836, + 51.248025701 + ], + [ + 12.3991898, + 51.247927201 + ], + [ + 12.4001203, + 51.247894801 + ], + [ + 12.4012953, + 51.247853801 + ], + [ + 12.402597, + 51.247824901 + ], + [ + 12.4057717, + 51.247751501 + ], + [ + 12.4063283, + 51.247737201 + ], + [ + 12.4068561, + 51.247723701 + ], + [ + 12.4070284, + 51.247719301 + ], + [ + 12.4077036, + 51.247702001 + ], + [ + 12.4087173, + 51.247676001 + ], + [ + 12.4102048, + 51.247636601 + ], + [ + 12.4116959, + 51.247608801 + ], + [ + 12.4130808, + 51.247596401 + ], + [ + 12.4139429, + 51.247614701 + ], + [ + 12.4141498, + 51.247622001 + ], + [ + 12.4148761, + 51.247654701 + ], + [ + 12.4158495, + 51.247716601 + ], + [ + 12.4162566, + 51.247750801 + ], + [ + 12.4171666, + 51.247842301 + ], + [ + 12.4182132, + 51.247976401 + ], + [ + 12.4191902, + 51.248130201 + ], + [ + 12.420222, + 51.248320001 + ], + [ + 12.4209778, + 51.248485101 + ], + [ + 12.4211164, + 51.248517001 + ], + [ + 12.421932, + 51.248707101 + ], + [ + 12.4228131, + 51.248932001 + ], + [ + 12.4235712, + 51.249153101 + ], + [ + 12.4243661, + 51.249409501 + ], + [ + 12.4248195, + 51.249569401 + ], + [ + 12.4253693, + 51.249782501 + ], + [ + 12.4259747, + 51.250023501 + ], + [ + 12.4264195, + 51.250205201 + ], + [ + 12.4267806, + 51.250360801 + ], + [ + 12.4280705, + 51.250955001 + ], + [ + 12.4287741, + 51.251332901 + ], + [ + 12.4290938, + 51.251504801 + ], + [ + 12.429445, + 51.251706101 + ], + [ + 12.4302333, + 51.252185501 + ], + [ + 12.4306036, + 51.252431801 + ], + [ + 12.4310599, + 51.252743901 + ], + [ + 12.4313978, + 51.252981601 + ], + [ + 12.4317895, + 51.253290301 + ], + [ + 12.4323647, + 51.253746101 + ], + [ + 12.4328238, + 51.254144601 + ], + [ + 12.4331106, + 51.254406901 + ], + [ + 12.4335889, + 51.254856001 + ], + [ + 12.4340097, + 51.255269901 + ], + [ + 12.4342871, + 51.255535801 + ], + [ + 12.4345638, + 51.255807801 + ], + [ + 12.4349974, + 51.256223801 + ], + [ + 12.4353492, + 51.256544001 + ], + [ + 12.4356874, + 51.256842801 + ], + [ + 12.4359753, + 51.257097901 + ], + [ + 12.4362661, + 51.257333101 + ], + [ + 12.4367462, + 51.257705501 + ], + [ + 12.436913, + 51.257829901 + ], + [ + 12.4373085, + 51.258112401 + ], + [ + 12.4378447, + 51.258475801 + ], + [ + 12.4384041, + 51.258825801 + ], + [ + 12.4387856, + 51.259056001 + ], + [ + 12.4391074, + 51.259238801 + ], + [ + 12.4393538, + 51.259376601 + ], + [ + 12.4397673, + 51.259595501 + ], + [ + 12.440317, + 51.259876601 + ], + [ + 12.440728, + 51.260070601 + ], + [ + 12.4412, + 51.260287701 + ], + [ + 12.4415053, + 51.260424401 + ], + [ + 12.4418386, + 51.260563401 + ], + [ + 12.441970429, + 51.260616237 + ] + ] + } + }, + { + "identifier": "2024-000823--vi-fbm.2026-04-07_20-00-00-000.devi-zus.2027-03-01_00-00-00-000_002.de63", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.256361606220246,12.296380825572289,51.26061623721147,12.441970429299602", + "point": "51.256361606220246,12.296380825572289", + "startLcPosition": "44", + "impact": { + "lower": "Leipzig-S\u00fcdost", + "upper": "Leipzig-S\u00fcdwest", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle -> Leipzig", + "title": "A38 | Leipzig-S\u00fcdwest - Leipzig-S\u00fcdost", + "coordinate": { + "lat": 51.256361606220246, + "long": 12.296380825572289 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 08.04.26 und dem 11.04.26 von 00:00 bis 05:00 Uhr.", + "Jeden Mittwoch und Donnerstag zwischen dem 08.04.26 und dem 10.04.26 von 19:00 bis 00:00 Uhr.", + "10.04.26 von 19:00 bis 24:00 Uhr", + "", + "A38: Halle -> Leipzig, zwischen 2.1 km hinter AS Leipzig-S\u00fcdwest und 1.8 km vor AS Leipzig-S\u00fcdost", + "", + "L\u00e4nge: 11.01 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "FBE A38 Km 193,58 - 208,32 Richtungsfahrbahn Dresden" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.296380826, + 51.256361606 + ], + [ + 12.2977874, + 51.255655501 + ], + [ + 12.299356, + 51.254874201 + ], + [ + 12.3003665, + 51.254360501 + ], + [ + 12.3014031, + 51.253870101 + ], + [ + 12.3019564, + 51.253618801 + ], + [ + 12.3021741, + 51.253519901 + ], + [ + 12.3027189, + 51.253280301 + ], + [ + 12.303473, + 51.252957501 + ], + [ + 12.3050096, + 51.252327001 + ], + [ + 12.3052074, + 51.252250001 + ], + [ + 12.3060115, + 51.251941601 + ], + [ + 12.3070619, + 51.251555601 + ], + [ + 12.3077634, + 51.251307201 + ], + [ + 12.3080667, + 51.251205801 + ], + [ + 12.3097215, + 51.250652301 + ], + [ + 12.3119459, + 51.249980301 + ], + [ + 12.3135687, + 51.249531401 + ], + [ + 12.3145603, + 51.249285001 + ], + [ + 12.3155891, + 51.249029401 + ], + [ + 12.318002, + 51.248499801 + ], + [ + 12.3204549, + 51.248034101 + ], + [ + 12.3213547, + 51.247881501 + ], + [ + 12.3229085, + 51.247630901 + ], + [ + 12.3254022, + 51.247302301 + ], + [ + 12.3273841, + 51.247094401 + ], + [ + 12.3283899, + 51.247007701 + ], + [ + 12.3294298, + 51.246921501 + ], + [ + 12.3311736, + 51.246809901 + ], + [ + 12.3329211, + 51.246728201 + ], + [ + 12.3347955, + 51.246674701 + ], + [ + 12.3355973, + 51.246659401 + ], + [ + 12.3368018, + 51.246653201 + ], + [ + 12.3378493, + 51.246663901 + ], + [ + 12.3404776, + 51.246720601 + ], + [ + 12.3427588, + 51.246759101 + ], + [ + 12.343291, + 51.246768101 + ], + [ + 12.3569961, + 51.246983901 + ], + [ + 12.3602063, + 51.247017501 + ], + [ + 12.3612537, + 51.247035201 + ], + [ + 12.3661272, + 51.247118801 + ], + [ + 12.3684179, + 51.247173901 + ], + [ + 12.369588, + 51.247208701 + ], + [ + 12.370688, + 51.247249301 + ], + [ + 12.373604, + 51.247386301 + ], + [ + 12.3738472, + 51.247399901 + ], + [ + 12.3775782, + 51.247648201 + ], + [ + 12.3786941, + 51.247739901 + ], + [ + 12.3797246, + 51.247827901 + ], + [ + 12.380747, + 51.247907901 + ], + [ + 12.3813094, + 51.247947601 + ], + [ + 12.3817913, + 51.247978701 + ], + [ + 12.3829776, + 51.248050701 + ], + [ + 12.3840772, + 51.248107501 + ], + [ + 12.3847531, + 51.248135601 + ], + [ + 12.3858028, + 51.248175301 + ], + [ + 12.386378, + 51.248192301 + ], + [ + 12.3878797, + 51.248224901 + ], + [ + 12.3891786, + 51.248239101 + ], + [ + 12.3916169, + 51.248229801 + ], + [ + 12.3932668, + 51.248198601 + ], + [ + 12.3941005, + 51.248169501 + ], + [ + 12.3951084, + 51.248131901 + ], + [ + 12.3963257, + 51.248069901 + ], + [ + 12.3971836, + 51.248025701 + ], + [ + 12.3991898, + 51.247927201 + ], + [ + 12.4001203, + 51.247894801 + ], + [ + 12.4012953, + 51.247853801 + ], + [ + 12.402597, + 51.247824901 + ], + [ + 12.4057717, + 51.247751501 + ], + [ + 12.4063283, + 51.247737201 + ], + [ + 12.4068561, + 51.247723701 + ], + [ + 12.4070284, + 51.247719301 + ], + [ + 12.4077036, + 51.247702001 + ], + [ + 12.4087173, + 51.247676001 + ], + [ + 12.4102048, + 51.247636601 + ], + [ + 12.4116959, + 51.247608801 + ], + [ + 12.4130808, + 51.247596401 + ], + [ + 12.4139429, + 51.247614701 + ], + [ + 12.4141498, + 51.247622001 + ], + [ + 12.4148761, + 51.247654701 + ], + [ + 12.4158495, + 51.247716601 + ], + [ + 12.4162566, + 51.247750801 + ], + [ + 12.4171666, + 51.247842301 + ], + [ + 12.4182132, + 51.247976401 + ], + [ + 12.4191902, + 51.248130201 + ], + [ + 12.420222, + 51.248320001 + ], + [ + 12.4209778, + 51.248485101 + ], + [ + 12.4211164, + 51.248517001 + ], + [ + 12.421932, + 51.248707101 + ], + [ + 12.4228131, + 51.248932001 + ], + [ + 12.4235712, + 51.249153101 + ], + [ + 12.4243661, + 51.249409501 + ], + [ + 12.4248195, + 51.249569401 + ], + [ + 12.4253693, + 51.249782501 + ], + [ + 12.4259747, + 51.250023501 + ], + [ + 12.4264195, + 51.250205201 + ], + [ + 12.4267806, + 51.250360801 + ], + [ + 12.4280705, + 51.250955001 + ], + [ + 12.4287741, + 51.251332901 + ], + [ + 12.4290938, + 51.251504801 + ], + [ + 12.429445, + 51.251706101 + ], + [ + 12.4302333, + 51.252185501 + ], + [ + 12.4306036, + 51.252431801 + ], + [ + 12.4310599, + 51.252743901 + ], + [ + 12.4313978, + 51.252981601 + ], + [ + 12.4317895, + 51.253290301 + ], + [ + 12.4323647, + 51.253746101 + ], + [ + 12.4328238, + 51.254144601 + ], + [ + 12.4331106, + 51.254406901 + ], + [ + 12.4335889, + 51.254856001 + ], + [ + 12.4340097, + 51.255269901 + ], + [ + 12.4342871, + 51.255535801 + ], + [ + 12.4345638, + 51.255807801 + ], + [ + 12.4349974, + 51.256223801 + ], + [ + 12.4353492, + 51.256544001 + ], + [ + 12.4356874, + 51.256842801 + ], + [ + 12.4359753, + 51.257097901 + ], + [ + 12.4362661, + 51.257333101 + ], + [ + 12.4367462, + 51.257705501 + ], + [ + 12.436913, + 51.257829901 + ], + [ + 12.4373085, + 51.258112401 + ], + [ + 12.4378447, + 51.258475801 + ], + [ + 12.4384041, + 51.258825801 + ], + [ + 12.4387856, + 51.259056001 + ], + [ + 12.4391074, + 51.259238801 + ], + [ + 12.4393538, + 51.259376601 + ], + [ + 12.4397673, + 51.259595501 + ], + [ + 12.440317, + 51.259876601 + ], + [ + 12.440728, + 51.260070601 + ], + [ + 12.4412, + 51.260287701 + ], + [ + 12.4415053, + 51.260424401 + ], + [ + 12.4418386, + 51.260563401 + ], + [ + 12.441970429, + 51.260616237 + ] + ] + } + }, + { + "identifier": "2026-016224--vi-bs.2026-04-13_09-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.260217948340454,12.25258436362127,51.25652556606924,12.244447159469512", + "point": "51.260217948340454,12.25258436362127", + "startLcPosition": "44", + "impact": { + "lower": "Fuchsaue", + "upper": "Leipzig-S\u00fcdwest", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leipzig -> Halle", + "title": "A38 | Leipzig-S\u00fcdwest - Fuchsaue", + "coordinate": { + "lat": 51.260217948340454, + "long": 12.25258436362127 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "", + "A38: Leipzig -> Halle, zwischen 1.2 km hinter AS Leipzig-S\u00fcdwest und 2.4 km vor Fuchsaue", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A38 Beseitigung Unfallfolgen Nr 312" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.252584364, + 51.260217948 + ], + [ + 12.2521994, + 51.260079501 + ], + [ + 12.251512, + 51.259817201 + ], + [ + 12.2502226, + 51.259294001 + ], + [ + 12.2483477, + 51.258449701 + ], + [ + 12.2467217, + 51.257673801 + ], + [ + 12.2451165, + 51.256866401 + ], + [ + 12.2445156, + 51.256560501 + ], + [ + 12.244447159, + 51.256525566 + ] + ] + } + }, + { + "identifier": "2024-000823--vi-bs.2026-04-07_19-00-00-000.devi-zus.2027-03-01_00-00-00-000_002.de39", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.247841363865476,12.321603572361676,51.262196243353316,12.46422821444341", + "point": "51.247841363865476,12.321603572361676", + "startLcPosition": "45", + "impact": { + "lower": "Leipzig-S\u00fcdost", + "upper": "Neue Harth", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Halle -> Leipzig", + "title": "A38 | Neue Harth - Leipzig-S\u00fcdost", + "startTimestamp": "2026-04-07T19:00:00+02:00", + "coordinate": { + "lat": 51.247841363865476, + "long": 12.321603572361676 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 19:00 Uhr", + "Ende: 06.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.12.26)", + "", + "A38: Halle -> Leipzig, zwischen 1.2 km hinter AS Neue Harth und 0.2 km vor AS Leipzig-S\u00fcdost", + "", + "L\u00e4nge: 10.61 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "FBE A38 Km 193,58 - 208,32 Richtungsfahrbahn Dresden" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.321603572, + 51.247841364 + ], + [ + 12.3229085, + 51.247630901 + ], + [ + 12.3254022, + 51.247302301 + ], + [ + 12.3273841, + 51.247094401 + ], + [ + 12.3283899, + 51.247007701 + ], + [ + 12.3294298, + 51.246921501 + ], + [ + 12.3311736, + 51.246809901 + ], + [ + 12.3329211, + 51.246728201 + ], + [ + 12.3347955, + 51.246674701 + ], + [ + 12.3355973, + 51.246659401 + ], + [ + 12.3368018, + 51.246653201 + ], + [ + 12.3378493, + 51.246663901 + ], + [ + 12.3404776, + 51.246720601 + ], + [ + 12.3427588, + 51.246759101 + ], + [ + 12.343291, + 51.246768101 + ], + [ + 12.3569961, + 51.246983901 + ], + [ + 12.3602063, + 51.247017501 + ], + [ + 12.3612537, + 51.247035201 + ], + [ + 12.3661272, + 51.247118801 + ], + [ + 12.3684179, + 51.247173901 + ], + [ + 12.369588, + 51.247208701 + ], + [ + 12.370688, + 51.247249301 + ], + [ + 12.373604, + 51.247386301 + ], + [ + 12.3738472, + 51.247399901 + ], + [ + 12.3775782, + 51.247648201 + ], + [ + 12.3786941, + 51.247739901 + ], + [ + 12.3797246, + 51.247827901 + ], + [ + 12.380747, + 51.247907901 + ], + [ + 12.3813094, + 51.247947601 + ], + [ + 12.3817913, + 51.247978701 + ], + [ + 12.3829776, + 51.248050701 + ], + [ + 12.3840772, + 51.248107501 + ], + [ + 12.3847531, + 51.248135601 + ], + [ + 12.3858028, + 51.248175301 + ], + [ + 12.386378, + 51.248192301 + ], + [ + 12.3878797, + 51.248224901 + ], + [ + 12.3891786, + 51.248239101 + ], + [ + 12.3916169, + 51.248229801 + ], + [ + 12.3932668, + 51.248198601 + ], + [ + 12.3941005, + 51.248169501 + ], + [ + 12.3951084, + 51.248131901 + ], + [ + 12.3963257, + 51.248069901 + ], + [ + 12.3971836, + 51.248025701 + ], + [ + 12.3991898, + 51.247927201 + ], + [ + 12.4001203, + 51.247894801 + ], + [ + 12.4012953, + 51.247853801 + ], + [ + 12.402597, + 51.247824901 + ], + [ + 12.4057717, + 51.247751501 + ], + [ + 12.4063283, + 51.247737201 + ], + [ + 12.4068561, + 51.247723701 + ], + [ + 12.4070284, + 51.247719301 + ], + [ + 12.4077036, + 51.247702001 + ], + [ + 12.4087173, + 51.247676001 + ], + [ + 12.4102048, + 51.247636601 + ], + [ + 12.4116959, + 51.247608801 + ], + [ + 12.4130808, + 51.247596401 + ], + [ + 12.4139429, + 51.247614701 + ], + [ + 12.4141498, + 51.247622001 + ], + [ + 12.4148761, + 51.247654701 + ], + [ + 12.4158495, + 51.247716601 + ], + [ + 12.4162566, + 51.247750801 + ], + [ + 12.4171666, + 51.247842301 + ], + [ + 12.4182132, + 51.247976401 + ], + [ + 12.4191902, + 51.248130201 + ], + [ + 12.420222, + 51.248320001 + ], + [ + 12.4209778, + 51.248485101 + ], + [ + 12.4211164, + 51.248517001 + ], + [ + 12.421932, + 51.248707101 + ], + [ + 12.4228131, + 51.248932001 + ], + [ + 12.4235712, + 51.249153101 + ], + [ + 12.4243661, + 51.249409501 + ], + [ + 12.4248195, + 51.249569401 + ], + [ + 12.4253693, + 51.249782501 + ], + [ + 12.4259747, + 51.250023501 + ], + [ + 12.4264195, + 51.250205201 + ], + [ + 12.4267806, + 51.250360801 + ], + [ + 12.4280705, + 51.250955001 + ], + [ + 12.4287741, + 51.251332901 + ], + [ + 12.4290938, + 51.251504801 + ], + [ + 12.429445, + 51.251706101 + ], + [ + 12.4302333, + 51.252185501 + ], + [ + 12.4306036, + 51.252431801 + ], + [ + 12.4310599, + 51.252743901 + ], + [ + 12.4313978, + 51.252981601 + ], + [ + 12.4317895, + 51.253290301 + ], + [ + 12.4323647, + 51.253746101 + ], + [ + 12.4328238, + 51.254144601 + ], + [ + 12.4331106, + 51.254406901 + ], + [ + 12.4335889, + 51.254856001 + ], + [ + 12.4340097, + 51.255269901 + ], + [ + 12.4342871, + 51.255535801 + ], + [ + 12.4345638, + 51.255807801 + ], + [ + 12.4349974, + 51.256223801 + ], + [ + 12.4353492, + 51.256544001 + ], + [ + 12.4356874, + 51.256842801 + ], + [ + 12.4359753, + 51.257097901 + ], + [ + 12.4362661, + 51.257333101 + ], + [ + 12.4367462, + 51.257705501 + ], + [ + 12.436913, + 51.257829901 + ], + [ + 12.4373085, + 51.258112401 + ], + [ + 12.4378447, + 51.258475801 + ], + [ + 12.4384041, + 51.258825801 + ], + [ + 12.4387856, + 51.259056001 + ], + [ + 12.4391074, + 51.259238801 + ], + [ + 12.4393538, + 51.259376601 + ], + [ + 12.4397673, + 51.259595501 + ], + [ + 12.440317, + 51.259876601 + ], + [ + 12.440728, + 51.260070601 + ], + [ + 12.4412, + 51.260287701 + ], + [ + 12.4415053, + 51.260424401 + ], + [ + 12.4418386, + 51.260563401 + ], + [ + 12.4422685, + 51.260735701 + ], + [ + 12.442707, + 51.260905501 + ], + [ + 12.4434317, + 51.261167401 + ], + [ + 12.443681, + 51.261253801 + ], + [ + 12.4440607, + 51.261375901 + ], + [ + 12.4445263, + 51.261519801 + ], + [ + 12.4450712, + 51.261687301 + ], + [ + 12.4457196, + 51.261862201 + ], + [ + 12.4460199, + 51.261943001 + ], + [ + 12.4466952, + 51.262107501 + ], + [ + 12.447023, + 51.262182901 + ], + [ + 12.4475064, + 51.262284401 + ], + [ + 12.4480368, + 51.262389001 + ], + [ + 12.4485689, + 51.262484401 + ], + [ + 12.4489868, + 51.262553501 + ], + [ + 12.4495395, + 51.262637901 + ], + [ + 12.4504776, + 51.262763201 + ], + [ + 12.4509146, + 51.262806401 + ], + [ + 12.451275, + 51.262841201 + ], + [ + 12.4516649, + 51.262877401 + ], + [ + 12.4519741, + 51.262904301 + ], + [ + 12.452341, + 51.262930901 + ], + [ + 12.4530703, + 51.262970801 + ], + [ + 12.4538506, + 51.263002301 + ], + [ + 12.4542127, + 51.263010701 + ], + [ + 12.4546551, + 51.263014101 + ], + [ + 12.4554768, + 51.263008701 + ], + [ + 12.4556938, + 51.263003901 + ], + [ + 12.4560685, + 51.262993701 + ], + [ + 12.4565841, + 51.262969001 + ], + [ + 12.4570821, + 51.262941901 + ], + [ + 12.4576114, + 51.262902301 + ], + [ + 12.4580434, + 51.262868001 + ], + [ + 12.4584242, + 51.262836601 + ], + [ + 12.4592013, + 51.262749801 + ], + [ + 12.4601088, + 51.262646301 + ], + [ + 12.4606229, + 51.262587301 + ], + [ + 12.4609777, + 51.262546601 + ], + [ + 12.4614604, + 51.262487901 + ], + [ + 12.4626219, + 51.262348701 + ], + [ + 12.4626896, + 51.262341001 + ], + [ + 12.4630003, + 51.262309101 + ], + [ + 12.4632567, + 51.262282401 + ], + [ + 12.4637713, + 51.262235001 + ], + [ + 12.4640882, + 51.262206701 + ], + [ + 12.464228214, + 51.262196243 + ] + ] + } + }, + { + "identifier": "2026-017817--vi-bs.2026-04-10_09-00-00-000.devi-zus.2026-04-10_08-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.247005633716824,12.351271226487649,51.24698258845875,12.349839977873156", + "point": "51.247005633716824,12.351271226487649", + "startLcPosition": "46", + "impact": { + "lower": "Neue Harth", + "upper": "Leipzig-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leipzig -> Halle", + "title": "A38 | Leipzig-S\u00fcd - Neue Harth", + "coordinate": { + "lat": 51.247005633716824, + "long": 12.351271226487649 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "", + "A38: Leipzig -> Halle, zwischen 2.9 km hinter AK Leipzig-S\u00fcd und 3.2 km vor AS Neue Harth", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A38 Beseitigung Unfallfolgen Nr 78" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.351271226, + 51.247005634 + ], + [ + 12.3498726, + 51.246983101 + ], + [ + 12.349839978, + 51.246982588 + ] + ] + } + }, + { + "identifier": "2026-017817--vi-bs.2026-04-10_08-00-00-000.devi-zus.2026-04-10_08-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.24798900359297,12.380595924216005,51.24788036422769,12.379160281146108", + "point": "51.24798900359297,12.380595924216005", + "startLcPosition": "46", + "impact": { + "lower": "Neue Harth", + "upper": "Leipzig-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leipzig -> Halle", + "title": "A38 | Leipzig-S\u00fcd - Neue Harth", + "coordinate": { + "lat": 51.24798900359297, + "long": 12.380595924216005 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 15:00 Uhr", + "", + "A38: Leipzig -> Halle, zwischen 0.8 km hinter AK Leipzig-S\u00fcd und 5.2 km vor AS Neue Harth", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A38 Beseitigung Unfallfolgen Nr 78" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.380595924, + 51.247989004 + ], + [ + 12.379160281, + 51.247880364 + ] + ] + } + }, + { + "identifier": "2024-002466--vi-fbm.2026-02-03_08-00-00-000.devi-zus.2025-04-14_08-00-00-000.de37", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.251301914605946,12.308150217769724,51.23953795349632,12.143203618992073", + "point": "51.251301914605946,12.308150217769724", + "startLcPosition": "46", + "impact": { + "lower": "L\u00fctzen", + "upper": "Leipzig-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Leipzig -> G\u00f6ttingen", + "title": "A38 | Leipzig-S\u00fcd - L\u00fctzen", + "startTimestamp": "2026-02-03T08:00:00+01:00", + "coordinate": { + "lat": 51.251301914605946, + "long": 12.308150217769724 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.02.26 um 08:00 Uhr", + "Ende: 15.12.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.26)", + "", + "A38: Leipzig -> G\u00f6ttingen, zwischen 6.0 km hinter AK Leipzig-S\u00fcd und 0.4 km vor AS L\u00fctzen", + "", + "L\u00e4nge: 12.98 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A38 Erneuerung der Fahrbahn, Kr. Rippachtal, 26-03-005" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.308150218, + 51.251301915 + ], + [ + 12.3070139, + 51.251699501 + ], + [ + 12.3067596, + 51.251787701 + ], + [ + 12.3048942, + 51.252506001 + ], + [ + 12.3031866, + 51.253215101 + ], + [ + 12.3027669, + 51.253395201 + ], + [ + 12.3020904, + 51.253695601 + ], + [ + 12.3015517, + 51.253943601 + ], + [ + 12.3004771, + 51.254449201 + ], + [ + 12.2980284, + 51.255673601 + ], + [ + 12.2964402, + 51.256470501 + ], + [ + 12.2947139, + 51.257336801 + ], + [ + 12.2924096, + 51.258474201 + ], + [ + 12.2910823, + 51.259087901 + ], + [ + 12.2907212, + 51.259245601 + ], + [ + 12.2892227, + 51.259867901 + ], + [ + 12.2875894, + 51.260456101 + ], + [ + 12.2855536, + 51.261099701 + ], + [ + 12.2844522, + 51.261402501 + ], + [ + 12.284057, + 51.261505601 + ], + [ + 12.2828642, + 51.261798001 + ], + [ + 12.2816703, + 51.262059201 + ], + [ + 12.2804303, + 51.262300501 + ], + [ + 12.2791812, + 51.262513801 + ], + [ + 12.2777672, + 51.262717901 + ], + [ + 12.2771612, + 51.262792201 + ], + [ + 12.2760603, + 51.262913501 + ], + [ + 12.2749667, + 51.263012901 + ], + [ + 12.2739565, + 51.263085701 + ], + [ + 12.272374, + 51.263158301 + ], + [ + 12.2713637, + 51.263186201 + ], + [ + 12.2705668, + 51.263194501 + ], + [ + 12.2703529, + 51.263195601 + ], + [ + 12.2694872, + 51.263186301 + ], + [ + 12.2687284, + 51.263169601 + ], + [ + 12.2675434, + 51.263122901 + ], + [ + 12.2667662, + 51.263077701 + ], + [ + 12.2652324, + 51.262958701 + ], + [ + 12.2641347, + 51.262847901 + ], + [ + 12.2634822, + 51.262770401 + ], + [ + 12.262883, + 51.262693901 + ], + [ + 12.2614602, + 51.262482201 + ], + [ + 12.2606573, + 51.262344601 + ], + [ + 12.2602174, + 51.262266801 + ], + [ + 12.258663, + 51.261952901 + ], + [ + 12.2576302, + 51.261718501 + ], + [ + 12.2566088, + 51.261461901 + ], + [ + 12.2563602, + 51.261396001 + ], + [ + 12.254722, + 51.260923501 + ], + [ + 12.2529015, + 51.260332001 + ], + [ + 12.2521994, + 51.260079501 + ], + [ + 12.251512, + 51.259817201 + ], + [ + 12.2502226, + 51.259294001 + ], + [ + 12.2483477, + 51.258449701 + ], + [ + 12.2467217, + 51.257673801 + ], + [ + 12.2451165, + 51.256866401 + ], + [ + 12.2445156, + 51.256560501 + ], + [ + 12.2411883, + 51.254862001 + ], + [ + 12.2389972, + 51.253742701 + ], + [ + 12.2334317, + 51.250900301 + ], + [ + 12.2316518, + 51.249991201 + ], + [ + 12.2279053, + 51.248076201 + ], + [ + 12.2258481, + 51.247019501 + ], + [ + 12.2226955, + 51.245416601 + ], + [ + 12.2222981, + 51.245212801 + ], + [ + 12.220686, + 51.244389401 + ], + [ + 12.2168049, + 51.242405301 + ], + [ + 12.2152457, + 51.241608301 + ], + [ + 12.2129475, + 51.240431201 + ], + [ + 12.2112967, + 51.239596501 + ], + [ + 12.2091911, + 51.238599201 + ], + [ + 12.2076879, + 51.237957501 + ], + [ + 12.2061151, + 51.237373501 + ], + [ + 12.2052913, + 51.237103101 + ], + [ + 12.2048736, + 51.236970801 + ], + [ + 12.2036019, + 51.236603801 + ], + [ + 12.2020325, + 51.236222701 + ], + [ + 12.2004674, + 51.235890301 + ], + [ + 12.1988004, + 51.235619801 + ], + [ + 12.1971255, + 51.235400801 + ], + [ + 12.1953784, + 51.235240701 + ], + [ + 12.193651, + 51.235166301 + ], + [ + 12.1917771, + 51.235159201 + ], + [ + 12.1899744, + 51.235220801 + ], + [ + 12.1874071, + 51.235408601 + ], + [ + 12.1858521, + 51.235619801 + ], + [ + 12.1843106, + 51.235876101 + ], + [ + 12.1825664, + 51.236232801 + ], + [ + 12.18086, + 51.236661701 + ], + [ + 12.174881, + 51.238182201 + ], + [ + 12.1731989, + 51.238603501 + ], + [ + 12.1718472, + 51.238918301 + ], + [ + 12.170428, + 51.239234701 + ], + [ + 12.1692978, + 51.239462701 + ], + [ + 12.1678782, + 51.239734901 + ], + [ + 12.1669169, + 51.239894101 + ], + [ + 12.166041, + 51.240023801 + ], + [ + 12.1654707, + 51.240108901 + ], + [ + 12.1647993, + 51.240196001 + ], + [ + 12.1637346, + 51.240325601 + ], + [ + 12.161943, + 51.240494301 + ], + [ + 12.1606794, + 51.240583901 + ], + [ + 12.1600849, + 51.240621801 + ], + [ + 12.1593277, + 51.240661601 + ], + [ + 12.1582609, + 51.240699001 + ], + [ + 12.1580049, + 51.240703401 + ], + [ + 12.1566763, + 51.240723701 + ], + [ + 12.155421, + 51.240715901 + ], + [ + 12.1534964, + 51.240662601 + ], + [ + 12.1515662, + 51.240557801 + ], + [ + 12.1488098, + 51.240317801 + ], + [ + 12.1445344, + 51.239777001 + ], + [ + 12.143203619, + 51.239537953 + ] + ] + } + }, + { + "identifier": "2024-000823--vi-bs.2026-04-07_19-00-00-000.devi-zus.2027-03-01_00-00-00-000_002.de41", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26230950180659,12.464250699180583,51.247951370818484,12.321648084218921", + "point": "51.26230950180659,12.464250699180583", + "startLcPosition": "47", + "impact": { + "lower": "Neue Harth", + "upper": "Leipzig-S\u00fcdost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Leipzig -> Halle", + "title": "A38 | Leipzig-S\u00fcdost - Neue Harth", + "startTimestamp": "2026-04-07T19:00:00+02:00", + "coordinate": { + "lat": 51.26230950180659, + "long": 12.464250699180583 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 19:00 Uhr", + "Ende: 06.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.12.26)", + "", + "A38: Leipzig -> Halle, zwischen 0.2 km hinter AS Leipzig-S\u00fcdost und 1.2 km vor AS Neue Harth", + "", + "L\u00e4nge: 10.61 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "FBE A38 Km 193,58 - 208,32 Richtungsfahrbahn Dresden" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.464250699, + 51.262309502 + ], + [ + 12.4638007, + 51.262346601 + ], + [ + 12.4635485, + 51.262366201 + ], + [ + 12.4632911, + 51.262392001 + ], + [ + 12.462776, + 51.262444101 + ], + [ + 12.4620217, + 51.262534301 + ], + [ + 12.4613142, + 51.262612501 + ], + [ + 12.4608072, + 51.262685001 + ], + [ + 12.4594685, + 51.262838801 + ], + [ + 12.4589448, + 51.262894501 + ], + [ + 12.4583357, + 51.262959101 + ], + [ + 12.4575784, + 51.263020601 + ], + [ + 12.4571795, + 51.263049601 + ], + [ + 12.456596, + 51.263082301 + ], + [ + 12.4558629, + 51.263113401 + ], + [ + 12.4556764, + 51.263119101 + ], + [ + 12.4553246, + 51.263124601 + ], + [ + 12.4547558, + 51.263127701 + ], + [ + 12.4542283, + 51.263122801 + ], + [ + 12.4537709, + 51.263111801 + ], + [ + 12.4529935, + 51.263082901 + ], + [ + 12.4522056, + 51.263034701 + ], + [ + 12.4518599, + 51.263009001 + ], + [ + 12.4514005, + 51.262966401 + ], + [ + 12.4509243, + 51.262924001 + ], + [ + 12.4502985, + 51.262857701 + ], + [ + 12.4495578, + 51.262755201 + ], + [ + 12.4489173, + 51.262654301 + ], + [ + 12.4484053, + 51.262573901 + ], + [ + 12.4478111, + 51.262460201 + ], + [ + 12.4471145, + 51.262319001 + ], + [ + 12.4466073, + 51.262200001 + ], + [ + 12.4460624, + 51.262072401 + ], + [ + 12.4456347, + 51.261962301 + ], + [ + 12.4449456, + 51.261773701 + ], + [ + 12.444451, + 51.261625601 + ], + [ + 12.4439186, + 51.261457001 + ], + [ + 12.4436858, + 51.261383201 + ], + [ + 12.4432965, + 51.261252001 + ], + [ + 12.4426292, + 51.261010801 + ], + [ + 12.4421834, + 51.260840101 + ], + [ + 12.4420305, + 51.260781301 + ], + [ + 12.441733, + 51.260657801 + ], + [ + 12.4414164, + 51.260522901 + ], + [ + 12.4411014, + 51.260382501 + ], + [ + 12.4406097, + 51.260155301 + ], + [ + 12.4401924, + 51.259957001 + ], + [ + 12.4396562, + 51.259685601 + ], + [ + 12.4392552, + 51.259472801 + ], + [ + 12.4389863, + 51.259322601 + ], + [ + 12.4386649, + 51.259140201 + ], + [ + 12.4382592, + 51.258899601 + ], + [ + 12.4377268, + 51.258559801 + ], + [ + 12.4371936, + 51.258204301 + ], + [ + 12.4366821, + 51.257835501 + ], + [ + 12.436619, + 51.257786501 + ], + [ + 12.436467, + 51.257668601 + ], + [ + 12.4361859, + 51.257450401 + ], + [ + 12.4360168, + 51.257313701 + ], + [ + 12.4358139, + 51.257152301 + ], + [ + 12.4355084, + 51.256877001 + ], + [ + 12.4352078, + 51.256615401 + ], + [ + 12.4348594, + 51.256290501 + ], + [ + 12.4344084, + 51.255863901 + ], + [ + 12.4342529, + 51.255712001 + ], + [ + 12.4338184, + 51.255285301 + ], + [ + 12.4333744, + 51.254852601 + ], + [ + 12.4329417, + 51.254444401 + ], + [ + 12.4326653, + 51.254198501 + ], + [ + 12.4322877, + 51.253878001 + ], + [ + 12.4317096, + 51.253406201 + ], + [ + 12.4312097, + 51.253028901 + ], + [ + 12.4308981, + 51.252805401 + ], + [ + 12.4305477, + 51.252563401 + ], + [ + 12.4300783, + 51.252255101 + ], + [ + 12.4296907, + 51.252012401 + ], + [ + 12.4293222, + 51.251793701 + ], + [ + 12.4290347, + 51.251630301 + ], + [ + 12.4286699, + 51.251426501 + ], + [ + 12.4279366, + 51.251045001 + ], + [ + 12.4276197, + 51.250888101 + ], + [ + 12.4272571, + 51.250715601 + ], + [ + 12.4266935, + 51.250459401 + ], + [ + 12.4262828, + 51.250282201 + ], + [ + 12.4258435, + 51.250103001 + ], + [ + 12.4254972, + 51.249966701 + ], + [ + 12.4251692, + 51.249845701 + ], + [ + 12.4247986, + 51.249715001 + ], + [ + 12.4242576, + 51.249540801 + ], + [ + 12.4234633, + 51.249283701 + ], + [ + 12.4226605, + 51.249030001 + ], + [ + 12.4218856, + 51.248814701 + ], + [ + 12.421049, + 51.248620101 + ], + [ + 12.4202433, + 51.248439801 + ], + [ + 12.419225, + 51.248253501 + ], + [ + 12.4181999, + 51.248088901 + ], + [ + 12.4172021, + 51.247958601 + ], + [ + 12.4162224, + 51.247858501 + ], + [ + 12.4147114, + 51.247758401 + ], + [ + 12.4142044, + 51.247735401 + ], + [ + 12.4139339, + 51.247727101 + ], + [ + 12.413141, + 51.247711901 + ], + [ + 12.41189, + 51.247716601 + ], + [ + 12.4105642, + 51.247740601 + ], + [ + 12.40854, + 51.247792701 + ], + [ + 12.4070306, + 51.247829701 + ], + [ + 12.4059389, + 51.247856301 + ], + [ + 12.4050955, + 51.247876001 + ], + [ + 12.4012805, + 51.247974001 + ], + [ + 12.4006749, + 51.247993901 + ], + [ + 12.4001426, + 51.248011101 + ], + [ + 12.3992366, + 51.248039201 + ], + [ + 12.39819, + 51.248083501 + ], + [ + 12.3963448, + 51.248185501 + ], + [ + 12.3951238, + 51.248244501 + ], + [ + 12.3941055, + 51.248281901 + ], + [ + 12.3932835, + 51.248307501 + ], + [ + 12.3930053, + 51.248313201 + ], + [ + 12.3916287, + 51.248341201 + ], + [ + 12.3892052, + 51.248351201 + ], + [ + 12.3878775, + 51.248337001 + ], + [ + 12.3864046, + 51.248304101 + ], + [ + 12.3858387, + 51.248288301 + ], + [ + 12.3852283, + 51.248266901 + ], + [ + 12.3845822, + 51.248240601 + ], + [ + 12.3840647, + 51.248217001 + ], + [ + 12.3818775, + 51.248077501 + ], + [ + 12.3812913, + 51.248036101 + ], + [ + 12.3807373, + 51.247999701 + ], + [ + 12.3775581, + 51.247759101 + ], + [ + 12.373825, + 51.247512301 + ], + [ + 12.3735819, + 51.247498301 + ], + [ + 12.3713625, + 51.247389501 + ], + [ + 12.3706631, + 51.247361901 + ], + [ + 12.3695685, + 51.247321001 + ], + [ + 12.3684159, + 51.247288201 + ], + [ + 12.3661216, + 51.247232701 + ], + [ + 12.3642017, + 51.247211401 + ], + [ + 12.3612495, + 51.247178701 + ], + [ + 12.3602022, + 51.247163701 + ], + [ + 12.3579995, + 51.247114301 + ], + [ + 12.3570715, + 51.247098901 + ], + [ + 12.3498726, + 51.246983101 + ], + [ + 12.3427125, + 51.246870401 + ], + [ + 12.3406623, + 51.246838401 + ], + [ + 12.3392232, + 51.246820801 + ], + [ + 12.3378461, + 51.246809401 + ], + [ + 12.3367986, + 51.246798801 + ], + [ + 12.3356751, + 51.246794701 + ], + [ + 12.3347782, + 51.246791501 + ], + [ + 12.3329085, + 51.246842301 + ], + [ + 12.3311665, + 51.246922101 + ], + [ + 12.329433, + 51.247032701 + ], + [ + 12.3284068, + 51.247118901 + ], + [ + 12.3274111, + 51.247206001 + ], + [ + 12.3254287, + 51.247410601 + ], + [ + 12.3229486, + 51.247746501 + ], + [ + 12.321648084, + 51.247951371 + ] + ] + } + }, + { + "identifier": "2024-000823--vi-fbm.2026-04-07_20-00-00-000.devi-zus.2027-03-01_00-00-00-000_002.de61", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.262297796598425,12.464392674669412,51.24691845995676,12.33124599348514", + "point": "51.262297796598425,12.464392674669412", + "startLcPosition": "47", + "impact": { + "lower": "Neue Harth", + "upper": "Leipzig-S\u00fcdost", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leipzig -> Halle", + "title": "A38 | Leipzig-S\u00fcdost - Neue Harth", + "coordinate": { + "lat": 51.262297796598425, + "long": 12.464392674669412 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 19:00 bis zum 11.04.26 06:00 Uhr.", + "13.04.26 20:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A38: Leipzig -> Halle, zwischen 0.2 km hinter AS Leipzig-S\u00fcdost und 1.9 km vor AS Neue Harth", + "", + "L\u00e4nge: 9.94 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "FBE A38 Km 193,58 - 208,32 Richtungsfahrbahn Dresden" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.464392675, + 51.262297797 + ], + [ + 12.4638007, + 51.262346601 + ], + [ + 12.4635485, + 51.262366201 + ], + [ + 12.4632911, + 51.262392001 + ], + [ + 12.462776, + 51.262444101 + ], + [ + 12.4620217, + 51.262534301 + ], + [ + 12.4613142, + 51.262612501 + ], + [ + 12.4608072, + 51.262685001 + ], + [ + 12.4594685, + 51.262838801 + ], + [ + 12.4589448, + 51.262894501 + ], + [ + 12.4583357, + 51.262959101 + ], + [ + 12.4575784, + 51.263020601 + ], + [ + 12.4571795, + 51.263049601 + ], + [ + 12.456596, + 51.263082301 + ], + [ + 12.4558629, + 51.263113401 + ], + [ + 12.4556764, + 51.263119101 + ], + [ + 12.4553246, + 51.263124601 + ], + [ + 12.4547558, + 51.263127701 + ], + [ + 12.4542283, + 51.263122801 + ], + [ + 12.4537709, + 51.263111801 + ], + [ + 12.4529935, + 51.263082901 + ], + [ + 12.4522056, + 51.263034701 + ], + [ + 12.4518599, + 51.263009001 + ], + [ + 12.4514005, + 51.262966401 + ], + [ + 12.4509243, + 51.262924001 + ], + [ + 12.4502985, + 51.262857701 + ], + [ + 12.4495578, + 51.262755201 + ], + [ + 12.4489173, + 51.262654301 + ], + [ + 12.4484053, + 51.262573901 + ], + [ + 12.4478111, + 51.262460201 + ], + [ + 12.4471145, + 51.262319001 + ], + [ + 12.4466073, + 51.262200001 + ], + [ + 12.4460624, + 51.262072401 + ], + [ + 12.4456347, + 51.261962301 + ], + [ + 12.4449456, + 51.261773701 + ], + [ + 12.444451, + 51.261625601 + ], + [ + 12.4439186, + 51.261457001 + ], + [ + 12.4436858, + 51.261383201 + ], + [ + 12.4432965, + 51.261252001 + ], + [ + 12.4426292, + 51.261010801 + ], + [ + 12.4421834, + 51.260840101 + ], + [ + 12.4420305, + 51.260781301 + ], + [ + 12.441733, + 51.260657801 + ], + [ + 12.4414164, + 51.260522901 + ], + [ + 12.4411014, + 51.260382501 + ], + [ + 12.4406097, + 51.260155301 + ], + [ + 12.4401924, + 51.259957001 + ], + [ + 12.4396562, + 51.259685601 + ], + [ + 12.4392552, + 51.259472801 + ], + [ + 12.4389863, + 51.259322601 + ], + [ + 12.4386649, + 51.259140201 + ], + [ + 12.4382592, + 51.258899601 + ], + [ + 12.4377268, + 51.258559801 + ], + [ + 12.4371936, + 51.258204301 + ], + [ + 12.4366821, + 51.257835501 + ], + [ + 12.436619, + 51.257786501 + ], + [ + 12.436467, + 51.257668601 + ], + [ + 12.4361859, + 51.257450401 + ], + [ + 12.4360168, + 51.257313701 + ], + [ + 12.4358139, + 51.257152301 + ], + [ + 12.4355084, + 51.256877001 + ], + [ + 12.4352078, + 51.256615401 + ], + [ + 12.4348594, + 51.256290501 + ], + [ + 12.4344084, + 51.255863901 + ], + [ + 12.4342529, + 51.255712001 + ], + [ + 12.4338184, + 51.255285301 + ], + [ + 12.4333744, + 51.254852601 + ], + [ + 12.4329417, + 51.254444401 + ], + [ + 12.4326653, + 51.254198501 + ], + [ + 12.4322877, + 51.253878001 + ], + [ + 12.4317096, + 51.253406201 + ], + [ + 12.4312097, + 51.253028901 + ], + [ + 12.4308981, + 51.252805401 + ], + [ + 12.4305477, + 51.252563401 + ], + [ + 12.4300783, + 51.252255101 + ], + [ + 12.4296907, + 51.252012401 + ], + [ + 12.4293222, + 51.251793701 + ], + [ + 12.4290347, + 51.251630301 + ], + [ + 12.4286699, + 51.251426501 + ], + [ + 12.4279366, + 51.251045001 + ], + [ + 12.4276197, + 51.250888101 + ], + [ + 12.4272571, + 51.250715601 + ], + [ + 12.4266935, + 51.250459401 + ], + [ + 12.4262828, + 51.250282201 + ], + [ + 12.4258435, + 51.250103001 + ], + [ + 12.4254972, + 51.249966701 + ], + [ + 12.4251692, + 51.249845701 + ], + [ + 12.4247986, + 51.249715001 + ], + [ + 12.4242576, + 51.249540801 + ], + [ + 12.4234633, + 51.249283701 + ], + [ + 12.4226605, + 51.249030001 + ], + [ + 12.4218856, + 51.248814701 + ], + [ + 12.421049, + 51.248620101 + ], + [ + 12.4202433, + 51.248439801 + ], + [ + 12.419225, + 51.248253501 + ], + [ + 12.4181999, + 51.248088901 + ], + [ + 12.4172021, + 51.247958601 + ], + [ + 12.4162224, + 51.247858501 + ], + [ + 12.4147114, + 51.247758401 + ], + [ + 12.4142044, + 51.247735401 + ], + [ + 12.4139339, + 51.247727101 + ], + [ + 12.413141, + 51.247711901 + ], + [ + 12.41189, + 51.247716601 + ], + [ + 12.4105642, + 51.247740601 + ], + [ + 12.40854, + 51.247792701 + ], + [ + 12.4070306, + 51.247829701 + ], + [ + 12.4059389, + 51.247856301 + ], + [ + 12.4050955, + 51.247876001 + ], + [ + 12.4012805, + 51.247974001 + ], + [ + 12.4006749, + 51.247993901 + ], + [ + 12.4001426, + 51.248011101 + ], + [ + 12.3992366, + 51.248039201 + ], + [ + 12.39819, + 51.248083501 + ], + [ + 12.3963448, + 51.248185501 + ], + [ + 12.3951238, + 51.248244501 + ], + [ + 12.3941055, + 51.248281901 + ], + [ + 12.3932835, + 51.248307501 + ], + [ + 12.3930053, + 51.248313201 + ], + [ + 12.3916287, + 51.248341201 + ], + [ + 12.3892052, + 51.248351201 + ], + [ + 12.3878775, + 51.248337001 + ], + [ + 12.3864046, + 51.248304101 + ], + [ + 12.3858387, + 51.248288301 + ], + [ + 12.3852283, + 51.248266901 + ], + [ + 12.3845822, + 51.248240601 + ], + [ + 12.3840647, + 51.248217001 + ], + [ + 12.3818775, + 51.248077501 + ], + [ + 12.3812913, + 51.248036101 + ], + [ + 12.3807373, + 51.247999701 + ], + [ + 12.3775581, + 51.247759101 + ], + [ + 12.373825, + 51.247512301 + ], + [ + 12.3735819, + 51.247498301 + ], + [ + 12.3713625, + 51.247389501 + ], + [ + 12.3706631, + 51.247361901 + ], + [ + 12.3695685, + 51.247321001 + ], + [ + 12.3684159, + 51.247288201 + ], + [ + 12.3661216, + 51.247232701 + ], + [ + 12.3642017, + 51.247211401 + ], + [ + 12.3612495, + 51.247178701 + ], + [ + 12.3602022, + 51.247163701 + ], + [ + 12.3579995, + 51.247114301 + ], + [ + 12.3570715, + 51.247098901 + ], + [ + 12.3498726, + 51.246983101 + ], + [ + 12.3427125, + 51.246870401 + ], + [ + 12.3406623, + 51.246838401 + ], + [ + 12.3392232, + 51.246820801 + ], + [ + 12.3378461, + 51.246809401 + ], + [ + 12.3367986, + 51.246798801 + ], + [ + 12.3356751, + 51.246794701 + ], + [ + 12.3347782, + 51.246791501 + ], + [ + 12.3329085, + 51.246842301 + ], + [ + 12.331245993, + 51.24691846 + ] + ] + } + }, + { + "identifier": "2024-000823--vi-bs.2026-04-07_19-00-00-000.devi-zus.2027-03-01_00-00-00-000_002.de43", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.248452891475004,12.387674045013695,51.24824896616229,12.384641153851769", + "point": "51.248452891475004,12.387674045013695", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Leipzig-S\u00fcd (aus Richtung Leipzig-S\u00fcdost)", + "title": "FBE A38 Km 193,58 - 208,32 Richtungsfahrbahn Dresden", + "startTimestamp": "2026-04-07T19:00:00+02:00", + "coordinate": { + "lat": 51.248452891475004, + "long": 12.387674045013695 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 19:00 Uhr", + "Ende: 06.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.12.26)", + "", + "Auffahrt auf die A38: AK Leipzig-S\u00fcd (aus Richtung Leipzig-S\u00fcdost)", + "", + "L\u00e4nge: 0.21 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "FBE A38 Km 193,58 - 208,32 Richtungsfahrbahn Dresden" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.387674045, + 51.248452891 + ], + [ + 12.3875847, + 51.248452801 + ], + [ + 12.3874512, + 51.248449201 + ], + [ + 12.3870081, + 51.248437401 + ], + [ + 12.3862302, + 51.248419901 + ], + [ + 12.3855132, + 51.248372701 + ], + [ + 12.384641154, + 51.248248966 + ] + ] + } + } + ] + }, + "A39": { + "roadworks": [ + { + "identifier": "2023-005512--vi-bs.2026-03-30_09-00-00-000.devi-zus.2024-02-26_07-00-00-000_027.f.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.10441188845514,10.18360794166082,52.11972704139415,10.218301426186994", + "point": "52.10441188845514,10.18360794166082", + "startLcPosition": "0", + "impact": { + "lower": "Westerlinde", + "upper": "Salzgitter", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | Salzgitter - Westerlinde", + "startTimestamp": "2026-03-30T09:00:00+02:00", + "coordinate": { + "lat": 52.10441188845514, + "long": 10.18360794166082 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 09:00 Uhr", + "Ende: 13.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.04.27)", + "", + "A39: Salzgitter -> Braunschweig, zwischen 1.9 km hinter AD Salzgitter und 0.5 km vor AS Westerlinde", + "", + "L\u00e4nge: 3.06 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A39 Br\u00fcckenneubau Z1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.183607942, + 52.104411888 + ], + [ + 10.1836941, + 52.104582001 + ], + [ + 10.1840299, + 52.105139801 + ], + [ + 10.1842388, + 52.105469401 + ], + [ + 10.1844567, + 52.105787801 + ], + [ + 10.1845757, + 52.105943101 + ], + [ + 10.1848427, + 52.106293101 + ], + [ + 10.1852197, + 52.106763801 + ], + [ + 10.1856058, + 52.107198201 + ], + [ + 10.186248, + 52.107859601 + ], + [ + 10.1867233, + 52.108294301 + ], + [ + 10.1871645, + 52.108677801 + ], + [ + 10.1876441, + 52.109046701 + ], + [ + 10.1879737, + 52.109292401 + ], + [ + 10.1884957, + 52.109659401 + ], + [ + 10.1891899, + 52.110121801 + ], + [ + 10.1899629, + 52.110597001 + ], + [ + 10.1910751, + 52.111236501 + ], + [ + 10.1925017, + 52.112000601 + ], + [ + 10.1929803, + 52.112247501 + ], + [ + 10.1946404, + 52.113086001 + ], + [ + 10.1980539, + 52.114793101 + ], + [ + 10.1990788, + 52.115296701 + ], + [ + 10.2001168, + 52.115781101 + ], + [ + 10.2009754, + 52.116144601 + ], + [ + 10.2018864, + 52.116506201 + ], + [ + 10.202798, + 52.116823601 + ], + [ + 10.2035835, + 52.117073001 + ], + [ + 10.2044348, + 52.117316201 + ], + [ + 10.2052291, + 52.117517001 + ], + [ + 10.2060225, + 52.117698201 + ], + [ + 10.2069046, + 52.117883501 + ], + [ + 10.2079027, + 52.118077401 + ], + [ + 10.2086282, + 52.118210901 + ], + [ + 10.2121055, + 52.118845901 + ], + [ + 10.2146491, + 52.119305501 + ], + [ + 10.2156469, + 52.119475401 + ], + [ + 10.216301, + 52.119569501 + ], + [ + 10.2168064, + 52.119623201 + ], + [ + 10.217313, + 52.119669601 + ], + [ + 10.2177604, + 52.119700101 + ], + [ + 10.2181772, + 52.119723001 + ], + [ + 10.218301426, + 52.119727041 + ] + ] + } + }, + { + "identifier": "2023-005512--vi-bs.2026-03-30_09-00-00-000.devi-zus.2024-02-26_07-00-00-000_027.f.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.09185822548669,10.18243323613717,52.10441188845514,10.18360794166082", + "point": "52.09185822548669,10.18243323613717", + "startLcPosition": "0", + "impact": { + "lower": "Baddeckenstedt", + "upper": "Salzgitter", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | Salzgitter - Baddeckenstedt", + "startTimestamp": "2026-03-30T09:00:00+02:00", + "coordinate": { + "lat": 52.09185822548669, + "long": 10.18243323613717 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 09:00 Uhr", + "Ende: 13.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.04.27)", + "", + "A39: Salzgitter -> Braunschweig, zwischen 0.5 km hinter AD Salzgitter und 0.2 km vor AS Baddeckenstedt", + "", + "L\u00e4nge: 1.41 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A39 Br\u00fcckenneubau Z1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.182433236, + 52.091858225 + ], + [ + 10.1823856, + 52.093632901 + ], + [ + 10.1823199, + 52.095673901 + ], + [ + 10.1822844, + 52.097848201 + ], + [ + 10.1822931, + 52.098532701 + ], + [ + 10.1823137, + 52.099158101 + ], + [ + 10.182344, + 52.099644901 + ], + [ + 10.1823869, + 52.100150701 + ], + [ + 10.1824621, + 52.100649201 + ], + [ + 10.1825107, + 52.101061401 + ], + [ + 10.1825765, + 52.101472701 + ], + [ + 10.1826593, + 52.101882901 + ], + [ + 10.1827591, + 52.102291601 + ], + [ + 10.1828759, + 52.102698601 + ], + [ + 10.1830901, + 52.103270701 + ], + [ + 10.1833498, + 52.103902201 + ], + [ + 10.183607942, + 52.104411888 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de37", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.09102289583512,10.182462024560278,52.093737063404504,10.182382247109338", + "point": "52.09102289583512,10.182462024560278", + "startLcPosition": "0", + "impact": { + "lower": "Baddeckenstedt", + "upper": "Salzgitter", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | Salzgitter - Baddeckenstedt", + "coordinate": { + "lat": 52.09102289583512, + "long": 10.182462024560278 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 08:00 bis 17:00 Uhr", + "20.04.26 von 08:00 bis 17:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 0.4 km hinter AD Salzgitter und 1.4 km vor AS Baddeckenstedt", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.182462025, + 52.091022896 + ], + [ + 10.1824448, + 52.091427401 + ], + [ + 10.1823856, + 52.093632901 + ], + [ + 10.182382247, + 52.093737063 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.09101390956679,10.18246240720899,52.093737063404504,10.182382247109338", + "point": "52.09101390956679,10.18246240720899", + "startLcPosition": "0", + "impact": { + "lower": "Baddeckenstedt", + "upper": "Salzgitter", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | Salzgitter - Baddeckenstedt", + "coordinate": { + "lat": 52.09101390956679, + "long": 10.18246240720899 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 08:00 bis 17:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 0.4 km hinter AD Salzgitter und 1.4 km vor AS Baddeckenstedt", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.182462407, + 52.09101391 + ], + [ + 10.1824448, + 52.091427401 + ], + [ + 10.1823856, + 52.093632901 + ], + [ + 10.182382247, + 52.093737063 + ] + ] + } + }, + { + "identifier": "2023-005512--vi-bs.2026-03-30_09-00-00-000.devi-zus.2024-02-26_07-00-00-000_027.f.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.10444689367286,10.183420962332237,52.09185636739925,10.182248755637405", + "point": "52.10444689367286,10.183420962332237", + "startLcPosition": "1", + "impact": { + "lower": "Salzgitter", + "upper": "Baddeckenstedt", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Braunschweig -> Salzgitter", + "title": "A39 | Baddeckenstedt - Salzgitter", + "startTimestamp": "2026-03-30T09:00:00+02:00", + "coordinate": { + "lat": 52.10444689367286, + "long": 10.183420962332237 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 09:00 Uhr", + "Ende: 13.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.04.27)", + "", + "A39: Braunschweig -> Salzgitter, zwischen 0.2 km hinter AS Baddeckenstedt und 1.0 km vor AD Salzgitter", + "", + "L\u00e4nge: 1.41 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A39 Br\u00fcckenneubau Z1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.183420962, + 52.104446894 + ], + [ + 10.1831675, + 52.103922001 + ], + [ + 10.1829083, + 52.103292501 + ], + [ + 10.1827071, + 52.102723301 + ], + [ + 10.1825808, + 52.102313401 + ], + [ + 10.1824736, + 52.101901601 + ], + [ + 10.1823856, + 52.101487901 + ], + [ + 10.1823169, + 52.101073001 + ], + [ + 10.1822674, + 52.100656901 + ], + [ + 10.1822045, + 52.100172101 + ], + [ + 10.1821629, + 52.099647601 + ], + [ + 10.1821346, + 52.099162901 + ], + [ + 10.1821056, + 52.098537101 + ], + [ + 10.1820972, + 52.097847801 + ], + [ + 10.1821417, + 52.095661001 + ], + [ + 10.182202, + 52.093635801 + ], + [ + 10.182248756, + 52.091856367 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de43", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.096350956623866,10.182127660123902,52.091065110946516,10.182272152375152", + "point": "52.096350956623866,10.182127660123902", + "startLcPosition": "1", + "impact": { + "lower": "Salzgitter", + "upper": "Baddeckenstedt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Salzgitter", + "title": "A39 | Baddeckenstedt - Salzgitter", + "coordinate": { + "lat": 52.096350956623866, + "long": 10.182127660123902 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 08:00 bis 17:00 Uhr", + "20.04.26 von 08:00 bis 17:00 Uhr", + "", + "A39: Braunschweig -> Salzgitter, zwischen 1.1 km hinter AS Baddeckenstedt und 0.9 km vor AD Salzgitter", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.18212766, + 52.096350957 + ], + [ + 10.1821417, + 52.095661001 + ], + [ + 10.182202, + 52.093635801 + ], + [ + 10.1822602, + 52.091420801 + ], + [ + 10.182272152, + 52.091065111 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de39", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.11843090536785,10.20983288314516,52.13504090965026,10.315065874257202", + "point": "52.11843090536785,10.20983288314516", + "startLcPosition": "1", + "impact": { + "lower": "Salzgitter-Lebenstedt-S\u00fcd", + "upper": "Baddeckenstedt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | Baddeckenstedt - Salzgitter-Lebenstedt-S\u00fcd", + "coordinate": { + "lat": 52.11843090536785, + "long": 10.20983288314516 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 08:00 bis 17:00 Uhr", + "20.04.26 von 08:00 bis 17:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 2.3 km hinter AS Baddeckenstedt und 1.4 km vor AS Salzgitter-Lebenstedt-S\u00fcd", + "", + "L\u00e4nge: 8.09 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.209832883, + 52.118430905 + ], + [ + 10.2121055, + 52.118845901 + ], + [ + 10.2146491, + 52.119305501 + ], + [ + 10.2156469, + 52.119475401 + ], + [ + 10.216301, + 52.119569501 + ], + [ + 10.2168064, + 52.119623201 + ], + [ + 10.217313, + 52.119669601 + ], + [ + 10.2177604, + 52.119700101 + ], + [ + 10.2181772, + 52.119723001 + ], + [ + 10.218786, + 52.119742801 + ], + [ + 10.2194867, + 52.119754201 + ], + [ + 10.2205956, + 52.119770201 + ], + [ + 10.2211449, + 52.119782901 + ], + [ + 10.2218236, + 52.119811101 + ], + [ + 10.2225755, + 52.119871701 + ], + [ + 10.223237, + 52.119934401 + ], + [ + 10.2238085, + 52.120013901 + ], + [ + 10.2243343, + 52.120098701 + ], + [ + 10.2251917, + 52.120261801 + ], + [ + 10.2255169, + 52.120329701 + ], + [ + 10.2259568, + 52.120439701 + ], + [ + 10.2264717, + 52.120578401 + ], + [ + 10.2271959, + 52.120794101 + ], + [ + 10.227687, + 52.120960501 + ], + [ + 10.2285227, + 52.121281101 + ], + [ + 10.2292103, + 52.121574801 + ], + [ + 10.2294168, + 52.121675201 + ], + [ + 10.2299318, + 52.121933701 + ], + [ + 10.2305487, + 52.122279601 + ], + [ + 10.231038, + 52.122581501 + ], + [ + 10.2315652, + 52.122943201 + ], + [ + 10.2322322, + 52.123468401 + ], + [ + 10.2325013, + 52.123690901 + ], + [ + 10.2327856, + 52.123952701 + ], + [ + 10.2331209, + 52.124291901 + ], + [ + 10.2333944, + 52.124600101 + ], + [ + 10.2344727, + 52.125979801 + ], + [ + 10.2355318, + 52.127371501 + ], + [ + 10.2367339, + 52.128952001 + ], + [ + 10.2372237, + 52.129572401 + ], + [ + 10.2376029, + 52.129995901 + ], + [ + 10.2379628, + 52.130359901 + ], + [ + 10.2383539, + 52.130735201 + ], + [ + 10.2388287, + 52.131141901 + ], + [ + 10.2393422, + 52.131534901 + ], + [ + 10.2399471, + 52.131958501 + ], + [ + 10.2404661, + 52.132288301 + ], + [ + 10.2411327, + 52.132678001 + ], + [ + 10.2416788, + 52.132968601 + ], + [ + 10.2423738, + 52.133303501 + ], + [ + 10.2430263, + 52.133585201 + ], + [ + 10.2436486, + 52.133832601 + ], + [ + 10.2444929, + 52.134128101 + ], + [ + 10.2452499, + 52.134365601 + ], + [ + 10.2459794, + 52.134564801 + ], + [ + 10.2466253, + 52.134723901 + ], + [ + 10.2480503, + 52.135076101 + ], + [ + 10.2519661, + 52.136021801 + ], + [ + 10.2537609, + 52.136461301 + ], + [ + 10.2546749, + 52.136680901 + ], + [ + 10.2555951, + 52.136896001 + ], + [ + 10.2564868, + 52.137085101 + ], + [ + 10.2572045, + 52.137210401 + ], + [ + 10.2578989, + 52.137308801 + ], + [ + 10.2588413, + 52.137420101 + ], + [ + 10.2595755, + 52.137495201 + ], + [ + 10.2602349, + 52.137543301 + ], + [ + 10.2610863, + 52.137571901 + ], + [ + 10.2618963, + 52.137572901 + ], + [ + 10.2626315, + 52.137557601 + ], + [ + 10.2634091, + 52.137520301 + ], + [ + 10.2641971, + 52.137459301 + ], + [ + 10.2648279, + 52.137399401 + ], + [ + 10.2706397, + 52.136812401 + ], + [ + 10.2779204, + 52.136077601 + ], + [ + 10.280338, + 52.135856901 + ], + [ + 10.2816196, + 52.135753701 + ], + [ + 10.283042, + 52.135655701 + ], + [ + 10.2840577, + 52.135602901 + ], + [ + 10.2856347, + 52.135543401 + ], + [ + 10.2875076, + 52.135508501 + ], + [ + 10.2890452, + 52.135503301 + ], + [ + 10.2911983, + 52.135526201 + ], + [ + 10.2934805, + 52.135566601 + ], + [ + 10.2945191, + 52.135589601 + ], + [ + 10.2970759, + 52.135639001 + ], + [ + 10.2976835, + 52.135641801 + ], + [ + 10.2993855, + 52.135634701 + ], + [ + 10.2999468, + 52.135629901 + ], + [ + 10.3017514, + 52.135582701 + ], + [ + 10.3032295, + 52.135522801 + ], + [ + 10.3062772, + 52.135342601 + ], + [ + 10.3094908, + 52.135119801 + ], + [ + 10.3111427, + 52.135018101 + ], + [ + 10.3123012, + 52.134972501 + ], + [ + 10.3131153, + 52.134964201 + ], + [ + 10.3138077, + 52.134978101 + ], + [ + 10.3144784, + 52.135006301 + ], + [ + 10.3150636, + 52.135040701 + ], + [ + 10.315065874, + 52.13504091 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.11843090536785,10.20983288314516,52.13504090965026,10.315065874257202", + "point": "52.11843090536785,10.20983288314516", + "startLcPosition": "1", + "impact": { + "lower": "Salzgitter-Lebenstedt-S\u00fcd", + "upper": "Baddeckenstedt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | Baddeckenstedt - Salzgitter-Lebenstedt-S\u00fcd", + "coordinate": { + "lat": 52.11843090536785, + "long": 10.20983288314516 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 08:00 bis 17:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 2.3 km hinter AS Baddeckenstedt und 1.4 km vor AS Salzgitter-Lebenstedt-S\u00fcd", + "", + "L\u00e4nge: 8.09 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.209832883, + 52.118430905 + ], + [ + 10.2121055, + 52.118845901 + ], + [ + 10.2146491, + 52.119305501 + ], + [ + 10.2156469, + 52.119475401 + ], + [ + 10.216301, + 52.119569501 + ], + [ + 10.2168064, + 52.119623201 + ], + [ + 10.217313, + 52.119669601 + ], + [ + 10.2177604, + 52.119700101 + ], + [ + 10.2181772, + 52.119723001 + ], + [ + 10.218786, + 52.119742801 + ], + [ + 10.2194867, + 52.119754201 + ], + [ + 10.2205956, + 52.119770201 + ], + [ + 10.2211449, + 52.119782901 + ], + [ + 10.2218236, + 52.119811101 + ], + [ + 10.2225755, + 52.119871701 + ], + [ + 10.223237, + 52.119934401 + ], + [ + 10.2238085, + 52.120013901 + ], + [ + 10.2243343, + 52.120098701 + ], + [ + 10.2251917, + 52.120261801 + ], + [ + 10.2255169, + 52.120329701 + ], + [ + 10.2259568, + 52.120439701 + ], + [ + 10.2264717, + 52.120578401 + ], + [ + 10.2271959, + 52.120794101 + ], + [ + 10.227687, + 52.120960501 + ], + [ + 10.2285227, + 52.121281101 + ], + [ + 10.2292103, + 52.121574801 + ], + [ + 10.2294168, + 52.121675201 + ], + [ + 10.2299318, + 52.121933701 + ], + [ + 10.2305487, + 52.122279601 + ], + [ + 10.231038, + 52.122581501 + ], + [ + 10.2315652, + 52.122943201 + ], + [ + 10.2322322, + 52.123468401 + ], + [ + 10.2325013, + 52.123690901 + ], + [ + 10.2327856, + 52.123952701 + ], + [ + 10.2331209, + 52.124291901 + ], + [ + 10.2333944, + 52.124600101 + ], + [ + 10.2344727, + 52.125979801 + ], + [ + 10.2355318, + 52.127371501 + ], + [ + 10.2367339, + 52.128952001 + ], + [ + 10.2372237, + 52.129572401 + ], + [ + 10.2376029, + 52.129995901 + ], + [ + 10.2379628, + 52.130359901 + ], + [ + 10.2383539, + 52.130735201 + ], + [ + 10.2388287, + 52.131141901 + ], + [ + 10.2393422, + 52.131534901 + ], + [ + 10.2399471, + 52.131958501 + ], + [ + 10.2404661, + 52.132288301 + ], + [ + 10.2411327, + 52.132678001 + ], + [ + 10.2416788, + 52.132968601 + ], + [ + 10.2423738, + 52.133303501 + ], + [ + 10.2430263, + 52.133585201 + ], + [ + 10.2436486, + 52.133832601 + ], + [ + 10.2444929, + 52.134128101 + ], + [ + 10.2452499, + 52.134365601 + ], + [ + 10.2459794, + 52.134564801 + ], + [ + 10.2466253, + 52.134723901 + ], + [ + 10.2480503, + 52.135076101 + ], + [ + 10.2519661, + 52.136021801 + ], + [ + 10.2537609, + 52.136461301 + ], + [ + 10.2546749, + 52.136680901 + ], + [ + 10.2555951, + 52.136896001 + ], + [ + 10.2564868, + 52.137085101 + ], + [ + 10.2572045, + 52.137210401 + ], + [ + 10.2578989, + 52.137308801 + ], + [ + 10.2588413, + 52.137420101 + ], + [ + 10.2595755, + 52.137495201 + ], + [ + 10.2602349, + 52.137543301 + ], + [ + 10.2610863, + 52.137571901 + ], + [ + 10.2618963, + 52.137572901 + ], + [ + 10.2626315, + 52.137557601 + ], + [ + 10.2634091, + 52.137520301 + ], + [ + 10.2641971, + 52.137459301 + ], + [ + 10.2648279, + 52.137399401 + ], + [ + 10.2706397, + 52.136812401 + ], + [ + 10.2779204, + 52.136077601 + ], + [ + 10.280338, + 52.135856901 + ], + [ + 10.2816196, + 52.135753701 + ], + [ + 10.283042, + 52.135655701 + ], + [ + 10.2840577, + 52.135602901 + ], + [ + 10.2856347, + 52.135543401 + ], + [ + 10.2875076, + 52.135508501 + ], + [ + 10.2890452, + 52.135503301 + ], + [ + 10.2911983, + 52.135526201 + ], + [ + 10.2934805, + 52.135566601 + ], + [ + 10.2945191, + 52.135589601 + ], + [ + 10.2970759, + 52.135639001 + ], + [ + 10.2976835, + 52.135641801 + ], + [ + 10.2993855, + 52.135634701 + ], + [ + 10.2999468, + 52.135629901 + ], + [ + 10.3017514, + 52.135582701 + ], + [ + 10.3032295, + 52.135522801 + ], + [ + 10.3062772, + 52.135342601 + ], + [ + 10.3094908, + 52.135119801 + ], + [ + 10.3111427, + 52.135018101 + ], + [ + 10.3123012, + 52.134972501 + ], + [ + 10.3131153, + 52.134964201 + ], + [ + 10.3138077, + 52.134978101 + ], + [ + 10.3144784, + 52.135006301 + ], + [ + 10.3150636, + 52.135040701 + ], + [ + 10.315065874, + 52.13504091 + ] + ] + } + }, + { + "identifier": "2023-005512--vi-bs.2026-03-30_09-00-00-000.devi-zus.2024-02-26_07-00-00-000_027.f.de35", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.11982275400902,10.218292759036764,52.10444689367286,10.183420962332237", + "point": "52.11982275400902,10.218292759036764", + "startLcPosition": "2", + "impact": { + "lower": "Salzgitter", + "upper": "Westerlinde", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Braunschweig -> Salzgitter", + "title": "A39 | Westerlinde - Salzgitter", + "startTimestamp": "2026-03-30T09:00:00+02:00", + "coordinate": { + "lat": 52.11982275400902, + "long": 10.218292759036764 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 09:00 Uhr", + "Ende: 13.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.04.27)", + "", + "A39: Braunschweig -> Salzgitter, zwischen 0.5 km hinter AS Westerlinde und 2.4 km vor AD Salzgitter", + "", + "L\u00e4nge: 3.06 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A39 Br\u00fcckenneubau Z1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.218292759, + 52.119822754 + ], + [ + 10.2181709, + 52.119818401 + ], + [ + 10.2177414, + 52.119797901 + ], + [ + 10.2172941, + 52.119765701 + ], + [ + 10.2167817, + 52.119719901 + ], + [ + 10.2162601, + 52.119662201 + ], + [ + 10.2156002, + 52.119567801 + ], + [ + 10.214597, + 52.119398001 + ], + [ + 10.2120579, + 52.118939801 + ], + [ + 10.2085884, + 52.118299701 + ], + [ + 10.2078506, + 52.118169801 + ], + [ + 10.2068549, + 52.117975401 + ], + [ + 10.2059553, + 52.117787201 + ], + [ + 10.2051731, + 52.117608401 + ], + [ + 10.2043627, + 52.117402401 + ], + [ + 10.2035263, + 52.117165801 + ], + [ + 10.2027241, + 52.116910901 + ], + [ + 10.201808, + 52.116587601 + ], + [ + 10.2008806, + 52.116229601 + ], + [ + 10.200023, + 52.115856201 + ], + [ + 10.1989896, + 52.115375901 + ], + [ + 10.1979649, + 52.114871001 + ], + [ + 10.1945579, + 52.113165101 + ], + [ + 10.1929601, + 52.112361101 + ], + [ + 10.1924661, + 52.112103801 + ], + [ + 10.1909632, + 52.111300601 + ], + [ + 10.1898572, + 52.110668001 + ], + [ + 10.1890761, + 52.110184701 + ], + [ + 10.1883781, + 52.109724601 + ], + [ + 10.1878469, + 52.109348301 + ], + [ + 10.187519, + 52.109106101 + ], + [ + 10.1870548, + 52.108741901 + ], + [ + 10.1865893, + 52.108348101 + ], + [ + 10.18612, + 52.107928101 + ], + [ + 10.1854524, + 52.107252901 + ], + [ + 10.1850991, + 52.106865901 + ], + [ + 10.1847691, + 52.106486401 + ], + [ + 10.1846745, + 52.106367401 + ], + [ + 10.1844022, + 52.106011101 + ], + [ + 10.1842776, + 52.105845701 + ], + [ + 10.1840576, + 52.105526901 + ], + [ + 10.1838333, + 52.105189201 + ], + [ + 10.1834948, + 52.104599801 + ], + [ + 10.183420962, + 52.104446894 + ] + ] + } + }, + { + "identifier": "2023-005512--vi-bs.2025-10-30_13-00-00-000.devi-zus.2024-02-26_07-00-00-000_027.f.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.117362203000184,10.20422059497787,52.09185636739925,10.182248755637405", + "point": "52.117362203000184,10.20422059497787", + "startLcPosition": "2", + "impact": { + "lower": "Salzgitter", + "upper": "Westerlinde", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Braunschweig -> Salzgitter", + "title": "A39 | Westerlinde - Salzgitter", + "startTimestamp": "2025-10-30T13:00:00+01:00", + "coordinate": { + "lat": 52.117362203000184, + "long": 10.20422059497787 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.10.25 um 13:00 Uhr", + "Ende: 19.04.27 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.04.27)", + "", + "A39: Braunschweig -> Salzgitter, zwischen 1.5 km hinter AS Westerlinde und 1.0 km vor AD Salzgitter", + "", + "L\u00e4nge: 3.48 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A39 Br\u00fcckenneubau Z1" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.204220595, + 52.117362203 + ], + [ + 10.2035263, + 52.117165801 + ], + [ + 10.2027241, + 52.116910901 + ], + [ + 10.201808, + 52.116587601 + ], + [ + 10.2008806, + 52.116229601 + ], + [ + 10.200023, + 52.115856201 + ], + [ + 10.1989896, + 52.115375901 + ], + [ + 10.1979649, + 52.114871001 + ], + [ + 10.1945579, + 52.113165101 + ], + [ + 10.1929601, + 52.112361101 + ], + [ + 10.1924661, + 52.112103801 + ], + [ + 10.1909632, + 52.111300601 + ], + [ + 10.1898572, + 52.110668001 + ], + [ + 10.1890761, + 52.110184701 + ], + [ + 10.1883781, + 52.109724601 + ], + [ + 10.1878469, + 52.109348301 + ], + [ + 10.187519, + 52.109106101 + ], + [ + 10.1870548, + 52.108741901 + ], + [ + 10.1865893, + 52.108348101 + ], + [ + 10.18612, + 52.107928101 + ], + [ + 10.1854524, + 52.107252901 + ], + [ + 10.1850991, + 52.106865901 + ], + [ + 10.1847691, + 52.106486401 + ], + [ + 10.1846745, + 52.106367401 + ], + [ + 10.1844022, + 52.106011101 + ], + [ + 10.1842776, + 52.105845701 + ], + [ + 10.1840576, + 52.105526901 + ], + [ + 10.1838333, + 52.105189201 + ], + [ + 10.1834948, + 52.104599801 + ], + [ + 10.1831675, + 52.103922001 + ], + [ + 10.1829083, + 52.103292501 + ], + [ + 10.1827071, + 52.102723301 + ], + [ + 10.1825808, + 52.102313401 + ], + [ + 10.1824736, + 52.101901601 + ], + [ + 10.1823856, + 52.101487901 + ], + [ + 10.1823169, + 52.101073001 + ], + [ + 10.1822674, + 52.100656901 + ], + [ + 10.1822045, + 52.100172101 + ], + [ + 10.1821629, + 52.099647601 + ], + [ + 10.1821346, + 52.099162901 + ], + [ + 10.1821056, + 52.098537101 + ], + [ + 10.1820972, + 52.097847801 + ], + [ + 10.1821417, + 52.095661001 + ], + [ + 10.182202, + 52.093635801 + ], + [ + 10.182248756, + 52.091856367 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de41", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.13513856565088,10.315017595741002,52.128345186141,10.236109883079092", + "point": "52.13513856565088,10.315017595741002", + "startLcPosition": "4", + "impact": { + "lower": "Westerlinde", + "upper": "Salzgitter-Lebenstedt-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Salzgitter", + "title": "A39 | Salzgitter-Lebenstedt-S\u00fcd - Westerlinde", + "coordinate": { + "lat": 52.13513856565088, + "long": 10.315017595741002 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 08:00 bis 17:00 Uhr", + "20.04.26 von 08:00 bis 17:00 Uhr", + "", + "A39: Braunschweig -> Salzgitter, zwischen 1.4 km hinter AS Salzgitter-Lebenstedt-S\u00fcd und 1.2 km vor AS Westerlinde", + "", + "L\u00e4nge: 5.8 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.315017596, + 52.135138566 + ], + [ + 10.3144592, + 52.135102901 + ], + [ + 10.3138007, + 52.135076901 + ], + [ + 10.3131223, + 52.135065101 + ], + [ + 10.3123124, + 52.135069701 + ], + [ + 10.3111588, + 52.135117501 + ], + [ + 10.3095056, + 52.135218401 + ], + [ + 10.3063052, + 52.135439701 + ], + [ + 10.3032448, + 52.135616001 + ], + [ + 10.3017564, + 52.135682101 + ], + [ + 10.3002496, + 52.135723201 + ], + [ + 10.29997, + 52.135728701 + ], + [ + 10.299412, + 52.135733201 + ], + [ + 10.2976934, + 52.135740601 + ], + [ + 10.2966398, + 52.135732001 + ], + [ + 10.2945156, + 52.135687101 + ], + [ + 10.293473, + 52.135666301 + ], + [ + 10.2911911, + 52.135625001 + ], + [ + 10.2890487, + 52.135603301 + ], + [ + 10.2875033, + 52.135607201 + ], + [ + 10.285635, + 52.135641801 + ], + [ + 10.2840764, + 52.135700801 + ], + [ + 10.2830561, + 52.135752301 + ], + [ + 10.2816384, + 52.135851701 + ], + [ + 10.2798052, + 52.136000701 + ], + [ + 10.2780184, + 52.136167201 + ], + [ + 10.2706862, + 52.136905401 + ], + [ + 10.2648701, + 52.137493801 + ], + [ + 10.2642246, + 52.137554301 + ], + [ + 10.2634278, + 52.137613901 + ], + [ + 10.2626398, + 52.137652301 + ], + [ + 10.2619066, + 52.137671401 + ], + [ + 10.261078, + 52.137664201 + ], + [ + 10.2602382, + 52.137638101 + ], + [ + 10.259549, + 52.137585901 + ], + [ + 10.2588138, + 52.137515001 + ], + [ + 10.2578607, + 52.137401701 + ], + [ + 10.2571642, + 52.137302601 + ], + [ + 10.2564239, + 52.137169201 + ], + [ + 10.2555492, + 52.136989701 + ], + [ + 10.2546295, + 52.136775801 + ], + [ + 10.2537015, + 52.136551901 + ], + [ + 10.2519082, + 52.136113001 + ], + [ + 10.2479904, + 52.135167001 + ], + [ + 10.2465641, + 52.134815001 + ], + [ + 10.2459168, + 52.134652701 + ], + [ + 10.2451829, + 52.134449801 + ], + [ + 10.2444237, + 52.134214101 + ], + [ + 10.2435673, + 52.133911801 + ], + [ + 10.2429484, + 52.133667401 + ], + [ + 10.2422646, + 52.133374401 + ], + [ + 10.2415743, + 52.133035401 + ], + [ + 10.24102, + 52.132745501 + ], + [ + 10.240364, + 52.132365401 + ], + [ + 10.2398264, + 52.132026001 + ], + [ + 10.2392284, + 52.131602001 + ], + [ + 10.2387133, + 52.131204401 + ], + [ + 10.2382221, + 52.130785801 + ], + [ + 10.2378336, + 52.130415701 + ], + [ + 10.237466, + 52.130038001 + ], + [ + 10.2370879, + 52.129612201 + ], + [ + 10.2365946, + 52.128970101 + ], + [ + 10.236109883, + 52.128345186 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de35", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.13566478465567,10.293389179868386,52.09101118335222,10.182273964510221", + "point": "52.13566478465567,10.293389179868386", + "startLcPosition": "4", + "impact": { + "lower": "Salzgitter", + "upper": "Salzgitter-Lebenstedt-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Salzgitter", + "title": "A39 | Salzgitter-Lebenstedt-S\u00fcd - Salzgitter", + "coordinate": { + "lat": 52.13566478465567, + "long": 10.293389179868386 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 08:00 bis 17:00 Uhr", + "", + "A39: Braunschweig -> Salzgitter, zwischen 2.9 km hinter AS Salzgitter-Lebenstedt-S\u00fcd und 0.9 km vor AD Salzgitter", + "", + "L\u00e4nge: 10.57 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.29338918, + 52.135664785 + ], + [ + 10.2911911, + 52.135625001 + ], + [ + 10.2890487, + 52.135603301 + ], + [ + 10.2875033, + 52.135607201 + ], + [ + 10.285635, + 52.135641801 + ], + [ + 10.2840764, + 52.135700801 + ], + [ + 10.2830561, + 52.135752301 + ], + [ + 10.2816384, + 52.135851701 + ], + [ + 10.2798052, + 52.136000701 + ], + [ + 10.2780184, + 52.136167201 + ], + [ + 10.2706862, + 52.136905401 + ], + [ + 10.2648701, + 52.137493801 + ], + [ + 10.2642246, + 52.137554301 + ], + [ + 10.2634278, + 52.137613901 + ], + [ + 10.2626398, + 52.137652301 + ], + [ + 10.2619066, + 52.137671401 + ], + [ + 10.261078, + 52.137664201 + ], + [ + 10.2602382, + 52.137638101 + ], + [ + 10.259549, + 52.137585901 + ], + [ + 10.2588138, + 52.137515001 + ], + [ + 10.2578607, + 52.137401701 + ], + [ + 10.2571642, + 52.137302601 + ], + [ + 10.2564239, + 52.137169201 + ], + [ + 10.2555492, + 52.136989701 + ], + [ + 10.2546295, + 52.136775801 + ], + [ + 10.2537015, + 52.136551901 + ], + [ + 10.2519082, + 52.136113001 + ], + [ + 10.2479904, + 52.135167001 + ], + [ + 10.2465641, + 52.134815001 + ], + [ + 10.2459168, + 52.134652701 + ], + [ + 10.2451829, + 52.134449801 + ], + [ + 10.2444237, + 52.134214101 + ], + [ + 10.2435673, + 52.133911801 + ], + [ + 10.2429484, + 52.133667401 + ], + [ + 10.2422646, + 52.133374401 + ], + [ + 10.2415743, + 52.133035401 + ], + [ + 10.24102, + 52.132745501 + ], + [ + 10.240364, + 52.132365401 + ], + [ + 10.2398264, + 52.132026001 + ], + [ + 10.2392284, + 52.131602001 + ], + [ + 10.2387133, + 52.131204401 + ], + [ + 10.2382221, + 52.130785801 + ], + [ + 10.2378336, + 52.130415701 + ], + [ + 10.237466, + 52.130038001 + ], + [ + 10.2370879, + 52.129612201 + ], + [ + 10.2365946, + 52.128970101 + ], + [ + 10.2353843, + 52.127409701 + ], + [ + 10.2343279, + 52.126017701 + ], + [ + 10.2332384, + 52.124631501 + ], + [ + 10.2329788, + 52.124341301 + ], + [ + 10.2326489, + 52.124006501 + ], + [ + 10.2323726, + 52.123746901 + ], + [ + 10.2321065, + 52.123523001 + ], + [ + 10.2314474, + 52.123006201 + ], + [ + 10.2309108, + 52.122645201 + ], + [ + 10.2304281, + 52.122341801 + ], + [ + 10.2298272, + 52.122012801 + ], + [ + 10.2293171, + 52.121753701 + ], + [ + 10.2291325, + 52.121665301 + ], + [ + 10.2284336, + 52.121358701 + ], + [ + 10.2276168, + 52.121046501 + ], + [ + 10.2271207, + 52.120881901 + ], + [ + 10.22641, + 52.120667301 + ], + [ + 10.2258997, + 52.120534201 + ], + [ + 10.2254471, + 52.120423601 + ], + [ + 10.2251358, + 52.120354301 + ], + [ + 10.2242833, + 52.120189801 + ], + [ + 10.2237681, + 52.120110601 + ], + [ + 10.223225, + 52.120031901 + ], + [ + 10.2225416, + 52.119965901 + ], + [ + 10.2218392, + 52.119912401 + ], + [ + 10.2211931, + 52.119883801 + ], + [ + 10.2206062, + 52.119866601 + ], + [ + 10.2194963, + 52.119853701 + ], + [ + 10.2187756, + 52.119840001 + ], + [ + 10.2181709, + 52.119818401 + ], + [ + 10.2177414, + 52.119797901 + ], + [ + 10.2172941, + 52.119765701 + ], + [ + 10.2167817, + 52.119719901 + ], + [ + 10.2162601, + 52.119662201 + ], + [ + 10.2156002, + 52.119567801 + ], + [ + 10.214597, + 52.119398001 + ], + [ + 10.2120579, + 52.118939801 + ], + [ + 10.2085884, + 52.118299701 + ], + [ + 10.2078506, + 52.118169801 + ], + [ + 10.2068549, + 52.117975401 + ], + [ + 10.2059553, + 52.117787201 + ], + [ + 10.2051731, + 52.117608401 + ], + [ + 10.2043627, + 52.117402401 + ], + [ + 10.2035263, + 52.117165801 + ], + [ + 10.2027241, + 52.116910901 + ], + [ + 10.201808, + 52.116587601 + ], + [ + 10.2008806, + 52.116229601 + ], + [ + 10.200023, + 52.115856201 + ], + [ + 10.1989896, + 52.115375901 + ], + [ + 10.1979649, + 52.114871001 + ], + [ + 10.1945579, + 52.113165101 + ], + [ + 10.1929601, + 52.112361101 + ], + [ + 10.1924661, + 52.112103801 + ], + [ + 10.1909632, + 52.111300601 + ], + [ + 10.1898572, + 52.110668001 + ], + [ + 10.1890761, + 52.110184701 + ], + [ + 10.1883781, + 52.109724601 + ], + [ + 10.1878469, + 52.109348301 + ], + [ + 10.187519, + 52.109106101 + ], + [ + 10.1870548, + 52.108741901 + ], + [ + 10.1865893, + 52.108348101 + ], + [ + 10.18612, + 52.107928101 + ], + [ + 10.1854524, + 52.107252901 + ], + [ + 10.1850991, + 52.106865901 + ], + [ + 10.1847691, + 52.106486401 + ], + [ + 10.1846745, + 52.106367401 + ], + [ + 10.1844022, + 52.106011101 + ], + [ + 10.1842776, + 52.105845701 + ], + [ + 10.1840576, + 52.105526901 + ], + [ + 10.1838333, + 52.105189201 + ], + [ + 10.1834948, + 52.104599801 + ], + [ + 10.1831675, + 52.103922001 + ], + [ + 10.1829083, + 52.103292501 + ], + [ + 10.1827071, + 52.102723301 + ], + [ + 10.1825808, + 52.102313401 + ], + [ + 10.1824736, + 52.101901601 + ], + [ + 10.1823856, + 52.101487901 + ], + [ + 10.1823169, + 52.101073001 + ], + [ + 10.1822674, + 52.100656901 + ], + [ + 10.1822045, + 52.100172101 + ], + [ + 10.1821629, + 52.099647601 + ], + [ + 10.1821346, + 52.099162901 + ], + [ + 10.1821056, + 52.098537101 + ], + [ + 10.1820972, + 52.097847801 + ], + [ + 10.1821417, + 52.095661001 + ], + [ + 10.182202, + 52.093635801 + ], + [ + 10.1822602, + 52.091420801 + ], + [ + 10.182273965, + 52.091011183 + ] + ] + } + }, + { + "identifier": "2026-014868--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_003.de33", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.13513856565088,10.315017595741002,52.128345186141,10.236109883079092", + "point": "52.13513856565088,10.315017595741002", + "startLcPosition": "4", + "impact": { + "lower": "Westerlinde", + "upper": "Salzgitter-Lebenstedt-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Salzgitter", + "title": "A39 | Salzgitter-Lebenstedt-S\u00fcd - Westerlinde", + "coordinate": { + "lat": 52.13513856565088, + "long": 10.315017595741002 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 08:00 bis 17:00 Uhr", + "", + "A39: Braunschweig -> Salzgitter, zwischen 1.4 km hinter AS Salzgitter-Lebenstedt-S\u00fcd und 1.2 km vor AS Westerlinde", + "", + "L\u00e4nge: 5.8 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A7 von Ambergau West (Parkplatz) nach Hildesheimer B\u00f6rde (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.315017596, + 52.135138566 + ], + [ + 10.3144592, + 52.135102901 + ], + [ + 10.3138007, + 52.135076901 + ], + [ + 10.3131223, + 52.135065101 + ], + [ + 10.3123124, + 52.135069701 + ], + [ + 10.3111588, + 52.135117501 + ], + [ + 10.3095056, + 52.135218401 + ], + [ + 10.3063052, + 52.135439701 + ], + [ + 10.3032448, + 52.135616001 + ], + [ + 10.3017564, + 52.135682101 + ], + [ + 10.3002496, + 52.135723201 + ], + [ + 10.29997, + 52.135728701 + ], + [ + 10.299412, + 52.135733201 + ], + [ + 10.2976934, + 52.135740601 + ], + [ + 10.2966398, + 52.135732001 + ], + [ + 10.2945156, + 52.135687101 + ], + [ + 10.293473, + 52.135666301 + ], + [ + 10.2911911, + 52.135625001 + ], + [ + 10.2890487, + 52.135603301 + ], + [ + 10.2875033, + 52.135607201 + ], + [ + 10.285635, + 52.135641801 + ], + [ + 10.2840764, + 52.135700801 + ], + [ + 10.2830561, + 52.135752301 + ], + [ + 10.2816384, + 52.135851701 + ], + [ + 10.2798052, + 52.136000701 + ], + [ + 10.2780184, + 52.136167201 + ], + [ + 10.2706862, + 52.136905401 + ], + [ + 10.2648701, + 52.137493801 + ], + [ + 10.2642246, + 52.137554301 + ], + [ + 10.2634278, + 52.137613901 + ], + [ + 10.2626398, + 52.137652301 + ], + [ + 10.2619066, + 52.137671401 + ], + [ + 10.261078, + 52.137664201 + ], + [ + 10.2602382, + 52.137638101 + ], + [ + 10.259549, + 52.137585901 + ], + [ + 10.2588138, + 52.137515001 + ], + [ + 10.2578607, + 52.137401701 + ], + [ + 10.2571642, + 52.137302601 + ], + [ + 10.2564239, + 52.137169201 + ], + [ + 10.2555492, + 52.136989701 + ], + [ + 10.2546295, + 52.136775801 + ], + [ + 10.2537015, + 52.136551901 + ], + [ + 10.2519082, + 52.136113001 + ], + [ + 10.2479904, + 52.135167001 + ], + [ + 10.2465641, + 52.134815001 + ], + [ + 10.2459168, + 52.134652701 + ], + [ + 10.2451829, + 52.134449801 + ], + [ + 10.2444237, + 52.134214101 + ], + [ + 10.2435673, + 52.133911801 + ], + [ + 10.2429484, + 52.133667401 + ], + [ + 10.2422646, + 52.133374401 + ], + [ + 10.2415743, + 52.133035401 + ], + [ + 10.24102, + 52.132745501 + ], + [ + 10.240364, + 52.132365401 + ], + [ + 10.2398264, + 52.132026001 + ], + [ + 10.2392284, + 52.131602001 + ], + [ + 10.2387133, + 52.131204401 + ], + [ + 10.2382221, + 52.130785801 + ], + [ + 10.2378336, + 52.130415701 + ], + [ + 10.237466, + 52.130038001 + ], + [ + 10.2370879, + 52.129612201 + ], + [ + 10.2365946, + 52.128970101 + ], + [ + 10.236109883, + 52.128345186 + ] + ] + } + }, + { + "identifier": "2026-017478--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_004.de4", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.20432669512982,10.481334037335744,52.210730494858154,10.491290940003472", + "point": "52.20432669512982,10.481334037335744", + "startLcPosition": "8", + "impact": { + "lower": "R\u00fcningen", + "upper": "Salzgitter-Thiede", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | Salzgitter-Thiede - R\u00fcningen", + "coordinate": { + "lat": 52.20432669512982, + "long": 10.481334037335744 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 12:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 1.9 km hinter AS Salzgitter-Thiede und 2.0 km vor R\u00fcningen", + "", + "L\u00e4nge: 0.99 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A39, RF Wolfsburg, AS Braunschweig-R\u00fcningen-Nord, Vollsperrung der Abfahrt f\u00fcr Kanalbauarbeiten im Bereich der Westerbergstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.481334037, + 52.204326695 + ], + [ + 10.482102, + 52.204659901 + ], + [ + 10.4829146, + 52.205038901 + ], + [ + 10.4835577, + 52.205354501 + ], + [ + 10.4841038, + 52.205638201 + ], + [ + 10.4847117, + 52.205960501 + ], + [ + 10.4855281, + 52.206422901 + ], + [ + 10.486179, + 52.206804501 + ], + [ + 10.4866861, + 52.207119401 + ], + [ + 10.4875667, + 52.207707401 + ], + [ + 10.4878582, + 52.207907201 + ], + [ + 10.4880902, + 52.208070201 + ], + [ + 10.4887863, + 52.208584101 + ], + [ + 10.4889404, + 52.208700501 + ], + [ + 10.4894825, + 52.209131401 + ], + [ + 10.4900561, + 52.209613301 + ], + [ + 10.4905376, + 52.210032201 + ], + [ + 10.4911288, + 52.210576401 + ], + [ + 10.49129094, + 52.210730495 + ] + ] + } + }, + { + "identifier": "2026-017478--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_004.de2", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.20432669512982,10.481334037335744,52.210730494858154,10.491290940003472", + "point": "52.20432669512982,10.481334037335744", + "startLcPosition": "8", + "impact": { + "lower": "R\u00fcningen", + "upper": "Salzgitter-Thiede", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | Salzgitter-Thiede - R\u00fcningen", + "coordinate": { + "lat": 52.20432669512982, + "long": 10.481334037335744 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 12:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 1.9 km hinter AS Salzgitter-Thiede und 2.0 km vor R\u00fcningen", + "", + "L\u00e4nge: 0.99 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A39, RF Wolfsburg, AS Braunschweig-R\u00fcningen-Nord, Vollsperrung der Abfahrt f\u00fcr Kanalbauarbeiten im Bereich der Westerbergstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.481334037, + 52.204326695 + ], + [ + 10.482102, + 52.204659901 + ], + [ + 10.4829146, + 52.205038901 + ], + [ + 10.4835577, + 52.205354501 + ], + [ + 10.4841038, + 52.205638201 + ], + [ + 10.4847117, + 52.205960501 + ], + [ + 10.4855281, + 52.206422901 + ], + [ + 10.486179, + 52.206804501 + ], + [ + 10.4866861, + 52.207119401 + ], + [ + 10.4875667, + 52.207707401 + ], + [ + 10.4878582, + 52.207907201 + ], + [ + 10.4880902, + 52.208070201 + ], + [ + 10.4887863, + 52.208584101 + ], + [ + 10.4889404, + 52.208700501 + ], + [ + 10.4894825, + 52.209131401 + ], + [ + 10.4900561, + 52.209613301 + ], + [ + 10.4905376, + 52.210032201 + ], + [ + 10.4911288, + 52.210576401 + ], + [ + 10.49129094, + 52.210730495 + ] + ] + } + }, + { + "identifier": "2026-017478--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_004.de14", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.22354419822722,10.499634948908831,52.22617589964688,10.501345175132338", + "point": "52.22354419822722,10.499634948908831", + "startLcPosition": "9", + "impact": { + "lower": "R\u00fcningen", + "upper": "BS-R\u00fcningen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | BS-R\u00fcningen-S\u00fcd - R\u00fcningen", + "coordinate": { + "lat": 52.22354419822722, + "long": 10.499634948908831 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 12:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 1.6 km hinter AS BS-R\u00fcningen-S\u00fcd und 0.1 km vor R\u00fcningen", + "", + "L\u00e4nge: 0.32 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A39, RF Wolfsburg, AS Braunschweig-R\u00fcningen-Nord, Vollsperrung der Abfahrt f\u00fcr Kanalbauarbeiten im Bereich der Westerbergstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.499634949, + 52.223544198 + ], + [ + 10.4997759, + 52.223784701 + ], + [ + 10.5001764, + 52.224463801 + ], + [ + 10.5007858, + 52.225409801 + ], + [ + 10.501191, + 52.225976301 + ], + [ + 10.501345175, + 52.2261759 + ] + ] + } + }, + { + "identifier": "2026-017478--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_004.de12", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.22129158318879,10.49832968787239,52.22302828635762,10.499333308509385", + "point": "52.22129158318879,10.49832968787239", + "startLcPosition": "9", + "impact": { + "lower": "R\u00fcningen", + "upper": "BS-R\u00fcningen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | BS-R\u00fcningen-S\u00fcd - R\u00fcningen", + "coordinate": { + "lat": 52.22129158318879, + "long": 10.49832968787239 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 12:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 1.3 km hinter AS BS-R\u00fcningen-S\u00fcd und 0.5 km vor R\u00fcningen", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A39, RF Wolfsburg, AS Braunschweig-R\u00fcningen-Nord, Vollsperrung der Abfahrt f\u00fcr Kanalbauarbeiten im Bereich der Westerbergstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.498329688, + 52.221291583 + ], + [ + 10.499333309, + 52.223028286 + ] + ] + } + }, + { + "identifier": "2026-017478--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_004.de10", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.215254222532685,10.494869044115173,52.21990154224909,10.497531000325132", + "point": "52.215254222532685,10.494869044115173", + "startLcPosition": "9", + "impact": { + "lower": "R\u00fcningen", + "upper": "BS-R\u00fcningen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | BS-R\u00fcningen-S\u00fcd - R\u00fcningen", + "coordinate": { + "lat": 52.215254222532685, + "long": 10.494869044115173 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 12:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 0.6 km hinter AS BS-R\u00fcningen-S\u00fcd und 0.8 km vor R\u00fcningen", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A39, RF Wolfsburg, AS Braunschweig-R\u00fcningen-Nord, Vollsperrung der Abfahrt f\u00fcr Kanalbauarbeiten im Bereich der Westerbergstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.494869044, + 52.215254223 + ], + [ + 10.4956754, + 52.216644501 + ], + [ + 10.4957991, + 52.216861701 + ], + [ + 10.4959624, + 52.217148201 + ], + [ + 10.4973485, + 52.219581101 + ], + [ + 10.497531, + 52.219901542 + ] + ] + } + }, + { + "identifier": "2026-017478--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_004.de8", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.215254222532685,10.494869044115173,52.21990154224909,10.497531000325132", + "point": "52.215254222532685,10.494869044115173", + "startLcPosition": "9", + "impact": { + "lower": "R\u00fcningen", + "upper": "BS-R\u00fcningen-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | BS-R\u00fcningen-S\u00fcd - R\u00fcningen", + "coordinate": { + "lat": 52.215254222532685, + "long": 10.494869044115173 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 12:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 0.6 km hinter AS BS-R\u00fcningen-S\u00fcd und 0.8 km vor R\u00fcningen", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A39, RF Wolfsburg, AS Braunschweig-R\u00fcningen-Nord, Vollsperrung der Abfahrt f\u00fcr Kanalbauarbeiten im Bereich der Westerbergstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.494869044, + 52.215254223 + ], + [ + 10.4956754, + 52.216644501 + ], + [ + 10.4957991, + 52.216861701 + ], + [ + 10.4959624, + 52.217148201 + ], + [ + 10.4973485, + 52.219581101 + ], + [ + 10.497531, + 52.219901542 + ] + ] + } + }, + { + "identifier": "2026-017478--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_004.de6", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.215254222532685,10.494869044115173,52.21990154224909,10.497531000325132", + "point": "52.215254222532685,10.494869044115173", + "startLcPosition": "9", + "impact": { + "lower": "R\u00fcningen", + "upper": "BS-R\u00fcningen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Salzgitter -> Braunschweig", + "title": "A39 | BS-R\u00fcningen-S\u00fcd - R\u00fcningen", + "coordinate": { + "lat": 52.215254222532685, + "long": 10.494869044115173 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 12:00 Uhr", + "", + "A39: Salzgitter -> Braunschweig, zwischen 0.6 km hinter AS BS-R\u00fcningen-S\u00fcd und 0.8 km vor R\u00fcningen", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A39, RF Wolfsburg, AS Braunschweig-R\u00fcningen-Nord, Vollsperrung der Abfahrt f\u00fcr Kanalbauarbeiten im Bereich der Westerbergstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.494869044, + 52.215254223 + ], + [ + 10.4956754, + 52.216644501 + ], + [ + 10.4957991, + 52.216861701 + ], + [ + 10.4959624, + 52.217148201 + ], + [ + 10.4973485, + 52.219581101 + ], + [ + 10.497531, + 52.219901542 + ] + ] + } + }, + { + "identifier": "2026-017833--vi-bs.2026-04-10_09-00-00-000.devi-zus.2026-04-10_09-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.262608474277194,10.68763135992857,52.26209314226957,10.686432332555148", + "point": "52.262608474277194,10.68763135992857", + "startLcPosition": "21", + "impact": { + "lower": "Cremlingen", + "upper": "Scheppau", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wolfsburg -> Braunschweig", + "title": "A39 | Scheppau - Cremlingen", + "coordinate": { + "lat": 52.262608474277194, + "long": 10.68763135992857 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 11:00 Uhr", + "", + "A39: Wolfsburg -> Braunschweig, zwischen 4.4 km hinter AS Scheppau und 2.1 km vor AS Cremlingen", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A39 von Scheppau (AS) nach Cremlingen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.68763136, + 52.262608474 + ], + [ + 10.6868321, + 52.262261701 + ], + [ + 10.686432333, + 52.262093142 + ] + ] + } + }, + { + "identifier": "2026-017833--vi-bs.2026-04-10_09-00-00-000.devi-zus.2026-04-10_09-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.31159893820345,10.728772083602866,52.31246243245303,10.729162040956483", + "point": "52.31159893820345,10.728772083602866", + "startLcPosition": "22", + "impact": { + "lower": "Flechtorf", + "upper": "Wolfsburg/K\u00f6nigslutter", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Braunschweig -> Wolfsburg", + "title": "A39 | Wolfsburg/K\u00f6nigslutter - Flechtorf", + "coordinate": { + "lat": 52.31159893820345, + "long": 10.728772083602866 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 12:00 bis 13:00 Uhr", + "", + "A39: Braunschweig -> Wolfsburg, zwischen 0.4 km hinter AK Wolfsburg/K\u00f6nigslutter und 6.2 km vor AS Flechtorf", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A39 von Scheppau (AS) nach Cremlingen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.728772084, + 52.311598938 + ], + [ + 10.729162041, + 52.312462432 + ] + ] + } + }, + { + "identifier": "2024-057132--vi-bs.2025-01-06_00-00-00-000.devi-zus.2024-11-27_00-00-00-000.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.42139784416058,10.73759540709063,52.429890151061855,10.738187753976696", + "point": "52.42139784416058,10.73759540709063", + "startLcPosition": "26", + "impact": { + "lower": "Sandkamp", + "upper": "Fallersleben", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Braunschweig -> Wolfsburg", + "title": "A39 | Fallersleben - Sandkamp", + "startTimestamp": "2025-01-06T00:00:00+01:00", + "coordinate": { + "lat": 52.42139784416058, + "long": 10.73759540709063 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A39: Braunschweig -> Wolfsburg, zwischen 0.9 km hinter AS Fallersleben und 0.6 km vor AS Sandkamp", + "", + "L\u00e4nge: 0.95 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A39-Erneuerung Bauwerk WO 2 \u00fcber DB und Mittellandkanal" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.737595407, + 52.421397844 + ], + [ + 10.7377049, + 52.421976001 + ], + [ + 10.7377738, + 52.422344601 + ], + [ + 10.7378811, + 52.422789801 + ], + [ + 10.7379489, + 52.423179301 + ], + [ + 10.737978, + 52.423328501 + ], + [ + 10.7381656, + 52.424395501 + ], + [ + 10.73821, + 52.424654301 + ], + [ + 10.7383029, + 52.425176901 + ], + [ + 10.738365, + 52.425686801 + ], + [ + 10.738419, + 52.426178101 + ], + [ + 10.7384479, + 52.426666001 + ], + [ + 10.7384481, + 52.427005601 + ], + [ + 10.7384404, + 52.427781401 + ], + [ + 10.7383671, + 52.428567301 + ], + [ + 10.7382839, + 52.429322101 + ], + [ + 10.73822, + 52.429729301 + ], + [ + 10.738187754, + 52.429890151 + ] + ] + } + }, + { + "identifier": "2026-013985--vi-bs.2026-04-07_00-00-00-000.devi-zus.2026-03-30_00-00-00-000_003.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.39721030150658,10.735769200061643,52.39123592854704,10.737737559715299", + "point": "52.39721030150658,10.735769200061643", + "startLcPosition": "26", + "impact": { + "lower": "Wolfsburg-M\u00f6rse-S\u00fcd", + "upper": "Fallersleben", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wolfsburg -> Braunschweig", + "title": "A39 | Fallersleben - Wolfsburg-M\u00f6rse-S\u00fcd", + "startTimestamp": "2026-04-07T00:00:00+02:00", + "coordinate": { + "lat": 52.39721030150658, + "long": 10.735769200061643 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 00:00 Uhr", + "Ende: 11.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.26)", + "", + "A39: Wolfsburg -> Braunschweig, zwischen 1.9 km hinter AS Fallersleben und 0.4 km vor AS Wolfsburg-M\u00f6rse-S\u00fcd", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A39 - M\u00d63 - BGU Bohrpunkte B6 und B2" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.7357692, + 52.397210302 + ], + [ + 10.7359671, + 52.396926301 + ], + [ + 10.7363834, + 52.396317301 + ], + [ + 10.7366843, + 52.395859801 + ], + [ + 10.7369573, + 52.395401401 + ], + [ + 10.7372439, + 52.394875101 + ], + [ + 10.7374754, + 52.394346201 + ], + [ + 10.7375966, + 52.394037501 + ], + [ + 10.7376883, + 52.393729301 + ], + [ + 10.7377765, + 52.393387801 + ], + [ + 10.7378346, + 52.393045101 + ], + [ + 10.737867, + 52.392661801 + ], + [ + 10.7378792, + 52.392323601 + ], + [ + 10.7378624, + 52.391983301 + ], + [ + 10.7377916, + 52.391475201 + ], + [ + 10.7377537, + 52.391297501 + ], + [ + 10.73773756, + 52.391235929 + ] + ] + } + }, + { + "identifier": "2024-057132--vi-bs.2025-01-06_00-00-00-000.devi-zus.2024-11-27_00-00-00-000.f.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.42987810999394,10.738029368597616,52.42141150312006,10.737396123226873", + "point": "52.42987810999394,10.738029368597616", + "startLcPosition": "28", + "impact": { + "lower": "Fallersleben", + "upper": "Sandkamp", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wolfsburg -> Braunschweig", + "title": "A39 | Sandkamp - Fallersleben", + "startTimestamp": "2025-01-06T00:00:00+01:00", + "coordinate": { + "lat": 52.42987810999394, + "long": 10.738029368597616 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A39: Wolfsburg -> Braunschweig, zwischen 0.6 km hinter AS Sandkamp und 0.9 km vor AS Fallersleben", + "", + "L\u00e4nge: 0.95 km | Maximale Durchfahrtsbreite: 3.3 m", + "", + "A39-Erneuerung Bauwerk WO 2 \u00fcber DB und Mittellandkanal" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.738029369, + 52.42987811 + ], + [ + 10.7380484, + 52.429785801 + ], + [ + 10.7381144, + 52.429368101 + ], + [ + 10.7382114, + 52.428195901 + ], + [ + 10.7382391, + 52.427775201 + ], + [ + 10.7382433, + 52.427194801 + ], + [ + 10.7382152, + 52.426665501 + ], + [ + 10.7381855, + 52.426181601 + ], + [ + 10.7381332, + 52.425690801 + ], + [ + 10.7380694, + 52.425195301 + ], + [ + 10.7379836, + 52.424653501 + ], + [ + 10.7379427, + 52.424394201 + ], + [ + 10.7377378, + 52.423171801 + ], + [ + 10.737657, + 52.422787601 + ], + [ + 10.7375649, + 52.422356901 + ], + [ + 10.737396123, + 52.421411503 + ] + ] + } + }, + { + "identifier": "2024-057132--vi-bs.2025-01-06_00-00-00-000.devi-zus.2024-11-27_00-00-00-000.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.3674035907951,10.723184804556565,52.46178847669923,10.737953414705874", + "point": "52.3674035907951,10.723184804556565", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 147.50 --> km 136.50", + "title": "A39-Erneuerung Bauwerk WO 2 \u00fcber DB und Mittellandkanal", + "startTimestamp": "2025-01-06T00:00:00+01:00", + "coordinate": { + "lat": 52.3674035907951, + "long": 10.723184804556565 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A39: km 147.50 --> km 136.50", + "", + "L\u00e4nge: 11.03 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A39-Erneuerung Bauwerk WO 2 \u00fcber DB und Mittellandkanal" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.723184805, + 52.367403591 + ], + [ + 10.7231747, + 52.367959801 + ], + [ + 10.7231987, + 52.368481201 + ], + [ + 10.7232207, + 52.368833001 + ], + [ + 10.7232694, + 52.369497801 + ], + [ + 10.7233365, + 52.370125801 + ], + [ + 10.7234843, + 52.371103601 + ], + [ + 10.7236746, + 52.371949801 + ], + [ + 10.7238441, + 52.372663501 + ], + [ + 10.7239934, + 52.373187401 + ], + [ + 10.7241552, + 52.373731701 + ], + [ + 10.7243334, + 52.374274201 + ], + [ + 10.7245287, + 52.374832701 + ], + [ + 10.7247455, + 52.375390101 + ], + [ + 10.7249746, + 52.375931901 + ], + [ + 10.7252249, + 52.376471501 + ], + [ + 10.7257145, + 52.377440701 + ], + [ + 10.7260313, + 52.378008201 + ], + [ + 10.7263167, + 52.378497301 + ], + [ + 10.7265359, + 52.378865101 + ], + [ + 10.7267708, + 52.379227501 + ], + [ + 10.7271696, + 52.379837301 + ], + [ + 10.727604, + 52.380446701 + ], + [ + 10.7278934, + 52.380843801 + ], + [ + 10.7282584, + 52.381314701 + ], + [ + 10.7286633, + 52.381820801 + ], + [ + 10.7290849, + 52.382320101 + ], + [ + 10.7296683, + 52.382975101 + ], + [ + 10.7300652, + 52.383403501 + ], + [ + 10.7304925, + 52.383824501 + ], + [ + 10.7311344, + 52.384405401 + ], + [ + 10.7315989, + 52.384782001 + ], + [ + 10.7322137, + 52.385209601 + ], + [ + 10.7329346, + 52.385713301 + ], + [ + 10.7330855, + 52.385827601 + ], + [ + 10.7333338, + 52.386006001 + ], + [ + 10.7336842, + 52.386247101 + ], + [ + 10.7340868, + 52.386527801 + ], + [ + 10.7345822, + 52.386880601 + ], + [ + 10.7350147, + 52.387203101 + ], + [ + 10.7353105, + 52.387440601 + ], + [ + 10.7356662, + 52.387743301 + ], + [ + 10.7359962, + 52.388052501 + ], + [ + 10.7367816, + 52.388932301 + ], + [ + 10.7370148, + 52.389254901 + ], + [ + 10.7371521, + 52.389462701 + ], + [ + 10.7372853, + 52.389687001 + ], + [ + 10.737399, + 52.389905301 + ], + [ + 10.7374949, + 52.390082801 + ], + [ + 10.7376529, + 52.390442201 + ], + [ + 10.7377787, + 52.390773901 + ], + [ + 10.7379141, + 52.391264701 + ], + [ + 10.7379573, + 52.391466001 + ], + [ + 10.7379995, + 52.391731501 + ], + [ + 10.7380221, + 52.391995301 + ], + [ + 10.7380361, + 52.392332801 + ], + [ + 10.7380254, + 52.392668701 + ], + [ + 10.7380107, + 52.392933601 + ], + [ + 10.7379716, + 52.393196401 + ], + [ + 10.737923, + 52.393471601 + ], + [ + 10.7378538, + 52.393745201 + ], + [ + 10.7377551, + 52.394063201 + ], + [ + 10.7376306, + 52.394379701 + ], + [ + 10.7374003, + 52.394900801 + ], + [ + 10.7371232, + 52.395417801 + ], + [ + 10.7368448, + 52.395888101 + ], + [ + 10.7365336, + 52.396359201 + ], + [ + 10.7349421, + 52.398628501 + ], + [ + 10.7348093, + 52.398820701 + ], + [ + 10.7346862, + 52.399000701 + ], + [ + 10.7327044, + 52.401845301 + ], + [ + 10.7323761, + 52.402323101 + ], + [ + 10.7321078, + 52.402803101 + ], + [ + 10.7319429, + 52.403175301 + ], + [ + 10.7318272, + 52.403547901 + ], + [ + 10.731756, + 52.403909801 + ], + [ + 10.7317258, + 52.404269101 + ], + [ + 10.7317236, + 52.404501601 + ], + [ + 10.7317421, + 52.404736801 + ], + [ + 10.7317695, + 52.404930001 + ], + [ + 10.7318102, + 52.405120501 + ], + [ + 10.7318577, + 52.405314901 + ], + [ + 10.731921, + 52.405500601 + ], + [ + 10.7320115, + 52.405736001 + ], + [ + 10.7321214, + 52.405965601 + ], + [ + 10.732308, + 52.406312501 + ], + [ + 10.7325206, + 52.406652601 + ], + [ + 10.7329161, + 52.407253801 + ], + [ + 10.7338233, + 52.408630201 + ], + [ + 10.7347729, + 52.410092001 + ], + [ + 10.7352464, + 52.410938801 + ], + [ + 10.7354481, + 52.411363601 + ], + [ + 10.7356299, + 52.411789001 + ], + [ + 10.7358235, + 52.412377701 + ], + [ + 10.735906, + 52.412665401 + ], + [ + 10.7359915, + 52.413004001 + ], + [ + 10.7360904, + 52.413461101 + ], + [ + 10.7361642, + 52.413831501 + ], + [ + 10.7364336, + 52.415247301 + ], + [ + 10.7365589, + 52.415943601 + ], + [ + 10.736877, + 52.417625801 + ], + [ + 10.7370943, + 52.418769201 + ], + [ + 10.7372367, + 52.419503001 + ], + [ + 10.7373872, + 52.420298401 + ], + [ + 10.7377049, + 52.421976001 + ], + [ + 10.7377738, + 52.422344601 + ], + [ + 10.7378811, + 52.422789801 + ], + [ + 10.7379489, + 52.423179301 + ], + [ + 10.737978, + 52.423328501 + ], + [ + 10.7381656, + 52.424395501 + ], + [ + 10.73821, + 52.424654301 + ], + [ + 10.7383029, + 52.425176901 + ], + [ + 10.738365, + 52.425686801 + ], + [ + 10.738419, + 52.426178101 + ], + [ + 10.7384479, + 52.426666001 + ], + [ + 10.7384481, + 52.427005601 + ], + [ + 10.7384404, + 52.427781401 + ], + [ + 10.7383671, + 52.428567301 + ], + [ + 10.7382839, + 52.429322101 + ], + [ + 10.73822, + 52.429729301 + ], + [ + 10.7380597, + 52.430528901 + ], + [ + 10.7379529, + 52.431016301 + ], + [ + 10.73777, + 52.431845101 + ], + [ + 10.7376351, + 52.432379901 + ], + [ + 10.737627, + 52.432415401 + ], + [ + 10.7375063, + 52.432915601 + ], + [ + 10.7370494, + 52.434723201 + ], + [ + 10.7369748, + 52.435031601 + ], + [ + 10.7368677, + 52.435456001 + ], + [ + 10.7367077, + 52.436091101 + ], + [ + 10.7360525, + 52.438663301 + ], + [ + 10.735375, + 52.441414801 + ], + [ + 10.7352076, + 52.441906501 + ], + [ + 10.7348959, + 52.442730901 + ], + [ + 10.7347651, + 52.443206301 + ], + [ + 10.7347189, + 52.443498501 + ], + [ + 10.7347037, + 52.443790401 + ], + [ + 10.7347266, + 52.444309701 + ], + [ + 10.7348121, + 52.444702001 + ], + [ + 10.7349578, + 52.445118901 + ], + [ + 10.7350908, + 52.445429101 + ], + [ + 10.7354004, + 52.445944901 + ], + [ + 10.7358515, + 52.446501601 + ], + [ + 10.7364122, + 52.447025001 + ], + [ + 10.7372004, + 52.447661701 + ], + [ + 10.7378035, + 52.448229201 + ], + [ + 10.7381477, + 52.448650801 + ], + [ + 10.7384186, + 52.449045301 + ], + [ + 10.7386366, + 52.449474201 + ], + [ + 10.7388063, + 52.449929001 + ], + [ + 10.7388956, + 52.450303801 + ], + [ + 10.7389444, + 52.450696301 + ], + [ + 10.7389486, + 52.451038201 + ], + [ + 10.7389006, + 52.451528101 + ], + [ + 10.7388067, + 52.451904601 + ], + [ + 10.7385691, + 52.452493201 + ], + [ + 10.7383546, + 52.452866201 + ], + [ + 10.7381126, + 52.453208001 + ], + [ + 10.7377558, + 52.453583501 + ], + [ + 10.7372487, + 52.454119901 + ], + [ + 10.737097, + 52.454287801 + ], + [ + 10.7369021, + 52.454526701 + ], + [ + 10.7366909, + 52.454796401 + ], + [ + 10.7365001, + 52.455108201 + ], + [ + 10.7363437, + 52.455399001 + ], + [ + 10.7362118, + 52.455708301 + ], + [ + 10.7360818, + 52.456158701 + ], + [ + 10.7360107, + 52.456557101 + ], + [ + 10.7359986, + 52.456724101 + ], + [ + 10.7359925, + 52.456979001 + ], + [ + 10.736032, + 52.457327401 + ], + [ + 10.7361231, + 52.457738701 + ], + [ + 10.7362391, + 52.458117901 + ], + [ + 10.7363618, + 52.458416001 + ], + [ + 10.7365625, + 52.458837801 + ], + [ + 10.7367994, + 52.459354701 + ], + [ + 10.7372392, + 52.460221601 + ], + [ + 10.7374398, + 52.460641501 + ], + [ + 10.7374617, + 52.460689801 + ], + [ + 10.7376599, + 52.461119601 + ], + [ + 10.7377351, + 52.461279501 + ], + [ + 10.737816, + 52.461444501 + ], + [ + 10.737953415, + 52.461788477 + ] + ] + } + }, + { + "identifier": "2024-057132--vi-bs.2025-01-06_00-00-00-000.devi-zus.2024-11-27_00-00-00-000.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.46181141378015,10.737804750470438,52.36740261645698,10.72302875156222", + "point": "52.46181141378015,10.737804750470438", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 136.50 --> km 147.50", + "title": "A39-Erneuerung Bauwerk WO 2 \u00fcber DB und Mittellandkanal", + "startTimestamp": "2025-01-06T00:00:00+01:00", + "coordinate": { + "lat": 52.46181141378015, + "long": 10.737804750470438 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.01.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A39: km 136.50 --> km 147.50", + "", + "L\u00e4nge: 11.03 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A39-Erneuerung Bauwerk WO 2 \u00fcber DB und Mittellandkanal" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.73780475, + 52.461811414 + ], + [ + 10.7376523, + 52.461461601 + ], + [ + 10.7372845, + 52.460671401 + ], + [ + 10.7370803, + 52.460247601 + ], + [ + 10.7366395, + 52.459374501 + ], + [ + 10.7361919, + 52.458418701 + ], + [ + 10.7360784, + 52.458129401 + ], + [ + 10.735952, + 52.457750901 + ], + [ + 10.7358645, + 52.457334101 + ], + [ + 10.7358422, + 52.457066901 + ], + [ + 10.7358402, + 52.456734001 + ], + [ + 10.7358605, + 52.456490301 + ], + [ + 10.7359234, + 52.456127801 + ], + [ + 10.7359762, + 52.455922401 + ], + [ + 10.7360513, + 52.455698401 + ], + [ + 10.736228, + 52.455297501 + ], + [ + 10.7364107, + 52.454962201 + ], + [ + 10.7365265, + 52.454772901 + ], + [ + 10.7367559, + 52.454473401 + ], + [ + 10.7369549, + 52.454248201 + ], + [ + 10.7371187, + 52.454073401 + ], + [ + 10.7376314, + 52.453539001 + ], + [ + 10.7379747, + 52.453170201 + ], + [ + 10.7382167, + 52.452831701 + ], + [ + 10.738429, + 52.452450501 + ], + [ + 10.7386592, + 52.451885201 + ], + [ + 10.7387443, + 52.451507301 + ], + [ + 10.738795, + 52.451034301 + ], + [ + 10.738792, + 52.450698001 + ], + [ + 10.7387439, + 52.450309401 + ], + [ + 10.7386394, + 52.449944201 + ], + [ + 10.7384754, + 52.449497901 + ], + [ + 10.7382726, + 52.449083801 + ], + [ + 10.7379987, + 52.448672901 + ], + [ + 10.7376504, + 52.448257901 + ], + [ + 10.7370751, + 52.447717901 + ], + [ + 10.7362967, + 52.447082801 + ], + [ + 10.7357257, + 52.446548101 + ], + [ + 10.7352589, + 52.445968701 + ], + [ + 10.7349462, + 52.445456501 + ], + [ + 10.7348135, + 52.445145401 + ], + [ + 10.7346675, + 52.444715801 + ], + [ + 10.7345842, + 52.444314201 + ], + [ + 10.734553, + 52.443781401 + ], + [ + 10.7345678, + 52.443504601 + ], + [ + 10.7346184, + 52.443188101 + ], + [ + 10.7347475, + 52.442709901 + ], + [ + 10.7350183, + 52.441897201 + ], + [ + 10.7351929, + 52.441392401 + ], + [ + 10.7361272, + 52.437790401 + ], + [ + 10.736399, + 52.436678601 + ], + [ + 10.7367015, + 52.435439201 + ], + [ + 10.7368042, + 52.435016601 + ], + [ + 10.7371155, + 52.433795201 + ], + [ + 10.7374554, + 52.432425201 + ], + [ + 10.7374931, + 52.432282001 + ], + [ + 10.7376287, + 52.431730501 + ], + [ + 10.7378901, + 52.430553601 + ], + [ + 10.7380484, + 52.429785801 + ], + [ + 10.7381144, + 52.429368101 + ], + [ + 10.7382114, + 52.428195901 + ], + [ + 10.7382391, + 52.427775201 + ], + [ + 10.7382433, + 52.427194801 + ], + [ + 10.7382152, + 52.426665501 + ], + [ + 10.7381855, + 52.426181601 + ], + [ + 10.7381332, + 52.425690801 + ], + [ + 10.7380694, + 52.425195301 + ], + [ + 10.7379836, + 52.424653501 + ], + [ + 10.7379427, + 52.424394201 + ], + [ + 10.7377378, + 52.423171801 + ], + [ + 10.737657, + 52.422787601 + ], + [ + 10.7375649, + 52.422356901 + ], + [ + 10.7373762, + 52.421299901 + ], + [ + 10.7373368, + 52.421000001 + ], + [ + 10.737043, + 52.419390401 + ], + [ + 10.7369986, + 52.419150101 + ], + [ + 10.7366268, + 52.417200801 + ], + [ + 10.7362569, + 52.415247701 + ], + [ + 10.7360138, + 52.413931601 + ], + [ + 10.7359291, + 52.413517301 + ], + [ + 10.7358301, + 52.413049101 + ], + [ + 10.7357764, + 52.412820701 + ], + [ + 10.7356575, + 52.412392701 + ], + [ + 10.7354637, + 52.411811501 + ], + [ + 10.7353693, + 52.411583601 + ], + [ + 10.735216, + 52.411287401 + ], + [ + 10.7349207, + 52.410697101 + ], + [ + 10.7348071, + 52.410506301 + ], + [ + 10.7347716, + 52.410430601 + ], + [ + 10.7347444, + 52.410334801 + ], + [ + 10.7336638, + 52.408659701 + ], + [ + 10.7326302, + 52.407095501 + ], + [ + 10.7322705, + 52.406547501 + ], + [ + 10.7319614, + 52.405998001 + ], + [ + 10.7317716, + 52.405573401 + ], + [ + 10.7316434, + 52.405141001 + ], + [ + 10.7315707, + 52.404702901 + ], + [ + 10.7315598, + 52.404255101 + ], + [ + 10.7315921, + 52.403896501 + ], + [ + 10.7316583, + 52.403535001 + ], + [ + 10.7317845, + 52.403153701 + ], + [ + 10.731954, + 52.402769301 + ], + [ + 10.7322285, + 52.402280701 + ], + [ + 10.7325575, + 52.401795201 + ], + [ + 10.7345411, + 52.398946701 + ], + [ + 10.7346798, + 52.398749301 + ], + [ + 10.7355444, + 52.397532901 + ], + [ + 10.7359671, + 52.396926301 + ], + [ + 10.7363834, + 52.396317301 + ], + [ + 10.7366843, + 52.395859801 + ], + [ + 10.7369573, + 52.395401401 + ], + [ + 10.7372439, + 52.394875101 + ], + [ + 10.7374754, + 52.394346201 + ], + [ + 10.7375966, + 52.394037501 + ], + [ + 10.7376883, + 52.393729301 + ], + [ + 10.7377765, + 52.393387801 + ], + [ + 10.7378346, + 52.393045101 + ], + [ + 10.737867, + 52.392661801 + ], + [ + 10.7378792, + 52.392323601 + ], + [ + 10.7378624, + 52.391983301 + ], + [ + 10.7377916, + 52.391475201 + ], + [ + 10.7377537, + 52.391297501 + ], + [ + 10.7376581, + 52.390932801 + ], + [ + 10.7374912, + 52.390460301 + ], + [ + 10.7373489, + 52.390143301 + ], + [ + 10.7372109, + 52.389857501 + ], + [ + 10.7370118, + 52.389495301 + ], + [ + 10.7366372, + 52.388965401 + ], + [ + 10.7361383, + 52.388384601 + ], + [ + 10.7360048, + 52.388244301 + ], + [ + 10.7358496, + 52.388096501 + ], + [ + 10.7357114, + 52.387957301 + ], + [ + 10.7354429, + 52.387720901 + ], + [ + 10.7352767, + 52.387577401 + ], + [ + 10.7348676, + 52.387252601 + ], + [ + 10.7344597, + 52.386941001 + ], + [ + 10.733784, + 52.386467001 + ], + [ + 10.7331952, + 52.386086401 + ], + [ + 10.7329456, + 52.385908701 + ], + [ + 10.7325083, + 52.385603401 + ], + [ + 10.7320307, + 52.385234901 + ], + [ + 10.7310347, + 52.384473801 + ], + [ + 10.7310143, + 52.384456201 + ], + [ + 10.7307796, + 52.384266601 + ], + [ + 10.730494, + 52.384008401 + ], + [ + 10.7299253, + 52.383452601 + ], + [ + 10.7295237, + 52.383022301 + ], + [ + 10.7289395, + 52.382363601 + ], + [ + 10.7285153, + 52.381862301 + ], + [ + 10.7281107, + 52.381354701 + ], + [ + 10.7277651, + 52.380912901 + ], + [ + 10.7274382, + 52.380466601 + ], + [ + 10.7270057, + 52.379854501 + ], + [ + 10.7265998, + 52.379240601 + ], + [ + 10.7261563, + 52.378529101 + ], + [ + 10.7258753, + 52.378040701 + ], + [ + 10.7257336, + 52.377791201 + ], + [ + 10.7255613, + 52.377471501 + ], + [ + 10.7250661, + 52.376497501 + ], + [ + 10.7248911, + 52.376121101 + ], + [ + 10.7248147, + 52.375956801 + ], + [ + 10.7245828, + 52.375411401 + ], + [ + 10.7243709, + 52.374856301 + ], + [ + 10.7241689, + 52.374298301 + ], + [ + 10.7238298, + 52.373201501 + ], + [ + 10.7236717, + 52.372647201 + ], + [ + 10.7235312, + 52.372092701 + ], + [ + 10.7235126, + 52.372001301 + ], + [ + 10.7233236, + 52.371104301 + ], + [ + 10.7231975, + 52.370329201 + ], + [ + 10.7231054, + 52.369502801 + ], + [ + 10.7230567, + 52.368838801 + ], + [ + 10.7230221, + 52.367860601 + ], + [ + 10.723028752, + 52.367402616 + ] + ] + } + } + ] + }, + "A40": { + "roadworks": [ + { + "identifier": "2026-016165--vi-bs.2026-04-09_06-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.40783009847412,6.4134397370773835,51.40707971945911,6.4078884471721995", + "point": "51.40783009847412,6.4134397370773835", + "startLcPosition": "7", + "impact": { + "lower": "Wachtendonk", + "upper": "Kempen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Duisburg -> Venlo", + "title": "A40 | Kempen - Wachtendonk", + "coordinate": { + "lat": 51.40783009847412, + "long": 6.4134397370773835 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 06:30 bis 16:00 Uhr", + "", + "A40: Duisburg -> Venlo, zwischen 0.4 km hinter AS Kempen und 3.2 km vor AS Wachtendonk", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A40 von Kempen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.413439737, + 51.407830098 + ], + [ + 6.412834, + 51.407759201 + ], + [ + 6.4102117, + 51.407415301 + ], + [ + 6.407888447, + 51.407079719 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-fbm.2026-03-31_09-00-00-000.devi-zus.2025-09-05_00-00-00-000.de96", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.433362147953964,6.583576780844105,51.4339100081777,6.586313414128456", + "point": "51.433362147953964,6.583576780844105", + "startLcPosition": "10", + "impact": { + "lower": "Moers", + "upper": "Neukirchen-Vluyn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Venlo -> Duisburg", + "title": "A40 | Neukirchen-Vluyn - Moers", + "coordinate": { + "lat": 51.433362147953964, + "long": 6.583576780844105 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A40: Venlo -> Duisburg, zwischen 2.5 km hinter AS Neukirchen-Vluyn und 1.3 km vor AK Moers", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.583576781, + 51.433362148 + ], + [ + 6.5839203, + 51.433438401 + ], + [ + 6.586313414, + 51.433910008 + ] + ] + } + }, + { + "identifier": "2026-017710--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_007.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43559855037669,6.5982110931849105,51.43573323414559,6.59962975144731", + "point": "51.43559855037669,6.5982110931849105", + "startLcPosition": "10", + "impact": { + "lower": "Moers", + "upper": "Neukirchen-Vluyn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Venlo -> Duisburg", + "title": "A40 | Neukirchen-Vluyn - Moers", + "coordinate": { + "lat": 51.43559855037669, + "long": 6.5982110931849105 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A40: Venlo -> Duisburg, zwischen 3.6 km hinter AS Neukirchen-Vluyn und 0.3 km vor AK Moers", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A40 Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.598211093, + 51.43559855 + ], + [ + 6.5993383, + 51.435710901 + ], + [ + 6.599629751, + 51.435733234 + ] + ] + } + }, + { + "identifier": "2026-016172--vi-bs.2026-04-09_06-30-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.42486975072956,6.503685726562947,51.423831371315075,6.50023381679887", + "point": "51.42486975072956,6.503685726562947", + "startLcPosition": "10", + "impact": { + "lower": "Neufelder Heide", + "upper": "Neukirchen-Vluyn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Duisburg -> Venlo", + "title": "A40 | Neukirchen-Vluyn - Neufelder Heide", + "coordinate": { + "lat": 51.42486975072956, + "long": 6.503685726562947 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 06:30 bis 16:00 Uhr", + "", + "A40: Duisburg -> Venlo, zwischen 3.1 km hinter AS Neukirchen-Vluyn und Neufelder Heide", + "", + "L\u00e4nge: 0.27 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A40 von Neufelder Heide (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.503685727, + 51.424869751 + ], + [ + 6.5032708, + 51.424761501 + ], + [ + 6.5018964, + 51.424363101 + ], + [ + 6.5013941, + 51.424203701 + ], + [ + 6.5005723, + 51.423945001 + ], + [ + 6.500233817, + 51.423831371 + ] + ] + } + }, + { + "identifier": "2026-017686--vi-bs.2026-04-14_19-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.435942673094615,6.619567412629373,51.43583606443064,6.621478228280188", + "point": "51.435942673094615,6.619567412629373", + "startLcPosition": "12", + "impact": { + "lower": "Moers-Zentrum", + "upper": "Moers", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Venlo -> Duisburg", + "title": "A40 | Moers - Moers-Zentrum", + "coordinate": { + "lat": 51.435942673094615, + "long": 6.619567412629373 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:00 bis zum 15.04.26 06:00 Uhr.", + "", + "A40: Venlo -> Duisburg, zwischen 0.7 km hinter AS Moers und 1.6 km vor AS Moers-Zentrum", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 9.75 m", + "", + "A40 von Moers-Zentrum (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.619567413, + 51.435942673 + ], + [ + 6.6201898, + 51.435908001 + ], + [ + 6.6205411, + 51.435883601 + ], + [ + 6.6213263, + 51.435844501 + ], + [ + 6.621478228, + 51.435836064 + ] + ] + } + }, + { + "identifier": "2026-017674--vi-bs.2026-04-13_19-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.436829043029746,6.658511844177832,51.43710472359023,6.665718228924037", + "point": "51.436829043029746,6.658511844177832", + "startLcPosition": "13", + "impact": { + "lower": "Duisburg-Rheinhausen", + "upper": "Moers-Zentrum", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Venlo -> Duisburg", + "title": "A40 | Moers-Zentrum - Duisburg-Rheinhausen", + "coordinate": { + "lat": 51.436829043029746, + "long": 6.658511844177832 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A40: Venlo -> Duisburg, zwischen 1.0 km hinter AS Moers-Zentrum und 0.5 km vor AS Duisburg-Rheinhausen", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A40 von Moers-Zentrum (AS) nach Duisburg-Rheinhausen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.658511844, + 51.436829043 + ], + [ + 6.6602989, + 51.436888701 + ], + [ + 6.6628449, + 51.436990701 + ], + [ + 6.6654474, + 51.437095201 + ], + [ + 6.665718229, + 51.437104724 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2025-12-14_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de86", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43738235432273,6.682804435837731,51.43991866252215,6.7603082376262265", + "point": "51.43738235432273,6.682804435837731", + "startLcPosition": "14", + "impact": { + "lower": "Duisburg", + "upper": "Duisburg-Rheinhausen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Venlo -> Essen", + "title": "A40 | Duisburg-Rheinhausen - Duisburg", + "startTimestamp": "2025-12-14T00:00:00+01:00", + "coordinate": { + "lat": 51.43738235432273, + "long": 6.682804435837731 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "A40: Venlo -> Essen, zwischen 0.7 km hinter AS Duisburg-Rheinhausen und 1.5 km vor AK Duisburg", + "", + "L\u00e4nge: 5.73 km | Maximale Durchfahrtsbreite: 8.45 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.682804436, + 51.437382354 + ], + [ + 6.6833468, + 51.437442101 + ], + [ + 6.6840899, + 51.437441601 + ], + [ + 6.6850694, + 51.437374901 + ], + [ + 6.6857893, + 51.437310501 + ], + [ + 6.686695, + 51.437211701 + ], + [ + 6.6877258, + 51.437076601 + ], + [ + 6.688803, + 51.436909401 + ], + [ + 6.6904055, + 51.436625801 + ], + [ + 6.6908997, + 51.436509301 + ], + [ + 6.6921705, + 51.436268701 + ], + [ + 6.6938986, + 51.435947901 + ], + [ + 6.6942182, + 51.435891301 + ], + [ + 6.6943721, + 51.435867101 + ], + [ + 6.6957909, + 51.435673001 + ], + [ + 6.6962214, + 51.435620001 + ], + [ + 6.6973043, + 51.435531201 + ], + [ + 6.6979628, + 51.435484901 + ], + [ + 6.6993283, + 51.435443001 + ], + [ + 6.6999276, + 51.435446801 + ], + [ + 6.7005172, + 51.435451201 + ], + [ + 6.7010827, + 51.435471301 + ], + [ + 6.7017823, + 51.435506401 + ], + [ + 6.7025056, + 51.435549001 + ], + [ + 6.7030814, + 51.435567601 + ], + [ + 6.7037611, + 51.435545701 + ], + [ + 6.7043725, + 51.435525901 + ], + [ + 6.7052165, + 51.435514501 + ], + [ + 6.7062434, + 51.435549201 + ], + [ + 6.7072124, + 51.435709201 + ], + [ + 6.7183806, + 51.437610701 + ], + [ + 6.7191398, + 51.437758501 + ], + [ + 6.7198754, + 51.437922101 + ], + [ + 6.7209471, + 51.438189901 + ], + [ + 6.722128, + 51.438358801 + ], + [ + 6.7230833, + 51.438453401 + ], + [ + 6.7239016, + 51.438502001 + ], + [ + 6.7249739, + 51.438524601 + ], + [ + 6.7255895, + 51.438499301 + ], + [ + 6.7267398, + 51.438426101 + ], + [ + 6.7275534, + 51.438334701 + ], + [ + 6.7284697, + 51.438183201 + ], + [ + 6.7295708, + 51.437940901 + ], + [ + 6.7306183, + 51.437630601 + ], + [ + 6.7314702, + 51.437327501 + ], + [ + 6.7322849, + 51.436991601 + ], + [ + 6.732899, + 51.436741001 + ], + [ + 6.7345488, + 51.436103001 + ], + [ + 6.7353604, + 51.435858301 + ], + [ + 6.736274, + 51.435622201 + ], + [ + 6.7377102, + 51.435300801 + ], + [ + 6.7381051, + 51.435235601 + ], + [ + 6.7390058, + 51.435100201 + ], + [ + 6.7400219, + 51.434974001 + ], + [ + 6.7404797, + 51.434925201 + ], + [ + 6.7416203, + 51.434845601 + ], + [ + 6.7423626, + 51.434810801 + ], + [ + 6.7431907, + 51.434801301 + ], + [ + 6.7434355, + 51.434800301 + ], + [ + 6.7448973, + 51.434832001 + ], + [ + 6.7461943, + 51.434906301 + ], + [ + 6.7474469, + 51.434995401 + ], + [ + 6.7483473, + 51.435118501 + ], + [ + 6.7490642, + 51.435200501 + ], + [ + 6.7497374, + 51.435334101 + ], + [ + 6.7506198, + 51.435454501 + ], + [ + 6.7511725, + 51.435546901 + ], + [ + 6.7518405, + 51.435669801 + ], + [ + 6.7526449, + 51.435839801 + ], + [ + 6.7534424, + 51.436031701 + ], + [ + 6.7542389, + 51.436267401 + ], + [ + 6.7550686, + 51.436554101 + ], + [ + 6.7557419, + 51.436866101 + ], + [ + 6.7563502, + 51.437156201 + ], + [ + 6.756765, + 51.437362201 + ], + [ + 6.7571064, + 51.437537401 + ], + [ + 6.7574668, + 51.437733101 + ], + [ + 6.7584391, + 51.438389901 + ], + [ + 6.758875, + 51.438702801 + ], + [ + 6.7593225, + 51.439056401 + ], + [ + 6.7598995, + 51.439550901 + ], + [ + 6.760308238, + 51.439918663 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2025-12-14_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de105", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.436291459043154,6.734061478571012,51.435375228478634,6.737377623785799", + "point": "51.436291459043154,6.734061478571012", + "startLcPosition": "16", + "impact": { + "lower": "Duisburg-H\u00e4fen", + "upper": "Rheinbr\u00fccke Neuenkamp", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Venlo -> Essen", + "title": "A40 | Rheinbr\u00fccke Neuenkamp - Duisburg-H\u00e4fen", + "startTimestamp": "2025-12-14T00:00:00+01:00", + "coordinate": { + "lat": 51.436291459043154, + "long": 6.734061478571012 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "A40: Venlo -> Essen, zwischen 1.6 km hinter Rheinbr\u00fccke Neuenkamp und 0.9 km vor AS Duisburg-H\u00e4fen", + "", + "L\u00e4nge: 0.26 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.734061479, + 51.436291459 + ], + [ + 6.7345488, + 51.436103001 + ], + [ + 6.7353604, + 51.435858301 + ], + [ + 6.736274, + 51.435622201 + ], + [ + 6.737377624, + 51.435375228 + ] + ] + } + }, + { + "identifier": "2023-001968--vi-bs.2026-02-02_00-00-00-000.devi-zus.2022-12-03_00-00-00-000.f_001.de222", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.44624317391653,6.778533286926666,51.447546457806695,6.7936164997075466", + "point": "51.44624317391653,6.778533286926666", + "startLcPosition": "17", + "impact": { + "lower": "Kaiserberg", + "upper": "Duisburg-H\u00e4fen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Duisburg -> Essen", + "title": "A40 | Duisburg-H\u00e4fen - Kaiserberg", + "startTimestamp": "2026-02-02T00:00:00+01:00", + "coordinate": { + "lat": 51.44624317391653, + "long": 6.778533286926666 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.02.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A40: Duisburg -> Essen, zwischen 2.4 km hinter AS Duisburg-H\u00e4fen und 0.4 km vor AK Kaiserberg", + "", + "L\u00e4nge: 1.08 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A3 - Umbau AK Kaiserberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.778533287, + 51.446243174 + ], + [ + 6.7798388, + 51.446460601 + ], + [ + 6.7805728, + 51.446582901 + ], + [ + 6.784104, + 51.447170401 + ], + [ + 6.7848857, + 51.447293601 + ], + [ + 6.7857464, + 51.447420001 + ], + [ + 6.7861987, + 51.447485501 + ], + [ + 6.7866574, + 51.447548601 + ], + [ + 6.7871043, + 51.447603201 + ], + [ + 6.7875929, + 51.447657401 + ], + [ + 6.7879279, + 51.447691801 + ], + [ + 6.7882792, + 51.447722401 + ], + [ + 6.7887068, + 51.447753501 + ], + [ + 6.7892305, + 51.447781201 + ], + [ + 6.7903349, + 51.447798701 + ], + [ + 6.7909558, + 51.447790201 + ], + [ + 6.7914855, + 51.447767501 + ], + [ + 6.7925686, + 51.447679801 + ], + [ + 6.7934657, + 51.447571401 + ], + [ + 6.7936165, + 51.447546458 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2025-12-14_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de84", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43998901344297,6.760145824762467,51.43753264954587,6.682798586854799", + "point": "51.43998901344297,6.760145824762467", + "startLcPosition": "18", + "impact": { + "lower": "Duisburg-Rheinhausen", + "upper": "Duisburg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Essen -> Venlo", + "title": "A40 | Duisburg - Duisburg-Rheinhausen", + "startTimestamp": "2025-12-14T00:00:00+01:00", + "coordinate": { + "lat": 51.43998901344297, + "long": 6.760145824762467 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "A40: Essen -> Venlo, zwischen 1.5 km hinter AK Duisburg und 0.7 km vor AS Duisburg-Rheinhausen", + "", + "L\u00e4nge: 5.73 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.760145825, + 51.439989013 + ], + [ + 6.759743, + 51.439624601 + ], + [ + 6.7591615, + 51.439138001 + ], + [ + 6.7587066, + 51.438752201 + ], + [ + 6.7578888, + 51.438193501 + ], + [ + 6.7572902, + 51.437820701 + ], + [ + 6.7566703, + 51.437450401 + ], + [ + 6.7562377, + 51.437236401 + ], + [ + 6.7552668, + 51.436806601 + ], + [ + 6.7541384, + 51.436393501 + ], + [ + 6.7533322, + 51.436164201 + ], + [ + 6.7527256, + 51.436019901 + ], + [ + 6.7520602, + 51.435877301 + ], + [ + 6.7517505, + 51.435810901 + ], + [ + 6.7510211, + 51.435657301 + ], + [ + 6.7504072, + 51.435559301 + ], + [ + 6.7495072, + 51.435419501 + ], + [ + 6.7486485, + 51.435218701 + ], + [ + 6.7480402, + 51.435153201 + ], + [ + 6.7473268, + 51.435080401 + ], + [ + 6.7463526, + 51.434994201 + ], + [ + 6.7449171, + 51.434915101 + ], + [ + 6.7432263, + 51.434892901 + ], + [ + 6.7429923, + 51.434893001 + ], + [ + 6.7416415, + 51.434925101 + ], + [ + 6.7405639, + 51.435010901 + ], + [ + 6.7400545, + 51.435060801 + ], + [ + 6.7393139, + 51.435151701 + ], + [ + 6.7389559, + 51.435201501 + ], + [ + 6.7381239, + 51.435327401 + ], + [ + 6.7377283, + 51.435402201 + ], + [ + 6.7363165, + 51.435701501 + ], + [ + 6.7353904, + 51.435950201 + ], + [ + 6.7346202, + 51.436199901 + ], + [ + 6.733007, + 51.436833101 + ], + [ + 6.7323491, + 51.437088201 + ], + [ + 6.7315463, + 51.437409801 + ], + [ + 6.7307051, + 51.437719101 + ], + [ + 6.7296441, + 51.438020301 + ], + [ + 6.7285387, + 51.438280601 + ], + [ + 6.7276054, + 51.438437201 + ], + [ + 6.7267605, + 51.438534701 + ], + [ + 6.7255929, + 51.438605001 + ], + [ + 6.7249773, + 51.438625101 + ], + [ + 6.7238975, + 51.438597601 + ], + [ + 6.72305, + 51.438542401 + ], + [ + 6.7220852, + 51.438445901 + ], + [ + 6.7214736, + 51.438360801 + ], + [ + 6.7209068, + 51.438261401 + ], + [ + 6.7202731, + 51.438123901 + ], + [ + 6.7198326, + 51.438001801 + ], + [ + 6.7191454, + 51.437846601 + ], + [ + 6.7183388, + 51.437703101 + ], + [ + 6.7071598, + 51.435804601 + ], + [ + 6.706569, + 51.435712301 + ], + [ + 6.7062416, + 51.435675201 + ], + [ + 6.7052093, + 51.435641501 + ], + [ + 6.703627, + 51.435682701 + ], + [ + 6.7029332, + 51.435635701 + ], + [ + 6.7020744, + 51.435576501 + ], + [ + 6.7010405, + 51.435526101 + ], + [ + 6.7002547, + 51.435498201 + ], + [ + 6.6995264, + 51.435500201 + ], + [ + 6.6987442, + 51.435517601 + ], + [ + 6.69798, + 51.435544901 + ], + [ + 6.6971804, + 51.435595901 + ], + [ + 6.6962695, + 51.435672201 + ], + [ + 6.6958413, + 51.435719801 + ], + [ + 6.694392, + 51.435922401 + ], + [ + 6.6942356, + 51.435946501 + ], + [ + 6.6931374, + 51.436136201 + ], + [ + 6.6921734, + 51.436319401 + ], + [ + 6.6910029, + 51.436541101 + ], + [ + 6.6904123, + 51.436683701 + ], + [ + 6.6887964, + 51.436967501 + ], + [ + 6.6877551, + 51.437129701 + ], + [ + 6.6866955, + 51.437265401 + ], + [ + 6.6850812, + 51.437422801 + ], + [ + 6.6839044, + 51.437505701 + ], + [ + 6.682798587, + 51.43753265 + ] + ] + } + }, + { + "identifier": "2023-001968--vi-bs.2026-02-02_00-00-00-000.devi-zus.2022-12-03_00-00-00-000.f_001.de224", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.447546457806695,6.7936164997075466,51.44163494154908,6.812030529572847", + "point": "51.447546457806695,6.7936164997075466", + "startLcPosition": "18", + "impact": { + "lower": "M\u00fclheim an der Ruhr", + "upper": "Duisburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Duisburg -> Essen", + "title": "A40 | Duisburg - M\u00fclheim an der Ruhr", + "startTimestamp": "2026-02-02T00:00:00+01:00", + "coordinate": { + "lat": 51.447546457806695, + "long": 6.7936164997075466 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.02.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A40: Duisburg -> Essen, zwischen 1.1 km hinter AK Duisburg und 2.5 km vor AS M\u00fclheim an der Ruhr", + "", + "L\u00e4nge: 1.46 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A3 - Umbau AK Kaiserberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.7936165, + 51.447546458 + ], + [ + 6.794274, + 51.447437701 + ], + [ + 6.7950465, + 51.447283201 + ], + [ + 6.7957197, + 51.447118801 + ], + [ + 6.7963822, + 51.446932901 + ], + [ + 6.7972043, + 51.446672701 + ], + [ + 6.7978379, + 51.446451701 + ], + [ + 6.7982023, + 51.446312001 + ], + [ + 6.7993322, + 51.445841601 + ], + [ + 6.8000242, + 51.445504901 + ], + [ + 6.8021852, + 51.444399201 + ], + [ + 6.8036983, + 51.443669801 + ], + [ + 6.8048773, + 51.443175901 + ], + [ + 6.8060783, + 51.442748501 + ], + [ + 6.8071979, + 51.442432401 + ], + [ + 6.8081584, + 51.442196801 + ], + [ + 6.8091201, + 51.441999701 + ], + [ + 6.8100282, + 51.441853201 + ], + [ + 6.8108475, + 51.441755001 + ], + [ + 6.8118478, + 51.441650901 + ], + [ + 6.81203053, + 51.441634942 + ] + ] + } + }, + { + "identifier": "2023-001968--vi-bs.2026-02-02_00-00-00-000.devi-zus.2022-12-03_00-00-00-000.f_001.de226", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.44171815494362,6.814907684712037,51.447701740494566,6.793666625029628", + "point": "51.44171815494362,6.814907684712037", + "startLcPosition": "21", + "impact": { + "lower": "Duisburg", + "upper": "M\u00fclheim an der Ruhr", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Essen -> Duisburg", + "title": "A40 | M\u00fclheim an der Ruhr - Duisburg", + "startTimestamp": "2026-02-02T00:00:00+01:00", + "coordinate": { + "lat": 51.44171815494362, + "long": 6.814907684712037 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.02.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A40: Essen -> Duisburg, zwischen 2.3 km hinter AS M\u00fclheim an der Ruhr und 1.1 km vor AK Duisburg", + "", + "L\u00e4nge: 1.66 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A3 - Umbau AK Kaiserberg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.814907685, + 51.441718155 + ], + [ + 6.8147817, + 51.441706801 + ], + [ + 6.8144483, + 51.441679501 + ], + [ + 6.8141978, + 51.441669801 + ], + [ + 6.813527, + 51.441665801 + ], + [ + 6.8125956, + 51.441710901 + ], + [ + 6.8118582, + 51.441764301 + ], + [ + 6.8115455, + 51.441797501 + ], + [ + 6.8108899, + 51.441883201 + ], + [ + 6.8102052, + 51.441997001 + ], + [ + 6.8095573, + 51.442139401 + ], + [ + 6.808734, + 51.442266101 + ], + [ + 6.8074313, + 51.442596501 + ], + [ + 6.8063422, + 51.442882101 + ], + [ + 6.8052826, + 51.443222001 + ], + [ + 6.8048432, + 51.443358401 + ], + [ + 6.8040213, + 51.443661201 + ], + [ + 6.8034631, + 51.443909701 + ], + [ + 6.8028713, + 51.444192601 + ], + [ + 6.8022384, + 51.444535801 + ], + [ + 6.8016154, + 51.444857601 + ], + [ + 6.8009609, + 51.445166901 + ], + [ + 6.8003253, + 51.445490001 + ], + [ + 6.7998666, + 51.445713501 + ], + [ + 6.7994515, + 51.445909301 + ], + [ + 6.7979094, + 51.446608801 + ], + [ + 6.797444, + 51.446771501 + ], + [ + 6.7964828, + 51.447084701 + ], + [ + 6.7958041, + 51.447271101 + ], + [ + 6.7951204, + 51.447437101 + ], + [ + 6.7943252, + 51.447595701 + ], + [ + 6.793666625, + 51.44770174 + ] + ] + } + }, + { + "identifier": "2026-000029--vi-bs.2026-03-23_00-00-00-000.devi-zus.2026-03-23_00-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.44785881149337,6.915995509153103,51.43814768926432,6.925483269559624", + "point": "51.44785881149337,6.915995509153103", + "startLcPosition": "24", + "impact": { + "lower": "M\u00fclheim-Hei\u00dfen", + "upper": "M\u00fclheim an der Ruhr-Winkhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Duisburg -> Essen", + "title": "A40 | M\u00fclheim an der Ruhr-Winkhausen - M\u00fclheim-Hei\u00dfen", + "startTimestamp": "2026-03-23T00:00:00+01:00", + "coordinate": { + "lat": 51.44785881149337, + "long": 6.915995509153103 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 00:00 Uhr", + "Ende: 13.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A40: Duisburg -> Essen, zwischen 0.2 km hinter AS M\u00fclheim an der Ruhr-Winkhausen und 0.5 km vor AS M\u00fclheim-Hei\u00dfen", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A40 AS MH-Winkhausen bis AS MH-Hei\u00dfen (BW Hardenberg)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.915995509, + 51.447858811 + ], + [ + 6.9174665, + 51.447042101 + ], + [ + 6.918466, + 51.446495601 + ], + [ + 6.9190069, + 51.446198801 + ], + [ + 6.9200917, + 51.445569001 + ], + [ + 6.9208839, + 51.445075301 + ], + [ + 6.9213211, + 51.444761601 + ], + [ + 6.9217458, + 51.444401001 + ], + [ + 6.922123, + 51.444021101 + ], + [ + 6.9223321, + 51.443775901 + ], + [ + 6.9225233, + 51.443520701 + ], + [ + 6.9227531, + 51.443122901 + ], + [ + 6.9232204, + 51.442176701 + ], + [ + 6.9240442, + 51.440307001 + ], + [ + 6.9242622, + 51.439842601 + ], + [ + 6.9245222, + 51.439350601 + ], + [ + 6.9247587, + 51.438984601 + ], + [ + 6.9250086, + 51.438660401 + ], + [ + 6.9252887, + 51.438340701 + ], + [ + 6.92548327, + 51.438147689 + ] + ] + } + }, + { + "identifier": "2026-000029--vi-bs.2026-03-23_00-00-00-000.devi-zus.2026-03-23_00-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43513347217877,6.934171169272769,51.44632127370147,6.919103977756843", + "point": "51.43513347217877,6.934171169272769", + "startLcPosition": "26", + "impact": { + "lower": "M\u00fclheim an der Ruhr-Winkhausen", + "upper": "M\u00fclheim-Heimaterde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Essen -> Duisburg", + "title": "A40 | M\u00fclheim-Heimaterde - M\u00fclheim an der Ruhr-Winkhausen", + "startTimestamp": "2026-03-23T00:00:00+01:00", + "coordinate": { + "lat": 51.43513347217877, + "long": 6.934171169272769 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 00:00 Uhr", + "Ende: 13.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A40: Essen -> Duisburg, zwischen 1.1 km hinter AS M\u00fclheim-Heimaterde und 0.5 km vor AS M\u00fclheim an der Ruhr-Winkhausen", + "", + "L\u00e4nge: 1.74 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A40 AS MH-Winkhausen bis AS MH-Hei\u00dfen (BW Hardenberg)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.934171169, + 51.435133472 + ], + [ + 6.9340902, + 51.435140801 + ], + [ + 6.9334692, + 51.435216301 + ], + [ + 6.932659, + 51.435335701 + ], + [ + 6.9319636, + 51.435459901 + ], + [ + 6.9313044, + 51.435588801 + ], + [ + 6.930605, + 51.435747101 + ], + [ + 6.9298633, + 51.435938201 + ], + [ + 6.9290475, + 51.436201501 + ], + [ + 6.9284785, + 51.436425801 + ], + [ + 6.9278148, + 51.436730701 + ], + [ + 6.9273406, + 51.436976001 + ], + [ + 6.9269735, + 51.437206301 + ], + [ + 6.9264429, + 51.437571501 + ], + [ + 6.9260838, + 51.437856501 + ], + [ + 6.9258405, + 51.438077001 + ], + [ + 6.9253277, + 51.438580401 + ], + [ + 6.9251322, + 51.438805001 + ], + [ + 6.9249571, + 51.439045001 + ], + [ + 6.9247372, + 51.439383401 + ], + [ + 6.9245579, + 51.439707601 + ], + [ + 6.9243296, + 51.440166301 + ], + [ + 6.9242568, + 51.440312701 + ], + [ + 6.9234112, + 51.442209501 + ], + [ + 6.9231805, + 51.442714701 + ], + [ + 6.9229548, + 51.443158701 + ], + [ + 6.9227195, + 51.443568401 + ], + [ + 6.9225169, + 51.443846601 + ], + [ + 6.922292, + 51.444111901 + ], + [ + 6.9219235, + 51.444482701 + ], + [ + 6.921492, + 51.444845001 + ], + [ + 6.9210388, + 51.445176501 + ], + [ + 6.9202436, + 51.445666501 + ], + [ + 6.9192097, + 51.446260401 + ], + [ + 6.919103978, + 51.446321274 + ] + ] + } + }, + { + "identifier": "2024-018184--vi-bs.2016-10-12_06-00-00-000.devi-bs.2016-10-12_06-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.492549626706115,7.353315125950183,51.49253863314097,7.355268659676123", + "point": "51.492549626706115,7.353315125950183", + "startLcPosition": "51", + "impact": { + "lower": "Dortmund-Kley", + "upper": "Beverbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Essen -> Dortmund", + "title": "A40 | Beverbach - Dortmund-Kley", + "startTimestamp": "2016-10-12T06:00:00+02:00", + "coordinate": { + "lat": 51.492549626706115, + "long": 7.353315125950183 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.10.16 um 06:00 Uhr", + "Ende: 31.12.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A40: Essen -> Dortmund, zwischen 1.1 km hinter Beverbach und 0.8 km vor AS Dortmund-Kley", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A40 - Kompensation BW DB Somborn - Standstreifen gesperrt - AlD 18184" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.353315126, + 51.492549627 + ], + [ + 7.3534054, + 51.492546301 + ], + [ + 7.3536637, + 51.492537801 + ], + [ + 7.354153, + 51.492526101 + ], + [ + 7.3544352, + 51.492524301 + ], + [ + 7.3546981, + 51.492525101 + ], + [ + 7.354955, + 51.492528501 + ], + [ + 7.3551136, + 51.492533601 + ], + [ + 7.35526866, + 51.492538633 + ] + ] + } + }, + { + "identifier": "2024-018184--vi-bs.2016-10-12_06-00-00-000.devi-bs.2016-10-12_06-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.49272126507575,7.356457694678955,51.49264231479743,7.354026700209961", + "point": "51.49272126507575,7.356457694678955", + "startLcPosition": "52", + "impact": { + "lower": "Beverbach", + "upper": "Dortmund-Kley", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Essen", + "title": "A40 | Dortmund-Kley - Beverbach", + "startTimestamp": "2016-10-12T06:00:00+02:00", + "coordinate": { + "lat": 51.49272126507575, + "long": 7.356457694678955 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.10.16 um 06:00 Uhr", + "Ende: 31.12.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A40: Dortmund -> Essen, zwischen 0.7 km hinter AS Dortmund-Kley und 1.1 km vor Beverbach", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A40 - Kompensation BW DB Somborn - Standstreifen gesperrt - AlD 18184" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.356457695, + 51.492721265 + ], + [ + 7.356209, + 51.492702801 + ], + [ + 7.3559486, + 51.492685501 + ], + [ + 7.3556977, + 51.492671701 + ], + [ + 7.3554388, + 51.492661401 + ], + [ + 7.3553585, + 51.492659301 + ], + [ + 7.3551809, + 51.492653901 + ], + [ + 7.3546623, + 51.492643701 + ], + [ + 7.3543798, + 51.492642601 + ], + [ + 7.3541527, + 51.492641301 + ], + [ + 7.3540267, + 51.492642315 + ] + ] + } + }, + { + "identifier": "2026-017153--vi-bs.2026-04-09_20-00-00-000_008.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.37939907539684,6.242663692378057,51.380133954707524,6.243779972029883", + "point": "51.37939907539684,6.242663692378057", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Niederdorf (aus Richtung Niederdorf)", + "title": "A40 Bodenuntersuchungen", + "coordinate": { + "lat": 51.37939907539684, + "long": 6.242663692378057 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "Auffahrt auf die A40: AS Niederdorf (aus Richtung Niederdorf)", + "", + "L\u00e4nge: 0.12 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A40 Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.242663692, + 51.379399075 + ], + [ + 6.242765, + 51.379405001 + ], + [ + 6.2428625, + 51.379416501 + ], + [ + 6.2429683, + 51.379440601 + ], + [ + 6.2430752, + 51.379476701 + ], + [ + 6.2431505, + 51.379512001 + ], + [ + 6.2432237, + 51.379558601 + ], + [ + 6.2432951, + 51.379611001 + ], + [ + 6.2433462, + 51.379664201 + ], + [ + 6.2433885, + 51.379722401 + ], + [ + 6.2434242, + 51.379779201 + ], + [ + 6.2434779, + 51.379860001 + ], + [ + 6.243509, + 51.379901801 + ], + [ + 6.2435401, + 51.379946201 + ], + [ + 6.2435836, + 51.379999001 + ], + [ + 6.2436302, + 51.380041101 + ], + [ + 6.2437003, + 51.380091201 + ], + [ + 6.2437578, + 51.380123601 + ], + [ + 6.243779972, + 51.380133955 + ] + ] + } + }, + { + "identifier": "2026-017147--vi-bs.2026-04-09_20-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.381017327372255,6.243371660599351,51.38162127045338,6.245569245455638", + "point": "51.381017327372255,6.243371660599351", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Niederdorf (aus Richtung Straelen)", + "title": "A40 Bodenuntersuchungen", + "coordinate": { + "lat": 51.381017327372255, + "long": 6.243371660599351 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "Auffahrt auf die A40: AS Niederdorf (aus Richtung Straelen)", + "", + "L\u00e4nge: 0.17 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A40 Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.243371661, + 51.381017327 + ], + [ + 6.2433809, + 51.381015301 + ], + [ + 6.243511, + 51.380998201 + ], + [ + 6.2436357, + 51.380990401 + ], + [ + 6.2437454, + 51.380990901 + ], + [ + 6.243859, + 51.380999001 + ], + [ + 6.2439865, + 51.381017801 + ], + [ + 6.2440557, + 51.381030101 + ], + [ + 6.2441141, + 51.381044101 + ], + [ + 6.2444657, + 51.381180901 + ], + [ + 6.2453143, + 51.381556301 + ], + [ + 6.2454142, + 51.381588301 + ], + [ + 6.2455194, + 51.381613701 + ], + [ + 6.245569245, + 51.38162127 + ] + ] + } + }, + { + "identifier": "2026-017145--vi-bs.2026-04-09_20-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.381646011568066,6.245380702024193,51.38109632592414,6.244052366118201", + "point": "51.381646011568066,6.245380702024193", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Niederdorf (aus Richtung Straelen)", + "title": "A40 Bodenuntersuchungen", + "coordinate": { + "lat": 51.381646011568066, + "long": 6.245380702024193 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "Abfahrt von der A40: AS Niederdorf (aus Richtung Straelen)", + "", + "L\u00e4nge: 0.11 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A40 Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.245380702, + 51.381646012 + ], + [ + 6.245283, + 51.381612301 + ], + [ + 6.2444118, + 51.381238801 + ], + [ + 6.2442517, + 51.381168201 + ], + [ + 6.2441716, + 51.381137101 + ], + [ + 6.2440889, + 51.381107701 + ], + [ + 6.244052366, + 51.381096326 + ] + ] + } + }, + { + "identifier": "2026-017149--vi-bs.2026-04-09_20-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.379981072858655,6.23732955395495,51.379658179657994,6.241773648087411", + "point": "51.379981072858655,6.23732955395495", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Venlo -> Duisburg", + "title": "A40 von Niederdorf (AS) Bodenuntersuchungen", + "coordinate": { + "lat": 51.379981072858655, + "long": 6.23732955395495 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "Von A40: Venlo -> Duisburg, zwischen 1.2 km hinter Niederdorf und AS Niederdorf nach Abfahrt von der A40: AS Niederdorf (aus Richtung Niederdorf)", + "", + "L\u00e4nge: 0.32 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A40 von Niederdorf (AS) Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.237329554, + 51.379981073 + ], + [ + 6.2377405, + 51.379976101 + ], + [ + 6.2384876, + 51.379978801 + ], + [ + 6.2392275, + 51.379988501 + ], + [ + 6.239975, + 51.380016601 + ], + [ + 6.2404474, + 51.380036001 + ], + [ + 6.2409197, + 51.379946301 + ], + [ + 6.2410115, + 51.379933101 + ], + [ + 6.2411431, + 51.379906301 + ], + [ + 6.2412421, + 51.379881201 + ], + [ + 6.2413397, + 51.379850101 + ], + [ + 6.2414903, + 51.379796401 + ], + [ + 6.2415849, + 51.379757601 + ], + [ + 6.2416795, + 51.379714001 + ], + [ + 6.241773648, + 51.37965818 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2026-02-15_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de109", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.435780018969794,6.707002452032019,51.43688467982157,6.706746744368904", + "point": "51.435780018969794,6.707002452032019", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Duisburg -> Venlo", + "title": "A40 Br\u00fcckeninstandsetzung Neuenkamp", + "startTimestamp": "2026-02-15T00:00:00+01:00", + "coordinate": { + "lat": 51.435780018969794, + "long": 6.707002452032019 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.02.26 um 00:00 Uhr", + "Ende: 20.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "Von A40: Duisburg -> Venlo, zwischen AS Duisburg-Homberg und AS Duisburg-Rheinhausen nach Abfahrt von der A40: AS Duisburg-Homberg (aus Richtung Rheinbr\u00fccke Neuenkamp)", + "", + "L\u00e4nge: 0.79 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.707002452, + 51.435780019 + ], + [ + 6.706569, + 51.435712301 + ], + [ + 6.7062416, + 51.435675201 + ], + [ + 6.7052093, + 51.435641501 + ], + [ + 6.703627, + 51.435682701 + ], + [ + 6.7028484, + 51.435702101 + ], + [ + 6.7024333, + 51.435691601 + ], + [ + 6.7022191, + 51.435727701 + ], + [ + 6.7020316, + 51.435791801 + ], + [ + 6.70188, + 51.435886401 + ], + [ + 6.7017705, + 51.435994601 + ], + [ + 6.70171, + 51.436111001 + ], + [ + 6.7016826, + 51.436240801 + ], + [ + 6.7017308, + 51.436383201 + ], + [ + 6.7017987, + 51.436490101 + ], + [ + 6.7019771, + 51.436630301 + ], + [ + 6.7021566, + 51.436712301 + ], + [ + 6.7023419, + 51.436758501 + ], + [ + 6.7025315, + 51.436785301 + ], + [ + 6.7036321, + 51.436813601 + ], + [ + 6.7053336, + 51.436848001 + ], + [ + 6.706746744, + 51.43688468 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2025-12-14_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de103", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43482658948544,6.744647699175995,51.43441928770518,6.75142225442246", + "point": "51.43482658948544,6.744647699175995", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Venlo -> Essen", + "title": "A40 Br\u00fcckeninstandsetzung Neuenkamp", + "startTimestamp": "2025-12-14T00:00:00+01:00", + "coordinate": { + "lat": 51.43482658948544, + "long": 6.744647699175995 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "Von A40: Venlo -> Essen, zwischen 2.3 km hinter Rheinbr\u00fccke Neuenkamp und AS Duisburg-H\u00e4fen nach Abfahrt von der A40: AS Duisburg-H\u00e4fen (aus Richtung Rheinbr\u00fccke Neuenkamp)", + "", + "L\u00e4nge: 0.51 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.744647699, + 51.434826589 + ], + [ + 6.7448973, + 51.434832001 + ], + [ + 6.7461943, + 51.434906301 + ], + [ + 6.7474469, + 51.434995401 + ], + [ + 6.7479833, + 51.434970501 + ], + [ + 6.7482154, + 51.434932701 + ], + [ + 6.7484483, + 51.434857601 + ], + [ + 6.7486462, + 51.434760701 + ], + [ + 6.7489362, + 51.434556101 + ], + [ + 6.7490736, + 51.434461301 + ], + [ + 6.7492255, + 51.434386601 + ], + [ + 6.7494532, + 51.434325501 + ], + [ + 6.7496667, + 51.434312701 + ], + [ + 6.7498476, + 51.434326401 + ], + [ + 6.7499909, + 51.434364801 + ], + [ + 6.7501775, + 51.434429701 + ], + [ + 6.7503705, + 51.434508601 + ], + [ + 6.7505473, + 51.434561201 + ], + [ + 6.7506765, + 51.434590901 + ], + [ + 6.7508304, + 51.434600401 + ], + [ + 6.7509017, + 51.434598101 + ], + [ + 6.7510679, + 51.434561101 + ], + [ + 6.7512907, + 51.434481101 + ], + [ + 6.751422254, + 51.434419288 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2025-12-14_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de97", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43556148387827,6.749542792277293,51.435772514869385,6.749465240234408", + "point": "51.43556148387827,6.749542792277293", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-H\u00e4fen (aus Richtung Rheinbr\u00fccke Neuenkamp)", + "title": "A40 Br\u00fcckeninstandsetzung Neuenkamp", + "startTimestamp": "2025-12-14T00:00:00+01:00", + "coordinate": { + "lat": 51.43556148387827, + "long": 6.749542792277293 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "Auffahrt auf die A40: AS Duisburg-H\u00e4fen (aus Richtung Rheinbr\u00fccke Neuenkamp)", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.749542792, + 51.435561484 + ], + [ + 6.749456, + 51.435548201 + ], + [ + 6.7481792, + 51.435421601 + ], + [ + 6.7480163, + 51.435424001 + ], + [ + 6.7478604, + 51.435439501 + ], + [ + 6.7477546, + 51.435464001 + ], + [ + 6.7476427, + 51.435504201 + ], + [ + 6.7475334, + 51.435560201 + ], + [ + 6.7474365, + 51.435631101 + ], + [ + 6.7473591, + 51.435722301 + ], + [ + 6.7473141, + 51.435849801 + ], + [ + 6.7473115, + 51.435950301 + ], + [ + 6.7473433, + 51.436035201 + ], + [ + 6.7474047, + 51.436135301 + ], + [ + 6.7475061, + 51.436218601 + ], + [ + 6.7476429, + 51.436291401 + ], + [ + 6.7478296, + 51.436346601 + ], + [ + 6.7480249, + 51.436374001 + ], + [ + 6.7482192, + 51.436362401 + ], + [ + 6.7483631, + 51.436335501 + ], + [ + 6.7485157, + 51.436290201 + ], + [ + 6.7486842, + 51.436216001 + ], + [ + 6.7488673, + 51.436097401 + ], + [ + 6.7490617, + 51.436046201 + ], + [ + 6.74946524, + 51.435772515 + ] + ] + } + }, + { + "identifier": "2026-017710--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43556200482527,6.598520960540437,51.435612772481804,6.599595690611933", + "point": "51.43556200482527,6.598520960540437", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Moers (aus Richtung Neukirchen-Vluyn)", + "title": "A40 Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 51.43556200482527, + "long": 6.598520960540437 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:00 Uhr.", + "", + "Abfahrt von der A40: AK Moers (aus Richtung Neukirchen-Vluyn)", + "", + "L\u00e4nge: 0.08 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A40 Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.598520961, + 51.435562005 + ], + [ + 6.5985809, + 51.435565001 + ], + [ + 6.5992598, + 51.435602601 + ], + [ + 6.599595691, + 51.435612772 + ] + ] + } + }, + { + "identifier": "2025-038713--vi-bs.2025-08-28_09-00-00-000.devi-zus.2025-08-28_09-00-00-000_009.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.495034712053524,7.232922503736399,51.49465288401337,7.232542708625854", + "point": "51.495034712053524,7.232922503736399", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bochum-Ruhrstadion (aus Richtung Bochum-Grumme)", + "title": "A40 - Kompensation BW AS Bochum-Ruhrstadion - AlD 38713", + "startTimestamp": "2025-08-28T09:00:00+02:00", + "coordinate": { + "lat": 51.495034712053524, + "long": 7.232922503736399 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.08.25 um 09:00 Uhr", + "Ende: 28.01.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.01.27)", + "", + "Abfahrt von der A40: AS Bochum-Ruhrstadion (aus Richtung Bochum-Grumme)", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A40 - Kompensation BW AS Bochum-Ruhrstadion - AlD 38713" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.232922504, + 51.495034712 + ], + [ + 7.2325486, + 51.494659201 + ], + [ + 7.232542709, + 51.494652884 + ] + ] + } + }, + { + "identifier": "2025-038713--vi-bs.2025-08-28_09-00-00-000.devi-zus.2025-08-28_09-00-00-000_009.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.4946202305409,7.232643896561748,51.49499812504247,7.23303397470435", + "point": "51.4946202305409,7.232643896561748", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bochum-Ruhrstadion (aus Richtung Bochum-Grumme)", + "title": "A40 - Kompensation BW AS Bochum-Ruhrstadion - AlD 38713", + "startTimestamp": "2025-08-28T09:00:00+02:00", + "coordinate": { + "lat": 51.4946202305409, + "long": 7.232643896561748 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.08.25 um 09:00 Uhr", + "Ende: 28.01.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.01.27)", + "", + "Auffahrt auf die A40: AS Bochum-Ruhrstadion (aus Richtung Bochum-Grumme)", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A40 - Kompensation BW AS Bochum-Ruhrstadion - AlD 38713" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.232643897, + 51.494620231 + ], + [ + 7.232647, + 51.494623701 + ], + [ + 7.2327448, + 51.494718401 + ], + [ + 7.233033975, + 51.494998125 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2026-02-15_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de107", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43693494988524,6.706650278714517,51.43550315949246,6.699555397259089", + "point": "51.43693494988524,6.706650278714517", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-Homberg (aus Richtung Rheinbr\u00fccke Neuenkamp)", + "title": "A40 Br\u00fcckeninstandsetzung Neuenkamp", + "startTimestamp": "2026-02-15T00:00:00+01:00", + "coordinate": { + "lat": 51.43693494988524, + "long": 6.706650278714517 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.02.26 um 00:00 Uhr", + "Ende: 20.04.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "Auffahrt auf die A40: AS Duisburg-Homberg (aus Richtung Rheinbr\u00fccke Neuenkamp)", + "", + "L\u00e4nge: 0.56 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.706650279, + 51.43693495 + ], + [ + 6.7023969, + 51.436819301 + ], + [ + 6.7021651, + 51.436795701 + ], + [ + 6.7019677, + 51.436763201 + ], + [ + 6.7018042, + 51.436718001 + ], + [ + 6.7016786, + 51.436667201 + ], + [ + 6.7015274, + 51.436581501 + ], + [ + 6.7014115, + 51.436485101 + ], + [ + 6.7013247, + 51.436403301 + ], + [ + 6.7010192, + 51.436027501 + ], + [ + 6.7008891, + 51.435882401 + ], + [ + 6.7007534, + 51.435781501 + ], + [ + 6.7006284, + 51.435704001 + ], + [ + 6.7005088, + 51.435652301 + ], + [ + 6.7003687, + 51.435607201 + ], + [ + 6.7002125, + 51.435570201 + ], + [ + 6.699555397, + 51.435503159 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2025-12-14_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de101", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43554769257154,6.749795017247302,51.435749542926985,6.752217816367412", + "point": "51.43554769257154,6.749795017247302", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-H\u00e4fen (aus Richtung Rheinbr\u00fccke Neuenkamp) nach A40", + "title": "A40 Br\u00fcckeninstandsetzung Neuenkamp", + "startTimestamp": "2025-12-14T00:00:00+01:00", + "coordinate": { + "lat": 51.43554769257154, + "long": 6.749795017247302 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "Von Auffahrt auf die A40: AS Duisburg-H\u00e4fen (aus Richtung Rheinbr\u00fccke Neuenkamp) nach A40: Duisburg -> Essen, zwischen AS Duisburg-H\u00e4fen und 2.2 km vor AK Duisburg", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.749795017, + 51.435547693 + ], + [ + 6.7499133, + 51.435466501 + ], + [ + 6.7500936, + 51.435249101 + ], + [ + 6.7502192, + 51.435105801 + ], + [ + 6.750298, + 51.434938601 + ], + [ + 6.7503189, + 51.434852301 + ], + [ + 6.7503112, + 51.434764701 + ], + [ + 6.7502867, + 51.434671601 + ], + [ + 6.7502166, + 51.434580601 + ], + [ + 6.7501306, + 51.434514701 + ], + [ + 6.750017, + 51.434460001 + ], + [ + 6.7499001, + 51.434420501 + ], + [ + 6.749761, + 51.434397301 + ], + [ + 6.7495654, + 51.434394901 + ], + [ + 6.7494465, + 51.434412701 + ], + [ + 6.749332, + 51.434449301 + ], + [ + 6.7492147, + 51.434490001 + ], + [ + 6.7491206, + 51.434549501 + ], + [ + 6.7490512, + 51.434617501 + ], + [ + 6.749012, + 51.434685201 + ], + [ + 6.7489818, + 51.434764301 + ], + [ + 6.7489779, + 51.434858201 + ], + [ + 6.7490041, + 51.434933501 + ], + [ + 6.7490601, + 51.435019001 + ], + [ + 6.7491808, + 51.435108001 + ], + [ + 6.7493296, + 51.435172101 + ], + [ + 6.7499209, + 51.435268901 + ], + [ + 6.7506198, + 51.435454501 + ], + [ + 6.7511725, + 51.435546901 + ], + [ + 6.7518405, + 51.435669801 + ], + [ + 6.752217816, + 51.435749543 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2025-12-14_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de95", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43481550485062,6.75111759237404,51.43565869943026,6.750178024104582", + "point": "51.43481550485062,6.75111759237404", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-H\u00e4fen (aus Richtung Duisburg)", + "title": "A40 Br\u00fcckeninstandsetzung Neuenkamp", + "startTimestamp": "2025-12-14T00:00:00+01:00", + "coordinate": { + "lat": 51.43481550485062, + "long": 6.75111759237404 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "Auffahrt auf die A40: AS Duisburg-H\u00e4fen (aus Richtung Duisburg)", + "", + "L\u00e4nge: 0.43 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.751117592, + 51.434815505 + ], + [ + 6.7503841, + 51.435291701 + ], + [ + 6.7498212, + 51.435669601 + ], + [ + 6.7497037, + 51.435871401 + ], + [ + 6.7496371, + 51.435988101 + ], + [ + 6.7496066, + 51.436063901 + ], + [ + 6.749599, + 51.436154101 + ], + [ + 6.7496194, + 51.436259101 + ], + [ + 6.7496678, + 51.436339301 + ], + [ + 6.7497398, + 51.436416501 + ], + [ + 6.749854, + 51.436491801 + ], + [ + 6.7499811, + 51.436541001 + ], + [ + 6.7501479, + 51.436578601 + ], + [ + 6.7503317, + 51.436589001 + ], + [ + 6.7505062, + 51.436575401 + ], + [ + 6.7506462, + 51.436538901 + ], + [ + 6.7507829, + 51.436481501 + ], + [ + 6.7508895, + 51.436404901 + ], + [ + 6.7509856, + 51.436297501 + ], + [ + 6.7510238, + 51.436181301 + ], + [ + 6.751011, + 51.436066101 + ], + [ + 6.7509602, + 51.435965401 + ], + [ + 6.7508746, + 51.435872701 + ], + [ + 6.750723, + 51.435788101 + ], + [ + 6.7505224, + 51.435711401 + ], + [ + 6.750178024, + 51.435658699 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2025-12-14_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de90", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.435285307928424,6.697504472816649,51.43492127886002,6.70767142807165", + "point": "51.435285307928424,6.697504472816649", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-Homberg (aus Richtung Duisburg-Rheinhausen)", + "title": "A40 Br\u00fcckeninstandsetzung Neuenkamp", + "startTimestamp": "2025-12-14T00:00:00+01:00", + "coordinate": { + "lat": 51.435285307928424, + "long": 6.697504472816649 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "Auffahrt auf die A40: AS Duisburg-Homberg (aus Richtung Duisburg-Rheinhausen)", + "", + "L\u00e4nge: 0.72 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.697504473, + 51.435285308 + ], + [ + 6.6978459, + 51.435255001 + ], + [ + 6.6988546, + 51.435194901 + ], + [ + 6.6993822, + 51.435176301 + ], + [ + 6.6997815, + 51.435103901 + ], + [ + 6.7000905, + 51.435090301 + ], + [ + 6.7004142, + 51.435075001 + ], + [ + 6.7009857, + 51.434962701 + ], + [ + 6.7013537, + 51.434847401 + ], + [ + 6.7017368, + 51.434715401 + ], + [ + 6.7020552, + 51.434597901 + ], + [ + 6.7022363, + 51.434550201 + ], + [ + 6.7024619, + 51.434510001 + ], + [ + 6.7027296, + 51.434500201 + ], + [ + 6.7032089, + 51.434541501 + ], + [ + 6.7036562, + 51.434605501 + ], + [ + 6.7050283, + 51.434742201 + ], + [ + 6.707323, + 51.434908401 + ], + [ + 6.707671428, + 51.434921279 + ] + ] + } + }, + { + "identifier": "2023-002248--vi-bs.2025-12-14_00-00-00-000.devi-zus.2021-11-01_00-00-00-000.de88", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.434947850583434,6.707138836638906,51.43526188520674,6.703442960993262", + "point": "51.434947850583434,6.707138836638906", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-Homberg (aus Richtung Duisburg-Rheinhausen)", + "title": "A40 Br\u00fcckeninstandsetzung Neuenkamp", + "startTimestamp": "2025-12-14T00:00:00+01:00", + "coordinate": { + "lat": 51.434947850583434, + "long": 6.707138836638906 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 00:00 Uhr", + "Ende: 01.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.08.26)", + "", + "Auffahrt auf die A40: AS Duisburg-Homberg (aus Richtung Duisburg-Rheinhausen)", + "", + "L\u00e4nge: 0.46 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A40 Br\u00fcckeninstandsetzung Neuenkamp" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.707138837, + 51.434947851 + ], + [ + 6.7064349, + 51.434899401 + ], + [ + 6.7062, + 51.434881201 + ], + [ + 6.7050188, + 51.434779801 + ], + [ + 6.7036653, + 51.434647901 + ], + [ + 6.7031159, + 51.434600901 + ], + [ + 6.7028617, + 51.434581301 + ], + [ + 6.7026594, + 51.434574801 + ], + [ + 6.702504, + 51.434592401 + ], + [ + 6.7023968, + 51.434630701 + ], + [ + 6.7023092, + 51.434680201 + ], + [ + 6.7022525, + 51.434732301 + ], + [ + 6.7022089, + 51.434792001 + ], + [ + 6.7021953, + 51.434859101 + ], + [ + 6.7022011, + 51.434920401 + ], + [ + 6.702232, + 51.434991201 + ], + [ + 6.702278, + 51.435040901 + ], + [ + 6.702333, + 51.435080101 + ], + [ + 6.7024245, + 51.435124501 + ], + [ + 6.7025731, + 51.435167501 + ], + [ + 6.7028286, + 51.435193401 + ], + [ + 6.703442961, + 51.435261885 + ] + ] + } + } + ] + }, + "A42": { + "roadworks": [ + { + "identifier": "2026-017681--vi-bs.2026-04-14_06-30-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.490124060605375,6.580334901718762,51.49117239050563,6.583351425858463", + "point": "51.490124060605375,6.580334901718762", + "startLcPosition": "0", + "impact": { + "lower": "Moers-Nord", + "upper": "Kamp-Lintfort", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Kamp-Lintfort - Moers-Nord", + "coordinate": { + "lat": 51.490124060605375, + "long": 6.580334901718762 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 06:30 bis 16:00 Uhr", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 0.2 km hinter AK Kamp-Lintfort und 3.5 km vor AS Moers-Nord", + "", + "L\u00e4nge: 0.24 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 von Kamp-Lintfort (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.580334902, + 51.490124061 + ], + [ + 6.5830546, + 51.491073901 + ], + [ + 6.583351426, + 51.491172391 + ] + ] + } + }, + { + "identifier": "2026-017633--vi-bs.2026-04-14_06-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.490619938006574,6.581754721806737,51.491058755930425,6.583011232693271", + "point": "51.490619938006574,6.581754721806737", + "startLcPosition": "0", + "impact": { + "lower": "Moers-Nord", + "upper": "Kamp-Lintfort", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Kamp-Lintfort - Moers-Nord", + "coordinate": { + "lat": 51.490619938006574, + "long": 6.581754721806737 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 06:30 bis 16:00 Uhr", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 0.3 km hinter AK Kamp-Lintfort und 3.5 km vor AS Moers-Nord", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 von Kamp-Lintfort (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.581754722, + 51.490619938 + ], + [ + 6.583011233, + 51.491058756 + ] + ] + } + }, + { + "identifier": "2026-017672--vi-bs.2026-04-14_06-30-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.49256218632885,6.588903901350876,51.49220133066062,6.586556018036522", + "point": "51.49256218632885,6.588903901350876", + "startLcPosition": "1", + "impact": { + "lower": "Kamp-Lintfort", + "upper": "Moers-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Moers-Nord - Kamp-Lintfort", + "coordinate": { + "lat": 51.49256218632885, + "long": 6.588903901350876 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 06:30 bis 16:00 Uhr", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 3.1 km hinter AS Moers-Nord und 0.8 km vor AK Kamp-Lintfort", + "", + "L\u00e4nge: 0.17 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 von Kamp-Lintfort (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.588903901, + 51.492562186 + ], + [ + 6.5885934, + 51.492527101 + ], + [ + 6.5876328, + 51.492394301 + ], + [ + 6.5870782, + 51.492301501 + ], + [ + 6.586556018, + 51.492201331 + ] + ] + } + }, + { + "identifier": "2026-017805--vi-bs.2026-04-13_20-00-00-000_010.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.4828938162968,6.666940467096738,51.48121367407932,6.672426897330352", + "point": "51.4828938162968,6.666940467096738", + "startLcPosition": "1", + "impact": { + "lower": "Rheinbr\u00fccke Beeckerwerth", + "upper": "Moers-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Moers-Nord - Rheinbr\u00fccke Beeckerwerth", + "coordinate": { + "lat": 51.4828938162968, + "long": 6.666940467096738 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 2.7 km hinter AS Moers-Nord und 0.6 km vor Rheinbr\u00fccke Beeckerwerth", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A42 von Moers-Nord (AS) nach Rheinbr\u00fccke Beeckerwerth Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.666940467, + 51.482893816 + ], + [ + 6.6672352, + 51.482748101 + ], + [ + 6.6678772, + 51.482461701 + ], + [ + 6.6680861, + 51.482374301 + ], + [ + 6.6687645, + 51.482114801 + ], + [ + 6.6692696, + 51.481946501 + ], + [ + 6.6696034, + 51.481855301 + ], + [ + 6.6704626, + 51.481615801 + ], + [ + 6.6714281, + 51.481394001 + ], + [ + 6.672426897, + 51.481213674 + ] + ] + } + }, + { + "identifier": "2026-015479--vi-bs.2026-04-09_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.48508372672327,6.742078775570654,51.48323310817858,6.775872306844504", + "point": "51.48508372672327,6.742078775570654", + "startLcPosition": "5", + "impact": { + "lower": "Duisburg-Neum\u00fchl", + "upper": "Duisburg-Beeck", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Duisburg-Beeck - Duisburg-Neum\u00fchl", + "coordinate": { + "lat": 51.48508372672327, + "long": 6.742078775570654 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 0.8 km hinter AS Duisburg-Beeck und 1.4 km vor AS Duisburg-Neum\u00fchl", + "", + "L\u00e4nge: 2.51 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 von Duisburg-Beeck (AS) nach Duisburg-Neum\u00fchl (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.742078776, + 51.485083727 + ], + [ + 6.7435298, + 51.485693701 + ], + [ + 6.7446198, + 51.486102401 + ], + [ + 6.7454951, + 51.486388001 + ], + [ + 6.7460587, + 51.486540701 + ], + [ + 6.7470087, + 51.486760901 + ], + [ + 6.7475858, + 51.486877601 + ], + [ + 6.7483445, + 51.487007001 + ], + [ + 6.749261, + 51.487125001 + ], + [ + 6.7502904, + 51.487205301 + ], + [ + 6.7513463, + 51.487237501 + ], + [ + 6.7524099, + 51.487231201 + ], + [ + 6.7533533, + 51.487191101 + ], + [ + 6.7549831, + 51.487085101 + ], + [ + 6.7562592, + 51.486970801 + ], + [ + 6.7577238, + 51.486809201 + ], + [ + 6.7586543, + 51.486691301 + ], + [ + 6.7599981, + 51.486492001 + ], + [ + 6.7618715, + 51.486176001 + ], + [ + 6.7631608, + 51.485897401 + ], + [ + 6.7636643, + 51.485777501 + ], + [ + 6.7645786, + 51.485511601 + ], + [ + 6.7653304, + 51.485268501 + ], + [ + 6.7659811, + 51.485019101 + ], + [ + 6.766712, + 51.484700301 + ], + [ + 6.7670985, + 51.484522101 + ], + [ + 6.7671256, + 51.484509001 + ], + [ + 6.7678604, + 51.484168101 + ], + [ + 6.7683387, + 51.483963301 + ], + [ + 6.7689208, + 51.483739901 + ], + [ + 6.7694672, + 51.483561401 + ], + [ + 6.769845, + 51.483450501 + ], + [ + 6.7702177, + 51.483353201 + ], + [ + 6.7707128, + 51.483244901 + ], + [ + 6.7710579, + 51.483179901 + ], + [ + 6.7712249, + 51.483154701 + ], + [ + 6.7716394, + 51.483092801 + ], + [ + 6.7721326, + 51.483043101 + ], + [ + 6.7726301, + 51.483011201 + ], + [ + 6.7735166, + 51.482988701 + ], + [ + 6.7742113, + 51.483023501 + ], + [ + 6.7748289, + 51.483070201 + ], + [ + 6.7756494, + 51.483187401 + ], + [ + 6.775872307, + 51.483233108 + ] + ] + } + }, + { + "identifier": "2026-015474--vi-bs.2026-04-15_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.48396541621543,6.738979633346491,51.47847197043627,6.705387284768152", + "point": "51.48396541621543,6.738979633346491", + "startLcPosition": "6", + "impact": { + "lower": "Duisburg-Beeckerwerth", + "upper": "Duisburg-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Duisburg-Nord - Duisburg-Beeckerwerth", + "coordinate": { + "lat": 51.48396541621543, + "long": 6.738979633346491 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 2.4 km hinter AK Duisburg-Nord und 0.1 km vor AS Duisburg-Beeckerwerth", + "", + "L\u00e4nge: 2.51 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 von Duisburg-Nord (AK) nach Duisburg-Beeckerwerth (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.738979633, + 51.483965416 + ], + [ + 6.7382314, + 51.483647601 + ], + [ + 6.7364668, + 51.482898101 + ], + [ + 6.733381, + 51.481548701 + ], + [ + 6.731617, + 51.480797501 + ], + [ + 6.7312013, + 51.480629401 + ], + [ + 6.7305384, + 51.480359001 + ], + [ + 6.7298654, + 51.480106101 + ], + [ + 6.7295079, + 51.479976401 + ], + [ + 6.7291877, + 51.479868301 + ], + [ + 6.728493, + 51.479657801 + ], + [ + 6.7277894, + 51.479461201 + ], + [ + 6.7270893, + 51.479292801 + ], + [ + 6.7263413, + 51.479133501 + ], + [ + 6.7255778, + 51.478991901 + ], + [ + 6.7248217, + 51.478882101 + ], + [ + 6.7240589, + 51.478794001 + ], + [ + 6.7233068, + 51.478721401 + ], + [ + 6.7225317, + 51.478651701 + ], + [ + 6.7217403, + 51.478596701 + ], + [ + 6.7210037, + 51.478551301 + ], + [ + 6.7203148, + 51.478517201 + ], + [ + 6.7194323, + 51.478472101 + ], + [ + 6.7187661, + 51.478437701 + ], + [ + 6.718023, + 51.478398501 + ], + [ + 6.7169198, + 51.478356101 + ], + [ + 6.7158097, + 51.478287601 + ], + [ + 6.7150529, + 51.478255201 + ], + [ + 6.7142807, + 51.478217701 + ], + [ + 6.7135259, + 51.478180201 + ], + [ + 6.7128072, + 51.478141701 + ], + [ + 6.7120286, + 51.478107601 + ], + [ + 6.711239, + 51.478079101 + ], + [ + 6.7104721, + 51.478063701 + ], + [ + 6.7096954, + 51.478066301 + ], + [ + 6.7089133, + 51.478093801 + ], + [ + 6.7081337, + 51.478139601 + ], + [ + 6.7073696, + 51.478201901 + ], + [ + 6.7066034, + 51.478287001 + ], + [ + 6.7058347, + 51.478397301 + ], + [ + 6.705387285, + 51.47847197 + ] + ] + } + }, + { + "identifier": "2026-015480--vi-bs.2026-04-13_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.48323310817858,6.775872306844504,51.48677647249648,6.805757130132308", + "point": "51.48323310817858,6.775872306844504", + "startLcPosition": "6", + "impact": { + "lower": "Oberhausen-West", + "upper": "Duisburg-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Duisburg-Nord - Oberhausen-West", + "coordinate": { + "lat": 51.48323310817858, + "long": 6.775872306844504 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 0.4 km hinter AK Duisburg-Nord und 0.6 km vor AK Oberhausen-West", + "", + "L\u00e4nge: 2.26 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 von Duisburg-Nord (AK) nach Oberhausen-West (AK) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.775872307, + 51.483233108 + ], + [ + 6.7762634, + 51.483313301 + ], + [ + 6.7766524, + 51.483404601 + ], + [ + 6.7770391, + 51.483513201 + ], + [ + 6.7775026, + 51.483655301 + ], + [ + 6.7779677, + 51.483821801 + ], + [ + 6.7786071, + 51.484093801 + ], + [ + 6.7795176, + 51.484556601 + ], + [ + 6.7797484, + 51.484680101 + ], + [ + 6.7804723, + 51.485067601 + ], + [ + 6.7810068, + 51.485313201 + ], + [ + 6.7814697, + 51.485491601 + ], + [ + 6.7819186, + 51.485648101 + ], + [ + 6.7825016, + 51.485820301 + ], + [ + 6.7830994, + 51.485952801 + ], + [ + 6.783612, + 51.486050401 + ], + [ + 6.7841482, + 51.486121901 + ], + [ + 6.7849196, + 51.486195901 + ], + [ + 6.7856205, + 51.486220501 + ], + [ + 6.786166, + 51.486213401 + ], + [ + 6.7871132, + 51.486166301 + ], + [ + 6.7878699, + 51.486065001 + ], + [ + 6.7886113, + 51.485928401 + ], + [ + 6.789288, + 51.485784601 + ], + [ + 6.7902602, + 51.485541901 + ], + [ + 6.79228, + 51.485007801 + ], + [ + 6.7925808, + 51.484932501 + ], + [ + 6.7932314, + 51.484787901 + ], + [ + 6.7938498, + 51.484672801 + ], + [ + 6.7942051, + 51.484614201 + ], + [ + 6.7944444, + 51.484584801 + ], + [ + 6.7948545, + 51.484537001 + ], + [ + 6.7954137, + 51.484488401 + ], + [ + 6.7956452, + 51.484479401 + ], + [ + 6.7962711, + 51.484480401 + ], + [ + 6.7971664, + 51.484514501 + ], + [ + 6.7976938, + 51.484562201 + ], + [ + 6.7981494, + 51.484617301 + ], + [ + 6.7986287, + 51.484697401 + ], + [ + 6.7993933, + 51.484854301 + ], + [ + 6.8000953, + 51.485035801 + ], + [ + 6.8011835, + 51.485364701 + ], + [ + 6.8022969, + 51.485744301 + ], + [ + 6.8036733, + 51.486212201 + ], + [ + 6.8044549, + 51.486446201 + ], + [ + 6.8051264, + 51.486624001 + ], + [ + 6.80575713, + 51.486776472 + ] + ] + } + }, + { + "identifier": "2026-015487--vi-bs.2026-04-15_20-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.483201674981856,6.772231680958431,51.48396541621543,6.738979633346491", + "point": "51.483201674981856,6.772231680958431", + "startLcPosition": "7", + "impact": { + "lower": "Duisburg-Beeck", + "upper": "Duisburg-Neum\u00fchl", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Duisburg-Neum\u00fchl - Duisburg-Beeck", + "coordinate": { + "lat": 51.483201674981856, + "long": 6.772231680958431 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 1.6 km hinter AS Duisburg-Neum\u00fchl und 0.6 km vor AS Duisburg-Beeck", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 von Duisburg-Neum\u00fchl (AS) nach Duisburg-Beeck (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.772231681, + 51.483201675 + ], + [ + 6.7719654, + 51.483220301 + ], + [ + 6.771055, + 51.483336001 + ], + [ + 6.7705347, + 51.483441801 + ], + [ + 6.7701711, + 51.483530001 + ], + [ + 6.7695941, + 51.483685001 + ], + [ + 6.7690376, + 51.483872801 + ], + [ + 6.7684657, + 51.484090301 + ], + [ + 6.76736, + 51.484586001 + ], + [ + 6.7668383, + 51.484824301 + ], + [ + 6.7661969, + 51.485106401 + ], + [ + 6.7656345, + 51.485338601 + ], + [ + 6.7649903, + 51.485560701 + ], + [ + 6.7637343, + 51.485930801 + ], + [ + 6.7632206, + 51.486061501 + ], + [ + 6.7618555, + 51.486338901 + ], + [ + 6.7600662, + 51.486641001 + ], + [ + 6.7586537, + 51.486854601 + ], + [ + 6.7577179, + 51.486974201 + ], + [ + 6.756254, + 51.487132501 + ], + [ + 6.7549963, + 51.487241001 + ], + [ + 6.7533761, + 51.487349301 + ], + [ + 6.752429, + 51.487383901 + ], + [ + 6.7513347, + 51.487393901 + ], + [ + 6.7503213, + 51.487357601 + ], + [ + 6.7492231, + 51.487274901 + ], + [ + 6.748275, + 51.487153501 + ], + [ + 6.7474931, + 51.487025901 + ], + [ + 6.7469333, + 51.486909401 + ], + [ + 6.7460403, + 51.486705901 + ], + [ + 6.7453713, + 51.486517901 + ], + [ + 6.7445003, + 51.486241501 + ], + [ + 6.7434123, + 51.485830401 + ], + [ + 6.7415071, + 51.485038901 + ], + [ + 6.738979633, + 51.483965416 + ] + ] + } + }, + { + "identifier": "2026-015482--vi-bs.2026-04-14_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.486954743890806,6.805656285494582,51.483201674981856,6.772231680958431", + "point": "51.486954743890806,6.805656285494582", + "startLcPosition": "8", + "impact": { + "lower": "Duisburg-Nord", + "upper": "Oberhausen-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Oberhausen-West - Duisburg-Nord", + "coordinate": { + "lat": 51.486954743890806, + "long": 6.805656285494582 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 0.6 km hinter AK Oberhausen-West und 0.1 km vor AK Duisburg-Nord", + "", + "L\u00e4nge: 2.51 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 von Oberhausen-West (AK) nach Duisburg-Nord (AK) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.805656285, + 51.486954744 + ], + [ + 6.8056511, + 51.486953701 + ], + [ + 6.8049229, + 51.486766501 + ], + [ + 6.8041725, + 51.486547301 + ], + [ + 6.8035377, + 51.486348001 + ], + [ + 6.8021908, + 51.485881901 + ], + [ + 6.8010621, + 51.485503801 + ], + [ + 6.8000174, + 51.485182701 + ], + [ + 6.7992888, + 51.484993701 + ], + [ + 6.798555, + 51.484841301 + ], + [ + 6.7981101, + 51.484769601 + ], + [ + 6.7976362, + 51.484714301 + ], + [ + 6.7971516, + 51.484670801 + ], + [ + 6.7967573, + 51.484640201 + ], + [ + 6.7962729, + 51.484640001 + ], + [ + 6.7955999, + 51.484648001 + ], + [ + 6.7953726, + 51.484658801 + ], + [ + 6.7949225, + 51.484687401 + ], + [ + 6.7943577, + 51.484755801 + ], + [ + 6.7937688, + 51.484848901 + ], + [ + 6.7930706, + 51.484995601 + ], + [ + 6.7927869, + 51.485061901 + ], + [ + 6.7924622, + 51.485134801 + ], + [ + 6.7895883, + 51.485884401 + ], + [ + 6.7889086, + 51.486039401 + ], + [ + 6.7883944, + 51.486137701 + ], + [ + 6.7878593, + 51.486227501 + ], + [ + 6.7871162, + 51.486324401 + ], + [ + 6.7865474, + 51.486366501 + ], + [ + 6.7861879, + 51.486370501 + ], + [ + 6.7856127, + 51.486379301 + ], + [ + 6.7850405, + 51.486365501 + ], + [ + 6.7841087, + 51.486278501 + ], + [ + 6.7835565, + 51.486196901 + ], + [ + 6.7830361, + 51.486106201 + ], + [ + 6.7823764, + 51.485948401 + ], + [ + 6.781937, + 51.485829001 + ], + [ + 6.7814512, + 51.485669501 + ], + [ + 6.7808781, + 51.485447301 + ], + [ + 6.7803846, + 51.485225101 + ], + [ + 6.7795301, + 51.484776801 + ], + [ + 6.7792925, + 51.484652101 + ], + [ + 6.7786512, + 51.484310501 + ], + [ + 6.777988, + 51.484016401 + ], + [ + 6.7774405, + 51.483812201 + ], + [ + 6.7768822, + 51.483633101 + ], + [ + 6.7763048, + 51.483483401 + ], + [ + 6.7757457, + 51.483364101 + ], + [ + 6.7753479, + 51.483295001 + ], + [ + 6.7748404, + 51.483227801 + ], + [ + 6.7743024, + 51.483184201 + ], + [ + 6.7739102, + 51.483160601 + ], + [ + 6.7735238, + 51.483154901 + ], + [ + 6.7727145, + 51.483167901 + ], + [ + 6.772231681, + 51.483201675 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-fbm.2026-04-16_09-00-00-000.devi-zus.2025-04-06_00-00-00-000.de150", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.496409177739814,6.864870043011187,51.48746833972635,6.814842687969761", + "point": "51.496409177739814,6.864870043011187", + "startLcPosition": "11", + "impact": { + "lower": "Oberhausen-West", + "upper": "Oberhausen Neue Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Oberhausen Neue Mitte - Oberhausen-West", + "coordinate": { + "lat": 51.496409177739814, + "long": 6.864870043011187 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 09:00 bis 12:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 1.7 km hinter AS Oberhausen Neue Mitte und AK Oberhausen-West", + "", + "L\u00e4nge: 3.9 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.864870043, + 51.496409178 + ], + [ + 6.8645548, + 51.496421401 + ], + [ + 6.8629857, + 51.496488001 + ], + [ + 6.8610945, + 51.496583101 + ], + [ + 6.859529, + 51.496660301 + ], + [ + 6.8585175, + 51.496705701 + ], + [ + 6.8573438, + 51.496757901 + ], + [ + 6.8564361, + 51.496795701 + ], + [ + 6.855592, + 51.496824601 + ], + [ + 6.8547219, + 51.496834201 + ], + [ + 6.8540388, + 51.496834501 + ], + [ + 6.8533527, + 51.496818801 + ], + [ + 6.8527789, + 51.496796201 + ], + [ + 6.8521182, + 51.496756601 + ], + [ + 6.8513581, + 51.496685701 + ], + [ + 6.8506609, + 51.496604201 + ], + [ + 6.8500218, + 51.496506501 + ], + [ + 6.849288, + 51.496379101 + ], + [ + 6.8488947, + 51.496300401 + ], + [ + 6.8484864, + 51.496208101 + ], + [ + 6.8478513, + 51.496053301 + ], + [ + 6.8472148, + 51.495877601 + ], + [ + 6.8465289, + 51.495662601 + ], + [ + 6.8458697, + 51.495431701 + ], + [ + 6.8455741, + 51.495316901 + ], + [ + 6.8452423, + 51.495187601 + ], + [ + 6.8446827, + 51.494948901 + ], + [ + 6.8442062, + 51.494724101 + ], + [ + 6.8436378, + 51.494437901 + ], + [ + 6.843036, + 51.494097101 + ], + [ + 6.8424531, + 51.493735601 + ], + [ + 6.841924, + 51.493379201 + ], + [ + 6.8414162, + 51.493016201 + ], + [ + 6.8412055, + 51.492858301 + ], + [ + 6.8401098, + 51.492012801 + ], + [ + 6.8397922, + 51.491786101 + ], + [ + 6.8395029, + 51.491554701 + ], + [ + 6.8388769, + 51.491060701 + ], + [ + 6.8382559, + 51.490604201 + ], + [ + 6.8381996, + 51.490568201 + ], + [ + 6.8377456, + 51.490223401 + ], + [ + 6.8372288, + 51.489885501 + ], + [ + 6.8360592, + 51.489202201 + ], + [ + 6.835544, + 51.488952801 + ], + [ + 6.8348267, + 51.488601601 + ], + [ + 6.8340917, + 51.488260001 + ], + [ + 6.8335256, + 51.488019201 + ], + [ + 6.8328041, + 51.487750201 + ], + [ + 6.8320657, + 51.487484701 + ], + [ + 6.8314397, + 51.487291001 + ], + [ + 6.8307949, + 51.487103601 + ], + [ + 6.8299015, + 51.486862301 + ], + [ + 6.8290652, + 51.486674001 + ], + [ + 6.8280979, + 51.486505801 + ], + [ + 6.8271118, + 51.486377401 + ], + [ + 6.8264611, + 51.486317001 + ], + [ + 6.8258609, + 51.486279401 + ], + [ + 6.8250604, + 51.486249901 + ], + [ + 6.8242511, + 51.486253801 + ], + [ + 6.8234948, + 51.486279501 + ], + [ + 6.8227725, + 51.486323901 + ], + [ + 6.8220919, + 51.486397001 + ], + [ + 6.8214137, + 51.486481701 + ], + [ + 6.8207093, + 51.486577001 + ], + [ + 6.819778, + 51.486720101 + ], + [ + 6.8193522, + 51.486784901 + ], + [ + 6.8172546, + 51.487128001 + ], + [ + 6.8161315, + 51.487305001 + ], + [ + 6.8155094, + 51.487389401 + ], + [ + 6.814997, + 51.487452701 + ], + [ + 6.814842688, + 51.48746834 + ] + ] + } + }, + { + "identifier": "2023-002969--vi-bs.2024-03-28_12-00-00-000.devi-zus.2023-11-17_11-00-00-000.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50014147738766,6.925278685188077,51.504451073140544,6.935467535502604", + "point": "51.50014147738766,6.925278685188077", + "startLcPosition": "11", + "impact": { + "lower": "Essen-Nord", + "upper": "Oberhausen Neue Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Oberhausen Neue Mitte - Essen-Nord", + "startTimestamp": "2024-03-28T12:00:00+01:00", + "coordinate": { + "lat": 51.50014147738766, + "long": 6.925278685188077 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.03.24 um 12:00 Uhr", + "Ende: 31.03.27 um 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 31.03.27)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 2.5 km hinter AS Oberhausen Neue Mitte und 4.5 km vor AK Essen-Nord", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 5.85 m | zul\u00e4ssiges Gesamtgewicht: 3.5 t", + "", + "A42 - Instandsetzung des Bauwerks Rhein-Herne-Kanal - AlD 2969" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.925278685, + 51.500141477 + ], + [ + 6.9262052, + 51.500506101 + ], + [ + 6.9291226, + 51.501775801 + ], + [ + 6.932028, + 51.503026201 + ], + [ + 6.9325278, + 51.503246301 + ], + [ + 6.9336404, + 51.503720601 + ], + [ + 6.9347808, + 51.504177301 + ], + [ + 6.9351008, + 51.504305101 + ], + [ + 6.935467536, + 51.504451073 + ] + ] + } + }, + { + "identifier": "2023-004405--vi-bs.2026-03-01_20-15-00-000.devi-zus.2024-05-02_20-00-00-000_008.f.de28", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50310849037054,6.98399531720417,51.504970379692864,6.994925991600853", + "point": "51.50310849037054,6.98399531720417", + "startLcPosition": "12", + "impact": { + "lower": "Essen-Nord", + "upper": "Bottrop-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Bottrop-S\u00fcd - Essen-Nord", + "startTimestamp": "2026-03-01T20:15:00+01:00", + "coordinate": { + "lat": 51.50310849037054, + "long": 6.98399531720417 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.26 um 20:15 Uhr", + "Ende: 18.06.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.28)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 3.6 km hinter AS Bottrop-S\u00fcd und 0.1 km vor AK Essen-Nord", + "", + "L\u00e4nge: 0.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.15 m", + "", + "A42 - 6-streifige Ausbau zw. BW RHK und AK Essen-Nord und LSW-Erneuerung - AlD 4405" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.983995317, + 51.50310849 + ], + [ + 6.9841715, + 51.503095101 + ], + [ + 6.9846053, + 51.503074301 + ], + [ + 6.9850263, + 51.503058901 + ], + [ + 6.9854467, + 51.503054501 + ], + [ + 6.9858683, + 51.503057001 + ], + [ + 6.9865208, + 51.503080301 + ], + [ + 6.9871183, + 51.503117701 + ], + [ + 6.987747, + 51.503176501 + ], + [ + 6.9883455, + 51.503245901 + ], + [ + 6.9888677, + 51.503324901 + ], + [ + 6.9899482, + 51.503524401 + ], + [ + 6.9911792, + 51.503813601 + ], + [ + 6.9920793, + 51.504055301 + ], + [ + 6.99344, + 51.504469101 + ], + [ + 6.994925992, + 51.50497038 + ] + ] + } + }, + { + "identifier": "2025-055007--vi-bs.2025-12-11_11-00-00-000.devi-zus.2025-02-24_20-00-00-000_006.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50653629392466,6.971554716512407,51.5038564196617,6.979855691658256", + "point": "51.50653629392466,6.971554716512407", + "startLcPosition": "12", + "impact": { + "lower": "Essen-Nord", + "upper": "Bottrop-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Bottrop-S\u00fcd - Essen-Nord", + "startTimestamp": "2025-12-11T11:00:00+01:00", + "coordinate": { + "lat": 51.50653629392466, + "long": 6.971554716512407 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.12.25 um 11:00 Uhr", + "Ende: 31.03.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.03.27)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 2.6 km hinter AS Bottrop-S\u00fcd und 1.2 km vor AK Essen-Nord", + "", + "L\u00e4nge: 0.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A42 - transportable Schutzeinrichtung im Bereich der RHK-Br\u00fccke in beiden Richtungen - AlD 55007" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.971554717, + 51.506536294 + ], + [ + 6.9721304, + 51.506398701 + ], + [ + 6.9726085, + 51.506272101 + ], + [ + 6.9734377, + 51.506019201 + ], + [ + 6.9741241, + 51.505787101 + ], + [ + 6.9750314, + 51.505481101 + ], + [ + 6.9763103, + 51.505035801 + ], + [ + 6.9775054, + 51.504637601 + ], + [ + 6.9785341, + 51.504288601 + ], + [ + 6.9792134, + 51.504060401 + ], + [ + 6.979855692, + 51.50385642 + ] + ] + } + }, + { + "identifier": "2023-004405--vi-bs.2026-03-01_20-15-00-000.devi-zus.2024-05-02_20-00-00-000_008.f.de32", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.504970379692864,6.994925991600853,51.50583182122311,6.997442076997173", + "point": "51.504970379692864,6.994925991600853", + "startLcPosition": "12", + "impact": { + "lower": "Essen-Altenessen", + "upper": "Bottrop-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Bottrop-S\u00fcd - Essen-Altenessen", + "startTimestamp": "2026-03-01T20:15:00+01:00", + "coordinate": { + "lat": 51.504970379692864, + "long": 6.994925991600853 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.26 um 20:15 Uhr", + "Ende: 18.06.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.28)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 4.4 km hinter AS Bottrop-S\u00fcd und 1.2 km vor AS Essen-Altenessen", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.15 m", + "", + "A42 - 6-streifige Ausbau zw. BW RHK und AK Essen-Nord und LSW-Erneuerung - AlD 4405" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.994925992, + 51.50497038 + ], + [ + 6.9951561, + 51.505048001 + ], + [ + 6.9970283, + 51.505695601 + ], + [ + 6.997442077, + 51.505831821 + ] + ] + } + }, + { + "identifier": "2023-004405--vi-bs.2026-03-01_20-15-00-000.devi-zus.2024-05-02_20-00-00-000_008.f.de26", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5038564196617,6.979855691658256,51.50310849037054,6.983995317204164", + "point": "51.5038564196617,6.979855691658256", + "startLcPosition": "12", + "impact": { + "lower": "Essen-Nord", + "upper": "Bottrop-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Bottrop-S\u00fcd - Essen-Nord", + "startTimestamp": "2026-03-01T20:15:00+01:00", + "coordinate": { + "lat": 51.5038564196617, + "long": 6.979855691658256 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.26 um 20:15 Uhr", + "Ende: 18.06.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.28)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 3.3 km hinter AS Bottrop-S\u00fcd und 0.9 km vor AK Essen-Nord", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.15 m", + "", + "A42 - 6-streifige Ausbau zw. BW RHK und AK Essen-Nord und LSW-Erneuerung - AlD 4405" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.979855692, + 51.50385642 + ], + [ + 6.9798822, + 51.503848001 + ], + [ + 6.9803832, + 51.503710101 + ], + [ + 6.9809329, + 51.503571001 + ], + [ + 6.9815678, + 51.503433401 + ], + [ + 6.98167, + 51.503414301 + ], + [ + 6.9819328, + 51.503365001 + ], + [ + 6.9823047, + 51.503302801 + ], + [ + 6.9825495, + 51.503265801 + ], + [ + 6.9828156, + 51.503229101 + ], + [ + 6.9830595, + 51.503198301 + ], + [ + 6.9833455, + 51.503163801 + ], + [ + 6.9837399, + 51.503127901 + ], + [ + 6.983995317, + 51.50310849 + ] + ] + } + }, + { + "identifier": "2023-004405--vi-bs.2026-03-01_20-15-00-000.devi-zus.2024-05-02_20-00-00-000_008.f.de30", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50505970698437,6.994848865371452,51.5032129222025,6.984016384306725", + "point": "51.50505970698437,6.994848865371452", + "startLcPosition": "13", + "impact": { + "lower": "Bottrop-S\u00fcd", + "upper": "Essen-Nord", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Essen-Nord - Bottrop-S\u00fcd", + "startTimestamp": "2026-03-01T20:15:00+01:00", + "coordinate": { + "lat": 51.50505970698437, + "long": 6.994848865371452 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.26 um 20:15 Uhr", + "Ende: 18.06.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.28)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 0.1 km hinter AK Essen-Nord und 3.6 km vor AS Bottrop-S\u00fcd", + "", + "L\u00e4nge: 0.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A42 - 6-streifige Ausbau zw. BW RHK und AK Essen-Nord und LSW-Erneuerung - AlD 4405" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.994848865, + 51.505059707 + ], + [ + 6.9933593, + 51.504559901 + ], + [ + 6.9920265, + 51.504153201 + ], + [ + 6.9911156, + 51.503908001 + ], + [ + 6.9898954, + 51.503625701 + ], + [ + 6.9888339, + 51.503430501 + ], + [ + 6.98832, + 51.503352101 + ], + [ + 6.9877117, + 51.503276701 + ], + [ + 6.987114, + 51.503219101 + ], + [ + 6.9865112, + 51.503183401 + ], + [ + 6.985853, + 51.503163301 + ], + [ + 6.9854387, + 51.503158601 + ], + [ + 6.9850349, + 51.503162501 + ], + [ + 6.9846053, + 51.503179501 + ], + [ + 6.9841727, + 51.503200401 + ], + [ + 6.984016384, + 51.503212922 + ] + ] + } + }, + { + "identifier": "2025-055007--vi-bs.2025-12-11_11-00-00-000.devi-zus.2025-02-24_20-00-00-000_006.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.503778193849925,6.9805554920475705,51.50647818306398,6.97226112524194", + "point": "51.503778193849925,6.9805554920475705", + "startLcPosition": "13", + "impact": { + "lower": "Bottrop-S\u00fcd", + "upper": "Essen-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Essen-Nord - Bottrop-S\u00fcd", + "startTimestamp": "2025-12-11T11:00:00+01:00", + "coordinate": { + "lat": 51.503778193849925, + "long": 6.9805554920475705 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.12.25 um 11:00 Uhr", + "Ende: 31.03.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.03.27)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 1.2 km hinter AK Essen-Nord und 2.7 km vor AS Bottrop-S\u00fcd", + "", + "L\u00e4nge: 0.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A42 - transportable Schutzeinrichtung im Bereich der RHK-Br\u00fccke in beiden Richtungen - AlD 55007" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.980555492, + 51.503778194 + ], + [ + 6.9804587, + 51.503802401 + ], + [ + 6.9799345, + 51.503952201 + ], + [ + 6.9792943, + 51.504154201 + ], + [ + 6.9785858, + 51.504394701 + ], + [ + 6.9775814, + 51.504732901 + ], + [ + 6.9764005, + 51.505134101 + ], + [ + 6.9751052, + 51.505574001 + ], + [ + 6.974203, + 51.505875701 + ], + [ + 6.9735093, + 51.506105101 + ], + [ + 6.9727875, + 51.506337001 + ], + [ + 6.972313, + 51.506465001 + ], + [ + 6.972261125, + 51.506478183 + ] + ] + } + }, + { + "identifier": "2023-004405--vi-bs.2026-03-01_20-15-00-000.devi-zus.2024-05-02_20-00-00-000_008.f.de36", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5032129222025,6.984016384306725,51.50396057192626,6.979907970086644", + "point": "51.5032129222025,6.984016384306725", + "startLcPosition": "13", + "impact": { + "lower": "Bottrop-S\u00fcd", + "upper": "Essen-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Essen-Nord - Bottrop-S\u00fcd", + "startTimestamp": "2026-03-01T20:15:00+01:00", + "coordinate": { + "lat": 51.5032129222025, + "long": 6.984016384306725 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.26 um 20:15 Uhr", + "Ende: 18.06.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.28)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 0.9 km hinter AK Essen-Nord und 3.3 km vor AS Bottrop-S\u00fcd", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A42 - 6-streifige Ausbau zw. BW RHK und AK Essen-Nord und LSW-Erneuerung - AlD 4405" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.984016384, + 51.503212922 + ], + [ + 6.9837782, + 51.503232001 + ], + [ + 6.9833661, + 51.503269701 + ], + [ + 6.9830866, + 51.503301501 + ], + [ + 6.9828459, + 51.503332201 + ], + [ + 6.982575, + 51.503369901 + ], + [ + 6.9823265, + 51.503407601 + ], + [ + 6.9819726, + 51.503468101 + ], + [ + 6.9817207, + 51.503514501 + ], + [ + 6.98163, + 51.503531201 + ], + [ + 6.9809789, + 51.503672301 + ], + [ + 6.9804587, + 51.503802401 + ], + [ + 6.9799345, + 51.503952201 + ], + [ + 6.97990797, + 51.503960572 + ] + ] + } + }, + { + "identifier": "2026-017695--vi-fbm.2026-04-13_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.50721794903988,6.967667879276774,51.508156545232005,6.953794874601707", + "point": "51.50721794903988,6.967667879276774", + "startLcPosition": "13", + "impact": { + "lower": "Bottrop-S\u00fcd", + "upper": "Essen-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Essen-Nord - Bottrop-S\u00fcd", + "coordinate": { + "lat": 51.50721794903988, + "long": 6.967667879276774 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 17:00 Uhr", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 2.2 km hinter AK Essen-Nord und 1.4 km vor AS Bottrop-S\u00fcd", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A42 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 17695" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.967667879, + 51.507217949 + ], + [ + 6.9669175, + 51.507294101 + ], + [ + 6.9655503, + 51.507431201 + ], + [ + 6.9636796, + 51.507606601 + ], + [ + 6.9616804, + 51.507796501 + ], + [ + 6.9597867, + 51.507962601 + ], + [ + 6.9588929, + 51.508031001 + ], + [ + 6.9578621, + 51.508094101 + ], + [ + 6.9571313, + 51.508120801 + ], + [ + 6.9557793, + 51.508159201 + ], + [ + 6.9540326, + 51.508164301 + ], + [ + 6.953794875, + 51.508156545 + ] + ] + } + }, + { + "identifier": "2026-016974--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.505258035014,6.937245356575938,51.50333638882276,6.932358237292963", + "point": "51.505258035014,6.937245356575938", + "startLcPosition": "13", + "impact": { + "lower": "Oberhausen Neue Mitte", + "upper": "Essen-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Essen-Nord - Oberhausen Neue Mitte", + "coordinate": { + "lat": 51.505258035014, + "long": 6.937245356575938 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 00:00 bis 02:00 Uhr", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 4.3 km hinter AK Essen-Nord und 3.1 km vor AS Oberhausen Neue Mitte", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A42 - Beseitigung Unfallfolgen - AkD 16974" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.937245357, + 51.505258035 + ], + [ + 6.9370347, + 51.505186501 + ], + [ + 6.9355388, + 51.504649301 + ], + [ + 6.9350508, + 51.504453001 + ], + [ + 6.9339761, + 51.504007001 + ], + [ + 6.932358237, + 51.503336389 + ] + ] + } + }, + { + "identifier": "2026-016974--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.50361632226379,6.981237213700755,51.50566364011639,6.974837147520748", + "point": "51.50361632226379,6.981237213700755", + "startLcPosition": "13", + "impact": { + "lower": "Bottrop-S\u00fcd", + "upper": "Essen-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Essen-Nord - Bottrop-S\u00fcd", + "coordinate": { + "lat": 51.50361632226379, + "long": 6.981237213700755 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 22:00 bis 24:00 Uhr", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 1.1 km hinter AK Essen-Nord und 2.9 km vor AS Bottrop-S\u00fcd", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A42 - Beseitigung Unfallfolgen - AkD 16974" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.981237214, + 51.503616322 + ], + [ + 6.9809789, + 51.503672301 + ], + [ + 6.9804587, + 51.503802401 + ], + [ + 6.9799345, + 51.503952201 + ], + [ + 6.9792943, + 51.504154201 + ], + [ + 6.9785858, + 51.504394701 + ], + [ + 6.9775814, + 51.504732901 + ], + [ + 6.9764005, + 51.505134101 + ], + [ + 6.9751052, + 51.505574001 + ], + [ + 6.974837148, + 51.50566364 + ] + ] + } + }, + { + "identifier": "2026-016836--vi-bs.2026-04-13_09-00-00-000_011.de0", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.50738999830076,6.965961201934913,51.50766050827677,6.963112120833802", + "point": "51.50738999830076,6.965961201934913", + "startLcPosition": "13", + "impact": { + "lower": "Bottrop-S\u00fcd", + "upper": "Essen-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Essen-Nord - Bottrop-S\u00fcd", + "startTimestamp": "2026-04-13T09:00:00+02:00", + "coordinate": { + "lat": 51.50738999830076, + "long": 6.965961201934913 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 09:00 Uhr", + "Ende: 16.10.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.10.26)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 2.3 km hinter AK Essen-Nord und 2.0 km vor AS Bottrop-S\u00fcd", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A42 - Sonstiges - AlD 16836" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.965961202, + 51.507389998 + ], + [ + 6.9655503, + 51.507431201 + ], + [ + 6.9636796, + 51.507606601 + ], + [ + 6.963112121, + 51.507660508 + ] + ] + } + }, + { + "identifier": "2023-002969--vi-bs.2024-03-16_12-00-00-000.devi-zus.2023-11-17_11-00-00-000.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.507648618667005,7.006269144873296,51.50634837326018,6.998684546547373", + "point": "51.507648618667005,7.006269144873296", + "startLcPosition": "14", + "impact": { + "lower": "Essen-Nord", + "upper": "Essen-Altenessen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Essen-Altenessen - Essen-Nord", + "startTimestamp": "2024-03-16T12:00:00+01:00", + "coordinate": { + "lat": 51.507648618667005, + "long": 7.006269144873296 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.24 um 12:00 Uhr", + "Ende: 31.03.27 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 31.03.27)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 0.5 km hinter AS Essen-Altenessen und 0.2 km vor AK Essen-Nord", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 3.5 m | zul\u00e4ssiges Gesamtgewicht: 3.5 t", + "", + "A42 - Instandsetzung des Bauwerks Rhein-Herne-Kanal - AlD 2969" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.006269145, + 51.507648619 + ], + [ + 7.0059276, + 51.507630201 + ], + [ + 7.0050418, + 51.507568001 + ], + [ + 7.004348, + 51.507501201 + ], + [ + 7.004156, + 51.507482801 + ], + [ + 7.0037862, + 51.507439201 + ], + [ + 7.003398, + 51.507390501 + ], + [ + 7.0028493, + 51.507311201 + ], + [ + 7.0022131, + 51.507204001 + ], + [ + 7.0015234, + 51.507076101 + ], + [ + 7.0007516, + 51.506907301 + ], + [ + 6.9999679, + 51.506714501 + ], + [ + 6.9993217, + 51.506540001 + ], + [ + 6.9986859, + 51.506348801 + ], + [ + 6.998684547, + 51.506348373 + ] + ] + } + }, + { + "identifier": "2023-004405--vi-bs.2026-03-01_20-15-00-000.devi-zus.2024-05-02_20-00-00-000_008.f.de34", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50634837326018,6.998684546547373,51.505076734220545,6.994899612976533", + "point": "51.50634837326018,6.998684546547373", + "startLcPosition": "14", + "impact": { + "lower": "Bottrop-S\u00fcd", + "upper": "Essen-Altenessen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Essen-Altenessen - Bottrop-S\u00fcd", + "startTimestamp": "2026-03-01T20:15:00+01:00", + "coordinate": { + "lat": 51.50634837326018, + "long": 6.998684546547373 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.03.26 um 20:15 Uhr", + "Ende: 18.06.27 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.28)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 1.1 km hinter AS Essen-Altenessen und 4.4 km vor AS Bottrop-S\u00fcd", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A42 - 6-streifige Ausbau zw. BW RHK und AK Essen-Nord und LSW-Erneuerung - AlD 4405" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.998684547, + 51.506348373 + ], + [ + 6.9978324, + 51.506079101 + ], + [ + 6.9969379, + 51.505778401 + ], + [ + 6.9950688, + 51.505133501 + ], + [ + 6.994899613, + 51.505076734 + ] + ] + } + }, + { + "identifier": "2026-016974--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.51054723683672,7.02173348069727,51.51290576527921,7.02783462381203", + "point": "51.51054723683672,7.02173348069727", + "startLcPosition": "14", + "impact": { + "lower": "Gelsenkirchen-He\u00dfler", + "upper": "Essen-Altenessen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Essen-Altenessen - Gelsenkirchen-He\u00dfler", + "coordinate": { + "lat": 51.51054723683672, + "long": 7.02173348069727 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 20:00 bis 22:00 Uhr", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 0.6 km hinter AS Essen-Altenessen und 1.1 km vor AS Gelsenkirchen-He\u00dfler", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A42 - Beseitigung Unfallfolgen - AkD 16974" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.021733481, + 51.510547237 + ], + [ + 7.0219236, + 51.510632101 + ], + [ + 7.0228603, + 51.511043901 + ], + [ + 7.0236472, + 51.511387101 + ], + [ + 7.0246728, + 51.511794101 + ], + [ + 7.0257667, + 51.512223901 + ], + [ + 7.0267313, + 51.512566901 + ], + [ + 7.027834624, + 51.512905765 + ] + ] + } + }, + { + "identifier": "2026-016980--vi-bs.2026-04-10_20-00-00-000.devi-zus.2026-04-10_20-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.51459263397037,7.041795734687534,51.51431877476681,7.034628963019073", + "point": "51.51459263397037,7.041795734687534", + "startLcPosition": "15", + "impact": { + "lower": "Essen-Altenessen", + "upper": "Gelsenkirchen-He\u00dfler", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Gelsenkirchen-He\u00dfler - Essen-Altenessen", + "coordinate": { + "lat": 51.51459263397037, + "long": 7.041795734687534 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 00:00 bis 02:00 Uhr", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 0.1 km hinter AS Gelsenkirchen-He\u00dfler und 1.6 km vor AS Essen-Altenessen", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A42 - Beseitigung Unfallfolgen - AkD 16980" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.041795735, + 51.514592634 + ], + [ + 7.0407565, + 51.514581601 + ], + [ + 7.0390885, + 51.514548901 + ], + [ + 7.0376336, + 51.514523401 + ], + [ + 7.0366377, + 51.514480801 + ], + [ + 7.0359314, + 51.514432201 + ], + [ + 7.0349607, + 51.514354101 + ], + [ + 7.034628963, + 51.514318775 + ] + ] + } + }, + { + "identifier": "2026-016980--vi-bs.2026-04-10_20-00-00-000.devi-zus.2026-04-10_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.52048633030598,7.068064891509943,51.51790163586666,7.062172076457124", + "point": "51.52048633030598,7.068064891509943", + "startLcPosition": "16", + "impact": { + "lower": "Gelsenkirchen-He\u00dfler", + "upper": "Gelsenkirchen-Zentrum", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Gelsenkirchen-Zentrum - Gelsenkirchen-He\u00dfler", + "coordinate": { + "lat": 51.52048633030598, + "long": 7.068064891509943 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 22:00 bis 24:00 Uhr", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 0.4 km hinter AS Gelsenkirchen-Zentrum und 1.4 km vor AS Gelsenkirchen-He\u00dfler", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A42 - Beseitigung Unfallfolgen - AkD 16980" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.068064892, + 51.52048633 + ], + [ + 7.0665481, + 51.519826501 + ], + [ + 7.0661453, + 51.519647901 + ], + [ + 7.0657468, + 51.519473901 + ], + [ + 7.0628001, + 51.518167301 + ], + [ + 7.062172076, + 51.517901636 + ] + ] + } + }, + { + "identifier": "2023-004568--vi-bs.2026-03-02_19-00-00-000.devi-zus.2024-07-15_19-00-00-000_003.f.de63", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5366937901094,7.1048336175406375,51.53807232550311,7.135310330774055", + "point": "51.5366937901094,7.1048336175406375", + "startLcPosition": "17", + "impact": { + "lower": "Herne-Wanne", + "upper": "Gelsenkirchen-Schalke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Gelsenkirchen-Schalke - Herne-Wanne", + "startTimestamp": "2026-03-02T19:00:00+01:00", + "coordinate": { + "lat": 51.5366937901094, + "long": 7.1048336175406375 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 19:00 Uhr", + "Ende: 04.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 0.7 km hinter AS Gelsenkirchen-Schalke und 1.1 km vor AS Herne-Wanne", + "", + "L\u00e4nge: 2.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A42 - Erneuerung Schutzplanken - AlD 4568" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.104833618, + 51.53669379 + ], + [ + 7.1080132, + 51.537013801 + ], + [ + 7.1099242, + 51.537218001 + ], + [ + 7.1102104, + 51.537245801 + ], + [ + 7.1126094, + 51.537489201 + ], + [ + 7.1160053, + 51.537843201 + ], + [ + 7.1169272, + 51.537928801 + ], + [ + 7.1180915, + 51.538010301 + ], + [ + 7.1191352, + 51.538022101 + ], + [ + 7.1198268, + 51.538023701 + ], + [ + 7.1208203, + 51.537997701 + ], + [ + 7.1226285, + 51.537885301 + ], + [ + 7.1250606, + 51.537730601 + ], + [ + 7.1258309, + 51.537706801 + ], + [ + 7.1266217, + 51.537686901 + ], + [ + 7.1269306, + 51.537680901 + ], + [ + 7.1283808, + 51.537669301 + ], + [ + 7.1288691, + 51.537673601 + ], + [ + 7.1291898, + 51.537671101 + ], + [ + 7.1300269, + 51.537683401 + ], + [ + 7.1311377, + 51.537732901 + ], + [ + 7.1316107, + 51.537766401 + ], + [ + 7.1331504, + 51.537875301 + ], + [ + 7.1350054, + 51.538038401 + ], + [ + 7.135310331, + 51.538072326 + ] + ] + } + }, + { + "identifier": "2026-003679--vi-bs.2026-03-09_05-00-00-000.devi-zus.2026-02-23_20-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.543701327586405,7.1832854366030245,51.54376623430759,7.189041598753797", + "point": "51.543701327586405,7.1832854366030245", + "startLcPosition": "20", + "impact": { + "lower": "Herne", + "upper": "Herne-Crange", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Herne-Crange - Herne", + "startTimestamp": "2026-03-09T05:00:00+01:00", + "coordinate": { + "lat": 51.543701327586405, + "long": 7.1832854366030245 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 05:00 Uhr", + "Ende: 15.09.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.29)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 1.1 km hinter AS Herne-Crange und 0.8 km vor AK Herne", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A42 - Stra\u00dfenausbau - Fahrbahnabsenkung - AlD 3679" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.183285437, + 51.543701328 + ], + [ + 7.1833433, + 51.543704501 + ], + [ + 7.183978, + 51.543727101 + ], + [ + 7.1843314, + 51.543740801 + ], + [ + 7.1851149, + 51.543761201 + ], + [ + 7.1860671, + 51.543767101 + ], + [ + 7.1873694, + 51.543761001 + ], + [ + 7.189041599, + 51.543766234 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de176", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.543834069556894,7.194047811012453,51.547486102923806,7.2098711398381825", + "point": "51.543834069556894,7.194047811012453", + "startLcPosition": "20", + "impact": { + "lower": "Herne-Baukau", + "upper": "Herne-Crange", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Herne-Crange - Herne-Baukau", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.543834069556894, + "long": 7.194047811012453 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 1.8 km hinter AS Herne-Crange und 0.2 km vor AS Herne-Baukau", + "", + "L\u00e4nge: 1.18 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.194047811, + 51.54383407 + ], + [ + 7.1941123, + 51.543836701 + ], + [ + 7.194679, + 51.543859801 + ], + [ + 7.1956083, + 51.543916801 + ], + [ + 7.1964258, + 51.543973201 + ], + [ + 7.1971523, + 51.544040801 + ], + [ + 7.197795, + 51.544110601 + ], + [ + 7.1989562, + 51.544270501 + ], + [ + 7.1996972, + 51.544388901 + ], + [ + 7.2001565, + 51.544472401 + ], + [ + 7.2018729, + 51.544830501 + ], + [ + 7.2022978, + 51.544941901 + ], + [ + 7.2025996, + 51.545022701 + ], + [ + 7.2033653, + 51.545223701 + ], + [ + 7.2037388, + 51.545332601 + ], + [ + 7.2042444, + 51.545488101 + ], + [ + 7.2048863, + 51.545694501 + ], + [ + 7.2053303, + 51.545847501 + ], + [ + 7.2055204, + 51.545913601 + ], + [ + 7.2068301, + 51.546382201 + ], + [ + 7.2084147, + 51.546957901 + ], + [ + 7.20987114, + 51.547486103 + ] + ] + } + }, + { + "identifier": "2026-003679--vi-bs.2026-03-09_05-00-00-000.devi-zus.2026-02-23_20-00-00-000_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54272804229703,7.175548376447257,51.54370211523484,7.183299798681733", + "point": "51.54272804229703,7.175548376447257", + "startLcPosition": "20", + "impact": { + "lower": "Herne", + "upper": "Herne-Crange", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Herne-Crange - Herne", + "startTimestamp": "2026-03-09T05:00:00+01:00", + "coordinate": { + "lat": 51.54272804229703, + "long": 7.175548376447257 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 05:00 Uhr", + "Ende: 15.09.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.29)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 0.5 km hinter AS Herne-Crange und 1.2 km vor AK Herne", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A42 - Stra\u00dfenausbau - Fahrbahnabsenkung - AlD 3679" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.175548376, + 51.542728042 + ], + [ + 7.1757297, + 51.542752201 + ], + [ + 7.1776193, + 51.543037601 + ], + [ + 7.1781483, + 51.543122801 + ], + [ + 7.1788783, + 51.543239301 + ], + [ + 7.1799027, + 51.543383601 + ], + [ + 7.1800763, + 51.543405501 + ], + [ + 7.1807544, + 51.543489501 + ], + [ + 7.1809038, + 51.543505601 + ], + [ + 7.1816482, + 51.543586101 + ], + [ + 7.1822487, + 51.543639001 + ], + [ + 7.1827653, + 51.543672801 + ], + [ + 7.183299799, + 51.543702115 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de174", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54376623430759,7.189041598753797,51.543834069556894,7.194047811012453", + "point": "51.54376623430759,7.189041598753797", + "startLcPosition": "20", + "impact": { + "lower": "Herne", + "upper": "Herne-Crange", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kamp-Lintfort -> Dortmund", + "title": "A42 | Herne-Crange - Herne", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.54376623430759, + "long": 7.189041598753797 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "A42: Kamp-Lintfort -> Dortmund, zwischen 1.5 km hinter AS Herne-Crange und 0.4 km vor AK Herne", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.189041599, + 51.543766234 + ], + [ + 7.1908287, + 51.543771801 + ], + [ + 7.192045, + 51.543775001 + ], + [ + 7.1935364, + 51.543813201 + ], + [ + 7.194047811, + 51.54383407 + ] + ] + } + }, + { + "identifier": "2026-003679--vi-bs.2026-03-09_05-00-00-000.devi-zus.2026-02-23_20-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54388017754299,7.189041587594043,51.543824584150194,7.183267057948899", + "point": "51.54388017754299,7.189041587594043", + "startLcPosition": "21", + "impact": { + "lower": "Herne-Crange", + "upper": "Herne", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Herne - Herne-Crange", + "startTimestamp": "2026-03-09T05:00:00+01:00", + "coordinate": { + "lat": 51.54388017754299, + "long": 7.189041587594043 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 05:00 Uhr", + "Ende: 15.09.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.29)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 0.8 km hinter AK Herne und 1.1 km vor AS Herne-Crange", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A42 - Stra\u00dfenausbau - Fahrbahnabsenkung - AlD 3679" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.189041588, + 51.543880178 + ], + [ + 7.188, + 51.543883301 + ], + [ + 7.1872, + 51.543883301 + ], + [ + 7.1856333, + 51.543883301 + ], + [ + 7.1839699, + 51.543857601 + ], + [ + 7.183618, + 51.543846001 + ], + [ + 7.183267058, + 51.543824584 + ] + ] + } + }, + { + "identifier": "2026-003679--vi-bs.2026-03-09_05-00-00-000.devi-zus.2026-02-23_20-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.543824584150194,7.183267057948899,51.54258440052803,7.173410473003862", + "point": "51.543824584150194,7.183267057948899", + "startLcPosition": "21", + "impact": { + "lower": "Herne-Crange", + "upper": "Herne", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Herne - Herne-Crange", + "startTimestamp": "2026-03-09T05:00:00+01:00", + "coordinate": { + "lat": 51.543824584150194, + "long": 7.183267057948899 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 05:00 Uhr", + "Ende: 15.09.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.29)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 1.2 km hinter AK Herne und 0.4 km vor AS Herne-Crange", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A42 - Stra\u00dfenausbau - Fahrbahnabsenkung - AlD 3679" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.183267058, + 51.543824584 + ], + [ + 7.1824743, + 51.543776201 + ], + [ + 7.1816321, + 51.543704501 + ], + [ + 7.1808606, + 51.543625101 + ], + [ + 7.1807104, + 51.543610801 + ], + [ + 7.180078, + 51.543528601 + ], + [ + 7.1799049, + 51.543505701 + ], + [ + 7.1790426, + 51.543397701 + ], + [ + 7.1782171, + 51.543271501 + ], + [ + 7.1769327, + 51.543061201 + ], + [ + 7.1756942, + 51.542855501 + ], + [ + 7.1747058, + 51.542725601 + ], + [ + 7.1745059, + 51.542702101 + ], + [ + 7.1736592, + 51.542603901 + ], + [ + 7.173410473, + 51.542584401 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de172", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54872473152731,7.212923934023833,51.54388017754299,7.189041587594043", + "point": "51.54872473152731,7.212923934023833", + "startLcPosition": "23", + "impact": { + "lower": "Herne-Crange", + "upper": "Herne-Horsthausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Herne-Horsthausen - Herne-Crange", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.54872473152731, + "long": 7.212923934023833 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 1.5 km hinter AS Herne-Horsthausen und 1.5 km vor AS Herne-Crange", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.212923934, + 51.548724732 + ], + [ + 7.2125228, + 51.548569901 + ], + [ + 7.2123605, + 51.548511701 + ], + [ + 7.2120068, + 51.548384701 + ], + [ + 7.2117354, + 51.548284401 + ], + [ + 7.2095354, + 51.547485101 + ], + [ + 7.2091629, + 51.547351301 + ], + [ + 7.2057706, + 51.546123201 + ], + [ + 7.2054524, + 51.546010601 + ], + [ + 7.2052637, + 51.545944501 + ], + [ + 7.2047829, + 51.545780401 + ], + [ + 7.2039179, + 51.545504401 + ], + [ + 7.2031957, + 51.545292101 + ], + [ + 7.2025044, + 51.545104001 + ], + [ + 7.2021463, + 51.545011001 + ], + [ + 7.2010593, + 51.544754401 + ], + [ + 7.2000864, + 51.544567801 + ], + [ + 7.1996258, + 51.544483501 + ], + [ + 7.1989037, + 51.544377401 + ], + [ + 7.1977485, + 51.544222401 + ], + [ + 7.1971099, + 51.544156101 + ], + [ + 7.1964004, + 51.544090301 + ], + [ + 7.1955873, + 51.544029901 + ], + [ + 7.1946536, + 51.543975401 + ], + [ + 7.1933839, + 51.543937301 + ], + [ + 7.1908274, + 51.543874801 + ], + [ + 7.189041588, + 51.543880178 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de170", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.55167668071327,7.220672304867394,51.54872473152731,7.212923934023833", + "point": "51.55167668071327,7.220672304867394", + "startLcPosition": "23", + "impact": { + "lower": "Herne-Baukau", + "upper": "Herne-Horsthausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Herne-Horsthausen - Herne-Baukau", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.55167668071327, + "long": 7.220672304867394 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 0.8 km hinter AS Herne-Horsthausen und 0.1 km vor AS Herne-Baukau", + "", + "L\u00e4nge: 0.63 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.220672305, + 51.551676681 + ], + [ + 7.2205308, + 51.551618201 + ], + [ + 7.2184286, + 51.550768901 + ], + [ + 7.2161825, + 51.549902901 + ], + [ + 7.2151214, + 51.549513801 + ], + [ + 7.214715, + 51.549367101 + ], + [ + 7.2132218, + 51.548839701 + ], + [ + 7.212923934, + 51.548724732 + ] + ] + } + }, + { + "identifier": "2026-016980--vi-bs.2026-04-10_20-00-00-000.devi-zus.2026-04-10_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.55727395509867,7.256960865355815,51.55848950960711,7.2500279094548326", + "point": "51.55727395509867,7.256960865355815", + "startLcPosition": "24", + "impact": { + "lower": "Herne-Horsthausen", + "upper": "Herne-B\u00f6rnig", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kamp-Lintfort", + "title": "A42 | Herne-B\u00f6rnig - Herne-Horsthausen", + "coordinate": { + "lat": 51.55727395509867, + "long": 7.256960865355815 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 20:00 bis 22:00 Uhr", + "", + "A42: Dortmund -> Kamp-Lintfort, zwischen 0.4 km hinter AS Herne-B\u00f6rnig und 1.4 km vor AS Herne-Horsthausen", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A42 - Beseitigung Unfallfolgen - AkD 16980" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.256960865, + 51.557273955 + ], + [ + 7.2568385, + 51.557284301 + ], + [ + 7.2561868, + 51.557353901 + ], + [ + 7.2555403, + 51.557435601 + ], + [ + 7.255211, + 51.557483201 + ], + [ + 7.2543561, + 51.557618201 + ], + [ + 7.2533532, + 51.557803501 + ], + [ + 7.2524605, + 51.557986701 + ], + [ + 7.2512608, + 51.558241801 + ], + [ + 7.2509933, + 51.558298101 + ], + [ + 7.250027909, + 51.55848951 + ] + ] + } + }, + { + "identifier": "2023-002969--vi-bs.2024-03-28_12-00-00-000.devi-zus.2023-11-17_11-00-00-000.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50348427320264,6.933340219821932,51.50344570747911,6.934784167046791", + "point": "51.50348427320264,6.933340219821932", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bottrop-S\u00fcd (aus Richtung Oberhausen Neue Mitte)", + "title": "A42 - Instandsetzung des Bauwerks Rhein-Herne-Kanal - AlD 2969", + "startTimestamp": "2024-03-28T12:00:00+01:00", + "coordinate": { + "lat": 51.50348427320264, + "long": 6.933340219821932 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.03.24 um 12:00 Uhr", + "Ende: 31.03.27 um 12:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 31.03.27)", + "", + "Abfahrt von der A42: AS Bottrop-S\u00fcd (aus Richtung Oberhausen Neue Mitte)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A42 - Instandsetzung des Bauwerks Rhein-Herne-Kanal - AlD 2969" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.93334022, + 51.503484273 + ], + [ + 6.9333749, + 51.503490601 + ], + [ + 6.9335938, + 51.503528501 + ], + [ + 6.9337345, + 51.503536301 + ], + [ + 6.9338957, + 51.503524301 + ], + [ + 6.9340625, + 51.503490101 + ], + [ + 6.9342551, + 51.503440601 + ], + [ + 6.934374, + 51.503421301 + ], + [ + 6.9345054, + 51.503405501 + ], + [ + 6.9346221, + 51.503414301 + ], + [ + 6.934752, + 51.503436201 + ], + [ + 6.934784167, + 51.503445707 + ] + ] + } + }, + { + "identifier": "2025-021763--vi-bs.2025-12-23_19-00-00-000.devi-bs.2025-06-09_09-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.55955695655106,7.3642339409582,51.56001931345061,7.361114851726792", + "point": "51.55955695655106,7.3642339409582", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Dortmund-Bodelschwingh (aus Richtung Castrop-Rauxel-Ost)", + "title": "A42 - Leitungsarbeiten - AlD 21763", + "startTimestamp": "2025-12-23T19:00:00+01:00", + "coordinate": { + "lat": 51.55955695655106, + "long": 7.3642339409582 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.12.25 um 19:00 Uhr", + "Ende: 30.04.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "Abfahrt von der A42: AS Dortmund-Bodelschwingh (aus Richtung Castrop-Rauxel-Ost)", + "", + "L\u00e4nge: 0.25 km | Max. 30 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A42 - Leitungsarbeiten - AlD 21763" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.364233941, + 51.559556957 + ], + [ + 7.3642357, + 51.559546501 + ], + [ + 7.3642274, + 51.559474801 + ], + [ + 7.3641903, + 51.559407001 + ], + [ + 7.3641219, + 51.559347101 + ], + [ + 7.3640653, + 51.559317101 + ], + [ + 7.3639982, + 51.559293501 + ], + [ + 7.3639227, + 51.559273801 + ], + [ + 7.3638353, + 51.559261501 + ], + [ + 7.3637298, + 51.559258401 + ], + [ + 7.3636255, + 51.559265701 + ], + [ + 7.3635316, + 51.559280501 + ], + [ + 7.3634399, + 51.559303201 + ], + [ + 7.3631659, + 51.559380601 + ], + [ + 7.3620168, + 51.559713801 + ], + [ + 7.3615638, + 51.559856601 + ], + [ + 7.3613391, + 51.559933301 + ], + [ + 7.361119, + 51.560017501 + ], + [ + 7.361114852, + 51.560019313 + ] + ] + } + }, + { + "identifier": "2026-003679--vi-bs.2026-03-09_05-00-00-000.devi-zus.2026-02-23_20-00-00-000_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.542864647214394,7.174877026166658,51.54283269563291,7.173898255534581", + "point": "51.542864647214394,7.174877026166658", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Herne-Crange (aus Richtung Herne)", + "title": "A42 - Stra\u00dfenausbau - Fahrbahnabsenkung - AlD 3679", + "startTimestamp": "2026-03-09T05:00:00+01:00", + "coordinate": { + "lat": 51.542864647214394, + "long": 7.174877026166658 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 05:00 Uhr", + "Ende: 15.09.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.29)", + "", + "Abfahrt von der A42: AS Herne-Crange (aus Richtung Herne)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 - Stra\u00dfenausbau - Fahrbahnabsenkung - AlD 3679" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.174877026, + 51.542864647 + ], + [ + 7.1746049, + 51.542852401 + ], + [ + 7.1743519, + 51.542844301 + ], + [ + 7.1739321, + 51.542833801 + ], + [ + 7.173898256, + 51.542832696 + ] + ] + } + }, + { + "identifier": "2026-003679--vi-bs.2026-03-09_05-00-00-000.devi-zus.2026-02-23_20-00-00-000_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.542318189716376,7.175001490377364,51.542743302901634,7.17619739779835", + "point": "51.542318189716376,7.175001490377364", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Herne-Crange (aus Richtung Herne-Wanne)", + "title": "A42 - Stra\u00dfenausbau - Fahrbahnabsenkung - AlD 3679", + "startTimestamp": "2026-03-09T05:00:00+01:00", + "coordinate": { + "lat": 51.542318189716376, + "long": 7.175001490377364 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 05:00 Uhr", + "Ende: 15.09.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.29)", + "", + "Auffahrt auf die A42: AS Herne-Crange (aus Richtung Herne-Wanne)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 - Stra\u00dfenausbau - Fahrbahnabsenkung - AlD 3679" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.17500149, + 51.54231819 + ], + [ + 7.1752033, + 51.542422501 + ], + [ + 7.1755826, + 51.542572101 + ], + [ + 7.1758722, + 51.542659601 + ], + [ + 7.1761551, + 51.542733601 + ], + [ + 7.176197398, + 51.542743303 + ] + ] + } + }, + { + "identifier": "2026-017760--vi-bs.2026-04-20_19-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.48727548435684,6.573005135801781,51.48723022350881,6.574640404678132", + "point": "51.48727548435684,6.573005135801781", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": "", + "title": "A42 Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 51.48727548435684, + "long": 6.573005135801781 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:00 bis zum 21.04.26 06:00 Uhr.", + "", + "Abfahrt von der B528", + "", + "L\u00e4nge: 0.11 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.573005136, + 51.487275484 + ], + [ + 6.5734207, + 51.487284301 + ], + [ + 6.5740931, + 51.487271901 + ], + [ + 6.574640405, + 51.487230224 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de180", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54942582685246,7.213172725825279,51.54888222365929,7.213083937333995", + "point": "51.54942582685246,7.213172725825279", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Herne-Baukau (aus Richtung Herne-Horsthausen)", + "title": "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.54942582685246, + "long": 7.213172725825279 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "Auffahrt auf die A42: AS Herne-Baukau (aus Richtung Herne-Horsthausen)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.213172726, + 51.549425827 + ], + [ + 7.2132137, + 51.549376601 + ], + [ + 7.2132469, + 51.549319201 + ], + [ + 7.2132691, + 51.549260701 + ], + [ + 7.2132805, + 51.549197901 + ], + [ + 7.2132734, + 51.549134701 + ], + [ + 7.213254, + 51.549074101 + ], + [ + 7.2132335, + 51.549031601 + ], + [ + 7.213199, + 51.548982501 + ], + [ + 7.2131544, + 51.548933501 + ], + [ + 7.213083937, + 51.548882224 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de178", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54943011357895,7.214479254155032,51.54946424896186,7.213614145848261", + "point": "51.54943011357895,7.214479254155032", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Herne-Baukau (aus Richtung Herne-Horsthausen)", + "title": "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.54943011357895, + "long": 7.214479254155032 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "Abfahrt von der A42: AS Herne-Baukau (aus Richtung Herne-Horsthausen)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.214479254, + 51.549430114 + ], + [ + 7.2143141, + 51.549412001 + ], + [ + 7.2141606, + 51.549404901 + ], + [ + 7.2139661, + 51.549411601 + ], + [ + 7.2138239, + 51.549425801 + ], + [ + 7.213669, + 51.549449501 + ], + [ + 7.213614146, + 51.549464249 + ] + ] + } + }, + { + "identifier": "2026-017721--vi-bs.2026-04-20_19-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.489877993884214,6.576559967045579,51.49039749062419,6.577098080826538", + "point": "51.489877993884214,6.576559967045579", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Kamp-Lintfort (aus Richtung Dong)", + "title": "A42 Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 51.489877993884214, + "long": 6.576559967045579 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:00 bis zum 21.04.26 05:00 Uhr.", + "", + "Abfahrt von der A57: AK Kamp-Lintfort (aus Richtung Dong)", + "", + "L\u00e4nge: 0.08 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A42 Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.576559967, + 51.489877994 + ], + [ + 6.5765624, + 51.489971201 + ], + [ + 6.5765973, + 51.490085001 + ], + [ + 6.5766563, + 51.490169701 + ], + [ + 6.576755, + 51.490254201 + ], + [ + 6.5768586, + 51.490317201 + ], + [ + 6.576963, + 51.490360501 + ], + [ + 6.577098081, + 51.490397491 + ] + ] + } + }, + { + "identifier": "2023-004568--vi-bs.2026-03-02_19-00-00-000.devi-zus.2024-07-15_19-00-00-000_003.f.de67", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.537208622183485,7.127848838004848,51.53760685970066,7.128314655120832", + "point": "51.537208622183485,7.127848838004848", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Gelsenkirchen-Bismarck (aus Richtung Gelsenkirchen-Schalke)", + "title": "A42 - Erneuerung Schutzplanken - AlD 4568", + "startTimestamp": "2026-03-02T19:00:00+01:00", + "coordinate": { + "lat": 51.537208622183485, + "long": 7.127848838004848 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 19:00 Uhr", + "Ende: 04.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "Auffahrt auf die A42: AS Gelsenkirchen-Bismarck (aus Richtung Gelsenkirchen-Schalke)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A42 - Erneuerung Schutzplanken - AlD 4568" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.127848838, + 51.537208622 + ], + [ + 7.1278551, + 51.537294301 + ], + [ + 7.1278842, + 51.537379801 + ], + [ + 7.1279262, + 51.537437801 + ], + [ + 7.1280135, + 51.537504701 + ], + [ + 7.1281398, + 51.537563501 + ], + [ + 7.1282863, + 51.537603601 + ], + [ + 7.128314655, + 51.53760686 + ] + ] + } + }, + { + "identifier": "2023-004568--vi-bs.2026-03-02_19-00-00-000.devi-zus.2024-07-15_19-00-00-000_003.f.de65", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53759228251715,7.1269809056378435,51.53721426061692,7.12775506064902", + "point": "51.53759228251715,7.1269809056378435", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Gelsenkirchen-Bismarck (aus Richtung Gelsenkirchen-Schalke)", + "title": "A42 - Erneuerung Schutzplanken - AlD 4568", + "startTimestamp": "2026-03-02T19:00:00+01:00", + "coordinate": { + "lat": 51.53759228251715, + "long": 7.1269809056378435 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 19:00 Uhr", + "Ende: 04.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "Abfahrt von der A42: AS Gelsenkirchen-Bismarck (aus Richtung Gelsenkirchen-Schalke)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A42 - Erneuerung Schutzplanken - AlD 4568" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.126980906, + 51.537592283 + ], + [ + 7.1270686, + 51.537578801 + ], + [ + 7.1272823, + 51.537519401 + ], + [ + 7.1274826, + 51.537442001 + ], + [ + 7.1276069, + 51.537373801 + ], + [ + 7.1277022, + 51.537291801 + ], + [ + 7.127755061, + 51.537214261 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de191", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54378754040765,7.19634925575834,51.54375195956537,7.197847154897506", + "point": "51.54378754040765,7.19634925575834", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Herne (aus Richtung Herne-Crange)", + "title": "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.54378754040765, + "long": 7.19634925575834 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "Abfahrt von der A42: AK Herne (aus Richtung Herne-Crange)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.196349256, + 51.54378754 + ], + [ + 7.1970715, + 51.543764401 + ], + [ + 7.197847155, + 51.54375196 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de188", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.543615418243974,7.202546873446944,51.54473106970023,7.203273456836531", + "point": "51.543615418243974,7.202546873446944", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Herne (aus Richtung Herne-Crange)", + "title": "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.543615418243974, + "long": 7.202546873446944 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "Auffahrt auf die A42: AK Herne (aus Richtung Herne-Crange)", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.202546873, + 51.543615418 + ], + [ + 7.2026519, + 51.543793301 + ], + [ + 7.2029736, + 51.544308201 + ], + [ + 7.2032386, + 51.544696401 + ], + [ + 7.203273457, + 51.54473107 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de186", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5451911381707,7.19701591927254,51.54425350044466,7.196216681118772", + "point": "51.5451911381707,7.19701591927254", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Herne (aus Richtung Herne-Baukau)", + "title": "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.5451911381707, + "long": 7.19701591927254 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "Auffahrt auf die A42: AK Herne (aus Richtung Herne-Baukau)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.197015919, + 51.545191138 + ], + [ + 7.1969754, + 51.545147301 + ], + [ + 7.1968281, + 51.544995601 + ], + [ + 7.1967691, + 51.544923101 + ], + [ + 7.1967208, + 51.544839601 + ], + [ + 7.1967007, + 51.544754601 + ], + [ + 7.1966913, + 51.544674501 + ], + [ + 7.1966471, + 51.544560201 + ], + [ + 7.1965398, + 51.544436801 + ], + [ + 7.1963413, + 51.544308401 + ], + [ + 7.196216681, + 51.5442535 + ] + ] + } + }, + { + "identifier": "2023-004133--vi-bs.2026-03-18_05-00-00-000.devi-zus.2022-01-03_20-00-00-000_008.f.de183", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54510608219523,7.2009818591298105,51.545044275396414,7.1993124604710745", + "point": "51.54510608219523,7.2009818591298105", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Herne (aus Richtung Recklinghausen-Hochlarmark)", + "title": "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133", + "startTimestamp": "2026-03-18T05:00:00+01:00", + "coordinate": { + "lat": 51.54510608219523, + "long": 7.2009818591298105 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 05:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "Auffahrt auf die A43: AK Herne (aus Richtung Recklinghausen-Hochlarmark)", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A42 - Ausbau AK Herne und Neubau Tunnel Baukau - AlD 4133" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.200981859, + 51.545106082 + ], + [ + 7.1999289, + 51.544789101 + ], + [ + 7.1995045, + 51.544660801 + ], + [ + 7.1992642, + 51.544593201 + ], + [ + 7.1989987, + 51.544549801 + ], + [ + 7.1988304, + 51.544530101 + ], + [ + 7.1986767, + 51.544529901 + ], + [ + 7.19848, + 51.544535601 + ], + [ + 7.1983179, + 51.544559701 + ], + [ + 7.1981655, + 51.544594801 + ], + [ + 7.1980044, + 51.544647801 + ], + [ + 7.1978685, + 51.544718701 + ], + [ + 7.1977766, + 51.544780201 + ], + [ + 7.1977417, + 51.544809601 + ], + [ + 7.1976807, + 51.544855201 + ], + [ + 7.197617, + 51.544895101 + ], + [ + 7.1975797, + 51.544932501 + ], + [ + 7.1975332, + 51.544976801 + ], + [ + 7.1974914, + 51.545029201 + ], + [ + 7.1974641, + 51.545075201 + ], + [ + 7.1974531, + 51.545134401 + ], + [ + 7.1974521, + 51.545197001 + ], + [ + 7.1974665, + 51.545255601 + ], + [ + 7.1974956, + 51.545318401 + ], + [ + 7.1975404, + 51.545386901 + ], + [ + 7.1980509, + 51.545898401 + ], + [ + 7.1980858, + 51.545939301 + ], + [ + 7.1981374, + 51.545973901 + ], + [ + 7.1982217, + 51.546006901 + ], + [ + 7.1983184, + 51.546030601 + ], + [ + 7.1984236, + 51.546034001 + ], + [ + 7.198527, + 51.546023101 + ], + [ + 7.1986613, + 51.545976201 + ], + [ + 7.1987469, + 51.545921801 + ], + [ + 7.199127, + 51.545292101 + ], + [ + 7.19931246, + 51.545044275 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de120", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.544005000845004,7.202595288462605,51.54417768384145,7.1973177821789305", + "point": "51.544005000845004,7.202595288462605", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Herne (aus Richtung Herne-Baukau) nach A42", + "title": "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.544005000845004, + "long": 7.202595288462605 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Von Auffahrt auf die A42: AK Herne (aus Richtung Herne-Baukau) nach A42: Dortmund -> Kamp-Lintfort, zwischen AK Herne und 2.0 km vor AS Herne-Crange", + "", + "L\u00e4nge: 0.49 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.202595288, + 51.544005001 + ], + [ + 7.2027359, + 51.544354701 + ], + [ + 7.2027576, + 51.544435301 + ], + [ + 7.2027703, + 51.544513701 + ], + [ + 7.2027711, + 51.544590601 + ], + [ + 7.2027553, + 51.544667601 + ], + [ + 7.2027226, + 51.544743601 + ], + [ + 7.2026744, + 51.544815201 + ], + [ + 7.2026113, + 51.544882101 + ], + [ + 7.2025344, + 51.544943201 + ], + [ + 7.202445, + 51.544997401 + ], + [ + 7.2023449, + 51.545043601 + ], + [ + 7.2022357, + 51.545081201 + ], + [ + 7.2021194, + 51.545109301 + ], + [ + 7.2019679, + 51.545130501 + ], + [ + 7.2018233, + 51.545135801 + ], + [ + 7.201688, + 51.545133201 + ], + [ + 7.2015616, + 51.545122601 + ], + [ + 7.2013994, + 51.545096801 + ], + [ + 7.2012544, + 51.545063401 + ], + [ + 7.2010183, + 51.545003101 + ], + [ + 7.2000057, + 51.544677501 + ], + [ + 7.1995714, + 51.544555501 + ], + [ + 7.1989037, + 51.544377401 + ], + [ + 7.1977485, + 51.544222401 + ], + [ + 7.197317782, + 51.544177684 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de118", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.543623854021156,7.202551854129113,51.54443588952263,7.203060764523724", + "point": "51.543623854021156,7.202551854129113", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Herne (aus Richtung Herne-Crange)", + "title": "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.543623854021156, + "long": 7.202551854129113 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Auffahrt auf die A42: AK Herne (aus Richtung Herne-Crange)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.202551854, + 51.543623854 + ], + [ + 7.2026519, + 51.543793301 + ], + [ + 7.2029736, + 51.544308201 + ], + [ + 7.203060765, + 51.54443589 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de116", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.545029208097816,7.1968607323010865,51.54414205915572,7.195922646638466", + "point": "51.545029208097816,7.1968607323010865", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Herne (aus Richtung Herne-Baukau)", + "title": "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.545029208097816, + "long": 7.1968607323010865 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Auffahrt auf die A42: AK Herne (aus Richtung Herne-Baukau)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.196860732, + 51.545029208 + ], + [ + 7.1968281, + 51.544995601 + ], + [ + 7.1967691, + 51.544923101 + ], + [ + 7.1967208, + 51.544839601 + ], + [ + 7.1967007, + 51.544754601 + ], + [ + 7.1966913, + 51.544674501 + ], + [ + 7.1966471, + 51.544560201 + ], + [ + 7.1965398, + 51.544436801 + ], + [ + 7.1963413, + 51.544308401 + ], + [ + 7.1960932, + 51.544199101 + ], + [ + 7.195922647, + 51.544142059 + ] + ] + } + } + ] + }, + "A43": { + "roadworks": [ + { + "identifier": "2023-000192--vi-bs.2026-04-06_07-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de638", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.334098889712934,7.266808335859274,51.325781671481316,7.26922007944585", + "point": "51.334098889712934,7.266808335859274", + "startLcPosition": "1", + "impact": { + "lower": "Wuppertal-Nord", + "upper": "Scherenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Scherenberg - Wuppertal-Nord", + "coordinate": { + "lat": 51.334098889712934, + "long": 7.266808335859274 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 05:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 0.8 km hinter Scherenberg und 1.3 km vor AK Wuppertal-Nord", + "", + "L\u00e4nge: 0.95 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.266808336, + 51.33409889 + ], + [ + 7.2667195, + 51.333612301 + ], + [ + 7.2666441, + 51.332990201 + ], + [ + 7.2666325, + 51.332783301 + ], + [ + 7.2666331, + 51.332416801 + ], + [ + 7.2666516, + 51.331878301 + ], + [ + 7.2667478, + 51.331229301 + ], + [ + 7.2668733, + 51.330684901 + ], + [ + 7.267082, + 51.330082101 + ], + [ + 7.26724, + 51.329698801 + ], + [ + 7.2673658, + 51.329446001 + ], + [ + 7.2676465, + 51.328900601 + ], + [ + 7.2680167, + 51.328265501 + ], + [ + 7.2686878, + 51.327055601 + ], + [ + 7.2689515, + 51.326494001 + ], + [ + 7.2691781, + 51.325917501 + ], + [ + 7.269220079, + 51.325781671 + ] + ] + } + }, + { + "identifier": "2023-004543--vi-bs.2026-03-20_19-00-00-000.devi-zus.2025-04-01_19-00-00-000.f_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.4120312666753,7.261172504231803,51.422814263980634,7.270751980857216", + "point": "51.4120312666753,7.261172504231803", + "startLcPosition": "4", + "impact": { + "lower": "Witten-Heven", + "upper": "Auf der Heide", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Auf der Heide - Witten-Heven", + "startTimestamp": "2026-03-20T19:00:00+01:00", + "coordinate": { + "lat": 51.4120312666753, + "long": 7.261172504231803 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 19:00 Uhr", + "Ende: 31.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.08.26)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 4.5 km hinter Auf der Heide und 1.9 km vor AS Witten-Heven", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.261172504, + 51.412031267 + ], + [ + 7.2612783, + 51.412566301 + ], + [ + 7.2613851, + 51.412953101 + ], + [ + 7.261551, + 51.413431501 + ], + [ + 7.2618905, + 51.414292101 + ], + [ + 7.2619889, + 51.414541601 + ], + [ + 7.262102, + 51.414769101 + ], + [ + 7.2622251, + 51.414995601 + ], + [ + 7.2625553, + 51.415570801 + ], + [ + 7.2629004, + 51.416093101 + ], + [ + 7.2631741, + 51.416475401 + ], + [ + 7.2638818, + 51.417309301 + ], + [ + 7.264665, + 51.418164001 + ], + [ + 7.2652829, + 51.418735901 + ], + [ + 7.266055, + 51.419398101 + ], + [ + 7.2663762, + 51.419656401 + ], + [ + 7.2667016, + 51.419912401 + ], + [ + 7.2675783, + 51.420576201 + ], + [ + 7.2684921, + 51.421229101 + ], + [ + 7.2696536, + 51.422049801 + ], + [ + 7.2702422, + 51.422455201 + ], + [ + 7.270751981, + 51.422814264 + ] + ] + } + }, + { + "identifier": "2023-004543--vi-bs.2026-03-20_19-00-00-000.devi-zus.2025-04-01_19-00-00-000.f_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.404022901847,7.262548731628921,51.4120312666753,7.261172504231803", + "point": "51.404022901847,7.262548731628921", + "startLcPosition": "4", + "impact": { + "lower": "Witten-Herbede", + "upper": "Auf der Heide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Auf der Heide - Witten-Herbede", + "startTimestamp": "2026-03-20T19:00:00+01:00", + "coordinate": { + "lat": 51.404022901847, + "long": 7.262548731628921 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 19:00 Uhr", + "Ende: 31.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.08.26)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 3.6 km hinter Auf der Heide und 0.3 km vor AS Witten-Herbede", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.262548732, + 51.404022902 + ], + [ + 7.2625294, + 51.404077201 + ], + [ + 7.2621688, + 51.405066101 + ], + [ + 7.261986, + 51.405593601 + ], + [ + 7.2617722, + 51.406247701 + ], + [ + 7.2615828, + 51.406899901 + ], + [ + 7.2613797, + 51.407633601 + ], + [ + 7.2612298, + 51.408366701 + ], + [ + 7.2611509, + 51.408788001 + ], + [ + 7.2611116, + 51.409051201 + ], + [ + 7.2610563, + 51.409608801 + ], + [ + 7.2610339, + 51.409972501 + ], + [ + 7.2610236, + 51.410340301 + ], + [ + 7.2610176, + 51.410664001 + ], + [ + 7.2610437, + 51.411120101 + ], + [ + 7.261111, + 51.411702001 + ], + [ + 7.261163, + 51.411983201 + ], + [ + 7.261172504, + 51.412031267 + ] + ] + } + }, + { + "identifier": "2023-004543--vi-bs.2026-03-20_19-00-00-000.devi-zus.2025-04-01_19-00-00-000.f_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.412052227797,7.261003713020599,51.409793939966214,7.260874522083505", + "point": "51.412052227797,7.261003713020599", + "startLcPosition": "5", + "impact": { + "lower": "Auf der Heide", + "upper": "Witten-Herbede", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Witten-Herbede - Auf der Heide", + "startTimestamp": "2026-03-20T19:00:00+01:00", + "coordinate": { + "lat": 51.412052227797, + "long": 7.261003713020599 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 19:00 Uhr", + "Ende: 31.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.08.26)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 0.3 km hinter AS Witten-Herbede und 4.2 km vor Auf der Heide", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.261003713, + 51.412052228 + ], + [ + 7.2609953, + 51.411999801 + ], + [ + 7.2609588, + 51.411760501 + ], + [ + 7.2609255, + 51.411551901 + ], + [ + 7.2608704, + 51.411018501 + ], + [ + 7.2608485, + 51.410650801 + ], + [ + 7.2608546, + 51.410160801 + ], + [ + 7.2608685, + 51.409921801 + ], + [ + 7.260874522, + 51.40979394 + ] + ] + } + }, + { + "identifier": "2023-004543--vi-bs.2026-03-20_19-00-00-000.devi-zus.2025-04-01_19-00-00-000.f_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.422880305220744,7.270633322374263,51.41204328408247,7.26100227780719", + "point": "51.422880305220744,7.270633322374263", + "startLcPosition": "6", + "impact": { + "lower": "Auf der Heide", + "upper": "Witten-Heven", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Witten-Heven - Auf der Heide", + "startTimestamp": "2026-03-20T19:00:00+01:00", + "coordinate": { + "lat": 51.422880305220744, + "long": 7.270633322374263 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 19:00 Uhr", + "Ende: 31.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.08.26)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 1.9 km hinter AS Witten-Heven und 4.5 km vor Auf der Heide", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.270633322, + 51.422880305 + ], + [ + 7.2701204, + 51.422521101 + ], + [ + 7.2695048, + 51.422100201 + ], + [ + 7.2683924, + 51.421318601 + ], + [ + 7.2678934, + 51.420961701 + ], + [ + 7.2674017, + 51.420611201 + ], + [ + 7.2662558, + 51.419730201 + ], + [ + 7.2656678, + 51.419252101 + ], + [ + 7.2651287, + 51.418788101 + ], + [ + 7.2645609, + 51.418253901 + ], + [ + 7.2641965, + 51.417897001 + ], + [ + 7.263858, + 51.417536001 + ], + [ + 7.2632203, + 51.416787501 + ], + [ + 7.2627764, + 51.416168501 + ], + [ + 7.2624498, + 51.415682501 + ], + [ + 7.2621297, + 51.415156401 + ], + [ + 7.2618341, + 51.414603701 + ], + [ + 7.2617026, + 51.414291101 + ], + [ + 7.2615031, + 51.413833701 + ], + [ + 7.2613712, + 51.413463601 + ], + [ + 7.2612191, + 51.412985501 + ], + [ + 7.2610225, + 51.412169301 + ], + [ + 7.261002278, + 51.412043284 + ] + ] + } + }, + { + "identifier": "2023-004543--vi-bs.2026-03-20_19-00-00-000.devi-zus.2025-04-01_19-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.42889917295728,7.279283523251291,51.422880305220744,7.270633322374263", + "point": "51.42889917295728,7.279283523251291", + "startLcPosition": "6", + "impact": { + "lower": "Witten-Herbede", + "upper": "Witten-Heven", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Witten-Heven - Witten-Herbede", + "startTimestamp": "2026-03-20T19:00:00+01:00", + "coordinate": { + "lat": 51.42889917295728, + "long": 7.279283523251291 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 19:00 Uhr", + "Ende: 31.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.08.26)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 1.0 km hinter AS Witten-Heven und 1.1 km vor AS Witten-Herbede", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.279283523, + 51.428899173 + ], + [ + 7.2784516, + 51.428321501 + ], + [ + 7.2771647, + 51.427423701 + ], + [ + 7.2756953, + 51.426397501 + ], + [ + 7.2728443, + 51.424421101 + ], + [ + 7.2725314, + 51.424211901 + ], + [ + 7.2717761, + 51.423677001 + ], + [ + 7.2709122, + 51.423075101 + ], + [ + 7.2708051, + 51.423000601 + ], + [ + 7.270633322, + 51.422880305 + ] + ] + } + }, + { + "identifier": "2023-001188--vi-bs.2020-08-24_09-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.431912674332885,7.2836224544700645,51.428230747936944,7.278321512124837", + "point": "51.431912674332885,7.2836224544700645", + "startLcPosition": "6", + "impact": { + "lower": "Witten-Herbede", + "upper": "Witten-Heven", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Witten-Heven - Witten-Herbede", + "startTimestamp": "2020-08-24T09:00:00+02:00", + "coordinate": { + "lat": 51.431912674332885, + "long": 7.2836224544700645 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.08.20 um 09:00 Uhr", + "Ende: 11.01.28 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.01.28)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 0.5 km hinter AS Witten-Heven und 1.9 km vor AS Witten-Herbede", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A43 - Schutzwand f\u00fcr BW 4509572 - AlD 1188" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.283622454, + 51.431912674 + ], + [ + 7.2834431, + 51.431787201 + ], + [ + 7.2784516, + 51.428321501 + ], + [ + 7.278321512, + 51.428230748 + ] + ] + } + }, + { + "identifier": "2026-012948--vi-bs.2026-04-19_08-00-00-000.devi-zus.2026-04-19_08-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.48542287102281,7.278161924725336,51.48721993303113,7.27782929856315", + "point": "51.48542287102281,7.278161924725336", + "startLcPosition": "9", + "impact": { + "lower": "Bochum", + "upper": "Bochum-Laer", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Bochum-Laer - Bochum", + "coordinate": { + "lat": 51.48542287102281, + "long": 7.278161924725336 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "19.04.26 von 08:00 bis 17:00 Uhr", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 0.8 km hinter AS Bochum-Laer und 1.2 km vor AK Bochum", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A43 - Br\u00fcckenwartung - AkD 12948" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.278161925, + 51.485422871 + ], + [ + 7.2780258, + 51.486236401 + ], + [ + 7.2780048, + 51.486361701 + ], + [ + 7.2778809, + 51.486997801 + ], + [ + 7.277829299, + 51.487219933 + ] + ] + } + }, + { + "identifier": "2026-012948--vi-bs.2026-04-19_08-00-00-000.devi-zus.2026-04-19_08-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.487205161605985,7.277655481334294,51.4854118519668,7.277996798943881", + "point": "51.487205161605985,7.277655481334294", + "startLcPosition": "10", + "impact": { + "lower": "Bochum-Laer", + "upper": "Bochum", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Bochum - Bochum-Laer", + "coordinate": { + "lat": 51.487205161605985, + "long": 7.277655481334294 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "19.04.26 von 08:00 bis 17:00 Uhr", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 1.2 km hinter AK Bochum und 0.8 km vor AS Bochum-Laer", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A43 - Br\u00fcckenwartung - AkD 12948" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.277655481, + 51.487205162 + ], + [ + 7.2778278, + 51.486365301 + ], + [ + 7.2778798, + 51.486073501 + ], + [ + 7.2779421, + 51.485724401 + ], + [ + 7.277996799, + 51.485411852 + ] + ] + } + }, + { + "identifier": "2023-004548--vi-bs.2025-08-13_05-00-00-000.devi-zus.2025-02-02_20-00-00-000_003.f.de22", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.49855005218188,7.268548553168553,51.503920079325034,7.257276606347843", + "point": "51.49855005218188,7.268548553168553", + "startLcPosition": "10", + "impact": { + "lower": "Bochum-Riemke", + "upper": "Bochum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Bochum - Bochum-Riemke", + "startTimestamp": "2025-08-13T05:00:00+02:00", + "coordinate": { + "lat": 51.49855005218188, + "long": 7.268548553168553 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.08.25 um 05:00 Uhr", + "Ende: 11.12.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.12.26)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 0.3 km hinter AK Bochum und 3.5 km vor AS Bochum-Riemke", + "", + "L\u00e4nge: 0.99 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.268548553, + 51.498550052 + ], + [ + 7.2681799, + 51.498786701 + ], + [ + 7.2676614, + 51.499107301 + ], + [ + 7.2672027, + 51.499376001 + ], + [ + 7.2666121, + 51.499721901 + ], + [ + 7.2657278, + 51.500209901 + ], + [ + 7.2651223, + 51.500535901 + ], + [ + 7.2639267, + 51.501153601 + ], + [ + 7.2634452, + 51.501392501 + ], + [ + 7.2628557, + 51.501670701 + ], + [ + 7.262149, + 51.501995501 + ], + [ + 7.2612798, + 51.502379001 + ], + [ + 7.2600688, + 51.502871401 + ], + [ + 7.2594826, + 51.503106601 + ], + [ + 7.2589136, + 51.503327601 + ], + [ + 7.2580833, + 51.503638001 + ], + [ + 7.257276606, + 51.503920079 + ] + ] + } + }, + { + "identifier": "2023-004548--vi-bs.2025-08-13_05-00-00-000.devi-zus.2025-02-02_20-00-00-000_003.f.de26", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50205880357689,7.262005527042699,51.50243684362182,7.2611375456711755", + "point": "51.50205880357689,7.262005527042699", + "startLcPosition": "10", + "impact": { + "lower": "Bochum", + "upper": "Bochum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Bochum - Bochum", + "startTimestamp": "2025-08-13T05:00:00+02:00", + "coordinate": { + "lat": 51.50205880357689, + "long": 7.262005527042699 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.08.25 um 05:00 Uhr", + "Ende: 11.12.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.12.26)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 0.9 km hinter AK Bochum und 0.2 km vor AS Bochum", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.262005527, + 51.502058804 + ], + [ + 7.2612798, + 51.502379001 + ], + [ + 7.261137546, + 51.502436844 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de65", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.51635895261461,7.213157802194549,51.53236709847881,7.207488733335557", + "point": "51.51635895261461,7.213157802194549", + "startLcPosition": "11", + "impact": { + "lower": "Herne-Eickel", + "upper": "Bochum", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Bochum - Herne-Eickel", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.51635895261461, + "long": 7.213157802194549 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 3.6 km hinter AS Bochum und AS Herne-Eickel", + "", + "L\u00e4nge: 1.84 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.213157802, + 51.516358953 + ], + [ + 7.2130974, + 51.516425601 + ], + [ + 7.2129462, + 51.516596701 + ], + [ + 7.2129164, + 51.516645001 + ], + [ + 7.2127282, + 51.516853701 + ], + [ + 7.2124555, + 51.517210401 + ], + [ + 7.2123382, + 51.517377101 + ], + [ + 7.2121662, + 51.517640801 + ], + [ + 7.2118663, + 51.518139301 + ], + [ + 7.2116866, + 51.518438901 + ], + [ + 7.2115223, + 51.518751001 + ], + [ + 7.2114096, + 51.518967501 + ], + [ + 7.2112504, + 51.519267601 + ], + [ + 7.2104715, + 51.520768001 + ], + [ + 7.210225, + 51.521211701 + ], + [ + 7.2099552, + 51.521747401 + ], + [ + 7.2098545, + 51.521930601 + ], + [ + 7.2095748, + 51.522472001 + ], + [ + 7.2094062, + 51.522805501 + ], + [ + 7.2090357, + 51.523577901 + ], + [ + 7.2087655, + 51.524177601 + ], + [ + 7.2085602, + 51.524708901 + ], + [ + 7.2084035, + 51.525145701 + ], + [ + 7.2082423, + 51.525644001 + ], + [ + 7.2081599, + 51.525926701 + ], + [ + 7.2081443, + 51.525986101 + ], + [ + 7.2080357, + 51.526379501 + ], + [ + 7.2079647, + 51.526681201 + ], + [ + 7.2079299, + 51.526845001 + ], + [ + 7.2078842, + 51.527050801 + ], + [ + 7.2078339, + 51.527305301 + ], + [ + 7.2077675, + 51.527713301 + ], + [ + 7.2077219, + 51.528044901 + ], + [ + 7.2076663, + 51.528513001 + ], + [ + 7.2076374, + 51.528821301 + ], + [ + 7.207628, + 51.528944301 + ], + [ + 7.2075751, + 51.529807801 + ], + [ + 7.207562, + 51.530309601 + ], + [ + 7.2075484, + 51.530770901 + ], + [ + 7.2075146, + 51.531806801 + ], + [ + 7.2074923, + 51.532219501 + ], + [ + 7.207488733, + 51.532367098 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de69", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.51176896463395,7.223292968879743,51.516358952614596,7.213157802194549", + "point": "51.51176896463395,7.223292968879743", + "startLcPosition": "11", + "impact": { + "lower": "Bochum-Riemke", + "upper": "Bochum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Bochum - Bochum-Riemke", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.51176896463395, + "long": 7.223292968879743 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 2.7 km hinter AS Bochum und 0.1 km vor AS Bochum-Riemke", + "", + "L\u00e4nge: 0.89 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.223292969, + 51.511768965 + ], + [ + 7.2229127, + 51.511853001 + ], + [ + 7.2215693, + 51.512170601 + ], + [ + 7.2208044, + 51.512371701 + ], + [ + 7.2200775, + 51.512572301 + ], + [ + 7.2194735, + 51.512757801 + ], + [ + 7.2190313, + 51.512902501 + ], + [ + 7.2186668, + 51.513027801 + ], + [ + 7.2183004, + 51.513158001 + ], + [ + 7.2180371, + 51.513259401 + ], + [ + 7.2172871, + 51.513568501 + ], + [ + 7.2170036, + 51.513698301 + ], + [ + 7.2163591, + 51.514012101 + ], + [ + 7.2161709, + 51.514112901 + ], + [ + 7.2157986, + 51.514317901 + ], + [ + 7.2156473, + 51.514411501 + ], + [ + 7.2153767, + 51.514574301 + ], + [ + 7.2150313, + 51.514798601 + ], + [ + 7.2147075, + 51.515025001 + ], + [ + 7.2144314, + 51.515230901 + ], + [ + 7.2141436, + 51.515454401 + ], + [ + 7.21361, + 51.515914001 + ], + [ + 7.2132937, + 51.516209001 + ], + [ + 7.213157802, + 51.516358953 + ] + ] + } + }, + { + "identifier": "2023-004548--vi-bs.2025-07-19_05-00-00-000.devi-zus.2025-02-02_20-00-00-000_003.f.de16", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5066140649155,7.247048681741213,51.5011508565087,7.263661986686963", + "point": "51.5066140649155,7.247048681741213", + "startLcPosition": "12", + "impact": { + "lower": "Bochum", + "upper": "Bochum-Riemke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Bochum-Riemke - Bochum", + "startTimestamp": "2025-07-19T05:00:00+02:00", + "coordinate": { + "lat": 51.5066140649155, + "long": 7.247048681741213 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.07.25 um 05:00 Uhr", + "Ende: 11.12.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.12.26)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 2.7 km hinter AS Bochum-Riemke und 0.7 km vor AK Bochum", + "", + "L\u00e4nge: 1.31 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.9 m", + "", + "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.247048682, + 51.506614065 + ], + [ + 7.2488259, + 51.506201101 + ], + [ + 7.2508599, + 51.505696201 + ], + [ + 7.2528273, + 51.505176401 + ], + [ + 7.2542284, + 51.504779101 + ], + [ + 7.2555656, + 51.504367401 + ], + [ + 7.2564114, + 51.504088301 + ], + [ + 7.2576376, + 51.503672301 + ], + [ + 7.2584381, + 51.503378001 + ], + [ + 7.2589048, + 51.503201601 + ], + [ + 7.2592929, + 51.503054901 + ], + [ + 7.2594933, + 51.502976701 + ], + [ + 7.2601235, + 51.502731001 + ], + [ + 7.2612308, + 51.502270501 + ], + [ + 7.2622786, + 51.501799001 + ], + [ + 7.2629496, + 51.501494401 + ], + [ + 7.263661987, + 51.501150857 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de67", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.51630027570291,7.212990127875948,51.51365750179352,7.216801345916567", + "point": "51.51630027570291,7.212990127875948", + "startLcPosition": "12", + "impact": { + "lower": "Bochum", + "upper": "Bochum-Riemke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Bochum-Riemke - Bochum", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.51630027570291, + "long": 7.212990127875948 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 0.1 km hinter AS Bochum-Riemke und 3.2 km vor AS Bochum", + "", + "L\u00e4nge: 0.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.212990128, + 51.516300276 + ], + [ + 7.2131351, + 51.516138301 + ], + [ + 7.2136185, + 51.515693301 + ], + [ + 7.2141152, + 51.515307701 + ], + [ + 7.2142854, + 51.515172501 + ], + [ + 7.2146295, + 51.514920601 + ], + [ + 7.2150291, + 51.514651701 + ], + [ + 7.2154712, + 51.514361701 + ], + [ + 7.2159891, + 51.514071501 + ], + [ + 7.2161745, + 51.513970501 + ], + [ + 7.2167451, + 51.513682101 + ], + [ + 7.216801346, + 51.513657502 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de113", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.530596727770956,7.207553534999747,51.54313790845807,7.201063499400307", + "point": "51.530596727770956,7.207553534999747", + "startLcPosition": "12", + "impact": { + "lower": "Herne", + "upper": "Bochum-Riemke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Bochum-Riemke - Herne", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.530596727770956, + "long": 7.207553534999747 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 1.6 km hinter AS Bochum-Riemke und 0.2 km vor AK Herne", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.207553535, + 51.530596728 + ], + [ + 7.2075484, + 51.530770901 + ], + [ + 7.2075146, + 51.531806801 + ], + [ + 7.2074923, + 51.532219501 + ], + [ + 7.2074855, + 51.532500901 + ], + [ + 7.2074215, + 51.533293001 + ], + [ + 7.2073352, + 51.534011901 + ], + [ + 7.2071908, + 51.534809301 + ], + [ + 7.2070404, + 51.535444801 + ], + [ + 7.2068888, + 51.535936001 + ], + [ + 7.2066994, + 51.536422501 + ], + [ + 7.2066079, + 51.536634801 + ], + [ + 7.2062409, + 51.537397301 + ], + [ + 7.2060622, + 51.537713101 + ], + [ + 7.2057572, + 51.538187201 + ], + [ + 7.2054226, + 51.538648501 + ], + [ + 7.2050635, + 51.539090201 + ], + [ + 7.2045771, + 51.539598301 + ], + [ + 7.2042942, + 51.539901501 + ], + [ + 7.2038404, + 51.540363701 + ], + [ + 7.2034384, + 51.540753401 + ], + [ + 7.2029308, + 51.541257601 + ], + [ + 7.2027933, + 51.541391001 + ], + [ + 7.2023865, + 51.541785601 + ], + [ + 7.2019532, + 51.542215601 + ], + [ + 7.201489, + 51.542689901 + ], + [ + 7.201063499, + 51.543137908 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de63", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.532364718850246,7.207326062115071,51.51630027570291,7.212990127875948", + "point": "51.532364718850246,7.207326062115071", + "startLcPosition": "13", + "impact": { + "lower": "Bochum", + "upper": "Herne-Eickel", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Herne-Eickel - Bochum", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.532364718850246, + "long": 7.207326062115071 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen AS Herne-Eickel und 3.6 km vor AS Bochum", + "", + "L\u00e4nge: 1.84 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.207326062, + 51.532364719 + ], + [ + 7.2073323, + 51.532254601 + ], + [ + 7.2073716, + 51.531373601 + ], + [ + 7.2073866, + 51.530846301 + ], + [ + 7.2074148, + 51.529729801 + ], + [ + 7.2074418, + 51.529338601 + ], + [ + 7.2074543, + 51.529119201 + ], + [ + 7.2074934, + 51.528567501 + ], + [ + 7.2075496, + 51.528061601 + ], + [ + 7.207627, + 51.527554501 + ], + [ + 7.2076647, + 51.527326001 + ], + [ + 7.2077655, + 51.526826701 + ], + [ + 7.2078037, + 51.526662501 + ], + [ + 7.2078741, + 51.526358701 + ], + [ + 7.207994, + 51.525919501 + ], + [ + 7.2080095, + 51.525860001 + ], + [ + 7.2080901, + 51.525592301 + ], + [ + 7.208399, + 51.524690001 + ], + [ + 7.2086168, + 51.524155101 + ], + [ + 7.2088875, + 51.523528701 + ], + [ + 7.2093714, + 51.522515401 + ], + [ + 7.2096655, + 51.521954601 + ], + [ + 7.2097619, + 51.521772301 + ], + [ + 7.2100763, + 51.521161401 + ], + [ + 7.2103223, + 51.520695001 + ], + [ + 7.211097, + 51.519220901 + ], + [ + 7.2112115, + 51.519015101 + ], + [ + 7.2112429, + 51.518955401 + ], + [ + 7.2113598, + 51.518722601 + ], + [ + 7.2116753, + 51.518156701 + ], + [ + 7.2118271, + 51.517891701 + ], + [ + 7.2120412, + 51.517556601 + ], + [ + 7.2122932, + 51.517200901 + ], + [ + 7.2123849, + 51.517057801 + ], + [ + 7.2126499, + 51.516680401 + ], + [ + 7.212990128, + 51.516300276 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de109", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54313790845807,7.201063499400307,51.5468758083354,7.198573348801248", + "point": "51.54313790845807,7.201063499400307", + "startLcPosition": "13", + "impact": { + "lower": "Recklinghausen-Hochlarmark", + "upper": "Herne-Eickel", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Herne-Eickel - Recklinghausen-Hochlarmark", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.54313790845807, + "long": 7.201063499400307 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 1.3 km hinter AS Herne-Eickel und 2.7 km vor AS Recklinghausen-Hochlarmark", + "", + "L\u00e4nge: 0.45 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.201063499, + 51.543137908 + ], + [ + 7.2009426, + 51.543265201 + ], + [ + 7.2004072, + 51.543940301 + ], + [ + 7.2002243, + 51.544147901 + ], + [ + 7.1998994, + 51.544596801 + ], + [ + 7.1996101, + 51.545006901 + ], + [ + 7.1995188, + 51.545144701 + ], + [ + 7.1992974, + 51.545492501 + ], + [ + 7.1991593, + 51.545718701 + ], + [ + 7.1987135, + 51.546578801 + ], + [ + 7.198573349, + 51.546875808 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de126", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5499755875983,7.197504455113639,51.562342518354306,7.193810016551727", + "point": "51.5499755875983,7.197504455113639", + "startLcPosition": "14", + "impact": { + "lower": "Recklinghausen-Hochlarmark", + "upper": "Herne", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Herne - Recklinghausen-Hochlarmark", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.5499755875983, + "long": 7.197504455113639 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 0.6 km hinter AK Herne und 0.9 km vor AS Recklinghausen-Hochlarmark", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.197504455, + 51.549975588 + ], + [ + 7.197427, + 51.550274701 + ], + [ + 7.1972888, + 51.550917201 + ], + [ + 7.197077, + 51.552126501 + ], + [ + 7.1970361, + 51.552361101 + ], + [ + 7.1969394, + 51.552934901 + ], + [ + 7.1968891, + 51.553213401 + ], + [ + 7.1968489, + 51.553362301 + ], + [ + 7.1967557, + 51.553582401 + ], + [ + 7.1967175, + 51.553696701 + ], + [ + 7.1966055, + 51.554177001 + ], + [ + 7.1964861, + 51.554651401 + ], + [ + 7.1963654, + 51.555078801 + ], + [ + 7.1962731, + 51.555340201 + ], + [ + 7.1960985, + 51.555918601 + ], + [ + 7.1958212, + 51.556691001 + ], + [ + 7.1955719, + 51.557338701 + ], + [ + 7.1953482, + 51.557907601 + ], + [ + 7.1951529, + 51.558334201 + ], + [ + 7.1951187, + 51.558424201 + ], + [ + 7.1950083, + 51.558681901 + ], + [ + 7.1946627, + 51.559557901 + ], + [ + 7.1945845, + 51.559744401 + ], + [ + 7.1945434, + 51.559852101 + ], + [ + 7.1945318, + 51.559882601 + ], + [ + 7.1942328, + 51.560890101 + ], + [ + 7.1939939, + 51.561673101 + ], + [ + 7.193937, + 51.561849601 + ], + [ + 7.193810017, + 51.562342518 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de55", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53548047232629,7.206854705263851,51.532364718850246,7.207326062115071", + "point": "51.53548047232629,7.206854705263851", + "startLcPosition": "14", + "impact": { + "lower": "Bochum-Riemke", + "upper": "Herne", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Herne - Bochum-Riemke", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.53548047232629, + "long": 7.206854705263851 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 1.1 km hinter AK Herne und 1.8 km vor AS Bochum-Riemke", + "", + "L\u00e4nge: 0.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.206854705, + 51.535480472 + ], + [ + 7.2068958, + 51.535352301 + ], + [ + 7.2070393, + 51.534751701 + ], + [ + 7.2071197, + 51.534367001 + ], + [ + 7.2072351, + 51.533474501 + ], + [ + 7.2072881, + 51.532832701 + ], + [ + 7.2073225, + 51.532427601 + ], + [ + 7.207326062, + 51.532364719 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de122", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.562342518354306,7.193810016551727,51.587934212951424,7.187947107126381", + "point": "51.562342518354306,7.193810016551727", + "startLcPosition": "14", + "impact": { + "lower": "Recklinghausen/Herten", + "upper": "Herne", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> M\u00fcnster", + "title": "A43 | Herne - Recklinghausen/Herten", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.562342518354306, + "long": 7.193810016551727 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: Wuppertal -> M\u00fcnster, zwischen 2.0 km hinter AK Herne und 2.6 km vor AS Recklinghausen/Herten", + "", + "L\u00e4nge: 2.88 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.193810017, + 51.562342518 + ], + [ + 7.193653, + 51.562952001 + ], + [ + 7.1935403, + 51.563630201 + ], + [ + 7.1934881, + 51.564024901 + ], + [ + 7.1933966, + 51.565057301 + ], + [ + 7.1933383, + 51.565878001 + ], + [ + 7.1933347, + 51.565939601 + ], + [ + 7.1933365, + 51.566022601 + ], + [ + 7.1932976, + 51.567113901 + ], + [ + 7.1932915, + 51.567741701 + ], + [ + 7.1932532, + 51.568485401 + ], + [ + 7.1932148, + 51.569190001 + ], + [ + 7.1931675, + 51.569808201 + ], + [ + 7.1931152, + 51.570298701 + ], + [ + 7.1930784, + 51.570595701 + ], + [ + 7.1930302, + 51.570883001 + ], + [ + 7.1927842, + 51.572005101 + ], + [ + 7.1926625, + 51.572567601 + ], + [ + 7.1925082, + 51.573115801 + ], + [ + 7.192323, + 51.573765101 + ], + [ + 7.1922808, + 51.573908001 + ], + [ + 7.1919357, + 51.575015201 + ], + [ + 7.1916347, + 51.575997401 + ], + [ + 7.1915358, + 51.576290301 + ], + [ + 7.1912527, + 51.577255401 + ], + [ + 7.191058, + 51.577953501 + ], + [ + 7.1905338, + 51.579516001 + ], + [ + 7.1900484, + 51.581109401 + ], + [ + 7.1900045, + 51.581256601 + ], + [ + 7.1898624, + 51.581653101 + ], + [ + 7.1897059, + 51.582129001 + ], + [ + 7.1893446, + 51.583272701 + ], + [ + 7.1891535, + 51.583860501 + ], + [ + 7.1887915, + 51.585027901 + ], + [ + 7.1885644, + 51.585742001 + ], + [ + 7.1884193, + 51.586221501 + ], + [ + 7.1882993, + 51.586592901 + ], + [ + 7.187947107, + 51.587934213 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de105", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5468758083354,7.198573348801248,51.54996671441253,7.197506752800166", + "point": "51.5468758083354,7.198573348801248", + "startLcPosition": "14", + "impact": { + "lower": "Recklinghausen-Hochlarmark", + "upper": "Herne", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> Recklinghausen", + "title": "A43 | Herne - Recklinghausen-Hochlarmark", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.5468758083354, + "long": 7.198573348801248 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: Wuppertal -> Recklinghausen, zwischen 0.3 km hinter AK Herne und 2.3 km vor AS Recklinghausen-Hochlarmark", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.198573349, + 51.546875808 + ], + [ + 7.1984173, + 51.547206501 + ], + [ + 7.198141, + 51.547881701 + ], + [ + 7.1979042, + 51.548501001 + ], + [ + 7.1977636, + 51.548974801 + ], + [ + 7.197506753, + 51.549966714 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de111", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54308560991044,7.200916310512692,51.53886845377549,7.205014862974802", + "point": "51.54308560991044,7.200916310512692", + "startLcPosition": "14", + "impact": { + "lower": "Herne-Eickel", + "upper": "Herne", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Herne - Herne-Eickel", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.54308560991044, + "long": 7.200916310512692 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 0.2 km hinter AK Herne und 0.7 km vor AS Herne-Eickel", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.200916311, + 51.54308561 + ], + [ + 7.2010315, + 51.542954201 + ], + [ + 7.2019442, + 51.542031401 + ], + [ + 7.2023102, + 51.541668301 + ], + [ + 7.2027076, + 51.541280601 + ], + [ + 7.203754, + 51.540246401 + ], + [ + 7.2042648, + 51.539716301 + ], + [ + 7.204623, + 51.539327801 + ], + [ + 7.2049562, + 51.538941601 + ], + [ + 7.205014863, + 51.538868454 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de128", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.56231835492313,7.193559995351216,51.5499591045921,7.1973353688782185", + "point": "51.56231835492313,7.193559995351216", + "startLcPosition": "15", + "impact": { + "lower": "Herne", + "upper": "Recklinghausen-Hochlarmark", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Recklinghausen-Hochlarmark - Herne", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.56231835492313, + "long": 7.193559995351216 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 0.9 km hinter AS Recklinghausen-Hochlarmark und 0.6 km vor AK Herne", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.193559995, + 51.562318355 + ], + [ + 7.1936083, + 51.562106001 + ], + [ + 7.1936821, + 51.561824201 + ], + [ + 7.1937403, + 51.561627401 + ], + [ + 7.1943838, + 51.559737701 + ], + [ + 7.1944318, + 51.559617601 + ], + [ + 7.1945123, + 51.559395101 + ], + [ + 7.1947563, + 51.558785301 + ], + [ + 7.194979, + 51.558247501 + ], + [ + 7.1951993, + 51.557732001 + ], + [ + 7.195386, + 51.557278901 + ], + [ + 7.1956157, + 51.556692301 + ], + [ + 7.1958935, + 51.555928501 + ], + [ + 7.1960186, + 51.555564301 + ], + [ + 7.1960912, + 51.555316701 + ], + [ + 7.1964347, + 51.554118301 + ], + [ + 7.1965256, + 51.553756401 + ], + [ + 7.1965971, + 51.553443601 + ], + [ + 7.1967455, + 51.552768101 + ], + [ + 7.1968549, + 51.552263501 + ], + [ + 7.1968983, + 51.552027601 + ], + [ + 7.1971729, + 51.550634601 + ], + [ + 7.197335369, + 51.549959105 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de107", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.54684279290826,7.1983921983483485,51.54308560991044,7.200916310512692", + "point": "51.54684279290826,7.1983921983483485", + "startLcPosition": "15", + "impact": { + "lower": "Herne-Eickel", + "upper": "Recklinghausen-Hochlarmark", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Recklinghausen-Hochlarmark - Herne-Eickel", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.54684279290826, + "long": 7.1983921983483485 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 2.7 km hinter AS Recklinghausen-Hochlarmark und 1.3 km vor AS Herne-Eickel", + "", + "L\u00e4nge: 0.45 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.198392198, + 51.546842793 + ], + [ + 7.1984559, + 51.546705301 + ], + [ + 7.1987529, + 51.546122701 + ], + [ + 7.1989503, + 51.545764101 + ], + [ + 7.1991278, + 51.545473101 + ], + [ + 7.1996157, + 51.544706801 + ], + [ + 7.2000559, + 51.544107501 + ], + [ + 7.2003624, + 51.543734701 + ], + [ + 7.2006913, + 51.543342301 + ], + [ + 7.200916311, + 51.54308561 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de103", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.549950214427284,7.1973375070866314,51.54684279290826,7.1983921983483485", + "point": "51.549950214427284,7.1973375070866314", + "startLcPosition": "15", + "impact": { + "lower": "Herne", + "upper": "Recklinghausen-Hochlarmark", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> Wuppertal", + "title": "A43 | Recklinghausen-Hochlarmark - Herne", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.549950214427284, + "long": 7.1973375070866314 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: Recklinghausen -> Wuppertal, zwischen 2.3 km hinter AS Recklinghausen-Hochlarmark und 0.3 km vor AK Herne", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.197337507, + 51.549950214 + ], + [ + 7.1973758, + 51.549791001 + ], + [ + 7.1975171, + 51.549230901 + ], + [ + 7.1976243, + 51.548889501 + ], + [ + 7.1976864, + 51.548659001 + ], + [ + 7.1978498, + 51.548161501 + ], + [ + 7.198177, + 51.547324601 + ], + [ + 7.1982753, + 51.547095101 + ], + [ + 7.198392198, + 51.546842793 + ] + ] + } + }, + { + "identifier": "2023-004424--vi-bs.2026-03-22_20-00-00-000.devi-zus.2021-06-14_20-00-00-000_006.f.de124", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.58791197866217,7.187720981747187,51.56231835492313,7.193559995351216", + "point": "51.58791197866217,7.187720981747187", + "startLcPosition": "17", + "impact": { + "lower": "Herne", + "upper": "Recklinghausen/Herten", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnster -> Wuppertal", + "title": "A43 | Recklinghausen/Herten - Herne", + "startTimestamp": "2026-03-22T20:00:00+01:00", + "coordinate": { + "lat": 51.58791197866217, + "long": 7.187720981747187 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.03.26 um 20:00 Uhr", + "Ende: 31.12.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A43: M\u00fcnster -> Wuppertal, zwischen 2.6 km hinter AS Recklinghausen/Herten und 2.0 km vor AK Herne", + "", + "L\u00e4nge: 2.88 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A43 - Ausbau AK Herne - Tunnelneubau - 6-str. Ausbau - im Bereich der beiden Schrankenanlagen Verbot f\u00fcr Fahrzeuge \u00fcber 2,10m bzw. 2,40m tats\u00e4chliche Breite - AlD 4424" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.187720982, + 51.587911979 + ], + [ + 7.1877508, + 51.587790001 + ], + [ + 7.1883096, + 51.585900301 + ], + [ + 7.1886313, + 51.584899501 + ], + [ + 7.1889474, + 51.583832601 + ], + [ + 7.1891316, + 51.583240201 + ], + [ + 7.189585, + 51.581758501 + ], + [ + 7.1897481, + 51.581225601 + ], + [ + 7.1897876, + 51.581078001 + ], + [ + 7.190664, + 51.578363601 + ], + [ + 7.1907868, + 51.577926901 + ], + [ + 7.1909253, + 51.577447501 + ], + [ + 7.191206, + 51.576570801 + ], + [ + 7.1914567, + 51.575819801 + ], + [ + 7.1917042, + 51.575010801 + ], + [ + 7.1920593, + 51.573871201 + ], + [ + 7.1921118, + 51.573727001 + ], + [ + 7.1921961, + 51.573441501 + ], + [ + 7.1924855, + 51.572433601 + ], + [ + 7.1927947, + 51.570869601 + ], + [ + 7.192834, + 51.570581801 + ], + [ + 7.1928493, + 51.570358901 + ], + [ + 7.1929169, + 51.569707401 + ], + [ + 7.1929737, + 51.568008601 + ], + [ + 7.1930309, + 51.566937601 + ], + [ + 7.1930606, + 51.566343801 + ], + [ + 7.1930772, + 51.565889601 + ], + [ + 7.19308, + 51.565823801 + ], + [ + 7.1931258, + 51.565093001 + ], + [ + 7.1932372, + 51.564002201 + ], + [ + 7.1933081, + 51.563467301 + ], + [ + 7.1934197, + 51.562935101 + ], + [ + 7.193559995, + 51.562318355 + ] + ] + } + }, + { + "identifier": "2023-004541--vi-bs.2026-04-02_12-00-00-000.devi-zus.2024-04-15_19-00-00-000_015.f.de8", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.84821040948877,7.2708581450899,51.85084858293318,7.28242374476523", + "point": "51.84821040948877,7.2708581450899", + "startLcPosition": "26", + "impact": { + "lower": "D\u00fclmen-Nord", + "upper": "D\u00fclmen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Recklinghausen -> M\u00fcnster", + "title": "A43 | D\u00fclmen - D\u00fclmen-Nord", + "startTimestamp": "2026-04-02T12:00:00+02:00", + "coordinate": { + "lat": 51.84821040948877, + "long": 7.2708581450899 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 12:00 Uhr", + "Ende: 17.04.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.05.26)", + "", + "A43: Recklinghausen -> M\u00fcnster, zwischen 1.0 km hinter AS D\u00fclmen und 0.2 km vor AS D\u00fclmen-Nord", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A43 - Bau von 6 Verkehrszeichentr\u00e4gern - AlD 4541" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.270858145, + 51.848210409 + ], + [ + 7.271297, + 51.848310501 + ], + [ + 7.2729697, + 51.848680001 + ], + [ + 7.2753158, + 51.849188601 + ], + [ + 7.2770531, + 51.849565501 + ], + [ + 7.2787742, + 51.849952201 + ], + [ + 7.2790996, + 51.850030401 + ], + [ + 7.2810085, + 51.850485201 + ], + [ + 7.2813061, + 51.850557401 + ], + [ + 7.282423745, + 51.850848583 + ] + ] + } + }, + { + "identifier": "2023-004543--vi-bs.2025-04-14_20-00-00-000.devi-zus.2025-04-01_19-00-00-000.f_001.de47", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.41508192829515,7.262390059853265,51.41545957009037,7.263797604553247", + "point": "51.41508192829515,7.262390059853265", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Witten-Herbede (aus Richtung Auf der Heide)", + "title": "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543", + "startTimestamp": "2025-04-14T20:00:00+02:00", + "coordinate": { + "lat": 51.41508192829515, + "long": 7.262390059853265 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.04.25 um 20:00 Uhr", + "Ende: 16.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.08.26)", + "", + "Abfahrt von der A43: AS Witten-Herbede (aus Richtung Auf der Heide)", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.26239006, + 51.415081928 + ], + [ + 7.2624371, + 51.415145201 + ], + [ + 7.2625463, + 51.415274401 + ], + [ + 7.2626554, + 51.415371101 + ], + [ + 7.2627706, + 51.415446001 + ], + [ + 7.2629121, + 51.415512301 + ], + [ + 7.2630141, + 51.415546601 + ], + [ + 7.2631322, + 51.415569601 + ], + [ + 7.2632449, + 51.415580801 + ], + [ + 7.2633627, + 51.415580801 + ], + [ + 7.2634506, + 51.415574001 + ], + [ + 7.2635463, + 51.415557301 + ], + [ + 7.2636417, + 51.415531601 + ], + [ + 7.263719, + 51.415500601 + ], + [ + 7.263797605, + 51.41545957 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de73", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.51586741354591,7.214329164440435,51.51599528468442,7.2136914538639205", + "point": "51.51586741354591,7.214329164440435", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bochum-Riemke (aus Richtung Bochum)", + "title": "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.51586741354591, + "long": 7.214329164440435 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "Auffahrt auf die A43: AS Bochum-Riemke (aus Richtung Bochum)", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.214329164, + 51.515867414 + ], + [ + 7.2142578, + 51.515861901 + ], + [ + 7.2140647, + 51.515873101 + ], + [ + 7.2139158, + 51.515899801 + ], + [ + 7.213705, + 51.515985701 + ], + [ + 7.213691454, + 51.515995285 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de71", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.52970020093323,7.207728199998103,51.53051839484237,7.208243224046403", + "point": "51.52970020093323,7.207728199998103", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Herne-Eickel (aus Richtung Bochum-Riemke)", + "title": "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.52970020093323, + "long": 7.207728199998103 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "Abfahrt von der A43: AS Herne-Eickel (aus Richtung Bochum-Riemke)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.2077282, + 51.529700201 + ], + [ + 7.2077282, + 51.529700201 + ], + [ + 7.2077817, + 51.529887001 + ], + [ + 7.207865, + 51.530108101 + ], + [ + 7.208026, + 51.530319501 + ], + [ + 7.2081846, + 51.530478601 + ], + [ + 7.208243224, + 51.530518395 + ] + ] + } + }, + { + "identifier": "2023-004548--vi-bs.2025-08-13_05-00-00-000.devi-zus.2025-02-02_20-00-00-000_003.f.de28", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.503106702542915,7.260709072116329,51.50309693507761,7.2599329827826615", + "point": "51.503106702542915,7.260709072116329", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bochum (aus Richtung Bochum)", + "title": "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548", + "startTimestamp": "2025-08-13T05:00:00+02:00", + "coordinate": { + "lat": 51.503106702542915, + "long": 7.260709072116329 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.08.25 um 05:00 Uhr", + "Ende: 11.12.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.12.26)", + "", + "Auffahrt auf die A43: AS Bochum (aus Richtung Bochum)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.4 m", + "", + "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.260709072, + 51.503106703 + ], + [ + 7.2607014, + 51.503102301 + ], + [ + 7.2605096, + 51.503054201 + ], + [ + 7.2603975, + 51.503048401 + ], + [ + 7.2602766, + 51.503053301 + ], + [ + 7.2601561, + 51.503059801 + ], + [ + 7.260048, + 51.503074801 + ], + [ + 7.259932983, + 51.503096935 + ] + ] + } + }, + { + "identifier": "2023-004548--vi-bs.2025-07-19_05-00-00-000.devi-zus.2025-02-02_20-00-00-000_003.f.de20", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.503087903466444,7.257247077477662,51.503242464715115,7.258354434882236", + "point": "51.503087903466444,7.257247077477662", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548", + "startTimestamp": "2025-07-19T05:00:00+02:00", + "coordinate": { + "lat": 51.503087903466444, + "long": 7.257247077477662 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.07.25 um 05:00 Uhr", + "Ende: 11.12.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.12.26)", + "", + "Abfahrt von der L654 (Castroper Hellweg)", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.257247077, + 51.503087903 + ], + [ + 7.2572629, + 51.503104601 + ], + [ + 7.2573321, + 51.503165201 + ], + [ + 7.2574201, + 51.503215401 + ], + [ + 7.2575432, + 51.503265801 + ], + [ + 7.2576948, + 51.503296501 + ], + [ + 7.2578305, + 51.503309801 + ], + [ + 7.2580967, + 51.503296301 + ], + [ + 7.258354435, + 51.503242465 + ] + ] + } + }, + { + "identifier": "2023-004548--vi-bs.2025-07-19_05-00-00-000.devi-zus.2025-02-02_20-00-00-000_003.f.de18", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.503961775687294,7.256150489443328,51.50347745805966,7.25685365389279", + "point": "51.503961775687294,7.256150489443328", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bochum (aus Richtung Bochum-Riemke)", + "title": "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548", + "startTimestamp": "2025-07-19T05:00:00+02:00", + "coordinate": { + "lat": 51.503961775687294, + "long": 7.256150489443328 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.07.25 um 05:00 Uhr", + "Ende: 11.12.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.12.26)", + "", + "Abfahrt von der A43: AS Bochum (aus Richtung Bochum-Riemke)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.256150489, + 51.503961776 + ], + [ + 7.2563732, + 51.503863601 + ], + [ + 7.2565646, + 51.503745301 + ], + [ + 7.2567418, + 51.503608801 + ], + [ + 7.256853654, + 51.503477458 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de61", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.517610385417136,7.21087314172384,51.51733681750119,7.212051388203202", + "point": "51.517610385417136,7.21087314172384", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bochum-Riemke (aus Richtung Herne-Eickel)", + "title": "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.517610385417136, + "long": 7.21087314172384 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "Auffahrt auf die A43: AS Bochum-Riemke (aus Richtung Herne-Eickel)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.210873142, + 51.517610385 + ], + [ + 7.2109439, + 51.517626901 + ], + [ + 7.2111297, + 51.517648601 + ], + [ + 7.2113228, + 51.517645701 + ], + [ + 7.2114696, + 51.517627801 + ], + [ + 7.2116312, + 51.517587701 + ], + [ + 7.2117714, + 51.517534301 + ], + [ + 7.2118592, + 51.517486701 + ], + [ + 7.2120067, + 51.517379901 + ], + [ + 7.212051388, + 51.517336818 + ] + ] + } + }, + { + "identifier": "2023-004548--vi-bs.2025-08-13_05-00-00-000.devi-zus.2025-02-02_20-00-00-000_003.f.de24", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50216349896696,7.262208060768153,51.502998037157425,7.2612205894652355", + "point": "51.50216349896696,7.262208060768153", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548", + "startTimestamp": "2025-08-13T05:00:00+02:00", + "coordinate": { + "lat": 51.50216349896696, + "long": 7.262208060768153 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.08.25 um 05:00 Uhr", + "Ende: 11.12.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.12.26)", + "", + "Auffahrt auf die L654 (Castroper Hellweg)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - Br\u00fcckeninstandsetzung - Verst\u00e4rkung BW Castroper Hellweg - Achtung H\u00f6henbeschr\u00e4nkung von 4m - AlD 4548" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.262208061, + 51.502163499 + ], + [ + 7.2620452, + 51.502254101 + ], + [ + 7.2618597, + 51.502381101 + ], + [ + 7.2616492, + 51.502517501 + ], + [ + 7.2614806, + 51.502646901 + ], + [ + 7.2613438, + 51.502786201 + ], + [ + 7.2612545, + 51.502930301 + ], + [ + 7.261220589, + 51.502998037 + ] + ] + } + }, + { + "identifier": "2023-004543--vi-bs.2025-04-14_20-00-00-000.devi-zus.2025-04-01_19-00-00-000.f_001.de44", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.41594815590101,7.26341768046827,51.41672913915132,7.263472477675109", + "point": "51.41594815590101,7.26341768046827", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Witten-Herbede (aus Richtung Auf der Heide)", + "title": "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543", + "startTimestamp": "2025-04-14T20:00:00+02:00", + "coordinate": { + "lat": 51.41594815590101, + "long": 7.26341768046827 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.04.25 um 20:00 Uhr", + "Ende: 16.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.08.26)", + "", + "Auffahrt auf die A43: AS Witten-Herbede (aus Richtung Auf der Heide)", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.26341768, + 51.415948156 + ], + [ + 7.2633721, + 51.416004801 + ], + [ + 7.2633093, + 51.416111501 + ], + [ + 7.2632809, + 51.416253501 + ], + [ + 7.263288, + 51.416348101 + ], + [ + 7.2632958, + 51.416446001 + ], + [ + 7.2633508, + 51.416556201 + ], + [ + 7.263441, + 51.416687101 + ], + [ + 7.263472478, + 51.416729139 + ] + ] + } + }, + { + "identifier": "2023-004543--vi-bs.2026-03-20_19-00-00-000.devi-zus.2025-04-01_19-00-00-000.f_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.41586968643149,7.263488874948433,51.416256943812755,7.263281158395769", + "point": "51.41586968643149,7.263488874948433", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Witten-Herbede (aus Richtung Auf der Heide)", + "title": "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543", + "startTimestamp": "2026-03-20T19:00:00+01:00", + "coordinate": { + "lat": 51.41586968643149, + "long": 7.263488874948433 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 19:00 Uhr", + "Ende: 31.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.08.26)", + "", + "Auffahrt auf die A43: AS Witten-Herbede (aus Richtung Auf der Heide)", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.263488875, + 51.415869686 + ], + [ + 7.2634652, + 51.415889101 + ], + [ + 7.2633721, + 51.416004801 + ], + [ + 7.2633093, + 51.416111501 + ], + [ + 7.2632809, + 51.416253501 + ], + [ + 7.263281158, + 51.416256944 + ] + ] + } + }, + { + "identifier": "2023-004543--vi-bs.2026-03-20_19-00-00-000.devi-zus.2025-04-01_19-00-00-000.f_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.41537645580584,7.2626636360448735,51.41557581085999,7.263194687238325", + "point": "51.41537645580584,7.2626636360448735", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Witten-Herbede (aus Richtung Auf der Heide)", + "title": "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543", + "startTimestamp": "2026-03-20T19:00:00+01:00", + "coordinate": { + "lat": 51.41537645580584, + "long": 7.2626636360448735 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 19:00 Uhr", + "Ende: 31.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.08.26)", + "", + "Abfahrt von der A43: AS Witten-Herbede (aus Richtung Auf der Heide)", + "", + "L\u00e4nge: 0.04 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - Beseitigung Anprallschaden BW Witten-Herbede - AlD 4543" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.262663636, + 51.415376456 + ], + [ + 7.2627706, + 51.415446001 + ], + [ + 7.2629121, + 51.415512301 + ], + [ + 7.2630141, + 51.415546601 + ], + [ + 7.2631322, + 51.415569601 + ], + [ + 7.263194687, + 51.415575811 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de59", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.518335153736196,7.211352475376195,51.517778813023085,7.210968605891063", + "point": "51.518335153736196,7.211352475376195", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bochum-Riemke (aus Richtung Herne-Eickel)", + "title": "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.518335153736196, + "long": 7.211352475376195 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "Abfahrt von der A43: AS Bochum-Riemke (aus Richtung Herne-Eickel)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.211352475, + 51.518335154 + ], + [ + 7.211353, + 51.518304201 + ], + [ + 7.2113463, + 51.518196501 + ], + [ + 7.2113201, + 51.518112601 + ], + [ + 7.2112638, + 51.518017501 + ], + [ + 7.2111927, + 51.517934901 + ], + [ + 7.2110888, + 51.517847301 + ], + [ + 7.210968606, + 51.517778813 + ] + ] + } + }, + { + "identifier": "2024-048834--vi-bs.2025-07-07_05-00-00-000.devi-zus.2025-01-29_19-00-00-000.de57", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.53425353410847,7.205794586186269,51.53397301357998,7.2069364595123835", + "point": "51.53425353410847,7.205794586186269", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Herne-Eickel (aus Richtung Herne)", + "title": "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834", + "startTimestamp": "2025-07-07T05:00:00+02:00", + "coordinate": { + "lat": 51.53425353410847, + "long": 7.205794586186269 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.07.25 um 05:00 Uhr", + "Ende: 19.08.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.10.27)", + "", + "Auffahrt auf die A43: AS Herne-Eickel (aus Richtung Herne)", + "", + "L\u00e4nge: 0.11 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A43 - 6-streifige Ausbau und Ersatzneubau Zechenbahn Constantin - AlD 48834" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.205794586, + 51.534253534 + ], + [ + 7.2060073, + 51.534334701 + ], + [ + 7.2061511, + 51.534361601 + ], + [ + 7.206227, + 51.534370201 + ], + [ + 7.2063038, + 51.534371801 + ], + [ + 7.206374, + 51.534367901 + ], + [ + 7.2065036, + 51.534348401 + ], + [ + 7.2065947, + 51.534320401 + ], + [ + 7.2066888, + 51.534280901 + ], + [ + 7.2067696, + 51.534224101 + ], + [ + 7.2068359, + 51.534167201 + ], + [ + 7.2068716, + 51.534117001 + ], + [ + 7.2069103, + 51.534044301 + ], + [ + 7.20693646, + 51.533973014 + ] + ] + } + } + ] + }, + "A44": { + "roadworks": [ + { + "identifier": "2026-014275--vi-bs.2026-04-07_09-00-00-000.devi-zus.2026-03-30_09-00-00-000_001.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.79489161152522,6.16929622900757,50.721671769117734,6.12680626176399", + "point": "50.79489161152522,6.16929622900757", + "startLcPosition": "7", + "impact": { + "lower": "Aachen-Lichtenbusch", + "upper": "Aachen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Aachen", + "title": "A44 | Aachen - Aachen-Lichtenbusch", + "coordinate": { + "lat": 50.79489161152522, + "long": 6.16929622900757 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:00 Uhr", + "10.04.26 von 09:00 bis 16:00 Uhr", + "", + "A44: M\u00f6nchengladbach -> Aachen, zwischen 1.1 km hinter AK Aachen und 0.1 km vor AS Aachen-Lichtenbusch", + "", + "L\u00e4nge: 9.42 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Grundhafte Instandsetzung Grenze D_BEL - AK Aachen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.169296229, + 50.794891612 + ], + [ + 6.1693301, + 50.794614201 + ], + [ + 6.1694267, + 50.794021501 + ], + [ + 6.1696194, + 50.793304501 + ], + [ + 6.1697313, + 50.792868201 + ], + [ + 6.1699685, + 50.792180201 + ], + [ + 6.1702332, + 50.791498501 + ], + [ + 6.1706498, + 50.790666401 + ], + [ + 6.171232, + 50.789655201 + ], + [ + 6.1720661, + 50.788463601 + ], + [ + 6.1726066, + 50.787789901 + ], + [ + 6.1731841, + 50.787088701 + ], + [ + 6.1738469, + 50.786364701 + ], + [ + 6.1741476, + 50.786033501 + ], + [ + 6.1742332, + 50.785928201 + ], + [ + 6.1748264, + 50.785186101 + ], + [ + 6.1754596, + 50.784262501 + ], + [ + 6.17591, + 50.783529101 + ], + [ + 6.1762076, + 50.782952701 + ], + [ + 6.1764529, + 50.782424901 + ], + [ + 6.1765334, + 50.782251801 + ], + [ + 6.1767454, + 50.781734801 + ], + [ + 6.1770073, + 50.781006701 + ], + [ + 6.1772636, + 50.780013501 + ], + [ + 6.1774778, + 50.778647601 + ], + [ + 6.1775276, + 50.777549301 + ], + [ + 6.1774789, + 50.776453001 + ], + [ + 6.1773164, + 50.775405501 + ], + [ + 6.177044, + 50.774342201 + ], + [ + 6.1767459, + 50.773475101 + ], + [ + 6.1763703, + 50.772602801 + ], + [ + 6.1756592, + 50.771305501 + ], + [ + 6.1754204, + 50.770958101 + ], + [ + 6.1751078, + 50.770503301 + ], + [ + 6.1746892, + 50.769945801 + ], + [ + 6.1742066, + 50.769374901 + ], + [ + 6.1740333, + 50.769179701 + ], + [ + 6.1740161, + 50.769160301 + ], + [ + 6.1733731, + 50.768462901 + ], + [ + 6.1725289, + 50.767668501 + ], + [ + 6.171206, + 50.766601701 + ], + [ + 6.170557, + 50.766130901 + ], + [ + 6.1696233, + 50.765510301 + ], + [ + 6.16868, + 50.764940701 + ], + [ + 6.1667533, + 50.763944801 + ], + [ + 6.1624765, + 50.762070901 + ], + [ + 6.161522, + 50.761623101 + ], + [ + 6.1612026, + 50.761468801 + ], + [ + 6.1582948, + 50.759961601 + ], + [ + 6.1564556, + 50.758876801 + ], + [ + 6.1531337, + 50.756690501 + ], + [ + 6.1525347, + 50.756251201 + ], + [ + 6.1519461, + 50.755806501 + ], + [ + 6.1514777, + 50.755445501 + ], + [ + 6.1510017, + 50.755056401 + ], + [ + 6.1507927, + 50.754897901 + ], + [ + 6.1502545, + 50.754437901 + ], + [ + 6.149916, + 50.754151201 + ], + [ + 6.1493603, + 50.753656301 + ], + [ + 6.1488217, + 50.753164201 + ], + [ + 6.148426, + 50.752774801 + ], + [ + 6.1479553, + 50.752339101 + ], + [ + 6.147778, + 50.752154301 + ], + [ + 6.1475976, + 50.751973901 + ], + [ + 6.146855, + 50.751199101 + ], + [ + 6.1466977, + 50.751000101 + ], + [ + 6.1463471, + 50.750604501 + ], + [ + 6.1449319, + 50.748959101 + ], + [ + 6.1431665, + 50.746487801 + ], + [ + 6.1429926, + 50.746214201 + ], + [ + 6.1413877, + 50.743510101 + ], + [ + 6.140105, + 50.741134601 + ], + [ + 6.1399953, + 50.740920001 + ], + [ + 6.1367741, + 50.734679801 + ], + [ + 6.1366114, + 50.734365501 + ], + [ + 6.1342816, + 50.729850601 + ], + [ + 6.133495, + 50.728397901 + ], + [ + 6.1333194, + 50.728097201 + ], + [ + 6.1326567, + 50.727083601 + ], + [ + 6.1318933, + 50.726065701 + ], + [ + 6.1309592, + 50.725010601 + ], + [ + 6.1304964, + 50.724534901 + ], + [ + 6.1298951, + 50.723975101 + ], + [ + 6.12915, + 50.723340401 + ], + [ + 6.1285226, + 50.722860201 + ], + [ + 6.1277816, + 50.722324001 + ], + [ + 6.1269437, + 50.721752701 + ], + [ + 6.126806262, + 50.721671769 + ] + ] + } + }, + { + "identifier": "2023-004397--vi-bs.2026-03-12_19-00-00-000.devi-zus.2024-09-02_19-00-00-000_005.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.4613119612207,7.40183677704759,51.459128843405054,7.363701827954203", + "point": "51.4613119612207,7.40183677704759", + "startLcPosition": "13", + "impact": { + "lower": "Witten-Stockum", + "upper": "Dortmund/Witten", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund/Witten -> Bochum-West", + "title": "A44 | Dortmund/Witten - Witten-Stockum", + "startTimestamp": "2026-03-12T19:00:00+01:00", + "coordinate": { + "lat": 51.4613119612207, + "long": 7.40183677704759 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 19:00 Uhr", + "Ende: 24.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 06.07.27)", + "", + "A448: Dortmund/Witten -> Bochum-West, zwischen 0.8 km hinter AK Dortmund/Witten und 0.6 km vor AS Witten-Stockum", + "", + "L\u00e4nge: 2.7 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10.65 m", + "", + "A448 - Bergbauerkundungen und Sicherung - AlD 4397" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.401836777, + 51.461311961 + ], + [ + 7.4016036, + 51.461246001 + ], + [ + 7.4011445, + 51.461128301 + ], + [ + 7.400457, + 51.460936901 + ], + [ + 7.4000276, + 51.460823201 + ], + [ + 7.3996233, + 51.460723901 + ], + [ + 7.3991817, + 51.460623501 + ], + [ + 7.3985222, + 51.460479801 + ], + [ + 7.3975049, + 51.460274701 + ], + [ + 7.3969763, + 51.460180001 + ], + [ + 7.396084, + 51.460030401 + ], + [ + 7.3958122, + 51.459990401 + ], + [ + 7.3951968, + 51.459899701 + ], + [ + 7.394444, + 51.459799201 + ], + [ + 7.3941629, + 51.459765801 + ], + [ + 7.393709, + 51.459717501 + ], + [ + 7.3928806, + 51.459640901 + ], + [ + 7.3922476, + 51.459583701 + ], + [ + 7.39158, + 51.459535701 + ], + [ + 7.3904172, + 51.459478601 + ], + [ + 7.3901728, + 51.459470401 + ], + [ + 7.3890821, + 51.459443201 + ], + [ + 7.3887983, + 51.459444501 + ], + [ + 7.3883182, + 51.459446601 + ], + [ + 7.3872028, + 51.459461101 + ], + [ + 7.3860535, + 51.459498601 + ], + [ + 7.3855547, + 51.459533001 + ], + [ + 7.3846695, + 51.459579001 + ], + [ + 7.3843711, + 51.459602001 + ], + [ + 7.3838152, + 51.459644101 + ], + [ + 7.3826827, + 51.459749501 + ], + [ + 7.3816318, + 51.459874101 + ], + [ + 7.3802402, + 51.459998101 + ], + [ + 7.3792841, + 51.460087701 + ], + [ + 7.378857, + 51.460123301 + ], + [ + 7.3783277, + 51.460167401 + ], + [ + 7.3772296, + 51.460235601 + ], + [ + 7.376462, + 51.460274601 + ], + [ + 7.3756929, + 51.460296501 + ], + [ + 7.3750219, + 51.460304301 + ], + [ + 7.3742237, + 51.460298201 + ], + [ + 7.3734952, + 51.460286701 + ], + [ + 7.3727928, + 51.460262501 + ], + [ + 7.3720989, + 51.460225601 + ], + [ + 7.3699762, + 51.460043301 + ], + [ + 7.3686355, + 51.459885201 + ], + [ + 7.3672821, + 51.459691901 + ], + [ + 7.3643734, + 51.459234401 + ], + [ + 7.363701828, + 51.459128843 + ] + ] + } + }, + { + "identifier": "2025-016034--vi-bs.2025-11-08_00-00-00-000.devi-zus.2025-10-20_00-00-00-000.de16", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.228700874600875,6.4900455949568485,51.23602100212284,6.486680663988877", + "point": "51.228700874600875,6.4900455949568485", + "startLcPosition": "21", + "impact": { + "lower": "Neersen", + "upper": "M\u00f6nchengladbach-Ost", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A44 | M\u00f6nchengladbach-Ost - Neersen", + "startTimestamp": "2025-11-08T00:00:00+01:00", + "coordinate": { + "lat": 51.228700874600875, + "long": 6.4900455949568485 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.11.25 um 00:00 Uhr", + "Ende: 01.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.27)", + "", + "A44: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 0.8 km hinter AS M\u00f6nchengladbach-Ost und 0.8 km vor AK Neersen", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 AK Neersen-AS MG-Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.490045595, + 51.228700875 + ], + [ + 6.4893381, + 51.229941501 + ], + [ + 6.4890645, + 51.230375601 + ], + [ + 6.4882454, + 51.231863401 + ], + [ + 6.4881651, + 51.232019901 + ], + [ + 6.4880902, + 51.232164801 + ], + [ + 6.4879447, + 51.232457901 + ], + [ + 6.4878764, + 51.232598201 + ], + [ + 6.4877973, + 51.232763501 + ], + [ + 6.4877224, + 51.232924601 + ], + [ + 6.4876516, + 51.233085001 + ], + [ + 6.4875832, + 51.233241301 + ], + [ + 6.4875278, + 51.233367101 + ], + [ + 6.4874751, + 51.233496201 + ], + [ + 6.4874045, + 51.233670601 + ], + [ + 6.4873429, + 51.233827901 + ], + [ + 6.4872743, + 51.234010001 + ], + [ + 6.4871798, + 51.234271501 + ], + [ + 6.4871181, + 51.234455801 + ], + [ + 6.4870701, + 51.234597501 + ], + [ + 6.4870159, + 51.234764601 + ], + [ + 6.4869231, + 51.235070801 + ], + [ + 6.486875, + 51.235239901 + ], + [ + 6.4868029, + 51.235511101 + ], + [ + 6.4867528, + 51.235710901 + ], + [ + 6.486719, + 51.235852701 + ], + [ + 6.4866865, + 51.235992701 + ], + [ + 6.486680664, + 51.236021002 + ] + ] + } + }, + { + "identifier": "2025-016034--vi-bs.2025-11-08_00-00-00-000.devi-zus.2025-10-20_00-00-00-000.de14", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.222999260223546,6.491936568174321,51.228700874600875,6.4900455949568485", + "point": "51.222999260223546,6.491936568174321", + "startLcPosition": "21", + "impact": { + "lower": "Neersen", + "upper": "M\u00f6nchengladbach-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A44 | M\u00f6nchengladbach-Ost - Neersen", + "startTimestamp": "2025-11-08T00:00:00+01:00", + "coordinate": { + "lat": 51.222999260223546, + "long": 6.491936568174321 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.11.25 um 00:00 Uhr", + "Ende: 01.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.27)", + "", + "A44: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 0.1 km hinter AS M\u00f6nchengladbach-Ost und 1.6 km vor AK Neersen", + "", + "L\u00e4nge: 0.65 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 AK Neersen-AS MG-Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.491936568, + 51.22299926 + ], + [ + 6.4919099, + 51.223282001 + ], + [ + 6.4918621, + 51.223642601 + ], + [ + 6.491801, + 51.223997001 + ], + [ + 6.4917344, + 51.224350001 + ], + [ + 6.4916565, + 51.224693701 + ], + [ + 6.4915592, + 51.225038801 + ], + [ + 6.4914756, + 51.225351201 + ], + [ + 6.4913758, + 51.225667601 + ], + [ + 6.4912208, + 51.226107201 + ], + [ + 6.490856, + 51.226999001 + ], + [ + 6.4906007, + 51.227541801 + ], + [ + 6.4901951, + 51.228438701 + ], + [ + 6.490045595, + 51.228700875 + ] + ] + } + }, + { + "identifier": "2025-016034--vi-bs.2025-11-08_00-00-00-000.devi-zus.2025-10-20_00-00-00-000.de18", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.236005897725235,6.4865026099833445,51.228652405360236,6.489818306758104", + "point": "51.236005897725235,6.4865026099833445", + "startLcPosition": "22", + "impact": { + "lower": "M\u00f6nchengladbach-Ost", + "upper": "Neersen", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> M\u00f6nchengladbach", + "title": "A44 | Neersen - M\u00f6nchengladbach-Ost", + "startTimestamp": "2025-11-08T00:00:00+01:00", + "coordinate": { + "lat": 51.236005897725235, + "long": 6.4865026099833445 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.11.25 um 00:00 Uhr", + "Ende: 01.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.27)", + "", + "A44: D\u00fcsseldorf -> M\u00f6nchengladbach, zwischen 0.8 km hinter AK Neersen und 0.8 km vor AS M\u00f6nchengladbach-Ost", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 AK Neersen-AS MG-Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.48650261, + 51.236005898 + ], + [ + 6.4865351, + 51.235860901 + ], + [ + 6.4865758, + 51.235701701 + ], + [ + 6.4866176, + 51.235528001 + ], + [ + 6.4866657, + 51.235346501 + ], + [ + 6.4867018, + 51.235214201 + ], + [ + 6.4867495, + 51.235046101 + ], + [ + 6.4867999, + 51.234875401 + ], + [ + 6.4868388, + 51.234746701 + ], + [ + 6.4868947, + 51.234569901 + ], + [ + 6.4869379, + 51.234437601 + ], + [ + 6.4870005, + 51.234258701 + ], + [ + 6.4870544, + 51.234106001 + ], + [ + 6.4871106, + 51.233952701 + ], + [ + 6.4871678, + 51.233802201 + ], + [ + 6.4872295, + 51.233645801 + ], + [ + 6.4872884, + 51.233497801 + ], + [ + 6.4873533, + 51.233339801 + ], + [ + 6.4874263, + 51.233169101 + ], + [ + 6.4874884, + 51.233029301 + ], + [ + 6.4875566, + 51.232876701 + ], + [ + 6.4876243, + 51.232730401 + ], + [ + 6.4876988, + 51.232571801 + ], + [ + 6.4877695, + 51.232426501 + ], + [ + 6.4878432, + 51.232274801 + ], + [ + 6.4879135, + 51.232136401 + ], + [ + 6.4879803, + 51.232004401 + ], + [ + 6.4880653, + 51.231842901 + ], + [ + 6.488147, + 51.231688401 + ], + [ + 6.4882292, + 51.231534701 + ], + [ + 6.4883023, + 51.231399001 + ], + [ + 6.4884012, + 51.231219501 + ], + [ + 6.4884763, + 51.231080701 + ], + [ + 6.4885578, + 51.230935201 + ], + [ + 6.4888905, + 51.230352101 + ], + [ + 6.4891507, + 51.229901001 + ], + [ + 6.4896866, + 51.228912101 + ], + [ + 6.489818307, + 51.228652405 + ] + ] + } + }, + { + "identifier": "2025-016034--vi-bs.2025-11-08_00-00-00-000.devi-zus.2025-10-20_00-00-00-000.de20", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.24227690787536,6.486491742436689,51.236005897725235,6.4865026099833445", + "point": "51.24227690787536,6.486491742436689", + "startLcPosition": "22", + "impact": { + "lower": "M\u00f6nchengladbach-Ost", + "upper": "Neersen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> M\u00f6nchengladbach", + "title": "A44 | Neersen - M\u00f6nchengladbach-Ost", + "startTimestamp": "2025-11-08T00:00:00+01:00", + "coordinate": { + "lat": 51.24227690787536, + "long": 6.486491742436689 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.11.25 um 00:00 Uhr", + "Ende: 01.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.27)", + "", + "A44: D\u00fcsseldorf -> M\u00f6nchengladbach, zwischen 0.1 km hinter AK Neersen und 1.6 km vor AS M\u00f6nchengladbach-Ost", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 AK Neersen-AS MG-Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.486491742, + 51.242276908 + ], + [ + 6.4864776, + 51.242208101 + ], + [ + 6.4863986, + 51.241803601 + ], + [ + 6.4863735, + 51.241639501 + ], + [ + 6.4863484, + 51.241481701 + ], + [ + 6.4862987, + 51.241147201 + ], + [ + 6.4862777, + 51.240984701 + ], + [ + 6.4862592, + 51.240822301 + ], + [ + 6.4862282, + 51.240513601 + ], + [ + 6.4862121, + 51.240327801 + ], + [ + 6.4862012, + 51.240175301 + ], + [ + 6.4861922, + 51.240025101 + ], + [ + 6.486177, + 51.239688901 + ], + [ + 6.48617, + 51.239358601 + ], + [ + 6.4861673, + 51.239064701 + ], + [ + 6.4861714, + 51.238753801 + ], + [ + 6.4861934, + 51.238214601 + ], + [ + 6.4862294, + 51.237780901 + ], + [ + 6.4862631, + 51.237454301 + ], + [ + 6.4863263, + 51.236979001 + ], + [ + 6.4863642, + 51.236744601 + ], + [ + 6.4864021, + 51.236510101 + ], + [ + 6.4864358, + 51.236328501 + ], + [ + 6.4864673, + 51.236175001 + ], + [ + 6.4864988, + 51.236022901 + ], + [ + 6.48650261, + 51.236005898 + ] + ] + } + }, + { + "identifier": "2025-016050--vi-bs.2026-04-08_10-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.28754816345643,6.612345793338315,51.28909706132587,6.622071751397212", + "point": "51.28754816345643,6.612345793338315", + "startLcPosition": "28", + "impact": { + "lower": "Meerbusch", + "upper": "Osterath", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A44 | Osterath - Meerbusch", + "coordinate": { + "lat": 51.28754816345643, + "long": 6.612345793338315 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 10:00 bis 15:00 Uhr", + "15.04.26 von 10:00 bis 15:00 Uhr", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 27.04.26 und dem 30.04.26 von 10:00 bis 15:00 Uhr.", + "", + "A44: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 0.4 km hinter AS Osterath und 1.0 km vor AK Meerbusch", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.612345793, + 51.287548163 + ], + [ + 6.6130885, + 51.287666501 + ], + [ + 6.6145791, + 51.287903601 + ], + [ + 6.6150879, + 51.287985001 + ], + [ + 6.6158097, + 51.288099901 + ], + [ + 6.6165578, + 51.288219001 + ], + [ + 6.6170759, + 51.288301401 + ], + [ + 6.6175723, + 51.288380401 + ], + [ + 6.6180597, + 51.288458101 + ], + [ + 6.6185612, + 51.288537901 + ], + [ + 6.6190416, + 51.288613801 + ], + [ + 6.6194038, + 51.288672401 + ], + [ + 6.6197864, + 51.288733501 + ], + [ + 6.6202898, + 51.288813601 + ], + [ + 6.622071751, + 51.289097061 + ] + ] + } + }, + { + "identifier": "2026-017618--vi-bs.2026-04-10_10-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.29052568316566,6.63104800634712,51.29075813844983,6.632507016699899", + "point": "51.29052568316566,6.63104800634712", + "startLcPosition": "28", + "impact": { + "lower": "Meerbusch", + "upper": "Osterath", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A44 | Osterath - Meerbusch", + "coordinate": { + "lat": 51.29052568316566, + "long": 6.63104800634712 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 10:00 bis 16:00 Uhr", + "", + "A44: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 1.8 km hinter AS Osterath und 0.2 km vor AK Meerbusch", + "", + "L\u00e4nge: 0.11 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A44 von Meerbusch (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.631048006, + 51.290525683 + ], + [ + 6.6318467, + 51.290652701 + ], + [ + 6.632507017, + 51.290758138 + ] + ] + } + }, + { + "identifier": "2026-003795--vi-bs.2026-04-16_10-00-00-000.devi-bs.2026-02-05_10-00-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.26933805182229,6.741989658823082,51.270151435246554,6.74615088745541", + "point": "51.26933805182229,6.741989658823082", + "startLcPosition": "34", + "impact": { + "lower": "D\u00fcsseldorf-Stockum", + "upper": "D\u00fcsseldorf-Messe/Arena", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Essen", + "title": "A44 | D\u00fcsseldorf-Messe/Arena - D\u00fcsseldorf-Stockum", + "coordinate": { + "lat": 51.26933805182229, + "long": 6.741989658823082 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 10:00 bis 14:00 Uhr", + "", + "A44: M\u00f6nchengladbach -> Essen, zwischen 1.0 km hinter AS D\u00fcsseldorf-Messe/Arena und 0.3 km vor AS D\u00fcsseldorf-Stockum", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 Geschwindigkeits\u00fcberwachungsanlage 2026" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.741989659, + 51.269338052 + ], + [ + 6.7422936, + 51.269369301 + ], + [ + 6.7428106, + 51.269437801 + ], + [ + 6.7432097, + 51.269496801 + ], + [ + 6.7436723, + 51.269567201 + ], + [ + 6.7441995, + 51.269666601 + ], + [ + 6.7449293, + 51.269827101 + ], + [ + 6.7454071, + 51.269945801 + ], + [ + 6.746150887, + 51.270151435 + ] + ] + } + }, + { + "identifier": "2026-010125--vi-bs.2026-04-22_19-00-00-000.devi-zus.2026-04-22_19-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27129766058544,6.76165092585246,51.27246784197426,6.768591311506663", + "point": "51.27129766058544,6.76165092585246", + "startLcPosition": "35", + "impact": { + "lower": "Flughafen", + "upper": "D\u00fcsseldorf-Stockum", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Stockum - Flughafen", + "coordinate": { + "lat": 51.27129766058544, + "long": 6.76165092585246 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 19:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 0.8 km hinter AS D\u00fcsseldorf-Stockum und 0.1 km vor Flughafen", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von D\u00fcsseldorf-Stockum (AS) nach Flughafen (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.761650926, + 51.271297661 + ], + [ + 6.7621676, + 51.271303201 + ], + [ + 6.7633358, + 51.271346801 + ], + [ + 6.7647108, + 51.271522201 + ], + [ + 6.7661076, + 51.271777501 + ], + [ + 6.7674523, + 51.272088701 + ], + [ + 6.768591312, + 51.272467842 + ] + ] + } + }, + { + "identifier": "2026-010119--vi-bs.2026-04-21_19-00-00-000.devi-zus.2026-04-21_19-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27129766058544,6.76165092585246,51.27701439253384,6.775716469968987", + "point": "51.27129766058544,6.76165092585246", + "startLcPosition": "35", + "impact": { + "lower": "D\u00fcsseldorf-Nord", + "upper": "D\u00fcsseldorf-Stockum", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Stockum - D\u00fcsseldorf-Nord", + "coordinate": { + "lat": 51.27129766058544, + "long": 6.76165092585246 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 19:00 bis zum 22.04.26 05:00 Uhr.", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 0.8 km hinter AS D\u00fcsseldorf-Stockum und 3.0 km vor AK D\u00fcsseldorf-Nord", + "", + "L\u00e4nge: 1.22 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von D\u00fcsseldorf-Stockum (AS) nach D\u00fcsseldorf-Nord (AK) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.761650926, + 51.271297661 + ], + [ + 6.7621676, + 51.271303201 + ], + [ + 6.7633358, + 51.271346801 + ], + [ + 6.7647108, + 51.271522201 + ], + [ + 6.7661076, + 51.271777501 + ], + [ + 6.7674523, + 51.272088701 + ], + [ + 6.7689505, + 51.272587401 + ], + [ + 6.7703512, + 51.273132101 + ], + [ + 6.7711967, + 51.273554201 + ], + [ + 6.7718714, + 51.273971101 + ], + [ + 6.7731032, + 51.274766501 + ], + [ + 6.77396, + 51.275408801 + ], + [ + 6.7741404, + 51.275544101 + ], + [ + 6.7748185, + 51.276174501 + ], + [ + 6.7755174, + 51.276820201 + ], + [ + 6.77571647, + 51.277014393 + ] + ] + } + }, + { + "identifier": "2026-010126--vi-bs.2026-04-22_19-00-00-000.devi-zus.2026-04-22_19-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27129766058544,6.76165092585246,51.27624165655397,6.774891187538667", + "point": "51.27129766058544,6.76165092585246", + "startLcPosition": "35", + "impact": { + "lower": "D\u00fcsseldorf-Flughafen", + "upper": "D\u00fcsseldorf-Stockum", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Stockum - D\u00fcsseldorf-Flughafen", + "coordinate": { + "lat": 51.27129766058544, + "long": 6.76165092585246 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 19:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 0.8 km hinter AS D\u00fcsseldorf-Stockum und 0.1 km vor AS D\u00fcsseldorf-Flughafen", + "", + "L\u00e4nge: 1.11 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A44 von D\u00fcsseldorf-Stockum (AS) nach D\u00fcsseldorf-Flughafen (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.761650926, + 51.271297661 + ], + [ + 6.7621676, + 51.271303201 + ], + [ + 6.7633358, + 51.271346801 + ], + [ + 6.7647108, + 51.271522201 + ], + [ + 6.7661076, + 51.271777501 + ], + [ + 6.7674523, + 51.272088701 + ], + [ + 6.7689505, + 51.272587401 + ], + [ + 6.7703512, + 51.273132101 + ], + [ + 6.7711967, + 51.273554201 + ], + [ + 6.7718714, + 51.273971101 + ], + [ + 6.7731032, + 51.274766501 + ], + [ + 6.77396, + 51.275408801 + ], + [ + 6.7741404, + 51.275544101 + ], + [ + 6.7748185, + 51.276174501 + ], + [ + 6.774891188, + 51.276241657 + ] + ] + } + }, + { + "identifier": "2026-003795--vi-bs.2026-04-15_10-00-00-000.devi-bs.2026-02-05_10-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27108642488473,6.748806718303759,51.27032072727619,6.74613982457522", + "point": "51.27108642488473,6.748806718303759", + "startLcPosition": "35", + "impact": { + "lower": "D\u00fcsseldorf-Messe/Arena", + "upper": "D\u00fcsseldorf-Stockum", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> M\u00f6nchengladbach", + "title": "A44 | D\u00fcsseldorf-Stockum - D\u00fcsseldorf-Messe/Arena", + "coordinate": { + "lat": 51.27108642488473, + "long": 6.748806718303759 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 10:00 bis 13:00 Uhr", + "", + "A44: Essen -> M\u00f6nchengladbach, zwischen 0.1 km hinter AS D\u00fcsseldorf-Stockum und 1.3 km vor AS D\u00fcsseldorf-Messe/Arena", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 Geschwindigkeits\u00fcberwachungsanlage 2026" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.748806718, + 51.271086425 + ], + [ + 6.7483179, + 51.270954601 + ], + [ + 6.7467129, + 51.270484001 + ], + [ + 6.746139825, + 51.270320727 + ] + ] + } + }, + { + "identifier": "2026-017194--vi-bs.2026-04-10_09-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27164519272314,6.752991192546837,51.284169115148266,6.782024419572416", + "point": "51.27164519272314,6.752991192546837", + "startLcPosition": "35", + "impact": { + "lower": "D\u00fcsseldorf-Nord", + "upper": "D\u00fcsseldorf-Stockum", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Stockum - D\u00fcsseldorf-Nord", + "coordinate": { + "lat": 51.27164519272314, + "long": 6.752991192546837 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 0.2 km hinter AS D\u00fcsseldorf-Stockum und 2.1 km vor AK D\u00fcsseldorf-Nord", + "", + "L\u00e4nge: 2.73 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von D\u00fcsseldorf-Stockum (AS) nach D\u00fcsseldorf-Nord (AK) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.752991193, + 51.271645193 + ], + [ + 6.7536623, + 51.271691301 + ], + [ + 6.754747, + 51.271722201 + ], + [ + 6.7556912, + 51.271693701 + ], + [ + 6.7571341, + 51.271606601 + ], + [ + 6.7587606, + 51.271457101 + ], + [ + 6.7594564, + 51.271392201 + ], + [ + 6.7601424, + 51.271348201 + ], + [ + 6.7606889, + 51.271323101 + ], + [ + 6.7615801, + 51.271296901 + ], + [ + 6.7621676, + 51.271303201 + ], + [ + 6.7633358, + 51.271346801 + ], + [ + 6.7647108, + 51.271522201 + ], + [ + 6.7661076, + 51.271777501 + ], + [ + 6.7674523, + 51.272088701 + ], + [ + 6.7689505, + 51.272587401 + ], + [ + 6.7703512, + 51.273132101 + ], + [ + 6.7711967, + 51.273554201 + ], + [ + 6.7718714, + 51.273971101 + ], + [ + 6.7731032, + 51.274766501 + ], + [ + 6.77396, + 51.275408801 + ], + [ + 6.7741404, + 51.275544101 + ], + [ + 6.7748185, + 51.276174501 + ], + [ + 6.7755174, + 51.276820201 + ], + [ + 6.7763697, + 51.277651601 + ], + [ + 6.7767238, + 51.278035501 + ], + [ + 6.7769948, + 51.278321001 + ], + [ + 6.7778149, + 51.279198301 + ], + [ + 6.777863, + 51.279257801 + ], + [ + 6.7786802, + 51.280202501 + ], + [ + 6.7789899, + 51.280554901 + ], + [ + 6.7796725, + 51.281369101 + ], + [ + 6.7799676, + 51.281719901 + ], + [ + 6.7812332, + 51.283227201 + ], + [ + 6.7816969, + 51.283779301 + ], + [ + 6.7819251, + 51.284049301 + ], + [ + 6.78202442, + 51.284169115 + ] + ] + } + }, + { + "identifier": "2026-010125--vi-bs.2026-04-22_19-00-00-000.devi-zus.2026-04-22_19-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.2725948820298,6.768483340675091,51.271447996280045,6.761646953003273", + "point": "51.2725948820298,6.768483340675091", + "startLcPosition": "36", + "impact": { + "lower": "D\u00fcsseldorf-Stockum", + "upper": "Flughafen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | Flughafen - D\u00fcsseldorf-Stockum", + "coordinate": { + "lat": 51.2725948820298, + "long": 6.768483340675091 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 19:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 0.1 km hinter Flughafen und 0.8 km vor AS D\u00fcsseldorf-Stockum", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von D\u00fcsseldorf-Stockum (AS) nach Flughafen (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.768483341, + 51.272594882 + ], + [ + 6.7673896, + 51.272228701 + ], + [ + 6.7660427, + 51.271919501 + ], + [ + 6.7646463, + 51.271671101 + ], + [ + 6.7633561, + 51.271499201 + ], + [ + 6.7621567, + 51.271453101 + ], + [ + 6.761646953, + 51.271447996 + ] + ] + } + }, + { + "identifier": "2026-010126--vi-bs.2026-04-22_19-00-00-000.devi-zus.2026-04-22_19-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27632863836233,6.774683457641529,51.271447996280045,6.761646953003273", + "point": "51.27632863836233,6.774683457641529", + "startLcPosition": "37", + "impact": { + "lower": "D\u00fcsseldorf-Stockum", + "upper": "D\u00fcsseldorf-Flughafen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | D\u00fcsseldorf-Flughafen - D\u00fcsseldorf-Stockum", + "coordinate": { + "lat": 51.27632863836233, + "long": 6.774683457641529 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 19:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 0.1 km hinter AS D\u00fcsseldorf-Flughafen und 0.8 km vor AS D\u00fcsseldorf-Stockum", + "", + "L\u00e4nge: 1.11 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 11.25 m", + "", + "A44 von D\u00fcsseldorf-Stockum (AS) nach D\u00fcsseldorf-Flughafen (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.774683458, + 51.276328638 + ], + [ + 6.7746145, + 51.276262901 + ], + [ + 6.7739351, + 51.275623501 + ], + [ + 6.7737485, + 51.275483101 + ], + [ + 6.772931, + 51.274868101 + ], + [ + 6.7717628, + 51.274076001 + ], + [ + 6.7710905, + 51.273672301 + ], + [ + 6.7702165, + 51.273249401 + ], + [ + 6.7688266, + 51.272709801 + ], + [ + 6.7673896, + 51.272228701 + ], + [ + 6.7660427, + 51.271919501 + ], + [ + 6.7646463, + 51.271671101 + ], + [ + 6.7633561, + 51.271499201 + ], + [ + 6.7621567, + 51.271453101 + ], + [ + 6.761646953, + 51.271447996 + ] + ] + } + }, + { + "identifier": "2025-010334--vi-bs.2025-03-06_00-00-00-000.devi-zus.2025-03-06_00-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28889344932361,6.80155972479055,51.28377081561455,6.864090541138519", + "point": "51.28889344932361,6.80155972479055", + "startLcPosition": "37", + "impact": { + "lower": "Ratingen-Schwarzbach", + "upper": "D\u00fcsseldorf-Flughafen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Flughafen - Ratingen-Schwarzbach", + "startTimestamp": "2025-03-06T00:00:00+01:00", + "coordinate": { + "lat": 51.28889344932361, + "long": 6.80155972479055 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.03.25 um 00:00 Uhr", + "Ende: 01.04.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.04.28)", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 2.7 km hinter AS D\u00fcsseldorf-Flughafen und 0.5 km vor AS Ratingen-Schwarzbach", + "", + "L\u00e4nge: 5.54 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 Go\u00dfraum- und Schwertransporte gesperrt" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.801559725, + 51.288893449 + ], + [ + 6.8016207, + 51.288850501 + ], + [ + 6.8017548, + 51.288760401 + ], + [ + 6.8027945, + 51.287880601 + ], + [ + 6.8032476, + 51.287437801 + ], + [ + 6.8036158, + 51.287039401 + ], + [ + 6.804525, + 51.285817601 + ], + [ + 6.8053227, + 51.284578701 + ], + [ + 6.8062819, + 51.283029301 + ], + [ + 6.8068818, + 51.282163701 + ], + [ + 6.8072173, + 51.281715801 + ], + [ + 6.807605, + 51.281220601 + ], + [ + 6.8078203, + 51.280976301 + ], + [ + 6.8085402, + 51.280190501 + ], + [ + 6.8088494, + 51.279870801 + ], + [ + 6.8095188, + 51.279234201 + ], + [ + 6.8101197, + 51.278728301 + ], + [ + 6.8110632, + 51.277973901 + ], + [ + 6.8116852, + 51.277518801 + ], + [ + 6.8122096, + 51.277159201 + ], + [ + 6.8130735, + 51.276624001 + ], + [ + 6.8139837, + 51.276118201 + ], + [ + 6.8146433, + 51.275787301 + ], + [ + 6.8154131, + 51.275428001 + ], + [ + 6.8161141, + 51.275143301 + ], + [ + 6.8169266, + 51.274848301 + ], + [ + 6.8178432, + 51.274555901 + ], + [ + 6.8187009, + 51.274316301 + ], + [ + 6.8197578, + 51.274073901 + ], + [ + 6.8208805, + 51.273862801 + ], + [ + 6.8214148, + 51.273779601 + ], + [ + 6.8215845, + 51.273755801 + ], + [ + 6.8219199, + 51.273704001 + ], + [ + 6.8230111, + 51.273565801 + ], + [ + 6.8242201, + 51.273445601 + ], + [ + 6.8254432, + 51.273365901 + ], + [ + 6.8265004, + 51.273310801 + ], + [ + 6.8273257, + 51.273298201 + ], + [ + 6.8283181, + 51.273293201 + ], + [ + 6.8292032, + 51.273315801 + ], + [ + 6.82995, + 51.273359201 + ], + [ + 6.8304974, + 51.273391301 + ], + [ + 6.8313073, + 51.273468501 + ], + [ + 6.832104, + 51.273536501 + ], + [ + 6.8330938, + 51.273659001 + ], + [ + 6.8342659, + 51.273838501 + ], + [ + 6.8352985, + 51.274026401 + ], + [ + 6.8362511, + 51.274228701 + ], + [ + 6.836935, + 51.274388001 + ], + [ + 6.8374762, + 51.274527201 + ], + [ + 6.838114, + 51.274696601 + ], + [ + 6.8386497, + 51.274848001 + ], + [ + 6.8394216, + 51.275082501 + ], + [ + 6.8401806, + 51.275323801 + ], + [ + 6.8410079, + 51.275588801 + ], + [ + 6.8419634, + 51.275897101 + ], + [ + 6.8423707, + 51.276016901 + ], + [ + 6.8430752, + 51.276211601 + ], + [ + 6.8439464, + 51.276453201 + ], + [ + 6.8453823, + 51.276818501 + ], + [ + 6.8466506, + 51.277120701 + ], + [ + 6.8486874, + 51.277612101 + ], + [ + 6.8509903, + 51.278224901 + ], + [ + 6.8528332, + 51.278806101 + ], + [ + 6.8535778, + 51.279067601 + ], + [ + 6.8543669, + 51.279359901 + ], + [ + 6.8550764, + 51.279637401 + ], + [ + 6.8559086, + 51.279977801 + ], + [ + 6.8569547, + 51.280437601 + ], + [ + 6.8587631, + 51.281287301 + ], + [ + 6.8596277, + 51.281707301 + ], + [ + 6.8597647, + 51.281773501 + ], + [ + 6.8606406, + 51.282209001 + ], + [ + 6.8617154, + 51.282738301 + ], + [ + 6.8623015, + 51.283000901 + ], + [ + 6.8630778, + 51.283355101 + ], + [ + 6.864090541, + 51.283770816 + ] + ] + } + }, + { + "identifier": "2026-010127--vi-bs.2026-04-23_19-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.28763899560825,6.803041726649679,51.286121537363115,6.80429883144876", + "point": "51.28763899560825,6.803041726649679", + "startLcPosition": "37", + "impact": { + "lower": "Reichswaldallee", + "upper": "D\u00fcsseldorf-Flughafen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Flughafen - Reichswaldallee", + "coordinate": { + "lat": 51.28763899560825, + "long": 6.803041726649679 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 19:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 2.9 km hinter AS D\u00fcsseldorf-Flughafen und 2.6 km vor Reichswaldallee", + "", + "L\u00e4nge: 0.19 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von D\u00fcsseldorf-Flughafen (AS) nach Reichswaldallee (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.803041727, + 51.287638996 + ], + [ + 6.8032476, + 51.287437801 + ], + [ + 6.8036158, + 51.287039401 + ], + [ + 6.804298831, + 51.286121537 + ] + ] + } + }, + { + "identifier": "2026-010128--vi-bs.2026-04-23_19-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.28689782200089,6.8037211584864,51.28533971708088,6.804832704382954", + "point": "51.28689782200089,6.8037211584864", + "startLcPosition": "37", + "impact": { + "lower": "Reichswaldallee", + "upper": "D\u00fcsseldorf-Flughafen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Flughafen - Reichswaldallee", + "coordinate": { + "lat": 51.28689782200089, + "long": 6.8037211584864 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 19:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 3.0 km hinter AS D\u00fcsseldorf-Flughafen und 2.5 km vor Reichswaldallee", + "", + "L\u00e4nge: 0.19 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von D\u00fcsseldorf-Flughafen (AS) nach Reichswaldallee (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.803721158, + 51.286897822 + ], + [ + 6.804525, + 51.285817601 + ], + [ + 6.804832704, + 51.285339717 + ] + ] + } + }, + { + "identifier": "2026-010129--vi-bs.2026-04-23_19-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.28689782200089,6.8037211584864,51.28533971708088,6.804832704382954", + "point": "51.28689782200089,6.8037211584864", + "startLcPosition": "37", + "impact": { + "lower": "Reichswaldallee", + "upper": "D\u00fcsseldorf-Flughafen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Flughafen - Reichswaldallee", + "coordinate": { + "lat": 51.28689782200089, + "long": 6.8037211584864 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 19:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 3.0 km hinter AS D\u00fcsseldorf-Flughafen und 2.5 km vor Reichswaldallee", + "", + "L\u00e4nge: 0.19 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von D\u00fcsseldorf-Flughafen (AS) nach Reichswaldallee (Tunnel) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.803721158, + 51.286897822 + ], + [ + 6.804525, + 51.285817601 + ], + [ + 6.804832704, + 51.285339717 + ] + ] + } + }, + { + "identifier": "2026-010119--vi-bs.2026-04-21_19-00-00-000.devi-zus.2026-04-21_19-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27710599452064,6.77548861263428,51.271447996280045,6.761646953003273", + "point": "51.27710599452064,6.77548861263428", + "startLcPosition": "38", + "impact": { + "lower": "D\u00fcsseldorf-Stockum", + "upper": "D\u00fcsseldorf-Nord", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | D\u00fcsseldorf-Nord - D\u00fcsseldorf-Stockum", + "coordinate": { + "lat": 51.27710599452064, + "long": 6.77548861263428 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 19:00 bis zum 22.04.26 05:00 Uhr.", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 3.0 km hinter AK D\u00fcsseldorf-Nord und 0.8 km vor AS D\u00fcsseldorf-Stockum", + "", + "L\u00e4nge: 1.22 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von D\u00fcsseldorf-Stockum (AS) nach D\u00fcsseldorf-Nord (AK) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.775488613, + 51.277105995 + ], + [ + 6.7751326, + 51.276756801 + ], + [ + 6.7746145, + 51.276262901 + ], + [ + 6.7739351, + 51.275623501 + ], + [ + 6.7737485, + 51.275483101 + ], + [ + 6.772931, + 51.274868101 + ], + [ + 6.7717628, + 51.274076001 + ], + [ + 6.7710905, + 51.273672301 + ], + [ + 6.7702165, + 51.273249401 + ], + [ + 6.7688266, + 51.272709801 + ], + [ + 6.7673896, + 51.272228701 + ], + [ + 6.7660427, + 51.271919501 + ], + [ + 6.7646463, + 51.271671101 + ], + [ + 6.7633561, + 51.271499201 + ], + [ + 6.7621567, + 51.271453101 + ], + [ + 6.761646953, + 51.271447996 + ] + ] + } + }, + { + "identifier": "2026-010117--vi-bs.2026-04-20_19-00-00-000.devi-zus.2026-04-20_19-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.2733577512386,6.825599579395334,51.27438588534795,6.836925917305765", + "point": "51.2733577512386,6.825599579395334", + "startLcPosition": "38", + "impact": { + "lower": "Ratingen-Schwarzbach", + "upper": "D\u00fcsseldorf-Nord", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Nord - Ratingen-Schwarzbach", + "coordinate": { + "lat": 51.2733577512386, + "long": 6.825599579395334 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:00 bis zum 21.04.26 05:00 Uhr.", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 2.3 km hinter AK D\u00fcsseldorf-Nord und 2.7 km vor AS Ratingen-Schwarzbach", + "", + "L\u00e4nge: 0.8 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von D\u00fcsseldorf-Nord (AK) nach Ratingen-Schwarzbach (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.825599579, + 51.273357751 + ], + [ + 6.8265004, + 51.273310801 + ], + [ + 6.8273257, + 51.273298201 + ], + [ + 6.8283181, + 51.273293201 + ], + [ + 6.8292032, + 51.273315801 + ], + [ + 6.82995, + 51.273359201 + ], + [ + 6.8304974, + 51.273391301 + ], + [ + 6.8313073, + 51.273468501 + ], + [ + 6.832104, + 51.273536501 + ], + [ + 6.8330938, + 51.273659001 + ], + [ + 6.8342659, + 51.273838501 + ], + [ + 6.8352985, + 51.274026401 + ], + [ + 6.8362511, + 51.274228701 + ], + [ + 6.836925917, + 51.274385885 + ] + ] + } + }, + { + "identifier": "2026-017274--vi-bs.2026-04-10_10-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.28504711002666,6.78247029876565,51.2718627384714,6.754443313808583", + "point": "51.28504711002666,6.78247029876565", + "startLcPosition": "38", + "impact": { + "lower": "D\u00fcsseldorf-Stockum", + "upper": "D\u00fcsseldorf-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | D\u00fcsseldorf-Nord - D\u00fcsseldorf-Stockum", + "coordinate": { + "lat": 51.28504711002666, + "long": 6.78247029876565 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 10:00 bis 15:00 Uhr", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 2.0 km hinter AK D\u00fcsseldorf-Nord und 0.3 km vor AS D\u00fcsseldorf-Stockum", + "", + "L\u00e4nge: 2.73 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von D\u00fcsseldorf-Nord (AK) nach D\u00fcsseldorf-Stockum (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.782470299, + 51.28504711 + ], + [ + 6.7817049, + 51.284125601 + ], + [ + 6.7814749, + 51.283863901 + ], + [ + 6.7810044, + 51.283300901 + ], + [ + 6.7796963, + 51.281735601 + ], + [ + 6.7793858, + 51.281365301 + ], + [ + 6.7791169, + 51.281033701 + ], + [ + 6.7787245, + 51.280578301 + ], + [ + 6.7784111, + 51.280212701 + ], + [ + 6.7778146, + 51.279524001 + ], + [ + 6.7776371, + 51.279328701 + ], + [ + 6.7767881, + 51.278396001 + ], + [ + 6.7765247, + 51.278122201 + ], + [ + 6.7751326, + 51.276756801 + ], + [ + 6.7746145, + 51.276262901 + ], + [ + 6.7739351, + 51.275623501 + ], + [ + 6.7737485, + 51.275483101 + ], + [ + 6.772931, + 51.274868101 + ], + [ + 6.7717628, + 51.274076001 + ], + [ + 6.7710905, + 51.273672301 + ], + [ + 6.7702165, + 51.273249401 + ], + [ + 6.7688266, + 51.272709801 + ], + [ + 6.7673896, + 51.272228701 + ], + [ + 6.7660427, + 51.271919501 + ], + [ + 6.7646463, + 51.271671101 + ], + [ + 6.7633561, + 51.271499201 + ], + [ + 6.7621567, + 51.271453101 + ], + [ + 6.7615975, + 51.271447501 + ], + [ + 6.7609796, + 51.271461001 + ], + [ + 6.7597455, + 51.271536301 + ], + [ + 6.7594663, + 51.271550701 + ], + [ + 6.7586819, + 51.271615601 + ], + [ + 6.7571491, + 51.271764001 + ], + [ + 6.7557612, + 51.271846501 + ], + [ + 6.7547548, + 51.271872301 + ], + [ + 6.754443314, + 51.271862738 + ] + ] + } + }, + { + "identifier": "2026-010113--vi-bs.2026-04-20_19-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.273452226546546,6.824153461473513,51.27473588176252,6.838252986542115", + "point": "51.273452226546546,6.824153461473513", + "startLcPosition": "38", + "impact": { + "lower": "Ratingen-Schwarzbach", + "upper": "D\u00fcsseldorf-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Nord - Ratingen-Schwarzbach", + "coordinate": { + "lat": 51.273452226546546, + "long": 6.824153461473513 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:00 bis zum 21.04.26 05:15 Uhr.", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 2.2 km hinter AK D\u00fcsseldorf-Nord und 2.6 km vor AS Ratingen-Schwarzbach", + "", + "L\u00e4nge: 1 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von D\u00fcsseldorf-Nord (AK) nach Ratingen-Schwarzbach (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.824153461, + 51.273452227 + ], + [ + 6.8242201, + 51.273445601 + ], + [ + 6.8254432, + 51.273365901 + ], + [ + 6.8265004, + 51.273310801 + ], + [ + 6.8273257, + 51.273298201 + ], + [ + 6.8283181, + 51.273293201 + ], + [ + 6.8292032, + 51.273315801 + ], + [ + 6.82995, + 51.273359201 + ], + [ + 6.8304974, + 51.273391301 + ], + [ + 6.8313073, + 51.273468501 + ], + [ + 6.832104, + 51.273536501 + ], + [ + 6.8330938, + 51.273659001 + ], + [ + 6.8342659, + 51.273838501 + ], + [ + 6.8352985, + 51.274026401 + ], + [ + 6.8362511, + 51.274228701 + ], + [ + 6.836935, + 51.274388001 + ], + [ + 6.8374762, + 51.274527201 + ], + [ + 6.838114, + 51.274696601 + ], + [ + 6.838252987, + 51.274735882 + ] + ] + } + }, + { + "identifier": "2026-017190--vi-bs.2026-04-10_08-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27625831096405,6.81373157174906,51.276654665286216,6.844738293037708", + "point": "51.27625831096405,6.81373157174906", + "startLcPosition": "38", + "impact": { + "lower": "Ratingen-Schwarzbach", + "upper": "D\u00fcsseldorf-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Nord - Ratingen-Schwarzbach", + "coordinate": { + "lat": 51.27625831096405, + "long": 6.81373157174906 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 15:00 Uhr", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 1.4 km hinter AK D\u00fcsseldorf-Nord und 2.1 km vor AS Ratingen-Schwarzbach", + "", + "L\u00e4nge: 2.3 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von D\u00fcsseldorf-Nord (AK) nach Ratingen-Schwarzbach (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.813731572, + 51.276258311 + ], + [ + 6.8139837, + 51.276118201 + ], + [ + 6.8146433, + 51.275787301 + ], + [ + 6.8154131, + 51.275428001 + ], + [ + 6.8161141, + 51.275143301 + ], + [ + 6.8169266, + 51.274848301 + ], + [ + 6.8178432, + 51.274555901 + ], + [ + 6.8187009, + 51.274316301 + ], + [ + 6.8197578, + 51.274073901 + ], + [ + 6.8208805, + 51.273862801 + ], + [ + 6.8214148, + 51.273779601 + ], + [ + 6.8215845, + 51.273755801 + ], + [ + 6.8219199, + 51.273704001 + ], + [ + 6.8230111, + 51.273565801 + ], + [ + 6.8242201, + 51.273445601 + ], + [ + 6.8254432, + 51.273365901 + ], + [ + 6.8265004, + 51.273310801 + ], + [ + 6.8273257, + 51.273298201 + ], + [ + 6.8283181, + 51.273293201 + ], + [ + 6.8292032, + 51.273315801 + ], + [ + 6.82995, + 51.273359201 + ], + [ + 6.8304974, + 51.273391301 + ], + [ + 6.8313073, + 51.273468501 + ], + [ + 6.832104, + 51.273536501 + ], + [ + 6.8330938, + 51.273659001 + ], + [ + 6.8342659, + 51.273838501 + ], + [ + 6.8352985, + 51.274026401 + ], + [ + 6.8362511, + 51.274228701 + ], + [ + 6.836935, + 51.274388001 + ], + [ + 6.8374762, + 51.274527201 + ], + [ + 6.838114, + 51.274696601 + ], + [ + 6.8386497, + 51.274848001 + ], + [ + 6.8394216, + 51.275082501 + ], + [ + 6.8401806, + 51.275323801 + ], + [ + 6.8410079, + 51.275588801 + ], + [ + 6.8419634, + 51.275897101 + ], + [ + 6.8423707, + 51.276016901 + ], + [ + 6.8430752, + 51.276211601 + ], + [ + 6.8439464, + 51.276453201 + ], + [ + 6.844738293, + 51.276654665 + ] + ] + } + }, + { + "identifier": "2026-009355--vi-bs.2026-03-10_00-00-00-000.devi-zus.2026-03-05_18-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.27390877618165,6.820635994133873,51.27438588534795,6.836925917305765", + "point": "51.27390877618165,6.820635994133873", + "startLcPosition": "38", + "impact": { + "lower": "Ratingen-Schwarzbach", + "upper": "D\u00fcsseldorf-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | D\u00fcsseldorf-Nord - Ratingen-Schwarzbach", + "startTimestamp": "2026-03-10T00:00:00+01:00", + "coordinate": { + "lat": 51.27390877618165, + "long": 6.820635994133873 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 00:00 Uhr", + "Ende: 10.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 23.05.26)", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen 1.9 km hinter AK D\u00fcsseldorf-Nord und 2.7 km vor AS Ratingen-Schwarzbach", + "", + "L\u00e4nge: 1.15 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 Tunnel Reichswaldallee Tunnelinstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.820635994, + 51.273908776 + ], + [ + 6.8208805, + 51.273862801 + ], + [ + 6.8214148, + 51.273779601 + ], + [ + 6.8215845, + 51.273755801 + ], + [ + 6.8219199, + 51.273704001 + ], + [ + 6.8230111, + 51.273565801 + ], + [ + 6.8242201, + 51.273445601 + ], + [ + 6.8254432, + 51.273365901 + ], + [ + 6.8265004, + 51.273310801 + ], + [ + 6.8273257, + 51.273298201 + ], + [ + 6.8283181, + 51.273293201 + ], + [ + 6.8292032, + 51.273315801 + ], + [ + 6.82995, + 51.273359201 + ], + [ + 6.8304974, + 51.273391301 + ], + [ + 6.8313073, + 51.273468501 + ], + [ + 6.832104, + 51.273536501 + ], + [ + 6.8330938, + 51.273659001 + ], + [ + 6.8342659, + 51.273838501 + ], + [ + 6.8352985, + 51.274026401 + ], + [ + 6.8362511, + 51.274228701 + ], + [ + 6.836925917, + 51.274385885 + ] + ] + } + }, + { + "identifier": "2026-010117--vi-bs.2026-04-20_19-00-00-000.devi-zus.2026-04-20_19-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.274499675349915,6.836857468038631,51.27347293318448,6.825610565570408", + "point": "51.274499675349915,6.836857468038631", + "startLcPosition": "41", + "impact": { + "lower": "D\u00fcsseldorf-Nord", + "upper": "Ratingen-Schwarzbach", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | Ratingen-Schwarzbach - D\u00fcsseldorf-Nord", + "coordinate": { + "lat": 51.274499675349915, + "long": 6.836857468038631 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:00 bis zum 21.04.26 05:00 Uhr.", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 2.7 km hinter AS Ratingen-Schwarzbach und 2.3 km vor AK D\u00fcsseldorf-Nord", + "", + "L\u00e4nge: 0.8 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von D\u00fcsseldorf-Nord (AK) nach Ratingen-Schwarzbach (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.836857468, + 51.274499675 + ], + [ + 6.8364527, + 51.274402301 + ], + [ + 6.8353012, + 51.274165701 + ], + [ + 6.8342109, + 51.273961001 + ], + [ + 6.8330321, + 51.273797401 + ], + [ + 6.8320906, + 51.273673201 + ], + [ + 6.8313303, + 51.273597801 + ], + [ + 6.8304813, + 51.273529701 + ], + [ + 6.8299349, + 51.273493401 + ], + [ + 6.8291871, + 51.273462601 + ], + [ + 6.8283355, + 51.273435801 + ], + [ + 6.8273069, + 51.273440801 + ], + [ + 6.8265131, + 51.273451601 + ], + [ + 6.825610566, + 51.273472933 + ] + ] + } + }, + { + "identifier": "2025-010334--vi-bs.2025-03-06_00-00-00-000.devi-zus.2025-03-06_00-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28394296086395,6.863909088145905,51.288971223550114,6.801697932171407", + "point": "51.28394296086395,6.863909088145905", + "startLcPosition": "41", + "impact": { + "lower": "D\u00fcsseldorf-Flughafen", + "upper": "Ratingen-Schwarzbach", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | Ratingen-Schwarzbach - D\u00fcsseldorf-Flughafen", + "startTimestamp": "2025-03-06T00:00:00+01:00", + "coordinate": { + "lat": 51.28394296086395, + "long": 6.863909088145905 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.03.25 um 00:00 Uhr", + "Ende: 01.04.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.04.28)", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 0.5 km hinter AS Ratingen-Schwarzbach und 2.7 km vor AS D\u00fcsseldorf-Flughafen", + "", + "L\u00e4nge: 5.54 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 Go\u00dfraum- und Schwertransporte gesperrt" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.863909088, + 51.283942961 + ], + [ + 6.8633641, + 51.283714501 + ], + [ + 6.8620926, + 51.283153501 + ], + [ + 6.8615245, + 51.282875301 + ], + [ + 6.8605199, + 51.282400301 + ], + [ + 6.8595399, + 51.281925701 + ], + [ + 6.8594056, + 51.281850301 + ], + [ + 6.8587459, + 51.281522901 + ], + [ + 6.8579444, + 51.281134601 + ], + [ + 6.8571357, + 51.280753001 + ], + [ + 6.8564343, + 51.280434201 + ], + [ + 6.8557409, + 51.280133801 + ], + [ + 6.8551657, + 51.279894001 + ], + [ + 6.8545648, + 51.279656601 + ], + [ + 6.8541481, + 51.279497001 + ], + [ + 6.8530829, + 51.279112101 + ], + [ + 6.8522997, + 51.278850201 + ], + [ + 6.8513918, + 51.278563501 + ], + [ + 6.8501394, + 51.278192901 + ], + [ + 6.8480614, + 51.277659601 + ], + [ + 6.8447249, + 51.276862301 + ], + [ + 6.8437933, + 51.276618601 + ], + [ + 6.8431069, + 51.276421901 + ], + [ + 6.8424518, + 51.276206601 + ], + [ + 6.8418697, + 51.276016501 + ], + [ + 6.8405458, + 51.275574101 + ], + [ + 6.8395686, + 51.275263101 + ], + [ + 6.8387454, + 51.275003801 + ], + [ + 6.8380975, + 51.274818101 + ], + [ + 6.8374367, + 51.274645301 + ], + [ + 6.8369457, + 51.274520901 + ], + [ + 6.8364527, + 51.274402301 + ], + [ + 6.8353012, + 51.274165701 + ], + [ + 6.8342109, + 51.273961001 + ], + [ + 6.8330321, + 51.273797401 + ], + [ + 6.8320906, + 51.273673201 + ], + [ + 6.8313303, + 51.273597801 + ], + [ + 6.8304813, + 51.273529701 + ], + [ + 6.8299349, + 51.273493401 + ], + [ + 6.8291871, + 51.273462601 + ], + [ + 6.8283355, + 51.273435801 + ], + [ + 6.8273069, + 51.273440801 + ], + [ + 6.8265131, + 51.273451601 + ], + [ + 6.8254342, + 51.273477101 + ], + [ + 6.8242406, + 51.273556801 + ], + [ + 6.8230426, + 51.273675601 + ], + [ + 6.8219342, + 51.273816901 + ], + [ + 6.8216134, + 51.273864301 + ], + [ + 6.8214422, + 51.273889501 + ], + [ + 6.8208872, + 51.273976801 + ], + [ + 6.8197938, + 51.274183701 + ], + [ + 6.8187355, + 51.274430701 + ], + [ + 6.8179399, + 51.274649501 + ], + [ + 6.8170095, + 51.274944901 + ], + [ + 6.8162092, + 51.275238601 + ], + [ + 6.8155144, + 51.275523101 + ], + [ + 6.8147446, + 51.275877901 + ], + [ + 6.8141165, + 51.276198201 + ], + [ + 6.813178, + 51.276720101 + ], + [ + 6.8123573, + 51.277229201 + ], + [ + 6.8117643, + 51.277631601 + ], + [ + 6.8114157, + 51.277899601 + ], + [ + 6.8106, + 51.278520901 + ], + [ + 6.8100529, + 51.278974001 + ], + [ + 6.8093587, + 51.279583901 + ], + [ + 6.8087169, + 51.280218701 + ], + [ + 6.8084935, + 51.280462101 + ], + [ + 6.8081425, + 51.280849801 + ], + [ + 6.8080229, + 51.280981901 + ], + [ + 6.8078037, + 51.281236901 + ], + [ + 6.8073816, + 51.281777801 + ], + [ + 6.8072484, + 51.281948401 + ], + [ + 6.8070652, + 51.282185101 + ], + [ + 6.8064277, + 51.283129201 + ], + [ + 6.806146, + 51.283558101 + ], + [ + 6.8054339, + 51.284732101 + ], + [ + 6.8050261, + 51.285365301 + ], + [ + 6.804917, + 51.285555501 + ], + [ + 6.8046008, + 51.286061401 + ], + [ + 6.8035575, + 51.287336301 + ], + [ + 6.8031997, + 51.287713601 + ], + [ + 6.8028719, + 51.288051601 + ], + [ + 6.8021735, + 51.288627201 + ], + [ + 6.8018326, + 51.288877901 + ], + [ + 6.801697932, + 51.288971224 + ] + ] + } + }, + { + "identifier": "2026-009355--vi-fbm.2026-04-07_19-00-00-000.devi-zus.2026-03-05_18-00-00-000.de41", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.2768279730045,6.844593671190117,51.27356267799779,6.824181337725517", + "point": "51.2768279730045,6.844593671190117", + "startLcPosition": "41", + "impact": { + "lower": "D\u00fcsseldorf-Nord", + "upper": "Ratingen-Schwarzbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | Ratingen-Schwarzbach - D\u00fcsseldorf-Nord", + "coordinate": { + "lat": 51.2768279730045, + "long": 6.844593671190117 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 2.1 km hinter AS Ratingen-Schwarzbach und 2.2 km vor AK D\u00fcsseldorf-Nord", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 Tunnel Reichswaldallee Tunnelinstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.844593671, + 51.276827973 + ], + [ + 6.8437933, + 51.276618601 + ], + [ + 6.8431069, + 51.276421901 + ], + [ + 6.8424518, + 51.276206601 + ], + [ + 6.8418697, + 51.276016501 + ], + [ + 6.8405458, + 51.275574101 + ], + [ + 6.8395686, + 51.275263101 + ], + [ + 6.8387454, + 51.275003801 + ], + [ + 6.8380975, + 51.274818101 + ], + [ + 6.8374367, + 51.274645301 + ], + [ + 6.8369457, + 51.274520901 + ], + [ + 6.8364527, + 51.274402301 + ], + [ + 6.8353012, + 51.274165701 + ], + [ + 6.8342109, + 51.273961001 + ], + [ + 6.8330321, + 51.273797401 + ], + [ + 6.8320906, + 51.273673201 + ], + [ + 6.8313303, + 51.273597801 + ], + [ + 6.8304813, + 51.273529701 + ], + [ + 6.8299349, + 51.273493401 + ], + [ + 6.8291871, + 51.273462601 + ], + [ + 6.8283355, + 51.273435801 + ], + [ + 6.8273069, + 51.273440801 + ], + [ + 6.8265131, + 51.273451601 + ], + [ + 6.8254342, + 51.273477101 + ], + [ + 6.8242406, + 51.273556801 + ], + [ + 6.824181338, + 51.273562678 + ] + ] + } + }, + { + "identifier": "2026-009355--vi-fbm.2026-04-07_19-00-00-000.devi-zus.2026-03-05_18-00-00-000.de39", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.28577465080411,6.869272461862038,51.2768279730045,6.844593671190117", + "point": "51.28577465080411,6.869272461862038", + "startLcPosition": "41", + "impact": { + "lower": "Reichswaldallee", + "upper": "Ratingen-Schwarzbach", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | Ratingen-Schwarzbach - Reichswaldallee", + "coordinate": { + "lat": 51.28577465080411, + "long": 6.869272461862038 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 0.1 km hinter AS Ratingen-Schwarzbach und 0.8 km vor Reichswaldallee", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 Tunnel Reichswaldallee Tunnelinstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.869272462, + 51.285774651 + ], + [ + 6.8685263, + 51.285540101 + ], + [ + 6.8675248, + 51.285219901 + ], + [ + 6.8665697, + 51.284921801 + ], + [ + 6.8654755, + 51.284540201 + ], + [ + 6.8645854, + 51.284213101 + ], + [ + 6.8641141, + 51.284028901 + ], + [ + 6.8633641, + 51.283714501 + ], + [ + 6.8620926, + 51.283153501 + ], + [ + 6.8615245, + 51.282875301 + ], + [ + 6.8605199, + 51.282400301 + ], + [ + 6.8595399, + 51.281925701 + ], + [ + 6.8594056, + 51.281850301 + ], + [ + 6.8587459, + 51.281522901 + ], + [ + 6.8579444, + 51.281134601 + ], + [ + 6.8571357, + 51.280753001 + ], + [ + 6.8564343, + 51.280434201 + ], + [ + 6.8557409, + 51.280133801 + ], + [ + 6.8551657, + 51.279894001 + ], + [ + 6.8545648, + 51.279656601 + ], + [ + 6.8541481, + 51.279497001 + ], + [ + 6.8530829, + 51.279112101 + ], + [ + 6.8522997, + 51.278850201 + ], + [ + 6.8513918, + 51.278563501 + ], + [ + 6.8501394, + 51.278192901 + ], + [ + 6.8480614, + 51.277659601 + ], + [ + 6.8447249, + 51.276862301 + ], + [ + 6.844593671, + 51.276827973 + ] + ] + } + }, + { + "identifier": "2026-010105--vi-bs.2026-04-19_19-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27484089816414,6.838177037683777,51.2734444219365,6.8270408005252525", + "point": "51.27484089816414,6.838177037683777", + "startLcPosition": "41", + "impact": { + "lower": "D\u00fcsseldorf-Nord", + "upper": "Ratingen-Schwarzbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | Ratingen-Schwarzbach - D\u00fcsseldorf-Nord", + "coordinate": { + "lat": 51.27484089816414, + "long": 6.838177037683777 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "19.04.26 19:00 bis zum 20.04.26 05:00 Uhr.", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 2.6 km hinter AS Ratingen-Schwarzbach und 2.4 km vor AK D\u00fcsseldorf-Nord", + "", + "L\u00e4nge: 0.8 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von Ratingen-Schwarzbach (AS) nach D\u00fcsseldorf-Nord (AK) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.838177038, + 51.274840898 + ], + [ + 6.8380975, + 51.274818101 + ], + [ + 6.8374367, + 51.274645301 + ], + [ + 6.8369457, + 51.274520901 + ], + [ + 6.8364527, + 51.274402301 + ], + [ + 6.8353012, + 51.274165701 + ], + [ + 6.8342109, + 51.273961001 + ], + [ + 6.8330321, + 51.273797401 + ], + [ + 6.8320906, + 51.273673201 + ], + [ + 6.8313303, + 51.273597801 + ], + [ + 6.8304813, + 51.273529701 + ], + [ + 6.8299349, + 51.273493401 + ], + [ + 6.8291871, + 51.273462601 + ], + [ + 6.8283355, + 51.273435801 + ], + [ + 6.8273069, + 51.273440801 + ], + [ + 6.827040801, + 51.273444422 + ] + ] + } + }, + { + "identifier": "2026-009355--vi-bs.2026-04-09_00-00-00-000.devi-zus.2026-03-05_18-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.27606089747719,6.842005644216395,51.27347293318448,6.825610565570408", + "point": "51.27606089747719,6.842005644216395", + "startLcPosition": "41", + "impact": { + "lower": "D\u00fcsseldorf-Nord", + "upper": "Ratingen-Schwarzbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | Ratingen-Schwarzbach - D\u00fcsseldorf-Nord", + "startTimestamp": "2026-04-09T00:00:00+02:00", + "coordinate": { + "lat": 51.27606089747719, + "long": 6.842005644216395 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 00:00 Uhr", + "Ende: 23.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 23.05.26)", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 2.3 km hinter AS Ratingen-Schwarzbach und 2.3 km vor AK D\u00fcsseldorf-Nord", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 Tunnel Reichswaldallee Tunnelinstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.842005644, + 51.276060897 + ], + [ + 6.8418697, + 51.276016501 + ], + [ + 6.8405458, + 51.275574101 + ], + [ + 6.8395686, + 51.275263101 + ], + [ + 6.8387454, + 51.275003801 + ], + [ + 6.8380975, + 51.274818101 + ], + [ + 6.8374367, + 51.274645301 + ], + [ + 6.8369457, + 51.274520901 + ], + [ + 6.8364527, + 51.274402301 + ], + [ + 6.8353012, + 51.274165701 + ], + [ + 6.8342109, + 51.273961001 + ], + [ + 6.8330321, + 51.273797401 + ], + [ + 6.8320906, + 51.273673201 + ], + [ + 6.8313303, + 51.273597801 + ], + [ + 6.8304813, + 51.273529701 + ], + [ + 6.8299349, + 51.273493401 + ], + [ + 6.8291871, + 51.273462601 + ], + [ + 6.8283355, + 51.273435801 + ], + [ + 6.8273069, + 51.273440801 + ], + [ + 6.8265131, + 51.273451601 + ], + [ + 6.825610566, + 51.273472933 + ] + ] + } + }, + { + "identifier": "2026-017726--vi-bs.2026-04-13_08-00-00-000_023.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.329261910020904,7.013263717050517,51.40764173172533,7.075866972729574", + "point": "51.329261910020904,7.013263717050517", + "startLcPosition": "45", + "impact": { + "lower": "Essen-Heisingen", + "upper": "Hetterscheidt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | Hetterscheidt - Essen-Heisingen", + "coordinate": { + "lat": 51.329261910020904, + "long": 7.013263717050517 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 16.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen AS Hetterscheidt und 0.1 km vor AS Essen-Heisingen", + "", + "L\u00e4nge: 11.48 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von Hetterscheidt (AS) nach Essen-Heisingen (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.013263717, + 51.32926191 + ], + [ + 7.013306, + 51.329813501 + ], + [ + 7.0133677, + 51.330249601 + ], + [ + 7.0135044, + 51.330774901 + ], + [ + 7.0136542, + 51.331258101 + ], + [ + 7.013912, + 51.331821401 + ], + [ + 7.0139326, + 51.331859101 + ], + [ + 7.0140819, + 51.332146901 + ], + [ + 7.0142678, + 51.332433701 + ], + [ + 7.0144997, + 51.332765201 + ], + [ + 7.0146315, + 51.332943901 + ], + [ + 7.0147588, + 51.333114301 + ], + [ + 7.0150546, + 51.333432501 + ], + [ + 7.0153824, + 51.333755201 + ], + [ + 7.0157159, + 51.334047601 + ], + [ + 7.0160614, + 51.334309601 + ], + [ + 7.0164213, + 51.334557001 + ], + [ + 7.0166832, + 51.334736501 + ], + [ + 7.0169715, + 51.334906701 + ], + [ + 7.0172828, + 51.335083301 + ], + [ + 7.0176056, + 51.335252701 + ], + [ + 7.0184118, + 51.335648701 + ], + [ + 7.0192144, + 51.336020801 + ], + [ + 7.0199352, + 51.336361201 + ], + [ + 7.0202956, + 51.336544901 + ], + [ + 7.0206631, + 51.336745501 + ], + [ + 7.0209807, + 51.336934401 + ], + [ + 7.0213327, + 51.337166801 + ], + [ + 7.0223641, + 51.337898401 + ], + [ + 7.0232036, + 51.338736001 + ], + [ + 7.0235626, + 51.339205901 + ], + [ + 7.0238294, + 51.339529501 + ], + [ + 7.0241564, + 51.340133701 + ], + [ + 7.0243105, + 51.340642901 + ], + [ + 7.0244492, + 51.341263701 + ], + [ + 7.0245163, + 51.341884501 + ], + [ + 7.024516, + 51.342326501 + ], + [ + 7.0245288, + 51.343077101 + ], + [ + 7.0245363, + 51.343510901 + ], + [ + 7.024557, + 51.343888901 + ], + [ + 7.0245707, + 51.344178701 + ], + [ + 7.0246396, + 51.344467701 + ], + [ + 7.0248224, + 51.345024501 + ], + [ + 7.0249543, + 51.345305801 + ], + [ + 7.0250857, + 51.345560401 + ], + [ + 7.0251838, + 51.345735001 + ], + [ + 7.0252584, + 51.345853301 + ], + [ + 7.0252888, + 51.345901401 + ], + [ + 7.0255903, + 51.346340301 + ], + [ + 7.0258388, + 51.346652501 + ], + [ + 7.0262593, + 51.347100701 + ], + [ + 7.0266303, + 51.347445901 + ], + [ + 7.0267939, + 51.347585601 + ], + [ + 7.0270709, + 51.347790201 + ], + [ + 7.0273869, + 51.348008801 + ], + [ + 7.0279412, + 51.348379801 + ], + [ + 7.0283778, + 51.348627601 + ], + [ + 7.0288074, + 51.348852501 + ], + [ + 7.0290011, + 51.348949801 + ], + [ + 7.0292038, + 51.349042701 + ], + [ + 7.029384, + 51.349120401 + ], + [ + 7.0296271, + 51.349224901 + ], + [ + 7.0298164, + 51.349301601 + ], + [ + 7.030002, + 51.349371301 + ], + [ + 7.0304557, + 51.349530301 + ], + [ + 7.0308939, + 51.349669601 + ], + [ + 7.0313343, + 51.349795401 + ], + [ + 7.0318423, + 51.349922601 + ], + [ + 7.0323883, + 51.350038601 + ], + [ + 7.0329355, + 51.350140001 + ], + [ + 7.0334841, + 51.350237901 + ], + [ + 7.0340821, + 51.350341401 + ], + [ + 7.0346926, + 51.350448001 + ], + [ + 7.0352563, + 51.350564201 + ], + [ + 7.0358095, + 51.350689201 + ], + [ + 7.0363779, + 51.350831901 + ], + [ + 7.0368993, + 51.350977201 + ], + [ + 7.0374186, + 51.351142701 + ], + [ + 7.0379279, + 51.351321301 + ], + [ + 7.0383303, + 51.351470201 + ], + [ + 7.0387147, + 51.351629201 + ], + [ + 7.039407, + 51.351938401 + ], + [ + 7.0398493, + 51.352158901 + ], + [ + 7.0402927, + 51.352380701 + ], + [ + 7.0407293, + 51.352610101 + ], + [ + 7.0412941, + 51.352900201 + ], + [ + 7.0421597, + 51.353359001 + ], + [ + 7.0424786, + 51.353535301 + ], + [ + 7.0428036, + 51.353703101 + ], + [ + 7.0441138, + 51.354397201 + ], + [ + 7.0454893, + 51.355128801 + ], + [ + 7.0461829, + 51.355494201 + ], + [ + 7.0470759, + 51.355970301 + ], + [ + 7.0482265, + 51.356570801 + ], + [ + 7.049231, + 51.357109701 + ], + [ + 7.0494594, + 51.357228101 + ], + [ + 7.0505146, + 51.357789701 + ], + [ + 7.0511151, + 51.358116501 + ], + [ + 7.0518443, + 51.358526401 + ], + [ + 7.0523724, + 51.358797801 + ], + [ + 7.0529624, + 51.359092801 + ], + [ + 7.0537026, + 51.359454201 + ], + [ + 7.0544896, + 51.359824001 + ], + [ + 7.0550824, + 51.360079401 + ], + [ + 7.0557217, + 51.360344601 + ], + [ + 7.0563459, + 51.360611001 + ], + [ + 7.05687, + 51.360823801 + ], + [ + 7.0573275, + 51.360998601 + ], + [ + 7.0578057, + 51.361159801 + ], + [ + 7.0587297, + 51.361447801 + ], + [ + 7.0597675, + 51.361746701 + ], + [ + 7.0601013, + 51.361831401 + ], + [ + 7.0606323, + 51.361966101 + ], + [ + 7.0611004, + 51.362077901 + ], + [ + 7.0619352, + 51.362262301 + ], + [ + 7.0628125, + 51.362436501 + ], + [ + 7.0636987, + 51.362596901 + ], + [ + 7.0646342, + 51.362748101 + ], + [ + 7.0656361, + 51.362895701 + ], + [ + 7.0675449, + 51.363181401 + ], + [ + 7.068348, + 51.363342001 + ], + [ + 7.0687358, + 51.363430101 + ], + [ + 7.069098, + 51.363523901 + ], + [ + 7.0694423, + 51.363632101 + ], + [ + 7.069733, + 51.363738001 + ], + [ + 7.0701858, + 51.363954001 + ], + [ + 7.0705866, + 51.364204201 + ], + [ + 7.0709588, + 51.364487101 + ], + [ + 7.0712764, + 51.364782701 + ], + [ + 7.0715293, + 51.365074401 + ], + [ + 7.0717566, + 51.365414201 + ], + [ + 7.0718678, + 51.365673801 + ], + [ + 7.0719484, + 51.365949601 + ], + [ + 7.0720067, + 51.366247401 + ], + [ + 7.0720042, + 51.366613001 + ], + [ + 7.0719366, + 51.367036401 + ], + [ + 7.0718262, + 51.367448401 + ], + [ + 7.0714715, + 51.368439501 + ], + [ + 7.0713559, + 51.368796301 + ], + [ + 7.0712637, + 51.369191101 + ], + [ + 7.071203, + 51.369556301 + ], + [ + 7.071179, + 51.369926001 + ], + [ + 7.0711874, + 51.370328001 + ], + [ + 7.0712427, + 51.370717001 + ], + [ + 7.071374, + 51.371276001 + ], + [ + 7.0715693, + 51.371730001 + ], + [ + 7.0717899, + 51.372144901 + ], + [ + 7.0719999, + 51.372480701 + ], + [ + 7.0722639, + 51.372825201 + ], + [ + 7.0726545, + 51.373251901 + ], + [ + 7.0730707, + 51.373663901 + ], + [ + 7.0737267, + 51.374213101 + ], + [ + 7.0744253, + 51.374763501 + ], + [ + 7.0758822, + 51.375982901 + ], + [ + 7.0760361, + 51.376129501 + ], + [ + 7.076479, + 51.376621601 + ], + [ + 7.0767926, + 51.377030801 + ], + [ + 7.0770662, + 51.377451401 + ], + [ + 7.0772936, + 51.377891101 + ], + [ + 7.0774026, + 51.378135301 + ], + [ + 7.0774924, + 51.378394701 + ], + [ + 7.0775794, + 51.378715901 + ], + [ + 7.0776455, + 51.379053601 + ], + [ + 7.077715, + 51.379752801 + ], + [ + 7.0777713, + 51.381358601 + ], + [ + 7.0777784, + 51.381652501 + ], + [ + 7.0778066, + 51.382042701 + ], + [ + 7.0778645, + 51.382411001 + ], + [ + 7.0779196, + 51.382686201 + ], + [ + 7.0779993, + 51.382953401 + ], + [ + 7.0780611, + 51.383127101 + ], + [ + 7.0781364, + 51.383295701 + ], + [ + 7.0782157, + 51.383464301 + ], + [ + 7.0783044, + 51.383636101 + ], + [ + 7.0784698, + 51.383910901 + ], + [ + 7.0786568, + 51.384143901 + ], + [ + 7.0788821, + 51.384393601 + ], + [ + 7.0791846, + 51.384684401 + ], + [ + 7.0796017, + 51.385021901 + ], + [ + 7.0800689, + 51.385349001 + ], + [ + 7.0807332, + 51.385793901 + ], + [ + 7.0810644, + 51.386031601 + ], + [ + 7.0813029, + 51.386211801 + ], + [ + 7.0815846, + 51.386454501 + ], + [ + 7.081817, + 51.386686601 + ], + [ + 7.0820024, + 51.386907501 + ], + [ + 7.0821641, + 51.387133501 + ], + [ + 7.0822693, + 51.387334601 + ], + [ + 7.0823314, + 51.387474801 + ], + [ + 7.0823809, + 51.387613301 + ], + [ + 7.0824205, + 51.387754201 + ], + [ + 7.0824616, + 51.387968001 + ], + [ + 7.0824727, + 51.388097901 + ], + [ + 7.0824748, + 51.388232701 + ], + [ + 7.0824719, + 51.388364201 + ], + [ + 7.0824265, + 51.388608401 + ], + [ + 7.0823604, + 51.388833601 + ], + [ + 7.0822811, + 51.389040101 + ], + [ + 7.0821745, + 51.389241001 + ], + [ + 7.0820094, + 51.389497301 + ], + [ + 7.0817813, + 51.389805401 + ], + [ + 7.0812997, + 51.390367201 + ], + [ + 7.0808759, + 51.390943701 + ], + [ + 7.0807102, + 51.391234901 + ], + [ + 7.0805945, + 51.391498401 + ], + [ + 7.0805134, + 51.391788701 + ], + [ + 7.0804772, + 51.392009201 + ], + [ + 7.0804657, + 51.392133101 + ], + [ + 7.0804551, + 51.392275601 + ], + [ + 7.0804605, + 51.392424501 + ], + [ + 7.0804631, + 51.392501701 + ], + [ + 7.0804844, + 51.392674401 + ], + [ + 7.0805013, + 51.392757501 + ], + [ + 7.080525, + 51.392842901 + ], + [ + 7.080603, + 51.393073201 + ], + [ + 7.0807184, + 51.393353601 + ], + [ + 7.0808642, + 51.393607201 + ], + [ + 7.0810657, + 51.393879101 + ], + [ + 7.081317, + 51.394165001 + ], + [ + 7.0818085, + 51.394581901 + ], + [ + 7.0826376, + 51.395177101 + ], + [ + 7.0830036, + 51.395485301 + ], + [ + 7.0834346, + 51.395905001 + ], + [ + 7.0836064, + 51.396117401 + ], + [ + 7.0838948, + 51.396474601 + ], + [ + 7.0843479, + 51.397160101 + ], + [ + 7.0848344, + 51.397977001 + ], + [ + 7.0852872, + 51.398933801 + ], + [ + 7.0856466, + 51.399959601 + ], + [ + 7.0857188, + 51.400519001 + ], + [ + 7.0856751, + 51.401104301 + ], + [ + 7.0855641, + 51.401579301 + ], + [ + 7.0854599, + 51.401874601 + ], + [ + 7.0852482, + 51.402396701 + ], + [ + 7.0851071, + 51.402654601 + ], + [ + 7.0849325, + 51.402946301 + ], + [ + 7.0846376, + 51.403379101 + ], + [ + 7.08433, + 51.403726801 + ], + [ + 7.0841056, + 51.403949501 + ], + [ + 7.0838697, + 51.404164601 + ], + [ + 7.0834538, + 51.404504401 + ], + [ + 7.0832674, + 51.404627601 + ], + [ + 7.0828386, + 51.404887101 + ], + [ + 7.082546, + 51.405035101 + ], + [ + 7.0822629, + 51.405166101 + ], + [ + 7.0817111, + 51.405413401 + ], + [ + 7.0811495, + 51.405628301 + ], + [ + 7.0806139, + 51.405813101 + ], + [ + 7.078718, + 51.406457801 + ], + [ + 7.077989, + 51.406703501 + ], + [ + 7.0770283, + 51.407080101 + ], + [ + 7.0763698, + 51.407385701 + ], + [ + 7.075882, + 51.407633801 + ], + [ + 7.075866973, + 51.407641732 + ] + ] + } + }, + { + "identifier": "2026-017727--vi-bs.2026-04-13_08-00-00-000_022.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.329261910020904,7.013263717050517,51.40764173172533,7.075866972729574", + "point": "51.329261910020904,7.013263717050517", + "startLcPosition": "45", + "impact": { + "lower": "Essen-Heisingen", + "upper": "Hetterscheidt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | Hetterscheidt - Essen-Heisingen", + "coordinate": { + "lat": 51.329261910020904, + "long": 7.013263717050517 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "15.04.26 von 08:00 bis 17:00 Uhr", + "16.04.26 von 08:00 bis 17:00 Uhr", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen AS Hetterscheidt und 0.1 km vor AS Essen-Heisingen", + "", + "L\u00e4nge: 11.48 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von Hetterscheidt (AS) nach Essen-Heisingen (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.013263717, + 51.32926191 + ], + [ + 7.013306, + 51.329813501 + ], + [ + 7.0133677, + 51.330249601 + ], + [ + 7.0135044, + 51.330774901 + ], + [ + 7.0136542, + 51.331258101 + ], + [ + 7.013912, + 51.331821401 + ], + [ + 7.0139326, + 51.331859101 + ], + [ + 7.0140819, + 51.332146901 + ], + [ + 7.0142678, + 51.332433701 + ], + [ + 7.0144997, + 51.332765201 + ], + [ + 7.0146315, + 51.332943901 + ], + [ + 7.0147588, + 51.333114301 + ], + [ + 7.0150546, + 51.333432501 + ], + [ + 7.0153824, + 51.333755201 + ], + [ + 7.0157159, + 51.334047601 + ], + [ + 7.0160614, + 51.334309601 + ], + [ + 7.0164213, + 51.334557001 + ], + [ + 7.0166832, + 51.334736501 + ], + [ + 7.0169715, + 51.334906701 + ], + [ + 7.0172828, + 51.335083301 + ], + [ + 7.0176056, + 51.335252701 + ], + [ + 7.0184118, + 51.335648701 + ], + [ + 7.0192144, + 51.336020801 + ], + [ + 7.0199352, + 51.336361201 + ], + [ + 7.0202956, + 51.336544901 + ], + [ + 7.0206631, + 51.336745501 + ], + [ + 7.0209807, + 51.336934401 + ], + [ + 7.0213327, + 51.337166801 + ], + [ + 7.0223641, + 51.337898401 + ], + [ + 7.0232036, + 51.338736001 + ], + [ + 7.0235626, + 51.339205901 + ], + [ + 7.0238294, + 51.339529501 + ], + [ + 7.0241564, + 51.340133701 + ], + [ + 7.0243105, + 51.340642901 + ], + [ + 7.0244492, + 51.341263701 + ], + [ + 7.0245163, + 51.341884501 + ], + [ + 7.024516, + 51.342326501 + ], + [ + 7.0245288, + 51.343077101 + ], + [ + 7.0245363, + 51.343510901 + ], + [ + 7.024557, + 51.343888901 + ], + [ + 7.0245707, + 51.344178701 + ], + [ + 7.0246396, + 51.344467701 + ], + [ + 7.0248224, + 51.345024501 + ], + [ + 7.0249543, + 51.345305801 + ], + [ + 7.0250857, + 51.345560401 + ], + [ + 7.0251838, + 51.345735001 + ], + [ + 7.0252584, + 51.345853301 + ], + [ + 7.0252888, + 51.345901401 + ], + [ + 7.0255903, + 51.346340301 + ], + [ + 7.0258388, + 51.346652501 + ], + [ + 7.0262593, + 51.347100701 + ], + [ + 7.0266303, + 51.347445901 + ], + [ + 7.0267939, + 51.347585601 + ], + [ + 7.0270709, + 51.347790201 + ], + [ + 7.0273869, + 51.348008801 + ], + [ + 7.0279412, + 51.348379801 + ], + [ + 7.0283778, + 51.348627601 + ], + [ + 7.0288074, + 51.348852501 + ], + [ + 7.0290011, + 51.348949801 + ], + [ + 7.0292038, + 51.349042701 + ], + [ + 7.029384, + 51.349120401 + ], + [ + 7.0296271, + 51.349224901 + ], + [ + 7.0298164, + 51.349301601 + ], + [ + 7.030002, + 51.349371301 + ], + [ + 7.0304557, + 51.349530301 + ], + [ + 7.0308939, + 51.349669601 + ], + [ + 7.0313343, + 51.349795401 + ], + [ + 7.0318423, + 51.349922601 + ], + [ + 7.0323883, + 51.350038601 + ], + [ + 7.0329355, + 51.350140001 + ], + [ + 7.0334841, + 51.350237901 + ], + [ + 7.0340821, + 51.350341401 + ], + [ + 7.0346926, + 51.350448001 + ], + [ + 7.0352563, + 51.350564201 + ], + [ + 7.0358095, + 51.350689201 + ], + [ + 7.0363779, + 51.350831901 + ], + [ + 7.0368993, + 51.350977201 + ], + [ + 7.0374186, + 51.351142701 + ], + [ + 7.0379279, + 51.351321301 + ], + [ + 7.0383303, + 51.351470201 + ], + [ + 7.0387147, + 51.351629201 + ], + [ + 7.039407, + 51.351938401 + ], + [ + 7.0398493, + 51.352158901 + ], + [ + 7.0402927, + 51.352380701 + ], + [ + 7.0407293, + 51.352610101 + ], + [ + 7.0412941, + 51.352900201 + ], + [ + 7.0421597, + 51.353359001 + ], + [ + 7.0424786, + 51.353535301 + ], + [ + 7.0428036, + 51.353703101 + ], + [ + 7.0441138, + 51.354397201 + ], + [ + 7.0454893, + 51.355128801 + ], + [ + 7.0461829, + 51.355494201 + ], + [ + 7.0470759, + 51.355970301 + ], + [ + 7.0482265, + 51.356570801 + ], + [ + 7.049231, + 51.357109701 + ], + [ + 7.0494594, + 51.357228101 + ], + [ + 7.0505146, + 51.357789701 + ], + [ + 7.0511151, + 51.358116501 + ], + [ + 7.0518443, + 51.358526401 + ], + [ + 7.0523724, + 51.358797801 + ], + [ + 7.0529624, + 51.359092801 + ], + [ + 7.0537026, + 51.359454201 + ], + [ + 7.0544896, + 51.359824001 + ], + [ + 7.0550824, + 51.360079401 + ], + [ + 7.0557217, + 51.360344601 + ], + [ + 7.0563459, + 51.360611001 + ], + [ + 7.05687, + 51.360823801 + ], + [ + 7.0573275, + 51.360998601 + ], + [ + 7.0578057, + 51.361159801 + ], + [ + 7.0587297, + 51.361447801 + ], + [ + 7.0597675, + 51.361746701 + ], + [ + 7.0601013, + 51.361831401 + ], + [ + 7.0606323, + 51.361966101 + ], + [ + 7.0611004, + 51.362077901 + ], + [ + 7.0619352, + 51.362262301 + ], + [ + 7.0628125, + 51.362436501 + ], + [ + 7.0636987, + 51.362596901 + ], + [ + 7.0646342, + 51.362748101 + ], + [ + 7.0656361, + 51.362895701 + ], + [ + 7.0675449, + 51.363181401 + ], + [ + 7.068348, + 51.363342001 + ], + [ + 7.0687358, + 51.363430101 + ], + [ + 7.069098, + 51.363523901 + ], + [ + 7.0694423, + 51.363632101 + ], + [ + 7.069733, + 51.363738001 + ], + [ + 7.0701858, + 51.363954001 + ], + [ + 7.0705866, + 51.364204201 + ], + [ + 7.0709588, + 51.364487101 + ], + [ + 7.0712764, + 51.364782701 + ], + [ + 7.0715293, + 51.365074401 + ], + [ + 7.0717566, + 51.365414201 + ], + [ + 7.0718678, + 51.365673801 + ], + [ + 7.0719484, + 51.365949601 + ], + [ + 7.0720067, + 51.366247401 + ], + [ + 7.0720042, + 51.366613001 + ], + [ + 7.0719366, + 51.367036401 + ], + [ + 7.0718262, + 51.367448401 + ], + [ + 7.0714715, + 51.368439501 + ], + [ + 7.0713559, + 51.368796301 + ], + [ + 7.0712637, + 51.369191101 + ], + [ + 7.071203, + 51.369556301 + ], + [ + 7.071179, + 51.369926001 + ], + [ + 7.0711874, + 51.370328001 + ], + [ + 7.0712427, + 51.370717001 + ], + [ + 7.071374, + 51.371276001 + ], + [ + 7.0715693, + 51.371730001 + ], + [ + 7.0717899, + 51.372144901 + ], + [ + 7.0719999, + 51.372480701 + ], + [ + 7.0722639, + 51.372825201 + ], + [ + 7.0726545, + 51.373251901 + ], + [ + 7.0730707, + 51.373663901 + ], + [ + 7.0737267, + 51.374213101 + ], + [ + 7.0744253, + 51.374763501 + ], + [ + 7.0758822, + 51.375982901 + ], + [ + 7.0760361, + 51.376129501 + ], + [ + 7.076479, + 51.376621601 + ], + [ + 7.0767926, + 51.377030801 + ], + [ + 7.0770662, + 51.377451401 + ], + [ + 7.0772936, + 51.377891101 + ], + [ + 7.0774026, + 51.378135301 + ], + [ + 7.0774924, + 51.378394701 + ], + [ + 7.0775794, + 51.378715901 + ], + [ + 7.0776455, + 51.379053601 + ], + [ + 7.077715, + 51.379752801 + ], + [ + 7.0777713, + 51.381358601 + ], + [ + 7.0777784, + 51.381652501 + ], + [ + 7.0778066, + 51.382042701 + ], + [ + 7.0778645, + 51.382411001 + ], + [ + 7.0779196, + 51.382686201 + ], + [ + 7.0779993, + 51.382953401 + ], + [ + 7.0780611, + 51.383127101 + ], + [ + 7.0781364, + 51.383295701 + ], + [ + 7.0782157, + 51.383464301 + ], + [ + 7.0783044, + 51.383636101 + ], + [ + 7.0784698, + 51.383910901 + ], + [ + 7.0786568, + 51.384143901 + ], + [ + 7.0788821, + 51.384393601 + ], + [ + 7.0791846, + 51.384684401 + ], + [ + 7.0796017, + 51.385021901 + ], + [ + 7.0800689, + 51.385349001 + ], + [ + 7.0807332, + 51.385793901 + ], + [ + 7.0810644, + 51.386031601 + ], + [ + 7.0813029, + 51.386211801 + ], + [ + 7.0815846, + 51.386454501 + ], + [ + 7.081817, + 51.386686601 + ], + [ + 7.0820024, + 51.386907501 + ], + [ + 7.0821641, + 51.387133501 + ], + [ + 7.0822693, + 51.387334601 + ], + [ + 7.0823314, + 51.387474801 + ], + [ + 7.0823809, + 51.387613301 + ], + [ + 7.0824205, + 51.387754201 + ], + [ + 7.0824616, + 51.387968001 + ], + [ + 7.0824727, + 51.388097901 + ], + [ + 7.0824748, + 51.388232701 + ], + [ + 7.0824719, + 51.388364201 + ], + [ + 7.0824265, + 51.388608401 + ], + [ + 7.0823604, + 51.388833601 + ], + [ + 7.0822811, + 51.389040101 + ], + [ + 7.0821745, + 51.389241001 + ], + [ + 7.0820094, + 51.389497301 + ], + [ + 7.0817813, + 51.389805401 + ], + [ + 7.0812997, + 51.390367201 + ], + [ + 7.0808759, + 51.390943701 + ], + [ + 7.0807102, + 51.391234901 + ], + [ + 7.0805945, + 51.391498401 + ], + [ + 7.0805134, + 51.391788701 + ], + [ + 7.0804772, + 51.392009201 + ], + [ + 7.0804657, + 51.392133101 + ], + [ + 7.0804551, + 51.392275601 + ], + [ + 7.0804605, + 51.392424501 + ], + [ + 7.0804631, + 51.392501701 + ], + [ + 7.0804844, + 51.392674401 + ], + [ + 7.0805013, + 51.392757501 + ], + [ + 7.080525, + 51.392842901 + ], + [ + 7.080603, + 51.393073201 + ], + [ + 7.0807184, + 51.393353601 + ], + [ + 7.0808642, + 51.393607201 + ], + [ + 7.0810657, + 51.393879101 + ], + [ + 7.081317, + 51.394165001 + ], + [ + 7.0818085, + 51.394581901 + ], + [ + 7.0826376, + 51.395177101 + ], + [ + 7.0830036, + 51.395485301 + ], + [ + 7.0834346, + 51.395905001 + ], + [ + 7.0836064, + 51.396117401 + ], + [ + 7.0838948, + 51.396474601 + ], + [ + 7.0843479, + 51.397160101 + ], + [ + 7.0848344, + 51.397977001 + ], + [ + 7.0852872, + 51.398933801 + ], + [ + 7.0856466, + 51.399959601 + ], + [ + 7.0857188, + 51.400519001 + ], + [ + 7.0856751, + 51.401104301 + ], + [ + 7.0855641, + 51.401579301 + ], + [ + 7.0854599, + 51.401874601 + ], + [ + 7.0852482, + 51.402396701 + ], + [ + 7.0851071, + 51.402654601 + ], + [ + 7.0849325, + 51.402946301 + ], + [ + 7.0846376, + 51.403379101 + ], + [ + 7.08433, + 51.403726801 + ], + [ + 7.0841056, + 51.403949501 + ], + [ + 7.0838697, + 51.404164601 + ], + [ + 7.0834538, + 51.404504401 + ], + [ + 7.0832674, + 51.404627601 + ], + [ + 7.0828386, + 51.404887101 + ], + [ + 7.082546, + 51.405035101 + ], + [ + 7.0822629, + 51.405166101 + ], + [ + 7.0817111, + 51.405413401 + ], + [ + 7.0811495, + 51.405628301 + ], + [ + 7.0806139, + 51.405813101 + ], + [ + 7.078718, + 51.406457801 + ], + [ + 7.077989, + 51.406703501 + ], + [ + 7.0770283, + 51.407080101 + ], + [ + 7.0763698, + 51.407385701 + ], + [ + 7.075882, + 51.407633801 + ], + [ + 7.075866973, + 51.407641732 + ] + ] + } + }, + { + "identifier": "2026-017514--vi-bs.2026-04-09_08-00-00-000_015.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.329261910020904,7.013263717050517,51.40529123447377,7.081983691263058", + "point": "51.329261910020904,7.013263717050517", + "startLcPosition": "45", + "impact": { + "lower": "Theodor-Heuss-Br\u00fccke", + "upper": "Hetterscheidt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | Hetterscheidt - Theodor-Heuss-Br\u00fccke", + "coordinate": { + "lat": 51.329261910020904, + "long": 7.013263717050517 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen AS Hetterscheidt und 0.2 km vor Theodor-Heuss-Br\u00fccke", + "", + "L\u00e4nge: 10.98 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von Hetterscheidt (AS) nach Theodor-Heuss-Br\u00fccke Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.013263717, + 51.32926191 + ], + [ + 7.013306, + 51.329813501 + ], + [ + 7.0133677, + 51.330249601 + ], + [ + 7.0135044, + 51.330774901 + ], + [ + 7.0136542, + 51.331258101 + ], + [ + 7.013912, + 51.331821401 + ], + [ + 7.0139326, + 51.331859101 + ], + [ + 7.0140819, + 51.332146901 + ], + [ + 7.0142678, + 51.332433701 + ], + [ + 7.0144997, + 51.332765201 + ], + [ + 7.0146315, + 51.332943901 + ], + [ + 7.0147588, + 51.333114301 + ], + [ + 7.0150546, + 51.333432501 + ], + [ + 7.0153824, + 51.333755201 + ], + [ + 7.0157159, + 51.334047601 + ], + [ + 7.0160614, + 51.334309601 + ], + [ + 7.0164213, + 51.334557001 + ], + [ + 7.0166832, + 51.334736501 + ], + [ + 7.0169715, + 51.334906701 + ], + [ + 7.0172828, + 51.335083301 + ], + [ + 7.0176056, + 51.335252701 + ], + [ + 7.0184118, + 51.335648701 + ], + [ + 7.0192144, + 51.336020801 + ], + [ + 7.0199352, + 51.336361201 + ], + [ + 7.0202956, + 51.336544901 + ], + [ + 7.0206631, + 51.336745501 + ], + [ + 7.0209807, + 51.336934401 + ], + [ + 7.0213327, + 51.337166801 + ], + [ + 7.0223641, + 51.337898401 + ], + [ + 7.0232036, + 51.338736001 + ], + [ + 7.0235626, + 51.339205901 + ], + [ + 7.0238294, + 51.339529501 + ], + [ + 7.0241564, + 51.340133701 + ], + [ + 7.0243105, + 51.340642901 + ], + [ + 7.0244492, + 51.341263701 + ], + [ + 7.0245163, + 51.341884501 + ], + [ + 7.024516, + 51.342326501 + ], + [ + 7.0245288, + 51.343077101 + ], + [ + 7.0245363, + 51.343510901 + ], + [ + 7.024557, + 51.343888901 + ], + [ + 7.0245707, + 51.344178701 + ], + [ + 7.0246396, + 51.344467701 + ], + [ + 7.0248224, + 51.345024501 + ], + [ + 7.0249543, + 51.345305801 + ], + [ + 7.0250857, + 51.345560401 + ], + [ + 7.0251838, + 51.345735001 + ], + [ + 7.0252584, + 51.345853301 + ], + [ + 7.0252888, + 51.345901401 + ], + [ + 7.0255903, + 51.346340301 + ], + [ + 7.0258388, + 51.346652501 + ], + [ + 7.0262593, + 51.347100701 + ], + [ + 7.0266303, + 51.347445901 + ], + [ + 7.0267939, + 51.347585601 + ], + [ + 7.0270709, + 51.347790201 + ], + [ + 7.0273869, + 51.348008801 + ], + [ + 7.0279412, + 51.348379801 + ], + [ + 7.0283778, + 51.348627601 + ], + [ + 7.0288074, + 51.348852501 + ], + [ + 7.0290011, + 51.348949801 + ], + [ + 7.0292038, + 51.349042701 + ], + [ + 7.029384, + 51.349120401 + ], + [ + 7.0296271, + 51.349224901 + ], + [ + 7.0298164, + 51.349301601 + ], + [ + 7.030002, + 51.349371301 + ], + [ + 7.0304557, + 51.349530301 + ], + [ + 7.0308939, + 51.349669601 + ], + [ + 7.0313343, + 51.349795401 + ], + [ + 7.0318423, + 51.349922601 + ], + [ + 7.0323883, + 51.350038601 + ], + [ + 7.0329355, + 51.350140001 + ], + [ + 7.0334841, + 51.350237901 + ], + [ + 7.0340821, + 51.350341401 + ], + [ + 7.0346926, + 51.350448001 + ], + [ + 7.0352563, + 51.350564201 + ], + [ + 7.0358095, + 51.350689201 + ], + [ + 7.0363779, + 51.350831901 + ], + [ + 7.0368993, + 51.350977201 + ], + [ + 7.0374186, + 51.351142701 + ], + [ + 7.0379279, + 51.351321301 + ], + [ + 7.0383303, + 51.351470201 + ], + [ + 7.0387147, + 51.351629201 + ], + [ + 7.039407, + 51.351938401 + ], + [ + 7.0398493, + 51.352158901 + ], + [ + 7.0402927, + 51.352380701 + ], + [ + 7.0407293, + 51.352610101 + ], + [ + 7.0412941, + 51.352900201 + ], + [ + 7.0421597, + 51.353359001 + ], + [ + 7.0424786, + 51.353535301 + ], + [ + 7.0428036, + 51.353703101 + ], + [ + 7.0441138, + 51.354397201 + ], + [ + 7.0454893, + 51.355128801 + ], + [ + 7.0461829, + 51.355494201 + ], + [ + 7.0470759, + 51.355970301 + ], + [ + 7.0482265, + 51.356570801 + ], + [ + 7.049231, + 51.357109701 + ], + [ + 7.0494594, + 51.357228101 + ], + [ + 7.0505146, + 51.357789701 + ], + [ + 7.0511151, + 51.358116501 + ], + [ + 7.0518443, + 51.358526401 + ], + [ + 7.0523724, + 51.358797801 + ], + [ + 7.0529624, + 51.359092801 + ], + [ + 7.0537026, + 51.359454201 + ], + [ + 7.0544896, + 51.359824001 + ], + [ + 7.0550824, + 51.360079401 + ], + [ + 7.0557217, + 51.360344601 + ], + [ + 7.0563459, + 51.360611001 + ], + [ + 7.05687, + 51.360823801 + ], + [ + 7.0573275, + 51.360998601 + ], + [ + 7.0578057, + 51.361159801 + ], + [ + 7.0587297, + 51.361447801 + ], + [ + 7.0597675, + 51.361746701 + ], + [ + 7.0601013, + 51.361831401 + ], + [ + 7.0606323, + 51.361966101 + ], + [ + 7.0611004, + 51.362077901 + ], + [ + 7.0619352, + 51.362262301 + ], + [ + 7.0628125, + 51.362436501 + ], + [ + 7.0636987, + 51.362596901 + ], + [ + 7.0646342, + 51.362748101 + ], + [ + 7.0656361, + 51.362895701 + ], + [ + 7.0675449, + 51.363181401 + ], + [ + 7.068348, + 51.363342001 + ], + [ + 7.0687358, + 51.363430101 + ], + [ + 7.069098, + 51.363523901 + ], + [ + 7.0694423, + 51.363632101 + ], + [ + 7.069733, + 51.363738001 + ], + [ + 7.0701858, + 51.363954001 + ], + [ + 7.0705866, + 51.364204201 + ], + [ + 7.0709588, + 51.364487101 + ], + [ + 7.0712764, + 51.364782701 + ], + [ + 7.0715293, + 51.365074401 + ], + [ + 7.0717566, + 51.365414201 + ], + [ + 7.0718678, + 51.365673801 + ], + [ + 7.0719484, + 51.365949601 + ], + [ + 7.0720067, + 51.366247401 + ], + [ + 7.0720042, + 51.366613001 + ], + [ + 7.0719366, + 51.367036401 + ], + [ + 7.0718262, + 51.367448401 + ], + [ + 7.0714715, + 51.368439501 + ], + [ + 7.0713559, + 51.368796301 + ], + [ + 7.0712637, + 51.369191101 + ], + [ + 7.071203, + 51.369556301 + ], + [ + 7.071179, + 51.369926001 + ], + [ + 7.0711874, + 51.370328001 + ], + [ + 7.0712427, + 51.370717001 + ], + [ + 7.071374, + 51.371276001 + ], + [ + 7.0715693, + 51.371730001 + ], + [ + 7.0717899, + 51.372144901 + ], + [ + 7.0719999, + 51.372480701 + ], + [ + 7.0722639, + 51.372825201 + ], + [ + 7.0726545, + 51.373251901 + ], + [ + 7.0730707, + 51.373663901 + ], + [ + 7.0737267, + 51.374213101 + ], + [ + 7.0744253, + 51.374763501 + ], + [ + 7.0758822, + 51.375982901 + ], + [ + 7.0760361, + 51.376129501 + ], + [ + 7.076479, + 51.376621601 + ], + [ + 7.0767926, + 51.377030801 + ], + [ + 7.0770662, + 51.377451401 + ], + [ + 7.0772936, + 51.377891101 + ], + [ + 7.0774026, + 51.378135301 + ], + [ + 7.0774924, + 51.378394701 + ], + [ + 7.0775794, + 51.378715901 + ], + [ + 7.0776455, + 51.379053601 + ], + [ + 7.077715, + 51.379752801 + ], + [ + 7.0777713, + 51.381358601 + ], + [ + 7.0777784, + 51.381652501 + ], + [ + 7.0778066, + 51.382042701 + ], + [ + 7.0778645, + 51.382411001 + ], + [ + 7.0779196, + 51.382686201 + ], + [ + 7.0779993, + 51.382953401 + ], + [ + 7.0780611, + 51.383127101 + ], + [ + 7.0781364, + 51.383295701 + ], + [ + 7.0782157, + 51.383464301 + ], + [ + 7.0783044, + 51.383636101 + ], + [ + 7.0784698, + 51.383910901 + ], + [ + 7.0786568, + 51.384143901 + ], + [ + 7.0788821, + 51.384393601 + ], + [ + 7.0791846, + 51.384684401 + ], + [ + 7.0796017, + 51.385021901 + ], + [ + 7.0800689, + 51.385349001 + ], + [ + 7.0807332, + 51.385793901 + ], + [ + 7.0810644, + 51.386031601 + ], + [ + 7.0813029, + 51.386211801 + ], + [ + 7.0815846, + 51.386454501 + ], + [ + 7.081817, + 51.386686601 + ], + [ + 7.0820024, + 51.386907501 + ], + [ + 7.0821641, + 51.387133501 + ], + [ + 7.0822693, + 51.387334601 + ], + [ + 7.0823314, + 51.387474801 + ], + [ + 7.0823809, + 51.387613301 + ], + [ + 7.0824205, + 51.387754201 + ], + [ + 7.0824616, + 51.387968001 + ], + [ + 7.0824727, + 51.388097901 + ], + [ + 7.0824748, + 51.388232701 + ], + [ + 7.0824719, + 51.388364201 + ], + [ + 7.0824265, + 51.388608401 + ], + [ + 7.0823604, + 51.388833601 + ], + [ + 7.0822811, + 51.389040101 + ], + [ + 7.0821745, + 51.389241001 + ], + [ + 7.0820094, + 51.389497301 + ], + [ + 7.0817813, + 51.389805401 + ], + [ + 7.0812997, + 51.390367201 + ], + [ + 7.0808759, + 51.390943701 + ], + [ + 7.0807102, + 51.391234901 + ], + [ + 7.0805945, + 51.391498401 + ], + [ + 7.0805134, + 51.391788701 + ], + [ + 7.0804772, + 51.392009201 + ], + [ + 7.0804657, + 51.392133101 + ], + [ + 7.0804551, + 51.392275601 + ], + [ + 7.0804605, + 51.392424501 + ], + [ + 7.0804631, + 51.392501701 + ], + [ + 7.0804844, + 51.392674401 + ], + [ + 7.0805013, + 51.392757501 + ], + [ + 7.080525, + 51.392842901 + ], + [ + 7.080603, + 51.393073201 + ], + [ + 7.0807184, + 51.393353601 + ], + [ + 7.0808642, + 51.393607201 + ], + [ + 7.0810657, + 51.393879101 + ], + [ + 7.081317, + 51.394165001 + ], + [ + 7.0818085, + 51.394581901 + ], + [ + 7.0826376, + 51.395177101 + ], + [ + 7.0830036, + 51.395485301 + ], + [ + 7.0834346, + 51.395905001 + ], + [ + 7.0836064, + 51.396117401 + ], + [ + 7.0838948, + 51.396474601 + ], + [ + 7.0843479, + 51.397160101 + ], + [ + 7.0848344, + 51.397977001 + ], + [ + 7.0852872, + 51.398933801 + ], + [ + 7.0856466, + 51.399959601 + ], + [ + 7.0857188, + 51.400519001 + ], + [ + 7.0856751, + 51.401104301 + ], + [ + 7.0855641, + 51.401579301 + ], + [ + 7.0854599, + 51.401874601 + ], + [ + 7.0852482, + 51.402396701 + ], + [ + 7.0851071, + 51.402654601 + ], + [ + 7.0849325, + 51.402946301 + ], + [ + 7.0846376, + 51.403379101 + ], + [ + 7.08433, + 51.403726801 + ], + [ + 7.0841056, + 51.403949501 + ], + [ + 7.0838697, + 51.404164601 + ], + [ + 7.0834538, + 51.404504401 + ], + [ + 7.0832674, + 51.404627601 + ], + [ + 7.0828386, + 51.404887101 + ], + [ + 7.082546, + 51.405035101 + ], + [ + 7.0822629, + 51.405166101 + ], + [ + 7.081983691, + 51.405291234 + ] + ] + } + }, + { + "identifier": "2026-017513--vi-bs.2026-04-09_08-00-00-000_014.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.329261910020904,7.013263717050517,51.40529123447377,7.081983691263058", + "point": "51.329261910020904,7.013263717050517", + "startLcPosition": "45", + "impact": { + "lower": "Theodor-Heuss-Br\u00fccke", + "upper": "Hetterscheidt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A44 | Hetterscheidt - Theodor-Heuss-Br\u00fccke", + "coordinate": { + "lat": 51.329261910020904, + "long": 7.013263717050517 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "", + "A44: D\u00fcsseldorf -> Essen, zwischen AS Hetterscheidt und 0.2 km vor Theodor-Heuss-Br\u00fccke", + "", + "L\u00e4nge: 10.98 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von Hetterscheidt (AS) nach Theodor-Heuss-Br\u00fccke Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.013263717, + 51.32926191 + ], + [ + 7.013306, + 51.329813501 + ], + [ + 7.0133677, + 51.330249601 + ], + [ + 7.0135044, + 51.330774901 + ], + [ + 7.0136542, + 51.331258101 + ], + [ + 7.013912, + 51.331821401 + ], + [ + 7.0139326, + 51.331859101 + ], + [ + 7.0140819, + 51.332146901 + ], + [ + 7.0142678, + 51.332433701 + ], + [ + 7.0144997, + 51.332765201 + ], + [ + 7.0146315, + 51.332943901 + ], + [ + 7.0147588, + 51.333114301 + ], + [ + 7.0150546, + 51.333432501 + ], + [ + 7.0153824, + 51.333755201 + ], + [ + 7.0157159, + 51.334047601 + ], + [ + 7.0160614, + 51.334309601 + ], + [ + 7.0164213, + 51.334557001 + ], + [ + 7.0166832, + 51.334736501 + ], + [ + 7.0169715, + 51.334906701 + ], + [ + 7.0172828, + 51.335083301 + ], + [ + 7.0176056, + 51.335252701 + ], + [ + 7.0184118, + 51.335648701 + ], + [ + 7.0192144, + 51.336020801 + ], + [ + 7.0199352, + 51.336361201 + ], + [ + 7.0202956, + 51.336544901 + ], + [ + 7.0206631, + 51.336745501 + ], + [ + 7.0209807, + 51.336934401 + ], + [ + 7.0213327, + 51.337166801 + ], + [ + 7.0223641, + 51.337898401 + ], + [ + 7.0232036, + 51.338736001 + ], + [ + 7.0235626, + 51.339205901 + ], + [ + 7.0238294, + 51.339529501 + ], + [ + 7.0241564, + 51.340133701 + ], + [ + 7.0243105, + 51.340642901 + ], + [ + 7.0244492, + 51.341263701 + ], + [ + 7.0245163, + 51.341884501 + ], + [ + 7.024516, + 51.342326501 + ], + [ + 7.0245288, + 51.343077101 + ], + [ + 7.0245363, + 51.343510901 + ], + [ + 7.024557, + 51.343888901 + ], + [ + 7.0245707, + 51.344178701 + ], + [ + 7.0246396, + 51.344467701 + ], + [ + 7.0248224, + 51.345024501 + ], + [ + 7.0249543, + 51.345305801 + ], + [ + 7.0250857, + 51.345560401 + ], + [ + 7.0251838, + 51.345735001 + ], + [ + 7.0252584, + 51.345853301 + ], + [ + 7.0252888, + 51.345901401 + ], + [ + 7.0255903, + 51.346340301 + ], + [ + 7.0258388, + 51.346652501 + ], + [ + 7.0262593, + 51.347100701 + ], + [ + 7.0266303, + 51.347445901 + ], + [ + 7.0267939, + 51.347585601 + ], + [ + 7.0270709, + 51.347790201 + ], + [ + 7.0273869, + 51.348008801 + ], + [ + 7.0279412, + 51.348379801 + ], + [ + 7.0283778, + 51.348627601 + ], + [ + 7.0288074, + 51.348852501 + ], + [ + 7.0290011, + 51.348949801 + ], + [ + 7.0292038, + 51.349042701 + ], + [ + 7.029384, + 51.349120401 + ], + [ + 7.0296271, + 51.349224901 + ], + [ + 7.0298164, + 51.349301601 + ], + [ + 7.030002, + 51.349371301 + ], + [ + 7.0304557, + 51.349530301 + ], + [ + 7.0308939, + 51.349669601 + ], + [ + 7.0313343, + 51.349795401 + ], + [ + 7.0318423, + 51.349922601 + ], + [ + 7.0323883, + 51.350038601 + ], + [ + 7.0329355, + 51.350140001 + ], + [ + 7.0334841, + 51.350237901 + ], + [ + 7.0340821, + 51.350341401 + ], + [ + 7.0346926, + 51.350448001 + ], + [ + 7.0352563, + 51.350564201 + ], + [ + 7.0358095, + 51.350689201 + ], + [ + 7.0363779, + 51.350831901 + ], + [ + 7.0368993, + 51.350977201 + ], + [ + 7.0374186, + 51.351142701 + ], + [ + 7.0379279, + 51.351321301 + ], + [ + 7.0383303, + 51.351470201 + ], + [ + 7.0387147, + 51.351629201 + ], + [ + 7.039407, + 51.351938401 + ], + [ + 7.0398493, + 51.352158901 + ], + [ + 7.0402927, + 51.352380701 + ], + [ + 7.0407293, + 51.352610101 + ], + [ + 7.0412941, + 51.352900201 + ], + [ + 7.0421597, + 51.353359001 + ], + [ + 7.0424786, + 51.353535301 + ], + [ + 7.0428036, + 51.353703101 + ], + [ + 7.0441138, + 51.354397201 + ], + [ + 7.0454893, + 51.355128801 + ], + [ + 7.0461829, + 51.355494201 + ], + [ + 7.0470759, + 51.355970301 + ], + [ + 7.0482265, + 51.356570801 + ], + [ + 7.049231, + 51.357109701 + ], + [ + 7.0494594, + 51.357228101 + ], + [ + 7.0505146, + 51.357789701 + ], + [ + 7.0511151, + 51.358116501 + ], + [ + 7.0518443, + 51.358526401 + ], + [ + 7.0523724, + 51.358797801 + ], + [ + 7.0529624, + 51.359092801 + ], + [ + 7.0537026, + 51.359454201 + ], + [ + 7.0544896, + 51.359824001 + ], + [ + 7.0550824, + 51.360079401 + ], + [ + 7.0557217, + 51.360344601 + ], + [ + 7.0563459, + 51.360611001 + ], + [ + 7.05687, + 51.360823801 + ], + [ + 7.0573275, + 51.360998601 + ], + [ + 7.0578057, + 51.361159801 + ], + [ + 7.0587297, + 51.361447801 + ], + [ + 7.0597675, + 51.361746701 + ], + [ + 7.0601013, + 51.361831401 + ], + [ + 7.0606323, + 51.361966101 + ], + [ + 7.0611004, + 51.362077901 + ], + [ + 7.0619352, + 51.362262301 + ], + [ + 7.0628125, + 51.362436501 + ], + [ + 7.0636987, + 51.362596901 + ], + [ + 7.0646342, + 51.362748101 + ], + [ + 7.0656361, + 51.362895701 + ], + [ + 7.0675449, + 51.363181401 + ], + [ + 7.068348, + 51.363342001 + ], + [ + 7.0687358, + 51.363430101 + ], + [ + 7.069098, + 51.363523901 + ], + [ + 7.0694423, + 51.363632101 + ], + [ + 7.069733, + 51.363738001 + ], + [ + 7.0701858, + 51.363954001 + ], + [ + 7.0705866, + 51.364204201 + ], + [ + 7.0709588, + 51.364487101 + ], + [ + 7.0712764, + 51.364782701 + ], + [ + 7.0715293, + 51.365074401 + ], + [ + 7.0717566, + 51.365414201 + ], + [ + 7.0718678, + 51.365673801 + ], + [ + 7.0719484, + 51.365949601 + ], + [ + 7.0720067, + 51.366247401 + ], + [ + 7.0720042, + 51.366613001 + ], + [ + 7.0719366, + 51.367036401 + ], + [ + 7.0718262, + 51.367448401 + ], + [ + 7.0714715, + 51.368439501 + ], + [ + 7.0713559, + 51.368796301 + ], + [ + 7.0712637, + 51.369191101 + ], + [ + 7.071203, + 51.369556301 + ], + [ + 7.071179, + 51.369926001 + ], + [ + 7.0711874, + 51.370328001 + ], + [ + 7.0712427, + 51.370717001 + ], + [ + 7.071374, + 51.371276001 + ], + [ + 7.0715693, + 51.371730001 + ], + [ + 7.0717899, + 51.372144901 + ], + [ + 7.0719999, + 51.372480701 + ], + [ + 7.0722639, + 51.372825201 + ], + [ + 7.0726545, + 51.373251901 + ], + [ + 7.0730707, + 51.373663901 + ], + [ + 7.0737267, + 51.374213101 + ], + [ + 7.0744253, + 51.374763501 + ], + [ + 7.0758822, + 51.375982901 + ], + [ + 7.0760361, + 51.376129501 + ], + [ + 7.076479, + 51.376621601 + ], + [ + 7.0767926, + 51.377030801 + ], + [ + 7.0770662, + 51.377451401 + ], + [ + 7.0772936, + 51.377891101 + ], + [ + 7.0774026, + 51.378135301 + ], + [ + 7.0774924, + 51.378394701 + ], + [ + 7.0775794, + 51.378715901 + ], + [ + 7.0776455, + 51.379053601 + ], + [ + 7.077715, + 51.379752801 + ], + [ + 7.0777713, + 51.381358601 + ], + [ + 7.0777784, + 51.381652501 + ], + [ + 7.0778066, + 51.382042701 + ], + [ + 7.0778645, + 51.382411001 + ], + [ + 7.0779196, + 51.382686201 + ], + [ + 7.0779993, + 51.382953401 + ], + [ + 7.0780611, + 51.383127101 + ], + [ + 7.0781364, + 51.383295701 + ], + [ + 7.0782157, + 51.383464301 + ], + [ + 7.0783044, + 51.383636101 + ], + [ + 7.0784698, + 51.383910901 + ], + [ + 7.0786568, + 51.384143901 + ], + [ + 7.0788821, + 51.384393601 + ], + [ + 7.0791846, + 51.384684401 + ], + [ + 7.0796017, + 51.385021901 + ], + [ + 7.0800689, + 51.385349001 + ], + [ + 7.0807332, + 51.385793901 + ], + [ + 7.0810644, + 51.386031601 + ], + [ + 7.0813029, + 51.386211801 + ], + [ + 7.0815846, + 51.386454501 + ], + [ + 7.081817, + 51.386686601 + ], + [ + 7.0820024, + 51.386907501 + ], + [ + 7.0821641, + 51.387133501 + ], + [ + 7.0822693, + 51.387334601 + ], + [ + 7.0823314, + 51.387474801 + ], + [ + 7.0823809, + 51.387613301 + ], + [ + 7.0824205, + 51.387754201 + ], + [ + 7.0824616, + 51.387968001 + ], + [ + 7.0824727, + 51.388097901 + ], + [ + 7.0824748, + 51.388232701 + ], + [ + 7.0824719, + 51.388364201 + ], + [ + 7.0824265, + 51.388608401 + ], + [ + 7.0823604, + 51.388833601 + ], + [ + 7.0822811, + 51.389040101 + ], + [ + 7.0821745, + 51.389241001 + ], + [ + 7.0820094, + 51.389497301 + ], + [ + 7.0817813, + 51.389805401 + ], + [ + 7.0812997, + 51.390367201 + ], + [ + 7.0808759, + 51.390943701 + ], + [ + 7.0807102, + 51.391234901 + ], + [ + 7.0805945, + 51.391498401 + ], + [ + 7.0805134, + 51.391788701 + ], + [ + 7.0804772, + 51.392009201 + ], + [ + 7.0804657, + 51.392133101 + ], + [ + 7.0804551, + 51.392275601 + ], + [ + 7.0804605, + 51.392424501 + ], + [ + 7.0804631, + 51.392501701 + ], + [ + 7.0804844, + 51.392674401 + ], + [ + 7.0805013, + 51.392757501 + ], + [ + 7.080525, + 51.392842901 + ], + [ + 7.080603, + 51.393073201 + ], + [ + 7.0807184, + 51.393353601 + ], + [ + 7.0808642, + 51.393607201 + ], + [ + 7.0810657, + 51.393879101 + ], + [ + 7.081317, + 51.394165001 + ], + [ + 7.0818085, + 51.394581901 + ], + [ + 7.0826376, + 51.395177101 + ], + [ + 7.0830036, + 51.395485301 + ], + [ + 7.0834346, + 51.395905001 + ], + [ + 7.0836064, + 51.396117401 + ], + [ + 7.0838948, + 51.396474601 + ], + [ + 7.0843479, + 51.397160101 + ], + [ + 7.0848344, + 51.397977001 + ], + [ + 7.0852872, + 51.398933801 + ], + [ + 7.0856466, + 51.399959601 + ], + [ + 7.0857188, + 51.400519001 + ], + [ + 7.0856751, + 51.401104301 + ], + [ + 7.0855641, + 51.401579301 + ], + [ + 7.0854599, + 51.401874601 + ], + [ + 7.0852482, + 51.402396701 + ], + [ + 7.0851071, + 51.402654601 + ], + [ + 7.0849325, + 51.402946301 + ], + [ + 7.0846376, + 51.403379101 + ], + [ + 7.08433, + 51.403726801 + ], + [ + 7.0841056, + 51.403949501 + ], + [ + 7.0838697, + 51.404164601 + ], + [ + 7.0834538, + 51.404504401 + ], + [ + 7.0832674, + 51.404627601 + ], + [ + 7.0828386, + 51.404887101 + ], + [ + 7.082546, + 51.405035101 + ], + [ + 7.0822629, + 51.405166101 + ], + [ + 7.081983691, + 51.405291234 + ] + ] + } + }, + { + "identifier": "2026-012284--vi-bs.2026-03-11_09-00-00-000_037.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.40520857696924,7.081872408589729,51.389039734839024,7.08209085061172", + "point": "51.40520857696924,7.081872408589729", + "startLcPosition": "52", + "impact": { + "lower": "Essen-Kupferdreh", + "upper": "Theodor-Heuss-Br\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | Theodor-Heuss-Br\u00fccke - Essen-Kupferdreh", + "coordinate": { + "lat": 51.40520857696924, + "long": 7.081872408589729 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 11.03.26 und dem 30.09.26 von 09:00 bis 16:00 Uhr.", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen 0.2 km hinter Theodor-Heuss-Br\u00fccke und 0.3 km vor AS Essen-Kupferdreh", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von Theodor-Heuss-Br\u00fccke nach Essen-Kupferdreh (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.081872409, + 51.405208577 + ], + [ + 7.0822261, + 51.405053501 + ], + [ + 7.0825236, + 51.404902801 + ], + [ + 7.0827402, + 51.404791201 + ], + [ + 7.083052, + 51.404608801 + ], + [ + 7.0832861, + 51.404454801 + ], + [ + 7.0837795, + 51.404070901 + ], + [ + 7.0839665, + 51.403906701 + ], + [ + 7.0841105, + 51.403763701 + ], + [ + 7.0841966, + 51.403673101 + ], + [ + 7.0844857, + 51.403337501 + ], + [ + 7.0847715, + 51.402917801 + ], + [ + 7.0849442, + 51.402613101 + ], + [ + 7.0850443, + 51.402397901 + ], + [ + 7.0852126, + 51.402041501 + ], + [ + 7.0852717, + 51.401889001 + ], + [ + 7.0853306, + 51.401721301 + ], + [ + 7.0853823, + 51.401571801 + ], + [ + 7.0854916, + 51.401088501 + ], + [ + 7.0855169, + 51.400820401 + ], + [ + 7.0855321, + 51.400517701 + ], + [ + 7.0854815, + 51.399973601 + ], + [ + 7.0851189, + 51.398953601 + ], + [ + 7.0846686, + 51.398015201 + ], + [ + 7.084192, + 51.397186501 + ], + [ + 7.083731, + 51.396512601 + ], + [ + 7.0834346, + 51.396141701 + ], + [ + 7.0832627, + 51.395929301 + ], + [ + 7.0828671, + 51.395533301 + ], + [ + 7.0824768, + 51.395224101 + ], + [ + 7.0816645, + 51.394639601 + ], + [ + 7.0811732, + 51.394207401 + ], + [ + 7.0809023, + 51.393921201 + ], + [ + 7.0807014, + 51.393630201 + ], + [ + 7.0805517, + 51.393374701 + ], + [ + 7.0804266, + 51.393092801 + ], + [ + 7.0803513, + 51.392836201 + ], + [ + 7.0803325, + 51.392763101 + ], + [ + 7.0803166, + 51.392670101 + ], + [ + 7.0802897, + 51.392506101 + ], + [ + 7.0802741, + 51.392318201 + ], + [ + 7.0802788, + 51.392130001 + ], + [ + 7.0802906, + 51.392018401 + ], + [ + 7.0803263, + 51.391773301 + ], + [ + 7.0804197, + 51.391474301 + ], + [ + 7.0805357, + 51.391194301 + ], + [ + 7.0806346, + 51.391018001 + ], + [ + 7.0807238, + 51.390885101 + ], + [ + 7.0809282, + 51.390602101 + ], + [ + 7.0811488, + 51.390321801 + ], + [ + 7.0816232, + 51.389764401 + ], + [ + 7.0818441, + 51.389458201 + ], + [ + 7.0819988, + 51.389207301 + ], + [ + 7.082090851, + 51.389039735 + ] + ] + } + }, + { + "identifier": "2025-026656--vi-bs.2025-11-11_00-00-00-000.devi-zus.2025-06-12_00-00-00-000.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.408168600113235,7.074707276684436,51.40236229384901,7.085061114581193", + "point": "51.408168600113235,7.074707276684436", + "startLcPosition": "53", + "impact": { + "lower": "Essen-Kupferdreh", + "upper": "Essen-Heisingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 | Essen-Heisingen - Essen-Kupferdreh", + "startTimestamp": "2025-11-11T00:00:00+01:00", + "coordinate": { + "lat": 51.408168600113235, + "long": 7.074707276684436 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.11.25 um 00:00 Uhr", + "Ende: 18.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.05.26)", + "", + "A44: Essen -> D\u00fcsseldorf, zwischen AS Essen-Heisingen und 1.9 km vor AS Essen-Kupferdreh", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 Theodor-Heuss-Br\u00fccke - Verst\u00e4rkung und Instandsetzung-" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.074707277, + 51.4081686 + ], + [ + 7.0748753, + 51.408056801 + ], + [ + 7.0751929, + 51.407874801 + ], + [ + 7.0757906, + 51.407553301 + ], + [ + 7.0762829, + 51.407296901 + ], + [ + 7.0769384, + 51.406995001 + ], + [ + 7.0779192, + 51.406611601 + ], + [ + 7.0787755, + 51.406320701 + ], + [ + 7.080572, + 51.405723701 + ], + [ + 7.081103, + 51.405527601 + ], + [ + 7.0816924, + 51.405287501 + ], + [ + 7.0822261, + 51.405053501 + ], + [ + 7.0825236, + 51.404902801 + ], + [ + 7.0827402, + 51.404791201 + ], + [ + 7.083052, + 51.404608801 + ], + [ + 7.0832861, + 51.404454801 + ], + [ + 7.0837795, + 51.404070901 + ], + [ + 7.0839665, + 51.403906701 + ], + [ + 7.0841105, + 51.403763701 + ], + [ + 7.0841966, + 51.403673101 + ], + [ + 7.0844857, + 51.403337501 + ], + [ + 7.0847715, + 51.402917801 + ], + [ + 7.0849442, + 51.402613101 + ], + [ + 7.0850443, + 51.402397901 + ], + [ + 7.085061115, + 51.402362294 + ] + ] + } + }, + { + "identifier": "2026-000640--vi-bs.2026-03-09_19-00-00-000.devi-zus.2026-02-09_19-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.52032076289393,7.690217872537137,51.52254388826819,7.704164204928514", + "point": "51.52032076289393,7.690217872537137", + "startLcPosition": "54", + "impact": { + "lower": "Unna-Ost", + "upper": "Dortmund/Unna", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Dortmund/Unna - Unna-Ost", + "startTimestamp": "2026-03-09T19:00:00+01:00", + "coordinate": { + "lat": 51.52032076289393, + "long": 7.690217872537137 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A44: Dortmund -> Kassel, zwischen 2.3 km hinter AK Dortmund/Unna und 0.3 km vor AS Unna-Ost", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A44 - Arbeiten an Wasserleitungen - ENB BW Iserlohner Stra\u00dfe - AlD 640" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.690217873, + 51.520320763 + ], + [ + 7.69241, + 51.520524901 + ], + [ + 7.6941676, + 51.520717801 + ], + [ + 7.6959333, + 51.520956301 + ], + [ + 7.697323, + 51.521166101 + ], + [ + 7.699133, + 51.521470401 + ], + [ + 7.7009873, + 51.521818701 + ], + [ + 7.7034297, + 51.522365101 + ], + [ + 7.704164205, + 51.522543888 + ] + ] + } + }, + { + "identifier": "2026-000640--vi-bs.2026-03-09_19-00-00-000.devi-zus.2026-02-09_19-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.52005569144259,7.683029004331839,51.52032076289393,7.690217872537137", + "point": "51.52005569144259,7.683029004331839", + "startLcPosition": "54", + "impact": { + "lower": "Unna-Ost", + "upper": "Dortmund/Unna", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Dortmund/Unna - Unna-Ost", + "startTimestamp": "2026-03-09T19:00:00+01:00", + "coordinate": { + "lat": 51.52005569144259, + "long": 7.683029004331839 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A44: Dortmund -> Kassel, zwischen 1.8 km hinter AK Dortmund/Unna und 1.3 km vor AS Unna-Ost", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A44 - Arbeiten an Wasserleitungen - ENB BW Iserlohner Stra\u00dfe - AlD 640" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.683029004, + 51.520055691 + ], + [ + 7.6840356, + 51.520046601 + ], + [ + 7.6856902, + 51.520079701 + ], + [ + 7.6870301, + 51.520121601 + ], + [ + 7.6884649, + 51.520186801 + ], + [ + 7.6894624, + 51.520250401 + ], + [ + 7.690217873, + 51.520320763 + ] + ] + } + }, + { + "identifier": "2026-000640--vi-bs.2026-03-09_19-00-00-000.devi-zus.2026-02-09_19-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.52567832990757,7.715333371874725,51.52079274106727,7.693759299431635", + "point": "51.52567832990757,7.715333371874725", + "startLcPosition": "56", + "impact": { + "lower": "Dortmund/Unna", + "upper": "L\u00fcner Grund", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | L\u00fcner Grund - Dortmund/Unna", + "startTimestamp": "2026-03-09T19:00:00+01:00", + "coordinate": { + "lat": 51.52567832990757, + "long": 7.715333371874725 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A44: Kassel -> Dortmund, zwischen 1.5 km hinter L\u00fcner Grund und 2.5 km vor AK Dortmund/Unna", + "", + "L\u00e4nge: 1.6 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A44 - Arbeiten an Wasserleitungen - ENB BW Iserlohner Stra\u00dfe - AlD 640" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.715333372, + 51.52567833 + ], + [ + 7.7152839, + 51.525665601 + ], + [ + 7.7146447, + 51.525495801 + ], + [ + 7.7144144, + 51.525433101 + ], + [ + 7.7115992, + 51.524678301 + ], + [ + 7.7087093, + 51.523853301 + ], + [ + 7.7081624, + 51.523701501 + ], + [ + 7.7057333, + 51.523059101 + ], + [ + 7.7031235, + 51.522417901 + ], + [ + 7.7010008, + 51.521963701 + ], + [ + 7.700716, + 51.521906601 + ], + [ + 7.699042, + 51.521577201 + ], + [ + 7.6957821, + 51.521053301 + ], + [ + 7.694101, + 51.520829501 + ], + [ + 7.693759299, + 51.520792741 + ] + ] + } + }, + { + "identifier": "2026-014918--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-15_08-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.5807958845828,8.263151934721307,51.582907555237675,8.293250178065184", + "point": "51.5807958845828,8.263151934721307", + "startLcPosition": "69", + "impact": { + "lower": "Erwitte/Anr\u00f6chte", + "upper": "Lohner Klei", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Lohner Klei - Erwitte/Anr\u00f6chte", + "coordinate": { + "lat": 51.5807958845828, + "long": 8.263151934721307 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 18:00 Uhr", + "", + "A44: Dortmund -> Kassel, zwischen 4.3 km hinter Lohner Klei und 1.4 km vor AS Erwitte/Anr\u00f6chte", + "", + "L\u00e4nge: 2.1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 - Arbeiten an Verkehrszeichenbr\u00fccke - AkD 14918" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.263151935, + 51.580795885 + ], + [ + 8.2658755, + 51.581064701 + ], + [ + 8.2666131, + 51.581131001 + ], + [ + 8.2708488, + 51.581509301 + ], + [ + 8.2728919, + 51.581675801 + ], + [ + 8.2756793, + 51.581901401 + ], + [ + 8.2782463, + 51.582077001 + ], + [ + 8.2821666, + 51.582333501 + ], + [ + 8.2844477, + 51.582466101 + ], + [ + 8.2881863, + 51.582673501 + ], + [ + 8.293250178, + 51.582907555 + ] + ] + } + }, + { + "identifier": "2026-016973--vi-bs.2026-04-10_08-00-00-000.devi-zus.2026-04-10_08-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.580653513282016,8.26172859535232,51.58093657837581,8.264577317516672", + "point": "51.580653513282016,8.26172859535232", + "startLcPosition": "69", + "impact": { + "lower": "V\u00f6llinghauser Flur", + "upper": "Lohner Klei", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Lohner Klei - V\u00f6llinghauser Flur", + "coordinate": { + "lat": 51.580653513282016, + "long": 8.26172859535232 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 10:00 Uhr", + "", + "A44: Dortmund -> Kassel, zwischen 4.2 km hinter Lohner Klei und 1.0 km vor V\u00f6llinghauser Flur", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 - Beseitigung Unfallfolgen - AkD 16973" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.261728595, + 51.580653513 + ], + [ + 8.2619041, + 51.580672701 + ], + [ + 8.264577318, + 51.580936578 + ] + ] + } + }, + { + "identifier": "2026-017429--vi-bs.2026-04-08_19-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.583348375287294,8.305495071873844,51.58400965598674,8.326330657614458", + "point": "51.583348375287294,8.305495071873844", + "startLcPosition": "71", + "impact": { + "lower": "Berge", + "upper": "Kliever M\u00fchle", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Kliever M\u00fchle - Berge", + "coordinate": { + "lat": 51.583348375287294, + "long": 8.305495071873844 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A44: Dortmund -> Kassel, zwischen 1.7 km hinter Kliever M\u00fchle und 1.7 km vor Berge", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A44 - Fahrbahninstandsetzung - AkD 17429" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.305495072, + 51.583348375 + ], + [ + 8.3127422, + 51.583587401 + ], + [ + 8.313377, + 51.583606501 + ], + [ + 8.3178962, + 51.583742801 + ], + [ + 8.3201784, + 51.583815701 + ], + [ + 8.3218088, + 51.583856801 + ], + [ + 8.3230001, + 51.583896801 + ], + [ + 8.3259291, + 51.583995201 + ], + [ + 8.326330658, + 51.584009656 + ] + ] + } + }, + { + "identifier": "2026-014918--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-15_08-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.583026748920794,8.293235922639916,51.580914488424646,8.263121899746455", + "point": "51.583026748920794,8.293235922639916", + "startLcPosition": "72", + "impact": { + "lower": "Lohner Klei", + "upper": "Erwitte/Anr\u00f6chte", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Erwitte/Anr\u00f6chte - Lohner Klei", + "coordinate": { + "lat": 51.583026748920794, + "long": 8.293235922639916 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 18:00 Uhr", + "", + "A44: Kassel -> Dortmund, zwischen 1.4 km hinter AS Erwitte/Anr\u00f6chte und 4.3 km vor Lohner Klei", + "", + "L\u00e4nge: 2.1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 - Arbeiten an Verkehrszeichenbr\u00fccke - AkD 14918" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.293235923, + 51.583026749 + ], + [ + 8.288162, + 51.582790001 + ], + [ + 8.2844413, + 51.582587701 + ], + [ + 8.2820496, + 51.582447601 + ], + [ + 8.2782415, + 51.582198801 + ], + [ + 8.2752157, + 51.581987301 + ], + [ + 8.2730026, + 51.581808401 + ], + [ + 8.2708201, + 51.581627301 + ], + [ + 8.2664845, + 51.581242501 + ], + [ + 8.2657166, + 51.581168401 + ], + [ + 8.2631219, + 51.580914488 + ] + ] + } + }, + { + "identifier": "2026-016973--vi-bs.2026-04-10_09-00-00-000.devi-zus.2026-04-10_08-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.583089302661726,8.294676930804355,51.58295961969201,8.291796743346167", + "point": "51.583089302661726,8.294676930804355", + "startLcPosition": "72", + "impact": { + "lower": "Kliever M\u00fchle", + "upper": "Erwitte/Anr\u00f6chte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Erwitte/Anr\u00f6chte - Kliever M\u00fchle", + "coordinate": { + "lat": 51.583089302661726, + "long": 8.294676930804355 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 12:00 Uhr", + "", + "A44: Kassel -> Dortmund, zwischen 1.3 km hinter AS Erwitte/Anr\u00f6chte und 0.8 km vor Kliever M\u00fchle", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 - Beseitigung Unfallfolgen - AkD 16973" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.294676931, + 51.583089303 + ], + [ + 8.2941055, + 51.583067301 + ], + [ + 8.291796743, + 51.58295962 + ] + ] + } + }, + { + "identifier": "2023-004453--vi-bs.2025-07-11_20-00-00-000.devi-zus.2025-04-01_09-00-00-000_001.f.de16", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5967979847558,8.510262060702596,51.59703187797284,8.520107425395892", + "point": "51.5967979847558,8.510262060702596", + "startLcPosition": "75", + "impact": { + "lower": "Steinhausen", + "upper": "Hellweg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Hellweg - Steinhausen", + "startTimestamp": "2025-07-11T20:00:00+02:00", + "coordinate": { + "lat": 51.5967979847558, + "long": 8.510262060702596 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.07.25 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "A44: Dortmund -> Kassel, zwischen 1.5 km hinter Hellweg und 0.7 km vor Steinhausen", + "", + "L\u00e4nge: 0.68 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A44 - grundhafte Sanierung der Fahrbahn bei B\u00fcren - AlD 4453" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.510262061, + 51.596797985 + ], + [ + 8.5113611, + 51.596854301 + ], + [ + 8.513826, + 51.596939501 + ], + [ + 8.5140983, + 51.596942401 + ], + [ + 8.5153832, + 51.596968501 + ], + [ + 8.5167064, + 51.596994601 + ], + [ + 8.520107425, + 51.597031878 + ] + ] + } + }, + { + "identifier": "2023-004453--vi-bs.2025-07-11_20-00-00-000.devi-zus.2025-04-01_09-00-00-000_001.f.de12", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.59703187797284,8.520107425395892,51.59430128932352,8.607126724344022", + "point": "51.59703187797284,8.520107425395892", + "startLcPosition": "76", + "impact": { + "lower": "Wewelsburg", + "upper": "Geseke", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Geseke - Wewelsburg", + "startTimestamp": "2025-07-11T20:00:00+02:00", + "coordinate": { + "lat": 51.59703187797284, + "long": 8.520107425395892 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.07.25 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "A44: Dortmund -> Kassel, zwischen 0.3 km hinter AS Geseke und 2.8 km vor Wewelsburg", + "", + "L\u00e4nge: 6.07 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A44 - grundhafte Sanierung der Fahrbahn bei B\u00fcren - AlD 4453" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.520107425, + 51.597031878 + ], + [ + 8.5204019, + 51.597035101 + ], + [ + 8.5235952, + 51.597042601 + ], + [ + 8.5242227, + 51.597044201 + ], + [ + 8.5261722, + 51.597044001 + ], + [ + 8.5285117, + 51.597046301 + ], + [ + 8.5320774, + 51.597047001 + ], + [ + 8.5334104, + 51.597047801 + ], + [ + 8.5350117, + 51.597050301 + ], + [ + 8.5397512, + 51.597051101 + ], + [ + 8.5411833, + 51.597051401 + ], + [ + 8.5414423, + 51.597051501 + ], + [ + 8.5419897, + 51.597050201 + ], + [ + 8.5420603, + 51.597050201 + ], + [ + 8.546739, + 51.597052001 + ], + [ + 8.5525574, + 51.597054501 + ], + [ + 8.5584113, + 51.597055301 + ], + [ + 8.5645636, + 51.597056401 + ], + [ + 8.5665126, + 51.597051801 + ], + [ + 8.5682858, + 51.597042101 + ], + [ + 8.5723678, + 51.597053201 + ], + [ + 8.5729921, + 51.597054301 + ], + [ + 8.5730393, + 51.597054001 + ], + [ + 8.5734459, + 51.597054301 + ], + [ + 8.5735929, + 51.597052401 + ], + [ + 8.5756114, + 51.597059401 + ], + [ + 8.578282, + 51.597056601 + ], + [ + 8.5812088, + 51.597050401 + ], + [ + 8.5829686, + 51.597038101 + ], + [ + 8.584503, + 51.597020601 + ], + [ + 8.5846682, + 51.597018501 + ], + [ + 8.5848424, + 51.597016301 + ], + [ + 8.586288, + 51.596984101 + ], + [ + 8.5875803, + 51.596942801 + ], + [ + 8.5885574, + 51.596903401 + ], + [ + 8.5900548, + 51.596829401 + ], + [ + 8.5911852, + 51.596762001 + ], + [ + 8.5920583, + 51.596698801 + ], + [ + 8.5933867, + 51.596590701 + ], + [ + 8.5936159, + 51.596567501 + ], + [ + 8.5947995, + 51.596449701 + ], + [ + 8.595996, + 51.596315401 + ], + [ + 8.596166, + 51.596295301 + ], + [ + 8.5984678, + 51.595980901 + ], + [ + 8.6012408, + 51.595521601 + ], + [ + 8.6039784, + 51.594989801 + ], + [ + 8.606341, + 51.594481001 + ], + [ + 8.607126724, + 51.594301289 + ] + ] + } + }, + { + "identifier": "2023-004453--vi-bs.2025-07-11_20-00-00-000.devi-zus.2025-04-01_09-00-00-000_001.f.de24", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.597153058932484,8.520104473947617,51.59713445296929,8.517995039264447", + "point": "51.597153058932484,8.520104473947617", + "startLcPosition": "77", + "impact": { + "lower": "Geseke", + "upper": "Steinhausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Steinhausen - Geseke", + "startTimestamp": "2025-07-11T20:00:00+02:00", + "coordinate": { + "lat": 51.597153058932484, + "long": 8.520104473947617 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.07.25 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "A44: Kassel -> Dortmund, zwischen 0.7 km hinter Steinhausen und 0.2 km vor AS Geseke", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A44 - grundhafte Sanierung der Fahrbahn bei B\u00fcren - AlD 4453" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.520104474, + 51.597153059 + ], + [ + 8.5187523, + 51.597142301 + ], + [ + 8.5181401, + 51.597137401 + ], + [ + 8.517995039, + 51.597134453 + ] + ] + } + }, + { + "identifier": "2023-004453--vi-bs.2025-07-11_20-00-00-000.devi-zus.2025-04-01_09-00-00-000_001.f.de10", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.594414142428754,8.607193523243689,51.597153058932484,8.520104473947617", + "point": "51.594414142428754,8.607193523243689", + "startLcPosition": "79", + "impact": { + "lower": "Geseke", + "upper": "Wewelsburg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Wewelsburg - Geseke", + "startTimestamp": "2025-07-11T20:00:00+02:00", + "coordinate": { + "lat": 51.594414142428754, + "long": 8.607193523243689 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.07.25 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "A44: Kassel -> Dortmund, zwischen 2.8 km hinter Wewelsburg und 0.3 km vor AS Geseke", + "", + "L\u00e4nge: 6.07 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A44 - grundhafte Sanierung der Fahrbahn bei B\u00fcren - AlD 4453" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.607193523, + 51.594414142 + ], + [ + 8.6064228, + 51.594591801 + ], + [ + 8.6040438, + 51.595105101 + ], + [ + 8.601281, + 51.595639901 + ], + [ + 8.5985042, + 51.596098901 + ], + [ + 8.597125, + 51.596290501 + ], + [ + 8.5960756, + 51.596425001 + ], + [ + 8.5959094, + 51.596443801 + ], + [ + 8.5948303, + 51.596564601 + ], + [ + 8.5938073, + 51.596669601 + ], + [ + 8.5935777, + 51.596692201 + ], + [ + 8.5927339, + 51.596762201 + ], + [ + 8.591724, + 51.596842501 + ], + [ + 8.5907941, + 51.596902801 + ], + [ + 8.5898696, + 51.596958701 + ], + [ + 8.5883169, + 51.597035501 + ], + [ + 8.5875723, + 51.597068301 + ], + [ + 8.5871585, + 51.597081401 + ], + [ + 8.586414, + 51.597099301 + ], + [ + 8.5849324, + 51.597132101 + ], + [ + 8.5845994, + 51.597137901 + ], + [ + 8.5808934, + 51.597170701 + ], + [ + 8.5787424, + 51.597186101 + ], + [ + 8.5782537, + 51.597189501 + ], + [ + 8.5734695, + 51.597177901 + ], + [ + 8.5733686, + 51.597178201 + ], + [ + 8.5729656, + 51.597176801 + ], + [ + 8.5727841, + 51.597177001 + ], + [ + 8.5667563, + 51.597176901 + ], + [ + 8.5641378, + 51.597176501 + ], + [ + 8.5584314, + 51.597174901 + ], + [ + 8.552633, + 51.597172001 + ], + [ + 8.5467536, + 51.597170301 + ], + [ + 8.5424895, + 51.597171801 + ], + [ + 8.5422173, + 51.597171901 + ], + [ + 8.5416642, + 51.597173201 + ], + [ + 8.5416178, + 51.597173001 + ], + [ + 8.5401589, + 51.597168801 + ], + [ + 8.5363531, + 51.597169201 + ], + [ + 8.5331068, + 51.597165101 + ], + [ + 8.5289834, + 51.597165901 + ], + [ + 8.5285094, + 51.597163001 + ], + [ + 8.5258627, + 51.597160601 + ], + [ + 8.5240858, + 51.597164701 + ], + [ + 8.523485, + 51.597163301 + ], + [ + 8.5203991, + 51.597155401 + ], + [ + 8.520104474, + 51.597153059 + ] + ] + } + }, + { + "identifier": "2023-004453--vi-bs.2025-07-11_20-00-00-000.devi-zus.2025-04-01_09-00-00-000_001.f.de18", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.59183306042372,8.617972950371797,51.594414142428754,8.607193523243689", + "point": "51.59183306042372,8.617972950371797", + "startLcPosition": "79", + "impact": { + "lower": "B\u00fcren", + "upper": "Wewelsburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Wewelsburg - B\u00fcren", + "startTimestamp": "2025-07-11T20:00:00+02:00", + "coordinate": { + "lat": 51.59183306042372, + "long": 8.617972950371797 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.07.25 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "A44: Kassel -> Dortmund, zwischen 2.0 km hinter Wewelsburg und 1.6 km vor AS B\u00fcren", + "", + "L\u00e4nge: 0.8 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A44 - grundhafte Sanierung der Fahrbahn bei B\u00fcren - AlD 4453" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.61797295, + 51.59183306 + ], + [ + 8.6173429, + 51.591978701 + ], + [ + 8.6141662, + 51.592741901 + ], + [ + 8.6119917, + 51.593272801 + ], + [ + 8.6087428, + 51.594057001 + ], + [ + 8.607193523, + 51.594414142 + ] + ] + } + }, + { + "identifier": "2024-008912--vi-bs.2026-03-30_19-00-00-000.devi-zus.2025-03-02_19-00-00-000.f.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.558715698667456,8.76830325403365,51.557405248700654,8.777754850171476", + "point": "51.558715698667456,8.76830325403365", + "startLcPosition": "80", + "impact": { + "lower": "Sintfeld", + "upper": "W\u00fcnnenberg-Haaren", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | W\u00fcnnenberg-Haaren - Sintfeld", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 51.558715698667456, + "long": 8.76830325403365 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 30.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A44: Dortmund -> Kassel, zwischen 4.3 km hinter AK W\u00fcnnenberg-Haaren und 1.5 km vor Sintfeld", + "", + "L\u00e4nge: 0.67 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 - Br\u00fcckeninstandsetzung BW Schnatweg - AlD 8912" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.768303254, + 51.558715699 + ], + [ + 8.7697801, + 51.558467401 + ], + [ + 8.7712454, + 51.558238901 + ], + [ + 8.7721037, + 51.558117201 + ], + [ + 8.7722284, + 51.558100301 + ], + [ + 8.7744933, + 51.557789101 + ], + [ + 8.77775485, + 51.557405249 + ] + ] + } + }, + { + "identifier": "2024-034682--vi-bs.2025-08-25_19-00-00-000.devi-zus.2025-09-02_19-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.58866252328419,8.64762323129876,51.588982338062266,8.636098111958752", + "point": "51.58866252328419,8.64762323129876", + "startLcPosition": "80", + "impact": { + "lower": "B\u00fcren", + "upper": "W\u00fcnnenberg-Haaren", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | W\u00fcnnenberg-Haaren - B\u00fcren", + "startTimestamp": "2025-08-25T19:00:00+02:00", + "coordinate": { + "lat": 51.58866252328419, + "long": 8.64762323129876 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.08.25 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.09.26)", + "", + "A44: Kassel -> Dortmund, zwischen 5.1 km hinter AK W\u00fcnnenberg-Haaren und 3.7 km vor AS B\u00fcren", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A44 - Br\u00fcckeninstandsetzung TB Ahdener Grund Talweg - AlD 34682" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.647623231, + 51.588662523 + ], + [ + 8.6471679, + 51.588653201 + ], + [ + 8.6441013, + 51.588655501 + ], + [ + 8.6434375, + 51.588664101 + ], + [ + 8.6425938, + 51.588680401 + ], + [ + 8.6411982, + 51.588712501 + ], + [ + 8.6402932, + 51.588745001 + ], + [ + 8.6393983, + 51.588781101 + ], + [ + 8.6384953, + 51.588826301 + ], + [ + 8.6375779, + 51.588880101 + ], + [ + 8.6364005, + 51.588959601 + ], + [ + 8.636098112, + 51.588982338 + ] + ] + } + }, + { + "identifier": "2023-004597--vi-bs.2025-09-08_19-00-00-000.devi-zus.2024-05-06_19-00-00-000_019.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.57246013598992,8.736253372089328,51.56808606173207,8.742674243376028", + "point": "51.57246013598992,8.736253372089328", + "startLcPosition": "80", + "impact": { + "lower": "Sintfeld", + "upper": "W\u00fcnnenberg-Haaren", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | W\u00fcnnenberg-Haaren - Sintfeld", + "startTimestamp": "2025-09-08T19:00:00+02:00", + "coordinate": { + "lat": 51.57246013598992, + "long": 8.736253372089328 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.09.25 um 19:00 Uhr", + "Ende: 31.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A44: Dortmund -> Kassel, zwischen 1.6 km hinter AK W\u00fcnnenberg-Haaren und 4.2 km vor Sintfeld", + "", + "L\u00e4nge: 0.66 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A44 - BW-Verst\u00e4rkung - TB Ottensgrund - AlD 4597" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.736253372, + 51.572460136 + ], + [ + 8.7377125, + 51.571419901 + ], + [ + 8.7422489, + 51.568346501 + ], + [ + 8.742674243, + 51.568086062 + ] + ] + } + }, + { + "identifier": "2024-008912--vi-bs.2026-03-30_19-00-00-000.devi-zus.2025-03-02_19-00-00-000.f.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.56173385805902,8.756264163884634,51.558715698667456,8.76830325403365", + "point": "51.56173385805902,8.756264163884634", + "startLcPosition": "80", + "impact": { + "lower": "Sintfeld", + "upper": "W\u00fcnnenberg-Haaren", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | W\u00fcnnenberg-Haaren - Sintfeld", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 51.56173385805902, + "long": 8.756264163884634 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 30.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A44: Dortmund -> Kassel, zwischen 3.4 km hinter AK W\u00fcnnenberg-Haaren und 2.1 km vor Sintfeld", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A44 - Br\u00fcckeninstandsetzung BW Schnatweg - AlD 8912" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.756264164, + 51.561733858 + ], + [ + 8.7577298, + 51.561237301 + ], + [ + 8.7605049, + 51.560420101 + ], + [ + 8.7632773, + 51.559741301 + ], + [ + 8.76429, + 51.559513101 + ], + [ + 8.7660446, + 51.559136901 + ], + [ + 8.7680094, + 51.558765101 + ], + [ + 8.768303254, + 51.558715699 + ] + ] + } + }, + { + "identifier": "2026-017552--vi-bs.2026-04-09_12-00-00-000.devi-zus.2026-04-09_08-00-00-000_003.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.58854871102452,8.692252000523537,51.58900325835642,8.6879765270431", + "point": "51.58854871102452,8.692252000523537", + "startLcPosition": "80", + "impact": { + "lower": "Wewelsburg", + "upper": "W\u00fcnnenberg-Haaren", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | W\u00fcnnenberg-Haaren - Wewelsburg", + "coordinate": { + "lat": 51.58854871102452, + "long": 8.692252000523537 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 12:00 bis 15:30 Uhr", + "", + "A44: Kassel -> Dortmund, zwischen 2.0 km hinter AK W\u00fcnnenberg-Haaren und 2.9 km vor Wewelsburg", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 - Beseitigung Unfallfolgen - AkD 17552" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.692252001, + 51.588548711 + ], + [ + 8.6890404, + 51.588912201 + ], + [ + 8.688517, + 51.588960301 + ], + [ + 8.687976527, + 51.589003258 + ] + ] + } + }, + { + "identifier": "2024-008912--vi-bs.2026-03-30_19-00-00-000.devi-zus.2025-03-02_19-00-00-000.f.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.55754272144583,8.77779628762304,51.55883024420353,8.768353665427988", + "point": "51.55754272144583,8.77779628762304", + "startLcPosition": "81", + "impact": { + "lower": "W\u00fcnnenberg-Haaren", + "upper": "Sintfeld", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Sintfeld - W\u00fcnnenberg-Haaren", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 51.55754272144583, + "long": 8.77779628762304 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 30.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A44: Kassel -> Dortmund, zwischen 1.5 km hinter Sintfeld und 4.3 km vor AK W\u00fcnnenberg-Haaren", + "", + "L\u00e4nge: 0.67 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A44 - Br\u00fcckeninstandsetzung BW Schnatweg - AlD 8912" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.777796288, + 51.557542721 + ], + [ + 8.774527, + 51.557924101 + ], + [ + 8.7722333, + 51.558225401 + ], + [ + 8.7721056, + 51.558242901 + ], + [ + 8.7707582, + 51.558443301 + ], + [ + 8.7695001, + 51.558631501 + ], + [ + 8.768353665, + 51.558830244 + ] + ] + } + }, + { + "identifier": "2024-008912--vi-bs.2026-03-30_19-00-00-000.devi-zus.2025-03-02_19-00-00-000.f.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.55883024420353,8.768353665427988,51.55910848330961,8.766832980369891", + "point": "51.55883024420353,8.768353665427988", + "startLcPosition": "81", + "impact": { + "lower": "W\u00fcnnenberg-Haaren", + "upper": "Sintfeld", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Sintfeld - W\u00fcnnenberg-Haaren", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 51.55883024420353, + "long": 8.768353665427988 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 30.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A44: Kassel -> Dortmund, zwischen 2.1 km hinter Sintfeld und 4.2 km vor AK W\u00fcnnenberg-Haaren", + "", + "L\u00e4nge: 0.11 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A44 - Br\u00fcckeninstandsetzung BW Schnatweg - AlD 8912" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.768353665, + 51.558830244 + ], + [ + 8.7680401, + 51.558884601 + ], + [ + 8.76683298, + 51.559108483 + ] + ] + } + }, + { + "identifier": "2024-008912--vi-bs.2026-03-30_19-00-00-000.devi-zus.2025-03-02_19-00-00-000.f.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.55630848543106,8.788126029517954,51.55754272144583,8.77779628762304", + "point": "51.55630848543106,8.788126029517954", + "startLcPosition": "81", + "impact": { + "lower": "W\u00fcnnenberg-Haaren", + "upper": "Sintfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Sintfeld - W\u00fcnnenberg-Haaren", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 51.55630848543106, + "long": 8.788126029517954 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 30.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.10.26)", + "", + "A44: Kassel -> Dortmund, zwischen 0.7 km hinter Sintfeld und 5.0 km vor AK W\u00fcnnenberg-Haaren", + "", + "L\u00e4nge: 0.73 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A44 - Br\u00fcckeninstandsetzung BW Schnatweg - AlD 8912" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.78812603, + 51.556308485 + ], + [ + 8.7862091, + 51.556566301 + ], + [ + 8.7803667, + 51.557242801 + ], + [ + 8.777796288, + 51.557542721 + ] + ] + } + }, + { + "identifier": "2026-016024--vi-bs.2026-04-23_09-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.56742916963264,8.743959887760086,51.572023789368124,8.73707385734553", + "point": "51.56742916963264,8.743959887760086", + "startLcPosition": "81", + "impact": { + "lower": "W\u00fcnnenberg-Haaren", + "upper": "Sintfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Sintfeld - W\u00fcnnenberg-Haaren", + "coordinate": { + "lat": 51.56742916963264, + "long": 8.743959887760086 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 15:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "", + "A44: Kassel -> Dortmund, zwischen 4.1 km hinter Sintfeld und 1.7 km vor AK W\u00fcnnenberg-Haaren", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 - Br\u00fcckenwartung - AkD 16024" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.743959888, + 51.56742917 + ], + [ + 8.7438787, + 51.567473701 + ], + [ + 8.7423467, + 51.568438101 + ], + [ + 8.7378331, + 51.571490201 + ], + [ + 8.737073857, + 51.572023789 + ] + ] + } + }, + { + "identifier": "2026-015513--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_19-00-00-000_004.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.456868896860954,9.125833686452172,51.46445339475866,9.11818161065731", + "point": "51.456868896860954,9.125833686452172", + "startLcPosition": "91", + "impact": { + "lower": "Twistetalbr\u00fccke", + "upper": "Unter den Buchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Unter den Buchen - Twistetalbr\u00fccke", + "coordinate": { + "lat": 51.456868896860954, + "long": 9.125833686452172 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A44: Kassel -> Dortmund, zwischen 1.9 km hinter Unter den Buchen und 0.1 km vor Twistetalbr\u00fccke", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A44 Reparatur Schutzeinrichtung - Unfallsch\u00e4den" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.125833686, + 51.456868897 + ], + [ + 9.1245087, + 51.458445601 + ], + [ + 9.1230373, + 51.460128901 + ], + [ + 9.1212852, + 51.461930001 + ], + [ + 9.1206793, + 51.462482601 + ], + [ + 9.1200464, + 51.463025701 + ], + [ + 9.1193886, + 51.463557101 + ], + [ + 9.1187065, + 51.464076401 + ], + [ + 9.118181611, + 51.464453395 + ] + ] + } + }, + { + "identifier": "2026-014995--vi-bs.2026-04-13_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.42523461233353,9.157718740355163,51.422549166484096,9.157986926913443", + "point": "51.42523461233353,9.157718740355163", + "startLcPosition": "91", + "impact": { + "lower": "Am roten Ufer", + "upper": "Unter den Buchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Unter den Buchen - Am roten Ufer", + "coordinate": { + "lat": 51.42523461233353, + "long": 9.157718740355163 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 18:00 Uhr", + "", + "A44: Dortmund -> Kassel, zwischen 2.4 km hinter Unter den Buchen und 0.6 km vor Am roten Ufer", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 Wartungsarbeiten an einer Kontrollbr\u00fccke der Fa. Toll Collect (ID 4108)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.15771874, + 51.425234612 + ], + [ + 9.1579436, + 51.422824901 + ], + [ + 9.157986927, + 51.422549166 + ] + ] + } + }, + { + "identifier": "2026-014989--vi-bs.2026-04-13_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.42523461233353,9.157718740355163,51.422549166484096,9.157986926913443", + "point": "51.42523461233353,9.157718740355163", + "startLcPosition": "91", + "impact": { + "lower": "Am roten Ufer", + "upper": "Unter den Buchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Unter den Buchen - Am roten Ufer", + "coordinate": { + "lat": 51.42523461233353, + "long": 9.157718740355163 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 18:00 Uhr", + "", + "A44: Dortmund -> Kassel, zwischen 2.4 km hinter Unter den Buchen und 0.6 km vor Am roten Ufer", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 Wartungsarbeiten an einer Kontrollbr\u00fccke der Fa. Toll Collect (ID 4108)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.15771874, + 51.425234612 + ], + [ + 9.1579436, + 51.422824901 + ], + [ + 9.157986927, + 51.422549166 + ] + ] + } + }, + { + "identifier": "2026-015513--vi-bs.2026-04-13_21-00-00-000.devi-zus.2026-04-13_19-00-00-000_004.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.38604889465522,9.222480374554834,51.38231001905321,9.235394313470044", + "point": "51.38604889465522,9.222480374554834", + "startLcPosition": "94", + "impact": { + "lower": "B\u00fchleck", + "upper": "Breuna", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | Breuna - B\u00fchleck", + "coordinate": { + "lat": 51.38604889465522, + "long": 9.222480374554834 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 21:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A44: Dortmund -> Kassel, zwischen 3.3 km hinter AS Breuna und 0.6 km vor B\u00fchleck", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A44 Reparatur Schutzeinrichtung - Unfallsch\u00e4den" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.222480375, + 51.386048895 + ], + [ + 9.2236928, + 51.385453301 + ], + [ + 9.2260906, + 51.384478301 + ], + [ + 9.2286222, + 51.383656201 + ], + [ + 9.2318442, + 51.382866101 + ], + [ + 9.2337083, + 51.382546401 + ], + [ + 9.2344256, + 51.382441801 + ], + [ + 9.235394313, + 51.382310019 + ] + ] + } + }, + { + "identifier": "2026-017590--vi-bs.2026-04-09_07-30-00-000_010.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.38080399333534,9.256777056072599,51.27961655228847,9.381110434432303", + "point": "51.38080399333534,9.256777056072599", + "startLcPosition": "95", + "impact": { + "lower": "Kassel-Bad Wilhelmsh\u00f6he", + "upper": "B\u00fchleck", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Kassel", + "title": "A44 | B\u00fchleck - Kassel-Bad Wilhelmsh\u00f6he", + "coordinate": { + "lat": 51.38080399333534, + "long": 9.256777056072599 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 14:30 Uhr", + "", + "A44: Dortmund -> Kassel, zwischen 0.9 km hinter B\u00fchleck und 1.2 km vor AS Kassel-Bad Wilhelmsh\u00f6he", + "", + "L\u00e4nge: 16 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A44 von B\u00fchleck nach Kassel-Bad Wilhelmsh\u00f6he (AS) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.256777056, + 51.380803993 + ], + [ + 9.2587347, + 51.380507701 + ], + [ + 9.2618673, + 51.379921101 + ], + [ + 9.2623212, + 51.379821801 + ], + [ + 9.2631425, + 51.379639701 + ], + [ + 9.2646879, + 51.379260901 + ], + [ + 9.2659333, + 51.378913401 + ], + [ + 9.2669994, + 51.378611201 + ], + [ + 9.2673974, + 51.378484501 + ], + [ + 9.2685166, + 51.378090301 + ], + [ + 9.2700177, + 51.377534501 + ], + [ + 9.2711614, + 51.377041301 + ], + [ + 9.2722718, + 51.376517101 + ], + [ + 9.2738323, + 51.375674601 + ], + [ + 9.2750782, + 51.374910201 + ], + [ + 9.2759438, + 51.374325001 + ], + [ + 9.2765591, + 51.373845501 + ], + [ + 9.2773555, + 51.373153301 + ], + [ + 9.2778121, + 51.372700401 + ], + [ + 9.2784642, + 51.371968801 + ], + [ + 9.2789429, + 51.371320701 + ], + [ + 9.2795223, + 51.370360801 + ], + [ + 9.279917, + 51.369522701 + ], + [ + 9.280104, + 51.368934801 + ], + [ + 9.2802807, + 51.368293301 + ], + [ + 9.280387, + 51.367648901 + ], + [ + 9.2804387, + 51.366986501 + ], + [ + 9.2804505, + 51.366333001 + ], + [ + 9.280413, + 51.365264901 + ], + [ + 9.2802861, + 51.364307001 + ], + [ + 9.2799258, + 51.362408801 + ], + [ + 9.2794848, + 51.360610701 + ], + [ + 9.2792866, + 51.359689801 + ], + [ + 9.2791708, + 51.358799601 + ], + [ + 9.2790521, + 51.357965901 + ], + [ + 9.2789814, + 51.356664501 + ], + [ + 9.2789866, + 51.356226901 + ], + [ + 9.2790828, + 51.354737401 + ], + [ + 9.2791649, + 51.354078601 + ], + [ + 9.2792978, + 51.353291201 + ], + [ + 9.2794941, + 51.352432301 + ], + [ + 9.2797596, + 51.351387001 + ], + [ + 9.2805738, + 51.349361401 + ], + [ + 9.2812499, + 51.347837001 + ], + [ + 9.2820806, + 51.345964201 + ], + [ + 9.2826049, + 51.344375301 + ], + [ + 9.2829438, + 51.342510601 + ], + [ + 9.2829906, + 51.341870301 + ], + [ + 9.282996, + 51.341236101 + ], + [ + 9.2829582, + 51.340567101 + ], + [ + 9.2828375, + 51.339632301 + ], + [ + 9.2826505, + 51.338906901 + ], + [ + 9.2821913, + 51.337466301 + ], + [ + 9.2815194, + 51.335786701 + ], + [ + 9.2808841, + 51.334139001 + ], + [ + 9.2805103, + 51.332529201 + ], + [ + 9.2803438, + 51.330898101 + ], + [ + 9.2804556, + 51.328928001 + ], + [ + 9.2805159, + 51.328581001 + ], + [ + 9.2805309, + 51.328494701 + ], + [ + 9.2806943, + 51.327835601 + ], + [ + 9.2809082, + 51.326998601 + ], + [ + 9.2816161, + 51.325206601 + ], + [ + 9.2822916, + 51.323868701 + ], + [ + 9.2824736, + 51.323505401 + ], + [ + 9.2827491, + 51.323061501 + ], + [ + 9.28311, + 51.322480201 + ], + [ + 9.2839793, + 51.321194401 + ], + [ + 9.2841193, + 51.321001701 + ], + [ + 9.2849239, + 51.319960601 + ], + [ + 9.2854116, + 51.319375801 + ], + [ + 9.2858767, + 51.318796101 + ], + [ + 9.2867263, + 51.317878601 + ], + [ + 9.2876476, + 51.316952201 + ], + [ + 9.2890316, + 51.315734701 + ], + [ + 9.2908101, + 51.314267701 + ], + [ + 9.2919894, + 51.313412101 + ], + [ + 9.2930474, + 51.312685401 + ], + [ + 9.29384, + 51.312163001 + ], + [ + 9.2957288, + 51.311037801 + ], + [ + 9.2971212, + 51.310273201 + ], + [ + 9.2990012, + 51.309352501 + ], + [ + 9.2995563, + 51.309095901 + ], + [ + 9.301155, + 51.308356901 + ], + [ + 9.3033867, + 51.307470901 + ], + [ + 9.304929, + 51.306904901 + ], + [ + 9.3061188, + 51.306504201 + ], + [ + 9.306532, + 51.306375301 + ], + [ + 9.3076871, + 51.306022801 + ], + [ + 9.3087094, + 51.305734901 + ], + [ + 9.3098908, + 51.305403801 + ], + [ + 9.3110718, + 51.305099801 + ], + [ + 9.3138844, + 51.304392601 + ], + [ + 9.3151107, + 51.304076001 + ], + [ + 9.3158081, + 51.303899901 + ], + [ + 9.3163805, + 51.303747601 + ], + [ + 9.3177224, + 51.303368501 + ], + [ + 9.3189275, + 51.303015301 + ], + [ + 9.3198362, + 51.302724901 + ], + [ + 9.3209241, + 51.302373701 + ], + [ + 9.321593, + 51.302119701 + ], + [ + 9.3239584, + 51.301187901 + ], + [ + 9.3273837, + 51.299727601 + ], + [ + 9.3286392, + 51.299192301 + ], + [ + 9.3309248, + 51.298284601 + ], + [ + 9.3360096, + 51.296663001 + ], + [ + 9.3386672, + 51.296006801 + ], + [ + 9.3410861, + 51.295448501 + ], + [ + 9.3460921, + 51.294365801 + ], + [ + 9.3477036, + 51.293987701 + ], + [ + 9.3481508, + 51.293869001 + ], + [ + 9.3502892, + 51.293301301 + ], + [ + 9.3512178, + 51.293030501 + ], + [ + 9.3520461, + 51.292779401 + ], + [ + 9.35361, + 51.292269301 + ], + [ + 9.354357, + 51.292006501 + ], + [ + 9.3559184, + 51.291439801 + ], + [ + 9.3575764, + 51.290769501 + ], + [ + 9.359126, + 51.290087901 + ], + [ + 9.3606068, + 51.289390801 + ], + [ + 9.3621577, + 51.288610301 + ], + [ + 9.3637337, + 51.287727301 + ], + [ + 9.3662786, + 51.286212901 + ], + [ + 9.367122, + 51.285682201 + ], + [ + 9.3677166, + 51.285298201 + ], + [ + 9.3691668, + 51.284398401 + ], + [ + 9.3709146, + 51.283347001 + ], + [ + 9.3713619, + 51.283090201 + ], + [ + 9.3722771, + 51.282586401 + ], + [ + 9.373205, + 51.282117001 + ], + [ + 9.3739855, + 51.281749301 + ], + [ + 9.3749372, + 51.281333301 + ], + [ + 9.3762053, + 51.280851201 + ], + [ + 9.3775628, + 51.280427201 + ], + [ + 9.3787349, + 51.280111001 + ], + [ + 9.3799368, + 51.279841701 + ], + [ + 9.381110434, + 51.279616552 + ] + ] + } + }, + { + "identifier": "2026-015513--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_004.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.36651760085091,9.28065883781115,51.370920199499224,9.279386572333134", + "point": "51.36651760085091,9.28065883781115", + "startLcPosition": "96", + "impact": { + "lower": "B\u00fchleck", + "upper": "B\u00e4renberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | B\u00e4renberg - B\u00fchleck", + "coordinate": { + "lat": 51.36651760085091, + "long": 9.28065883781115 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A44: Kassel -> Dortmund, zwischen 1.3 km hinter B\u00e4renberg und 2.9 km vor B\u00fchleck", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A44 Reparatur Schutzeinrichtung - Unfallsch\u00e4den" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.280658838, + 51.366517601 + ], + [ + 9.2806517, + 51.366978601 + ], + [ + 9.2805975, + 51.367659301 + ], + [ + 9.2804773, + 51.368325801 + ], + [ + 9.2803051, + 51.368941601 + ], + [ + 9.2801084, + 51.369523501 + ], + [ + 9.279714, + 51.370382901 + ], + [ + 9.279386572, + 51.370920199 + ] + ] + } + }, + { + "identifier": "2026-016707--vi-bs.2026-04-07_08-00-00-000.devi-bs.2026-04-08_08-00-00-000_012.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.30386060175388,9.316524100051536,51.3075864871037,9.303512750224138", + "point": "51.30386060175388,9.316524100051536", + "startLcPosition": "101", + "impact": { + "lower": "Roterain", + "upper": "Hirzstein", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Hirzstein - Roterain", + "coordinate": { + "lat": 51.30386060175388, + "long": 9.316524100051536 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:30 Uhr.", + "", + "A44: Kassel -> Dortmund, zwischen 4.3 km hinter Hirzstein und 0.7 km vor Roterain", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "RV Erneuerung Gro\u00dfbeschilderung (Bremicker)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.3165241, + 51.303860602 + ], + [ + 9.3164197, + 51.303889601 + ], + [ + 9.3151925, + 51.304205401 + ], + [ + 9.3140102, + 51.304511501 + ], + [ + 9.3112351, + 51.305196501 + ], + [ + 9.3094683, + 51.305648901 + ], + [ + 9.3086073, + 51.305897401 + ], + [ + 9.3077388, + 51.306127701 + ], + [ + 9.3065138, + 51.306507101 + ], + [ + 9.3061089, + 51.306639501 + ], + [ + 9.3049936, + 51.307012901 + ], + [ + 9.3036378, + 51.307537001 + ], + [ + 9.30351275, + 51.307586487 + ] + ] + } + }, + { + "identifier": "2026-017163--vi-bs.2026-04-07_08-00-00-000_041.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.27974642611645,9.381202558333005,51.36203856941751,9.280052371429223", + "point": "51.27974642611645,9.381202558333005", + "startLcPosition": "103", + "impact": { + "lower": "B\u00fchleck", + "upper": "Kassel-Bad Wilhelmsh\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Dortmund", + "title": "A44 | Kassel-Bad Wilhelmsh\u00f6he - B\u00fchleck", + "coordinate": { + "lat": 51.27974642611645, + "long": 9.381202558333005 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 14:30 Uhr", + "", + "A44: Kassel -> Dortmund, zwischen 1.2 km hinter AS Kassel-Bad Wilhelmsh\u00f6he und 3.9 km vor B\u00fchleck", + "", + "L\u00e4nge: 13 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A44 von Kassel-Bad Wilhelmsh\u00f6he (AS) nach B\u00fchleck Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.381202558, + 51.279746426 + ], + [ + 9.3799536, + 51.279978301 + ], + [ + 9.3789162, + 51.280210601 + ], + [ + 9.3776026, + 51.280567901 + ], + [ + 9.3764292, + 51.280941001 + ], + [ + 9.375601, + 51.281237801 + ], + [ + 9.3741218, + 51.281859101 + ], + [ + 9.3729608, + 51.282405901 + ], + [ + 9.3719807, + 51.282923301 + ], + [ + 9.3710437, + 51.283457701 + ], + [ + 9.3700593, + 51.284064901 + ], + [ + 9.3688672, + 51.284769801 + ], + [ + 9.3677355, + 51.285525701 + ], + [ + 9.3674402, + 51.285701201 + ], + [ + 9.367118, + 51.285905101 + ], + [ + 9.3662304, + 51.286437601 + ], + [ + 9.3640427, + 51.287738701 + ], + [ + 9.3625769, + 51.288547901 + ], + [ + 9.3608026, + 51.289466801 + ], + [ + 9.3595538, + 51.290049401 + ], + [ + 9.3580987, + 51.290695001 + ], + [ + 9.3569437, + 51.291191101 + ], + [ + 9.3560586, + 51.291545301 + ], + [ + 9.3537259, + 51.292369501 + ], + [ + 9.3521155, + 51.292910201 + ], + [ + 9.3508785, + 51.293294401 + ], + [ + 9.3495535, + 51.293653901 + ], + [ + 9.3479069, + 51.294074701 + ], + [ + 9.3463239, + 51.294458701 + ], + [ + 9.3412312, + 51.295617801 + ], + [ + 9.3387721, + 51.296154301 + ], + [ + 9.336918, + 51.296615901 + ], + [ + 9.33618, + 51.296788601 + ], + [ + 9.3335961, + 51.297535501 + ], + [ + 9.331026, + 51.298407001 + ], + [ + 9.3290776, + 51.299182101 + ], + [ + 9.3241557, + 51.301251401 + ], + [ + 9.3216559, + 51.302238801 + ], + [ + 9.3204931, + 51.302664001 + ], + [ + 9.3192241, + 51.303074901 + ], + [ + 9.3178669, + 51.303487601 + ], + [ + 9.3164197, + 51.303889601 + ], + [ + 9.3151925, + 51.304205401 + ], + [ + 9.3140102, + 51.304511501 + ], + [ + 9.3112351, + 51.305196501 + ], + [ + 9.3094683, + 51.305648901 + ], + [ + 9.3086073, + 51.305897401 + ], + [ + 9.3077388, + 51.306127701 + ], + [ + 9.3065138, + 51.306507101 + ], + [ + 9.3061089, + 51.306639501 + ], + [ + 9.3049936, + 51.307012901 + ], + [ + 9.3036378, + 51.307537001 + ], + [ + 9.3013925, + 51.308425501 + ], + [ + 9.2990996, + 51.309454101 + ], + [ + 9.2974904, + 51.310226901 + ], + [ + 9.2961403, + 51.310966601 + ], + [ + 9.2958859, + 51.311106401 + ], + [ + 9.2950645, + 51.311582801 + ], + [ + 9.2935017, + 51.312551701 + ], + [ + 9.2922391, + 51.313413201 + ], + [ + 9.2910088, + 51.314314301 + ], + [ + 9.2892698, + 51.315756901 + ], + [ + 9.2876446, + 51.317189801 + ], + [ + 9.2869065, + 51.317947301 + ], + [ + 9.2862677, + 51.318627601 + ], + [ + 9.2851668, + 51.319928001 + ], + [ + 9.2843016, + 51.321068701 + ], + [ + 9.2841588, + 51.321255801 + ], + [ + 9.2840692, + 51.321382701 + ], + [ + 9.2834876, + 51.322244401 + ], + [ + 9.283287, + 51.322549701 + ], + [ + 9.283097, + 51.322881201 + ], + [ + 9.2826121, + 51.323727101 + ], + [ + 9.2818902, + 51.325114101 + ], + [ + 9.2816585, + 51.325642801 + ], + [ + 9.2813909, + 51.326298301 + ], + [ + 9.2811974, + 51.326822101 + ], + [ + 9.2810135, + 51.327436301 + ], + [ + 9.2808987, + 51.327860001 + ], + [ + 9.2807551, + 51.328488801 + ], + [ + 9.2806951, + 51.328966501 + ], + [ + 9.2806301, + 51.329466101 + ], + [ + 9.2805685, + 51.330485501 + ], + [ + 9.2805608, + 51.331043301 + ], + [ + 9.2806964, + 51.332537101 + ], + [ + 9.281076, + 51.334122301 + ], + [ + 9.2816925, + 51.335728201 + ], + [ + 9.2823913, + 51.337442801 + ], + [ + 9.2828541, + 51.338886901 + ], + [ + 9.2829946, + 51.339431901 + ], + [ + 9.2830698, + 51.339868601 + ], + [ + 9.2831682, + 51.340716501 + ], + [ + 9.2831759, + 51.341226201 + ], + [ + 9.283173, + 51.341886201 + ], + [ + 9.2831214, + 51.342538501 + ], + [ + 9.2830219, + 51.343259001 + ], + [ + 9.2829768, + 51.343504601 + ], + [ + 9.2828497, + 51.344120001 + ], + [ + 9.2826678, + 51.344790201 + ], + [ + 9.282276, + 51.346014401 + ], + [ + 9.280756, + 51.349464301 + ], + [ + 9.2799261, + 51.351576501 + ], + [ + 9.2796108, + 51.352762201 + ], + [ + 9.2794004, + 51.353755901 + ], + [ + 9.2792842, + 51.354748201 + ], + [ + 9.2792055, + 51.355557601 + ], + [ + 9.2791817, + 51.356301001 + ], + [ + 9.2791817, + 51.356735701 + ], + [ + 9.2791955, + 51.357192601 + ], + [ + 9.2792309, + 51.357649501 + ], + [ + 9.2792643, + 51.358113701 + ], + [ + 9.2793351, + 51.358695901 + ], + [ + 9.2794256, + 51.359233801 + ], + [ + 9.2795052, + 51.359671201 + ], + [ + 9.279713, + 51.360632101 + ], + [ + 9.280052371, + 51.362038569 + ] + ] + } + }, + { + "identifier": "2026-016089--vi-bs.2026-04-13_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.1944291670741,9.765054732571532,51.19322838359942,9.786788945570697", + "point": "51.1944291670741,9.765054732571532", + "startLcPosition": "113", + "impact": { + "lower": "Waldkappel", + "upper": "Hessisch Lichtenau-Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Eisenach", + "title": "A44 | Hessisch Lichtenau-Mitte - Waldkappel", + "coordinate": { + "lat": 51.1944291670741, + "long": 9.765054732571532 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:00 Uhr", + "14.04.26 von 08:00 bis 16:00 Uhr", + "", + "A44: Kassel -> Eisenach, zwischen 1.1 km hinter AS Hessisch Lichtenau-Mitte und 11.7 km vor AS Waldkappel", + "", + "L\u00e4nge: 1.56 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 von Hessisch Lichtenau-Mitte (AS) nach Waldkappel (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.765054733, + 51.194429167 + ], + [ + 9.7657785, + 51.194244301 + ], + [ + 9.7665045, + 51.194094401 + ], + [ + 9.7672408, + 51.193965601 + ], + [ + 9.7679859, + 51.193858301 + ], + [ + 9.768738, + 51.193772701 + ], + [ + 9.7694957, + 51.193709001 + ], + [ + 9.7702573, + 51.193667301 + ], + [ + 9.7710211, + 51.193647801 + ], + [ + 9.7717856, + 51.193650401 + ], + [ + 9.7725957, + 51.193674101 + ], + [ + 9.7733098, + 51.193723701 + ], + [ + 9.7748651, + 51.193857901 + ], + [ + 9.7751447, + 51.193883301 + ], + [ + 9.7771735, + 51.194089301 + ], + [ + 9.7781315, + 51.194179501 + ], + [ + 9.7789233, + 51.194234801 + ], + [ + 9.7796187, + 51.194256401 + ], + [ + 9.7803132, + 51.194263401 + ], + [ + 9.7810249, + 51.194248001 + ], + [ + 9.7817069, + 51.194214201 + ], + [ + 9.7824392, + 51.194150001 + ], + [ + 9.7830788, + 51.194070601 + ], + [ + 9.7837254, + 51.193975301 + ], + [ + 9.7838573, + 51.193952101 + ], + [ + 9.7844018, + 51.193856001 + ], + [ + 9.7850515, + 51.193718101 + ], + [ + 9.7856991, + 51.193552801 + ], + [ + 9.7863167, + 51.193381101 + ], + [ + 9.7866614, + 51.193272001 + ], + [ + 9.786788946, + 51.193228384 + ] + ] + } + }, + { + "identifier": "2026-016089--vi-bs.2026-04-14_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.1944291670741,9.765054732571532,51.19322838359942,9.786788945570697", + "point": "51.1944291670741,9.765054732571532", + "startLcPosition": "113", + "impact": { + "lower": "Waldkappel", + "upper": "Hessisch Lichtenau-Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Eisenach", + "title": "A44 | Hessisch Lichtenau-Mitte - Waldkappel", + "coordinate": { + "lat": 51.1944291670741, + "long": 9.765054732571532 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 16:00 Uhr", + "", + "A44: Kassel -> Eisenach, zwischen 1.1 km hinter AS Hessisch Lichtenau-Mitte und 11.7 km vor AS Waldkappel", + "", + "L\u00e4nge: 1.56 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 von Hessisch Lichtenau-Mitte (AS) nach Waldkappel (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.765054733, + 51.194429167 + ], + [ + 9.7657785, + 51.194244301 + ], + [ + 9.7665045, + 51.194094401 + ], + [ + 9.7672408, + 51.193965601 + ], + [ + 9.7679859, + 51.193858301 + ], + [ + 9.768738, + 51.193772701 + ], + [ + 9.7694957, + 51.193709001 + ], + [ + 9.7702573, + 51.193667301 + ], + [ + 9.7710211, + 51.193647801 + ], + [ + 9.7717856, + 51.193650401 + ], + [ + 9.7725957, + 51.193674101 + ], + [ + 9.7733098, + 51.193723701 + ], + [ + 9.7748651, + 51.193857901 + ], + [ + 9.7751447, + 51.193883301 + ], + [ + 9.7771735, + 51.194089301 + ], + [ + 9.7781315, + 51.194179501 + ], + [ + 9.7789233, + 51.194234801 + ], + [ + 9.7796187, + 51.194256401 + ], + [ + 9.7803132, + 51.194263401 + ], + [ + 9.7810249, + 51.194248001 + ], + [ + 9.7817069, + 51.194214201 + ], + [ + 9.7824392, + 51.194150001 + ], + [ + 9.7830788, + 51.194070601 + ], + [ + 9.7837254, + 51.193975301 + ], + [ + 9.7838573, + 51.193952101 + ], + [ + 9.7844018, + 51.193856001 + ], + [ + 9.7850515, + 51.193718101 + ], + [ + 9.7856991, + 51.193552801 + ], + [ + 9.7863167, + 51.193381101 + ], + [ + 9.7866614, + 51.193272001 + ], + [ + 9.786788946, + 51.193228384 + ] + ] + } + }, + { + "identifier": "2026-016057--vi-bs.2026-04-07_07-30-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.15474995586048,9.890807717551487,51.151357934666244,9.906641404147587", + "point": "51.15474995586048,9.890807717551487", + "startLcPosition": "114", + "impact": { + "lower": "Waldkappel", + "upper": "Hessisch Lichtenau-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kassel -> Eisenach", + "title": "A44 | Hessisch Lichtenau-Ost - Waldkappel", + "coordinate": { + "lat": 51.15474995586048, + "long": 9.890807717551487 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 17:00 Uhr", + "10.04.26 von 07:30 bis 14:00 Uhr", + "", + "A44: Kassel -> Eisenach, zwischen 9.3 km hinter AS Hessisch Lichtenau-Ost und 1.3 km vor AS Waldkappel", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 von Hessisch Lichtenau-Ost (AS) nach Waldkappel (AS) Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.890807718, + 51.154749956 + ], + [ + 9.8910766, + 51.154664001 + ], + [ + 9.8917189, + 51.154424001 + ], + [ + 9.8924852, + 51.154087501 + ], + [ + 9.8936199, + 51.153529601 + ], + [ + 9.8948142, + 51.152961901 + ], + [ + 9.8950099, + 51.152884601 + ], + [ + 9.8955609, + 51.152665201 + ], + [ + 9.8962355, + 51.152435801 + ], + [ + 9.896691, + 51.152305201 + ], + [ + 9.8975126, + 51.152118101 + ], + [ + 9.898205, + 51.151985601 + ], + [ + 9.8992264, + 51.151851601 + ], + [ + 9.9003649, + 51.151748301 + ], + [ + 9.9013541, + 51.151703501 + ], + [ + 9.9028211, + 51.151603901 + ], + [ + 9.9047411, + 51.151485601 + ], + [ + 9.906641404, + 51.151357935 + ] + ] + } + }, + { + "identifier": "2026-017535--vi-bs.2026-04-16_14-00-00-000.devi-zus.2026-04-15_08-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.192857734353815,9.788106393420657,51.194219246851496,9.777116859801119", + "point": "51.192857734353815,9.788106393420657", + "startLcPosition": "115", + "impact": { + "lower": "Hessisch Lichtenau-Mitte", + "upper": "Waldkappel", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Eisenach -> Kassel", + "title": "A44 | Waldkappel - Hessisch Lichtenau-Mitte", + "coordinate": { + "lat": 51.192857734353815, + "long": 9.788106393420657 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 14:00 bis 16:00 Uhr", + "", + "A44: Eisenach -> Kassel, zwischen 11.6 km hinter AS Waldkappel und 2.0 km vor AS Hessisch Lichtenau-Mitte", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 von Waldkappel (AS) nach Hessisch Lichtenau-Mitte (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.788106393, + 51.192857734 + ], + [ + 9.7880621, + 51.192877401 + ], + [ + 9.7874619, + 51.193095401 + ], + [ + 9.7864435, + 51.193455101 + ], + [ + 9.7863824, + 51.193469301 + ], + [ + 9.7857549, + 51.193649801 + ], + [ + 9.7851223, + 51.193805701 + ], + [ + 9.7844907, + 51.193943001 + ], + [ + 9.7838208, + 51.194066601 + ], + [ + 9.7831711, + 51.194166201 + ], + [ + 9.7824899, + 51.194249401 + ], + [ + 9.7817738, + 51.194313301 + ], + [ + 9.7810714, + 51.194349701 + ], + [ + 9.7803439, + 51.194368701 + ], + [ + 9.7796368, + 51.194364001 + ], + [ + 9.7789116, + 51.194335901 + ], + [ + 9.7781091, + 51.194290701 + ], + [ + 9.77711686, + 51.194219247 + ] + ] + } + }, + { + "identifier": "2026-017535--vi-bs.2026-04-15_08-00-00-000.devi-zus.2026-04-15_08-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.192857734353815,9.788106393420657,51.194219246851496,9.777116859801119", + "point": "51.192857734353815,9.788106393420657", + "startLcPosition": "115", + "impact": { + "lower": "Hessisch Lichtenau-Mitte", + "upper": "Waldkappel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Eisenach -> Kassel", + "title": "A44 | Waldkappel - Hessisch Lichtenau-Mitte", + "coordinate": { + "lat": 51.192857734353815, + "long": 9.788106393420657 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 16:00 Uhr", + "16.04.26 von 08:00 bis 14:00 Uhr", + "", + "A44: Eisenach -> Kassel, zwischen 11.6 km hinter AS Waldkappel und 2.0 km vor AS Hessisch Lichtenau-Mitte", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A44 von Waldkappel (AS) nach Hessisch Lichtenau-Mitte (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.788106393, + 51.192857734 + ], + [ + 9.7880621, + 51.192877401 + ], + [ + 9.7874619, + 51.193095401 + ], + [ + 9.7864435, + 51.193455101 + ], + [ + 9.7863824, + 51.193469301 + ], + [ + 9.7857549, + 51.193649801 + ], + [ + 9.7851223, + 51.193805701 + ], + [ + 9.7844907, + 51.193943001 + ], + [ + 9.7838208, + 51.194066601 + ], + [ + 9.7831711, + 51.194166201 + ], + [ + 9.7824899, + 51.194249401 + ], + [ + 9.7817738, + 51.194313301 + ], + [ + 9.7810714, + 51.194349701 + ], + [ + 9.7803439, + 51.194368701 + ], + [ + 9.7796368, + 51.194364001 + ], + [ + 9.7789116, + 51.194335901 + ], + [ + 9.7781091, + 51.194290701 + ], + [ + 9.77711686, + 51.194219247 + ] + ] + } + }, + { + "identifier": "2026-012742--vi-bs.2026-04-08_09-00-00-000.devi-zus.2026-03-23_09-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26457462640593,9.449281216004762,51.26380057823383,9.451820826455773", + "point": "51.26457462640593,9.449281216004762", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Kassel-West (aus Richtung Baunatal-Nord)", + "title": "A44, A49 AK Kassel-West Baugrunduntersuchungen", + "startTimestamp": "2026-04-08T09:00:00+02:00", + "coordinate": { + "lat": 51.26457462640593, + "long": 9.449281216004762 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 09:00 Uhr", + "Ende: 08.05.26 um 18:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "Auffahrt auf die A49: AK Kassel-West (aus Richtung Baunatal-Nord)", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A44, A49 AK Kassel-West Baugrunduntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.449281216, + 51.264574626 + ], + [ + 9.451820826, + 51.263800578 + ] + ] + } + }, + { + "identifier": "2023-004453--vi-bs.2025-07-11_20-00-00-000.devi-zus.2025-04-01_09-00-00-000_001.f.de22", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.597758384622495,8.582778716245487,51.597651599521626,8.582702447558352", + "point": "51.597758384622495,8.582778716245487", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS B\u00fcren (aus Richtung Wewelsburg)", + "title": "A44 - grundhafte Sanierung der Fahrbahn bei B\u00fcren - AlD 4453", + "startTimestamp": "2025-07-11T20:00:00+02:00", + "coordinate": { + "lat": 51.597758384622495, + "long": 8.582778716245487 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.07.25 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "Auffahrt auf die A44: AS B\u00fcren (aus Richtung Wewelsburg)", + "", + "L\u00e4nge: 0.01 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A44 - grundhafte Sanierung der Fahrbahn bei B\u00fcren - AlD 4453" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.582778716, + 51.597758385 + ], + [ + 8.5827731, + 51.597750501 + ], + [ + 8.582702448, + 51.5976516 + ] + ] + } + }, + { + "identifier": "2023-004453--vi-bs.2025-07-11_20-00-00-000.devi-zus.2025-04-01_09-00-00-000_001.f.de20", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.59731160881847,8.583544465111403,51.59741282060323,8.583272257239402", + "point": "51.59731160881847,8.583544465111403", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS B\u00fcren (aus Richtung Wewelsburg)", + "title": "A44 - grundhafte Sanierung der Fahrbahn bei B\u00fcren - AlD 4453", + "startTimestamp": "2025-07-11T20:00:00+02:00", + "coordinate": { + "lat": 51.59731160881847, + "long": 8.583544465111403 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.07.25 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 10.05.27)", + "", + "Abfahrt von der A44: AS B\u00fcren (aus Richtung Wewelsburg)", + "", + "L\u00e4nge: 0.02 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A44 - grundhafte Sanierung der Fahrbahn bei B\u00fcren - AlD 4453" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.583544465, + 51.597311609 + ], + [ + 8.5834859, + 51.597328101 + ], + [ + 8.583386, + 51.597363101 + ], + [ + 8.5833089, + 51.597393501 + ], + [ + 8.583272257, + 51.597412821 + ] + ] + } + }, + { + "identifier": "2026-006169--vi-bs.2026-02-17_00-00-00-000.devi-zus.2026-02-17_00-00-00-000_002.de4", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.47045285240541,9.10849336018869,51.46996014295246,9.108992457024266", + "point": "51.47045285240541,9.10849336018869", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Warburg (aus Richtung Twistetalbr\u00fccke)", + "title": "A44 AS Warburg", + "startTimestamp": "2026-02-17T00:00:00+01:00", + "coordinate": { + "lat": 51.47045285240541, + "long": 9.10849336018869 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.02.26 um 00:00 Uhr", + "Ende: 27.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.06.26)", + "", + "Auffahrt auf die A44: AS Warburg (aus Richtung Twistetalbr\u00fccke)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A44 AS Warburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.10849336, + 51.470452852 + ], + [ + 9.1085909, + 51.470439701 + ], + [ + 9.1087316, + 51.470400401 + ], + [ + 9.1088386, + 51.470342801 + ], + [ + 9.1089476, + 51.470257101 + ], + [ + 9.1089998, + 51.470182901 + ], + [ + 9.1090158, + 51.470073301 + ], + [ + 9.1090016, + 51.469981601 + ], + [ + 9.108992457, + 51.469960143 + ] + ] + } + }, + { + "identifier": "2026-006169--vi-bs.2026-02-17_00-00-00-000.devi-zus.2026-02-17_00-00-00-000_002.de2", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.46904200094641,9.107169387508602,51.469716209173846,9.106000442565142", + "point": "51.46904200094641,9.107169387508602", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Warburg (aus Richtung Am Quast)", + "title": "A44 AS Warburg", + "startTimestamp": "2026-02-17T00:00:00+01:00", + "coordinate": { + "lat": 51.46904200094641, + "long": 9.107169387508602 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.02.26 um 00:00 Uhr", + "Ende: 27.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.06.26)", + "", + "Auffahrt auf die A44: AS Warburg (aus Richtung Am Quast)", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A44 AS Warburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.107169388, + 51.469042001 + ], + [ + 9.1071483, + 51.469042001 + ], + [ + 9.1067809, + 51.469055001 + ], + [ + 9.1065469, + 51.469067101 + ], + [ + 9.106404, + 51.469091301 + ], + [ + 9.1062625, + 51.469126801 + ], + [ + 9.1061197, + 51.469191601 + ], + [ + 9.1060104, + 51.469270901 + ], + [ + 9.1059253, + 51.469390401 + ], + [ + 9.1059145, + 51.469469801 + ], + [ + 9.1059145, + 51.469543301 + ], + [ + 9.1059386, + 51.469623501 + ], + [ + 9.1059815, + 51.469698701 + ], + [ + 9.106000443, + 51.469716209 + ] + ] + } + }, + { + "identifier": "2026-000640--vi-bs.2026-03-09_19-00-00-000.devi-zus.2026-02-09_19-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.523656200355674,7.707492580464732,51.52335158939548,7.706400806759247", + "point": "51.523656200355674,7.707492580464732", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Unna-Ost (aus Richtung L\u00fcner Grund)", + "title": "A44 - Arbeiten an Wasserleitungen - ENB BW Iserlohner Stra\u00dfe - AlD 640", + "startTimestamp": "2026-03-09T19:00:00+01:00", + "coordinate": { + "lat": 51.523656200355674, + "long": 7.707492580464732 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "Auffahrt auf die A44: AS Unna-Ost (aus Richtung L\u00fcner Grund)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A44 - Arbeiten an Wasserleitungen - ENB BW Iserlohner Stra\u00dfe - AlD 640" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.70749258, + 51.5236562 + ], + [ + 7.706400807, + 51.523351589 + ] + ] + } + }, + { + "identifier": "2026-012742--vi-bs.2026-04-08_09-00-00-000.devi-zus.2026-03-23_09-00-00-000_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26456283912181,9.44931989144484,51.26380450710593,9.451807936709145", + "point": "51.26456283912181,9.44931989144484", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Kassel-West (aus Richtung Baunatal-Nord)", + "title": "A44, A49 AK Kassel-West Baugrunduntersuchungen", + "startTimestamp": "2026-04-08T09:00:00+02:00", + "coordinate": { + "lat": 51.26456283912181, + "long": 9.44931989144484 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 09:00 Uhr", + "Ende: 08.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.26)", + "", + "Auffahrt auf die A49: AK Kassel-West (aus Richtung Baunatal-Nord)", + "", + "L\u00e4nge: 0.19 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A44, A49 AK Kassel-West Baugrunduntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.449319891, + 51.264562839 + ], + [ + 9.451807937, + 51.263804507 + ] + ] + } + }, + { + "identifier": "2025-026656--vi-bs.2025-11-11_00-00-00-000.devi-zus.2025-06-12_00-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.405090388484865,7.082141968744222,51.40265571960474,7.08386460659049", + "point": "51.405090388484865,7.082141968744222", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A44 Theodor-Heuss-Br\u00fccke - Verst\u00e4rkung und Instandsetzung-", + "startTimestamp": "2025-11-11T00:00:00+01:00", + "coordinate": { + "lat": 51.405090388484865, + "long": 7.082141968744222 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.11.25 um 00:00 Uhr", + "Ende: 18.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.05.26)", + "", + "Von A44: Essen -> D\u00fcsseldorf, zwischen 0.2 km hinter Theodor-Heuss-Br\u00fccke und AS Essen-Kupferdreh nach Abfahrt von der A44: AS Essen-\u00dcberruhr (aus Richtung Theodor-Heuss-Br\u00fccke)", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A44 Theodor-Heuss-Br\u00fccke - Verst\u00e4rkung und Instandsetzung-" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.082141969, + 51.405090388 + ], + [ + 7.0822261, + 51.405053501 + ], + [ + 7.0825236, + 51.404902801 + ], + [ + 7.0827402, + 51.404791201 + ], + [ + 7.083052, + 51.404608801 + ], + [ + 7.0832861, + 51.404454801 + ], + [ + 7.0837795, + 51.404070901 + ], + [ + 7.0839665, + 51.403906701 + ], + [ + 7.0841105, + 51.403763701 + ], + [ + 7.0841966, + 51.403673101 + ], + [ + 7.0844111, + 51.403318901 + ], + [ + 7.0844887, + 51.403190801 + ], + [ + 7.0845941, + 51.402993701 + ], + [ + 7.0846264, + 51.402829001 + ], + [ + 7.0846075, + 51.402746101 + ], + [ + 7.0845445, + 51.402670101 + ], + [ + 7.0844584, + 51.402614101 + ], + [ + 7.0843348, + 51.402573501 + ], + [ + 7.0842331, + 51.402557901 + ], + [ + 7.0841418, + 51.402556601 + ], + [ + 7.0840094, + 51.402583301 + ], + [ + 7.0839098, + 51.402625301 + ], + [ + 7.083864607, + 51.40265572 + ] + ] + } + }, + { + "identifier": "2025-026656--vi-bs.2025-11-11_00-00-00-000.devi-zus.2025-06-12_00-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.40792005864531,7.074057850549301,51.406320812515524,7.078775171549082", + "point": "51.40792005864531,7.074057850549301", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Essen-Heisingen (in Richtung Theodor-Heuss-Br\u00fccke) nach A44", + "title": "A44 Theodor-Heuss-Br\u00fccke - Verst\u00e4rkung und Instandsetzung-", + "startTimestamp": "2025-11-11T00:00:00+01:00", + "coordinate": { + "lat": 51.40792005864531, + "long": 7.074057850549301 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.11.25 um 00:00 Uhr", + "Ende: 18.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.05.26)", + "", + "Von Auffahrt auf die A44: AS Essen-Heisingen (in Richtung Theodor-Heuss-Br\u00fccke) nach A44: Essen -> D\u00fcsseldorf, zwischen AS Essen-Heisingen und 0.1 km vor Theodor-Heuss-Br\u00fccke", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A44 Theodor-Heuss-Br\u00fccke - Verst\u00e4rkung und Instandsetzung-" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.074057851, + 51.407920059 + ], + [ + 7.0742653, + 51.407950701 + ], + [ + 7.0743714, + 51.407965201 + ], + [ + 7.074429, + 51.407958901 + ], + [ + 7.0744655, + 51.407952401 + ], + [ + 7.0745213, + 51.407941601 + ], + [ + 7.074564, + 51.407932401 + ], + [ + 7.0746144, + 51.407915901 + ], + [ + 7.0746781, + 51.407890901 + ], + [ + 7.075216, + 51.407668701 + ], + [ + 7.0762282, + 51.407236401 + ], + [ + 7.0766661, + 51.407058801 + ], + [ + 7.0769384, + 51.406995001 + ], + [ + 7.0779192, + 51.406611601 + ], + [ + 7.078775172, + 51.406320813 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de241", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.292733630818454,6.644181963656373,51.29649544659067,6.637229306688525", + "point": "51.292733630818454,6.644181963656373", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> M\u00f6nchengladbach", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.292733630818454, + "long": 6.644181963656373 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Von A44: D\u00fcsseldorf -> M\u00f6nchengladbach, 0.6 km vor AK Meerbusch, aus Richtung Lank-Latum; in A44: AK Meerbusch auf die A57 in Richtung Krefeld; nach A57: K\u00f6ln -> Krefeld, 1.8 km vor Geism\u00fchle, aus Richtung Meerbusch", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.644181964, + 51.292733631 + ], + [ + 6.6441036, + 51.292720901 + ], + [ + 6.6437173, + 51.292654801 + ], + [ + 6.6431677, + 51.292562901 + ], + [ + 6.6427427, + 51.292545001 + ], + [ + 6.6416774, + 51.292418401 + ], + [ + 6.6412672, + 51.292392301 + ], + [ + 6.6407379, + 51.292337801 + ], + [ + 6.6404214, + 51.292317001 + ], + [ + 6.6401137, + 51.292316801 + ], + [ + 6.6397368, + 51.292337201 + ], + [ + 6.6393851, + 51.292372701 + ], + [ + 6.6390276, + 51.292429201 + ], + [ + 6.638632, + 51.292519101 + ], + [ + 6.6382874, + 51.292621201 + ], + [ + 6.6379446, + 51.292743401 + ], + [ + 6.6375852, + 51.292903301 + ], + [ + 6.6373349, + 51.293039201 + ], + [ + 6.6371502, + 51.293167101 + ], + [ + 6.6370016, + 51.293307601 + ], + [ + 6.6369037, + 51.293442801 + ], + [ + 6.6368394, + 51.293562501 + ], + [ + 6.6367983, + 51.293688501 + ], + [ + 6.6367855, + 51.293804401 + ], + [ + 6.6367921, + 51.293968801 + ], + [ + 6.6368423, + 51.294293001 + ], + [ + 6.6368517, + 51.294452501 + ], + [ + 6.6368233, + 51.294895801 + ], + [ + 6.6371189, + 51.296046601 + ], + [ + 6.637229307, + 51.296495447 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de233", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.294538862667295,6.636285080630518,51.29086331863209,6.631631894114302", + "point": "51.294538862667295,6.636285080630518", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Meerbusch (aus Richtung Geism\u00fchle)", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.294538862667295, + "long": 6.636285080630518 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Abfahrt von der A57: AK Meerbusch (aus Richtung Geism\u00fchle)", + "", + "L\u00e4nge: 0.53 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.636285081, + 51.294538863 + ], + [ + 6.6361704, + 51.294301001 + ], + [ + 6.6360106, + 51.294070501 + ], + [ + 6.63581, + 51.293838601 + ], + [ + 6.6355752, + 51.293608301 + ], + [ + 6.6352791, + 51.293355001 + ], + [ + 6.632846, + 51.291398701 + ], + [ + 6.63263, + 51.291244001 + ], + [ + 6.6324222, + 51.291127501 + ], + [ + 6.6321782, + 51.291019701 + ], + [ + 6.6318616, + 51.290917701 + ], + [ + 6.631631894, + 51.290863319 + ] + ] + } + }, + { + "identifier": "2026-017600--vi-bs.2026-04-10_07-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.29070908890166,6.632970012645557,51.29103469581873,6.635027570123786", + "point": "51.29070908890166,6.632970012645557", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Meerbusch (aus Richtung Osterath)", + "title": "A44 Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 51.29070908890166, + "long": 6.632970012645557 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 16:00 Uhr", + "", + "Abfahrt von der A44: AK Meerbusch (aus Richtung Osterath)", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A44 Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.632970013, + 51.290709089 + ], + [ + 6.6344968, + 51.290946401 + ], + [ + 6.63502757, + 51.291034696 + ] + ] + } + }, + { + "identifier": "2026-016123--vi-bs.2026-04-15_09-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.582890207846916,8.310552824460457,51.581660089612875,8.312979243743294", + "point": "51.582890207846916,8.310552824460457", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": "", + "title": "A44 - Arbeiten an Schutzeinrichtungen - AkD 16123", + "coordinate": { + "lat": 51.582890207846916, + "long": 8.310552824460457 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:30 bis 12:00 Uhr", + "", + "Auffahrt auf die B55", + "", + "L\u00e4nge: 0.22 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A44 - Arbeiten an Schutzeinrichtungen - AkD 16123" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.310552824, + 51.582890208 + ], + [ + 8.3107279, + 51.582804201 + ], + [ + 8.3110098, + 51.582566601 + ], + [ + 8.3112862, + 51.582304301 + ], + [ + 8.3114771, + 51.582165801 + ], + [ + 8.311711, + 51.582054301 + ], + [ + 8.3120503, + 51.581956001 + ], + [ + 8.3123927, + 51.581898101 + ], + [ + 8.3127968, + 51.581786401 + ], + [ + 8.3129414, + 51.581695001 + ], + [ + 8.312979244, + 51.58166009 + ] + ] + } + }, + { + "identifier": "2026-000640--vi-bs.2026-03-09_19-00-00-000.devi-zus.2026-02-09_19-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5236913144408,7.706353582440291,51.52322855609162,7.705779446809832", + "point": "51.5236913144408,7.706353582440291", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Unna-Ost (aus Richtung L\u00fcner Grund)", + "title": "A44 - Arbeiten an Wasserleitungen - ENB BW Iserlohner Stra\u00dfe - AlD 640", + "startTimestamp": "2026-03-09T19:00:00+01:00", + "coordinate": { + "lat": 51.5236913144408, + "long": 7.706353582440291 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "Auffahrt auf die A44: AS Unna-Ost (aus Richtung L\u00fcner Grund)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A44 - Arbeiten an Wasserleitungen - ENB BW Iserlohner Stra\u00dfe - AlD 640" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.706353582, + 51.523691314 + ], + [ + 7.7063407, + 51.523629301 + ], + [ + 7.706231, + 51.523489901 + ], + [ + 7.706054, + 51.523336901 + ], + [ + 7.705779447, + 51.523228556 + ] + ] + } + }, + { + "identifier": "2026-000640--vi-bs.2026-03-09_19-00-00-000.devi-zus.2026-02-09_19-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.52208032283962,7.702569261775323,51.52226820948511,7.703530250800273", + "point": "51.52208032283962,7.702569261775323", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Unna-Ost (aus Richtung Dortmund/Unna)", + "title": "A44 - Arbeiten an Wasserleitungen - ENB BW Iserlohner Stra\u00dfe - AlD 640", + "startTimestamp": "2026-03-09T19:00:00+01:00", + "coordinate": { + "lat": 51.52208032283962, + "long": 7.702569261775323 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.03.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "Abfahrt von der A44: AS Unna-Ost (aus Richtung Dortmund/Unna)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A44 - Arbeiten an Wasserleitungen - ENB BW Iserlohner Stra\u00dfe - AlD 640" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.702569262, + 51.522080323 + ], + [ + 7.7032427, + 51.522204101 + ], + [ + 7.703530251, + 51.522268209 + ] + ] + } + } + ] + }, + "A45": { + "roadworks": [ + { + "identifier": "2023-007880--vi-bs.2024-05-03_00-00-00-000.devi-bs.2024-04-12_00-00-00-000_001.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.00943702676657,9.027923654145582,50.01767996115185,9.042668590305839", + "point": "50.00943702676657,9.027923654145582", + "startLcPosition": "1", + "impact": { + "lower": "Kleinostheim", + "upper": "Mainhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Aschaffenburg -> Gie\u00dfen", + "title": "A45 | Mainhausen - Kleinostheim", + "startTimestamp": "2024-05-03T00:00:00+02:00", + "coordinate": { + "lat": 50.00943702676657, + "long": 9.027923654145582 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.05.24 um 00:00 Uhr", + "Ende: 20.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.10.28)", + "", + "A45: Aschaffenburg -> Gie\u00dfen, zwischen 0.1 km hinter AS Mainhausen und 0.6 km vor AS Kleinostheim", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 Br\u00fcckenneubau Mainflingen Bw 253b" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.027923654, + 50.009437027 + ], + [ + 9.0284384, + 50.009746101 + ], + [ + 9.0290053, + 50.010082801 + ], + [ + 9.0291718, + 50.010179901 + ], + [ + 9.0298092, + 50.010541901 + ], + [ + 9.030695, + 50.011039901 + ], + [ + 9.0318584, + 50.011679701 + ], + [ + 9.032458, + 50.012009601 + ], + [ + 9.0331329, + 50.012380501 + ], + [ + 9.0344229, + 50.013054301 + ], + [ + 9.0358922, + 50.013860001 + ], + [ + 9.0373981, + 50.014685901 + ], + [ + 9.0383579, + 50.015212201 + ], + [ + 9.039228, + 50.015689401 + ], + [ + 9.0409899, + 50.016704601 + ], + [ + 9.041712, + 50.017119801 + ], + [ + 9.04266859, + 50.017679961 + ] + ] + } + }, + { + "identifier": "2026-017719--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_014.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.15570209693109,9.013568728113865,50.14642693949916,8.998430520457774", + "point": "50.15570209693109,9.013568728113865", + "startLcPosition": "7", + "impact": { + "lower": "Hanauer Kreuz", + "upper": "Langenselbolder Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Aschaffenburg", + "title": "A45 | Langenselbolder Dreieck - Hanauer Kreuz", + "coordinate": { + "lat": 50.15570209693109, + "long": 9.013568728113865 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 13:45 Uhr", + "", + "A45: Gie\u00dfen -> Aschaffenburg, zwischen 1.1 km hinter AD Langenselbolder Dreieck und 1.3 km vor AK Hanauer Kreuz", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 12 m", + "", + "A66-A45 Bauwerkspr\u00fcfungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.013568728, + 50.155702097 + ], + [ + 9.0132176, + 50.155412201 + ], + [ + 9.012594, + 50.154917801 + ], + [ + 9.0111548, + 50.153852501 + ], + [ + 9.0096516, + 50.152809301 + ], + [ + 9.0090424, + 50.152391901 + ], + [ + 9.0088709, + 50.152280701 + ], + [ + 9.0076332, + 50.151478701 + ], + [ + 9.0063333, + 50.150683301 + ], + [ + 9.0047405, + 50.149738001 + ], + [ + 9.0039146, + 50.149270601 + ], + [ + 9.0028215, + 50.148670701 + ], + [ + 9.0019491, + 50.148203601 + ], + [ + 8.9995455, + 50.146979901 + ], + [ + 8.99843052, + 50.146426939 + ] + ] + } + }, + { + "identifier": "2026-017719--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_014.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.23272456353802,9.008328631991093,50.24490017524442,8.998858061063334", + "point": "50.23272456353802,9.008328631991093", + "startLcPosition": "9", + "impact": { + "lower": "Langen-Bergheim", + "upper": "Auf der Pfingstweide", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Aschaffenburg -> Gie\u00dfen", + "title": "A45 | Auf der Pfingstweide - Langen-Bergheim", + "coordinate": { + "lat": 50.23272456353802, + "long": 9.008328631991093 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 14:30 Uhr", + "", + "A45: Aschaffenburg -> Gie\u00dfen, zwischen 4.0 km hinter Auf der Pfingstweide und 0.6 km vor Langen-Bergheim", + "", + "L\u00e4nge: 1.52 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A66-A45 Bauwerkspr\u00fcfungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.008328632, + 50.232724564 + ], + [ + 9.0083241, + 50.232746601 + ], + [ + 9.0081214, + 50.233602401 + ], + [ + 9.0078317, + 50.234450601 + ], + [ + 9.0074286, + 50.235298801 + ], + [ + 9.0069244, + 50.236122001 + ], + [ + 9.0063132, + 50.237004301 + ], + [ + 9.0056288, + 50.237867801 + ], + [ + 9.0041757, + 50.239442501 + ], + [ + 9.003542, + 50.240095801 + ], + [ + 9.0021429, + 50.241612501 + ], + [ + 9.000811, + 50.242891601 + ], + [ + 9.0002418, + 50.243504701 + ], + [ + 9.000034, + 50.243701401 + ], + [ + 8.998858061, + 50.244900175 + ] + ] + } + }, + { + "identifier": "2026-017719--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_014.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.25161650427555,8.992157438078847,50.24380000082988,8.999610121754438", + "point": "50.25161650427555,8.992157438078847", + "startLcPosition": "12", + "impact": { + "lower": "Hammersbach", + "upper": "Altenstadt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Aschaffenburg", + "title": "A45 | Altenstadt - Hammersbach", + "coordinate": { + "lat": 50.25161650427555, + "long": 8.992157438078847 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A45: Gie\u00dfen -> Aschaffenburg, zwischen 4.7 km hinter AS Altenstadt und AS Hammersbach", + "", + "L\u00e4nge: 1.02 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A66-A45 Bauwerkspr\u00fcfungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.992157438, + 50.251616504 + ], + [ + 8.992532, + 50.251158901 + ], + [ + 8.9937699, + 50.249815001 + ], + [ + 8.9946058, + 50.248881601 + ], + [ + 8.9956245, + 50.247813701 + ], + [ + 8.996015, + 50.247416201 + ], + [ + 8.9974089, + 50.246043001 + ], + [ + 8.9994412, + 50.243968001 + ], + [ + 8.999610122, + 50.243800001 + ] + ] + } + }, + { + "identifier": "2026-017719--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_014.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.26831140684678,8.981866606237078,50.16761501881545,9.01762890140827", + "point": "50.26831140684678,8.981866606237078", + "startLcPosition": "12", + "impact": { + "lower": "Langenselbolder Dreieck", + "upper": "Altenstadt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Aschaffenburg", + "title": "A45 | Altenstadt - Langenselbolder Dreieck", + "coordinate": { + "lat": 50.26831140684678, + "long": 8.981866606237078 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A45: Gie\u00dfen -> Aschaffenburg, zwischen 2.7 km hinter AS Altenstadt und 0.3 km vor AD Langenselbolder Dreieck", + "", + "L\u00e4nge: 11.92 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A66-A45 Bauwerkspr\u00fcfungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.981866606, + 50.268311407 + ], + [ + 8.9821851, + 50.267638301 + ], + [ + 8.9832506, + 50.265147401 + ], + [ + 8.9843334, + 50.263052301 + ], + [ + 8.9852166, + 50.261479101 + ], + [ + 8.9863426, + 50.259582101 + ], + [ + 8.9875525, + 50.257707101 + ], + [ + 8.9892312, + 50.255328301 + ], + [ + 8.9910419, + 50.252979301 + ], + [ + 8.992532, + 50.251158901 + ], + [ + 8.9937699, + 50.249815001 + ], + [ + 8.9946058, + 50.248881601 + ], + [ + 8.9956245, + 50.247813701 + ], + [ + 8.996015, + 50.247416201 + ], + [ + 8.9974089, + 50.246043001 + ], + [ + 8.9994412, + 50.243968001 + ], + [ + 8.9998081, + 50.243603101 + ], + [ + 9.0000192, + 50.243385001 + ], + [ + 9.0005073, + 50.242886401 + ], + [ + 9.001717, + 50.241660901 + ], + [ + 9.0032991, + 50.240010201 + ], + [ + 9.0040497, + 50.239241001 + ], + [ + 9.0054111, + 50.237728601 + ], + [ + 9.0060527, + 50.236940401 + ], + [ + 9.0066516, + 50.236089101 + ], + [ + 9.0071448, + 50.235245301 + ], + [ + 9.0075659, + 50.234391401 + ], + [ + 9.0078467, + 50.233554601 + ], + [ + 9.0080659, + 50.232705001 + ], + [ + 9.0081193, + 50.232371601 + ], + [ + 9.0081592, + 50.231993201 + ], + [ + 9.0081992, + 50.231210701 + ], + [ + 9.0081672, + 50.230458901 + ], + [ + 9.0081193, + 50.230037001 + ], + [ + 9.0080602, + 50.229706701 + ], + [ + 9.0077835, + 50.228633101 + ], + [ + 9.0075277, + 50.227925101 + ], + [ + 9.0072349, + 50.227323301 + ], + [ + 9.0069024, + 50.226750001 + ], + [ + 9.0066388, + 50.226319301 + ], + [ + 9.0061671, + 50.225588301 + ], + [ + 9.0048597, + 50.223831801 + ], + [ + 9.0046868, + 50.223579901 + ], + [ + 9.0040187, + 50.222622201 + ], + [ + 9.0034419, + 50.221769801 + ], + [ + 9.0030937, + 50.221233401 + ], + [ + 9.0024432, + 50.220076101 + ], + [ + 9.0021224, + 50.219507401 + ], + [ + 9.0018494, + 50.218913101 + ], + [ + 9.0015686, + 50.218324901 + ], + [ + 9.0013219, + 50.217726401 + ], + [ + 9.0008934, + 50.216497801 + ], + [ + 9.000615, + 50.215541101 + ], + [ + 9.0003808, + 50.214553101 + ], + [ + 9.0001591, + 50.213186901 + ], + [ + 9.0000965, + 50.212467901 + ], + [ + 9.0000576, + 50.211938801 + ], + [ + 9.0000459, + 50.211287501 + ], + [ + 9.0000447, + 50.210699301 + ], + [ + 9.0000782, + 50.210049001 + ], + [ + 9.0001276, + 50.209401701 + ], + [ + 9.0002327, + 50.208353201 + ], + [ + 9.0003999, + 50.207434301 + ], + [ + 9.0005144, + 50.207002701 + ], + [ + 9.000696, + 50.206334201 + ], + [ + 9.0007727, + 50.206047801 + ], + [ + 9.0009227, + 50.205552701 + ], + [ + 9.0011834, + 50.204854301 + ], + [ + 9.0014539, + 50.204147201 + ], + [ + 9.0017681, + 50.203439601 + ], + [ + 9.0022171, + 50.202544501 + ], + [ + 9.0025142, + 50.201958001 + ], + [ + 9.0034492, + 50.200406301 + ], + [ + 9.0044502, + 50.198913001 + ], + [ + 9.0058859, + 50.196872701 + ], + [ + 9.0071495, + 50.195078301 + ], + [ + 9.0077093, + 50.194283301 + ], + [ + 9.0080989, + 50.193714201 + ], + [ + 9.0084612, + 50.193138401 + ], + [ + 9.0091252, + 50.191896801 + ], + [ + 9.0092171, + 50.191748001 + ], + [ + 9.0098958, + 50.190374801 + ], + [ + 9.0104136, + 50.189045401 + ], + [ + 9.0106184, + 50.188430201 + ], + [ + 9.0107692, + 50.187910701 + ], + [ + 9.011146, + 50.186463801 + ], + [ + 9.0113368, + 50.185676401 + ], + [ + 9.0118548, + 50.183705301 + ], + [ + 9.0123905, + 50.182012201 + ], + [ + 9.0130604, + 50.180057401 + ], + [ + 9.0135135, + 50.178820401 + ], + [ + 9.0141035, + 50.177266101 + ], + [ + 9.0141876, + 50.177039401 + ], + [ + 9.0146506, + 50.175788201 + ], + [ + 9.0151016, + 50.174585701 + ], + [ + 9.0160997, + 50.171896101 + ], + [ + 9.0162295, + 50.171543601 + ], + [ + 9.0167378, + 50.170191701 + ], + [ + 9.0173171, + 50.168557301 + ], + [ + 9.017628901, + 50.167615019 + ] + ] + } + }, + { + "identifier": "2023-002160--vi-bs.2023-09-27_19-00-00-000.devi-zus.2023-06-21_12-00-00-000.f_001.de6", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.523242865151275,8.641946504917167,50.52385354745401,8.638965400602206", + "point": "50.523242865151275,8.641946504917167", + "startLcPosition": "21", + "impact": { + "lower": "Pfaffenpfad", + "upper": "Hardtwald", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Aschaffenburg -> Gie\u00dfen", + "title": "A45 | Hardtwald - Pfaffenpfad", + "startTimestamp": "2023-09-27T19:00:00+02:00", + "coordinate": { + "lat": 50.523242865151275, + "long": 8.641946504917167 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.09.23 um 19:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.10.26)", + "", + "A45: Aschaffenburg -> Gie\u00dfen, zwischen 3.2 km hinter Hardtwald und 1.5 km vor Pfaffenpfad", + "", + "L\u00e4nge: 0.22 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Einschr\u00e4nkungen BW AK Gie\u00dfener S\u00fcdkreuz - AlD 2160" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.641946505, + 50.523242865 + ], + [ + 8.640549, + 50.523536001 + ], + [ + 8.6399482, + 50.523660201 + ], + [ + 8.638965401, + 50.523853547 + ] + ] + } + }, + { + "identifier": "2023-002160--vi-bs.2023-07-03_19-00-00-000.devi-zus.2023-06-21_12-00-00-000.f_001.de2", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.51686486825781,8.66595327183855,50.5191132576743,8.65889466767318", + "point": "50.51686486825781,8.66595327183855", + "startLcPosition": "21", + "impact": { + "lower": "Gie\u00dfener S\u00fcdkreuz", + "upper": "Hardtwald", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Aschaffenburg -> Gie\u00dfen", + "title": "A45 | Hardtwald - Gie\u00dfener S\u00fcdkreuz", + "startTimestamp": "2023-07-03T19:00:00+02:00", + "coordinate": { + "lat": 50.51686486825781, + "long": 8.66595327183855 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.07.23 um 19:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.10.26)", + "", + "A45: Aschaffenburg -> Gie\u00dfen, zwischen 1.3 km hinter Hardtwald und 1.4 km vor AK Gie\u00dfener S\u00fcdkreuz", + "", + "L\u00e4nge: 0.56 km | Max. 120 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Einschr\u00e4nkungen BW AK Gie\u00dfener S\u00fcdkreuz - AlD 2160" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.665953272, + 50.516864868 + ], + [ + 8.6658786, + 50.516893001 + ], + [ + 8.6652569, + 50.517115201 + ], + [ + 8.6647712, + 50.517278801 + ], + [ + 8.6634524, + 50.517726901 + ], + [ + 8.6624965, + 50.518025201 + ], + [ + 8.6611478, + 50.518435701 + ], + [ + 8.6597487, + 50.518853501 + ], + [ + 8.658894668, + 50.519113258 + ] + ] + } + }, + { + "identifier": "2023-002160--vi-bs.2023-07-03_19-00-00-000.devi-zus.2023-06-21_12-00-00-000.f_001.de4", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.51899281433183,8.658807311834423,50.516763345672054,8.665860777096775", + "point": "50.51899281433183,8.658807311834423", + "startLcPosition": "22", + "impact": { + "lower": "Hardtwald", + "upper": "Gie\u00dfener S\u00fcdkreuz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Aschaffenburg", + "title": "A45 | Gie\u00dfener S\u00fcdkreuz - Hardtwald", + "startTimestamp": "2023-07-03T19:00:00+02:00", + "coordinate": { + "lat": 50.51899281433183, + "long": 8.658807311834423 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.07.23 um 19:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.10.26)", + "", + "A45: Gie\u00dfen -> Aschaffenburg, zwischen 1.4 km hinter AK Gie\u00dfener S\u00fcdkreuz und 1.3 km vor Hardtwald", + "", + "L\u00e4nge: 0.56 km | Max. 120 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A45 - Einschr\u00e4nkungen BW AK Gie\u00dfener S\u00fcdkreuz - AlD 2160" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.658807312, + 50.518992814 + ], + [ + 8.659675, + 50.518748401 + ], + [ + 8.6605816, + 50.518474101 + ], + [ + 8.6624375, + 50.517917401 + ], + [ + 8.6636383, + 50.517532501 + ], + [ + 8.6647973, + 50.517135801 + ], + [ + 8.6653211, + 50.516958101 + ], + [ + 8.665860777, + 50.516763346 + ] + ] + } + }, + { + "identifier": "2023-002160--vi-bs.2023-09-27_19-00-00-000.devi-zus.2023-06-21_12-00-00-000.f_001.de8", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.523738069536144,8.638909326648246,50.523133432827564,8.641890004680958", + "point": "50.523738069536144,8.638909326648246", + "startLcPosition": "23", + "impact": { + "lower": "Hardtwald", + "upper": "Pfaffenpfad", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Aschaffenburg", + "title": "A45 | Pfaffenpfad - Hardtwald", + "startTimestamp": "2023-09-27T19:00:00+02:00", + "coordinate": { + "lat": 50.523738069536144, + "long": 8.638909326648246 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.09.23 um 19:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.10.26)", + "", + "A45: Gie\u00dfen -> Aschaffenburg, zwischen 1.5 km hinter Pfaffenpfad und 3.2 km vor Hardtwald", + "", + "L\u00e4nge: 0.22 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Einschr\u00e4nkungen BW AK Gie\u00dfener S\u00fcdkreuz - AlD 2160" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.638909327, + 50.52373807 + ], + [ + 8.6399831, + 50.523525701 + ], + [ + 8.6405864, + 50.523407001 + ], + [ + 8.641890005, + 50.523133433 + ] + ] + } + }, + { + "identifier": "2026-017504--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_09-00-00-000_008.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.549209683985886,8.566302121296939,50.549629295366834,8.565960280398544", + "point": "50.549209683985886,8.566302121296939", + "startLcPosition": "24", + "impact": { + "lower": "Wetzlar-S\u00fcd", + "upper": "Gie\u00dfen-L\u00fctzellinden", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Aschaffenburg -> Hagen", + "title": "A45 | Gie\u00dfen-L\u00fctzellinden - Wetzlar-S\u00fcd", + "coordinate": { + "lat": 50.549209683985886, + "long": 8.566302121296939 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:30 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 05:30 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 05:30 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 05:30 Uhr.", + "17.04.26 19:00 bis zum 18.04.26 05:30 Uhr.", + "", + "A45: Aschaffenburg -> Hagen, zwischen 3.3 km hinter AS Gie\u00dfen-L\u00fctzellinden und 0.8 km vor AS Wetzlar-S\u00fcd", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17504" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.566302121, + 50.549209684 + ], + [ + 8.5662085, + 50.549316001 + ], + [ + 8.56596028, + 50.549629295 + ] + ] + } + }, + { + "identifier": "2026-017504--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_09-00-00-000_008.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.549209683985886,8.566302121296939,50.549629295366834,8.565960280398544", + "point": "50.549209683985886,8.566302121296939", + "startLcPosition": "24", + "impact": { + "lower": "Wetzlar-S\u00fcd", + "upper": "Gie\u00dfen-L\u00fctzellinden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Aschaffenburg -> Hagen", + "title": "A45 | Gie\u00dfen-L\u00fctzellinden - Wetzlar-S\u00fcd", + "coordinate": { + "lat": 50.549209683985886, + "long": 8.566302121296939 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:30 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 05:30 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 05:30 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 05:30 Uhr.", + "17.04.26 19:00 bis zum 18.04.26 05:30 Uhr.", + "", + "A45: Aschaffenburg -> Hagen, zwischen 3.3 km hinter AS Gie\u00dfen-L\u00fctzellinden und 0.8 km vor AS Wetzlar-S\u00fcd", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17504" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.566302121, + 50.549209684 + ], + [ + 8.5662085, + 50.549316001 + ], + [ + 8.56596028, + 50.549629295 + ] + ] + } + }, + { + "identifier": "2026-017504--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_09-00-00-000_008.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.57038278219071,8.547056927709608,50.57080763455407,8.546871857418713", + "point": "50.57038278219071,8.547056927709608", + "startLcPosition": "25", + "impact": { + "lower": "Wetzlar-Ost", + "upper": "Wetzlar-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Wetzlar-S\u00fcd - Wetzlar-Ost", + "coordinate": { + "lat": 50.57038278219071, + "long": 8.547056927709608 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 12:00 Uhr", + "14.04.26 von 09:00 bis 12:00 Uhr", + "15.04.26 von 09:00 bis 12:00 Uhr", + "16.04.26 von 09:00 bis 12:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.1 km hinter AS Wetzlar-S\u00fcd und AS Wetzlar-Ost", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17504" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.547056928, + 50.570382782 + ], + [ + 8.5469291, + 50.570678001 + ], + [ + 8.546871857, + 50.570807635 + ] + ] + } + }, + { + "identifier": "2026-017504--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_09-00-00-000_008.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.56994960875148,8.547244927330334,50.57080763455407,8.546871857418713", + "point": "50.56994960875148,8.547244927330334", + "startLcPosition": "25", + "impact": { + "lower": "Wetzlar-Ost", + "upper": "Wetzlar-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Wetzlar-S\u00fcd - Wetzlar-Ost", + "coordinate": { + "lat": 50.56994960875148, + "long": 8.547244927330334 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 12:00 Uhr", + "14.04.26 von 09:00 bis 12:00 Uhr", + "15.04.26 von 09:00 bis 12:00 Uhr", + "16.04.26 von 09:00 bis 12:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.0 km hinter AS Wetzlar-S\u00fcd und AS Wetzlar-Ost", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17504" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.547244927, + 50.569949609 + ], + [ + 8.5472147, + 50.570018401 + ], + [ + 8.5469291, + 50.570678001 + ], + [ + 8.546871857, + 50.570807635 + ] + ] + } + }, + { + "identifier": "2023-004492--vi-bs.2026-03-16_19-00-00-000.devi-zus.2025-05-05_19-00-00-000_001.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.58824158941502,8.528199322084578,50.59609044660636,8.490019793969886", + "point": "50.58824158941502,8.528199322084578", + "startLcPosition": "26", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "Wetzlar-Ost", + "symbols": [ + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Wetzlar-Ost - Wetzlarer Kreuz", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 50.58824158941502, + "long": 8.528199322084578 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 08.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.4 km hinter AS Wetzlar-Ost und 0.1 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 2.9 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Fahrbahnverbreiterung und Erneuerung der Fahrbahn - AlD 4492" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.528199322, + 50.588241589 + ], + [ + 8.5275352, + 50.588572801 + ], + [ + 8.5264135, + 50.589078701 + ], + [ + 8.5250995, + 50.589626601 + ], + [ + 8.5245889, + 50.589838401 + ], + [ + 8.5230043, + 50.590465401 + ], + [ + 8.5222847, + 50.590727301 + ], + [ + 8.5211273, + 50.591140001 + ], + [ + 8.5195117, + 50.591692101 + ], + [ + 8.5181864, + 50.592102501 + ], + [ + 8.5174356, + 50.592291901 + ], + [ + 8.5166708, + 50.592475501 + ], + [ + 8.5157458, + 50.592644601 + ], + [ + 8.5153961, + 50.592707001 + ], + [ + 8.5147969, + 50.592797201 + ], + [ + 8.5136607, + 50.592918801 + ], + [ + 8.5126039, + 50.592971901 + ], + [ + 8.5113998, + 50.592964901 + ], + [ + 8.5108476, + 50.592944601 + ], + [ + 8.5095503, + 50.592893101 + ], + [ + 8.509004, + 50.592885301 + ], + [ + 8.5083336, + 50.592891501 + ], + [ + 8.507468, + 50.592923001 + ], + [ + 8.5065341, + 50.593011401 + ], + [ + 8.5051692, + 50.593203101 + ], + [ + 8.503943, + 50.593448301 + ], + [ + 8.503063, + 50.593687701 + ], + [ + 8.502879, + 50.593737801 + ], + [ + 8.5018321, + 50.594062601 + ], + [ + 8.5015758, + 50.594146301 + ], + [ + 8.5005277, + 50.594545001 + ], + [ + 8.4992035, + 50.595007801 + ], + [ + 8.497986, + 50.595385901 + ], + [ + 8.496851, + 50.595649201 + ], + [ + 8.4963878, + 50.595734901 + ], + [ + 8.4962149, + 50.595764201 + ], + [ + 8.4954806, + 50.595868501 + ], + [ + 8.4947546, + 50.595963101 + ], + [ + 8.4937043, + 50.596022301 + ], + [ + 8.4926016, + 50.596060801 + ], + [ + 8.4904073, + 50.596086601 + ], + [ + 8.490019794, + 50.596090447 + ] + ] + } + }, + { + "identifier": "2026-017504--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_09-00-00-000_008.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.58818161249866,8.528321638208814,50.59071870638808,8.522308314824814", + "point": "50.58818161249866,8.528321638208814", + "startLcPosition": "26", + "impact": { + "lower": "Vogelsang", + "upper": "Wetzlar-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Wetzlar-Ost - Vogelsang", + "coordinate": { + "lat": 50.58818161249866, + "long": 8.528321638208814 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:30 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 05:30 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 05:30 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 05:30 Uhr.", + "17.04.26 19:00 bis zum 18.04.26 05:30 Uhr.", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.4 km hinter AS Wetzlar-Ost und 0.2 km vor Vogelsang", + "", + "L\u00e4nge: 0.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17504" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.528321638, + 50.588181612 + ], + [ + 8.5281997, + 50.588241401 + ], + [ + 8.5275352, + 50.588572801 + ], + [ + 8.5264135, + 50.589078701 + ], + [ + 8.5250995, + 50.589626601 + ], + [ + 8.5245889, + 50.589838401 + ], + [ + 8.5230043, + 50.590465401 + ], + [ + 8.522308315, + 50.590718706 + ] + ] + } + }, + { + "identifier": "2023-004492--vi-bs.2026-03-16_19-00-00-000.devi-zus.2025-05-05_19-00-00-000_001.de37", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.5860631145516,8.532291664848781,50.58769325360067,8.529317622207538", + "point": "50.5860631145516,8.532291664848781", + "startLcPosition": "26", + "impact": { + "lower": "Vogelsang", + "upper": "Wetzlar-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Wetzlar-Ost - Vogelsang", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 50.5860631145516, + "long": 8.532291664848781 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 08.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.0 km hinter AS Wetzlar-Ost und 0.8 km vor Vogelsang", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Fahrbahnverbreiterung und Erneuerung der Fahrbahn - AlD 4492" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.532291665, + 50.586063115 + ], + [ + 8.5319317, + 50.586281701 + ], + [ + 8.5294197, + 50.587643201 + ], + [ + 8.529317622, + 50.587693254 + ] + ] + } + }, + { + "identifier": "2026-015110--vi-bs.2026-03-27_08-00-00-000.devi-bs.2026-03-27_08-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.57665851019748,8.543554307922632,50.58769325360067,8.529317622207538", + "point": "50.57665851019748,8.543554307922632", + "startLcPosition": "26", + "impact": { + "lower": "Vogelsang", + "upper": "Wetzlar-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Wetzlar-Ost - Vogelsang", + "coordinate": { + "lat": 50.57665851019748, + "long": 8.543554307922632 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 05:00 Uhr.", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.7 km hinter AS Wetzlar-Ost und 0.8 km vor Vogelsang", + "", + "L\u00e4nge: 1.6 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Fahrbahninstandhaltung - AkD 15110" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.543554308, + 50.57665851 + ], + [ + 8.5434588, + 50.576790401 + ], + [ + 8.5429725, + 50.577361901 + ], + [ + 8.5422654, + 50.578203301 + ], + [ + 8.5417221, + 50.578804401 + ], + [ + 8.5402644, + 50.580243701 + ], + [ + 8.5395541, + 50.580856801 + ], + [ + 8.5391801, + 50.581182801 + ], + [ + 8.5381375, + 50.582041101 + ], + [ + 8.5369653, + 50.582934701 + ], + [ + 8.5344799, + 50.584713301 + ], + [ + 8.5342197, + 50.584884201 + ], + [ + 8.5334328, + 50.585371201 + ], + [ + 8.5332631, + 50.585473201 + ], + [ + 8.5319317, + 50.586281701 + ], + [ + 8.5294197, + 50.587643201 + ], + [ + 8.529317622, + 50.587693254 + ] + ] + } + }, + { + "identifier": "2023-004492--vi-bs.2026-03-16_19-00-00-000.devi-zus.2025-05-05_19-00-00-000_001.de35", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.59182133224951,8.519094382574947,50.59253724530293,8.51633305536214", + "point": "50.59182133224951,8.519094382574947", + "startLcPosition": "27", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "Vogelsang", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Vogelsang - Wetzlarer Kreuz", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 50.59182133224951, + "long": 8.519094382574947 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 08.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen Vogelsang und 2.1 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 0.21 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Fahrbahnverbreiterung und Erneuerung der Fahrbahn - AlD 4492" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.519094383, + 50.591821332 + ], + [ + 8.5181864, + 50.592102501 + ], + [ + 8.5174356, + 50.592291901 + ], + [ + 8.5166708, + 50.592475501 + ], + [ + 8.516333055, + 50.592537245 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.57660354022908,8.543374454356941,50.57579557862945,8.543936295976753", + "point": "50.57660354022908,8.543374454356941", + "startLcPosition": "27", + "impact": { + "lower": "Wetzlar-Ost", + "upper": "Vogelsang", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Vogelsang - Wetzlar-Ost", + "coordinate": { + "lat": 50.57660354022908, + "long": 8.543374454356941 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 2.4 km hinter Vogelsang und 0.6 km vor AS Wetzlar-Ost", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.543374454, + 50.57660354 + ], + [ + 8.5434123, + 50.576554901 + ], + [ + 8.5436251, + 50.576248801 + ], + [ + 8.5437752, + 50.576049101 + ], + [ + 8.543936296, + 50.575795579 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.57372544674701,8.545250365567432,50.57331485861595,8.545459235042394", + "point": "50.57372544674701,8.545250365567432", + "startLcPosition": "27", + "impact": { + "lower": "Wetzlar-Ost", + "upper": "Vogelsang", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Vogelsang - Wetzlar-Ost", + "coordinate": { + "lat": 50.57372544674701, + "long": 8.545250365567432 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 2.8 km hinter Vogelsang und 0.3 km vor AS Wetzlar-Ost", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.545250366, + 50.573725447 + ], + [ + 8.545459235, + 50.573314859 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.57372544674701,8.545250365567432,50.57331485861595,8.545459235042394", + "point": "50.57372544674701,8.545250365567432", + "startLcPosition": "27", + "impact": { + "lower": "Wetzlar-Ost", + "upper": "Vogelsang", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Vogelsang - Wetzlar-Ost", + "coordinate": { + "lat": 50.57372544674701, + "long": 8.545250365567432 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 2.8 km hinter Vogelsang und 0.3 km vor AS Wetzlar-Ost", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.545250366, + 50.573725447 + ], + [ + 8.545459235, + 50.573314859 + ] + ] + } + }, + { + "identifier": "2023-004492--vi-bs.2026-03-16_19-00-00-000.devi-zus.2025-05-05_19-00-00-000_001.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.59253724530293,8.51633305536214,50.596063586753054,8.492364834699636", + "point": "50.59253724530293,8.51633305536214", + "startLcPosition": "28", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "Kochsgrund", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Kochsgrund - Wetzlarer Kreuz", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 50.59253724530293, + "long": 8.51633305536214 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 08.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.1 km hinter Kochsgrund und 0.3 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 1.77 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Fahrbahnverbreiterung und Erneuerung der Fahrbahn - AlD 4492" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.516333055, + 50.592537245 + ], + [ + 8.5157458, + 50.592644601 + ], + [ + 8.5153961, + 50.592707001 + ], + [ + 8.5147969, + 50.592797201 + ], + [ + 8.5136607, + 50.592918801 + ], + [ + 8.5126039, + 50.592971901 + ], + [ + 8.5113998, + 50.592964901 + ], + [ + 8.5108476, + 50.592944601 + ], + [ + 8.5095503, + 50.592893101 + ], + [ + 8.509004, + 50.592885301 + ], + [ + 8.5083336, + 50.592891501 + ], + [ + 8.507468, + 50.592923001 + ], + [ + 8.5065341, + 50.593011401 + ], + [ + 8.5051692, + 50.593203101 + ], + [ + 8.503943, + 50.593448301 + ], + [ + 8.503063, + 50.593687701 + ], + [ + 8.502879, + 50.593737801 + ], + [ + 8.5018321, + 50.594062601 + ], + [ + 8.5015758, + 50.594146301 + ], + [ + 8.5005277, + 50.594545001 + ], + [ + 8.4992035, + 50.595007801 + ], + [ + 8.497986, + 50.595385901 + ], + [ + 8.496851, + 50.595649201 + ], + [ + 8.4963878, + 50.595734901 + ], + [ + 8.4962149, + 50.595764201 + ], + [ + 8.4954806, + 50.595868501 + ], + [ + 8.4947546, + 50.595963101 + ], + [ + 8.4937043, + 50.596022301 + ], + [ + 8.4926016, + 50.596060801 + ], + [ + 8.492364835, + 50.596063587 + ] + ] + } + }, + { + "identifier": "2023-004492--vi-bs.2026-03-16_19-00-00-000.devi-zus.2025-05-05_19-00-00-000_001.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.596063586753054,8.492364834699636,50.59798512151157,8.480804975692973", + "point": "50.596063586753054,8.492364834699636", + "startLcPosition": "28", + "impact": { + "lower": "Lemperberg", + "upper": "Kochsgrund", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Kochsgrund - Lemperberg", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 50.596063586753054, + "long": 8.492364834699636 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 08.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.9 km hinter Kochsgrund und 5.2 km vor Lemperberg", + "", + "L\u00e4nge: 0.87 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Fahrbahnverbreiterung und Erneuerung der Fahrbahn - AlD 4492" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.492364835, + 50.596063587 + ], + [ + 8.4904073, + 50.596086601 + ], + [ + 8.4895103, + 50.596095501 + ], + [ + 8.4886474, + 50.596128301 + ], + [ + 8.4881942, + 50.596156101 + ], + [ + 8.4880014, + 50.596173801 + ], + [ + 8.4879196, + 50.596181301 + ], + [ + 8.4875597, + 50.596214301 + ], + [ + 8.48687, + 50.596282601 + ], + [ + 8.4862113, + 50.596378201 + ], + [ + 8.4853375, + 50.596540901 + ], + [ + 8.4849003, + 50.596626501 + ], + [ + 8.4839641, + 50.596857501 + ], + [ + 8.4828859, + 50.597168601 + ], + [ + 8.4819385, + 50.597497301 + ], + [ + 8.4808551, + 50.597958701 + ], + [ + 8.480804976, + 50.597985122 + ] + ] + } + }, + { + "identifier": "2026-017504--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_09-00-00-000_008.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.594038834820275,8.501908704812875,50.59442109160739,8.500853436622362", + "point": "50.594038834820275,8.501908704812875", + "startLcPosition": "28", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "Kochsgrund", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Kochsgrund - Wetzlarer Kreuz", + "coordinate": { + "lat": 50.594038834820275, + "long": 8.501908704812875 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.2 km hinter Kochsgrund und 0.9 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17504" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.501908705, + 50.594038835 + ], + [ + 8.5018321, + 50.594062601 + ], + [ + 8.5015758, + 50.594146301 + ], + [ + 8.500853437, + 50.594421092 + ] + ] + } + }, + { + "identifier": "2026-017504--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_09-00-00-000_008.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.59289263469989,8.508302448039887,50.592924529372986,8.507451853585623", + "point": "50.59289263469989,8.508302448039887", + "startLcPosition": "28", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "Kochsgrund", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Kochsgrund - Wetzlarer Kreuz", + "coordinate": { + "lat": 50.59289263469989, + "long": 8.508302448039887 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.7 km hinter Kochsgrund und 1.4 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17504" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.508302448, + 50.592892635 + ], + [ + 8.507468, + 50.592923001 + ], + [ + 8.507451854, + 50.592924529 + ] + ] + } + }, + { + "identifier": "2023-003098--vi-bs.2025-04-30_20-00-00-000.devi-zus.2023-05-14_08-00-00-000_005.f.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.59608202239186,8.490796964050753,50.59888693672226,8.479185732464819", + "point": "50.59608202239186,8.490796964050753", + "startLcPosition": "28", + "impact": { + "lower": "Lemperberg", + "upper": "Kochsgrund", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Kochsgrund - Lemperberg", + "startTimestamp": "2025-04-30T20:00:00+02:00", + "coordinate": { + "lat": 50.59608202239186, + "long": 8.490796964050753 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.04.25 um 20:00 Uhr", + "Ende: 30.11.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.28)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.0 km hinter Kochsgrund und 5.0 km vor Lemperberg", + "", + "L\u00e4nge: 0.91 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau TB Bornbach und Bechlingen - AlD 3098" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.490796964, + 50.596082022 + ], + [ + 8.4904073, + 50.596086601 + ], + [ + 8.4895103, + 50.596095501 + ], + [ + 8.4886474, + 50.596128301 + ], + [ + 8.4881942, + 50.596156101 + ], + [ + 8.4880014, + 50.596173801 + ], + [ + 8.4879196, + 50.596181301 + ], + [ + 8.4875597, + 50.596214301 + ], + [ + 8.48687, + 50.596282601 + ], + [ + 8.4862113, + 50.596378201 + ], + [ + 8.4853375, + 50.596540901 + ], + [ + 8.4849003, + 50.596626501 + ], + [ + 8.4839641, + 50.596857501 + ], + [ + 8.4828859, + 50.597168601 + ], + [ + 8.4819385, + 50.597497301 + ], + [ + 8.4808551, + 50.597958701 + ], + [ + 8.4803901, + 50.598203801 + ], + [ + 8.4799908, + 50.598421001 + ], + [ + 8.4797509, + 50.598542101 + ], + [ + 8.479185732, + 50.598886937 + ] + ] + } + }, + { + "identifier": "2023-003098--vi-bs.2025-04-30_20-00-00-000.devi-zus.2023-05-14_08-00-00-000_005.f.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.59886826778702,8.479216330186523,50.60921984701081,8.428552421787709", + "point": "50.59886826778702,8.479216330186523", + "startLcPosition": "29", + "impact": { + "lower": "Lemperberg", + "upper": "Wetzlarer Kreuz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Wetzlarer Kreuz - Lemperberg", + "startTimestamp": "2025-04-30T20:00:00+02:00", + "coordinate": { + "lat": 50.59886826778702, + "long": 8.479216330186523 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.04.25 um 20:00 Uhr", + "Ende: 30.11.27 um 19:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 31.01.28)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.7 km hinter AK Wetzlarer Kreuz und 1.1 km vor Lemperberg", + "", + "L\u00e4nge: 3.91 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau TB Bornbach und Bechlingen - AlD 3098" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.47921633, + 50.598868268 + ], + [ + 8.4789288, + 50.599043701 + ], + [ + 8.4786551, + 50.599225401 + ], + [ + 8.4780399, + 50.599668501 + ], + [ + 8.4767697, + 50.600603701 + ], + [ + 8.4757454, + 50.601294801 + ], + [ + 8.4750012, + 50.601722301 + ], + [ + 8.4744809, + 50.602004201 + ], + [ + 8.4737324, + 50.602368201 + ], + [ + 8.4732955, + 50.602563401 + ], + [ + 8.4725273, + 50.602893001 + ], + [ + 8.4718548, + 50.603135201 + ], + [ + 8.4711844, + 50.603359001 + ], + [ + 8.4709324, + 50.603434701 + ], + [ + 8.4701721, + 50.603638301 + ], + [ + 8.4697449, + 50.603746001 + ], + [ + 8.4693439, + 50.603837601 + ], + [ + 8.4690042, + 50.603915601 + ], + [ + 8.468199, + 50.604071901 + ], + [ + 8.4673807, + 50.604202001 + ], + [ + 8.4668626, + 50.604259501 + ], + [ + 8.4659317, + 50.604363301 + ], + [ + 8.4651792, + 50.604422501 + ], + [ + 8.4643727, + 50.604454801 + ], + [ + 8.4636623, + 50.604462901 + ], + [ + 8.4625314, + 50.604442601 + ], + [ + 8.4610365, + 50.604380101 + ], + [ + 8.4602267, + 50.604356101 + ], + [ + 8.4594863, + 50.604342301 + ], + [ + 8.4585652, + 50.604365801 + ], + [ + 8.4576541, + 50.604422601 + ], + [ + 8.4570936, + 50.604481701 + ], + [ + 8.4564335, + 50.604560801 + ], + [ + 8.45602, + 50.604635401 + ], + [ + 8.4552373, + 50.604788801 + ], + [ + 8.4545103, + 50.604962801 + ], + [ + 8.4536766, + 50.605182001 + ], + [ + 8.4530104, + 50.605383801 + ], + [ + 8.4523799, + 50.605585701 + ], + [ + 8.4513993, + 50.605908701 + ], + [ + 8.4510815, + 50.606013301 + ], + [ + 8.4500694, + 50.606338601 + ], + [ + 8.449158, + 50.606587601 + ], + [ + 8.4484791, + 50.606765901 + ], + [ + 8.4478417, + 50.606899401 + ], + [ + 8.4472273, + 50.607021101 + ], + [ + 8.4465195, + 50.607135901 + ], + [ + 8.445922, + 50.607214201 + ], + [ + 8.4453497, + 50.607271401 + ], + [ + 8.4446682, + 50.607322801 + ], + [ + 8.4441558, + 50.607350801 + ], + [ + 8.4435232, + 50.607365201 + ], + [ + 8.4429372, + 50.607365301 + ], + [ + 8.4422552, + 50.607346701 + ], + [ + 8.4414009, + 50.607314801 + ], + [ + 8.4401763, + 50.607245201 + ], + [ + 8.4392578, + 50.607199201 + ], + [ + 8.4385027, + 50.607172601 + ], + [ + 8.4378846, + 50.607167901 + ], + [ + 8.4372807, + 50.607176401 + ], + [ + 8.4367391, + 50.607196801 + ], + [ + 8.4360608, + 50.607240701 + ], + [ + 8.4354266, + 50.607307601 + ], + [ + 8.4347433, + 50.607399401 + ], + [ + 8.4341104, + 50.607502501 + ], + [ + 8.4333828, + 50.607641701 + ], + [ + 8.432779, + 50.607781801 + ], + [ + 8.4321253, + 50.607959001 + ], + [ + 8.4313527, + 50.608200701 + ], + [ + 8.4308086, + 50.608390601 + ], + [ + 8.4303627, + 50.608552101 + ], + [ + 8.4298062, + 50.608760601 + ], + [ + 8.428552422, + 50.609219847 + ] + ] + } + }, + { + "identifier": "2023-004492--vi-bs.2026-03-16_19-00-00-000.devi-zus.2025-05-05_19-00-00-000_001.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.59240276809054,8.51627136701967,50.591690702786636,8.518994727104008", + "point": "50.59240276809054,8.51627136701967", + "startLcPosition": "29", + "impact": { + "lower": "Vogelsang", + "upper": "Wetzlarer Kreuz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Wetzlarer Kreuz - Vogelsang", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 50.59240276809054, + "long": 8.51627136701967 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 08.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 2.1 km hinter AK Wetzlarer Kreuz und Vogelsang", + "", + "L\u00e4nge: 0.21 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Fahrbahnverbreiterung und Erneuerung der Fahrbahn - AlD 4492" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.516271367, + 50.592402768 + ], + [ + 8.5168243, + 50.592298701 + ], + [ + 8.5180194, + 50.591991701 + ], + [ + 8.518994727, + 50.591690703 + ] + ] + } + }, + { + "identifier": "2023-004492--vi-bs.2026-03-16_19-00-00-000.devi-zus.2025-05-05_19-00-00-000_001.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.59592750426038,8.492361340777078,50.59240276809054,8.51627136701967", + "point": "50.59592750426038,8.492361340777078", + "startLcPosition": "29", + "impact": { + "lower": "Kochsgrund", + "upper": "Wetzlarer Kreuz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Wetzlarer Kreuz - Kochsgrund", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 50.59592750426038, + "long": 8.492361340777078 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 08.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.3 km hinter AK Wetzlarer Kreuz und 0.1 km vor Kochsgrund", + "", + "L\u00e4nge: 1.77 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Fahrbahnverbreiterung und Erneuerung der Fahrbahn - AlD 4492" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.492361341, + 50.595927504 + ], + [ + 8.4924072, + 50.595927101 + ], + [ + 8.4934678, + 50.595895801 + ], + [ + 8.4939577, + 50.595871501 + ], + [ + 8.4944514, + 50.595837001 + ], + [ + 8.4950755, + 50.595770301 + ], + [ + 8.4952566, + 50.595745701 + ], + [ + 8.4957535, + 50.595675401 + ], + [ + 8.4961753, + 50.595597201 + ], + [ + 8.4963188, + 50.595571701 + ], + [ + 8.4968463, + 50.595462001 + ], + [ + 8.4973941, + 50.595353601 + ], + [ + 8.4979216, + 50.595220401 + ], + [ + 8.4990882, + 50.594874201 + ], + [ + 8.5007819, + 50.594260101 + ], + [ + 8.5014566, + 50.594015301 + ], + [ + 8.5017083, + 50.593919301 + ], + [ + 8.5022303, + 50.593744701 + ], + [ + 8.5029493, + 50.593548101 + ], + [ + 8.5038581, + 50.593306001 + ], + [ + 8.5041511, + 50.593239301 + ], + [ + 8.5051393, + 50.593061501 + ], + [ + 8.5058262, + 50.592947201 + ], + [ + 8.5065135, + 50.592873601 + ], + [ + 8.5074013, + 50.592793001 + ], + [ + 8.5082722, + 50.592761001 + ], + [ + 8.508935, + 50.592756101 + ], + [ + 8.5095515, + 50.592764601 + ], + [ + 8.5113539, + 50.592824901 + ], + [ + 8.5125443, + 50.592815701 + ], + [ + 8.5139006, + 50.592741501 + ], + [ + 8.5153437, + 50.592576101 + ], + [ + 8.515361, + 50.592574101 + ], + [ + 8.516271367, + 50.592402768 + ] + ] + } + }, + { + "identifier": "2023-003098--vi-bs.2025-04-30_20-00-00-000.devi-zus.2023-05-14_08-00-00-000_005.f.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.609118453575206,8.42846039906045,50.59877948447092,8.479082485536805", + "point": "50.609118453575206,8.42846039906045", + "startLcPosition": "30", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "Lemperberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Lemperberg - Wetzlarer Kreuz", + "startTimestamp": "2025-04-30T20:00:00+02:00", + "coordinate": { + "lat": 50.609118453575206, + "long": 8.42846039906045 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.04.25 um 20:00 Uhr", + "Ende: 30.11.27 um 19:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 31.01.28)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.1 km hinter Lemperberg und 0.7 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 3.91 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau TB Bornbach und Bechlingen - AlD 3098" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.428460399, + 50.609118454 + ], + [ + 8.4297292, + 50.608650801 + ], + [ + 8.4302641, + 50.608453401 + ], + [ + 8.4307162, + 50.608285101 + ], + [ + 8.4312806, + 50.608092301 + ], + [ + 8.4320438, + 50.607857701 + ], + [ + 8.4327334, + 50.607668601 + ], + [ + 8.4333237, + 50.607529601 + ], + [ + 8.4340523, + 50.607389301 + ], + [ + 8.4347001, + 50.607284801 + ], + [ + 8.4354114, + 50.607192001 + ], + [ + 8.4360336, + 50.607127901 + ], + [ + 8.4367391, + 50.607088501 + ], + [ + 8.4372594, + 50.607065701 + ], + [ + 8.437915, + 50.607054801 + ], + [ + 8.4384919, + 50.607058701 + ], + [ + 8.4388223, + 50.607067701 + ], + [ + 8.4392468, + 50.607081301 + ], + [ + 8.4402029, + 50.607130801 + ], + [ + 8.4414285, + 50.607194401 + ], + [ + 8.4420156, + 50.607223201 + ], + [ + 8.4429372, + 50.607249801 + ], + [ + 8.4435337, + 50.607249901 + ], + [ + 8.4441283, + 50.607232901 + ], + [ + 8.4446511, + 50.607208601 + ], + [ + 8.4453421, + 50.607155901 + ], + [ + 8.4458874, + 50.607098601 + ], + [ + 8.4464943, + 50.607015201 + ], + [ + 8.4471704, + 50.606905501 + ], + [ + 8.4478037, + 50.606790901 + ], + [ + 8.4484184, + 50.606655201 + ], + [ + 8.4490847, + 50.606478501 + ], + [ + 8.4500847, + 50.606167901 + ], + [ + 8.4509858, + 50.605879101 + ], + [ + 8.4512998, + 50.605778101 + ], + [ + 8.4523269, + 50.605458901 + ], + [ + 8.4536021, + 50.605062701 + ], + [ + 8.4544458, + 50.604835201 + ], + [ + 8.4547331, + 50.604763001 + ], + [ + 8.4550552, + 50.604692901 + ], + [ + 8.4552679, + 50.604652201 + ], + [ + 8.4559745, + 50.604519801 + ], + [ + 8.4562277, + 50.604480801 + ], + [ + 8.4570404, + 50.604368201 + ], + [ + 8.4576408, + 50.604306601 + ], + [ + 8.4585641, + 50.604252501 + ], + [ + 8.4594809, + 50.604230401 + ], + [ + 8.4602343, + 50.604240601 + ], + [ + 8.4610602, + 50.604266001 + ], + [ + 8.462543, + 50.604321901 + ], + [ + 8.4636671, + 50.604346501 + ], + [ + 8.464374, + 50.604332201 + ], + [ + 8.4651522, + 50.604303901 + ], + [ + 8.4659089, + 50.604250201 + ], + [ + 8.4665115, + 50.604190401 + ], + [ + 8.4673444, + 50.604084301 + ], + [ + 8.4681603, + 50.603953201 + ], + [ + 8.4689428, + 50.603806701 + ], + [ + 8.4696959, + 50.603632401 + ], + [ + 8.4708558, + 50.603329901 + ], + [ + 8.4711341, + 50.603245101 + ], + [ + 8.4717899, + 50.603030401 + ], + [ + 8.4724402, + 50.602791201 + ], + [ + 8.4732134, + 50.602457901 + ], + [ + 8.4736529, + 50.602273001 + ], + [ + 8.4743774, + 50.601895801 + ], + [ + 8.4749102, + 50.601606701 + ], + [ + 8.4756121, + 50.601181901 + ], + [ + 8.4762552, + 50.600752201 + ], + [ + 8.4768813, + 50.600297601 + ], + [ + 8.4778789, + 50.599555301 + ], + [ + 8.4783897, + 50.599203101 + ], + [ + 8.4787716, + 50.598969601 + ], + [ + 8.479082486, + 50.598779484 + ] + ] + } + }, + { + "identifier": "2023-004492--vi-bs.2026-03-16_19-00-00-000.devi-zus.2025-05-05_19-00-00-000_001.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.59789880240937,8.480695522388066,50.59592750426038,8.492361340777078", + "point": "50.59789880240937,8.480695522388066", + "startLcPosition": "30", + "impact": { + "lower": "Kochsgrund", + "upper": "Lemperberg", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Lemperberg - Kochsgrund", + "startTimestamp": "2026-03-16T19:00:00+01:00", + "coordinate": { + "lat": 50.59789880240937, + "long": 8.480695522388066 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 19:00 Uhr", + "Ende: 08.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.06.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 5.2 km hinter Lemperberg und 1.9 km vor Kochsgrund", + "", + "L\u00e4nge: 0.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Fahrbahnverbreiterung und Erneuerung der Fahrbahn - AlD 4492" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.480695522, + 50.597898802 + ], + [ + 8.4807633, + 50.597865001 + ], + [ + 8.4818297, + 50.597397901 + ], + [ + 8.4828161, + 50.597047301 + ], + [ + 8.48389, + 50.596729801 + ], + [ + 8.4848788, + 50.596491101 + ], + [ + 8.4856406, + 50.596348401 + ], + [ + 8.4861939, + 50.596241401 + ], + [ + 8.4869373, + 50.596134301 + ], + [ + 8.4874648, + 50.596075901 + ], + [ + 8.4877685, + 50.596045401 + ], + [ + 8.48805, + 50.596017101 + ], + [ + 8.4886255, + 50.595985501 + ], + [ + 8.4894857, + 50.595951801 + ], + [ + 8.4904041, + 50.595944701 + ], + [ + 8.492361341, + 50.595927504 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.597715813902276,8.481103902158376,50.59697590985226,8.483057574701379", + "point": "50.597715813902276,8.481103902158376", + "startLcPosition": "30", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "Lemperberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Lemperberg - Wetzlarer Kreuz", + "coordinate": { + "lat": 50.597715813902276, + "long": 8.481103902158376 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 5.2 km hinter Lemperberg und 0.4 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 0.16 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.481103902, + 50.597715814 + ], + [ + 8.4818297, + 50.597397901 + ], + [ + 8.4828161, + 50.597047301 + ], + [ + 8.483057575, + 50.59697591 + ] + ] + } + }, + { + "identifier": "2023-003056--vi-bs.2025-07-14_21-00-00-000.devi-zus.2021-05-31_08-00-00-000_005.f.de57", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.618708721507765,8.388959060922382,50.61851446081299,8.379135575984325", + "point": "50.618708721507765,8.388959060922382", + "startLcPosition": "30", + "impact": { + "lower": "Katzenfurt", + "upper": "Lemperberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Lemperberg - Katzenfurt", + "startTimestamp": "2025-07-14T21:00:00+02:00", + "coordinate": { + "lat": 50.618708721507765, + "long": 8.388959060922382 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.07.25 um 21:00 Uhr", + "Ende: 01.03.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.11.28)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.9 km hinter Lemperberg und 1.2 km vor Katzenfurt", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau TB Onsbach und TB Volkersbach - AlD 3056" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.388959061, + 50.618708722 + ], + [ + 8.387878, + 50.618652101 + ], + [ + 8.3862288, + 50.618549001 + ], + [ + 8.3839692, + 50.618389501 + ], + [ + 8.383075, + 50.618348701 + ], + [ + 8.3821499, + 50.618327501 + ], + [ + 8.381415, + 50.618332701 + ], + [ + 8.3807123, + 50.618363301 + ], + [ + 8.3799475, + 50.618418101 + ], + [ + 8.3792773, + 50.618496001 + ], + [ + 8.379135576, + 50.618514461 + ] + ] + } + }, + { + "identifier": "2023-003098--vi-bs.2025-04-30_20-00-00-000.devi-zus.2023-05-14_08-00-00-000_005.f.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.59877948447092,8.479082485536805,50.59789880240937,8.480695522388066", + "point": "50.59877948447092,8.479082485536805", + "startLcPosition": "30", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "Lemperberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Lemperberg - Wetzlarer Kreuz", + "startTimestamp": "2025-04-30T20:00:00+02:00", + "coordinate": { + "lat": 50.59877948447092, + "long": 8.479082485536805 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.04.25 um 20:00 Uhr", + "Ende: 30.11.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.28)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 5.0 km hinter Lemperberg und 0.6 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 0.15 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau TB Bornbach und Bechlingen - AlD 3098" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.479082486, + 50.598779484 + ], + [ + 8.4795655, + 50.598484101 + ], + [ + 8.4803376, + 50.598077301 + ], + [ + 8.480695522, + 50.597898802 + ] + ] + } + }, + { + "identifier": "2023-003098--vi-bs.2025-04-30_20-00-00-000.devi-zus.2023-05-14_08-00-00-000_005.f.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.6117002211093,8.415759834802556,50.609118453575206,8.428460399060436", + "point": "50.6117002211093,8.415759834802556", + "startLcPosition": "30", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "Lemperberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Lemperberg - Wetzlarer Kreuz", + "startTimestamp": "2025-04-30T20:00:00+02:00", + "coordinate": { + "lat": 50.6117002211093, + "long": 8.415759834802556 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.04.25 um 20:00 Uhr", + "Ende: 30.11.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.28)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.2 km hinter Lemperberg und 4.6 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 0.95 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau TB Bornbach und Bechlingen - AlD 3098" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.415759835, + 50.611700221 + ], + [ + 8.4164828, + 50.611458901 + ], + [ + 8.4175058, + 50.611186501 + ], + [ + 8.4187064, + 50.610921101 + ], + [ + 8.4192599, + 50.610810001 + ], + [ + 8.419997, + 50.610670201 + ], + [ + 8.4205989, + 50.610586201 + ], + [ + 8.4212872, + 50.610506001 + ], + [ + 8.422798, + 50.610337301 + ], + [ + 8.423671, + 50.610230001 + ], + [ + 8.4242063, + 50.610160101 + ], + [ + 8.4247102, + 50.610085901 + ], + [ + 8.4251516, + 50.610004801 + ], + [ + 8.4256119, + 50.609913801 + ], + [ + 8.4262774, + 50.609762901 + ], + [ + 8.4269251, + 50.609594501 + ], + [ + 8.4274912, + 50.609438001 + ], + [ + 8.4278764, + 50.609317001 + ], + [ + 8.4284581, + 50.609119301 + ], + [ + 8.428460399, + 50.609118454 + ] + ] + } + }, + { + "identifier": "2023-003056--vi-bs.2025-07-14_21-00-00-000.devi-zus.2021-05-31_08-00-00-000_005.f.de53", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.61851626449919,8.379121728269922,50.631718019759795,8.331163911163904", + "point": "50.61851626449919,8.379121728269922", + "startLcPosition": "31", + "impact": { + "lower": "Ebersbach", + "upper": "Ehringshausen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Ehringshausen - Ebersbach", + "startTimestamp": "2025-07-14T21:00:00+02:00", + "coordinate": { + "lat": 50.61851626449919, + "long": 8.379121728269922 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.07.25 um 21:00 Uhr", + "Ende: 01.03.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.11.28)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.4 km hinter AS Ehringshausen und 1.5 km vor Ebersbach", + "", + "L\u00e4nge: 3.79 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.15 m", + "", + "A45 - Ersatzneubau TB Onsbach und TB Volkersbach - AlD 3056" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.379121728, + 50.618516264 + ], + [ + 8.378875, + 50.618548401 + ], + [ + 8.378014, + 50.618693401 + ], + [ + 8.3772435, + 50.618848701 + ], + [ + 8.3761914, + 50.619138001 + ], + [ + 8.3753211, + 50.619414001 + ], + [ + 8.3729341, + 50.620205501 + ], + [ + 8.3714578, + 50.620630301 + ], + [ + 8.3704965, + 50.620831801 + ], + [ + 8.3692949, + 50.621016901 + ], + [ + 8.3680367, + 50.621134301 + ], + [ + 8.3661645, + 50.621253701 + ], + [ + 8.3652263, + 50.621310901 + ], + [ + 8.3641436, + 50.621422401 + ], + [ + 8.363182, + 50.621568101 + ], + [ + 8.362666, + 50.621669301 + ], + [ + 8.3616469, + 50.621904701 + ], + [ + 8.3609984, + 50.622089001 + ], + [ + 8.3603448, + 50.622285101 + ], + [ + 8.3595159, + 50.622584801 + ], + [ + 8.3587565, + 50.622861701 + ], + [ + 8.3576987, + 50.623245301 + ], + [ + 8.3566312, + 50.623603101 + ], + [ + 8.3562848, + 50.623707201 + ], + [ + 8.3554463, + 50.623949401 + ], + [ + 8.3548249, + 50.624110001 + ], + [ + 8.3544067, + 50.624210401 + ], + [ + 8.353994, + 50.624298001 + ], + [ + 8.3537565, + 50.624347601 + ], + [ + 8.3532175, + 50.624455501 + ], + [ + 8.3526062, + 50.624564601 + ], + [ + 8.3523939, + 50.624598101 + ], + [ + 8.351598, + 50.624715101 + ], + [ + 8.3507326, + 50.624804901 + ], + [ + 8.3498102, + 50.624894201 + ], + [ + 8.3480378, + 50.625037401 + ], + [ + 8.347103, + 50.625112901 + ], + [ + 8.3460215, + 50.625225001 + ], + [ + 8.3450521, + 50.625356801 + ], + [ + 8.3446538, + 50.625424901 + ], + [ + 8.3438797, + 50.625557301 + ], + [ + 8.3428953, + 50.625767501 + ], + [ + 8.3414191, + 50.626132301 + ], + [ + 8.3406279, + 50.626359701 + ], + [ + 8.3399652, + 50.626574801 + ], + [ + 8.338837, + 50.627017401 + ], + [ + 8.3380361, + 50.627337401 + ], + [ + 8.337136, + 50.627760401 + ], + [ + 8.3362974, + 50.628191801 + ], + [ + 8.3355062, + 50.628639501 + ], + [ + 8.3347759, + 50.629082501 + ], + [ + 8.3330203, + 50.630257501 + ], + [ + 8.3314446, + 50.631472801 + ], + [ + 8.331163911, + 50.63171802 + ] + ] + } + }, + { + "identifier": "2023-001522--vi-bs.2024-08-13_19-00-00-000.devi-zus.2022-04-09_20-00-00-000.f_001.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.64208252472801,8.32495601244183,50.64741548572342,8.323894370843066", + "point": "50.64208252472801,8.32495601244183", + "startLcPosition": "33", + "impact": { + "lower": "Hohenrain", + "upper": "Volkersbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Volkersbach - Hohenrain", + "startTimestamp": "2024-08-13T19:00:00+02:00", + "coordinate": { + "lat": 50.64208252472801, + "long": 8.32495601244183 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.08.24 um 19:00 Uhr", + "Ende: 22.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.09.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.8 km hinter Volkersbach und 0.1 km vor Hohenrain", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A45 - Br\u00fcckenneubau TB Heubach - AlD 1522" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.324956012, + 50.642082525 + ], + [ + 8.3249432, + 50.643106501 + ], + [ + 8.3249412, + 50.643461501 + ], + [ + 8.3249435, + 50.644156801 + ], + [ + 8.3249021, + 50.644658701 + ], + [ + 8.3247673, + 50.645415201 + ], + [ + 8.3245727, + 50.645998101 + ], + [ + 8.3244205, + 50.646403601 + ], + [ + 8.3240586, + 50.647146001 + ], + [ + 8.323894371, + 50.647415486 + ] + ] + } + }, + { + "identifier": "2023-001522--vi-bs.2024-08-13_19-00-00-000.devi-zus.2022-04-09_20-00-00-000.f_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.64743225364263,8.323884152086414,50.66058954279125,8.316371766726597", + "point": "50.64743225364263,8.323884152086414", + "startLcPosition": "34", + "impact": { + "lower": "Herborn-S\u00fcd", + "upper": "Ebersbach", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Ebersbach - Herborn-S\u00fcd", + "startTimestamp": "2024-08-13T19:00:00+02:00", + "coordinate": { + "lat": 50.64743225364263, + "long": 8.323884152086414 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.08.24 um 19:00 Uhr", + "Ende: 22.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.09.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.4 km hinter Ebersbach und AS Herborn-S\u00fcd", + "", + "L\u00e4nge: 1.59 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A45 - Br\u00fcckenneubau TB Heubach - AlD 1522" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.323884152, + 50.647432254 + ], + [ + 8.3236551, + 50.647808101 + ], + [ + 8.3232542, + 50.648435501 + ], + [ + 8.3225715, + 50.649437701 + ], + [ + 8.3218193, + 50.650507001 + ], + [ + 8.3215176, + 50.651046401 + ], + [ + 8.321197, + 50.651738601 + ], + [ + 8.3211133, + 50.651965301 + ], + [ + 8.3210483, + 50.652133801 + ], + [ + 8.3209322, + 50.652475601 + ], + [ + 8.3208358, + 50.652843001 + ], + [ + 8.320747, + 50.653265801 + ], + [ + 8.3206722, + 50.653689601 + ], + [ + 8.3206112, + 50.654114401 + ], + [ + 8.3205642, + 50.654539801 + ], + [ + 8.320449, + 50.655870501 + ], + [ + 8.3203594, + 50.656461101 + ], + [ + 8.320238, + 50.656943901 + ], + [ + 8.3201573, + 50.657182401 + ], + [ + 8.3200546, + 50.657423101 + ], + [ + 8.3198024, + 50.657855901 + ], + [ + 8.3195775, + 50.658188901 + ], + [ + 8.3192783, + 50.658540601 + ], + [ + 8.3190844, + 50.658748801 + ], + [ + 8.318669, + 50.659144701 + ], + [ + 8.3181765, + 50.659506301 + ], + [ + 8.3175141, + 50.659953001 + ], + [ + 8.3167622, + 50.660381701 + ], + [ + 8.3163854, + 50.660582601 + ], + [ + 8.316371767, + 50.660589543 + ] + ] + } + }, + { + "identifier": "2023-003056--vi-bs.2025-07-14_21-00-00-000.devi-zus.2021-05-31_08-00-00-000_005.f.de51", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.63165194515282,8.331019304167071,50.61840395252451,8.379086094343014", + "point": "50.63165194515282,8.331019304167071", + "startLcPosition": "34", + "impact": { + "lower": "Ehringshausen", + "upper": "Ebersbach", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Ebersbach - Ehringshausen", + "startTimestamp": "2025-07-14T21:00:00+02:00", + "coordinate": { + "lat": 50.63165194515282, + "long": 8.331019304167071 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.07.25 um 21:00 Uhr", + "Ende: 01.03.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.11.28)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.5 km hinter Ebersbach und 0.4 km vor AS Ehringshausen", + "", + "L\u00e4nge: 3.79 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.15 m", + "", + "A45 - Ersatzneubau TB Onsbach und TB Volkersbach - AlD 3056" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.331019304, + 50.631651945 + ], + [ + 8.3312971, + 50.631404201 + ], + [ + 8.3328282, + 50.630259501 + ], + [ + 8.3334267, + 50.629812001 + ], + [ + 8.33465, + 50.628999001 + ], + [ + 8.3353665, + 50.628565301 + ], + [ + 8.3361846, + 50.628104601 + ], + [ + 8.3370113, + 50.627679201 + ], + [ + 8.3379425, + 50.627252301 + ], + [ + 8.3393187, + 50.626667701 + ], + [ + 8.340395, + 50.626290001 + ], + [ + 8.3415368, + 50.625969601 + ], + [ + 8.3428262, + 50.625661401 + ], + [ + 8.3438315, + 50.625446301 + ], + [ + 8.3450453, + 50.625240801 + ], + [ + 8.3460016, + 50.625111301 + ], + [ + 8.3470769, + 50.624995601 + ], + [ + 8.3494939, + 50.624801401 + ], + [ + 8.3497941, + 50.624778201 + ], + [ + 8.3506878, + 50.624692401 + ], + [ + 8.3515593, + 50.624600601 + ], + [ + 8.3524205, + 50.624473001 + ], + [ + 8.3531539, + 50.624347001 + ], + [ + 8.3539377, + 50.624192601 + ], + [ + 8.3547027, + 50.624018101 + ], + [ + 8.3553821, + 50.623843101 + ], + [ + 8.3562366, + 50.623587801 + ], + [ + 8.3566208, + 50.623468801 + ], + [ + 8.3574318, + 50.623201001 + ], + [ + 8.3582297, + 50.622904801 + ], + [ + 8.3593372, + 50.622509301 + ], + [ + 8.3602611, + 50.622180201 + ], + [ + 8.3608659, + 50.621991701 + ], + [ + 8.3615861, + 50.621767001 + ], + [ + 8.362595, + 50.621545301 + ], + [ + 8.3632965, + 50.621412201 + ], + [ + 8.3637479, + 50.621344801 + ], + [ + 8.365328, + 50.621161401 + ], + [ + 8.366493, + 50.621083901 + ], + [ + 8.3678269, + 50.620997201 + ], + [ + 8.369107, + 50.620886401 + ], + [ + 8.3699614, + 50.620774101 + ], + [ + 8.37082, + 50.620619401 + ], + [ + 8.3713889, + 50.620490901 + ], + [ + 8.3728352, + 50.620088101 + ], + [ + 8.3751897, + 50.619305101 + ], + [ + 8.3756827, + 50.619139401 + ], + [ + 8.3764081, + 50.618927901 + ], + [ + 8.3771786, + 50.618743101 + ], + [ + 8.3779764, + 50.618581101 + ], + [ + 8.3788294, + 50.618436501 + ], + [ + 8.379086094, + 50.618403953 + ] + ] + } + }, + { + "identifier": "2023-003056--vi-bs.2025-07-14_21-00-00-000.devi-zus.2021-05-31_08-00-00-000_005.f.de55", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.637136507274505,8.32619947076931,50.63165194515282,8.331019304167071", + "point": "50.637136507274505,8.32619947076931", + "startLcPosition": "34", + "impact": { + "lower": "Volkersbach", + "upper": "Ebersbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Ebersbach - Volkersbach", + "startTimestamp": "2025-07-14T21:00:00+02:00", + "coordinate": { + "lat": 50.637136507274505, + "long": 8.32619947076931 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.07.25 um 21:00 Uhr", + "Ende: 01.03.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.11.28)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.8 km hinter Ebersbach und 1.6 km vor Volkersbach", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau TB Onsbach und TB Volkersbach - AlD 3056" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.326199471, + 50.637136507 + ], + [ + 8.3265268, + 50.636597501 + ], + [ + 8.3272856, + 50.635547001 + ], + [ + 8.3274632, + 50.635301201 + ], + [ + 8.3285227, + 50.634063101 + ], + [ + 8.3286791, + 50.633895001 + ], + [ + 8.3299413, + 50.632613301 + ], + [ + 8.331019304, + 50.631651945 + ] + ] + } + }, + { + "identifier": "2023-001522--vi-bs.2024-08-13_19-00-00-000.devi-zus.2022-04-09_20-00-00-000.f_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.66048274314874,8.316243008397997,50.647381954211966,8.323675829248126", + "point": "50.66048274314874,8.316243008397997", + "startLcPosition": "36", + "impact": { + "lower": "Ebersbach", + "upper": "Herborn-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Herborn-S\u00fcd - Ebersbach", + "startTimestamp": "2024-08-13T19:00:00+02:00", + "coordinate": { + "lat": 50.66048274314874, + "long": 8.316243008397997 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.08.24 um 19:00 Uhr", + "Ende: 22.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.09.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen AS Herborn-S\u00fcd und 0.4 km vor Ebersbach", + "", + "L\u00e4nge: 1.59 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A45 - Br\u00fcckenneubau TB Heubach - AlD 1522" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.316243008, + 50.660482743 + ], + [ + 8.3165931, + 50.660296101 + ], + [ + 8.317126, + 50.660005701 + ], + [ + 8.3180365, + 50.659426501 + ], + [ + 8.3185033, + 50.659072601 + ], + [ + 8.3189006, + 50.658707901 + ], + [ + 8.3191114, + 50.658487701 + ], + [ + 8.3194241, + 50.658116701 + ], + [ + 8.3196269, + 50.657821501 + ], + [ + 8.3198629, + 50.657395401 + ], + [ + 8.3199884, + 50.657110401 + ], + [ + 8.3200559, + 50.656917401 + ], + [ + 8.3201851, + 50.656447701 + ], + [ + 8.3202853, + 50.655860101 + ], + [ + 8.3203804, + 50.654522301 + ], + [ + 8.320426, + 50.654091401 + ], + [ + 8.3204893, + 50.653661401 + ], + [ + 8.3205703, + 50.653232501 + ], + [ + 8.320669, + 50.652805201 + ], + [ + 8.3207569, + 50.652466401 + ], + [ + 8.3208829, + 50.652064401 + ], + [ + 8.3210209, + 50.651704901 + ], + [ + 8.3213379, + 50.651017801 + ], + [ + 8.321805, + 50.650236001 + ], + [ + 8.3223538, + 50.649398401 + ], + [ + 8.3230667, + 50.648366701 + ], + [ + 8.3234833, + 50.647716701 + ], + [ + 8.323588, + 50.647534701 + ], + [ + 8.323675829, + 50.647381954 + ] + ] + } + }, + { + "identifier": "2023-001522--vi-bs.2024-08-13_19-00-00-000.devi-zus.2022-04-09_20-00-00-000.f_001.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.663046763669655,8.307664755634358,50.66048345131637,8.316241552636946", + "point": "50.663046763669655,8.307664755634358", + "startLcPosition": "37", + "impact": { + "lower": "Hohenrain", + "upper": "Am Rehberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Am Rehberg - Hohenrain", + "startTimestamp": "2024-08-13T19:00:00+02:00", + "coordinate": { + "lat": 50.663046763669655, + "long": 8.307664755634358 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.08.24 um 19:00 Uhr", + "Ende: 22.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.09.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.4 km hinter Am Rehberg und 1.5 km vor Hohenrain", + "", + "L\u00e4nge: 0.68 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A45 - Br\u00fcckenneubau TB Heubach - AlD 1522" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.307664756, + 50.663046764 + ], + [ + 8.3081721, + 50.662993201 + ], + [ + 8.3089706, + 50.662893401 + ], + [ + 8.3096079, + 50.662800301 + ], + [ + 8.3101179, + 50.662712601 + ], + [ + 8.3106326, + 50.662604701 + ], + [ + 8.3113134, + 50.662442501 + ], + [ + 8.3120335, + 50.662240801 + ], + [ + 8.3126079, + 50.662054801 + ], + [ + 8.3133344, + 50.661786801 + ], + [ + 8.3138679, + 50.661577201 + ], + [ + 8.3145374, + 50.661286401 + ], + [ + 8.3154049, + 50.660887301 + ], + [ + 8.316241553, + 50.660483451 + ] + ] + } + }, + { + "identifier": "2024-032507--vi-bs.2017-09-15_09-00-00-000.devi-zus.2017-09-15_00-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.68459412361985,8.287823643387567,50.687146214786075,8.292498083157126", + "point": "50.68459412361985,8.287823643387567", + "startLcPosition": "38", + "impact": { + "lower": "Dollenberg", + "upper": "Herborn-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Herborn-West - Dollenberg", + "startTimestamp": "2017-09-15T09:00:00+02:00", + "coordinate": { + "lat": 50.68459412361985, + "long": 8.287823643387567 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.09.17 um 09:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.9 km hinter AS Herborn-West und 0.4 km vor Dollenberg", + "", + "L\u00e4nge: 0.44 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Schutzwand f\u00fcr BW 5315553 - AlD 32507" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.287823643, + 50.684594124 + ], + [ + 8.288286, + 50.684954101 + ], + [ + 8.2886536, + 50.685213801 + ], + [ + 8.2891363, + 50.685503001 + ], + [ + 8.289426, + 50.685662701 + ], + [ + 8.2896291, + 50.685761901 + ], + [ + 8.2908769, + 50.686362101 + ], + [ + 8.2916802, + 50.686743001 + ], + [ + 8.2917996, + 50.686799601 + ], + [ + 8.2924166, + 50.687103801 + ], + [ + 8.292498083, + 50.687146215 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.68601275930534,8.290150620701711,50.6869616086499,8.292128193708333", + "point": "50.68601275930534,8.290150620701711", + "startLcPosition": "38", + "impact": { + "lower": "Dollenberg", + "upper": "Herborn-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Herborn-West - Dollenberg", + "coordinate": { + "lat": 50.68601275930534, + "long": 8.290150620701711 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 14:00 Uhr", + "14.04.26 von 09:00 bis 14:00 Uhr", + "15.04.26 von 09:00 bis 14:00 Uhr", + "16.04.26 von 09:00 bis 14:00 Uhr", + "17.04.26 von 09:00 bis 14:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.1 km hinter AS Herborn-West und 0.4 km vor Dollenberg", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.290150621, + 50.686012759 + ], + [ + 8.2908769, + 50.686362101 + ], + [ + 8.2916802, + 50.686743001 + ], + [ + 8.2917996, + 50.686799601 + ], + [ + 8.292128194, + 50.686961609 + ] + ] + } + }, + { + "identifier": "2024-032507--vi-bs.2017-09-15_09-00-00-000.devi-zus.2017-09-15_00-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.68725111005412,8.2923637761996,50.68467762325405,8.287662005174463", + "point": "50.68725111005412,8.2923637761996", + "startLcPosition": "39", + "impact": { + "lower": "Herborn-West", + "upper": "Dollenberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Dollenberg - Herborn-West", + "startTimestamp": "2017-09-15T09:00:00+02:00", + "coordinate": { + "lat": 50.68725111005412, + "long": 8.2923637761996 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.09.17 um 09:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.3 km hinter Dollenberg und 0.9 km vor AS Herborn-West", + "", + "L\u00e4nge: 0.44 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Schutzwand f\u00fcr BW 5315553 - AlD 32507" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.292363776, + 50.68725111 + ], + [ + 8.2922584, + 50.687197201 + ], + [ + 8.2916649, + 50.686906301 + ], + [ + 8.2915482, + 50.686851601 + ], + [ + 8.2894884, + 50.685880701 + ], + [ + 8.2893079, + 50.685788501 + ], + [ + 8.2889861, + 50.685608301 + ], + [ + 8.2885101, + 50.685310801 + ], + [ + 8.2881466, + 50.685057701 + ], + [ + 8.287662005, + 50.684677623 + ] + ] + } + }, + { + "identifier": "2023-002196--vi-bs.2024-12-10_05-00-00-000.devi-zus.2023-09-01_19-00-00-000.f_001.de58", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.742184635718054,8.26575217143586,50.74708663022029,8.22407599958289", + "point": "50.742184635718054,8.26575217143586", + "startLcPosition": "42", + "impact": { + "lower": "Scheidskopf", + "upper": "Gaulskopf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Gaulskopf - Scheidskopf", + "startTimestamp": "2024-12-10T05:00:00+01:00", + "coordinate": { + "lat": 50.742184635718054, + "long": 8.26575217143586 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.12.24 um 05:00 Uhr", + "Ende: 15.02.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.4 km hinter Gaulskopf und 3.5 km vor Scheidskopf", + "", + "L\u00e4nge: 3.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau BW Sechshelden - AlD 2196" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.265752171, + 50.742184636 + ], + [ + 8.2654345, + 50.742196501 + ], + [ + 8.2646669, + 50.742205201 + ], + [ + 8.2634864, + 50.742209101 + ], + [ + 8.2630786, + 50.742219601 + ], + [ + 8.2625867, + 50.742237401 + ], + [ + 8.2620969, + 50.742272201 + ], + [ + 8.2616047, + 50.742317001 + ], + [ + 8.2613067, + 50.742354801 + ], + [ + 8.260873, + 50.742422801 + ], + [ + 8.2602642, + 50.742540401 + ], + [ + 8.2596006, + 50.742705001 + ], + [ + 8.2591178, + 50.742853501 + ], + [ + 8.258333, + 50.743126901 + ], + [ + 8.2575705, + 50.743440201 + ], + [ + 8.257081, + 50.743682501 + ], + [ + 8.2566229, + 50.743930101 + ], + [ + 8.2562228, + 50.744134101 + ], + [ + 8.2553412, + 50.744588701 + ], + [ + 8.2546145, + 50.744910401 + ], + [ + 8.2539881, + 50.745149701 + ], + [ + 8.2535457, + 50.745288301 + ], + [ + 8.2530732, + 50.745403501 + ], + [ + 8.2524532, + 50.745530801 + ], + [ + 8.2518314, + 50.745624301 + ], + [ + 8.2513051, + 50.745691101 + ], + [ + 8.2507732, + 50.745736801 + ], + [ + 8.2502378, + 50.745761201 + ], + [ + 8.2499978, + 50.745762601 + ], + [ + 8.2497011, + 50.745764301 + ], + [ + 8.2491651, + 50.745746101 + ], + [ + 8.2486319, + 50.745706701 + ], + [ + 8.2481038, + 50.745646101 + ], + [ + 8.2475826, + 50.745564701 + ], + [ + 8.2470706, + 50.745462701 + ], + [ + 8.2465698, + 50.745340601 + ], + [ + 8.2450191, + 50.744961501 + ], + [ + 8.2444913, + 50.744834701 + ], + [ + 8.2439602, + 50.744702701 + ], + [ + 8.2433836, + 50.744582401 + ], + [ + 8.2429082, + 50.744502201 + ], + [ + 8.2424283, + 50.744433801 + ], + [ + 8.2419445, + 50.744377401 + ], + [ + 8.2414576, + 50.744333101 + ], + [ + 8.2409683, + 50.744301001 + ], + [ + 8.2404773, + 50.744281001 + ], + [ + 8.2399855, + 50.744273201 + ], + [ + 8.2394936, + 50.744277701 + ], + [ + 8.2390024, + 50.744294401 + ], + [ + 8.2385126, + 50.744323301 + ], + [ + 8.2381858, + 50.744346601 + ], + [ + 8.2375952, + 50.744405001 + ], + [ + 8.2369845, + 50.744479401 + ], + [ + 8.2366424, + 50.744536401 + ], + [ + 8.2360258, + 50.744654601 + ], + [ + 8.2353758, + 50.744802001 + ], + [ + 8.23505, + 50.744882701 + ], + [ + 8.2345265, + 50.745024301 + ], + [ + 8.2339512, + 50.745205801 + ], + [ + 8.232375, + 50.745760201 + ], + [ + 8.2313747, + 50.746111901 + ], + [ + 8.2306807, + 50.746343801 + ], + [ + 8.2297437, + 50.746603401 + ], + [ + 8.2292417, + 50.746708501 + ], + [ + 8.2288829, + 50.746769501 + ], + [ + 8.2283508, + 50.746850301 + ], + [ + 8.2280894, + 50.746886901 + ], + [ + 8.2274431, + 50.746959101 + ], + [ + 8.2268187, + 50.747006901 + ], + [ + 8.2261296, + 50.747039701 + ], + [ + 8.2248004, + 50.747071301 + ], + [ + 8.224076, + 50.74708663 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.734440984833306,8.274180859373587,50.73539749922511,8.274303909183304", + "point": "50.734440984833306,8.274180859373587", + "startLcPosition": "42", + "impact": { + "lower": "Dillenburg", + "upper": "Gaulskopf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Gaulskopf - Dillenburg", + "coordinate": { + "lat": 50.734440984833306, + "long": 8.274180859373587 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.2 km hinter Gaulskopf und 1.6 km vor AS Dillenburg", + "", + "L\u00e4nge: 0.11 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.274180859, + 50.734440985 + ], + [ + 8.2742082, + 50.734718501 + ], + [ + 8.2742595, + 50.735086601 + ], + [ + 8.274303909, + 50.735397499 + ] + ] + } + }, + { + "identifier": "2023-002196--vi-bs.2024-12-10_05-00-00-000.devi-zus.2023-09-01_19-00-00-000.f_001.de68", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.738799788984636,8.273772204428735,50.742180939138,8.26585113642475", + "point": "50.738799788984636,8.273772204428735", + "startLcPosition": "42", + "impact": { + "lower": "Dillenburg", + "upper": "Gaulskopf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Gaulskopf - Dillenburg", + "startTimestamp": "2024-12-10T05:00:00+01:00", + "coordinate": { + "lat": 50.738799788984636, + "long": 8.273772204428735 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.12.24 um 05:00 Uhr", + "Ende: 15.02.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.7 km hinter Gaulskopf und 0.5 km vor AS Dillenburg", + "", + "L\u00e4nge: 0.71 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau BW Sechshelden - AlD 2196" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.273772204, + 50.738799789 + ], + [ + 8.2736143, + 50.739026801 + ], + [ + 8.2734453, + 50.739248301 + ], + [ + 8.273204, + 50.739525901 + ], + [ + 8.2729297, + 50.739800801 + ], + [ + 8.27263, + 50.740060601 + ], + [ + 8.272347, + 50.740279301 + ], + [ + 8.2720184, + 50.740498501 + ], + [ + 8.2716975, + 50.740696501 + ], + [ + 8.2712567, + 50.740939801 + ], + [ + 8.2708252, + 50.741145401 + ], + [ + 8.2703701, + 50.741339001 + ], + [ + 8.269929, + 50.741503301 + ], + [ + 8.2694247, + 50.741664601 + ], + [ + 8.2689, + 50.741804501 + ], + [ + 8.2683859, + 50.741917801 + ], + [ + 8.2678771, + 50.742007501 + ], + [ + 8.2673469, + 50.742078601 + ], + [ + 8.2667633, + 50.742130101 + ], + [ + 8.2661627, + 50.742169301 + ], + [ + 8.265851136, + 50.742180939 + ] + ] + } + }, + { + "identifier": "2023-002196--vi-bs.2024-12-10_05-00-00-000.devi-zus.2023-09-01_19-00-00-000.f_001.de56", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.746963260962296,8.224069796595314,50.74204118286581,8.265738848344046", + "point": "50.746963260962296,8.224069796595314", + "startLcPosition": "46", + "impact": { + "lower": "Gaulskopf", + "upper": "Scheidskopf", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Scheidskopf - Gaulskopf", + "startTimestamp": "2024-12-10T05:00:00+01:00", + "coordinate": { + "lat": 50.746963260962296, + "long": 8.224069796595314 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.12.24 um 05:00 Uhr", + "Ende: 15.02.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 3.5 km hinter Scheidskopf und 2.4 km vor Gaulskopf", + "", + "L\u00e4nge: 3.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau BW Sechshelden - AlD 2196" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.224069797, + 50.746963261 + ], + [ + 8.2248096, + 50.746949101 + ], + [ + 8.2261328, + 50.746916501 + ], + [ + 8.2268187, + 50.746886901 + ], + [ + 8.2273992, + 50.746839301 + ], + [ + 8.2280439, + 50.746766801 + ], + [ + 8.2285742, + 50.746685501 + ], + [ + 8.2288331, + 50.746641201 + ], + [ + 8.2291667, + 50.746577201 + ], + [ + 8.2296698, + 50.746471401 + ], + [ + 8.2305979, + 50.746227101 + ], + [ + 8.2312688, + 50.745999301 + ], + [ + 8.2323766, + 50.745596801 + ], + [ + 8.2332365, + 50.745302301 + ], + [ + 8.2338662, + 50.745081701 + ], + [ + 8.234442, + 50.744894101 + ], + [ + 8.2349931, + 50.744745901 + ], + [ + 8.2352948, + 50.744663401 + ], + [ + 8.2358352, + 50.744541901 + ], + [ + 8.2363092, + 50.744455101 + ], + [ + 8.236929, + 50.744357001 + ], + [ + 8.2375755, + 50.744268001 + ], + [ + 8.2381567, + 50.744211001 + ], + [ + 8.2384859, + 50.744187201 + ], + [ + 8.2389834, + 50.744159501 + ], + [ + 8.2394823, + 50.744143901 + ], + [ + 8.2399817, + 50.744140601 + ], + [ + 8.240481, + 50.744149401 + ], + [ + 8.2409793, + 50.744170401 + ], + [ + 8.2414761, + 50.744203601 + ], + [ + 8.2419704, + 50.744248801 + ], + [ + 8.2424616, + 50.744306101 + ], + [ + 8.2429489, + 50.744375301 + ], + [ + 8.2434316, + 50.744456401 + ], + [ + 8.2440247, + 50.744577901 + ], + [ + 8.2445671, + 50.744705101 + ], + [ + 8.2450987, + 50.744833501 + ], + [ + 8.246644, + 50.745213301 + ], + [ + 8.2471226, + 50.745329701 + ], + [ + 8.2476115, + 50.745427401 + ], + [ + 8.2481089, + 50.745506201 + ], + [ + 8.248613, + 50.745565701 + ], + [ + 8.2491218, + 50.745605701 + ], + [ + 8.2496335, + 50.745626101 + ], + [ + 8.2501462, + 50.745626801 + ], + [ + 8.250658, + 50.745607701 + ], + [ + 8.2511671, + 50.745569101 + ], + [ + 8.2521313, + 50.745447101 + ], + [ + 8.2526413, + 50.745352001 + ], + [ + 8.253151, + 50.745234101 + ], + [ + 8.2535267, + 50.745132301 + ], + [ + 8.2539489, + 50.744991601 + ], + [ + 8.2544335, + 50.744794501 + ], + [ + 8.2549964, + 50.744540901 + ], + [ + 8.2557091, + 50.744189401 + ], + [ + 8.2559566, + 50.744066901 + ], + [ + 8.256945, + 50.743553401 + ], + [ + 8.2573829, + 50.743339401 + ], + [ + 8.2578012, + 50.743152201 + ], + [ + 8.2583231, + 50.742938001 + ], + [ + 8.2589978, + 50.742717501 + ], + [ + 8.2595177, + 50.742571201 + ], + [ + 8.2601895, + 50.742404601 + ], + [ + 8.2608125, + 50.742284201 + ], + [ + 8.261257, + 50.742214501 + ], + [ + 8.2615662, + 50.742175301 + ], + [ + 8.2620681, + 50.742129701 + ], + [ + 8.2625676, + 50.742094101 + ], + [ + 8.2630675, + 50.742076101 + ], + [ + 8.2634812, + 50.742065401 + ], + [ + 8.2640424, + 50.742063501 + ], + [ + 8.2646643, + 50.742061501 + ], + [ + 8.2654258, + 50.742052901 + ], + [ + 8.265738848, + 50.742041183 + ] + ] + } + }, + { + "identifier": "2023-002196--vi-bs.2024-12-10_05-00-00-000.devi-zus.2023-09-01_19-00-00-000.f_001.de66", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.749742964224595,8.21556536108362,50.746963260962296,8.224069796595314", + "point": "50.749742964224595,8.21556536108362", + "startLcPosition": "46", + "impact": { + "lower": "Auf dem Bon", + "upper": "Scheidskopf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Scheidskopf - Auf dem Bon", + "startTimestamp": "2024-12-10T05:00:00+01:00", + "coordinate": { + "lat": 50.749742964224595, + "long": 8.21556536108362 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.12.24 um 05:00 Uhr", + "Ende: 15.02.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 2.8 km hinter Scheidskopf und 0.6 km vor Auf dem Bon", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau BW Sechshelden - AlD 2196" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.215565361, + 50.749742964 + ], + [ + 8.2156859, + 50.749637601 + ], + [ + 8.2160227, + 50.749368801 + ], + [ + 8.2163144, + 50.749147601 + ], + [ + 8.2167519, + 50.748844301 + ], + [ + 8.2171428, + 50.748619401 + ], + [ + 8.2175898, + 50.748379701 + ], + [ + 8.2180541, + 50.748147301 + ], + [ + 8.2185495, + 50.747942901 + ], + [ + 8.2190377, + 50.747759501 + ], + [ + 8.2195081, + 50.747608401 + ], + [ + 8.2201207, + 50.747439701 + ], + [ + 8.2206168, + 50.747326101 + ], + [ + 8.2210483, + 50.747237601 + ], + [ + 8.221402, + 50.747177301 + ], + [ + 8.2217475, + 50.747120001 + ], + [ + 8.2222592, + 50.747064501 + ], + [ + 8.2229137, + 50.747001801 + ], + [ + 8.2235451, + 50.746973301 + ], + [ + 8.224069797, + 50.746963261 + ] + ] + } + }, + { + "identifier": "2023-002423--vi-bs.2025-01-14_19-00-00-000.devi-zus.2022-08-17_05-00-00-000.f_001.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.78640096916173,8.107781732690048,50.80127252384969,8.097712165158924", + "point": "50.78640096916173,8.107781732690048", + "startLcPosition": "50", + "impact": { + "lower": "Wilnsdorf", + "upper": "Am Wildenstein", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Am Wildenstein - Wilnsdorf", + "startTimestamp": "2025-01-14T19:00:00+01:00", + "coordinate": { + "lat": 50.78640096916173, + "long": 8.107781732690048 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.01.25 um 19:00 Uhr", + "Ende: 07.06.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.08.27)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 3.9 km hinter Am Wildenstein und 2.0 km vor AS Wilnsdorf", + "", + "L\u00e4nge: 1.92 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau BW Landeskroner Weiher - AlD 2423" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.107781733, + 50.786400969 + ], + [ + 8.1073055, + 50.786675301 + ], + [ + 8.1068468, + 50.786952201 + ], + [ + 8.1063017, + 50.787291301 + ], + [ + 8.1058037, + 50.787609201 + ], + [ + 8.1053345, + 50.787927801 + ], + [ + 8.1042871, + 50.788654501 + ], + [ + 8.1037681, + 50.789027701 + ], + [ + 8.1029654, + 50.789635501 + ], + [ + 8.1027167, + 50.789815001 + ], + [ + 8.1015742, + 50.790735401 + ], + [ + 8.1004816, + 50.791679701 + ], + [ + 8.0994401, + 50.792646901 + ], + [ + 8.0990783, + 50.792985401 + ], + [ + 8.0987525, + 50.793324201 + ], + [ + 8.0983728, + 50.793767101 + ], + [ + 8.0979013, + 50.794400501 + ], + [ + 8.097555, + 50.794968601 + ], + [ + 8.0973011, + 50.795486401 + ], + [ + 8.0971172, + 50.795965701 + ], + [ + 8.0969482, + 50.796526201 + ], + [ + 8.0968593, + 50.796960701 + ], + [ + 8.0967978, + 50.797478501 + ], + [ + 8.0967834, + 50.797850201 + ], + [ + 8.0968071, + 50.798405901 + ], + [ + 8.0968662, + 50.798816601 + ], + [ + 8.0969465, + 50.799231201 + ], + [ + 8.0970551, + 50.799623201 + ], + [ + 8.0972329, + 50.800154801 + ], + [ + 8.0975386, + 50.800898701 + ], + [ + 8.097712165, + 50.801272524 + ] + ] + } + }, + { + "identifier": "2023-002423--vi-bs.2025-01-14_19-00-00-000.devi-zus.2022-08-17_05-00-00-000.f_001.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.784320755054665,8.114606819401219,50.786413061920726,8.107760740170995", + "point": "50.784320755054665,8.114606819401219", + "startLcPosition": "50", + "impact": { + "lower": "Landskroner Weiher", + "upper": "Am Wildenstein", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Am Wildenstein - Landskroner Weiher", + "startTimestamp": "2025-01-14T19:00:00+01:00", + "coordinate": { + "lat": 50.784320755054665, + "long": 8.114606819401219 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.01.25 um 19:00 Uhr", + "Ende: 07.06.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.08.27)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 3.3 km hinter Am Wildenstein und 0.2 km vor Landskroner Weiher", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau BW Landeskroner Weiher - AlD 2423" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.114606819, + 50.784320755 + ], + [ + 8.1144425, + 50.784338001 + ], + [ + 8.1137927, + 50.784422201 + ], + [ + 8.1132209, + 50.784520301 + ], + [ + 8.112599, + 50.784644101 + ], + [ + 8.1119357, + 50.784784901 + ], + [ + 8.1114915, + 50.784905801 + ], + [ + 8.1109771, + 50.785060901 + ], + [ + 8.1106325, + 50.785172701 + ], + [ + 8.1102089, + 50.785322201 + ], + [ + 8.1095932, + 50.785550801 + ], + [ + 8.1092773, + 50.785681501 + ], + [ + 8.1088497, + 50.785858601 + ], + [ + 8.1083464, + 50.786105001 + ], + [ + 8.1078407, + 50.786367001 + ], + [ + 8.10776074, + 50.786413062 + ] + ] + } + }, + { + "identifier": "2023-002423--vi-bs.2025-01-14_19-00-00-000.devi-zus.2022-08-17_05-00-00-000.f_001.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.801308878802686,8.097516807775383,50.78630798140814,8.107649944410209", + "point": "50.801308878802686,8.097516807775383", + "startLcPosition": "53", + "impact": { + "lower": "Am Wildenstein", + "upper": "Wilnsdorf", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Wilnsdorf - Am Wildenstein", + "startTimestamp": "2025-01-14T19:00:00+01:00", + "coordinate": { + "lat": 50.801308878802686, + "long": 8.097516807775383 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.01.25 um 19:00 Uhr", + "Ende: 07.06.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.08.27)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.9 km hinter AS Wilnsdorf und 3.8 km vor Am Wildenstein", + "", + "L\u00e4nge: 1.92 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau BW Landeskroner Weiher - AlD 2423" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.097516808, + 50.801308879 + ], + [ + 8.0973409, + 50.800928701 + ], + [ + 8.0970319, + 50.800171501 + ], + [ + 8.0968497, + 50.799643501 + ], + [ + 8.0967341, + 50.799252801 + ], + [ + 8.0966565, + 50.798822501 + ], + [ + 8.0966038, + 50.798406201 + ], + [ + 8.0965786, + 50.797845401 + ], + [ + 8.0965944, + 50.797473501 + ], + [ + 8.0966507, + 50.796951101 + ], + [ + 8.0966958, + 50.796722201 + ], + [ + 8.096743, + 50.796502501 + ], + [ + 8.0969124, + 50.795932201 + ], + [ + 8.0971047, + 50.795448501 + ], + [ + 8.0973516, + 50.794924301 + ], + [ + 8.0977048, + 50.794348701 + ], + [ + 8.0981945, + 50.793687901 + ], + [ + 8.0985809, + 50.793255001 + ], + [ + 8.0989228, + 50.792894301 + ], + [ + 8.0992609, + 50.792560901 + ], + [ + 8.1002954, + 50.791592001 + ], + [ + 8.101392, + 50.790650701 + ], + [ + 8.102549, + 50.789738701 + ], + [ + 8.1036216, + 50.788942001 + ], + [ + 8.1041158, + 50.788580401 + ], + [ + 8.1051876, + 50.787834001 + ], + [ + 8.1056696, + 50.787516801 + ], + [ + 8.1061583, + 50.787200601 + ], + [ + 8.1067273, + 50.786845701 + ], + [ + 8.1071915, + 50.786566801 + ], + [ + 8.107649944, + 50.786307981 + ] + ] + } + }, + { + "identifier": "2023-002423--vi-bs.2025-01-14_19-00-00-000.devi-zus.2022-08-17_05-00-00-000.f_001.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.81034133165572,8.09853196949809,50.801308878802686,8.097516807775383", + "point": "50.81034133165572,8.09853196949809", + "startLcPosition": "53", + "impact": { + "lower": "Am Wildenberg", + "upper": "Wilnsdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Wilnsdorf - Am Wildenberg", + "startTimestamp": "2025-01-14T19:00:00+01:00", + "coordinate": { + "lat": 50.81034133165572, + "long": 8.09853196949809 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.01.25 um 19:00 Uhr", + "Ende: 07.06.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.08.27)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.9 km hinter AS Wilnsdorf und 0.3 km vor Am Wildenberg", + "", + "L\u00e4nge: 1.03 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau BW Landeskroner Weiher - AlD 2423" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.098531969, + 50.810341332 + ], + [ + 8.0986881, + 50.809920301 + ], + [ + 8.098907, + 50.809206001 + ], + [ + 8.0990477, + 50.808499901 + ], + [ + 8.0991364, + 50.807790701 + ], + [ + 8.0991719, + 50.807122301 + ], + [ + 8.0991694, + 50.806602801 + ], + [ + 8.0991424, + 50.806130401 + ], + [ + 8.0990803, + 50.805622701 + ], + [ + 8.0989807, + 50.805031901 + ], + [ + 8.098834, + 50.804462901 + ], + [ + 8.0986409, + 50.803868801 + ], + [ + 8.0984054, + 50.803250701 + ], + [ + 8.0981381, + 50.802622901 + ], + [ + 8.097773, + 50.801855801 + ], + [ + 8.0976591, + 50.801616401 + ], + [ + 8.097516808, + 50.801308879 + ] + ] + } + }, + { + "identifier": "2026-016081--vi-bs.2026-04-16_08-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.876529901383215,7.947699085991156,50.87681797168787,7.946543069555431", + "point": "50.876529901383215,7.947699085991156", + "startLcPosition": "60", + "impact": { + "lower": "Siegerland", + "upper": "Siegen", + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Siegen - Siegerland", + "coordinate": { + "lat": 50.876529901383215, + "long": 7.947699085991156 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 17:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 3.2 km hinter AS Siegen und 1.0 km vor Siegerland", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 5 m", + "", + "A45 - Teilsperrung Parkplatz - AkD 16081" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.947699086, + 50.876529901 + ], + [ + 7.9475629, + 50.876563101 + ], + [ + 7.9468462, + 50.876740601 + ], + [ + 7.94654307, + 50.876817972 + ] + ] + } + }, + { + "identifier": "2026-017385--vi-fbm.2026-04-10_09-00-00-000.devi-zus.2026-04-09_09-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.86823335079397,7.968417629989969,50.83348193941597,8.024506856663562", + "point": "50.86823335079397,7.968417629989969", + "startLcPosition": "61", + "impact": { + "lower": "Siegen-S\u00fcd", + "upper": "Siegerland", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Siegerland - Siegen-S\u00fcd", + "coordinate": { + "lat": 50.86823335079397, + "long": 7.968417629989969 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 14:00 Uhr", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 2.9 km hinter Siegerland und 0.7 km vor AS Siegen-S\u00fcd", + "", + "L\u00e4nge: 5.94 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A45 - Auf- oder Abbau Verkehrsf\u00fchrung - Wanderbaustelle - AkD 17385" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.96841763, + 50.868233351 + ], + [ + 7.9687277, + 50.868057701 + ], + [ + 7.9698263, + 50.867570101 + ], + [ + 7.9710339, + 50.867105301 + ], + [ + 7.9729548, + 50.866475101 + ], + [ + 7.9743353, + 50.866045601 + ], + [ + 7.9757687, + 50.865569001 + ], + [ + 7.9764419, + 50.865327101 + ], + [ + 7.9770995, + 50.865068801 + ], + [ + 7.9777404, + 50.864794401 + ], + [ + 7.9783638, + 50.864504401 + ], + [ + 7.9789686, + 50.864199301 + ], + [ + 7.9795541, + 50.863879401 + ], + [ + 7.9801192, + 50.863545301 + ], + [ + 7.9806794, + 50.863186701 + ], + [ + 7.9812161, + 50.862814101 + ], + [ + 7.9817286, + 50.862428101 + ], + [ + 7.9821943, + 50.862047901 + ], + [ + 7.9826365, + 50.861656601 + ], + [ + 7.9830545, + 50.861254801 + ], + [ + 7.9834476, + 50.860843201 + ], + [ + 7.9836971, + 50.860561901 + ], + [ + 7.9838403, + 50.860392201 + ], + [ + 7.9839475, + 50.860261001 + ], + [ + 7.9842749, + 50.859834401 + ], + [ + 7.9845764, + 50.859400301 + ], + [ + 7.9848516, + 50.858959301 + ], + [ + 7.9851, + 50.858512001 + ], + [ + 7.9853105, + 50.858082701 + ], + [ + 7.9854027, + 50.857873701 + ], + [ + 7.9855374, + 50.857555301 + ], + [ + 7.9856575, + 50.857234501 + ], + [ + 7.9857629, + 50.856911701 + ], + [ + 7.9858535, + 50.856587001 + ], + [ + 7.9859292, + 50.856260901 + ], + [ + 7.98599, + 50.855933501 + ], + [ + 7.9860595, + 50.855461001 + ], + [ + 7.9861218, + 50.854869001 + ], + [ + 7.986158, + 50.854115201 + ], + [ + 7.9862265, + 50.853050201 + ], + [ + 7.9862715, + 50.852628401 + ], + [ + 7.9863449, + 50.852229401 + ], + [ + 7.9864942, + 50.851555901 + ], + [ + 7.9867006, + 50.850888401 + ], + [ + 7.9869637, + 50.850228901 + ], + [ + 7.9872826, + 50.849579301 + ], + [ + 7.9876564, + 50.848941501 + ], + [ + 7.988084, + 50.848317301 + ], + [ + 7.9885642, + 50.847708501 + ], + [ + 7.9890956, + 50.847116801 + ], + [ + 7.9896766, + 50.846544101 + ], + [ + 7.9903056, + 50.845992001 + ], + [ + 7.9909807, + 50.845462001 + ], + [ + 7.9917001, + 50.844955701 + ], + [ + 7.9924615, + 50.844474601 + ], + [ + 7.9932628, + 50.844020001 + ], + [ + 7.9940984, + 50.843624501 + ], + [ + 7.9946673, + 50.843345801 + ], + [ + 7.9954628, + 50.843001801 + ], + [ + 7.9961678, + 50.842727701 + ], + [ + 7.99709, + 50.842402801 + ], + [ + 7.9991217, + 50.841716201 + ], + [ + 7.9997313, + 50.841496301 + ], + [ + 8.000444, + 50.841205401 + ], + [ + 8.0014267, + 50.840754101 + ], + [ + 8.001661, + 50.840636701 + ], + [ + 8.0023277, + 50.840293701 + ], + [ + 8.0029432, + 50.839959901 + ], + [ + 8.0036849, + 50.839528101 + ], + [ + 8.0044196, + 50.839112901 + ], + [ + 8.0057386, + 50.838327001 + ], + [ + 8.0062437, + 50.838054501 + ], + [ + 8.0069044, + 50.837711701 + ], + [ + 8.0074797, + 50.837440701 + ], + [ + 8.0081572, + 50.837158401 + ], + [ + 8.0090547, + 50.836829201 + ], + [ + 8.0097443, + 50.836607401 + ], + [ + 8.0103627, + 50.836438801 + ], + [ + 8.0109316, + 50.836298001 + ], + [ + 8.0118024, + 50.836116801 + ], + [ + 8.0126425, + 50.835983801 + ], + [ + 8.0141729, + 50.835800501 + ], + [ + 8.0150434, + 50.835692001 + ], + [ + 8.0157315, + 50.835600401 + ], + [ + 8.0163119, + 50.835516601 + ], + [ + 8.0168724, + 50.835428101 + ], + [ + 8.0177663, + 50.835263801 + ], + [ + 8.0185417, + 50.835094801 + ], + [ + 8.0195618, + 50.834842201 + ], + [ + 8.0213634, + 50.834338101 + ], + [ + 8.0219042, + 50.834186701 + ], + [ + 8.0228704, + 50.833904101 + ], + [ + 8.0238507, + 50.833641701 + ], + [ + 8.024506857, + 50.833481939 + ] + ] + } + }, + { + "identifier": "2023-004491--vi-bs.2026-03-30_19-00-00-000.devi-zus.2024-10-07_20-00-00-000_001.f.de44", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95730779394336,7.848926981284314,50.9795650720818,7.8411738301358636", + "point": "50.95730779394336,7.848926981284314", + "startLcPosition": "67", + "impact": { + "lower": "Olpe-S\u00fcd", + "upper": "Gro\u00dfmicke", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Gro\u00dfmicke - Olpe-S\u00fcd", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 50.95730779394336, + "long": 7.848926981284314 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 20.04.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.02.30)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.3 km hinter Gro\u00dfmicke und 1.0 km vor AK Olpe-S\u00fcd", + "", + "L\u00e4nge: 2.6 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A45 - Ersatzneubau Talbr\u00fccke Ottfingen - AlD 4491" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.848926981, + 50.957307794 + ], + [ + 7.8488998, + 50.957346001 + ], + [ + 7.848312, + 50.958232101 + ], + [ + 7.8477779, + 50.958975001 + ], + [ + 7.8476453, + 50.959151401 + ], + [ + 7.8472554, + 50.959670301 + ], + [ + 7.8468594, + 50.960153301 + ], + [ + 7.8462253, + 50.960859601 + ], + [ + 7.8454421, + 50.961711401 + ], + [ + 7.8446813, + 50.962541301 + ], + [ + 7.844173, + 50.963139901 + ], + [ + 7.8438407, + 50.963618201 + ], + [ + 7.8435516, + 50.964106401 + ], + [ + 7.8431573, + 50.964856101 + ], + [ + 7.8427979, + 50.965718001 + ], + [ + 7.8426425, + 50.966241601 + ], + [ + 7.8425205, + 50.966813201 + ], + [ + 7.8424752, + 50.967375201 + ], + [ + 7.8424913, + 50.968319501 + ], + [ + 7.8425878, + 50.969288101 + ], + [ + 7.8427833, + 50.970186401 + ], + [ + 7.843057, + 50.971021701 + ], + [ + 7.8432041, + 50.971575501 + ], + [ + 7.8432917, + 50.972043401 + ], + [ + 7.8433955, + 50.972584301 + ], + [ + 7.8434404, + 50.973191601 + ], + [ + 7.8434349, + 50.973864001 + ], + [ + 7.843384, + 50.974645001 + ], + [ + 7.843232, + 50.975356601 + ], + [ + 7.8429579, + 50.976221001 + ], + [ + 7.8424111, + 50.977456801 + ], + [ + 7.8416092, + 50.978803901 + ], + [ + 7.84117383, + 50.979565072 + ] + ] + } + }, + { + "identifier": "2023-004491--vi-bs.2026-03-30_19-00-00-000.devi-zus.2024-10-07_20-00-00-000_001.f.de52", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.96212751308083,7.845060638629328,50.9644893588397,7.843350187405937", + "point": "50.96212751308083,7.845060638629328", + "startLcPosition": "67", + "impact": { + "lower": "Olpe-S\u00fcd", + "upper": "Gro\u00dfmicke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Gro\u00dfmicke - Olpe-S\u00fcd", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 50.96212751308083, + "long": 7.845060638629328 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 20.04.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.02.30)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.9 km hinter Gro\u00dfmicke und 2.7 km vor AK Olpe-S\u00fcd", + "", + "L\u00e4nge: 0.29 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A45 - Ersatzneubau Talbr\u00fccke Ottfingen - AlD 4491" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.845060639, + 50.962127513 + ], + [ + 7.8446813, + 50.962541301 + ], + [ + 7.844173, + 50.963139901 + ], + [ + 7.8438407, + 50.963618201 + ], + [ + 7.8435516, + 50.964106401 + ], + [ + 7.843350187, + 50.964489359 + ] + ] + } + }, + { + "identifier": "2023-004491--vi-bs.2026-03-30_19-00-00-000.devi-zus.2024-10-07_20-00-00-000_001.f.de50", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95530208059927,7.850614669209998,50.957324195107255,7.8489153131461755", + "point": "50.95530208059927,7.850614669209998", + "startLcPosition": "67", + "impact": { + "lower": "Br\u00fcner H\u00f6he", + "upper": "Gro\u00dfmicke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Gro\u00dfmicke - Br\u00fcner H\u00f6he", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 50.95530208059927, + "long": 7.850614669209998 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 20.04.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.02.30)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.0 km hinter Gro\u00dfmicke und 0.7 km vor Br\u00fcner H\u00f6he", + "", + "L\u00e4nge: 0.26 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A45 - Ersatzneubau Talbr\u00fccke Ottfingen - AlD 4491" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.850614669, + 50.955302081 + ], + [ + 7.8504421, + 50.955463501 + ], + [ + 7.8500525, + 50.955848001 + ], + [ + 7.8493524, + 50.956709801 + ], + [ + 7.848915313, + 50.957324195 + ] + ] + } + }, + { + "identifier": "2023-004491--vi-bs.2026-03-30_19-00-00-000.devi-zus.2024-10-07_20-00-00-000_001.f.de48", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95142767077923,7.856918685381869,50.95530208059927,7.850614669209998", + "point": "50.95142767077923,7.856918685381869", + "startLcPosition": "67", + "impact": { + "lower": "Br\u00fcner H\u00f6he", + "upper": "Gro\u00dfmicke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Gro\u00dfmicke - Br\u00fcner H\u00f6he", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 50.95142767077923, + "long": 7.856918685381869 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 20.04.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.02.30)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.4 km hinter Gro\u00dfmicke und 1.0 km vor Br\u00fcner H\u00f6he", + "", + "L\u00e4nge: 0.63 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau Talbr\u00fccke Ottfingen - AlD 4491" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.856918685, + 50.951427671 + ], + [ + 7.8563456, + 50.951652201 + ], + [ + 7.8552815, + 50.952117401 + ], + [ + 7.8537561, + 50.952924701 + ], + [ + 7.8526561, + 50.953625301 + ], + [ + 7.8519594, + 50.954143701 + ], + [ + 7.8512735, + 50.954685801 + ], + [ + 7.850614669, + 50.955302081 + ] + ] + } + }, + { + "identifier": "2026-014314--vi-bs.2026-03-26_08-00-00-000.devi-zus.2026-03-26_08-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.97008335264038,7.842760872884548,50.97930295443813,7.841323756274453", + "point": "50.97008335264038,7.842760872884548", + "startLcPosition": "68", + "impact": { + "lower": "Olpe-S\u00fcd", + "upper": "Br\u00fcner H\u00f6he", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Br\u00fcner H\u00f6he - Olpe-S\u00fcd", + "coordinate": { + "lat": 50.97008335264038, + "long": 7.842760872884548 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 15:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.8 km hinter Br\u00fcner H\u00f6he und 1.1 km vor AK Olpe-S\u00fcd", + "", + "L\u00e4nge: 1.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A45 - Beschilderungsarbeiten - Wanderbaustelle - AkD 14314" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.842760873, + 50.970083353 + ], + [ + 7.8427833, + 50.970186401 + ], + [ + 7.843057, + 50.971021701 + ], + [ + 7.8432041, + 50.971575501 + ], + [ + 7.8432917, + 50.972043401 + ], + [ + 7.8433955, + 50.972584301 + ], + [ + 7.8434404, + 50.973191601 + ], + [ + 7.8434349, + 50.973864001 + ], + [ + 7.843384, + 50.974645001 + ], + [ + 7.843232, + 50.975356601 + ], + [ + 7.8429579, + 50.976221001 + ], + [ + 7.8424111, + 50.977456801 + ], + [ + 7.8416092, + 50.978803901 + ], + [ + 7.841323756, + 50.979302954 + ] + ] + } + }, + { + "identifier": "2026-014314--vi-bs.2026-03-26_08-00-00-000.devi-zus.2026-03-26_08-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.97008335264038,7.842760872884548,50.97930295443813,7.841323756274453", + "point": "50.97008335264038,7.842760872884548", + "startLcPosition": "68", + "impact": { + "lower": "Olpe-S\u00fcd", + "upper": "Br\u00fcner H\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Br\u00fcner H\u00f6he - Olpe-S\u00fcd", + "coordinate": { + "lat": 50.97008335264038, + "long": 7.842760872884548 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 15:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.8 km hinter Br\u00fcner H\u00f6he und 1.1 km vor AK Olpe-S\u00fcd", + "", + "L\u00e4nge: 1.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A45 - Beschilderungsarbeiten - Wanderbaustelle - AkD 14314" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.842760873, + 50.970083353 + ], + [ + 7.8427833, + 50.970186401 + ], + [ + 7.843057, + 50.971021701 + ], + [ + 7.8432041, + 50.971575501 + ], + [ + 7.8432917, + 50.972043401 + ], + [ + 7.8433955, + 50.972584301 + ], + [ + 7.8434404, + 50.973191601 + ], + [ + 7.8434349, + 50.973864001 + ], + [ + 7.843384, + 50.974645001 + ], + [ + 7.843232, + 50.975356601 + ], + [ + 7.8429579, + 50.976221001 + ], + [ + 7.8424111, + 50.977456801 + ], + [ + 7.8416092, + 50.978803901 + ], + [ + 7.841323756, + 50.979302954 + ] + ] + } + }, + { + "identifier": "2023-004491--vi-bs.2026-03-30_19-00-00-000.devi-zus.2024-10-07_20-00-00-000_001.f.de46", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.95725566916187,7.848747528411575,50.95432088592181,7.851502366200299", + "point": "50.95725566916187,7.848747528411575", + "startLcPosition": "68", + "impact": { + "lower": "Gro\u00dfmicke", + "upper": "Br\u00fcner H\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Br\u00fcner H\u00f6he - Gro\u00dfmicke", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 50.95725566916187, + "long": 7.848747528411575 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 20.04.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.02.30)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.7 km hinter Br\u00fcner H\u00f6he und 0.9 km vor Gro\u00dfmicke", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau Talbr\u00fccke Ottfingen - AlD 4491" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.848747528, + 50.957255669 + ], + [ + 7.8491887, + 50.956660001 + ], + [ + 7.8497186, + 50.956013401 + ], + [ + 7.8499888, + 50.955724101 + ], + [ + 7.8502944, + 50.955401401 + ], + [ + 7.8511332, + 50.954619001 + ], + [ + 7.851502366, + 50.954320886 + ] + ] + } + }, + { + "identifier": "2023-004491--vi-bs.2026-03-30_19-00-00-000.devi-zus.2024-10-07_20-00-00-000_001.f.de42", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.97951738636421,7.840966112816712,50.95725566916187,7.848747528411575", + "point": "50.97951738636421,7.840966112816712", + "startLcPosition": "69", + "impact": { + "lower": "Gro\u00dfmicke", + "upper": "Olpe-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Olpe-S\u00fcd - Gro\u00dfmicke", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 50.97951738636421, + "long": 7.840966112816712 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 20.04.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.02.30)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.0 km hinter AK Olpe-S\u00fcd und 1.3 km vor Gro\u00dfmicke", + "", + "L\u00e4nge: 2.6 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau Talbr\u00fccke Ottfingen - AlD 4491" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.840966113, + 50.979517386 + ], + [ + 7.8414032, + 50.978765101 + ], + [ + 7.8421896, + 50.977389801 + ], + [ + 7.8427079, + 50.976207801 + ], + [ + 7.842973, + 50.975407201 + ], + [ + 7.8431605, + 50.974636901 + ], + [ + 7.8432226, + 50.973822201 + ], + [ + 7.8432215, + 50.973197701 + ], + [ + 7.8431423, + 50.972379401 + ], + [ + 7.8429526, + 50.971527901 + ], + [ + 7.8427631, + 50.970815201 + ], + [ + 7.8426929, + 50.970587501 + ], + [ + 7.8425395, + 50.969999401 + ], + [ + 7.842391, + 50.969468801 + ], + [ + 7.8422966, + 50.968831901 + ], + [ + 7.8422399, + 50.968317501 + ], + [ + 7.8422213, + 50.967656101 + ], + [ + 7.8422647, + 50.967129601 + ], + [ + 7.8423541, + 50.966612801 + ], + [ + 7.8425649, + 50.965756901 + ], + [ + 7.8427866, + 50.965102401 + ], + [ + 7.8430974, + 50.964445701 + ], + [ + 7.8434792, + 50.963764101 + ], + [ + 7.8437879, + 50.963309901 + ], + [ + 7.8442045, + 50.962803501 + ], + [ + 7.8445958, + 50.962379201 + ], + [ + 7.845182, + 50.961741701 + ], + [ + 7.8460435, + 50.960806601 + ], + [ + 7.8465466, + 50.960264601 + ], + [ + 7.8470484, + 50.959685301 + ], + [ + 7.8476255, + 50.958926101 + ], + [ + 7.8481482, + 50.958160501 + ], + [ + 7.8487281, + 50.957281901 + ], + [ + 7.848747528, + 50.957255669 + ] + ] + } + }, + { + "identifier": "2026-016731--vi-fbm.2026-04-08_19-00-00-000.devi-fbm.2026-04-08_19-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.990021553297154,7.835272604061422,51.00730919394165,7.833259006729584", + "point": "50.990021553297154,7.835272604061422", + "startLcPosition": "69", + "impact": { + "lower": "Olpe", + "upper": "Olpe-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Olpe-S\u00fcd - Olpe", + "coordinate": { + "lat": 50.990021553297154, + "long": 7.835272604061422 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.2 km hinter AK Olpe-S\u00fcd und 2.7 km vor AS Olpe", + "", + "L\u00e4nge: 1.95 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 16731" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.835272604, + 50.990021553 + ], + [ + 7.8351596, + 50.990338101 + ], + [ + 7.83485, + 50.991210001 + ], + [ + 7.8345227, + 50.992320801 + ], + [ + 7.8343955, + 50.992831801 + ], + [ + 7.8343187, + 50.993154601 + ], + [ + 7.8341333, + 50.993851701 + ], + [ + 7.8340212, + 50.994621201 + ], + [ + 7.8339386, + 50.995240301 + ], + [ + 7.833856, + 50.995986901 + ], + [ + 7.8338083, + 50.996723301 + ], + [ + 7.8338185, + 50.997314701 + ], + [ + 7.833856, + 50.998042301 + ], + [ + 7.8339236, + 50.998736901 + ], + [ + 7.8341133, + 50.999653101 + ], + [ + 7.8342149, + 51.000072301 + ], + [ + 7.8343249, + 51.000515401 + ], + [ + 7.8345377, + 51.001467401 + ], + [ + 7.8346216, + 51.002119101 + ], + [ + 7.8346668, + 51.002459901 + ], + [ + 7.8347143, + 51.003042101 + ], + [ + 7.8347073, + 51.003654601 + ], + [ + 7.8346348, + 51.004399701 + ], + [ + 7.8344593, + 51.005125501 + ], + [ + 7.8342085, + 51.005757401 + ], + [ + 7.8340259, + 51.006113301 + ], + [ + 7.8335823, + 51.006859701 + ], + [ + 7.833259007, + 51.007309194 + ] + ] + } + }, + { + "identifier": "2023-004491--vi-bs.2026-03-30_19-00-00-000.devi-zus.2024-10-07_20-00-00-000_001.f.de40", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.973619790660415,7.8432222434839645,50.96207135964344,7.844878871495557", + "point": "50.973619790660415,7.8432222434839645", + "startLcPosition": "69", + "impact": { + "lower": "Gro\u00dfmicke", + "upper": "Olpe-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Olpe-S\u00fcd - Gro\u00dfmicke", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 50.973619790660415, + "long": 7.8432222434839645 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 20.04.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.02.30)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.7 km hinter AK Olpe-S\u00fcd und 1.9 km vor Gro\u00dfmicke", + "", + "L\u00e4nge: 1.32 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau Talbr\u00fccke Ottfingen - AlD 4491" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.843222243, + 50.973619791 + ], + [ + 7.8432215, + 50.973197701 + ], + [ + 7.8431423, + 50.972379401 + ], + [ + 7.8429526, + 50.971527901 + ], + [ + 7.8427631, + 50.970815201 + ], + [ + 7.8426929, + 50.970587501 + ], + [ + 7.8425395, + 50.969999401 + ], + [ + 7.842391, + 50.969468801 + ], + [ + 7.8422966, + 50.968831901 + ], + [ + 7.8422399, + 50.968317501 + ], + [ + 7.8422213, + 50.967656101 + ], + [ + 7.8422647, + 50.967129601 + ], + [ + 7.8423541, + 50.966612801 + ], + [ + 7.8425649, + 50.965756901 + ], + [ + 7.8427866, + 50.965102401 + ], + [ + 7.8430974, + 50.964445701 + ], + [ + 7.8434792, + 50.963764101 + ], + [ + 7.8437879, + 50.963309901 + ], + [ + 7.8442045, + 50.962803501 + ], + [ + 7.8445958, + 50.962379201 + ], + [ + 7.844878871, + 50.96207136 + ] + ] + } + }, + { + "identifier": "2024-015276--vi-bs.2026-04-13_19-00-00-000.devi-zus.2024-07-01_19-00-00-000_003.f.de4", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.99910793087691,7.8340004211934655,51.00706356398153,7.833435674446728", + "point": "50.99910793087691,7.8340004211934655", + "startLcPosition": "69", + "impact": { + "lower": "Olpe", + "upper": "Olpe-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Olpe-S\u00fcd - Olpe", + "startTimestamp": "2026-04-13T19:00:00+02:00", + "coordinate": { + "lat": 50.99910793087691, + "long": 7.8340004211934655 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 19:00 Uhr", + "Ende: 15.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.10.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.2 km hinter AK Olpe-S\u00fcd und 2.8 km vor AS Olpe", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Baugrunderkundungen zwischen AS Olpe und AK Olpe - AlD 15276 " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.834000421, + 50.999107931 + ], + [ + 7.8341133, + 50.999653101 + ], + [ + 7.8342149, + 51.000072301 + ], + [ + 7.8343249, + 51.000515401 + ], + [ + 7.8345377, + 51.001467401 + ], + [ + 7.8346216, + 51.002119101 + ], + [ + 7.8346668, + 51.002459901 + ], + [ + 7.8347143, + 51.003042101 + ], + [ + 7.8347073, + 51.003654601 + ], + [ + 7.8346348, + 51.004399701 + ], + [ + 7.8344593, + 51.005125501 + ], + [ + 7.8342085, + 51.005757401 + ], + [ + 7.8340259, + 51.006113301 + ], + [ + 7.8335823, + 51.006859701 + ], + [ + 7.833435674, + 51.007063564 + ] + ] + } + }, + { + "identifier": "2026-016731--vi-fbm.2026-04-16_19-00-00-000.devi-fbm.2026-04-08_19-00-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.99981922223433,7.834153562007634,51.00706356398153,7.833435674446728", + "point": "50.99981922223433,7.834153562007634", + "startLcPosition": "69", + "impact": { + "lower": "Olpe", + "upper": "Olpe-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Olpe-S\u00fcd - Olpe", + "coordinate": { + "lat": 50.99981922223433, + "long": 7.834153562007634 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 19:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 19:00 bis zum 18.04.26 05:00 Uhr.", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.3 km hinter AK Olpe-S\u00fcd und 2.8 km vor AS Olpe", + "", + "L\u00e4nge: 0.82 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 16731" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.834153562, + 50.999819222 + ], + [ + 7.8342149, + 51.000072301 + ], + [ + 7.8343249, + 51.000515401 + ], + [ + 7.8345377, + 51.001467401 + ], + [ + 7.8346216, + 51.002119101 + ], + [ + 7.8346668, + 51.002459901 + ], + [ + 7.8347143, + 51.003042101 + ], + [ + 7.8347073, + 51.003654601 + ], + [ + 7.8346348, + 51.004399701 + ], + [ + 7.8344593, + 51.005125501 + ], + [ + 7.8342085, + 51.005757401 + ], + [ + 7.8340259, + 51.006113301 + ], + [ + 7.8335823, + 51.006859701 + ], + [ + 7.833435674, + 51.007063564 + ] + ] + } + }, + { + "identifier": "2026-016731--vi-fbm.2026-04-14_19-00-00-000.devi-fbm.2026-04-08_19-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.990021553297154,7.835272604061422,51.007478280970275,7.83313315267055", + "point": "50.990021553297154,7.835272604061422", + "startLcPosition": "69", + "impact": { + "lower": "Olpe", + "upper": "Olpe-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Olpe-S\u00fcd - Olpe", + "coordinate": { + "lat": 50.990021553297154, + "long": 7.835272604061422 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.2 km hinter AK Olpe-S\u00fcd und 2.7 km vor AS Olpe", + "", + "L\u00e4nge: 1.97 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 16731" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.835272604, + 50.990021553 + ], + [ + 7.8351596, + 50.990338101 + ], + [ + 7.83485, + 50.991210001 + ], + [ + 7.8345227, + 50.992320801 + ], + [ + 7.8343955, + 50.992831801 + ], + [ + 7.8343187, + 50.993154601 + ], + [ + 7.8341333, + 50.993851701 + ], + [ + 7.8340212, + 50.994621201 + ], + [ + 7.8339386, + 50.995240301 + ], + [ + 7.833856, + 50.995986901 + ], + [ + 7.8338083, + 50.996723301 + ], + [ + 7.8338185, + 50.997314701 + ], + [ + 7.833856, + 50.998042301 + ], + [ + 7.8339236, + 50.998736901 + ], + [ + 7.8341133, + 50.999653101 + ], + [ + 7.8342149, + 51.000072301 + ], + [ + 7.8343249, + 51.000515401 + ], + [ + 7.8345377, + 51.001467401 + ], + [ + 7.8346216, + 51.002119101 + ], + [ + 7.8346668, + 51.002459901 + ], + [ + 7.8347143, + 51.003042101 + ], + [ + 7.8347073, + 51.003654601 + ], + [ + 7.8346348, + 51.004399701 + ], + [ + 7.8344593, + 51.005125501 + ], + [ + 7.8342085, + 51.005757401 + ], + [ + 7.8340259, + 51.006113301 + ], + [ + 7.8335823, + 51.006859701 + ], + [ + 7.8331532, + 51.007456301 + ], + [ + 7.833133153, + 51.007478281 + ] + ] + } + }, + { + "identifier": "2026-016731--vi-fbm.2026-04-08_19-00-00-000.devi-fbm.2026-04-08_19-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.990021553297154,7.835272604061422,51.007478280970275,7.83313315267055", + "point": "50.990021553297154,7.835272604061422", + "startLcPosition": "69", + "impact": { + "lower": "Olpe", + "upper": "Olpe-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Olpe-S\u00fcd - Olpe", + "coordinate": { + "lat": 50.990021553297154, + "long": 7.835272604061422 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.2 km hinter AK Olpe-S\u00fcd und 2.7 km vor AS Olpe", + "", + "L\u00e4nge: 1.97 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 16731" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.835272604, + 50.990021553 + ], + [ + 7.8351596, + 50.990338101 + ], + [ + 7.83485, + 50.991210001 + ], + [ + 7.8345227, + 50.992320801 + ], + [ + 7.8343955, + 50.992831801 + ], + [ + 7.8343187, + 50.993154601 + ], + [ + 7.8341333, + 50.993851701 + ], + [ + 7.8340212, + 50.994621201 + ], + [ + 7.8339386, + 50.995240301 + ], + [ + 7.833856, + 50.995986901 + ], + [ + 7.8338083, + 50.996723301 + ], + [ + 7.8338185, + 50.997314701 + ], + [ + 7.833856, + 50.998042301 + ], + [ + 7.8339236, + 50.998736901 + ], + [ + 7.8341133, + 50.999653101 + ], + [ + 7.8342149, + 51.000072301 + ], + [ + 7.8343249, + 51.000515401 + ], + [ + 7.8345377, + 51.001467401 + ], + [ + 7.8346216, + 51.002119101 + ], + [ + 7.8346668, + 51.002459901 + ], + [ + 7.8347143, + 51.003042101 + ], + [ + 7.8347073, + 51.003654601 + ], + [ + 7.8346348, + 51.004399701 + ], + [ + 7.8344593, + 51.005125501 + ], + [ + 7.8342085, + 51.005757401 + ], + [ + 7.8340259, + 51.006113301 + ], + [ + 7.8335823, + 51.006859701 + ], + [ + 7.8331532, + 51.007456301 + ], + [ + 7.833133153, + 51.007478281 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2025-11-03_19-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de40", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.01950878970066,7.829205223545413,51.0363174987172,7.813860458066829", + "point": "51.01950878970066,7.829205223545413", + "startLcPosition": "71", + "impact": { + "lower": "Weidebruch", + "upper": "Mark", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Mark - Weidebruch", + "startTimestamp": "2025-11-03T19:00:00+01:00", + "coordinate": { + "lat": 51.01950878970066, + "long": 7.829205223545413 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.11.25 um 19:00 Uhr", + "Ende: 18.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.6 km hinter Mark und 1.3 km vor Weidebruch", + "", + "L\u00e4nge: 2.27 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.829205224, + 51.01950879 + ], + [ + 7.8292077, + 51.019592801 + ], + [ + 7.8291983, + 51.020524501 + ], + [ + 7.8291661, + 51.021129501 + ], + [ + 7.8291168, + 51.021641101 + ], + [ + 7.8289536, + 51.022758001 + ], + [ + 7.8289104, + 51.022946601 + ], + [ + 7.8286186, + 51.023941601 + ], + [ + 7.8282273, + 51.025002801 + ], + [ + 7.8277619, + 51.026007501 + ], + [ + 7.8272216, + 51.026983301 + ], + [ + 7.8266828, + 51.027742301 + ], + [ + 7.8258679, + 51.028772801 + ], + [ + 7.8255255, + 51.029163601 + ], + [ + 7.8249305, + 51.029783901 + ], + [ + 7.8245271, + 51.030191201 + ], + [ + 7.8238419, + 51.030823101 + ], + [ + 7.8237182, + 51.030934101 + ], + [ + 7.8234737, + 51.031153601 + ], + [ + 7.8228979, + 51.031608501 + ], + [ + 7.8217181, + 51.032497301 + ], + [ + 7.8199263, + 51.033607301 + ], + [ + 7.819195, + 51.034033301 + ], + [ + 7.8185423, + 51.034378701 + ], + [ + 7.8167308, + 51.035226901 + ], + [ + 7.8158187, + 51.035608501 + ], + [ + 7.8145443, + 51.036102901 + ], + [ + 7.813860458, + 51.036317499 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2025-11-03_19-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de38", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.036325507832416,7.813834935675816,51.05542296957985,7.745113008623597", + "point": "51.036325507832416,7.813834935675816", + "startLcPosition": "72", + "impact": { + "lower": "Brachtsiepen", + "upper": "Olpe", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Olpe - Brachtsiepen", + "startTimestamp": "2025-11-03T19:00:00+01:00", + "coordinate": { + "lat": 51.036325507832416, + "long": 7.813834935675816 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.11.25 um 19:00 Uhr", + "Ende: 18.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.0 km hinter AS Olpe und 4.3 km vor Brachtsiepen", + "", + "L\u00e4nge: 5.61 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.813834936, + 51.036325508 + ], + [ + 7.8095211, + 51.037679101 + ], + [ + 7.8076499, + 51.038362101 + ], + [ + 7.8062984, + 51.038934001 + ], + [ + 7.8050597, + 51.039522501 + ], + [ + 7.8037082, + 51.040240301 + ], + [ + 7.8021159, + 51.041273301 + ], + [ + 7.8004354, + 51.042527301 + ], + [ + 7.7987522, + 51.043992501 + ], + [ + 7.7976216, + 51.045004701 + ], + [ + 7.7959711, + 51.046352301 + ], + [ + 7.795192, + 51.046927601 + ], + [ + 7.7941891, + 51.047535001 + ], + [ + 7.7929867, + 51.048200401 + ], + [ + 7.7920354, + 51.048663901 + ], + [ + 7.7907236, + 51.049129201 + ], + [ + 7.7897236, + 51.049416501 + ], + [ + 7.7881814, + 51.049804801 + ], + [ + 7.7866623, + 51.050196801 + ], + [ + 7.7851217, + 51.050658801 + ], + [ + 7.7843991, + 51.050924701 + ], + [ + 7.7836671, + 51.051222901 + ], + [ + 7.7819916, + 51.051981901 + ], + [ + 7.7797479, + 51.053104801 + ], + [ + 7.7781585, + 51.053830301 + ], + [ + 7.7762855, + 51.054505401 + ], + [ + 7.7740701, + 51.055220401 + ], + [ + 7.7717412, + 51.055805501 + ], + [ + 7.7703651, + 51.056064101 + ], + [ + 7.7694727, + 51.056220201 + ], + [ + 7.7685729, + 51.056358101 + ], + [ + 7.7676665, + 51.056477601 + ], + [ + 7.7667545, + 51.056578601 + ], + [ + 7.7660199, + 51.056646201 + ], + [ + 7.7656088, + 51.056678601 + ], + [ + 7.76469, + 51.056737501 + ], + [ + 7.7637686, + 51.056777801 + ], + [ + 7.7628455, + 51.056799301 + ], + [ + 7.7619002, + 51.056801901 + ], + [ + 7.7609553, + 51.056784901 + ], + [ + 7.7603961, + 51.056763201 + ], + [ + 7.760012, + 51.056748301 + ], + [ + 7.7584527, + 51.056645501 + ], + [ + 7.7505699, + 51.055926201 + ], + [ + 7.747681, + 51.055661501 + ], + [ + 7.745113009, + 51.05542297 + ] + ] + } + }, + { + "identifier": "2026-016731--vi-fbm.2026-04-08_19-00-00-000.devi-fbm.2026-04-08_19-00-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.01770450647848,7.828950106093411,51.001314618787795,7.834294284981597", + "point": "51.01770450647848,7.828950106093411", + "startLcPosition": "72", + "impact": { + "lower": "Olpe-S\u00fcd", + "upper": "Olpe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Olpe - Olpe-S\u00fcd", + "coordinate": { + "lat": 51.01770450647848, + "long": 7.828950106093411 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.5 km hinter AS Olpe und 1.5 km vor AK Olpe-S\u00fcd", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 16731" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.828950106, + 51.017704506 + ], + [ + 7.8289312, + 51.017241301 + ], + [ + 7.8288972, + 51.016112001 + ], + [ + 7.828912, + 51.015304801 + ], + [ + 7.8289502, + 51.014636101 + ], + [ + 7.8290133, + 51.013826101 + ], + [ + 7.8290865, + 51.013313701 + ], + [ + 7.829168, + 51.012955901 + ], + [ + 7.8294847, + 51.012028601 + ], + [ + 7.8299488, + 51.011121301 + ], + [ + 7.8302497, + 51.010605701 + ], + [ + 7.8306181, + 51.010079701 + ], + [ + 7.8308679, + 51.009738801 + ], + [ + 7.8310911, + 51.009473001 + ], + [ + 7.8314668, + 51.009037301 + ], + [ + 7.8317538, + 51.008700001 + ], + [ + 7.8322104, + 51.008215301 + ], + [ + 7.8330147, + 51.007308901 + ], + [ + 7.833397, + 51.006817301 + ], + [ + 7.8337657, + 51.006205901 + ], + [ + 7.8339936, + 51.005751101 + ], + [ + 7.8341493, + 51.005359501 + ], + [ + 7.8343216, + 51.004845001 + ], + [ + 7.834412, + 51.004477701 + ], + [ + 7.8345027, + 51.003767601 + ], + [ + 7.8345045, + 51.003006501 + ], + [ + 7.834413, + 51.002061401 + ], + [ + 7.8342983, + 51.001333201 + ], + [ + 7.834294285, + 51.001314619 + ] + ] + } + }, + { + "identifier": "2024-015276--vi-bs.2026-04-13_19-00-00-000.devi-zus.2024-07-01_19-00-00-000_003.f.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.009547758888985,7.831028323867988,51.00175970731843,7.8343654793165145", + "point": "51.009547758888985,7.831028323867988", + "startLcPosition": "72", + "impact": { + "lower": "Olpe-S\u00fcd", + "upper": "Olpe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Olpe - Olpe-S\u00fcd", + "startTimestamp": "2026-04-13T19:00:00+02:00", + "coordinate": { + "lat": 51.009547758888985, + "long": 7.831028323867988 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 19:00 Uhr", + "Ende: 07.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 07.10.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 2.4 km hinter AS Olpe und 1.5 km vor AK Olpe-S\u00fcd", + "", + "L\u00e4nge: 0.92 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Baugrunderkundungen zwischen AS Olpe und AK Olpe - AlD 15276 " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.831028324, + 51.009547759 + ], + [ + 7.8310911, + 51.009473001 + ], + [ + 7.8314668, + 51.009037301 + ], + [ + 7.8317538, + 51.008700001 + ], + [ + 7.8322104, + 51.008215301 + ], + [ + 7.8330147, + 51.007308901 + ], + [ + 7.833397, + 51.006817301 + ], + [ + 7.8337657, + 51.006205901 + ], + [ + 7.8339936, + 51.005751101 + ], + [ + 7.8341493, + 51.005359501 + ], + [ + 7.8343216, + 51.004845001 + ], + [ + 7.834412, + 51.004477701 + ], + [ + 7.8345027, + 51.003767601 + ], + [ + 7.8345045, + 51.003006501 + ], + [ + 7.834413, + 51.002061401 + ], + [ + 7.834365479, + 51.001759707 + ] + ] + } + }, + { + "identifier": "2026-016731--vi-fbm.2026-04-16_19-00-00-000.devi-fbm.2026-04-08_19-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.00899419708839,7.831503476237712,51.00247406783512,7.834452951986991", + "point": "51.00899419708839,7.831503476237712", + "startLcPosition": "72", + "impact": { + "lower": "Olpe-S\u00fcd", + "upper": "Olpe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Olpe - Olpe-S\u00fcd", + "coordinate": { + "lat": 51.00899419708839, + "long": 7.831503476237712 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 19:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 19:00 bis zum 18.04.26 05:00 Uhr.", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 2.5 km hinter AS Olpe und 1.6 km vor AK Olpe-S\u00fcd", + "", + "L\u00e4nge: 0.77 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 16731" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.831503476, + 51.008994197 + ], + [ + 7.8317538, + 51.008700001 + ], + [ + 7.8322104, + 51.008215301 + ], + [ + 7.8330147, + 51.007308901 + ], + [ + 7.833397, + 51.006817301 + ], + [ + 7.8337657, + 51.006205901 + ], + [ + 7.8339936, + 51.005751101 + ], + [ + 7.8341493, + 51.005359501 + ], + [ + 7.8343216, + 51.004845001 + ], + [ + 7.834412, + 51.004477701 + ], + [ + 7.8345027, + 51.003767601 + ], + [ + 7.8345045, + 51.003006501 + ], + [ + 7.834452952, + 51.002474068 + ] + ] + } + }, + { + "identifier": "2026-016731--vi-fbm.2026-04-14_19-00-00-000.devi-fbm.2026-04-08_19-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.01770450647848,7.828950106093411,51.00104733925684,7.834236534626483", + "point": "51.01770450647848,7.828950106093411", + "startLcPosition": "72", + "impact": { + "lower": "Olpe-S\u00fcd", + "upper": "Olpe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Olpe - Olpe-S\u00fcd", + "coordinate": { + "lat": 51.01770450647848, + "long": 7.828950106093411 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.5 km hinter AS Olpe und 1.4 km vor AK Olpe-S\u00fcd", + "", + "L\u00e4nge: 1.93 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 16731" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.828950106, + 51.017704506 + ], + [ + 7.8289312, + 51.017241301 + ], + [ + 7.8288972, + 51.016112001 + ], + [ + 7.828912, + 51.015304801 + ], + [ + 7.8289502, + 51.014636101 + ], + [ + 7.8290133, + 51.013826101 + ], + [ + 7.8290865, + 51.013313701 + ], + [ + 7.829168, + 51.012955901 + ], + [ + 7.8294847, + 51.012028601 + ], + [ + 7.8299488, + 51.011121301 + ], + [ + 7.8302497, + 51.010605701 + ], + [ + 7.8306181, + 51.010079701 + ], + [ + 7.8308679, + 51.009738801 + ], + [ + 7.8310911, + 51.009473001 + ], + [ + 7.8314668, + 51.009037301 + ], + [ + 7.8317538, + 51.008700001 + ], + [ + 7.8322104, + 51.008215301 + ], + [ + 7.8330147, + 51.007308901 + ], + [ + 7.833397, + 51.006817301 + ], + [ + 7.8337657, + 51.006205901 + ], + [ + 7.8339936, + 51.005751101 + ], + [ + 7.8341493, + 51.005359501 + ], + [ + 7.8343216, + 51.004845001 + ], + [ + 7.834412, + 51.004477701 + ], + [ + 7.8345027, + 51.003767601 + ], + [ + 7.8345045, + 51.003006501 + ], + [ + 7.834413, + 51.002061401 + ], + [ + 7.8342983, + 51.001333201 + ], + [ + 7.834236535, + 51.001047339 + ] + ] + } + }, + { + "identifier": "2026-016731--vi-fbm.2026-04-08_19-00-00-000.devi-fbm.2026-04-08_19-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.01770450647848,7.828950106093411,51.00104733925684,7.834236534626483", + "point": "51.01770450647848,7.828950106093411", + "startLcPosition": "72", + "impact": { + "lower": "Olpe-S\u00fcd", + "upper": "Olpe", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Olpe - Olpe-S\u00fcd", + "coordinate": { + "lat": 51.01770450647848, + "long": 7.828950106093411 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.5 km hinter AS Olpe und 1.4 km vor AK Olpe-S\u00fcd", + "", + "L\u00e4nge: 1.93 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 16731" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.828950106, + 51.017704506 + ], + [ + 7.8289312, + 51.017241301 + ], + [ + 7.8288972, + 51.016112001 + ], + [ + 7.828912, + 51.015304801 + ], + [ + 7.8289502, + 51.014636101 + ], + [ + 7.8290133, + 51.013826101 + ], + [ + 7.8290865, + 51.013313701 + ], + [ + 7.829168, + 51.012955901 + ], + [ + 7.8294847, + 51.012028601 + ], + [ + 7.8299488, + 51.011121301 + ], + [ + 7.8302497, + 51.010605701 + ], + [ + 7.8306181, + 51.010079701 + ], + [ + 7.8308679, + 51.009738801 + ], + [ + 7.8310911, + 51.009473001 + ], + [ + 7.8314668, + 51.009037301 + ], + [ + 7.8317538, + 51.008700001 + ], + [ + 7.8322104, + 51.008215301 + ], + [ + 7.8330147, + 51.007308901 + ], + [ + 7.833397, + 51.006817301 + ], + [ + 7.8337657, + 51.006205901 + ], + [ + 7.8339936, + 51.005751101 + ], + [ + 7.8341493, + 51.005359501 + ], + [ + 7.8343216, + 51.004845001 + ], + [ + 7.834412, + 51.004477701 + ], + [ + 7.8345027, + 51.003767601 + ], + [ + 7.8345045, + 51.003006501 + ], + [ + 7.834413, + 51.002061401 + ], + [ + 7.8342983, + 51.001333201 + ], + [ + 7.834236535, + 51.001047339 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2025-11-03_19-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de42", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.03620527358495,7.813739935450226,51.02554082486366,7.827765075390961", + "point": "51.03620527358495,7.813739935450226", + "startLcPosition": "73", + "impact": { + "lower": "Mark", + "upper": "Weidebruch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Weidebruch - Mark", + "startTimestamp": "2025-11-03T19:00:00+01:00", + "coordinate": { + "lat": 51.03620527358495, + "long": 7.813739935450226 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.11.25 um 19:00 Uhr", + "Ende: 18.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.3 km hinter Weidebruch und 2.3 km vor Mark", + "", + "L\u00e4nge: 1.59 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.813739935, + 51.036205274 + ], + [ + 7.814296, + 51.036030401 + ], + [ + 7.8155465, + 51.035543301 + ], + [ + 7.8170689, + 51.034905001 + ], + [ + 7.8178916, + 51.034527001 + ], + [ + 7.8192479, + 51.033856101 + ], + [ + 7.8202597, + 51.033267101 + ], + [ + 7.8216587, + 51.032316501 + ], + [ + 7.8226307, + 51.031623901 + ], + [ + 7.8232458, + 51.031127401 + ], + [ + 7.8235541, + 51.030858901 + ], + [ + 7.8240142, + 51.030458301 + ], + [ + 7.8246359, + 51.029859801 + ], + [ + 7.8251643, + 51.029300901 + ], + [ + 7.8257405, + 51.028645101 + ], + [ + 7.8264499, + 51.027696701 + ], + [ + 7.8270145, + 51.026898201 + ], + [ + 7.8275621, + 51.025969601 + ], + [ + 7.827765075, + 51.025540825 + ] + ] + } + }, + { + "identifier": "2026-017579--vi-fbm.2026-04-14_20-00-00-000.devi-zus.2026-04-14_20-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.038017885175854,7.808143829137415,51.03548075363366,7.815695684624216", + "point": "51.038017885175854,7.808143829137415", + "startLcPosition": "73", + "impact": { + "lower": "Olpe", + "upper": "Weidebruch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Weidebruch - Olpe", + "coordinate": { + "lat": 51.038017885175854, + "long": 7.808143829137415 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.9 km hinter Weidebruch und 0.8 km vor AS Olpe", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - \u00c4nderung Verkehrsf\u00fchrung - AkD 17579" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.808143829, + 51.038017885 + ], + [ + 7.8095144, + 51.037534001 + ], + [ + 7.814296, + 51.036030401 + ], + [ + 7.8155465, + 51.035543301 + ], + [ + 7.815695685, + 51.035480754 + ] + ] + } + }, + { + "identifier": "2026-017579--vi-fbm.2026-04-14_20-00-00-000.devi-zus.2026-04-14_20-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.038017885175854,7.808143829137415,51.03548075363366,7.815695684624216", + "point": "51.038017885175854,7.808143829137415", + "startLcPosition": "73", + "impact": { + "lower": "Olpe", + "upper": "Weidebruch", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Weidebruch - Olpe", + "coordinate": { + "lat": 51.038017885175854, + "long": 7.808143829137415 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 06:00 Uhr.", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.9 km hinter Weidebruch und 0.8 km vor AS Olpe", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - \u00c4nderung Verkehrsf\u00fchrung - AkD 17579" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.808143829, + 51.038017885 + ], + [ + 7.8095144, + 51.037534001 + ], + [ + 7.814296, + 51.036030401 + ], + [ + 7.8155465, + 51.035543301 + ], + [ + 7.815695685, + 51.035480754 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2025-11-03_19-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de36", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.05528770226476,7.745144526209023,51.03620527358495,7.813739935450226", + "point": "51.05528770226476,7.745144526209023", + "startLcPosition": "76", + "impact": { + "lower": "Olpe", + "upper": "Brachtsiepen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Brachtsiepen - Olpe", + "startTimestamp": "2025-11-03T19:00:00+01:00", + "coordinate": { + "lat": 51.05528770226476, + "long": 7.745144526209023 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.11.25 um 19:00 Uhr", + "Ende: 18.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 4.4 km hinter Brachtsiepen und 0.9 km vor AS Olpe", + "", + "L\u00e4nge: 5.61 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.745144526, + 51.055287702 + ], + [ + 7.7477055, + 51.055523701 + ], + [ + 7.7505901, + 51.055802401 + ], + [ + 7.7536844, + 51.056088001 + ], + [ + 7.7570122, + 51.056381201 + ], + [ + 7.7581436, + 51.056482101 + ], + [ + 7.7585041, + 51.056515601 + ], + [ + 7.7598362, + 51.056600101 + ], + [ + 7.7607301, + 51.056638501 + ], + [ + 7.7616253, + 51.056660001 + ], + [ + 7.7625212, + 51.056664301 + ], + [ + 7.7634169, + 51.056651701 + ], + [ + 7.7641207, + 51.056630301 + ], + [ + 7.7653458, + 51.056559001 + ], + [ + 7.7657171, + 51.056531101 + ], + [ + 7.7666849, + 51.056458301 + ], + [ + 7.7676276, + 51.056350901 + ], + [ + 7.7685115, + 51.056235701 + ], + [ + 7.7698596, + 51.056025601 + ], + [ + 7.7717076, + 51.055660001 + ], + [ + 7.7740497, + 51.055079901 + ], + [ + 7.7760976, + 51.054441901 + ], + [ + 7.7780973, + 51.053671001 + ], + [ + 7.7796812, + 51.052957501 + ], + [ + 7.7819007, + 51.051876401 + ], + [ + 7.7836058, + 51.051097001 + ], + [ + 7.7848945, + 51.050590101 + ], + [ + 7.7866, + 51.050061501 + ], + [ + 7.7881284, + 51.049674701 + ], + [ + 7.7896347, + 51.049293501 + ], + [ + 7.7906848, + 51.048982601 + ], + [ + 7.7919776, + 51.048516901 + ], + [ + 7.7928491, + 51.048100401 + ], + [ + 7.7934372, + 51.047769101 + ], + [ + 7.7944659, + 51.047160701 + ], + [ + 7.7953675, + 51.046556401 + ], + [ + 7.7958555, + 51.046206101 + ], + [ + 7.7963434, + 51.045831601 + ], + [ + 7.796817, + 51.045446201 + ], + [ + 7.7973494, + 51.044997601 + ], + [ + 7.797828, + 51.044571901 + ], + [ + 7.7982755, + 51.044146201 + ], + [ + 7.7993931, + 51.043148101 + ], + [ + 7.7999604, + 51.042703401 + ], + [ + 7.8003335, + 51.042406501 + ], + [ + 7.8013964, + 51.041577701 + ], + [ + 7.8025191, + 51.040798401 + ], + [ + 7.8035972, + 51.040136501 + ], + [ + 7.804804, + 51.039495501 + ], + [ + 7.8060663, + 51.038875301 + ], + [ + 7.8074855, + 51.038250301 + ], + [ + 7.8095144, + 51.037534001 + ], + [ + 7.813739935, + 51.036205274 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2025-11-03_19-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de34", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.05435067210032,7.733578326257654,51.05528770226476,7.745144526209023", + "point": "51.05435067210032,7.733578326257654", + "startLcPosition": "76", + "impact": { + "lower": "Drolshagen", + "upper": "Brachtsiepen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Brachtsiepen - Drolshagen", + "startTimestamp": "2025-11-03T19:00:00+01:00", + "coordinate": { + "lat": 51.05435067210032, + "long": 7.733578326257654 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.11.25 um 19:00 Uhr", + "Ende: 18.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 3.5 km hinter Brachtsiepen und 1.5 km vor AS Drolshagen", + "", + "L\u00e4nge: 0.82 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.733578326, + 51.054350672 + ], + [ + 7.7342809, + 51.054362301 + ], + [ + 7.7351391, + 51.054396401 + ], + [ + 7.7360789, + 51.054460001 + ], + [ + 7.7370089, + 51.054537601 + ], + [ + 7.745144526, + 51.055287702 + ] + ] + } + }, + { + "identifier": "2025-008748--vi-bs.2025-07-15_19-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.09951164930611,7.676236397934215,51.09493964062181,7.680722245837296", + "point": "51.09951164930611,7.676236397934215", + "startLcPosition": "78", + "impact": { + "lower": "Neuenschmiede", + "upper": "Meinerzhagen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Meinerzhagen - Neuenschmiede", + "startTimestamp": "2026-03-02T19:00:00+01:00", + "coordinate": { + "lat": 51.09951164930611, + "long": 7.676236397934215 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 19:00 Uhr", + "Ende: 05.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.05.26)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.4 km hinter AS Meinerzhagen und 2.2 km vor Neuenschmiede", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Vorarbeiten f\u00fcr den Ersatzneubau BW Darmcher Weg im Zuge der DB - AlD 8748" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.676236398, + 51.099511649 + ], + [ + 7.6763594, + 51.099280601 + ], + [ + 7.6766279, + 51.098846501 + ], + [ + 7.6770776, + 51.098241701 + ], + [ + 7.6773, + 51.097966701 + ], + [ + 7.6775283, + 51.097711101 + ], + [ + 7.6780913, + 51.097116701 + ], + [ + 7.6789554, + 51.096330201 + ], + [ + 7.6802167, + 51.095316701 + ], + [ + 7.680722246, + 51.094939641 + ] + ] + } + }, + { + "identifier": "2023-004175--vi-bs.2025-12-22_13-00-00-000.devi-zus.2021-12-02_16-45-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.242343812653196,7.641863748103392,51.24547978551704,7.631044526250283", + "point": "51.242343812653196,7.641863748103392", + "startLcPosition": "87", + "impact": { + "lower": "L\u00fcdenscheid-Nord", + "upper": "L\u00fcdenscheid", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | L\u00fcdenscheid - L\u00fcdenscheid-Nord", + "startTimestamp": "2025-12-22T13:00:00+01:00", + "coordinate": { + "lat": 51.242343812653196, + "long": 7.641863748103392 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.12.25 um 13:00 Uhr", + "Ende: 01.10.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.27)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.7 km hinter AS L\u00fcdenscheid und 2.3 km vor AS L\u00fcdenscheid-Nord", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau TB Rahmede - AlD 4175" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.641863748, + 51.242343813 + ], + [ + 7.6417508, + 51.242424901 + ], + [ + 7.6409945, + 51.242898401 + ], + [ + 7.6404151, + 51.243227501 + ], + [ + 7.6395675, + 51.243643901 + ], + [ + 7.6390109, + 51.243891901 + ], + [ + 7.6385107, + 51.244093901 + ], + [ + 7.6374271, + 51.244433101 + ], + [ + 7.6369282, + 51.244574101 + ], + [ + 7.6363435, + 51.244728601 + ], + [ + 7.6357105, + 51.244866301 + ], + [ + 7.6351151, + 51.244973701 + ], + [ + 7.6344821, + 51.245074501 + ], + [ + 7.6338471, + 51.245170301 + ], + [ + 7.6322844, + 51.245359201 + ], + [ + 7.6312044, + 51.245457301 + ], + [ + 7.631044526, + 51.245479786 + ] + ] + } + }, + { + "identifier": "2023-004175--vi-bs.2025-12-22_13-00-00-000.devi-zus.2021-12-02_16-45-00-000.f_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.24548764045148,7.630988674338467,51.256254847978994,7.61196373211795", + "point": "51.24548764045148,7.630988674338467", + "startLcPosition": "89", + "impact": { + "lower": "L\u00fcdenscheid-Nord", + "upper": "Hunscheid", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Hunscheid - L\u00fcdenscheid-Nord", + "startTimestamp": "2025-12-22T13:00:00+01:00", + "coordinate": { + "lat": 51.24548764045148, + "long": 7.630988674338467 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.12.25 um 13:00 Uhr", + "Ende: 01.10.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.27)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 0.3 km hinter Hunscheid und 0.5 km vor AS L\u00fcdenscheid-Nord", + "", + "L\u00e4nge: 1.85 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau TB Rahmede - AlD 4175" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.630988674, + 51.24548764 + ], + [ + 7.6295092, + 51.245695701 + ], + [ + 7.6282432, + 51.245917301 + ], + [ + 7.627047, + 51.246206101 + ], + [ + 7.6258561, + 51.246558701 + ], + [ + 7.6247725, + 51.246975101 + ], + [ + 7.624273, + 51.247195401 + ], + [ + 7.6238283, + 51.247391501 + ], + [ + 7.6230451, + 51.247831401 + ], + [ + 7.6223762, + 51.248248901 + ], + [ + 7.6217093, + 51.248727901 + ], + [ + 7.6209683, + 51.249320301 + ], + [ + 7.620414, + 51.249831101 + ], + [ + 7.6197003, + 51.250518601 + ], + [ + 7.6187298, + 51.251591801 + ], + [ + 7.6180366, + 51.252381101 + ], + [ + 7.6176108, + 51.252841601 + ], + [ + 7.6171608, + 51.253264101 + ], + [ + 7.6167305, + 51.253668201 + ], + [ + 7.6155932, + 51.254484001 + ], + [ + 7.6146545, + 51.255024601 + ], + [ + 7.6132333, + 51.255700001 + ], + [ + 7.611963732, + 51.256254848 + ] + ] + } + }, + { + "identifier": "2023-004171--vi-bs.2025-12-22_13-00-00-000.devi-zus.2022-09-12_06-00-00-000_008.f.de42", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.256254847978994,7.61196373211795,51.275786509557875,7.596468538447496", + "point": "51.256254847978994,7.61196373211795", + "startLcPosition": "89", + "impact": { + "lower": "Kaltenborn", + "upper": "Hunscheid", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Hunscheid - Kaltenborn", + "startTimestamp": "2025-12-22T13:00:00+01:00", + "coordinate": { + "lat": 51.256254847978994, + "long": 7.61196373211795 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.12.25 um 13:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.03.28)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.2 km hinter Hunscheid und 2.3 km vor Kaltenborn", + "", + "L\u00e4nge: 2.51 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau TB Sterbecke - AlD 4171" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.611963732, + 51.256254848 + ], + [ + 7.6118222, + 51.256316701 + ], + [ + 7.611053, + 51.256614501 + ], + [ + 7.6103828, + 51.256950501 + ], + [ + 7.6092394, + 51.257510701 + ], + [ + 7.6079251, + 51.258324301 + ], + [ + 7.6066803, + 51.259211801 + ], + [ + 7.6058687, + 51.259883501 + ], + [ + 7.6053337, + 51.260436101 + ], + [ + 7.6046072, + 51.261209401 + ], + [ + 7.6045375, + 51.261313001 + ], + [ + 7.603992, + 51.261929901 + ], + [ + 7.6035309, + 51.262784301 + ], + [ + 7.6031262, + 51.263468401 + ], + [ + 7.6029174, + 51.263886401 + ], + [ + 7.6026837, + 51.264441701 + ], + [ + 7.6024492, + 51.265128101 + ], + [ + 7.6021035, + 51.266409001 + ], + [ + 7.6019836, + 51.266857801 + ], + [ + 7.6017279, + 51.267767101 + ], + [ + 7.6015067, + 51.268595501 + ], + [ + 7.601178, + 51.269778501 + ], + [ + 7.6011019, + 51.270078101 + ], + [ + 7.6009479, + 51.270589701 + ], + [ + 7.600716, + 51.271212901 + ], + [ + 7.60049, + 51.271764801 + ], + [ + 7.6001854, + 51.272306101 + ], + [ + 7.5998384, + 51.272802101 + ], + [ + 7.5993421, + 51.273392801 + ], + [ + 7.5986032, + 51.274203201 + ], + [ + 7.5980601, + 51.274660101 + ], + [ + 7.5973865, + 51.275159501 + ], + [ + 7.596468538, + 51.27578651 + ] + ] + } + }, + { + "identifier": "2023-004175--vi-bs.2025-12-22_13-00-00-000.devi-zus.2021-12-02_16-45-00-000.f_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.25612918148445,7.611825600487854,51.24536979743693,7.630950432758562", + "point": "51.25612918148445,7.611825600487854", + "startLcPosition": "90", + "impact": { + "lower": "Hunscheid", + "upper": "L\u00fcdenscheid-Nord", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | L\u00fcdenscheid-Nord - Hunscheid", + "startTimestamp": "2025-12-22T13:00:00+01:00", + "coordinate": { + "lat": 51.25612918148445, + "long": 7.611825600487854 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.12.25 um 13:00 Uhr", + "Ende: 01.10.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.27)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.5 km hinter AS L\u00fcdenscheid-Nord und 0.3 km vor Hunscheid", + "", + "L\u00e4nge: 1.85 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau TB Rahmede - AlD 4175" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.6118256, + 51.256129181 + ], + [ + 7.6123907, + 51.255887401 + ], + [ + 7.6134367, + 51.255417401 + ], + [ + 7.6144667, + 51.254940601 + ], + [ + 7.6150836, + 51.254611601 + ], + [ + 7.6155417, + 51.254297301 + ], + [ + 7.6160814, + 51.253946801 + ], + [ + 7.6166039, + 51.253523801 + ], + [ + 7.6175385, + 51.252658501 + ], + [ + 7.6180287, + 51.252120401 + ], + [ + 7.6185533, + 51.251531201 + ], + [ + 7.6191599, + 51.250890001 + ], + [ + 7.6199554, + 51.250029501 + ], + [ + 7.6208132, + 51.249238401 + ], + [ + 7.6215641, + 51.248676701 + ], + [ + 7.622216, + 51.248154801 + ], + [ + 7.622911, + 51.247720601 + ], + [ + 7.6235333, + 51.247368001 + ], + [ + 7.6242038, + 51.247055701 + ], + [ + 7.6251963, + 51.246629201 + ], + [ + 7.6265749, + 51.246165801 + ], + [ + 7.6280287, + 51.245809901 + ], + [ + 7.6296541, + 51.245524501 + ], + [ + 7.630950433, + 51.245369797 + ] + ] + } + }, + { + "identifier": "2026-017687--vi-bs.2026-04-17_09-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.28507331543606,7.581849732184068,51.286902302373825,7.578687000569973", + "point": "51.28507331543606,7.581849732184068", + "startLcPosition": "92", + "impact": { + "lower": "Kaltenborn", + "upper": "Rehweg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Rehweg - Kaltenborn", + "coordinate": { + "lat": 51.28507331543606, + "long": 7.581849732184068 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 09:00 bis 15:00 Uhr", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 2.4 km hinter Rehweg und 0.5 km vor Kaltenborn", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A45 - Sonstiges - AkD 17687" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.581849732, + 51.285073315 + ], + [ + 7.5816642, + 51.285225401 + ], + [ + 7.5804307, + 51.286027901 + ], + [ + 7.5793029, + 51.286614101 + ], + [ + 7.578687001, + 51.286902302 + ] + ] + } + }, + { + "identifier": "2023-004171--vi-bs.2025-12-22_13-00-00-000.devi-zus.2022-09-12_06-00-00-000_008.f.de40", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.27570187856566,7.5963207856063235,51.25612918148445,7.611825600487854", + "point": "51.27570187856566,7.5963207856063235", + "startLcPosition": "93", + "impact": { + "lower": "Hunscheid", + "upper": "Kaltenborn", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Kaltenborn - Hunscheid", + "startTimestamp": "2025-12-22T13:00:00+01:00", + "coordinate": { + "lat": 51.27570187856566, + "long": 7.5963207856063235 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.12.25 um 13:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.03.28)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 2.3 km hinter Kaltenborn und 2.2 km vor Hunscheid", + "", + "L\u00e4nge: 2.51 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau TB Sterbecke - AlD 4171" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.596320786, + 51.275701879 + ], + [ + 7.5970077, + 51.275222101 + ], + [ + 7.5977394, + 51.274634101 + ], + [ + 7.5989308, + 51.273510501 + ], + [ + 7.599538, + 51.272756901 + ], + [ + 7.6001006, + 51.271891801 + ], + [ + 7.6004729, + 51.271029501 + ], + [ + 7.6006354, + 51.270598301 + ], + [ + 7.6009779, + 51.269437801 + ], + [ + 7.6012255, + 51.268570601 + ], + [ + 7.6016536, + 51.266916401 + ], + [ + 7.6018151, + 51.266384701 + ], + [ + 7.6022162, + 51.264975101 + ], + [ + 7.6023904, + 51.264448701 + ], + [ + 7.6026616, + 51.263822901 + ], + [ + 7.6029529, + 51.263173201 + ], + [ + 7.6033139, + 51.262577201 + ], + [ + 7.6034322, + 51.262373201 + ], + [ + 7.6038452, + 51.261798501 + ], + [ + 7.6043023, + 51.261228601 + ], + [ + 7.604766, + 51.260687501 + ], + [ + 7.6052706, + 51.260195401 + ], + [ + 7.606409, + 51.259150701 + ], + [ + 7.6064428, + 51.259131501 + ], + [ + 7.6075292, + 51.258344501 + ], + [ + 7.607867, + 51.258143301 + ], + [ + 7.6087552, + 51.257606301 + ], + [ + 7.6095684, + 51.257162301 + ], + [ + 7.6106791, + 51.256619701 + ], + [ + 7.6118256, + 51.256129181 + ] + ] + } + }, + { + "identifier": "2023-004171--vi-bs.2025-12-22_13-00-00-000.devi-zus.2022-09-12_06-00-00-000_008.f.de38", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.280148311010265,7.588291034266599,51.27568850805216,7.596339928912734", + "point": "51.280148311010265,7.588291034266599", + "startLcPosition": "93", + "impact": { + "lower": "Rehweg", + "upper": "Kaltenborn", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Kaltenborn - Rehweg", + "startTimestamp": "2025-12-22T13:00:00+01:00", + "coordinate": { + "lat": 51.280148311010265, + "long": 7.588291034266599 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.12.25 um 13:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.03.28)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 1.5 km hinter Kaltenborn und 0.9 km vor Rehweg", + "", + "L\u00e4nge: 0.75 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A45 - Ersatzneubau TB Sterbecke - AlD 4171" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.588291034, + 51.280148311 + ], + [ + 7.5891096, + 51.279720901 + ], + [ + 7.5900526, + 51.279200201 + ], + [ + 7.5915109, + 51.278439401 + ], + [ + 7.5932492, + 51.277484301 + ], + [ + 7.5942435, + 51.276946001 + ], + [ + 7.5949977, + 51.276525701 + ], + [ + 7.5960533, + 51.275888701 + ], + [ + 7.596339929, + 51.275688508 + ] + ] + } + }, + { + "identifier": "2023-001227--vi-bs.2022-05-03_19-00-00-000.devi-zus.2022-05-03_19-00-00-000.f_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.31910444990989,7.543446163057389,51.32218137701904,7.536401861951459", + "point": "51.31910444990989,7.543446163057389", + "startLcPosition": "94", + "impact": { + "lower": "Waterh\u00f6vel", + "upper": "R\u00f6lveder M\u00fchle", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | R\u00f6lveder M\u00fchle - Waterh\u00f6vel", + "startTimestamp": "2022-05-03T19:00:00+02:00", + "coordinate": { + "lat": 51.31910444990989, + "long": 7.543446163057389 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.05.22 um 19:00 Uhr", + "Ende: 14.01.28 um 19:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 4.4 km hinter R\u00f6lveder M\u00fchle und 1.9 km vor Waterh\u00f6vel", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Ersatzneubau TB Kattenohl und Kompensation TB Brunsbecke - AlD 1227" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.543446163, + 51.31910445 + ], + [ + 7.5428523, + 51.319312901 + ], + [ + 7.5421085, + 51.319583401 + ], + [ + 7.5413937, + 51.319845501 + ], + [ + 7.5403991, + 51.320235701 + ], + [ + 7.5398507, + 51.320456901 + ], + [ + 7.5389946, + 51.320826801 + ], + [ + 7.5383208, + 51.321166001 + ], + [ + 7.5376946, + 51.321462201 + ], + [ + 7.5369728, + 51.321854701 + ], + [ + 7.536425, + 51.322167101 + ], + [ + 7.536401862, + 51.322181377 + ] + ] + } + }, + { + "identifier": "2023-001227--vi-bs.2022-05-20_19-00-00-000.devi-zus.2022-05-03_19-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32978114944485,7.529067787035351,51.34012332678195,7.524590795343559", + "point": "51.32978114944485,7.529067787035351", + "startLcPosition": "95", + "impact": { + "lower": "Hagen-S\u00fcd", + "upper": "Brunsbecke", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Brunsbecke - Hagen-S\u00fcd", + "startTimestamp": "2022-05-20T19:00:00+02:00", + "coordinate": { + "lat": 51.32978114944485, + "long": 7.529067787035351 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.05.22 um 19:00 Uhr", + "Ende: 14.01.28 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen 1.0 km hinter Brunsbecke und 0.9 km vor AS Hagen-S\u00fcd", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Ersatzneubau TB Kattenohl und Kompensation TB Brunsbecke - AlD 1227" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.529067787, + 51.329781149 + ], + [ + 7.5288786, + 51.330229801 + ], + [ + 7.5287779, + 51.330498301 + ], + [ + 7.528275, + 51.332356301 + ], + [ + 7.5281445, + 51.332878001 + ], + [ + 7.5279112, + 51.333809301 + ], + [ + 7.5277023, + 51.334441801 + ], + [ + 7.5275199, + 51.334865601 + ], + [ + 7.5274047, + 51.335114201 + ], + [ + 7.526969, + 51.335849401 + ], + [ + 7.5267299, + 51.336172701 + ], + [ + 7.5261284, + 51.336929701 + ], + [ + 7.5256648, + 51.337543401 + ], + [ + 7.5252781, + 51.338100401 + ], + [ + 7.5249414, + 51.338687601 + ], + [ + 7.524819, + 51.338998201 + ], + [ + 7.5246961, + 51.339560701 + ], + [ + 7.5246584, + 51.339797301 + ], + [ + 7.524590795, + 51.340123327 + ] + ] + } + }, + { + "identifier": "2023-001227--vi-bs.2022-05-03_19-00-00-000.devi-zus.2022-05-03_19-00-00-000.f_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32218137701904,7.536401861951459,51.32970130947135,7.529114381912332", + "point": "51.32218137701904,7.536401861951459", + "startLcPosition": "95", + "impact": { + "lower": "Waterh\u00f6vel", + "upper": "Brunsbecke", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 | Brunsbecke - Waterh\u00f6vel", + "startTimestamp": "2022-05-03T19:00:00+02:00", + "coordinate": { + "lat": 51.32218137701904, + "long": 7.536401861951459 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.05.22 um 19:00 Uhr", + "Ende: 14.01.28 um 19:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Gie\u00dfen -> Hagen, zwischen Brunsbecke und 0.9 km vor Waterh\u00f6vel", + "", + "L\u00e4nge: 0.99 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Ersatzneubau TB Kattenohl und Kompensation TB Brunsbecke - AlD 1227" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.536401862, + 51.322181377 + ], + [ + 7.5354535, + 51.322766501 + ], + [ + 7.5347024, + 51.323306901 + ], + [ + 7.5344118, + 51.323515901 + ], + [ + 7.5337772, + 51.323981501 + ], + [ + 7.5335769, + 51.324190701 + ], + [ + 7.5329149, + 51.324752501 + ], + [ + 7.5321921, + 51.325439701 + ], + [ + 7.531628, + 51.326029801 + ], + [ + 7.5311828, + 51.326552301 + ], + [ + 7.5308597, + 51.326984701 + ], + [ + 7.5306008, + 51.327342501 + ], + [ + 7.5303402, + 51.327728401 + ], + [ + 7.5298971, + 51.328476001 + ], + [ + 7.5294967, + 51.329108201 + ], + [ + 7.529114382, + 51.329701309 + ] + ] + } + }, + { + "identifier": "2023-001227--vi-bs.2022-05-03_19-00-00-000.devi-zus.2022-05-03_19-00-00-000.f_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32968716806731,7.529022944372803,51.32208526954804,7.536252431866938", + "point": "51.32968716806731,7.529022944372803", + "startLcPosition": "96", + "impact": { + "lower": "Brunsbecke", + "upper": "Waterh\u00f6vel", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Waterh\u00f6vel - Brunsbecke", + "startTimestamp": "2022-05-03T19:00:00+02:00", + "coordinate": { + "lat": 51.32968716806731, + "long": 7.529022944372803 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.05.22 um 19:00 Uhr", + "Ende: 14.01.28 um 19:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.9 km hinter Waterh\u00f6vel und Brunsbecke", + "", + "L\u00e4nge: 0.99 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Ersatzneubau TB Kattenohl und Kompensation TB Brunsbecke - AlD 1227" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.529022944, + 51.329687168 + ], + [ + 7.5293044, + 51.329095401 + ], + [ + 7.5296799, + 51.328427601 + ], + [ + 7.5298932, + 51.328054401 + ], + [ + 7.5301225, + 51.327682801 + ], + [ + 7.5303948, + 51.327291401 + ], + [ + 7.5306731, + 51.326919701 + ], + [ + 7.5310019, + 51.326488501 + ], + [ + 7.5314703, + 51.325953701 + ], + [ + 7.532102, + 51.325291701 + ], + [ + 7.5326572, + 51.324775201 + ], + [ + 7.533436, + 51.324096501 + ], + [ + 7.5338541, + 51.323713901 + ], + [ + 7.5344912, + 51.323243501 + ], + [ + 7.5351616, + 51.322776501 + ], + [ + 7.535956, + 51.322264601 + ], + [ + 7.536252432, + 51.32208527 + ] + ] + } + }, + { + "identifier": "2023-001227--vi-bs.2022-05-20_19-00-00-000.devi-zus.2022-05-03_19-00-00-000.f_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.34010341967486,7.524381696510797,51.32976467031813,7.528986082263133", + "point": "51.34010341967486,7.524381696510797", + "startLcPosition": "97", + "impact": { + "lower": "Brunsbecke", + "upper": "Hagen-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Hagen-S\u00fcd - Brunsbecke", + "startTimestamp": "2022-05-20T19:00:00+02:00", + "coordinate": { + "lat": 51.34010341967486, + "long": 7.524381696510797 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.05.22 um 19:00 Uhr", + "Ende: 14.01.28 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.9 km hinter AS Hagen-S\u00fcd und 1.0 km vor Brunsbecke", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Ersatzneubau TB Kattenohl und Kompensation TB Brunsbecke - AlD 1227" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.524381697, + 51.34010342 + ], + [ + 7.52447, + 51.339771101 + ], + [ + 7.5245272, + 51.339542101 + ], + [ + 7.5246845, + 51.339068901 + ], + [ + 7.524862, + 51.338678601 + ], + [ + 7.5251952, + 51.338086501 + ], + [ + 7.5255766, + 51.337530401 + ], + [ + 7.5260614, + 51.336912701 + ], + [ + 7.5262859, + 51.336632101 + ], + [ + 7.526636, + 51.336148701 + ], + [ + 7.5268768, + 51.335835901 + ], + [ + 7.5270542, + 51.335560401 + ], + [ + 7.5273515, + 51.335057201 + ], + [ + 7.5274405, + 51.334854301 + ], + [ + 7.5276163, + 51.334433501 + ], + [ + 7.5281101, + 51.332720901 + ], + [ + 7.5281923, + 51.332352501 + ], + [ + 7.5286862, + 51.330486401 + ], + [ + 7.5289386, + 51.329864501 + ], + [ + 7.528986082, + 51.32976467 + ] + ] + } + }, + { + "identifier": "2026-017782--vi-bs.2026-04-11_06-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35508234062131,7.5204669863969125,51.35572806119407,7.519470599500162", + "point": "51.35508234062131,7.5204669863969125", + "startLcPosition": "97", + "impact": { + "lower": "Hagen", + "upper": "Hagen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfen -> Dortmund", + "title": "A45 | Hagen-S\u00fcd - Hagen", + "coordinate": { + "lat": 51.35508234062131, + "long": 7.5204669863969125 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 06:00 bis 11:00 Uhr", + "", + "A45: Gie\u00dfen -> Dortmund, zwischen 0.9 km hinter AS Hagen-S\u00fcd und 1.6 km vor AK Hagen", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A45 - Beseitigung Unfallfolgen - AkD 17782" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.520466986, + 51.355082341 + ], + [ + 7.5198695, + 51.355463301 + ], + [ + 7.5194706, + 51.355728061 + ] + ] + } + }, + { + "identifier": "2026-017724--vi-bs.2026-04-16_09-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.34455071439333,7.525106437971255,51.340085688356126,7.52438640809772", + "point": "51.34455071439333,7.525106437971255", + "startLcPosition": "97", + "impact": { + "lower": "Waterh\u00f6vel", + "upper": "Hagen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 | Hagen-S\u00fcd - Waterh\u00f6vel", + "coordinate": { + "lat": 51.34455071439333, + "long": 7.525106437971255 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A45: Hagen -> Gie\u00dfen, zwischen 0.4 km hinter AS Hagen-S\u00fcd und 0.3 km vor Waterh\u00f6vel", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A45 - Sonstiges - AkD 17724" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.525106438, + 51.344550714 + ], + [ + 7.5250844, + 51.344506801 + ], + [ + 7.5248725, + 51.344082701 + ], + [ + 7.5246972, + 51.343679901 + ], + [ + 7.5245932, + 51.343415401 + ], + [ + 7.5245159, + 51.343181301 + ], + [ + 7.5244461, + 51.342959701 + ], + [ + 7.5243919, + 51.342739001 + ], + [ + 7.5243138, + 51.342377601 + ], + [ + 7.524256, + 51.341989301 + ], + [ + 7.5242286, + 51.341581101 + ], + [ + 7.5242424, + 51.340990301 + ], + [ + 7.5243096, + 51.340453301 + ], + [ + 7.524369, + 51.340151201 + ], + [ + 7.524386408, + 51.340085688 + ] + ] + } + }, + { + "identifier": "2023-001227--vi-bs.2022-05-20_19-00-00-000.devi-zus.2022-05-03_19-00-00-000.f_001.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.349833656461044,7.525569561633511,51.34026714940574,7.5243462018874965", + "point": "51.349833656461044,7.525569561633511", + "startLcPosition": "98", + "impact": { + "lower": "Waterh\u00f6vel", + "upper": "Hagen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Gie\u00dfen", + "title": "A45 | Hagen - Waterh\u00f6vel", + "startTimestamp": "2022-05-20T19:00:00+02:00", + "coordinate": { + "lat": 51.349833656461044, + "long": 7.525569561633511 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.05.22 um 19:00 Uhr", + "Ende: 14.01.28 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "A45: Dortmund -> Gie\u00dfen, zwischen 2.4 km hinter AK Hagen und 0.3 km vor Waterh\u00f6vel", + "", + "L\u00e4nge: 1.08 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Ersatzneubau TB Kattenohl und Kompensation TB Brunsbecke - AlD 1227" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.525569562, + 51.349833656 + ], + [ + 7.5256508, + 51.349638901 + ], + [ + 7.5257593, + 51.349321801 + ], + [ + 7.5258921, + 51.348732001 + ], + [ + 7.5259302, + 51.348500701 + ], + [ + 7.5259488, + 51.348333901 + ], + [ + 7.5259674, + 51.348119601 + ], + [ + 7.5259767, + 51.347950601 + ], + [ + 7.5259691, + 51.347372301 + ], + [ + 7.525951, + 51.347069001 + ], + [ + 7.5258752, + 51.346613401 + ], + [ + 7.525813, + 51.346319201 + ], + [ + 7.525703, + 51.345924701 + ], + [ + 7.5255946, + 51.345614901 + ], + [ + 7.5254727, + 51.345318801 + ], + [ + 7.5253009, + 51.344938201 + ], + [ + 7.5250844, + 51.344506801 + ], + [ + 7.5248725, + 51.344082701 + ], + [ + 7.5246972, + 51.343679901 + ], + [ + 7.5245932, + 51.343415401 + ], + [ + 7.5245159, + 51.343181301 + ], + [ + 7.5244461, + 51.342959701 + ], + [ + 7.5243919, + 51.342739001 + ], + [ + 7.5243138, + 51.342377601 + ], + [ + 7.524256, + 51.341989301 + ], + [ + 7.5242286, + 51.341581101 + ], + [ + 7.5242424, + 51.340990301 + ], + [ + 7.5243096, + 51.340453301 + ], + [ + 7.524346202, + 51.340267149 + ] + ] + } + }, + { + "identifier": "2023-004527--vi-bs.2024-11-25_05-00-00-000.devi-zus.2024-05-11_20-00-00-000_001.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.42643705714249,7.544767240873194,51.43450297099884,7.5271157160169375", + "point": "51.42643705714249,7.544767240873194", + "startLcPosition": "101", + "impact": { + "lower": "Dortmund-S\u00fcd", + "upper": "Schwerte-Ergste", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Schwerte-Ergste - Dortmund-S\u00fcd", + "startTimestamp": "2024-11-25T05:00:00+01:00", + "coordinate": { + "lat": 51.42643705714249, + "long": 7.544767240873194 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.11.24 um 05:00 Uhr", + "Ende: 28.07.27 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "11.04.26", + "(Ende der Gesamtma\u00dfnahme: 04.06.29)", + "", + "A45: Hagen -> Dortmund, zwischen 2.0 km hinter AS Schwerte-Ergste und 3.2 km vor AS Dortmund-S\u00fcd", + "", + "L\u00e4nge: 1.53 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.544767241, + 51.426437057 + ], + [ + 7.5444386, + 51.426689501 + ], + [ + 7.5441664, + 51.426902301 + ], + [ + 7.5433922, + 51.427461001 + ], + [ + 7.5426181, + 51.427989901 + ], + [ + 7.5419639, + 51.428415801 + ], + [ + 7.5405514, + 51.429250501 + ], + [ + 7.5392444, + 51.429965501 + ], + [ + 7.5389018, + 51.430129601 + ], + [ + 7.5382882, + 51.430421401 + ], + [ + 7.5379739, + 51.430562401 + ], + [ + 7.5373091, + 51.430847101 + ], + [ + 7.5366827, + 51.431101401 + ], + [ + 7.5361498, + 51.431309701 + ], + [ + 7.5355086, + 51.431549901 + ], + [ + 7.5347028, + 51.431837001 + ], + [ + 7.5338574, + 51.432129301 + ], + [ + 7.5333462, + 51.432302801 + ], + [ + 7.5326678, + 51.432529901 + ], + [ + 7.5319649, + 51.432762801 + ], + [ + 7.5311501, + 51.433039901 + ], + [ + 7.530205, + 51.433361001 + ], + [ + 7.5294674, + 51.433621701 + ], + [ + 7.528694, + 51.433901601 + ], + [ + 7.5274159, + 51.434374401 + ], + [ + 7.527115716, + 51.434502971 + ] + ] + } + }, + { + "identifier": "2026-016375--vi-bs.2026-04-07_20-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.41293690197502,7.551577222381732,51.430083206963715,7.538998659538905", + "point": "51.41293690197502,7.551577222381732", + "startLcPosition": "101", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Schwerte-Ergste", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Schwerte-Ergste - Westhofener Kreuz", + "coordinate": { + "lat": 51.41293690197502, + "long": 7.551577222381732 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 21:00 bis zum 18.04.26 05:00 Uhr.", + "20.04.26 20:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "24.04.26 21:00 bis zum 25.04.26 05:00 Uhr.", + "", + "A45: Hagen -> Dortmund, zwischen 0.3 km hinter AS Schwerte-Ergste und 0.5 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 2.18 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Bauwerksarbeiten - AkD 16375" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.551577222, + 51.412936902 + ], + [ + 7.551622, + 51.413095701 + ], + [ + 7.5516971, + 51.413455401 + ], + [ + 7.5517917, + 51.414074201 + ], + [ + 7.5518584, + 51.414784401 + ], + [ + 7.5518594, + 51.415362701 + ], + [ + 7.5518344, + 51.415832801 + ], + [ + 7.5517872, + 51.416286601 + ], + [ + 7.5516299, + 51.417052901 + ], + [ + 7.5516011, + 51.417202501 + ], + [ + 7.5512863, + 51.418181401 + ], + [ + 7.5510321, + 51.418800801 + ], + [ + 7.5507485, + 51.419415801 + ], + [ + 7.5502167, + 51.420383301 + ], + [ + 7.5494981, + 51.421477701 + ], + [ + 7.5487667, + 51.422500001 + ], + [ + 7.5479704, + 51.423412001 + ], + [ + 7.54726, + 51.424194401 + ], + [ + 7.5471205, + 51.424336801 + ], + [ + 7.5464577, + 51.424984901 + ], + [ + 7.5464488, + 51.424993701 + ], + [ + 7.5455564, + 51.425800601 + ], + [ + 7.5447858, + 51.426422801 + ], + [ + 7.5444386, + 51.426689501 + ], + [ + 7.5441664, + 51.426902301 + ], + [ + 7.5433922, + 51.427461001 + ], + [ + 7.5426181, + 51.427989901 + ], + [ + 7.5419639, + 51.428415801 + ], + [ + 7.5405514, + 51.429250501 + ], + [ + 7.5392444, + 51.429965501 + ], + [ + 7.53899866, + 51.430083207 + ] + ] + } + }, + { + "identifier": "2025-037554--vi-bs.2026-02-23_20-00-00-000.devi-zus.2025-11-03_20-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.420996760004655,7.5498138979434355,51.42643705714249,7.544767240873194", + "point": "51.420996760004655,7.5498138979434355", + "startLcPosition": "101", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Schwerte-Ergste", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Schwerte-Ergste - Westhofener Kreuz", + "startTimestamp": "2026-02-23T20:00:00+01:00", + "coordinate": { + "lat": 51.420996760004655, + "long": 7.5498138979434355 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 20:00 Uhr", + "Ende: 24.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.07.26)", + "", + "A45: Hagen -> Dortmund, zwischen 1.3 km hinter AS Schwerte-Ergste und 1.1 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "A45 - Erneuerung der Fahrbahn\u00fcberg\u00e4nge TB Rettelm\u00fchle - AlD 37554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.549813898, + 51.42099676 + ], + [ + 7.5494981, + 51.421477701 + ], + [ + 7.5487667, + 51.422500001 + ], + [ + 7.5479704, + 51.423412001 + ], + [ + 7.54726, + 51.424194401 + ], + [ + 7.5471205, + 51.424336801 + ], + [ + 7.5464577, + 51.424984901 + ], + [ + 7.5464488, + 51.424993701 + ], + [ + 7.5455564, + 51.425800601 + ], + [ + 7.5447858, + 51.426422801 + ], + [ + 7.544767241, + 51.426437057 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2026-04-09_20-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de21", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.439659308972914,7.515516396096422,51.44180160892452,7.505658597301281", + "point": "51.439659308972914,7.515516396096422", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund-S\u00fcd", + "upper": "Westhofener Kreuz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Westhofener Kreuz - Dortmund-S\u00fcd", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 51.439659308972914, + "long": 7.515516396096422 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 30.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Hagen -> Dortmund, zwischen 1.4 km hinter AK Westhofener Kreuz und 1.4 km vor AS Dortmund-S\u00fcd", + "", + "L\u00e4nge: 0.73 km | Maximale Durchfahrtsbreite: 8.45 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.515516396, + 51.439659309 + ], + [ + 7.515061, + 51.439793101 + ], + [ + 7.5141601, + 51.440035201 + ], + [ + 7.5133729, + 51.440234001 + ], + [ + 7.5125551, + 51.440425901 + ], + [ + 7.5117674, + 51.440606901 + ], + [ + 7.5105815, + 51.440862301 + ], + [ + 7.509479, + 51.441096701 + ], + [ + 7.5087951, + 51.441231101 + ], + [ + 7.5084119, + 51.441306401 + ], + [ + 7.5073197, + 51.441509501 + ], + [ + 7.506252, + 51.441701801 + ], + [ + 7.505658597, + 51.441801609 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2025-10-28_05-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.439659308972914,7.515516396096422,51.44180160892452,7.505658597301281", + "point": "51.439659308972914,7.515516396096422", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund-S\u00fcd", + "upper": "Westhofener Kreuz", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Westhofener Kreuz - Dortmund-S\u00fcd", + "startTimestamp": "2025-10-28T05:00:00+01:00", + "coordinate": { + "lat": 51.439659308972914, + "long": 7.515516396096422 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.10.25 um 05:00 Uhr", + "Ende: 09.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Hagen -> Dortmund, zwischen 1.4 km hinter AK Westhofener Kreuz und 1.4 km vor AS Dortmund-S\u00fcd", + "", + "L\u00e4nge: 0.73 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.45 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.515516396, + 51.439659309 + ], + [ + 7.515061, + 51.439793101 + ], + [ + 7.5141601, + 51.440035201 + ], + [ + 7.5133729, + 51.440234001 + ], + [ + 7.5125551, + 51.440425901 + ], + [ + 7.5117674, + 51.440606901 + ], + [ + 7.5105815, + 51.440862301 + ], + [ + 7.509479, + 51.441096701 + ], + [ + 7.5087951, + 51.441231101 + ], + [ + 7.5084119, + 51.441306401 + ], + [ + 7.5073197, + 51.441509501 + ], + [ + 7.506252, + 51.441701801 + ], + [ + 7.505658597, + 51.441801609 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2025-10-28_05-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43693258818502,7.522120090109826,51.439659308972914,7.515516396096417", + "point": "51.43693258818502,7.522120090109826", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund-S\u00fcd", + "upper": "Westhofener Kreuz", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Westhofener Kreuz - Dortmund-S\u00fcd", + "startTimestamp": "2025-10-28T05:00:00+01:00", + "coordinate": { + "lat": 51.43693258818502, + "long": 7.522120090109826 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.10.25 um 05:00 Uhr", + "Ende: 09.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Hagen -> Dortmund, zwischen 0.9 km hinter AK Westhofener Kreuz und 2.2 km vor AS Dortmund-S\u00fcd", + "", + "L\u00e4nge: 0.55 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.52212009, + 51.436932588 + ], + [ + 7.5216821, + 51.437160201 + ], + [ + 7.5209614, + 51.437523901 + ], + [ + 7.5205706, + 51.437718901 + ], + [ + 7.5201801, + 51.437898101 + ], + [ + 7.519465, + 51.438211601 + ], + [ + 7.5187403, + 51.438533901 + ], + [ + 7.5179962, + 51.438822601 + ], + [ + 7.517276, + 51.439081301 + ], + [ + 7.5165371, + 51.439335601 + ], + [ + 7.51577, + 51.439584801 + ], + [ + 7.515516396, + 51.439659309 + ] + ] + } + }, + { + "identifier": "2023-004457--vi-bs.2025-06-30_20-00-00-000.devi-zus.2023-06-01_05-00-00-000_006.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.44180160892452,7.505658597301281,51.44319055170586,7.494888357763466", + "point": "51.44180160892452,7.505658597301281", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund-S\u00fcd", + "upper": "Westhofener Kreuz", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Westhofener Kreuz - Dortmund-S\u00fcd", + "startTimestamp": "2025-06-30T20:00:00+02:00", + "coordinate": { + "lat": 51.44180160892452, + "long": 7.505658597301281 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.06.25 um 20:00 Uhr", + "Ende: 05.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.26)", + "", + "A45: Hagen -> Dortmund, zwischen 2.1 km hinter AK Westhofener Kreuz und 0.7 km vor AS Dortmund-S\u00fcd", + "", + "L\u00e4nge: 0.76 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8.45 m", + "", + "A45 - Verst\u00e4rkung BW Rombergholz und BW Schorveskopf - AlD 4457" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.505658597, + 51.441801609 + ], + [ + 7.5051824, + 51.441881701 + ], + [ + 7.503999, + 51.442078701 + ], + [ + 7.5031763, + 51.442207601 + ], + [ + 7.5020698, + 51.442369801 + ], + [ + 7.5014968, + 51.442450901 + ], + [ + 7.4998979, + 51.442659901 + ], + [ + 7.4988547, + 51.442786601 + ], + [ + 7.4978411, + 51.442900601 + ], + [ + 7.4968363, + 51.443006701 + ], + [ + 7.4958545, + 51.443100901 + ], + [ + 7.494888358, + 51.443190552 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2026-04-09_20-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de17", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.43693258818502,7.522120090109826,51.439659308972914,7.515516396096417", + "point": "51.43693258818502,7.522120090109826", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund-S\u00fcd", + "upper": "Westhofener Kreuz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Westhofener Kreuz - Dortmund-S\u00fcd", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 51.43693258818502, + "long": 7.522120090109826 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 30.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Hagen -> Dortmund, zwischen 0.9 km hinter AK Westhofener Kreuz und 2.2 km vor AS Dortmund-S\u00fcd", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.52212009, + 51.436932588 + ], + [ + 7.5216821, + 51.437160201 + ], + [ + 7.5209614, + 51.437523901 + ], + [ + 7.5205706, + 51.437718901 + ], + [ + 7.5201801, + 51.437898101 + ], + [ + 7.519465, + 51.438211601 + ], + [ + 7.5187403, + 51.438533901 + ], + [ + 7.5179962, + 51.438822601 + ], + [ + 7.517276, + 51.439081301 + ], + [ + 7.5165371, + 51.439335601 + ], + [ + 7.51577, + 51.439584801 + ], + [ + 7.515516396, + 51.439659309 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2026-04-09_20-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de15", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.43450297099884,7.5271157160169375,51.43693258818502,7.522120090109826", + "point": "51.43450297099884,7.5271157160169375", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund-S\u00fcd", + "upper": "Westhofener Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Westhofener Kreuz - Dortmund-S\u00fcd", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 51.43450297099884, + "long": 7.5271157160169375 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 30.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Hagen -> Dortmund, zwischen 0.4 km hinter AK Westhofener Kreuz und 2.7 km vor AS Dortmund-S\u00fcd", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.527115716, + 51.434502971 + ], + [ + 7.5263204, + 51.434843601 + ], + [ + 7.5261524, + 51.434915501 + ], + [ + 7.5255185, + 51.435199201 + ], + [ + 7.5247181, + 51.435569801 + ], + [ + 7.5239453, + 51.435950301 + ], + [ + 7.5231052, + 51.436409101 + ], + [ + 7.5224291, + 51.436772001 + ], + [ + 7.52212009, + 51.436932588 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2025-10-28_05-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43450297099884,7.5271157160169375,51.43693258818502,7.522120090109826", + "point": "51.43450297099884,7.5271157160169375", + "startLcPosition": "102", + "impact": { + "lower": "Dortmund-S\u00fcd", + "upper": "Westhofener Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Westhofener Kreuz - Dortmund-S\u00fcd", + "startTimestamp": "2025-10-28T05:00:00+01:00", + "coordinate": { + "lat": 51.43450297099884, + "long": 7.5271157160169375 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.10.25 um 05:00 Uhr", + "Ende: 09.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Hagen -> Dortmund, zwischen 0.4 km hinter AK Westhofener Kreuz und 2.7 km vor AS Dortmund-S\u00fcd", + "", + "L\u00e4nge: 0.44 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.527115716, + 51.434502971 + ], + [ + 7.5263204, + 51.434843601 + ], + [ + 7.5261524, + 51.434915501 + ], + [ + 7.5255185, + 51.435199201 + ], + [ + 7.5247181, + 51.435569801 + ], + [ + 7.5239453, + 51.435950301 + ], + [ + 7.5231052, + 51.436409101 + ], + [ + 7.5224291, + 51.436772001 + ], + [ + 7.52212009, + 51.436932588 + ] + ] + } + }, + { + "identifier": "2026-017044--vi-bs.2026-04-15_19-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.44360813714049,7.486200209964784,51.441612030166176,7.4538273214990145", + "point": "51.44360813714049,7.486200209964784", + "startLcPosition": "102", + "impact": { + "lower": "Fl\u00f6z Mausegatt", + "upper": "Westhofener Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Westhofener Kreuz - Fl\u00f6z Mausegatt", + "coordinate": { + "lat": 51.44360813714049, + "long": 7.486200209964784 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 19:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A45: Hagen -> Dortmund, zwischen 3.5 km hinter AK Westhofener Kreuz und 0.8 km vor Fl\u00f6z Mausegatt", + "", + "L\u00e4nge: 2.27 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Fahrbahninstandsetzung - AkD 17044" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.48620021, + 51.443608137 + ], + [ + 7.485757, + 51.443612501 + ], + [ + 7.4847786, + 51.443610901 + ], + [ + 7.4842024, + 51.443601401 + ], + [ + 7.4826867, + 51.443573001 + ], + [ + 7.4814133, + 51.443526701 + ], + [ + 7.4803076, + 51.443476201 + ], + [ + 7.4794513, + 51.443426101 + ], + [ + 7.4789121, + 51.443393001 + ], + [ + 7.4780868, + 51.443334901 + ], + [ + 7.4773457, + 51.443268401 + ], + [ + 7.4766683, + 51.443208501 + ], + [ + 7.475328, + 51.443079701 + ], + [ + 7.4746354, + 51.443008201 + ], + [ + 7.4738572, + 51.442920601 + ], + [ + 7.4730954, + 51.442831701 + ], + [ + 7.4723508, + 51.442747901 + ], + [ + 7.471402, + 51.442634101 + ], + [ + 7.4701447, + 51.442471601 + ], + [ + 7.4694091, + 51.442376901 + ], + [ + 7.4674582, + 51.442136001 + ], + [ + 7.4667295, + 51.442050601 + ], + [ + 7.4659928, + 51.441974001 + ], + [ + 7.4648149, + 51.441859301 + ], + [ + 7.463536, + 51.441755001 + ], + [ + 7.4623287, + 51.441680801 + ], + [ + 7.4619694, + 51.441659801 + ], + [ + 7.4611421, + 51.441616001 + ], + [ + 7.4603219, + 51.441586601 + ], + [ + 7.4594825, + 51.441560301 + ], + [ + 7.4587744, + 51.441557701 + ], + [ + 7.4583745, + 51.441550901 + ], + [ + 7.4569277, + 51.441547501 + ], + [ + 7.4553181, + 51.441569701 + ], + [ + 7.4543519, + 51.441586601 + ], + [ + 7.453827321, + 51.44161203 + ] + ] + } + }, + { + "identifier": "2026-017039--vi-bs.2026-04-09_19-00-00-000_008.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.44360813714049,7.486200209964784,51.441987730556576,7.4488369582314276", + "point": "51.44360813714049,7.486200209964784", + "startLcPosition": "102", + "impact": { + "lower": "Fl\u00f6z Mausegatt", + "upper": "Westhofener Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Westhofener Kreuz - Fl\u00f6z Mausegatt", + "coordinate": { + "lat": 51.44360813714049, + "long": 7.486200209964784 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A45: Hagen -> Dortmund, zwischen 3.5 km hinter AK Westhofener Kreuz und 0.5 km vor Fl\u00f6z Mausegatt", + "", + "L\u00e4nge: 2.62 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Fahrbahninstandsetzung - AkD 17039" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.48620021, + 51.443608137 + ], + [ + 7.485757, + 51.443612501 + ], + [ + 7.4847786, + 51.443610901 + ], + [ + 7.4842024, + 51.443601401 + ], + [ + 7.4826867, + 51.443573001 + ], + [ + 7.4814133, + 51.443526701 + ], + [ + 7.4803076, + 51.443476201 + ], + [ + 7.4794513, + 51.443426101 + ], + [ + 7.4789121, + 51.443393001 + ], + [ + 7.4780868, + 51.443334901 + ], + [ + 7.4773457, + 51.443268401 + ], + [ + 7.4766683, + 51.443208501 + ], + [ + 7.475328, + 51.443079701 + ], + [ + 7.4746354, + 51.443008201 + ], + [ + 7.4738572, + 51.442920601 + ], + [ + 7.4730954, + 51.442831701 + ], + [ + 7.4723508, + 51.442747901 + ], + [ + 7.471402, + 51.442634101 + ], + [ + 7.4701447, + 51.442471601 + ], + [ + 7.4694091, + 51.442376901 + ], + [ + 7.4674582, + 51.442136001 + ], + [ + 7.4667295, + 51.442050601 + ], + [ + 7.4659928, + 51.441974001 + ], + [ + 7.4648149, + 51.441859301 + ], + [ + 7.463536, + 51.441755001 + ], + [ + 7.4623287, + 51.441680801 + ], + [ + 7.4619694, + 51.441659801 + ], + [ + 7.4611421, + 51.441616001 + ], + [ + 7.4603219, + 51.441586601 + ], + [ + 7.4594825, + 51.441560301 + ], + [ + 7.4587744, + 51.441557701 + ], + [ + 7.4583745, + 51.441550901 + ], + [ + 7.4569277, + 51.441547501 + ], + [ + 7.4553181, + 51.441569701 + ], + [ + 7.4543519, + 51.441586601 + ], + [ + 7.4534607, + 51.441629801 + ], + [ + 7.4527573, + 51.441664201 + ], + [ + 7.4522434, + 51.441696901 + ], + [ + 7.4516629, + 51.441739601 + ], + [ + 7.4508938, + 51.441796301 + ], + [ + 7.4501059, + 51.441863501 + ], + [ + 7.4493167, + 51.441938601 + ], + [ + 7.448836958, + 51.441987731 + ] + ] + } + }, + { + "identifier": "2025-037554--vi-bs.2026-02-23_20-00-00-000.devi-zus.2025-11-03_20-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43014247942098,7.538527144391337,51.42095659984751,7.549622635156344", + "point": "51.43014247942098,7.538527144391337", + "startLcPosition": "102", + "impact": { + "lower": "Schwerte-Ergste", + "upper": "Westhofener Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Westhofener Kreuz - Schwerte-Ergste", + "startTimestamp": "2026-02-23T20:00:00+01:00", + "coordinate": { + "lat": 51.43014247942098, + "long": 7.538527144391337 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 20:00 Uhr", + "Ende: 24.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.07.26)", + "", + "A45: Dortmund -> Hagen, zwischen 0.5 km hinter AK Westhofener Kreuz und 1.2 km vor AS Schwerte-Ergste", + "", + "L\u00e4nge: 1.3 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Erneuerung der Fahrbahn\u00fcberg\u00e4nge TB Rettelm\u00fchle - AlD 37554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.538527144, + 51.430142479 + ], + [ + 7.5389561, + 51.429935101 + ], + [ + 7.5397033, + 51.429550701 + ], + [ + 7.5405206, + 51.429114401 + ], + [ + 7.5416439, + 51.428441801 + ], + [ + 7.5421201, + 51.428132601 + ], + [ + 7.5423297, + 51.427997801 + ], + [ + 7.542487, + 51.427894501 + ], + [ + 7.542842, + 51.427656001 + ], + [ + 7.5435227, + 51.427177101 + ], + [ + 7.5440991, + 51.426750601 + ], + [ + 7.5442824, + 51.426604901 + ], + [ + 7.5445613, + 51.426387601 + ], + [ + 7.5453041, + 51.425767401 + ], + [ + 7.5460696, + 51.425081201 + ], + [ + 7.5468932, + 51.424306401 + ], + [ + 7.5470251, + 51.424168001 + ], + [ + 7.5478125, + 51.423339501 + ], + [ + 7.5485561, + 51.422436301 + ], + [ + 7.5493067, + 51.421422501 + ], + [ + 7.549622635, + 51.4209566 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2026-04-09_20-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de23", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.441654792914704,7.505595886886552,51.439530127943705,7.515414060520545", + "point": "51.441654792914704,7.505595886886552", + "startLcPosition": "103", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-S\u00fcd - Westhofener Kreuz", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 51.441654792914704, + "long": 7.505595886886552 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 30.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Dortmund -> Hagen, zwischen 1.4 km hinter AS Dortmund-S\u00fcd und 1.4 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.73 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.505595887, + 51.441654793 + ], + [ + 7.5062613, + 51.441544501 + ], + [ + 7.5067883, + 51.441449301 + ], + [ + 7.5073117, + 51.441358901 + ], + [ + 7.5082914, + 51.441177701 + ], + [ + 7.5093364, + 51.440967001 + ], + [ + 7.5100497, + 51.440827701 + ], + [ + 7.5108037, + 51.440667301 + ], + [ + 7.5117002, + 51.440482901 + ], + [ + 7.5126318, + 51.440270401 + ], + [ + 7.5137417, + 51.440002201 + ], + [ + 7.5149703, + 51.439673801 + ], + [ + 7.515414061, + 51.439530128 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2025-10-28_05-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.441654792914704,7.505595886886552,51.439530127943705,7.515414060520545", + "point": "51.441654792914704,7.505595886886552", + "startLcPosition": "103", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-S\u00fcd - Westhofener Kreuz", + "startTimestamp": "2025-10-28T05:00:00+01:00", + "coordinate": { + "lat": 51.441654792914704, + "long": 7.505595886886552 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.10.25 um 05:00 Uhr", + "Ende: 09.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Dortmund -> Hagen, zwischen 1.4 km hinter AS Dortmund-S\u00fcd und 1.4 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.73 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.505595887, + 51.441654793 + ], + [ + 7.5062613, + 51.441544501 + ], + [ + 7.5067883, + 51.441449301 + ], + [ + 7.5073117, + 51.441358901 + ], + [ + 7.5082914, + 51.441177701 + ], + [ + 7.5093364, + 51.440967001 + ], + [ + 7.5100497, + 51.440827701 + ], + [ + 7.5108037, + 51.440667301 + ], + [ + 7.5117002, + 51.440482901 + ], + [ + 7.5126318, + 51.440270401 + ], + [ + 7.5137417, + 51.440002201 + ], + [ + 7.5149703, + 51.439673801 + ], + [ + 7.515414061, + 51.439530128 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2025-10-28_05-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.439530127943705,7.515414060520545,51.43681966480166,7.521969146100843", + "point": "51.439530127943705,7.515414060520545", + "startLcPosition": "103", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-S\u00fcd - Westhofener Kreuz", + "startTimestamp": "2025-10-28T05:00:00+01:00", + "coordinate": { + "lat": 51.439530127943705, + "long": 7.515414060520545 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.10.25 um 05:00 Uhr", + "Ende: 09.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Dortmund -> Hagen, zwischen 2.2 km hinter AS Dortmund-S\u00fcd und 0.9 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.55 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.515414061, + 51.439530128 + ], + [ + 7.5157088, + 51.439434701 + ], + [ + 7.5165588, + 51.439161001 + ], + [ + 7.5174665, + 51.438847101 + ], + [ + 7.5184621, + 51.438469701 + ], + [ + 7.5193853, + 51.438080601 + ], + [ + 7.5202078, + 51.437702201 + ], + [ + 7.5214797, + 51.437076101 + ], + [ + 7.521969146, + 51.436819665 + ] + ] + } + }, + { + "identifier": "2023-004457--vi-bs.2025-06-30_20-00-00-000.devi-zus.2023-06-01_05-00-00-000_006.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.44304097885255,7.49485391332787,51.441654792914704,7.505595886886552", + "point": "51.44304097885255,7.49485391332787", + "startLcPosition": "103", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-S\u00fcd - Westhofener Kreuz", + "startTimestamp": "2025-06-30T20:00:00+02:00", + "coordinate": { + "lat": 51.44304097885255, + "long": 7.49485391332787 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.06.25 um 20:00 Uhr", + "Ende: 05.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.26)", + "", + "A45: Dortmund -> Hagen, zwischen 0.7 km hinter AS Dortmund-S\u00fcd und 2.1 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.76 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Verst\u00e4rkung BW Rombergholz und BW Schorveskopf - AlD 4457" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.494853913, + 51.443040979 + ], + [ + 7.4955797, + 51.442978101 + ], + [ + 7.4971073, + 51.442826301 + ], + [ + 7.49825, + 51.442703901 + ], + [ + 7.4994443, + 51.442564201 + ], + [ + 7.5005777, + 51.442420601 + ], + [ + 7.5016702, + 51.442269401 + ], + [ + 7.5031232, + 51.442058601 + ], + [ + 7.5041033, + 51.441904801 + ], + [ + 7.5051192, + 51.441733801 + ], + [ + 7.505595887, + 51.441654793 + ] + ] + } + }, + { + "identifier": "2023-004446--vi-bs.2026-04-09_20-00-00-000.devi-zus.2025-03-03_20-00-00-000_009.f.de19", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.439530127943705,7.515414060520545,51.43681966480166,7.521969146100843", + "point": "51.439530127943705,7.515414060520545", + "startLcPosition": "103", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-S\u00fcd - Westhofener Kreuz", + "startTimestamp": "2026-04-09T20:00:00+02:00", + "coordinate": { + "lat": 51.439530127943705, + "long": 7.515414060520545 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 20:00 Uhr", + "Ende: 30.05.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.10.26)", + "", + "A45: Dortmund -> Hagen, zwischen 2.2 km hinter AS Dortmund-S\u00fcd und 0.9 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A45 - Instandsetzung BW Wannebach - AlD 4446" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.515414061, + 51.439530128 + ], + [ + 7.5157088, + 51.439434701 + ], + [ + 7.5165588, + 51.439161001 + ], + [ + 7.5174665, + 51.438847101 + ], + [ + 7.5184621, + 51.438469701 + ], + [ + 7.5193853, + 51.438080601 + ], + [ + 7.5202078, + 51.437702201 + ], + [ + 7.5214797, + 51.437076101 + ], + [ + 7.521969146, + 51.436819665 + ] + ] + } + }, + { + "identifier": "2026-017046--vi-bs.2026-04-13_19-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.44340448498326,7.479099170852655,51.441612030166176,7.4538273214990145", + "point": "51.44340448498326,7.479099170852655", + "startLcPosition": "103", + "impact": { + "lower": "Fl\u00f6z Mausegatt", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Dortmund-S\u00fcd - Fl\u00f6z Mausegatt", + "coordinate": { + "lat": 51.44340448498326, + "long": 7.479099170852655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A45: Hagen -> Dortmund, zwischen 0.4 km hinter AS Dortmund-S\u00fcd und 0.8 km vor Fl\u00f6z Mausegatt", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Fahrbahninstandsetzung - AkD 17046" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.479099171, + 51.443404485 + ], + [ + 7.4789121, + 51.443393001 + ], + [ + 7.4780868, + 51.443334901 + ], + [ + 7.4773457, + 51.443268401 + ], + [ + 7.4766683, + 51.443208501 + ], + [ + 7.475328, + 51.443079701 + ], + [ + 7.4746354, + 51.443008201 + ], + [ + 7.4738572, + 51.442920601 + ], + [ + 7.4730954, + 51.442831701 + ], + [ + 7.4723508, + 51.442747901 + ], + [ + 7.471402, + 51.442634101 + ], + [ + 7.4701447, + 51.442471601 + ], + [ + 7.4694091, + 51.442376901 + ], + [ + 7.4674582, + 51.442136001 + ], + [ + 7.4667295, + 51.442050601 + ], + [ + 7.4659928, + 51.441974001 + ], + [ + 7.4648149, + 51.441859301 + ], + [ + 7.463536, + 51.441755001 + ], + [ + 7.4623287, + 51.441680801 + ], + [ + 7.4619694, + 51.441659801 + ], + [ + 7.4611421, + 51.441616001 + ], + [ + 7.4603219, + 51.441586601 + ], + [ + 7.4594825, + 51.441560301 + ], + [ + 7.4587744, + 51.441557701 + ], + [ + 7.4583745, + 51.441550901 + ], + [ + 7.4569277, + 51.441547501 + ], + [ + 7.4553181, + 51.441569701 + ], + [ + 7.4543519, + 51.441586601 + ], + [ + 7.453827321, + 51.44161203 + ] + ] + } + }, + { + "identifier": "2026-017034--vi-bs.2026-04-09_19-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.44340448498326,7.479099170852655,51.441987730556576,7.4488369582314276", + "point": "51.44340448498326,7.479099170852655", + "startLcPosition": "103", + "impact": { + "lower": "Fl\u00f6z Mausegatt", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Dortmund-S\u00fcd - Fl\u00f6z Mausegatt", + "coordinate": { + "lat": 51.44340448498326, + "long": 7.479099170852655 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A45: Hagen -> Dortmund, zwischen 0.4 km hinter AS Dortmund-S\u00fcd und 0.5 km vor Fl\u00f6z Mausegatt", + "", + "L\u00e4nge: 2.13 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Fahrbahninstandsetzung - AkD 17034" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.479099171, + 51.443404485 + ], + [ + 7.4789121, + 51.443393001 + ], + [ + 7.4780868, + 51.443334901 + ], + [ + 7.4773457, + 51.443268401 + ], + [ + 7.4766683, + 51.443208501 + ], + [ + 7.475328, + 51.443079701 + ], + [ + 7.4746354, + 51.443008201 + ], + [ + 7.4738572, + 51.442920601 + ], + [ + 7.4730954, + 51.442831701 + ], + [ + 7.4723508, + 51.442747901 + ], + [ + 7.471402, + 51.442634101 + ], + [ + 7.4701447, + 51.442471601 + ], + [ + 7.4694091, + 51.442376901 + ], + [ + 7.4674582, + 51.442136001 + ], + [ + 7.4667295, + 51.442050601 + ], + [ + 7.4659928, + 51.441974001 + ], + [ + 7.4648149, + 51.441859301 + ], + [ + 7.463536, + 51.441755001 + ], + [ + 7.4623287, + 51.441680801 + ], + [ + 7.4619694, + 51.441659801 + ], + [ + 7.4611421, + 51.441616001 + ], + [ + 7.4603219, + 51.441586601 + ], + [ + 7.4594825, + 51.441560301 + ], + [ + 7.4587744, + 51.441557701 + ], + [ + 7.4583745, + 51.441550901 + ], + [ + 7.4569277, + 51.441547501 + ], + [ + 7.4553181, + 51.441569701 + ], + [ + 7.4543519, + 51.441586601 + ], + [ + 7.4534607, + 51.441629801 + ], + [ + 7.4527573, + 51.441664201 + ], + [ + 7.4522434, + 51.441696901 + ], + [ + 7.4516629, + 51.441739601 + ], + [ + 7.4508938, + 51.441796301 + ], + [ + 7.4501059, + 51.441863501 + ], + [ + 7.4493167, + 51.441938601 + ], + [ + 7.448836958, + 51.441987731 + ] + ] + } + }, + { + "identifier": "2023-004527--vi-bs.2024-11-25_05-00-00-000.devi-zus.2024-05-11_20-00-00-000_001.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.43681966480166,7.521969146100843,51.43014247942098,7.538527144391337", + "point": "51.43681966480166,7.521969146100843", + "startLcPosition": "103", + "impact": { + "lower": "Schwerte-Ergste", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-S\u00fcd - Schwerte-Ergste", + "startTimestamp": "2024-11-25T05:00:00+01:00", + "coordinate": { + "lat": 51.43681966480166, + "long": 7.521969146100843 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.11.24 um 05:00 Uhr", + "Ende: 28.07.27 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "11.04.26", + "(Ende der Gesamtma\u00dfnahme: 04.06.29)", + "", + "A45: Dortmund -> Hagen, zwischen 2.7 km hinter AS Dortmund-S\u00fcd und 2.5 km vor AS Schwerte-Ergste", + "", + "L\u00e4nge: 1.37 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.521969146, + 51.436819665 + ], + [ + 7.5223508, + 51.436619701 + ], + [ + 7.5240082, + 51.435749001 + ], + [ + 7.5251713, + 51.435189901 + ], + [ + 7.5257353, + 51.434920901 + ], + [ + 7.5263451, + 51.434664101 + ], + [ + 7.5270896, + 51.434353501 + ], + [ + 7.5278067, + 51.434065801 + ], + [ + 7.5284658, + 51.433825301 + ], + [ + 7.5290208, + 51.433613301 + ], + [ + 7.529466, + 51.433454101 + ], + [ + 7.5300608, + 51.433250301 + ], + [ + 7.5307257, + 51.433021001 + ], + [ + 7.5314773, + 51.432763701 + ], + [ + 7.5326129, + 51.432398701 + ], + [ + 7.5343188, + 51.431823901 + ], + [ + 7.5350968, + 51.431549901 + ], + [ + 7.5357735, + 51.431298701 + ], + [ + 7.5364929, + 51.431019301 + ], + [ + 7.5375023, + 51.430604001 + ], + [ + 7.5379688, + 51.430400601 + ], + [ + 7.5381669, + 51.430314301 + ], + [ + 7.5383459, + 51.430230101 + ], + [ + 7.538527144, + 51.430142479 + ] + ] + } + }, + { + "identifier": "2026-016638--vi-fbm.2026-04-08_19-00-00-000.devi-zus.2026-04-08_19-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.443452220254954,7.486899424363893,51.43710008894393,7.521430970373333", + "point": "51.443452220254954,7.486899424363893", + "startLcPosition": "103", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-S\u00fcd - Westhofener Kreuz", + "coordinate": { + "lat": 51.443452220254954, + "long": 7.486899424363893 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A45: Dortmund -> Hagen, zwischen 0.1 km hinter AS Dortmund-S\u00fcd und 0.9 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 2.55 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - \u00c4nderung Verkehrsf\u00fchrung - AkD 16638" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.486899424, + 51.44345222 + ], + [ + 7.4881687, + 51.443427501 + ], + [ + 7.4892798, + 51.443393701 + ], + [ + 7.4907976, + 51.443326901 + ], + [ + 7.4921956, + 51.443245001 + ], + [ + 7.4929053, + 51.443193701 + ], + [ + 7.4934163, + 51.443158101 + ], + [ + 7.4946251, + 51.443060801 + ], + [ + 7.4955797, + 51.442978101 + ], + [ + 7.4971073, + 51.442826301 + ], + [ + 7.49825, + 51.442703901 + ], + [ + 7.4994443, + 51.442564201 + ], + [ + 7.5005777, + 51.442420601 + ], + [ + 7.5016702, + 51.442269401 + ], + [ + 7.5031232, + 51.442058601 + ], + [ + 7.5041033, + 51.441904801 + ], + [ + 7.5051192, + 51.441733801 + ], + [ + 7.5062613, + 51.441544501 + ], + [ + 7.5067883, + 51.441449301 + ], + [ + 7.5073117, + 51.441358901 + ], + [ + 7.5082914, + 51.441177701 + ], + [ + 7.5093364, + 51.440967001 + ], + [ + 7.5100497, + 51.440827701 + ], + [ + 7.5108037, + 51.440667301 + ], + [ + 7.5117002, + 51.440482901 + ], + [ + 7.5126318, + 51.440270401 + ], + [ + 7.5137417, + 51.440002201 + ], + [ + 7.5149703, + 51.439673801 + ], + [ + 7.5157088, + 51.439434701 + ], + [ + 7.5165588, + 51.439161001 + ], + [ + 7.5174665, + 51.438847101 + ], + [ + 7.5184621, + 51.438469701 + ], + [ + 7.5193853, + 51.438080601 + ], + [ + 7.5202078, + 51.437702201 + ], + [ + 7.52143097, + 51.437100089 + ] + ] + } + }, + { + "identifier": "2026-016638--vi-fbm.2026-04-08_19-00-00-000.devi-zus.2026-04-08_19-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.443452220254954,7.486899424363893,51.43710008894393,7.521430970373333", + "point": "51.443452220254954,7.486899424363893", + "startLcPosition": "103", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Dortmund-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-S\u00fcd - Westhofener Kreuz", + "coordinate": { + "lat": 51.443452220254954, + "long": 7.486899424363893 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A45: Dortmund -> Hagen, zwischen 0.1 km hinter AS Dortmund-S\u00fcd und 0.9 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 2.55 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - \u00c4nderung Verkehrsf\u00fchrung - AkD 16638" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.486899424, + 51.44345222 + ], + [ + 7.4881687, + 51.443427501 + ], + [ + 7.4892798, + 51.443393701 + ], + [ + 7.4907976, + 51.443326901 + ], + [ + 7.4921956, + 51.443245001 + ], + [ + 7.4929053, + 51.443193701 + ], + [ + 7.4934163, + 51.443158101 + ], + [ + 7.4946251, + 51.443060801 + ], + [ + 7.4955797, + 51.442978101 + ], + [ + 7.4971073, + 51.442826301 + ], + [ + 7.49825, + 51.442703901 + ], + [ + 7.4994443, + 51.442564201 + ], + [ + 7.5005777, + 51.442420601 + ], + [ + 7.5016702, + 51.442269401 + ], + [ + 7.5031232, + 51.442058601 + ], + [ + 7.5041033, + 51.441904801 + ], + [ + 7.5051192, + 51.441733801 + ], + [ + 7.5062613, + 51.441544501 + ], + [ + 7.5067883, + 51.441449301 + ], + [ + 7.5073117, + 51.441358901 + ], + [ + 7.5082914, + 51.441177701 + ], + [ + 7.5093364, + 51.440967001 + ], + [ + 7.5100497, + 51.440827701 + ], + [ + 7.5108037, + 51.440667301 + ], + [ + 7.5117002, + 51.440482901 + ], + [ + 7.5126318, + 51.440270401 + ], + [ + 7.5137417, + 51.440002201 + ], + [ + 7.5149703, + 51.439673801 + ], + [ + 7.5157088, + 51.439434701 + ], + [ + 7.5165588, + 51.439161001 + ], + [ + 7.5174665, + 51.438847101 + ], + [ + 7.5184621, + 51.438469701 + ], + [ + 7.5193853, + 51.438080601 + ], + [ + 7.5202078, + 51.437702201 + ], + [ + 7.52143097, + 51.437100089 + ] + ] + } + }, + { + "identifier": "2023-004457--vi-bs.2025-06-30_20-00-00-000.devi-zus.2023-06-01_05-00-00-000_006.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.443448207605215,7.484038181647659,51.44303974432527,7.494868163737618", + "point": "51.443448207605215,7.484038181647659", + "startLcPosition": "104", + "impact": { + "lower": "Westhofener Kreuz", + "upper": "Fl\u00f6z Mausegatt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Fl\u00f6z Mausegatt - Westhofener Kreuz", + "startTimestamp": "2025-06-30T20:00:00+02:00", + "coordinate": { + "lat": 51.443448207605215, + "long": 7.484038181647659 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.06.25 um 20:00 Uhr", + "Ende: 05.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.26)", + "", + "A45: Dortmund -> Hagen, zwischen 3.0 km hinter Fl\u00f6z Mausegatt und 2.9 km vor AK Westhofener Kreuz", + "", + "L\u00e4nge: 0.76 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A45 - Verst\u00e4rkung BW Rombergholz und BW Schorveskopf - AlD 4457" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.484038182, + 51.443448208 + ], + [ + 7.484224, + 51.443452201 + ], + [ + 7.4857642, + 51.443460901 + ], + [ + 7.4868131, + 51.443453901 + ], + [ + 7.4881687, + 51.443427501 + ], + [ + 7.4892798, + 51.443393701 + ], + [ + 7.4907976, + 51.443326901 + ], + [ + 7.4921956, + 51.443245001 + ], + [ + 7.4929053, + 51.443193701 + ], + [ + 7.4934163, + 51.443158101 + ], + [ + 7.4946251, + 51.443060801 + ], + [ + 7.494868164, + 51.443039744 + ] + ] + } + }, + { + "identifier": "2025-001946--vi-bs.2026-02-25_05-00-00-000.devi-zus.2025-03-01_19-00-00-000.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.49760393955556,7.385502558284362,51.50614713475456,7.388411453295805", + "point": "51.49760393955556,7.385502558284362", + "startLcPosition": "107", + "impact": { + "lower": "Dortmund-Hafen", + "upper": "Dortmund-Eichlinghofen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Dortmund-Eichlinghofen - Dortmund-Hafen", + "startTimestamp": "2026-02-25T05:00:00+01:00", + "coordinate": { + "lat": 51.49760393955556, + "long": 7.385502558284362 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.02.26 um 05:00 Uhr", + "Ende: 31.08.27 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.07.28)", + "", + "A45: Hagen -> Dortmund, zwischen 2.1 km hinter AS Dortmund-Eichlinghofen und 1.5 km vor AS Dortmund-Hafen", + "", + "L\u00e4nge: 0.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - DB-Martener Str. - Kompensation - AlD 1946" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.385502558, + 51.49760394 + ], + [ + 7.3855022, + 51.497609801 + ], + [ + 7.3855018, + 51.498025901 + ], + [ + 7.3855116, + 51.498442601 + ], + [ + 7.3855348, + 51.498858401 + ], + [ + 7.3855859, + 51.499398601 + ], + [ + 7.3856703, + 51.499949301 + ], + [ + 7.3857746, + 51.500498201 + ], + [ + 7.385897, + 51.501010401 + ], + [ + 7.3859779, + 51.501290601 + ], + [ + 7.3860505, + 51.501539401 + ], + [ + 7.386132, + 51.501791301 + ], + [ + 7.3862876, + 51.502222901 + ], + [ + 7.3863464, + 51.502384101 + ], + [ + 7.3864439, + 51.502631401 + ], + [ + 7.3866924, + 51.503202601 + ], + [ + 7.3867887, + 51.503410401 + ], + [ + 7.3869297, + 51.503698201 + ], + [ + 7.3870794, + 51.503983901 + ], + [ + 7.3873471, + 51.504452701 + ], + [ + 7.3875592, + 51.504817001 + ], + [ + 7.3878371, + 51.505265301 + ], + [ + 7.3881272, + 51.505712501 + ], + [ + 7.388411453, + 51.506147135 + ] + ] + } + }, + { + "identifier": "2025-001946--vi-bs.2026-02-25_05-00-00-000.devi-zus.2025-03-01_19-00-00-000.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50614713475456,7.388411453295805,51.51157425470771,7.390257265381893", + "point": "51.50614713475456,7.388411453295805", + "startLcPosition": "108", + "impact": { + "lower": "Dortmund-Hafen", + "upper": "Dortmund-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Dortmund-West - Dortmund-Hafen", + "startTimestamp": "2026-02-25T05:00:00+01:00", + "coordinate": { + "lat": 51.50614713475456, + "long": 7.388411453295805 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.02.26 um 05:00 Uhr", + "Ende: 31.08.27 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.07.28)", + "", + "A45: Hagen -> Dortmund, zwischen 1.0 km hinter AK Dortmund-West und 0.9 km vor AS Dortmund-Hafen", + "", + "L\u00e4nge: 0.62 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - DB-Martener Str. - Kompensation - AlD 1946" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.388411453, + 51.506147135 + ], + [ + 7.3885285, + 51.506326101 + ], + [ + 7.3889155, + 51.506930501 + ], + [ + 7.3892126, + 51.507424601 + ], + [ + 7.3893855, + 51.507742801 + ], + [ + 7.3894689, + 51.507904601 + ], + [ + 7.3895552, + 51.508055001 + ], + [ + 7.3896818, + 51.508367301 + ], + [ + 7.3898059, + 51.508666201 + ], + [ + 7.3900405, + 51.509359101 + ], + [ + 7.3901102, + 51.509685701 + ], + [ + 7.3901633, + 51.509960101 + ], + [ + 7.3902086, + 51.510235101 + ], + [ + 7.3902456, + 51.510573601 + ], + [ + 7.390264, + 51.510898601 + ], + [ + 7.3902701, + 51.511239101 + ], + [ + 7.390257265, + 51.511574255 + ] + ] + } + }, + { + "identifier": "2024-019555--vi-bs.2026-03-21_00-00-00-000.devi-bs.2025-04-14_20-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.513563204477244,7.389846505878198,51.51525745627923,7.389052915008302", + "point": "51.513563204477244,7.389846505878198", + "startLcPosition": "108", + "impact": { + "lower": "Dortmund-Hafen", + "upper": "Dortmund-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Dortmund-West - Dortmund-Hafen", + "startTimestamp": "2026-03-21T00:00:00+01:00", + "coordinate": { + "lat": 51.513563204477244, + "long": 7.389846505878198 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.03.26 um 00:00 Uhr", + "Ende: 30.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 23.09.26)", + "", + "A45: Hagen -> Dortmund, zwischen 1.8 km hinter AK Dortmund-West und 0.5 km vor AS Dortmund-Hafen", + "", + "L\u00e4nge: 0.2 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Bauwerksarbeiten - Sanierung des Fahrbahn\u00fcbergangs BW Rossbach - AlD 19555" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.389846506, + 51.513563204 + ], + [ + 7.3897371, + 51.513864701 + ], + [ + 7.389523, + 51.514377801 + ], + [ + 7.3893209, + 51.514807401 + ], + [ + 7.3891044, + 51.515185801 + ], + [ + 7.389052915, + 51.515257456 + ] + ] + } + }, + { + "identifier": "2024-019555--vi-bs.2026-03-21_00-00-00-000.devi-bs.2025-04-14_20-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5115742547077,7.390257265381893,51.513563204477244,7.389846505878198", + "point": "51.5115742547077,7.390257265381893", + "startLcPosition": "108", + "impact": { + "lower": "Dortmund-Hafen", + "upper": "Dortmund-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Dortmund-West - Dortmund-Hafen", + "startTimestamp": "2026-03-21T00:00:00+01:00", + "coordinate": { + "lat": 51.5115742547077, + "long": 7.390257265381893 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.03.26 um 00:00 Uhr", + "Ende: 30.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 23.09.26)", + "", + "A45: Hagen -> Dortmund, zwischen 1.6 km hinter AK Dortmund-West und 0.7 km vor AS Dortmund-Hafen", + "", + "L\u00e4nge: 0.22 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A45 - Bauwerksarbeiten - Sanierung des Fahrbahn\u00fcbergangs BW Rossbach - AlD 19555" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.390257265, + 51.511574255 + ], + [ + 7.3902542, + 51.511654301 + ], + [ + 7.3902102, + 51.512066401 + ], + [ + 7.3901513, + 51.512417501 + ], + [ + 7.3900636, + 51.512852901 + ], + [ + 7.3900022, + 51.513056701 + ], + [ + 7.3898931, + 51.513434801 + ], + [ + 7.389846506, + 51.513563204 + ] + ] + } + }, + { + "identifier": "2024-019555--vi-bs.2026-03-21_00-00-00-000.devi-bs.2025-04-14_20-00-00-000.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.51525745627923,7.389052915008302,51.518204597798025,7.386362116350984", + "point": "51.51525745627923,7.389052915008302", + "startLcPosition": "108", + "impact": { + "lower": "Dortmund-Hafen", + "upper": "Dortmund-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Dortmund", + "title": "A45 | Dortmund-West - Dortmund-Hafen", + "startTimestamp": "2026-03-21T00:00:00+01:00", + "coordinate": { + "lat": 51.51525745627923, + "long": 7.389052915008302 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.03.26 um 00:00 Uhr", + "Ende: 30.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 23.09.26)", + "", + "A45: Hagen -> Dortmund, zwischen 2.0 km hinter AK Dortmund-West und 0.1 km vor AS Dortmund-Hafen", + "", + "L\u00e4nge: 0.38 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Bauwerksarbeiten - Sanierung des Fahrbahn\u00fcbergangs BW Rossbach - AlD 19555" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.389052915, + 51.515257456 + ], + [ + 7.388709, + 51.515736101 + ], + [ + 7.3885337, + 51.515974601 + ], + [ + 7.3883309, + 51.516239501 + ], + [ + 7.3882171, + 51.516377701 + ], + [ + 7.3878512, + 51.516800201 + ], + [ + 7.3874773, + 51.517193001 + ], + [ + 7.3871135, + 51.517550501 + ], + [ + 7.3866487, + 51.517968701 + ], + [ + 7.386362116, + 51.518204598 + ] + ] + } + }, + { + "identifier": "2025-001946--vi-bs.2026-02-26_06-00-00-000.devi-zus.2025-03-01_19-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.511792367914516,7.390023185586527,51.50617263850245,7.388196431897606", + "point": "51.511792367914516,7.390023185586527", + "startLcPosition": "109", + "impact": { + "lower": "Dortmund-West", + "upper": "Dortmund-Hafen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-Hafen - Dortmund-West", + "startTimestamp": "2026-02-26T06:00:00+01:00", + "coordinate": { + "lat": 51.511792367914516, + "long": 7.390023185586527 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.02.26 um 06:00 Uhr", + "Ende: 31.08.27 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.07.28)", + "", + "A45: Dortmund -> Hagen, zwischen 0.8 km hinter AS Dortmund-Hafen und 1.0 km vor AK Dortmund-West", + "", + "L\u00e4nge: 0.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - DB-Martener Str. - Kompensation - AlD 1946" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.390023186, + 51.511792368 + ], + [ + 7.3900502, + 51.511541201 + ], + [ + 7.3900667, + 51.511133301 + ], + [ + 7.3900417, + 51.510730601 + ], + [ + 7.3899979, + 51.510279201 + ], + [ + 7.3899332, + 51.509880001 + ], + [ + 7.3898508, + 51.509506201 + ], + [ + 7.3897691, + 51.509266001 + ], + [ + 7.3895781, + 51.508649001 + ], + [ + 7.3894382, + 51.508313801 + ], + [ + 7.3892734, + 51.507963101 + ], + [ + 7.3890564, + 51.507548001 + ], + [ + 7.3885601, + 51.506731201 + ], + [ + 7.388196432, + 51.506172639 + ] + ] + } + }, + { + "identifier": "2026-017788--vi-bs.2026-04-10_06-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.53598008224795,7.370162306462014,51.51643351331226,7.387959697757132", + "point": "51.53598008224795,7.370162306462014", + "startLcPosition": "110", + "impact": { + "lower": "Dortmund-West", + "upper": "Kirchlinde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Kirchlinde - Dortmund-West", + "coordinate": { + "lat": 51.53598008224795, + "long": 7.370162306462014 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 06:00 bis 20:00 Uhr", + "11.04.26 von 06:00 bis 20:00 Uhr", + "", + "A45: Dortmund -> Hagen, zwischen 0.1 km hinter Kirchlinde und 2.2 km vor AK Dortmund-West", + "", + "L\u00e4nge: 2.55 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A45 - Gr\u00fcnpflege - AkD 17788" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.370162306, + 51.535980082 + ], + [ + 7.3711537, + 51.535311001 + ], + [ + 7.3713414, + 51.535175701 + ], + [ + 7.3722371, + 51.534513101 + ], + [ + 7.37279, + 51.534065901 + ], + [ + 7.3730441, + 51.533856101 + ], + [ + 7.373312, + 51.533624001 + ], + [ + 7.3735869, + 51.533370001 + ], + [ + 7.3738501, + 51.533119501 + ], + [ + 7.3741207, + 51.532846501 + ], + [ + 7.3742383, + 51.532724801 + ], + [ + 7.3743467, + 51.532608101 + ], + [ + 7.37462, + 51.532309901 + ], + [ + 7.3746919, + 51.532222701 + ], + [ + 7.3748703, + 51.532007401 + ], + [ + 7.375049, + 51.531783101 + ], + [ + 7.3752264, + 51.531551901 + ], + [ + 7.3755726, + 51.531059401 + ], + [ + 7.3757357, + 51.530809601 + ], + [ + 7.3758875, + 51.530556401 + ], + [ + 7.3760374, + 51.530307601 + ], + [ + 7.3761693, + 51.530056601 + ], + [ + 7.3763154, + 51.529769001 + ], + [ + 7.3764504, + 51.529476301 + ], + [ + 7.3765485, + 51.529243901 + ], + [ + 7.3766653, + 51.528941401 + ], + [ + 7.3767944, + 51.528591801 + ], + [ + 7.3768987, + 51.528266301 + ], + [ + 7.3771061, + 51.527587601 + ], + [ + 7.3773167, + 51.526883301 + ], + [ + 7.3774096, + 51.526590601 + ], + [ + 7.3775642, + 51.526141601 + ], + [ + 7.3777277, + 51.525701601 + ], + [ + 7.3778718, + 51.525379901 + ], + [ + 7.3779606, + 51.525187301 + ], + [ + 7.37807, + 51.524970401 + ], + [ + 7.3782283, + 51.524679301 + ], + [ + 7.3783676, + 51.524447201 + ], + [ + 7.3786682, + 51.523991601 + ], + [ + 7.378931, + 51.523618201 + ], + [ + 7.3801052, + 51.522293301 + ], + [ + 7.3807059, + 51.521811301 + ], + [ + 7.3810074, + 51.521567601 + ], + [ + 7.3813235, + 51.521330501 + ], + [ + 7.3816494, + 51.521092401 + ], + [ + 7.3820013, + 51.520858601 + ], + [ + 7.3823458, + 51.520635601 + ], + [ + 7.3831015, + 51.520176401 + ], + [ + 7.3836658, + 51.519843801 + ], + [ + 7.3842785, + 51.519476401 + ], + [ + 7.3847154, + 51.519202601 + ], + [ + 7.3850397, + 51.518993101 + ], + [ + 7.385815, + 51.518439301 + ], + [ + 7.3861447, + 51.518186701 + ], + [ + 7.3865032, + 51.517891801 + ], + [ + 7.3869819, + 51.517462601 + ], + [ + 7.3872785, + 51.517172001 + ], + [ + 7.3873222, + 51.517128801 + ], + [ + 7.3877161, + 51.516713501 + ], + [ + 7.387839, + 51.516573701 + ], + [ + 7.387959698, + 51.516433513 + ] + ] + } + }, + { + "identifier": "2025-001946--vi-bs.2026-02-26_06-00-00-000.devi-zus.2025-03-01_19-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.525454228927025,7.377838506241168,51.511792367914516,7.390023185586527", + "point": "51.525454228927025,7.377838506241168", + "startLcPosition": "110", + "impact": { + "lower": "Dortmund-West", + "upper": "Kirchlinde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Kirchlinde - Dortmund-West", + "startTimestamp": "2026-02-26T06:00:00+01:00", + "coordinate": { + "lat": 51.525454228927025, + "long": 7.377838506241168 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.02.26 um 06:00 Uhr", + "Ende: 31.08.27 um 09:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.07.28)", + "", + "A45: Dortmund -> Hagen, zwischen 1.4 km hinter Kirchlinde und 1.6 km vor AK Dortmund-West", + "", + "L\u00e4nge: 1.78 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - DB-Martener Str. - Kompensation - AlD 1946" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.377838506, + 51.525454229 + ], + [ + 7.3778718, + 51.525379901 + ], + [ + 7.3779606, + 51.525187301 + ], + [ + 7.37807, + 51.524970401 + ], + [ + 7.3782283, + 51.524679301 + ], + [ + 7.3783676, + 51.524447201 + ], + [ + 7.3786682, + 51.523991601 + ], + [ + 7.378931, + 51.523618201 + ], + [ + 7.3801052, + 51.522293301 + ], + [ + 7.3807059, + 51.521811301 + ], + [ + 7.3810074, + 51.521567601 + ], + [ + 7.3813235, + 51.521330501 + ], + [ + 7.3816494, + 51.521092401 + ], + [ + 7.3820013, + 51.520858601 + ], + [ + 7.3823458, + 51.520635601 + ], + [ + 7.3831015, + 51.520176401 + ], + [ + 7.3836658, + 51.519843801 + ], + [ + 7.3842785, + 51.519476401 + ], + [ + 7.3847154, + 51.519202601 + ], + [ + 7.3850397, + 51.518993101 + ], + [ + 7.385815, + 51.518439301 + ], + [ + 7.3861447, + 51.518186701 + ], + [ + 7.3865032, + 51.517891801 + ], + [ + 7.3869819, + 51.517462601 + ], + [ + 7.3872785, + 51.517172001 + ], + [ + 7.3873222, + 51.517128801 + ], + [ + 7.3877161, + 51.516713501 + ], + [ + 7.387839, + 51.516573701 + ], + [ + 7.3879771, + 51.516413301 + ], + [ + 7.3883008, + 51.516006801 + ], + [ + 7.3884895, + 51.515753301 + ], + [ + 7.3886948, + 51.515412201 + ], + [ + 7.3889158, + 51.515057001 + ], + [ + 7.3891932, + 51.514545101 + ], + [ + 7.3893056, + 51.514333201 + ], + [ + 7.3895287, + 51.513842401 + ], + [ + 7.3897115, + 51.513309801 + ], + [ + 7.3898284, + 51.512909401 + ], + [ + 7.3898771, + 51.512701301 + ], + [ + 7.3899564, + 51.512317801 + ], + [ + 7.3900065, + 51.511947501 + ], + [ + 7.390023186, + 51.511792368 + ] + ] + } + }, + { + "identifier": "2026-016987--vi-bs.2026-04-09_23-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.578044397379884,7.365215381100642,51.5732278845743,7.3634402307676625", + "point": "51.578044397379884,7.365215381100642", + "startLcPosition": "113", + "impact": { + "lower": "Castrop-Rauxel-Ost", + "upper": "Dortmund-Nordwest", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-Nordwest - Castrop-Rauxel-Ost", + "coordinate": { + "lat": 51.578044397379884, + "long": 7.365215381100642 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 23:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A45: Dortmund -> Hagen, zwischen 0.9 km hinter AK Dortmund-Nordwest und 1.4 km vor AK Castrop-Rauxel-Ost", + "", + "L\u00e4nge: 0.55 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Fahrbahninstandsetzung - AkD 16987" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.365215381, + 51.578044397 + ], + [ + 7.3651913, + 51.577974601 + ], + [ + 7.3649478, + 51.577276301 + ], + [ + 7.364736, + 51.576626901 + ], + [ + 7.3646313, + 51.576341601 + ], + [ + 7.3645404, + 51.576066401 + ], + [ + 7.3644284, + 51.575751201 + ], + [ + 7.3643133, + 51.575435401 + ], + [ + 7.3641961, + 51.575119101 + ], + [ + 7.3639563, + 51.574485301 + ], + [ + 7.3636743, + 51.573786201 + ], + [ + 7.3635531, + 51.573500201 + ], + [ + 7.363440231, + 51.573227885 + ] + ] + } + }, + { + "identifier": "2026-016990--vi-bs.2026-04-09_20-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.578925615985206,7.365491436160008,51.5732278845743,7.3634402307676625", + "point": "51.578925615985206,7.365491436160008", + "startLcPosition": "113", + "impact": { + "lower": "Castrop-Rauxel-Ost", + "upper": "Dortmund-Nordwest", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund -> Hagen", + "title": "A45 | Dortmund-Nordwest - Castrop-Rauxel-Ost", + "coordinate": { + "lat": 51.578925615985206, + "long": 7.365491436160008 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 20:00 bis 23:00 Uhr", + "", + "A45: Dortmund -> Hagen, zwischen 0.8 km hinter AK Dortmund-Nordwest und 1.4 km vor AK Castrop-Rauxel-Ost", + "", + "L\u00e4nge: 0.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Fahrbahninstandsetzung - AkD 16990" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.365491436, + 51.578925616 + ], + [ + 7.3652838, + 51.578242701 + ], + [ + 7.3651913, + 51.577974601 + ], + [ + 7.3649478, + 51.577276301 + ], + [ + 7.364736, + 51.576626901 + ], + [ + 7.3646313, + 51.576341601 + ], + [ + 7.3645404, + 51.576066401 + ], + [ + 7.3644284, + 51.575751201 + ], + [ + 7.3643133, + 51.575435401 + ], + [ + 7.3641961, + 51.575119101 + ], + [ + 7.3639563, + 51.574485301 + ], + [ + 7.3636743, + 51.573786201 + ], + [ + 7.3635531, + 51.573500201 + ], + [ + 7.363440231, + 51.573227885 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.60031385447329,8.476858915031613,50.5989038156861,8.478857205364397", + "point": "50.60031385447329,8.476858915031613", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Gie\u00dfen", + "title": "A45 - Br\u00fcckenwartung - AkD 17525", + "coordinate": { + "lat": 50.60031385447329, + "long": 8.476858915031613 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "Von A45: Hagen -> Gie\u00dfen, zwischen 4.8 km hinter Lemperberg und AK Wetzlarer Kreuz nach Abfahrt von der A45: AK Wetzlarer Kreuz (aus Richtung Lemperberg)", + "", + "L\u00e4nge: 0.21 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.476858915, + 50.600313854 + ], + [ + 8.4768813, + 50.600297601 + ], + [ + 8.4778789, + 50.599555301 + ], + [ + 8.4783897, + 50.599203101 + ], + [ + 8.4787716, + 50.598969601 + ], + [ + 8.478857205, + 50.598903816 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.74376713825211,8.260156406474803,50.74466830854157,8.260834842806558", + "point": "50.74376713825211,8.260156406474803", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Dillenburg (aus Richtung Gaulskopf)", + "title": "A45 - Br\u00fcckenwartung - AkD 17525", + "coordinate": { + "lat": 50.74376713825211, + "long": 8.260156406474803 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 14:00 Uhr", + "14.04.26 von 09:00 bis 14:00 Uhr", + "15.04.26 von 09:00 bis 14:00 Uhr", + "16.04.26 von 09:00 bis 14:00 Uhr", + "17.04.26 von 09:00 bis 14:00 Uhr", + "", + "Abfahrt von der A45: AS Dillenburg (aus Richtung Gaulskopf)", + "", + "L\u00e4nge: 0.11 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.260156406, + 50.743767138 + ], + [ + 8.2607123, + 50.744495801 + ], + [ + 8.260834843, + 50.744668309 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.596533232885626,8.49322147503934,50.597538498089875,8.492008464137228", + "point": "50.596533232885626,8.49322147503934", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Wetzlarer Kreuz (aus Richtung Kochsgrund)", + "title": "A45 - Br\u00fcckenwartung - AkD 17525", + "coordinate": { + "lat": 50.596533232885626, + "long": 8.49322147503934 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "Abfahrt von der A45: AK Wetzlarer Kreuz (aus Richtung Kochsgrund)", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.493221475, + 50.596533233 + ], + [ + 8.4930751, + 50.596589701 + ], + [ + 8.4928524, + 50.596692101 + ], + [ + 8.4926569, + 50.596807601 + ], + [ + 8.4924617, + 50.596954701 + ], + [ + 8.4923312, + 50.597073801 + ], + [ + 8.4922213, + 50.597189001 + ], + [ + 8.4920987, + 50.597366401 + ], + [ + 8.4920117, + 50.597529901 + ], + [ + 8.492008464, + 50.597538498 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.57069484090383,8.54641220306747,50.570165594771176,8.545628606495196", + "point": "50.57069484090383,8.54641220306747", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Wetzlar-Ost (aus Richtung Wetzlar-Garbenheim)", + "title": "A45 - Br\u00fcckenwartung - AkD 17525", + "coordinate": { + "lat": 50.57069484090383, + "long": 8.54641220306747 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "Auffahrt auf die B49: AS Wetzlar-Ost (aus Richtung Wetzlar-Garbenheim)", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.546412203, + 50.570694841 + ], + [ + 8.5464054, + 50.570612301 + ], + [ + 8.5463894, + 50.570546401 + ], + [ + 8.5463648, + 50.570484601 + ], + [ + 8.5463278, + 50.570428501 + ], + [ + 8.5462875, + 50.570377901 + ], + [ + 8.5462298, + 50.570334301 + ], + [ + 8.5461699, + 50.570291301 + ], + [ + 8.546095, + 50.570252301 + ], + [ + 8.5460136, + 50.570219501 + ], + [ + 8.5459194, + 50.570192901 + ], + [ + 8.5458174, + 50.570175601 + ], + [ + 8.5457163, + 50.570166401 + ], + [ + 8.545628606, + 50.570165595 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.57300415885553,8.545305535864617,50.57212024427401,8.544357998492549", + "point": "50.57300415885553,8.545305535864617", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Wetzlar-Ost (aus Richtung Lahnau)", + "title": "A45 - Br\u00fcckenwartung - AkD 17525", + "coordinate": { + "lat": 50.57300415885553, + "long": 8.545305535864617 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "Auffahrt auf die B49: AS Wetzlar-Ost (aus Richtung Lahnau)", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.545305536, + 50.573004159 + ], + [ + 8.5453007, + 50.572921001 + ], + [ + 8.5452844, + 50.572837901 + ], + [ + 8.5452641, + 50.572778201 + ], + [ + 8.5452416, + 50.572718501 + ], + [ + 8.5452063, + 50.572652901 + ], + [ + 8.5451646, + 50.572590001 + ], + [ + 8.5451143, + 50.572528501 + ], + [ + 8.5450462, + 50.572464701 + ], + [ + 8.5449623, + 50.572396401 + ], + [ + 8.5447895, + 50.572285501 + ], + [ + 8.5446695, + 50.572224401 + ], + [ + 8.5445274, + 50.572170201 + ], + [ + 8.544357998, + 50.572120244 + ] + ] + } + }, + { + "identifier": "2026-017525--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-13_07-00-00-000_007.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.5729667946311,8.545475180772092,50.5724182301746,8.545748621969055", + "point": "50.5729667946311,8.545475180772092", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Wetzlar-Ost (aus Richtung Vogelsang)", + "title": "A45 - Br\u00fcckenwartung - AkD 17525", + "coordinate": { + "lat": 50.5729667946311, + "long": 8.545475180772092 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "Abfahrt von der A45: AS Wetzlar-Ost (aus Richtung Vogelsang)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A45 - Br\u00fcckenwartung - AkD 17525" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.545475181, + 50.572966795 + ], + [ + 8.545748622, + 50.57241823 + ] + ] + } + }, + { + "identifier": "2023-002196--vi-bs.2024-12-10_05-00-00-000.devi-zus.2023-09-01_19-00-00-000.f_001.de64", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.74389088333864,8.256112044069205,50.74295827556147,8.25691976174575", + "point": "50.74389088333864,8.256112044069205", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Dillenburg (aus Richtung Schlierberg)", + "title": "A45 - Ersatzneubau BW Sechshelden - AlD 2196", + "startTimestamp": "2024-12-10T05:00:00+01:00", + "coordinate": { + "lat": 50.74389088333864, + "long": 8.256112044069205 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.12.24 um 05:00 Uhr", + "Ende: 15.02.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "Abfahrt von der A45: AS Dillenburg (aus Richtung Schlierberg)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A45 - Ersatzneubau BW Sechshelden - AlD 2196" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.256112044, + 50.743890883 + ], + [ + 8.2561486, + 50.743863801 + ], + [ + 8.256503, + 50.743586401 + ], + [ + 8.256636, + 50.743460401 + ], + [ + 8.2567421, + 50.743340401 + ], + [ + 8.2568213, + 50.743224901 + ], + [ + 8.2568693, + 50.743112401 + ], + [ + 8.2569151, + 50.742976601 + ], + [ + 8.256919762, + 50.742958276 + ] + ] + } + }, + { + "identifier": "2023-004527--vi-bs.2024-11-25_05-00-00-000.devi-zus.2024-05-11_20-00-00-000_001.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.432578346130214,7.532941231474946,51.433105976088854,7.531353761106406", + "point": "51.432578346130214,7.532941231474946", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Schwerte-Ergste)", + "title": "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527", + "startTimestamp": "2024-11-25T05:00:00+01:00", + "coordinate": { + "lat": 51.432578346130214, + "long": 7.532941231474946 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.11.24 um 05:00 Uhr", + "Ende: 28.07.27 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "11.04.26", + "(Ende der Gesamtma\u00dfnahme: 04.06.29)", + "", + "Auffahrt auf die A45: AK Westhofener Kreuz (aus Richtung Schwerte-Ergste)", + "", + "L\u00e4nge: 0.12 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.532941231, + 51.432578346 + ], + [ + 7.531353761, + 51.433105976 + ] + ] + } + }, + { + "identifier": "2023-004527--vi-bs.2024-11-25_05-00-00-000.devi-zus.2024-05-11_20-00-00-000_001.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.432829258205096,7.53090671925506,51.43147527829801,7.534885924035784", + "point": "51.432829258205096,7.53090671925506", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Westhofener Kreuz (aus Richtung Dortmund-S\u00fcd)", + "title": "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527", + "startTimestamp": "2024-11-25T05:00:00+01:00", + "coordinate": { + "lat": 51.432829258205096, + "long": 7.53090671925506 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.11.24 um 05:00 Uhr", + "Ende: 28.07.27 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "11.04.26", + "(Ende der Gesamtma\u00dfnahme: 04.06.29)", + "", + "Abfahrt von der A45: AK Westhofener Kreuz (aus Richtung Dortmund-S\u00fcd)", + "", + "L\u00e4nge: 0.31 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A45 - Ersatzneubau Kreuzungsbauwerk A1-A45 Westhofener Kreuz - AlD 4527" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.530906719, + 51.432829258 + ], + [ + 7.5329041, + 51.432148701 + ], + [ + 7.534885924, + 51.431475278 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2024-10-12_20-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.03386676135304,7.820691174459324,51.03441371995357,7.8184675124299385", + "point": "51.03386676135304,7.820691174459324", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Olpe (aus Richtung Mark) nach A45", + "title": "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554", + "startTimestamp": "2024-10-12T20:00:00+02:00", + "coordinate": { + "lat": 51.03386676135304, + "long": 7.820691174459324 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.10.24 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Von Auffahrt auf die A45: AS Olpe (aus Richtung Mark) nach A45: Gie\u00dfen -> Hagen, zwischen AS Olpe und 1.7 km vor Weidebruch", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.820691174, + 51.033866761 + ], + [ + 7.8204762, + 51.033811201 + ], + [ + 7.8201113, + 51.033789601 + ], + [ + 7.8198311, + 51.033842401 + ], + [ + 7.819195, + 51.034033301 + ], + [ + 7.8185423, + 51.034378701 + ], + [ + 7.818467512, + 51.03441372 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2024-10-12_20-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.05730533256099,7.764634204364646,51.05675244603704,7.7601188512956645", + "point": "51.05730533256099,7.764634204364646", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Drolshagen (aus Richtung Kattenscho\u00df) nach A45", + "title": "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554", + "startTimestamp": "2024-10-12T20:00:00+02:00", + "coordinate": { + "lat": 51.05730533256099, + "long": 7.764634204364646 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.10.24 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Von Auffahrt auf die A45: AS Drolshagen (aus Richtung Kattenscho\u00df) nach A45: Gie\u00dfen -> Hagen, zwischen AS Drolshagen und 5.4 km vor Brachtsiepen", + "", + "L\u00e4nge: 0.33 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.764634204, + 51.057305333 + ], + [ + 7.7646122, + 51.057284801 + ], + [ + 7.7645196, + 51.057210001 + ], + [ + 7.7644163, + 51.057141101 + ], + [ + 7.7643032, + 51.057078401 + ], + [ + 7.7641813, + 51.057022701 + ], + [ + 7.7640517, + 51.056974401 + ], + [ + 7.7639154, + 51.056933901 + ], + [ + 7.7637738, + 51.056901501 + ], + [ + 7.7636279, + 51.056877601 + ], + [ + 7.7634792, + 51.056862301 + ], + [ + 7.7628455, + 51.056799301 + ], + [ + 7.7619002, + 51.056801901 + ], + [ + 7.7609553, + 51.056784901 + ], + [ + 7.7603961, + 51.056763201 + ], + [ + 7.760118851, + 51.056752446 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2024-10-12_20-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.05635779547982,7.768574893162115,51.05729745357091,7.765003292769651", + "point": "51.05635779547982,7.768574893162115", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Hagen", + "title": "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554", + "startTimestamp": "2024-10-12T20:00:00+02:00", + "coordinate": { + "lat": 51.05635779547982, + "long": 7.768574893162115 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.10.24 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Von A45: Gie\u00dfen -> Hagen, zwischen 2.3 km hinter Kattenscho\u00df und AS Drolshagen nach Abfahrt von der A45: AS Drolshagen (aus Richtung Kattenscho\u00df)", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.768574893, + 51.056357795 + ], + [ + 7.7685729, + 51.056358101 + ], + [ + 7.7676665, + 51.056477601 + ], + [ + 7.7667545, + 51.056578601 + ], + [ + 7.7661728, + 51.056722901 + ], + [ + 7.7659922, + 51.056753701 + ], + [ + 7.7658684, + 51.056776201 + ], + [ + 7.7656262, + 51.056833601 + ], + [ + 7.7654555, + 51.056884801 + ], + [ + 7.7653143, + 51.056945101 + ], + [ + 7.7652056, + 51.057011401 + ], + [ + 7.7651261, + 51.057076801 + ], + [ + 7.7650644, + 51.057149501 + ], + [ + 7.7650221, + 51.057227401 + ], + [ + 7.765003293, + 51.057297454 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2024-10-12_20-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.05614580911135,7.759144643002995,51.05665491095729,7.763188754620592", + "point": "51.05614580911135,7.759144643002995", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Drolshagen (aus Richtung Brachtsiepen) nach A45", + "title": "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554", + "startTimestamp": "2024-10-12T20:00:00+02:00", + "coordinate": { + "lat": 51.05614580911135, + "long": 7.759144643002995 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.10.24 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Von Auffahrt auf die A45: AS Drolshagen (aus Richtung Brachtsiepen) nach A45: Hagen -> Gie\u00dfen, zwischen Brachtsiepen und 0.2 km vor AS Drolshagen", + "", + "L\u00e4nge: 0.31 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.759144643, + 51.056145809 + ], + [ + 7.7591438, + 51.056163101 + ], + [ + 7.759164, + 51.056240801 + ], + [ + 7.7592121, + 51.056319301 + ], + [ + 7.7592742, + 51.056383401 + ], + [ + 7.7593598, + 51.056441401 + ], + [ + 7.7595025, + 51.056499801 + ], + [ + 7.7598362, + 51.056600101 + ], + [ + 7.7607301, + 51.056638501 + ], + [ + 7.7616253, + 51.056660001 + ], + [ + 7.7625212, + 51.056664301 + ], + [ + 7.763188755, + 51.056654911 + ] + ] + } + }, + { + "identifier": "2023-004554--vi-bs.2024-10-12_20-00-00-000.devi-zus.2024-04-29_19-00-00-000_001.f.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.05637619661849,7.7573101846744885,51.056190049380064,7.758548979258808", + "point": "51.05637619661849,7.7573101846744885", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Drolshagen (aus Richtung Brachtsiepen)", + "title": "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554", + "startTimestamp": "2024-10-12T20:00:00+02:00", + "coordinate": { + "lat": 51.05637619661849, + "long": 7.7573101846744885 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.10.24 um 20:00 Uhr", + "Ende: 01.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Abfahrt von der A45: AS Drolshagen (aus Richtung Brachtsiepen)", + "", + "L\u00e4nge: 0.09 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A45 - grundhafte Sanierung der Fahrbahn bei Drolshagen - AlD 4554" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.757310185, + 51.056376197 + ], + [ + 7.757685, + 51.056369901 + ], + [ + 7.7578685, + 51.056358801 + ], + [ + 7.7580348, + 51.056336901 + ], + [ + 7.7582118, + 51.056301501 + ], + [ + 7.7583934, + 51.056247801 + ], + [ + 7.758548979, + 51.056190049 + ] + ] + } + }, + { + "identifier": "2023-003056--vi-bs.2025-07-14_21-00-00-000.devi-zus.2021-05-31_08-00-00-000_005.f.de59", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.61905233955449,8.384633696445817,50.618381452723135,8.38045897794313", + "point": "50.61905233955449,8.384633696445817", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Ehringshausen (aus Richtung Lemperberg)", + "title": "A45 - Ersatzneubau TB Onsbach und TB Volkersbach - AlD 3056", + "startTimestamp": "2025-07-14T21:00:00+02:00", + "coordinate": { + "lat": 50.61905233955449, + "long": 8.384633696445817 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.07.25 um 21:00 Uhr", + "Ende: 01.03.27 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.11.28)", + "", + "Auffahrt auf die A45: AS Ehringshausen (aus Richtung Lemperberg)", + "", + "L\u00e4nge: 0.33 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Ersatzneubau TB Onsbach und TB Volkersbach - AlD 3056" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.384633696, + 50.61905234 + ], + [ + 8.3844964, + 50.618879301 + ], + [ + 8.3844028, + 50.618762601 + ], + [ + 8.3842609, + 50.618648801 + ], + [ + 8.3841407, + 50.618579201 + ], + [ + 8.38402, + 50.618517501 + ], + [ + 8.3838245, + 50.618461101 + ], + [ + 8.3836683, + 50.618426901 + ], + [ + 8.383075, + 50.618348701 + ], + [ + 8.3821499, + 50.618327501 + ], + [ + 8.381415, + 50.618332701 + ], + [ + 8.3807123, + 50.618363301 + ], + [ + 8.380458978, + 50.618381453 + ] + ] + } + }, + { + "identifier": "2025-053669--vi-bs.2026-04-02_05-00-00-000.devi-zus.2025-11-10_19-00-00-000_001.de20", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.52191434998395,8.639678081364996,50.52089413710815,8.641016178519143", + "point": "50.52191434998395,8.639678081364996", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Gie\u00dfener S\u00fcdkreuz (aus Richtung Linden)", + "title": "A485 - Bau eines Provisorium - AK Gie\u00dfener S\u00fcdkreuz - AlD 53669", + "startTimestamp": "2026-04-02T05:00:00+02:00", + "coordinate": { + "lat": 50.52191434998395, + "long": 8.639678081364996 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 05:00 Uhr", + "Ende: 18.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.05.26)", + "", + "Auffahrt auf die A485: AK Gie\u00dfener S\u00fcdkreuz (aus Richtung Linden)", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A485 - Bau eines Provisorium - AK Gie\u00dfener S\u00fcdkreuz - AlD 53669" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.639678081, + 50.52191435 + ], + [ + 8.6407263, + 50.521134001 + ], + [ + 8.641016179, + 50.520894137 + ] + ] + } + }, + { + "identifier": "2023-004171--vi-bs.2025-12-22_13-00-00-000.devi-zus.2022-09-12_06-00-00-000_008.f.de48", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26034711367524,7.603685895502306,51.260031436283505,7.605278609951182", + "point": "51.26034711367524,7.603685895502306", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS L\u00fcdenscheid-Nord (aus Richtung Sterbecker Siepen)", + "title": "A45 - Ersatzneubau TB Sterbecke - AlD 4171", + "startTimestamp": "2025-12-22T13:00:00+01:00", + "coordinate": { + "lat": 51.26034711367524, + "long": 7.603685895502306 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.12.25 um 13:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.03.28)", + "", + "Auffahrt auf die A45: AS L\u00fcdenscheid-Nord (aus Richtung Sterbecker Siepen)", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Ersatzneubau TB Sterbecke - AlD 4171" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.603685896, + 51.260347114 + ], + [ + 7.6036913, + 51.260350301 + ], + [ + 7.6038411, + 51.260415201 + ], + [ + 7.6039622, + 51.260451001 + ], + [ + 7.604091, + 51.260467501 + ], + [ + 7.6042439, + 51.260476201 + ], + [ + 7.6044382, + 51.260463401 + ], + [ + 7.6046931, + 51.260398101 + ], + [ + 7.6048353, + 51.260339401 + ], + [ + 7.6049624, + 51.260277801 + ], + [ + 7.60527861, + 51.260031436 + ] + ] + } + }, + { + "identifier": "2023-004171--vi-bs.2025-12-22_13-00-00-000.devi-zus.2022-09-12_06-00-00-000_008.f.de44", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26171276369839,7.603713417676355,51.26040569978289,7.603454042417144", + "point": "51.26171276369839,7.603713417676355", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS L\u00fcdenscheid-Nord (aus Richtung Sterbecker Siepen)", + "title": "A45 - Ersatzneubau TB Sterbecke - AlD 4171", + "startTimestamp": "2025-12-22T13:00:00+01:00", + "coordinate": { + "lat": 51.26171276369839, + "long": 7.603713417676355 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.12.25 um 13:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.03.28)", + "", + "Abfahrt von der A45: AS L\u00fcdenscheid-Nord (aus Richtung Sterbecker Siepen)", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Ersatzneubau TB Sterbecke - AlD 4171" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.603713418, + 51.261712764 + ], + [ + 7.6037539, + 51.261626401 + ], + [ + 7.6038134, + 51.261464001 + ], + [ + 7.6038427, + 51.261280801 + ], + [ + 7.6038429, + 51.261072901 + ], + [ + 7.6037817, + 51.260861501 + ], + [ + 7.6036556, + 51.260643601 + ], + [ + 7.603454042, + 51.2604057 + ] + ] + } + }, + { + "identifier": "2023-004457--vi-bs.2025-06-30_20-00-00-000.devi-zus.2023-06-01_05-00-00-000_006.f.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.44310829419044,7.4887298112244,51.44318647110484,7.489408484447923", + "point": "51.44310829419044,7.4887298112244", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Dortmund-S\u00fcd (aus Richtung Fl\u00f6z Mausegatt)", + "title": "A45 - Verst\u00e4rkung BW Rombergholz und BW Schorveskopf - AlD 4457", + "startTimestamp": "2025-06-30T20:00:00+02:00", + "coordinate": { + "lat": 51.44310829419044, + "long": 7.4887298112244 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.06.25 um 20:00 Uhr", + "Ende: 05.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.12.26)", + "", + "Auffahrt auf die A45: AS Dortmund-S\u00fcd (aus Richtung Fl\u00f6z Mausegatt)", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A45 - Verst\u00e4rkung BW Rombergholz und BW Schorveskopf - AlD 4457" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.488729811, + 51.443108294 + ], + [ + 7.4887615, + 51.443115001 + ], + [ + 7.4890448, + 51.443156601 + ], + [ + 7.4893519, + 51.443183001 + ], + [ + 7.489408484, + 51.443186471 + ] + ] + } + }, + { + "identifier": "2023-002196--vi-bs.2024-12-10_05-00-00-000.devi-zus.2023-09-01_19-00-00-000.f_001.de62", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.74259374679626,8.257248217022216,50.74281824419937,8.258537324013613", + "point": "50.74259374679626,8.257248217022216", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Dillenburg (aus Richtung Schlierberg)", + "title": "A45 - Ersatzneubau BW Sechshelden - AlD 2196", + "startTimestamp": "2024-12-10T05:00:00+01:00", + "coordinate": { + "lat": 50.74259374679626, + "long": 8.257248217022216 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.12.24 um 05:00 Uhr", + "Ende: 15.02.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "Auffahrt auf die A45: AS Dillenburg (aus Richtung Schlierberg)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Ersatzneubau BW Sechshelden - AlD 2196" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.257248217, + 50.742593747 + ], + [ + 8.2572527, + 50.742628501 + ], + [ + 8.2572884, + 50.742703901 + ], + [ + 8.2573482, + 50.742772801 + ], + [ + 8.2574294, + 50.742832301 + ], + [ + 8.2575285, + 50.742879801 + ], + [ + 8.2576411, + 50.742913101 + ], + [ + 8.2577622, + 50.742930801 + ], + [ + 8.2578864, + 50.742932101 + ], + [ + 8.2581202, + 50.742909501 + ], + [ + 8.258537324, + 50.742818244 + ] + ] + } + }, + { + "identifier": "2023-002196--vi-bs.2024-12-10_05-00-00-000.devi-zus.2023-09-01_19-00-00-000.f_001.de60", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.74329651283358,8.259509753114996,50.74556067717932,8.252254517675402", + "point": "50.74329651283358,8.259509753114996", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Dillenburg (aus Richtung Gaulskopf) nach A45", + "title": "A45 - Ersatzneubau BW Sechshelden - AlD 2196", + "startTimestamp": "2024-12-10T05:00:00+01:00", + "coordinate": { + "lat": 50.74329651283358, + "long": 8.259509753114996 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.12.24 um 05:00 Uhr", + "Ende: 15.02.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.30)", + "", + "Von Auffahrt auf die A45: AS Dillenburg (aus Richtung Gaulskopf) nach A45: Gie\u00dfen -> Hagen, zwischen AS Dillenburg und 1.2 km vor Schlierberg", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Ersatzneubau BW Sechshelden - AlD 2196" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.259509753, + 50.743296513 + ], + [ + 8.2594247, + 50.743258501 + ], + [ + 8.2592573, + 50.743216801 + ], + [ + 8.2590686, + 50.743197701 + ], + [ + 8.2588524, + 50.743200101 + ], + [ + 8.2586619, + 50.743229701 + ], + [ + 8.2584533, + 50.743290101 + ], + [ + 8.2581507, + 50.743405401 + ], + [ + 8.2553412, + 50.744588701 + ], + [ + 8.2546145, + 50.744910401 + ], + [ + 8.2539881, + 50.745149701 + ], + [ + 8.2535457, + 50.745288301 + ], + [ + 8.2530732, + 50.745403501 + ], + [ + 8.2524532, + 50.745530801 + ], + [ + 8.252254518, + 50.745560677 + ] + ] + } + }, + { + "identifier": "2023-004171--vi-bs.2025-12-22_13-00-00-000.devi-zus.2022-09-12_06-00-00-000_008.f.de46", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26310581958695,7.604335680707179,51.26338606327876,7.603267703276277", + "point": "51.26310581958695,7.604335680707179", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sterbecker Siepen (aus Richtung L\u00fcdenscheid-Nord)", + "title": "A45 - Ersatzneubau TB Sterbecke - AlD 4171", + "startTimestamp": "2025-12-22T13:00:00+01:00", + "coordinate": { + "lat": 51.26310581958695, + "long": 7.604335680707179 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.12.25 um 13:00 Uhr", + "Ende: 01.10.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.03.28)", + "", + "Auffahrt auf die A45: Sterbecker Siepen (aus Richtung L\u00fcdenscheid-Nord)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A45 - Ersatzneubau TB Sterbecke - AlD 4171" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.604335681, + 51.26310582 + ], + [ + 7.6039875, + 51.263143401 + ], + [ + 7.6035422, + 51.263234101 + ], + [ + 7.603267703, + 51.263386063 + ] + ] + } + } + ] + }, + "A46": { + "roadworks": [ + { + "identifier": "2023-004531--vi-bs.2025-11-26_00-00-00-000.devi-zus.2024-07-08_00-00-00-000.f_002.de261", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.09664437649478,6.4991155654312225,51.11740391282926,6.590697097408566", + "point": "51.09664437649478,6.4991155654312225", + "startLcPosition": "8", + "impact": { + "lower": "Vierwinden", + "upper": "Holz", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heinsberg -> D\u00fcsseldorf", + "title": "A46 | Holz - Vierwinden", + "startTimestamp": "2025-11-26T00:00:00+01:00", + "coordinate": { + "lat": 51.09664437649478, + "long": 6.4991155654312225 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A46: Heinsberg -> D\u00fcsseldorf, zwischen 1.5 km hinter AK Holz und 1.5 km vor Vierwinden", + "", + "L\u00e4nge: 7.03 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.499115565, + 51.096644376 + ], + [ + 6.4995317, + 51.096675801 + ], + [ + 6.5001532, + 51.096722401 + ], + [ + 6.5007768, + 51.096766401 + ], + [ + 6.5011369, + 51.096789501 + ], + [ + 6.5015317, + 51.096812601 + ], + [ + 6.5018906, + 51.096832801 + ], + [ + 6.5022417, + 51.096850501 + ], + [ + 6.5024311, + 51.096858601 + ], + [ + 6.5026925, + 51.096867401 + ], + [ + 6.5029374, + 51.096874901 + ], + [ + 6.5031823, + 51.096880001 + ], + [ + 6.5034182, + 51.096883901 + ], + [ + 6.5036521, + 51.096886701 + ], + [ + 6.5038386, + 51.096887301 + ], + [ + 6.5040289, + 51.096885501 + ], + [ + 6.5042163, + 51.096883701 + ], + [ + 6.5044076, + 51.096880601 + ], + [ + 6.5046688, + 51.096875301 + ], + [ + 6.5049281, + 51.096868801 + ], + [ + 6.5051736, + 51.096860501 + ], + [ + 6.5054231, + 51.096849701 + ], + [ + 6.5056658, + 51.096837101 + ], + [ + 6.5059124, + 51.096821901 + ], + [ + 6.5061771, + 51.096804401 + ], + [ + 6.5064388, + 51.096784901 + ], + [ + 6.5066067, + 51.096771701 + ], + [ + 6.5067716, + 51.096757901 + ], + [ + 6.5069472, + 51.096742501 + ], + [ + 6.5071249, + 51.096726501 + ], + [ + 6.5072868, + 51.096710801 + ], + [ + 6.5074566, + 51.096692701 + ], + [ + 6.5078334, + 51.096654001 + ], + [ + 6.5083994, + 51.096594701 + ], + [ + 6.5089498, + 51.096534301 + ], + [ + 6.5102144, + 51.096395501 + ], + [ + 6.510703, + 51.096344801 + ], + [ + 6.5109474, + 51.096320701 + ], + [ + 6.5111993, + 51.096299001 + ], + [ + 6.5116796, + 51.096260201 + ], + [ + 6.5119216, + 51.096242001 + ], + [ + 6.5121712, + 51.096226101 + ], + [ + 6.5123565, + 51.096214901 + ], + [ + 6.5125494, + 51.096203801 + ], + [ + 6.512748, + 51.096194901 + ], + [ + 6.5129694, + 51.096187301 + ], + [ + 6.5132248, + 51.096182201 + ], + [ + 6.5135031, + 51.096178201 + ], + [ + 6.513864, + 51.096177801 + ], + [ + 6.514206, + 51.096181001 + ], + [ + 6.5143758, + 51.096184301 + ], + [ + 6.5145419, + 51.096190101 + ], + [ + 6.5148474, + 51.096202701 + ], + [ + 6.5150612, + 51.096212401 + ], + [ + 6.5152864, + 51.096226801 + ], + [ + 6.5154982, + 51.096241501 + ], + [ + 6.5157138, + 51.096261001 + ], + [ + 6.5160423, + 51.096292801 + ], + [ + 6.5164292, + 51.096335101 + ], + [ + 6.5166132, + 51.096357501 + ], + [ + 6.5167971, + 51.096382301 + ], + [ + 6.5170322, + 51.096415501 + ], + [ + 6.5172559, + 51.096448801 + ], + [ + 6.5174796, + 51.096484501 + ], + [ + 6.5177147, + 51.096524901 + ], + [ + 6.5180787, + 51.096589801 + ], + [ + 6.5184466, + 51.096659301 + ], + [ + 6.5190485, + 51.096781801 + ], + [ + 6.5196542, + 51.096909001 + ], + [ + 6.5208326, + 51.097158101 + ], + [ + 6.522028, + 51.097414301 + ], + [ + 6.5247999, + 51.098005001 + ], + [ + 6.5262448, + 51.098314701 + ], + [ + 6.5277201, + 51.098628001 + ], + [ + 6.5287021, + 51.098837901 + ], + [ + 6.5294254, + 51.098991601 + ], + [ + 6.5300148, + 51.099118001 + ], + [ + 6.5312996, + 51.099392401 + ], + [ + 6.5326859, + 51.099690201 + ], + [ + 6.5340066, + 51.099970701 + ], + [ + 6.5353349, + 51.100254801 + ], + [ + 6.5368137, + 51.100571001 + ], + [ + 6.5375561, + 51.100726801 + ], + [ + 6.5383, + 51.100886101 + ], + [ + 6.5394695, + 51.101137001 + ], + [ + 6.5412733, + 51.101518601 + ], + [ + 6.5421516, + 51.101708601 + ], + [ + 6.5431691, + 51.101923201 + ], + [ + 6.5439127, + 51.102082601 + ], + [ + 6.5451661, + 51.102353001 + ], + [ + 6.5464194, + 51.102618001 + ], + [ + 6.5476706, + 51.102880301 + ], + [ + 6.5483027, + 51.103012001 + ], + [ + 6.5489348, + 51.103139901 + ], + [ + 6.5499841, + 51.103347101 + ], + [ + 6.5505124, + 51.103450801 + ], + [ + 6.5510378, + 51.103550701 + ], + [ + 6.5521855, + 51.103762101 + ], + [ + 6.5530233, + 51.103914601 + ], + [ + 6.5539137, + 51.104076401 + ], + [ + 6.5547311, + 51.104224301 + ], + [ + 6.5558386, + 51.104426401 + ], + [ + 6.5565723, + 51.104559401 + ], + [ + 6.5574261, + 51.104713301 + ], + [ + 6.5583363, + 51.104877101 + ], + [ + 6.5592554, + 51.105043801 + ], + [ + 6.5600959, + 51.105198701 + ], + [ + 6.5609462, + 51.105350601 + ], + [ + 6.5626468, + 51.105659001 + ], + [ + 6.5642753, + 51.105953701 + ], + [ + 6.5658478, + 51.106242201 + ], + [ + 6.5685694, + 51.106737601 + ], + [ + 6.5697785, + 51.106971201 + ], + [ + 6.5704768, + 51.107115601 + ], + [ + 6.5711163, + 51.107257601 + ], + [ + 6.5719954, + 51.107470001 + ], + [ + 6.5726213, + 51.107633401 + ], + [ + 6.5731743, + 51.107788701 + ], + [ + 6.5738898, + 51.108000501 + ], + [ + 6.5743877, + 51.108157501 + ], + [ + 6.5753768, + 51.108491801 + ], + [ + 6.5758061, + 51.108646901 + ], + [ + 6.5761194, + 51.108764501 + ], + [ + 6.5767121, + 51.108992701 + ], + [ + 6.5773399, + 51.109256401 + ], + [ + 6.5783649, + 51.109707901 + ], + [ + 6.5791913, + 51.110107201 + ], + [ + 6.5800216, + 51.110546901 + ], + [ + 6.5806161, + 51.110877101 + ], + [ + 6.5811745, + 51.111196201 + ], + [ + 6.5819246, + 51.111640501 + ], + [ + 6.5833003, + 51.112475101 + ], + [ + 6.5846683, + 51.113322201 + ], + [ + 6.5858666, + 51.114091001 + ], + [ + 6.586175, + 51.114292601 + ], + [ + 6.5865763, + 51.114551801 + ], + [ + 6.5876656, + 51.115282501 + ], + [ + 6.5885407, + 51.115880201 + ], + [ + 6.5894065, + 51.116482601 + ], + [ + 6.5906395, + 51.117361901 + ], + [ + 6.590697097, + 51.117403913 + ] + ] + } + }, + { + "identifier": "2023-004531--vi-bs.2025-11-26_00-00-00-000.devi-zus.2024-07-08_00-00-00-000.f_002.de263", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.117477982853536,6.59056060005542,51.096754502164174,6.499093843083775", + "point": "51.117477982853536,6.59056060005542", + "startLcPosition": "11", + "impact": { + "lower": "Holz", + "upper": "Vierwinden", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Heinsberg", + "title": "A46 | Vierwinden - Holz", + "startTimestamp": "2025-11-26T00:00:00+01:00", + "coordinate": { + "lat": 51.117477982853536, + "long": 6.59056060005542 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "A46: D\u00fcsseldorf -> Heinsberg, zwischen 1.5 km hinter Vierwinden und 1.5 km vor AK Holz", + "", + "L\u00e4nge: 7.03 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.5905606, + 51.117477983 + ], + [ + 6.5904933, + 51.117428801 + ], + [ + 6.5892739, + 51.116558201 + ], + [ + 6.5884119, + 51.115958901 + ], + [ + 6.5875141, + 51.115345201 + ], + [ + 6.5864659, + 51.114643001 + ], + [ + 6.5860968, + 51.114403101 + ], + [ + 6.5858118, + 51.114218301 + ], + [ + 6.5845295, + 51.113396901 + ], + [ + 6.583193, + 51.112563901 + ], + [ + 6.5818178, + 51.111729001 + ], + [ + 6.5810592, + 51.111280401 + ], + [ + 6.5805068, + 51.110965501 + ], + [ + 6.5799136, + 51.110635001 + ], + [ + 6.5790866, + 51.110200101 + ], + [ + 6.5782618, + 51.109795301 + ], + [ + 6.5772242, + 51.109340401 + ], + [ + 6.5766008, + 51.109081201 + ], + [ + 6.5759923, + 51.108846701 + ], + [ + 6.5755626, + 51.108687201 + ], + [ + 6.5751305, + 51.108534201 + ], + [ + 6.5741729, + 51.108214701 + ], + [ + 6.5735327, + 51.108018001 + ], + [ + 6.5730952, + 51.107888901 + ], + [ + 6.5725347, + 51.107730901 + ], + [ + 6.5719391, + 51.107575601 + ], + [ + 6.5710712, + 51.107366101 + ], + [ + 6.5704304, + 51.107224501 + ], + [ + 6.5697262, + 51.107077401 + ], + [ + 6.5685014, + 51.106839301 + ], + [ + 6.5657948, + 51.106349401 + ], + [ + 6.5648546, + 51.106177901 + ], + [ + 6.5646602, + 51.106143901 + ], + [ + 6.5625904, + 51.105766701 + ], + [ + 6.5607676, + 51.105438201 + ], + [ + 6.5599766, + 51.105294401 + ], + [ + 6.559182, + 51.105148701 + ], + [ + 6.5581873, + 51.104969201 + ], + [ + 6.5573362, + 51.104816201 + ], + [ + 6.5565253, + 51.104668701 + ], + [ + 6.5558028, + 51.104537301 + ], + [ + 6.5547609, + 51.104350001 + ], + [ + 6.553844, + 51.104182401 + ], + [ + 6.5529613, + 51.104021701 + ], + [ + 6.5521244, + 51.103868901 + ], + [ + 6.5509821, + 51.103657101 + ], + [ + 6.5504549, + 51.103553001 + ], + [ + 6.5499214, + 51.103451601 + ], + [ + 6.5488783, + 51.103246401 + ], + [ + 6.5482144, + 51.103111701 + ], + [ + 6.5475578, + 51.102975301 + ], + [ + 6.5463441, + 51.102719801 + ], + [ + 6.5438261, + 51.102183401 + ], + [ + 6.5430362, + 51.102015601 + ], + [ + 6.5421111, + 51.101816901 + ], + [ + 6.5419065, + 51.101773301 + ], + [ + 6.540425, + 51.101458301 + ], + [ + 6.5399046, + 51.101348601 + ], + [ + 6.5395155, + 51.101265701 + ], + [ + 6.5391704, + 51.101191301 + ], + [ + 6.5382622, + 51.100995901 + ], + [ + 6.5375523, + 51.100846301 + ], + [ + 6.5368245, + 51.100691101 + ], + [ + 6.5352768, + 51.100360201 + ], + [ + 6.5346788, + 51.100234301 + ], + [ + 6.5343827, + 51.100171401 + ], + [ + 6.5340895, + 51.100108401 + ], + [ + 6.532895, + 51.099851101 + ], + [ + 6.5320152, + 51.099663501 + ], + [ + 6.5311741, + 51.099486501 + ], + [ + 6.5303403, + 51.099307701 + ], + [ + 6.529301, + 51.099087801 + ], + [ + 6.52864, + 51.098946901 + ], + [ + 6.5279213, + 51.098791101 + ], + [ + 6.5271873, + 51.098632901 + ], + [ + 6.5259081, + 51.098360101 + ], + [ + 6.5244957, + 51.098058801 + ], + [ + 6.5231401, + 51.097768801 + ], + [ + 6.52256, + 51.097643601 + ], + [ + 6.5219723, + 51.097518401 + ], + [ + 6.5213642, + 51.097389201 + ], + [ + 6.5207543, + 51.097257701 + ], + [ + 6.5201519, + 51.097128601 + ], + [ + 6.5195419, + 51.096999401 + ], + [ + 6.5189984, + 51.096886401 + ], + [ + 6.5184757, + 51.096781701 + ], + [ + 6.5182544, + 51.096739401 + ], + [ + 6.5180692, + 51.096705601 + ], + [ + 6.5178801, + 51.096670501 + ], + [ + 6.5176949, + 51.096637901 + ], + [ + 6.5174618, + 51.096598501 + ], + [ + 6.5172269, + 51.096561501 + ], + [ + 6.5169833, + 51.096524501 + ], + [ + 6.5167379, + 51.096489901 + ], + [ + 6.5164504, + 51.096451701 + ], + [ + 6.5161667, + 51.096418401 + ], + [ + 6.5159773, + 51.096398501 + ], + [ + 6.5157973, + 51.096379801 + ], + [ + 6.5156003, + 51.096362301 + ], + [ + 6.5153861, + 51.096347201 + ], + [ + 6.5151071, + 51.096328801 + ], + [ + 6.514832, + 51.096313901 + ], + [ + 6.5145139, + 51.096301701 + ], + [ + 6.5141959, + 51.096294301 + ], + [ + 6.5138904, + 51.096290201 + ], + [ + 6.5135849, + 51.096288401 + ], + [ + 6.5132852, + 51.096292701 + ], + [ + 6.5129816, + 51.096300501 + ], + [ + 6.5127682, + 51.096308101 + ], + [ + 6.5125776, + 51.096315701 + ], + [ + 6.5123937, + 51.096325801 + ], + [ + 6.5122022, + 51.096337001 + ], + [ + 6.5119602, + 51.096352501 + ], + [ + 6.5117239, + 51.096370401 + ], + [ + 6.5114895, + 51.096388301 + ], + [ + 6.5112627, + 51.096407401 + ], + [ + 6.5110022, + 51.096430901 + ], + [ + 6.5107551, + 51.096455501 + ], + [ + 6.5105041, + 51.096480201 + ], + [ + 6.5102627, + 51.096506101 + ], + [ + 6.5096849, + 51.096565801 + ], + [ + 6.5090996, + 51.096632701 + ], + [ + 6.5078756, + 51.096765401 + ], + [ + 6.507529, + 51.096801601 + ], + [ + 6.5071862, + 51.096835501 + ], + [ + 6.5068416, + 51.096868101 + ], + [ + 6.5065463, + 51.096892501 + ], + [ + 6.5062499, + 51.096914501 + ], + [ + 6.5059992, + 51.096930501 + ], + [ + 6.5057494, + 51.096945401 + ], + [ + 6.505511, + 51.096957901 + ], + [ + 6.505134, + 51.096974301 + ], + [ + 6.5047968, + 51.096986001 + ], + [ + 6.5044464, + 51.096994001 + ], + [ + 6.5040998, + 51.096999701 + ], + [ + 6.5037654, + 51.097000601 + ], + [ + 6.503431, + 51.096997801 + ], + [ + 6.5030662, + 51.096991101 + ], + [ + 6.5027015, + 51.096980901 + ], + [ + 6.5024485, + 51.096972901 + ], + [ + 6.5022884, + 51.096965601 + ], + [ + 6.5021284, + 51.096958301 + ], + [ + 6.5018623, + 51.096944701 + ], + [ + 6.5015773, + 51.096928701 + ], + [ + 6.5011755, + 51.096905001 + ], + [ + 6.500766, + 51.096880101 + ], + [ + 6.5004231, + 51.096856701 + ], + [ + 6.5000878, + 51.096829701 + ], + [ + 6.4994686, + 51.096783001 + ], + [ + 6.4991669, + 51.096760401 + ], + [ + 6.499093843, + 51.096754502 + ] + ] + } + }, + { + "identifier": "2025-016050--vi-bs.2026-04-08_08-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de37", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.16776999614916,6.652301770835447,51.17544799997666,6.664188501030043", + "point": "51.16776999614916,6.652301770835447", + "startLcPosition": "13", + "impact": { + "lower": "Neuss-West", + "upper": "Neuss-Holzheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heinsberg -> D\u00fcsseldorf", + "title": "A46 | Neuss-Holzheim - Neuss-West", + "coordinate": { + "lat": 51.16776999614916, + "long": 6.652301770835447 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 10:00 bis 15:00 Uhr", + "15.04.26 von 10:00 bis 15:00 Uhr", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 27.04.26 und dem 30.04.26 von 10:00 bis 15:00 Uhr.", + "", + "A46: Heinsberg -> D\u00fcsseldorf, zwischen 0.4 km hinter AS Neuss-Holzheim und 0.6 km vor AK Neuss-West", + "", + "L\u00e4nge: 1.19 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.652301771, + 51.167769996 + ], + [ + 6.6524405, + 51.167879101 + ], + [ + 6.6537958, + 51.168901201 + ], + [ + 6.6548616, + 51.169671401 + ], + [ + 6.6557684, + 51.170303501 + ], + [ + 6.6563927, + 51.170727001 + ], + [ + 6.6571446, + 51.171218201 + ], + [ + 6.6580498, + 51.171788001 + ], + [ + 6.6589437, + 51.172338801 + ], + [ + 6.6617063, + 51.173984901 + ], + [ + 6.6627839, + 51.174618001 + ], + [ + 6.6633471, + 51.174952501 + ], + [ + 6.6638982, + 51.175277301 + ], + [ + 6.664188501, + 51.175448 + ] + ] + } + }, + { + "identifier": "2025-016050--vi-bs.2026-04-08_08-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de39", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.154687502839884,6.753021466643513,51.19842823240195,6.9671367559795785", + "point": "51.154687502839884,6.753021466643513", + "startLcPosition": "18", + "impact": { + "lower": "Haan-West", + "upper": "Neuss-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heinsberg -> Wuppertal", + "title": "A46 | Neuss-S\u00fcd - Haan-West", + "coordinate": { + "lat": 51.154687502839884, + "long": 6.753021466643513 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 20:00 Uhr", + "14.04.26 von 05:00 bis 20:00 Uhr", + "15.04.26 von 05:00 bis 20:00 Uhr", + "27.04.26 von 05:00 bis 20:00 Uhr", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 28.04.26 und dem 30.04.26 von 05:00 bis 20:00 Uhr.", + "", + "A46: Heinsberg -> Wuppertal, zwischen 0.1 km hinter AD Neuss-S\u00fcd und 0.5 km vor AS Haan-West", + "", + "L\u00e4nge: 18.1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.753021467, + 51.154687503 + ], + [ + 6.7530742, + 51.154724801 + ], + [ + 6.7544282, + 51.155656701 + ], + [ + 6.7554672, + 51.156342301 + ], + [ + 6.7563529, + 51.156903001 + ], + [ + 6.757633, + 51.157694601 + ], + [ + 6.7585456, + 51.158229501 + ], + [ + 6.7588524, + 51.158407901 + ], + [ + 6.7590383, + 51.158512201 + ], + [ + 6.7596039, + 51.158830801 + ], + [ + 6.7598172, + 51.158950201 + ], + [ + 6.7607692, + 51.159466501 + ], + [ + 6.7618216, + 51.160033301 + ], + [ + 6.7627205, + 51.160509501 + ], + [ + 6.7640379, + 51.161207701 + ], + [ + 6.7650085, + 51.161722201 + ], + [ + 6.7667049, + 51.162615901 + ], + [ + 6.7680129, + 51.163306701 + ], + [ + 6.7685589, + 51.163596001 + ], + [ + 6.7689781, + 51.163822101 + ], + [ + 6.7696, + 51.164157501 + ], + [ + 6.7704899, + 51.164694601 + ], + [ + 6.7706674, + 51.164817301 + ], + [ + 6.7710788, + 51.165101701 + ], + [ + 6.7715274, + 51.165427701 + ], + [ + 6.771764, + 51.165601601 + ], + [ + 6.7721376, + 51.165915501 + ], + [ + 6.7723614, + 51.166102901 + ], + [ + 6.7727272, + 51.166448101 + ], + [ + 6.773016, + 51.166734401 + ], + [ + 6.7733343, + 51.167085601 + ], + [ + 6.7736625, + 51.167473401 + ], + [ + 6.7739241, + 51.167821001 + ], + [ + 6.7743771, + 51.168515501 + ], + [ + 6.7747139, + 51.169127701 + ], + [ + 6.7750173, + 51.169842101 + ], + [ + 6.7752155, + 51.170443301 + ], + [ + 6.7753322, + 51.170944401 + ], + [ + 6.7753661, + 51.171148601 + ], + [ + 6.7754359, + 51.171540101 + ], + [ + 6.7754707, + 51.172017901 + ], + [ + 6.7754671, + 51.172698201 + ], + [ + 6.7754482, + 51.172945801 + ], + [ + 6.7753988, + 51.173415701 + ], + [ + 6.7753017, + 51.173887101 + ], + [ + 6.7752653, + 51.174060201 + ], + [ + 6.7750122, + 51.174861601 + ], + [ + 6.7744405, + 51.176330301 + ], + [ + 6.7743058, + 51.176703101 + ], + [ + 6.774227, + 51.176961701 + ], + [ + 6.7741111, + 51.177436101 + ], + [ + 6.7740432, + 51.177792501 + ], + [ + 6.7739895, + 51.178193401 + ], + [ + 6.7739597, + 51.178597801 + ], + [ + 6.7739448, + 51.179195301 + ], + [ + 6.7739672, + 51.179638801 + ], + [ + 6.7740125, + 51.180032901 + ], + [ + 6.7741371, + 51.180812601 + ], + [ + 6.7743321, + 51.181667801 + ], + [ + 6.7743481, + 51.181738001 + ], + [ + 6.7748228, + 51.183819701 + ], + [ + 6.7752227, + 51.185465201 + ], + [ + 6.7753862, + 51.186138101 + ], + [ + 6.7756441, + 51.187205001 + ], + [ + 6.775677, + 51.187337201 + ], + [ + 6.7757548, + 51.187642601 + ], + [ + 6.7758726, + 51.187929901 + ], + [ + 6.7760167, + 51.188257501 + ], + [ + 6.7761679, + 51.188545101 + ], + [ + 6.7765424, + 51.189016101 + ], + [ + 6.7768367, + 51.189365401 + ], + [ + 6.7771023, + 51.189620701 + ], + [ + 6.7774067, + 51.189869701 + ], + [ + 6.7777792, + 51.190137101 + ], + [ + 6.7781494, + 51.190382701 + ], + [ + 6.7787081, + 51.190696101 + ], + [ + 6.7792667, + 51.190965101 + ], + [ + 6.7799705, + 51.191232901 + ], + [ + 6.7805761, + 51.191411701 + ], + [ + 6.781156, + 51.191558501 + ], + [ + 6.781677, + 51.191664801 + ], + [ + 6.7821287, + 51.191739401 + ], + [ + 6.7827019, + 51.191805601 + ], + [ + 6.7832037, + 51.191846701 + ], + [ + 6.7840197, + 51.191882101 + ], + [ + 6.784869, + 51.191890501 + ], + [ + 6.7854765, + 51.191898301 + ], + [ + 6.7859541, + 51.191926901 + ], + [ + 6.786876, + 51.192004601 + ], + [ + 6.7877715, + 51.192104301 + ], + [ + 6.7885309, + 51.192213401 + ], + [ + 6.7893786, + 51.192353901 + ], + [ + 6.7906268, + 51.192593301 + ], + [ + 6.7917863, + 51.192793101 + ], + [ + 6.7928607, + 51.192992001 + ], + [ + 6.794099, + 51.193209101 + ], + [ + 6.7949027, + 51.193337901 + ], + [ + 6.7955503, + 51.193421101 + ], + [ + 6.7965406, + 51.193542001 + ], + [ + 6.797167, + 51.193600101 + ], + [ + 6.7975358, + 51.193634301 + ], + [ + 6.7982162, + 51.193676301 + ], + [ + 6.799317, + 51.193697201 + ], + [ + 6.8003745, + 51.193688801 + ], + [ + 6.8016214, + 51.193649201 + ], + [ + 6.8026139, + 51.193601301 + ], + [ + 6.8040003, + 51.193518401 + ], + [ + 6.805221, + 51.193445101 + ], + [ + 6.806768, + 51.193340001 + ], + [ + 6.8093458, + 51.193164401 + ], + [ + 6.8123207, + 51.192941601 + ], + [ + 6.8132387, + 51.192879101 + ], + [ + 6.8142383, + 51.192797801 + ], + [ + 6.8153996, + 51.192695901 + ], + [ + 6.816802, + 51.192507001 + ], + [ + 6.8179004, + 51.192313001 + ], + [ + 6.8191078, + 51.192046701 + ], + [ + 6.8199223, + 51.191847201 + ], + [ + 6.8213177, + 51.191475501 + ], + [ + 6.8222159, + 51.191216601 + ], + [ + 6.8232383, + 51.190943601 + ], + [ + 6.8241718, + 51.190734401 + ], + [ + 6.8250887, + 51.190560201 + ], + [ + 6.8260062, + 51.190411801 + ], + [ + 6.8268339, + 51.190316501 + ], + [ + 6.8275429, + 51.190256301 + ], + [ + 6.8288524, + 51.190162501 + ], + [ + 6.8297693, + 51.190119801 + ], + [ + 6.8307351, + 51.190095001 + ], + [ + 6.8327643, + 51.190070301 + ], + [ + 6.8334409, + 51.190071401 + ], + [ + 6.8354109, + 51.190072201 + ], + [ + 6.8367797, + 51.190060001 + ], + [ + 6.8382438, + 51.190023001 + ], + [ + 6.8392444, + 51.189972901 + ], + [ + 6.840436, + 51.189916601 + ], + [ + 6.8406216, + 51.189907101 + ], + [ + 6.842147, + 51.189826101 + ], + [ + 6.8433967, + 51.189791001 + ], + [ + 6.8439126, + 51.189784201 + ], + [ + 6.8441148, + 51.189784601 + ], + [ + 6.8447486, + 51.189782601 + ], + [ + 6.8453549, + 51.189800601 + ], + [ + 6.8460904, + 51.189828401 + ], + [ + 6.8474844, + 51.189907001 + ], + [ + 6.8490843, + 51.190009701 + ], + [ + 6.8503767, + 51.190091001 + ], + [ + 6.8516128, + 51.190160801 + ], + [ + 6.8523868, + 51.190209001 + ], + [ + 6.8535946, + 51.190242201 + ], + [ + 6.8553612, + 51.190253601 + ], + [ + 6.8573358, + 51.190211901 + ], + [ + 6.8574879, + 51.190203701 + ], + [ + 6.8603726, + 51.190125801 + ], + [ + 6.8618016, + 51.190086601 + ], + [ + 6.8632305, + 51.190047301 + ], + [ + 6.8659864, + 51.189973701 + ], + [ + 6.8664847, + 51.189960001 + ], + [ + 6.8689696, + 51.189891701 + ], + [ + 6.8698534, + 51.189872601 + ], + [ + 6.8705844, + 51.189855001 + ], + [ + 6.8717309, + 51.189842801 + ], + [ + 6.8722982, + 51.189843101 + ], + [ + 6.8740139, + 51.189845201 + ], + [ + 6.8743716, + 51.189845701 + ], + [ + 6.8753074, + 51.189853901 + ], + [ + 6.8759662, + 51.189855801 + ], + [ + 6.8770962, + 51.189867901 + ], + [ + 6.8775651, + 51.189876701 + ], + [ + 6.878404, + 51.189894301 + ], + [ + 6.8791134, + 51.189912401 + ], + [ + 6.879824, + 51.189945201 + ], + [ + 6.8803262, + 51.189970901 + ], + [ + 6.8805199, + 51.189982101 + ], + [ + 6.8833183, + 51.190143601 + ], + [ + 6.8861228, + 51.190322701 + ], + [ + 6.8889638, + 51.190504101 + ], + [ + 6.89013, + 51.190578001 + ], + [ + 6.8917933, + 51.190680701 + ], + [ + 6.894658, + 51.190866701 + ], + [ + 6.8974899, + 51.191047301 + ], + [ + 6.9003784, + 51.191228501 + ], + [ + 6.9030957, + 51.191399201 + ], + [ + 6.9059451, + 51.191577801 + ], + [ + 6.9081796, + 51.191718401 + ], + [ + 6.9088191, + 51.191758701 + ], + [ + 6.9110302, + 51.191900901 + ], + [ + 6.9114468, + 51.191925801 + ], + [ + 6.9139227, + 51.192085001 + ], + [ + 6.9145118, + 51.192121201 + ], + [ + 6.9170068, + 51.192280701 + ], + [ + 6.9173903, + 51.192308201 + ], + [ + 6.9182087, + 51.192359201 + ], + [ + 6.9200254, + 51.192473801 + ], + [ + 6.921309, + 51.192554901 + ], + [ + 6.9230104, + 51.192662401 + ], + [ + 6.9239218, + 51.192718901 + ], + [ + 6.9259385, + 51.192843801 + ], + [ + 6.9275717, + 51.192949601 + ], + [ + 6.9287538, + 51.193025601 + ], + [ + 6.9292677, + 51.193062501 + ], + [ + 6.9306687, + 51.193168201 + ], + [ + 6.9316207, + 51.193252401 + ], + [ + 6.9319133, + 51.193282301 + ], + [ + 6.9326287, + 51.193359501 + ], + [ + 6.9338964, + 51.193521301 + ], + [ + 6.9345338, + 51.193607301 + ], + [ + 6.9350407, + 51.193683601 + ], + [ + 6.9358251, + 51.193812101 + ], + [ + 6.9366171, + 51.193954601 + ], + [ + 6.937422, + 51.194113501 + ], + [ + 6.9386955, + 51.194378001 + ], + [ + 6.9401295, + 51.194696501 + ], + [ + 6.9410276, + 51.194891701 + ], + [ + 6.9425639, + 51.195237201 + ], + [ + 6.9432131, + 51.195383201 + ], + [ + 6.9452216, + 51.195802701 + ], + [ + 6.9455699, + 51.195875201 + ], + [ + 6.946833, + 51.196114601 + ], + [ + 6.9480505, + 51.196340101 + ], + [ + 6.9491621, + 51.196523201 + ], + [ + 6.9497221, + 51.196608001 + ], + [ + 6.9503759, + 51.196704201 + ], + [ + 6.9510084, + 51.196798201 + ], + [ + 6.9523201, + 51.196981801 + ], + [ + 6.9535654, + 51.197139501 + ], + [ + 6.9544577, + 51.197245501 + ], + [ + 6.9554577, + 51.197350901 + ], + [ + 6.9563124, + 51.197435101 + ], + [ + 6.9569382, + 51.197488401 + ], + [ + 6.9591879, + 51.197701101 + ], + [ + 6.9619115, + 51.197949001 + ], + [ + 6.9647965, + 51.198215001 + ], + [ + 6.9665727, + 51.198377901 + ], + [ + 6.9669281, + 51.198409601 + ], + [ + 6.967136756, + 51.198428232 + ] + ] + } + }, + { + "identifier": "2026-016715--vi-bs.2026-04-09_07-00-00-000.devi-bs.2026-04-09_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.18990885478107,6.8683456878669205,51.18986756603972,6.877064910902495", + "point": "51.18990885478107,6.8683456878669205", + "startLcPosition": "26", + "impact": { + "lower": "Erkrath", + "upper": "D\u00fcsseldorf-Eller", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | D\u00fcsseldorf-Eller - Erkrath", + "coordinate": { + "lat": 51.18990885478107, + "long": 6.8683456878669205 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 20:00 Uhr", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 0.7 km hinter AS D\u00fcsseldorf-Eller und 2.7 km vor AS Erkrath", + "", + "L\u00e4nge: 0.61 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A46 Umbau AD D-S\u00fcd (Restarbeiten)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.868345688, + 51.189908855 + ], + [ + 6.8689696, + 51.189891701 + ], + [ + 6.8698534, + 51.189872601 + ], + [ + 6.8705844, + 51.189855001 + ], + [ + 6.8717309, + 51.189842801 + ], + [ + 6.8722982, + 51.189843101 + ], + [ + 6.8740139, + 51.189845201 + ], + [ + 6.8743716, + 51.189845701 + ], + [ + 6.8753074, + 51.189853901 + ], + [ + 6.8759662, + 51.189855801 + ], + [ + 6.877064911, + 51.189867566 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2026-04-06_07-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de636", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.199140812458104,6.973059458381565,51.198257651932614,6.963575917705353", + "point": "51.199140812458104,6.973059458381565", + "startLcPosition": "31", + "impact": { + "lower": "Hilden", + "upper": "Haan-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Haan-West - Hilden", + "coordinate": { + "lat": 51.199140812458104, + "long": 6.973059458381565 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 05:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 0.1 km hinter AS Haan-West und 1.4 km vor AS Hilden", + "", + "L\u00e4nge: 0.67 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.973059458, + 51.199140812 + ], + [ + 6.9717687, + 51.199021801 + ], + [ + 6.9709541, + 51.198935201 + ], + [ + 6.9706086, + 51.198904001 + ], + [ + 6.9693573, + 51.198792201 + ], + [ + 6.9684893, + 51.198710801 + ], + [ + 6.9677609, + 51.198641901 + ], + [ + 6.9665364, + 51.198531601 + ], + [ + 6.9647376, + 51.198366201 + ], + [ + 6.963575918, + 51.198257652 + ] + ] + } + }, + { + "identifier": "2026-014886--vi-bs.2026-04-12_05-00-00-000.devi-bs.2026-03-28_05-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.19751953949692,6.955777399607884,51.19581506558647,6.944686699579193", + "point": "51.19751953949692,6.955777399607884", + "startLcPosition": "31", + "impact": { + "lower": "Hilden", + "upper": "Haan-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Haan-West - Hilden", + "coordinate": { + "lat": 51.19751953949692, + "long": 6.955777399607884 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "12.04.26 von 05:00 bis 19:00 Uhr", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 1.3 km hinter AS Haan-West und AS Hilden", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A46 AS Haan-West Markierungsarbeiten (AM Lev.)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.9557774, + 51.197519539 + ], + [ + 6.9554189, + 51.197479901 + ], + [ + 6.9544296, + 51.197375601 + ], + [ + 6.9535289, + 51.197271501 + ], + [ + 6.9522631, + 51.197115801 + ], + [ + 6.9509578, + 51.196933801 + ], + [ + 6.9497868, + 51.196753601 + ], + [ + 6.9485994, + 51.196560301 + ], + [ + 6.9480225, + 51.196458001 + ], + [ + 6.9452222, + 51.195924001 + ], + [ + 6.9446867, + 51.195815066 + ] + ] + } + }, + { + "identifier": "2026-017631--vi-bs.2026-04-14_09-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.20090809902134,6.994066879048182,51.20178456298986,7.001093273348036", + "point": "51.20090809902134,6.994066879048182", + "startLcPosition": "31", + "impact": { + "lower": "H\u00f6fgen", + "upper": "Haan-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Haan-West - H\u00f6fgen", + "coordinate": { + "lat": 51.20090809902134, + "long": 6.994066879048182 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 15:00 Uhr", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 1.4 km hinter AS Haan-West und 1.1 km vor H\u00f6fgen", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A46 von Haan-West (AS) nach H\u00f6fgen (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.994066879, + 51.200908099 + ], + [ + 6.9944156, + 51.200939601 + ], + [ + 6.9960684, + 51.201088301 + ], + [ + 6.9969563, + 51.201176201 + ], + [ + 6.9977637, + 51.201262401 + ], + [ + 6.9989589, + 51.201417801 + ], + [ + 6.9997359, + 51.201539901 + ], + [ + 7.0007125, + 51.201710201 + ], + [ + 7.001093273, + 51.201784563 + ] + ] + } + }, + { + "identifier": "2026-014886--vi-bs.2026-04-11_05-00-00-000.devi-bs.2026-03-28_05-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.19999462370113,6.982421332342566,51.19858252392003,6.96710170524511", + "point": "51.19999462370113,6.982421332342566", + "startLcPosition": "32", + "impact": { + "lower": "Hilden", + "upper": "H\u00f6fgen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | H\u00f6fgen - Hilden", + "coordinate": { + "lat": 51.19999462370113, + "long": 6.982421332342566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 05:00 bis 19:00 Uhr", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 2.4 km hinter H\u00f6fgen und 1.6 km vor AS Hilden", + "", + "L\u00e4nge: 1.08 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A46 AS Haan-West Markierungsarbeiten (AM Lev.)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.982421332, + 51.199994624 + ], + [ + 6.981857, + 51.199943101 + ], + [ + 6.9789298, + 51.199679101 + ], + [ + 6.9766989, + 51.199472301 + ], + [ + 6.9760843, + 51.199415301 + ], + [ + 6.9751789, + 51.199331301 + ], + [ + 6.9741806, + 51.199242901 + ], + [ + 6.973754, + 51.199212801 + ], + [ + 6.9734292, + 51.199174901 + ], + [ + 6.9717687, + 51.199021801 + ], + [ + 6.9709541, + 51.198935201 + ], + [ + 6.9706086, + 51.198904001 + ], + [ + 6.9693573, + 51.198792201 + ], + [ + 6.9684893, + 51.198710801 + ], + [ + 6.9677609, + 51.198641901 + ], + [ + 6.967101705, + 51.198582524 + ] + ] + } + }, + { + "identifier": "2024-055255--vi-bs.2026-04-23_20-00-00-000.devi-zus.2024-11-15_09-00-00-000.f_004.de269", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.22552618019417,7.080137133450689,51.22595740110117,7.0832860423484725", + "point": "51.22552618019417,7.080137133450689", + "startLcPosition": "34", + "impact": { + "lower": "Wuppertal-Cronenberg", + "upper": "Haan-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Haan-Ost - Wuppertal-Cronenberg", + "coordinate": { + "lat": 51.22552618019417, + "long": 7.080137133450689 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 3.6 km hinter AS Haan-Ost und 0.5 km vor AS Wuppertal-Cronenberg", + "", + "L\u00e4nge: 0.23 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Neubau BW AS W.-Cronenberg (L418)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.080137133, + 51.22552618 + ], + [ + 7.0809596, + 51.225606601 + ], + [ + 7.0815996, + 51.225672401 + ], + [ + 7.0823203, + 51.225774001 + ], + [ + 7.082975, + 51.225892501 + ], + [ + 7.083286042, + 51.225957401 + ] + ] + } + }, + { + "identifier": "2024-055255--vi-bs.2025-06-23_09-00-00-000.devi-zus.2024-11-15_09-00-00-000.f_004.de71", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.22482152459791,7.076025684936456,51.22735033339365,7.0865126763259685", + "point": "51.22482152459791,7.076025684936456", + "startLcPosition": "34", + "impact": { + "lower": "Wuppertal-Cronenberg", + "upper": "Haan-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Haan-Ost - Wuppertal-Cronenberg", + "startTimestamp": "2025-06-23T09:00:00+02:00", + "coordinate": { + "lat": 51.22482152459791, + "long": 7.076025684936456 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.06.25 um 09:00 Uhr", + "Ende: 15.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 3.3 km hinter AS Haan-Ost und 0.3 km vor AS Wuppertal-Cronenberg", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Neubau BW AS W.-Cronenberg (L418)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.076025685, + 51.224821525 + ], + [ + 7.0761294, + 51.224858901 + ], + [ + 7.0765025, + 51.224973801 + ], + [ + 7.0769452, + 51.225086901 + ], + [ + 7.0774785, + 51.225196901 + ], + [ + 7.0782394, + 51.225319701 + ], + [ + 7.0790002, + 51.225415001 + ], + [ + 7.0809596, + 51.225606601 + ], + [ + 7.0815996, + 51.225672401 + ], + [ + 7.0823203, + 51.225774001 + ], + [ + 7.082975, + 51.225892501 + ], + [ + 7.0834049, + 51.225982201 + ], + [ + 7.0839269, + 51.226121301 + ], + [ + 7.0843735, + 51.226254101 + ], + [ + 7.0846548, + 51.226359001 + ], + [ + 7.0849142, + 51.226467401 + ], + [ + 7.08543, + 51.226704301 + ], + [ + 7.086049, + 51.227039201 + ], + [ + 7.0864119, + 51.227273701 + ], + [ + 7.086512676, + 51.227350333 + ] + ] + } + }, + { + "identifier": "2024-055255--vi-bs.2025-06-23_09-00-00-000.devi-zus.2024-11-15_09-00-00-000.f_004.de69", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.22737805111779,7.086549126922859,51.22915958280766,7.088148856255884", + "point": "51.22737805111779,7.086549126922859", + "startLcPosition": "34", + "impact": { + "lower": "Wuppertal-Cronenberg", + "upper": "Haan-Ost", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Haan-Ost - Wuppertal-Cronenberg", + "startTimestamp": "2025-06-23T09:00:00+02:00", + "coordinate": { + "lat": 51.22737805111779, + "long": 7.086549126922859 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.06.25 um 09:00 Uhr", + "Ende: 15.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 4.1 km hinter AS Haan-Ost und AS Wuppertal-Cronenberg", + "", + "L\u00e4nge: 0.23 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Neubau BW AS W.-Cronenberg (L418)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.086549127, + 51.227378051 + ], + [ + 7.0867863, + 51.227558401 + ], + [ + 7.0871345, + 51.227863801 + ], + [ + 7.0874407, + 51.228173801 + ], + [ + 7.0876671, + 51.228439901 + ], + [ + 7.0879474, + 51.228838101 + ], + [ + 7.088141, + 51.229146101 + ], + [ + 7.088148856, + 51.229159583 + ] + ] + } + }, + { + "identifier": "2024-055255--vi-bs.2025-06-23_09-00-00-000.devi-zus.2024-11-15_09-00-00-000.f_004.de67", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.2292026724922,7.087962213484817,51.22745221157158,7.0864044089698135", + "point": "51.2292026724922,7.087962213484817", + "startLcPosition": "35", + "impact": { + "lower": "Haan-Ost", + "upper": "Wuppertal-Cronenberg", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Wuppertal-Cronenberg - Haan-Ost", + "startTimestamp": "2025-06-23T09:00:00+02:00", + "coordinate": { + "lat": 51.2292026724922, + "long": 7.087962213484817 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.06.25 um 09:00 Uhr", + "Ende: 15.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen AS Wuppertal-Cronenberg und 4.1 km vor AS Haan-Ost", + "", + "L\u00e4nge: 0.23 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Neubau BW AS W.-Cronenberg (L418)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.087962213, + 51.229202672 + ], + [ + 7.0879225, + 51.229135101 + ], + [ + 7.0877425, + 51.228842101 + ], + [ + 7.0874557, + 51.228447401 + ], + [ + 7.0872315, + 51.228182001 + ], + [ + 7.0869464, + 51.227895801 + ], + [ + 7.0866258, + 51.227623801 + ], + [ + 7.086404409, + 51.227452212 + ] + ] + } + }, + { + "identifier": "2024-055255--vi-bs.2026-04-13_20-00-00-000.devi-zus.2024-11-15_09-00-00-000.f_004.de263", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.23307546299821,7.092206347275216,51.23428606853021,7.0928828210941886", + "point": "51.23307546299821,7.092206347275216", + "startLcPosition": "35", + "impact": { + "lower": "Wuppertal-Sonnborn", + "upper": "Wuppertal-Cronenberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Cronenberg - Wuppertal-Sonnborn", + "coordinate": { + "lat": 51.23307546299821, + "long": 7.092206347275216 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 0.5 km hinter AS Wuppertal-Cronenberg und 0.3 km vor AS Wuppertal-Sonnborn", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Neubau BW AS W.-Cronenberg (L418)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.092206347, + 51.233075463 + ], + [ + 7.0922377, + 51.233110801 + ], + [ + 7.0923397, + 51.233243601 + ], + [ + 7.0924311, + 51.233372801 + ], + [ + 7.0925569, + 51.233562501 + ], + [ + 7.0926594, + 51.233751401 + ], + [ + 7.0928018, + 51.234046901 + ], + [ + 7.092882821, + 51.234286069 + ] + ] + } + }, + { + "identifier": "2024-055255--vi-bs.2026-04-21_20-00-00-000.devi-zus.2024-11-15_09-00-00-000.f_004.de265", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.23314860601242,7.091958111316759,51.23272037468025,7.091581057458565", + "point": "51.23314860601242,7.091958111316759", + "startLcPosition": "36", + "impact": { + "lower": "Wuppertal-Cronenberg", + "upper": "Wuppertal-Sonnborn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Wuppertal-Sonnborn - Wuppertal-Cronenberg", + "coordinate": { + "lat": 51.23314860601242, + "long": 7.091958111316759 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 0.5 km hinter AS Wuppertal-Sonnborn und 0.4 km vor AS Wuppertal-Cronenberg", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Neubau BW AS W.-Cronenberg (L418)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.091958111, + 51.233148606 + ], + [ + 7.0919288, + 51.233109001 + ], + [ + 7.0917727, + 51.232920001 + ], + [ + 7.091597, + 51.232735701 + ], + [ + 7.091581057, + 51.232720375 + ] + ] + } + }, + { + "identifier": "2024-055255--vi-bs.2025-06-23_09-00-00-000.devi-zus.2024-11-15_09-00-00-000.f_004.de65", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.23713356611413,7.092739750798731,51.22983570348453,7.088339573988651", + "point": "51.23713356611413,7.092739750798731", + "startLcPosition": "36", + "impact": { + "lower": "Wuppertal-Cronenberg", + "upper": "Wuppertal-Sonnborn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Wuppertal-Sonnborn - Wuppertal-Cronenberg", + "startTimestamp": "2025-06-23T09:00:00+02:00", + "coordinate": { + "lat": 51.23713356611413, + "long": 7.092739750798731 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.06.25 um 09:00 Uhr", + "Ende: 15.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen AS Wuppertal-Sonnborn und 0.1 km vor AS Wuppertal-Cronenberg", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Neubau BW AS W.-Cronenberg (L418)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.092739751, + 51.237133566 + ], + [ + 7.0927326, + 51.236901701 + ], + [ + 7.0926956, + 51.235354301 + ], + [ + 7.0926725, + 51.234974401 + ], + [ + 7.092629, + 51.234645501 + ], + [ + 7.0925501, + 51.234292301 + ], + [ + 7.0924489, + 51.234003501 + ], + [ + 7.0923102, + 51.233696501 + ], + [ + 7.0922572, + 51.233597501 + ], + [ + 7.092203, + 51.233500801 + ], + [ + 7.0920726, + 51.233303301 + ], + [ + 7.0919288, + 51.233109001 + ], + [ + 7.0917727, + 51.232920001 + ], + [ + 7.091597, + 51.232735701 + ], + [ + 7.0913952, + 51.232541701 + ], + [ + 7.0911793, + 51.232351801 + ], + [ + 7.0907916, + 51.232053601 + ], + [ + 7.0900704, + 51.231550001 + ], + [ + 7.0892911, + 51.230969501 + ], + [ + 7.088931, + 51.230628701 + ], + [ + 7.088666, + 51.230327501 + ], + [ + 7.0883555, + 51.229862201 + ], + [ + 7.088339574, + 51.229835703 + ] + ] + } + }, + { + "identifier": "2024-055255--vi-bs.2026-04-22_20-00-00-000.devi-zus.2024-11-15_09-00-00-000.f_004.de267", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.244993728601735,7.095165938737325,51.23271324604264,7.091573642175525", + "point": "51.244993728601735,7.095165938737325", + "startLcPosition": "38", + "impact": { + "lower": "Wuppertal-Cronenberg", + "upper": "Wuppertal-Varresbeck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Wuppertal-Varresbeck - Wuppertal-Cronenberg", + "coordinate": { + "lat": 51.244993728601735, + "long": 7.095165938737325 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 1.2 km hinter AS Wuppertal-Varresbeck und 0.4 km vor AS Wuppertal-Cronenberg", + "", + "L\u00e4nge: 1.41 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Neubau BW AS W.-Cronenberg (L418)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.095165939, + 51.244993729 + ], + [ + 7.0951081, + 51.244931901 + ], + [ + 7.0948787, + 51.244676701 + ], + [ + 7.094654, + 51.244418201 + ], + [ + 7.0944623, + 51.244179301 + ], + [ + 7.0942762, + 51.243939001 + ], + [ + 7.0940398, + 51.243615601 + ], + [ + 7.0938158, + 51.243288401 + ], + [ + 7.0934885, + 51.242743401 + ], + [ + 7.0932495, + 51.242293201 + ], + [ + 7.0931581, + 51.242062201 + ], + [ + 7.0930718, + 51.241820001 + ], + [ + 7.0929796, + 51.241516501 + ], + [ + 7.0929086, + 51.241157301 + ], + [ + 7.0928865, + 51.240997401 + ], + [ + 7.0928558, + 51.240673201 + ], + [ + 7.0928475, + 51.240439001 + ], + [ + 7.0927821, + 51.239065901 + ], + [ + 7.0927465, + 51.237469001 + ], + [ + 7.0927446, + 51.237290801 + ], + [ + 7.0927326, + 51.236901701 + ], + [ + 7.0926956, + 51.235354301 + ], + [ + 7.0926725, + 51.234974401 + ], + [ + 7.092629, + 51.234645501 + ], + [ + 7.0925501, + 51.234292301 + ], + [ + 7.0924489, + 51.234003501 + ], + [ + 7.0923102, + 51.233696501 + ], + [ + 7.0922572, + 51.233597501 + ], + [ + 7.092203, + 51.233500801 + ], + [ + 7.0920726, + 51.233303301 + ], + [ + 7.0919288, + 51.233109001 + ], + [ + 7.0917727, + 51.232920001 + ], + [ + 7.091597, + 51.232735701 + ], + [ + 7.091573642, + 51.232713246 + ] + ] + } + }, + { + "identifier": "2024-012021--vi-bs.2023-09-25_00-00-00-000.devi-zus.2023-09-25_00-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26297716472575,7.119865346259476,51.26317955890156,7.122694438634017", + "point": "51.26297716472575,7.119865346259476", + "startLcPosition": "38", + "impact": { + "lower": "Wuppertal-Katernberg", + "upper": "Wuppertal-Varresbeck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Varresbeck - Wuppertal-Katernberg", + "startTimestamp": "2023-09-25T00:00:00+02:00", + "coordinate": { + "lat": 51.26297716472575, + "long": 7.119865346259476 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.09.23 um 00:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 1.5 km hinter AS Wuppertal-Varresbeck und 0.6 km vor AS Wuppertal-Katernberg", + "", + "L\u00e4nge: 0.2 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 9.1 m", + "", + "BW Damaschkeweg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.119865346, + 51.262977165 + ], + [ + 7.1200113, + 51.262997901 + ], + [ + 7.1204729, + 51.263046301 + ], + [ + 7.1209427, + 51.263086901 + ], + [ + 7.1214789, + 51.263119801 + ], + [ + 7.1219167, + 51.263137001 + ], + [ + 7.122694439, + 51.263179559 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de263", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.27914147520536,7.178563773781402,51.281977993851626,7.185869506442797", + "point": "51.27914147520536,7.178563773781402", + "startLcPosition": "41", + "impact": { + "lower": "Wuppertal-Wichlinghausen", + "upper": "Wuppertal-Elberfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Elberfeld - Wuppertal-Wichlinghausen", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.27914147520536, + "long": 7.178563773781402 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 2.0 km hinter AS Wuppertal-Elberfeld und 1.7 km vor AS Wuppertal-Wichlinghausen", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.178563774, + 51.279141475 + ], + [ + 7.1799767, + 51.279689201 + ], + [ + 7.1804972, + 51.279889201 + ], + [ + 7.1824368, + 51.280645001 + ], + [ + 7.182985, + 51.280857101 + ], + [ + 7.1834572, + 51.281040101 + ], + [ + 7.185869506, + 51.281977994 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de209", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.27914147520536,7.178563773781402,51.281977993851626,7.185869506442797", + "point": "51.27914147520536,7.178563773781402", + "startLcPosition": "41", + "impact": { + "lower": "Wuppertal-Wichlinghausen", + "upper": "Wuppertal-Elberfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Elberfeld - Wuppertal-Wichlinghausen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.27914147520536, + "long": 7.178563773781402 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 2.0 km hinter AS Wuppertal-Elberfeld und 1.7 km vor AS Wuppertal-Wichlinghausen", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.178563774, + 51.279141475 + ], + [ + 7.1799767, + 51.279689201 + ], + [ + 7.1804972, + 51.279889201 + ], + [ + 7.1824368, + 51.280645001 + ], + [ + 7.182985, + 51.280857101 + ], + [ + 7.1834572, + 51.281040101 + ], + [ + 7.185869506, + 51.281977994 + ] + ] + } + }, + { + "identifier": "2023-001879--vi-bs.2023-11-13_05-00-00-000.f.devi-zus.2023-11-13_05-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28074998032052,7.182708131404719,51.28103058550669,7.183432646861547", + "point": "51.28074998032052,7.182708131404719", + "startLcPosition": "41", + "impact": { + "lower": "Wuppertal-Wichlinghausen", + "upper": "Wuppertal-Elberfeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Elberfeld - Wuppertal-Wichlinghausen", + "startTimestamp": "2023-11-13T05:00:00+01:00", + "coordinate": { + "lat": 51.28074998032052, + "long": 7.182708131404719 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.11.23 um 05:00 Uhr", + "Ende: 31.12.28 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 2.3 km hinter AS Wuppertal-Elberfeld und 1.9 km vor AS Wuppertal-Wichlinghausen", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "BW Hatzfelder Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.182708131, + 51.28074998 + ], + [ + 7.182985, + 51.280857101 + ], + [ + 7.183432647, + 51.281030586 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de251", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28416981147834,7.190225358645044,51.304398818058864,7.228256727846966", + "point": "51.28416981147834,7.190225358645044", + "startLcPosition": "42", + "impact": { + "lower": "Holtkamp", + "upper": "Wuppertal-Barmen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Barmen - Holtkamp", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.28416981147834, + "long": 7.190225358645044 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 0.6 km hinter AS Wuppertal-Barmen und 0.5 km vor Holtkamp", + "", + "L\u00e4nge: 3.62 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.190225359, + 51.284169811 + ], + [ + 7.1903247, + 51.284241301 + ], + [ + 7.1913711, + 51.285057801 + ], + [ + 7.1920404, + 51.285577901 + ], + [ + 7.1927552, + 51.286074901 + ], + [ + 7.1929742, + 51.286222901 + ], + [ + 7.1931475, + 51.286329801 + ], + [ + 7.1935291, + 51.286549801 + ], + [ + 7.193814, + 51.286698601 + ], + [ + 7.1941158, + 51.286850401 + ], + [ + 7.194438, + 51.286994601 + ], + [ + 7.1947871, + 51.287139001 + ], + [ + 7.1949157, + 51.287190701 + ], + [ + 7.1952156, + 51.287303001 + ], + [ + 7.1955336, + 51.287413601 + ], + [ + 7.1959429, + 51.287543201 + ], + [ + 7.1963317, + 51.287656501 + ], + [ + 7.1967868, + 51.287778401 + ], + [ + 7.1973974, + 51.287924101 + ], + [ + 7.1982776, + 51.288121801 + ], + [ + 7.199739, + 51.288446701 + ], + [ + 7.1999745, + 51.288500101 + ], + [ + 7.2007642, + 51.288674401 + ], + [ + 7.2011261, + 51.288753501 + ], + [ + 7.2019708, + 51.288944401 + ], + [ + 7.2024474, + 51.289061501 + ], + [ + 7.2028858, + 51.289178801 + ], + [ + 7.2031275, + 51.289250301 + ], + [ + 7.2033795, + 51.289327101 + ], + [ + 7.2036187, + 51.289404001 + ], + [ + 7.2038803, + 51.289501801 + ], + [ + 7.2042493, + 51.289649601 + ], + [ + 7.2045545, + 51.289788901 + ], + [ + 7.2047709, + 51.289893501 + ], + [ + 7.2050502, + 51.290039201 + ], + [ + 7.2052724, + 51.290167701 + ], + [ + 7.2056127, + 51.290381101 + ], + [ + 7.2058366, + 51.290536901 + ], + [ + 7.2060278, + 51.290678801 + ], + [ + 7.2062226, + 51.290830801 + ], + [ + 7.2064076, + 51.290985701 + ], + [ + 7.206535, + 51.291098001 + ], + [ + 7.2066536, + 51.291211601 + ], + [ + 7.2068441, + 51.291403801 + ], + [ + 7.2070459, + 51.291634701 + ], + [ + 7.2072264, + 51.291857401 + ], + [ + 7.2074027, + 51.292091501 + ], + [ + 7.2076144, + 51.292394301 + ], + [ + 7.2076849, + 51.292493101 + ], + [ + 7.2079321, + 51.292846001 + ], + [ + 7.2081552, + 51.293158101 + ], + [ + 7.2083963, + 51.293468101 + ], + [ + 7.2085692, + 51.293673301 + ], + [ + 7.2087518, + 51.293868101 + ], + [ + 7.2089528, + 51.294066001 + ], + [ + 7.2091649, + 51.294250001 + ], + [ + 7.2094214, + 51.294450201 + ], + [ + 7.2096408, + 51.294605501 + ], + [ + 7.2099101, + 51.294777501 + ], + [ + 7.21015, + 51.294914601 + ], + [ + 7.2103763, + 51.295032201 + ], + [ + 7.2106355, + 51.295156101 + ], + [ + 7.2108802, + 51.295262201 + ], + [ + 7.2111307, + 51.295366401 + ], + [ + 7.2114278, + 51.295469501 + ], + [ + 7.2116471, + 51.295540601 + ], + [ + 7.2119839, + 51.295639601 + ], + [ + 7.2122394, + 51.295710001 + ], + [ + 7.2126103, + 51.295804101 + ], + [ + 7.2129881, + 51.295887501 + ], + [ + 7.2147056, + 51.296249401 + ], + [ + 7.215118, + 51.296352801 + ], + [ + 7.2155546, + 51.296479001 + ], + [ + 7.2158727, + 51.296582101 + ], + [ + 7.2162929, + 51.296738101 + ], + [ + 7.2166671, + 51.296906401 + ], + [ + 7.2169568, + 51.297047601 + ], + [ + 7.2172442, + 51.297204901 + ], + [ + 7.2175672, + 51.297404901 + ], + [ + 7.2178957, + 51.297634901 + ], + [ + 7.2181801, + 51.297860401 + ], + [ + 7.2184052, + 51.298072301 + ], + [ + 7.218657, + 51.298330401 + ], + [ + 7.2188318, + 51.298533201 + ], + [ + 7.2188942, + 51.298614001 + ], + [ + 7.2200289, + 51.300144401 + ], + [ + 7.2203497, + 51.300518701 + ], + [ + 7.2204955, + 51.300678601 + ], + [ + 7.2206849, + 51.300872901 + ], + [ + 7.2211364, + 51.301296901 + ], + [ + 7.2215479, + 51.301628301 + ], + [ + 7.22177, + 51.301798001 + ], + [ + 7.2219978, + 51.301962001 + ], + [ + 7.2225338, + 51.302313001 + ], + [ + 7.2229931, + 51.302586001 + ], + [ + 7.2234752, + 51.302839301 + ], + [ + 7.2240357, + 51.303109301 + ], + [ + 7.2246541, + 51.303372901 + ], + [ + 7.2251724, + 51.303567501 + ], + [ + 7.2255963, + 51.303715801 + ], + [ + 7.2260803, + 51.303865501 + ], + [ + 7.2265431, + 51.303995301 + ], + [ + 7.2270223, + 51.304118701 + ], + [ + 7.2276843, + 51.304273001 + ], + [ + 7.228256728, + 51.304398818 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de197", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28416981147834,7.190225358645044,51.295831046264354,7.2127323609451315", + "point": "51.28416981147834,7.190225358645044", + "startLcPosition": "42", + "impact": { + "lower": "Sternenberg", + "upper": "Wuppertal-Barmen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Barmen - Sternenberg", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.28416981147834, + "long": 7.190225358645044 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 0.6 km hinter AS Wuppertal-Barmen und 0.2 km vor Sternenberg", + "", + "L\u00e4nge: 2.12 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.190225359, + 51.284169811 + ], + [ + 7.1903247, + 51.284241301 + ], + [ + 7.1913711, + 51.285057801 + ], + [ + 7.1920404, + 51.285577901 + ], + [ + 7.1927552, + 51.286074901 + ], + [ + 7.1929742, + 51.286222901 + ], + [ + 7.1931475, + 51.286329801 + ], + [ + 7.1935291, + 51.286549801 + ], + [ + 7.193814, + 51.286698601 + ], + [ + 7.1941158, + 51.286850401 + ], + [ + 7.194438, + 51.286994601 + ], + [ + 7.1947871, + 51.287139001 + ], + [ + 7.1949157, + 51.287190701 + ], + [ + 7.1952156, + 51.287303001 + ], + [ + 7.1955336, + 51.287413601 + ], + [ + 7.1959429, + 51.287543201 + ], + [ + 7.1963317, + 51.287656501 + ], + [ + 7.1967868, + 51.287778401 + ], + [ + 7.1973974, + 51.287924101 + ], + [ + 7.1982776, + 51.288121801 + ], + [ + 7.199739, + 51.288446701 + ], + [ + 7.1999745, + 51.288500101 + ], + [ + 7.2007642, + 51.288674401 + ], + [ + 7.2011261, + 51.288753501 + ], + [ + 7.2019708, + 51.288944401 + ], + [ + 7.2024474, + 51.289061501 + ], + [ + 7.2028858, + 51.289178801 + ], + [ + 7.2031275, + 51.289250301 + ], + [ + 7.2033795, + 51.289327101 + ], + [ + 7.2036187, + 51.289404001 + ], + [ + 7.2038803, + 51.289501801 + ], + [ + 7.2042493, + 51.289649601 + ], + [ + 7.2045545, + 51.289788901 + ], + [ + 7.2047709, + 51.289893501 + ], + [ + 7.2050502, + 51.290039201 + ], + [ + 7.2052724, + 51.290167701 + ], + [ + 7.2056127, + 51.290381101 + ], + [ + 7.2058366, + 51.290536901 + ], + [ + 7.2060278, + 51.290678801 + ], + [ + 7.2062226, + 51.290830801 + ], + [ + 7.2064076, + 51.290985701 + ], + [ + 7.206535, + 51.291098001 + ], + [ + 7.2066536, + 51.291211601 + ], + [ + 7.2068441, + 51.291403801 + ], + [ + 7.2070459, + 51.291634701 + ], + [ + 7.2072264, + 51.291857401 + ], + [ + 7.2074027, + 51.292091501 + ], + [ + 7.2076144, + 51.292394301 + ], + [ + 7.2076849, + 51.292493101 + ], + [ + 7.2079321, + 51.292846001 + ], + [ + 7.2081552, + 51.293158101 + ], + [ + 7.2083963, + 51.293468101 + ], + [ + 7.2085692, + 51.293673301 + ], + [ + 7.2087518, + 51.293868101 + ], + [ + 7.2089528, + 51.294066001 + ], + [ + 7.2091649, + 51.294250001 + ], + [ + 7.2094214, + 51.294450201 + ], + [ + 7.2096408, + 51.294605501 + ], + [ + 7.2099101, + 51.294777501 + ], + [ + 7.21015, + 51.294914601 + ], + [ + 7.2103763, + 51.295032201 + ], + [ + 7.2106355, + 51.295156101 + ], + [ + 7.2108802, + 51.295262201 + ], + [ + 7.2111307, + 51.295366401 + ], + [ + 7.2114278, + 51.295469501 + ], + [ + 7.2116471, + 51.295540601 + ], + [ + 7.2119839, + 51.295639601 + ], + [ + 7.2122394, + 51.295710001 + ], + [ + 7.2126103, + 51.295804101 + ], + [ + 7.212732361, + 51.295831046 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de255", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28197325693549,7.185857322298081,51.284169811478364,7.190225358645049", + "point": "51.28197325693549,7.185857322298081", + "startLcPosition": "42", + "impact": { + "lower": "Wuppertal-Wichlinghausen", + "upper": "Wuppertal-Barmen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Barmen - Wuppertal-Wichlinghausen", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.28197325693549, + "long": 7.185857322298081 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 0.3 km hinter AS Wuppertal-Barmen und 1.3 km vor AS Wuppertal-Wichlinghausen", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.185857322, + 51.281973257 + ], + [ + 7.1865473, + 51.282241501 + ], + [ + 7.1869955, + 51.282419801 + ], + [ + 7.1875073, + 51.282629001 + ], + [ + 7.1880844, + 51.282886501 + ], + [ + 7.1884811, + 51.283079501 + ], + [ + 7.1888471, + 51.283275401 + ], + [ + 7.1892619, + 51.283514101 + ], + [ + 7.1895371, + 51.283689201 + ], + [ + 7.1898125, + 51.283872701 + ], + [ + 7.190225359, + 51.284169811 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de201", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28197325693549,7.185857322298081,51.284169811478364,7.190225358645049", + "point": "51.28197325693549,7.185857322298081", + "startLcPosition": "42", + "impact": { + "lower": "Wuppertal-Wichlinghausen", + "upper": "Wuppertal-Barmen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Barmen - Wuppertal-Wichlinghausen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.28197325693549, + "long": 7.185857322298081 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 0.3 km hinter AS Wuppertal-Barmen und 1.3 km vor AS Wuppertal-Wichlinghausen", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.185857322, + 51.281973257 + ], + [ + 7.1865473, + 51.282241501 + ], + [ + 7.1869955, + 51.282419801 + ], + [ + 7.1875073, + 51.282629001 + ], + [ + 7.1880844, + 51.282886501 + ], + [ + 7.1884811, + 51.283079501 + ], + [ + 7.1888471, + 51.283275401 + ], + [ + 7.1892619, + 51.283514101 + ], + [ + 7.1895371, + 51.283689201 + ], + [ + 7.1898125, + 51.283872701 + ], + [ + 7.190225359, + 51.284169811 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de253", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.284237335050506,7.190102305254769,51.28206118940065,7.185770439811344", + "point": "51.284237335050506,7.190102305254769", + "startLcPosition": "43", + "impact": { + "lower": "Wuppertal-Barmen", + "upper": "Wuppertal-Wichlinghausen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Wuppertal-Wichlinghausen - Wuppertal-Barmen", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.284237335050506, + "long": 7.190102305254769 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 1.3 km hinter AS Wuppertal-Wichlinghausen und 0.3 km vor AS Wuppertal-Barmen", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.190102305, + 51.284237335 + ], + [ + 7.1896873, + 51.283941101 + ], + [ + 7.1894423, + 51.283778701 + ], + [ + 7.1891864, + 51.283615601 + ], + [ + 7.1887397, + 51.283352101 + ], + [ + 7.1883872, + 51.283167201 + ], + [ + 7.1880192, + 51.282987501 + ], + [ + 7.1874738, + 51.282742201 + ], + [ + 7.1869059, + 51.282507901 + ], + [ + 7.1864684, + 51.282332301 + ], + [ + 7.18577044, + 51.282061189 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de199", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.284237335050506,7.190102305254769,51.28206118940065,7.185770439811344", + "point": "51.284237335050506,7.190102305254769", + "startLcPosition": "43", + "impact": { + "lower": "Wuppertal-Barmen", + "upper": "Wuppertal-Wichlinghausen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Wuppertal-Wichlinghausen - Wuppertal-Barmen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.284237335050506, + "long": 7.190102305254769 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 1.3 km hinter AS Wuppertal-Wichlinghausen und 0.3 km vor AS Wuppertal-Barmen", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.190102305, + 51.284237335 + ], + [ + 7.1896873, + 51.283941101 + ], + [ + 7.1894423, + 51.283778701 + ], + [ + 7.1891864, + 51.283615601 + ], + [ + 7.1887397, + 51.283352101 + ], + [ + 7.1883872, + 51.283167201 + ], + [ + 7.1880192, + 51.282987501 + ], + [ + 7.1874738, + 51.282742201 + ], + [ + 7.1869059, + 51.282507901 + ], + [ + 7.1864684, + 51.282332301 + ], + [ + 7.18577044, + 51.282061189 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de193", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.295831046264354,7.2127323609451315,51.30531453220912,7.232003079519369", + "point": "51.295831046264354,7.2127323609451315", + "startLcPosition": "43", + "impact": { + "lower": "Holtkamp", + "upper": "Wuppertal-Wichlinghausen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Wuppertal-Wichlinghausen - Holtkamp", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.295831046264354, + "long": 7.2127323609451315 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 0.8 km hinter AS Wuppertal-Wichlinghausen und 0.2 km vor Holtkamp", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.212732361, + 51.295831046 + ], + [ + 7.2129881, + 51.295887501 + ], + [ + 7.2147056, + 51.296249401 + ], + [ + 7.215118, + 51.296352801 + ], + [ + 7.2155546, + 51.296479001 + ], + [ + 7.2158727, + 51.296582101 + ], + [ + 7.2162929, + 51.296738101 + ], + [ + 7.2166671, + 51.296906401 + ], + [ + 7.2169568, + 51.297047601 + ], + [ + 7.2172442, + 51.297204901 + ], + [ + 7.2175672, + 51.297404901 + ], + [ + 7.2178957, + 51.297634901 + ], + [ + 7.2181801, + 51.297860401 + ], + [ + 7.2184052, + 51.298072301 + ], + [ + 7.218657, + 51.298330401 + ], + [ + 7.2188318, + 51.298533201 + ], + [ + 7.2188942, + 51.298614001 + ], + [ + 7.2200289, + 51.300144401 + ], + [ + 7.2203497, + 51.300518701 + ], + [ + 7.2204955, + 51.300678601 + ], + [ + 7.2206849, + 51.300872901 + ], + [ + 7.2211364, + 51.301296901 + ], + [ + 7.2215479, + 51.301628301 + ], + [ + 7.22177, + 51.301798001 + ], + [ + 7.2219978, + 51.301962001 + ], + [ + 7.2225338, + 51.302313001 + ], + [ + 7.2229931, + 51.302586001 + ], + [ + 7.2234752, + 51.302839301 + ], + [ + 7.2240357, + 51.303109301 + ], + [ + 7.2246541, + 51.303372901 + ], + [ + 7.2251724, + 51.303567501 + ], + [ + 7.2255963, + 51.303715801 + ], + [ + 7.2260803, + 51.303865501 + ], + [ + 7.2265431, + 51.303995301 + ], + [ + 7.2270223, + 51.304118701 + ], + [ + 7.2276843, + 51.304273001 + ], + [ + 7.2283481, + 51.304418901 + ], + [ + 7.2297318, + 51.304720901 + ], + [ + 7.2303081, + 51.304855701 + ], + [ + 7.230927, + 51.305011601 + ], + [ + 7.231434, + 51.305149101 + ], + [ + 7.23200308, + 51.305314532 + ] + ] + } + }, + { + "identifier": "2023-001879--vi-bs.2023-11-13_05-00-00-000.f.devi-zus.2023-11-13_05-00-00-000.f_001.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28112726754909,7.183365789861458,51.280844286646925,7.182633657539639", + "point": "51.28112726754909,7.183365789861458", + "startLcPosition": "43", + "impact": { + "lower": "Wuppertal-Elberfeld", + "upper": "Wuppertal-Wichlinghausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Wuppertal-Wichlinghausen - Wuppertal-Elberfeld", + "startTimestamp": "2023-11-13T05:00:00+01:00", + "coordinate": { + "lat": 51.28112726754909, + "long": 7.183365789861458 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.11.23 um 05:00 Uhr", + "Ende: 31.12.28 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 1.9 km hinter AS Wuppertal-Wichlinghausen und 2.3 km vor AS Wuppertal-Elberfeld", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "BW Hatzfelder Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.18336579, + 51.281127268 + ], + [ + 7.182633658, + 51.280844287 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de195", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.295924875081624,7.212679171026745,51.284237335050506,7.190102305254769", + "point": "51.295924875081624,7.212679171026745", + "startLcPosition": "44", + "impact": { + "lower": "Wuppertal-Barmen", + "upper": "Sternenberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Sternenberg - Wuppertal-Barmen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.295924875081624, + "long": 7.212679171026745 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 0.2 km hinter Sternenberg und 0.6 km vor AS Wuppertal-Barmen", + "", + "L\u00e4nge: 2.12 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.212679171, + 51.295924875 + ], + [ + 7.2125269, + 51.295890601 + ], + [ + 7.2121242, + 51.295790201 + ], + [ + 7.2119024, + 51.295729301 + ], + [ + 7.2116789, + 51.295665201 + ], + [ + 7.2113518, + 51.295557901 + ], + [ + 7.2110609, + 51.295454701 + ], + [ + 7.2108011, + 51.295352001 + ], + [ + 7.2105451, + 51.295239001 + ], + [ + 7.2103, + 51.295120601 + ], + [ + 7.2100253, + 51.294980501 + ], + [ + 7.2097685, + 51.294830601 + ], + [ + 7.2095227, + 51.294674301 + ], + [ + 7.2092878, + 51.294512301 + ], + [ + 7.2090355, + 51.294313601 + ], + [ + 7.2088079, + 51.294116701 + ], + [ + 7.2086067, + 51.293916901 + ], + [ + 7.2084324, + 51.293730601 + ], + [ + 7.2082539, + 51.293520401 + ], + [ + 7.2080082, + 51.293205001 + ], + [ + 7.2077773, + 51.292890001 + ], + [ + 7.2075329, + 51.292532801 + ], + [ + 7.2074644, + 51.292435801 + ], + [ + 7.2072476, + 51.292131901 + ], + [ + 7.2070795, + 51.291905201 + ], + [ + 7.2068917, + 51.291675501 + ], + [ + 7.2067094, + 51.291466501 + ], + [ + 7.2065049, + 51.291259401 + ], + [ + 7.2063868, + 51.291148301 + ], + [ + 7.2062639, + 51.291036901 + ], + [ + 7.2060965, + 51.290897901 + ], + [ + 7.2059255, + 51.290763501 + ], + [ + 7.2057333, + 51.290619501 + ], + [ + 7.2055144, + 51.290465801 + ], + [ + 7.2051588, + 51.290245901 + ], + [ + 7.2049423, + 51.290123701 + ], + [ + 7.2046367, + 51.289963601 + ], + [ + 7.2043209, + 51.289814901 + ], + [ + 7.2041667, + 51.289747501 + ], + [ + 7.203789, + 51.289594601 + ], + [ + 7.2035471, + 51.289504901 + ], + [ + 7.2033078, + 51.289422801 + ], + [ + 7.2031278, + 51.289365101 + ], + [ + 7.2027966, + 51.289267201 + ], + [ + 7.2023788, + 51.289155401 + ], + [ + 7.2019011, + 51.289038901 + ], + [ + 7.2010678, + 51.288851101 + ], + [ + 7.1999137, + 51.288597201 + ], + [ + 7.1997012, + 51.288550501 + ], + [ + 7.1981911, + 51.288212601 + ], + [ + 7.1973196, + 51.288017401 + ], + [ + 7.1967093, + 51.287869401 + ], + [ + 7.1962359, + 51.287743101 + ], + [ + 7.1958917, + 51.287644001 + ], + [ + 7.1954556, + 51.287505401 + ], + [ + 7.1951407, + 51.287396101 + ], + [ + 7.1948387, + 51.287281401 + ], + [ + 7.1946993, + 51.287227701 + ], + [ + 7.1943471, + 51.287081801 + ], + [ + 7.1939963, + 51.286923401 + ], + [ + 7.1936983, + 51.286777501 + ], + [ + 7.1934095, + 51.286625701 + ], + [ + 7.1930236, + 51.286402601 + ], + [ + 7.1925906, + 51.286124601 + ], + [ + 7.191909, + 51.285640801 + ], + [ + 7.1912694, + 51.285143501 + ], + [ + 7.1901943, + 51.284303001 + ], + [ + 7.190102305, + 51.284237335 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de247", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.304398818058864,7.228256727846966,51.30531453220912,7.232003079519369", + "point": "51.304398818058864,7.228256727846966", + "startLcPosition": "45", + "impact": { + "lower": "Holtkamp", + "upper": "Galerie Sternenberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "A46 | Galerie Sternenberg - Holtkamp", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.304398818058864, + "long": 7.228256727846966 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: D\u00fcsseldorf -> Wuppertal, zwischen 0.9 km hinter Galerie Sternenberg und 0.2 km vor Holtkamp", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.228256728, + 51.304398818 + ], + [ + 7.2283481, + 51.304418901 + ], + [ + 7.2297318, + 51.304720901 + ], + [ + 7.2303081, + 51.304855701 + ], + [ + 7.230927, + 51.305011601 + ], + [ + 7.231434, + 51.305149101 + ], + [ + 7.23200308, + 51.305314532 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de249", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.30449584885366,7.228202559254478,51.284237335050506,7.190102305254769", + "point": "51.30449584885366,7.228202559254478", + "startLcPosition": "46", + "impact": { + "lower": "Wuppertal-Barmen", + "upper": "Holtkamp", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Holtkamp - Wuppertal-Barmen", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.30449584885366, + "long": 7.228202559254478 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 0.5 km hinter Holtkamp und 0.6 km vor AS Wuppertal-Barmen", + "", + "L\u00e4nge: 3.62 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.228202559, + 51.304495849 + ], + [ + 7.2276172, + 51.304367701 + ], + [ + 7.2269676, + 51.304217201 + ], + [ + 7.2264799, + 51.304091901 + ], + [ + 7.2260054, + 51.303958001 + ], + [ + 7.2255199, + 51.303806401 + ], + [ + 7.2250946, + 51.303661701 + ], + [ + 7.2245586, + 51.303457101 + ], + [ + 7.22392, + 51.303183201 + ], + [ + 7.2233839, + 51.302928301 + ], + [ + 7.2229032, + 51.302673201 + ], + [ + 7.222446, + 51.302402901 + ], + [ + 7.2218805, + 51.302031401 + ], + [ + 7.221641, + 51.301861501 + ], + [ + 7.2213412, + 51.301632701 + ], + [ + 7.2209858, + 51.301337801 + ], + [ + 7.2205542, + 51.300933401 + ], + [ + 7.2203532, + 51.300728401 + ], + [ + 7.2202062, + 51.300567301 + ], + [ + 7.2198887, + 51.300191201 + ], + [ + 7.2186984, + 51.298590401 + ], + [ + 7.2185245, + 51.298380101 + ], + [ + 7.2182784, + 51.298135201 + ], + [ + 7.2180441, + 51.297926601 + ], + [ + 7.2177587, + 51.297706701 + ], + [ + 7.2174253, + 51.297473401 + ], + [ + 7.2171633, + 51.297310101 + ], + [ + 7.216893, + 51.297156401 + ], + [ + 7.2165772, + 51.297000601 + ], + [ + 7.2162812, + 51.296868301 + ], + [ + 7.2162041, + 51.296836101 + ], + [ + 7.215949, + 51.296729801 + ], + [ + 7.2157317, + 51.296651801 + ], + [ + 7.215503, + 51.296578801 + ], + [ + 7.2150376, + 51.296443801 + ], + [ + 7.2146264, + 51.296345701 + ], + [ + 7.2142177, + 51.296251801 + ], + [ + 7.2129383, + 51.295983201 + ], + [ + 7.2125269, + 51.295890601 + ], + [ + 7.2121242, + 51.295790201 + ], + [ + 7.2119024, + 51.295729301 + ], + [ + 7.2116789, + 51.295665201 + ], + [ + 7.2113518, + 51.295557901 + ], + [ + 7.2110609, + 51.295454701 + ], + [ + 7.2108011, + 51.295352001 + ], + [ + 7.2105451, + 51.295239001 + ], + [ + 7.2103, + 51.295120601 + ], + [ + 7.2100253, + 51.294980501 + ], + [ + 7.2097685, + 51.294830601 + ], + [ + 7.2095227, + 51.294674301 + ], + [ + 7.2092878, + 51.294512301 + ], + [ + 7.2090355, + 51.294313601 + ], + [ + 7.2088079, + 51.294116701 + ], + [ + 7.2086067, + 51.293916901 + ], + [ + 7.2084324, + 51.293730601 + ], + [ + 7.2082539, + 51.293520401 + ], + [ + 7.2080082, + 51.293205001 + ], + [ + 7.2077773, + 51.292890001 + ], + [ + 7.2075329, + 51.292532801 + ], + [ + 7.2074644, + 51.292435801 + ], + [ + 7.2072476, + 51.292131901 + ], + [ + 7.2070795, + 51.291905201 + ], + [ + 7.2068917, + 51.291675501 + ], + [ + 7.2067094, + 51.291466501 + ], + [ + 7.2065049, + 51.291259401 + ], + [ + 7.2063868, + 51.291148301 + ], + [ + 7.2062639, + 51.291036901 + ], + [ + 7.2060965, + 51.290897901 + ], + [ + 7.2059255, + 51.290763501 + ], + [ + 7.2057333, + 51.290619501 + ], + [ + 7.2055144, + 51.290465801 + ], + [ + 7.2051588, + 51.290245901 + ], + [ + 7.2049423, + 51.290123701 + ], + [ + 7.2046367, + 51.289963601 + ], + [ + 7.2043209, + 51.289814901 + ], + [ + 7.2041667, + 51.289747501 + ], + [ + 7.203789, + 51.289594601 + ], + [ + 7.2035471, + 51.289504901 + ], + [ + 7.2033078, + 51.289422801 + ], + [ + 7.2031278, + 51.289365101 + ], + [ + 7.2027966, + 51.289267201 + ], + [ + 7.2023788, + 51.289155401 + ], + [ + 7.2019011, + 51.289038901 + ], + [ + 7.2010678, + 51.288851101 + ], + [ + 7.1999137, + 51.288597201 + ], + [ + 7.1997012, + 51.288550501 + ], + [ + 7.1981911, + 51.288212601 + ], + [ + 7.1973196, + 51.288017401 + ], + [ + 7.1967093, + 51.287869401 + ], + [ + 7.1962359, + 51.287743101 + ], + [ + 7.1958917, + 51.287644001 + ], + [ + 7.1954556, + 51.287505401 + ], + [ + 7.1951407, + 51.287396101 + ], + [ + 7.1948387, + 51.287281401 + ], + [ + 7.1946993, + 51.287227701 + ], + [ + 7.1943471, + 51.287081801 + ], + [ + 7.1939963, + 51.286923401 + ], + [ + 7.1936983, + 51.286777501 + ], + [ + 7.1934095, + 51.286625701 + ], + [ + 7.1930236, + 51.286402601 + ], + [ + 7.1925906, + 51.286124601 + ], + [ + 7.191909, + 51.285640801 + ], + [ + 7.1912694, + 51.285143501 + ], + [ + 7.1901943, + 51.284303001 + ], + [ + 7.190102305, + 51.284237335 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de245", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.305408446883696,7.231931239072619,51.30449584885366,7.228202559254478", + "point": "51.305408446883696,7.231931239072619", + "startLcPosition": "46", + "impact": { + "lower": "Galerie Sternenberg", + "upper": "Holtkamp", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Holtkamp - Galerie Sternenberg", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.305408446883696, + "long": 7.231931239072619 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 0.2 km hinter Holtkamp und 0.9 km vor Galerie Sternenberg", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.231931239, + 51.305408447 + ], + [ + 7.2319199, + 51.305404901 + ], + [ + 7.2313745, + 51.305243801 + ], + [ + 7.2308653, + 51.305107201 + ], + [ + 7.2302658, + 51.304953901 + ], + [ + 7.2296693, + 51.304816501 + ], + [ + 7.2283106, + 51.304519501 + ], + [ + 7.228202559, + 51.304495849 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de191", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.305408446883696,7.231931239072619,51.295924875081624,7.212679171026745", + "point": "51.305408446883696,7.231931239072619", + "startLcPosition": "46", + "impact": { + "lower": "Wuppertal-Wichlinghausen", + "upper": "Holtkamp", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Holtkamp - Wuppertal-Wichlinghausen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.305408446883696, + "long": 7.231931239072619 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 0.2 km hinter Holtkamp und 0.8 km vor AS Wuppertal-Wichlinghausen", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.231931239, + 51.305408447 + ], + [ + 7.2319199, + 51.305404901 + ], + [ + 7.2313745, + 51.305243801 + ], + [ + 7.2308653, + 51.305107201 + ], + [ + 7.2302658, + 51.304953901 + ], + [ + 7.2296693, + 51.304816501 + ], + [ + 7.2283106, + 51.304519501 + ], + [ + 7.2276172, + 51.304367701 + ], + [ + 7.2269676, + 51.304217201 + ], + [ + 7.2264799, + 51.304091901 + ], + [ + 7.2260054, + 51.303958001 + ], + [ + 7.2255199, + 51.303806401 + ], + [ + 7.2250946, + 51.303661701 + ], + [ + 7.2245586, + 51.303457101 + ], + [ + 7.22392, + 51.303183201 + ], + [ + 7.2233839, + 51.302928301 + ], + [ + 7.2229032, + 51.302673201 + ], + [ + 7.222446, + 51.302402901 + ], + [ + 7.2218805, + 51.302031401 + ], + [ + 7.221641, + 51.301861501 + ], + [ + 7.2213412, + 51.301632701 + ], + [ + 7.2209858, + 51.301337801 + ], + [ + 7.2205542, + 51.300933401 + ], + [ + 7.2203532, + 51.300728401 + ], + [ + 7.2202062, + 51.300567301 + ], + [ + 7.2198887, + 51.300191201 + ], + [ + 7.2186984, + 51.298590401 + ], + [ + 7.2185245, + 51.298380101 + ], + [ + 7.2182784, + 51.298135201 + ], + [ + 7.2180441, + 51.297926601 + ], + [ + 7.2177587, + 51.297706701 + ], + [ + 7.2174253, + 51.297473401 + ], + [ + 7.2171633, + 51.297310101 + ], + [ + 7.216893, + 51.297156401 + ], + [ + 7.2165772, + 51.297000601 + ], + [ + 7.2162812, + 51.296868301 + ], + [ + 7.2162041, + 51.296836101 + ], + [ + 7.215949, + 51.296729801 + ], + [ + 7.2157317, + 51.296651801 + ], + [ + 7.215503, + 51.296578801 + ], + [ + 7.2150376, + 51.296443801 + ], + [ + 7.2146264, + 51.296345701 + ], + [ + 7.2142177, + 51.296251801 + ], + [ + 7.2129383, + 51.295983201 + ], + [ + 7.212679171, + 51.295924875 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de243", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.30919428680977,7.241984427791029,51.305408446883696,7.231931239072619", + "point": "51.30919428680977,7.241984427791029", + "startLcPosition": "47", + "impact": { + "lower": "Galerie Sternenberg", + "upper": "Wuppertal-Oberbarmen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Wuppertal-Oberbarmen - Galerie Sternenberg", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.30919428680977, + "long": 7.241984427791029 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 0.5 km hinter AS Wuppertal-Oberbarmen und 1.2 km vor Galerie Sternenberg", + "", + "L\u00e4nge: 0.82 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.241984428, + 51.309194287 + ], + [ + 7.2418023, + 51.309149301 + ], + [ + 7.2412495, + 51.308996501 + ], + [ + 7.2407038, + 51.308839801 + ], + [ + 7.2397365, + 51.308526701 + ], + [ + 7.2389992, + 51.308259601 + ], + [ + 7.2382796, + 51.307979801 + ], + [ + 7.2376203, + 51.307707501 + ], + [ + 7.2368405, + 51.307371701 + ], + [ + 7.2357066, + 51.306867701 + ], + [ + 7.2354083, + 51.306736101 + ], + [ + 7.234996, + 51.306554601 + ], + [ + 7.234318, + 51.306263701 + ], + [ + 7.2338353, + 51.306068201 + ], + [ + 7.2331056, + 51.305793601 + ], + [ + 7.2324696, + 51.305576801 + ], + [ + 7.231931239, + 51.305408447 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de189", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.30919428680977,7.241984427791029,51.305408446883696,7.231931239072619", + "point": "51.30919428680977,7.241984427791029", + "startLcPosition": "47", + "impact": { + "lower": "Galerie Sternenberg", + "upper": "Wuppertal-Oberbarmen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wuppertal -> D\u00fcsseldorf", + "title": "A46 | Wuppertal-Oberbarmen - Galerie Sternenberg", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.30919428680977, + "long": 7.241984427791029 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "A46: Wuppertal -> D\u00fcsseldorf, zwischen 0.5 km hinter AS Wuppertal-Oberbarmen und 1.2 km vor Galerie Sternenberg", + "", + "L\u00e4nge: 0.82 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.241984428, + 51.309194287 + ], + [ + 7.2418023, + 51.309149301 + ], + [ + 7.2412495, + 51.308996501 + ], + [ + 7.2407038, + 51.308839801 + ], + [ + 7.2397365, + 51.308526701 + ], + [ + 7.2389992, + 51.308259601 + ], + [ + 7.2382796, + 51.307979801 + ], + [ + 7.2376203, + 51.307707501 + ], + [ + 7.2368405, + 51.307371701 + ], + [ + 7.2357066, + 51.306867701 + ], + [ + 7.2354083, + 51.306736101 + ], + [ + 7.234996, + 51.306554601 + ], + [ + 7.234318, + 51.306263701 + ], + [ + 7.2338353, + 51.306068201 + ], + [ + 7.2331056, + 51.305793601 + ], + [ + 7.2324696, + 51.305576801 + ], + [ + 7.231931239, + 51.305408447 + ] + ] + } + }, + { + "identifier": "2026-010571--vi-bs.2026-03-12_19-00-00-000.devi-zus.2026-03-12_19-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.38253272984389,7.673644533353149,51.38314276467717,7.683985791211798", + "point": "51.38253272984389,7.673644533353149", + "startLcPosition": "58", + "impact": { + "lower": "Iserlohn-Seilersee", + "upper": "Leckerhorst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Hemer", + "title": "A46 | Leckerhorst - Iserlohn-Seilersee", + "coordinate": { + "lat": 51.38253272984389, + "long": 7.673644533353149 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 19:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A46: Hagen -> Hemer, zwischen 2.2 km hinter Leckerhorst und 1.9 km vor AS Iserlohn-Seilersee", + "", + "L\u00e4nge: 0.73 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Fahrbahninstandsetzung - AkD 10571" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.673644533, + 51.38253273 + ], + [ + 7.6738668, + 51.382564301 + ], + [ + 7.6745001, + 51.382641301 + ], + [ + 7.6749513, + 51.382695801 + ], + [ + 7.6773674, + 51.382936501 + ], + [ + 7.6777313, + 51.382966001 + ], + [ + 7.6781559, + 51.382980101 + ], + [ + 7.6785956, + 51.383011901 + ], + [ + 7.6791607, + 51.383046401 + ], + [ + 7.6806992, + 51.383095701 + ], + [ + 7.6823415, + 51.383125001 + ], + [ + 7.683985791, + 51.383142765 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-02-18_19-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.38376991119398,7.6922346667164225,51.38614328116514,7.699148799125207", + "point": "51.38376991119398,7.6922346667164225", + "startLcPosition": "59", + "impact": { + "lower": "Iserlohn-Seilersee", + "upper": "Iserlohn-Zentrum", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Hemer", + "title": "A46 | Iserlohn-Zentrum - Iserlohn-Seilersee", + "startTimestamp": "2026-02-18T19:00:00+01:00", + "coordinate": { + "lat": 51.38376991119398, + "long": 7.6922346667164225 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "A46: Hagen -> Hemer, zwischen 1.0 km hinter AS Iserlohn-Zentrum und 0.7 km vor AS Iserlohn-Seilersee", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.692234667, + 51.383769911 + ], + [ + 7.6922603, + 51.383775101 + ], + [ + 7.6929301, + 51.383929201 + ], + [ + 7.6938114, + 51.384165601 + ], + [ + 7.6940071, + 51.384220401 + ], + [ + 7.6945978, + 51.384410401 + ], + [ + 7.6951727, + 51.384604201 + ], + [ + 7.6959913, + 51.384904501 + ], + [ + 7.6962982, + 51.385021401 + ], + [ + 7.69708, + 51.385327601 + ], + [ + 7.6988025, + 51.386013201 + ], + [ + 7.699148799, + 51.386143281 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-02-18_19-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.38614328116514,7.699148799125207,51.387938748308606,7.705693777947245", + "point": "51.38614328116514,7.699148799125207", + "startLcPosition": "59", + "impact": { + "lower": "Iserlohn-Seilersee", + "upper": "Iserlohn-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Hemer", + "title": "A46 | Iserlohn-Zentrum - Iserlohn-Seilersee", + "startTimestamp": "2026-02-18T19:00:00+01:00", + "coordinate": { + "lat": 51.38614328116514, + "long": 7.699148799125207 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "A46: Hagen -> Hemer, zwischen 1.5 km hinter AS Iserlohn-Zentrum und 0.2 km vor AS Iserlohn-Seilersee", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.699148799, + 51.386143281 + ], + [ + 7.6993597, + 51.386222501 + ], + [ + 7.7004724, + 51.386633401 + ], + [ + 7.7013409, + 51.386914501 + ], + [ + 7.7022233, + 51.387167101 + ], + [ + 7.7032636, + 51.387439301 + ], + [ + 7.7042764, + 51.387671901 + ], + [ + 7.7051335, + 51.387839301 + ], + [ + 7.705693778, + 51.387938748 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-02-18_19-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.3831236010257,7.682263004061142,51.38376991119398,7.6922346667164225", + "point": "51.3831236010257,7.682263004061142", + "startLcPosition": "59", + "impact": { + "lower": "Iserlohn-Seilersee", + "upper": "Iserlohn-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hagen -> Hemer", + "title": "A46 | Iserlohn-Zentrum - Iserlohn-Seilersee", + "startTimestamp": "2026-02-18T19:00:00+01:00", + "coordinate": { + "lat": 51.3831236010257, + "long": 7.682263004061142 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "A46: Hagen -> Hemer, zwischen 0.3 km hinter AS Iserlohn-Zentrum und 1.3 km vor AS Iserlohn-Seilersee", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.682263004, + 51.383123601 + ], + [ + 7.6823415, + 51.383125001 + ], + [ + 7.6840262, + 51.383143201 + ], + [ + 7.6856309, + 51.383143701 + ], + [ + 7.6872601, + 51.383174701 + ], + [ + 7.6879701, + 51.383210101 + ], + [ + 7.6888465, + 51.383265801 + ], + [ + 7.6892056, + 51.383297601 + ], + [ + 7.6901196, + 51.383400801 + ], + [ + 7.6908669, + 51.383509801 + ], + [ + 7.6916029, + 51.383642001 + ], + [ + 7.692234667, + 51.383769911 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-04-13_20-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de37", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.3852384509401,7.696852376834643,51.387680473807116,7.704320292794551", + "point": "51.3852384509401,7.696852376834643", + "startLcPosition": "59", + "impact": { + "lower": "Iserlohn-Seilersee", + "upper": "Iserlohn-Zentrum", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Hemer", + "title": "A46 | Iserlohn-Zentrum - Iserlohn-Seilersee", + "coordinate": { + "lat": 51.3852384509401, + "long": 7.696852376834643 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A46: Hagen -> Hemer, zwischen 1.3 km hinter AS Iserlohn-Zentrum und 0.3 km vor AS Iserlohn-Seilersee", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.696852377, + 51.385238451 + ], + [ + 7.69708, + 51.385327601 + ], + [ + 7.6988025, + 51.386013201 + ], + [ + 7.6993597, + 51.386222501 + ], + [ + 7.7004724, + 51.386633401 + ], + [ + 7.7013409, + 51.386914501 + ], + [ + 7.7022233, + 51.387167101 + ], + [ + 7.7032636, + 51.387439301 + ], + [ + 7.7042764, + 51.387671901 + ], + [ + 7.704320293, + 51.387680474 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-02-18_19-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.38623502552464,7.699061383884606,51.38386880102204,7.692183258918644", + "point": "51.38623502552464,7.699061383884606", + "startLcPosition": "60", + "impact": { + "lower": "Iserlohn-Zentrum", + "upper": "Iserlohn-Seilersee", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hemer -> Hagen", + "title": "A46 | Iserlohn-Seilersee - Iserlohn-Zentrum", + "startTimestamp": "2026-02-18T19:00:00+01:00", + "coordinate": { + "lat": 51.38623502552464, + "long": 7.699061383884606 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "A46: Hemer -> Hagen, zwischen 0.7 km hinter AS Iserlohn-Seilersee und 1.0 km vor AS Iserlohn-Zentrum", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.699061384, + 51.386235026 + ], + [ + 7.6987134, + 51.386106501 + ], + [ + 7.6969976, + 51.385417301 + ], + [ + 7.6963361, + 51.385156601 + ], + [ + 7.695932, + 51.385000801 + ], + [ + 7.695079, + 51.384686701 + ], + [ + 7.6940309, + 51.384346801 + ], + [ + 7.6936724, + 51.384240001 + ], + [ + 7.6928597, + 51.384023701 + ], + [ + 7.6922121, + 51.383874701 + ], + [ + 7.692183259, + 51.383868801 + ] + ] + } + }, + { + "identifier": "2026-010550--vi-bs.2026-04-09_19-00-00-000.devi-zus.2026-03-11_19-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.38791102697322,7.704972346870033,51.38189107551215,7.669133007012799", + "point": "51.38791102697322,7.704972346870033", + "startLcPosition": "60", + "impact": { + "lower": "Leckerhorst", + "upper": "Iserlohn-Seilersee", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hemer -> Hagen", + "title": "A46 | Iserlohn-Seilersee - Leckerhorst", + "coordinate": { + "lat": 51.38791102697322, + "long": 7.704972346870033 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A46: Hemer -> Hagen, zwischen 0.3 km hinter AS Iserlohn-Seilersee und 1.9 km vor Leckerhorst", + "", + "L\u00e4nge: 2.63 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Fahrbahninstandsetzung - AkD 10550" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.704972347, + 51.387911027 + ], + [ + 7.7035988, + 51.387632601 + ], + [ + 7.7021417, + 51.387258601 + ], + [ + 7.7012739, + 51.387008301 + ], + [ + 7.7004024, + 51.386730301 + ], + [ + 7.6987134, + 51.386106501 + ], + [ + 7.6969976, + 51.385417301 + ], + [ + 7.6963361, + 51.385156601 + ], + [ + 7.695932, + 51.385000801 + ], + [ + 7.695079, + 51.384686701 + ], + [ + 7.6940309, + 51.384346801 + ], + [ + 7.6936724, + 51.384240001 + ], + [ + 7.6928597, + 51.384023701 + ], + [ + 7.6922121, + 51.383874701 + ], + [ + 7.6915512, + 51.383739501 + ], + [ + 7.6908267, + 51.383613601 + ], + [ + 7.6900919, + 51.383508801 + ], + [ + 7.689132, + 51.383395701 + ], + [ + 7.6887894, + 51.383370001 + ], + [ + 7.687946, + 51.383308901 + ], + [ + 7.6871043, + 51.383274001 + ], + [ + 7.6854882, + 51.383248801 + ], + [ + 7.6842428, + 51.383245401 + ], + [ + 7.6836429, + 51.383246101 + ], + [ + 7.6823074, + 51.383235301 + ], + [ + 7.6810488, + 51.383216201 + ], + [ + 7.6790448, + 51.383163601 + ], + [ + 7.6786736, + 51.383140901 + ], + [ + 7.6775894, + 51.383061401 + ], + [ + 7.6761299, + 51.382928901 + ], + [ + 7.6748603, + 51.382804801 + ], + [ + 7.6740889, + 51.382707201 + ], + [ + 7.6729448, + 51.382547701 + ], + [ + 7.6723025, + 51.382453701 + ], + [ + 7.6717029, + 51.382360201 + ], + [ + 7.6701787, + 51.382095501 + ], + [ + 7.669133007, + 51.381891076 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-04-13_20-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de39", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.38837260678256,7.709229122878198,51.388453981583815,7.7135760296219855", + "point": "51.38837260678256,7.709229122878198", + "startLcPosition": "60", + "impact": { + "lower": "Hemer", + "upper": "Iserlohn-Seilersee", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hagen -> Hemer", + "title": "A46 | Iserlohn-Seilersee - Hemer", + "coordinate": { + "lat": 51.38837260678256, + "long": 7.709229122878198 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 00:00 bis 05:00 Uhr", + "", + "A46: Hagen -> Hemer, zwischen AS Iserlohn-Seilersee und 1.4 km vor AS Hemer", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.709229123, + 51.388372607 + ], + [ + 7.7097161, + 51.388408401 + ], + [ + 7.7111441, + 51.388469401 + ], + [ + 7.7117407, + 51.388477901 + ], + [ + 7.7124422, + 51.388478101 + ], + [ + 7.71357603, + 51.388453982 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-02-18_19-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.38850159328425,7.714934201704749,51.38791102697322,7.704972346870033", + "point": "51.38850159328425,7.714934201704749", + "startLcPosition": "61", + "impact": { + "lower": "Iserlohn-Zentrum", + "upper": "Hemer", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hemer -> Hagen", + "title": "A46 | Hemer - Iserlohn-Zentrum", + "startTimestamp": "2026-02-18T19:00:00+01:00", + "coordinate": { + "lat": 51.38850159328425, + "long": 7.714934201704749 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "A46: Hemer -> Hagen, zwischen 1.5 km hinter AS Hemer und 2.0 km vor AS Iserlohn-Zentrum", + "", + "L\u00e4nge: 0.7 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.714934202, + 51.388501593 + ], + [ + 7.71484, + 51.388507401 + ], + [ + 7.713574, + 51.388567701 + ], + [ + 7.7128417, + 51.388586101 + ], + [ + 7.7111332, + 51.388584401 + ], + [ + 7.7097718, + 51.388530401 + ], + [ + 7.7089973, + 51.388477001 + ], + [ + 7.7088323, + 51.388463601 + ], + [ + 7.7087425, + 51.388456101 + ], + [ + 7.7084528, + 51.388428501 + ], + [ + 7.7076065, + 51.388333101 + ], + [ + 7.7066141, + 51.388200901 + ], + [ + 7.7058094, + 51.388066901 + ], + [ + 7.7050477, + 51.387926301 + ], + [ + 7.704972347, + 51.387911027 + ] + ] + } + }, + { + "identifier": "2026-017560--vi-fbm.2026-04-23_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_005.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.45214617773393,7.9536876987130665,51.44043684946051,7.983004567707566", + "point": "51.45214617773393,7.9536876987130665", + "startLcPosition": "62", + "impact": { + "lower": "H\u00fcsten", + "upper": "Neheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnsberg-Neheim -> Brilon", + "title": "A46 | Neheim - H\u00fcsten", + "coordinate": { + "lat": 51.45214617773393, + "long": 7.9536876987130665 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 18:00 Uhr", + "", + "A46: Arnsberg-Neheim -> Brilon, zwischen 0.6 km hinter AS Neheim und 0.7 km vor AS H\u00fcsten", + "", + "L\u00e4nge: 2.8 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 17560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.953687699, + 51.452146178 + ], + [ + 7.9536808, + 51.451757201 + ], + [ + 7.9537074, + 51.451158501 + ], + [ + 7.9537482, + 51.450724601 + ], + [ + 7.9537993, + 51.450345901 + ], + [ + 7.9538693, + 51.450003901 + ], + [ + 7.9539531, + 51.449689201 + ], + [ + 7.9541401, + 51.449004601 + ], + [ + 7.9542474, + 51.448698001 + ], + [ + 7.9543845, + 51.448337801 + ], + [ + 7.9545498, + 51.447967801 + ], + [ + 7.9547196, + 51.447625101 + ], + [ + 7.9550644, + 51.446916801 + ], + [ + 7.95549, + 51.446307601 + ], + [ + 7.9560697, + 51.445660601 + ], + [ + 7.9567374, + 51.444976301 + ], + [ + 7.9574759, + 51.444407501 + ], + [ + 7.9582343, + 51.443868101 + ], + [ + 7.9592156, + 51.443290801 + ], + [ + 7.9597959, + 51.442990201 + ], + [ + 7.9600896, + 51.442855601 + ], + [ + 7.9604159, + 51.442707201 + ], + [ + 7.9609787, + 51.442475301 + ], + [ + 7.9615942, + 51.442255301 + ], + [ + 7.9621468, + 51.442073201 + ], + [ + 7.9628322, + 51.441867801 + ], + [ + 7.9631366, + 51.441785701 + ], + [ + 7.9635322, + 51.441694601 + ], + [ + 7.9643712, + 51.441502801 + ], + [ + 7.9651322, + 51.441371101 + ], + [ + 7.9658165, + 51.441291001 + ], + [ + 7.9666624, + 51.441203301 + ], + [ + 7.9673443, + 51.441149201 + ], + [ + 7.9677925, + 51.441122201 + ], + [ + 7.9682858, + 51.441107401 + ], + [ + 7.9689215, + 51.441073001 + ], + [ + 7.9700134, + 51.441025401 + ], + [ + 7.9711963, + 51.440970101 + ], + [ + 7.9738435, + 51.440866201 + ], + [ + 7.9752547, + 51.440819901 + ], + [ + 7.9777452, + 51.440719401 + ], + [ + 7.9820013, + 51.440533901 + ], + [ + 7.983004568, + 51.440436849 + ] + ] + } + }, + { + "identifier": "2026-017560--vi-fbm.2026-04-23_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_005.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.45214617773393,7.9536876987130665,51.44043684946051,7.983004567707566", + "point": "51.45214617773393,7.9536876987130665", + "startLcPosition": "62", + "impact": { + "lower": "H\u00fcsten", + "upper": "Neheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnsberg-Neheim -> Brilon", + "title": "A46 | Neheim - H\u00fcsten", + "coordinate": { + "lat": 51.45214617773393, + "long": 7.9536876987130665 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 18:00 Uhr", + "", + "A46: Arnsberg-Neheim -> Brilon, zwischen 0.6 km hinter AS Neheim und 0.7 km vor AS H\u00fcsten", + "", + "L\u00e4nge: 2.8 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 17560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.953687699, + 51.452146178 + ], + [ + 7.9536808, + 51.451757201 + ], + [ + 7.9537074, + 51.451158501 + ], + [ + 7.9537482, + 51.450724601 + ], + [ + 7.9537993, + 51.450345901 + ], + [ + 7.9538693, + 51.450003901 + ], + [ + 7.9539531, + 51.449689201 + ], + [ + 7.9541401, + 51.449004601 + ], + [ + 7.9542474, + 51.448698001 + ], + [ + 7.9543845, + 51.448337801 + ], + [ + 7.9545498, + 51.447967801 + ], + [ + 7.9547196, + 51.447625101 + ], + [ + 7.9550644, + 51.446916801 + ], + [ + 7.95549, + 51.446307601 + ], + [ + 7.9560697, + 51.445660601 + ], + [ + 7.9567374, + 51.444976301 + ], + [ + 7.9574759, + 51.444407501 + ], + [ + 7.9582343, + 51.443868101 + ], + [ + 7.9592156, + 51.443290801 + ], + [ + 7.9597959, + 51.442990201 + ], + [ + 7.9600896, + 51.442855601 + ], + [ + 7.9604159, + 51.442707201 + ], + [ + 7.9609787, + 51.442475301 + ], + [ + 7.9615942, + 51.442255301 + ], + [ + 7.9621468, + 51.442073201 + ], + [ + 7.9628322, + 51.441867801 + ], + [ + 7.9631366, + 51.441785701 + ], + [ + 7.9635322, + 51.441694601 + ], + [ + 7.9643712, + 51.441502801 + ], + [ + 7.9651322, + 51.441371101 + ], + [ + 7.9658165, + 51.441291001 + ], + [ + 7.9666624, + 51.441203301 + ], + [ + 7.9673443, + 51.441149201 + ], + [ + 7.9677925, + 51.441122201 + ], + [ + 7.9682858, + 51.441107401 + ], + [ + 7.9689215, + 51.441073001 + ], + [ + 7.9700134, + 51.441025401 + ], + [ + 7.9711963, + 51.440970101 + ], + [ + 7.9738435, + 51.440866201 + ], + [ + 7.9752547, + 51.440819901 + ], + [ + 7.9777452, + 51.440719401 + ], + [ + 7.9820013, + 51.440533901 + ], + [ + 7.983004568, + 51.440436849 + ] + ] + } + }, + { + "identifier": "2026-017560--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.45697164413009,7.95519871919924,51.43246474492543,8.023276544952747", + "point": "51.45697164413009,7.95519871919924", + "startLcPosition": "62", + "impact": { + "lower": "Bruchhauser H\u00f6he", + "upper": "Neheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnsberg-Neheim -> Brilon", + "title": "A46 | Neheim - Bruchhauser H\u00f6he", + "coordinate": { + "lat": 51.45697164413009, + "long": 7.95519871919924 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "", + "A46: Arnsberg-Neheim -> Brilon, zwischen AS Neheim und 0.6 km vor Bruchhauser H\u00f6he", + "", + "L\u00e4nge: 6.33 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A46 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 17560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.955198719, + 51.456971644 + ], + [ + 7.9548256, + 51.456324501 + ], + [ + 7.9545757, + 51.455844201 + ], + [ + 7.9543495, + 51.455329401 + ], + [ + 7.9541947, + 51.454926501 + ], + [ + 7.9540641, + 51.454611101 + ], + [ + 7.9539535, + 51.454249501 + ], + [ + 7.9538729, + 51.453956401 + ], + [ + 7.9537868, + 51.453542801 + ], + [ + 7.9536947, + 51.452869701 + ], + [ + 7.9536907, + 51.452315401 + ], + [ + 7.9536808, + 51.451757201 + ], + [ + 7.9537074, + 51.451158501 + ], + [ + 7.9537482, + 51.450724601 + ], + [ + 7.9537993, + 51.450345901 + ], + [ + 7.9538693, + 51.450003901 + ], + [ + 7.9539531, + 51.449689201 + ], + [ + 7.9541401, + 51.449004601 + ], + [ + 7.9542474, + 51.448698001 + ], + [ + 7.9543845, + 51.448337801 + ], + [ + 7.9545498, + 51.447967801 + ], + [ + 7.9547196, + 51.447625101 + ], + [ + 7.9550644, + 51.446916801 + ], + [ + 7.95549, + 51.446307601 + ], + [ + 7.9560697, + 51.445660601 + ], + [ + 7.9567374, + 51.444976301 + ], + [ + 7.9574759, + 51.444407501 + ], + [ + 7.9582343, + 51.443868101 + ], + [ + 7.9592156, + 51.443290801 + ], + [ + 7.9597959, + 51.442990201 + ], + [ + 7.9600896, + 51.442855601 + ], + [ + 7.9604159, + 51.442707201 + ], + [ + 7.9609787, + 51.442475301 + ], + [ + 7.9615942, + 51.442255301 + ], + [ + 7.9621468, + 51.442073201 + ], + [ + 7.9628322, + 51.441867801 + ], + [ + 7.9631366, + 51.441785701 + ], + [ + 7.9635322, + 51.441694601 + ], + [ + 7.9643712, + 51.441502801 + ], + [ + 7.9651322, + 51.441371101 + ], + [ + 7.9658165, + 51.441291001 + ], + [ + 7.9666624, + 51.441203301 + ], + [ + 7.9673443, + 51.441149201 + ], + [ + 7.9677925, + 51.441122201 + ], + [ + 7.9682858, + 51.441107401 + ], + [ + 7.9689215, + 51.441073001 + ], + [ + 7.9700134, + 51.441025401 + ], + [ + 7.9711963, + 51.440970101 + ], + [ + 7.9738435, + 51.440866201 + ], + [ + 7.9752547, + 51.440819901 + ], + [ + 7.9777452, + 51.440719401 + ], + [ + 7.9820013, + 51.440533901 + ], + [ + 7.9850423, + 51.440239701 + ], + [ + 7.9862808, + 51.440043901 + ], + [ + 7.9869651, + 51.439931601 + ], + [ + 7.9874354, + 51.439840901 + ], + [ + 7.9878804, + 51.439751801 + ], + [ + 7.9886254, + 51.439586801 + ], + [ + 7.9896211, + 51.439334901 + ], + [ + 7.9903623, + 51.439125901 + ], + [ + 7.9923976, + 51.438438301 + ], + [ + 7.9967823, + 51.436751601 + ], + [ + 7.9969498, + 51.436692601 + ], + [ + 7.9987593, + 51.435998601 + ], + [ + 7.9994589, + 51.435747001 + ], + [ + 8.0009582, + 51.435224201 + ], + [ + 8.0026488, + 51.434721801 + ], + [ + 8.003978, + 51.434374301 + ], + [ + 8.0055091, + 51.434012801 + ], + [ + 8.0077681, + 51.433609101 + ], + [ + 8.0101781, + 51.433223701 + ], + [ + 8.0115443, + 51.433078901 + ], + [ + 8.0133065, + 51.432910101 + ], + [ + 8.0144184, + 51.432809101 + ], + [ + 8.0163119, + 51.432679301 + ], + [ + 8.0231977, + 51.432466701 + ], + [ + 8.023276545, + 51.432464745 + ] + ] + } + }, + { + "identifier": "2026-017802--vi-bs.2026-04-10_07-30-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.45697164413009,7.95519871919924,51.40486750333212,8.085898002780135", + "point": "51.45697164413009,7.95519871919924", + "startLcPosition": "62", + "impact": { + "lower": "Uentrop", + "upper": "Neheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnsberg-Neheim -> Brilon", + "title": "A46 | Neheim - Uentrop", + "coordinate": { + "lat": 51.45697164413009, + "long": 7.95519871919924 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 11:30 Uhr", + "", + "A46: Arnsberg-Neheim -> Brilon, zwischen AS Neheim und 0.4 km vor Uentrop", + "", + "L\u00e4nge: 11.96 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A46 - Reinigungsarbeiten - Wanderbaustelle - AkD 17802" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.955198719, + 51.456971644 + ], + [ + 7.9548256, + 51.456324501 + ], + [ + 7.9545757, + 51.455844201 + ], + [ + 7.9543495, + 51.455329401 + ], + [ + 7.9541947, + 51.454926501 + ], + [ + 7.9540641, + 51.454611101 + ], + [ + 7.9539535, + 51.454249501 + ], + [ + 7.9538729, + 51.453956401 + ], + [ + 7.9537868, + 51.453542801 + ], + [ + 7.9536947, + 51.452869701 + ], + [ + 7.9536907, + 51.452315401 + ], + [ + 7.9536808, + 51.451757201 + ], + [ + 7.9537074, + 51.451158501 + ], + [ + 7.9537482, + 51.450724601 + ], + [ + 7.9537993, + 51.450345901 + ], + [ + 7.9538693, + 51.450003901 + ], + [ + 7.9539531, + 51.449689201 + ], + [ + 7.9541401, + 51.449004601 + ], + [ + 7.9542474, + 51.448698001 + ], + [ + 7.9543845, + 51.448337801 + ], + [ + 7.9545498, + 51.447967801 + ], + [ + 7.9547196, + 51.447625101 + ], + [ + 7.9550644, + 51.446916801 + ], + [ + 7.95549, + 51.446307601 + ], + [ + 7.9560697, + 51.445660601 + ], + [ + 7.9567374, + 51.444976301 + ], + [ + 7.9574759, + 51.444407501 + ], + [ + 7.9582343, + 51.443868101 + ], + [ + 7.9592156, + 51.443290801 + ], + [ + 7.9597959, + 51.442990201 + ], + [ + 7.9600896, + 51.442855601 + ], + [ + 7.9604159, + 51.442707201 + ], + [ + 7.9609787, + 51.442475301 + ], + [ + 7.9615942, + 51.442255301 + ], + [ + 7.9621468, + 51.442073201 + ], + [ + 7.9628322, + 51.441867801 + ], + [ + 7.9631366, + 51.441785701 + ], + [ + 7.9635322, + 51.441694601 + ], + [ + 7.9643712, + 51.441502801 + ], + [ + 7.9651322, + 51.441371101 + ], + [ + 7.9658165, + 51.441291001 + ], + [ + 7.9666624, + 51.441203301 + ], + [ + 7.9673443, + 51.441149201 + ], + [ + 7.9677925, + 51.441122201 + ], + [ + 7.9682858, + 51.441107401 + ], + [ + 7.9689215, + 51.441073001 + ], + [ + 7.9700134, + 51.441025401 + ], + [ + 7.9711963, + 51.440970101 + ], + [ + 7.9738435, + 51.440866201 + ], + [ + 7.9752547, + 51.440819901 + ], + [ + 7.9777452, + 51.440719401 + ], + [ + 7.9820013, + 51.440533901 + ], + [ + 7.9850423, + 51.440239701 + ], + [ + 7.9862808, + 51.440043901 + ], + [ + 7.9869651, + 51.439931601 + ], + [ + 7.9874354, + 51.439840901 + ], + [ + 7.9878804, + 51.439751801 + ], + [ + 7.9886254, + 51.439586801 + ], + [ + 7.9896211, + 51.439334901 + ], + [ + 7.9903623, + 51.439125901 + ], + [ + 7.9923976, + 51.438438301 + ], + [ + 7.9967823, + 51.436751601 + ], + [ + 7.9969498, + 51.436692601 + ], + [ + 7.9987593, + 51.435998601 + ], + [ + 7.9994589, + 51.435747001 + ], + [ + 8.0009582, + 51.435224201 + ], + [ + 8.0026488, + 51.434721801 + ], + [ + 8.003978, + 51.434374301 + ], + [ + 8.0055091, + 51.434012801 + ], + [ + 8.0077681, + 51.433609101 + ], + [ + 8.0101781, + 51.433223701 + ], + [ + 8.0115443, + 51.433078901 + ], + [ + 8.0133065, + 51.432910101 + ], + [ + 8.0144184, + 51.432809101 + ], + [ + 8.0163119, + 51.432679301 + ], + [ + 8.0231977, + 51.432466701 + ], + [ + 8.0254018, + 51.432412001 + ], + [ + 8.0269893, + 51.432373501 + ], + [ + 8.0280627, + 51.432354701 + ], + [ + 8.0304747, + 51.432289701 + ], + [ + 8.0338805, + 51.432102901 + ], + [ + 8.035924, + 51.431949301 + ], + [ + 8.0379335, + 51.431749601 + ], + [ + 8.0407916, + 51.431358301 + ], + [ + 8.0417045, + 51.431192501 + ], + [ + 8.0430342, + 51.430948001 + ], + [ + 8.0443204, + 51.430679001 + ], + [ + 8.0454314, + 51.430403001 + ], + [ + 8.0465459, + 51.430096601 + ], + [ + 8.0484692, + 51.429466301 + ], + [ + 8.0490144, + 51.429283701 + ], + [ + 8.0504153, + 51.428673401 + ], + [ + 8.0511898, + 51.428326501 + ], + [ + 8.0527972, + 51.427497701 + ], + [ + 8.054324, + 51.426598101 + ], + [ + 8.0549613, + 51.426163501 + ], + [ + 8.0560183, + 51.425411001 + ], + [ + 8.0563676, + 51.425146001 + ], + [ + 8.0563892, + 51.425128301 + ], + [ + 8.0572101, + 51.424409301 + ], + [ + 8.0578723, + 51.423829301 + ], + [ + 8.0582847, + 51.423399501 + ], + [ + 8.0586161, + 51.423033701 + ], + [ + 8.0587591, + 51.422872101 + ], + [ + 8.0590156, + 51.422581301 + ], + [ + 8.0597543, + 51.421708001 + ], + [ + 8.0601008, + 51.421290501 + ], + [ + 8.0607218, + 51.420540801 + ], + [ + 8.0616543, + 51.419540901 + ], + [ + 8.0629671, + 51.418329801 + ], + [ + 8.0638683, + 51.417617401 + ], + [ + 8.0651163, + 51.416671301 + ], + [ + 8.0663451, + 51.415876401 + ], + [ + 8.0676183, + 51.415157101 + ], + [ + 8.069312, + 51.414264701 + ], + [ + 8.0763756, + 51.410758901 + ], + [ + 8.0781015, + 51.409837301 + ], + [ + 8.0806405, + 51.408347701 + ], + [ + 8.0811797, + 51.408036401 + ], + [ + 8.0816505, + 51.407766601 + ], + [ + 8.0833213, + 51.406685401 + ], + [ + 8.0845674, + 51.405820801 + ], + [ + 8.0852367, + 51.405348101 + ], + [ + 8.0855754, + 51.405111301 + ], + [ + 8.085898003, + 51.404867503 + ] + ] + } + }, + { + "identifier": "2026-017560--vi-fbm.2026-04-24_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_005.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.436679250131576,7.997331367097261,51.4486224318832,7.954456728227697", + "point": "51.436679250131576,7.997331367097261", + "startLcPosition": "65", + "impact": { + "lower": "Neheim", + "upper": "Bruchhauser H\u00f6he", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Brilon -> Arnsberg-Neheim", + "title": "A46 | Bruchhauser H\u00f6he - Neheim", + "coordinate": { + "lat": 51.436679250131576, + "long": 7.997331367097261 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 08:00 bis 18:00 Uhr", + "", + "A46: Brilon -> Arnsberg-Neheim, zwischen 2.5 km hinter Bruchhauser H\u00f6he und 1.0 km vor AS Neheim", + "", + "L\u00e4nge: 3.49 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 17560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.997331367, + 51.43667925 + ], + [ + 7.9963069, + 51.437070001 + ], + [ + 7.9944419, + 51.437792001 + ], + [ + 7.9925198, + 51.438545301 + ], + [ + 7.9915156, + 51.438878201 + ], + [ + 7.9903805, + 51.439248401 + ], + [ + 7.9900833, + 51.439345301 + ], + [ + 7.988682, + 51.439706901 + ], + [ + 7.9876955, + 51.439930101 + ], + [ + 7.9870323, + 51.440063701 + ], + [ + 7.9861981, + 51.440184201 + ], + [ + 7.9850236, + 51.440358901 + ], + [ + 7.9836557, + 51.440517201 + ], + [ + 7.9822167, + 51.440607201 + ], + [ + 7.9785593, + 51.440774801 + ], + [ + 7.97606, + 51.440896001 + ], + [ + 7.9740253, + 51.440981301 + ], + [ + 7.9728609, + 51.441027501 + ], + [ + 7.9717854, + 51.441075501 + ], + [ + 7.970911, + 51.441111101 + ], + [ + 7.9700386, + 51.441148801 + ], + [ + 7.9699014, + 51.441152901 + ], + [ + 7.9680366, + 51.441229201 + ], + [ + 7.9673959, + 51.441268201 + ], + [ + 7.9667104, + 51.441311801 + ], + [ + 7.9662238, + 51.441359401 + ], + [ + 7.9657661, + 51.441417101 + ], + [ + 7.9650383, + 51.441517401 + ], + [ + 7.9644177, + 51.441627301 + ], + [ + 7.963779, + 51.441759801 + ], + [ + 7.963123, + 51.441916901 + ], + [ + 7.9627959, + 51.442013001 + ], + [ + 7.9624271, + 51.442116701 + ], + [ + 7.9617545, + 51.442331401 + ], + [ + 7.9614468, + 51.442441001 + ], + [ + 7.9611102, + 51.442563901 + ], + [ + 7.9605021, + 51.442810101 + ], + [ + 7.9601888, + 51.442945101 + ], + [ + 7.9598817, + 51.443091401 + ], + [ + 7.959323, + 51.443374001 + ], + [ + 7.9583322, + 51.443948001 + ], + [ + 7.9576009, + 51.444466001 + ], + [ + 7.9568505, + 51.445066001 + ], + [ + 7.9562051, + 51.445709301 + ], + [ + 7.9556349, + 51.446358701 + ], + [ + 7.9552207, + 51.446946101 + ], + [ + 7.9548728, + 51.447694501 + ], + [ + 7.9547214, + 51.448002601 + ], + [ + 7.9545493, + 51.448382101 + ], + [ + 7.954456728, + 51.448622432 + ] + ] + } + }, + { + "identifier": "2026-017560--vi-fbm.2026-04-24_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_005.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.436679250131576,7.997331367097261,51.444586038344674,7.957450775286403", + "point": "51.436679250131576,7.997331367097261", + "startLcPosition": "65", + "impact": { + "lower": "Neheim", + "upper": "Bruchhauser H\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Brilon -> Arnsberg-Neheim", + "title": "A46 | Bruchhauser H\u00f6he - Neheim", + "coordinate": { + "lat": 51.436679250131576, + "long": 7.997331367097261 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 08:00 bis 18:00 Uhr", + "", + "A46: Brilon -> Arnsberg-Neheim, zwischen 2.5 km hinter Bruchhauser H\u00f6he und 1.5 km vor AS Neheim", + "", + "L\u00e4nge: 2.99 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 17560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.997331367, + 51.43667925 + ], + [ + 7.9963069, + 51.437070001 + ], + [ + 7.9944419, + 51.437792001 + ], + [ + 7.9925198, + 51.438545301 + ], + [ + 7.9915156, + 51.438878201 + ], + [ + 7.9903805, + 51.439248401 + ], + [ + 7.9900833, + 51.439345301 + ], + [ + 7.988682, + 51.439706901 + ], + [ + 7.9876955, + 51.439930101 + ], + [ + 7.9870323, + 51.440063701 + ], + [ + 7.9861981, + 51.440184201 + ], + [ + 7.9850236, + 51.440358901 + ], + [ + 7.9836557, + 51.440517201 + ], + [ + 7.9822167, + 51.440607201 + ], + [ + 7.9785593, + 51.440774801 + ], + [ + 7.97606, + 51.440896001 + ], + [ + 7.9740253, + 51.440981301 + ], + [ + 7.9728609, + 51.441027501 + ], + [ + 7.9717854, + 51.441075501 + ], + [ + 7.970911, + 51.441111101 + ], + [ + 7.9700386, + 51.441148801 + ], + [ + 7.9699014, + 51.441152901 + ], + [ + 7.9680366, + 51.441229201 + ], + [ + 7.9673959, + 51.441268201 + ], + [ + 7.9667104, + 51.441311801 + ], + [ + 7.9662238, + 51.441359401 + ], + [ + 7.9657661, + 51.441417101 + ], + [ + 7.9650383, + 51.441517401 + ], + [ + 7.9644177, + 51.441627301 + ], + [ + 7.963779, + 51.441759801 + ], + [ + 7.963123, + 51.441916901 + ], + [ + 7.9627959, + 51.442013001 + ], + [ + 7.9624271, + 51.442116701 + ], + [ + 7.9617545, + 51.442331401 + ], + [ + 7.9614468, + 51.442441001 + ], + [ + 7.9611102, + 51.442563901 + ], + [ + 7.9605021, + 51.442810101 + ], + [ + 7.9601888, + 51.442945101 + ], + [ + 7.9598817, + 51.443091401 + ], + [ + 7.959323, + 51.443374001 + ], + [ + 7.9583322, + 51.443948001 + ], + [ + 7.9576009, + 51.444466001 + ], + [ + 7.957450775, + 51.444586038 + ] + ] + } + }, + { + "identifier": "2026-017560--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43254115453802,8.024734693977885,51.444586038344674,7.957450775286403", + "point": "51.43254115453802,8.024734693977885", + "startLcPosition": "65", + "impact": { + "lower": "Neheim", + "upper": "Bruchhauser H\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Brilon -> Arnsberg-Neheim", + "title": "A46 | Bruchhauser H\u00f6he - Neheim", + "coordinate": { + "lat": 51.43254115453802, + "long": 8.024734693977885 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 18:00 Uhr", + "", + "A46: Brilon -> Arnsberg-Neheim, zwischen 0.5 km hinter Bruchhauser H\u00f6he und 1.5 km vor AS Neheim", + "", + "L\u00e4nge: 4.99 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A46 - Auf- oder Abbau Verkehrsf\u00fchrung - AkD 17560" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.024734694, + 51.432541155 + ], + [ + 8.0232046, + 51.432572601 + ], + [ + 8.0171982, + 51.432767101 + ], + [ + 8.0163081, + 51.432815501 + ], + [ + 8.0144707, + 51.432928001 + ], + [ + 8.0115428, + 51.433211701 + ], + [ + 8.0102225, + 51.433373701 + ], + [ + 8.0078981, + 51.433729001 + ], + [ + 8.0054603, + 51.434150901 + ], + [ + 8.0040674, + 51.434472801 + ], + [ + 8.0027228, + 51.434824801 + ], + [ + 8.0010284, + 51.435341901 + ], + [ + 7.9999213, + 51.435710501 + ], + [ + 7.9988303, + 51.436107501 + ], + [ + 7.9963069, + 51.437070001 + ], + [ + 7.9944419, + 51.437792001 + ], + [ + 7.9925198, + 51.438545301 + ], + [ + 7.9915156, + 51.438878201 + ], + [ + 7.9903805, + 51.439248401 + ], + [ + 7.9900833, + 51.439345301 + ], + [ + 7.988682, + 51.439706901 + ], + [ + 7.9876955, + 51.439930101 + ], + [ + 7.9870323, + 51.440063701 + ], + [ + 7.9861981, + 51.440184201 + ], + [ + 7.9850236, + 51.440358901 + ], + [ + 7.9836557, + 51.440517201 + ], + [ + 7.9822167, + 51.440607201 + ], + [ + 7.9785593, + 51.440774801 + ], + [ + 7.97606, + 51.440896001 + ], + [ + 7.9740253, + 51.440981301 + ], + [ + 7.9728609, + 51.441027501 + ], + [ + 7.9717854, + 51.441075501 + ], + [ + 7.970911, + 51.441111101 + ], + [ + 7.9700386, + 51.441148801 + ], + [ + 7.9699014, + 51.441152901 + ], + [ + 7.9680366, + 51.441229201 + ], + [ + 7.9673959, + 51.441268201 + ], + [ + 7.9667104, + 51.441311801 + ], + [ + 7.9662238, + 51.441359401 + ], + [ + 7.9657661, + 51.441417101 + ], + [ + 7.9650383, + 51.441517401 + ], + [ + 7.9644177, + 51.441627301 + ], + [ + 7.963779, + 51.441759801 + ], + [ + 7.963123, + 51.441916901 + ], + [ + 7.9627959, + 51.442013001 + ], + [ + 7.9624271, + 51.442116701 + ], + [ + 7.9617545, + 51.442331401 + ], + [ + 7.9614468, + 51.442441001 + ], + [ + 7.9611102, + 51.442563901 + ], + [ + 7.9605021, + 51.442810101 + ], + [ + 7.9601888, + 51.442945101 + ], + [ + 7.9598817, + 51.443091401 + ], + [ + 7.959323, + 51.443374001 + ], + [ + 7.9583322, + 51.443948001 + ], + [ + 7.9576009, + 51.444466001 + ], + [ + 7.957450775, + 51.444586038 + ] + ] + } + }, + { + "identifier": "2026-017294--vi-bs.2026-04-21_08-00-00-000.devi-zus.2026-04-21_08-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35972012129844,8.246235760340873,51.35980455320816,8.249765486184414", + "point": "51.35972012129844,8.246235760340873", + "startLcPosition": "73", + "impact": { + "lower": "Meschede", + "upper": "Wennemen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnsberg-Neheim -> Brilon", + "title": "A46 | Wennemen - Meschede", + "coordinate": { + "lat": 51.35972012129844, + "long": 8.246235760340873 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 08:00 bis 20:00 Uhr", + "22.04.26 von 08:00 bis 20:00 Uhr", + "", + "A46: Arnsberg-Neheim -> Brilon, zwischen 4.2 km hinter AS Wennemen und 3.0 km vor AS Meschede", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Leitungsarbeiten - AkD 17294" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.24623576, + 51.359720121 + ], + [ + 8.248756, + 51.359773201 + ], + [ + 8.2492319, + 51.359785201 + ], + [ + 8.249765486, + 51.359804553 + ] + ] + } + }, + { + "identifier": "2026-017294--vi-bs.2026-04-21_08-00-00-000.devi-zus.2026-04-21_08-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.3599239563764,8.250459737401703,51.35983604730793,8.246919362594229", + "point": "51.3599239563764,8.250459737401703", + "startLcPosition": "75", + "impact": { + "lower": "Wennemen", + "upper": "Meschede", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Brilon -> Arnsberg-Neheim", + "title": "A46 | Meschede - Wennemen", + "coordinate": { + "lat": 51.3599239563764, + "long": 8.250459737401703 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 08:00 bis 20:00 Uhr", + "22.04.26 von 08:00 bis 20:00 Uhr", + "", + "A46: Brilon -> Arnsberg-Neheim, zwischen 3.0 km hinter AS Meschede und 4.3 km vor AS Wennemen", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Leitungsarbeiten - AkD 17294" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.250459737, + 51.359923956 + ], + [ + 8.2492223, + 51.359883701 + ], + [ + 8.2487517, + 51.359873701 + ], + [ + 8.246919363, + 51.359836047 + ] + ] + } + }, + { + "identifier": "2023-004531--vi-bs.2025-11-26_00-00-00-000.devi-zus.2024-07-08_00-00-00-000.f_002.de267", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.09672192592803,6.49870347485929,51.09444795304949,6.484996442343046", + "point": "51.09672192592803,6.49870347485929", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Heinsberg", + "title": "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich", + "startTimestamp": "2025-11-26T00:00:00+01:00", + "coordinate": { + "lat": 51.09672192592803, + "long": 6.49870347485929 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "Von A46: D\u00fcsseldorf -> Heinsberg, zwischen 2.7 km hinter AS J\u00fcchen und AK Holz nach Abfahrt von der A46: AK Holz (aus Richtung J\u00fcchen)", + "", + "L\u00e4nge: 0.99 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.498703475, + 51.096721926 + ], + [ + 6.4986195, + 51.096714701 + ], + [ + 6.4983472, + 51.096692801 + ], + [ + 6.4979542, + 51.096657101 + ], + [ + 6.4975726, + 51.096620301 + ], + [ + 6.4972139, + 51.096585901 + ], + [ + 6.4968228, + 51.096545501 + ], + [ + 6.4965709, + 51.096519901 + ], + [ + 6.4963342, + 51.096494301 + ], + [ + 6.4961052, + 51.096467601 + ], + [ + 6.4958761, + 51.096440801 + ], + [ + 6.4956447, + 51.096414601 + ], + [ + 6.4954285, + 51.096388401 + ], + [ + 6.4952065, + 51.096359901 + ], + [ + 6.4949846, + 51.096331301 + ], + [ + 6.4947522, + 51.096302301 + ], + [ + 6.4945198, + 51.096273301 + ], + [ + 6.4943007, + 51.096241901 + ], + [ + 6.4940854, + 51.096212901 + ], + [ + 6.4938704, + 51.096183201 + ], + [ + 6.4936477, + 51.096151101 + ], + [ + 6.4934308, + 51.096119001 + ], + [ + 6.4932138, + 51.096086901 + ], + [ + 6.4928028, + 51.096026301 + ], + [ + 6.4923974, + 51.095964501 + ], + [ + 6.4920353, + 51.095906901 + ], + [ + 6.4916903, + 51.095850401 + ], + [ + 6.4913473, + 51.095791601 + ], + [ + 6.4910042, + 51.095732801 + ], + [ + 6.4906402, + 51.095668301 + ], + [ + 6.4902609, + 51.095597901 + ], + [ + 6.489523, + 51.095459601 + ], + [ + 6.4883437, + 51.095219401 + ], + [ + 6.4879369, + 51.095133801 + ], + [ + 6.4875634, + 51.095052901 + ], + [ + 6.4871492, + 51.094960901 + ], + [ + 6.4867572, + 51.094868901 + ], + [ + 6.4862107, + 51.094743201 + ], + [ + 6.48569, + 51.094619901 + ], + [ + 6.4851679, + 51.094491501 + ], + [ + 6.484996442, + 51.094447953 + ] + ] + } + }, + { + "identifier": "2023-004531--vi-bs.2025-11-26_00-00-00-000.devi-zus.2024-07-08_00-00-00-000.f_002.de265", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.09434096734215,6.485065113906724,51.09661227872007,6.498726977937354", + "point": "51.09434096734215,6.485065113906724", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Holz (aus Richtung M\u00f6nchengladbach-Wanlo) nach A46", + "title": "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich", + "startTimestamp": "2025-11-26T00:00:00+01:00", + "coordinate": { + "lat": 51.09434096734215, + "long": 6.485065113906724 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "Von Auffahrt auf die A46: AK Holz (aus Richtung M\u00f6nchengladbach-Wanlo) nach A46: Heinsberg -> D\u00fcsseldorf, zwischen AK Holz und 2.7 km vor AS J\u00fcchen", + "", + "L\u00e4nge: 0.99 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.485065114, + 51.094340967 + ], + [ + 6.4852009, + 51.094375601 + ], + [ + 6.4854706, + 51.094443801 + ], + [ + 6.4857461, + 51.094510701 + ], + [ + 6.486272, + 51.094636501 + ], + [ + 6.4868135, + 51.094762901 + ], + [ + 6.487186, + 51.094847901 + ], + [ + 6.4875663, + 51.094931701 + ], + [ + 6.4879516, + 51.095014901 + ], + [ + 6.4883368, + 51.095096801 + ], + [ + 6.4886361, + 51.095159401 + ], + [ + 6.4889375, + 51.095219501 + ], + [ + 6.4895587, + 51.095343301 + ], + [ + 6.4901746, + 51.095459201 + ], + [ + 6.490483, + 51.095516201 + ], + [ + 6.4907973, + 51.095573201 + ], + [ + 6.4912491, + 51.095653401 + ], + [ + 6.4917185, + 51.095732901 + ], + [ + 6.4921599, + 51.095804601 + ], + [ + 6.4926062, + 51.095876901 + ], + [ + 6.4929669, + 51.095931501 + ], + [ + 6.4933355, + 51.095986001 + ], + [ + 6.4937021, + 51.096039101 + ], + [ + 6.4940765, + 51.096092101 + ], + [ + 6.4945023, + 51.096151401 + ], + [ + 6.4946988, + 51.096177401 + ], + [ + 6.4949089, + 51.096203501 + ], + [ + 6.4951187, + 51.096230801 + ], + [ + 6.4953363, + 51.096256901 + ], + [ + 6.4960372, + 51.096342001 + ], + [ + 6.496264, + 51.096366301 + ], + [ + 6.4965076, + 51.096393601 + ], + [ + 6.4967448, + 51.096419601 + ], + [ + 6.497008, + 51.096446901 + ], + [ + 6.4982383, + 51.096568701 + ], + [ + 6.4985961, + 51.096601301 + ], + [ + 6.498726978, + 51.096612279 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-04-13_20-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de35", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.38758774110381,7.707195653407493,51.38816268076517,7.707598171218238", + "point": "51.38758774110381,7.707195653407493", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Iserlohn-Seilersee (aus Richtung Iserlohn-Zentrum)", + "title": "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607", + "coordinate": { + "lat": 51.38758774110381, + "long": 7.707195653407493 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 20:00 bis 24:00 Uhr", + "", + "Auffahrt auf die A46: AS Iserlohn-Seilersee (aus Richtung Iserlohn-Zentrum)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.707195653, + 51.387587741 + ], + [ + 7.7071447, + 51.387649201 + ], + [ + 7.7071197, + 51.387718001 + ], + [ + 7.7071154, + 51.387786701 + ], + [ + 7.7071345, + 51.387861101 + ], + [ + 7.7071773, + 51.387930601 + ], + [ + 7.7072498, + 51.388003301 + ], + [ + 7.7073473, + 51.388064401 + ], + [ + 7.7074496, + 51.388108001 + ], + [ + 7.7075354, + 51.388143901 + ], + [ + 7.707598171, + 51.388162681 + ] + ] + } + }, + { + "identifier": "2023-004531--vi-bs.2025-11-26_00-00-00-000.devi-zus.2024-07-08_00-00-00-000.f_002.de277", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.0905376775275,6.477323568602145,51.094344341843836,6.485078344099752", + "point": "51.0905376775275,6.477323568602145", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Holz (aus Richtung Jackerath)", + "title": "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich", + "startTimestamp": "2025-11-26T00:00:00+01:00", + "coordinate": { + "lat": 51.0905376775275, + "long": 6.477323568602145 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "Abfahrt von der A44: AK Holz (aus Richtung Jackerath)", + "", + "L\u00e4nge: 0.71 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.477323569, + 51.090537678 + ], + [ + 6.4774099, + 51.090629901 + ], + [ + 6.4774656, + 51.090690101 + ], + [ + 6.4775237, + 51.090750301 + ], + [ + 6.4775878, + 51.090814201 + ], + [ + 6.4776519, + 51.090875201 + ], + [ + 6.47782, + 51.091029101 + ], + [ + 6.4779572, + 51.091151501 + ], + [ + 6.4780992, + 51.091271701 + ], + [ + 6.4782686, + 51.091410901 + ], + [ + 6.4783617, + 51.091485001 + ], + [ + 6.4784548, + 51.091556101 + ], + [ + 6.478603, + 51.091667001 + ], + [ + 6.4787512, + 51.091774901 + ], + [ + 6.4788902, + 51.091869301 + ], + [ + 6.4789921, + 51.091938701 + ], + [ + 6.4790939, + 51.092008101 + ], + [ + 6.4792893, + 51.092132601 + ], + [ + 6.4793912, + 51.092197201 + ], + [ + 6.4794908, + 51.092257201 + ], + [ + 6.4796922, + 51.092375001 + ], + [ + 6.4798598, + 51.092468501 + ], + [ + 6.480025, + 51.092559001 + ], + [ + 6.4801425, + 51.092621701 + ], + [ + 6.48026, + 51.092682801 + ], + [ + 6.4804097, + 51.092757901 + ], + [ + 6.4805689, + 51.092835901 + ], + [ + 6.4808885, + 51.092981901 + ], + [ + 6.481065, + 51.093060801 + ], + [ + 6.4812462, + 51.093138301 + ], + [ + 6.4813869, + 51.093195901 + ], + [ + 6.4815276, + 51.093252001 + ], + [ + 6.4817135, + 51.093325701 + ], + [ + 6.4818995, + 51.093394901 + ], + [ + 6.4821169, + 51.093474301 + ], + [ + 6.4823271, + 51.093547701 + ], + [ + 6.4826024, + 51.093640801 + ], + [ + 6.4827336, + 51.093684501 + ], + [ + 6.4828664, + 51.093727101 + ], + [ + 6.4832503, + 51.093845401 + ], + [ + 6.4836513, + 51.093962601 + ], + [ + 6.4839009, + 51.094033101 + ], + [ + 6.4841488, + 51.094101401 + ], + [ + 6.4844044, + 51.094170301 + ], + [ + 6.4846634, + 51.094238101 + ], + [ + 6.4849292, + 51.094306301 + ], + [ + 6.485078344, + 51.094344342 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de265", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.27951900243916,7.181116382424035,51.2804159202076,7.182137862617542", + "point": "51.27951900243916,7.181116382424035", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wuppertal-Barmen (aus Richtung Wuppertal-Elberfeld)", + "title": "Grundhafte Ern. W-Wichlinghausen", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.27951900243916, + "long": 7.181116382424035 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "Auffahrt auf die A46: AS Wuppertal-Barmen (aus Richtung Wuppertal-Elberfeld)", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.181116382, + 51.279519002 + ], + [ + 7.1810779, + 51.279552501 + ], + [ + 7.1810321, + 51.279610401 + ], + [ + 7.18101, + 51.279674501 + ], + [ + 7.1810059, + 51.279722601 + ], + [ + 7.1810124, + 51.279777301 + ], + [ + 7.1810409, + 51.279847801 + ], + [ + 7.1810902, + 51.279909401 + ], + [ + 7.1811615, + 51.279971201 + ], + [ + 7.1813395, + 51.280063501 + ], + [ + 7.1820588, + 51.280380201 + ], + [ + 7.182137863, + 51.28041592 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de261", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28975594408463,7.206965548599421,51.29380214998619,7.208689979247359", + "point": "51.28975594408463,7.206965548599421", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wuppertal-Wichlinghausen (aus Richtung Wuppertal-Barmen) nach A46", + "title": "Grundhafte Ern. W-Wichlinghausen", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.28975594408463, + "long": 7.206965548599421 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "Von Auffahrt auf die A46: AS Wuppertal-Wichlinghausen (aus Richtung Wuppertal-Barmen) nach A46: D\u00fcsseldorf -> Wuppertal, zwischen AS Wuppertal-Wichlinghausen und 0.6 km vor Sternenberg", + "", + "L\u00e4nge: 0.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.206965549, + 51.289755944 + ], + [ + 7.2069166, + 51.289885201 + ], + [ + 7.2067472, + 51.290228701 + ], + [ + 7.2066284, + 51.290559901 + ], + [ + 7.2066143, + 51.290698701 + ], + [ + 7.2066264, + 51.290840201 + ], + [ + 7.2066665, + 51.290955001 + ], + [ + 7.2067147, + 51.291047401 + ], + [ + 7.2067767, + 51.291148401 + ], + [ + 7.2070459, + 51.291634701 + ], + [ + 7.2072264, + 51.291857401 + ], + [ + 7.2074027, + 51.292091501 + ], + [ + 7.2076144, + 51.292394301 + ], + [ + 7.2076849, + 51.292493101 + ], + [ + 7.2079321, + 51.292846001 + ], + [ + 7.2081552, + 51.293158101 + ], + [ + 7.2083963, + 51.293468101 + ], + [ + 7.2085692, + 51.293673301 + ], + [ + 7.208689979, + 51.29380215 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-11-07_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de259", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.288712991173405,7.200940758086536,51.289261126786506,7.206855389955347", + "point": "51.288712991173405,7.200940758086536", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "Grundhafte Ern. W-Wichlinghausen", + "startTimestamp": "2025-11-07T20:00:00+01:00", + "coordinate": { + "lat": 51.288712991173405, + "long": 7.200940758086536 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.11.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "Von A46: D\u00fcsseldorf -> Wuppertal, zwischen 1.6 km hinter AS Wuppertal-Barmen und AS Wuppertal-Wichlinghausen nach Abfahrt von der A46: AS Wuppertal-Wichlinghausen (aus Richtung Wuppertal-Barmen)", + "", + "L\u00e4nge: 0.47 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.200940758, + 51.288712991 + ], + [ + 7.2011261, + 51.288753501 + ], + [ + 7.2019708, + 51.288944401 + ], + [ + 7.2024474, + 51.289061501 + ], + [ + 7.2028858, + 51.289178801 + ], + [ + 7.2031275, + 51.289250301 + ], + [ + 7.2033795, + 51.289327101 + ], + [ + 7.2036187, + 51.289404001 + ], + [ + 7.204021, + 51.289498601 + ], + [ + 7.2046278, + 51.289688101 + ], + [ + 7.2051032, + 51.289817401 + ], + [ + 7.2054057, + 51.289866001 + ], + [ + 7.2056715, + 51.289883201 + ], + [ + 7.2058991, + 51.289870001 + ], + [ + 7.2061795, + 51.289822101 + ], + [ + 7.2063606, + 51.289750301 + ], + [ + 7.206544, + 51.289648801 + ], + [ + 7.2066185, + 51.289576101 + ], + [ + 7.2066805, + 51.289525201 + ], + [ + 7.2067573, + 51.289427301 + ], + [ + 7.2068218, + 51.289333501 + ], + [ + 7.20685539, + 51.289261127 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de211", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.27951900243916,7.181116382424035,51.2804159202076,7.182137862617542", + "point": "51.27951900243916,7.181116382424035", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wuppertal-Barmen (aus Richtung Wuppertal-Elberfeld)", + "title": "Grundhafte Ern. W-Wichlinghausen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.27951900243916, + "long": 7.181116382424035 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "Auffahrt auf die A46: AS Wuppertal-Barmen (aus Richtung Wuppertal-Elberfeld)", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.181116382, + 51.279519002 + ], + [ + 7.1810779, + 51.279552501 + ], + [ + 7.1810321, + 51.279610401 + ], + [ + 7.18101, + 51.279674501 + ], + [ + 7.1810059, + 51.279722601 + ], + [ + 7.1810124, + 51.279777301 + ], + [ + 7.1810409, + 51.279847801 + ], + [ + 7.1810902, + 51.279909401 + ], + [ + 7.1811615, + 51.279971201 + ], + [ + 7.1813395, + 51.280063501 + ], + [ + 7.1820588, + 51.280380201 + ], + [ + 7.182137863, + 51.28041592 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de207", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28975594408463,7.206965548599421,51.29380214998619,7.208689979247359", + "point": "51.28975594408463,7.206965548599421", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wuppertal-Wichlinghausen (aus Richtung Wuppertal-Barmen) nach A46", + "title": "Grundhafte Ern. W-Wichlinghausen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.28975594408463, + "long": 7.206965548599421 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "Von Auffahrt auf die A46: AS Wuppertal-Wichlinghausen (aus Richtung Wuppertal-Barmen) nach A46: D\u00fcsseldorf -> Wuppertal, zwischen AS Wuppertal-Wichlinghausen und 0.6 km vor Sternenberg", + "", + "L\u00e4nge: 0.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.206965549, + 51.289755944 + ], + [ + 7.2069166, + 51.289885201 + ], + [ + 7.2067472, + 51.290228701 + ], + [ + 7.2066284, + 51.290559901 + ], + [ + 7.2066143, + 51.290698701 + ], + [ + 7.2066264, + 51.290840201 + ], + [ + 7.2066665, + 51.290955001 + ], + [ + 7.2067147, + 51.291047401 + ], + [ + 7.2067767, + 51.291148401 + ], + [ + 7.2070459, + 51.291634701 + ], + [ + 7.2072264, + 51.291857401 + ], + [ + 7.2074027, + 51.292091501 + ], + [ + 7.2076144, + 51.292394301 + ], + [ + 7.2076849, + 51.292493101 + ], + [ + 7.2079321, + 51.292846001 + ], + [ + 7.2081552, + 51.293158101 + ], + [ + 7.2083963, + 51.293468101 + ], + [ + 7.2085692, + 51.293673301 + ], + [ + 7.208689979, + 51.29380215 + ] + ] + } + }, + { + "identifier": "2023-001650--vi-bs.2025-09-01_20-00-00-000.devi-zus.2024-06-05_09-00-00-000.f_110.de205", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.288712991173405,7.200940758086536,51.289261126786506,7.206855389955347", + "point": "51.288712991173405,7.200940758086536", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Wuppertal", + "title": "Grundhafte Ern. W-Wichlinghausen", + "startTimestamp": "2025-09-01T20:00:00+02:00", + "coordinate": { + "lat": 51.288712991173405, + "long": 7.200940758086536 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.09.25 um 20:00 Uhr", + "Ende: 03.09.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.09.27)", + "", + "Von A46: D\u00fcsseldorf -> Wuppertal, zwischen 1.6 km hinter AS Wuppertal-Barmen und AS Wuppertal-Wichlinghausen nach Abfahrt von der A46: AS Wuppertal-Wichlinghausen (aus Richtung Wuppertal-Barmen)", + "", + "L\u00e4nge: 0.47 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Grundhafte Ern. W-Wichlinghausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.200940758, + 51.288712991 + ], + [ + 7.2011261, + 51.288753501 + ], + [ + 7.2019708, + 51.288944401 + ], + [ + 7.2024474, + 51.289061501 + ], + [ + 7.2028858, + 51.289178801 + ], + [ + 7.2031275, + 51.289250301 + ], + [ + 7.2033795, + 51.289327101 + ], + [ + 7.2036187, + 51.289404001 + ], + [ + 7.204021, + 51.289498601 + ], + [ + 7.2046278, + 51.289688101 + ], + [ + 7.2051032, + 51.289817401 + ], + [ + 7.2054057, + 51.289866001 + ], + [ + 7.2056715, + 51.289883201 + ], + [ + 7.2058991, + 51.289870001 + ], + [ + 7.2061795, + 51.289822101 + ], + [ + 7.2063606, + 51.289750301 + ], + [ + 7.206544, + 51.289648801 + ], + [ + 7.2066185, + 51.289576101 + ], + [ + 7.2066805, + 51.289525201 + ], + [ + 7.2067573, + 51.289427301 + ], + [ + 7.2068218, + 51.289333501 + ], + [ + 7.20685539, + 51.289261127 + ] + ] + } + }, + { + "identifier": "2024-055255--vi-bs.2026-03-16_09-00-00-000.devi-zus.2024-11-15_09-00-00-000.f_004.de259", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.22808120734949,7.087561581654776,51.22878397978366,7.088874252521911", + "point": "51.22808120734949,7.087561581654776", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wuppertal-Cronenberg (aus Richtung Haan-Ost)", + "title": "Neubau BW AS W.-Cronenberg (L418)", + "startTimestamp": "2026-03-16T09:00:00+01:00", + "coordinate": { + "lat": 51.22808120734949, + "long": 7.087561581654776 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 09:00 Uhr", + "Ende: 08.05.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.11.26)", + "", + "Abfahrt von der A46: AS Wuppertal-Cronenberg (aus Richtung Haan-Ost)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Neubau BW AS W.-Cronenberg (L418)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.087561582, + 51.228081207 + ], + [ + 7.0876316, + 51.228137701 + ], + [ + 7.0879608, + 51.228379301 + ], + [ + 7.0882478, + 51.228543801 + ], + [ + 7.088369, + 51.228603701 + ], + [ + 7.0884983, + 51.228659901 + ], + [ + 7.0886486, + 51.228716401 + ], + [ + 7.0888051, + 51.228765901 + ], + [ + 7.088874253, + 51.22878398 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-02-18_19-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.38894291902183,7.710579145296877,51.388580862322506,7.709962220210222", + "point": "51.38894291902183,7.710579145296877", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Iserlohn-Seilersee (aus Richtung Hemer)", + "title": "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607", + "startTimestamp": "2026-02-18T19:00:00+01:00", + "coordinate": { + "lat": 51.38894291902183, + "long": 7.710579145296877 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "Auffahrt auf die A46: AS Iserlohn-Seilersee (aus Richtung Hemer)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.710579145, + 51.388942919 + ], + [ + 7.7105188, + 51.388832301 + ], + [ + 7.7104102, + 51.388738601 + ], + [ + 7.7102573, + 51.388659901 + ], + [ + 7.7099918, + 51.388588701 + ], + [ + 7.70996222, + 51.388580862 + ] + ] + } + }, + { + "identifier": "2023-004607--vi-bs.2026-02-18_19-00-00-000.devi-zus.2024-09-11_19-00-00-000_002.f.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.38773878835573,7.7051485771879555,51.38763878025409,7.706145198926895", + "point": "51.38773878835573,7.7051485771879555", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Iserlohn-Seilersee (aus Richtung Iserlohn-Zentrum)", + "title": "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607", + "startTimestamp": "2026-02-18T19:00:00+01:00", + "coordinate": { + "lat": 51.38773878835573, + "long": 7.7051485771879555 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.02.26 um 19:00 Uhr", + "Ende: 30.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.27)", + "", + "Abfahrt von der A46: AS Iserlohn-Seilersee (aus Richtung Iserlohn-Zentrum)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A46 - Verst\u00e4rkung u. Instandsetzung BW Baarstra\u00dfe - AlD 4607" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.705148577, + 51.387738788 + ], + [ + 7.7052301, + 51.387743901 + ], + [ + 7.7054018, + 51.387744701 + ], + [ + 7.7055707, + 51.387735501 + ], + [ + 7.7057853, + 51.387714601 + ], + [ + 7.7059892, + 51.387676101 + ], + [ + 7.706145199, + 51.38763878 + ] + ] + } + }, + { + "identifier": "2024-059539--vi-bs.2024-12-12_05-00-00-000.devi-zus.2024-12-11_22-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.31412052639266,7.26539298256429,51.314191174496344,7.267053381255307", + "point": "51.31412052639266,7.26539298256429", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A46 - Bauwerksinstandsetzung im AK Wuppertal - AlD 59539", + "startTimestamp": "2024-12-12T05:00:00+01:00", + "coordinate": { + "lat": 51.31412052639266, + "long": 7.26539298256429 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.12.24 um 05:00 Uhr", + "Ende: 05.09.26 um 00:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 05.09.26)", + "", + "Auffahrt auf die A43 N", + "", + "L\u00e4nge: 0.12 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A46 - Bauwerksinstandsetzung im AK Wuppertal - AlD 59539" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.265392983, + 51.314120526 + ], + [ + 7.265731, + 51.314150401 + ], + [ + 7.2659499, + 51.314168301 + ], + [ + 7.2662027, + 51.314184401 + ], + [ + 7.2664463, + 51.314193701 + ], + [ + 7.2666144, + 51.314194601 + ], + [ + 7.2667973, + 51.314194401 + ], + [ + 7.267053381, + 51.314191174 + ] + ] + } + }, + { + "identifier": "2024-036115--vi-bs.2025-05-16_22-00-00-000.devi-zus.2024-08-24_05-00-00-000.f_002.de67", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.19562940073636,6.943134876356114,51.1984124003526,6.937567405573585", + "point": "51.19562940073636,6.943134876356114", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Hilden (aus Richtung Ohligser Heide)", + "title": "BW In den Birken", + "startTimestamp": "2025-05-16T22:00:00+02:00", + "coordinate": { + "lat": 51.19562940073636, + "long": 6.943134876356114 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.05.25 um 22:00 Uhr", + "Ende: 31.12.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Auffahrt auf die A3: AK Hilden (aus Richtung Ohligser Heide)", + "", + "L\u00e4nge: 0.53 km | Maximale Durchfahrtsbreite: 7 m", + "", + "BW In den Birken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.943134876, + 51.195629401 + ], + [ + 6.9427977, + 51.195623101 + ], + [ + 6.9425254, + 51.195629101 + ], + [ + 6.9422663, + 51.195645601 + ], + [ + 6.9419824, + 51.195683401 + ], + [ + 6.9417058, + 51.195732501 + ], + [ + 6.9413761, + 51.195811201 + ], + [ + 6.9410779, + 51.195900101 + ], + [ + 6.9407934, + 51.195987701 + ], + [ + 6.9404935, + 51.196093001 + ], + [ + 6.9401691, + 51.196209701 + ], + [ + 6.9399067, + 51.196326301 + ], + [ + 6.9396611, + 51.196449401 + ], + [ + 6.9394013, + 51.196576601 + ], + [ + 6.9391402, + 51.196714301 + ], + [ + 6.9388726, + 51.196860901 + ], + [ + 6.9386361, + 51.197017201 + ], + [ + 6.9384422, + 51.197178401 + ], + [ + 6.9382509, + 51.197365501 + ], + [ + 6.9380971, + 51.197550201 + ], + [ + 6.937964, + 51.197747001 + ], + [ + 6.937836, + 51.197944701 + ], + [ + 6.9376537, + 51.198258901 + ], + [ + 6.937567406, + 51.1984124 + ] + ] + } + }, + { + "identifier": "2026-017653--vi-bs.2026-04-14_19-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.1626203456297,6.766713315620681,51.16292181325676,6.769975945853512", + "point": "51.1626203456297,6.766713315620681", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heinsberg -> D\u00fcsseldorf", + "title": "A46 von Neuss-Uedesheim (AS) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 51.1626203456297, + "long": 6.766713315620681 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:00 bis zum 15.04.26 05:00 Uhr.", + "", + "Von A46: Heinsberg -> D\u00fcsseldorf, zwischen 1.4 km hinter AD Neuss-S\u00fcd und Fleher Br\u00fccke nach Abfahrt von der A46: AS Neuss-Uedesheim (aus Richtung Neuss-S\u00fcd)", + "", + "L\u00e4nge: 0.47 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 von Neuss-Uedesheim (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.766713316, + 51.162620346 + ], + [ + 6.7680129, + 51.163306701 + ], + [ + 6.7685589, + 51.163596001 + ], + [ + 6.7689781, + 51.163822101 + ], + [ + 6.7696192, + 51.164062501 + ], + [ + 6.7697517, + 51.164099701 + ], + [ + 6.7698517, + 51.164118301 + ], + [ + 6.7699602, + 51.164127601 + ], + [ + 6.7700682, + 51.164125301 + ], + [ + 6.7701757, + 51.164115101 + ], + [ + 6.7702797, + 51.164094801 + ], + [ + 6.7703772, + 51.164063901 + ], + [ + 6.7704663, + 51.164027501 + ], + [ + 6.7705491, + 51.163981401 + ], + [ + 6.7706125, + 51.163933601 + ], + [ + 6.7706691, + 51.163876901 + ], + [ + 6.7707117, + 51.163818901 + ], + [ + 6.7707409, + 51.163756001 + ], + [ + 6.7707588, + 51.163688801 + ], + [ + 6.7707588, + 51.163620801 + ], + [ + 6.7707448, + 51.163550601 + ], + [ + 6.7707126, + 51.163478101 + ], + [ + 6.770664, + 51.163418001 + ], + [ + 6.7705981, + 51.163353301 + ], + [ + 6.7704783, + 51.163263201 + ], + [ + 6.769975946, + 51.162921813 + ] + ] + } + }, + { + "identifier": "2024-036115--vi-bs.2025-05-16_22-00-00-000.devi-zus.2024-08-24_05-00-00-000.f_002.de69", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.19811471624926,6.936980637310671,51.194283835950195,6.935246049449727", + "point": "51.19811471624926,6.936980637310671", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Hilden (aus Richtung Hilden)", + "title": "BW In den Birken", + "startTimestamp": "2025-05-16T22:00:00+02:00", + "coordinate": { + "lat": 51.19811471624926, + "long": 6.936980637310671 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.05.25 um 22:00 Uhr", + "Ende: 31.12.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Auffahrt auf die A46: AK Hilden (aus Richtung Hilden)", + "", + "L\u00e4nge: 0.47 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "BW In den Birken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.936980637, + 51.198114716 + ], + [ + 6.9370131, + 51.198022201 + ], + [ + 6.9370842, + 51.197815101 + ], + [ + 6.9371522, + 51.197592501 + ], + [ + 6.9371997, + 51.197380701 + ], + [ + 6.937244, + 51.197170901 + ], + [ + 6.9372645, + 51.196948901 + ], + [ + 6.9372667, + 51.196738401 + ], + [ + 6.9372451, + 51.196526601 + ], + [ + 6.9371997, + 51.196301901 + ], + [ + 6.9371338, + 51.196095501 + ], + [ + 6.937042, + 51.195886401 + ], + [ + 6.936934, + 51.195688701 + ], + [ + 6.9367958, + 51.195479601 + ], + [ + 6.93665, + 51.195299601 + ], + [ + 6.9364707, + 51.195110801 + ], + [ + 6.936272, + 51.194924601 + ], + [ + 6.9360441, + 51.194748701 + ], + [ + 6.9358325, + 51.194597801 + ], + [ + 6.9355679, + 51.194444101 + ], + [ + 6.9352968, + 51.194306701 + ], + [ + 6.935246049, + 51.194283836 + ] + ] + } + }, + { + "identifier": "2023-004531--vi-bs.2025-11-26_00-00-00-000.devi-zus.2024-07-08_00-00-00-000.f_002.de275", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.10095716332274,6.535461365504277,51.09895616805304,6.5286834738869", + "point": "51.10095716332274,6.535461365504277", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS J\u00fcchen (aus Richtung Grevenbroich) nach A46", + "title": "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich", + "startTimestamp": "2025-11-26T00:00:00+01:00", + "coordinate": { + "lat": 51.10095716332274, + "long": 6.535461365504277 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "Von Auffahrt auf die A46: AS J\u00fcchen (aus Richtung Grevenbroich) nach A46: D\u00fcsseldorf -> Heinsberg, zwischen AS J\u00fcchen und 3.7 km vor AK Holz", + "", + "L\u00e4nge: 0.53 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.535461366, + 51.100957163 + ], + [ + 6.5354576, + 51.100957601 + ], + [ + 6.535427, + 51.100959001 + ], + [ + 6.5353988, + 51.100958001 + ], + [ + 6.5353726, + 51.100955501 + ], + [ + 6.5353501, + 51.100952101 + ], + [ + 6.5353276, + 51.100946101 + ], + [ + 6.5353039, + 51.100939201 + ], + [ + 6.5352791, + 51.100931101 + ], + [ + 6.5350543, + 51.100845201 + ], + [ + 6.5349299, + 51.100789301 + ], + [ + 6.5344445, + 51.100572801 + ], + [ + 6.5338504, + 51.100310401 + ], + [ + 6.5337114, + 51.100253201 + ], + [ + 6.5335708, + 51.100196001 + ], + [ + 6.5334318, + 51.100144701 + ], + [ + 6.5332912, + 51.100092301 + ], + [ + 6.5331907, + 51.100054801 + ], + [ + 6.5330902, + 51.100019501 + ], + [ + 6.5329914, + 51.099986801 + ], + [ + 6.5328943, + 51.099956301 + ], + [ + 6.5327796, + 51.099920701 + ], + [ + 6.5326693, + 51.099887301 + ], + [ + 6.5325512, + 51.099854401 + ], + [ + 6.5324357, + 51.099823701 + ], + [ + 6.532163, + 51.099752701 + ], + [ + 6.5319017, + 51.099684201 + ], + [ + 6.5311741, + 51.099486501 + ], + [ + 6.5303403, + 51.099307701 + ], + [ + 6.529301, + 51.099087801 + ], + [ + 6.528683474, + 51.098956168 + ] + ] + } + }, + { + "identifier": "2023-004531--vi-bs.2025-11-26_00-00-00-000.devi-zus.2024-07-08_00-00-00-000.f_002.de273", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.1071886602749,6.564292618538911,51.10488955257711,6.55774423149759", + "point": "51.1071886602749,6.564292618538911", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Grevenbroich (aus Richtung Vierwinden) nach A46", + "title": "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich", + "startTimestamp": "2025-11-26T00:00:00+01:00", + "coordinate": { + "lat": 51.1071886602749, + "long": 6.564292618538911 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "Von Auffahrt auf die A46: AS Grevenbroich (aus Richtung Vierwinden) nach A46: D\u00fcsseldorf -> Heinsberg, zwischen AS Grevenbroich und 1.6 km vor AS J\u00fcchen", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.564292619, + 51.10718866 + ], + [ + 6.5638812, + 51.107135301 + ], + [ + 6.5636118, + 51.107096601 + ], + [ + 6.5634907, + 51.107075801 + ], + [ + 6.5633764, + 51.107050701 + ], + [ + 6.5633115, + 51.107032601 + ], + [ + 6.5632444, + 51.107008801 + ], + [ + 6.5631829, + 51.106983601 + ], + [ + 6.5631192, + 51.106954001 + ], + [ + 6.5630616, + 51.106922301 + ], + [ + 6.563013, + 51.106891901 + ], + [ + 6.5629657, + 51.106858001 + ], + [ + 6.562916, + 51.106818401 + ], + [ + 6.5628767, + 51.106784501 + ], + [ + 6.5628374, + 51.106745001 + ], + [ + 6.562805, + 51.106706201 + ], + [ + 6.5627747, + 51.106663101 + ], + [ + 6.5626661, + 51.106473301 + ], + [ + 6.5626095, + 51.106374901 + ], + [ + 6.5625824, + 51.106329201 + ], + [ + 6.562553, + 51.106283601 + ], + [ + 6.5625223, + 51.106241401 + ], + [ + 6.5624917, + 51.106205001 + ], + [ + 6.562426, + 51.106136301 + ], + [ + 6.5623863, + 51.106095801 + ], + [ + 6.5623465, + 51.106060901 + ], + [ + 6.5622653, + 51.105995401 + ], + [ + 6.5621848, + 51.105937501 + ], + [ + 6.562108, + 51.105884401 + ], + [ + 6.5620181, + 51.105832401 + ], + [ + 6.5619282, + 51.105787401 + ], + [ + 6.5618474, + 51.105747801 + ], + [ + 6.5617441, + 51.105705901 + ], + [ + 6.5616514, + 51.105674501 + ], + [ + 6.5615451, + 51.105643101 + ], + [ + 6.561089, + 51.105543301 + ], + [ + 6.5610152, + 51.105524201 + ], + [ + 6.5609448, + 51.105502901 + ], + [ + 6.5607676, + 51.105438201 + ], + [ + 6.5599766, + 51.105294401 + ], + [ + 6.559182, + 51.105148701 + ], + [ + 6.5581873, + 51.104969201 + ], + [ + 6.557744231, + 51.104889553 + ] + ] + } + }, + { + "identifier": "2023-004531--vi-bs.2025-11-26_00-00-00-000.devi-zus.2024-07-08_00-00-00-000.f_002.de271", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.10564243789141,6.565248903626094,51.107635578637996,6.572629054374719", + "point": "51.10564243789141,6.565248903626094", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Grevenbroich (aus Richtung J\u00fcchen) nach A46", + "title": "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich", + "startTimestamp": "2025-11-26T00:00:00+01:00", + "coordinate": { + "lat": 51.10564243789141, + "long": 6.565248903626094 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "Von Auffahrt auf die A46: AS Grevenbroich (aus Richtung J\u00fcchen) nach A46: Heinsberg -> D\u00fcsseldorf, zwischen AS Grevenbroich und 3.2 km vor Vierwinden", + "", + "L\u00e4nge: 0.57 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.565248904, + 51.105642438 + ], + [ + 6.5653148, + 51.105629601 + ], + [ + 6.5653483, + 51.105625701 + ], + [ + 6.5653832, + 51.105622601 + ], + [ + 6.5654182, + 51.105621101 + ], + [ + 6.5654652, + 51.105620701 + ], + [ + 6.5655146, + 51.105622301 + ], + [ + 6.5655733, + 51.105626201 + ], + [ + 6.5656375, + 51.105634201 + ], + [ + 6.5657082, + 51.105649101 + ], + [ + 6.5661755, + 51.105824901 + ], + [ + 6.5672946, + 51.106252701 + ], + [ + 6.5675621, + 51.106349001 + ], + [ + 6.5678193, + 51.106438901 + ], + [ + 6.5681164, + 51.106534501 + ], + [ + 6.5683517, + 51.106601401 + ], + [ + 6.5685763, + 51.106664701 + ], + [ + 6.568801, + 51.106718301 + ], + [ + 6.5691148, + 51.106786601 + ], + [ + 6.5692916, + 51.106827901 + ], + [ + 6.5694633, + 51.106872501 + ], + [ + 6.5697785, + 51.106971201 + ], + [ + 6.5704768, + 51.107115601 + ], + [ + 6.5711163, + 51.107257601 + ], + [ + 6.5719954, + 51.107470001 + ], + [ + 6.5726213, + 51.107633401 + ], + [ + 6.572629054, + 51.107635579 + ] + ] + } + }, + { + "identifier": "2023-004531--vi-bs.2025-11-26_00-00-00-000.devi-zus.2024-07-08_00-00-00-000.f_002.de269", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.10005224169985,6.536946719066465,51.10200740133377,6.543561890953229", + "point": "51.10005224169985,6.536946719066465", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS J\u00fcchen (aus Richtung Holz) nach A46", + "title": "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich", + "startTimestamp": "2025-11-26T00:00:00+01:00", + "coordinate": { + "lat": 51.10005224169985, + "long": 6.536946719066465 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.09.26)", + "", + "Von Auffahrt auf die A46: AS J\u00fcchen (aus Richtung Holz) nach A46: Heinsberg -> D\u00fcsseldorf, zwischen AS J\u00fcchen und 1.6 km vor AS Grevenbroich", + "", + "L\u00e4nge: 0.52 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A46 und 44 Grundhafte Erneuerung AK Holz - AS Grevenbroich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.536946719, + 51.100052242 + ], + [ + 6.5369782, + 51.100053501 + ], + [ + 6.5370092, + 51.100056201 + ], + [ + 6.5370402, + 51.100062301 + ], + [ + 6.5370638, + 51.100068801 + ], + [ + 6.5370874, + 51.100077001 + ], + [ + 6.5374218, + 51.100221701 + ], + [ + 6.5377424, + 51.100376101 + ], + [ + 6.5379038, + 51.100451901 + ], + [ + 6.5380652, + 51.100526201 + ], + [ + 6.5382387, + 51.100602601 + ], + [ + 6.5384144, + 51.100677601 + ], + [ + 6.5385879, + 51.100748901 + ], + [ + 6.5387613, + 51.100815901 + ], + [ + 6.5388772, + 51.100858301 + ], + [ + 6.5389897, + 51.100898601 + ], + [ + 6.5391033, + 51.100936701 + ], + [ + 6.539225, + 51.100974001 + ], + [ + 6.5393502, + 51.101011901 + ], + [ + 6.5394731, + 51.101046901 + ], + [ + 6.5397165, + 51.101115401 + ], + [ + 6.5398475, + 51.101150701 + ], + [ + 6.5399739, + 51.101183001 + ], + [ + 6.5401049, + 51.101214601 + ], + [ + 6.5402359, + 51.101244701 + ], + [ + 6.540767, + 51.101358001 + ], + [ + 6.5408412, + 51.101376701 + ], + [ + 6.5408763, + 51.101387801 + ], + [ + 6.5409095, + 51.101400001 + ], + [ + 6.5412733, + 51.101518601 + ], + [ + 6.5421516, + 51.101708601 + ], + [ + 6.5431691, + 51.101923201 + ], + [ + 6.543561891, + 51.102007401 + ] + ] + } + } + ] + }, + "A48": { + "roadworks": [ + { + "identifier": "2026-010934--vi-fbm.2026-04-01_00-00-00-000.devi-zus.2026-04-01_00-00-00-000_007.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.198194056532714,6.951245898158425,50.19826901678932,6.951500259074866", + "point": "50.198194056532714,6.951245898158425", + "startLcPosition": "0", + "impact": { + "lower": "Ulmen", + "upper": "Vulkaneifel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Vulkaneifel -> Koblenz", + "title": "A48 | Vulkaneifel - Ulmen", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 50.198194056532714, + "long": 6.951245898158425 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 22.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.08.26)", + "", + "A48: Dreieck Vulkaneifel -> Koblenz, zwischen 3.9 km hinter AD Vulkaneifel und 2.0 km vor AS Ulmen", + "", + "L\u00e4nge: 0.02 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Montage und Demontage vom Wechselschildern f\u00fcr Veranstaltungen am N\u00fcrburgring" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.951245898, + 50.198194057 + ], + [ + 6.9512697, + 50.198200901 + ], + [ + 6.9514974, + 50.198268201 + ], + [ + 6.951500259, + 50.198269017 + ] + ] + } + }, + { + "identifier": "2026-009200--vi-bs.2026-02-27_00-00-00-000_003.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.238291942193605,7.0749260659799855,50.238308057351375,7.075754679180898", + "point": "50.238291942193605,7.0749260659799855", + "startLcPosition": "1", + "impact": { + "lower": "Laubach", + "upper": "Ulmen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Vulkaneifel -> Koblenz", + "title": "A48 | Ulmen - Laubach", + "startTimestamp": "2026-02-27T00:00:00+01:00", + "coordinate": { + "lat": 50.238291942193605, + "long": 7.0749260659799855 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.02.26 um 00:00 Uhr", + "Ende: 31.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.07.26)", + "", + "A48: Dreieck Vulkaneifel -> Koblenz, zwischen 8.7 km hinter AS Ulmen und 0.3 km vor AS Laubach", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Hinweis auf Gefahrenstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.074926066, + 50.238291942 + ], + [ + 7.0749975, + 50.238295301 + ], + [ + 7.0752991, + 50.238304801 + ], + [ + 7.0754022, + 50.238305501 + ], + [ + 7.0756495, + 50.238308301 + ], + [ + 7.075754679, + 50.238308057 + ] + ] + } + }, + { + "identifier": "2026-010934--vi-fbm.2026-04-01_00-00-00-000.devi-zus.2026-04-01_00-00-00-000_007.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.221436270179844,6.997580147013377,50.22127592076091,6.997453268675474", + "point": "50.221436270179844,6.997580147013377", + "startLcPosition": "2", + "impact": { + "lower": "Ulmen", + "upper": "Laubach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> Dreieck Vulkaneifel", + "title": "A48 | Laubach - Ulmen", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 50.221436270179844, + "long": 6.997580147013377 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 22.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.08.26)", + "", + "A48: Koblenz -> Dreieck Vulkaneifel, zwischen 6.7 km hinter AS Laubach und 2.4 km vor AS Ulmen", + "", + "L\u00e4nge: 0.02 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Montage und Demontage vom Wechselschildern f\u00fcr Veranstaltungen am N\u00fcrburgring" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.997580147, + 50.22143627 + ], + [ + 6.997453269, + 50.221275921 + ] + ] + } + }, + { + "identifier": "2026-017730--vi-bs.2026-04-10_08-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.21811716725919,7.128281519850519,50.22563594627943,7.151824205513587", + "point": "50.21811716725919,7.128281519850519", + "startLcPosition": "4", + "impact": { + "lower": "Herberkaul", + "upper": "Martental", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Vulkaneifel -> Koblenz", + "title": "A48 | Martental - Herberkaul", + "coordinate": { + "lat": 50.21811716725919, + "long": 7.128281519850519 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 16:00 Uhr", + "", + "A48: Dreieck Vulkaneifel -> Koblenz, zwischen 0.7 km hinter Martental und 2.6 km vor Herberkaul", + "", + "L\u00e4nge: 1.89 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A48 von Martental (Parkplatz) nach Herberkaul (Parkplatz) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.12828152, + 50.218117167 + ], + [ + 7.1284667, + 50.218186501 + ], + [ + 7.1291193, + 50.218430301 + ], + [ + 7.1306218, + 50.218996301 + ], + [ + 7.1315063, + 50.219328101 + ], + [ + 7.132377, + 50.219655201 + ], + [ + 7.1332419, + 50.219980801 + ], + [ + 7.1342363, + 50.220352001 + ], + [ + 7.1343293, + 50.220386701 + ], + [ + 7.1354143, + 50.220791501 + ], + [ + 7.1373603, + 50.221522801 + ], + [ + 7.1391095, + 50.222179401 + ], + [ + 7.1402831, + 50.222620301 + ], + [ + 7.1408472, + 50.222830601 + ], + [ + 7.1417121, + 50.223155901 + ], + [ + 7.1425758, + 50.223481101 + ], + [ + 7.1434478, + 50.223808501 + ], + [ + 7.1439426, + 50.223991901 + ], + [ + 7.1445371, + 50.224212501 + ], + [ + 7.1449815, + 50.224371201 + ], + [ + 7.1454288, + 50.224517501 + ], + [ + 7.1456543, + 50.224586901 + ], + [ + 7.145887, + 50.224656701 + ], + [ + 7.1461158, + 50.224723201 + ], + [ + 7.1465745, + 50.224849101 + ], + [ + 7.1470404, + 50.224966101 + ], + [ + 7.1475224, + 50.225074101 + ], + [ + 7.1477618, + 50.225124601 + ], + [ + 7.1480002, + 50.225173501 + ], + [ + 7.1482322, + 50.225217701 + ], + [ + 7.1484568, + 50.225258301 + ], + [ + 7.1486915, + 50.225298601 + ], + [ + 7.1489158, + 50.225334601 + ], + [ + 7.1491504, + 50.225369601 + ], + [ + 7.1493815, + 50.225402401 + ], + [ + 7.1496172, + 50.225434301 + ], + [ + 7.149846, + 50.225463101 + ], + [ + 7.150084, + 50.225490401 + ], + [ + 7.1503176, + 50.225515901 + ], + [ + 7.1505533, + 50.225538601 + ], + [ + 7.1507914, + 50.225560501 + ], + [ + 7.151039, + 50.225581601 + ], + [ + 7.1512876, + 50.225600801 + ], + [ + 7.1515356, + 50.225617501 + ], + [ + 7.1517797, + 50.225633201 + ], + [ + 7.151824206, + 50.225635946 + ] + ] + } + }, + { + "identifier": "2026-017416--vi-bs.2026-04-09_12-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.25495392137643,7.21829330331441,50.258318694178485,7.220260334753606", + "point": "50.25495392137643,7.21829330331441", + "startLcPosition": "7", + "impact": { + "lower": "Elztal-S\u00fcd", + "upper": "Kaifenheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Vulkaneifel -> Koblenz", + "title": "A48 | Kaifenheim - Elztal-S\u00fcd", + "coordinate": { + "lat": 50.25495392137643, + "long": 7.21829330331441 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 12:00 bis 16:00 Uhr", + "", + "A48: Dreieck Vulkaneifel -> Koblenz, zwischen 1.2 km hinter AS Kaifenheim und 0.7 km vor Elztal-S\u00fcd", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A48 von Kaifenheim (AS) nach Elztal-S\u00fcd Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.218293303, + 50.254953921 + ], + [ + 7.2183991, + 50.255160001 + ], + [ + 7.2185604, + 50.255461401 + ], + [ + 7.2186438, + 50.255611901 + ], + [ + 7.2188129, + 50.255913401 + ], + [ + 7.2189829, + 50.256210601 + ], + [ + 7.2191599, + 50.256509901 + ], + [ + 7.2194293, + 50.256956501 + ], + [ + 7.2196043, + 50.257244401 + ], + [ + 7.219701, + 50.257402601 + ], + [ + 7.2198889, + 50.257710301 + ], + [ + 7.2200741, + 50.258011001 + ], + [ + 7.220260335, + 50.258318694 + ] + ] + } + }, + { + "identifier": "2026-017645--vi-bs.2026-04-10_08-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.356628107410565,7.480661152761273,50.31681464642952,7.309415084251262", + "point": "50.356628107410565,7.480661152761273", + "startLcPosition": "13", + "impact": { + "lower": "Polsch", + "upper": "Koblenz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Koblenz -> Dreieck Vulkaneifel", + "title": "A48 | Koblenz - Polsch", + "coordinate": { + "lat": 50.356628107410565, + "long": 7.480661152761273 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A48: Koblenz -> Dreieck Vulkaneifel, zwischen 0.3 km hinter AK Koblenz und 0.4 km vor AS Polsch", + "", + "L\u00e4nge: 14.01 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A48 von Koblenz (AK) nach Polsch (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.480661153, + 50.356628107 + ], + [ + 7.4791017, + 50.355576701 + ], + [ + 7.4785819, + 50.355226201 + ], + [ + 7.4782877, + 50.355029401 + ], + [ + 7.4778853, + 50.354754801 + ], + [ + 7.4760575, + 50.353532401 + ], + [ + 7.475706, + 50.353293501 + ], + [ + 7.4747296, + 50.352629801 + ], + [ + 7.4722777, + 50.350976401 + ], + [ + 7.4698258, + 50.349323001 + ], + [ + 7.4667809, + 50.347271001 + ], + [ + 7.4655456, + 50.346434501 + ], + [ + 7.4646583, + 50.345834101 + ], + [ + 7.4638086, + 50.345262901 + ], + [ + 7.4632923, + 50.344901901 + ], + [ + 7.4624456, + 50.344346001 + ], + [ + 7.4618541, + 50.343952301 + ], + [ + 7.4614086, + 50.343675101 + ], + [ + 7.4609366, + 50.343391401 + ], + [ + 7.4605723, + 50.343181201 + ], + [ + 7.4602409, + 50.343013801 + ], + [ + 7.4597684, + 50.342775101 + ], + [ + 7.4591447, + 50.342506201 + ], + [ + 7.4585343, + 50.342258801 + ], + [ + 7.4580394, + 50.342085301 + ], + [ + 7.4571919, + 50.341824301 + ], + [ + 7.4565201, + 50.341638901 + ], + [ + 7.4555173, + 50.341426201 + ], + [ + 7.4546271, + 50.341263901 + ], + [ + 7.4530689, + 50.341059201 + ], + [ + 7.4523504, + 50.340989801 + ], + [ + 7.4516762, + 50.340949301 + ], + [ + 7.4510096, + 50.340918501 + ], + [ + 7.450427, + 50.340903401 + ], + [ + 7.4498924, + 50.340894301 + ], + [ + 7.449002, + 50.340895301 + ], + [ + 7.4483777, + 50.340906901 + ], + [ + 7.4478788, + 50.340923301 + ], + [ + 7.4474102, + 50.340941701 + ], + [ + 7.4462428, + 50.340998701 + ], + [ + 7.444625, + 50.341091601 + ], + [ + 7.4411334, + 50.341303301 + ], + [ + 7.4385409, + 50.341456601 + ], + [ + 7.4324873, + 50.341815801 + ], + [ + 7.4319243, + 50.341842901 + ], + [ + 7.431379, + 50.341861101 + ], + [ + 7.4307127, + 50.341875901 + ], + [ + 7.4300398, + 50.341869501 + ], + [ + 7.4294568, + 50.341852501 + ], + [ + 7.4288143, + 50.341818001 + ], + [ + 7.4281986, + 50.341772001 + ], + [ + 7.4276339, + 50.341711201 + ], + [ + 7.4270759, + 50.341630201 + ], + [ + 7.4265548, + 50.341542901 + ], + [ + 7.4260229, + 50.341438001 + ], + [ + 7.4254815, + 50.341319001 + ], + [ + 7.4249677, + 50.341194101 + ], + [ + 7.4244539, + 50.341048001 + ], + [ + 7.4241342, + 50.340954901 + ], + [ + 7.4236768, + 50.340803001 + ], + [ + 7.4230993, + 50.340598001 + ], + [ + 7.4226398, + 50.340417501 + ], + [ + 7.4221534, + 50.340205201 + ], + [ + 7.4218023, + 50.340038301 + ], + [ + 7.421418, + 50.339846601 + ], + [ + 7.4210738, + 50.339660701 + ], + [ + 7.4207487, + 50.339475601 + ], + [ + 7.4202577, + 50.339173901 + ], + [ + 7.4199114, + 50.338939001 + ], + [ + 7.41954, + 50.338666201 + ], + [ + 7.4191279, + 50.338350201 + ], + [ + 7.4185642, + 50.337882001 + ], + [ + 7.4175736, + 50.337033701 + ], + [ + 7.4158038, + 50.335517701 + ], + [ + 7.4149479, + 50.334777501 + ], + [ + 7.4141652, + 50.334123801 + ], + [ + 7.4132289, + 50.333329701 + ], + [ + 7.4130616, + 50.333186101 + ], + [ + 7.4122452, + 50.332492101 + ], + [ + 7.4111065, + 50.331522401 + ], + [ + 7.4106179, + 50.331102001 + ], + [ + 7.4103613, + 50.330894501 + ], + [ + 7.4100586, + 50.330644201 + ], + [ + 7.4096382, + 50.330325701 + ], + [ + 7.4092712, + 50.330056101 + ], + [ + 7.4087903, + 50.329718801 + ], + [ + 7.408369, + 50.329459501 + ], + [ + 7.4079711, + 50.329225201 + ], + [ + 7.40749, + 50.328974101 + ], + [ + 7.4069263, + 50.328709901 + ], + [ + 7.4064059, + 50.328500701 + ], + [ + 7.4059496, + 50.328333001 + ], + [ + 7.4054992, + 50.328184601 + ], + [ + 7.4049636, + 50.328025101 + ], + [ + 7.4043895, + 50.327881701 + ], + [ + 7.4038454, + 50.327769401 + ], + [ + 7.4033101, + 50.327677301 + ], + [ + 7.4027324, + 50.327596501 + ], + [ + 7.4022661, + 50.327546801 + ], + [ + 7.4018718, + 50.327515701 + ], + [ + 7.4014852, + 50.327492801 + ], + [ + 7.4011012, + 50.327478801 + ], + [ + 7.4006373, + 50.327475201 + ], + [ + 7.4001159, + 50.327483401 + ], + [ + 7.3996075, + 50.327502601 + ], + [ + 7.3991143, + 50.327534201 + ], + [ + 7.3985721, + 50.327581201 + ], + [ + 7.3977757, + 50.327670101 + ], + [ + 7.3974233, + 50.327713701 + ], + [ + 7.3964959, + 50.327837101 + ], + [ + 7.3956467, + 50.327957301 + ], + [ + 7.3944634, + 50.328128101 + ], + [ + 7.3931126, + 50.328313301 + ], + [ + 7.3924491, + 50.328384801 + ], + [ + 7.3917234, + 50.328459201 + ], + [ + 7.3911388, + 50.328508901 + ], + [ + 7.3905653, + 50.328548201 + ], + [ + 7.3898627, + 50.328589901 + ], + [ + 7.389338, + 50.328614201 + ], + [ + 7.3885176, + 50.328631801 + ], + [ + 7.3875369, + 50.328641301 + ], + [ + 7.3868034, + 50.328633001 + ], + [ + 7.3860319, + 50.328610101 + ], + [ + 7.3853855, + 50.328580101 + ], + [ + 7.3847445, + 50.328538801 + ], + [ + 7.3841714, + 50.328498401 + ], + [ + 7.3836037, + 50.328445301 + ], + [ + 7.3829412, + 50.328379301 + ], + [ + 7.382317, + 50.328307001 + ], + [ + 7.3817483, + 50.328230101 + ], + [ + 7.3810989, + 50.328135501 + ], + [ + 7.380692, + 50.328072601 + ], + [ + 7.380157, + 50.327979301 + ], + [ + 7.3791169, + 50.327776901 + ], + [ + 7.3780952, + 50.327555501 + ], + [ + 7.3770664, + 50.327302901 + ], + [ + 7.376069, + 50.327025401 + ], + [ + 7.3752774, + 50.326784901 + ], + [ + 7.3744606, + 50.326516501 + ], + [ + 7.3735755, + 50.326201501 + ], + [ + 7.3727585, + 50.325883901 + ], + [ + 7.3720891, + 50.325608501 + ], + [ + 7.3714969, + 50.325348501 + ], + [ + 7.3708443, + 50.325044701 + ], + [ + 7.3702405, + 50.324747301 + ], + [ + 7.3693039, + 50.324253001 + ], + [ + 7.368862, + 50.323999601 + ], + [ + 7.3683402, + 50.323691901 + ], + [ + 7.3678031, + 50.323357201 + ], + [ + 7.3673659, + 50.323069801 + ], + [ + 7.3669342, + 50.322776401 + ], + [ + 7.3663654, + 50.322373601 + ], + [ + 7.3656974, + 50.321888801 + ], + [ + 7.3651814, + 50.321514101 + ], + [ + 7.3642318, + 50.320833101 + ], + [ + 7.3634526, + 50.320310301 + ], + [ + 7.3628277, + 50.319919201 + ], + [ + 7.3621741, + 50.319544701 + ], + [ + 7.3616627, + 50.319274701 + ], + [ + 7.3611226, + 50.319018001 + ], + [ + 7.3605214, + 50.318757301 + ], + [ + 7.3598157, + 50.318484501 + ], + [ + 7.3590454, + 50.318231901 + ], + [ + 7.3580878, + 50.317959301 + ], + [ + 7.3570842, + 50.317711301 + ], + [ + 7.3560259, + 50.317481701 + ], + [ + 7.3546271, + 50.317204501 + ], + [ + 7.35324, + 50.316951501 + ], + [ + 7.3523089, + 50.316792801 + ], + [ + 7.3513673, + 50.316640701 + ], + [ + 7.350547, + 50.316514601 + ], + [ + 7.3490786, + 50.316304401 + ], + [ + 7.3474647, + 50.316102001 + ], + [ + 7.3457323, + 50.315910601 + ], + [ + 7.3447152, + 50.315810401 + ], + [ + 7.3434278, + 50.315699401 + ], + [ + 7.3423149, + 50.315616101 + ], + [ + 7.3405886, + 50.315510501 + ], + [ + 7.3398473, + 50.315475501 + ], + [ + 7.3383656, + 50.315416201 + ], + [ + 7.3372231, + 50.315373301 + ], + [ + 7.3355334, + 50.315347601 + ], + [ + 7.3343823, + 50.315346801 + ], + [ + 7.3336074, + 50.315358001 + ], + [ + 7.3308449, + 50.315409301 + ], + [ + 7.3298279, + 50.315450301 + ], + [ + 7.328286, + 50.315530601 + ], + [ + 7.3272881, + 50.315592501 + ], + [ + 7.3262677, + 50.315665601 + ], + [ + 7.3253026, + 50.315746201 + ], + [ + 7.3244813, + 50.315820101 + ], + [ + 7.3233024, + 50.315935401 + ], + [ + 7.3221869, + 50.316058501 + ], + [ + 7.3213816, + 50.316153401 + ], + [ + 7.3188983, + 50.316443301 + ], + [ + 7.3176941, + 50.316571701 + ], + [ + 7.3173641, + 50.316603801 + ], + [ + 7.3166247, + 50.316675701 + ], + [ + 7.3159956, + 50.316730701 + ], + [ + 7.3146184, + 50.316834801 + ], + [ + 7.3139438, + 50.316868201 + ], + [ + 7.3132837, + 50.316889001 + ], + [ + 7.3127246, + 50.316902101 + ], + [ + 7.3120944, + 50.316908401 + ], + [ + 7.3113757, + 50.316902501 + ], + [ + 7.3104894, + 50.316875901 + ], + [ + 7.3100047, + 50.316851601 + ], + [ + 7.3095848, + 50.316827701 + ], + [ + 7.309415084, + 50.316814646 + ] + ] + } + } + ] + }, + "A49": { + "roadworks": [ + { + "identifier": "2026-016339--vi-bs.2026-04-07_00-00-00-000.devi-zus.2026-04-07_00-00-00-000_004.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.06561484374451,9.234541352587335,51.066132750526506,9.234313121018616", + "point": "51.06561484374451,9.234541352587335", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Borken (aus Richtung Wabern)", + "title": "A49 Bauwerksarbeiten nahe AS Borken", + "startTimestamp": "2026-04-07T00:00:00+02:00", + "coordinate": { + "lat": 51.06561484374451, + "long": 9.234541352587335 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 00:00 Uhr", + "Ende: 04.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.07.26)", + "", + "Abfahrt von der A49: AS Borken (aus Richtung Wabern)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A49 Bauwerksarbeiten nahe AS Borken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.234541353, + 51.065614844 + ], + [ + 9.2343138, + 51.066127001 + ], + [ + 9.234313121, + 51.066132751 + ] + ] + } + }, + { + "identifier": "2026-016339--vi-bs.2026-04-07_00-00-00-000.devi-zus.2026-04-07_00-00-00-000_004.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.06860703583894,9.239100037624134,51.068168844657166,9.239314495574252", + "point": "51.06860703583894,9.239100037624134", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Borken (aus Richtung Neuental)", + "title": "A49 Bauwerksarbeiten nahe AS Borken", + "startTimestamp": "2026-04-07T00:00:00+02:00", + "coordinate": { + "lat": 51.06860703583894, + "long": 9.239100037624134 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 00:00 Uhr", + "Ende: 04.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.07.26)", + "", + "Abfahrt von der A49: AS Borken (aus Richtung Neuental)", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A49 Bauwerksarbeiten nahe AS Borken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.239100038, + 51.068607036 + ], + [ + 9.239314496, + 51.068168845 + ] + ] + } + } + ] + }, + "A52": { + "roadworks": [ + { + "identifier": "2025-016050--vi-bs.2026-04-08_09-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.21036792484111,6.377033381436987,51.23312328947929,6.453018854952107", + "point": "51.21036792484111,6.377033381436987", + "startLcPosition": "5", + "impact": { + "lower": "M\u00f6nchengladbach-Neuwerk", + "upper": "M\u00f6nchengladbach-Hardt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Roermond -> D\u00fcsseldorf", + "title": "A52 | M\u00f6nchengladbach-Hardt - M\u00f6nchengladbach-Neuwerk", + "coordinate": { + "lat": 51.21036792484111, + "long": 6.377033381436987 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 27.04.26 und dem 30.04.26 von 09:00 bis 15:00 Uhr.", + "", + "A52: Roermond -> D\u00fcsseldorf, zwischen 2.2 km hinter AS M\u00f6nchengladbach-Hardt und 0.1 km vor AS M\u00f6nchengladbach-Neuwerk", + "", + "L\u00e4nge: 6.01 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.377033381, + 51.210367925 + ], + [ + 6.3779618, + 51.210446001 + ], + [ + 6.3791804, + 51.210574101 + ], + [ + 6.3798067, + 51.210646301 + ], + [ + 6.3809231, + 51.210802301 + ], + [ + 6.3817204, + 51.210940001 + ], + [ + 6.3832122, + 51.211218001 + ], + [ + 6.3842014, + 51.211403901 + ], + [ + 6.3852631, + 51.211653201 + ], + [ + 6.3859585, + 51.211830101 + ], + [ + 6.3868783, + 51.212074801 + ], + [ + 6.3876447, + 51.212283101 + ], + [ + 6.3901535, + 51.213110501 + ], + [ + 6.3916316, + 51.213671201 + ], + [ + 6.3930219, + 51.214245101 + ], + [ + 6.3940875, + 51.214734301 + ], + [ + 6.3957347, + 51.215553201 + ], + [ + 6.3968287, + 51.216121201 + ], + [ + 6.3978763, + 51.216677401 + ], + [ + 6.3986079, + 51.217056501 + ], + [ + 6.4001619, + 51.217853101 + ], + [ + 6.4013713, + 51.218458501 + ], + [ + 6.4024712, + 51.218984901 + ], + [ + 6.4032749, + 51.219347201 + ], + [ + 6.4038529, + 51.219593901 + ], + [ + 6.4046352, + 51.219901401 + ], + [ + 6.4052249, + 51.220117801 + ], + [ + 6.4060022, + 51.220387801 + ], + [ + 6.4067434, + 51.220638301 + ], + [ + 6.4076419, + 51.220911201 + ], + [ + 6.4083144, + 51.221101901 + ], + [ + 6.4092179, + 51.221330701 + ], + [ + 6.410391, + 51.221596701 + ], + [ + 6.4112494, + 51.221769901 + ], + [ + 6.4123684, + 51.221969601 + ], + [ + 6.4136222, + 51.222146501 + ], + [ + 6.414387, + 51.222238701 + ], + [ + 6.4154284, + 51.222341801 + ], + [ + 6.416481, + 51.222438601 + ], + [ + 6.4174824, + 51.222510001 + ], + [ + 6.4196353, + 51.222630801 + ], + [ + 6.4218349, + 51.222743801 + ], + [ + 6.4228968, + 51.222804701 + ], + [ + 6.4247767, + 51.222926001 + ], + [ + 6.4258045, + 51.223006801 + ], + [ + 6.4267585, + 51.223095801 + ], + [ + 6.4272163, + 51.223144501 + ], + [ + 6.4277614, + 51.223210701 + ], + [ + 6.4282879, + 51.223280601 + ], + [ + 6.4291696, + 51.223406501 + ], + [ + 6.4301804, + 51.223579401 + ], + [ + 6.4310433, + 51.223741601 + ], + [ + 6.4314774, + 51.223839201 + ], + [ + 6.4319122, + 51.223936901 + ], + [ + 6.4327076, + 51.224130201 + ], + [ + 6.4335458, + 51.224346901 + ], + [ + 6.43447, + 51.224608801 + ], + [ + 6.4347231, + 51.224688501 + ], + [ + 6.4353834, + 51.224896701 + ], + [ + 6.436099, + 51.225132601 + ], + [ + 6.437446, + 51.225632601 + ], + [ + 6.4384519, + 51.226052101 + ], + [ + 6.4392919, + 51.226436101 + ], + [ + 6.4402697, + 51.226915801 + ], + [ + 6.4410308, + 51.227310701 + ], + [ + 6.4416705, + 51.227658201 + ], + [ + 6.4426859, + 51.228226501 + ], + [ + 6.444462, + 51.229213501 + ], + [ + 6.4452697, + 51.229646501 + ], + [ + 6.4464, + 51.230221401 + ], + [ + 6.4474393, + 51.230726301 + ], + [ + 6.4483179, + 51.231138301 + ], + [ + 6.4486803, + 51.231306101 + ], + [ + 6.4493537, + 51.231613401 + ], + [ + 6.4508779, + 51.232269401 + ], + [ + 6.4525305, + 51.232937101 + ], + [ + 6.453018855, + 51.233123289 + ] + ] + } + }, + { + "identifier": "2025-016050--vi-bs.2026-04-08_09-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de27", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.210938097192134,6.349848166536581,51.21036792484111,6.377033381436992", + "point": "51.210938097192134,6.349848166536581", + "startLcPosition": "5", + "impact": { + "lower": "M\u00f6nchengladbach", + "upper": "M\u00f6nchengladbach-Hardt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Roermond -> M\u00f6nchengladbach", + "title": "A52 | M\u00f6nchengladbach-Hardt - M\u00f6nchengladbach", + "coordinate": { + "lat": 51.210938097192134, + "long": 6.349848166536581 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 20:00 Uhr", + "14.04.26 von 09:00 bis 20:00 Uhr", + "15.04.26 von 09:00 bis 20:00 Uhr", + "27.04.26 von 09:00 bis 20:00 Uhr", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 28.04.26 und dem 30.04.26 von 09:00 bis 20:00 Uhr.", + "", + "A52: Roermond -> M\u00f6nchengladbach, zwischen 0.3 km hinter AS M\u00f6nchengladbach-Hardt und 0.1 km vor AK M\u00f6nchengladbach", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.349848167, + 51.210938097 + ], + [ + 6.3512881, + 51.210885801 + ], + [ + 6.3527339, + 51.210823101 + ], + [ + 6.355539, + 51.210717001 + ], + [ + 6.3575103, + 51.210643901 + ], + [ + 6.358944, + 51.210594301 + ], + [ + 6.3606902, + 51.210529001 + ], + [ + 6.3620447, + 51.210476801 + ], + [ + 6.3643827, + 51.210385401 + ], + [ + 6.3655297, + 51.210355201 + ], + [ + 6.3681969, + 51.210260201 + ], + [ + 6.369857, + 51.210202701 + ], + [ + 6.3722475, + 51.210167101 + ], + [ + 6.3735956, + 51.210192101 + ], + [ + 6.3745022, + 51.210213401 + ], + [ + 6.3758337, + 51.210281201 + ], + [ + 6.3768048, + 51.210348701 + ], + [ + 6.377033381, + 51.210367925 + ] + ] + } + }, + { + "identifier": "2025-016050--vi-bs.2026-04-08_09-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.23312328947929,6.453018854952107,51.24218758858167,6.49163689513225", + "point": "51.23312328947929,6.453018854952107", + "startLcPosition": "9", + "impact": { + "lower": "Cloerbruch", + "upper": "M\u00f6nchengladbach-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A52 | M\u00f6nchengladbach-Nord - Cloerbruch", + "coordinate": { + "lat": 51.23312328947929, + "long": 6.453018854952107 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 06:00 Uhr.", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 27.04.26 und dem 01.05.26 von 19:00 bis 00:00 Uhr.", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 28.04.26 und dem 01.05.26 von 00:00 bis 06:00 Uhr.", + "", + "A52: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 1.7 km hinter AS M\u00f6nchengladbach-Nord und 1.5 km vor Cloerbruch", + "", + "L\u00e4nge: 2.99 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.453018855, + 51.233123289 + ], + [ + 6.4535941, + 51.233342601 + ], + [ + 6.4553239, + 51.233971601 + ], + [ + 6.4562638, + 51.234295301 + ], + [ + 6.4582731, + 51.235035401 + ], + [ + 6.4606036, + 51.235924101 + ], + [ + 6.4627428, + 51.236776601 + ], + [ + 6.4630563, + 51.236908601 + ], + [ + 6.4658753, + 51.238113201 + ], + [ + 6.4689852, + 51.239458501 + ], + [ + 6.4693418, + 51.239606801 + ], + [ + 6.4704069, + 51.240045001 + ], + [ + 6.4707034, + 51.240168901 + ], + [ + 6.4710696, + 51.240315301 + ], + [ + 6.47139, + 51.240440101 + ], + [ + 6.4717197, + 51.240563401 + ], + [ + 6.4720528, + 51.240684501 + ], + [ + 6.4723903, + 51.240801601 + ], + [ + 6.4727725, + 51.240928501 + ], + [ + 6.4731519, + 51.241047801 + ], + [ + 6.4734729, + 51.241145801 + ], + [ + 6.4738263, + 51.241248401 + ], + [ + 6.4742698, + 51.241373101 + ], + [ + 6.4747388, + 51.241500501 + ], + [ + 6.4751568, + 51.241610301 + ], + [ + 6.4756248, + 51.241725501 + ], + [ + 6.4760239, + 51.241817201 + ], + [ + 6.4764894, + 51.241919101 + ], + [ + 6.4770093, + 51.242026401 + ], + [ + 6.4774248, + 51.242105001 + ], + [ + 6.4778314, + 51.242176701 + ], + [ + 6.4782316, + 51.242244801 + ], + [ + 6.4787258, + 51.242320501 + ], + [ + 6.4791125, + 51.242377301 + ], + [ + 6.479678, + 51.242453601 + ], + [ + 6.4802683, + 51.242523601 + ], + [ + 6.4808845, + 51.242587101 + ], + [ + 6.4813416, + 51.242629901 + ], + [ + 6.4818786, + 51.242672601 + ], + [ + 6.4824525, + 51.242709401 + ], + [ + 6.4828223, + 51.242727801 + ], + [ + 6.4832961, + 51.242747001 + ], + [ + 6.4837607, + 51.242759901 + ], + [ + 6.484457, + 51.242769001 + ], + [ + 6.4849992, + 51.242767301 + ], + [ + 6.4854512, + 51.242760501 + ], + [ + 6.4858395, + 51.242748701 + ], + [ + 6.4862289, + 51.242734201 + ], + [ + 6.4871484, + 51.242687101 + ], + [ + 6.487691, + 51.242654701 + ], + [ + 6.4885361, + 51.242594901 + ], + [ + 6.4891118, + 51.242541401 + ], + [ + 6.4896024, + 51.242488601 + ], + [ + 6.4902516, + 51.242404701 + ], + [ + 6.4908326, + 51.242320101 + ], + [ + 6.4913507, + 51.242237501 + ], + [ + 6.491636895, + 51.242187589 + ] + ] + } + }, + { + "identifier": "2025-016050--vi-bs.2026-04-08_09-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de33", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.24218758858167,6.49163689513225,51.23475063122338,6.545538730551368", + "point": "51.24218758858167,6.49163689513225", + "startLcPosition": "11", + "impact": { + "lower": "Kaarst-Nord", + "upper": "Neersen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A52 | Neersen - Kaarst-Nord", + "coordinate": { + "lat": 51.24218758858167, + "long": 6.49163689513225 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 27.04.26 und dem 30.04.26 von 09:00 bis 16:00 Uhr.", + "", + "A52: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 0.4 km hinter AK Neersen und 5.3 km vor AS Kaarst-Nord", + "", + "L\u00e4nge: 3.9 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.491636895, + 51.242187589 + ], + [ + 6.4918765, + 51.242145801 + ], + [ + 6.492542, + 51.242019801 + ], + [ + 6.4930596, + 51.241916001 + ], + [ + 6.4936078, + 51.241796801 + ], + [ + 6.4941357, + 51.241681601 + ], + [ + 6.4946846, + 51.241556301 + ], + [ + 6.4951836, + 51.241435901 + ], + [ + 6.4957405, + 51.241299301 + ], + [ + 6.4976026, + 51.240813701 + ], + [ + 6.498129, + 51.240668501 + ], + [ + 6.5009241, + 51.239908201 + ], + [ + 6.5014394, + 51.239769001 + ], + [ + 6.5037668, + 51.239138801 + ], + [ + 6.5057993, + 51.238604401 + ], + [ + 6.5066782, + 51.238384301 + ], + [ + 6.5085366, + 51.237924601 + ], + [ + 6.510121, + 51.237552801 + ], + [ + 6.5114106, + 51.237270801 + ], + [ + 6.5125572, + 51.237036501 + ], + [ + 6.5136733, + 51.236823701 + ], + [ + 6.5153304, + 51.236545501 + ], + [ + 6.5163096, + 51.236377101 + ], + [ + 6.517856, + 51.236151701 + ], + [ + 6.5183787, + 51.236079501 + ], + [ + 6.5197648, + 51.235913001 + ], + [ + 6.5206721, + 51.235817201 + ], + [ + 6.5211322, + 51.235772001 + ], + [ + 6.5214883, + 51.235735901 + ], + [ + 6.5222532, + 51.235662001 + ], + [ + 6.5227218, + 51.235624901 + ], + [ + 6.5236735, + 51.235550301 + ], + [ + 6.5244406, + 51.235503201 + ], + [ + 6.5252924, + 51.235454401 + ], + [ + 6.5262638, + 51.235406701 + ], + [ + 6.5276249, + 51.235355801 + ], + [ + 6.5302376, + 51.235287101 + ], + [ + 6.5314229, + 51.235267301 + ], + [ + 6.5325711, + 51.235248101 + ], + [ + 6.5330917, + 51.235241101 + ], + [ + 6.5353889, + 51.235212501 + ], + [ + 6.5378225, + 51.235182101 + ], + [ + 6.5385106, + 51.235165501 + ], + [ + 6.5393909, + 51.235144301 + ], + [ + 6.5407216, + 51.235094101 + ], + [ + 6.5417643, + 51.235040201 + ], + [ + 6.5422706, + 51.235011801 + ], + [ + 6.5425578, + 51.234991201 + ], + [ + 6.5433483, + 51.234932201 + ], + [ + 6.5445832, + 51.234840101 + ], + [ + 6.5454454, + 51.234760901 + ], + [ + 6.545538731, + 51.234750631 + ] + ] + } + }, + { + "identifier": "2025-016050--vi-bs.2026-04-08_09-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de35", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.23475063122338,6.545538730551368,51.23092009349796,6.656758324339597", + "point": "51.23475063122338,6.545538730551368", + "startLcPosition": "13", + "impact": { + "lower": "B\u00fcderich", + "upper": "Schiefbahn", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A52 | Schiefbahn - B\u00fcderich", + "coordinate": { + "lat": 51.23475063122338, + "long": 6.545538730551368 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 10:00 bis 16:00 Uhr", + "14.04.26 von 10:00 bis 16:00 Uhr", + "15.04.26 von 10:00 bis 16:00 Uhr", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 27.04.26 und dem 30.04.26 von 10:00 bis 16:00 Uhr.", + "", + "A52: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 0.5 km hinter AS Schiefbahn und 3.3 km vor AS B\u00fcderich", + "", + "L\u00e4nge: 8.01 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.545538731, + 51.234750631 + ], + [ + 6.5461915, + 51.234678801 + ], + [ + 6.5467848, + 51.234614801 + ], + [ + 6.5486476, + 51.234387501 + ], + [ + 6.5506404, + 51.234116701 + ], + [ + 6.5526717, + 51.233795301 + ], + [ + 6.554891, + 51.233465201 + ], + [ + 6.5559202, + 51.233320001 + ], + [ + 6.5569235, + 51.233161001 + ], + [ + 6.5592273, + 51.232839601 + ], + [ + 6.5606592, + 51.232660601 + ], + [ + 6.5620441, + 51.232508901 + ], + [ + 6.5630876, + 51.232403301 + ], + [ + 6.5640596, + 51.232317601 + ], + [ + 6.5648616, + 51.232247501 + ], + [ + 6.5653298, + 51.232215101 + ], + [ + 6.5665527, + 51.232149101 + ], + [ + 6.5679084, + 51.232090701 + ], + [ + 6.5692994, + 51.232062001 + ], + [ + 6.570741, + 51.232051001 + ], + [ + 6.5718495, + 51.232071701 + ], + [ + 6.5728721, + 51.232105101 + ], + [ + 6.5745154, + 51.232185801 + ], + [ + 6.5758285, + 51.232278001 + ], + [ + 6.5780008, + 51.232474901 + ], + [ + 6.5792339, + 51.232618301 + ], + [ + 6.5803276, + 51.232776701 + ], + [ + 6.581733, + 51.233003701 + ], + [ + 6.5830534, + 51.233248501 + ], + [ + 6.5844033, + 51.233524201 + ], + [ + 6.5856774, + 51.233815901 + ], + [ + 6.5879875, + 51.234404901 + ], + [ + 6.589534, + 51.234810201 + ], + [ + 6.5918467, + 51.235425701 + ], + [ + 6.5942437, + 51.236011801 + ], + [ + 6.5965387, + 51.236507501 + ], + [ + 6.5984035, + 51.236844701 + ], + [ + 6.5993711, + 51.236997701 + ], + [ + 6.6003682, + 51.237141501 + ], + [ + 6.6013756, + 51.237272401 + ], + [ + 6.6024051, + 51.237389501 + ], + [ + 6.6036845, + 51.237518701 + ], + [ + 6.605147, + 51.237643001 + ], + [ + 6.6066307, + 51.237734901 + ], + [ + 6.6078382, + 51.237780201 + ], + [ + 6.609353, + 51.237816301 + ], + [ + 6.6107998, + 51.237822101 + ], + [ + 6.6120826, + 51.237801101 + ], + [ + 6.612923, + 51.237774801 + ], + [ + 6.6141143, + 51.237723701 + ], + [ + 6.6148528, + 51.237685101 + ], + [ + 6.6162036, + 51.237589301 + ], + [ + 6.6175416, + 51.237471101 + ], + [ + 6.6185796, + 51.237355601 + ], + [ + 6.6189718, + 51.237311901 + ], + [ + 6.6194189, + 51.237258201 + ], + [ + 6.6209473, + 51.237050101 + ], + [ + 6.6224817, + 51.236800401 + ], + [ + 6.623684, + 51.236581401 + ], + [ + 6.6249074, + 51.236342001 + ], + [ + 6.6264562, + 51.235993201 + ], + [ + 6.6274567, + 51.235751301 + ], + [ + 6.6285341, + 51.235476001 + ], + [ + 6.6299971, + 51.235081901 + ], + [ + 6.6307023, + 51.234909601 + ], + [ + 6.6341719, + 51.233939801 + ], + [ + 6.6359178, + 51.233467901 + ], + [ + 6.6376088, + 51.233037001 + ], + [ + 6.6386177, + 51.232789701 + ], + [ + 6.6398444, + 51.232504301 + ], + [ + 6.6413336, + 51.232189901 + ], + [ + 6.6428309, + 51.231904701 + ], + [ + 6.6441818, + 51.231676101 + ], + [ + 6.6450997, + 51.231544901 + ], + [ + 6.6455961, + 51.231478501 + ], + [ + 6.6480462, + 51.231188101 + ], + [ + 6.6495837, + 51.231055801 + ], + [ + 6.6517471, + 51.230941601 + ], + [ + 6.6525646, + 51.230912701 + ], + [ + 6.6538697, + 51.230885901 + ], + [ + 6.6557662, + 51.230887401 + ], + [ + 6.6559579, + 51.230892501 + ], + [ + 6.656758324, + 51.230920093 + ] + ] + } + }, + { + "identifier": "2026-016947--vi-bs.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.23475063122338,6.545538730551368,51.2357284780005,6.627546020644719", + "point": "51.23475063122338,6.545538730551368", + "startLcPosition": "13", + "impact": { + "lower": "Kaarst", + "upper": "Schiefbahn", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A52 | Schiefbahn - Kaarst", + "coordinate": { + "lat": 51.23475063122338, + "long": 6.545538730551368 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A52: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 0.5 km hinter AS Schiefbahn und 0.8 km vor AK Kaarst", + "", + "L\u00e4nge: 5.88 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A52 von Kaarst (AK) nach Schiefbahn (AS) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.545538731, + 51.234750631 + ], + [ + 6.5461915, + 51.234678801 + ], + [ + 6.5467848, + 51.234614801 + ], + [ + 6.5486476, + 51.234387501 + ], + [ + 6.5506404, + 51.234116701 + ], + [ + 6.5526717, + 51.233795301 + ], + [ + 6.554891, + 51.233465201 + ], + [ + 6.5559202, + 51.233320001 + ], + [ + 6.5569235, + 51.233161001 + ], + [ + 6.5592273, + 51.232839601 + ], + [ + 6.5606592, + 51.232660601 + ], + [ + 6.5620441, + 51.232508901 + ], + [ + 6.5630876, + 51.232403301 + ], + [ + 6.5640596, + 51.232317601 + ], + [ + 6.5648616, + 51.232247501 + ], + [ + 6.5653298, + 51.232215101 + ], + [ + 6.5665527, + 51.232149101 + ], + [ + 6.5679084, + 51.232090701 + ], + [ + 6.5692994, + 51.232062001 + ], + [ + 6.570741, + 51.232051001 + ], + [ + 6.5718495, + 51.232071701 + ], + [ + 6.5728721, + 51.232105101 + ], + [ + 6.5745154, + 51.232185801 + ], + [ + 6.5758285, + 51.232278001 + ], + [ + 6.5780008, + 51.232474901 + ], + [ + 6.5792339, + 51.232618301 + ], + [ + 6.5803276, + 51.232776701 + ], + [ + 6.581733, + 51.233003701 + ], + [ + 6.5830534, + 51.233248501 + ], + [ + 6.5844033, + 51.233524201 + ], + [ + 6.5856774, + 51.233815901 + ], + [ + 6.5879875, + 51.234404901 + ], + [ + 6.589534, + 51.234810201 + ], + [ + 6.5918467, + 51.235425701 + ], + [ + 6.5942437, + 51.236011801 + ], + [ + 6.5965387, + 51.236507501 + ], + [ + 6.5984035, + 51.236844701 + ], + [ + 6.5993711, + 51.236997701 + ], + [ + 6.6003682, + 51.237141501 + ], + [ + 6.6013756, + 51.237272401 + ], + [ + 6.6024051, + 51.237389501 + ], + [ + 6.6036845, + 51.237518701 + ], + [ + 6.605147, + 51.237643001 + ], + [ + 6.6066307, + 51.237734901 + ], + [ + 6.6078382, + 51.237780201 + ], + [ + 6.609353, + 51.237816301 + ], + [ + 6.6107998, + 51.237822101 + ], + [ + 6.6120826, + 51.237801101 + ], + [ + 6.612923, + 51.237774801 + ], + [ + 6.6141143, + 51.237723701 + ], + [ + 6.6148528, + 51.237685101 + ], + [ + 6.6162036, + 51.237589301 + ], + [ + 6.6175416, + 51.237471101 + ], + [ + 6.6185796, + 51.237355601 + ], + [ + 6.6189718, + 51.237311901 + ], + [ + 6.6194189, + 51.237258201 + ], + [ + 6.6209473, + 51.237050101 + ], + [ + 6.6224817, + 51.236800401 + ], + [ + 6.623684, + 51.236581401 + ], + [ + 6.6249074, + 51.236342001 + ], + [ + 6.6264562, + 51.235993201 + ], + [ + 6.6274567, + 51.235751301 + ], + [ + 6.627546021, + 51.235728478 + ] + ] + } + }, + { + "identifier": "2026-017806--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_007.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.23475063122338,6.545538730551368,51.23317553994101,6.63706513924843", + "point": "51.23475063122338,6.545538730551368", + "startLcPosition": "13", + "impact": { + "lower": "Kaarst", + "upper": "Schiefbahn", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A52 | Schiefbahn - Kaarst", + "coordinate": { + "lat": 51.23475063122338, + "long": 6.545538730551368 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A52: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 0.5 km hinter AS Schiefbahn und 0.1 km vor AK Kaarst", + "", + "L\u00e4nge: 6.61 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A52 von Kaarst (AK) nach Schiefbahn (AS) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.545538731, + 51.234750631 + ], + [ + 6.5461915, + 51.234678801 + ], + [ + 6.5467848, + 51.234614801 + ], + [ + 6.5486476, + 51.234387501 + ], + [ + 6.5506404, + 51.234116701 + ], + [ + 6.5526717, + 51.233795301 + ], + [ + 6.554891, + 51.233465201 + ], + [ + 6.5559202, + 51.233320001 + ], + [ + 6.5569235, + 51.233161001 + ], + [ + 6.5592273, + 51.232839601 + ], + [ + 6.5606592, + 51.232660601 + ], + [ + 6.5620441, + 51.232508901 + ], + [ + 6.5630876, + 51.232403301 + ], + [ + 6.5640596, + 51.232317601 + ], + [ + 6.5648616, + 51.232247501 + ], + [ + 6.5653298, + 51.232215101 + ], + [ + 6.5665527, + 51.232149101 + ], + [ + 6.5679084, + 51.232090701 + ], + [ + 6.5692994, + 51.232062001 + ], + [ + 6.570741, + 51.232051001 + ], + [ + 6.5718495, + 51.232071701 + ], + [ + 6.5728721, + 51.232105101 + ], + [ + 6.5745154, + 51.232185801 + ], + [ + 6.5758285, + 51.232278001 + ], + [ + 6.5780008, + 51.232474901 + ], + [ + 6.5792339, + 51.232618301 + ], + [ + 6.5803276, + 51.232776701 + ], + [ + 6.581733, + 51.233003701 + ], + [ + 6.5830534, + 51.233248501 + ], + [ + 6.5844033, + 51.233524201 + ], + [ + 6.5856774, + 51.233815901 + ], + [ + 6.5879875, + 51.234404901 + ], + [ + 6.589534, + 51.234810201 + ], + [ + 6.5918467, + 51.235425701 + ], + [ + 6.5942437, + 51.236011801 + ], + [ + 6.5965387, + 51.236507501 + ], + [ + 6.5984035, + 51.236844701 + ], + [ + 6.5993711, + 51.236997701 + ], + [ + 6.6003682, + 51.237141501 + ], + [ + 6.6013756, + 51.237272401 + ], + [ + 6.6024051, + 51.237389501 + ], + [ + 6.6036845, + 51.237518701 + ], + [ + 6.605147, + 51.237643001 + ], + [ + 6.6066307, + 51.237734901 + ], + [ + 6.6078382, + 51.237780201 + ], + [ + 6.609353, + 51.237816301 + ], + [ + 6.6107998, + 51.237822101 + ], + [ + 6.6120826, + 51.237801101 + ], + [ + 6.612923, + 51.237774801 + ], + [ + 6.6141143, + 51.237723701 + ], + [ + 6.6148528, + 51.237685101 + ], + [ + 6.6162036, + 51.237589301 + ], + [ + 6.6175416, + 51.237471101 + ], + [ + 6.6185796, + 51.237355601 + ], + [ + 6.6189718, + 51.237311901 + ], + [ + 6.6194189, + 51.237258201 + ], + [ + 6.6209473, + 51.237050101 + ], + [ + 6.6224817, + 51.236800401 + ], + [ + 6.623684, + 51.236581401 + ], + [ + 6.6249074, + 51.236342001 + ], + [ + 6.6264562, + 51.235993201 + ], + [ + 6.6274567, + 51.235751301 + ], + [ + 6.6285341, + 51.235476001 + ], + [ + 6.6299971, + 51.235081901 + ], + [ + 6.6307023, + 51.234909601 + ], + [ + 6.6341719, + 51.233939801 + ], + [ + 6.6359178, + 51.233467901 + ], + [ + 6.637065139, + 51.23317554 + ] + ] + } + }, + { + "identifier": "2023-004624--vi-bs.2022-06-15_00-00-00-000.f.devi-zus.2022-06-15_00-00-00-000_006.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.23540396781215,6.698519193834073,51.23480215456863,6.7031148857411145", + "point": "51.23540396781215,6.698519193834073", + "startLcPosition": "15", + "impact": { + "lower": "B\u00fcderich", + "upper": "Kaarst", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> D\u00fcsseldorf", + "title": "A52 | Kaarst - B\u00fcderich", + "startTimestamp": "2022-06-15T00:00:00+02:00", + "coordinate": { + "lat": 51.23540396781215, + "long": 6.698519193834073 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.06.22 um 00:00 Uhr", + "Ende: 31.12.28 um 23:59 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A52: M\u00f6nchengladbach -> D\u00fcsseldorf, zwischen 4.3 km hinter AK Kaarst und AS B\u00fcderich", + "", + "L\u00e4nge: 0.33 km | Maximale Durchfahrtsbreite: 8.85 m", + "", + "A52 Kompensationsma\u00dfnahme AS B\u00fcderich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.698519194, + 51.235403968 + ], + [ + 6.6990254, + 51.235357601 + ], + [ + 6.6997811, + 51.235270401 + ], + [ + 6.7005438, + 51.235179101 + ], + [ + 6.701522, + 51.235050601 + ], + [ + 6.702634, + 51.234882901 + ], + [ + 6.703114886, + 51.234802155 + ] + ] + } + }, + { + "identifier": "2026-016947--vi-bs.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.23583735454622,6.627616668188,51.23484740930093,6.545565310294602", + "point": "51.23583735454622,6.627616668188", + "startLcPosition": "15", + "impact": { + "lower": "Schiefbahn", + "upper": "Kaarst", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> M\u00f6nchengladbach", + "title": "A52 | Kaarst - Schiefbahn", + "coordinate": { + "lat": 51.23583735454622, + "long": 6.627616668188 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A52: D\u00fcsseldorf -> M\u00f6nchengladbach, zwischen 0.8 km hinter AK Kaarst und 0.5 km vor AS Schiefbahn", + "", + "L\u00e4nge: 5.88 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A52 von Kaarst (AK) nach Schiefbahn (AS) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.627616668, + 51.235837355 + ], + [ + 6.6275161, + 51.235863101 + ], + [ + 6.626555, + 51.236091601 + ], + [ + 6.6249802, + 51.236443301 + ], + [ + 6.6237598, + 51.236683301 + ], + [ + 6.6225326, + 51.236905001 + ], + [ + 6.6209856, + 51.237150301 + ], + [ + 6.6194721, + 51.237356901 + ], + [ + 6.6190672, + 51.237406501 + ], + [ + 6.6177655, + 51.237546701 + ], + [ + 6.6162258, + 51.237687601 + ], + [ + 6.6148677, + 51.237787101 + ], + [ + 6.6129529, + 51.237875201 + ], + [ + 6.6120884, + 51.237902001 + ], + [ + 6.6107996, + 51.237920501 + ], + [ + 6.609352, + 51.237917301 + ], + [ + 6.607797, + 51.237880801 + ], + [ + 6.6066162, + 51.237832301 + ], + [ + 6.6051287, + 51.237743501 + ], + [ + 6.6023824, + 51.237491501 + ], + [ + 6.601358, + 51.237371301 + ], + [ + 6.6003224, + 51.237232601 + ], + [ + 6.5993379, + 51.237090101 + ], + [ + 6.5983608, + 51.236938201 + ], + [ + 6.5965032, + 51.236600701 + ], + [ + 6.5941875, + 51.236115401 + ], + [ + 6.5918092, + 51.235528301 + ], + [ + 6.5894625, + 51.234911101 + ], + [ + 6.5879288, + 51.234494501 + ], + [ + 6.5856498, + 51.233923301 + ], + [ + 6.5843349, + 51.233624101 + ], + [ + 6.5830122, + 51.233351201 + ], + [ + 6.5816917, + 51.233103301 + ], + [ + 6.5802748, + 51.232875301 + ], + [ + 6.5791748, + 51.232719501 + ], + [ + 6.5779542, + 51.232568201 + ], + [ + 6.5762459, + 51.232410401 + ], + [ + 6.5751999, + 51.232318901 + ], + [ + 6.5745032, + 51.232290401 + ], + [ + 6.5728742, + 51.232203401 + ], + [ + 6.5718465, + 51.232176301 + ], + [ + 6.5707604, + 51.232153501 + ], + [ + 6.5692959, + 51.232161101 + ], + [ + 6.5679469, + 51.232191401 + ], + [ + 6.5666273, + 51.232254201 + ], + [ + 6.5653312, + 51.232320801 + ], + [ + 6.5649364, + 51.232345401 + ], + [ + 6.5641367, + 51.232415201 + ], + [ + 6.5630905, + 51.232507301 + ], + [ + 6.5620808, + 51.232610201 + ], + [ + 6.5606774, + 51.232763201 + ], + [ + 6.5590708, + 51.232972101 + ], + [ + 6.5569684, + 51.233259101 + ], + [ + 6.5559434, + 51.233416501 + ], + [ + 6.5527017, + 51.233895401 + ], + [ + 6.5506624, + 51.234216101 + ], + [ + 6.5486476, + 51.234496601 + ], + [ + 6.5468038, + 51.234718301 + ], + [ + 6.5462628, + 51.234774101 + ], + [ + 6.5460279, + 51.234798101 + ], + [ + 6.54556531, + 51.234847409 + ] + ] + } + }, + { + "identifier": "2026-017806--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.233272629128074,6.637127830501887,51.23484740930093,6.545565310294602", + "point": "51.233272629128074,6.637127830501887", + "startLcPosition": "15", + "impact": { + "lower": "Schiefbahn", + "upper": "Kaarst", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> M\u00f6nchengladbach", + "title": "A52 | Kaarst - Schiefbahn", + "coordinate": { + "lat": 51.233272629128074, + "long": 6.637127830501887 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A52: D\u00fcsseldorf -> M\u00f6nchengladbach, zwischen 0.1 km hinter AK Kaarst und 0.5 km vor AS Schiefbahn", + "", + "L\u00e4nge: 6.61 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A52 von Kaarst (AK) nach Schiefbahn (AS) Unterhaltungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.637127831, + 51.233272629 + ], + [ + 6.6359605, + 51.233569301 + ], + [ + 6.634244, + 51.234036401 + ], + [ + 6.6306933, + 51.235024601 + ], + [ + 6.6285926, + 51.235587501 + ], + [ + 6.6275161, + 51.235863101 + ], + [ + 6.626555, + 51.236091601 + ], + [ + 6.6249802, + 51.236443301 + ], + [ + 6.6237598, + 51.236683301 + ], + [ + 6.6225326, + 51.236905001 + ], + [ + 6.6209856, + 51.237150301 + ], + [ + 6.6194721, + 51.237356901 + ], + [ + 6.6190672, + 51.237406501 + ], + [ + 6.6177655, + 51.237546701 + ], + [ + 6.6162258, + 51.237687601 + ], + [ + 6.6148677, + 51.237787101 + ], + [ + 6.6129529, + 51.237875201 + ], + [ + 6.6120884, + 51.237902001 + ], + [ + 6.6107996, + 51.237920501 + ], + [ + 6.609352, + 51.237917301 + ], + [ + 6.607797, + 51.237880801 + ], + [ + 6.6066162, + 51.237832301 + ], + [ + 6.6051287, + 51.237743501 + ], + [ + 6.6023824, + 51.237491501 + ], + [ + 6.601358, + 51.237371301 + ], + [ + 6.6003224, + 51.237232601 + ], + [ + 6.5993379, + 51.237090101 + ], + [ + 6.5983608, + 51.236938201 + ], + [ + 6.5965032, + 51.236600701 + ], + [ + 6.5941875, + 51.236115401 + ], + [ + 6.5918092, + 51.235528301 + ], + [ + 6.5894625, + 51.234911101 + ], + [ + 6.5879288, + 51.234494501 + ], + [ + 6.5856498, + 51.233923301 + ], + [ + 6.5843349, + 51.233624101 + ], + [ + 6.5830122, + 51.233351201 + ], + [ + 6.5816917, + 51.233103301 + ], + [ + 6.5802748, + 51.232875301 + ], + [ + 6.5791748, + 51.232719501 + ], + [ + 6.5779542, + 51.232568201 + ], + [ + 6.5762459, + 51.232410401 + ], + [ + 6.5751999, + 51.232318901 + ], + [ + 6.5745032, + 51.232290401 + ], + [ + 6.5728742, + 51.232203401 + ], + [ + 6.5718465, + 51.232176301 + ], + [ + 6.5707604, + 51.232153501 + ], + [ + 6.5692959, + 51.232161101 + ], + [ + 6.5679469, + 51.232191401 + ], + [ + 6.5666273, + 51.232254201 + ], + [ + 6.5653312, + 51.232320801 + ], + [ + 6.5649364, + 51.232345401 + ], + [ + 6.5641367, + 51.232415201 + ], + [ + 6.5630905, + 51.232507301 + ], + [ + 6.5620808, + 51.232610201 + ], + [ + 6.5606774, + 51.232763201 + ], + [ + 6.5590708, + 51.232972101 + ], + [ + 6.5569684, + 51.233259101 + ], + [ + 6.5559434, + 51.233416501 + ], + [ + 6.5527017, + 51.233895401 + ], + [ + 6.5506624, + 51.234216101 + ], + [ + 6.5486476, + 51.234496601 + ], + [ + 6.5468038, + 51.234718301 + ], + [ + 6.5462628, + 51.234774101 + ], + [ + 6.5460279, + 51.234798101 + ], + [ + 6.54556531, + 51.234847409 + ] + ] + } + }, + { + "identifier": "2023-004624--vi-bs.2022-06-15_00-00-00-000.f.devi-zus.2022-06-15_00-00-00-000_006.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.23493244542191,6.703169527035696,51.235548358197505,6.698555033429572", + "point": "51.23493244542191,6.703169527035696", + "startLcPosition": "16", + "impact": { + "lower": "Kaarst", + "upper": "B\u00fcderich", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> M\u00f6nchengladbach", + "title": "A52 | B\u00fcderich - Kaarst", + "startTimestamp": "2022-06-15T00:00:00+02:00", + "coordinate": { + "lat": 51.23493244542191, + "long": 6.703169527035696 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.06.22 um 00:00 Uhr", + "Ende: 31.12.28 um 23:59 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A52: D\u00fcsseldorf -> M\u00f6nchengladbach, zwischen AS B\u00fcderich und 4.3 km vor AK Kaarst", + "", + "L\u00e4nge: 0.33 km | Maximale Durchfahrtsbreite: 8.85 m", + "", + "A52 Kompensationsma\u00dfnahme AS B\u00fcderich" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.703169527, + 51.234932445 + ], + [ + 6.7026681, + 51.235013701 + ], + [ + 6.7015681, + 51.235184101 + ], + [ + 6.7006025, + 51.235317401 + ], + [ + 6.6996214, + 51.235436701 + ], + [ + 6.698555033, + 51.235548358 + ] + ] + } + }, + { + "identifier": "2026-017807--vi-bs.2026-04-13_08-00-00-000_025.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.3497088168823,6.857598873357081,51.34246155319838,6.849365633536865", + "point": "51.3497088168823,6.857598873357081", + "startLcPosition": "25", + "impact": { + "lower": "Tiefenbroich", + "upper": "Breitscheid", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A52 | Breitscheid - Tiefenbroich", + "coordinate": { + "lat": 51.3497088168823, + "long": 6.857598873357081 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A52: Essen -> D\u00fcsseldorf, zwischen 0.7 km hinter AS Breitscheid und 2.6 km vor AS Tiefenbroich", + "", + "L\u00e4nge: 0.99 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A52 von Breitscheid (AS) nach Tiefenbroich (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.857598873, + 51.349708817 + ], + [ + 6.8575006, + 51.349625801 + ], + [ + 6.8570135, + 51.349214301 + ], + [ + 6.8557411, + 51.348184501 + ], + [ + 6.8537244, + 51.346463401 + ], + [ + 6.8534203, + 51.346202001 + ], + [ + 6.8531024, + 51.345933901 + ], + [ + 6.852704, + 51.345600301 + ], + [ + 6.8517395, + 51.344784401 + ], + [ + 6.851162, + 51.344287401 + ], + [ + 6.8496601, + 51.342834401 + ], + [ + 6.849365634, + 51.342461553 + ] + ] + } + }, + { + "identifier": "2026-017811--vi-bs.2026-04-15_08-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.36585067514983,6.8824621948290075,51.362390087334965,6.877887425443842", + "point": "51.36585067514983,6.8824621948290075", + "startLcPosition": "26", + "impact": { + "lower": "Breitscheid", + "upper": "Auberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A52 | Auberg - Breitscheid", + "coordinate": { + "lat": 51.36585067514983, + "long": 6.8824621948290075 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch und Donnerstag zwischen dem 15.04.26 und dem 16.04.26 von 08:00 bis 17:00 Uhr.", + "", + "A52: Essen -> D\u00fcsseldorf, zwischen 0.9 km hinter Auberg und 1.3 km vor AS Breitscheid", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A52 von Auberg (Parkplatz) nach Breitscheid (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.882462195, + 51.365850675 + ], + [ + 6.881571, + 51.365090801 + ], + [ + 6.8806856, + 51.364376801 + ], + [ + 6.8793936, + 51.363408601 + ], + [ + 6.8785455, + 51.362813901 + ], + [ + 6.877887425, + 51.362390087 + ] + ] + } + }, + { + "identifier": "2026-003507--vi-bs.2026-04-13_15-00-00-000.devi-zus.2026-01-28_00-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.38100647393556,6.906340824784436,51.38306213037119,6.915823428836657", + "point": "51.38100647393556,6.906340824784436", + "startLcPosition": "27", + "impact": { + "lower": "Ickten", + "upper": "Ruhrtalbr\u00fccke", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A52 | Ruhrtalbr\u00fccke - Ickten", + "startTimestamp": "2026-04-13T15:00:00+02:00", + "coordinate": { + "lat": 51.38100647393556, + "long": 6.906340824784436 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 15:00 Uhr", + "Ende: 25.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A52: D\u00fcsseldorf -> Essen, zwischen 0.2 km hinter Ruhrtalbr\u00fccke und 0.2 km vor Ickten", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A52 \u00dcKO Mintarder Ruhrtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.906340825, + 51.381006474 + ], + [ + 6.9065196, + 51.381060601 + ], + [ + 6.907102, + 51.381230001 + ], + [ + 6.9076887, + 51.381393501 + ], + [ + 6.9083392, + 51.381566901 + ], + [ + 6.9089946, + 51.381733201 + ], + [ + 6.9096544, + 51.381892301 + ], + [ + 6.9103186, + 51.382044301 + ], + [ + 6.9109869, + 51.382189001 + ], + [ + 6.9116592, + 51.382326501 + ], + [ + 6.9123351, + 51.382456601 + ], + [ + 6.9130108, + 51.382588901 + ], + [ + 6.9136747, + 51.382709001 + ], + [ + 6.9146806, + 51.382881101 + ], + [ + 6.915823429, + 51.38306213 + ] + ] + } + }, + { + "identifier": "2026-003507--vi-bs.2026-03-23_00-00-00-000.devi-zus.2026-01-28_00-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.38100647393556,6.906340824784436,51.38306213037119,6.915823428836657", + "point": "51.38100647393556,6.906340824784436", + "startLcPosition": "27", + "impact": { + "lower": "Ickten", + "upper": "Ruhrtalbr\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A52 | Ruhrtalbr\u00fccke - Ickten", + "startTimestamp": "2026-03-23T00:00:00+01:00", + "coordinate": { + "lat": 51.38100647393556, + "long": 6.906340824784436 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 00:00 Uhr", + "Ende: 13.04.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A52: D\u00fcsseldorf -> Essen, zwischen 0.2 km hinter Ruhrtalbr\u00fccke und 0.2 km vor Ickten", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A52 \u00dcKO Mintarder Ruhrtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.906340825, + 51.381006474 + ], + [ + 6.9065196, + 51.381060601 + ], + [ + 6.907102, + 51.381230001 + ], + [ + 6.9076887, + 51.381393501 + ], + [ + 6.9083392, + 51.381566901 + ], + [ + 6.9089946, + 51.381733201 + ], + [ + 6.9096544, + 51.381892301 + ], + [ + 6.9103186, + 51.382044301 + ], + [ + 6.9109869, + 51.382189001 + ], + [ + 6.9116592, + 51.382326501 + ], + [ + 6.9123351, + 51.382456601 + ], + [ + 6.9130108, + 51.382588901 + ], + [ + 6.9136747, + 51.382709001 + ], + [ + 6.9146806, + 51.382881101 + ], + [ + 6.915823429, + 51.38306213 + ] + ] + } + }, + { + "identifier": "2026-003507--vi-bs.2026-04-15_00-00-00-000.devi-zus.2026-01-28_00-00-00-000.de21", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.38436576682536,6.922682853072332,51.38243861255265,6.911598010156494", + "point": "51.38436576682536,6.922682853072332", + "startLcPosition": "29", + "impact": { + "lower": "Ruhrtalbr\u00fccke", + "upper": "Essen-Kettwig", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A52 | Essen-Kettwig - Ruhrtalbr\u00fccke", + "startTimestamp": "2026-04-15T00:00:00+02:00", + "coordinate": { + "lat": 51.38436576682536, + "long": 6.922682853072332 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 00:00 Uhr", + "Ende: 25.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A52: Essen -> D\u00fcsseldorf, zwischen 2.8 km hinter AS Essen-Kettwig und 0.6 km vor Ruhrtalbr\u00fccke", + "", + "L\u00e4nge: 0.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A52 \u00dcKO Mintarder Ruhrtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.922682853, + 51.384365767 + ], + [ + 6.9218289, + 51.384198601 + ], + [ + 6.920072, + 51.383887101 + ], + [ + 6.9179009, + 51.383519001 + ], + [ + 6.9158586, + 51.383197101 + ], + [ + 6.9146243, + 51.382995601 + ], + [ + 6.9140925, + 51.382908201 + ], + [ + 6.9136281, + 51.382814401 + ], + [ + 6.912947, + 51.382696101 + ], + [ + 6.9122692, + 51.382570601 + ], + [ + 6.91159801, + 51.382438613 + ] + ] + } + }, + { + "identifier": "2026-011165--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-03-20_22-00-00-000_003.de6", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.41924008943088,6.979726968947565,51.421509992974926,6.984228474458053", + "point": "51.41924008943088,6.979726968947565", + "startLcPosition": "30", + "impact": { + "lower": "Essen-R\u00fcttenscheid", + "upper": "Essen-Haarzopf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " D\u00fcsseldorf -> Essen", + "title": "A52 | Essen-Haarzopf - Essen-R\u00fcttenscheid", + "coordinate": { + "lat": 51.41924008943088, + "long": 6.979726968947565 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 20:00 bis 23:45 Uhr", + "14.04.26 von 00:00 bis 05:00 Uhr", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A52: D\u00fcsseldorf -> Essen, zwischen 0.6 km hinter AS Essen-Haarzopf und 1.1 km vor AS Essen-R\u00fcttenscheid", + "", + "L\u00e4nge: 0.41 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Vollsperrung A52 FB Polizeikaserne Nachholtermin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.979726969, + 51.419240089 + ], + [ + 6.9806174, + 51.419781201 + ], + [ + 6.9812219, + 51.420123701 + ], + [ + 6.9820659, + 51.420561001 + ], + [ + 6.9828569, + 51.420945501 + ], + [ + 6.9830412, + 51.421019201 + ], + [ + 6.9834177, + 51.421199801 + ], + [ + 6.9840803, + 51.421461501 + ], + [ + 6.984228474, + 51.421509993 + ] + ] + } + }, + { + "identifier": "2026-011165--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-03-20_22-00-00-000_003.de8", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.42161074984868,6.984123819734023,51.41996578555173,6.980657895202644", + "point": "51.42161074984868,6.984123819734023", + "startLcPosition": "31", + "impact": { + "lower": "Essen-Haarzopf", + "upper": "Essen-R\u00fcttenscheid", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Essen -> D\u00fcsseldorf", + "title": "A52 | Essen-R\u00fcttenscheid - Essen-Haarzopf", + "coordinate": { + "lat": 51.42161074984868, + "long": 6.984123819734023 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A52: Essen -> D\u00fcsseldorf, zwischen 1.1 km hinter AS Essen-R\u00fcttenscheid und 0.7 km vor AS Essen-Haarzopf", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Vollsperrung A52 FB Polizeikaserne Nachholtermin" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.98412382, + 51.42161075 + ], + [ + 6.9837021, + 51.421459401 + ], + [ + 6.9828775, + 51.421125001 + ], + [ + 6.9827215, + 51.421059801 + ], + [ + 6.9818902, + 51.420662401 + ], + [ + 6.9808986, + 51.420104701 + ], + [ + 6.980657895, + 51.419965786 + ] + ] + } + }, + { + "identifier": "2023-004610--vi-bs.2024-11-05_19-00-00-000.devi-zus.2024-08-26_19-00-00-000_003.f.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.67599452748268,7.113910277858951,51.694243454440205,7.13874785147471", + "point": "51.67599452748268,7.113910277858951", + "startLcPosition": "43", + "impact": { + "lower": "Marl-Nord", + "upper": "Marl-Zentrum", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gelsenkirchen -> Marl", + "title": "A52 | Marl-Zentrum - Marl-Nord", + "startTimestamp": "2024-11-05T19:00:00+01:00", + "coordinate": { + "lat": 51.67599452748268, + "long": 7.113910277858951 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.11.24 um 19:00 Uhr", + "Ende: 29.04.26 um 23:45 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "A52: Gelsenkirchen -> Marl, zwischen 0.9 km hinter AS Marl-Zentrum und 1.4 km vor AK Marl-Nord", + "", + "L\u00e4nge: 2.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.8 m", + "", + "A52 - Neubau L\u00e4rmschutzwand - AlD 4610" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.113910278, + 51.675994527 + ], + [ + 7.1148747, + 51.676062201 + ], + [ + 7.1155605, + 51.676115001 + ], + [ + 7.1163748, + 51.676190501 + ], + [ + 7.1171997, + 51.676281701 + ], + [ + 7.1179013, + 51.676374601 + ], + [ + 7.1186876, + 51.676511401 + ], + [ + 7.1198491, + 51.676745701 + ], + [ + 7.1206129, + 51.676940501 + ], + [ + 7.1213691, + 51.677170901 + ], + [ + 7.1221044, + 51.677429301 + ], + [ + 7.1228103, + 51.677705901 + ], + [ + 7.1240657, + 51.678330001 + ], + [ + 7.1245723, + 51.678607401 + ], + [ + 7.1252802, + 51.679019701 + ], + [ + 7.1269668, + 51.680106401 + ], + [ + 7.1289238, + 51.681480301 + ], + [ + 7.1314121, + 51.683357101 + ], + [ + 7.131918, + 51.683738701 + ], + [ + 7.132303, + 51.684029101 + ], + [ + 7.1335548, + 51.685055401 + ], + [ + 7.1351102, + 51.686425001 + ], + [ + 7.1367319, + 51.688375301 + ], + [ + 7.1377533, + 51.690226901 + ], + [ + 7.138082, + 51.691442201 + ], + [ + 7.1381091, + 51.691541801 + ], + [ + 7.1384184, + 51.692670401 + ], + [ + 7.138747851, + 51.694243454 + ] + ] + } + }, + { + "identifier": "2023-004610--vi-bs.2024-11-05_19-00-00-000.devi-zus.2024-08-26_19-00-00-000_003.f.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.67524518566371,7.1031473767493205,51.67599553575006,7.11392464594586", + "point": "51.67524518566371,7.1031473767493205", + "startLcPosition": "43", + "impact": { + "lower": "Marl-Hamm", + "upper": "Marl-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gelsenkirchen -> Marl", + "title": "A52 | Marl-Zentrum - Marl-Hamm", + "startTimestamp": "2024-11-05T19:00:00+01:00", + "coordinate": { + "lat": 51.67524518566371, + "long": 7.1031473767493205 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.11.24 um 19:00 Uhr", + "Ende: 29.04.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "A52: Gelsenkirchen -> Marl, zwischen 0.1 km hinter AS Marl-Zentrum und 0.8 km vor AS Marl-Hamm", + "", + "L\u00e4nge: 0.75 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A52 - Neubau L\u00e4rmschutzwand - AlD 4610" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.103147377, + 51.675245186 + ], + [ + 7.1053487, + 51.675394501 + ], + [ + 7.107209, + 51.675524001 + ], + [ + 7.1075576, + 51.675550001 + ], + [ + 7.1080153, + 51.675580701 + ], + [ + 7.113924646, + 51.675995536 + ] + ] + } + }, + { + "identifier": "2023-004610--vi-bs.2024-11-05_19-00-00-000.devi-zus.2024-08-26_19-00-00-000_003.f.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.69425922319408,7.138559140447243,51.67609380537701,7.113892352954403", + "point": "51.69425922319408,7.138559140447243", + "startLcPosition": "45", + "impact": { + "lower": "Marl-Zentrum", + "upper": "Marl-Nord", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Marl -> Gelsenkirchen", + "title": "A52 | Marl-Nord - Marl-Zentrum", + "startTimestamp": "2024-11-05T19:00:00+01:00", + "coordinate": { + "lat": 51.69425922319408, + "long": 7.138559140447243 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.11.24 um 19:00 Uhr", + "Ende: 29.04.26 um 23:45 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "A52: Marl -> Gelsenkirchen, zwischen 1.5 km hinter AK Marl-Nord und 0.9 km vor AS Marl-Zentrum", + "", + "L\u00e4nge: 2.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A52 - Neubau L\u00e4rmschutzwand - AlD 4610" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.13855914, + 51.694259223 + ], + [ + 7.1381996, + 51.692685101 + ], + [ + 7.1378865, + 51.691494101 + ], + [ + 7.1378578, + 51.691390501 + ], + [ + 7.1375215, + 51.690232301 + ], + [ + 7.1365307, + 51.688424301 + ], + [ + 7.1349756, + 51.686507301 + ], + [ + 7.1334261, + 51.685121901 + ], + [ + 7.1317935, + 51.683820901 + ], + [ + 7.1313019, + 51.683433701 + ], + [ + 7.1295447, + 51.682106301 + ], + [ + 7.1288615, + 51.681626901 + ], + [ + 7.126528, + 51.679978201 + ], + [ + 7.1244968, + 51.678703201 + ], + [ + 7.1239871, + 51.678432401 + ], + [ + 7.1228995, + 51.677886901 + ], + [ + 7.1218016, + 51.677433101 + ], + [ + 7.1204832, + 51.677010301 + ], + [ + 7.1197088, + 51.676828301 + ], + [ + 7.1184099, + 51.676583001 + ], + [ + 7.1172859, + 51.676413301 + ], + [ + 7.1162508, + 51.676279701 + ], + [ + 7.1155073, + 51.676216401 + ], + [ + 7.1148171, + 51.676158101 + ], + [ + 7.113892353, + 51.676093805 + ] + ] + } + }, + { + "identifier": "2023-004610--vi-bs.2024-11-05_19-00-00-000.devi-zus.2024-08-26_19-00-00-000_003.f.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.701043038452504,7.142210390556922,51.69425922319408,7.138559140447243", + "point": "51.701043038452504,7.142210390556922", + "startLcPosition": "45", + "impact": { + "lower": "Marl-Hamm", + "upper": "Marl-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Marl -> Gelsenkirchen", + "title": "A52 | Marl-Nord - Marl-Hamm", + "startTimestamp": "2024-11-05T19:00:00+01:00", + "coordinate": { + "lat": 51.701043038452504, + "long": 7.142210390556922 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.11.24 um 19:00 Uhr", + "Ende: 29.04.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "A52: Marl -> Gelsenkirchen, zwischen 0.7 km hinter AK Marl-Nord und 2.1 km vor AS Marl-Hamm", + "", + "L\u00e4nge: 0.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A52 - Neubau L\u00e4rmschutzwand - AlD 4610" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.142210391, + 51.701043038 + ], + [ + 7.141803, + 51.700610201 + ], + [ + 7.1414073, + 51.700138901 + ], + [ + 7.1408232, + 51.699319701 + ], + [ + 7.1402767, + 51.698505301 + ], + [ + 7.1397944, + 51.697668701 + ], + [ + 7.1393791, + 51.696803101 + ], + [ + 7.1389894, + 51.695802201 + ], + [ + 7.1386791, + 51.694784401 + ], + [ + 7.13855914, + 51.694259223 + ] + ] + } + }, + { + "identifier": "2023-004610--vi-bs.2024-11-05_19-00-00-000.devi-zus.2024-08-26_19-00-00-000_003.f.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.678275525262464,7.124949531434006,51.68141852045841,7.128835795623101", + "point": "51.678275525262464,7.124949531434006", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Marl-Hamm (aus Richtung Marl-Zentrum) nach A52", + "title": "A52 - Neubau L\u00e4rmschutzwand - AlD 4610", + "startTimestamp": "2024-11-05T19:00:00+01:00", + "coordinate": { + "lat": 51.678275525262464, + "long": 7.124949531434006 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.11.24 um 19:00 Uhr", + "Ende: 29.04.26 um 23:45 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "Von Auffahrt auf die A52: AS Marl-Hamm (aus Richtung Marl-Zentrum) nach A52: Gelsenkirchen -> Marl, zwischen AS Marl-Hamm und 3.1 km vor AK Marl-Nord", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A52 - Neubau L\u00e4rmschutzwand - AlD 4610" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.124949531, + 51.678275525 + ], + [ + 7.1251795, + 51.678500201 + ], + [ + 7.12543, + 51.678765001 + ], + [ + 7.1257996, + 51.679138101 + ], + [ + 7.1262562, + 51.679523801 + ], + [ + 7.126869, + 51.679968501 + ], + [ + 7.1269668, + 51.680106401 + ], + [ + 7.128835796, + 51.68141852 + ] + ] + } + }, + { + "identifier": "2023-004610--vi-bs.2024-09-30_19-00-00-000.devi-zus.2024-08-26_19-00-00-000_003.f.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.6789371612677,7.123695449463373,51.676339036838925,7.1167105105834", + "point": "51.6789371612677,7.123695449463373", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Marl-Hamm (aus Richtung Marl-Nord) nach A52", + "title": "A52 - Neubau L\u00e4rmschutzwand - AlD 4610", + "startTimestamp": "2024-09-30T19:00:00+02:00", + "coordinate": { + "lat": 51.6789371612677, + "long": 7.123695449463373 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.24 um 19:00 Uhr", + "Ende: 29.04.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "Von Auffahrt auf die A52: AS Marl-Hamm (aus Richtung Marl-Nord) nach A52: Marl -> Gelsenkirchen, zwischen AS Marl-Hamm und 1.1 km vor AS Marl-Zentrum", + "", + "L\u00e4nge: 0.58 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A52 - Neubau L\u00e4rmschutzwand - AlD 4610" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.123695449, + 51.678937161 + ], + [ + 7.123175, + 51.678533301 + ], + [ + 7.1225173, + 51.678053901 + ], + [ + 7.1221227, + 51.677803201 + ], + [ + 7.1215741, + 51.677524701 + ], + [ + 7.1210287, + 51.677286001 + ], + [ + 7.1205795, + 51.677126801 + ], + [ + 7.1198801, + 51.676923901 + ], + [ + 7.1197088, + 51.676828301 + ], + [ + 7.1184099, + 51.676583001 + ], + [ + 7.1172859, + 51.676413301 + ], + [ + 7.116710511, + 51.676339037 + ] + ] + } + }, + { + "identifier": "2023-004610--vi-bs.2024-09-30_19-00-00-000.devi-zus.2024-08-26_19-00-00-000_003.f.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.680973280952095,7.1278005979141525,51.67999886873575,7.1254579073495465", + "point": "51.680973280952095,7.1278005979141525", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Marl-Hamm (aus Richtung Marl-Nord)", + "title": "A52 - Neubau L\u00e4rmschutzwand - AlD 4610", + "startTimestamp": "2024-09-30T19:00:00+02:00", + "coordinate": { + "lat": 51.680973280952095, + "long": 7.1278005979141525 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.24 um 19:00 Uhr", + "Ende: 29.04.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "Abfahrt von der A52: AS Marl-Hamm (aus Richtung Marl-Nord)", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A52 - Neubau L\u00e4rmschutzwand - AlD 4610" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.127800598, + 51.680973281 + ], + [ + 7.1270463, + 51.680474501 + ], + [ + 7.1263819, + 51.680147601 + ], + [ + 7.1261647, + 51.680071501 + ], + [ + 7.1259799, + 51.680037501 + ], + [ + 7.1256506, + 51.679992801 + ], + [ + 7.125457907, + 51.679998869 + ] + ] + } + }, + { + "identifier": "2023-004610--vi-bs.2024-09-30_19-00-00-000.devi-zus.2024-08-26_19-00-00-000_003.f.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.67662257535877,7.119523304265351,51.67776537327065,7.12371964757041", + "point": "51.67662257535877,7.119523304265351", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Marl-Hamm (aus Richtung Marl-Zentrum)", + "title": "A52 - Neubau L\u00e4rmschutzwand - AlD 4610", + "startTimestamp": "2024-09-30T19:00:00+02:00", + "coordinate": { + "lat": 51.67662257535877, + "long": 7.119523304265351 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.24 um 19:00 Uhr", + "Ende: 29.04.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "Abfahrt von der A52: AS Marl-Hamm (aus Richtung Marl-Zentrum)", + "", + "L\u00e4nge: 0.32 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A52 - Neubau L\u00e4rmschutzwand - AlD 4610" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.119523304, + 51.676622575 + ], + [ + 7.1198805, + 51.676695301 + ], + [ + 7.1214309, + 51.677090401 + ], + [ + 7.1232342, + 51.677600301 + ], + [ + 7.123719648, + 51.677765373 + ] + ] + } + }, + { + "identifier": "2023-004610--vi-bs.2024-09-30_19-00-00-000.devi-zus.2024-08-26_19-00-00-000_003.f.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.674983268209616,7.10389861854298,51.67556137232664,7.107727130613343", + "point": "51.674983268209616,7.10389861854298", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Marl-Zentrum (aus Richtung Marl-Brassert) nach A52", + "title": "A52 - Neubau L\u00e4rmschutzwand - AlD 4610", + "startTimestamp": "2024-09-30T19:00:00+02:00", + "coordinate": { + "lat": 51.674983268209616, + "long": 7.10389861854298 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.24 um 19:00 Uhr", + "Ende: 29.04.26 um 23:45 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.04.26)", + "", + "Von Auffahrt auf die A52: AS Marl-Zentrum (aus Richtung Marl-Brassert) nach A52: Gelsenkirchen -> Marl, zwischen AS Marl-Zentrum und 1.2 km vor AS Marl-Hamm", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A52 - Neubau L\u00e4rmschutzwand - AlD 4610" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.103898619, + 51.674983268 + ], + [ + 7.103972, + 51.675057501 + ], + [ + 7.1040716, + 51.675137701 + ], + [ + 7.1041837, + 51.675192601 + ], + [ + 7.104301, + 51.675234101 + ], + [ + 7.1045312, + 51.675286401 + ], + [ + 7.1053487, + 51.675394501 + ], + [ + 7.107209, + 51.675524001 + ], + [ + 7.1075576, + 51.675550001 + ], + [ + 7.107727131, + 51.675561372 + ] + ] + } + }, + { + "identifier": "2026-017815--vi-bs.2026-04-16_08-00-00-000_009.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35595788615294,6.863348727051907,51.35550811392653,6.863219400113717", + "point": "51.35595788615294,6.863348727051907", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": "", + "title": "A52 Sonstiges", + "coordinate": { + "lat": 51.35595788615294, + "long": 6.863348727051907 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 17:00 Uhr", + "17.04.26 von 08:00 bis 17:00 Uhr", + "", + "Abfahrt von der B1 (K\u00f6lner Stra\u00dfe)", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A52 Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.863348727, + 51.355957886 + ], + [ + 6.8633011, + 51.355739001 + ], + [ + 6.8632289, + 51.355531301 + ], + [ + 6.8632194, + 51.355508114 + ] + ] + } + } + ] + }, + "A57": { + "roadworks": [ + { + "identifier": "2023-000192--vi-bs.2026-04-06_07-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de628", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.98172931415763,6.909951865691729,50.982841201853915,6.9087397229404335", + "point": "50.98172931415763,6.909951865691729", + "startLcPosition": "1", + "impact": { + "lower": "K\u00f6ln-Longerich", + "upper": "K\u00f6ln-Bickendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Krefeld", + "title": "A57 | K\u00f6ln-Bickendorf - K\u00f6ln-Longerich", + "coordinate": { + "lat": 50.98172931415763, + "long": 6.909951865691729 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 05:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A57: K\u00f6ln -> Krefeld, zwischen 1.4 km hinter AS K\u00f6ln-Bickendorf und 1.6 km vor AS K\u00f6ln-Longerich", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.909951866, + 50.981729314 + ], + [ + 6.9095953, + 50.982066201 + ], + [ + 6.9088606, + 50.982731901 + ], + [ + 6.908739723, + 50.982841202 + ] + ] + } + }, + { + "identifier": "2026-017217--vi-bs.2026-04-16_10-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.973131131727584,6.917643772011447,50.98968371216038,6.900636625164193", + "point": "50.973131131727584,6.917643772011447", + "startLcPosition": "1", + "impact": { + "lower": "K\u00f6ln-Longerich", + "upper": "K\u00f6ln-Bickendorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Krefeld", + "title": "A57 | K\u00f6ln-Bickendorf - K\u00f6ln-Longerich", + "coordinate": { + "lat": 50.973131131727584, + "long": 6.917643772011447 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 10:00 bis 13:00 Uhr", + "", + "A57: K\u00f6ln -> Krefeld, zwischen 0.3 km hinter AS K\u00f6ln-Bickendorf und 0.6 km vor AS K\u00f6ln-Longerich", + "", + "L\u00e4nge: 2.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A57 von K\u00f6ln-Bickendorf (AS) nach K\u00f6ln-Longerich (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.917643772, + 50.973131132 + ], + [ + 6.9174814, + 50.973418901 + ], + [ + 6.917164, + 50.973879001 + ], + [ + 6.9167556, + 50.974480201 + ], + [ + 6.9163017, + 50.975099401 + ], + [ + 6.9159659, + 50.975534601 + ], + [ + 6.9153283, + 50.976319801 + ], + [ + 6.9144658, + 50.977265201 + ], + [ + 6.9130665, + 50.978727701 + ], + [ + 6.9113503, + 50.980408001 + ], + [ + 6.9095953, + 50.982066201 + ], + [ + 6.9088606, + 50.982731901 + ], + [ + 6.9064425, + 50.984918301 + ], + [ + 6.9049851, + 50.986151301 + ], + [ + 6.9037123, + 50.987224201 + ], + [ + 6.9015644, + 50.988945501 + ], + [ + 6.900636625, + 50.989683712 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2026-04-06_07-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de630", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.01106719642845,6.872459600280414,51.006613032288406,6.8784728700583395", + "point": "51.01106719642845,6.872459600280414", + "startLcPosition": "5", + "impact": { + "lower": "K\u00f6ln-Nord", + "upper": "Esch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> K\u00f6ln", + "title": "A57 | Esch - K\u00f6ln-Nord", + "coordinate": { + "lat": 51.01106719642845, + "long": 6.872459600280414 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 05:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A57: Krefeld -> K\u00f6ln, zwischen 2.1 km hinter Esch und 1.4 km vor AK K\u00f6ln-Nord", + "", + "L\u00e4nge: 0.65 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.8724596, + 51.011067196 + ], + [ + 6.8737848, + 51.010128901 + ], + [ + 6.8753557, + 51.008989701 + ], + [ + 6.8767012, + 51.007993301 + ], + [ + 6.8769713, + 51.007787101 + ], + [ + 6.87847287, + 51.006613032 + ] + ] + } + }, + { + "identifier": "2026-017626--vi-bs.2026-04-10_09-00-00-000_009.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.22831961968717,6.638410818757548,51.22562543807941,6.638738756342028", + "point": "51.22831961968717,6.638410818757548", + "startLcPosition": "19", + "impact": { + "lower": "Holzb\u00fcttgen", + "upper": "Kaarst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> K\u00f6ln", + "title": "A57 | Kaarst - Holzb\u00fcttgen", + "coordinate": { + "lat": 51.22831961968717, + "long": 6.638410818757548 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "", + "A57: Krefeld -> K\u00f6ln, zwischen 0.5 km hinter AK Kaarst und 1.1 km vor AS Holzb\u00fcttgen", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A57 von Kaarst (AK) nach Holzb\u00fcttgen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.638410819, + 51.22831962 + ], + [ + 6.6384203, + 51.228177001 + ], + [ + 6.6385107, + 51.227087901 + ], + [ + 6.63863, + 51.226207301 + ], + [ + 6.6386534, + 51.226047601 + ], + [ + 6.638738756, + 51.225625438 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de219", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.283897922361746,6.636438562756479,51.308045250966,6.63490515515962", + "point": "51.283897922361746,6.636438562756479", + "startLcPosition": "20", + "impact": { + "lower": "Geism\u00fchle", + "upper": "Bovert", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Krefeld", + "title": "A57 | Bovert - Geism\u00fchle", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.283897922361746, + "long": 6.636438562756479 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "A57: K\u00f6ln -> Krefeld, zwischen 2.0 km hinter AS Bovert und 0.5 km vor Geism\u00fchle", + "", + "L\u00e4nge: 2.72 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.636438563, + 51.283897922 + ], + [ + 6.6361836, + 51.284458301 + ], + [ + 6.6360896, + 51.284697301 + ], + [ + 6.6359777, + 51.285017901 + ], + [ + 6.6358656, + 51.285339701 + ], + [ + 6.6357467, + 51.285768501 + ], + [ + 6.6356496, + 51.286137201 + ], + [ + 6.6355893, + 51.286449701 + ], + [ + 6.6355337, + 51.286774501 + ], + [ + 6.6354886, + 51.287160901 + ], + [ + 6.635456, + 51.287559501 + ], + [ + 6.635443, + 51.287844901 + ], + [ + 6.635447, + 51.288191201 + ], + [ + 6.6354627, + 51.288492101 + ], + [ + 6.6354842, + 51.288757401 + ], + [ + 6.6355055, + 51.289054701 + ], + [ + 6.6355246, + 51.289331301 + ], + [ + 6.6355496, + 51.289582801 + ], + [ + 6.6355859, + 51.289824201 + ], + [ + 6.635625, + 51.290082401 + ], + [ + 6.6356878, + 51.290406901 + ], + [ + 6.6357806, + 51.290812301 + ], + [ + 6.6360947, + 51.292086001 + ], + [ + 6.6361912, + 51.292476101 + ], + [ + 6.6363435, + 51.293040401 + ], + [ + 6.6365676, + 51.293927901 + ], + [ + 6.6368233, + 51.294895801 + ], + [ + 6.6371189, + 51.296046601 + ], + [ + 6.6372382, + 51.296531601 + ], + [ + 6.6373038, + 51.296821301 + ], + [ + 6.6373683, + 51.297137401 + ], + [ + 6.6374293, + 51.297455401 + ], + [ + 6.6374738, + 51.297798401 + ], + [ + 6.6375078, + 51.298079901 + ], + [ + 6.6375289, + 51.298316701 + ], + [ + 6.6375483, + 51.298548001 + ], + [ + 6.637554, + 51.298757101 + ], + [ + 6.6375652, + 51.299064601 + ], + [ + 6.6375617, + 51.299400701 + ], + [ + 6.6375464, + 51.299731301 + ], + [ + 6.6374966, + 51.300279801 + ], + [ + 6.6374473, + 51.300678301 + ], + [ + 6.6373393, + 51.301264001 + ], + [ + 6.6371893, + 51.301876601 + ], + [ + 6.6369353, + 51.302679601 + ], + [ + 6.6368055, + 51.303034601 + ], + [ + 6.636443, + 51.304012501 + ], + [ + 6.6350205, + 51.307742801 + ], + [ + 6.634905155, + 51.308045251 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de221", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.280411971957875,6.638848606252249,51.283883788390995,6.6364459871855574", + "point": "51.280411971957875,6.638848606252249", + "startLcPosition": "20", + "impact": { + "lower": "Meerbusch", + "upper": "Bovert", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Krefeld", + "title": "A57 | Bovert - Meerbusch", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.280411971957875, + "long": 6.638848606252249 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "A57: K\u00f6ln -> Krefeld, zwischen 1.6 km hinter AS Bovert und 0.8 km vor AK Meerbusch", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.638848606, + 51.280411972 + ], + [ + 6.6384561, + 51.280881701 + ], + [ + 6.6381357, + 51.281289901 + ], + [ + 6.6377336, + 51.281818301 + ], + [ + 6.6374036, + 51.282273201 + ], + [ + 6.637098, + 51.282730401 + ], + [ + 6.6367653, + 51.283279001 + ], + [ + 6.636445987, + 51.283883788 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de231", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.308045250966,6.63490515515962,51.32127660119138,6.631133217381346", + "point": "51.308045250966,6.63490515515962", + "startLcPosition": "21", + "impact": { + "lower": "Krefeld-Oppum", + "upper": "Meerbusch", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Krefeld", + "title": "A57 | Meerbusch - Krefeld-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.308045250966, + "long": 6.63490515515962 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "A57: K\u00f6ln -> Krefeld, zwischen 1.9 km hinter AK Meerbusch und 0.5 km vor AS Krefeld-Oppum", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.634905155, + 51.308045251 + ], + [ + 6.6347265, + 51.308513701 + ], + [ + 6.634615, + 51.308761301 + ], + [ + 6.6339348, + 51.310552401 + ], + [ + 6.633537, + 51.311595801 + ], + [ + 6.6331167, + 51.312698201 + ], + [ + 6.6329736, + 51.313163601 + ], + [ + 6.632573, + 51.314285301 + ], + [ + 6.6322454, + 51.315256201 + ], + [ + 6.6320354, + 51.316005301 + ], + [ + 6.6318392, + 51.316819201 + ], + [ + 6.6316647, + 51.317675301 + ], + [ + 6.6314504, + 51.318956701 + ], + [ + 6.6312475, + 51.320391201 + ], + [ + 6.6312368, + 51.320473901 + ], + [ + 6.631133217, + 51.321276601 + ] + ] + } + }, + { + "identifier": "2026-017588--vi-bs.2026-04-10_09-00-00-000_008.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.27036349426195,6.643389629612939,51.26502512472217,6.643657839300876", + "point": "51.27036349426195,6.643389629612939", + "startLcPosition": "21", + "impact": { + "lower": "Kaarst", + "upper": "Meerbusch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> K\u00f6ln", + "title": "A57 | Meerbusch - Kaarst", + "coordinate": { + "lat": 51.27036349426195, + "long": 6.643389629612939 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "", + "A57: Krefeld -> K\u00f6ln, zwischen 2.4 km hinter AK Meerbusch und 3.6 km vor AK Kaarst", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A57 von Meerbusch (AK) nach Kaarst (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.64338963, + 51.270363494 + ], + [ + 6.6434386, + 51.269500001 + ], + [ + 6.6434656, + 51.268909401 + ], + [ + 6.6435118, + 51.268060401 + ], + [ + 6.6435252, + 51.267798201 + ], + [ + 6.6435498, + 51.267240101 + ], + [ + 6.6435885, + 51.266587001 + ], + [ + 6.643611, + 51.266171901 + ], + [ + 6.6436485, + 51.265480901 + ], + [ + 6.643657839, + 51.265025125 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de217", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.30801696022441,6.634713466430923,51.28385853235224,6.636231649743778", + "point": "51.30801696022441,6.634713466430923", + "startLcPosition": "22", + "impact": { + "lower": "Bovert", + "upper": "Geism\u00fchle", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Krefeld -> K\u00f6ln", + "title": "A57 | Geism\u00fchle - Bovert", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.30801696022441, + "long": 6.634713466430923 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "A57: Krefeld -> K\u00f6ln, zwischen 0.5 km hinter Geism\u00fchle und 2.0 km vor AS Bovert", + "", + "L\u00e4nge: 2.72 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.634713466, + 51.30801696 + ], + [ + 6.635001, + 51.307239701 + ], + [ + 6.6362543, + 51.303985301 + ], + [ + 6.6366531, + 51.302919101 + ], + [ + 6.6367683, + 51.302609201 + ], + [ + 6.6370031, + 51.301845901 + ], + [ + 6.6371626, + 51.301248001 + ], + [ + 6.6372656, + 51.300659101 + ], + [ + 6.6373186, + 51.300284201 + ], + [ + 6.6373701, + 51.299728901 + ], + [ + 6.637388, + 51.299406501 + ], + [ + 6.6373899, + 51.299066201 + ], + [ + 6.6373809, + 51.298750001 + ], + [ + 6.6373735, + 51.298557101 + ], + [ + 6.6373602, + 51.298323701 + ], + [ + 6.6373402, + 51.298096401 + ], + [ + 6.6373044, + 51.297799301 + ], + [ + 6.6372591, + 51.297465001 + ], + [ + 6.6371964, + 51.297148401 + ], + [ + 6.6371336, + 51.296830901 + ], + [ + 6.6370749, + 51.296570801 + ], + [ + 6.6370476, + 51.296491901 + ], + [ + 6.6366483, + 51.294914901 + ], + [ + 6.6363859, + 51.293935901 + ], + [ + 6.6361058, + 51.292820101 + ], + [ + 6.6359165, + 51.292105701 + ], + [ + 6.6355946, + 51.290834501 + ], + [ + 6.6355009, + 51.290411201 + ], + [ + 6.6354325, + 51.290097201 + ], + [ + 6.6353767, + 51.289839001 + ], + [ + 6.6353305, + 51.289598401 + ], + [ + 6.6352944, + 51.289339201 + ], + [ + 6.6352626, + 51.289066501 + ], + [ + 6.6352392, + 51.288749501 + ], + [ + 6.6352281, + 51.288496401 + ], + [ + 6.6352151, + 51.288187201 + ], + [ + 6.6352146, + 51.287845501 + ], + [ + 6.6352379, + 51.287555101 + ], + [ + 6.6352725, + 51.287157901 + ], + [ + 6.635321, + 51.286760201 + ], + [ + 6.6353736, + 51.286430301 + ], + [ + 6.6355229, + 51.285745501 + ], + [ + 6.6356536, + 51.285310001 + ], + [ + 6.6357572, + 51.284982101 + ], + [ + 6.6358684, + 51.284664701 + ], + [ + 6.6359718, + 51.284422601 + ], + [ + 6.6362299, + 51.283861901 + ], + [ + 6.63623165, + 51.283858532 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de227", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32127660119138,6.631133217381346,51.32745115235016,6.629728424472177", + "point": "51.32127660119138,6.631133217381346", + "startLcPosition": "22", + "impact": { + "lower": "Krefeld-Zentrum", + "upper": "Geism\u00fchle", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Krefeld", + "title": "A57 | Geism\u00fchle - Krefeld-Zentrum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.32127660119138, + "long": 6.631133217381346 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "A57: K\u00f6ln -> Krefeld, zwischen 1.0 km hinter Geism\u00fchle und 1.9 km vor AS Krefeld-Zentrum", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.631133217, + 51.321276601 + ], + [ + 6.6311207, + 51.321373601 + ], + [ + 6.631051, + 51.321948701 + ], + [ + 6.630948, + 51.322578601 + ], + [ + 6.6307469, + 51.323724401 + ], + [ + 6.6305348, + 51.324709201 + ], + [ + 6.6305042, + 51.324851001 + ], + [ + 6.6303303, + 51.325641701 + ], + [ + 6.6302027, + 51.326066701 + ], + [ + 6.6300852, + 51.326403701 + ], + [ + 6.6297472, + 51.327401301 + ], + [ + 6.629728424, + 51.327451152 + ] + ] + } + }, + { + "identifier": "2025-016050--vi-bs.2026-04-08_05-00-00-000.devi-zus.2025-09-22_22-00-00-000_002.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.30801696022441,6.634713466430923,51.14282268144777,6.769123950367913", + "point": "51.30801696022441,6.634713466430923", + "startLcPosition": "22", + "impact": { + "lower": "Nievenheim", + "upper": "Geism\u00fchle", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> K\u00f6ln", + "title": "A57 | Geism\u00fchle - Nievenheim", + "coordinate": { + "lat": 51.30801696022441, + "long": 6.634713466430923 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 05:00 bis 20:00 Uhr", + "14.04.26 von 05:00 bis 20:00 Uhr", + "15.04.26 von 05:00 bis 20:00 Uhr", + "27.04.26 von 05:00 bis 20:00 Uhr", + "Jeden Dienstag, Mittwoch und Donnerstag zwischen dem 28.04.26 und dem 30.04.26 von 05:00 bis 20:00 Uhr.", + "", + "A57: Krefeld -> K\u00f6ln, zwischen 0.5 km hinter Geism\u00fchle und 3.0 km vor Nievenheim", + "", + "L\u00e4nge: 23.62 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A44 AS Lank-Latum bis AS D-Messe - Deckenerneuerung -" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.634713466, + 51.30801696 + ], + [ + 6.635001, + 51.307239701 + ], + [ + 6.6362543, + 51.303985301 + ], + [ + 6.6366531, + 51.302919101 + ], + [ + 6.6367683, + 51.302609201 + ], + [ + 6.6370031, + 51.301845901 + ], + [ + 6.6371626, + 51.301248001 + ], + [ + 6.6372656, + 51.300659101 + ], + [ + 6.6373186, + 51.300284201 + ], + [ + 6.6373701, + 51.299728901 + ], + [ + 6.637388, + 51.299406501 + ], + [ + 6.6373899, + 51.299066201 + ], + [ + 6.6373809, + 51.298750001 + ], + [ + 6.6373735, + 51.298557101 + ], + [ + 6.6373602, + 51.298323701 + ], + [ + 6.6373402, + 51.298096401 + ], + [ + 6.6373044, + 51.297799301 + ], + [ + 6.6372591, + 51.297465001 + ], + [ + 6.6371964, + 51.297148401 + ], + [ + 6.6371336, + 51.296830901 + ], + [ + 6.6370749, + 51.296570801 + ], + [ + 6.6370476, + 51.296491901 + ], + [ + 6.6366483, + 51.294914901 + ], + [ + 6.6363859, + 51.293935901 + ], + [ + 6.6361058, + 51.292820101 + ], + [ + 6.6359165, + 51.292105701 + ], + [ + 6.6355946, + 51.290834501 + ], + [ + 6.6355009, + 51.290411201 + ], + [ + 6.6354325, + 51.290097201 + ], + [ + 6.6353767, + 51.289839001 + ], + [ + 6.6353305, + 51.289598401 + ], + [ + 6.6352944, + 51.289339201 + ], + [ + 6.6352626, + 51.289066501 + ], + [ + 6.6352392, + 51.288749501 + ], + [ + 6.6352281, + 51.288496401 + ], + [ + 6.6352151, + 51.288187201 + ], + [ + 6.6352146, + 51.287845501 + ], + [ + 6.6352379, + 51.287555101 + ], + [ + 6.6352725, + 51.287157901 + ], + [ + 6.635321, + 51.286760201 + ], + [ + 6.6353736, + 51.286430301 + ], + [ + 6.6355229, + 51.285745501 + ], + [ + 6.6356536, + 51.285310001 + ], + [ + 6.6357572, + 51.284982101 + ], + [ + 6.6358684, + 51.284664701 + ], + [ + 6.6359718, + 51.284422601 + ], + [ + 6.6362299, + 51.283861901 + ], + [ + 6.6365548, + 51.283236401 + ], + [ + 6.6368779, + 51.282684501 + ], + [ + 6.6371936, + 51.282228501 + ], + [ + 6.6375301, + 51.281762601 + ], + [ + 6.6379418, + 51.281228801 + ], + [ + 6.6382551, + 51.280829901 + ], + [ + 6.6403729, + 51.278290101 + ], + [ + 6.6408483, + 51.277678801 + ], + [ + 6.6414585, + 51.276831101 + ], + [ + 6.6419333, + 51.276068601 + ], + [ + 6.6422998, + 51.275366101 + ], + [ + 6.6426055, + 51.274668501 + ], + [ + 6.6428452, + 51.273978001 + ], + [ + 6.6430554, + 51.273206701 + ], + [ + 6.6431349, + 51.272787601 + ], + [ + 6.6431645, + 51.272631701 + ], + [ + 6.643195, + 51.272470801 + ], + [ + 6.6432947, + 51.271699901 + ], + [ + 6.6433591, + 51.270901801 + ], + [ + 6.6434386, + 51.269500001 + ], + [ + 6.6434656, + 51.268909401 + ], + [ + 6.6435118, + 51.268060401 + ], + [ + 6.6435252, + 51.267798201 + ], + [ + 6.6435498, + 51.267240101 + ], + [ + 6.6435885, + 51.266587001 + ], + [ + 6.643611, + 51.266171901 + ], + [ + 6.6436485, + 51.265480901 + ], + [ + 6.6436688, + 51.264490201 + ], + [ + 6.6437048, + 51.263895801 + ], + [ + 6.6437298, + 51.263482101 + ], + [ + 6.643785, + 51.262664201 + ], + [ + 6.6438509, + 51.260978401 + ], + [ + 6.6438753, + 51.260472901 + ], + [ + 6.643901, + 51.259909301 + ], + [ + 6.6438751, + 51.259491401 + ], + [ + 6.6438239, + 51.259070901 + ], + [ + 6.6437794, + 51.258808601 + ], + [ + 6.6437306, + 51.258555201 + ], + [ + 6.6436577, + 51.258241501 + ], + [ + 6.6435634, + 51.257914101 + ], + [ + 6.6434493, + 51.257573901 + ], + [ + 6.6432076, + 51.256933801 + ], + [ + 6.6428464, + 51.256200001 + ], + [ + 6.6424286, + 51.255468801 + ], + [ + 6.641956, + 51.254720201 + ], + [ + 6.6415168, + 51.254050001 + ], + [ + 6.6407454, + 51.252867601 + ], + [ + 6.6400651, + 51.251760001 + ], + [ + 6.6395828, + 51.250873501 + ], + [ + 6.6394019, + 51.250493701 + ], + [ + 6.6391096, + 51.249855801 + ], + [ + 6.638828, + 51.249201901 + ], + [ + 6.6385831, + 51.248555501 + ], + [ + 6.6383673, + 51.247919701 + ], + [ + 6.638212, + 51.247394401 + ], + [ + 6.6380659, + 51.246869701 + ], + [ + 6.6379126, + 51.246242001 + ], + [ + 6.6377841, + 51.245583801 + ], + [ + 6.6376965, + 51.245030101 + ], + [ + 6.6376168, + 51.244384201 + ], + [ + 6.6375633, + 51.243811401 + ], + [ + 6.6375314, + 51.243221801 + ], + [ + 6.6375266, + 51.242867601 + ], + [ + 6.6375291, + 51.242029401 + ], + [ + 6.6375431, + 51.241566101 + ], + [ + 6.6376108, + 51.240352001 + ], + [ + 6.6376896, + 51.239226301 + ], + [ + 6.6377494, + 51.238371601 + ], + [ + 6.6378433, + 51.237088101 + ], + [ + 6.6379299, + 51.235802001 + ], + [ + 6.6380746, + 51.233389101 + ], + [ + 6.6381286, + 51.232544701 + ], + [ + 6.6381952, + 51.231487001 + ], + [ + 6.6382864, + 51.230189101 + ], + [ + 6.6382999, + 51.229988001 + ], + [ + 6.6384203, + 51.228177001 + ], + [ + 6.6385107, + 51.227087901 + ], + [ + 6.63863, + 51.226207301 + ], + [ + 6.6386534, + 51.226047601 + ], + [ + 6.6388106, + 51.225270101 + ], + [ + 6.6389932, + 51.224513901 + ], + [ + 6.639242, + 51.223677901 + ], + [ + 6.6394481, + 51.223081601 + ], + [ + 6.6396633, + 51.222513001 + ], + [ + 6.6398746, + 51.221999801 + ], + [ + 6.6399728, + 51.221771601 + ], + [ + 6.6404527, + 51.220775701 + ], + [ + 6.6405602, + 51.220578901 + ], + [ + 6.6406669, + 51.220376701 + ], + [ + 6.6409887, + 51.219803701 + ], + [ + 6.6412754, + 51.219324701 + ], + [ + 6.6418326, + 51.218465901 + ], + [ + 6.642417, + 51.217633001 + ], + [ + 6.6430822, + 51.216716101 + ], + [ + 6.6435411, + 51.216071801 + ], + [ + 6.6441854, + 51.215147201 + ], + [ + 6.6449755, + 51.213978001 + ], + [ + 6.6457903, + 51.212673301 + ], + [ + 6.6466148, + 51.211313301 + ], + [ + 6.6475589, + 51.209730501 + ], + [ + 6.6483565, + 51.208237601 + ], + [ + 6.6488577, + 51.207275401 + ], + [ + 6.6502861, + 51.204509101 + ], + [ + 6.6503877, + 51.204309001 + ], + [ + 6.6509711, + 51.203188001 + ], + [ + 6.6519289, + 51.201427701 + ], + [ + 6.6527065, + 51.200080901 + ], + [ + 6.6535191, + 51.198736901 + ], + [ + 6.6537108, + 51.198428601 + ], + [ + 6.6538806, + 51.198155801 + ], + [ + 6.6541403, + 51.197743701 + ], + [ + 6.6547053, + 51.196835301 + ], + [ + 6.6548998, + 51.196521901 + ], + [ + 6.6550288, + 51.196311101 + ], + [ + 6.6561958, + 51.194429101 + ], + [ + 6.6565638, + 51.193857501 + ], + [ + 6.6571344, + 51.193042301 + ], + [ + 6.658087, + 51.191787601 + ], + [ + 6.6591942, + 51.190500801 + ], + [ + 6.6597668, + 51.189901201 + ], + [ + 6.6611853, + 51.188403101 + ], + [ + 6.6617619, + 51.187772201 + ], + [ + 6.6631821, + 51.186236401 + ], + [ + 6.6641835, + 51.185163701 + ], + [ + 6.6645102, + 51.184810001 + ], + [ + 6.6650169, + 51.184280701 + ], + [ + 6.6652003, + 51.184088501 + ], + [ + 6.666802, + 51.182401101 + ], + [ + 6.6669898, + 51.182201701 + ], + [ + 6.6673799, + 51.181804801 + ], + [ + 6.6677056, + 51.181490301 + ], + [ + 6.6680442, + 51.181209801 + ], + [ + 6.6684124, + 51.180933701 + ], + [ + 6.6687869, + 51.180694101 + ], + [ + 6.6692194, + 51.180451201 + ], + [ + 6.6696961, + 51.180219601 + ], + [ + 6.6702006, + 51.180006901 + ], + [ + 6.6707065, + 51.179820801 + ], + [ + 6.6712089, + 51.179661701 + ], + [ + 6.6717119, + 51.179529201 + ], + [ + 6.6719122, + 51.179482901 + ], + [ + 6.6721899, + 51.179421501 + ], + [ + 6.6726324, + 51.179340001 + ], + [ + 6.6730234, + 51.179273501 + ], + [ + 6.6736074, + 51.179182801 + ], + [ + 6.6746454, + 51.179023901 + ], + [ + 6.6757961, + 51.178865001 + ], + [ + 6.6764142, + 51.178780001 + ], + [ + 6.6777706, + 51.178594701 + ], + [ + 6.6808853, + 51.178155401 + ], + [ + 6.6819084, + 51.178017301 + ], + [ + 6.6847746, + 51.177621601 + ], + [ + 6.6853255, + 51.177547201 + ], + [ + 6.6878115, + 51.177198701 + ], + [ + 6.6879318, + 51.177179401 + ], + [ + 6.6913645, + 51.176703901 + ], + [ + 6.6930543, + 51.176475201 + ], + [ + 6.6948122, + 51.176251401 + ], + [ + 6.6949075, + 51.176238901 + ], + [ + 6.6953129, + 51.176195001 + ], + [ + 6.6960798, + 51.176127101 + ], + [ + 6.6968049, + 51.176075101 + ], + [ + 6.6975493, + 51.176045401 + ], + [ + 6.6983512, + 51.176045001 + ], + [ + 6.699251, + 51.176072801 + ], + [ + 6.6998108, + 51.176108601 + ], + [ + 6.7003752, + 51.176164101 + ], + [ + 6.7006852, + 51.176207601 + ], + [ + 6.7012475, + 51.176292001 + ], + [ + 6.7014677, + 51.176332701 + ], + [ + 6.7019324, + 51.176423101 + ], + [ + 6.702131, + 51.176465001 + ], + [ + 6.702713, + 51.176610901 + ], + [ + 6.7029834, + 51.176687101 + ], + [ + 6.703295, + 51.176776201 + ], + [ + 6.7042566, + 51.177078101 + ], + [ + 6.7043294, + 51.177098201 + ], + [ + 6.7044807, + 51.177143301 + ], + [ + 6.7052567, + 51.177378401 + ], + [ + 6.7056714, + 51.177474001 + ], + [ + 6.706064, + 51.177552501 + ], + [ + 6.7064717, + 51.177611101 + ], + [ + 6.7068221, + 51.177643901 + ], + [ + 6.7071351, + 51.177660301 + ], + [ + 6.7074432, + 51.177666301 + ], + [ + 6.7076996, + 51.177665101 + ], + [ + 6.7079486, + 51.177652301 + ], + [ + 6.7082455, + 51.177632401 + ], + [ + 6.7085615, + 51.177592601 + ], + [ + 6.7088565, + 51.177548901 + ], + [ + 6.7091002, + 51.177501801 + ], + [ + 6.7093501, + 51.177448101 + ], + [ + 6.7095662, + 51.177391801 + ], + [ + 6.7097335, + 51.177345801 + ], + [ + 6.7098825, + 51.177299201 + ], + [ + 6.7101237, + 51.177219801 + ], + [ + 6.7103648, + 51.177131101 + ], + [ + 6.7105922, + 51.177035801 + ], + [ + 6.7108196, + 51.176926501 + ], + [ + 6.7110962, + 51.176783401 + ], + [ + 6.7113579, + 51.176626301 + ], + [ + 6.7121382, + 51.176104601 + ], + [ + 6.7123166, + 51.175988401 + ], + [ + 6.713186, + 51.175431101 + ], + [ + 6.7137688, + 51.175067601 + ], + [ + 6.7140667, + 51.174897101 + ], + [ + 6.7143966, + 51.174723001 + ], + [ + 6.7148564, + 51.174486401 + ], + [ + 6.7150582, + 51.174383801 + ], + [ + 6.7156586, + 51.174114301 + ], + [ + 6.7160609, + 51.173945301 + ], + [ + 6.7166487, + 51.173715201 + ], + [ + 6.716972, + 51.173600701 + ], + [ + 6.7179066, + 51.173301601 + ], + [ + 6.7185434, + 51.173118201 + ], + [ + 6.7192574, + 51.172934601 + ], + [ + 6.7207586, + 51.172594301 + ], + [ + 6.7215153, + 51.172449101 + ], + [ + 6.7260391, + 51.171697101 + ], + [ + 6.7272631, + 51.171474901 + ], + [ + 6.7285796, + 51.171199901 + ], + [ + 6.7290391, + 51.171085801 + ], + [ + 6.7292933, + 51.171019101 + ], + [ + 6.7294978, + 51.170968101 + ], + [ + 6.7297461, + 51.170909001 + ], + [ + 6.7308047, + 51.170610601 + ], + [ + 6.7317381, + 51.170336601 + ], + [ + 6.7326314, + 51.170029101 + ], + [ + 6.7334693, + 51.169716101 + ], + [ + 6.7339366, + 51.169519101 + ], + [ + 6.7346335, + 51.169244701 + ], + [ + 6.7351612, + 51.169005001 + ], + [ + 6.7360144, + 51.168602201 + ], + [ + 6.7368743, + 51.168155301 + ], + [ + 6.7376905, + 51.167693301 + ], + [ + 6.7382667, + 51.167332201 + ], + [ + 6.7388514, + 51.166944801 + ], + [ + 6.7395936, + 51.166422701 + ], + [ + 6.7404408, + 51.165758101 + ], + [ + 6.7412612, + 51.165042201 + ], + [ + 6.741889, + 51.164486401 + ], + [ + 6.7427639, + 51.163656401 + ], + [ + 6.7459741, + 51.160447401 + ], + [ + 6.7462345, + 51.160189001 + ], + [ + 6.7465138, + 51.159911801 + ], + [ + 6.7479308, + 51.158500301 + ], + [ + 6.7482504, + 51.158184101 + ], + [ + 6.7493435, + 51.157124401 + ], + [ + 6.7495091, + 51.156967401 + ], + [ + 6.7504294, + 51.156088001 + ], + [ + 6.7507915, + 51.155739701 + ], + [ + 6.750909, + 51.155625001 + ], + [ + 6.7522309, + 51.154440801 + ], + [ + 6.7526147, + 51.154100601 + ], + [ + 6.7541478, + 51.152755901 + ], + [ + 6.7544171, + 51.152526001 + ], + [ + 6.7552637, + 51.151815401 + ], + [ + 6.7555739, + 51.151563201 + ], + [ + 6.7572122, + 51.150276601 + ], + [ + 6.7581924, + 51.149542801 + ], + [ + 6.7588741, + 51.149045401 + ], + [ + 6.7590362, + 51.148931301 + ], + [ + 6.7597171, + 51.148454401 + ], + [ + 6.7603711, + 51.147995401 + ], + [ + 6.7613582, + 51.147311801 + ], + [ + 6.7625851, + 51.146563001 + ], + [ + 6.7637621, + 51.145832101 + ], + [ + 6.7651453, + 51.145001401 + ], + [ + 6.7670046, + 51.143946801 + ], + [ + 6.7689041, + 51.142936601 + ], + [ + 6.76912395, + 51.142822681 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-04-10_19-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de258", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.32039004488561,6.63124766351456,51.336398475403804,6.6255683477877145", + "point": "51.32039004488561,6.63124766351456", + "startLcPosition": "22", + "impact": { + "lower": "Krefeld-Zentrum", + "upper": "Geism\u00fchle", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Krefeld", + "title": "A57 | Geism\u00fchle - Krefeld-Zentrum", + "coordinate": { + "lat": 51.32039004488561, + "long": 6.63124766351456 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 19:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A57: K\u00f6ln -> Krefeld, zwischen 0.9 km hinter Geism\u00fchle und 0.8 km vor AS Krefeld-Zentrum", + "", + "L\u00e4nge: 1.83 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.631247664, + 51.320390045 + ], + [ + 6.6312475, + 51.320391201 + ], + [ + 6.6312368, + 51.320473901 + ], + [ + 6.6311207, + 51.321373601 + ], + [ + 6.631051, + 51.321948701 + ], + [ + 6.630948, + 51.322578601 + ], + [ + 6.6307469, + 51.323724401 + ], + [ + 6.6305348, + 51.324709201 + ], + [ + 6.6305042, + 51.324851001 + ], + [ + 6.6303303, + 51.325641701 + ], + [ + 6.6302027, + 51.326066701 + ], + [ + 6.6300852, + 51.326403701 + ], + [ + 6.6297472, + 51.327401301 + ], + [ + 6.6294967, + 51.328066401 + ], + [ + 6.6292678, + 51.328657701 + ], + [ + 6.6290276, + 51.329229001 + ], + [ + 6.6288734, + 51.329568301 + ], + [ + 6.6284862, + 51.330415501 + ], + [ + 6.628064, + 51.331255601 + ], + [ + 6.6271101, + 51.333146601 + ], + [ + 6.6268783, + 51.333600101 + ], + [ + 6.6263948, + 51.334555101 + ], + [ + 6.6259714, + 51.335453301 + ], + [ + 6.6257637, + 51.335916001 + ], + [ + 6.625568348, + 51.336398475 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de229", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32126632598074,6.630937503874782,51.308016960224414,6.634713466430923", + "point": "51.32126632598074,6.630937503874782", + "startLcPosition": "23", + "impact": { + "lower": "Meerbusch", + "upper": "Krefeld-Oppum", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Krefeld -> K\u00f6ln", + "title": "A57 | Krefeld-Oppum - Meerbusch", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.32126632598074, + "long": 6.630937503874782 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "A57: Krefeld -> K\u00f6ln, zwischen 0.5 km hinter AS Krefeld-Oppum und 1.9 km vor AK Meerbusch", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.630937504, + 51.321266326 + ], + [ + 6.6310604, + 51.320379301 + ], + [ + 6.6312642, + 51.318945901 + ], + [ + 6.6314798, + 51.317665501 + ], + [ + 6.6316649, + 51.316789501 + ], + [ + 6.6318481, + 51.315986101 + ], + [ + 6.6320722, + 51.315198901 + ], + [ + 6.6323235, + 51.314349101 + ], + [ + 6.6324246, + 51.314092801 + ], + [ + 6.6328226, + 51.312965101 + ], + [ + 6.633351, + 51.311572601 + ], + [ + 6.6337402, + 51.310523701 + ], + [ + 6.6343465, + 51.309008901 + ], + [ + 6.634713466, + 51.30801696 + ] + ] + } + }, + { + "identifier": "2026-016999--vi-bs.2026-04-02_00-00-00-000.devi-zus.2026-04-02_00-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32614090150753,6.630176829033467,51.36730763820733,6.626283311938503", + "point": "51.32614090150753,6.630176829033467", + "startLcPosition": "23", + "impact": { + "lower": "Krefeld-Gartenstadt", + "upper": "Krefeld-Oppum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Nimwegen", + "title": "A57 | Krefeld-Oppum - Krefeld-Gartenstadt", + "startTimestamp": "2026-04-02T00:00:00+02:00", + "coordinate": { + "lat": 51.32614090150753, + "long": 6.630176829033467 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 00:00 Uhr", + "Ende: 02.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.05.26)", + "", + "A57: K\u00f6ln -> Nimwegen, zwischen 0.1 km hinter AS Krefeld-Oppum und 0.3 km vor AS Krefeld-Gartenstadt", + "", + "L\u00e4nge: 4.64 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A57 von Krefeld-Oppum (AS) nach Krefeld-Gartenstadt (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.630176829, + 51.326140902 + ], + [ + 6.6300852, + 51.326403701 + ], + [ + 6.6297472, + 51.327401301 + ], + [ + 6.6294967, + 51.328066401 + ], + [ + 6.6292678, + 51.328657701 + ], + [ + 6.6290276, + 51.329229001 + ], + [ + 6.6288734, + 51.329568301 + ], + [ + 6.6284862, + 51.330415501 + ], + [ + 6.628064, + 51.331255601 + ], + [ + 6.6271101, + 51.333146601 + ], + [ + 6.6268783, + 51.333600101 + ], + [ + 6.6263948, + 51.334555101 + ], + [ + 6.6259714, + 51.335453301 + ], + [ + 6.6257637, + 51.335916001 + ], + [ + 6.6254546, + 51.336679401 + ], + [ + 6.6252185, + 51.337325701 + ], + [ + 6.6251181, + 51.337626401 + ], + [ + 6.6250341, + 51.337915101 + ], + [ + 6.6249225, + 51.338298701 + ], + [ + 6.6247063, + 51.339316401 + ], + [ + 6.6245131, + 51.340819501 + ], + [ + 6.6244377, + 51.341795101 + ], + [ + 6.6244438, + 51.342352201 + ], + [ + 6.6244766, + 51.342941701 + ], + [ + 6.6245848, + 51.343612301 + ], + [ + 6.6246669, + 51.344306501 + ], + [ + 6.6247577, + 51.344984201 + ], + [ + 6.6247983, + 51.345211001 + ], + [ + 6.6251689, + 51.346946101 + ], + [ + 6.6252012, + 51.347080401 + ], + [ + 6.6256112, + 51.348817901 + ], + [ + 6.6256718, + 51.349085601 + ], + [ + 6.6259569, + 51.350410201 + ], + [ + 6.6261518, + 51.351463801 + ], + [ + 6.626388, + 51.352965101 + ], + [ + 6.6264416, + 51.353338801 + ], + [ + 6.6265554, + 51.354236201 + ], + [ + 6.6266516, + 51.355132101 + ], + [ + 6.6266769, + 51.355406801 + ], + [ + 6.6267062, + 51.355804401 + ], + [ + 6.6267841, + 51.357036201 + ], + [ + 6.6267938, + 51.357294401 + ], + [ + 6.6268473, + 51.358883301 + ], + [ + 6.6268429, + 51.359640601 + ], + [ + 6.6268384, + 51.360458901 + ], + [ + 6.6268332, + 51.360774601 + ], + [ + 6.6267903, + 51.361971901 + ], + [ + 6.6267293, + 51.363139701 + ], + [ + 6.6267101, + 51.363405101 + ], + [ + 6.6266542, + 51.364348201 + ], + [ + 6.6266255, + 51.364749301 + ], + [ + 6.6265251, + 51.365645101 + ], + [ + 6.6264836, + 51.366025801 + ], + [ + 6.6263572, + 51.366843201 + ], + [ + 6.626283312, + 51.367307638 + ] + ] + } + }, + { + "identifier": "2026-017673--vi-bs.2026-04-10_07-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.32918041240562,6.629048029029423,51.33347057825738,6.626944504155719", + "point": "51.32918041240562,6.629048029029423", + "startLcPosition": "23", + "impact": { + "lower": "Krefeld-Zentrum", + "upper": "Krefeld-Oppum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Krefeld", + "title": "A57 | Krefeld-Oppum - Krefeld-Zentrum", + "coordinate": { + "lat": 51.32918041240562, + "long": 6.629048029029423 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 16:00 Uhr", + "", + "A57: K\u00f6ln -> Krefeld, zwischen 0.4 km hinter AS Krefeld-Oppum und 1.2 km vor AS Krefeld-Zentrum", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A57 von Krefeld-Oppum (AS) nach Krefeld-Zentrum (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.629048029, + 51.329180412 + ], + [ + 6.6290276, + 51.329229001 + ], + [ + 6.6288734, + 51.329568301 + ], + [ + 6.6284862, + 51.330415501 + ], + [ + 6.628064, + 51.331255601 + ], + [ + 6.6271101, + 51.333146601 + ], + [ + 6.626944504, + 51.333470578 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de225", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.3274246611913,6.629545667492309,51.32126632598074,6.630937503874782", + "point": "51.3274246611913,6.629545667492309", + "startLcPosition": "24", + "impact": { + "lower": "Geism\u00fchle", + "upper": "Krefeld-Zentrum", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Krefeld -> K\u00f6ln", + "title": "A57 | Krefeld-Zentrum - Geism\u00fchle", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.3274246611913, + "long": 6.629545667492309 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "A57: Krefeld -> K\u00f6ln, zwischen 1.9 km hinter AS Krefeld-Zentrum und 1.0 km vor Geism\u00fchle", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.629545667, + 51.327424661 + ], + [ + 6.6295677, + 51.327364001 + ], + [ + 6.629906, + 51.326364201 + ], + [ + 6.6301902, + 51.325391801 + ], + [ + 6.6303213, + 51.324834501 + ], + [ + 6.630567, + 51.323713101 + ], + [ + 6.6306848, + 51.322959401 + ], + [ + 6.6308867, + 51.321633001 + ], + [ + 6.630937504, + 51.321266326 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de223", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.34181711019784,6.624253079213954,51.3274246611913,6.629545667492309", + "point": "51.34181711019784,6.624253079213954", + "startLcPosition": "24", + "impact": { + "lower": "Krefeld-Oppum", + "upper": "Krefeld-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Krefeld -> K\u00f6ln", + "title": "A57 | Krefeld-Zentrum - Krefeld-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.34181711019784, + "long": 6.624253079213954 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "A57: Krefeld -> K\u00f6ln, zwischen 0.2 km hinter AS Krefeld-Zentrum und 0.2 km vor AS Krefeld-Oppum", + "", + "L\u00e4nge: 1.65 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.624253079, + 51.34181711 + ], + [ + 6.6242528, + 51.341797701 + ], + [ + 6.6242735, + 51.341248601 + ], + [ + 6.624355, + 51.340267301 + ], + [ + 6.6244229, + 51.339784701 + ], + [ + 6.6245805, + 51.338909501 + ], + [ + 6.6247439, + 51.338256101 + ], + [ + 6.6248464, + 51.337891401 + ], + [ + 6.6249514, + 51.337518101 + ], + [ + 6.6250414, + 51.337233001 + ], + [ + 6.6252676, + 51.336656001 + ], + [ + 6.6255396, + 51.335987701 + ], + [ + 6.6257808, + 51.335419601 + ], + [ + 6.6262216, + 51.334517301 + ], + [ + 6.6267156, + 51.333538901 + ], + [ + 6.6269834, + 51.333007501 + ], + [ + 6.627895, + 51.331219701 + ], + [ + 6.6283099, + 51.330370501 + ], + [ + 6.6286965, + 51.329540901 + ], + [ + 6.6288484, + 51.329192801 + ], + [ + 6.6292357, + 51.328262001 + ], + [ + 6.6293238, + 51.328035501 + ], + [ + 6.629545667, + 51.327424661 + ] + ] + } + }, + { + "identifier": "2026-016950--vi-bs.2026-04-08_20-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.36642189710293,6.626422349635812,51.373358046412314,6.624152478274199", + "point": "51.36642189710293,6.626422349635812", + "startLcPosition": "24", + "impact": { + "lower": "Moers-Kapellen", + "upper": "Krefeld-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Nimwegen", + "title": "A57 | Krefeld-Zentrum - Moers-Kapellen", + "coordinate": { + "lat": 51.36642189710293, + "long": 6.626422349635812 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A57: K\u00f6ln -> Nimwegen, zwischen 2.5 km hinter AS Krefeld-Zentrum und 3.1 km vor AS Moers-Kapellen", + "", + "L\u00e4nge: 0.79 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 von Krefeld-Zentrum (AS) nach Moers-Kapellen (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.62642235, + 51.366421897 + ], + [ + 6.6263572, + 51.366843201 + ], + [ + 6.6261597, + 51.368084601 + ], + [ + 6.6259782, + 51.368921801 + ], + [ + 6.6259195, + 51.369142301 + ], + [ + 6.6257512, + 51.369774401 + ], + [ + 6.6255661, + 51.370315701 + ], + [ + 6.6253614, + 51.370877001 + ], + [ + 6.6250451, + 51.371635801 + ], + [ + 6.6247666, + 51.372236901 + ], + [ + 6.6244816, + 51.372783401 + ], + [ + 6.6243732, + 51.372972701 + ], + [ + 6.6242847, + 51.373127101 + ], + [ + 6.624152478, + 51.373358046 + ] + ] + } + }, + { + "identifier": "2026-012078--vi-bs.2026-03-23_07-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.35746201120349,6.62661308585525,51.33778547287949,6.62487619510671", + "point": "51.35746201120349,6.62661308585525", + "startLcPosition": "25", + "impact": { + "lower": "Krefeld-Oppum", + "upper": "Krefeld-Gartenstadt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nimwegen -> K\u00f6ln", + "title": "A57 | Krefeld-Gartenstadt - Krefeld-Oppum", + "coordinate": { + "lat": 51.35746201120349, + "long": 6.62661308585525 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 18:00 Uhr", + "", + "A57: Nimwegen -> K\u00f6ln, zwischen 1.4 km hinter AS Krefeld-Gartenstadt und 1.4 km vor AS Krefeld-Oppum", + "", + "L\u00e4nge: 2.2 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A57 von Krefeld-Gartenstadt (AS) nach Krefeld-Oppum (AS) Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.626613086, + 51.357462011 + ], + [ + 6.6266085, + 51.357298301 + ], + [ + 6.6265987, + 51.357042801 + ], + [ + 6.6265168, + 51.355812101 + ], + [ + 6.6264814, + 51.355406501 + ], + [ + 6.6264598, + 51.355153501 + ], + [ + 6.6263696, + 51.354255101 + ], + [ + 6.6262552, + 51.353437401 + ], + [ + 6.6262028, + 51.353040101 + ], + [ + 6.6259663, + 51.351477601 + ], + [ + 6.6257566, + 51.350405401 + ], + [ + 6.625473, + 51.349046401 + ], + [ + 6.625411, + 51.348779201 + ], + [ + 6.624937, + 51.346775801 + ], + [ + 6.6245726, + 51.345257601 + ], + [ + 6.6245245, + 51.345049901 + ], + [ + 6.6245092, + 51.344992401 + ], + [ + 6.6244281, + 51.344289901 + ], + [ + 6.6243408, + 51.343628401 + ], + [ + 6.6242625, + 51.342722401 + ], + [ + 6.6242608, + 51.342353801 + ], + [ + 6.6242528, + 51.341797701 + ], + [ + 6.6242735, + 51.341248601 + ], + [ + 6.624355, + 51.340267301 + ], + [ + 6.6244229, + 51.339784701 + ], + [ + 6.6245805, + 51.338909501 + ], + [ + 6.6247439, + 51.338256101 + ], + [ + 6.6248464, + 51.337891401 + ], + [ + 6.624876195, + 51.337785473 + ] + ] + } + }, + { + "identifier": "2026-016957--vi-bs.2026-04-08_20-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.37501903688561,6.623036716765869,51.39644462403981,6.603986948222561", + "point": "51.37501903688561,6.623036716765869", + "startLcPosition": "25", + "impact": { + "lower": "Moers-Kapellen", + "upper": "Krefeld-Gartenstadt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> Nimwegen", + "title": "A57 | Krefeld-Gartenstadt - Moers-Kapellen", + "coordinate": { + "lat": 51.37501903688561, + "long": 6.623036716765869 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A57: Krefeld -> Nimwegen, zwischen 0.6 km hinter AS Krefeld-Gartenstadt und 0.1 km vor AS Moers-Kapellen", + "", + "L\u00e4nge: 2.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A57 von Krefeld-Gartenstadt (AS) nach Moers-Kapellen (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.623036717, + 51.375019037 + ], + [ + 6.6230212, + 51.375040701 + ], + [ + 6.6223377, + 51.375929701 + ], + [ + 6.621548, + 51.376828101 + ], + [ + 6.6208388, + 51.377569901 + ], + [ + 6.6202612, + 51.378128401 + ], + [ + 6.6191373, + 51.379117801 + ], + [ + 6.6184935, + 51.379629901 + ], + [ + 6.6178444, + 51.380124201 + ], + [ + 6.617065, + 51.380680101 + ], + [ + 6.6163144, + 51.381181801 + ], + [ + 6.6147596, + 51.382150901 + ], + [ + 6.6145664, + 51.382271301 + ], + [ + 6.6128606, + 51.383315301 + ], + [ + 6.6112715, + 51.384365501 + ], + [ + 6.6104679, + 51.384962601 + ], + [ + 6.6097111, + 51.385568201 + ], + [ + 6.6090414, + 51.386169901 + ], + [ + 6.608401, + 51.386790601 + ], + [ + 6.6077476, + 51.387476801 + ], + [ + 6.6072574, + 51.388050501 + ], + [ + 6.6066969, + 51.388779401 + ], + [ + 6.606557, + 51.388973401 + ], + [ + 6.6060995, + 51.389655401 + ], + [ + 6.6056495, + 51.390423801 + ], + [ + 6.6052489, + 51.391183901 + ], + [ + 6.6048297, + 51.392211301 + ], + [ + 6.6046423, + 51.392763801 + ], + [ + 6.6043304, + 51.393958601 + ], + [ + 6.604196, + 51.394630001 + ], + [ + 6.6040828, + 51.395321701 + ], + [ + 6.6040134, + 51.396134301 + ], + [ + 6.6039966, + 51.396331701 + ], + [ + 6.603986948, + 51.396444624 + ] + ] + } + }, + { + "identifier": "2026-017281--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_19-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.434609391638524,6.604757490998204,51.43623777624849,6.604488043564095", + "point": "51.434609391638524,6.604757490998204", + "startLcPosition": "26", + "impact": { + "lower": "Moers-H\u00fclsdonk", + "upper": "Moers-Kapellen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> Nimwegen", + "title": "A57 | Moers-Kapellen - Moers-H\u00fclsdonk", + "coordinate": { + "lat": 51.434609391638524, + "long": 6.604757490998204 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A57: Krefeld -> Nimwegen, zwischen 4.2 km hinter AS Moers-Kapellen und 2.7 km vor AS Moers-H\u00fclsdonk", + "", + "L\u00e4nge: 0.18 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 von Moers (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.604757491, + 51.434609392 + ], + [ + 6.6046889, + 51.435202201 + ], + [ + 6.6045161, + 51.436129801 + ], + [ + 6.604488044, + 51.436237776 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-fbm.2026-03-31_09-00-00-000.devi-zus.2025-09-05_00-00-00-000.de98", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.42411234622486,6.605564130777245,51.479651404647896,6.582690906460379", + "point": "51.42411234622486,6.605564130777245", + "startLcPosition": "26", + "impact": { + "lower": "Kamp-Lintfort", + "upper": "Moers-Kapellen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> Nimwegen", + "title": "A57 | Moers-Kapellen - Kamp-Lintfort", + "coordinate": { + "lat": 51.42411234622486, + "long": 6.605564130777245 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A57: Krefeld -> Nimwegen, zwischen 3.0 km hinter AS Moers-Kapellen und 1.1 km vor AK Kamp-Lintfort", + "", + "L\u00e4nge: 6.47 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.605564131, + 51.424112346 + ], + [ + 6.6053908, + 51.426551001 + ], + [ + 6.6052847, + 51.428178601 + ], + [ + 6.6052512, + 51.428703601 + ], + [ + 6.6050685, + 51.431571701 + ], + [ + 6.6048314, + 51.433970601 + ], + [ + 6.6046889, + 51.435202201 + ], + [ + 6.6045161, + 51.436129801 + ], + [ + 6.6042232, + 51.437257001 + ], + [ + 6.6038473, + 51.438348401 + ], + [ + 6.6032413, + 51.439792301 + ], + [ + 6.6027148, + 51.440749401 + ], + [ + 6.6021031, + 51.441718101 + ], + [ + 6.6019668, + 51.441906301 + ], + [ + 6.6015699, + 51.442479201 + ], + [ + 6.6009281, + 51.443306601 + ], + [ + 6.5997209, + 51.444658001 + ], + [ + 6.598439, + 51.445955801 + ], + [ + 6.5975629, + 51.446809501 + ], + [ + 6.5973103, + 51.447045001 + ], + [ + 6.5958921, + 51.448449301 + ], + [ + 6.5958504, + 51.448497701 + ], + [ + 6.5949889, + 51.449537601 + ], + [ + 6.5943097, + 51.450442001 + ], + [ + 6.5939407, + 51.451004701 + ], + [ + 6.5936027, + 51.451579601 + ], + [ + 6.5932436, + 51.452247401 + ], + [ + 6.5929962, + 51.452789201 + ], + [ + 6.5927896, + 51.453272001 + ], + [ + 6.5924975, + 51.454093701 + ], + [ + 6.5923429, + 51.454629201 + ], + [ + 6.5922677, + 51.454968101 + ], + [ + 6.5919876, + 51.456591701 + ], + [ + 6.5917222, + 51.458698601 + ], + [ + 6.5915376, + 51.460072101 + ], + [ + 6.5914392, + 51.460920401 + ], + [ + 6.5912515, + 51.461823601 + ], + [ + 6.5910433, + 51.462949701 + ], + [ + 6.5900598, + 51.466442101 + ], + [ + 6.5897187, + 51.467415401 + ], + [ + 6.5893634, + 51.468374201 + ], + [ + 6.588965, + 51.469344201 + ], + [ + 6.5885547, + 51.470270301 + ], + [ + 6.5880274, + 51.471376101 + ], + [ + 6.5879586, + 51.471521201 + ], + [ + 6.5875057, + 51.472405801 + ], + [ + 6.5871673, + 51.473034401 + ], + [ + 6.5870212, + 51.473283501 + ], + [ + 6.5862607, + 51.474586001 + ], + [ + 6.5854359, + 51.475897501 + ], + [ + 6.5845865, + 51.477153701 + ], + [ + 6.5844632, + 51.477340601 + ], + [ + 6.5835467, + 51.478569401 + ], + [ + 6.5833675, + 51.478804601 + ], + [ + 6.582690906, + 51.479651405 + ] + ] + } + }, + { + "identifier": "2026-016915--vi-bs.2026-04-09_20-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43057818817913,6.605131790740487,51.43418802652466,6.60480624380917", + "point": "51.43057818817913,6.605131790740487", + "startLcPosition": "26", + "impact": { + "lower": "Moers", + "upper": "Moers-Kapellen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> Nimwegen", + "title": "A57 | Moers-Kapellen - Moers", + "coordinate": { + "lat": 51.43057818817913, + "long": 6.605131790740487 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:30 Uhr.", + "", + "A57: Krefeld -> Nimwegen, zwischen 3.7 km hinter AS Moers-Kapellen und 0.2 km vor AK Moers", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A57 von Moers-Kapellen (AS) nach Moers (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.605131791, + 51.430578188 + ], + [ + 6.6050685, + 51.431571701 + ], + [ + 6.6048314, + 51.433970601 + ], + [ + 6.604806244, + 51.434188027 + ] + ] + } + }, + { + "identifier": "2026-016921--vi-bs.2026-04-09_19-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.434322506022674,6.604790684366693,51.4363886063127,6.604448851467562", + "point": "51.434322506022674,6.604790684366693", + "startLcPosition": "26", + "impact": { + "lower": "Moers-H\u00fclsdonk", + "upper": "Moers-Kapellen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> Nimwegen", + "title": "A57 | Moers-Kapellen - Moers-H\u00fclsdonk", + "coordinate": { + "lat": 51.434322506022674, + "long": 6.604790684366693 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A57: Krefeld -> Nimwegen, zwischen 4.2 km hinter AS Moers-Kapellen und 2.7 km vor AS Moers-H\u00fclsdonk", + "", + "L\u00e4nge: 0.23 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A57 von Moers (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.604790684, + 51.434322506 + ], + [ + 6.6046889, + 51.435202201 + ], + [ + 6.6045161, + 51.436129801 + ], + [ + 6.604448851, + 51.436388606 + ] + ] + } + }, + { + "identifier": "2026-017278--vi-bs.2026-04-09_20-00-00-000_009.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43057818817913,6.605131790740487,51.43418802652466,6.60480624380917", + "point": "51.43057818817913,6.605131790740487", + "startLcPosition": "26", + "impact": { + "lower": "Moers", + "upper": "Moers-Kapellen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> Nimwegen", + "title": "A57 | Moers-Kapellen - Moers", + "coordinate": { + "lat": 51.43057818817913, + "long": 6.605131790740487 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 07:00 Uhr.", + "", + "A57: Krefeld -> Nimwegen, zwischen 3.7 km hinter AS Moers-Kapellen und 0.2 km vor AK Moers", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 von Moers-Kapellen (AS) nach Moers (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.605131791, + 51.430578188 + ], + [ + 6.6050685, + 51.431571701 + ], + [ + 6.6048314, + 51.433970601 + ], + [ + 6.604806244, + 51.434188027 + ] + ] + } + }, + { + "identifier": "2026-016916--vi-bs.2026-04-09_19-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43417126479495,6.604612138076887,51.430572428998445,6.604887150569677", + "point": "51.43417126479495,6.604612138076887", + "startLcPosition": "27", + "impact": { + "lower": "Moers-Kapellen", + "upper": "Moers", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nimwegen -> Krefeld", + "title": "A57 | Moers - Moers-Kapellen", + "coordinate": { + "lat": 51.43417126479495, + "long": 6.604612138076887 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:15 Uhr.", + "", + "A57: Nimwegen -> Krefeld, zwischen 0.2 km hinter AK Moers und 3.7 km vor AS Moers-Kapellen", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A57 von Moers (AK) nach Moers-Kapellen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.604612138, + 51.434171265 + ], + [ + 6.6047531, + 51.432616501 + ], + [ + 6.6048117, + 51.431918101 + ], + [ + 6.604887151, + 51.430572429 + ] + ] + } + }, + { + "identifier": "2026-017279--vi-bs.2026-04-09_20-00-00-000_010.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43417126479495,6.604612138076887,51.430572428998445,6.604887150569677", + "point": "51.43417126479495,6.604612138076887", + "startLcPosition": "27", + "impact": { + "lower": "Moers-Kapellen", + "upper": "Moers", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nimwegen -> Krefeld", + "title": "A57 | Moers - Moers-Kapellen", + "coordinate": { + "lat": 51.43417126479495, + "long": 6.604612138076887 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 07:00 Uhr.", + "", + "A57: Nimwegen -> Krefeld, zwischen 0.2 km hinter AK Moers und 3.7 km vor AS Moers-Kapellen", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 von Moers (AK) nach Moers-Kapellen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.604612138, + 51.434171265 + ], + [ + 6.6047531, + 51.432616501 + ], + [ + 6.6048117, + 51.431918101 + ], + [ + 6.604887151, + 51.430572429 + ] + ] + } + }, + { + "identifier": "2026-016960--vi-bs.2026-04-09_20-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.40274128868945,6.60407341122402,51.38090691038368,6.616470928027989", + "point": "51.40274128868945,6.60407341122402", + "startLcPosition": "27", + "impact": { + "lower": "Krefeld-Gartenstadt", + "upper": "Moers", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nimwegen -> Krefeld", + "title": "A57 | Moers - Krefeld-Gartenstadt", + "coordinate": { + "lat": 51.40274128868945, + "long": 6.60407341122402 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A57: Nimwegen -> Krefeld, zwischen 3.7 km hinter AK Moers und 1.4 km vor AS Krefeld-Gartenstadt", + "", + "L\u00e4nge: 2.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A57 von Moers (AK) nach Krefeld-Gartenstadt (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.604073411, + 51.402741289 + ], + [ + 6.603925, + 51.401165801 + ], + [ + 6.6038608, + 51.400395801 + ], + [ + 6.6037794, + 51.399108601 + ], + [ + 6.6037434, + 51.398029301 + ], + [ + 6.603794, + 51.396669901 + ], + [ + 6.6038143, + 51.396318301 + ], + [ + 6.6038934, + 51.395341601 + ], + [ + 6.6040073, + 51.394617901 + ], + [ + 6.6042019, + 51.393596701 + ], + [ + 6.6044588, + 51.392727201 + ], + [ + 6.6046478, + 51.392181501 + ], + [ + 6.6047556, + 51.391925201 + ], + [ + 6.6050772, + 51.391160601 + ], + [ + 6.605473, + 51.390375101 + ], + [ + 6.6059236, + 51.389620001 + ], + [ + 6.6063306, + 51.389008201 + ], + [ + 6.6064654, + 51.388816701 + ], + [ + 6.6070886, + 51.388007601 + ], + [ + 6.6082809, + 51.386677901 + ], + [ + 6.6089273, + 51.386069001 + ], + [ + 6.6096136, + 51.385460801 + ], + [ + 6.610358, + 51.384864301 + ], + [ + 6.6111326, + 51.384286701 + ], + [ + 6.6127984, + 51.383191101 + ], + [ + 6.6145381, + 51.382121701 + ], + [ + 6.6161816, + 51.381100601 + ], + [ + 6.616470928, + 51.38090691 + ] + ] + } + }, + { + "identifier": "2026-017286--vi-bs.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.52093956168131,6.585644019815843,51.52491598017001,6.584339860795667", + "point": "51.52093956168131,6.585644019815843", + "startLcPosition": "32", + "impact": { + "lower": "Rheinberg", + "upper": "Asdonkshof", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> Nimwegen", + "title": "A57 | Asdonkshof - Rheinberg", + "coordinate": { + "lat": 51.52093956168131, + "long": 6.585644019815843 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:15 Uhr.", + "", + "A57: Krefeld -> Nimwegen, zwischen 0.9 km hinter AS Asdonkshof und 0.8 km vor AS Rheinberg", + "", + "L\u00e4nge: 0.45 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 von Rheinberg (AS) nach Asdonkshof (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.58564402, + 51.520939562 + ], + [ + 6.5856188, + 51.521084301 + ], + [ + 6.5854866, + 51.521695901 + ], + [ + 6.5853436, + 51.522256301 + ], + [ + 6.5851787, + 51.522810501 + ], + [ + 6.5849007, + 51.523604401 + ], + [ + 6.58471, + 51.524090401 + ], + [ + 6.5844921, + 51.524600301 + ], + [ + 6.584339861, + 51.52491598 + ] + ] + } + }, + { + "identifier": "2026-016925--vi-bs.2026-04-09_19-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.52094849752336,6.585642462811746,51.52491598017001,6.584339860795667", + "point": "51.52094849752336,6.585642462811746", + "startLcPosition": "32", + "impact": { + "lower": "Rheinberg", + "upper": "Asdonkshof", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Krefeld -> Nimwegen", + "title": "A57 | Asdonkshof - Rheinberg", + "coordinate": { + "lat": 51.52094849752336, + "long": 6.585642462811746 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A57: Krefeld -> Nimwegen, zwischen 0.9 km hinter AS Asdonkshof und 0.8 km vor AS Rheinberg", + "", + "L\u00e4nge: 0.45 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A57 von Asdonkshof (AS) nach Rheinberg (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.585642463, + 51.520948498 + ], + [ + 6.5856188, + 51.521084301 + ], + [ + 6.5854866, + 51.521695901 + ], + [ + 6.5853436, + 51.522256301 + ], + [ + 6.5851787, + 51.522810501 + ], + [ + 6.5849007, + 51.523604401 + ], + [ + 6.58471, + 51.524090401 + ], + [ + 6.5844921, + 51.524600301 + ], + [ + 6.584339861, + 51.52491598 + ] + ] + } + }, + { + "identifier": "2026-017286--vi-bs.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.52488334718817,6.584165012963121,51.52092766178319,6.58546266637717", + "point": "51.52488334718817,6.584165012963121", + "startLcPosition": "33", + "impact": { + "lower": "Asdonkshof", + "upper": "Rheinberg", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nimwegen -> Krefeld", + "title": "A57 | Rheinberg - Asdonkshof", + "coordinate": { + "lat": 51.52488334718817, + "long": 6.584165012963121 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 06:15 Uhr.", + "", + "A57: Nimwegen -> Krefeld, zwischen 0.8 km hinter AS Rheinberg und 0.9 km vor AS Asdonkshof", + "", + "L\u00e4nge: 0.45 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 von Rheinberg (AS) nach Asdonkshof (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.584165013, + 51.524883347 + ], + [ + 6.584316, + 51.524566801 + ], + [ + 6.5847299, + 51.523588801 + ], + [ + 6.5849969, + 51.522806801 + ], + [ + 6.5851621, + 51.522243901 + ], + [ + 6.5853039, + 51.521696301 + ], + [ + 6.5854374, + 51.521082401 + ], + [ + 6.585462666, + 51.520927662 + ] + ] + } + }, + { + "identifier": "2026-016924--vi-bs.2026-04-09_19-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.52488334718817,6.584165012963121,51.52092766178319,6.58546266637717", + "point": "51.52488334718817,6.584165012963121", + "startLcPosition": "33", + "impact": { + "lower": "Asdonkshof", + "upper": "Rheinberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nimwegen -> Krefeld", + "title": "A57 | Rheinberg - Asdonkshof", + "coordinate": { + "lat": 51.52488334718817, + "long": 6.584165012963121 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A57: Nimwegen -> Krefeld, zwischen 0.8 km hinter AS Rheinberg und 0.9 km vor AS Asdonkshof", + "", + "L\u00e4nge: 0.45 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A57 von Rheinberg (AS) nach Asdonkshof (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.584165013, + 51.524883347 + ], + [ + 6.584316, + 51.524566801 + ], + [ + 6.5847299, + 51.523588801 + ], + [ + 6.5849969, + 51.522806801 + ], + [ + 6.5851621, + 51.522243901 + ], + [ + 6.5853039, + 51.521696301 + ], + [ + 6.5854374, + 51.521082401 + ], + [ + 6.585462666, + 51.520927662 + ] + ] + } + }, + { + "identifier": "2026-017712--vi-bs.2026-04-14_06-30-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.664165007106014,6.140910966571614,51.6625227824788,6.146855248996795", + "point": "51.664165007106014,6.140910966571614", + "startLcPosition": "42", + "impact": { + "lower": "Goch", + "upper": "Kleve", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Nimwegen -> Krefeld", + "title": "A57 | Kleve - Goch", + "coordinate": { + "lat": 51.664165007106014, + "long": 6.140910966571614 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 06:30 bis 15:00 Uhr", + "", + "A57: Nimwegen -> Krefeld, zwischen 1.7 km hinter AS Kleve und 2.4 km vor AS Goch", + "", + "L\u00e4nge: 0.45 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 von Kleve (AS) nach Goch (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.140910967, + 51.664165007 + ], + [ + 6.1438839, + 51.663318001 + ], + [ + 6.146855249, + 51.662522782 + ] + ] + } + }, + { + "identifier": "2026-016922--vi-bs.2026-04-09_19-00-00-000_003.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43453797587946,6.604947649562791,51.436272838602875,6.604668449712267", + "point": "51.43453797587946,6.604947649562791", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Moers (aus Richtung Moers-Kapellen)", + "title": "A57 Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 51.43453797587946, + "long": 6.604947649562791 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "Abfahrt von der A57: AK Moers (aus Richtung Moers-Kapellen)", + "", + "L\u00e4nge: 0.19 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A57 Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.60494765, + 51.434537976 + ], + [ + 6.604938, + 51.434634201 + ], + [ + 6.6048605, + 51.435217601 + ], + [ + 6.6048374, + 51.435484401 + ], + [ + 6.60466845, + 51.436272839 + ] + ] + } + }, + { + "identifier": "2026-016962--vi-bs.2026-04-08_07-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.178170400033856,6.6807789649605445,51.17719835951977,6.687813628099758", + "point": "51.178170400033856,6.6807789649605445", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 84.10 --> km 84.60", + "title": "A57 Tiefbauarbeiten neben der Fahrbahn", + "coordinate": { + "lat": 51.178170400033856, + "long": 6.6807789649605445 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 17:00 Uhr", + "", + "A57: km 84.10 --> km 84.60", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A57 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.680778965, + 51.1781704 + ], + [ + 6.6808853, + 51.178155401 + ], + [ + 6.6819084, + 51.178017301 + ], + [ + 6.6847746, + 51.177621601 + ], + [ + 6.6853255, + 51.177547201 + ], + [ + 6.6878115, + 51.177198701 + ], + [ + 6.687813628, + 51.17719836 + ] + ] + } + }, + { + "identifier": "2026-017281--vi-bs.2026-04-09_19-00-00-000.devi-zus.2026-04-09_19-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43561464662533,6.604809490747639,51.43600591691205,6.604725647709589", + "point": "51.43561464662533,6.604809490747639", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK Moers (aus Richtung Moers-Kapellen)", + "title": "A57 von Moers (AK) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 51.43561464662533, + "long": 6.604809490747639 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "Abfahrt von der A57: AK Moers (aus Richtung Moers-Kapellen)", + "", + "L\u00e4nge: 0.04 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 von Moers (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.604809491, + 51.435614647 + ], + [ + 6.604725648, + 51.436005917 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de239", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.29134039512117,6.636101601440431,51.29407172256195,6.636605594169048", + "point": "51.29134039512117,6.636101601440431", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Meerbusch (aus Richtung Bovert) nach A57", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.29134039512117, + "long": 6.636101601440431 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Von Auffahrt auf die A57: AK Meerbusch (aus Richtung Bovert) nach A57: K\u00f6ln -> Krefeld, zwischen AK Meerbusch und 2.1 km vor Geism\u00fchle", + "", + "L\u00e4nge: 0.31 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.636101601, + 51.291340395 + ], + [ + 6.6361997, + 51.291737601 + ], + [ + 6.6362832, + 51.292079601 + ], + [ + 6.636301, + 51.292225701 + ], + [ + 6.6363078, + 51.292465101 + ], + [ + 6.6363435, + 51.293040401 + ], + [ + 6.6365676, + 51.293927901 + ], + [ + 6.636605594, + 51.294071723 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de237", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28849164516766,6.635628407351061,51.291118338291724,6.636046760410179", + "point": "51.28849164516766,6.635628407351061", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Meerbusch (aus Richtung Bovert)", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.28849164516766, + "long": 6.635628407351061 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Auffahrt auf die A57: AK Meerbusch (aus Richtung Bovert)", + "", + "L\u00e4nge: 0.29 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.635628407, + 51.288491645 + ], + [ + 6.6356285, + 51.288495201 + ], + [ + 6.6356665, + 51.288955001 + ], + [ + 6.6357652, + 51.289691401 + ], + [ + 6.6358315, + 51.290077201 + ], + [ + 6.6359004, + 51.290564801 + ], + [ + 6.6359919, + 51.290896201 + ], + [ + 6.63604676, + 51.291118338 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de235", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.294072813262424,6.636244256179285,51.29204256664752,6.635702470217241", + "point": "51.294072813262424,6.636244256179285", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Meerbusch (aus Richtung Geism\u00fchle)", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.294072813262424, + "long": 6.636244256179285 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Abfahrt von der A57: AK Meerbusch (aus Richtung Geism\u00fchle)", + "", + "L\u00e4nge: 0.23 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.636244256, + 51.294072813 + ], + [ + 6.6361529, + 51.293730501 + ], + [ + 6.6357494, + 51.292218401 + ], + [ + 6.63570247, + 51.292042567 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de215", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.325270994833794,6.631061596574654,51.326454480614615,6.63006799555216", + "point": "51.325270994833794,6.631061596574654", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Krefeld-Oppum (aus Richtung Geism\u00fchle)", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.325270994833794, + "long": 6.631061596574654 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Auffahrt auf die A57: AS Krefeld-Oppum (aus Richtung Geism\u00fchle)", + "", + "L\u00e4nge: 0.58 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.631061597, + 51.325270995 + ], + [ + 6.6316026, + 51.325121201 + ], + [ + 6.6318798, + 51.325013701 + ], + [ + 6.6320812, + 51.324902701 + ], + [ + 6.6322339, + 51.324769001 + ], + [ + 6.6323412, + 51.324647701 + ], + [ + 6.6324189, + 51.324504201 + ], + [ + 6.6324517, + 51.324381601 + ], + [ + 6.6324297, + 51.324232701 + ], + [ + 6.6323827, + 51.324099601 + ], + [ + 6.6322892, + 51.323999401 + ], + [ + 6.6321292, + 51.323910901 + ], + [ + 6.63194, + 51.323845201 + ], + [ + 6.6317189, + 51.323822001 + ], + [ + 6.6315165, + 51.323830901 + ], + [ + 6.6312955, + 51.323879701 + ], + [ + 6.6310154, + 51.323992701 + ], + [ + 6.630851, + 51.324120401 + ], + [ + 6.6307069, + 51.324346301 + ], + [ + 6.6305348, + 51.324709201 + ], + [ + 6.6305042, + 51.324851001 + ], + [ + 6.6303303, + 51.325641701 + ], + [ + 6.6302027, + 51.326066701 + ], + [ + 6.6300852, + 51.326403701 + ], + [ + 6.630067996, + 51.326454481 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de213", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32027872984584,6.631263408758217,51.32530065004027,6.631233744501858", + "point": "51.32027872984584,6.631263408758217", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Krefeld-Oppum (aus Richtung Geism\u00fchle)", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.32027872984584, + "long": 6.631263408758217 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Abfahrt von der A57: AS Krefeld-Oppum (aus Richtung Geism\u00fchle)", + "", + "L\u00e4nge: 0.65 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.631263409, + 51.32027873 + ], + [ + 6.6312475, + 51.320391201 + ], + [ + 6.6312368, + 51.320473901 + ], + [ + 6.6311207, + 51.321373601 + ], + [ + 6.631051, + 51.321948701 + ], + [ + 6.6310222, + 51.322593101 + ], + [ + 6.6310114, + 51.322804001 + ], + [ + 6.6310568, + 51.322974601 + ], + [ + 6.6311857, + 51.323205301 + ], + [ + 6.6313887, + 51.323407701 + ], + [ + 6.6316828, + 51.323592801 + ], + [ + 6.6321402, + 51.323794301 + ], + [ + 6.6323385, + 51.323899101 + ], + [ + 6.6324786, + 51.324007301 + ], + [ + 6.6325852, + 51.324148901 + ], + [ + 6.6326305, + 51.324282701 + ], + [ + 6.6326192, + 51.324452401 + ], + [ + 6.6325691, + 51.324579601 + ], + [ + 6.632473, + 51.324698001 + ], + [ + 6.6323733, + 51.324812601 + ], + [ + 6.6322079, + 51.324938701 + ], + [ + 6.6319522, + 51.325065701 + ], + [ + 6.6316537, + 51.325184601 + ], + [ + 6.631233745, + 51.32530065 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de211", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32955874986657,6.628688182413112,51.326538215529304,6.625207363561263", + "point": "51.32955874986657,6.628688182413112", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Krefeld-Oppum (aus Richtung Krefeld-Zentrum)", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.32955874986657, + "long": 6.628688182413112 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Abfahrt von der A57: AS Krefeld-Oppum (aus Richtung Krefeld-Zentrum)", + "", + "L\u00e4nge: 0.55 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.628688182, + 51.32955875 + ], + [ + 6.6286965, + 51.329540901 + ], + [ + 6.6288484, + 51.329192801 + ], + [ + 6.6292357, + 51.328262001 + ], + [ + 6.6291945, + 51.328180201 + ], + [ + 6.6292488, + 51.327998001 + ], + [ + 6.629276, + 51.327758401 + ], + [ + 6.6292253, + 51.327589701 + ], + [ + 6.629118, + 51.327422501 + ], + [ + 6.6289358, + 51.327255101 + ], + [ + 6.6287151, + 51.327118701 + ], + [ + 6.6283495, + 51.326985401 + ], + [ + 6.6269932, + 51.326558801 + ], + [ + 6.6266296, + 51.326471501 + ], + [ + 6.6263026, + 51.326439101 + ], + [ + 6.6259946, + 51.326447701 + ], + [ + 6.625207364, + 51.326538216 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de209", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.341236780219624,6.623864253156561,51.33909042340858,6.62454792126148", + "point": "51.341236780219624,6.623864253156561", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Krefeld-Zentrum (aus Richtung Krefeld-Gartenstadt) nach A57", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.341236780219624, + "long": 6.623864253156561 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Von Auffahrt auf die A57: AS Krefeld-Zentrum (aus Richtung Krefeld-Gartenstadt) nach A57: Krefeld -> K\u00f6ln, zwischen AS Krefeld-Zentrum und 1.6 km vor AS Krefeld-Oppum", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.623864253, + 51.34123678 + ], + [ + 6.6239079, + 51.341215501 + ], + [ + 6.6240089, + 51.341151101 + ], + [ + 6.6240985, + 51.341078001 + ], + [ + 6.6241542, + 51.340984101 + ], + [ + 6.6242092, + 51.340823101 + ], + [ + 6.6242487, + 51.340492901 + ], + [ + 6.624355, + 51.340267301 + ], + [ + 6.6244229, + 51.339784701 + ], + [ + 6.624547921, + 51.339090423 + ] + ] + } + }, + { + "identifier": "2023-003033--vi-bs.2026-01-26_00-00-00-000.devi-zus.2023-11-23_00-00-00-000_006.f.de207", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.32647183933048,6.62403564597065,51.32151766078616,6.63090268080525", + "point": "51.32647183933048,6.62403564597065", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Krefeld-Oppum (aus Richtung Krefeld-Zentrum)", + "title": "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum", + "startTimestamp": "2026-01-26T00:00:00+01:00", + "coordinate": { + "lat": 51.32647183933048, + "long": 6.62403564597065 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.01.26 um 00:00 Uhr", + "Ende: 25.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.02.27)", + "", + "Auffahrt auf die A57: AS Krefeld-Oppum (aus Richtung Krefeld-Zentrum)", + "", + "L\u00e4nge: 0.83 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A57 6-streifiger Ausbau zw. AK Meerbusch und AS KR-Oppum" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.624035646, + 51.326471839 + ], + [ + 6.6243674, + 51.326441001 + ], + [ + 6.6252562, + 51.326338201 + ], + [ + 6.6266647, + 51.326136401 + ], + [ + 6.6268816, + 51.326083501 + ], + [ + 6.6271687, + 51.326026801 + ], + [ + 6.6273793, + 51.325972901 + ], + [ + 6.6275823, + 51.325884601 + ], + [ + 6.6277308, + 51.325791101 + ], + [ + 6.6278657, + 51.325648501 + ], + [ + 6.6285027, + 51.324634101 + ], + [ + 6.6286591, + 51.324480101 + ], + [ + 6.6288203, + 51.324385701 + ], + [ + 6.6290316, + 51.324301801 + ], + [ + 6.6296308, + 51.324167601 + ], + [ + 6.6300317, + 51.324016601 + ], + [ + 6.6302234, + 51.323895601 + ], + [ + 6.6303791, + 51.323748901 + ], + [ + 6.6305055, + 51.323527701 + ], + [ + 6.6306848, + 51.322959401 + ], + [ + 6.6308867, + 51.321633001 + ], + [ + 6.630902681, + 51.321517661 + ] + ] + } + } + ] + }, + "A59": { + "roadworks": [ + { + "identifier": "2024-050470--vi-bs.2026-03-14_09-00-00-000.devi-zus.2025-08-16_09-00-00-000.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.725222957106816,7.163058535088323,50.73128262515289,7.153023503067247", + "point": "50.725222957106816,7.163058535088323", + "startLcPosition": "0", + "impact": { + "lower": "Bonn-P\u00fctzchen", + "upper": "Bonn-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | Bonn-Ost - Bonn-P\u00fctzchen", + "startTimestamp": "2026-03-14T09:00:00+01:00", + "coordinate": { + "lat": 50.725222957106816, + "long": 7.163058535088323 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.03.26 um 09:00 Uhr", + "Ende: 13.03.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.03.27)", + "", + "A59: Bonn -> K\u00f6ln, zwischen AK Bonn-Ost und 1.8 km vor AS Bonn-P\u00fctzchen", + "", + "L\u00e4nge: 0.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "BW Ankerbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.163058535, + 50.725222957 + ], + [ + 7.1630134, + 50.725258301 + ], + [ + 7.1625229, + 50.725606701 + ], + [ + 7.1621895, + 50.725834701 + ], + [ + 7.1617534, + 50.726106201 + ], + [ + 7.1612877, + 50.726372301 + ], + [ + 7.1607248, + 50.726676401 + ], + [ + 7.1601689, + 50.726977201 + ], + [ + 7.1594847, + 50.727312801 + ], + [ + 7.1587268, + 50.727709101 + ], + [ + 7.1576867, + 50.728252701 + ], + [ + 7.1573008, + 50.728509301 + ], + [ + 7.1555742, + 50.729513501 + ], + [ + 7.1544645, + 50.730254701 + ], + [ + 7.1537136, + 50.730761701 + ], + [ + 7.1531164, + 50.731209701 + ], + [ + 7.153023503, + 50.731282625 + ] + ] + } + }, + { + "identifier": "2024-050470--vi-bs.2026-03-14_09-00-00-000.devi-zus.2025-08-16_09-00-00-000.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.731203685693956,7.152889607948695,50.7251436512004,7.162949178164156", + "point": "50.731203685693956,7.152889607948695", + "startLcPosition": "1", + "impact": { + "lower": "Bonn-Ost", + "upper": "Bonn-P\u00fctzchen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Bonn-P\u00fctzchen - Bonn-Ost", + "startTimestamp": "2026-03-14T09:00:00+01:00", + "coordinate": { + "lat": 50.731203685693956, + "long": 7.152889607948695 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.03.26 um 09:00 Uhr", + "Ende: 13.03.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.03.27)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 1.8 km hinter AS Bonn-P\u00fctzchen und AK Bonn-Ost", + "", + "L\u00e4nge: 0.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "BW Ankerbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.152889608, + 50.731203686 + ], + [ + 7.1529858, + 50.731125501 + ], + [ + 7.1540842, + 50.730311801 + ], + [ + 7.1554066, + 50.729423301 + ], + [ + 7.1559001, + 50.729115701 + ], + [ + 7.1568007, + 50.728564201 + ], + [ + 7.158622, + 50.727628301 + ], + [ + 7.1594125, + 50.727232401 + ], + [ + 7.1600568, + 50.726900601 + ], + [ + 7.1606204, + 50.726601701 + ], + [ + 7.1611804, + 50.726296101 + ], + [ + 7.1616419, + 50.726033801 + ], + [ + 7.1620588, + 50.725773801 + ], + [ + 7.1627176, + 50.725321601 + ], + [ + 7.1628874, + 50.725192201 + ], + [ + 7.162949178, + 50.725143651 + ] + ] + } + }, + { + "identifier": "2025-012898--vi-bs.2026-03-18_09-00-00-000.devi-zus.2023-08-04_09-00-00-000.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.758096233887954,7.139205446707499,50.761645587089156,7.138042378590483", + "point": "50.758096233887954,7.139205446707499", + "startLcPosition": "2", + "impact": { + "lower": "Bonn-Nordost", + "upper": "Bonn-Vilich", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | Bonn-Vilich - Bonn-Nordost", + "startTimestamp": "2026-03-18T09:00:00+01:00", + "coordinate": { + "lat": 50.758096233887954, + "long": 7.139205446707499 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 09:00 Uhr", + "Ende: 30.04.26 um 14:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A59: Bonn -> K\u00f6ln, zwischen 0.7 km hinter AS Bonn-Vilich und 0.4 km vor AD Bonn-Nordost", + "", + "L\u00e4nge: 0.41 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10.5 m", + "", + "VZA DB-AG (S13)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.139205447, + 50.758096234 + ], + [ + 7.1385999, + 50.759435201 + ], + [ + 7.1384246, + 50.759831101 + ], + [ + 7.1382608, + 50.760324401 + ], + [ + 7.1382031, + 50.760536601 + ], + [ + 7.1381697, + 50.760681701 + ], + [ + 7.1381283, + 50.760883601 + ], + [ + 7.138114, + 50.760971001 + ], + [ + 7.1380601, + 50.761352901 + ], + [ + 7.1380468, + 50.761565901 + ], + [ + 7.138042379, + 50.761645587 + ] + ] + } + }, + { + "identifier": "2025-012898--vi-bs.2026-03-18_09-00-00-000.devi-zus.2023-08-04_09-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.760657118737996,7.137991729536066,50.75978980474933,7.138268952997123", + "point": "50.760657118737996,7.137991729536066", + "startLcPosition": "3", + "impact": { + "lower": "Bonn-Vilich", + "upper": "Bonn-Nordost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Bonn-Nordost - Bonn-Vilich", + "startTimestamp": "2026-03-18T09:00:00+01:00", + "coordinate": { + "lat": 50.760657118737996, + "long": 7.137991729536066 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 09:00 Uhr", + "Ende: 30.04.26 um 14:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 0.5 km hinter AD Bonn-Nordost und 0.9 km vor AS Bonn-Vilich", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 11.25 m", + "", + "VZA DB-AG (S13)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.13799173, + 50.760657119 + ], + [ + 7.1379925, + 50.760654201 + ], + [ + 7.1380378, + 50.760461401 + ], + [ + 7.138082, + 50.760319001 + ], + [ + 7.1381434, + 50.760128301 + ], + [ + 7.138268953, + 50.759789805 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-04-04_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de350", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.818250000547316,7.111191713757156,50.82239572684049,7.103673885273052", + "point": "50.818250000547316,7.111191713757156", + "startLcPosition": "5", + "impact": { + "lower": "K\u00f6ln-Lind", + "upper": "Troisdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | Troisdorf - K\u00f6ln-Lind", + "startTimestamp": "2026-04-04T05:00:00+02:00", + "coordinate": { + "lat": 50.818250000547316, + "long": 7.111191713757156 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.04.26 um 05:00 Uhr", + "Ende: 25.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: Bonn -> K\u00f6ln, zwischen 2.0 km hinter AS Troisdorf und 2.7 km vor AS K\u00f6ln-Lind", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 6 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.111191714, + 50.818250001 + ], + [ + 7.1108497, + 50.818414301 + ], + [ + 7.1094085, + 50.819146801 + ], + [ + 7.1074787, + 50.820200701 + ], + [ + 7.1056727, + 50.821210401 + ], + [ + 7.1044835, + 50.821888901 + ], + [ + 7.103673885, + 50.822395727 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-03-10_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de308", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.818250000547316,7.111191713757156,50.82239572684049,7.103673885273052", + "point": "50.818250000547316,7.111191713757156", + "startLcPosition": "5", + "impact": { + "lower": "K\u00f6ln-Lind", + "upper": "Troisdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | Troisdorf - K\u00f6ln-Lind", + "startTimestamp": "2026-03-10T05:00:00+01:00", + "coordinate": { + "lat": 50.818250000547316, + "long": 7.111191713757156 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: Bonn -> K\u00f6ln, zwischen 2.0 km hinter AS Troisdorf und 2.7 km vor AS K\u00f6ln-Lind", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 6 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.111191714, + 50.818250001 + ], + [ + 7.1108497, + 50.818414301 + ], + [ + 7.1094085, + 50.819146801 + ], + [ + 7.1074787, + 50.820200701 + ], + [ + 7.1056727, + 50.821210401 + ], + [ + 7.1044835, + 50.821888901 + ], + [ + 7.103673885, + 50.822395727 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-04-04_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de359", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.82245891901957,7.103572938826682,50.8595947630197,7.096852271143893", + "point": "50.82245891901957,7.103572938826682", + "startLcPosition": "6", + "impact": { + "lower": "Flughafen K\u00f6ln/Bonn", + "upper": "Spich", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | Spich - Flughafen K\u00f6ln/Bonn", + "startTimestamp": "2026-04-04T05:00:00+02:00", + "coordinate": { + "lat": 50.82245891901957, + "long": 7.103572938826682 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.04.26 um 05:00 Uhr", + "Ende: 25.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: Bonn -> K\u00f6ln, zwischen 0.7 km hinter AS Spich und 2.9 km vor AS Flughafen K\u00f6ln/Bonn", + "", + "L\u00e4nge: 4.38 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.103572939, + 50.822458919 + ], + [ + 7.1021456, + 50.823352401 + ], + [ + 7.1010111, + 50.824093501 + ], + [ + 7.0999623, + 50.824808701 + ], + [ + 7.0987097, + 50.825698201 + ], + [ + 7.0972095, + 50.826940201 + ], + [ + 7.0966773, + 50.827451801 + ], + [ + 7.0961948, + 50.827943501 + ], + [ + 7.0956624, + 50.828563501 + ], + [ + 7.095158, + 50.829247501 + ], + [ + 7.0947448, + 50.829935801 + ], + [ + 7.0944023, + 50.830629201 + ], + [ + 7.0942041, + 50.831199801 + ], + [ + 7.0940438, + 50.831693701 + ], + [ + 7.0939161, + 50.832361701 + ], + [ + 7.0938311, + 50.832968801 + ], + [ + 7.0938211, + 50.833554101 + ], + [ + 7.0938311, + 50.834164901 + ], + [ + 7.0938793, + 50.834691901 + ], + [ + 7.0939586, + 50.835246601 + ], + [ + 7.0940754, + 50.835875201 + ], + [ + 7.0943682, + 50.837077301 + ], + [ + 7.094874, + 50.838651301 + ], + [ + 7.0953717, + 50.840131601 + ], + [ + 7.0956512, + 50.840979101 + ], + [ + 7.0958646, + 50.841616301 + ], + [ + 7.0960551, + 50.842153301 + ], + [ + 7.0966077, + 50.843709801 + ], + [ + 7.0968215, + 50.844467301 + ], + [ + 7.0973864, + 50.846263301 + ], + [ + 7.0974779, + 50.846670401 + ], + [ + 7.0975299, + 50.846910901 + ], + [ + 7.0976411, + 50.847647901 + ], + [ + 7.0977602, + 50.848967701 + ], + [ + 7.0978049, + 50.850226201 + ], + [ + 7.0977758, + 50.851491201 + ], + [ + 7.0977556, + 50.851842901 + ], + [ + 7.0974787, + 50.854164201 + ], + [ + 7.0973242, + 50.855724201 + ], + [ + 7.0970053, + 50.858439601 + ], + [ + 7.0969349, + 50.859038301 + ], + [ + 7.096852271, + 50.859594763 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-03-10_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de317", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.82245891901957,7.103572938826682,50.8595947630197,7.096852271143893", + "point": "50.82245891901957,7.103572938826682", + "startLcPosition": "6", + "impact": { + "lower": "Flughafen K\u00f6ln/Bonn", + "upper": "Spich", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | Spich - Flughafen K\u00f6ln/Bonn", + "startTimestamp": "2026-03-10T05:00:00+01:00", + "coordinate": { + "lat": 50.82245891901957, + "long": 7.103572938826682 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: Bonn -> K\u00f6ln, zwischen 0.7 km hinter AS Spich und 2.9 km vor AS Flughafen K\u00f6ln/Bonn", + "", + "L\u00e4nge: 4.38 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.103572939, + 50.822458919 + ], + [ + 7.1021456, + 50.823352401 + ], + [ + 7.1010111, + 50.824093501 + ], + [ + 7.0999623, + 50.824808701 + ], + [ + 7.0987097, + 50.825698201 + ], + [ + 7.0972095, + 50.826940201 + ], + [ + 7.0966773, + 50.827451801 + ], + [ + 7.0961948, + 50.827943501 + ], + [ + 7.0956624, + 50.828563501 + ], + [ + 7.095158, + 50.829247501 + ], + [ + 7.0947448, + 50.829935801 + ], + [ + 7.0944023, + 50.830629201 + ], + [ + 7.0942041, + 50.831199801 + ], + [ + 7.0940438, + 50.831693701 + ], + [ + 7.0939161, + 50.832361701 + ], + [ + 7.0938311, + 50.832968801 + ], + [ + 7.0938211, + 50.833554101 + ], + [ + 7.0938311, + 50.834164901 + ], + [ + 7.0938793, + 50.834691901 + ], + [ + 7.0939586, + 50.835246601 + ], + [ + 7.0940754, + 50.835875201 + ], + [ + 7.0943682, + 50.837077301 + ], + [ + 7.094874, + 50.838651301 + ], + [ + 7.0953717, + 50.840131601 + ], + [ + 7.0956512, + 50.840979101 + ], + [ + 7.0958646, + 50.841616301 + ], + [ + 7.0960551, + 50.842153301 + ], + [ + 7.0966077, + 50.843709801 + ], + [ + 7.0968215, + 50.844467301 + ], + [ + 7.0973864, + 50.846263301 + ], + [ + 7.0974779, + 50.846670401 + ], + [ + 7.0975299, + 50.846910901 + ], + [ + 7.0976411, + 50.847647901 + ], + [ + 7.0977602, + 50.848967701 + ], + [ + 7.0978049, + 50.850226201 + ], + [ + 7.0977758, + 50.851491201 + ], + [ + 7.0977556, + 50.851842901 + ], + [ + 7.0974787, + 50.854164201 + ], + [ + 7.0973242, + 50.855724201 + ], + [ + 7.0970053, + 50.858439601 + ], + [ + 7.0969349, + 50.859038301 + ], + [ + 7.096852271, + 50.859594763 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-04-04_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de355", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.8595947630197,7.096852271143893,50.86335709483036,7.096368037108439", + "point": "50.8595947630197,7.096852271143893", + "startLcPosition": "8", + "impact": { + "lower": "Flughafen K\u00f6ln/Bonn", + "upper": "K\u00f6ln-Wahn", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | K\u00f6ln-Wahn - Flughafen K\u00f6ln/Bonn", + "startTimestamp": "2026-04-04T05:00:00+02:00", + "coordinate": { + "lat": 50.8595947630197, + "long": 7.096852271143893 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.04.26 um 05:00 Uhr", + "Ende: 25.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: Bonn -> K\u00f6ln, zwischen 0.1 km hinter AS K\u00f6ln-Wahn und 2.5 km vor AS Flughafen K\u00f6ln/Bonn", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.096852271, + 50.859594763 + ], + [ + 7.0967226, + 50.860468001 + ], + [ + 7.096601, + 50.861518101 + ], + [ + 7.0963798, + 50.863265101 + ], + [ + 7.096368037, + 50.863357095 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-04-04_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de348", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.86335709483036,7.096368037108439,50.879304736835785,7.094677906786883", + "point": "50.86335709483036,7.096368037108439", + "startLcPosition": "8", + "impact": { + "lower": "Flughafen K\u00f6ln/Bonn", + "upper": "K\u00f6ln-Wahn", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | K\u00f6ln-Wahn - Flughafen K\u00f6ln/Bonn", + "startTimestamp": "2026-04-04T05:00:00+02:00", + "coordinate": { + "lat": 50.86335709483036, + "long": 7.096368037108439 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.04.26 um 05:00 Uhr", + "Ende: 25.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: Bonn -> K\u00f6ln, zwischen 0.5 km hinter AS K\u00f6ln-Wahn und 0.7 km vor AS Flughafen K\u00f6ln/Bonn", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.096368037, + 50.863357095 + ], + [ + 7.096343, + 50.863552901 + ], + [ + 7.0958836, + 50.867256001 + ], + [ + 7.0953281, + 50.872447801 + ], + [ + 7.0953018, + 50.872723201 + ], + [ + 7.0951028, + 50.874463201 + ], + [ + 7.0949498, + 50.876132901 + ], + [ + 7.0949292, + 50.876470101 + ], + [ + 7.0947959, + 50.877844401 + ], + [ + 7.094677907, + 50.879304737 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-03-10_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de313", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.8595947630197,7.096852271143893,50.86335709483036,7.096368037108439", + "point": "50.8595947630197,7.096852271143893", + "startLcPosition": "8", + "impact": { + "lower": "Flughafen K\u00f6ln/Bonn", + "upper": "K\u00f6ln-Wahn", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | K\u00f6ln-Wahn - Flughafen K\u00f6ln/Bonn", + "startTimestamp": "2026-03-10T05:00:00+01:00", + "coordinate": { + "lat": 50.8595947630197, + "long": 7.096852271143893 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: Bonn -> K\u00f6ln, zwischen 0.1 km hinter AS K\u00f6ln-Wahn und 2.5 km vor AS Flughafen K\u00f6ln/Bonn", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.096852271, + 50.859594763 + ], + [ + 7.0967226, + 50.860468001 + ], + [ + 7.096601, + 50.861518101 + ], + [ + 7.0963798, + 50.863265101 + ], + [ + 7.096368037, + 50.863357095 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-03-10_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de306", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.86335709483036,7.096368037108439,50.879304736835785,7.094677906786883", + "point": "50.86335709483036,7.096368037108439", + "startLcPosition": "8", + "impact": { + "lower": "Flughafen K\u00f6ln/Bonn", + "upper": "K\u00f6ln-Wahn", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A59 | K\u00f6ln-Wahn - Flughafen K\u00f6ln/Bonn", + "startTimestamp": "2026-03-10T05:00:00+01:00", + "coordinate": { + "lat": 50.86335709483036, + "long": 7.096368037108439 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: Bonn -> K\u00f6ln, zwischen 0.5 km hinter AS K\u00f6ln-Wahn und 0.7 km vor AS Flughafen K\u00f6ln/Bonn", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.096368037, + 50.863357095 + ], + [ + 7.096343, + 50.863552901 + ], + [ + 7.0958836, + 50.867256001 + ], + [ + 7.0953281, + 50.872447801 + ], + [ + 7.0953018, + 50.872723201 + ], + [ + 7.0951028, + 50.874463201 + ], + [ + 7.0949498, + 50.876132901 + ], + [ + 7.0949292, + 50.876470101 + ], + [ + 7.0947959, + 50.877844401 + ], + [ + 7.094677907, + 50.879304737 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-04-04_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de357", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.85958212315789,7.0966163821132735,50.82239118726276,7.103467839622911", + "point": "50.85958212315789,7.0966163821132735", + "startLcPosition": "9", + "impact": { + "lower": "Spich", + "upper": "Flughafen K\u00f6ln/Bonn", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Flughafen K\u00f6ln/Bonn - Spich", + "startTimestamp": "2026-04-04T05:00:00+02:00", + "coordinate": { + "lat": 50.85958212315789, + "long": 7.0966163821132735 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.04.26 um 05:00 Uhr", + "Ende: 25.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 2.9 km hinter AS Flughafen K\u00f6ln/Bonn und 0.7 km vor AS Spich", + "", + "L\u00e4nge: 4.38 km | Maximale Durchfahrtsbreite: 6.4 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.096616382, + 50.859582123 + ], + [ + 7.096681, + 50.859018301 + ], + [ + 7.0967529, + 50.858439601 + ], + [ + 7.097134, + 50.855908201 + ], + [ + 7.097316, + 50.854153701 + ], + [ + 7.0974596, + 50.852953401 + ], + [ + 7.0975924, + 50.851846201 + ], + [ + 7.0976032, + 50.851479101 + ], + [ + 7.0976457, + 50.850230401 + ], + [ + 7.0976038, + 50.848978801 + ], + [ + 7.0975025, + 50.848001601 + ], + [ + 7.0973033, + 50.846876601 + ], + [ + 7.0972673, + 50.846636401 + ], + [ + 7.0971133, + 50.846035901 + ], + [ + 7.096673, + 50.844529801 + ], + [ + 7.0964624, + 50.843893701 + ], + [ + 7.0959151, + 50.842265901 + ], + [ + 7.095808, + 50.841953801 + ], + [ + 7.0957271, + 50.841727001 + ], + [ + 7.0948471, + 50.839062501 + ], + [ + 7.0947072, + 50.838661901 + ], + [ + 7.094212, + 50.837072501 + ], + [ + 7.0939115, + 50.835849301 + ], + [ + 7.0938037, + 50.835267901 + ], + [ + 7.0937275, + 50.834722001 + ], + [ + 7.093681, + 50.834143801 + ], + [ + 7.093658, + 50.833554201 + ], + [ + 7.0936768, + 50.832966101 + ], + [ + 7.0937626, + 50.832337301 + ], + [ + 7.0938928, + 50.831682901 + ], + [ + 7.0940627, + 50.831122901 + ], + [ + 7.0942525, + 50.830616001 + ], + [ + 7.0945895, + 50.829906301 + ], + [ + 7.0950107, + 50.829218601 + ], + [ + 7.0955248, + 50.828508201 + ], + [ + 7.0960497, + 50.827895801 + ], + [ + 7.0965379, + 50.827390701 + ], + [ + 7.0970752, + 50.826880101 + ], + [ + 7.0985822, + 50.825633801 + ], + [ + 7.099852, + 50.824722601 + ], + [ + 7.1009181, + 50.824005501 + ], + [ + 7.1020566, + 50.823264301 + ], + [ + 7.10346784, + 50.822391187 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-04-04_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de353", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.863348571536086,7.096178890631859,50.85958212315789,7.0966163821132735", + "point": "50.863348571536086,7.096178890631859", + "startLcPosition": "9", + "impact": { + "lower": "K\u00f6ln-Wahn", + "upper": "Flughafen K\u00f6ln/Bonn", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Flughafen K\u00f6ln/Bonn - K\u00f6ln-Wahn", + "startTimestamp": "2026-04-04T05:00:00+02:00", + "coordinate": { + "lat": 50.863348571536086, + "long": 7.096178890631859 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.04.26 um 05:00 Uhr", + "Ende: 25.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 2.5 km hinter AS Flughafen K\u00f6ln/Bonn und 0.1 km vor AS K\u00f6ln-Wahn", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.096178891, + 50.863348572 + ], + [ + 7.0961878, + 50.863255201 + ], + [ + 7.096304, + 50.862399001 + ], + [ + 7.096374, + 50.861740401 + ], + [ + 7.0964455, + 50.861138401 + ], + [ + 7.0965112, + 50.860599901 + ], + [ + 7.0965481, + 50.860177901 + ], + [ + 7.096616382, + 50.859582123 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-04-04_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de346", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.87929893206595,7.09450356455774,50.863348571536086,7.096178890631859", + "point": "50.87929893206595,7.09450356455774", + "startLcPosition": "9", + "impact": { + "lower": "K\u00f6ln-Wahn", + "upper": "Flughafen K\u00f6ln/Bonn", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Flughafen K\u00f6ln/Bonn - K\u00f6ln-Wahn", + "startTimestamp": "2026-04-04T05:00:00+02:00", + "coordinate": { + "lat": 50.87929893206595, + "long": 7.09450356455774 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.04.26 um 05:00 Uhr", + "Ende: 25.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 0.7 km hinter AS Flughafen K\u00f6ln/Bonn und 0.5 km vor AS K\u00f6ln-Wahn", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 6.4 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.094503565, + 50.879298932 + ], + [ + 7.0946285, + 50.877835701 + ], + [ + 7.0947579, + 50.876468001 + ], + [ + 7.0947814, + 50.876131301 + ], + [ + 7.0949449, + 50.874463201 + ], + [ + 7.0951222, + 50.872717501 + ], + [ + 7.0951532, + 50.872444901 + ], + [ + 7.0957101, + 50.867248701 + ], + [ + 7.0961603, + 50.863543401 + ], + [ + 7.096178891, + 50.863348572 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-03-10_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de315", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.85958212315789,7.0966163821132735,50.82239118726276,7.103467839622911", + "point": "50.85958212315789,7.0966163821132735", + "startLcPosition": "9", + "impact": { + "lower": "Spich", + "upper": "Flughafen K\u00f6ln/Bonn", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Flughafen K\u00f6ln/Bonn - Spich", + "startTimestamp": "2026-03-10T05:00:00+01:00", + "coordinate": { + "lat": 50.85958212315789, + "long": 7.0966163821132735 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 2.9 km hinter AS Flughafen K\u00f6ln/Bonn und 0.7 km vor AS Spich", + "", + "L\u00e4nge: 4.38 km | Maximale Durchfahrtsbreite: 6.4 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.096616382, + 50.859582123 + ], + [ + 7.096681, + 50.859018301 + ], + [ + 7.0967529, + 50.858439601 + ], + [ + 7.097134, + 50.855908201 + ], + [ + 7.097316, + 50.854153701 + ], + [ + 7.0974596, + 50.852953401 + ], + [ + 7.0975924, + 50.851846201 + ], + [ + 7.0976032, + 50.851479101 + ], + [ + 7.0976457, + 50.850230401 + ], + [ + 7.0976038, + 50.848978801 + ], + [ + 7.0975025, + 50.848001601 + ], + [ + 7.0973033, + 50.846876601 + ], + [ + 7.0972673, + 50.846636401 + ], + [ + 7.0971133, + 50.846035901 + ], + [ + 7.096673, + 50.844529801 + ], + [ + 7.0964624, + 50.843893701 + ], + [ + 7.0959151, + 50.842265901 + ], + [ + 7.095808, + 50.841953801 + ], + [ + 7.0957271, + 50.841727001 + ], + [ + 7.0948471, + 50.839062501 + ], + [ + 7.0947072, + 50.838661901 + ], + [ + 7.094212, + 50.837072501 + ], + [ + 7.0939115, + 50.835849301 + ], + [ + 7.0938037, + 50.835267901 + ], + [ + 7.0937275, + 50.834722001 + ], + [ + 7.093681, + 50.834143801 + ], + [ + 7.093658, + 50.833554201 + ], + [ + 7.0936768, + 50.832966101 + ], + [ + 7.0937626, + 50.832337301 + ], + [ + 7.0938928, + 50.831682901 + ], + [ + 7.0940627, + 50.831122901 + ], + [ + 7.0942525, + 50.830616001 + ], + [ + 7.0945895, + 50.829906301 + ], + [ + 7.0950107, + 50.829218601 + ], + [ + 7.0955248, + 50.828508201 + ], + [ + 7.0960497, + 50.827895801 + ], + [ + 7.0965379, + 50.827390701 + ], + [ + 7.0970752, + 50.826880101 + ], + [ + 7.0985822, + 50.825633801 + ], + [ + 7.099852, + 50.824722601 + ], + [ + 7.1009181, + 50.824005501 + ], + [ + 7.1020566, + 50.823264301 + ], + [ + 7.10346784, + 50.822391187 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-03-10_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de311", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.863348571536086,7.096178890631859,50.85958212315789,7.0966163821132735", + "point": "50.863348571536086,7.096178890631859", + "startLcPosition": "9", + "impact": { + "lower": "K\u00f6ln-Wahn", + "upper": "Flughafen K\u00f6ln/Bonn", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Flughafen K\u00f6ln/Bonn - K\u00f6ln-Wahn", + "startTimestamp": "2026-03-10T05:00:00+01:00", + "coordinate": { + "lat": 50.863348571536086, + "long": 7.096178890631859 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 2.5 km hinter AS Flughafen K\u00f6ln/Bonn und 0.1 km vor AS K\u00f6ln-Wahn", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.096178891, + 50.863348572 + ], + [ + 7.0961878, + 50.863255201 + ], + [ + 7.096304, + 50.862399001 + ], + [ + 7.096374, + 50.861740401 + ], + [ + 7.0964455, + 50.861138401 + ], + [ + 7.0965112, + 50.860599901 + ], + [ + 7.0965481, + 50.860177901 + ], + [ + 7.096616382, + 50.859582123 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-03-10_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de304", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.87929893206595,7.09450356455774,50.863348571536086,7.096178890631859", + "point": "50.87929893206595,7.09450356455774", + "startLcPosition": "9", + "impact": { + "lower": "K\u00f6ln-Wahn", + "upper": "Flughafen K\u00f6ln/Bonn", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Flughafen K\u00f6ln/Bonn - K\u00f6ln-Wahn", + "startTimestamp": "2026-03-10T05:00:00+01:00", + "coordinate": { + "lat": 50.87929893206595, + "long": 7.09450356455774 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 0.7 km hinter AS Flughafen K\u00f6ln/Bonn und 0.5 km vor AS K\u00f6ln-Wahn", + "", + "L\u00e4nge: 1.78 km | Maximale Durchfahrtsbreite: 6.4 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.094503565, + 50.879298932 + ], + [ + 7.0946285, + 50.877835701 + ], + [ + 7.0947579, + 50.876468001 + ], + [ + 7.0947814, + 50.876131301 + ], + [ + 7.0949449, + 50.874463201 + ], + [ + 7.0951222, + 50.872717501 + ], + [ + 7.0951532, + 50.872444901 + ], + [ + 7.0957101, + 50.867248701 + ], + [ + 7.0961603, + 50.863543401 + ], + [ + 7.096178891, + 50.863348572 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-04-04_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de344", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.88654426043701,7.0935781052103835,50.87929893206595,7.09450356455774", + "point": "50.88654426043701,7.0935781052103835", + "startLcPosition": "10", + "impact": { + "lower": "K\u00f6ln-Wahn", + "upper": "Schlo\u00df R\u00f6ttgen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Schlo\u00df R\u00f6ttgen - K\u00f6ln-Wahn", + "startTimestamp": "2026-04-04T05:00:00+02:00", + "coordinate": { + "lat": 50.88654426043701, + "long": 7.0935781052103835 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.04.26 um 05:00 Uhr", + "Ende: 25.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 1.4 km hinter Schlo\u00df R\u00f6ttgen und 2.3 km vor AS K\u00f6ln-Wahn", + "", + "L\u00e4nge: 0.81 km | Maximale Durchfahrtsbreite: 6.4 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.093578105, + 50.88654426 + ], + [ + 7.0936663, + 50.886147801 + ], + [ + 7.093721, + 50.885865101 + ], + [ + 7.093825, + 50.885329401 + ], + [ + 7.0938588, + 50.885137601 + ], + [ + 7.0939024, + 50.884868101 + ], + [ + 7.09396, + 50.884495401 + ], + [ + 7.0940424, + 50.883906501 + ], + [ + 7.0941029, + 50.883423001 + ], + [ + 7.0941562, + 50.882941901 + ], + [ + 7.0942041, + 50.882459301 + ], + [ + 7.0942215, + 50.882085601 + ], + [ + 7.0942577, + 50.881792301 + ], + [ + 7.0942756, + 50.881460901 + ], + [ + 7.0944329, + 50.880126501 + ], + [ + 7.094503565, + 50.879298932 + ] + ] + } + }, + { + "identifier": "2023-000995--vi-bs.2026-03-10_05-00-00-000.devi-zus.2024-07-26_20-00-00-000.f.de302", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.88654426043701,7.0935781052103835,50.87929893206595,7.09450356455774", + "point": "50.88654426043701,7.0935781052103835", + "startLcPosition": "10", + "impact": { + "lower": "K\u00f6ln-Wahn", + "upper": "Schlo\u00df R\u00f6ttgen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | Schlo\u00df R\u00f6ttgen - K\u00f6ln-Wahn", + "startTimestamp": "2026-03-10T05:00:00+01:00", + "coordinate": { + "lat": 50.88654426043701, + "long": 7.0935781052103835 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 05:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.08.26)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 1.4 km hinter Schlo\u00df R\u00f6ttgen und 2.3 km vor AS K\u00f6ln-Wahn", + "", + "L\u00e4nge: 0.81 km | Maximale Durchfahrtsbreite: 6.4 m", + "", + "FB-San. Flughafen - Troisdorf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.093578105, + 50.88654426 + ], + [ + 7.0936663, + 50.886147801 + ], + [ + 7.093721, + 50.885865101 + ], + [ + 7.093825, + 50.885329401 + ], + [ + 7.0938588, + 50.885137601 + ], + [ + 7.0939024, + 50.884868101 + ], + [ + 7.09396, + 50.884495401 + ], + [ + 7.0940424, + 50.883906501 + ], + [ + 7.0941029, + 50.883423001 + ], + [ + 7.0941562, + 50.882941901 + ], + [ + 7.0942041, + 50.882459301 + ], + [ + 7.0942215, + 50.882085601 + ], + [ + 7.0942577, + 50.881792301 + ], + [ + 7.0942756, + 50.881460901 + ], + [ + 7.0944329, + 50.880126501 + ], + [ + 7.094503565, + 50.879298932 + ] + ] + } + }, + { + "identifier": "2023-001733--vi-bs.2024-07-31_05-00-00-000.devi-zus.2022-02-09_05-00-00-000.f_001.de18", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.92188868534071,7.06148738566289,50.920400201201666,7.062750150132321", + "point": "50.92188868534071,7.06148738566289", + "startLcPosition": "13", + "impact": { + "lower": "K\u00f6ln-Rath", + "upper": "K\u00f6ln-Heumar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A59 | K\u00f6ln-Heumar - K\u00f6ln-Rath", + "startTimestamp": "2024-07-31T05:00:00+02:00", + "coordinate": { + "lat": 50.92188868534071, + "long": 7.06148738566289 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.07.24 um 05:00 Uhr", + "Ende: 18.02.29 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.02.29)", + "", + "A59: K\u00f6ln -> Bonn, zwischen 0.2 km hinter AD K\u00f6ln-Heumar und 1.4 km vor AS K\u00f6ln-Rath", + "", + "L\u00e4nge: 0.19 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Umbau AD Heumar (DEGES)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.061487386, + 50.921888685 + ], + [ + 7.0614956, + 50.921880401 + ], + [ + 7.0618264, + 50.921554301 + ], + [ + 7.062098, + 50.921241001 + ], + [ + 7.0623573, + 50.920923701 + ], + [ + 7.0626042, + 50.920602501 + ], + [ + 7.06275015, + 50.920400201 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2026-04-06_07-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de640", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.048546935860415,6.941174364612203,51.0494982128353,6.939668825952317", + "point": "51.048546935860415,6.941174364612203", + "startLcPosition": "15", + "impact": { + "lower": "Leverkusen-Rheindorf", + "upper": "Leverkusen-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> D\u00fcsseldorf", + "title": "A59 | Leverkusen-West - Leverkusen-Rheindorf", + "coordinate": { + "lat": 51.048546935860415, + "long": 6.941174364612203 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 05:00 bis 15:00 Uhr", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A59: K\u00f6ln -> D\u00fcsseldorf, zwischen 2.2 km hinter AK Leverkusen-West und 1.0 km vor AS Leverkusen-Rheindorf", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.941174365, + 51.048546936 + ], + [ + 6.9410448, + 51.048616801 + ], + [ + 6.9406443, + 51.048843101 + ], + [ + 6.9403361, + 51.049023101 + ], + [ + 6.939952, + 51.049286501 + ], + [ + 6.9396957, + 51.049476401 + ], + [ + 6.939668826, + 51.049498213 + ] + ] + } + }, + { + "identifier": "2023-001678--vi-bs.2025-11-24_09-00-00-000.devi-zus.2027-09-25_05-00-00-000.f_001.de58", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.09597074064138,6.927263489083824,51.185288569649856,6.873559049236561", + "point": "51.09597074064138,6.927263489083824", + "startLcPosition": "17", + "impact": { + "lower": "D\u00fcsseldorf-S\u00fcd", + "upper": "Monheim-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> D\u00fcsseldorf", + "title": "A59 | Monheim-S\u00fcd - D\u00fcsseldorf-S\u00fcd", + "startTimestamp": "2025-11-24T09:00:00+01:00", + "coordinate": { + "lat": 51.09597074064138, + "long": 6.927263489083824 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.11.25 um 09:00 Uhr", + "Ende: 30.09.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.08.35)", + "", + "A59: K\u00f6ln -> D\u00fcsseldorf, zwischen 1.6 km hinter AD Monheim-S\u00fcd und 0.5 km vor AD D\u00fcsseldorf-S\u00fcd", + "", + "L\u00e4nge: 10.91 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Grundhafte Sanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.927263489, + 51.095970741 + ], + [ + 6.9270715, + 51.097048501 + ], + [ + 6.9269791, + 51.097579301 + ], + [ + 6.9268145, + 51.098521501 + ], + [ + 6.92651, + 51.099820101 + ], + [ + 6.9263221, + 51.100489601 + ], + [ + 6.9261506, + 51.101086201 + ], + [ + 6.9257911, + 51.102172201 + ], + [ + 6.9255777, + 51.102703001 + ], + [ + 6.9253233, + 51.103274801 + ], + [ + 6.9247824, + 51.104391601 + ], + [ + 6.9239554, + 51.105736701 + ], + [ + 6.923305, + 51.106633501 + ], + [ + 6.9223099, + 51.107784901 + ], + [ + 6.921408, + 51.108754801 + ], + [ + 6.9203671, + 51.109832001 + ], + [ + 6.9181985, + 51.111972501 + ], + [ + 6.9176279, + 51.112578201 + ], + [ + 6.917283, + 51.112954401 + ], + [ + 6.9163022, + 51.114184701 + ], + [ + 6.9155874, + 51.115173701 + ], + [ + 6.9149746, + 51.116160701 + ], + [ + 6.9145242, + 51.117017701 + ], + [ + 6.9142786, + 51.117556401 + ], + [ + 6.914, + 51.118193601 + ], + [ + 6.913754, + 51.118880801 + ], + [ + 6.9134794, + 51.119731301 + ], + [ + 6.9131956, + 51.120839601 + ], + [ + 6.9129159, + 51.122267001 + ], + [ + 6.9127534, + 51.123516601 + ], + [ + 6.9125596, + 51.125151201 + ], + [ + 6.9123599, + 51.127071801 + ], + [ + 6.9122513, + 51.127768701 + ], + [ + 6.9121564, + 51.128106901 + ], + [ + 6.91203, + 51.128661201 + ], + [ + 6.911834, + 51.129218001 + ], + [ + 6.9116057, + 51.129732601 + ], + [ + 6.9113883, + 51.130174901 + ], + [ + 6.9111221, + 51.130644701 + ], + [ + 6.9106298, + 51.131350701 + ], + [ + 6.9100576, + 51.132072901 + ], + [ + 6.9092872, + 51.132903601 + ], + [ + 6.9089234, + 51.133278601 + ], + [ + 6.9053494, + 51.136944301 + ], + [ + 6.9050398, + 51.137272901 + ], + [ + 6.9022249, + 51.140132201 + ], + [ + 6.9017738, + 51.140582901 + ], + [ + 6.9008116, + 51.141564201 + ], + [ + 6.8998584, + 51.142556401 + ], + [ + 6.8986068, + 51.143812301 + ], + [ + 6.8978266, + 51.144638601 + ], + [ + 6.8966337, + 51.145832601 + ], + [ + 6.8938985, + 51.148651801 + ], + [ + 6.8937172, + 51.148852601 + ], + [ + 6.8933442, + 51.149260701 + ], + [ + 6.8931272, + 51.149530701 + ], + [ + 6.8927484, + 51.150009501 + ], + [ + 6.8925757, + 51.150240801 + ], + [ + 6.8922317, + 51.150760901 + ], + [ + 6.8920112, + 51.151133301 + ], + [ + 6.8918066, + 51.151537301 + ], + [ + 6.8916533, + 51.151889901 + ], + [ + 6.89151, + 51.152210501 + ], + [ + 6.8913983, + 51.152518801 + ], + [ + 6.8912857, + 51.152873401 + ], + [ + 6.8911247, + 51.153514801 + ], + [ + 6.8910684, + 51.153842001 + ], + [ + 6.8910237, + 51.154155201 + ], + [ + 6.8909868, + 51.154529201 + ], + [ + 6.8909541, + 51.155167001 + ], + [ + 6.890945, + 51.155584101 + ], + [ + 6.8909433, + 51.156117701 + ], + [ + 6.8909571, + 51.158547301 + ], + [ + 6.8909641, + 51.159582301 + ], + [ + 6.8909504, + 51.160231201 + ], + [ + 6.8909264, + 51.160862801 + ], + [ + 6.8908524, + 51.161501501 + ], + [ + 6.8906529, + 51.162409201 + ], + [ + 6.8903439, + 51.163236601 + ], + [ + 6.8899006, + 51.164053301 + ], + [ + 6.8894576, + 51.164684201 + ], + [ + 6.8889607, + 51.165290001 + ], + [ + 6.8886559, + 51.165618301 + ], + [ + 6.8867531, + 51.167664901 + ], + [ + 6.8858638, + 51.168860401 + ], + [ + 6.8855205, + 51.169510501 + ], + [ + 6.8852394, + 51.170414601 + ], + [ + 6.8851206, + 51.171399601 + ], + [ + 6.8851019, + 51.172301901 + ], + [ + 6.8851308, + 51.173020001 + ], + [ + 6.8851759, + 51.174072001 + ], + [ + 6.885164, + 51.174727101 + ], + [ + 6.8851291, + 51.175067701 + ], + [ + 6.8850913, + 51.175350601 + ], + [ + 6.8850245, + 51.175688101 + ], + [ + 6.8849668, + 51.175925801 + ], + [ + 6.8848687, + 51.176253401 + ], + [ + 6.8847661, + 51.176536601 + ], + [ + 6.8846421, + 51.176832601 + ], + [ + 6.8844997, + 51.177086301 + ], + [ + 6.8843856, + 51.177297501 + ], + [ + 6.8842403, + 51.177537001 + ], + [ + 6.8840826, + 51.177779201 + ], + [ + 6.883882, + 51.178058301 + ], + [ + 6.8835369, + 51.178483701 + ], + [ + 6.8831279, + 51.178932901 + ], + [ + 6.8827425, + 51.179270701 + ], + [ + 6.8823195, + 51.179632801 + ], + [ + 6.8816503, + 51.180104901 + ], + [ + 6.8813522, + 51.180312701 + ], + [ + 6.8808696, + 51.180605501 + ], + [ + 6.8801194, + 51.181030001 + ], + [ + 6.8793346, + 51.181436201 + ], + [ + 6.8779747, + 51.182123101 + ], + [ + 6.8773143, + 51.182478901 + ], + [ + 6.8767879, + 51.182784001 + ], + [ + 6.8760807, + 51.183227001 + ], + [ + 6.8754714, + 51.183639401 + ], + [ + 6.8748012, + 51.184131001 + ], + [ + 6.8741546, + 51.184685201 + ], + [ + 6.8737189, + 51.185108601 + ], + [ + 6.873559049, + 51.18528857 + ] + ] + } + }, + { + "identifier": "2023-001678--vi-bs.2025-09-29_09-00-00-000.devi-zus.2027-09-25_05-00-00-000.f_001.de26", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.09597074064138,6.927263489083824,51.184474078572684,6.8744009244815905", + "point": "51.09597074064138,6.927263489083824", + "startLcPosition": "17", + "impact": { + "lower": "D\u00fcsseldorf-S\u00fcd", + "upper": "Monheim-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> D\u00fcsseldorf", + "title": "A59 | Monheim-S\u00fcd - D\u00fcsseldorf-S\u00fcd", + "startTimestamp": "2025-09-29T09:00:00+02:00", + "coordinate": { + "lat": 51.09597074064138, + "long": 6.927263489083824 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.09.25 um 09:00 Uhr", + "Ende: 30.09.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.08.35)", + "", + "A59: K\u00f6ln -> D\u00fcsseldorf, zwischen 1.6 km hinter AD Monheim-S\u00fcd und 0.6 km vor AD D\u00fcsseldorf-S\u00fcd", + "", + "L\u00e4nge: 10.8 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Grundhafte Sanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.927263489, + 51.095970741 + ], + [ + 6.9270715, + 51.097048501 + ], + [ + 6.9269791, + 51.097579301 + ], + [ + 6.9268145, + 51.098521501 + ], + [ + 6.92651, + 51.099820101 + ], + [ + 6.9263221, + 51.100489601 + ], + [ + 6.9261506, + 51.101086201 + ], + [ + 6.9257911, + 51.102172201 + ], + [ + 6.9255777, + 51.102703001 + ], + [ + 6.9253233, + 51.103274801 + ], + [ + 6.9247824, + 51.104391601 + ], + [ + 6.9239554, + 51.105736701 + ], + [ + 6.923305, + 51.106633501 + ], + [ + 6.9223099, + 51.107784901 + ], + [ + 6.921408, + 51.108754801 + ], + [ + 6.9203671, + 51.109832001 + ], + [ + 6.9181985, + 51.111972501 + ], + [ + 6.9176279, + 51.112578201 + ], + [ + 6.917283, + 51.112954401 + ], + [ + 6.9163022, + 51.114184701 + ], + [ + 6.9155874, + 51.115173701 + ], + [ + 6.9149746, + 51.116160701 + ], + [ + 6.9145242, + 51.117017701 + ], + [ + 6.9142786, + 51.117556401 + ], + [ + 6.914, + 51.118193601 + ], + [ + 6.913754, + 51.118880801 + ], + [ + 6.9134794, + 51.119731301 + ], + [ + 6.9131956, + 51.120839601 + ], + [ + 6.9129159, + 51.122267001 + ], + [ + 6.9127534, + 51.123516601 + ], + [ + 6.9125596, + 51.125151201 + ], + [ + 6.9123599, + 51.127071801 + ], + [ + 6.9122513, + 51.127768701 + ], + [ + 6.9121564, + 51.128106901 + ], + [ + 6.91203, + 51.128661201 + ], + [ + 6.911834, + 51.129218001 + ], + [ + 6.9116057, + 51.129732601 + ], + [ + 6.9113883, + 51.130174901 + ], + [ + 6.9111221, + 51.130644701 + ], + [ + 6.9106298, + 51.131350701 + ], + [ + 6.9100576, + 51.132072901 + ], + [ + 6.9092872, + 51.132903601 + ], + [ + 6.9089234, + 51.133278601 + ], + [ + 6.9053494, + 51.136944301 + ], + [ + 6.9050398, + 51.137272901 + ], + [ + 6.9022249, + 51.140132201 + ], + [ + 6.9017738, + 51.140582901 + ], + [ + 6.9008116, + 51.141564201 + ], + [ + 6.8998584, + 51.142556401 + ], + [ + 6.8986068, + 51.143812301 + ], + [ + 6.8978266, + 51.144638601 + ], + [ + 6.8966337, + 51.145832601 + ], + [ + 6.8938985, + 51.148651801 + ], + [ + 6.8937172, + 51.148852601 + ], + [ + 6.8933442, + 51.149260701 + ], + [ + 6.8931272, + 51.149530701 + ], + [ + 6.8927484, + 51.150009501 + ], + [ + 6.8925757, + 51.150240801 + ], + [ + 6.8922317, + 51.150760901 + ], + [ + 6.8920112, + 51.151133301 + ], + [ + 6.8918066, + 51.151537301 + ], + [ + 6.8916533, + 51.151889901 + ], + [ + 6.89151, + 51.152210501 + ], + [ + 6.8913983, + 51.152518801 + ], + [ + 6.8912857, + 51.152873401 + ], + [ + 6.8911247, + 51.153514801 + ], + [ + 6.8910684, + 51.153842001 + ], + [ + 6.8910237, + 51.154155201 + ], + [ + 6.8909868, + 51.154529201 + ], + [ + 6.8909541, + 51.155167001 + ], + [ + 6.890945, + 51.155584101 + ], + [ + 6.8909433, + 51.156117701 + ], + [ + 6.8909571, + 51.158547301 + ], + [ + 6.8909641, + 51.159582301 + ], + [ + 6.8909504, + 51.160231201 + ], + [ + 6.8909264, + 51.160862801 + ], + [ + 6.8908524, + 51.161501501 + ], + [ + 6.8906529, + 51.162409201 + ], + [ + 6.8903439, + 51.163236601 + ], + [ + 6.8899006, + 51.164053301 + ], + [ + 6.8894576, + 51.164684201 + ], + [ + 6.8889607, + 51.165290001 + ], + [ + 6.8886559, + 51.165618301 + ], + [ + 6.8867531, + 51.167664901 + ], + [ + 6.8858638, + 51.168860401 + ], + [ + 6.8855205, + 51.169510501 + ], + [ + 6.8852394, + 51.170414601 + ], + [ + 6.8851206, + 51.171399601 + ], + [ + 6.8851019, + 51.172301901 + ], + [ + 6.8851308, + 51.173020001 + ], + [ + 6.8851759, + 51.174072001 + ], + [ + 6.885164, + 51.174727101 + ], + [ + 6.8851291, + 51.175067701 + ], + [ + 6.8850913, + 51.175350601 + ], + [ + 6.8850245, + 51.175688101 + ], + [ + 6.8849668, + 51.175925801 + ], + [ + 6.8848687, + 51.176253401 + ], + [ + 6.8847661, + 51.176536601 + ], + [ + 6.8846421, + 51.176832601 + ], + [ + 6.8844997, + 51.177086301 + ], + [ + 6.8843856, + 51.177297501 + ], + [ + 6.8842403, + 51.177537001 + ], + [ + 6.8840826, + 51.177779201 + ], + [ + 6.883882, + 51.178058301 + ], + [ + 6.8835369, + 51.178483701 + ], + [ + 6.8831279, + 51.178932901 + ], + [ + 6.8827425, + 51.179270701 + ], + [ + 6.8823195, + 51.179632801 + ], + [ + 6.8816503, + 51.180104901 + ], + [ + 6.8813522, + 51.180312701 + ], + [ + 6.8808696, + 51.180605501 + ], + [ + 6.8801194, + 51.181030001 + ], + [ + 6.8793346, + 51.181436201 + ], + [ + 6.8779747, + 51.182123101 + ], + [ + 6.8773143, + 51.182478901 + ], + [ + 6.8767879, + 51.182784001 + ], + [ + 6.8760807, + 51.183227001 + ], + [ + 6.8754714, + 51.183639401 + ], + [ + 6.8748012, + 51.184131001 + ], + [ + 6.874400924, + 51.184474079 + ] + ] + } + }, + { + "identifier": "2023-001678--vi-bs.2025-11-24_09-00-00-000.devi-zus.2027-09-25_05-00-00-000.f_001.de60", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.1857783795426,6.873157143438761,51.1891640099651,6.870465640126645", + "point": "51.1857783795426,6.873157143438761", + "startLcPosition": "23", + "impact": { + "lower": "D\u00fcsseldorf-S\u00fcd", + "upper": "D\u00fcsseldorf-Benrath", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> D\u00fcsseldorf", + "title": "A59 | D\u00fcsseldorf-Benrath - D\u00fcsseldorf-S\u00fcd", + "startTimestamp": "2025-11-24T09:00:00+01:00", + "coordinate": { + "lat": 51.1857783795426, + "long": 6.873157143438761 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.11.25 um 09:00 Uhr", + "Ende: 30.09.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.08.35)", + "", + "A59: K\u00f6ln -> D\u00fcsseldorf, zwischen 1.3 km hinter AS D\u00fcsseldorf-Benrath und AD D\u00fcsseldorf-S\u00fcd", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Grundhafte Sanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.873157143, + 51.18577838 + ], + [ + 6.8726325, + 51.186446401 + ], + [ + 6.872128, + 51.187063701 + ], + [ + 6.8709963, + 51.188487401 + ], + [ + 6.87046564, + 51.18916401 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de110", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.357953440238795,6.7629712754713465,51.371837037277295,6.774458548866599", + "point": "51.357953440238795,6.7629712754713465", + "startLcPosition": "25", + "impact": { + "lower": "Duisburg-Buchholz", + "upper": "Duisburg-S\u00fcd", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Duisburg -> Dinslaken", + "title": "A59 | Duisburg-S\u00fcd - Duisburg-Buchholz", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.357953440238795, + "long": 6.7629712754713465 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A59: Duisburg -> Dinslaken, zwischen 0.6 km hinter AK Duisburg-S\u00fcd und 1.3 km vor AS Duisburg-Buchholz", + "", + "L\u00e4nge: 1.74 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.762971275, + 51.35795344 + ], + [ + 6.7632098, + 51.358194801 + ], + [ + 6.763655, + 51.358659801 + ], + [ + 6.764518, + 51.359530801 + ], + [ + 6.7652433, + 51.360306701 + ], + [ + 6.7659441, + 51.361078001 + ], + [ + 6.766312, + 51.361512501 + ], + [ + 6.7666684, + 51.361971601 + ], + [ + 6.7669909, + 51.362429901 + ], + [ + 6.7673256, + 51.362952901 + ], + [ + 6.767713, + 51.363616601 + ], + [ + 6.7684134, + 51.364863301 + ], + [ + 6.7689512, + 51.365792601 + ], + [ + 6.7692653, + 51.366284801 + ], + [ + 6.7696111, + 51.366774801 + ], + [ + 6.7700487, + 51.367324501 + ], + [ + 6.7704006, + 51.367719801 + ], + [ + 6.7706911, + 51.368034301 + ], + [ + 6.7710149, + 51.368355801 + ], + [ + 6.7714989, + 51.368814101 + ], + [ + 6.7728407, + 51.370034201 + ], + [ + 6.7738109, + 51.371017901 + ], + [ + 6.7741166, + 51.371372601 + ], + [ + 6.7743892, + 51.371725801 + ], + [ + 6.774458549, + 51.371837037 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de106", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.371837037277295,6.774458548866599,51.39064233001767,6.773870379712666", + "point": "51.371837037277295,6.774458548866599", + "startLcPosition": "26", + "impact": { + "lower": "Duisburg-Wanheimerort", + "upper": "Duisburg-Gro\u00dfenbaum", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Duisburg -> Dinslaken", + "title": "A59 | Duisburg-Gro\u00dfenbaum - Duisburg-Wanheimerort", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.371837037277295, + "long": 6.774458548866599 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A59: Duisburg -> Dinslaken, zwischen 0.1 km hinter AS Duisburg-Gro\u00dfenbaum und 1.7 km vor AS Duisburg-Wanheimerort", + "", + "L\u00e4nge: 2.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.774458549, + 51.371837037 + ], + [ + 6.7747397, + 51.372288001 + ], + [ + 6.775074, + 51.372958601 + ], + [ + 6.7751844, + 51.373208901 + ], + [ + 6.7753435, + 51.373675101 + ], + [ + 6.7754694, + 51.374122501 + ], + [ + 6.775542, + 51.374538601 + ], + [ + 6.7756009, + 51.375064101 + ], + [ + 6.7756258, + 51.375599601 + ], + [ + 6.7755235, + 51.376460401 + ], + [ + 6.7753317, + 51.377757401 + ], + [ + 6.7750206, + 51.379863701 + ], + [ + 6.7747418, + 51.381963201 + ], + [ + 6.7746116, + 51.383208401 + ], + [ + 6.7745696, + 51.383673401 + ], + [ + 6.7742811, + 51.386953601 + ], + [ + 6.7740913, + 51.388742301 + ], + [ + 6.7739128, + 51.390268701 + ], + [ + 6.7738867, + 51.390500701 + ], + [ + 6.77387038, + 51.39064233 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de108", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.3718813359001,6.774279702533796,51.35800801771838,6.762829113169315", + "point": "51.3718813359001,6.774279702533796", + "startLcPosition": "27", + "impact": { + "lower": "Duisburg-S\u00fcd", + "upper": "Duisburg-Buchholz", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dinslaken -> Duisburg", + "title": "A59 | Duisburg-Buchholz - Duisburg-S\u00fcd", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.3718813359001, + "long": 6.774279702533796 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A59: Dinslaken -> Duisburg, zwischen 1.3 km hinter AS Duisburg-Buchholz und 0.6 km vor AK Duisburg-S\u00fcd", + "", + "L\u00e4nge: 1.74 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.774279703, + 51.371881336 + ], + [ + 6.7741962, + 51.371751801 + ], + [ + 6.7739115, + 51.371386801 + ], + [ + 6.7736118, + 51.371021901 + ], + [ + 6.7727233, + 51.370136101 + ], + [ + 6.7713508, + 51.368862501 + ], + [ + 6.7708841, + 51.368423001 + ], + [ + 6.7705627, + 51.368104401 + ], + [ + 6.7703385, + 51.367856401 + ], + [ + 6.7698981, + 51.367368801 + ], + [ + 6.7694399, + 51.366799401 + ], + [ + 6.7691148, + 51.366308401 + ], + [ + 6.7687996, + 51.365816801 + ], + [ + 6.7682407, + 51.364878901 + ], + [ + 6.7675475, + 51.363640601 + ], + [ + 6.7671599, + 51.362972101 + ], + [ + 6.7668265, + 51.362456401 + ], + [ + 6.7665107, + 51.362006801 + ], + [ + 6.7661581, + 51.361555601 + ], + [ + 6.7657897, + 51.361119601 + ], + [ + 6.7650707, + 51.360335801 + ], + [ + 6.7643662, + 51.359582501 + ], + [ + 6.7634993, + 51.358709001 + ], + [ + 6.7630573, + 51.358243701 + ], + [ + 6.762829113, + 51.358008018 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de104", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.39063195191581,6.77364227236358,51.3718813359001,6.774279702533796", + "point": "51.39063195191581,6.77364227236358", + "startLcPosition": "28", + "impact": { + "lower": "Duisburg-Gro\u00dfenbaum", + "upper": "Duisburg-Wanheimerort", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dinslaken -> Duisburg", + "title": "A59 | Duisburg-Wanheimerort - Duisburg-Gro\u00dfenbaum", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.39063195191581, + "long": 6.77364227236358 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A59: Dinslaken -> Duisburg, zwischen 1.7 km hinter AS Duisburg-Wanheimerort und 0.1 km vor AS Duisburg-Gro\u00dfenbaum", + "", + "L\u00e4nge: 2.1 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.773642272, + 51.390631952 + ], + [ + 6.7736567, + 51.390508801 + ], + [ + 6.7736803, + 51.390276701 + ], + [ + 6.7738811, + 51.388613901 + ], + [ + 6.7740971, + 51.386396301 + ], + [ + 6.7744048, + 51.383609401 + ], + [ + 6.7744398, + 51.383126901 + ], + [ + 6.7745689, + 51.381960001 + ], + [ + 6.7748472, + 51.379867501 + ], + [ + 6.775138, + 51.377726301 + ], + [ + 6.7753419, + 51.376466301 + ], + [ + 6.7754401, + 51.375589701 + ], + [ + 6.7754257, + 51.375059401 + ], + [ + 6.7753701, + 51.374553001 + ], + [ + 6.7752901, + 51.374132201 + ], + [ + 6.7751785, + 51.373696601 + ], + [ + 6.7751039, + 51.373461401 + ], + [ + 6.7750203, + 51.373230301 + ], + [ + 6.7749017, + 51.372964101 + ], + [ + 6.774563, + 51.372320801 + ], + [ + 6.774279703, + 51.371881336 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de102", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.39511454491478,6.773117058489102,51.39063195191581,6.77364227236358", + "point": "51.39511454491478,6.773117058489102", + "startLcPosition": "28", + "impact": { + "lower": "Duisburg-Buchholz", + "upper": "Duisburg-Wanheimerort", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dinslaken -> Duisburg", + "title": "A59 | Duisburg-Wanheimerort - Duisburg-Buchholz", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.39511454491478, + "long": 6.773117058489102 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A59: Dinslaken -> Duisburg, zwischen 1.2 km hinter AS Duisburg-Wanheimerort und 0.8 km vor AS Duisburg-Buchholz", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.773117058, + 51.395114545 + ], + [ + 6.773642272, + 51.390631952 + ] + ] + } + }, + { + "identifier": "2026-016634--vi-bs.2026-04-22_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43633777192681,6.775866857675028,51.42936451008337,6.772317161077579", + "point": "51.43633777192681,6.775866857675028", + "startLcPosition": "32", + "impact": { + "lower": "Duisburg-Zentrum", + "upper": "Duisburg-Duissern", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dinslaken -> Duisburg", + "title": "A59 | Duisburg-Duissern - Duisburg-Zentrum", + "coordinate": { + "lat": 51.43633777192681, + "long": 6.775866857675028 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A59: Dinslaken -> Duisburg, zwischen 0.1 km hinter AS Duisburg-Duissern und 0.3 km vor AS Duisburg-Zentrum", + "", + "L\u00e4nge: 0.85 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 von Duisburg-Duissern (AS) nach Duisburg-Zentrum (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.775866858, + 51.436337772 + ], + [ + 6.7758722, + 51.436329201 + ], + [ + 6.7760273, + 51.436069201 + ], + [ + 6.7761488, + 51.435793201 + ], + [ + 6.7762005, + 51.435630401 + ], + [ + 6.7762369, + 51.435475401 + ], + [ + 6.776267, + 51.435309701 + ], + [ + 6.7762788, + 51.435148601 + ], + [ + 6.7762755, + 51.434932801 + ], + [ + 6.776264, + 51.434824201 + ], + [ + 6.7762375, + 51.434672901 + ], + [ + 6.7762014, + 51.434514001 + ], + [ + 6.7761385, + 51.434343101 + ], + [ + 6.7759589, + 51.433996801 + ], + [ + 6.7757363, + 51.433717601 + ], + [ + 6.7755535, + 51.433531701 + ], + [ + 6.7752187, + 51.433201801 + ], + [ + 6.7745411, + 51.432647001 + ], + [ + 6.774277, + 51.432381001 + ], + [ + 6.7740271, + 51.432067201 + ], + [ + 6.7736785, + 51.431584701 + ], + [ + 6.7735528, + 51.431377701 + ], + [ + 6.7725106, + 51.429661801 + ], + [ + 6.7724566, + 51.429573501 + ], + [ + 6.772317161, + 51.42936451 + ] + ] + } + }, + { + "identifier": "2026-016624--vi-bs.2026-04-23_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.43675704864888,6.775605870104497,51.42936451008337,6.772317161077579", + "point": "51.43675704864888,6.775605870104497", + "startLcPosition": "32", + "impact": { + "lower": "Duisburg-Zentrum", + "upper": "Duisburg-Duissern", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dinslaken -> Duisburg", + "title": "A59 | Duisburg-Duissern - Duisburg-Zentrum", + "coordinate": { + "lat": 51.43675704864888, + "long": 6.775605870104497 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 20:00 bis zum 24.04.26 06:00 Uhr.", + "", + "A59: Dinslaken -> Duisburg, zwischen 0.1 km hinter AS Duisburg-Duissern und 0.3 km vor AS Duisburg-Zentrum", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A59 von Duisburg-Duissern (AS) nach Duisburg-Zentrum (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.77560587, + 51.436757049 + ], + [ + 6.7756235, + 51.436728201 + ], + [ + 6.7758722, + 51.436329201 + ], + [ + 6.7760273, + 51.436069201 + ], + [ + 6.7761488, + 51.435793201 + ], + [ + 6.7762005, + 51.435630401 + ], + [ + 6.7762369, + 51.435475401 + ], + [ + 6.776267, + 51.435309701 + ], + [ + 6.7762788, + 51.435148601 + ], + [ + 6.7762755, + 51.434932801 + ], + [ + 6.776264, + 51.434824201 + ], + [ + 6.7762375, + 51.434672901 + ], + [ + 6.7762014, + 51.434514001 + ], + [ + 6.7761385, + 51.434343101 + ], + [ + 6.7759589, + 51.433996801 + ], + [ + 6.7757363, + 51.433717601 + ], + [ + 6.7755535, + 51.433531701 + ], + [ + 6.7752187, + 51.433201801 + ], + [ + 6.7745411, + 51.432647001 + ], + [ + 6.774277, + 51.432381001 + ], + [ + 6.7740271, + 51.432067201 + ], + [ + 6.7736785, + 51.431584701 + ], + [ + 6.7735528, + 51.431377701 + ], + [ + 6.7725106, + 51.429661801 + ], + [ + 6.7724566, + 51.429573501 + ], + [ + 6.772317161, + 51.42936451 + ] + ] + } + }, + { + "identifier": "2026-013772--vi-fbm.2026-03-23_20-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.475087009291244,6.766851154112837,51.476692791046545,6.7681139625415945", + "point": "51.475087009291244,6.766851154112837", + "startLcPosition": "36", + "impact": { + "lower": "Duisburg-Nord", + "upper": "Duisburg-Ruhrort", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Duisburg -> Dinslaken", + "title": "A59 | Duisburg-Ruhrort - Duisburg-Nord", + "coordinate": { + "lat": 51.475087009291244, + "long": 6.766851154112837 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "24.04.26 20:00 bis zum 25.04.26 05:00 Uhr.", + "", + "A59: Duisburg -> Dinslaken, zwischen 0.6 km hinter AS Duisburg-Ruhrort und 0.8 km vor AK Duisburg-Nord", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 von Duisburg-Ruhrort (AS) nach Duisburg-Nord (AK) Baustelleneinrichtung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.766851154, + 51.475087009 + ], + [ + 6.7674029, + 51.475785801 + ], + [ + 6.768113963, + 51.476692791 + ] + ] + } + }, + { + "identifier": "2026-017738--vi-bs.2026-04-13_10-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.52007080291374,6.760051579145481,51.518554844148085,6.759870549168594", + "point": "51.52007080291374,6.760051579145481", + "startLcPosition": "41", + "impact": { + "lower": "Duisburg-Fahrn", + "upper": "Duisburg-Walsum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dinslaken -> Duisburg", + "title": "A59 | Duisburg-Walsum - Duisburg-Fahrn", + "coordinate": { + "lat": 51.52007080291374, + "long": 6.760051579145481 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 14:00 Uhr", + "14.04.26 von 10:00 bis 14:00 Uhr", + "", + "A59: Dinslaken -> Duisburg, zwischen 0.8 km hinter AS Duisburg-Walsum und 0.9 km vor AS Duisburg-Fahrn", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 von Duisburg-Walsum (AS) nach Duisburg-Fahrn (AS) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.760051579, + 51.520070803 + ], + [ + 6.7600491, + 51.519883101 + ], + [ + 6.7600084, + 51.519351301 + ], + [ + 6.7599397, + 51.518878101 + ], + [ + 6.759870549, + 51.518554844 + ] + ] + } + }, + { + "identifier": "2026-011741--vi-fbm.2026-04-20_08-00-00-000.devi-zus.2026-04-15_08-00-00-000.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35017699205061,6.755886550182382,51.357953440238795,6.7629712754713465", + "point": "51.35017699205061,6.755886550182382", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 25.00 --> km 24.00", + "title": "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd", + "coordinate": { + "lat": 51.35017699205061, + "long": 6.755886550182382 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 16:00 Uhr", + "21.04.26 von 08:00 bis 16:00 Uhr", + "", + "A59: km 25.00 --> km 24.00", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.75588655, + 51.350176992 + ], + [ + 6.7560608, + 51.350482701 + ], + [ + 6.7561759, + 51.350653201 + ], + [ + 6.7565787, + 51.351209901 + ], + [ + 6.7569844, + 51.351711901 + ], + [ + 6.7573999, + 51.352200701 + ], + [ + 6.7577487, + 51.352572601 + ], + [ + 6.7582173, + 51.353054301 + ], + [ + 6.758788, + 51.353660501 + ], + [ + 6.759455, + 51.354345701 + ], + [ + 6.7609649, + 51.355930501 + ], + [ + 6.7613762, + 51.356315101 + ], + [ + 6.7621741, + 51.357128201 + ], + [ + 6.7629491, + 51.357931001 + ], + [ + 6.762971275, + 51.35795344 + ] + ] + } + }, + { + "identifier": "2026-011741--vi-fbm.2026-04-20_08-00-00-000.devi-zus.2026-04-15_08-00-00-000.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35800801771838,6.762829113169315,51.35021800622007,6.755716384973691", + "point": "51.35800801771838,6.762829113169315", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 24.00 --> km 25.00", + "title": "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd", + "coordinate": { + "lat": 51.35800801771838, + "long": 6.762829113169315 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 16:00 Uhr", + "21.04.26 von 08:00 bis 16:00 Uhr", + "", + "A59: km 24.00 --> km 25.00", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.762829113, + 51.358008018 + ], + [ + 6.7628077, + 51.357985901 + ], + [ + 6.7621914, + 51.357368201 + ], + [ + 6.7607741, + 51.355931201 + ], + [ + 6.7591367, + 51.354207701 + ], + [ + 6.758617, + 51.353671001 + ], + [ + 6.7580028, + 51.353052301 + ], + [ + 6.7573177, + 51.352298701 + ], + [ + 6.7568019, + 51.351740601 + ], + [ + 6.7564088, + 51.351234301 + ], + [ + 6.7561548, + 51.350884501 + ], + [ + 6.755716385, + 51.350218006 + ] + ] + } + }, + { + "identifier": "2026-011741--vi-fbm.2026-04-15_08-00-00-000.devi-zus.2026-04-15_08-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35017699205061,6.755886550182382,51.357953440238795,6.7629712754713465", + "point": "51.35017699205061,6.755886550182382", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 25.00 --> km 24.00", + "title": "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd", + "coordinate": { + "lat": 51.35017699205061, + "long": 6.755886550182382 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 16:00 Uhr", + "16.04.26 von 08:00 bis 16:00 Uhr", + "", + "A59: km 25.00 --> km 24.00", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.75588655, + 51.350176992 + ], + [ + 6.7560608, + 51.350482701 + ], + [ + 6.7561759, + 51.350653201 + ], + [ + 6.7565787, + 51.351209901 + ], + [ + 6.7569844, + 51.351711901 + ], + [ + 6.7573999, + 51.352200701 + ], + [ + 6.7577487, + 51.352572601 + ], + [ + 6.7582173, + 51.353054301 + ], + [ + 6.758788, + 51.353660501 + ], + [ + 6.759455, + 51.354345701 + ], + [ + 6.7609649, + 51.355930501 + ], + [ + 6.7613762, + 51.356315101 + ], + [ + 6.7621741, + 51.357128201 + ], + [ + 6.7629491, + 51.357931001 + ], + [ + 6.762971275, + 51.35795344 + ] + ] + } + }, + { + "identifier": "2026-011741--vi-fbm.2026-04-15_08-00-00-000.devi-zus.2026-04-15_08-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35800801771838,6.762829113169315,51.35021800622007,6.755716384973691", + "point": "51.35800801771838,6.762829113169315", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 24.00 --> km 25.00", + "title": "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd", + "coordinate": { + "lat": 51.35800801771838, + "long": 6.762829113169315 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 16:00 Uhr", + "16.04.26 von 08:00 bis 16:00 Uhr", + "", + "A59: km 24.00 --> km 25.00", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.762829113, + 51.358008018 + ], + [ + 6.7628077, + 51.357985901 + ], + [ + 6.7621914, + 51.357368201 + ], + [ + 6.7607741, + 51.355931201 + ], + [ + 6.7591367, + 51.354207701 + ], + [ + 6.758617, + 51.353671001 + ], + [ + 6.7580028, + 51.353052301 + ], + [ + 6.7573177, + 51.352298701 + ], + [ + 6.7568019, + 51.351740601 + ], + [ + 6.7564088, + 51.351234301 + ], + [ + 6.7561548, + 51.350884501 + ], + [ + 6.755716385, + 51.350218006 + ] + ] + } + }, + { + "identifier": "2023-001678--vi-bs.2025-09-30_09-00-00-000.devi-zus.2027-09-25_05-00-00-000.f_001.de62", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.19007337865819,6.873886492504515,51.1904318111116,6.871976663938527", + "point": "51.19007337865819,6.873886492504515", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD D\u00fcsseldorf-S\u00fcd (aus Richtung Erkrath)", + "title": "Grundhafte Sanierung", + "startTimestamp": "2025-09-30T09:00:00+02:00", + "coordinate": { + "lat": 51.19007337865819, + "long": 6.873886492504515 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.25 um 09:00 Uhr", + "Ende: 30.09.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.08.35)", + "", + "Abfahrt von der A46: AD D\u00fcsseldorf-S\u00fcd (aus Richtung Erkrath)", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Grundhafte Sanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.873886493, + 51.190073379 + ], + [ + 6.8737244, + 51.190073001 + ], + [ + 6.8736732, + 51.190074301 + ], + [ + 6.8734642, + 51.190079601 + ], + [ + 6.8732787, + 51.190096501 + ], + [ + 6.8730348, + 51.190121201 + ], + [ + 6.8726846, + 51.190192401 + ], + [ + 6.8723883, + 51.190273101 + ], + [ + 6.8720771, + 51.190385201 + ], + [ + 6.871976664, + 51.190431811 + ] + ] + } + }, + { + "identifier": "2023-001442--vi-bs.2025-10-06_15-00-00-000.devi-zus.2025-11-29_09-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.76489683361727,7.136696207322168,50.77084567328948,7.143705402739324", + "point": "50.76489683361727,7.136696207322168", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Bonn-Nordost (aus Richtung Bonn-Vilich) nach A59", + "title": "8-str. Ausbau", + "startTimestamp": "2025-10-06T15:00:00+02:00", + "coordinate": { + "lat": 50.76489683361727, + "long": 7.136696207322168 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.10.25 um 15:00 Uhr", + "Ende: 30.09.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.29)", + "", + "Von Auffahrt auf die A59: AD Bonn-Nordost (aus Richtung Bonn-Vilich) nach A59: Bonn -> K\u00f6ln, zwischen AD Bonn-Nordost und 2.4 km vor AD Sankt Augustin-West", + "", + "L\u00e4nge: 0.88 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "8-str. Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.136696207, + 50.764896834 + ], + [ + 7.1368234, + 50.764908501 + ], + [ + 7.1371344, + 50.764940101 + ], + [ + 7.1376301, + 50.765009101 + ], + [ + 7.1379465, + 50.765069501 + ], + [ + 7.1381842, + 50.765126801 + ], + [ + 7.13842, + 50.765187501 + ], + [ + 7.1386446, + 50.765250901 + ], + [ + 7.1388816, + 50.765324201 + ], + [ + 7.1390992, + 50.765402601 + ], + [ + 7.1393231, + 50.765493701 + ], + [ + 7.1395516, + 50.765593501 + ], + [ + 7.1397621, + 50.765696301 + ], + [ + 7.1399768, + 50.765812001 + ], + [ + 7.1403385, + 50.766032301 + ], + [ + 7.1406739, + 50.766282201 + ], + [ + 7.1408287, + 50.766412501 + ], + [ + 7.1409722, + 50.766549901 + ], + [ + 7.1411069, + 50.766690601 + ], + [ + 7.1412332, + 50.766830501 + ], + [ + 7.141344, + 50.766977101 + ], + [ + 7.1414478, + 50.767126601 + ], + [ + 7.141538, + 50.767281201 + ], + [ + 7.1416105, + 50.767432501 + ], + [ + 7.1417362, + 50.767730401 + ], + [ + 7.1417832, + 50.767846901 + ], + [ + 7.1418771, + 50.768045001 + ], + [ + 7.1420075, + 50.768325001 + ], + [ + 7.1421719, + 50.768624701 + ], + [ + 7.1423525, + 50.768927401 + ], + [ + 7.1426009, + 50.769338801 + ], + [ + 7.143705403, + 50.770845673 + ] + ] + } + }, + { + "identifier": "2023-001733--vi-bs.2024-07-31_05-00-00-000.devi-zus.2022-02-09_05-00-00-000.f_001.de16", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.923515851119916,7.062282385312213,50.925519886426144,7.059560566140498", + "point": "50.923515851119916,7.062282385312213", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 6.30 --> km 6.01", + "title": "Umbau AD Heumar (DEGES)", + "startTimestamp": "2024-07-31T05:00:00+02:00", + "coordinate": { + "lat": 50.923515851119916, + "long": 7.062282385312213 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.07.24 um 05:00 Uhr", + "Ende: 18.02.29 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.02.29)", + "", + "A59: km 6.30 --> km 6.01", + "", + "L\u00e4nge: 0.29 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "Umbau AD Heumar (DEGES)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.062282385, + 50.923515851 + ], + [ + 7.0621667, + 50.923626501 + ], + [ + 7.0618471, + 50.923896201 + ], + [ + 7.0614835, + 50.924179301 + ], + [ + 7.0602916, + 50.925021301 + ], + [ + 7.059789, + 50.925359901 + ], + [ + 7.059560566, + 50.925519886 + ] + ] + } + }, + { + "identifier": "2023-000264--vi-bs.2024-11-22_15-00-00-000.devi-zus.2021-07-31_09-00-00-000.f_001.de132", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.9199653797666,7.063911324944656,50.92471041742265,7.060731680829006", + "point": "50.9199653797666,7.063911324944656", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 6.71 --> km 6.13", + "title": "(DEGES) Umbau AD Heumar", + "startTimestamp": "2024-11-22T15:00:00+01:00", + "coordinate": { + "lat": 50.9199653797666, + "long": 7.063911324944656 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.11.24 um 15:00 Uhr", + "Ende: 31.01.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.27)", + "", + "A59: km 6.71 --> km 6.13", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "(DEGES) Umbau AD Heumar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.063911325, + 50.91996538 + ], + [ + 7.0637935, + 50.920462401 + ], + [ + 7.0637267, + 50.920710601 + ], + [ + 7.0636405, + 50.921099401 + ], + [ + 7.0635465, + 50.921482401 + ], + [ + 7.0634985, + 50.921660601 + ], + [ + 7.0634308, + 50.921862501 + ], + [ + 7.0632487, + 50.922257301 + ], + [ + 7.0630304, + 50.922629101 + ], + [ + 7.0627604, + 50.923002801 + ], + [ + 7.0624562, + 50.923349601 + ], + [ + 7.0621667, + 50.923626501 + ], + [ + 7.0618471, + 50.923896201 + ], + [ + 7.0614835, + 50.924179301 + ], + [ + 7.060731681, + 50.924710417 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de112", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.35179748599792,6.757057150084376,51.357953440238795,6.7629712754713465", + "point": "51.35179748599792,6.757057150084376", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 24.80 --> km 24.00", + "title": "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.35179748599792, + "long": 6.757057150084376 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A59: km 24.80 --> km 24.00", + "", + "L\u00e4nge: 0.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.75705715, + 51.351797486 + ], + [ + 6.7573999, + 51.352200701 + ], + [ + 6.7577487, + 51.352572601 + ], + [ + 6.7582173, + 51.353054301 + ], + [ + 6.758788, + 51.353660501 + ], + [ + 6.759455, + 51.354345701 + ], + [ + 6.7609649, + 51.355930501 + ], + [ + 6.7613762, + 51.356315101 + ], + [ + 6.7621741, + 51.357128201 + ], + [ + 6.7629491, + 51.357931001 + ], + [ + 6.762971275, + 51.35795344 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2025-12-15_09-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de419", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.03749141795031,6.962859363212243,51.03865367457108,6.9635462720336365", + "point": "51.03749141795031,6.962859363212243", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "Rheinbr. Leverkusen", + "startTimestamp": "2025-12-15T09:00:00+01:00", + "coordinate": { + "lat": 51.03749141795031, + "long": 6.962859363212243 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 09:00 Uhr", + "Ende: 15.12.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.27)", + "", + "Abfahrt von der A59 N 3", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.962859363, + 51.037491418 + ], + [ + 6.9628232, + 51.037611901 + ], + [ + 6.9628085, + 51.037755101 + ], + [ + 6.9628233, + 51.037873001 + ], + [ + 6.9628596, + 51.037987301 + ], + [ + 6.9629181, + 51.038129201 + ], + [ + 6.9630078, + 51.038257801 + ], + [ + 6.9631106, + 51.038380001 + ], + [ + 6.963274, + 51.038502301 + ], + [ + 6.9634312, + 51.038600601 + ], + [ + 6.963546272, + 51.038653675 + ] + ] + } + }, + { + "identifier": "2023-000192--vi-bs.2025-12-15_09-00-00-000.devi-zus.2021-04-15_15-00-00-000_001.de417", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.04159896442338,6.95687785837592,51.038752506634516,6.963142359765319", + "point": "51.04159896442338,6.95687785837592", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Leverkusen-West (aus Richtung Leverkusen-Rheindorf)", + "title": "Rheinbr. Leverkusen", + "startTimestamp": "2025-12-15T09:00:00+01:00", + "coordinate": { + "lat": 51.04159896442338, + "long": 6.95687785837592 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.12.25 um 09:00 Uhr", + "Ende: 15.12.27 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.12.27)", + "", + "Abfahrt von der A59: AK Leverkusen-West (aus Richtung Leverkusen-Rheindorf)", + "", + "L\u00e4nge: 0.57 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Rheinbr. Leverkusen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.956877858, + 51.041598964 + ], + [ + 6.9577067, + 51.040774301 + ], + [ + 6.9580699, + 51.040440301 + ], + [ + 6.9583642, + 51.040207101 + ], + [ + 6.9586598, + 51.039995201 + ], + [ + 6.9589519, + 51.039823901 + ], + [ + 6.9593355, + 51.039606801 + ], + [ + 6.9596246, + 51.039464401 + ], + [ + 6.9599138, + 51.039346301 + ], + [ + 6.960215, + 51.039228001 + ], + [ + 6.960982, + 51.038987701 + ], + [ + 6.9612449, + 51.038921601 + ], + [ + 6.9616612, + 51.038831201 + ], + [ + 6.9620173, + 51.038775301 + ], + [ + 6.9622282, + 51.038758401 + ], + [ + 6.9624285, + 51.038745301 + ], + [ + 6.9626654, + 51.038737601 + ], + [ + 6.9628462, + 51.038737601 + ], + [ + 6.9630316, + 51.038745101 + ], + [ + 6.96314236, + 51.038752507 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de124", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.37029485176039,6.77232599636771,51.36721570764704,6.769774903563491", + "point": "51.37029485176039,6.77232599636771", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-Gro\u00dfenbaum (aus Richtung Duisburg-Buchholz) nach A59", + "title": "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.37029485176039, + "long": 6.77232599636771 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Von Auffahrt auf die A59: AS Duisburg-Gro\u00dfenbaum (aus Richtung Duisburg-Buchholz) nach A59: Dinslaken -> Duisburg, zwischen AS Duisburg-Gro\u00dfenbaum und 1.7 km vor AK Duisburg-S\u00fcd", + "", + "L\u00e4nge: 0.39 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.772325996, + 51.370294852 + ], + [ + 6.7718018, + 51.369698401 + ], + [ + 6.7712413, + 51.369030401 + ], + [ + 6.7710181, + 51.368776901 + ], + [ + 6.7707397, + 51.368450901 + ], + [ + 6.7703385, + 51.367856401 + ], + [ + 6.7698981, + 51.367368801 + ], + [ + 6.769774904, + 51.367215708 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de122", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.37080474966343,6.773600669808155,51.37133270787074,6.776019479777224", + "point": "51.37080474966343,6.773600669808155", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Duisburg -> Dinslaken", + "title": "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.37080474966343, + "long": 6.773600669808155 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Von A59: Duisburg -> Dinslaken, zwischen AS Duisburg-Gro\u00dfenbaum und AS Duisburg-Buchholz nach Abfahrt von der A59: AS Duisburg-Gro\u00dfenbaum (aus Richtung Duisburg-S\u00fcd)", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.77360067, + 51.37080475 + ], + [ + 6.7738109, + 51.371017901 + ], + [ + 6.7741166, + 51.371372601 + ], + [ + 6.7743892, + 51.371725801 + ], + [ + 6.7747152, + 51.371953901 + ], + [ + 6.7748695, + 51.372018501 + ], + [ + 6.775058, + 51.372051401 + ], + [ + 6.7752219, + 51.372064501 + ], + [ + 6.7754018, + 51.372052401 + ], + [ + 6.7755354, + 51.372027601 + ], + [ + 6.7757654, + 51.371920801 + ], + [ + 6.7758817, + 51.371832401 + ], + [ + 6.7759675, + 51.371700701 + ], + [ + 6.7759986, + 51.371557501 + ], + [ + 6.7760075, + 51.371474401 + ], + [ + 6.7760117, + 51.371420401 + ], + [ + 6.77601948, + 51.371332708 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de120", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.372618149515276,6.775287744136682,51.374213904153216,6.775485347677405", + "point": "51.372618149515276,6.775287744136682", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-Gro\u00dfenbaum (aus Richtung Duisburg-S\u00fcd) nach A59", + "title": "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.372618149515276, + "long": 6.775287744136682 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Von Auffahrt auf die A59: AS Duisburg-Gro\u00dfenbaum (aus Richtung Duisburg-S\u00fcd) nach A59: Duisburg -> Dinslaken, zwischen AS Duisburg-Gro\u00dfenbaum und 1.0 km vor AS Duisburg-Buchholz", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.775287744, + 51.37261815 + ], + [ + 6.7752282, + 51.372693001 + ], + [ + 6.7751878, + 51.372809301 + ], + [ + 6.7751814, + 51.372956501 + ], + [ + 6.7751844, + 51.373208901 + ], + [ + 6.7753435, + 51.373675101 + ], + [ + 6.7754694, + 51.374122501 + ], + [ + 6.775485348, + 51.374213904 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de118", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.37523811912752,6.77543055297184,51.37253982957635,6.774504126796593", + "point": "51.37523811912752,6.77543055297184", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dinslaken -> Duisburg", + "title": "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.37523811912752, + "long": 6.77543055297184 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Von A59: Dinslaken -> Duisburg, zwischen 0.9 km hinter AS Duisburg-Buchholz und AS Duisburg-Gro\u00dfenbaum nach Abfahrt von der A59: AS Duisburg-Gro\u00dfenbaum (aus Richtung Duisburg-Buchholz)", + "", + "L\u00e4nge: 0.31 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.775430553, + 51.375238119 + ], + [ + 6.7754257, + 51.375059401 + ], + [ + 6.7753701, + 51.374553001 + ], + [ + 6.7752901, + 51.374132201 + ], + [ + 6.7751785, + 51.373696601 + ], + [ + 6.7751039, + 51.373461401 + ], + [ + 6.774891, + 51.373124201 + ], + [ + 6.7746748, + 51.372773801 + ], + [ + 6.774504127, + 51.37253983 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de116", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.385669046716615,6.774592405955219,51.3890913739642,6.774050479953003", + "point": "51.385669046716615,6.774592405955219", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Duisburg-Buchholz (aus Richtung Duisburg-Gro\u00dfenbaum)", + "title": "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.385669046716615, + "long": 6.774592405955219 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Auffahrt auf die A59: AS Duisburg-Buchholz (aus Richtung Duisburg-Gro\u00dfenbaum)", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.774592406, + 51.385669047 + ], + [ + 6.7745867, + 51.385699101 + ], + [ + 6.7744869, + 51.386168401 + ], + [ + 6.7742811, + 51.386953601 + ], + [ + 6.7740913, + 51.388742301 + ], + [ + 6.77405048, + 51.389091374 + ] + ] + } + }, + { + "identifier": "2023-004370--vi-bs.2026-02-05_00-00-00-000.devi-zus.2024-02-20_00-00-00-000_005.f.de114", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.38841583497092,6.77390039312472,51.38520308308262,6.77400032158491", + "point": "51.38841583497092,6.77390039312472", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dinslaken -> Duisburg", + "title": "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort", + "startTimestamp": "2026-02-05T00:00:00+01:00", + "coordinate": { + "lat": 51.38841583497092, + "long": 6.77390039312472 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 00:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "Von A59: Dinslaken -> Duisburg, zwischen 1.9 km hinter AS Duisburg-Wanheimerort und AS Duisburg-Buchholz nach Abfahrt von der A59: AS Duisburg-Buchholz (aus Richtung Duisburg-Wanheimerort)", + "", + "L\u00e4nge: 0.36 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A59 Grundhafte Erneuerung AK DU-S\u00fcd bis AS DU-Wanheimerort" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.773900393, + 51.388415835 + ], + [ + 6.7740971, + 51.386396301 + ], + [ + 6.7740277, + 51.385907601 + ], + [ + 6.7740027, + 51.385247801 + ], + [ + 6.774000322, + 51.385203083 + ] + ] + } + } + ] + }, + "A60": { + "roadworks": [ + { + "identifier": "2024-056288--vi-bs.2024-11-26_00-00-00-000.f_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.23131144396549,6.185463530225532,50.22839389096469,6.189286128147352", + "point": "50.23131144396549,6.185463530225532", + "startLcPosition": "0", + "impact": { + "lower": "Winterspelt", + "upper": "Steinebr\u00fcck", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " L\u00fcttich -> Wittlich", + "title": "A60 | Steinebr\u00fcck - Winterspelt", + "startTimestamp": "2024-12-02T00:00:00+01:00", + "coordinate": { + "lat": 50.23131144396549, + "long": 6.185463530225532 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.12.24 um 00:00 Uhr", + "Ende: 16.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.09.26)", + "", + "A60: L\u00fcttich -> Wittlich, zwischen 0.7 km hinter Steinebr\u00fcck und 0.3 km vor AS Winterspelt", + "", + "L\u00e4nge: 0.42 km | Max. 20 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A60 Sperrung Fahrspur in FR Wittlich H\u00f6he Parkplatz Zoll Grenzkontrolle " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.18546353, + 50.231311444 + ], + [ + 6.1857222, + 50.231054101 + ], + [ + 6.1861054, + 50.230693401 + ], + [ + 6.1864336, + 50.230393301 + ], + [ + 6.186758, + 50.230120301 + ], + [ + 6.1870288, + 50.229908401 + ], + [ + 6.187668, + 50.229424601 + ], + [ + 6.1883391, + 50.228974201 + ], + [ + 6.1888882, + 50.228641901 + ], + [ + 6.189286128, + 50.228393891 + ] + ] + } + }, + { + "identifier": "2026-017756--vi-bs.2026-04-10_12-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.186486575680405,6.386321265397034,49.99046541291126,6.782373808139549", + "point": "50.186486575680405,6.386321265397034", + "startLcPosition": "4", + "impact": { + "lower": "Landscheid", + "upper": "Schnee-Eifel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " L\u00fcttich -> Wittlich", + "title": "A60 | Schnee-Eifel - Landscheid", + "coordinate": { + "lat": 50.186486575680405, + "long": 6.386321265397034 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 12:00 bis 16:00 Uhr", + "", + "A60: L\u00fcttich -> Wittlich, zwischen 3.8 km hinter Schnee-Eifel und 0.1 km vor AS Landscheid", + "", + "L\u00e4nge: 40.44 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A60 von Schnee-Eifel (Parkplatz) nach Landscheid (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.386321265, + 50.186486576 + ], + [ + 6.386435, + 50.186316101 + ], + [ + 6.3866879, + 50.185907801 + ], + [ + 6.3868976, + 50.185540301 + ], + [ + 6.3869681, + 50.185328701 + ], + [ + 6.3870389, + 50.185148701 + ], + [ + 6.3871038, + 50.184958301 + ], + [ + 6.3872033, + 50.184610201 + ], + [ + 6.3872811, + 50.184409301 + ], + [ + 6.3873964, + 50.184203201 + ], + [ + 6.3875785, + 50.183842001 + ], + [ + 6.3876681, + 50.183635201 + ], + [ + 6.3877576, + 50.183428401 + ], + [ + 6.3880537, + 50.182686101 + ], + [ + 6.3883046, + 50.181984201 + ], + [ + 6.3885501, + 50.181216301 + ], + [ + 6.3887897, + 50.180375201 + ], + [ + 6.3889541, + 50.179721901 + ], + [ + 6.3893083, + 50.178092501 + ], + [ + 6.3894648, + 50.177217601 + ], + [ + 6.3896357, + 50.176195001 + ], + [ + 6.389807, + 50.174974201 + ], + [ + 6.3898815, + 50.174568601 + ], + [ + 6.3899999, + 50.173719001 + ], + [ + 6.3901001, + 50.173122701 + ], + [ + 6.3903623, + 50.171465601 + ], + [ + 6.3904645, + 50.170902601 + ], + [ + 6.3907133, + 50.169660301 + ], + [ + 6.3908526, + 50.169057601 + ], + [ + 6.3909983, + 50.168459701 + ], + [ + 6.3911592, + 50.167867401 + ], + [ + 6.3913345, + 50.167268101 + ], + [ + 6.3915752, + 50.166539201 + ], + [ + 6.3918337, + 50.165829401 + ], + [ + 6.3920807, + 50.165193201 + ], + [ + 6.3923407, + 50.164573801 + ], + [ + 6.3927034, + 50.163774601 + ], + [ + 6.3931471, + 50.162894801 + ], + [ + 6.3936451, + 50.161958601 + ], + [ + 6.3941717, + 50.161081801 + ], + [ + 6.3943767, + 50.160756001 + ], + [ + 6.3946636, + 50.160308801 + ], + [ + 6.3950564, + 50.159726501 + ], + [ + 6.3956899, + 50.158833301 + ], + [ + 6.3961673, + 50.158205501 + ], + [ + 6.3966581, + 50.157588601 + ], + [ + 6.3971302, + 50.157023201 + ], + [ + 6.3976063, + 50.156474601 + ], + [ + 6.3987744, + 50.155198201 + ], + [ + 6.3999546, + 50.153909301 + ], + [ + 6.4005285, + 50.153257901 + ], + [ + 6.4010636, + 50.152606601 + ], + [ + 6.4012755, + 50.152334801 + ], + [ + 6.4016148, + 50.151891601 + ], + [ + 6.401934, + 50.151439601 + ], + [ + 6.4021826, + 50.151048901 + ], + [ + 6.4022873, + 50.150884301 + ], + [ + 6.4025967, + 50.150357901 + ], + [ + 6.4029023, + 50.149775901 + ], + [ + 6.4031196, + 50.149320501 + ], + [ + 6.4034166, + 50.148595101 + ], + [ + 6.4034734, + 50.148459301 + ], + [ + 6.403656, + 50.147919701 + ], + [ + 6.4037127, + 50.147734701 + ], + [ + 6.4038277, + 50.147359401 + ], + [ + 6.4040503, + 50.146529201 + ], + [ + 6.4044477, + 50.144899801 + ], + [ + 6.4046377, + 50.144188101 + ], + [ + 6.4048067, + 50.143605301 + ], + [ + 6.4050172, + 50.142966001 + ], + [ + 6.4052546, + 50.142347101 + ], + [ + 6.4055201, + 50.141752301 + ], + [ + 6.4057952, + 50.141199401 + ], + [ + 6.406326, + 50.140272501 + ], + [ + 6.4067647, + 50.139605201 + ], + [ + 6.4072818, + 50.138906601 + ], + [ + 6.4077061, + 50.138381201 + ], + [ + 6.4081486, + 50.137874801 + ], + [ + 6.408631, + 50.137366201 + ], + [ + 6.409243, + 50.136768601 + ], + [ + 6.4096454, + 50.136402501 + ], + [ + 6.4103255, + 50.135821401 + ], + [ + 6.4108121, + 50.135439701 + ], + [ + 6.411311, + 50.135063201 + ], + [ + 6.412071, + 50.134526101 + ], + [ + 6.4128265, + 50.134041901 + ], + [ + 6.4135885, + 50.133584001 + ], + [ + 6.4142159, + 50.133228701 + ], + [ + 6.4148703, + 50.132881401 + ], + [ + 6.4162132, + 50.132222901 + ], + [ + 6.4176759, + 50.131542101 + ], + [ + 6.419183, + 50.130864901 + ], + [ + 6.4209919, + 50.130011401 + ], + [ + 6.4221874, + 50.129438301 + ], + [ + 6.4232043, + 50.128910201 + ], + [ + 6.4238101, + 50.128576501 + ], + [ + 6.4244043, + 50.128234301 + ], + [ + 6.4249865, + 50.127883901 + ], + [ + 6.4255573, + 50.127525801 + ], + [ + 6.4261145, + 50.127159001 + ], + [ + 6.4266645, + 50.126786001 + ], + [ + 6.4269792, + 50.126567301 + ], + [ + 6.4275183, + 50.126183701 + ], + [ + 6.4280423, + 50.125799401 + ], + [ + 6.4285572, + 50.125410101 + ], + [ + 6.4296021, + 50.124523401 + ], + [ + 6.4301577, + 50.124051901 + ], + [ + 6.4305359, + 50.123679001 + ], + [ + 6.4314681, + 50.122797001 + ], + [ + 6.431834, + 50.122423401 + ], + [ + 6.4325361, + 50.121648001 + ], + [ + 6.4335494, + 50.120438801 + ], + [ + 6.4341634, + 50.119632201 + ], + [ + 6.4347869, + 50.118751001 + ], + [ + 6.4352181, + 50.118090001 + ], + [ + 6.4356217, + 50.117361901 + ], + [ + 6.4363561, + 50.115829901 + ], + [ + 6.4365799, + 50.115309901 + ], + [ + 6.4368037, + 50.114752901 + ], + [ + 6.4371944, + 50.113653401 + ], + [ + 6.4379139, + 50.111455901 + ], + [ + 6.4386834, + 50.109555501 + ], + [ + 6.4391213, + 50.108673901 + ], + [ + 6.4393489, + 50.108233601 + ], + [ + 6.4395921, + 50.107833901 + ], + [ + 6.4398117, + 50.107498901 + ], + [ + 6.4400213, + 50.107197201 + ], + [ + 6.4402934, + 50.106834701 + ], + [ + 6.440559, + 50.106525801 + ], + [ + 6.4410104, + 50.106005201 + ], + [ + 6.4419784, + 50.104946601 + ], + [ + 6.4430657, + 50.103824701 + ], + [ + 6.4434682, + 50.103386001 + ], + [ + 6.4438489, + 50.102947301 + ], + [ + 6.4441788, + 50.102544701 + ], + [ + 6.4444552, + 50.102161501 + ], + [ + 6.4447367, + 50.101710301 + ], + [ + 6.4449707, + 50.101275401 + ], + [ + 6.4451659, + 50.100822501 + ], + [ + 6.4453183, + 50.100410501 + ], + [ + 6.445477, + 50.099886601 + ], + [ + 6.4455873, + 50.099452201 + ], + [ + 6.445875, + 50.098116201 + ], + [ + 6.4459075, + 50.097985201 + ], + [ + 6.4460293, + 50.097493701 + ], + [ + 6.4461073, + 50.097273101 + ], + [ + 6.446194, + 50.097002701 + ], + [ + 6.4463541, + 50.096565901 + ], + [ + 6.4465319, + 50.096174501 + ], + [ + 6.4468473, + 50.095602101 + ], + [ + 6.4471059, + 50.095193001 + ], + [ + 6.4473331, + 50.094883101 + ], + [ + 6.4475855, + 50.094563601 + ], + [ + 6.4479091, + 50.094205901 + ], + [ + 6.4480979, + 50.094008801 + ], + [ + 6.4485235, + 50.093610501 + ], + [ + 6.4491696, + 50.093067901 + ], + [ + 6.4497456, + 50.092634101 + ], + [ + 6.450482, + 50.092122501 + ], + [ + 6.4515728, + 50.091432301 + ], + [ + 6.4545021, + 50.089660201 + ], + [ + 6.4560224, + 50.088638501 + ], + [ + 6.4574796, + 50.087472901 + ], + [ + 6.4580576, + 50.086949601 + ], + [ + 6.4586547, + 50.086349701 + ], + [ + 6.4595444, + 50.085393301 + ], + [ + 6.4603566, + 50.084371701 + ], + [ + 6.460926, + 50.083527501 + ], + [ + 6.461868, + 50.082101601 + ], + [ + 6.4628612, + 50.080653401 + ], + [ + 6.464268, + 50.078680001 + ], + [ + 6.4646617, + 50.078164901 + ], + [ + 6.4653687, + 50.077239801 + ], + [ + 6.4659228, + 50.076514801 + ], + [ + 6.4678391, + 50.074185201 + ], + [ + 6.4685132, + 50.073412801 + ], + [ + 6.4688272, + 50.073053001 + ], + [ + 6.4711475, + 50.070502501 + ], + [ + 6.474216, + 50.067312701 + ], + [ + 6.476064, + 50.065393701 + ], + [ + 6.4828665, + 50.058324601 + ], + [ + 6.4838178, + 50.057350401 + ], + [ + 6.4862487, + 50.054815601 + ], + [ + 6.487822, + 50.053210601 + ], + [ + 6.4893159, + 50.051686601 + ], + [ + 6.4911691, + 50.049932101 + ], + [ + 6.49249, + 50.048852801 + ], + [ + 6.4939823, + 50.047701101 + ], + [ + 6.4954707, + 50.046705501 + ], + [ + 6.4969575, + 50.045801401 + ], + [ + 6.4987623, + 50.044811401 + ], + [ + 6.5003089, + 50.044048101 + ], + [ + 6.5011427, + 50.043662601 + ], + [ + 6.5013439, + 50.043569601 + ], + [ + 6.5029689, + 50.042893401 + ], + [ + 6.5038759, + 50.042535501 + ], + [ + 6.5048456, + 50.042170501 + ], + [ + 6.5058314, + 50.041824001 + ], + [ + 6.5068327, + 50.041496101 + ], + [ + 6.5078484, + 50.041187301 + ], + [ + 6.5088779, + 50.040897801 + ], + [ + 6.5099203, + 50.040627801 + ], + [ + 6.5109745, + 50.040377601 + ], + [ + 6.5120398, + 50.040147501 + ], + [ + 6.5129386, + 50.039975101 + ], + [ + 6.5143053, + 50.039728801 + ], + [ + 6.5155076, + 50.039534901 + ], + [ + 6.5167178, + 50.039362401 + ], + [ + 6.5179349, + 50.039211401 + ], + [ + 6.5185736, + 50.039142201 + ], + [ + 6.5195143, + 50.039048601 + ], + [ + 6.5204503, + 50.038973001 + ], + [ + 6.5221905, + 50.038848401 + ], + [ + 6.5254552, + 50.038625401 + ], + [ + 6.5269922, + 50.038501801 + ], + [ + 6.5288431, + 50.038311901 + ], + [ + 6.5300935, + 50.038143401 + ], + [ + 6.5312568, + 50.037950401 + ], + [ + 6.5319413, + 50.037839301 + ], + [ + 6.5330135, + 50.037624801 + ], + [ + 6.5338721, + 50.037437301 + ], + [ + 6.5346894, + 50.037238201 + ], + [ + 6.5349929, + 50.037160901 + ], + [ + 6.5354403, + 50.037042601 + ], + [ + 6.5359454, + 50.036907701 + ], + [ + 6.5368991, + 50.036628801 + ], + [ + 6.5377107, + 50.036376201 + ], + [ + 6.5386306, + 50.036068701 + ], + [ + 6.5399367, + 50.035584201 + ], + [ + 6.5409357, + 50.035181901 + ], + [ + 6.541805, + 50.034803601 + ], + [ + 6.5434032, + 50.034039301 + ], + [ + 6.5444862, + 50.033461301 + ], + [ + 6.5453542, + 50.032961501 + ], + [ + 6.546194, + 50.032445501 + ], + [ + 6.5469701, + 50.031930901 + ], + [ + 6.5477494, + 50.031377701 + ], + [ + 6.5483698, + 50.030912301 + ], + [ + 6.5490469, + 50.030378301 + ], + [ + 6.5498601, + 50.029666501 + ], + [ + 6.5504788, + 50.029087201 + ], + [ + 6.5510719, + 50.028496601 + ], + [ + 6.551761, + 50.027746701 + ], + [ + 6.5524614, + 50.026956501 + ], + [ + 6.5531617, + 50.026166301 + ], + [ + 6.5535247, + 50.025775601 + ], + [ + 6.5538939, + 50.025409701 + ], + [ + 6.5543251, + 50.025032301 + ], + [ + 6.5547725, + 50.024658501 + ], + [ + 6.5552769, + 50.024299001 + ], + [ + 6.5557987, + 50.023958201 + ], + [ + 6.5563014, + 50.023662701 + ], + [ + 6.5568231, + 50.023386501 + ], + [ + 6.5573964, + 50.023105501 + ], + [ + 6.5580264, + 50.022838801 + ], + [ + 6.558657, + 50.022595301 + ], + [ + 6.5593518, + 50.022364301 + ], + [ + 6.5600912, + 50.022146001 + ], + [ + 6.5608522, + 50.021956401 + ], + [ + 6.5617873, + 50.021768501 + ], + [ + 6.5633112, + 50.021518101 + ], + [ + 6.5642604, + 50.021367701 + ], + [ + 6.5700786, + 50.020469401 + ], + [ + 6.578815, + 50.019113001 + ], + [ + 6.5846092, + 50.018221501 + ], + [ + 6.5861464, + 50.017993801 + ], + [ + 6.5876248, + 50.017785201 + ], + [ + 6.5889534, + 50.017618501 + ], + [ + 6.5902488, + 50.017471501 + ], + [ + 6.5914152, + 50.017360101 + ], + [ + 6.592826, + 50.017242401 + ], + [ + 6.5942525, + 50.017148101 + ], + [ + 6.5954936, + 50.017083801 + ], + [ + 6.5970178, + 50.017031101 + ], + [ + 6.5982, + 50.017006801 + ], + [ + 6.5995023, + 50.017001801 + ], + [ + 6.600767, + 50.017012601 + ], + [ + 6.6023586, + 50.017057901 + ], + [ + 6.6035969, + 50.017110601 + ], + [ + 6.6049987, + 50.017194401 + ], + [ + 6.6060588, + 50.017269701 + ], + [ + 6.6067954, + 50.017329601 + ], + [ + 6.607965, + 50.017438101 + ], + [ + 6.6087382, + 50.017517701 + ], + [ + 6.6096383, + 50.017611401 + ], + [ + 6.6106724, + 50.017725201 + ], + [ + 6.6109304, + 50.017753601 + ], + [ + 6.613364, + 50.018027801 + ], + [ + 6.6158641, + 50.018310901 + ], + [ + 6.6204023, + 50.018830701 + ], + [ + 6.622713, + 50.019095301 + ], + [ + 6.6247258, + 50.019325801 + ], + [ + 6.6295923, + 50.019884301 + ], + [ + 6.6322355, + 50.020177901 + ], + [ + 6.6365096, + 50.020657801 + ], + [ + 6.6379148, + 50.020791701 + ], + [ + 6.6392738, + 50.020895401 + ], + [ + 6.6403294, + 50.020961801 + ], + [ + 6.6413873, + 50.021010301 + ], + [ + 6.6424469, + 50.021041101 + ], + [ + 6.6435073, + 50.021054101 + ], + [ + 6.6442458, + 50.021050701 + ], + [ + 6.6445679, + 50.021049201 + ], + [ + 6.6456279, + 50.021026501 + ], + [ + 6.6466867, + 50.020986001 + ], + [ + 6.647578, + 50.020939201 + ], + [ + 6.6488293, + 50.020855201 + ], + [ + 6.6499663, + 50.020745501 + ], + [ + 6.6512683, + 50.020611501 + ], + [ + 6.6524525, + 50.020457601 + ], + [ + 6.6535367, + 50.020294601 + ], + [ + 6.6545085, + 50.020134801 + ], + [ + 6.6555054, + 50.019953401 + ], + [ + 6.6564198, + 50.019772101 + ], + [ + 6.6573383, + 50.019575301 + ], + [ + 6.6586681, + 50.019262401 + ], + [ + 6.6600961, + 50.018885901 + ], + [ + 6.6618666, + 50.018356801 + ], + [ + 6.6631189, + 50.017950801 + ], + [ + 6.6637822, + 50.017725701 + ], + [ + 6.6644169, + 50.017495501 + ], + [ + 6.6650453, + 50.017262601 + ], + [ + 6.665669, + 50.017010001 + ], + [ + 6.666536, + 50.016663101 + ], + [ + 6.6673954, + 50.016288601 + ], + [ + 6.6686152, + 50.015722501 + ], + [ + 6.6701434, + 50.014951301 + ], + [ + 6.6712685, + 50.014341101 + ], + [ + 6.6752482, + 50.012078001 + ], + [ + 6.6760191, + 50.011679401 + ], + [ + 6.6767443, + 50.011309901 + ], + [ + 6.6773355, + 50.011026801 + ], + [ + 6.6778749, + 50.010781801 + ], + [ + 6.6786789, + 50.010438901 + ], + [ + 6.6795014, + 50.010114101 + ], + [ + 6.6803411, + 50.009807901 + ], + [ + 6.6811965, + 50.009520701 + ], + [ + 6.6826019, + 50.009099901 + ], + [ + 6.6840505, + 50.008728101 + ], + [ + 6.6850747, + 50.008501101 + ], + [ + 6.686166, + 50.008285801 + ], + [ + 6.6878691, + 50.007990801 + ], + [ + 6.6892459, + 50.007765401 + ], + [ + 6.6917108, + 50.007360601 + ], + [ + 6.6918882, + 50.007331501 + ], + [ + 6.6940101, + 50.006983101 + ], + [ + 6.6964728, + 50.006584301 + ], + [ + 6.6986193, + 50.006233601 + ], + [ + 6.6994799, + 50.006107301 + ], + [ + 6.7003205, + 50.005997601 + ], + [ + 6.7011647, + 50.005920401 + ], + [ + 6.7019213, + 50.005878501 + ], + [ + 6.7028218, + 50.005861801 + ], + [ + 6.7036056, + 50.005876601 + ], + [ + 6.7044342, + 50.005921901 + ], + [ + 6.7052188, + 50.005993401 + ], + [ + 6.7060231, + 50.006096201 + ], + [ + 6.7067544, + 50.006216401 + ], + [ + 6.7074389, + 50.006348501 + ], + [ + 6.7105507, + 50.006974001 + ], + [ + 6.711508, + 50.007141701 + ], + [ + 6.7120204, + 50.007220501 + ], + [ + 6.7125369, + 50.007287601 + ], + [ + 6.7130567, + 50.007342701 + ], + [ + 6.7135793, + 50.007386001 + ], + [ + 6.7141039, + 50.007417301 + ], + [ + 6.71463, + 50.007436601 + ], + [ + 6.7151568, + 50.007443801 + ], + [ + 6.7156836, + 50.007439001 + ], + [ + 6.7162098, + 50.007421401 + ], + [ + 6.7168056, + 50.007397701 + ], + [ + 6.7173998, + 50.007360801 + ], + [ + 6.7179916, + 50.007310801 + ], + [ + 6.7185804, + 50.007247801 + ], + [ + 6.7191655, + 50.007171701 + ], + [ + 6.7197462, + 50.007082701 + ], + [ + 6.7203217, + 50.006980901 + ], + [ + 6.7208915, + 50.006866401 + ], + [ + 6.7214547, + 50.006739301 + ], + [ + 6.7220108, + 50.006599801 + ], + [ + 6.7225591, + 50.006448101 + ], + [ + 6.7230989, + 50.006284401 + ], + [ + 6.7236297, + 50.006108801 + ], + [ + 6.7241507, + 50.005921501 + ], + [ + 6.7246613, + 50.005722801 + ], + [ + 6.725161, + 50.005512901 + ], + [ + 6.7256574, + 50.005290101 + ], + [ + 6.726138, + 50.005055001 + ], + [ + 6.726602, + 50.004820101 + ], + [ + 6.7271197, + 50.004520501 + ], + [ + 6.7276122, + 50.004228001 + ], + [ + 6.7281979, + 50.003849901 + ], + [ + 6.7294157, + 50.003036201 + ], + [ + 6.7300513, + 50.002610401 + ], + [ + 6.7306377, + 50.002242001 + ], + [ + 6.7314102, + 50.001781701 + ], + [ + 6.7320603, + 50.001413901 + ], + [ + 6.7327486, + 50.001059401 + ], + [ + 6.7337839, + 50.000571501 + ], + [ + 6.734543, + 50.000249001 + ], + [ + 6.735169, + 50.000001901 + ], + [ + 6.7357554, + 49.999774901 + ], + [ + 6.7366029, + 49.999481801 + ], + [ + 6.7374408, + 49.999222601 + ], + [ + 6.7381963, + 49.999005001 + ], + [ + 6.738975, + 49.998803701 + ], + [ + 6.7398034, + 49.998606101 + ], + [ + 6.7407882, + 49.998396801 + ], + [ + 6.7415868, + 49.998248101 + ], + [ + 6.7425102, + 49.998098501 + ], + [ + 6.743398, + 49.997979501 + ], + [ + 6.7443129, + 49.997880101 + ], + [ + 6.7453238, + 49.997793301 + ], + [ + 6.7460596, + 49.997745501 + ], + [ + 6.7468849, + 49.997710501 + ], + [ + 6.747823, + 49.997691101 + ], + [ + 6.7487539, + 49.997692401 + ], + [ + 6.7502317, + 49.997739801 + ], + [ + 6.7506796, + 49.997761701 + ], + [ + 6.752142, + 49.997831201 + ], + [ + 6.7536682, + 49.997897501 + ], + [ + 6.7549503, + 49.997936401 + ], + [ + 6.755873, + 49.997950201 + ], + [ + 6.756899, + 49.997946101 + ], + [ + 6.7577854, + 49.997927801 + ], + [ + 6.7586966, + 49.997889501 + ], + [ + 6.7590842, + 49.997868201 + ], + [ + 6.7596334, + 49.997838101 + ], + [ + 6.7605842, + 49.997766601 + ], + [ + 6.7615378, + 49.997679501 + ], + [ + 6.7625131, + 49.997573201 + ], + [ + 6.7633322, + 49.997467401 + ], + [ + 6.7642763, + 49.997329501 + ], + [ + 6.7651953, + 49.997180001 + ], + [ + 6.7662048, + 49.996993301 + ], + [ + 6.7669941, + 49.996835001 + ], + [ + 6.7678061, + 49.996658801 + ], + [ + 6.7686133, + 49.996467001 + ], + [ + 6.7687815, + 49.996422701 + ], + [ + 6.7698795, + 49.996131201 + ], + [ + 6.7705248, + 49.995944901 + ], + [ + 6.7714321, + 49.995672301 + ], + [ + 6.7722217, + 49.995413301 + ], + [ + 6.7732564, + 49.995051801 + ], + [ + 6.7741875, + 49.994700301 + ], + [ + 6.7749515, + 49.994393101 + ], + [ + 6.7755869, + 49.994121801 + ], + [ + 6.7762861, + 49.993811701 + ], + [ + 6.7770469, + 49.993452601 + ], + [ + 6.7776471, + 49.993155101 + ], + [ + 6.7781986, + 49.992860501 + ], + [ + 6.7789137, + 49.992486001 + ], + [ + 6.7808463, + 49.991357401 + ], + [ + 6.782373808, + 49.990465413 + ] + ] + } + }, + { + "identifier": "2026-016390--vi-bs.2026-04-09_07-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.01705471458004,6.5963349137232665,50.02058805336915,6.65144872636854", + "point": "50.01705471458004,6.5963349137232665", + "startLcPosition": "9", + "impact": { + "lower": "Spangdahlem", + "upper": "Bitburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " L\u00fcttich -> Wittlich", + "title": "A60 | Bitburg - Spangdahlem", + "coordinate": { + "lat": 50.01705471458004, + "long": 6.5963349137232665 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 17:00 Uhr", + "", + "A60: L\u00fcttich -> Wittlich, zwischen 5.7 km hinter AS Bitburg und 3.2 km vor AS Spangdahlem", + "", + "L\u00e4nge: 3.99 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A60 von Bitburg (AS) nach Spangdahlem (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.596334914, + 50.017054715 + ], + [ + 6.5970178, + 50.017031101 + ], + [ + 6.5982, + 50.017006801 + ], + [ + 6.5995023, + 50.017001801 + ], + [ + 6.600767, + 50.017012601 + ], + [ + 6.6023586, + 50.017057901 + ], + [ + 6.6035969, + 50.017110601 + ], + [ + 6.6049987, + 50.017194401 + ], + [ + 6.6060588, + 50.017269701 + ], + [ + 6.6067954, + 50.017329601 + ], + [ + 6.607965, + 50.017438101 + ], + [ + 6.6087382, + 50.017517701 + ], + [ + 6.6096383, + 50.017611401 + ], + [ + 6.6106724, + 50.017725201 + ], + [ + 6.6109304, + 50.017753601 + ], + [ + 6.613364, + 50.018027801 + ], + [ + 6.6158641, + 50.018310901 + ], + [ + 6.6204023, + 50.018830701 + ], + [ + 6.622713, + 50.019095301 + ], + [ + 6.6247258, + 50.019325801 + ], + [ + 6.6295923, + 50.019884301 + ], + [ + 6.6322355, + 50.020177901 + ], + [ + 6.6365096, + 50.020657801 + ], + [ + 6.6379148, + 50.020791701 + ], + [ + 6.6392738, + 50.020895401 + ], + [ + 6.6403294, + 50.020961801 + ], + [ + 6.6413873, + 50.021010301 + ], + [ + 6.6424469, + 50.021041101 + ], + [ + 6.6435073, + 50.021054101 + ], + [ + 6.6442458, + 50.021050701 + ], + [ + 6.6445679, + 50.021049201 + ], + [ + 6.6456279, + 50.021026501 + ], + [ + 6.6466867, + 50.020986001 + ], + [ + 6.647578, + 50.020939201 + ], + [ + 6.6488293, + 50.020855201 + ], + [ + 6.6499663, + 50.020745501 + ], + [ + 6.6512683, + 50.020611501 + ], + [ + 6.651448726, + 50.020588053 + ] + ] + } + }, + { + "identifier": "2026-017201--vi-bs.2026-04-09_16-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.01738949125605,6.607440984702796,50.02073568771338,6.650061654498993", + "point": "50.01738949125605,6.607440984702796", + "startLcPosition": "9", + "impact": { + "lower": "Spangdahlem", + "upper": "Bitburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " L\u00fcttich -> Wittlich", + "title": "A60 | Bitburg - Spangdahlem", + "startTimestamp": "2026-04-09T16:00:00+02:00", + "coordinate": { + "lat": 50.01738949125605, + "long": 6.607440984702796 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.04.26 um 16:00 Uhr", + "Ende: 16.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.04.26)", + "", + "A60: L\u00fcttich -> Wittlich, zwischen 6.5 km hinter AS Bitburg und 3.3 km vor AS Spangdahlem", + "", + "L\u00e4nge: 3.09 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A60 von Bitburg (AS) nach Spangdahlem (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.607440985, + 50.017389491 + ], + [ + 6.607965, + 50.017438101 + ], + [ + 6.6087382, + 50.017517701 + ], + [ + 6.6096383, + 50.017611401 + ], + [ + 6.6106724, + 50.017725201 + ], + [ + 6.6109304, + 50.017753601 + ], + [ + 6.613364, + 50.018027801 + ], + [ + 6.6158641, + 50.018310901 + ], + [ + 6.6204023, + 50.018830701 + ], + [ + 6.622713, + 50.019095301 + ], + [ + 6.6247258, + 50.019325801 + ], + [ + 6.6295923, + 50.019884301 + ], + [ + 6.6322355, + 50.020177901 + ], + [ + 6.6365096, + 50.020657801 + ], + [ + 6.6379148, + 50.020791701 + ], + [ + 6.6392738, + 50.020895401 + ], + [ + 6.6403294, + 50.020961801 + ], + [ + 6.6413873, + 50.021010301 + ], + [ + 6.6424469, + 50.021041101 + ], + [ + 6.6435073, + 50.021054101 + ], + [ + 6.6442458, + 50.021050701 + ], + [ + 6.6445679, + 50.021049201 + ], + [ + 6.6456279, + 50.021026501 + ], + [ + 6.6466867, + 50.020986001 + ], + [ + 6.647578, + 50.020939201 + ], + [ + 6.6488293, + 50.020855201 + ], + [ + 6.6499663, + 50.020745501 + ], + [ + 6.650061654, + 50.020735688 + ] + ] + } + }, + { + "identifier": "2026-016394--vi-bs.2026-04-10_07-30-00-000.devi-bs.2026-04-11_07-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.01346721872237,6.672805310747454,50.00659381517168,6.696414051254804", + "point": "50.01346721872237,6.672805310747454", + "startLcPosition": "10", + "impact": { + "lower": "Landscheid", + "upper": "Badem", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " L\u00fcttich -> Wittlich", + "title": "A60 | Badem - Landscheid", + "coordinate": { + "lat": 50.01346721872237, + "long": 6.672805310747454 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 17:00 Uhr", + "", + "A60: L\u00fcttich -> Wittlich, zwischen 4.7 km hinter AS Badem und 6.8 km vor AS Landscheid", + "", + "L\u00e4nge: 1.89 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A60 von Badem (AS) nach Landscheid (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.672805311, + 50.013467219 + ], + [ + 6.6752482, + 50.012078001 + ], + [ + 6.6760191, + 50.011679401 + ], + [ + 6.6767443, + 50.011309901 + ], + [ + 6.6773355, + 50.011026801 + ], + [ + 6.6778749, + 50.010781801 + ], + [ + 6.6786789, + 50.010438901 + ], + [ + 6.6795014, + 50.010114101 + ], + [ + 6.6803411, + 50.009807901 + ], + [ + 6.6811965, + 50.009520701 + ], + [ + 6.6826019, + 50.009099901 + ], + [ + 6.6840505, + 50.008728101 + ], + [ + 6.6850747, + 50.008501101 + ], + [ + 6.686166, + 50.008285801 + ], + [ + 6.6878691, + 50.007990801 + ], + [ + 6.6892459, + 50.007765401 + ], + [ + 6.6917108, + 50.007360601 + ], + [ + 6.6918882, + 50.007331501 + ], + [ + 6.6940101, + 50.006983101 + ], + [ + 6.696414051, + 50.006593815 + ] + ] + } + }, + { + "identifier": "2026-017070--vi-bs.2026-04-07_16-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.0083627458805,6.686407136572529,50.01152254320315,6.676590178093988", + "point": "50.0083627458805,6.686407136572529", + "startLcPosition": "11", + "impact": { + "lower": "Badem", + "upper": "Spangdahlem", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wittlich -> L\u00fcttich", + "title": "A60 | Spangdahlem - Badem", + "startTimestamp": "2026-04-07T16:00:00+02:00", + "coordinate": { + "lat": 50.0083627458805, + "long": 6.686407136572529 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 16:00 Uhr", + "Ende: 18.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.26)", + "", + "A60: Wittlich -> L\u00fcttich, zwischen 0.3 km hinter AS Spangdahlem und 5.1 km vor AS Badem", + "", + "L\u00e4nge: 0.79 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A60 von Spangdahlem (AS) nach Badem (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.686407137, + 50.008362746 + ], + [ + 6.6862071, + 50.008397901 + ], + [ + 6.6851289, + 50.008617701 + ], + [ + 6.684847, + 50.008680001 + ], + [ + 6.6840905, + 50.008847201 + ], + [ + 6.6826691, + 50.009210501 + ], + [ + 6.6812602, + 50.009630401 + ], + [ + 6.6804097, + 50.009914601 + ], + [ + 6.6795749, + 50.010217501 + ], + [ + 6.6787569, + 50.010538801 + ], + [ + 6.6779569, + 50.010878001 + ], + [ + 6.6774322, + 50.011114601 + ], + [ + 6.676835, + 50.011398601 + ], + [ + 6.676590178, + 50.011522543 + ] + ] + } + }, + { + "identifier": "2026-017754--vi-bs.2026-04-10_08-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.9905446145238,6.782485384052813,50.186478313199366,6.386326777847191", + "point": "49.9905446145238,6.782485384052813", + "startLcPosition": "12", + "impact": { + "lower": "Schnee-Eifel", + "upper": "Landscheid", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wittlich -> L\u00fcttich", + "title": "A60 | Landscheid - Schnee-Eifel", + "coordinate": { + "lat": 49.9905446145238, + "long": 6.782485384052813 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A60: Wittlich -> L\u00fcttich, zwischen 0.1 km hinter AS Landscheid und 3.8 km vor Schnee-Eifel", + "", + "L\u00e4nge: 40.44 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A60 von Landscheid (AS) nach Schnee-Eifel (Parkplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.782485384, + 49.990544615 + ], + [ + 6.7809489, + 49.991446101 + ], + [ + 6.7792676, + 49.992432601 + ], + [ + 6.7777521, + 49.993244301 + ], + [ + 6.7771422, + 49.993551601 + ], + [ + 6.7765283, + 49.993841601 + ], + [ + 6.7763865, + 49.993908601 + ], + [ + 6.7757133, + 49.994206901 + ], + [ + 6.7750273, + 49.994495801 + ], + [ + 6.7742944, + 49.994793201 + ], + [ + 6.7733676, + 49.995144301 + ], + [ + 6.7722976, + 49.995512801 + ], + [ + 6.7715023, + 49.995773901 + ], + [ + 6.7705876, + 49.996053601 + ], + [ + 6.7699472, + 49.996234901 + ], + [ + 6.7688378, + 49.996528201 + ], + [ + 6.7686846, + 49.996566701 + ], + [ + 6.7678598, + 49.996762201 + ], + [ + 6.7670384, + 49.996944201 + ], + [ + 6.7662263, + 49.997107101 + ], + [ + 6.7652436, + 49.997285301 + ], + [ + 6.7643085, + 49.997441601 + ], + [ + 6.7633697, + 49.997577801 + ], + [ + 6.7625292, + 49.997680101 + ], + [ + 6.7615592, + 49.997789901 + ], + [ + 6.7605878, + 49.997877201 + ], + [ + 6.7596495, + 49.997950201 + ], + [ + 6.7587196, + 49.997999501 + ], + [ + 6.7577934, + 49.998039901 + ], + [ + 6.7568859, + 49.998057101 + ], + [ + 6.7558676, + 49.998062301 + ], + [ + 6.7549556, + 49.998046801 + ], + [ + 6.7536592, + 49.998008001 + ], + [ + 6.7521206, + 49.997941601 + ], + [ + 6.7505778, + 49.997861901 + ], + [ + 6.7501084, + 49.997843701 + ], + [ + 6.7487227, + 49.997803501 + ], + [ + 6.7478179, + 49.997799001 + ], + [ + 6.7468822, + 49.997822601 + ], + [ + 6.7460635, + 49.997855701 + ], + [ + 6.7453453, + 49.997901901 + ], + [ + 6.7442969, + 49.997992701 + ], + [ + 6.7434141, + 49.998093301 + ], + [ + 6.7425612, + 49.998205401 + ], + [ + 6.7416246, + 49.998357601 + ], + [ + 6.7408365, + 49.998503701 + ], + [ + 6.7398568, + 49.998711101 + ], + [ + 6.7390394, + 49.998907101 + ], + [ + 6.7382273, + 49.999111001 + ], + [ + 6.7374945, + 49.999326101 + ], + [ + 6.7372293, + 49.999411101 + ], + [ + 6.7366485, + 49.999597401 + ], + [ + 6.7358412, + 49.999878401 + ], + [ + 6.7352387, + 50.000101901 + ], + [ + 6.7346289, + 50.000345601 + ], + [ + 6.7338536, + 50.000680101 + ], + [ + 6.7328425, + 50.001154201 + ], + [ + 6.7321703, + 50.001505301 + ], + [ + 6.7315067, + 50.001871401 + ], + [ + 6.7307718, + 50.002311001 + ], + [ + 6.7301667, + 50.002694901 + ], + [ + 6.7295337, + 50.003115501 + ], + [ + 6.7283052, + 50.003941301 + ], + [ + 6.727706, + 50.004321101 + ], + [ + 6.727235, + 50.004608501 + ], + [ + 6.7266923, + 50.004914101 + ], + [ + 6.7262399, + 50.005148101 + ], + [ + 6.7257539, + 50.005390201 + ], + [ + 6.7252625, + 50.005608001 + ], + [ + 6.724757, + 50.005819701 + ], + [ + 6.7242405, + 50.006020001 + ], + [ + 6.7237136, + 50.006208801 + ], + [ + 6.7231769, + 50.006385801 + ], + [ + 6.722631, + 50.006550801 + ], + [ + 6.7220766, + 50.006703701 + ], + [ + 6.7215143, + 50.006844201 + ], + [ + 6.7209449, + 50.006972201 + ], + [ + 6.7203689, + 50.007087501 + ], + [ + 6.7197872, + 50.007190001 + ], + [ + 6.7192002, + 50.007279601 + ], + [ + 6.7186088, + 50.007356201 + ], + [ + 6.7180137, + 50.007419601 + ], + [ + 6.7174155, + 50.007469801 + ], + [ + 6.716815, + 50.007506801 + ], + [ + 6.7162129, + 50.007530501 + ], + [ + 6.7156812, + 50.007548401 + ], + [ + 6.7151489, + 50.007554301 + ], + [ + 6.7146166, + 50.007547701 + ], + [ + 6.714085, + 50.007528501 + ], + [ + 6.7135549, + 50.007496901 + ], + [ + 6.713027, + 50.007452901 + ], + [ + 6.7125018, + 50.007396501 + ], + [ + 6.7119803, + 50.007327801 + ], + [ + 6.711463, + 50.007246901 + ], + [ + 6.7109535, + 50.007161501 + ], + [ + 6.7102707, + 50.007039701 + ], + [ + 6.7074003, + 50.006457501 + ], + [ + 6.7067132, + 50.006331201 + ], + [ + 6.7059741, + 50.006206201 + ], + [ + 6.7052027, + 50.006104601 + ], + [ + 6.704408, + 50.006029901 + ], + [ + 6.7035933, + 50.005984001 + ], + [ + 6.7028167, + 50.005968701 + ], + [ + 6.7019218, + 50.005985401 + ], + [ + 6.701184, + 50.006027001 + ], + [ + 6.7003324, + 50.006106701 + ], + [ + 6.6995297, + 50.006213701 + ], + [ + 6.6986644, + 50.006343101 + ], + [ + 6.6965024, + 50.006693101 + ], + [ + 6.6925724, + 50.007337101 + ], + [ + 6.6897969, + 50.007794901 + ], + [ + 6.6895363, + 50.007837901 + ], + [ + 6.6874697, + 50.008176001 + ], + [ + 6.6862071, + 50.008397901 + ], + [ + 6.6851289, + 50.008617701 + ], + [ + 6.684847, + 50.008680001 + ], + [ + 6.6840905, + 50.008847201 + ], + [ + 6.6826691, + 50.009210501 + ], + [ + 6.6812602, + 50.009630401 + ], + [ + 6.6804097, + 50.009914601 + ], + [ + 6.6795749, + 50.010217501 + ], + [ + 6.6787569, + 50.010538801 + ], + [ + 6.6779569, + 50.010878001 + ], + [ + 6.6774322, + 50.011114601 + ], + [ + 6.676835, + 50.011398601 + ], + [ + 6.676099, + 50.011771201 + ], + [ + 6.6753355, + 50.012177801 + ], + [ + 6.6732765, + 50.013347401 + ], + [ + 6.671369, + 50.014431001 + ], + [ + 6.6702449, + 50.015044301 + ], + [ + 6.668725, + 50.015801701 + ], + [ + 6.6674887, + 50.016382701 + ], + [ + 6.6666271, + 50.016755701 + ], + [ + 6.6657685, + 50.017107901 + ], + [ + 6.6651288, + 50.017357701 + ], + [ + 6.664487, + 50.017593101 + ], + [ + 6.6638504, + 50.017828101 + ], + [ + 6.6631883, + 50.018055101 + ], + [ + 6.6618985, + 50.018477201 + ], + [ + 6.6601582, + 50.018985801 + ], + [ + 6.6587271, + 50.019366001 + ], + [ + 6.6573919, + 50.019679601 + ], + [ + 6.6564776, + 50.019873701 + ], + [ + 6.6555661, + 50.020055801 + ], + [ + 6.6545839, + 50.020234001 + ], + [ + 6.6535746, + 50.020401901 + ], + [ + 6.6524957, + 50.020566201 + ], + [ + 6.6512949, + 50.020718701 + ], + [ + 6.6499787, + 50.020858601 + ], + [ + 6.6488407, + 50.020962401 + ], + [ + 6.6475902, + 50.021044601 + ], + [ + 6.6466901, + 50.021091301 + ], + [ + 6.6456881, + 50.021133601 + ], + [ + 6.6446848, + 50.021159601 + ], + [ + 6.6436809, + 50.021169401 + ], + [ + 6.6426768, + 50.021162901 + ], + [ + 6.6416733, + 50.021140101 + ], + [ + 6.6406711, + 50.021101101 + ], + [ + 6.6396707, + 50.021045801 + ], + [ + 6.6386728, + 50.020974401 + ], + [ + 6.6376117, + 50.020886501 + ], + [ + 6.6362937, + 50.020755201 + ], + [ + 6.6317222, + 50.020242201 + ], + [ + 6.6295039, + 50.019986001 + ], + [ + 6.6246911, + 50.019438201 + ], + [ + 6.6226862, + 50.019208501 + ], + [ + 6.6203752, + 50.018943801 + ], + [ + 6.6158358, + 50.018423801 + ], + [ + 6.6118359, + 50.017967301 + ], + [ + 6.609582, + 50.017718001 + ], + [ + 6.6079375, + 50.017544701 + ], + [ + 6.6067736, + 50.017440201 + ], + [ + 6.6060413, + 50.017380001 + ], + [ + 6.6049724, + 50.017306201 + ], + [ + 6.6036052, + 50.017222401 + ], + [ + 6.602351, + 50.017172501 + ], + [ + 6.6007597, + 50.017124201 + ], + [ + 6.5995061, + 50.017114001 + ], + [ + 6.5981958, + 50.017122201 + ], + [ + 6.5970291, + 50.017143201 + ], + [ + 6.5955035, + 50.017196801 + ], + [ + 6.5942753, + 50.017257801 + ], + [ + 6.5928246, + 50.017354301 + ], + [ + 6.5914303, + 50.017469801 + ], + [ + 6.5902539, + 50.017584801 + ], + [ + 6.5889799, + 50.017733101 + ], + [ + 6.587656, + 50.017896401 + ], + [ + 6.586173, + 50.018103501 + ], + [ + 6.584658, + 50.018328401 + ], + [ + 6.5788702, + 50.019228001 + ], + [ + 6.5701134, + 50.020577401 + ], + [ + 6.5652751, + 50.021333601 + ], + [ + 6.5633605, + 50.021625301 + ], + [ + 6.5618145, + 50.021881101 + ], + [ + 6.5608929, + 50.022067401 + ], + [ + 6.5601287, + 50.022254101 + ], + [ + 6.5594273, + 50.022459401 + ], + [ + 6.5587512, + 50.022691001 + ], + [ + 6.5581164, + 50.022934801 + ], + [ + 6.5574755, + 50.023209001 + ], + [ + 6.5569442, + 50.023464101 + ], + [ + 6.5564038, + 50.023752901 + ], + [ + 6.5559353, + 50.024024701 + ], + [ + 6.55541, + 50.024367001 + ], + [ + 6.5549153, + 50.024719901 + ], + [ + 6.5544695, + 50.025075901 + ], + [ + 6.5540602, + 50.025452901 + ], + [ + 6.5536803, + 50.025821901 + ], + [ + 6.5533274, + 50.026205501 + ], + [ + 6.5519216, + 50.027800801 + ], + [ + 6.5512252, + 50.028551201 + ], + [ + 6.5506229, + 50.029150601 + ], + [ + 6.550012, + 50.029723201 + ], + [ + 6.5491646, + 50.030444901 + ], + [ + 6.5485025, + 50.030983001 + ], + [ + 6.5478576, + 50.031471801 + ], + [ + 6.5470801, + 50.032016101 + ], + [ + 6.546352, + 50.032510301 + ], + [ + 6.5454793, + 50.033041901 + ], + [ + 6.5446024, + 50.033546201 + ], + [ + 6.5442411, + 50.033743901 + ], + [ + 6.5434524, + 50.034154401 + ], + [ + 6.5418968, + 50.034898801 + ], + [ + 6.5410137, + 50.035283201 + ], + [ + 6.5400143, + 50.035683801 + ], + [ + 6.5387186, + 50.036159701 + ], + [ + 6.5378031, + 50.036473801 + ], + [ + 6.5369607, + 50.036737201 + ], + [ + 6.5359996, + 50.037012601 + ], + [ + 6.5348153, + 50.037326601 + ], + [ + 6.5339431, + 50.037532801 + ], + [ + 6.5333813, + 50.037656901 + ], + [ + 6.5319944, + 50.037939201 + ], + [ + 6.5309243, + 50.038123701 + ], + [ + 6.5288399, + 50.038424101 + ], + [ + 6.5270527, + 50.038606001 + ], + [ + 6.525425, + 50.038742001 + ], + [ + 6.5215591, + 50.039005101 + ], + [ + 6.5195948, + 50.039166201 + ], + [ + 6.5180393, + 50.039318701 + ], + [ + 6.5168084, + 50.039465901 + ], + [ + 6.5155845, + 50.039635601 + ], + [ + 6.5143687, + 50.039827801 + ], + [ + 6.5129861, + 50.040080701 + ], + [ + 6.5120909, + 50.040250201 + ], + [ + 6.5110304, + 50.040479301 + ], + [ + 6.5099808, + 50.040728401 + ], + [ + 6.508943, + 50.040997201 + ], + [ + 6.507918, + 50.041285401 + ], + [ + 6.5069067, + 50.041592901 + ], + [ + 6.5059098, + 50.041919301 + ], + [ + 6.5049283, + 50.042264301 + ], + [ + 6.5039629, + 50.042627701 + ], + [ + 6.503056, + 50.042985701 + ], + [ + 6.5014385, + 50.043670801 + ], + [ + 6.5003894, + 50.044148901 + ], + [ + 6.499008, + 50.044828201 + ], + [ + 6.4971449, + 50.045854701 + ], + [ + 6.495747, + 50.046697301 + ], + [ + 6.4949297, + 50.047229501 + ], + [ + 6.4926643, + 50.048901701 + ], + [ + 6.4913991, + 50.049964201 + ], + [ + 6.4905698, + 50.050699001 + ], + [ + 6.4894451, + 50.051759001 + ], + [ + 6.488671, + 50.052570401 + ], + [ + 6.4879859, + 50.053269501 + ], + [ + 6.4863925, + 50.054895601 + ], + [ + 6.4838726, + 50.057507301 + ], + [ + 6.4830566, + 50.058359501 + ], + [ + 6.4816917, + 50.059774001 + ], + [ + 6.4762822, + 50.065387901 + ], + [ + 6.4743962, + 50.067352701 + ], + [ + 6.4720808, + 50.069758201 + ], + [ + 6.4709191, + 50.070985501 + ], + [ + 6.4689002, + 50.073208101 + ], + [ + 6.4680271, + 50.074237701 + ], + [ + 6.4661106, + 50.076579401 + ], + [ + 6.4643989, + 50.078773901 + ], + [ + 6.4630318, + 50.080690501 + ], + [ + 6.4620946, + 50.082069201 + ], + [ + 6.4610775, + 50.083585801 + ], + [ + 6.4603807, + 50.084608501 + ], + [ + 6.459661, + 50.085460101 + ], + [ + 6.4588349, + 50.086398001 + ], + [ + 6.458339, + 50.086889401 + ], + [ + 6.457632, + 50.087525101 + ], + [ + 6.4561865, + 50.088695701 + ], + [ + 6.4546733, + 50.089728201 + ], + [ + 6.4530052, + 50.090732801 + ], + [ + 6.4516914, + 50.091510501 + ], + [ + 6.4506053, + 50.092202801 + ], + [ + 6.4498851, + 50.092697101 + ], + [ + 6.44932, + 50.093125101 + ], + [ + 6.4490351, + 50.093360401 + ], + [ + 6.4485776, + 50.093752601 + ], + [ + 6.44826, + 50.094053101 + ], + [ + 6.4480442, + 50.094273101 + ], + [ + 6.4477435, + 50.094613001 + ], + [ + 6.4475855, + 50.094805701 + ], + [ + 6.4472677, + 50.095234701 + ], + [ + 6.4470008, + 50.095641501 + ], + [ + 6.4467028, + 50.096192201 + ], + [ + 6.4465204, + 50.096588301 + ], + [ + 6.4463567, + 50.097035101 + ], + [ + 6.4462736, + 50.097293701 + ], + [ + 6.4462119, + 50.097495001 + ], + [ + 6.4461297, + 50.097800801 + ], + [ + 6.4460563, + 50.098135601 + ], + [ + 6.4457588, + 50.099479901 + ], + [ + 6.4456406, + 50.099905501 + ], + [ + 6.4454853, + 50.100426001 + ], + [ + 6.4453295, + 50.100844901 + ], + [ + 6.4451357, + 50.101293401 + ], + [ + 6.4449057, + 50.101739601 + ], + [ + 6.444616, + 50.102200601 + ], + [ + 6.4443488, + 50.102564001 + ], + [ + 6.4440045, + 50.103000601 + ], + [ + 6.4436209, + 50.103434201 + ], + [ + 6.4432159, + 50.103876301 + ], + [ + 6.4421247, + 50.104987801 + ], + [ + 6.4411469, + 50.106068401 + ], + [ + 6.4406917, + 50.106598801 + ], + [ + 6.4404679, + 50.106873701 + ], + [ + 6.440208, + 50.107206901 + ], + [ + 6.4399748, + 50.107535401 + ], + [ + 6.4397515, + 50.107873001 + ], + [ + 6.4395082, + 50.108272501 + ], + [ + 6.4392882, + 50.108703101 + ], + [ + 6.4388387, + 50.109645201 + ], + [ + 6.438085, + 50.111475201 + ], + [ + 6.4373575, + 50.113677801 + ], + [ + 6.4369744, + 50.114769901 + ], + [ + 6.436762, + 50.115329401 + ], + [ + 6.4365378, + 50.115844801 + ], + [ + 6.4357998, + 50.117391501 + ], + [ + 6.4353433, + 50.118182501 + ], + [ + 6.4348723, + 50.118945301 + ], + [ + 6.4343136, + 50.119687301 + ], + [ + 6.4336897, + 50.120511201 + ], + [ + 6.4326853, + 50.121699001 + ], + [ + 6.4319202, + 50.122536601 + ], + [ + 6.4315311, + 50.122940801 + ], + [ + 6.4307546, + 50.123712801 + ], + [ + 6.4301445, + 50.124247101 + ], + [ + 6.4287963, + 50.125368001 + ], + [ + 6.4282846, + 50.125784301 + ], + [ + 6.4277154, + 50.126234101 + ], + [ + 6.4271361, + 50.126650201 + ], + [ + 6.4268183, + 50.126861901 + ], + [ + 6.4262411, + 50.127245001 + ], + [ + 6.4256769, + 50.127606201 + ], + [ + 6.4251028, + 50.127960901 + ], + [ + 6.424519, + 50.128309001 + ], + [ + 6.4239256, + 50.128650401 + ], + [ + 6.4233229, + 50.128985101 + ], + [ + 6.4222957, + 50.129528601 + ], + [ + 6.4211178, + 50.130113001 + ], + [ + 6.419268, + 50.130953901 + ], + [ + 6.4177778, + 50.131633201 + ], + [ + 6.4163251, + 50.132305101 + ], + [ + 6.4149722, + 50.132969101 + ], + [ + 6.4143151, + 50.133319801 + ], + [ + 6.4136863, + 50.133669701 + ], + [ + 6.4129499, + 50.134115901 + ], + [ + 6.4122256, + 50.134573001 + ], + [ + 6.4114317, + 50.135142301 + ], + [ + 6.4109382, + 50.135511901 + ], + [ + 6.4103947, + 50.135937701 + ], + [ + 6.4097822, + 50.136471201 + ], + [ + 6.4093718, + 50.136834001 + ], + [ + 6.4087825, + 50.137419201 + ], + [ + 6.4082954, + 50.137936401 + ], + [ + 6.4078671, + 50.138424201 + ], + [ + 6.4074341, + 50.138955601 + ], + [ + 6.4069283, + 50.139639601 + ], + [ + 6.4064908, + 50.140306601 + ], + [ + 6.4059642, + 50.141226801 + ], + [ + 6.4056838, + 50.141786701 + ], + [ + 6.4054179, + 50.142381701 + ], + [ + 6.4051822, + 50.142990001 + ], + [ + 6.4049676, + 50.143627701 + ], + [ + 6.4048067, + 50.144201801 + ], + [ + 6.4046197, + 50.144913701 + ], + [ + 6.4042193, + 50.146556701 + ], + [ + 6.4039993, + 50.147383401 + ], + [ + 6.4038277, + 50.147942001 + ], + [ + 6.4036446, + 50.148480701 + ], + [ + 6.4035901, + 50.148613101 + ], + [ + 6.4034367, + 50.148984001 + ], + [ + 6.4032832, + 50.149354801 + ], + [ + 6.4030713, + 50.149808601 + ], + [ + 6.4027549, + 50.150402701 + ], + [ + 6.4024552, + 50.150922501 + ], + [ + 6.4020842, + 50.151496301 + ], + [ + 6.4017811, + 50.151924301 + ], + [ + 6.401481, + 50.152334701 + ], + [ + 6.4012766, + 50.152588101 + ], + [ + 6.4006922, + 50.153290601 + ], + [ + 6.4001074, + 50.153957401 + ], + [ + 6.3989273, + 50.155248001 + ], + [ + 6.3977491, + 50.156531301 + ], + [ + 6.397275, + 50.157078201 + ], + [ + 6.3968083, + 50.157641801 + ], + [ + 6.3963228, + 50.158253601 + ], + [ + 6.3958533, + 50.158874401 + ], + [ + 6.395283, + 50.159670701 + ], + [ + 6.3952124, + 50.159769301 + ], + [ + 6.3948212, + 50.160344601 + ], + [ + 6.3945419, + 50.160782201 + ], + [ + 6.3943334, + 50.161119901 + ], + [ + 6.3938109, + 50.161995101 + ], + [ + 6.3933134, + 50.162924001 + ], + [ + 6.3928696, + 50.163809201 + ], + [ + 6.3925091, + 50.164601701 + ], + [ + 6.3922455, + 50.165219801 + ], + [ + 6.3919956, + 50.165853301 + ], + [ + 6.3917386, + 50.166561201 + ], + [ + 6.3915021, + 50.167282101 + ], + [ + 6.3913239, + 50.167879301 + ], + [ + 6.3911659, + 50.168473501 + ], + [ + 6.3910197, + 50.169071201 + ], + [ + 6.3908838, + 50.169668401 + ], + [ + 6.3906342, + 50.170916301 + ], + [ + 6.3905644, + 50.171362001 + ], + [ + 6.3902751, + 50.173130801 + ], + [ + 6.3901639, + 50.173860801 + ], + [ + 6.390002, + 50.174979601 + ], + [ + 6.3897746, + 50.176516501 + ], + [ + 6.3896396, + 50.177220601 + ], + [ + 6.3894452, + 50.178254101 + ], + [ + 6.3892272, + 50.179260501 + ], + [ + 6.3890822, + 50.179898101 + ], + [ + 6.3889541, + 50.180394601 + ], + [ + 6.388717, + 50.181244801 + ], + [ + 6.3884695, + 50.182008501 + ], + [ + 6.3882168, + 50.182718101 + ], + [ + 6.3879302, + 50.183459501 + ], + [ + 6.3876244, + 50.184216901 + ], + [ + 6.3874686, + 50.184547901 + ], + [ + 6.3871467, + 50.185162701 + ], + [ + 6.3870461, + 50.185344001 + ], + [ + 6.3868976, + 50.185540301 + ], + [ + 6.3866879, + 50.185907801 + ], + [ + 6.386435, + 50.186316101 + ], + [ + 6.386326778, + 50.186478313 + ] + ] + } + }, + { + "identifier": "2026-016736--vi-bs.2026-04-15_20-00-00-000.devi-zus.2026-04-15_20-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.9351912255081,7.9411772841414665,49.927488799972195,7.939523157065868", + "point": "49.9351912255081,7.9411772841414665", + "startLcPosition": "18", + "impact": { + "lower": "Anschluss Nahetal", + "upper": "Bingen-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mainz -> Bingen", + "title": "A60 | Bingen-Ost - Anschluss Nahetal", + "coordinate": { + "lat": 49.9351912255081, + "long": 7.9411772841414665 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A60: Mainz -> Bingen, zwischen 2.2 km hinter AS Bingen-Ost und Anschluss Nahetal", + "", + "L\u00e4nge: 0.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A60 von Nahetal (AD) Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.941177284, + 49.935191226 + ], + [ + 7.9411768, + 49.935028001 + ], + [ + 7.9411552, + 49.934585101 + ], + [ + 7.9411322, + 49.934321001 + ], + [ + 7.9410128, + 49.933215801 + ], + [ + 7.9409574, + 49.932809301 + ], + [ + 7.9408806, + 49.932413901 + ], + [ + 7.9407706, + 49.931821901 + ], + [ + 7.9407118, + 49.931571301 + ], + [ + 7.9403814, + 49.929977801 + ], + [ + 7.9402045, + 49.929412301 + ], + [ + 7.9400427, + 49.928935301 + ], + [ + 7.9399999, + 49.928822001 + ], + [ + 7.9397227, + 49.928006101 + ], + [ + 7.939523157, + 49.9274888 + ] + ] + } + }, + { + "identifier": "2026-013346--vi-bs.2026-04-20_09-30-00-000.devi-bs.2026-04-20_09-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.99309366342206,8.081414409616373,49.99505695754545,8.09050237202156", + "point": "49.99309366342206,8.081414409616373", + "startLcPosition": "19", + "impact": { + "lower": "Ingelheim-Ost", + "upper": "Ingelheim-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bingen -> Mainz", + "title": "A60 | Ingelheim-West - Ingelheim-Ost", + "coordinate": { + "lat": 49.99309366342206, + "long": 8.081414409616373 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 09:30 bis 11:00 Uhr", + "", + "A60: Bingen -> Mainz, zwischen 4.3 km hinter AS Ingelheim-West und AS Ingelheim-Ost", + "", + "L\u00e4nge: 0.69 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A60 von Ingelheim-West (AS) nach Ingelheim-Ost (AS) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.08141441, + 49.993093663 + ], + [ + 8.0819875, + 49.993216801 + ], + [ + 8.0851339, + 49.993903101 + ], + [ + 8.086526, + 49.994198601 + ], + [ + 8.0885687, + 49.994636201 + ], + [ + 8.090502372, + 49.995056958 + ] + ] + } + }, + { + "identifier": "2026-016599--vi-fbm.2026-04-20_09-30-00-000.devi-zus.2026-04-20_09-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.99224046920323,8.077444027119832,49.99366571266893,8.084045519238781", + "point": "49.99224046920323,8.077444027119832", + "startLcPosition": "19", + "impact": { + "lower": "Ingelheim-Ost", + "upper": "Ingelheim-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bingen -> Mainz", + "title": "A60 | Ingelheim-West - Ingelheim-Ost", + "coordinate": { + "lat": 49.99224046920323, + "long": 8.077444027119832 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 09:30 bis 11:00 Uhr", + "", + "A60: Bingen -> Mainz, zwischen 4.0 km hinter AS Ingelheim-West und 0.5 km vor AS Ingelheim-Ost", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A60 von Ingelheim-West (AS) nach Ingelheim-Ost (AS) Auf- oder Abbau Verkehrsf\u00fchrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.077444027, + 49.992240469 + ], + [ + 8.0819875, + 49.993216801 + ], + [ + 8.084045519, + 49.993665713 + ] + ] + } + }, + { + "identifier": "2026-016598--vi-fbm.2026-04-20_09-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.99224046920323,8.077444027119832,49.99366571266893,8.084045519238781", + "point": "49.99224046920323,8.077444027119832", + "startLcPosition": "19", + "impact": { + "lower": "Ingelheim-Ost", + "upper": "Ingelheim-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bingen -> Mainz", + "title": "A60 | Ingelheim-West - Ingelheim-Ost", + "coordinate": { + "lat": 49.99224046920323, + "long": 8.077444027119832 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 09:30 bis 11:00 Uhr", + "", + "A60: Bingen -> Mainz, zwischen 4.0 km hinter AS Ingelheim-West und 0.5 km vor AS Ingelheim-Ost", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A60 von Ingelheim-West (AS) nach Ingelheim-Ost (AS) Auf- oder Abbau Verkehrsf\u00fchrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.077444027, + 49.992240469 + ], + [ + 8.0819875, + 49.993216801 + ], + [ + 8.084045519, + 49.993665713 + ] + ] + } + }, + { + "identifier": "2026-015183--vi-bs.2026-04-09_19-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.99988465238866,8.105201932552266,50.002457285905024,8.112436192924777", + "point": "49.99988465238866,8.105201932552266", + "startLcPosition": "20", + "impact": { + "lower": "Heidesheim", + "upper": "Ingelheim-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bingen -> Mainz", + "title": "A60 | Ingelheim-Ost - Heidesheim", + "coordinate": { + "lat": 49.99988465238866, + "long": 8.105201932552266 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A60: Bingen -> Mainz, zwischen 1.2 km hinter AS Ingelheim-Ost und 1.4 km vor AS Heidesheim", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A60 von Ingelheim-Ost (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.105201933, + 49.999884652 + ], + [ + 8.1056441, + 50.000072601 + ], + [ + 8.1065857, + 50.000476501 + ], + [ + 8.1068914, + 50.000603901 + ], + [ + 8.1083097, + 50.001206301 + ], + [ + 8.1089514, + 50.001469001 + ], + [ + 8.109623, + 50.001717701 + ], + [ + 8.1102834, + 50.001932101 + ], + [ + 8.1109591, + 50.002125701 + ], + [ + 8.1116486, + 50.002298101 + ], + [ + 8.112436193, + 50.002457286 + ] + ] + } + }, + { + "identifier": "2026-013346--vi-bs.2026-04-20_11-30-00-000.devi-bs.2026-04-20_09-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.00061827740363,8.147979543039378,49.99929443902185,8.139873435594826", + "point": "50.00061827740363,8.147979543039378", + "startLcPosition": "24", + "impact": { + "lower": "Heidesheim", + "upper": "Mainz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mainz -> Bingen", + "title": "A60 | Mainz - Heidesheim", + "coordinate": { + "lat": 50.00061827740363, + "long": 8.147979543039378 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 11:30 bis 14:00 Uhr", + "", + "A60: Mainz -> Bingen, zwischen 2.2 km hinter AD Mainz und 0.6 km vor AS Heidesheim", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A60 von Ingelheim-West (AS) nach Ingelheim-Ost (AS) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.147979543, + 50.000618277 + ], + [ + 8.1476846, + 50.000591601 + ], + [ + 8.1469604, + 50.000515701 + ], + [ + 8.146518, + 50.000460001 + ], + [ + 8.1460511, + 50.000400501 + ], + [ + 8.1453028, + 50.000301901 + ], + [ + 8.1443849, + 50.000157201 + ], + [ + 8.1436586, + 50.000034701 + ], + [ + 8.1429308, + 49.999895401 + ], + [ + 8.1403595, + 49.999386401 + ], + [ + 8.139873436, + 49.999294439 + ] + ] + } + }, + { + "identifier": "2026-016599--vi-fbm.2026-04-20_11-30-00-000.devi-zus.2026-04-20_09-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.00061827740363,8.147979543039378,49.99955693519054,8.141220944689499", + "point": "50.00061827740363,8.147979543039378", + "startLcPosition": "24", + "impact": { + "lower": "Heidesheim", + "upper": "Mainz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mainz -> Bingen", + "title": "A60 | Mainz - Heidesheim", + "coordinate": { + "lat": 50.00061827740363, + "long": 8.147979543039378 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 11:30 bis 14:00 Uhr", + "", + "A60: Mainz -> Bingen, zwischen 2.2 km hinter AD Mainz und 0.7 km vor AS Heidesheim", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A60 von Ingelheim-West (AS) nach Ingelheim-Ost (AS) Auf- oder Abbau Verkehrsf\u00fchrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.147979543, + 50.000618277 + ], + [ + 8.1476846, + 50.000591601 + ], + [ + 8.1469604, + 50.000515701 + ], + [ + 8.146518, + 50.000460001 + ], + [ + 8.1460511, + 50.000400501 + ], + [ + 8.1453028, + 50.000301901 + ], + [ + 8.1443849, + 50.000157201 + ], + [ + 8.1436586, + 50.000034701 + ], + [ + 8.1429308, + 49.999895401 + ], + [ + 8.141220945, + 49.999556935 + ] + ] + } + }, + { + "identifier": "2026-016628--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.964627651553535,8.233742166773148,49.9645356323958,8.242686270199576", + "point": "49.964627651553535,8.233742166773148", + "startLcPosition": "26", + "impact": { + "lower": "Hechtsheim-West", + "upper": "Mainz-Lerchenberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bingen -> R\u00fcsselsheim", + "title": "A60 | Mainz-Lerchenberg - Hechtsheim-West", + "coordinate": { + "lat": 49.964627651553535, + "long": 8.233742166773148 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "", + "A60: Bingen -> R\u00fcsselsheim, zwischen 0.8 km hinter AS Mainz-Lerchenberg und 1.0 km vor AS Hechtsheim-West", + "", + "L\u00e4nge: 0.64 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A60 von Mainz-Lerchenberg (AS) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.233742167, + 49.964627652 + ], + [ + 8.2345577, + 49.964531701 + ], + [ + 8.2348583, + 49.964504301 + ], + [ + 8.2351102, + 49.964482901 + ], + [ + 8.2353462, + 49.964458001 + ], + [ + 8.2357618, + 49.964400701 + ], + [ + 8.2360825, + 49.964365501 + ], + [ + 8.2367246, + 49.964317001 + ], + [ + 8.2374166, + 49.964292901 + ], + [ + 8.2383261, + 49.964269501 + ], + [ + 8.2396677, + 49.964291401 + ], + [ + 8.239909, + 49.964299301 + ], + [ + 8.2405956, + 49.964318301 + ], + [ + 8.2412168, + 49.964353301 + ], + [ + 8.2415366, + 49.964376501 + ], + [ + 8.2419133, + 49.964411201 + ], + [ + 8.2420646, + 49.964433101 + ], + [ + 8.2422432, + 49.964461601 + ], + [ + 8.2424046, + 49.964494701 + ], + [ + 8.2425906, + 49.964521501 + ], + [ + 8.24268627, + 49.964535632 + ] + ] + } + }, + { + "identifier": "2026-012747--vi-bs.2026-04-20_20-00-00-000.devi-bs.2026-04-20_20-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.97046331192547,8.26446704500973,49.974031049570264,8.276893247256583", + "point": "49.97046331192547,8.26446704500973", + "startLcPosition": "28", + "impact": { + "lower": "Hechtsheim", + "upper": "Hechtsheim-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mainz -> R\u00fcsselsheim", + "title": "A60 | Hechtsheim-West - Hechtsheim", + "coordinate": { + "lat": 49.97046331192547, + "long": 8.26446704500973 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 20:00 bis zum 23.04.26 05:00 Uhr.", + "", + "A60: Mainz -> R\u00fcsselsheim, zwischen 0.7 km hinter AS Hechtsheim-West und 0.2 km vor Hechtsheim", + "", + "L\u00e4nge: 0.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A60 von Hechtsheim-West (AS) nach Hechtsheim (Tunnel) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.264467045, + 49.970463312 + ], + [ + 8.2659682, + 49.970916601 + ], + [ + 8.2691137, + 49.971864301 + ], + [ + 8.2697779, + 49.972062001 + ], + [ + 8.2711962, + 49.972471701 + ], + [ + 8.2714704, + 49.972553601 + ], + [ + 8.2723823, + 49.972826001 + ], + [ + 8.2734364, + 49.973140901 + ], + [ + 8.2743609, + 49.973417001 + ], + [ + 8.2751418, + 49.973630401 + ], + [ + 8.2757649, + 49.973787001 + ], + [ + 8.2762549, + 49.973899501 + ], + [ + 8.2768668, + 49.974025801 + ], + [ + 8.276893247, + 49.97403105 + ] + ] + } + }, + { + "identifier": "2026-012747--vi-bs.2026-04-20_20-00-00-000.devi-bs.2026-04-20_20-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.97046331192547,8.26446704500973,49.974031049570264,8.276893247256583", + "point": "49.97046331192547,8.26446704500973", + "startLcPosition": "28", + "impact": { + "lower": "Hechtsheim", + "upper": "Hechtsheim-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mainz -> R\u00fcsselsheim", + "title": "A60 | Hechtsheim-West - Hechtsheim", + "coordinate": { + "lat": 49.97046331192547, + "long": 8.26446704500973 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "", + "A60: Mainz -> R\u00fcsselsheim, zwischen 0.7 km hinter AS Hechtsheim-West und 0.2 km vor Hechtsheim", + "", + "L\u00e4nge: 0.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A60 von Hechtsheim-West (AS) nach Hechtsheim (Tunnel) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.264467045, + 49.970463312 + ], + [ + 8.2659682, + 49.970916601 + ], + [ + 8.2691137, + 49.971864301 + ], + [ + 8.2697779, + 49.972062001 + ], + [ + 8.2711962, + 49.972471701 + ], + [ + 8.2714704, + 49.972553601 + ], + [ + 8.2723823, + 49.972826001 + ], + [ + 8.2734364, + 49.973140901 + ], + [ + 8.2743609, + 49.973417001 + ], + [ + 8.2751418, + 49.973630401 + ], + [ + 8.2757649, + 49.973787001 + ], + [ + 8.2762549, + 49.973899501 + ], + [ + 8.2768668, + 49.974025801 + ], + [ + 8.276893247, + 49.97403105 + ] + ] + } + }, + { + "identifier": "2026-012747--vi-bs.2026-04-20_20-00-00-000.devi-bs.2026-04-20_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.97046331192547,8.26446704500973,49.974031049570264,8.276893247256583", + "point": "49.97046331192547,8.26446704500973", + "startLcPosition": "28", + "impact": { + "lower": "Hechtsheim", + "upper": "Hechtsheim-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mainz -> R\u00fcsselsheim", + "title": "A60 | Hechtsheim-West - Hechtsheim", + "coordinate": { + "lat": 49.97046331192547, + "long": 8.26446704500973 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 00:30 Uhr.", + "", + "A60: Mainz -> R\u00fcsselsheim, zwischen 0.7 km hinter AS Hechtsheim-West und 0.2 km vor Hechtsheim", + "", + "L\u00e4nge: 0.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A60 von Hechtsheim-West (AS) nach Hechtsheim (Tunnel) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.264467045, + 49.970463312 + ], + [ + 8.2659682, + 49.970916601 + ], + [ + 8.2691137, + 49.971864301 + ], + [ + 8.2697779, + 49.972062001 + ], + [ + 8.2711962, + 49.972471701 + ], + [ + 8.2714704, + 49.972553601 + ], + [ + 8.2723823, + 49.972826001 + ], + [ + 8.2734364, + 49.973140901 + ], + [ + 8.2743609, + 49.973417001 + ], + [ + 8.2751418, + 49.973630401 + ], + [ + 8.2757649, + 49.973787001 + ], + [ + 8.2762549, + 49.973899501 + ], + [ + 8.2768668, + 49.974025801 + ], + [ + 8.276893247, + 49.97403105 + ] + ] + } + }, + { + "identifier": "2026-012747--vi-bs.2026-04-20_20-00-00-000.devi-bs.2026-04-20_20-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.97415722538092,8.276847823282322,49.970552976608694,8.264402045351014", + "point": "49.97415722538092,8.276847823282322", + "startLcPosition": "30", + "impact": { + "lower": "Hechtsheim-West", + "upper": "Hechtsheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " R\u00fcsselsheim -> Mainz", + "title": "A60 | Hechtsheim - Hechtsheim-West", + "coordinate": { + "lat": 49.97415722538092, + "long": 8.276847823282322 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 20:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A60: R\u00fcsselsheim -> Mainz, zwischen 0.2 km hinter Hechtsheim und 0.7 km vor AS Hechtsheim-West", + "", + "L\u00e4nge: 0.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A60 von Hechtsheim-West (AS) nach Hechtsheim (Tunnel) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.276847823, + 49.974157225 + ], + [ + 8.276796, + 49.974147001 + ], + [ + 8.2763757, + 49.974063201 + ], + [ + 8.2752422, + 49.973791501 + ], + [ + 8.274216, + 49.973507801 + ], + [ + 8.2724651, + 49.972987301 + ], + [ + 8.2693724, + 49.972054701 + ], + [ + 8.2670678, + 49.971352001 + ], + [ + 8.2646379, + 49.970624001 + ], + [ + 8.264402045, + 49.970552977 + ] + ] + } + }, + { + "identifier": "2026-012747--vi-bs.2026-04-20_20-00-00-000.devi-bs.2026-04-20_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.97415722538092,8.276847823282322,49.970552976608694,8.264402045351014", + "point": "49.97415722538092,8.276847823282322", + "startLcPosition": "30", + "impact": { + "lower": "Hechtsheim-West", + "upper": "Hechtsheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " R\u00fcsselsheim -> Mainz", + "title": "A60 | Hechtsheim - Hechtsheim-West", + "coordinate": { + "lat": 49.97415722538092, + "long": 8.276847823282322 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 00:00 bis 05:00 Uhr", + "", + "A60: R\u00fcsselsheim -> Mainz, zwischen 0.2 km hinter Hechtsheim und 0.7 km vor AS Hechtsheim-West", + "", + "L\u00e4nge: 0.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A60 von Hechtsheim-West (AS) nach Hechtsheim (Tunnel) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.276847823, + 49.974157225 + ], + [ + 8.276796, + 49.974147001 + ], + [ + 8.2763757, + 49.974063201 + ], + [ + 8.2752422, + 49.973791501 + ], + [ + 8.274216, + 49.973507801 + ], + [ + 8.2724651, + 49.972987301 + ], + [ + 8.2693724, + 49.972054701 + ], + [ + 8.2670678, + 49.971352001 + ], + [ + 8.2646379, + 49.970624001 + ], + [ + 8.264402045, + 49.970552977 + ] + ] + } + }, + { + "identifier": "2023-001484--vi-bs.2026-04-13_20-00-00-000.devi-zus.2025-04-01_05-00-00-000.f_001.de43", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.982118779632394,8.337910637799695,49.9755264585647,8.440305680713697", + "point": "49.982118779632394,8.337910637799695", + "startLcPosition": "33", + "impact": { + "lower": "R\u00fcsselsheimer Dreieck", + "upper": "Ginsheim-Gustavsburg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Mainz -> R\u00fcsselsheim", + "title": "A60 | Ginsheim-Gustavsburg - R\u00fcsselsheimer Dreieck", + "startTimestamp": "2026-04-13T20:00:00+02:00", + "coordinate": { + "lat": 49.982118779632394, + "long": 8.337910637799695 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 20:00 Uhr", + "Ende: 16.08.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.11.26)", + "", + "A60: Mainz -> R\u00fcsselsheim, zwischen 0.5 km hinter AS Ginsheim-Gustavsburg und 2.3 km vor AD R\u00fcsselsheimer Dreieck", + "", + "L\u00e4nge: 7.62 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A60 GE zw. R\u00fcsselsheimer Dr. u. Mainspitz Dr." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.337910638, + 49.98211878 + ], + [ + 8.3381845, + 49.982170901 + ], + [ + 8.3385549, + 49.982229501 + ], + [ + 8.3389291, + 49.982276801 + ], + [ + 8.3393065, + 49.982311901 + ], + [ + 8.3396854, + 49.982339601 + ], + [ + 8.340066, + 49.982355801 + ], + [ + 8.3404473, + 49.982353201 + ], + [ + 8.340848, + 49.982345801 + ], + [ + 8.3412481, + 49.982330001 + ], + [ + 8.3416664, + 49.982304501 + ], + [ + 8.3420831, + 49.982269801 + ], + [ + 8.3423629, + 49.982234901 + ], + [ + 8.3426406, + 49.982193301 + ], + [ + 8.3429157, + 49.982145201 + ], + [ + 8.3431878, + 49.982090501 + ], + [ + 8.343494, + 49.982020401 + ], + [ + 8.3437953, + 49.981941901 + ], + [ + 8.3440912, + 49.981855401 + ], + [ + 8.3443812, + 49.981760901 + ], + [ + 8.344939, + 49.981564101 + ], + [ + 8.3454239, + 49.981374501 + ], + [ + 8.3458729, + 49.981175801 + ], + [ + 8.3462248, + 49.981010501 + ], + [ + 8.3465662, + 49.980845901 + ], + [ + 8.3469337, + 49.980651501 + ], + [ + 8.3475574, + 49.980305101 + ], + [ + 8.3479822, + 49.980054201 + ], + [ + 8.3487609, + 49.979604901 + ], + [ + 8.3493637, + 49.979233401 + ], + [ + 8.349957, + 49.978877401 + ], + [ + 8.3504266, + 49.978603201 + ], + [ + 8.3509992, + 49.978307601 + ], + [ + 8.3515311, + 49.978032301 + ], + [ + 8.3518734, + 49.977865701 + ], + [ + 8.3522211, + 49.977703701 + ], + [ + 8.3525738, + 49.977546401 + ], + [ + 8.3529316, + 49.977393901 + ], + [ + 8.3533314, + 49.977231301 + ], + [ + 8.3537368, + 49.977074701 + ], + [ + 8.3541478, + 49.976924101 + ], + [ + 8.3545639, + 49.976779601 + ], + [ + 8.3549851, + 49.976641301 + ], + [ + 8.3554111, + 49.976509101 + ], + [ + 8.355908, + 49.976365301 + ], + [ + 8.3564091, + 49.976227601 + ], + [ + 8.3569143, + 49.976096101 + ], + [ + 8.3574232, + 49.975970901 + ], + [ + 8.3579358, + 49.975852101 + ], + [ + 8.3584519, + 49.975739601 + ], + [ + 8.3602033, + 49.975381701 + ], + [ + 8.3633253, + 49.974801301 + ], + [ + 8.364788, + 49.974569401 + ], + [ + 8.3664902, + 49.974317701 + ], + [ + 8.3680183, + 49.974111101 + ], + [ + 8.3692396, + 49.973956801 + ], + [ + 8.3704011, + 49.973818301 + ], + [ + 8.3723879, + 49.973615701 + ], + [ + 8.3736111, + 49.973500001 + ], + [ + 8.3752205, + 49.973377401 + ], + [ + 8.3764199, + 49.973293001 + ], + [ + 8.3789015, + 49.973172101 + ], + [ + 8.380256, + 49.973111501 + ], + [ + 8.3821816, + 49.973068501 + ], + [ + 8.3831561, + 49.973050101 + ], + [ + 8.385145, + 49.973050101 + ], + [ + 8.387414, + 49.973080801 + ], + [ + 8.3900599, + 49.973162601 + ], + [ + 8.3913079, + 49.973228201 + ], + [ + 8.3922511, + 49.973280901 + ], + [ + 8.3931849, + 49.973337101 + ], + [ + 8.3937338, + 49.973377601 + ], + [ + 8.3956415, + 49.973526401 + ], + [ + 8.3975936, + 49.973702801 + ], + [ + 8.3977933, + 49.973718001 + ], + [ + 8.3993073, + 49.973862701 + ], + [ + 8.400766, + 49.974011801 + ], + [ + 8.4029717, + 49.974224401 + ], + [ + 8.4046809, + 49.974380701 + ], + [ + 8.4066285, + 49.974532701 + ], + [ + 8.4076858, + 49.974600301 + ], + [ + 8.4087377, + 49.974656001 + ], + [ + 8.410079, + 49.974725401 + ], + [ + 8.4115564, + 49.974772301 + ], + [ + 8.4125726, + 49.974790501 + ], + [ + 8.4145135, + 49.974811801 + ], + [ + 8.4154432, + 49.974808501 + ], + [ + 8.4177282, + 49.974773201 + ], + [ + 8.4200222, + 49.974726101 + ], + [ + 8.4233959, + 49.974648201 + ], + [ + 8.4253757, + 49.974632801 + ], + [ + 8.4266163, + 49.974626401 + ], + [ + 8.4280953, + 49.974641101 + ], + [ + 8.4295776, + 49.974671001 + ], + [ + 8.4300816, + 49.974691901 + ], + [ + 8.4307997, + 49.974716501 + ], + [ + 8.431545, + 49.974756201 + ], + [ + 8.4325328, + 49.974803401 + ], + [ + 8.4333233, + 49.974849301 + ], + [ + 8.4335819, + 49.974864801 + ], + [ + 8.4341202, + 49.974908001 + ], + [ + 8.4349629, + 49.974970401 + ], + [ + 8.4353491, + 49.975002701 + ], + [ + 8.4360981, + 49.975064001 + ], + [ + 8.4364803, + 49.975099901 + ], + [ + 8.4375571, + 49.975208301 + ], + [ + 8.4386191, + 49.975325501 + ], + [ + 8.4391043, + 49.975382401 + ], + [ + 8.439595, + 49.975441201 + ], + [ + 8.440305681, + 49.975526459 + ] + ] + } + }, + { + "identifier": "2026-016889--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.98063154934363,8.346969623652422,49.97965863100454,8.348667779502527", + "point": "49.98063154934363,8.346969623652422", + "startLcPosition": "34", + "impact": { + "lower": "Bischofsheim", + "upper": "Mainspitz-Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mainz -> R\u00fcsselsheim", + "title": "A60 | Mainspitz-Dreieck - Bischofsheim", + "coordinate": { + "lat": 49.98063154934363, + "long": 8.346969623652422 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 21:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A60: Mainz -> R\u00fcsselsheim, zwischen 0.6 km hinter AD Mainspitz-Dreieck und 2.4 km vor AS Bischofsheim", + "", + "L\u00e4nge: 0.16 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A60 von Bischofsheim (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.346969624, + 49.980631549 + ], + [ + 8.3475574, + 49.980305101 + ], + [ + 8.3479822, + 49.980054201 + ], + [ + 8.34866778, + 49.979658631 + ] + ] + } + }, + { + "identifier": "2026-016889--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.98067134417377,8.34689618795407,49.97974855444427,8.348511930883067", + "point": "49.98067134417377,8.34689618795407", + "startLcPosition": "34", + "impact": { + "lower": "Bischofsheim", + "upper": "Mainspitz-Dreieck", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mainz -> R\u00fcsselsheim", + "title": "A60 | Mainspitz-Dreieck - Bischofsheim", + "coordinate": { + "lat": 49.98067134417377, + "long": 8.34689618795407 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A60: Mainz -> R\u00fcsselsheim, zwischen 0.6 km hinter AD Mainspitz-Dreieck und 2.4 km vor AS Bischofsheim", + "", + "L\u00e4nge: 0.16 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A60 von Bischofsheim (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.346896188, + 49.980671344 + ], + [ + 8.3469337, + 49.980651501 + ], + [ + 8.3475574, + 49.980305101 + ], + [ + 8.3479822, + 49.980054201 + ], + [ + 8.348511931, + 49.979748554 + ] + ] + } + }, + { + "identifier": "2023-001484--vi-bs.2026-04-13_20-00-00-000.devi-zus.2025-04-01_05-00-00-000.f_001.de41", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.975647331909784,8.440269537235787,49.98223376538495,8.337855987174512", + "point": "49.975647331909784,8.440269537235787", + "startLcPosition": "38", + "impact": { + "lower": "Ginsheim-Gustavsburg", + "upper": "R\u00fcsselsheimer Dreieck", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " R\u00fcsselsheim -> Mainz", + "title": "A60 | R\u00fcsselsheimer Dreieck - Ginsheim-Gustavsburg", + "startTimestamp": "2026-04-13T20:00:00+02:00", + "coordinate": { + "lat": 49.975647331909784, + "long": 8.440269537235787 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 20:00 Uhr", + "Ende: 16.08.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.11.26)", + "", + "A60: R\u00fcsselsheim -> Mainz, zwischen 1.7 km hinter AD R\u00fcsselsheimer Dreieck und 0.5 km vor AS Ginsheim-Gustavsburg", + "", + "L\u00e4nge: 7.62 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A60 GE zw. R\u00fcsselsheimer Dr. u. Mainspitz Dr." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.440269537, + 49.975647332 + ], + [ + 8.439561, + 49.975556401 + ], + [ + 8.4385955, + 49.975441101 + ], + [ + 8.4380414, + 49.975375701 + ], + [ + 8.4375221, + 49.975318001 + ], + [ + 8.4364482, + 49.975214301 + ], + [ + 8.436092, + 49.975178001 + ], + [ + 8.4353289, + 49.975115101 + ], + [ + 8.4349443, + 49.975082701 + ], + [ + 8.4340119, + 49.975010801 + ], + [ + 8.4335098, + 49.974974601 + ], + [ + 8.4325049, + 49.974918001 + ], + [ + 8.4315296, + 49.974863801 + ], + [ + 8.4307782, + 49.974833701 + ], + [ + 8.4300418, + 49.974803201 + ], + [ + 8.429564, + 49.974783601 + ], + [ + 8.4280861, + 49.974751101 + ], + [ + 8.4266163, + 49.974744801 + ], + [ + 8.4253679, + 49.974741001 + ], + [ + 8.4234091, + 49.974769401 + ], + [ + 8.4200305, + 49.974839401 + ], + [ + 8.4177474, + 49.974891101 + ], + [ + 8.4154733, + 49.974915401 + ], + [ + 8.4143197, + 49.974924201 + ], + [ + 8.4142628, + 49.974924301 + ], + [ + 8.4126785, + 49.974907101 + ], + [ + 8.4115971, + 49.974886901 + ], + [ + 8.4100506, + 49.974831501 + ], + [ + 8.4087223, + 49.974772001 + ], + [ + 8.4076915, + 49.974715901 + ], + [ + 8.4067531, + 49.974649701 + ], + [ + 8.4046704, + 49.974490001 + ], + [ + 8.4029501, + 49.974336401 + ], + [ + 8.4007759, + 49.974123401 + ], + [ + 8.3993021, + 49.973978201 + ], + [ + 8.3978091, + 49.973830601 + ], + [ + 8.3976056, + 49.973812801 + ], + [ + 8.395591, + 49.973629901 + ], + [ + 8.3935619, + 49.973473601 + ], + [ + 8.3929972, + 49.973437401 + ], + [ + 8.3923081, + 49.973390401 + ], + [ + 8.3913109, + 49.973336001 + ], + [ + 8.3900549, + 49.973270401 + ], + [ + 8.3874048, + 49.973190801 + ], + [ + 8.3851323, + 49.973154401 + ], + [ + 8.3831395, + 49.973161701 + ], + [ + 8.3805861, + 49.973214201 + ], + [ + 8.3789092, + 49.973276301 + ], + [ + 8.3783413, + 49.973303101 + ], + [ + 8.3764068, + 49.973408701 + ], + [ + 8.3751008, + 49.973488001 + ], + [ + 8.3749074, + 49.973503501 + ], + [ + 8.3736904, + 49.973599401 + ], + [ + 8.3723643, + 49.973720101 + ], + [ + 8.3704285, + 49.973917601 + ], + [ + 8.3692532, + 49.974058901 + ], + [ + 8.3680399, + 49.974205401 + ], + [ + 8.3665117, + 49.974409901 + ], + [ + 8.3647945, + 49.974671801 + ], + [ + 8.3633879, + 49.974899901 + ], + [ + 8.3602463, + 49.975468501 + ], + [ + 8.3585104, + 49.975830901 + ], + [ + 8.3571528, + 49.976141401 + ], + [ + 8.3564672, + 49.976318901 + ], + [ + 8.3558176, + 49.976496701 + ], + [ + 8.3547951, + 49.976810101 + ], + [ + 8.3539078, + 49.977125901 + ], + [ + 8.3531853, + 49.977400701 + ], + [ + 8.3524372, + 49.977719301 + ], + [ + 8.351636, + 49.978101501 + ], + [ + 8.3510671, + 49.978394901 + ], + [ + 8.3504301, + 49.978743001 + ], + [ + 8.3496093, + 49.979215101 + ], + [ + 8.3488441, + 49.979678101 + ], + [ + 8.3480192, + 49.980175701 + ], + [ + 8.3476301, + 49.980393601 + ], + [ + 8.3473244, + 49.980568401 + ], + [ + 8.3470125, + 49.980738701 + ], + [ + 8.3466946, + 49.980904201 + ], + [ + 8.3463331, + 49.981083201 + ], + [ + 8.3459645, + 49.981256101 + ], + [ + 8.3455891, + 49.981422801 + ], + [ + 8.3451429, + 49.981603801 + ], + [ + 8.3445848, + 49.981809701 + ], + [ + 8.3441744, + 49.981946601 + ], + [ + 8.3438767, + 49.982029201 + ], + [ + 8.3435754, + 49.982106101 + ], + [ + 8.3432708, + 49.982177401 + ], + [ + 8.3428917, + 49.982257101 + ], + [ + 8.3425084, + 49.982328001 + ], + [ + 8.3421949, + 49.982373501 + ], + [ + 8.3418791, + 49.982411401 + ], + [ + 8.3415613, + 49.982441801 + ], + [ + 8.341242, + 49.982464601 + ], + [ + 8.3409216, + 49.982479801 + ], + [ + 8.3406005, + 49.982487401 + ], + [ + 8.3402792, + 49.982487301 + ], + [ + 8.3399581, + 49.982479601 + ], + [ + 8.3396183, + 49.982463001 + ], + [ + 8.3392797, + 49.982437901 + ], + [ + 8.3389429, + 49.982404301 + ], + [ + 8.3386085, + 49.982362201 + ], + [ + 8.3382768, + 49.982311701 + ], + [ + 8.3379485, + 49.982252901 + ], + [ + 8.337855987, + 49.982233765 + ] + ] + } + }, + { + "identifier": "2026-008027--vi-bs.2026-02-23_22-00-00-000.devi-zus.2026-02-23_22-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.17275081936074,6.390337250748584,50.17329841651233,6.390342592089596", + "point": "50.17275081936074,6.390337250748584", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wittlich -> L\u00fcttich", + "title": "A60 von Pr\u00fcm (AS) Sonstiges", + "startTimestamp": "2026-02-23T22:00:00+01:00", + "coordinate": { + "lat": 50.17275081936074, + "long": 6.390337250748584 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.02.26 um 22:00 Uhr", + "Ende: 30.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "Von A60: Wittlich -> L\u00fcttich, zwischen 6.6 km hinter Pr\u00fcmer Land und AS Pr\u00fcm nach Abfahrt von der A60: AS Pr\u00fcm (aus Richtung Pr\u00fcmer Land)", + "", + "L\u00e4nge: 0.06 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A60 von Pr\u00fcm (AS) Sonstiges" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.390337251, + 50.172750819 + ], + [ + 6.3902751, + 50.173130801 + ], + [ + 6.390342592, + 50.173298417 + ] + ] + } + } + ] + }, + "A60 ": { + "roadworks": [] + }, + "A61": { + "roadworks": [ + { + "identifier": "2026-016930--vi-bs.2026-04-20_20-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.44770400288474,8.320426359238207,49.4450858952885,8.322197432942252", + "point": "49.44770400288474,8.320426359238207", + "startLcPosition": "13", + "impact": { + "lower": "Mutterstadt", + "upper": "Sandberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ludwigshafen -> Speyer", + "title": "A61 | Sandberg - Mutterstadt", + "coordinate": { + "lat": 49.44770400288474, + "long": 8.320426359238207 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 19:00 bis zum 21.04.26 06:00 Uhr.", + "", + "A61: Ludwigshafen -> Speyer, zwischen 1.2 km hinter Sandberg und 0.3 km vor AK Mutterstadt", + "", + "L\u00e4nge: 0.32 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A61 von Sandberg (Parkplatz) nach Mutterstadt (AK) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.320426359, + 49.447704003 + ], + [ + 8.3206757, + 49.447326101 + ], + [ + 8.3213965, + 49.446246401 + ], + [ + 8.3217348, + 49.445743101 + ], + [ + 8.322197433, + 49.445085895 + ] + ] + } + }, + { + "identifier": "2026-013770--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.62614049809541,8.294627971176586,49.64839108853604,8.290794899740714", + "point": "49.62614049809541,8.294627971176586", + "startLcPosition": "21", + "impact": { + "lower": "Wonnegau-West", + "upper": "Worms", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ludwigshafen -> Koblenz", + "title": "A61 | Worms - Wonnegau-West", + "coordinate": { + "lat": 49.62614049809541, + "long": 8.294627971176586 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 07:00 bis 17:00 Uhr", + "19.04.26 von 07:00 bis 17:00 Uhr", + "", + "A61: Ludwigshafen -> Koblenz, zwischen 0.1 km hinter AS Worms und 0.1 km vor Wonnegau-West", + "", + "L\u00e4nge: 2.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A61 von Wonnegau-West (Raststaette) nach Worms (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.294627971, + 49.626140498 + ], + [ + 8.2946327, + 49.626178701 + ], + [ + 8.2947785, + 49.627495901 + ], + [ + 8.2948552, + 49.628533101 + ], + [ + 8.2949103, + 49.629566401 + ], + [ + 8.2949279, + 49.630092001 + ], + [ + 8.2949391, + 49.631626201 + ], + [ + 8.2948905, + 49.633159901 + ], + [ + 8.2947821, + 49.634692301 + ], + [ + 8.2946141, + 49.636222201 + ], + [ + 8.2943864, + 49.637748801 + ], + [ + 8.2940993, + 49.639271001 + ], + [ + 8.293753, + 49.640787801 + ], + [ + 8.2933477, + 49.642298401 + ], + [ + 8.2932133, + 49.642754701 + ], + [ + 8.2931297, + 49.643029301 + ], + [ + 8.2927658, + 49.644156701 + ], + [ + 8.2921121, + 49.645776301 + ], + [ + 8.2909881, + 49.648048201 + ], + [ + 8.2907949, + 49.648391089 + ] + ] + } + }, + { + "identifier": "2026-013770--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.62614049809541,8.294627971176586,49.64839108853604,8.290794899740714", + "point": "49.62614049809541,8.294627971176586", + "startLcPosition": "21", + "impact": { + "lower": "Wonnegau-West", + "upper": "Worms", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ludwigshafen -> Koblenz", + "title": "A61 | Worms - Wonnegau-West", + "coordinate": { + "lat": 49.62614049809541, + "long": 8.294627971176586 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A61: Ludwigshafen -> Koblenz, zwischen 0.1 km hinter AS Worms und 0.1 km vor Wonnegau-West", + "", + "L\u00e4nge: 2.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A61 von Wonnegau-West (Raststaette) nach Worms (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.294627971, + 49.626140498 + ], + [ + 8.2946327, + 49.626178701 + ], + [ + 8.2947785, + 49.627495901 + ], + [ + 8.2948552, + 49.628533101 + ], + [ + 8.2949103, + 49.629566401 + ], + [ + 8.2949279, + 49.630092001 + ], + [ + 8.2949391, + 49.631626201 + ], + [ + 8.2948905, + 49.633159901 + ], + [ + 8.2947821, + 49.634692301 + ], + [ + 8.2946141, + 49.636222201 + ], + [ + 8.2943864, + 49.637748801 + ], + [ + 8.2940993, + 49.639271001 + ], + [ + 8.293753, + 49.640787801 + ], + [ + 8.2933477, + 49.642298401 + ], + [ + 8.2932133, + 49.642754701 + ], + [ + 8.2931297, + 49.643029301 + ], + [ + 8.2927658, + 49.644156701 + ], + [ + 8.2921121, + 49.645776301 + ], + [ + 8.2909881, + 49.648048201 + ], + [ + 8.2907949, + 49.648391089 + ] + ] + } + }, + { + "identifier": "2023-000412--vi-bs.2023-11-22_00-00-00-000.f.devi-zus.2022-12-01_00-00-00-000.f_001.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.62614049809541,8.294627971176586,49.64581649666716,8.292092214534096", + "point": "49.62614049809541,8.294627971176586", + "startLcPosition": "21", + "impact": { + "lower": "Wonnegau-West", + "upper": "Worms", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ludwigshafen -> Koblenz", + "title": "A61 | Worms - Wonnegau-West", + "startTimestamp": "2023-11-22T00:00:00+01:00", + "coordinate": { + "lat": 49.62614049809541, + "long": 8.294627971176586 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.11.23 um 00:00 Uhr", + "Ende: 31.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.11.28)", + "", + "A61: Ludwigshafen -> Koblenz, zwischen 0.1 km hinter AS Worms und 0.4 km vor Wonnegau-West", + "", + "L\u00e4nge: 2.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A61 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.294627971, + 49.626140498 + ], + [ + 8.2946327, + 49.626178701 + ], + [ + 8.2947785, + 49.627495901 + ], + [ + 8.2948552, + 49.628533101 + ], + [ + 8.2949103, + 49.629566401 + ], + [ + 8.2949279, + 49.630092001 + ], + [ + 8.2949391, + 49.631626201 + ], + [ + 8.2948905, + 49.633159901 + ], + [ + 8.2947821, + 49.634692301 + ], + [ + 8.2946141, + 49.636222201 + ], + [ + 8.2943864, + 49.637748801 + ], + [ + 8.2940993, + 49.639271001 + ], + [ + 8.293753, + 49.640787801 + ], + [ + 8.2933477, + 49.642298401 + ], + [ + 8.2932133, + 49.642754701 + ], + [ + 8.2931297, + 49.643029301 + ], + [ + 8.2927658, + 49.644156701 + ], + [ + 8.2921121, + 49.645776301 + ], + [ + 8.292092215, + 49.645816497 + ] + ] + } + }, + { + "identifier": "2026-016133--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_022.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.62641907237776,8.29465930599296,49.64685239682633,8.291579726152342", + "point": "49.62641907237776,8.29465930599296", + "startLcPosition": "21", + "impact": { + "lower": "Wonnegau-West", + "upper": "Worms", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ludwigshafen -> Koblenz", + "title": "A61 | Worms - Wonnegau-West", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 49.62641907237776, + "long": 8.29465930599296 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 28.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.04.26)", + "", + "A61: Ludwigshafen -> Koblenz, zwischen 0.1 km hinter AS Worms und 0.2 km vor Wonnegau-West", + "", + "L\u00e4nge: 2.29 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A61 - AS Worms-M\u00f6rstadt nach AK Worms beide RFB Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.294659306, + 49.626419072 + ], + [ + 8.2947785, + 49.627495901 + ], + [ + 8.2948552, + 49.628533101 + ], + [ + 8.2949103, + 49.629566401 + ], + [ + 8.2949279, + 49.630092001 + ], + [ + 8.2949391, + 49.631626201 + ], + [ + 8.2948905, + 49.633159901 + ], + [ + 8.2947821, + 49.634692301 + ], + [ + 8.2946141, + 49.636222201 + ], + [ + 8.2943864, + 49.637748801 + ], + [ + 8.2940993, + 49.639271001 + ], + [ + 8.293753, + 49.640787801 + ], + [ + 8.2933477, + 49.642298401 + ], + [ + 8.2932133, + 49.642754701 + ], + [ + 8.2931297, + 49.643029301 + ], + [ + 8.2927658, + 49.644156701 + ], + [ + 8.2921121, + 49.645776301 + ], + [ + 8.291579726, + 49.646852397 + ] + ] + } + }, + { + "identifier": "2025-018628--vi-fbm.2025-04-25_00-00-00-000.devi-zus.2025-04-25_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.625691488199614,8.294569133947777,49.64451727042938,8.292620271550756", + "point": "49.625691488199614,8.294569133947777", + "startLcPosition": "21", + "impact": { + "lower": "Wonnegau-West", + "upper": "Worms", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ludwigshafen -> Koblenz", + "title": "A61 | Worms - Wonnegau-West", + "startTimestamp": "2025-04-25T00:00:00+02:00", + "coordinate": { + "lat": 49.625691488199614, + "long": 8.294569133947777 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.04.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A61: Ludwigshafen -> Koblenz, zwischen AS Worms und 0.5 km vor Wonnegau-West", + "", + "L\u00e4nge: 2.1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A61 - VZ123 zur TSE Talbr\u00fccke Pfeddersheim" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.294569134, + 49.625691488 + ], + [ + 8.294587, + 49.625809501 + ], + [ + 8.2946327, + 49.626178701 + ], + [ + 8.2947785, + 49.627495901 + ], + [ + 8.2948552, + 49.628533101 + ], + [ + 8.2949103, + 49.629566401 + ], + [ + 8.2949279, + 49.630092001 + ], + [ + 8.2949391, + 49.631626201 + ], + [ + 8.2948905, + 49.633159901 + ], + [ + 8.2947821, + 49.634692301 + ], + [ + 8.2946141, + 49.636222201 + ], + [ + 8.2943864, + 49.637748801 + ], + [ + 8.2940993, + 49.639271001 + ], + [ + 8.293753, + 49.640787801 + ], + [ + 8.2933477, + 49.642298401 + ], + [ + 8.2932133, + 49.642754701 + ], + [ + 8.2931297, + 49.643029301 + ], + [ + 8.2927658, + 49.644156701 + ], + [ + 8.292620272, + 49.64451727 + ] + ] + } + }, + { + "identifier": "2026-013770--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.648350516928225,8.290623516778178,49.62615054085548,8.294444077860087", + "point": "49.648350516928225,8.290623516778178", + "startLcPosition": "24", + "impact": { + "lower": "Worms", + "upper": "Wonnegau-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Koblenz -> Ludwigshafen", + "title": "A61 | Wonnegau-West - Worms", + "coordinate": { + "lat": 49.648350516928225, + "long": 8.290623516778178 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 07:00 bis 17:00 Uhr", + "19.04.26 von 07:00 bis 17:00 Uhr", + "", + "A61: Koblenz -> Ludwigshafen, zwischen 0.1 km hinter Wonnegau-West und 0.1 km vor AS Worms", + "", + "L\u00e4nge: 2.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A61 von Wonnegau-West (Raststaette) nach Worms (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.290623517, + 49.648350517 + ], + [ + 8.290814, + 49.648010301 + ], + [ + 8.2916128, + 49.646457801 + ], + [ + 8.2921193, + 49.645350701 + ], + [ + 8.2927215, + 49.643799601 + ], + [ + 8.2930605, + 49.642735101 + ], + [ + 8.2934771, + 49.641213701 + ], + [ + 8.2938371, + 49.639678501 + ], + [ + 8.2941381, + 49.638138101 + ], + [ + 8.2943799, + 49.636593201 + ], + [ + 8.2945623, + 49.635044801 + ], + [ + 8.2946852, + 49.633493801 + ], + [ + 8.2947486, + 49.631941201 + ], + [ + 8.2947524, + 49.630387901 + ], + [ + 8.2947304, + 49.629569501 + ], + [ + 8.2946873, + 49.628673501 + ], + [ + 8.2945943, + 49.627501801 + ], + [ + 8.2944493, + 49.626189301 + ], + [ + 8.294444078, + 49.626150541 + ] + ] + } + }, + { + "identifier": "2026-013770--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.648350516928225,8.290623516778178,49.62615054085548,8.294444077860087", + "point": "49.648350516928225,8.290623516778178", + "startLcPosition": "24", + "impact": { + "lower": "Worms", + "upper": "Wonnegau-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Koblenz -> Ludwigshafen", + "title": "A61 | Wonnegau-West - Worms", + "coordinate": { + "lat": 49.648350516928225, + "long": 8.290623516778178 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A61: Koblenz -> Ludwigshafen, zwischen 0.1 km hinter Wonnegau-West und 0.1 km vor AS Worms", + "", + "L\u00e4nge: 2.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A61 von Wonnegau-West (Raststaette) nach Worms (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.290623517, + 49.648350517 + ], + [ + 8.290814, + 49.648010301 + ], + [ + 8.2916128, + 49.646457801 + ], + [ + 8.2921193, + 49.645350701 + ], + [ + 8.2927215, + 49.643799601 + ], + [ + 8.2930605, + 49.642735101 + ], + [ + 8.2934771, + 49.641213701 + ], + [ + 8.2938371, + 49.639678501 + ], + [ + 8.2941381, + 49.638138101 + ], + [ + 8.2943799, + 49.636593201 + ], + [ + 8.2945623, + 49.635044801 + ], + [ + 8.2946852, + 49.633493801 + ], + [ + 8.2947486, + 49.631941201 + ], + [ + 8.2947524, + 49.630387901 + ], + [ + 8.2947304, + 49.629569501 + ], + [ + 8.2946873, + 49.628673501 + ], + [ + 8.2945943, + 49.627501801 + ], + [ + 8.2944493, + 49.626189301 + ], + [ + 8.294444078, + 49.626150541 + ] + ] + } + }, + { + "identifier": "2023-000412--vi-bs.2023-11-22_00-00-00-000.f.devi-zus.2022-12-01_00-00-00-000.f_001.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.64578209579576,8.291921939070505,49.62615054085547,8.294444077860087", + "point": "49.64578209579576,8.291921939070505", + "startLcPosition": "24", + "impact": { + "lower": "Worms", + "upper": "Wonnegau-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> Ludwigshafen", + "title": "A61 | Wonnegau-West - Worms", + "startTimestamp": "2023-11-22T00:00:00+01:00", + "coordinate": { + "lat": 49.64578209579576, + "long": 8.291921939070505 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.11.23 um 00:00 Uhr", + "Ende: 31.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 09.11.28)", + "", + "A61: Koblenz -> Ludwigshafen, zwischen 0.4 km hinter Wonnegau-West und 0.1 km vor AS Worms", + "", + "L\u00e4nge: 2.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A61 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.291921939, + 49.645782096 + ], + [ + 8.2921193, + 49.645350701 + ], + [ + 8.2927081, + 49.643790901 + ], + [ + 8.2930605, + 49.642735101 + ], + [ + 8.2934771, + 49.641213701 + ], + [ + 8.2938371, + 49.639678501 + ], + [ + 8.2941381, + 49.638138101 + ], + [ + 8.2943799, + 49.636593201 + ], + [ + 8.2945623, + 49.635044801 + ], + [ + 8.2946852, + 49.633493801 + ], + [ + 8.2947486, + 49.631941201 + ], + [ + 8.2947524, + 49.630387901 + ], + [ + 8.2947304, + 49.629569501 + ], + [ + 8.2946873, + 49.628673501 + ], + [ + 8.2945943, + 49.627501801 + ], + [ + 8.2944493, + 49.626189301 + ], + [ + 8.294444078, + 49.626150541 + ] + ] + } + }, + { + "identifier": "2026-016133--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_022.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.64681972894369,8.291426583875486,49.62642764305821,8.294475630573432", + "point": "49.64681972894369,8.291426583875486", + "startLcPosition": "24", + "impact": { + "lower": "Worms", + "upper": "Wonnegau-West", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> Ludwigshafen", + "title": "A61 | Wonnegau-West - Worms", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 49.64681972894369, + "long": 8.291426583875486 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 28.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.04.26)", + "", + "A61: Koblenz -> Ludwigshafen, zwischen 0.2 km hinter Wonnegau-West und 0.1 km vor AS Worms", + "", + "L\u00e4nge: 2.29 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A61 - AS Worms-M\u00f6rstadt nach AK Worms beide RFB Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.291426584, + 49.646819729 + ], + [ + 8.2916128, + 49.646457801 + ], + [ + 8.2921193, + 49.645350701 + ], + [ + 8.2927215, + 49.643799601 + ], + [ + 8.2930605, + 49.642735101 + ], + [ + 8.2934771, + 49.641213701 + ], + [ + 8.2938371, + 49.639678501 + ], + [ + 8.2941381, + 49.638138101 + ], + [ + 8.2943799, + 49.636593201 + ], + [ + 8.2945623, + 49.635044801 + ], + [ + 8.2946852, + 49.633493801 + ], + [ + 8.2947486, + 49.631941201 + ], + [ + 8.2947524, + 49.630387901 + ], + [ + 8.2947304, + 49.629569501 + ], + [ + 8.2946873, + 49.628673501 + ], + [ + 8.2945943, + 49.627501801 + ], + [ + 8.294475631, + 49.626427643 + ] + ] + } + }, + { + "identifier": "2025-018628--vi-fbm.2025-04-25_00-00-00-000.devi-zus.2025-04-25_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.64578209579576,8.291921939070521,49.62705562352614,8.2945450071801", + "point": "49.64578209579576,8.291921939070521", + "startLcPosition": "24", + "impact": { + "lower": "Worms", + "upper": "Wonnegau-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> Ludwigshafen", + "title": "A61 | Wonnegau-West - Worms", + "startTimestamp": "2025-04-25T00:00:00+02:00", + "coordinate": { + "lat": 49.64578209579576, + "long": 8.291921939070521 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.04.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A61: Koblenz -> Ludwigshafen, zwischen 0.4 km hinter Wonnegau-West und 0.2 km vor AS Worms", + "", + "L\u00e4nge: 2.1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A61 - VZ123 zur TSE Talbr\u00fccke Pfeddersheim" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.291921939, + 49.645782096 + ], + [ + 8.2921193, + 49.645350701 + ], + [ + 8.2927215, + 49.643799601 + ], + [ + 8.2930605, + 49.642735101 + ], + [ + 8.2934771, + 49.641213701 + ], + [ + 8.2938371, + 49.639678501 + ], + [ + 8.2941381, + 49.638138101 + ], + [ + 8.2943799, + 49.636593201 + ], + [ + 8.2945623, + 49.635044801 + ], + [ + 8.2946852, + 49.633493801 + ], + [ + 8.2947486, + 49.631941201 + ], + [ + 8.2947524, + 49.630387901 + ], + [ + 8.2947304, + 49.629569501 + ], + [ + 8.2946873, + 49.628673501 + ], + [ + 8.2945943, + 49.627501801 + ], + [ + 8.294545007, + 49.627055624 + ] + ] + } + }, + { + "identifier": "2026-017733--vi-bs.2026-04-09_12-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.92983046275015,7.82011903728711,49.929554291189746,7.8703055643855295", + "point": "49.92983046275015,7.82011903728711", + "startLcPosition": "46", + "impact": { + "lower": "Dorsheim", + "upper": "Stromberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Koblenz -> Ludwigshafen", + "title": "A61 | Stromberg - Dorsheim", + "coordinate": { + "lat": 49.92983046275015, + "long": 7.82011903728711 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 12:00 bis 18:00 Uhr", + "", + "A61: Koblenz -> Ludwigshafen, zwischen 3.1 km hinter AS Stromberg und 0.1 km vor AS Dorsheim", + "", + "L\u00e4nge: 4.01 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A61 von Stromberg (AS) nach Dorsheim (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.820119037, + 49.929830463 + ], + [ + 7.8210546, + 49.928939301 + ], + [ + 7.8216755, + 49.928383401 + ], + [ + 7.8221776, + 49.927948901 + ], + [ + 7.8225982, + 49.927609801 + ], + [ + 7.8229435, + 49.927343501 + ], + [ + 7.8233305, + 49.927055601 + ], + [ + 7.8238478, + 49.926693401 + ], + [ + 7.8242129, + 49.926452901 + ], + [ + 7.8245884, + 49.926219601 + ], + [ + 7.8249371, + 49.926014301 + ], + [ + 7.8252777, + 49.925826101 + ], + [ + 7.8256716, + 49.925615501 + ], + [ + 7.826095, + 49.925408701 + ], + [ + 7.8266356, + 49.925160801 + ], + [ + 7.8271285, + 49.924949901 + ], + [ + 7.827481, + 49.924811301 + ], + [ + 7.828009, + 49.924615601 + ], + [ + 7.8285493, + 49.924433201 + ], + [ + 7.8290298, + 49.924281501 + ], + [ + 7.8296434, + 49.924107901 + ], + [ + 7.8300312, + 49.924007801 + ], + [ + 7.8305792, + 49.923876601 + ], + [ + 7.8311065, + 49.923765701 + ], + [ + 7.83163, + 49.923667601 + ], + [ + 7.8319894, + 49.923607301 + ], + [ + 7.8323183, + 49.923555401 + ], + [ + 7.8327358, + 49.923496401 + ], + [ + 7.833244, + 49.923436501 + ], + [ + 7.8338018, + 49.923376601 + ], + [ + 7.8342075, + 49.923346201 + ], + [ + 7.8347082, + 49.923310801 + ], + [ + 7.8352186, + 49.923288601 + ], + [ + 7.8357476, + 49.923272901 + ], + [ + 7.8364626, + 49.923263101 + ], + [ + 7.8371636, + 49.923270601 + ], + [ + 7.8379726, + 49.923291201 + ], + [ + 7.8387945, + 49.923329601 + ], + [ + 7.8398282, + 49.923394101 + ], + [ + 7.8408506, + 49.923470801 + ], + [ + 7.8420545, + 49.923576301 + ], + [ + 7.8428918, + 49.923657301 + ], + [ + 7.8440793, + 49.923767601 + ], + [ + 7.8452414, + 49.923878301 + ], + [ + 7.8467917, + 49.924025101 + ], + [ + 7.8475615, + 49.924099301 + ], + [ + 7.8505584, + 49.924385201 + ], + [ + 7.8520864, + 49.924539701 + ], + [ + 7.8533178, + 49.924675001 + ], + [ + 7.8537415, + 49.924727501 + ], + [ + 7.8545487, + 49.924836701 + ], + [ + 7.8552612, + 49.924937501 + ], + [ + 7.8560185, + 49.925062901 + ], + [ + 7.856798, + 49.925200701 + ], + [ + 7.8574347, + 49.925325401 + ], + [ + 7.8581016, + 49.925466901 + ], + [ + 7.8587437, + 49.925625801 + ], + [ + 7.8594099, + 49.925799501 + ], + [ + 7.8600848, + 49.925993601 + ], + [ + 7.8608074, + 49.926217401 + ], + [ + 7.8613588, + 49.926394201 + ], + [ + 7.8618797, + 49.926582001 + ], + [ + 7.862598, + 49.926851801 + ], + [ + 7.8632429, + 49.927112901 + ], + [ + 7.8641757, + 49.927517601 + ], + [ + 7.8654705, + 49.928076801 + ], + [ + 7.8655514, + 49.928111401 + ], + [ + 7.8657199, + 49.928183401 + ], + [ + 7.8658574, + 49.928242101 + ], + [ + 7.8665623, + 49.928519801 + ], + [ + 7.8670896, + 49.928717201 + ], + [ + 7.8675628, + 49.928878901 + ], + [ + 7.8681404, + 49.929056901 + ], + [ + 7.8685725, + 49.929178201 + ], + [ + 7.8689656, + 49.929276001 + ], + [ + 7.8694636, + 49.929390301 + ], + [ + 7.8699987, + 49.929500501 + ], + [ + 7.870305564, + 49.929554291 + ] + ] + } + }, + { + "identifier": "2024-059796--vi-bs.2024-12-09_05-00-00-000.devi-zus.2024-12-09_05-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.96980385724803,7.750821265566538,49.99006237261003,7.697853656683957", + "point": "49.96980385724803,7.750821265566538", + "startLcPosition": "48", + "impact": { + "lower": "Rheinb\u00f6llen", + "upper": "Hunsr\u00fcck-West", + "symbols": [ + "BREAKDOWN_LANE", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ludwigshafen -> Koblenz", + "title": "A61 | Hunsr\u00fcck-West - Rheinb\u00f6llen", + "startTimestamp": "2024-12-09T05:00:00+01:00", + "coordinate": { + "lat": 49.96980385724803, + "long": 7.750821265566538 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.12.24 um 05:00 Uhr", + "Ende: 01.04.29 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.04.29)", + "", + "A61: Ludwigshafen -> Koblenz, zwischen 1.1 km hinter Hunsr\u00fcck-West und 1.3 km vor AS Rheinb\u00f6llen", + "", + "L\u00e4nge: 4.67 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A61 - AS Rheinb\u00f6llen - Stromberg - Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.750821266, + 49.969803857 + ], + [ + 7.7499609, + 49.969900501 + ], + [ + 7.7469139, + 49.970260601 + ], + [ + 7.7459337, + 49.970406001 + ], + [ + 7.745005, + 49.970555101 + ], + [ + 7.7440329, + 49.970730101 + ], + [ + 7.7430748, + 49.970934501 + ], + [ + 7.7421327, + 49.971167901 + ], + [ + 7.741205, + 49.971424501 + ], + [ + 7.7403064, + 49.971720501 + ], + [ + 7.7394285, + 49.972040601 + ], + [ + 7.7385726, + 49.972384501 + ], + [ + 7.7377403, + 49.972751401 + ], + [ + 7.7371431, + 49.973036101 + ], + [ + 7.7365597, + 49.973332801 + ], + [ + 7.7359911, + 49.973641301 + ], + [ + 7.7354379, + 49.973960801 + ], + [ + 7.7348841, + 49.974280001 + ], + [ + 7.7343426, + 49.974607701 + ], + [ + 7.7338072, + 49.974939601 + ], + [ + 7.7329762, + 49.975454601 + ], + [ + 7.7329161, + 49.975492701 + ], + [ + 7.7325297, + 49.975737501 + ], + [ + 7.7304064, + 49.977157801 + ], + [ + 7.7287478, + 49.978116501 + ], + [ + 7.7280393, + 49.978506301 + ], + [ + 7.7274177, + 49.978827301 + ], + [ + 7.7268112, + 49.979146901 + ], + [ + 7.7261035, + 49.979457601 + ], + [ + 7.7254333, + 49.979707001 + ], + [ + 7.7247892, + 49.979926901 + ], + [ + 7.7240522, + 49.980123901 + ], + [ + 7.7231436, + 49.980304801 + ], + [ + 7.722728, + 49.980374701 + ], + [ + 7.722015, + 49.980494801 + ], + [ + 7.7212126, + 49.980601701 + ], + [ + 7.7204739, + 49.980645501 + ], + [ + 7.7196883, + 49.980647001 + ], + [ + 7.7185786, + 49.980600201 + ], + [ + 7.7173373, + 49.980505301 + ], + [ + 7.7162418, + 49.980439201 + ], + [ + 7.7155472, + 49.980409801 + ], + [ + 7.7148542, + 49.980391301 + ], + [ + 7.7143331, + 49.980405001 + ], + [ + 7.7137311, + 49.980444601 + ], + [ + 7.7130443, + 49.980518701 + ], + [ + 7.7124025, + 49.980604701 + ], + [ + 7.7117332, + 49.980699401 + ], + [ + 7.7111357, + 49.980824201 + ], + [ + 7.7106445, + 49.980937201 + ], + [ + 7.7099536, + 49.981141201 + ], + [ + 7.7093926, + 49.981331901 + ], + [ + 7.7088352, + 49.981548501 + ], + [ + 7.7082409, + 49.981814301 + ], + [ + 7.7077387, + 49.982083501 + ], + [ + 7.707152, + 49.982413701 + ], + [ + 7.7066331, + 49.982762101 + ], + [ + 7.7060699, + 49.983171301 + ], + [ + 7.7056702, + 49.983530601 + ], + [ + 7.7050886, + 49.984159401 + ], + [ + 7.7044929, + 49.984860201 + ], + [ + 7.7037673, + 49.985638401 + ], + [ + 7.7032773, + 49.986073201 + ], + [ + 7.7026578, + 49.986534101 + ], + [ + 7.7016312, + 49.987190301 + ], + [ + 7.7005041, + 49.987874401 + ], + [ + 7.6999158, + 49.988255401 + ], + [ + 7.6993866, + 49.988632901 + ], + [ + 7.6988983, + 49.989008801 + ], + [ + 7.6984167, + 49.989458101 + ], + [ + 7.6979652, + 49.989932201 + ], + [ + 7.697853657, + 49.990062373 + ] + ] + } + }, + { + "identifier": "2026-005522--vi-bs.2026-03-24_07-00-00-000_004.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.964596465937895,7.7661197604571015,49.963156435900444,7.767779811747277", + "point": "49.964596465937895,7.7661197604571015", + "startLcPosition": "48", + "impact": { + "lower": "Stromberg", + "upper": "Hunsr\u00fcck-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> Ludwigshafen", + "title": "A61 | Hunsr\u00fcck-West - Stromberg", + "startTimestamp": "2026-03-24T07:00:00+01:00", + "coordinate": { + "lat": 49.964596465937895, + "long": 7.7661197604571015 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 07:00 Uhr", + "Ende: 27.05.26 um 12:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.05.26)", + "", + "A61: Koblenz -> Ludwigshafen, zwischen 0.2 km hinter Hunsr\u00fcck-West und 2.4 km vor AS Stromberg", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A61 von Hunsr\u00fcck-West (Raststaette) nach Stromberg (AS) Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.76611976, + 49.964596466 + ], + [ + 7.7661918, + 49.964542501 + ], + [ + 7.7666932, + 49.964134201 + ], + [ + 7.767157, + 49.963732301 + ], + [ + 7.7677271, + 49.963206101 + ], + [ + 7.767779812, + 49.963156436 + ] + ] + } + }, + { + "identifier": "2024-059796--vi-bs.2024-12-09_05-00-00-000.devi-zus.2024-12-09_05-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.99000682117686,7.697698261013255,49.96968796297052,7.750790094788618", + "point": "49.99000682117686,7.697698261013255", + "startLcPosition": "49", + "impact": { + "lower": "Hunsr\u00fcck-West", + "upper": "Rheinb\u00f6llen", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> Ludwigshafen", + "title": "A61 | Rheinb\u00f6llen - Hunsr\u00fcck-West", + "startTimestamp": "2024-12-09T05:00:00+01:00", + "coordinate": { + "lat": 49.99000682117686, + "long": 7.697698261013255 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.12.24 um 05:00 Uhr", + "Ende: 01.04.29 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.04.29)", + "", + "A61: Koblenz -> Ludwigshafen, zwischen 1.3 km hinter AS Rheinb\u00f6llen und 1.1 km vor Hunsr\u00fcck-West", + "", + "L\u00e4nge: 4.67 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A61 - AS Rheinb\u00f6llen - Stromberg - Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.697698261, + 49.990006821 + ], + [ + 7.697822, + 49.989863701 + ], + [ + 7.6983774, + 49.989301201 + ], + [ + 7.6987623, + 49.988926101 + ], + [ + 7.6993624, + 49.988478801 + ], + [ + 7.6998056, + 49.988165701 + ], + [ + 7.7003719, + 49.987799801 + ], + [ + 7.7015136, + 49.987112301 + ], + [ + 7.7025306, + 49.986447501 + ], + [ + 7.7027076, + 49.986315001 + ], + [ + 7.7031336, + 49.985981001 + ], + [ + 7.7035732, + 49.985580601 + ], + [ + 7.7043553, + 49.984737601 + ], + [ + 7.7049372, + 49.984053701 + ], + [ + 7.7055179, + 49.983438001 + ], + [ + 7.7059032, + 49.983066401 + ], + [ + 7.7064168, + 49.982640101 + ], + [ + 7.7068893, + 49.982307001 + ], + [ + 7.7073936, + 49.981993801 + ], + [ + 7.7079278, + 49.981701601 + ], + [ + 7.7084881, + 49.981430501 + ], + [ + 7.7090769, + 49.981185601 + ], + [ + 7.709688, + 49.980964701 + ], + [ + 7.7103192, + 49.980768701 + ], + [ + 7.710968, + 49.980598201 + ], + [ + 7.7113643, + 49.980512001 + ], + [ + 7.7116321, + 49.980453801 + ], + [ + 7.7123088, + 49.980336301 + ], + [ + 7.7129956, + 49.980245901 + ], + [ + 7.7137292, + 49.980180401 + ], + [ + 7.7143623, + 49.980149001 + ], + [ + 7.7149543, + 49.980140301 + ], + [ + 7.715649, + 49.980155601 + ], + [ + 7.7163162, + 49.980195701 + ], + [ + 7.7169344, + 49.980244801 + ], + [ + 7.7176303, + 49.980301701 + ], + [ + 7.7183226, + 49.980352201 + ], + [ + 7.7190175, + 49.980383901 + ], + [ + 7.7197138, + 49.980399901 + ], + [ + 7.7204104, + 49.980390601 + ], + [ + 7.7211336, + 49.980354001 + ], + [ + 7.721883, + 49.980286901 + ], + [ + 7.7226459, + 49.980186101 + ], + [ + 7.72319, + 49.980092401 + ], + [ + 7.7232716, + 49.980078401 + ], + [ + 7.724004, + 49.979926701 + ], + [ + 7.7246431, + 49.979766401 + ], + [ + 7.7252893, + 49.979570801 + ], + [ + 7.7259695, + 49.979334801 + ], + [ + 7.7266587, + 49.979066101 + ], + [ + 7.7273197, + 49.978766801 + ], + [ + 7.7279337, + 49.978441501 + ], + [ + 7.7286061, + 49.978047101 + ], + [ + 7.7324346, + 49.975667601 + ], + [ + 7.7326536, + 49.975532701 + ], + [ + 7.7337133, + 49.974879701 + ], + [ + 7.7341863, + 49.974588201 + ], + [ + 7.7346591, + 49.974296601 + ], + [ + 7.7351389, + 49.974009701 + ], + [ + 7.7356314, + 49.973731701 + ], + [ + 7.7361155, + 49.973448001 + ], + [ + 7.7366129, + 49.973173601 + ], + [ + 7.7371227, + 49.972908801 + ], + [ + 7.7376442, + 49.972654101 + ], + [ + 7.7383841, + 49.972318701 + ], + [ + 7.7391447, + 49.972003201 + ], + [ + 7.739925, + 49.971708101 + ], + [ + 7.7407236, + 49.971433901 + ], + [ + 7.7415432, + 49.971186601 + ], + [ + 7.7423778, + 49.970961001 + ], + [ + 7.743227, + 49.970759201 + ], + [ + 7.7440891, + 49.970581501 + ], + [ + 7.7449624, + 49.970428301 + ], + [ + 7.745438, + 49.970354101 + ], + [ + 7.7459033, + 49.970281601 + ], + [ + 7.7468817, + 49.970147601 + ], + [ + 7.7473806, + 49.970082001 + ], + [ + 7.7499656, + 49.969779701 + ], + [ + 7.750790095, + 49.969687963 + ] + ] + } + }, + { + "identifier": "2025-025470--vi-bs.2025-06-01_00-00-00-000.devi-zus.2025-06-01_00-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.298240233739584,7.499180786055046,50.329443686961895,7.513273173825998", + "point": "50.298240233739584,7.499180786055046", + "startLcPosition": "64", + "impact": { + "lower": "Koblenz-Metternich", + "upper": "Neufeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ludwigshafen -> Koblenz", + "title": "A61 | Neufeld - Koblenz-Metternich", + "startTimestamp": "2025-06-01T00:00:00+02:00", + "coordinate": { + "lat": 50.298240233739584, + "long": 7.499180786055046 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.06.25 um 00:00 Uhr", + "Ende: 12.06.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.27)", + "", + "A61: Ludwigshafen -> Koblenz, zwischen 1.4 km hinter Neufeld und 2.2 km vor AS Koblenz-Metternich", + "", + "L\u00e4nge: 4.82 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A61 Moselbr\u00fccke Winningen - Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.499180786, + 50.298240234 + ], + [ + 7.498309, + 50.298381601 + ], + [ + 7.4975074, + 50.298500201 + ], + [ + 7.4959454, + 50.298739601 + ], + [ + 7.4951795, + 50.298856201 + ], + [ + 7.4945733, + 50.298966301 + ], + [ + 7.4939954, + 50.299084001 + ], + [ + 7.4929117, + 50.299335601 + ], + [ + 7.4923941, + 50.299469501 + ], + [ + 7.4918263, + 50.299637401 + ], + [ + 7.4914661, + 50.299748801 + ], + [ + 7.4910825, + 50.299884201 + ], + [ + 7.4905925, + 50.300062101 + ], + [ + 7.4901116, + 50.300262801 + ], + [ + 7.4894936, + 50.300555001 + ], + [ + 7.4886699, + 50.301017401 + ], + [ + 7.4883821, + 50.301196901 + ], + [ + 7.4880705, + 50.301412401 + ], + [ + 7.4877099, + 50.301686901 + ], + [ + 7.4873861, + 50.301955401 + ], + [ + 7.4870432, + 50.302281901 + ], + [ + 7.4868573, + 50.302474801 + ], + [ + 7.486631, + 50.302703401 + ], + [ + 7.4863538, + 50.303053701 + ], + [ + 7.4861024, + 50.303415301 + ], + [ + 7.4859544, + 50.303654901 + ], + [ + 7.4858253, + 50.303906201 + ], + [ + 7.4856361, + 50.304295701 + ], + [ + 7.4855147, + 50.304627101 + ], + [ + 7.485424, + 50.304939101 + ], + [ + 7.4853497, + 50.305250101 + ], + [ + 7.4853281, + 50.305369401 + ], + [ + 7.4852863, + 50.305656001 + ], + [ + 7.4852622, + 50.305986601 + ], + [ + 7.4852659, + 50.306365401 + ], + [ + 7.4853018, + 50.306727201 + ], + [ + 7.4853373, + 50.306983601 + ], + [ + 7.4854123, + 50.307300501 + ], + [ + 7.4854901, + 50.307583201 + ], + [ + 7.4855736, + 50.307820901 + ], + [ + 7.4857074, + 50.308158701 + ], + [ + 7.4858603, + 50.308473901 + ], + [ + 7.486055, + 50.308794601 + ], + [ + 7.4862841, + 50.309138601 + ], + [ + 7.4865569, + 50.309497901 + ], + [ + 7.486873, + 50.309856401 + ], + [ + 7.487096, + 50.310093701 + ], + [ + 7.4873593, + 50.310330201 + ], + [ + 7.4880189, + 50.310875101 + ], + [ + 7.4884729, + 50.311217701 + ], + [ + 7.4889662, + 50.311547901 + ], + [ + 7.4898726, + 50.312126101 + ], + [ + 7.4908207, + 50.312684001 + ], + [ + 7.4929393, + 50.313915601 + ], + [ + 7.4951967, + 50.315227801 + ], + [ + 7.4972715, + 50.316433801 + ], + [ + 7.4978878, + 50.316800901 + ], + [ + 7.498244, + 50.317009101 + ], + [ + 7.4999833, + 50.318028001 + ], + [ + 7.5003842, + 50.318261201 + ], + [ + 7.5013795, + 50.318840101 + ], + [ + 7.501686, + 50.319018301 + ], + [ + 7.5029224, + 50.319743601 + ], + [ + 7.5032428, + 50.319931501 + ], + [ + 7.5035881, + 50.320140401 + ], + [ + 7.5042213, + 50.320513801 + ], + [ + 7.5054681, + 50.321246701 + ], + [ + 7.5059025, + 50.321505501 + ], + [ + 7.5062017, + 50.321695801 + ], + [ + 7.5071206, + 50.322280101 + ], + [ + 7.5081093, + 50.322962201 + ], + [ + 7.5091078, + 50.323729601 + ], + [ + 7.5096132, + 50.324150701 + ], + [ + 7.5100971, + 50.324585601 + ], + [ + 7.5106614, + 50.325154301 + ], + [ + 7.5111193, + 50.325666701 + ], + [ + 7.5114535, + 50.326068901 + ], + [ + 7.511793, + 50.326529301 + ], + [ + 7.5121295, + 50.327023101 + ], + [ + 7.5125456, + 50.327750201 + ], + [ + 7.5128965, + 50.328461401 + ], + [ + 7.513239, + 50.329327401 + ], + [ + 7.513273174, + 50.329443687 + ] + ] + } + }, + { + "identifier": "2025-025470--vi-bs.2025-11-27_00-00-00-000.devi-zus.2025-06-01_00-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.29746615336301,7.503212470570843,50.31870499758494,7.501147213995248", + "point": "50.29746615336301,7.503212470570843", + "startLcPosition": "64", + "impact": { + "lower": "Moseltal-West", + "upper": "Neufeld", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ludwigshafen -> Koblenz", + "title": "A61 | Neufeld - Moseltal-West", + "startTimestamp": "2025-11-27T00:00:00+01:00", + "coordinate": { + "lat": 50.29746615336301, + "long": 7.503212470570843 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.11.25 um 00:00 Uhr", + "Ende: 04.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.27)", + "", + "A61: Ludwigshafen -> Koblenz, zwischen 1.1 km hinter Neufeld und Moseltal-West", + "", + "L\u00e4nge: 3.62 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A61 Moselbr\u00fccke Winningen - Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.503212471, + 50.297466153 + ], + [ + 7.5026763, + 50.297594101 + ], + [ + 7.5019214, + 50.297754501 + ], + [ + 7.501255, + 50.297883601 + ], + [ + 7.5006602, + 50.297990601 + ], + [ + 7.4995664, + 50.298177701 + ], + [ + 7.498309, + 50.298381601 + ], + [ + 7.4975074, + 50.298500201 + ], + [ + 7.4959454, + 50.298739601 + ], + [ + 7.4951795, + 50.298856201 + ], + [ + 7.4945733, + 50.298966301 + ], + [ + 7.4939954, + 50.299084001 + ], + [ + 7.4929117, + 50.299335601 + ], + [ + 7.4923941, + 50.299469501 + ], + [ + 7.4918263, + 50.299637401 + ], + [ + 7.4914661, + 50.299748801 + ], + [ + 7.4910825, + 50.299884201 + ], + [ + 7.4905925, + 50.300062101 + ], + [ + 7.4901116, + 50.300262801 + ], + [ + 7.4894936, + 50.300555001 + ], + [ + 7.4886699, + 50.301017401 + ], + [ + 7.4883821, + 50.301196901 + ], + [ + 7.4880705, + 50.301412401 + ], + [ + 7.4877099, + 50.301686901 + ], + [ + 7.4873861, + 50.301955401 + ], + [ + 7.4870432, + 50.302281901 + ], + [ + 7.4868573, + 50.302474801 + ], + [ + 7.486631, + 50.302703401 + ], + [ + 7.4863538, + 50.303053701 + ], + [ + 7.4861024, + 50.303415301 + ], + [ + 7.4859544, + 50.303654901 + ], + [ + 7.4858253, + 50.303906201 + ], + [ + 7.4856361, + 50.304295701 + ], + [ + 7.4855147, + 50.304627101 + ], + [ + 7.485424, + 50.304939101 + ], + [ + 7.4853497, + 50.305250101 + ], + [ + 7.4853281, + 50.305369401 + ], + [ + 7.4852863, + 50.305656001 + ], + [ + 7.4852622, + 50.305986601 + ], + [ + 7.4852659, + 50.306365401 + ], + [ + 7.4853018, + 50.306727201 + ], + [ + 7.4853373, + 50.306983601 + ], + [ + 7.4854123, + 50.307300501 + ], + [ + 7.4854901, + 50.307583201 + ], + [ + 7.4855736, + 50.307820901 + ], + [ + 7.4857074, + 50.308158701 + ], + [ + 7.4858603, + 50.308473901 + ], + [ + 7.486055, + 50.308794601 + ], + [ + 7.4862841, + 50.309138601 + ], + [ + 7.4865569, + 50.309497901 + ], + [ + 7.486873, + 50.309856401 + ], + [ + 7.487096, + 50.310093701 + ], + [ + 7.4873593, + 50.310330201 + ], + [ + 7.4880189, + 50.310875101 + ], + [ + 7.4884729, + 50.311217701 + ], + [ + 7.4889662, + 50.311547901 + ], + [ + 7.4898726, + 50.312126101 + ], + [ + 7.4908207, + 50.312684001 + ], + [ + 7.4929393, + 50.313915601 + ], + [ + 7.4951967, + 50.315227801 + ], + [ + 7.4972715, + 50.316433801 + ], + [ + 7.4978878, + 50.316800901 + ], + [ + 7.498244, + 50.317009101 + ], + [ + 7.4999833, + 50.318028001 + ], + [ + 7.5003842, + 50.318261201 + ], + [ + 7.501147214, + 50.318704998 + ] + ] + } + }, + { + "identifier": "2025-025470--vi-bs.2026-01-31_00-00-00-000.devi-zus.2025-06-01_00-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.3333791990773,7.513407914082949,50.3092587958438,7.4861575719517", + "point": "50.3333791990773,7.513407914082949", + "startLcPosition": "69", + "impact": { + "lower": "Koblenz/Dieblich", + "upper": "Koblenz-Metternich", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> Ludwigshafen", + "title": "A61 | Koblenz-Metternich - Koblenz/Dieblich", + "startTimestamp": "2026-01-31T00:00:00+01:00", + "coordinate": { + "lat": 50.3333791990773, + "long": 7.513407914082949 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.01.26 um 00:00 Uhr", + "Ende: 04.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.27)", + "", + "A61: Koblenz -> Ludwigshafen, zwischen 1.7 km hinter AS Koblenz-Metternich und 0.7 km vor AS Koblenz/Dieblich", + "", + "L\u00e4nge: 3.44 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A61 Moselbr\u00fccke Winningen - Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.513407914, + 50.333379199 + ], + [ + 7.5134465, + 50.332977501 + ], + [ + 7.5134797, + 50.331927501 + ], + [ + 7.5134672, + 50.331516501 + ], + [ + 7.5134441, + 50.331216101 + ], + [ + 7.5134198, + 50.330981301 + ], + [ + 7.5133055, + 50.330276701 + ], + [ + 7.5130465, + 50.329363001 + ], + [ + 7.5127233, + 50.328515601 + ], + [ + 7.5123678, + 50.327797701 + ], + [ + 7.5118971, + 50.326989501 + ], + [ + 7.5115885, + 50.326544501 + ], + [ + 7.5112737, + 50.326109001 + ], + [ + 7.5109159, + 50.325683801 + ], + [ + 7.51044, + 50.325169501 + ], + [ + 7.5099157, + 50.324641401 + ], + [ + 7.508992, + 50.323843901 + ], + [ + 7.5078932, + 50.323007701 + ], + [ + 7.5069994, + 50.322378201 + ], + [ + 7.5060638, + 50.321776301 + ], + [ + 7.5058621, + 50.321649001 + ], + [ + 7.5042433, + 50.320678901 + ], + [ + 7.5038829, + 50.320470101 + ], + [ + 7.5016516, + 50.319177101 + ], + [ + 7.5012912, + 50.318962901 + ], + [ + 7.5001216, + 50.318267701 + ], + [ + 7.4997025, + 50.318018601 + ], + [ + 7.4981298, + 50.317099101 + ], + [ + 7.4978001, + 50.316906301 + ], + [ + 7.4971426, + 50.316518601 + ], + [ + 7.4950679, + 50.315310101 + ], + [ + 7.4928164, + 50.313998601 + ], + [ + 7.4907108, + 50.312772001 + ], + [ + 7.489755, + 50.312203601 + ], + [ + 7.4888378, + 50.311614101 + ], + [ + 7.4883439, + 50.311285501 + ], + [ + 7.4878842, + 50.310945301 + ], + [ + 7.4872384, + 50.310408801 + ], + [ + 7.4869525, + 50.310162601 + ], + [ + 7.4866922, + 50.309893301 + ], + [ + 7.4863791, + 50.309548601 + ], + [ + 7.486157572, + 50.309258796 + ] + ] + } + }, + { + "identifier": "2026-016698--vi-bs.2026-04-07_09-00-00-000_011.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.45290481426544,7.231869452233872,50.47003715471836,7.2306127358599435", + "point": "50.45290481426544,7.231869452233872", + "startLcPosition": "84", + "impact": { + "lower": "Harterscheid", + "upper": "Brohltal-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Koblenz -> M\u00f6nchengladbach", + "title": "A61 | Brohltal-West - Harterscheid", + "coordinate": { + "lat": 50.45290481426544, + "long": 7.231869452233872 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 15:30 Uhr", + "", + "A61: Koblenz -> M\u00f6nchengladbach, zwischen 1.2 km hinter Brohltal-West und 5.9 km vor Harterscheid", + "", + "L\u00e4nge: 1.96 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A61 von Brohltal-Ost (Raststaette) nach Harterscheid (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.231869452, + 50.452904814 + ], + [ + 7.2321375, + 50.453394301 + ], + [ + 7.2327029, + 50.454685101 + ], + [ + 7.2331653, + 50.455826501 + ], + [ + 7.2336083, + 50.457205201 + ], + [ + 7.2337633, + 50.457854801 + ], + [ + 7.2338847, + 50.458503701 + ], + [ + 7.2339575, + 50.459020501 + ], + [ + 7.2340105, + 50.459549801 + ], + [ + 7.2341042, + 50.460194501 + ], + [ + 7.2341051, + 50.460717301 + ], + [ + 7.2341161, + 50.461261301 + ], + [ + 7.2340754, + 50.461851301 + ], + [ + 7.2340084, + 50.462383601 + ], + [ + 7.2338953, + 50.462952201 + ], + [ + 7.2337949, + 50.463524701 + ], + [ + 7.233671, + 50.464095201 + ], + [ + 7.2335236, + 50.464663501 + ], + [ + 7.2333529, + 50.465229101 + ], + [ + 7.2332388, + 50.465569701 + ], + [ + 7.2328907, + 50.466364501 + ], + [ + 7.2327255, + 50.466787101 + ], + [ + 7.2324403, + 50.467337401 + ], + [ + 7.2321705, + 50.467814201 + ], + [ + 7.2317495, + 50.468487701 + ], + [ + 7.2314647, + 50.468962701 + ], + [ + 7.2310933, + 50.469460801 + ], + [ + 7.2306247, + 50.470023701 + ], + [ + 7.230612736, + 50.470037155 + ] + ] + } + }, + { + "identifier": "2026-016697--vi-bs.2026-04-07_09-00-00-000_012.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.45290481426544,7.231869452233872,50.47003715471836,7.2306127358599435", + "point": "50.45290481426544,7.231869452233872", + "startLcPosition": "84", + "impact": { + "lower": "Harterscheid", + "upper": "Brohltal-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Koblenz -> M\u00f6nchengladbach", + "title": "A61 | Brohltal-West - Harterscheid", + "coordinate": { + "lat": 50.45290481426544, + "long": 7.231869452233872 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 15:30 Uhr", + "", + "A61: Koblenz -> M\u00f6nchengladbach, zwischen 1.2 km hinter Brohltal-West und 5.9 km vor Harterscheid", + "", + "L\u00e4nge: 1.96 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A61 von Brohltal-Ost (Raststaette) nach Harterscheid (Rastplatz) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.231869452, + 50.452904814 + ], + [ + 7.2321375, + 50.453394301 + ], + [ + 7.2327029, + 50.454685101 + ], + [ + 7.2331653, + 50.455826501 + ], + [ + 7.2336083, + 50.457205201 + ], + [ + 7.2337633, + 50.457854801 + ], + [ + 7.2338847, + 50.458503701 + ], + [ + 7.2339575, + 50.459020501 + ], + [ + 7.2340105, + 50.459549801 + ], + [ + 7.2341042, + 50.460194501 + ], + [ + 7.2341051, + 50.460717301 + ], + [ + 7.2341161, + 50.461261301 + ], + [ + 7.2340754, + 50.461851301 + ], + [ + 7.2340084, + 50.462383601 + ], + [ + 7.2338953, + 50.462952201 + ], + [ + 7.2337949, + 50.463524701 + ], + [ + 7.233671, + 50.464095201 + ], + [ + 7.2335236, + 50.464663501 + ], + [ + 7.2333529, + 50.465229101 + ], + [ + 7.2332388, + 50.465569701 + ], + [ + 7.2328907, + 50.466364501 + ], + [ + 7.2327255, + 50.466787101 + ], + [ + 7.2324403, + 50.467337401 + ], + [ + 7.2321705, + 50.467814201 + ], + [ + 7.2317495, + 50.468487701 + ], + [ + 7.2314647, + 50.468962701 + ], + [ + 7.2310933, + 50.469460801 + ], + [ + 7.2306247, + 50.470023701 + ], + [ + 7.230612736, + 50.470037155 + ] + ] + } + }, + { + "identifier": "2026-016341--vi-bs.2026-04-13_08-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.4676047876097,7.232030805640363,50.45994464180673,7.2338560293666605", + "point": "50.4676047876097,7.232030805640363", + "startLcPosition": "85", + "impact": { + "lower": "Brohltal-West", + "upper": "Niederzissen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Koblenz", + "title": "A61 | Niederzissen - Brohltal-West", + "coordinate": { + "lat": 50.4676047876097, + "long": 7.232030805640363 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "", + "A61: M\u00f6nchengladbach -> Koblenz, zwischen AS Niederzissen und 2.0 km vor Brohltal-West", + "", + "L\u00e4nge: 0.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A61 von Niederzissen (AS) nach Brohltal-West (Raststaette) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.232030806, + 50.467604788 + ], + [ + 7.2321213, + 50.467447801 + ], + [ + 7.2322428, + 50.467245101 + ], + [ + 7.232499, + 50.466794301 + ], + [ + 7.232745, + 50.466278201 + ], + [ + 7.23304, + 50.465542901 + ], + [ + 7.2331476, + 50.465201201 + ], + [ + 7.2333193, + 50.464639201 + ], + [ + 7.2334672, + 50.464074401 + ], + [ + 7.2335912, + 50.463507401 + ], + [ + 7.2337051, + 50.462945501 + ], + [ + 7.2338144, + 50.462387301 + ], + [ + 7.2338857, + 50.461829901 + ], + [ + 7.2339132, + 50.461261201 + ], + [ + 7.233911, + 50.460711801 + ], + [ + 7.2338899, + 50.460204101 + ], + [ + 7.233856029, + 50.459944642 + ] + ] + } + }, + { + "identifier": "2026-016479--vi-bs.2026-04-13_08-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.4676047876097,7.232030805640363,50.45994464180673,7.2338560293666605", + "point": "50.4676047876097,7.232030805640363", + "startLcPosition": "85", + "impact": { + "lower": "Brohltal-West", + "upper": "Niederzissen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Koblenz", + "title": "A61 | Niederzissen - Brohltal-West", + "coordinate": { + "lat": 50.4676047876097, + "long": 7.232030805640363 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "", + "A61: M\u00f6nchengladbach -> Koblenz, zwischen AS Niederzissen und 2.0 km vor Brohltal-West", + "", + "L\u00e4nge: 0.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A61 von Niederzissen (AS) nach Brohltal-West (Raststaette) Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.232030806, + 50.467604788 + ], + [ + 7.2321213, + 50.467447801 + ], + [ + 7.2322428, + 50.467245101 + ], + [ + 7.232499, + 50.466794301 + ], + [ + 7.232745, + 50.466278201 + ], + [ + 7.23304, + 50.465542901 + ], + [ + 7.2331476, + 50.465201201 + ], + [ + 7.2333193, + 50.464639201 + ], + [ + 7.2334672, + 50.464074401 + ], + [ + 7.2335912, + 50.463507401 + ], + [ + 7.2337051, + 50.462945501 + ], + [ + 7.2338144, + 50.462387301 + ], + [ + 7.2338857, + 50.461829901 + ], + [ + 7.2339132, + 50.461261201 + ], + [ + 7.233911, + 50.460711801 + ], + [ + 7.2338899, + 50.460204101 + ], + [ + 7.233856029, + 50.459944642 + ] + ] + } + }, + { + "identifier": "2023-000045--vi-bs.2026-03-26_05-00-00-000.devi-zus.2024-03-23_09-00-00-000_001.f.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.77080336668283,6.82365645055374,50.77158737104432,6.822219198413533", + "point": "50.77080336668283,6.82365645055374", + "startLcPosition": "100", + "impact": { + "lower": "Bliesheim", + "upper": "Weilerswist", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> M\u00f6nchengladbach", + "title": "A61 | Weilerswist - Bliesheim", + "startTimestamp": "2026-03-26T05:00:00+01:00", + "coordinate": { + "lat": 50.77080336668283, + "long": 6.82365645055374 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 05:00 Uhr", + "Ende: 12.06.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.27)", + "", + "A61: Koblenz -> M\u00f6nchengladbach, zwischen 3.8 km hinter AS Weilerswist und AK Bliesheim", + "", + "L\u00e4nge: 0.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "BW Merowingerstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.823656451, + 50.770803367 + ], + [ + 6.8231481, + 50.771072101 + ], + [ + 6.8225375, + 50.771407701 + ], + [ + 6.822219198, + 50.771587371 + ] + ] + } + }, + { + "identifier": "2023-000045--vi-bs.2026-03-26_05-00-00-000.devi-zus.2024-03-23_09-00-00-000_001.f.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.77171288802188,6.821996831523379,50.775970805973834,6.816088728712173", + "point": "50.77171288802188,6.821996831523379", + "startLcPosition": "101", + "impact": { + "lower": "Erftstadt", + "upper": "Bliesheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Koblenz -> M\u00f6nchengladbach", + "title": "A61 | Bliesheim - Erftstadt", + "startTimestamp": "2026-03-26T05:00:00+01:00", + "coordinate": { + "lat": 50.77171288802188, + "long": 6.821996831523379 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.03.26 um 05:00 Uhr", + "Ende: 12.06.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.27)", + "", + "A61: Koblenz -> M\u00f6nchengladbach, zwischen AK Bliesheim und 3.4 km vor AS Erftstadt", + "", + "L\u00e4nge: 0.63 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "BW Merowingerstra\u00dfe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.821996832, + 50.771712888 + ], + [ + 6.8219961, + 50.771713301 + ], + [ + 6.8214988, + 50.772016401 + ], + [ + 6.8206542, + 50.772538301 + ], + [ + 6.8198268, + 50.773076401 + ], + [ + 6.8188579, + 50.773749601 + ], + [ + 6.8179403, + 50.774427001 + ], + [ + 6.8170559, + 50.775141301 + ], + [ + 6.8161231, + 50.775939101 + ], + [ + 6.816088729, + 50.775970806 + ] + ] + } + }, + { + "identifier": "2026-017830--vi-bs.2026-04-13_12-00-00-000.devi-zus.2026-04-13_09-00-00-000_011.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.85962761051015,6.716596190114997,50.85896103371984,6.717556589224086", + "point": "50.85962761051015,6.716596190114997", + "startLcPosition": "106", + "impact": { + "lower": "T\u00fcrnich", + "upper": "Kerpen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Koblenz", + "title": "A61 | Kerpen - T\u00fcrnich", + "coordinate": { + "lat": 50.85962761051015, + "long": 6.716596190114997 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 12:00 bis 15:00 Uhr", + "", + "A61: M\u00f6nchengladbach -> Koblenz, zwischen 4.2 km hinter AK Kerpen und AS T\u00fcrnich", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A61 von Kerpen (AK) nach T\u00fcrnich (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.71659619, + 50.859627611 + ], + [ + 6.7173111, + 50.859116001 + ], + [ + 6.717556589, + 50.858961034 + ] + ] + } + }, + { + "identifier": "2026-017830--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_011.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.85962761051015,6.716596190114997,50.85896103371984,6.717556589224086", + "point": "50.85962761051015,6.716596190114997", + "startLcPosition": "106", + "impact": { + "lower": "T\u00fcrnich", + "upper": "Kerpen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Koblenz", + "title": "A61 | Kerpen - T\u00fcrnich", + "coordinate": { + "lat": 50.85962761051015, + "long": 6.716596190114997 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 12:00 Uhr", + "", + "A61: M\u00f6nchengladbach -> Koblenz, zwischen 4.2 km hinter AK Kerpen und AS T\u00fcrnich", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A61 von Kerpen (AK) nach T\u00fcrnich (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.71659619, + 50.859627611 + ], + [ + 6.7173111, + 50.859116001 + ], + [ + 6.717556589, + 50.858961034 + ] + ] + } + }, + { + "identifier": "2026-017830--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_011.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.85962761051015,6.716596190114997,50.85896103371984,6.717556589224086", + "point": "50.85962761051015,6.716596190114997", + "startLcPosition": "106", + "impact": { + "lower": "T\u00fcrnich", + "upper": "Kerpen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Koblenz", + "title": "A61 | Kerpen - T\u00fcrnich", + "coordinate": { + "lat": 50.85962761051015, + "long": 6.716596190114997 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 12:00 Uhr", + "", + "A61: M\u00f6nchengladbach -> Koblenz, zwischen 4.2 km hinter AK Kerpen und AS T\u00fcrnich", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A61 von Kerpen (AK) nach T\u00fcrnich (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.71659619, + 50.859627611 + ], + [ + 6.7173111, + 50.859116001 + ], + [ + 6.717556589, + 50.858961034 + ] + ] + } + }, + { + "identifier": "2025-019025--vi-bs.2026-04-09_09-00-00-000.devi-zus.2025-04-29_09-00-00-000_010.de14", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.94322907155167,6.625153097289654,50.93824758430928,6.645001117236236", + "point": "50.94322907155167,6.625153097289654", + "startLcPosition": "108", + "impact": { + "lower": "Bergheim-S\u00fcd", + "upper": "Bergheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Koblenz", + "title": "A61 | Bergheim - Bergheim-S\u00fcd", + "coordinate": { + "lat": 50.94322907155167, + "long": 6.625153097289654 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 14:00 Uhr", + "", + "A61: M\u00f6nchengladbach -> Koblenz, zwischen 1.6 km hinter AS Bergheim und 0.3 km vor AS Bergheim-S\u00fcd", + "", + "L\u00e4nge: 1.5 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "FB-Reparatur (STRABAG)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.625153097, + 50.943229072 + ], + [ + 6.6294167, + 50.942157501 + ], + [ + 6.6345623, + 50.940866301 + ], + [ + 6.6379672, + 50.940011801 + ], + [ + 6.6429674, + 50.938756901 + ], + [ + 6.645001117, + 50.938247584 + ] + ] + } + }, + { + "identifier": "2023-004472--vi-bs.2026-04-01_00-00-00-000.devi-bs.2025-04-04_00-00-00-000.de16", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.206923264914195,6.378857441887557,51.21826962874866,6.373215885312732", + "point": "51.206923264914195,6.378857441887557", + "startLcPosition": "119", + "impact": { + "lower": "Mackenstein", + "upper": "M\u00f6nchengladbach-Nordpark", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Venlo", + "title": "A61 | M\u00f6nchengladbach-Nordpark - Mackenstein", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 51.206923264914195, + "long": 6.378857441887557 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 21.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.12.26)", + "", + "A61: M\u00f6nchengladbach -> Venlo, zwischen 1.5 km hinter AS M\u00f6nchengladbach-Nordpark und 2.2 km vor AS Mackenstein", + "", + "L\u00e4nge: 1.36 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Br\u00fcckeninstandsetzung BW Hardter Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.378857442, + 51.206923265 + ], + [ + 6.3788587, + 51.206931801 + ], + [ + 6.3789702, + 51.207802101 + ], + [ + 6.3789807, + 51.208330201 + ], + [ + 6.3790044, + 51.208875001 + ], + [ + 6.3789839, + 51.209371201 + ], + [ + 6.3789439, + 51.209922401 + ], + [ + 6.3789213, + 51.210092001 + ], + [ + 6.3788665, + 51.210435501 + ], + [ + 6.3787483, + 51.211086401 + ], + [ + 6.3785361, + 51.211836001 + ], + [ + 6.3783329, + 51.212369601 + ], + [ + 6.3781035, + 51.212925601 + ], + [ + 6.3777884, + 51.213458001 + ], + [ + 6.3775151, + 51.213925401 + ], + [ + 6.3773873, + 51.214135101 + ], + [ + 6.3769611, + 51.214740601 + ], + [ + 6.3765835, + 51.215223401 + ], + [ + 6.3762074, + 51.215663701 + ], + [ + 6.3758107, + 51.216094501 + ], + [ + 6.3755793, + 51.216331201 + ], + [ + 6.375148, + 51.216741001 + ], + [ + 6.3747759, + 51.217065001 + ], + [ + 6.3743979, + 51.217379901 + ], + [ + 6.3738619, + 51.217797801 + ], + [ + 6.3732765, + 51.218226401 + ], + [ + 6.373215885, + 51.218269629 + ] + ] + } + }, + { + "identifier": "2023-004472--vi-bs.2026-04-01_00-00-00-000.devi-bs.2025-04-04_00-00-00-000.de14", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.218283116769406,6.373196972178405,51.23333996108064,6.36169495242122", + "point": "51.218283116769406,6.373196972178405", + "startLcPosition": "120", + "impact": { + "lower": "Mackenstein", + "upper": "M\u00f6nchengladbach", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00f6nchengladbach -> Venlo", + "title": "A61 | M\u00f6nchengladbach - Mackenstein", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 51.218283116769406, + "long": 6.373196972178405 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 21.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.12.26)", + "", + "A61: M\u00f6nchengladbach -> Venlo, zwischen 1.0 km hinter AK M\u00f6nchengladbach und 0.3 km vor AS Mackenstein", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Br\u00fcckeninstandsetzung BW Hardter Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.373196972, + 51.218283117 + ], + [ + 6.3726483, + 51.218674401 + ], + [ + 6.3715456, + 51.219425301 + ], + [ + 6.3713757, + 51.219544801 + ], + [ + 6.370482, + 51.220153301 + ], + [ + 6.3697944, + 51.220636101 + ], + [ + 6.3693798, + 51.220939801 + ], + [ + 6.3688607, + 51.221329001 + ], + [ + 6.3683108, + 51.221776101 + ], + [ + 6.3678751, + 51.222142401 + ], + [ + 6.3672826, + 51.222695701 + ], + [ + 6.366635, + 51.223351901 + ], + [ + 6.3660761, + 51.223988201 + ], + [ + 6.3656317, + 51.224559001 + ], + [ + 6.3651719, + 51.225192401 + ], + [ + 6.3647601, + 51.225813401 + ], + [ + 6.3644487, + 51.226291001 + ], + [ + 6.364171, + 51.226772801 + ], + [ + 6.3640086, + 51.227058701 + ], + [ + 6.3634462, + 51.228135801 + ], + [ + 6.3630144, + 51.229097101 + ], + [ + 6.3627349, + 51.229812001 + ], + [ + 6.3624519, + 51.230666901 + ], + [ + 6.3621832, + 51.231554201 + ], + [ + 6.3620218, + 51.232113101 + ], + [ + 6.3618385, + 51.232770701 + ], + [ + 6.3617473, + 51.233133101 + ], + [ + 6.361694952, + 51.233339961 + ] + ] + } + }, + { + "identifier": "2023-004472--vi-bs.2026-04-01_00-00-00-000.devi-bs.2025-04-04_00-00-00-000.de12", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.23332419640009,6.361536069957207,51.21821575129676,6.373075916287069", + "point": "51.23332419640009,6.361536069957207", + "startLcPosition": "121", + "impact": { + "lower": "M\u00f6nchengladbach", + "upper": "Mackenstein", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Venlo -> M\u00f6nchengladbach", + "title": "A61 | Mackenstein - M\u00f6nchengladbach", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 51.23332419640009, + "long": 6.361536069957207 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 21.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.12.26)", + "", + "A61: Venlo -> M\u00f6nchengladbach, zwischen 0.3 km hinter AS Mackenstein und 0.9 km vor AK M\u00f6nchengladbach", + "", + "L\u00e4nge: 1.9 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "Br\u00fcckeninstandsetzung BW Hardter Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.36153607, + 51.233324196 + ], + [ + 6.3616788, + 51.232754101 + ], + [ + 6.3619452, + 51.231787801 + ], + [ + 6.3620433, + 51.231452801 + ], + [ + 6.362286, + 51.230650801 + ], + [ + 6.3625705, + 51.229785501 + ], + [ + 6.3628538, + 51.229068101 + ], + [ + 6.3632864, + 51.228112101 + ], + [ + 6.3636089, + 51.227476101 + ], + [ + 6.3638483, + 51.227023901 + ], + [ + 6.3643033, + 51.226264301 + ], + [ + 6.3646036, + 51.225789201 + ], + [ + 6.3650173, + 51.225147701 + ], + [ + 6.3654849, + 51.224521601 + ], + [ + 6.3659399, + 51.223943801 + ], + [ + 6.3662203, + 51.223618501 + ], + [ + 6.3665103, + 51.223296201 + ], + [ + 6.3667406, + 51.223049301 + ], + [ + 6.3671485, + 51.222638701 + ], + [ + 6.3677263, + 51.222096201 + ], + [ + 6.3681923, + 51.221700201 + ], + [ + 6.3685667, + 51.221395901 + ], + [ + 6.3691584, + 51.220936101 + ], + [ + 6.3696675, + 51.220566701 + ], + [ + 6.3711636, + 51.219531601 + ], + [ + 6.3716709, + 51.219192001 + ], + [ + 6.3725357, + 51.218596401 + ], + [ + 6.373075916, + 51.218215751 + ] + ] + } + } + ] + }, + "A62": { + "roadworks": [ + { + "identifier": "2025-034432--vi-bs.2025-08-02_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.59611427945183,7.040023571322573,49.59611508844168,7.0426409842828726", + "point": "49.59611427945183,7.040023571322573", + "startLcPosition": "1", + "impact": { + "lower": "S\u00f6tern", + "upper": "Nonnweiler-Otzenhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Nonnweiler -> Landstuhl", + "title": "A62 | Nonnweiler-Otzenhausen - S\u00f6tern", + "startTimestamp": "2025-08-02T00:00:00+02:00", + "coordinate": { + "lat": 49.59611427945183, + "long": 7.040023571322573 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.08.25 um 00:00 Uhr", + "Ende: 30.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.08.26)", + "", + "A62: Nonnweiler -> Landstuhl, zwischen 4.2 km hinter AS Nonnweiler-Otzenhausen und 0.3 km vor S\u00f6tern", + "", + "L\u00e4nge: 0.19 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A62 Arbeiten an Parkpl\u00e4tzen (S\u00f6tern)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.040023571, + 49.596114279 + ], + [ + 7.0407732, + 49.596139201 + ], + [ + 7.0416475, + 49.596141201 + ], + [ + 7.0422205, + 49.596130001 + ], + [ + 7.042640984, + 49.596115088 + ] + ] + } + } + ] + }, + "A63": { + "roadworks": [ + { + "identifier": "2026-010539--vi-bs.2026-02-09_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.469813253054184,7.825266562409656,49.49882975183886,7.843315901740155", + "point": "49.469813253054184,7.825266562409656", + "startLcPosition": "1", + "impact": { + "lower": "Sembach", + "upper": "Kaiserslautern Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kaiserslautern -> Mainz", + "title": "A63 | Kaiserslautern Zentrum - Sembach", + "startTimestamp": "2026-02-09T00:00:00+01:00", + "coordinate": { + "lat": 49.469813253054184, + "long": 7.825266562409656 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.02.26 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A63: Kaiserslautern -> Mainz, zwischen 1.8 km hinter AS Kaiserslautern Zentrum und 1.3 km vor AS Sembach", + "", + "L\u00e4nge: 3.6 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A63 von Kaiserslautern Zentrum (AS) nach Sembach (AS) Akute Verkehrsgef\u00e4hrdung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.825266562, + 49.469813253 + ], + [ + 7.8253098, + 49.470280201 + ], + [ + 7.8253763, + 49.470604301 + ], + [ + 7.8254542, + 49.470930101 + ], + [ + 7.8255495, + 49.471260101 + ], + [ + 7.8256764, + 49.471564201 + ], + [ + 7.8257826, + 49.471792701 + ], + [ + 7.8261175, + 49.472354801 + ], + [ + 7.826374, + 49.472707501 + ], + [ + 7.8265206, + 49.472899501 + ], + [ + 7.8269075, + 49.473310801 + ], + [ + 7.8272987, + 49.473662701 + ], + [ + 7.827713, + 49.473999001 + ], + [ + 7.8280601, + 49.474265601 + ], + [ + 7.8286758, + 49.474708801 + ], + [ + 7.8293944, + 49.475217201 + ], + [ + 7.8303437, + 49.475862501 + ], + [ + 7.8316441, + 49.476760101 + ], + [ + 7.8322778, + 49.477194401 + ], + [ + 7.8335556, + 49.478083301 + ], + [ + 7.8350968, + 49.479264501 + ], + [ + 7.8356659, + 49.479736101 + ], + [ + 7.8362019, + 49.480207001 + ], + [ + 7.837049, + 49.481002501 + ], + [ + 7.8376889, + 49.481656901 + ], + [ + 7.8382592, + 49.482308201 + ], + [ + 7.8387816, + 49.482942501 + ], + [ + 7.8394114, + 49.483775301 + ], + [ + 7.8397886, + 49.484328301 + ], + [ + 7.8400148, + 49.484670501 + ], + [ + 7.8405245, + 49.485549201 + ], + [ + 7.8408904, + 49.486252801 + ], + [ + 7.8411736, + 49.486855001 + ], + [ + 7.841362, + 49.487288401 + ], + [ + 7.8414908, + 49.487596801 + ], + [ + 7.8418211, + 49.488544801 + ], + [ + 7.8420204, + 49.489271701 + ], + [ + 7.8421542, + 49.489803301 + ], + [ + 7.842226, + 49.490163801 + ], + [ + 7.8423982, + 49.491090501 + ], + [ + 7.8426477, + 49.493129101 + ], + [ + 7.8428611, + 49.494888901 + ], + [ + 7.8430556, + 49.496527801 + ], + [ + 7.8432875, + 49.498553701 + ], + [ + 7.843315902, + 49.498829752 + ] + ] + } + }, + { + "identifier": "2026-016477--vi-bs.2026-04-14_09-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.78066135979775,8.121696922617849,49.7727904064482,8.105406395122772", + "point": "49.78066135979775,8.121696922617849", + "startLcPosition": "13", + "impact": { + "lower": "Erbes-B\u00fcdesheim", + "upper": "Biebelnheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mainz -> Kaiserslautern", + "title": "A63 | Biebelnheim - Erbes-B\u00fcdesheim", + "coordinate": { + "lat": 49.78066135979775, + "long": 8.121696922617849 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:30 Uhr", + "", + "A63: Mainz -> Kaiserslautern, zwischen 1.9 km hinter AS Biebelnheim und 3.2 km vor AS Erbes-B\u00fcdesheim", + "", + "L\u00e4nge: 1.46 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A63 von Alzey (AK) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.121696923, + 49.78066136 + ], + [ + 8.1199571, + 49.779821101 + ], + [ + 8.1159537, + 49.777904501 + ], + [ + 8.1145225, + 49.777208801 + ], + [ + 8.1142017, + 49.777058601 + ], + [ + 8.1134558, + 49.776705101 + ], + [ + 8.1131978, + 49.776578201 + ], + [ + 8.1130095, + 49.776489701 + ], + [ + 8.1126067, + 49.776290601 + ], + [ + 8.1118189, + 49.775910501 + ], + [ + 8.1116079, + 49.775809701 + ], + [ + 8.1109724, + 49.775503301 + ], + [ + 8.1102644, + 49.775166201 + ], + [ + 8.109472, + 49.774789701 + ], + [ + 8.1082145, + 49.774179801 + ], + [ + 8.1062372, + 49.773214001 + ], + [ + 8.105406395, + 49.772790406 + ] + ] + } + } + ] + }, + "A64": { + "roadworks": [ + { + "identifier": "2026-015734--vi-bs.2026-04-15_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.75394800737475,6.569065821596854,49.755365852943676,6.570772815077527", + "point": "49.75394800737475,6.569065821596854", + "startLcPosition": "1", + "impact": { + "lower": "Markusberg", + "upper": "Sauertalbr\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Luxemburg -> Trier", + "title": "A64 | Sauertalbr\u00fccke - Markusberg", + "coordinate": { + "lat": 49.75394800737475, + "long": 6.569065821596854 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 15:00 Uhr", + "", + "A64: Luxemburg -> Trier, zwischen 5.5 km hinter Sauertalbr\u00fccke und 0.5 km vor Markusberg", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A64 von Sauertalbr\u00fccke nach Markusberg (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.569065822, + 49.753948007 + ], + [ + 6.5697354, + 49.754504201 + ], + [ + 6.5703516, + 49.755016001 + ], + [ + 6.570772815, + 49.755365853 + ] + ] + } + }, + { + "identifier": "2024-057995--vi-bs.2024-11-29_00-00-00-000.f_012.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.78336675653862,6.638340603545658,49.78825220594022,6.644781707476541", + "point": "49.78336675653862,6.638340603545658", + "startLcPosition": "4", + "impact": { + "lower": "Anschluss B52-Trier", + "upper": "Trier", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Luxemburg -> Trier", + "title": "A64 | Trier - Anschluss B52-Trier", + "startTimestamp": "2024-12-02T00:00:00+01:00", + "coordinate": { + "lat": 49.78336675653862, + "long": 6.638340603545658 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.12.24 um 00:00 Uhr", + "Ende: 16.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 16.09.26)", + "", + "A64: Luxemburg -> Trier, zwischen 2.9 km hinter AS Trier und 1.3 km vor Anschluss B52-Trier", + "", + "L\u00e4nge: 0.71 km | Max. 20 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A64 Biewertalbr\u00fccke in FR Trier Grenzkontrolle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.638340604, + 49.783366757 + ], + [ + 6.638933, + 49.783742701 + ], + [ + 6.6396696, + 49.784231701 + ], + [ + 6.6407779, + 49.785027801 + ], + [ + 6.641711, + 49.785735201 + ], + [ + 6.6423214, + 49.786198701 + ], + [ + 6.6436431, + 49.787243401 + ], + [ + 6.6446096, + 49.788108201 + ], + [ + 6.644781707, + 49.788252206 + ] + ] + } + } + ] + }, + "A65": { + "roadworks": [ + { + "identifier": "2026-017319--vi-fbm.2026-04-08_08-00-00-000.devi-zus.2026-04-08_08-00-00-000_007.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.30645090176922,8.155537129464754,49.378780855225514,8.228624560408214", + "point": "49.30645090176922,8.155537129464754", + "startLcPosition": "14", + "impact": { + "lower": "Hassloch", + "upper": "Edenkoben", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Landau -> Ludwigshafen", + "title": "A65 | Edenkoben - Hassloch", + "coordinate": { + "lat": 49.30645090176922, + "long": 8.155537129464754 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "10.04.26 von 08:00 bis 16:00 Uhr", + "Jeden Montag und Montag zwischen dem 13.04.26 und dem 13.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A65: Landau -> Ludwigshafen, zwischen 2.2 km hinter AS Edenkoben und 1.6 km vor AS Hassloch", + "", + "L\u00e4nge: 10.12 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A65 von Hassloch bis Edenkoben (AS)Aufbau Verkehrsf\u00fchrung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.155537129, + 49.306450902 + ], + [ + 8.1561159, + 49.307317401 + ], + [ + 8.1565822, + 49.307953101 + ], + [ + 8.1570822, + 49.308593201 + ], + [ + 8.1576253, + 49.309243401 + ], + [ + 8.1582016, + 49.309886801 + ], + [ + 8.1587261, + 49.310440501 + ], + [ + 8.1592707, + 49.310994001 + ], + [ + 8.1598492, + 49.311552601 + ], + [ + 8.1604466, + 49.312101701 + ], + [ + 8.1608998, + 49.312505001 + ], + [ + 8.1613752, + 49.312914901 + ], + [ + 8.1623076, + 49.313693901 + ], + [ + 8.1632334, + 49.314444201 + ], + [ + 8.1641654, + 49.315169401 + ], + [ + 8.1657043, + 49.316344201 + ], + [ + 8.167282, + 49.317528001 + ], + [ + 8.1688329, + 49.318697301 + ], + [ + 8.170349, + 49.319847401 + ], + [ + 8.1715409, + 49.320763601 + ], + [ + 8.1727034, + 49.321671501 + ], + [ + 8.1741139, + 49.322795201 + ], + [ + 8.1757764, + 49.324171001 + ], + [ + 8.1766203, + 49.324908001 + ], + [ + 8.1775365, + 49.325708101 + ], + [ + 8.1783977, + 49.326491501 + ], + [ + 8.1795601, + 49.327602301 + ], + [ + 8.1799723, + 49.328002401 + ], + [ + 8.1805516, + 49.328588901 + ], + [ + 8.1816884, + 49.329785001 + ], + [ + 8.1822375, + 49.330390101 + ], + [ + 8.182879, + 49.331110601 + ], + [ + 8.1837875, + 49.332195001 + ], + [ + 8.1848503, + 49.333545101 + ], + [ + 8.1858735, + 49.334917601 + ], + [ + 8.1868744, + 49.336385801 + ], + [ + 8.1878056, + 49.337876401 + ], + [ + 8.1884816, + 49.339034601 + ], + [ + 8.1891139, + 49.340188001 + ], + [ + 8.1900042, + 49.341955701 + ], + [ + 8.1908287, + 49.343722501 + ], + [ + 8.1915973, + 49.345508801 + ], + [ + 8.1923099, + 49.347309701 + ], + [ + 8.1927611, + 49.348518301 + ], + [ + 8.1928433, + 49.348735901 + ], + [ + 8.1931423, + 49.349555401 + ], + [ + 8.1934243, + 49.350356301 + ], + [ + 8.1939715, + 49.351962601 + ], + [ + 8.1945111, + 49.353544601 + ], + [ + 8.1950468, + 49.355157401 + ], + [ + 8.1951107, + 49.355349801 + ], + [ + 8.1955113, + 49.356555801 + ], + [ + 8.1959432, + 49.357845701 + ], + [ + 8.1960757, + 49.358223101 + ], + [ + 8.1966085, + 49.359654701 + ], + [ + 8.1968699, + 49.360311001 + ], + [ + 8.1974973, + 49.361747801 + ], + [ + 8.1978124, + 49.362397301 + ], + [ + 8.1980715, + 49.362914301 + ], + [ + 8.1982524, + 49.363240901 + ], + [ + 8.198554, + 49.363774501 + ], + [ + 8.1991101, + 49.364668801 + ], + [ + 8.1996102, + 49.365413301 + ], + [ + 8.2001257, + 49.366150901 + ], + [ + 8.2007392, + 49.366928301 + ], + [ + 8.2017367, + 49.368048701 + ], + [ + 8.2031246, + 49.369409301 + ], + [ + 8.204258, + 49.370363001 + ], + [ + 8.2048644, + 49.370834801 + ], + [ + 8.2054815, + 49.371295801 + ], + [ + 8.2060521, + 49.371701401 + ], + [ + 8.2066441, + 49.372095901 + ], + [ + 8.2078231, + 49.372834601 + ], + [ + 8.2089566, + 49.373474401 + ], + [ + 8.209785, + 49.373910901 + ], + [ + 8.2104881, + 49.374263101 + ], + [ + 8.2117213, + 49.374839501 + ], + [ + 8.2128924, + 49.375333901 + ], + [ + 8.2134272, + 49.375545201 + ], + [ + 8.2139677, + 49.375750101 + ], + [ + 8.2145139, + 49.375948701 + ], + [ + 8.2150654, + 49.376140801 + ], + [ + 8.2156222, + 49.376326401 + ], + [ + 8.216184, + 49.376505501 + ], + [ + 8.2167507, + 49.376677901 + ], + [ + 8.2173907, + 49.376863101 + ], + [ + 8.2180363, + 49.377039801 + ], + [ + 8.2186872, + 49.377207901 + ], + [ + 8.2193433, + 49.377367501 + ], + [ + 8.2200041, + 49.377518401 + ], + [ + 8.2206695, + 49.377660701 + ], + [ + 8.2213392, + 49.377794101 + ], + [ + 8.2220128, + 49.377918701 + ], + [ + 8.2226902, + 49.378034501 + ], + [ + 8.223371, + 49.378141301 + ], + [ + 8.224055, + 49.378239201 + ], + [ + 8.225488, + 49.378422701 + ], + [ + 8.2266755, + 49.378570201 + ], + [ + 8.228141, + 49.378729101 + ], + [ + 8.22862456, + 49.378780855 + ] + ] + } + }, + { + "identifier": "2026-017319--vi-fbm.2026-04-08_08-00-00-000.devi-zus.2026-04-08_08-00-00-000_007.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.30645090176922,8.155537129464754,49.378780855225514,8.228624560408214", + "point": "49.30645090176922,8.155537129464754", + "startLcPosition": "14", + "impact": { + "lower": "Hassloch", + "upper": "Edenkoben", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Landau -> Ludwigshafen", + "title": "A65 | Edenkoben - Hassloch", + "coordinate": { + "lat": 49.30645090176922, + "long": 8.155537129464754 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "10.04.26 von 08:00 bis 16:00 Uhr", + "14.04.26 von 08:00 bis 16:00 Uhr", + "", + "A65: Landau -> Ludwigshafen, zwischen 2.2 km hinter AS Edenkoben und 1.6 km vor AS Hassloch", + "", + "L\u00e4nge: 10.12 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A65 von Hassloch bis Edenkoben (AS)Aufbau Verkehrsf\u00fchrung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.155537129, + 49.306450902 + ], + [ + 8.1561159, + 49.307317401 + ], + [ + 8.1565822, + 49.307953101 + ], + [ + 8.1570822, + 49.308593201 + ], + [ + 8.1576253, + 49.309243401 + ], + [ + 8.1582016, + 49.309886801 + ], + [ + 8.1587261, + 49.310440501 + ], + [ + 8.1592707, + 49.310994001 + ], + [ + 8.1598492, + 49.311552601 + ], + [ + 8.1604466, + 49.312101701 + ], + [ + 8.1608998, + 49.312505001 + ], + [ + 8.1613752, + 49.312914901 + ], + [ + 8.1623076, + 49.313693901 + ], + [ + 8.1632334, + 49.314444201 + ], + [ + 8.1641654, + 49.315169401 + ], + [ + 8.1657043, + 49.316344201 + ], + [ + 8.167282, + 49.317528001 + ], + [ + 8.1688329, + 49.318697301 + ], + [ + 8.170349, + 49.319847401 + ], + [ + 8.1715409, + 49.320763601 + ], + [ + 8.1727034, + 49.321671501 + ], + [ + 8.1741139, + 49.322795201 + ], + [ + 8.1757764, + 49.324171001 + ], + [ + 8.1766203, + 49.324908001 + ], + [ + 8.1775365, + 49.325708101 + ], + [ + 8.1783977, + 49.326491501 + ], + [ + 8.1795601, + 49.327602301 + ], + [ + 8.1799723, + 49.328002401 + ], + [ + 8.1805516, + 49.328588901 + ], + [ + 8.1816884, + 49.329785001 + ], + [ + 8.1822375, + 49.330390101 + ], + [ + 8.182879, + 49.331110601 + ], + [ + 8.1837875, + 49.332195001 + ], + [ + 8.1848503, + 49.333545101 + ], + [ + 8.1858735, + 49.334917601 + ], + [ + 8.1868744, + 49.336385801 + ], + [ + 8.1878056, + 49.337876401 + ], + [ + 8.1884816, + 49.339034601 + ], + [ + 8.1891139, + 49.340188001 + ], + [ + 8.1900042, + 49.341955701 + ], + [ + 8.1908287, + 49.343722501 + ], + [ + 8.1915973, + 49.345508801 + ], + [ + 8.1923099, + 49.347309701 + ], + [ + 8.1927611, + 49.348518301 + ], + [ + 8.1928433, + 49.348735901 + ], + [ + 8.1931423, + 49.349555401 + ], + [ + 8.1934243, + 49.350356301 + ], + [ + 8.1939715, + 49.351962601 + ], + [ + 8.1945111, + 49.353544601 + ], + [ + 8.1950468, + 49.355157401 + ], + [ + 8.1951107, + 49.355349801 + ], + [ + 8.1955113, + 49.356555801 + ], + [ + 8.1959432, + 49.357845701 + ], + [ + 8.1960757, + 49.358223101 + ], + [ + 8.1966085, + 49.359654701 + ], + [ + 8.1968699, + 49.360311001 + ], + [ + 8.1974973, + 49.361747801 + ], + [ + 8.1978124, + 49.362397301 + ], + [ + 8.1980715, + 49.362914301 + ], + [ + 8.1982524, + 49.363240901 + ], + [ + 8.198554, + 49.363774501 + ], + [ + 8.1991101, + 49.364668801 + ], + [ + 8.1996102, + 49.365413301 + ], + [ + 8.2001257, + 49.366150901 + ], + [ + 8.2007392, + 49.366928301 + ], + [ + 8.2017367, + 49.368048701 + ], + [ + 8.2031246, + 49.369409301 + ], + [ + 8.204258, + 49.370363001 + ], + [ + 8.2048644, + 49.370834801 + ], + [ + 8.2054815, + 49.371295801 + ], + [ + 8.2060521, + 49.371701401 + ], + [ + 8.2066441, + 49.372095901 + ], + [ + 8.2078231, + 49.372834601 + ], + [ + 8.2089566, + 49.373474401 + ], + [ + 8.209785, + 49.373910901 + ], + [ + 8.2104881, + 49.374263101 + ], + [ + 8.2117213, + 49.374839501 + ], + [ + 8.2128924, + 49.375333901 + ], + [ + 8.2134272, + 49.375545201 + ], + [ + 8.2139677, + 49.375750101 + ], + [ + 8.2145139, + 49.375948701 + ], + [ + 8.2150654, + 49.376140801 + ], + [ + 8.2156222, + 49.376326401 + ], + [ + 8.216184, + 49.376505501 + ], + [ + 8.2167507, + 49.376677901 + ], + [ + 8.2173907, + 49.376863101 + ], + [ + 8.2180363, + 49.377039801 + ], + [ + 8.2186872, + 49.377207901 + ], + [ + 8.2193433, + 49.377367501 + ], + [ + 8.2200041, + 49.377518401 + ], + [ + 8.2206695, + 49.377660701 + ], + [ + 8.2213392, + 49.377794101 + ], + [ + 8.2220128, + 49.377918701 + ], + [ + 8.2226902, + 49.378034501 + ], + [ + 8.223371, + 49.378141301 + ], + [ + 8.224055, + 49.378239201 + ], + [ + 8.225488, + 49.378422701 + ], + [ + 8.2266755, + 49.378570201 + ], + [ + 8.228141, + 49.378729101 + ], + [ + 8.22862456, + 49.378780855 + ] + ] + } + }, + { + "identifier": "2026-017319--vi-fbm.2026-04-08_08-00-00-000.devi-zus.2026-04-08_08-00-00-000_007.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.378877509989294,8.228600395268565,49.30648969325203,8.155400904997121", + "point": "49.378877509989294,8.228600395268565", + "startLcPosition": "18", + "impact": { + "lower": "Edenkoben", + "upper": "Hassloch", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ludwigshafen -> Landau", + "title": "A65 | Hassloch - Edenkoben", + "coordinate": { + "lat": 49.378877509989294, + "long": 8.228600395268565 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "10.04.26 von 08:00 bis 16:00 Uhr", + "Jeden Montag und Montag zwischen dem 13.04.26 und dem 13.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A65: Ludwigshafen -> Landau, zwischen 1.6 km hinter AS Hassloch und 2.2 km vor AS Edenkoben", + "", + "L\u00e4nge: 10.12 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A65 von Hassloch bis Edenkoben (AS)Aufbau Verkehrsf\u00fchrung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.228600395, + 49.37887751 + ], + [ + 8.2281311, + 49.378827801 + ], + [ + 8.2266626, + 49.378669301 + ], + [ + 8.2254572, + 49.378519401 + ], + [ + 8.2240322, + 49.378329501 + ], + [ + 8.2227241, + 49.378121701 + ], + [ + 8.2223509, + 49.378060801 + ], + [ + 8.2219789, + 49.377997101 + ], + [ + 8.2215018, + 49.377911101 + ], + [ + 8.2210267, + 49.377820601 + ], + [ + 8.2205537, + 49.377725601 + ], + [ + 8.2198971, + 49.377586101 + ], + [ + 8.2192451, + 49.377438101 + ], + [ + 8.2185978, + 49.377281401 + ], + [ + 8.2179555, + 49.377116301 + ], + [ + 8.2173186, + 49.376942601 + ], + [ + 8.2166871, + 49.376760601 + ], + [ + 8.2161199, + 49.376588501 + ], + [ + 8.2155576, + 49.376409701 + ], + [ + 8.2150004, + 49.376224101 + ], + [ + 8.2144486, + 49.376031901 + ], + [ + 8.2139023, + 49.375833101 + ], + [ + 8.2133617, + 49.375627801 + ], + [ + 8.212827, + 49.375416101 + ], + [ + 8.2120984, + 49.375115301 + ], + [ + 8.21165, + 49.374922701 + ], + [ + 8.2109061, + 49.374584601 + ], + [ + 8.2106065, + 49.374444201 + ], + [ + 8.20967, + 49.373985101 + ], + [ + 8.208859, + 49.373555801 + ], + [ + 8.208269, + 49.373231801 + ], + [ + 8.2076912, + 49.372890601 + ], + [ + 8.2065229, + 49.372162301 + ], + [ + 8.2053747, + 49.371372501 + ], + [ + 8.2047245, + 49.370899301 + ], + [ + 8.2041212, + 49.370422801 + ], + [ + 8.203539, + 49.369950901 + ], + [ + 8.2029903, + 49.369456401 + ], + [ + 8.2025063, + 49.369013001 + ], + [ + 8.2016115, + 49.368109001 + ], + [ + 8.2006145, + 49.366987801 + ], + [ + 8.1999822, + 49.366177701 + ], + [ + 8.1994543, + 49.365448301 + ], + [ + 8.1989586, + 49.364703001 + ], + [ + 8.1986801, + 49.364274201 + ], + [ + 8.1983973, + 49.363793901 + ], + [ + 8.1980833, + 49.363229701 + ], + [ + 8.1978379, + 49.362763201 + ], + [ + 8.1974748, + 49.362040701 + ], + [ + 8.1971017, + 49.361219901 + ], + [ + 8.1967178, + 49.360329801 + ], + [ + 8.1963185, + 49.359279901 + ], + [ + 8.1959062, + 49.358190601 + ], + [ + 8.195773, + 49.357801901 + ], + [ + 8.1950448, + 49.355654901 + ], + [ + 8.1949546, + 49.355382301 + ], + [ + 8.1948914, + 49.355191701 + ], + [ + 8.1946202, + 49.354372301 + ], + [ + 8.1943595, + 49.353576701 + ], + [ + 8.1938195, + 49.351976201 + ], + [ + 8.1929915, + 49.349587701 + ], + [ + 8.192716, + 49.348807401 + ], + [ + 8.1926449, + 49.348620501 + ], + [ + 8.1921655, + 49.347347701 + ], + [ + 8.1914489, + 49.345538001 + ], + [ + 8.190668, + 49.343722301 + ], + [ + 8.1898498, + 49.341966701 + ], + [ + 8.1889672, + 49.340208701 + ], + [ + 8.1883305, + 49.339053101 + ], + [ + 8.1876574, + 49.337900301 + ], + [ + 8.186756, + 49.336463001 + ], + [ + 8.1857225, + 49.334942001 + ], + [ + 8.184717, + 49.333571301 + ], + [ + 8.1838731, + 49.332519201 + ], + [ + 8.1836538, + 49.332245801 + ], + [ + 8.1829474, + 49.331409101 + ], + [ + 8.1827156, + 49.331134501 + ], + [ + 8.1821001, + 49.330428201 + ], + [ + 8.1815426, + 49.329820201 + ], + [ + 8.180415, + 49.328636701 + ], + [ + 8.1794161, + 49.327637501 + ], + [ + 8.1782948, + 49.326565401 + ], + [ + 8.1776439, + 49.325976701 + ], + [ + 8.1774144, + 49.325769101 + ], + [ + 8.1756462, + 49.324229401 + ], + [ + 8.1739977, + 49.322859301 + ], + [ + 8.172598, + 49.321739901 + ], + [ + 8.1714169, + 49.320816401 + ], + [ + 8.1702275, + 49.319907201 + ], + [ + 8.1687126, + 49.318756201 + ], + [ + 8.1655794, + 49.316399101 + ], + [ + 8.1640485, + 49.315229801 + ], + [ + 8.1631194, + 49.314505901 + ], + [ + 8.1621824, + 49.313755501 + ], + [ + 8.1612525, + 49.312972601 + ], + [ + 8.1607697, + 49.312550101 + ], + [ + 8.16032, + 49.312151601 + ], + [ + 8.1597239, + 49.311602001 + ], + [ + 8.1591512, + 49.311055701 + ], + [ + 8.1586008, + 49.310498901 + ], + [ + 8.1580712, + 49.309941301 + ], + [ + 8.1574903, + 49.309288801 + ], + [ + 8.1569425, + 49.308638201 + ], + [ + 8.1564429, + 49.307992101 + ], + [ + 8.1559789, + 49.307361401 + ], + [ + 8.155400905, + 49.306489693 + ] + ] + } + }, + { + "identifier": "2026-017319--vi-fbm.2026-04-08_08-00-00-000.devi-zus.2026-04-08_08-00-00-000_007.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.378877509989294,8.228600395268565,49.30648969325203,8.155400904997121", + "point": "49.378877509989294,8.228600395268565", + "startLcPosition": "18", + "impact": { + "lower": "Edenkoben", + "upper": "Hassloch", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Ludwigshafen -> Landau", + "title": "A65 | Hassloch - Edenkoben", + "coordinate": { + "lat": 49.378877509989294, + "long": 8.228600395268565 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "10.04.26 von 08:00 bis 16:00 Uhr", + "14.04.26 von 08:00 bis 16:00 Uhr", + "", + "A65: Ludwigshafen -> Landau, zwischen 1.6 km hinter AS Hassloch und 2.2 km vor AS Edenkoben", + "", + "L\u00e4nge: 10.12 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A65 von Hassloch bis Edenkoben (AS)Aufbau Verkehrsf\u00fchrung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.228600395, + 49.37887751 + ], + [ + 8.2281311, + 49.378827801 + ], + [ + 8.2266626, + 49.378669301 + ], + [ + 8.2254572, + 49.378519401 + ], + [ + 8.2240322, + 49.378329501 + ], + [ + 8.2227241, + 49.378121701 + ], + [ + 8.2223509, + 49.378060801 + ], + [ + 8.2219789, + 49.377997101 + ], + [ + 8.2215018, + 49.377911101 + ], + [ + 8.2210267, + 49.377820601 + ], + [ + 8.2205537, + 49.377725601 + ], + [ + 8.2198971, + 49.377586101 + ], + [ + 8.2192451, + 49.377438101 + ], + [ + 8.2185978, + 49.377281401 + ], + [ + 8.2179555, + 49.377116301 + ], + [ + 8.2173186, + 49.376942601 + ], + [ + 8.2166871, + 49.376760601 + ], + [ + 8.2161199, + 49.376588501 + ], + [ + 8.2155576, + 49.376409701 + ], + [ + 8.2150004, + 49.376224101 + ], + [ + 8.2144486, + 49.376031901 + ], + [ + 8.2139023, + 49.375833101 + ], + [ + 8.2133617, + 49.375627801 + ], + [ + 8.212827, + 49.375416101 + ], + [ + 8.2120984, + 49.375115301 + ], + [ + 8.21165, + 49.374922701 + ], + [ + 8.2109061, + 49.374584601 + ], + [ + 8.2106065, + 49.374444201 + ], + [ + 8.20967, + 49.373985101 + ], + [ + 8.208859, + 49.373555801 + ], + [ + 8.208269, + 49.373231801 + ], + [ + 8.2076912, + 49.372890601 + ], + [ + 8.2065229, + 49.372162301 + ], + [ + 8.2053747, + 49.371372501 + ], + [ + 8.2047245, + 49.370899301 + ], + [ + 8.2041212, + 49.370422801 + ], + [ + 8.203539, + 49.369950901 + ], + [ + 8.2029903, + 49.369456401 + ], + [ + 8.2025063, + 49.369013001 + ], + [ + 8.2016115, + 49.368109001 + ], + [ + 8.2006145, + 49.366987801 + ], + [ + 8.1999822, + 49.366177701 + ], + [ + 8.1994543, + 49.365448301 + ], + [ + 8.1989586, + 49.364703001 + ], + [ + 8.1986801, + 49.364274201 + ], + [ + 8.1983973, + 49.363793901 + ], + [ + 8.1980833, + 49.363229701 + ], + [ + 8.1978379, + 49.362763201 + ], + [ + 8.1974748, + 49.362040701 + ], + [ + 8.1971017, + 49.361219901 + ], + [ + 8.1967178, + 49.360329801 + ], + [ + 8.1963185, + 49.359279901 + ], + [ + 8.1959062, + 49.358190601 + ], + [ + 8.195773, + 49.357801901 + ], + [ + 8.1950448, + 49.355654901 + ], + [ + 8.1949546, + 49.355382301 + ], + [ + 8.1948914, + 49.355191701 + ], + [ + 8.1946202, + 49.354372301 + ], + [ + 8.1943595, + 49.353576701 + ], + [ + 8.1938195, + 49.351976201 + ], + [ + 8.1929915, + 49.349587701 + ], + [ + 8.192716, + 49.348807401 + ], + [ + 8.1926449, + 49.348620501 + ], + [ + 8.1921655, + 49.347347701 + ], + [ + 8.1914489, + 49.345538001 + ], + [ + 8.190668, + 49.343722301 + ], + [ + 8.1898498, + 49.341966701 + ], + [ + 8.1889672, + 49.340208701 + ], + [ + 8.1883305, + 49.339053101 + ], + [ + 8.1876574, + 49.337900301 + ], + [ + 8.186756, + 49.336463001 + ], + [ + 8.1857225, + 49.334942001 + ], + [ + 8.184717, + 49.333571301 + ], + [ + 8.1838731, + 49.332519201 + ], + [ + 8.1836538, + 49.332245801 + ], + [ + 8.1829474, + 49.331409101 + ], + [ + 8.1827156, + 49.331134501 + ], + [ + 8.1821001, + 49.330428201 + ], + [ + 8.1815426, + 49.329820201 + ], + [ + 8.180415, + 49.328636701 + ], + [ + 8.1794161, + 49.327637501 + ], + [ + 8.1782948, + 49.326565401 + ], + [ + 8.1776439, + 49.325976701 + ], + [ + 8.1774144, + 49.325769101 + ], + [ + 8.1756462, + 49.324229401 + ], + [ + 8.1739977, + 49.322859301 + ], + [ + 8.172598, + 49.321739901 + ], + [ + 8.1714169, + 49.320816401 + ], + [ + 8.1702275, + 49.319907201 + ], + [ + 8.1687126, + 49.318756201 + ], + [ + 8.1655794, + 49.316399101 + ], + [ + 8.1640485, + 49.315229801 + ], + [ + 8.1631194, + 49.314505901 + ], + [ + 8.1621824, + 49.313755501 + ], + [ + 8.1612525, + 49.312972601 + ], + [ + 8.1607697, + 49.312550101 + ], + [ + 8.16032, + 49.312151601 + ], + [ + 8.1597239, + 49.311602001 + ], + [ + 8.1591512, + 49.311055701 + ], + [ + 8.1586008, + 49.310498901 + ], + [ + 8.1580712, + 49.309941301 + ], + [ + 8.1574903, + 49.309288801 + ], + [ + 8.1569425, + 49.308638201 + ], + [ + 8.1564429, + 49.307992101 + ], + [ + 8.1559789, + 49.307361401 + ], + [ + 8.155400905, + 49.306489693 + ] + ] + } + } + ] + }, + "A66": { + "roadworks": [ + { + "identifier": "2026-012730--vi-bs.2026-03-24_08-00-00-000.devi-zus.2026-03-24_08-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.052438985528646,8.242748757096203,50.0520256705961,8.249634331267687", + "point": "50.052438985528646,8.242748757096203", + "startLcPosition": "1", + "impact": { + "lower": "Wiesbaden-Mainzer Stra\u00dfe", + "upper": "Schiersteiner Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Schiersteiner Kreuz - Wiesbaden-Mainzer Stra\u00dfe", + "coordinate": { + "lat": 50.052438985528646, + "long": 8.242748757096203 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 18:00 Uhr", + "10.04.26 von 08:00 bis 18:00 Uhr", + "11.04.26 von 08:00 bis 18:00 Uhr", + "13.04.26 von 08:00 bis 18:00 Uhr", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 18:00 Uhr", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 2.2 km hinter AK Schiersteiner Kreuz und 0.5 km vor AS Wiesbaden-Mainzer Stra\u00dfe", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A66 von Schiersteiner Kreuz (AK) nach Wiesbaden-Biebrich (AS) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.242748757, + 50.052438986 + ], + [ + 8.2432831, + 50.052406901 + ], + [ + 8.2440078, + 50.052366301 + ], + [ + 8.2442447, + 50.052353001 + ], + [ + 8.2466636, + 50.052213001 + ], + [ + 8.2467935, + 50.052205301 + ], + [ + 8.2475536, + 50.052160501 + ], + [ + 8.2478798, + 50.052141301 + ], + [ + 8.248313, + 50.052115901 + ], + [ + 8.2486922, + 50.052085101 + ], + [ + 8.2495041, + 50.052032101 + ], + [ + 8.249634331, + 50.052025671 + ] + ] + } + }, + { + "identifier": "2026-012730--vi-bs.2026-03-24_08-00-00-000.devi-zus.2026-03-24_08-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.052438985528646,8.242748757096203,50.0520256705961,8.249634331267687", + "point": "50.052438985528646,8.242748757096203", + "startLcPosition": "1", + "impact": { + "lower": "Wiesbaden-Mainzer Stra\u00dfe", + "upper": "Schiersteiner Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Schiersteiner Kreuz - Wiesbaden-Mainzer Stra\u00dfe", + "coordinate": { + "lat": 50.052438985528646, + "long": 8.242748757096203 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 17:00 Uhr", + "10.04.26 von 09:00 bis 17:00 Uhr", + "11.04.26 von 09:00 bis 17:00 Uhr", + "13.04.26 von 09:00 bis 17:00 Uhr", + "14.04.26 von 09:00 bis 17:00 Uhr", + "15.04.26 von 09:00 bis 17:00 Uhr", + "16.04.26 von 09:00 bis 17:00 Uhr", + "17.04.26 von 09:00 bis 17:00 Uhr", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 2.2 km hinter AK Schiersteiner Kreuz und 0.5 km vor AS Wiesbaden-Mainzer Stra\u00dfe", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A66 von Schiersteiner Kreuz (AK) nach Wiesbaden-Biebrich (AS) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.242748757, + 50.052438986 + ], + [ + 8.2432831, + 50.052406901 + ], + [ + 8.2440078, + 50.052366301 + ], + [ + 8.2442447, + 50.052353001 + ], + [ + 8.2466636, + 50.052213001 + ], + [ + 8.2467935, + 50.052205301 + ], + [ + 8.2475536, + 50.052160501 + ], + [ + 8.2478798, + 50.052141301 + ], + [ + 8.248313, + 50.052115901 + ], + [ + 8.2486922, + 50.052085101 + ], + [ + 8.2495041, + 50.052032101 + ], + [ + 8.249634331, + 50.052025671 + ] + ] + } + }, + { + "identifier": "2026-012730--vi-bs.2026-03-24_08-00-00-000.devi-zus.2026-03-24_08-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.05225335953461,8.23587919540632,50.052438985528646,8.242748757096203", + "point": "50.05225335953461,8.23587919540632", + "startLcPosition": "1", + "impact": { + "lower": "Wiesbaden-Biebrich", + "upper": "Schiersteiner Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Schiersteiner Kreuz - Wiesbaden-Biebrich", + "coordinate": { + "lat": 50.05225335953461, + "long": 8.23587919540632 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "11.04.26 von 09:00 bis 15:00 Uhr", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "17.04.26 von 09:00 bis 15:00 Uhr", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 1.7 km hinter AK Schiersteiner Kreuz und AS Wiesbaden-Biebrich", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A66 von Schiersteiner Kreuz (AK) nach Wiesbaden-Biebrich (AS) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.235879195, + 50.05225336 + ], + [ + 8.2371324, + 50.052389201 + ], + [ + 8.2375416, + 50.052427701 + ], + [ + 8.238054, + 50.052461901 + ], + [ + 8.2382591, + 50.052475601 + ], + [ + 8.2388078, + 50.052506901 + ], + [ + 8.2399331, + 50.052525201 + ], + [ + 8.2408739, + 50.052522201 + ], + [ + 8.2416249, + 50.052492901 + ], + [ + 8.2424587, + 50.052456401 + ], + [ + 8.242748757, + 50.052438986 + ] + ] + } + }, + { + "identifier": "2026-012730--vi-bs.2026-03-24_08-00-00-000.devi-zus.2026-03-24_08-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.05225335953461,8.23587919540632,50.052438985528646,8.242748757096203", + "point": "50.05225335953461,8.23587919540632", + "startLcPosition": "1", + "impact": { + "lower": "Wiesbaden-Biebrich", + "upper": "Schiersteiner Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Schiersteiner Kreuz - Wiesbaden-Biebrich", + "coordinate": { + "lat": 50.05225335953461, + "long": 8.23587919540632 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 17:00 Uhr", + "10.04.26 von 09:00 bis 17:00 Uhr", + "11.04.26 von 09:00 bis 17:00 Uhr", + "13.04.26 von 09:00 bis 17:00 Uhr", + "14.04.26 von 09:00 bis 17:00 Uhr", + "15.04.26 von 09:00 bis 17:00 Uhr", + "16.04.26 von 09:00 bis 17:00 Uhr", + "17.04.26 von 09:00 bis 17:00 Uhr", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 1.7 km hinter AK Schiersteiner Kreuz und AS Wiesbaden-Biebrich", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A66 von Schiersteiner Kreuz (AK) nach Wiesbaden-Biebrich (AS) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.235879195, + 50.05225336 + ], + [ + 8.2371324, + 50.052389201 + ], + [ + 8.2375416, + 50.052427701 + ], + [ + 8.238054, + 50.052461901 + ], + [ + 8.2382591, + 50.052475601 + ], + [ + 8.2388078, + 50.052506901 + ], + [ + 8.2399331, + 50.052525201 + ], + [ + 8.2408739, + 50.052522201 + ], + [ + 8.2416249, + 50.052492901 + ], + [ + 8.2424587, + 50.052456401 + ], + [ + 8.242748757, + 50.052438986 + ] + ] + } + }, + { + "identifier": "2026-015786--vi-bs.2026-04-07_20-00-00-000.devi-bs.2026-04-07_20-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.05165415297528,8.22894692800369,50.0524922364101,8.241640081667244", + "point": "50.05165415297528,8.22894692800369", + "startLcPosition": "1", + "impact": { + "lower": "Wiesbaden-Biebrich", + "upper": "Schiersteiner Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Schiersteiner Kreuz - Wiesbaden-Biebrich", + "coordinate": { + "lat": 50.05165415297528, + "long": 8.22894692800369 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 1.2 km hinter AK Schiersteiner Kreuz und 0.1 km vor AS Wiesbaden-Biebrich", + "", + "L\u00e4nge: 0.92 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A66 von Schiersteiner Kreuz (AK) nach Wiesbaden-Biebrich (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.228946928, + 50.051654153 + ], + [ + 8.2291088, + 50.051654301 + ], + [ + 8.2298264, + 50.051676801 + ], + [ + 8.2308191, + 50.051724601 + ], + [ + 8.2321121, + 50.051828901 + ], + [ + 8.2323671, + 50.051850301 + ], + [ + 8.233058, + 50.051928401 + ], + [ + 8.2336915, + 50.052000001 + ], + [ + 8.2354296, + 50.052200901 + ], + [ + 8.2358067, + 50.052245501 + ], + [ + 8.2371324, + 50.052389201 + ], + [ + 8.2375416, + 50.052427701 + ], + [ + 8.238054, + 50.052461901 + ], + [ + 8.2382591, + 50.052475601 + ], + [ + 8.2388078, + 50.052506901 + ], + [ + 8.2399331, + 50.052525201 + ], + [ + 8.2408739, + 50.052522201 + ], + [ + 8.2416249, + 50.052492901 + ], + [ + 8.241640082, + 50.052492236 + ] + ] + } + }, + { + "identifier": "2026-015786--vi-bs.2026-04-07_20-00-00-000.devi-bs.2026-04-07_20-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.05165415297528,8.22894692800369,50.0524922364101,8.241640081667244", + "point": "50.05165415297528,8.22894692800369", + "startLcPosition": "1", + "impact": { + "lower": "Wiesbaden-Biebrich", + "upper": "Schiersteiner Kreuz", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Schiersteiner Kreuz - Wiesbaden-Biebrich", + "coordinate": { + "lat": 50.05165415297528, + "long": 8.22894692800369 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 1.2 km hinter AK Schiersteiner Kreuz und 0.1 km vor AS Wiesbaden-Biebrich", + "", + "L\u00e4nge: 0.92 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A66 von Schiersteiner Kreuz (AK) nach Wiesbaden-Biebrich (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.228946928, + 50.051654153 + ], + [ + 8.2291088, + 50.051654301 + ], + [ + 8.2298264, + 50.051676801 + ], + [ + 8.2308191, + 50.051724601 + ], + [ + 8.2321121, + 50.051828901 + ], + [ + 8.2323671, + 50.051850301 + ], + [ + 8.233058, + 50.051928401 + ], + [ + 8.2336915, + 50.052000001 + ], + [ + 8.2354296, + 50.052200901 + ], + [ + 8.2358067, + 50.052245501 + ], + [ + 8.2371324, + 50.052389201 + ], + [ + 8.2375416, + 50.052427701 + ], + [ + 8.238054, + 50.052461901 + ], + [ + 8.2382591, + 50.052475601 + ], + [ + 8.2388078, + 50.052506901 + ], + [ + 8.2399331, + 50.052525201 + ], + [ + 8.2408739, + 50.052522201 + ], + [ + 8.2416249, + 50.052492901 + ], + [ + 8.241640082, + 50.052492236 + ] + ] + } + }, + { + "identifier": "2025-048654--vi-bs.2025-11-10_06-30-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.05716617589606,8.450916524874513,50.05730864606827,8.451227080753723", + "point": "50.05716617589606,8.450916524874513", + "startLcPosition": "11", + "impact": { + "lower": "Hattersheim", + "upper": "Weilbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Weilbach - Hattersheim", + "startTimestamp": "2025-11-10T06:30:00+01:00", + "coordinate": { + "lat": 50.05716617589606, + "long": 8.450916524874513 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.11.25 um 06:30 Uhr", + "Ende: 30.04.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A66: Wiesbaden -> Frankfurt, zwischen Weilbach und 2.5 km vor AS Hattersheim", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 11.4 m", + "", + "Rastplatz Weilbach S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.450916525, + 50.057166176 + ], + [ + 8.4510521, + 50.057188301 + ], + [ + 8.451227081, + 50.057308646 + ] + ] + } + }, + { + "identifier": "2026-015626--vi-fbm.2026-04-13_15-00-00-000.devi-zus.2026-03-30_09-00-00-000_008.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.116830388009774,8.537591667878171,50.11793939019379,8.54063290306139", + "point": "50.116830388009774,8.537591667878171", + "startLcPosition": "16", + "impact": { + "lower": "Frankfurt am Main", + "upper": "Frankfurt am Main-H\u00f6chst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Frankfurt am Main-H\u00f6chst - Frankfurt am Main", + "coordinate": { + "lat": 50.116830388009774, + "long": 8.537591667878171 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 15:00 bis 17:00 Uhr", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 0.4 km hinter AS Frankfurt am Main-H\u00f6chst und 0.2 km vor Frankfurt am Main", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 14 m", + "", + "A66, ARAL S\u00dcD, von Frankfurt am Main-H\u00f6chst (AS) nach Eschborn (AS) , Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.537591668, + 50.116830388 + ], + [ + 8.5403538, + 50.117838401 + ], + [ + 8.540632903, + 50.11793939 + ] + ] + } + }, + { + "identifier": "2026-015626--vi-bs.2026-03-30_12-00-00-000.devi-zus.2026-03-30_09-00-00-000_008.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.11771825759432,8.540024570637579,50.1188224634449,8.54307107820809", + "point": "50.11771825759432,8.540024570637579", + "startLcPosition": "16", + "impact": { + "lower": "Eschborn", + "upper": "Frankfurt am Main-H\u00f6chst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Frankfurt am Main-H\u00f6chst - Eschborn", + "startTimestamp": "2026-03-30T12:00:00+02:00", + "coordinate": { + "lat": 50.11771825759432, + "long": 8.540024570637579 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 12:00 Uhr", + "Ende: 15.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.05.26)", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 0.6 km hinter AS Frankfurt am Main-H\u00f6chst und 1.9 km vor AS Eschborn", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 14 m", + "", + "A66, ARAL S\u00dcD, von Frankfurt am Main-H\u00f6chst (AS) nach Eschborn (AS) , Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.540024571, + 50.117718258 + ], + [ + 8.5403538, + 50.117838401 + ], + [ + 8.5428802, + 50.118752501 + ], + [ + 8.543071078, + 50.118822463 + ] + ] + } + }, + { + "identifier": "2026-015626--vi-bs.2026-03-30_12-00-00-000.devi-zus.2026-03-30_09-00-00-000_008.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.11771825759432,8.540024570637579,50.1188224634449,8.54307107820809", + "point": "50.11771825759432,8.540024570637579", + "startLcPosition": "16", + "impact": { + "lower": "Eschborn", + "upper": "Frankfurt am Main-H\u00f6chst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Frankfurt am Main-H\u00f6chst - Eschborn", + "startTimestamp": "2026-03-30T12:00:00+02:00", + "coordinate": { + "lat": 50.11771825759432, + "long": 8.540024570637579 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 12:00 Uhr", + "Ende: 15.05.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.05.26)", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 0.6 km hinter AS Frankfurt am Main-H\u00f6chst und 1.9 km vor AS Eschborn", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 14 m", + "", + "A66, ARAL S\u00dcD, von Frankfurt am Main-H\u00f6chst (AS) nach Eschborn (AS) , Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.540024571, + 50.117718258 + ], + [ + 8.5403538, + 50.117838401 + ], + [ + 8.5428802, + 50.118752501 + ], + [ + 8.543071078, + 50.118822463 + ] + ] + } + }, + { + "identifier": "2025-044507--vi-bs.2025-09-16_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.116830388009774,8.537591667878171,50.11904516167669,8.543678673627431", + "point": "50.116830388009774,8.537591667878171", + "startLcPosition": "16", + "impact": { + "lower": "Eschborn", + "upper": "Frankfurt am Main-H\u00f6chst", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Frankfurt am Main-H\u00f6chst - Eschborn", + "startTimestamp": "2025-09-16T00:00:00+02:00", + "coordinate": { + "lat": 50.116830388009774, + "long": 8.537591667878171 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.09.25 um 00:00 Uhr", + "Ende: 18.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.07.26)", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 0.4 km hinter AS Frankfurt am Main-H\u00f6chst und 1.8 km vor AS Eschborn", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 18 m", + "", + "A66 Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.537591668, + 50.116830388 + ], + [ + 8.5403538, + 50.117838401 + ], + [ + 8.5428802, + 50.118752501 + ], + [ + 8.543678674, + 50.119045162 + ] + ] + } + }, + { + "identifier": "2026-017253--vi-bs.2026-04-09_19-00-00-000.devi-bs.2026-04-09_19-00-00-000_009.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.1283500321555,8.566667527974134,50.129227100637365,8.573076200807526", + "point": "50.1283500321555,8.566667527974134", + "startLcPosition": "18", + "impact": { + "lower": "Eschborner Dreieck", + "upper": "Eschborn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Eschborn - Eschborner Dreieck", + "coordinate": { + "lat": 50.1283500321555, + "long": 8.566667527974134 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 21:00 bis 24:00 Uhr", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 0.1 km hinter AS Eschborn und 0.1 km vor AD Eschborner Dreieck", + "", + "L\u00e4nge: 0.47 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A66 Beseitigung Unfallfolgen Schutzplanke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.566667528, + 50.128350032 + ], + [ + 8.5669767, + 50.128441401 + ], + [ + 8.5674479, + 50.128568401 + ], + [ + 8.5679816, + 50.128693301 + ], + [ + 8.5684636, + 50.128788201 + ], + [ + 8.5690387, + 50.128884101 + ], + [ + 8.5693968, + 50.128932401 + ], + [ + 8.5699746, + 50.128995501 + ], + [ + 8.5704565, + 50.129030001 + ], + [ + 8.5711894, + 50.129077101 + ], + [ + 8.5717965, + 50.129115201 + ], + [ + 8.5727405, + 50.129184101 + ], + [ + 8.573076201, + 50.129227101 + ] + ] + } + }, + { + "identifier": "2026-017749--vi-bs.2026-04-09_19-30-00-000.devi-zus.2026-04-09_19-30-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.13030418325094,8.577279717887624,50.13340937064447,8.584110889551747", + "point": "50.13030418325094,8.577279717887624", + "startLcPosition": "19", + "impact": { + "lower": "Nordwestkreuz Frankfurt am Main", + "upper": "Eschborner Dreieck", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 | Eschborner Dreieck - Nordwestkreuz Frankfurt am Main", + "coordinate": { + "lat": 50.13030418325094, + "long": 8.577279717887624 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 19:30 bis zum 10.04.26 01:00 Uhr.", + "", + "A66: Wiesbaden -> Frankfurt, zwischen 0.2 km hinter AD Eschborner Dreieck und 0.5 km vor AK Nordwestkreuz Frankfurt am Main", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "Beseitigung Unfallfolgen Schutzplanke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.577279718, + 50.130304183 + ], + [ + 8.5776135, + 50.130443901 + ], + [ + 8.5791153, + 50.131095101 + ], + [ + 8.5800201, + 50.131496701 + ], + [ + 8.581475, + 50.132159101 + ], + [ + 8.5820933, + 50.132449701 + ], + [ + 8.5824756, + 50.132639701 + ], + [ + 8.5831292, + 50.132964301 + ], + [ + 8.5837122, + 50.133234301 + ], + [ + 8.5840697, + 50.133391801 + ], + [ + 8.58411089, + 50.133409371 + ] + ] + } + }, + { + "identifier": "2026-017749--vi-bs.2026-04-09_19-30-00-000.devi-zus.2026-04-09_19-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.133512359041994,8.584070707827804,50.130404573896925,8.577179159796083", + "point": "50.133512359041994,8.584070707827804", + "startLcPosition": "20", + "impact": { + "lower": "Eschborner Dreieck", + "upper": "Nordwestkreuz Frankfurt am Main", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> Wiesbaden", + "title": "A66 | Nordwestkreuz Frankfurt am Main - Eschborner Dreieck", + "coordinate": { + "lat": 50.133512359041994, + "long": 8.584070707827804 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 22:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A66: Frankfurt -> Wiesbaden, zwischen 0.5 km hinter AK Nordwestkreuz Frankfurt am Main und 0.2 km vor AD Eschborner Dreieck", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "Beseitigung Unfallfolgen Schutzplanke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.584070708, + 50.133512359 + ], + [ + 8.583771, + 50.133380601 + ], + [ + 8.5830355, + 50.133041201 + ], + [ + 8.5822616, + 50.132685801 + ], + [ + 8.5818588, + 50.132494501 + ], + [ + 8.5790493, + 50.131216601 + ], + [ + 8.577856, + 50.130687501 + ], + [ + 8.577425, + 50.130504701 + ], + [ + 8.57717916, + 50.130404574 + ] + ] + } + }, + { + "identifier": "2026-017749--vi-bs.2026-04-09_19-30-00-000.devi-zus.2026-04-09_19-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.133512359041994,8.584070707827804,50.130404573896925,8.577179159796083", + "point": "50.133512359041994,8.584070707827804", + "startLcPosition": "20", + "impact": { + "lower": "Eschborner Dreieck", + "upper": "Nordwestkreuz Frankfurt am Main", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> Wiesbaden", + "title": "A66 | Nordwestkreuz Frankfurt am Main - Eschborner Dreieck", + "coordinate": { + "lat": 50.133512359041994, + "long": 8.584070707827804 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 22:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A66: Frankfurt -> Wiesbaden, zwischen 0.5 km hinter AK Nordwestkreuz Frankfurt am Main und 0.2 km vor AD Eschborner Dreieck", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "Beseitigung Unfallfolgen Schutzplanke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.584070708, + 50.133512359 + ], + [ + 8.583771, + 50.133380601 + ], + [ + 8.5830355, + 50.133041201 + ], + [ + 8.5822616, + 50.132685801 + ], + [ + 8.5818588, + 50.132494501 + ], + [ + 8.5790493, + 50.131216601 + ], + [ + 8.577856, + 50.130687501 + ], + [ + 8.577425, + 50.130504701 + ], + [ + 8.57717916, + 50.130404574 + ] + ] + } + }, + { + "identifier": "2025-030848--vi-bs.2025-09-30_00-00-00-000.devi-zus.2025-07-07_00-00-00-000_005.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.13940677790283,8.752175096574843,50.14363555608643,8.783740203969648", + "point": "50.13940677790283,8.752175096574843", + "startLcPosition": "23", + "impact": { + "lower": "Maintal-Bischofsheim", + "upper": "Frankfurt am Main-Bergen-Enkheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Frankfurt -> Fulda", + "title": "A66 | Frankfurt am Main-Bergen-Enkheim - Maintal-Bischofsheim", + "startTimestamp": "2025-09-30T00:00:00+02:00", + "coordinate": { + "lat": 50.13940677790283, + "long": 8.752175096574843 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.25 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A66: Frankfurt -> Fulda, zwischen 0.3 km hinter AS Frankfurt am Main-Bergen-Enkheim und 1.7 km vor AS Maintal-Bischofsheim", + "", + "L\u00e4nge: 2.32 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A66 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.752175097, + 50.139406778 + ], + [ + 8.752684, + 50.139522801 + ], + [ + 8.7532107, + 50.139632801 + ], + [ + 8.7538662, + 50.139736501 + ], + [ + 8.7546512, + 50.139847101 + ], + [ + 8.7551141, + 50.139881701 + ], + [ + 8.7560517, + 50.139958701 + ], + [ + 8.7569395, + 50.140003201 + ], + [ + 8.7580271, + 50.140074301 + ], + [ + 8.7589336, + 50.140140001 + ], + [ + 8.7594178, + 50.140189001 + ], + [ + 8.7600651, + 50.140265001 + ], + [ + 8.76055, + 50.140340201 + ], + [ + 8.761305, + 50.140465701 + ], + [ + 8.7650361, + 50.141157601 + ], + [ + 8.7731471, + 50.142693701 + ], + [ + 8.7752202, + 50.143095201 + ], + [ + 8.776364, + 50.143297001 + ], + [ + 8.7771912, + 50.143443001 + ], + [ + 8.7780294, + 50.143559901 + ], + [ + 8.7787424, + 50.143638301 + ], + [ + 8.7795548, + 50.143694301 + ], + [ + 8.7804214, + 50.143736001 + ], + [ + 8.7813603, + 50.143748601 + ], + [ + 8.7821396, + 50.143733101 + ], + [ + 8.7829113, + 50.143692901 + ], + [ + 8.783623, + 50.143647301 + ], + [ + 8.783740204, + 50.143635556 + ] + ] + } + }, + { + "identifier": "2026-016876--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-04-09_08-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.14364767337722,8.78503619081812,50.143793389949074,8.783648046869848", + "point": "50.14364767337722,8.78503619081812", + "startLcPosition": "24", + "impact": { + "lower": "Frankfurt am Main-Bergen-Enkheim", + "upper": "Maintal-Bischofsheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Frankfurt", + "title": "A66 | Maintal-Bischofsheim - Frankfurt am Main-Bergen-Enkheim", + "coordinate": { + "lat": 50.14364767337722, + "long": 8.78503619081812 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 14:00 Uhr", + "", + "A66: Fulda -> Frankfurt, zwischen 1.6 km hinter AS Maintal-Bischofsheim und 2.6 km vor AS Frankfurt am Main-Bergen-Enkheim", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A66 von Maintal-Bischofsheim (AS) nach Frankfurt am Main-Bergen-Enkheim (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.785036191, + 50.143647673 + ], + [ + 8.7846286, + 50.143698301 + ], + [ + 8.7840992, + 50.143755301 + ], + [ + 8.783648047, + 50.14379339 + ] + ] + } + }, + { + "identifier": "2026-016876--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-04-09_08-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.14364767337722,8.78503619081812,50.143793389949074,8.783648046869848", + "point": "50.14364767337722,8.78503619081812", + "startLcPosition": "24", + "impact": { + "lower": "Frankfurt am Main-Bergen-Enkheim", + "upper": "Maintal-Bischofsheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Frankfurt", + "title": "A66 | Maintal-Bischofsheim - Frankfurt am Main-Bergen-Enkheim", + "coordinate": { + "lat": 50.14364767337722, + "long": 8.78503619081812 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 14:00 Uhr", + "", + "A66: Fulda -> Frankfurt, zwischen 1.6 km hinter AS Maintal-Bischofsheim und 2.6 km vor AS Frankfurt am Main-Bergen-Enkheim", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A66 von Maintal-Bischofsheim (AS) nach Frankfurt am Main-Bergen-Enkheim (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.785036191, + 50.143647673 + ], + [ + 8.7846286, + 50.143698301 + ], + [ + 8.7840992, + 50.143755301 + ], + [ + 8.783648047, + 50.14379339 + ] + ] + } + }, + { + "identifier": "2025-030848--vi-bs.2025-09-30_00-00-00-000.devi-zus.2025-07-07_00-00-00-000_005.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.1437875326384,8.783717426393778,50.143128241596735,8.774563358554746", + "point": "50.1437875326384,8.783717426393778", + "startLcPosition": "24", + "impact": { + "lower": "Frankfurt am Main-Bergen-Enkheim", + "upper": "Maintal-Bischofsheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Fulda -> Frankfurt", + "title": "A66 | Maintal-Bischofsheim - Frankfurt am Main-Bergen-Enkheim", + "startTimestamp": "2025-09-30T00:00:00+02:00", + "coordinate": { + "lat": 50.1437875326384, + "long": 8.783717426393778 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.25 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A66: Fulda -> Frankfurt, zwischen 1.7 km hinter AS Maintal-Bischofsheim und 1.9 km vor AS Frankfurt am Main-Bergen-Enkheim", + "", + "L\u00e4nge: 0.66 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A66 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.783717426, + 50.143787533 + ], + [ + 8.7835804, + 50.143799101 + ], + [ + 8.7829996, + 50.143841301 + ], + [ + 8.7826186, + 50.143860101 + ], + [ + 8.7821543, + 50.143877901 + ], + [ + 8.7813345, + 50.143896001 + ], + [ + 8.7804262, + 50.143882201 + ], + [ + 8.7795873, + 50.143848901 + ], + [ + 8.7787311, + 50.143780401 + ], + [ + 8.7780113, + 50.143706901 + ], + [ + 8.7771756, + 50.143592601 + ], + [ + 8.776438, + 50.143480401 + ], + [ + 8.7751407, + 50.143238701 + ], + [ + 8.774563359, + 50.143128242 + ] + ] + } + }, + { + "identifier": "2026-016876--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-04-09_08-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.14666905395755,8.857372888080384,50.14761680395654,8.86131068144799", + "point": "50.14666905395755,8.857372888080384", + "startLcPosition": "26", + "impact": { + "lower": "Hanau-Nord", + "upper": "Hanau-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> Fulda", + "title": "A66 | Hanau-West - Hanau-Nord", + "coordinate": { + "lat": 50.14666905395755, + "long": 8.857372888080384 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 14:00 Uhr", + "", + "A66: Frankfurt -> Fulda, zwischen 0.2 km hinter AS Hanau-West und 3.7 km vor AS Hanau-Nord", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A66 von Maintal-Bischofsheim (AS) nach Frankfurt am Main-Bergen-Enkheim (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.857372888, + 50.146669054 + ], + [ + 8.8575716, + 50.146700001 + ], + [ + 8.8581357, + 50.146796701 + ], + [ + 8.8586468, + 50.146898601 + ], + [ + 8.8590917, + 50.146995701 + ], + [ + 8.8595502, + 50.147106301 + ], + [ + 8.8599866, + 50.147214901 + ], + [ + 8.8605176, + 50.147360101 + ], + [ + 8.8610669, + 50.147537101 + ], + [ + 8.8611574, + 50.147568001 + ], + [ + 8.861310681, + 50.147616804 + ] + ] + } + }, + { + "identifier": "2026-017719--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_014.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.14271481927986,8.963393913072194,50.14593267977829,8.95664986748667", + "point": "50.14271481927986,8.963393913072194", + "startLcPosition": "29", + "impact": { + "lower": "Erlensee", + "upper": "Hanauer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Frankfurt", + "title": "A66 | Hanauer Kreuz - Erlensee", + "coordinate": { + "lat": 50.14271481927986, + "long": 8.963393913072194 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 13:00 Uhr", + "", + "A66: Fulda -> Frankfurt, zwischen 1.8 km hinter AK Hanauer Kreuz und AS Erlensee", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 8 m", + "", + "A66-A45 Bauwerkspr\u00fcfungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.963393913, + 50.142714819 + ], + [ + 8.961807, + 50.143482601 + ], + [ + 8.9568925, + 50.145819801 + ], + [ + 8.956649867, + 50.14593268 + ] + ] + } + }, + { + "identifier": "2026-017719--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_014.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.312696375410624,9.42848451634222,50.316789195900206,9.431620052310913", + "point": "50.312696375410624,9.42848451634222", + "startLcPosition": "38", + "impact": { + "lower": "Steinau a.d.Str.", + "upper": "Bad Soden-Salm\u00fcnster", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> Fulda", + "title": "A66 | Bad Soden-Salm\u00fcnster - Steinau a.d.Str.", + "coordinate": { + "lat": 50.312696375410624, + "long": 9.42848451634222 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 14:30 Uhr", + "", + "A66: Frankfurt -> Fulda, zwischen 6.2 km hinter AS Bad Soden-Salm\u00fcnster und 0.2 km vor AS Steinau a.d.Str.", + "", + "L\u00e4nge: 0.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A66-A45 Bauwerkspr\u00fcfungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.428484516, + 50.312696375 + ], + [ + 9.4286027, + 50.312881101 + ], + [ + 9.4292116, + 50.313834301 + ], + [ + 9.429456, + 50.314199401 + ], + [ + 9.4295766, + 50.314383301 + ], + [ + 9.4298208, + 50.314763301 + ], + [ + 9.4299433, + 50.314948601 + ], + [ + 9.4303804, + 50.315521601 + ], + [ + 9.4307903, + 50.315996801 + ], + [ + 9.4309914, + 50.316211801 + ], + [ + 9.4312904, + 50.316500001 + ], + [ + 9.431620052, + 50.316789196 + ] + ] + } + }, + { + "identifier": "2026-017709--vi-bs.2026-04-22_09-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.30298227687205,9.397089503377398,50.29935260902515,9.392942994043224", + "point": "50.30298227687205,9.397089503377398", + "startLcPosition": "39", + "impact": { + "lower": "Bad Soden-Salm\u00fcnster", + "upper": "Steinau a.d.Str.", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Frankfurt", + "title": "A66 | Steinau a.d.Str. - Bad Soden-Salm\u00fcnster", + "coordinate": { + "lat": 50.30298227687205, + "long": 9.397089503377398 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 09:30 bis 15:00 Uhr", + "", + "A66: Fulda -> Frankfurt, zwischen 3.3 km hinter AS Steinau a.d.Str. und 3.1 km vor AS Bad Soden-Salm\u00fcnster", + "", + "L\u00e4nge: 0.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A66 von Steinau a.d.Str. (AS) nach Bad Soden-Salm\u00fcnster (AS) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.397089503, + 50.302982277 + ], + [ + 9.3967594, + 50.302756501 + ], + [ + 9.3962872, + 50.302415801 + ], + [ + 9.3958439, + 50.302084901 + ], + [ + 9.3953774, + 50.301708601 + ], + [ + 9.3947879, + 50.301211201 + ], + [ + 9.3942349, + 50.300701601 + ], + [ + 9.3937213, + 50.300199001 + ], + [ + 9.3933328, + 50.299793301 + ], + [ + 9.393013, + 50.299436501 + ], + [ + 9.392942994, + 50.299352609 + ] + ] + } + }, + { + "identifier": "2026-017719--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_014.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.320118808887074,9.43823254875652,50.17239275931051,9.047150417344394", + "point": "50.320118808887074,9.43823254875652", + "startLcPosition": "40", + "impact": { + "lower": "Langenselbold", + "upper": "Hundsr\u00fccker Berg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Fulda -> Frankfurt", + "title": "A66 | Hundsr\u00fccker Berg - Langenselbold", + "coordinate": { + "lat": 50.320118808887074, + "long": 9.43823254875652 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "", + "A66: Fulda -> Frankfurt, zwischen 1.1 km hinter Hundsr\u00fccker Berg und AS Langenselbold", + "", + "L\u00e4nge: 35.61 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A66-A45 Bauwerkspr\u00fcfungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.438232549, + 50.320118809 + ], + [ + 9.4375094, + 50.319890601 + ], + [ + 9.4364363, + 50.319532401 + ], + [ + 9.4358175, + 50.319309701 + ], + [ + 9.435144, + 50.319042701 + ], + [ + 9.4347695, + 50.318883601 + ], + [ + 9.43441, + 50.318720001 + ], + [ + 9.4340909, + 50.318561101 + ], + [ + 9.4335378, + 50.318267101 + ], + [ + 9.4329695, + 50.317933701 + ], + [ + 9.4328181, + 50.317836101 + ], + [ + 9.4325835, + 50.317680701 + ], + [ + 9.4323166, + 50.317495401 + ], + [ + 9.431967, + 50.317242301 + ], + [ + 9.4315433, + 50.316895701 + ], + [ + 9.4310939, + 50.316495301 + ], + [ + 9.4306879, + 50.316089201 + ], + [ + 9.4305347, + 50.315921101 + ], + [ + 9.4303223, + 50.315669901 + ], + [ + 9.4302104, + 50.315531801 + ], + [ + 9.429972, + 50.315225001 + ], + [ + 9.4298374, + 50.315033901 + ], + [ + 9.4296936, + 50.314819601 + ], + [ + 9.4293023, + 50.314216601 + ], + [ + 9.4290753, + 50.313876401 + ], + [ + 9.4284697, + 50.312919801 + ], + [ + 9.4283253, + 50.312698801 + ], + [ + 9.4281596, + 50.312456601 + ], + [ + 9.4280159, + 50.312261401 + ], + [ + 9.4277866, + 50.311974701 + ], + [ + 9.4274884, + 50.311654401 + ], + [ + 9.4273529, + 50.311522501 + ], + [ + 9.4271572, + 50.311340601 + ], + [ + 9.4268576, + 50.311084001 + ], + [ + 9.4266411, + 50.310906601 + ], + [ + 9.4264957, + 50.310794201 + ], + [ + 9.4263385, + 50.310672901 + ], + [ + 9.4260553, + 50.310467401 + ], + [ + 9.4257513, + 50.310255801 + ], + [ + 9.425471, + 50.310074401 + ], + [ + 9.4250958, + 50.309846101 + ], + [ + 9.4248068, + 50.309680701 + ], + [ + 9.4245426, + 50.309530701 + ], + [ + 9.4241956, + 50.309351701 + ], + [ + 9.4240177, + 50.309262501 + ], + [ + 9.423641, + 50.309090301 + ], + [ + 9.4233429, + 50.308959601 + ], + [ + 9.4227748, + 50.308729101 + ], + [ + 9.4223839, + 50.308587601 + ], + [ + 9.4220714, + 50.308476401 + ], + [ + 9.4216042, + 50.308329601 + ], + [ + 9.4211953, + 50.308210301 + ], + [ + 9.4206837, + 50.308074901 + ], + [ + 9.4200549, + 50.307930001 + ], + [ + 9.4195002, + 50.307812501 + ], + [ + 9.4187934, + 50.307672201 + ], + [ + 9.4181342, + 50.307552901 + ], + [ + 9.4173986, + 50.307434501 + ], + [ + 9.4167112, + 50.307332901 + ], + [ + 9.4161024, + 50.307258401 + ], + [ + 9.4154366, + 50.307184501 + ], + [ + 9.4144717, + 50.307095101 + ], + [ + 9.4137385, + 50.307040501 + ], + [ + 9.4132249, + 50.307007601 + ], + [ + 9.4126619, + 50.306981801 + ], + [ + 9.4121538, + 50.306965601 + ], + [ + 9.4111937, + 50.306945801 + ], + [ + 9.4101685, + 50.306926201 + ], + [ + 9.4094007, + 50.306913601 + ], + [ + 9.4086711, + 50.306893701 + ], + [ + 9.4083363, + 50.306879501 + ], + [ + 9.4079751, + 50.306856401 + ], + [ + 9.4075444, + 50.306826101 + ], + [ + 9.4070664, + 50.306783201 + ], + [ + 9.4066444, + 50.306736601 + ], + [ + 9.4062812, + 50.306691901 + ], + [ + 9.4059344, + 50.306639901 + ], + [ + 9.405576, + 50.306580801 + ], + [ + 9.4052372, + 50.306519501 + ], + [ + 9.4049194, + 50.306457201 + ], + [ + 9.4044323, + 50.306349701 + ], + [ + 9.4039788, + 50.306239601 + ], + [ + 9.403484, + 50.306103901 + ], + [ + 9.4029738, + 50.305950701 + ], + [ + 9.4025166, + 50.305796101 + ], + [ + 9.4020783, + 50.305637001 + ], + [ + 9.4016878, + 50.305482901 + ], + [ + 9.4012858, + 50.305315501 + ], + [ + 9.4008912, + 50.305133901 + ], + [ + 9.4002807, + 50.304838801 + ], + [ + 9.3996845, + 50.304534701 + ], + [ + 9.3991319, + 50.304234601 + ], + [ + 9.39865, + 50.303961601 + ], + [ + 9.3981859, + 50.303685401 + ], + [ + 9.3976755, + 50.303366201 + ], + [ + 9.3972299, + 50.303078301 + ], + [ + 9.3967594, + 50.302756501 + ], + [ + 9.3962872, + 50.302415801 + ], + [ + 9.3958439, + 50.302084901 + ], + [ + 9.3953774, + 50.301708601 + ], + [ + 9.3947879, + 50.301211201 + ], + [ + 9.3942349, + 50.300701601 + ], + [ + 9.3937213, + 50.300199001 + ], + [ + 9.3933328, + 50.299793301 + ], + [ + 9.393013, + 50.299436501 + ], + [ + 9.392148, + 50.298399901 + ], + [ + 9.3914047, + 50.297469401 + ], + [ + 9.389103, + 50.294580101 + ], + [ + 9.3860786, + 50.290783201 + ], + [ + 9.3848941, + 50.289296101 + ], + [ + 9.384779, + 50.289160101 + ], + [ + 9.3843971, + 50.288714901 + ], + [ + 9.3840173, + 50.288245301 + ], + [ + 9.3836015, + 50.287721301 + ], + [ + 9.3828881, + 50.286834101 + ], + [ + 9.3820946, + 50.285835901 + ], + [ + 9.3816062, + 50.285230101 + ], + [ + 9.3812798, + 50.284837101 + ], + [ + 9.3804457, + 50.283774201 + ], + [ + 9.3795987, + 50.282713901 + ], + [ + 9.3787531, + 50.281653401 + ], + [ + 9.3779148, + 50.280602601 + ], + [ + 9.3766729, + 50.279045701 + ], + [ + 9.37459, + 50.276431001 + ], + [ + 9.3734563, + 50.275016601 + ], + [ + 9.3732051, + 50.274708601 + ], + [ + 9.3730488, + 50.274501501 + ], + [ + 9.3718098, + 50.272975501 + ], + [ + 9.3715163, + 50.272645301 + ], + [ + 9.3711002, + 50.272212601 + ], + [ + 9.3707808, + 50.271915901 + ], + [ + 9.3704481, + 50.271622701 + ], + [ + 9.3702532, + 50.271471301 + ], + [ + 9.3699239, + 50.271210201 + ], + [ + 9.3698521, + 50.271158301 + ], + [ + 9.3695807, + 50.270961601 + ], + [ + 9.3692151, + 50.270714401 + ], + [ + 9.3687876, + 50.270440101 + ], + [ + 9.3683501, + 50.270174801 + ], + [ + 9.3671943, + 50.269495401 + ], + [ + 9.3666529, + 50.269171401 + ], + [ + 9.3664461, + 50.269043801 + ], + [ + 9.3662542, + 50.268922101 + ], + [ + 9.365911, + 50.268685901 + ], + [ + 9.3657434, + 50.268565101 + ], + [ + 9.3655841, + 50.268446601 + ], + [ + 9.3654638, + 50.268353901 + ], + [ + 9.3653363, + 50.268252801 + ], + [ + 9.3651396, + 50.268088401 + ], + [ + 9.3648961, + 50.267879801 + ], + [ + 9.3643968, + 50.267426301 + ], + [ + 9.3639449, + 50.267018401 + ], + [ + 9.3636552, + 50.266760201 + ], + [ + 9.3631319, + 50.266297501 + ], + [ + 9.362827, + 50.266041201 + ], + [ + 9.3625007, + 50.265776601 + ], + [ + 9.3620618, + 50.265441201 + ], + [ + 9.3616643, + 50.265157201 + ], + [ + 9.3612821, + 50.264905301 + ], + [ + 9.3609033, + 50.264666601 + ], + [ + 9.3603933, + 50.264366301 + ], + [ + 9.3599587, + 50.264124801 + ], + [ + 9.3594299, + 50.263856301 + ], + [ + 9.3590392, + 50.263669501 + ], + [ + 9.3586327, + 50.263484901 + ], + [ + 9.3581059, + 50.263260401 + ], + [ + 9.3576622, + 50.263083701 + ], + [ + 9.3570304, + 50.262847301 + ], + [ + 9.3561652, + 50.262539001 + ], + [ + 9.3544882, + 50.261968901 + ], + [ + 9.3537399, + 50.261713701 + ], + [ + 9.352912, + 50.261410801 + ], + [ + 9.3524383, + 50.261229001 + ], + [ + 9.3518797, + 50.260997801 + ], + [ + 9.3512169, + 50.260702601 + ], + [ + 9.3505749, + 50.260395901 + ], + [ + 9.3498612, + 50.260021501 + ], + [ + 9.3491382, + 50.259614201 + ], + [ + 9.3480076, + 50.258955101 + ], + [ + 9.3468686, + 50.258289301 + ], + [ + 9.3454075, + 50.257434001 + ], + [ + 9.3440774, + 50.256656901 + ], + [ + 9.3437463, + 50.256464001 + ], + [ + 9.3429427, + 50.255984601 + ], + [ + 9.3421797, + 50.255523201 + ], + [ + 9.3410827, + 50.254818101 + ], + [ + 9.3403915, + 50.254362201 + ], + [ + 9.3397109, + 50.253898801 + ], + [ + 9.3383399, + 50.252950401 + ], + [ + 9.3378576, + 50.252635201 + ], + [ + 9.3373936, + 50.252355901 + ], + [ + 9.3371965, + 50.252244801 + ], + [ + 9.3368199, + 50.252043901 + ], + [ + 9.3358585, + 50.251571801 + ], + [ + 9.3339891, + 50.250730501 + ], + [ + 9.3336524, + 50.250577901 + ], + [ + 9.3330478, + 50.250269001 + ], + [ + 9.3324978, + 50.249966701 + ], + [ + 9.3318821, + 50.249593301 + ], + [ + 9.331308, + 50.249204101 + ], + [ + 9.3308143, + 50.248854801 + ], + [ + 9.3304115, + 50.248537501 + ], + [ + 9.3300558, + 50.248233901 + ], + [ + 9.3293631, + 50.247584501 + ], + [ + 9.3286278, + 50.246864201 + ], + [ + 9.3280869, + 50.246362501 + ], + [ + 9.3275605, + 50.245908701 + ], + [ + 9.3270206, + 50.245510901 + ], + [ + 9.3263692, + 50.245091401 + ], + [ + 9.3257269, + 50.244726101 + ], + [ + 9.3252452, + 50.244480401 + ], + [ + 9.3246282, + 50.244193901 + ], + [ + 9.3237328, + 50.243838201 + ], + [ + 9.3231193, + 50.243626201 + ], + [ + 9.322396, + 50.243403201 + ], + [ + 9.3215775, + 50.243197501 + ], + [ + 9.3211415, + 50.243104001 + ], + [ + 9.3206693, + 50.243008501 + ], + [ + 9.32016, + 50.242920001 + ], + [ + 9.3196301, + 50.242841501 + ], + [ + 9.3191447, + 50.242783401 + ], + [ + 9.3186842, + 50.242736601 + ], + [ + 9.3179411, + 50.242690001 + ], + [ + 9.317206, + 50.242661801 + ], + [ + 9.3159878, + 50.242657101 + ], + [ + 9.3127249, + 50.242756301 + ], + [ + 9.3117644, + 50.242765801 + ], + [ + 9.3108877, + 50.242748401 + ], + [ + 9.3103917, + 50.242730601 + ], + [ + 9.3098414, + 50.242694101 + ], + [ + 9.3092368, + 50.242646701 + ], + [ + 9.308521, + 50.242575301 + ], + [ + 9.3071824, + 50.242417901 + ], + [ + 9.306126, + 50.242268901 + ], + [ + 9.3051175, + 50.242108201 + ], + [ + 9.3041316, + 50.241934801 + ], + [ + 9.303328, + 50.241775401 + ], + [ + 9.3025118, + 50.241606601 + ], + [ + 9.3013858, + 50.241353401 + ], + [ + 9.300285, + 50.241077201 + ], + [ + 9.2991136, + 50.240758301 + ], + [ + 9.2980524, + 50.240444801 + ], + [ + 9.297191, + 50.240167901 + ], + [ + 9.2964504, + 50.239924801 + ], + [ + 9.296151, + 50.239816801 + ], + [ + 9.2946779, + 50.239266701 + ], + [ + 9.2941469, + 50.239048801 + ], + [ + 9.2935708, + 50.238795501 + ], + [ + 9.2928465, + 50.238451701 + ], + [ + 9.2923577, + 50.238203501 + ], + [ + 9.2911067, + 50.237493001 + ], + [ + 9.2905887, + 50.237169001 + ], + [ + 9.2900672, + 50.236817201 + ], + [ + 9.2897121, + 50.236560501 + ], + [ + 9.2895336, + 50.236430401 + ], + [ + 9.2893514, + 50.236289301 + ], + [ + 9.2890555, + 50.236059501 + ], + [ + 9.2887574, + 50.235816501 + ], + [ + 9.2885306, + 50.235627601 + ], + [ + 9.2883126, + 50.235431801 + ], + [ + 9.2880841, + 50.235222001 + ], + [ + 9.2878625, + 50.235012201 + ], + [ + 9.2875882, + 50.234738301 + ], + [ + 9.2869804, + 50.234116101 + ], + [ + 9.286286, + 50.233349701 + ], + [ + 9.2856952, + 50.232706401 + ], + [ + 9.2852302, + 50.232222701 + ], + [ + 9.2848531, + 50.231863701 + ], + [ + 9.2844717, + 50.231520501 + ], + [ + 9.2840621, + 50.231185401 + ], + [ + 9.2836252, + 50.230854601 + ], + [ + 9.2832257, + 50.230578501 + ], + [ + 9.2827621, + 50.230273101 + ], + [ + 9.2823242, + 50.230011401 + ], + [ + 9.2818515, + 50.229736201 + ], + [ + 9.2815533, + 50.229574001 + ], + [ + 9.281248, + 50.229407601 + ], + [ + 9.280616, + 50.229073801 + ], + [ + 9.2797274, + 50.228627201 + ], + [ + 9.2792233, + 50.228381101 + ], + [ + 9.2784382, + 50.228006201 + ], + [ + 9.2778362, + 50.227730201 + ], + [ + 9.2771416, + 50.227417801 + ], + [ + 9.2765197, + 50.227147301 + ], + [ + 9.2760333, + 50.226942501 + ], + [ + 9.2756037, + 50.226766301 + ], + [ + 9.27466, + 50.226392601 + ], + [ + 9.2743269, + 50.226267301 + ], + [ + 9.274002, + 50.226148801 + ], + [ + 9.2733941, + 50.225944101 + ], + [ + 9.2728763, + 50.225783401 + ], + [ + 9.2723481, + 50.225635301 + ], + [ + 9.2717747, + 50.225489101 + ], + [ + 9.2712329, + 50.225364201 + ], + [ + 9.2705864, + 50.225233401 + ], + [ + 9.2703135, + 50.225184601 + ], + [ + 9.270051, + 50.225139901 + ], + [ + 9.2696688, + 50.225079401 + ], + [ + 9.2692978, + 50.225025001 + ], + [ + 9.2688109, + 50.224966301 + ], + [ + 9.2683118, + 50.224912201 + ], + [ + 9.2678487, + 50.224872001 + ], + [ + 9.2673862, + 50.224835601 + ], + [ + 9.2667885, + 50.224797701 + ], + [ + 9.2657784, + 50.224738801 + ], + [ + 9.2608218, + 50.224480601 + ], + [ + 9.2555641, + 50.224201901 + ], + [ + 9.2545689, + 50.224146101 + ], + [ + 9.2540712, + 50.224115201 + ], + [ + 9.2535908, + 50.224081501 + ], + [ + 9.2527563, + 50.224009401 + ], + [ + 9.2521188, + 50.223941801 + ], + [ + 9.2515683, + 50.223868401 + ], + [ + 9.2510556, + 50.223793101 + ], + [ + 9.2505825, + 50.223714501 + ], + [ + 9.2503037, + 50.223660801 + ], + [ + 9.2500103, + 50.223600101 + ], + [ + 9.2497132, + 50.223533001 + ], + [ + 9.2491578, + 50.223393501 + ], + [ + 9.2486673, + 50.223256901 + ], + [ + 9.2482859, + 50.223143301 + ], + [ + 9.2479776, + 50.223041401 + ], + [ + 9.2476381, + 50.222923401 + ], + [ + 9.2473208, + 50.222807401 + ], + [ + 9.2466781, + 50.222548701 + ], + [ + 9.2462787, + 50.222371801 + ], + [ + 9.2458708, + 50.222177801 + ], + [ + 9.2455146, + 50.221994001 + ], + [ + 9.2451053, + 50.221768101 + ], + [ + 9.2447165, + 50.221535201 + ], + [ + 9.2443657, + 50.221311701 + ], + [ + 9.2440987, + 50.221130601 + ], + [ + 9.2438764, + 50.220971201 + ], + [ + 9.2435047, + 50.220687401 + ], + [ + 9.2431649, + 50.220403601 + ], + [ + 9.2429942, + 50.220254601 + ], + [ + 9.2427652, + 50.220035601 + ], + [ + 9.2425074, + 50.219778201 + ], + [ + 9.2422333, + 50.219487101 + ], + [ + 9.2419079, + 50.219091001 + ], + [ + 9.2415686, + 50.218648701 + ], + [ + 9.241263, + 50.218207101 + ], + [ + 9.2410799, + 50.217925501 + ], + [ + 9.2409052, + 50.217643301 + ], + [ + 9.2405167, + 50.216993001 + ], + [ + 9.2400562, + 50.216191801 + ], + [ + 9.2397138, + 50.215626301 + ], + [ + 9.2393477, + 50.215040901 + ], + [ + 9.2391485, + 50.214757701 + ], + [ + 9.2389323, + 50.214465601 + ], + [ + 9.2386926, + 50.214155901 + ], + [ + 9.2383334, + 50.213727301 + ], + [ + 9.2379558, + 50.213316701 + ], + [ + 9.2375854, + 50.212943501 + ], + [ + 9.2372863, + 50.212658901 + ], + [ + 9.2370418, + 50.212442501 + ], + [ + 9.2368032, + 50.212222501 + ], + [ + 9.2363356, + 50.211847901 + ], + [ + 9.2360827, + 50.211652301 + ], + [ + 9.2358574, + 50.211480501 + ], + [ + 9.2353955, + 50.211157001 + ], + [ + 9.2348797, + 50.210811401 + ], + [ + 9.2342918, + 50.210446201 + ], + [ + 9.233554, + 50.210005601 + ], + [ + 9.2319225, + 50.209052301 + ], + [ + 9.2314044, + 50.208728901 + ], + [ + 9.2308969, + 50.208413301 + ], + [ + 9.2304124, + 50.208089801 + ], + [ + 9.2301319, + 50.207885501 + ], + [ + 9.2298967, + 50.207704601 + ], + [ + 9.229651, + 50.207504301 + ], + [ + 9.2294582, + 50.207333301 + ], + [ + 9.2292662, + 50.207169401 + ], + [ + 9.2288205, + 50.206703301 + ], + [ + 9.2286485, + 50.206504101 + ], + [ + 9.2284789, + 50.206302601 + ], + [ + 9.2282968, + 50.206060401 + ], + [ + 9.2281222, + 50.205810601 + ], + [ + 9.2279028, + 50.205459501 + ], + [ + 9.2276925, + 50.205082601 + ], + [ + 9.2273941, + 50.204501401 + ], + [ + 9.2270905, + 50.203928101 + ], + [ + 9.2268691, + 50.203570901 + ], + [ + 9.2266597, + 50.203270601 + ], + [ + 9.2264029, + 50.202950501 + ], + [ + 9.226156, + 50.202659701 + ], + [ + 9.2258732, + 50.202364101 + ], + [ + 9.2255776, + 50.202083101 + ], + [ + 9.2253411, + 50.201880901 + ], + [ + 9.2251034, + 50.201678901 + ], + [ + 9.2246844, + 50.201366201 + ], + [ + 9.2244379, + 50.201194501 + ], + [ + 9.2241875, + 50.201025401 + ], + [ + 9.2235644, + 50.200651801 + ], + [ + 9.222954, + 50.200336801 + ], + [ + 9.2223202, + 50.200018501 + ], + [ + 9.2217793, + 50.199790001 + ], + [ + 9.2210275, + 50.199470001 + ], + [ + 9.2195024, + 50.198835301 + ], + [ + 9.2177667, + 50.198113601 + ], + [ + 9.2163957, + 50.197546401 + ], + [ + 9.2157032, + 50.197256701 + ], + [ + 9.2144368, + 50.196740301 + ], + [ + 9.2139609, + 50.196558801 + ], + [ + 9.2134969, + 50.196387501 + ], + [ + 9.2130296, + 50.196223301 + ], + [ + 9.2126417, + 50.196101601 + ], + [ + 9.2122229, + 50.195976501 + ], + [ + 9.2120818, + 50.195935601 + ], + [ + 9.2116402, + 50.195819201 + ], + [ + 9.2112266, + 50.195719401 + ], + [ + 9.2107548, + 50.195616201 + ], + [ + 9.2102302, + 50.195515401 + ], + [ + 9.2097597, + 50.195438101 + ], + [ + 9.2092867, + 50.195371501 + ], + [ + 9.2090056, + 50.195336501 + ], + [ + 9.208651, + 50.195298601 + ], + [ + 9.2083048, + 50.195267001 + ], + [ + 9.2078069, + 50.195230601 + ], + [ + 9.2073474, + 50.195206801 + ], + [ + 9.206856, + 50.195185901 + ], + [ + 9.205905, + 50.195155101 + ], + [ + 9.2050151, + 50.195127001 + ], + [ + 9.2047246, + 50.195117901 + ], + [ + 9.2043339, + 50.195101501 + ], + [ + 9.2037985, + 50.195080201 + ], + [ + 9.2030934, + 50.195046001 + ], + [ + 9.2023587, + 50.195004601 + ], + [ + 9.2010333, + 50.194922901 + ], + [ + 9.199895, + 50.194841601 + ], + [ + 9.1991113, + 50.194779801 + ], + [ + 9.1982702, + 50.194709401 + ], + [ + 9.1966934, + 50.194562401 + ], + [ + 9.1963184, + 50.194521801 + ], + [ + 9.1947432, + 50.194347101 + ], + [ + 9.1939725, + 50.194253501 + ], + [ + 9.1932472, + 50.194162601 + ], + [ + 9.1927162, + 50.194092701 + ], + [ + 9.1925195, + 50.194066201 + ], + [ + 9.1920646, + 50.194004901 + ], + [ + 9.1895391, + 50.193638201 + ], + [ + 9.1864736, + 50.193180301 + ], + [ + 9.1842996, + 50.192860901 + ], + [ + 9.1832582, + 50.192695201 + ], + [ + 9.1821706, + 50.192503401 + ], + [ + 9.18139, + 50.192351201 + ], + [ + 9.1803645, + 50.192135701 + ], + [ + 9.178741, + 50.191775501 + ], + [ + 9.1773412, + 50.191474201 + ], + [ + 9.1761291, + 50.191197301 + ], + [ + 9.1757152, + 50.191119601 + ], + [ + 9.1754117, + 50.191061301 + ], + [ + 9.1750422, + 50.190990001 + ], + [ + 9.1746955, + 50.190928401 + ], + [ + 9.1742785, + 50.190857801 + ], + [ + 9.1738804, + 50.190794201 + ], + [ + 9.1732165, + 50.190715001 + ], + [ + 9.17282, + 50.190673001 + ], + [ + 9.1724754, + 50.190639401 + ], + [ + 9.1717824, + 50.190591701 + ], + [ + 9.1710925, + 50.190561001 + ], + [ + 9.170448, + 50.190548201 + ], + [ + 9.1697717, + 50.190557001 + ], + [ + 9.1691326, + 50.190576701 + ], + [ + 9.1685553, + 50.190607901 + ], + [ + 9.1680946, + 50.190641901 + ], + [ + 9.1677149, + 50.190674801 + ], + [ + 9.1673429, + 50.190712501 + ], + [ + 9.1670029, + 50.190755901 + ], + [ + 9.1663051, + 50.190861601 + ], + [ + 9.1655684, + 50.190988801 + ], + [ + 9.164944, + 50.191118201 + ], + [ + 9.1643243, + 50.191259701 + ], + [ + 9.1636114, + 50.191448901 + ], + [ + 9.1632796, + 50.191545001 + ], + [ + 9.163012, + 50.191627601 + ], + [ + 9.1627537, + 50.191706501 + ], + [ + 9.1625423, + 50.191779401 + ], + [ + 9.1622081, + 50.191897001 + ], + [ + 9.1618295, + 50.192031501 + ], + [ + 9.1615035, + 50.192158601 + ], + [ + 9.1611617, + 50.192295501 + ], + [ + 9.1607543, + 50.192468301 + ], + [ + 9.1603513, + 50.192647101 + ], + [ + 9.1599218, + 50.192842101 + ], + [ + 9.1594912, + 50.193045101 + ], + [ + 9.1591404, + 50.193215601 + ], + [ + 9.1584465, + 50.193558701 + ], + [ + 9.1570024, + 50.194275601 + ], + [ + 9.1557634, + 50.194895101 + ], + [ + 9.1552214, + 50.195165601 + ], + [ + 9.1546461, + 50.195454201 + ], + [ + 9.1535442, + 50.196001901 + ], + [ + 9.152403, + 50.196568201 + ], + [ + 9.1512662, + 50.197116601 + ], + [ + 9.1507331, + 50.197361201 + ], + [ + 9.1501882, + 50.197608401 + ], + [ + 9.149654, + 50.197839001 + ], + [ + 9.1491725, + 50.198040601 + ], + [ + 9.1487455, + 50.198211301 + ], + [ + 9.1483331, + 50.198372001 + ], + [ + 9.1476911, + 50.198609001 + ], + [ + 9.1472, + 50.198775901 + ], + [ + 9.1466558, + 50.198951601 + ], + [ + 9.1463297, + 50.199050401 + ], + [ + 9.1458268, + 50.199194601 + ], + [ + 9.1453966, + 50.199309501 + ], + [ + 9.144765, + 50.199462801 + ], + [ + 9.1442043, + 50.199584401 + ], + [ + 9.1438865, + 50.199647801 + ], + [ + 9.1435873, + 50.199702001 + ], + [ + 9.1432482, + 50.199759801 + ], + [ + 9.142813, + 50.199827501 + ], + [ + 9.1424507, + 50.199872401 + ], + [ + 9.1420876, + 50.199919001 + ], + [ + 9.1415679, + 50.199975801 + ], + [ + 9.1410568, + 50.200018901 + ], + [ + 9.1405516, + 50.200052201 + ], + [ + 9.1400401, + 50.200073201 + ], + [ + 9.1395032, + 50.200080301 + ], + [ + 9.1390511, + 50.200086301 + ], + [ + 9.1385296, + 50.200080001 + ], + [ + 9.1380601, + 50.200067201 + ], + [ + 9.1377198, + 50.200050101 + ], + [ + 9.137358, + 50.200027001 + ], + [ + 9.1370439, + 50.200004201 + ], + [ + 9.1366656, + 50.199971301 + ], + [ + 9.1363495, + 50.199939901 + ], + [ + 9.136058, + 50.199908901 + ], + [ + 9.1357039, + 50.199863601 + ], + [ + 9.1353289, + 50.199810701 + ], + [ + 9.1348921, + 50.199744101 + ], + [ + 9.1344287, + 50.199660601 + ], + [ + 9.1340775, + 50.199594801 + ], + [ + 9.1336343, + 50.199501501 + ], + [ + 9.1331073, + 50.199380801 + ], + [ + 9.1323521, + 50.199183401 + ], + [ + 9.1319133, + 50.199053801 + ], + [ + 9.1314899, + 50.198924101 + ], + [ + 9.1311208, + 50.198804101 + ], + [ + 9.1306485, + 50.198638601 + ], + [ + 9.1301022, + 50.198438101 + ], + [ + 9.129605, + 50.198248901 + ], + [ + 9.1292052, + 50.198087401 + ], + [ + 9.1288001, + 50.197922101 + ], + [ + 9.1282056, + 50.197668801 + ], + [ + 9.1276591, + 50.197430901 + ], + [ + 9.1271357, + 50.197197901 + ], + [ + 9.1261987, + 50.196777301 + ], + [ + 9.1253181, + 50.196379601 + ], + [ + 9.1245955, + 50.196061201 + ], + [ + 9.123903, + 50.195765101 + ], + [ + 9.1234876, + 50.195592401 + ], + [ + 9.1230628, + 50.195421601 + ], + [ + 9.1226422, + 50.195255401 + ], + [ + 9.1222025, + 50.195089901 + ], + [ + 9.1217151, + 50.194915401 + ], + [ + 9.1211211, + 50.194713201 + ], + [ + 9.1207945, + 50.194605501 + ], + [ + 9.120418, + 50.194492901 + ], + [ + 9.1201132, + 50.194400801 + ], + [ + 9.119506, + 50.194222401 + ], + [ + 9.1192057, + 50.194138701 + ], + [ + 9.1189141, + 50.194059501 + ], + [ + 9.1182744, + 50.193900201 + ], + [ + 9.1176528, + 50.193753501 + ], + [ + 9.1169297, + 50.193596301 + ], + [ + 9.1161902, + 50.193449401 + ], + [ + 9.1153701, + 50.193303901 + ], + [ + 9.1145487, + 50.193171001 + ], + [ + 9.1139208, + 50.193087001 + ], + [ + 9.1133202, + 50.193012601 + ], + [ + 9.1127593, + 50.192951201 + ], + [ + 9.1121909, + 50.192898401 + ], + [ + 9.1116394, + 50.192850601 + ], + [ + 9.1112341, + 50.192820901 + ], + [ + 9.1107011, + 50.192789701 + ], + [ + 9.110167, + 50.192763401 + ], + [ + 9.1093146, + 50.192733501 + ], + [ + 9.1084006, + 50.192718301 + ], + [ + 9.1073122, + 50.192723001 + ], + [ + 9.1067996, + 50.192730001 + ], + [ + 9.1064231, + 50.192737701 + ], + [ + 9.1059333, + 50.192744101 + ], + [ + 9.1050587, + 50.192756001 + ], + [ + 9.1044351, + 50.192755501 + ], + [ + 9.1041762, + 50.192756301 + ], + [ + 9.1037555, + 50.192758801 + ], + [ + 9.1033434, + 50.192755701 + ], + [ + 9.1024257, + 50.192714501 + ], + [ + 9.1020058, + 50.192688501 + ], + [ + 9.1016073, + 50.192654201 + ], + [ + 9.1011748, + 50.192608101 + ], + [ + 9.1007403, + 50.192552701 + ], + [ + 9.100363, + 50.192495201 + ], + [ + 9.1000339, + 50.192442601 + ], + [ + 9.0996975, + 50.192381701 + ], + [ + 9.099058, + 50.192249501 + ], + [ + 9.0984572, + 50.192106601 + ], + [ + 9.0979587, + 50.191973501 + ], + [ + 9.0974022, + 50.191817801 + ], + [ + 9.0964445, + 50.191533601 + ], + [ + 9.095451, + 50.191239001 + ], + [ + 9.0934708, + 50.190652001 + ], + [ + 9.0880166, + 50.189030501 + ], + [ + 9.0877334, + 50.188946001 + ], + [ + 9.0873932, + 50.188834901 + ], + [ + 9.0871606, + 50.188752701 + ], + [ + 9.0869039, + 50.188654001 + ], + [ + 9.0865466, + 50.188505501 + ], + [ + 9.0863151, + 50.188395601 + ], + [ + 9.0860313, + 50.188258601 + ], + [ + 9.0858235, + 50.188143401 + ], + [ + 9.0856072, + 50.188018901 + ], + [ + 9.0853978, + 50.187887401 + ], + [ + 9.0851818, + 50.187748601 + ], + [ + 9.0849776, + 50.187603401 + ], + [ + 9.0848287, + 50.187487401 + ], + [ + 9.0846821, + 50.187369201 + ], + [ + 9.084566, + 50.187271501 + ], + [ + 9.0844088, + 50.187146601 + ], + [ + 9.0841882, + 50.186958301 + ], + [ + 9.0837884, + 50.186619701 + ], + [ + 9.0831689, + 50.186093301 + ], + [ + 9.0825578, + 50.185575301 + ], + [ + 9.0823107, + 50.185364601 + ], + [ + 9.0819678, + 50.185050301 + ], + [ + 9.0816996, + 50.184799501 + ], + [ + 9.080725, + 50.183794201 + ], + [ + 9.0804831, + 50.183578301 + ], + [ + 9.0802563, + 50.183374201 + ], + [ + 9.0797773, + 50.183016101 + ], + [ + 9.0794075, + 50.182766401 + ], + [ + 9.0789958, + 50.182515001 + ], + [ + 9.0786692, + 50.182326601 + ], + [ + 9.0782908, + 50.182132801 + ], + [ + 9.0779223, + 50.181971601 + ], + [ + 9.0775353, + 50.181808101 + ], + [ + 9.0771632, + 50.181663401 + ], + [ + 9.0767866, + 50.181525801 + ], + [ + 9.0764443, + 50.181420801 + ], + [ + 9.0760688, + 50.181319901 + ], + [ + 9.0756205, + 50.181205001 + ], + [ + 9.0751943, + 50.181112501 + ], + [ + 9.0747558, + 50.181030601 + ], + [ + 9.0742958, + 50.180950101 + ], + [ + 9.0735547, + 50.180837201 + ], + [ + 9.0727876, + 50.180726001 + ], + [ + 9.0712846, + 50.180503901 + ], + [ + 9.0701572, + 50.180310801 + ], + [ + 9.0672784, + 50.179779701 + ], + [ + 9.0640119, + 50.179173601 + ], + [ + 9.0623785, + 50.178865601 + ], + [ + 9.0607709, + 50.178567301 + ], + [ + 9.0592471, + 50.178283801 + ], + [ + 9.0586172, + 50.178159601 + ], + [ + 9.0579691, + 50.178023601 + ], + [ + 9.0575531, + 50.177921601 + ], + [ + 9.0573131, + 50.177857201 + ], + [ + 9.0570815, + 50.177790601 + ], + [ + 9.0566504, + 50.177657801 + ], + [ + 9.0561966, + 50.177495201 + ], + [ + 9.0558093, + 50.177339201 + ], + [ + 9.0554305, + 50.177166001 + ], + [ + 9.0549976, + 50.176950801 + ], + [ + 9.0545421, + 50.176703201 + ], + [ + 9.0540412, + 50.176382001 + ], + [ + 9.0534658, + 50.175980601 + ], + [ + 9.0525473, + 50.175290801 + ], + [ + 9.051565, + 50.174565901 + ], + [ + 9.0510025, + 50.174174101 + ], + [ + 9.050529, + 50.173878501 + ], + [ + 9.0502842, + 50.173730401 + ], + [ + 9.0500056, + 50.173573201 + ], + [ + 9.0497269, + 50.173427601 + ], + [ + 9.049523, + 50.173321301 + ], + [ + 9.0492998, + 50.173210801 + ], + [ + 9.0490699, + 50.173104901 + ], + [ + 9.0485945, + 50.172895101 + ], + [ + 9.0482416, + 50.172756101 + ], + [ + 9.0479127, + 50.172633401 + ], + [ + 9.0473523, + 50.172448901 + ], + [ + 9.047150417, + 50.172392759 + ] + ] + } + }, + { + "identifier": "2025-030848--vi-bs.2025-09-30_00-00-00-000.devi-zus.2025-07-07_00-00-00-000_005.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.144470255913575,8.806678579881593,50.13940544422157,8.747591581201922", + "point": "50.144470255913575,8.806678579881593", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Frankfurt am Main-Bergen-Enkheim (aus Richtung Maintal-Bischofsheim)", + "title": "A66 Tiefbauarbeiten neben der Fahrbahn", + "startTimestamp": "2025-09-30T00:00:00+02:00", + "coordinate": { + "lat": 50.144470255913575, + "long": 8.806678579881593 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.25 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "Abfahrt von der A66: AS Frankfurt am Main-Bergen-Enkheim (aus Richtung Maintal-Bischofsheim)", + "", + "L\u00e4nge: 4.4 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A66 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.80667858, + 50.144470256 + ], + [ + 8.8050904, + 50.144177601 + ], + [ + 8.8032409, + 50.143836701 + ], + [ + 8.801974, + 50.143589701 + ], + [ + 8.8018999, + 50.143574801 + ], + [ + 8.800174, + 50.143251301 + ], + [ + 8.7997459, + 50.143167401 + ], + [ + 8.797999, + 50.142851001 + ], + [ + 8.7975985, + 50.142789401 + ], + [ + 8.7971815, + 50.142727001 + ], + [ + 8.7967707, + 50.142674601 + ], + [ + 8.7960729, + 50.142602001 + ], + [ + 8.7951852, + 50.142536901 + ], + [ + 8.7944303, + 50.142509201 + ], + [ + 8.7940053, + 50.142502401 + ], + [ + 8.7935753, + 50.142497801 + ], + [ + 8.7931711, + 50.142506001 + ], + [ + 8.7926759, + 50.142528501 + ], + [ + 8.7921343, + 50.142553901 + ], + [ + 8.7914807, + 50.142600601 + ], + [ + 8.7909836, + 50.142651101 + ], + [ + 8.7903153, + 50.142735201 + ], + [ + 8.789706, + 50.142814601 + ], + [ + 8.7889118, + 50.142954001 + ], + [ + 8.7866611, + 50.143400501 + ], + [ + 8.7859481, + 50.143525801 + ], + [ + 8.7851841, + 50.143629301 + ], + [ + 8.7846286, + 50.143698301 + ], + [ + 8.7840992, + 50.143755301 + ], + [ + 8.7835804, + 50.143799101 + ], + [ + 8.7829996, + 50.143841301 + ], + [ + 8.7826186, + 50.143860101 + ], + [ + 8.7821543, + 50.143877901 + ], + [ + 8.7813345, + 50.143896001 + ], + [ + 8.7804262, + 50.143882201 + ], + [ + 8.7795873, + 50.143848901 + ], + [ + 8.7787311, + 50.143780401 + ], + [ + 8.7780113, + 50.143706901 + ], + [ + 8.7771756, + 50.143592601 + ], + [ + 8.776438, + 50.143480401 + ], + [ + 8.7751407, + 50.143238701 + ], + [ + 8.7730041, + 50.142829901 + ], + [ + 8.7649248, + 50.141313601 + ], + [ + 8.7612098, + 50.140610301 + ], + [ + 8.7606114, + 50.140509101 + ], + [ + 8.7600671, + 50.140423901 + ], + [ + 8.7593958, + 50.140335201 + ], + [ + 8.7587971, + 50.140288301 + ], + [ + 8.7579808, + 50.140221701 + ], + [ + 8.7571938, + 50.140180801 + ], + [ + 8.7563647, + 50.140132801 + ], + [ + 8.7553802, + 50.140063701 + ], + [ + 8.7546893, + 50.140000701 + ], + [ + 8.7538034, + 50.139892701 + ], + [ + 8.7531812, + 50.139792301 + ], + [ + 8.7524462, + 50.139644801 + ], + [ + 8.7519508, + 50.139516501 + ], + [ + 8.7514009, + 50.139371101 + ], + [ + 8.7510444, + 50.139249901 + ], + [ + 8.7501283, + 50.138938401 + ], + [ + 8.7496056, + 50.138736301 + ], + [ + 8.7493691, + 50.138664401 + ], + [ + 8.7492434, + 50.138644101 + ], + [ + 8.7490984, + 50.138631801 + ], + [ + 8.7489834, + 50.138631901 + ], + [ + 8.7488708, + 50.138638701 + ], + [ + 8.7487495, + 50.138656201 + ], + [ + 8.7486059, + 50.138688101 + ], + [ + 8.7484689, + 50.138733801 + ], + [ + 8.7483671, + 50.138775801 + ], + [ + 8.7482887, + 50.138822901 + ], + [ + 8.7482225, + 50.138865401 + ], + [ + 8.7481707, + 50.138905901 + ], + [ + 8.7476484, + 50.139357901 + ], + [ + 8.747591581, + 50.139405444 + ] + ] + } + }, + { + "identifier": "2025-030848--vi-bs.2025-09-30_00-00-00-000.devi-zus.2025-07-07_00-00-00-000_005.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.13934663811113,8.747474018049758,50.1443226048858,8.806745420479519", + "point": "50.13934663811113,8.747474018049758", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Frankfurt am Main-Bergen-Enkheim (in Richtung Maintal-Bischofsheim)", + "title": "A66 Tiefbauarbeiten neben der Fahrbahn", + "startTimestamp": "2025-09-30T00:00:00+02:00", + "coordinate": { + "lat": 50.13934663811113, + "long": 8.747474018049758 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.09.25 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "Auffahrt auf die A66: AS Frankfurt am Main-Bergen-Enkheim (in Richtung Maintal-Bischofsheim)", + "", + "L\u00e4nge: 4.4 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A66 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.747474018, + 50.139346638 + ], + [ + 8.7475053, + 50.139321201 + ], + [ + 8.7480251, + 50.138872501 + ], + [ + 8.7481608, + 50.138768301 + ], + [ + 8.748332, + 50.138674001 + ], + [ + 8.7484883, + 50.138610101 + ], + [ + 8.7486623, + 50.138563401 + ], + [ + 8.7487909, + 50.138539601 + ], + [ + 8.7489167, + 50.138522301 + ], + [ + 8.7490063, + 50.138514901 + ], + [ + 8.7491182, + 50.138514901 + ], + [ + 8.7492825, + 50.138525301 + ], + [ + 8.7494269, + 50.138541201 + ], + [ + 8.7496336, + 50.138586901 + ], + [ + 8.7498187, + 50.138650601 + ], + [ + 8.750269, + 50.138830301 + ], + [ + 8.7509595, + 50.139059901 + ], + [ + 8.7514854, + 50.139218801 + ], + [ + 8.752073, + 50.139383501 + ], + [ + 8.752684, + 50.139522801 + ], + [ + 8.7532107, + 50.139632801 + ], + [ + 8.7538662, + 50.139736501 + ], + [ + 8.7546512, + 50.139847101 + ], + [ + 8.7551141, + 50.139881701 + ], + [ + 8.7560517, + 50.139958701 + ], + [ + 8.7569395, + 50.140003201 + ], + [ + 8.7580271, + 50.140074301 + ], + [ + 8.7589336, + 50.140140001 + ], + [ + 8.7594178, + 50.140189001 + ], + [ + 8.7600651, + 50.140265001 + ], + [ + 8.76055, + 50.140340201 + ], + [ + 8.761305, + 50.140465701 + ], + [ + 8.7650361, + 50.141157601 + ], + [ + 8.7731471, + 50.142693701 + ], + [ + 8.7752202, + 50.143095201 + ], + [ + 8.776364, + 50.143297001 + ], + [ + 8.7771912, + 50.143443001 + ], + [ + 8.7780294, + 50.143559901 + ], + [ + 8.7787424, + 50.143638301 + ], + [ + 8.7795548, + 50.143694301 + ], + [ + 8.7804214, + 50.143736001 + ], + [ + 8.7813603, + 50.143748601 + ], + [ + 8.7821396, + 50.143733101 + ], + [ + 8.7829113, + 50.143692901 + ], + [ + 8.783623, + 50.143647301 + ], + [ + 8.7840042, + 50.143609101 + ], + [ + 8.784366, + 50.143565901 + ], + [ + 8.7851307, + 50.143474501 + ], + [ + 8.7858789, + 50.143366101 + ], + [ + 8.7866291, + 50.143241901 + ], + [ + 8.7889062, + 50.142790101 + ], + [ + 8.789729, + 50.142652401 + ], + [ + 8.790288, + 50.142571901 + ], + [ + 8.7908163, + 50.142504901 + ], + [ + 8.7914518, + 50.142451101 + ], + [ + 8.7921195, + 50.142401101 + ], + [ + 8.7927224, + 50.142376201 + ], + [ + 8.7932063, + 50.142361501 + ], + [ + 8.793722, + 50.142349201 + ], + [ + 8.7941051, + 50.142351301 + ], + [ + 8.7945226, + 50.142359101 + ], + [ + 8.7952931, + 50.142393001 + ], + [ + 8.7961364, + 50.142456901 + ], + [ + 8.7968243, + 50.142527601 + ], + [ + 8.7972558, + 50.142580701 + ], + [ + 8.797703, + 50.142645201 + ], + [ + 8.7981694, + 50.142723101 + ], + [ + 8.7997983, + 50.143027501 + ], + [ + 8.8019659, + 50.143437201 + ], + [ + 8.8020404, + 50.143451301 + ], + [ + 8.8032409, + 50.143675201 + ], + [ + 8.8053851, + 50.144065101 + ], + [ + 8.8066922, + 50.144312501 + ], + [ + 8.80674542, + 50.144322605 + ] + ] + } + }, + { + "identifier": "2026-017253--vi-bs.2026-04-09_19-00-00-000.devi-bs.2026-04-09_19-00-00-000_009.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.132902672660634,8.656659866143688,50.13224166589007,8.655223592495968", + "point": "50.132902672660634,8.656659866143688", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Frankfurt am Main-Miquelallee (in Richtung Frankfurt am Main-Ludwig-Landmann-Stra\u00dfe) nach A66", + "title": "A66 Beseitigung Unfallfolgen Schutzplanke", + "coordinate": { + "lat": 50.132902672660634, + "long": 8.656659866143688 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 23:00 bis zum 10.04.26 03:00 Uhr.", + "", + "Von Auffahrt auf die A66: AS Frankfurt am Main-Miquelallee (in Richtung Frankfurt am Main-Ludwig-Landmann-Stra\u00dfe) nach A66: Frankfurt -> Wiesbaden, zwischen AS Frankfurt am Main-Miquelallee und 2.8 km vor AS Frankfurt am Main-Ludwig-Landmann-Stra\u00dfe", + "", + "L\u00e4nge: 0.15 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A66 Beseitigung Unfallfolgen Schutzplanke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.656659866, + 50.132902673 + ], + [ + 8.6566315, + 50.132756201 + ], + [ + 8.6565179, + 50.132571801 + ], + [ + 8.6563917, + 50.132453001 + ], + [ + 8.6562022, + 50.132333601 + ], + [ + 8.6560268, + 50.132285001 + ], + [ + 8.6558215, + 50.132247701 + ], + [ + 8.655564, + 50.132237901 + ], + [ + 8.6553226, + 50.132233501 + ], + [ + 8.655223592, + 50.132241666 + ] + ] + } + }, + { + "identifier": "2023-000697--vi-fbm.2026-04-20_00-00-00-000.devi-zus.2024-10-01_09-30-00-000.f_002.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.12972244428708,8.573960883890042,50.12942122410472,8.571569840206832", + "point": "50.12972244428708,8.573960883890042", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Eschborner Dreieck (aus Richtung Nordwestkreuz Frankfurt am Main)", + "title": "A66 Neubau der \u00dcF Eschborner Dreieck", + "startTimestamp": "2026-04-20T00:00:00+02:00", + "coordinate": { + "lat": 50.12972244428708, + "long": 8.573960883890042 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 00:00 Uhr", + "Ende: 24.04.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.27)", + "", + "Abfahrt von der A66: AD Eschborner Dreieck (aus Richtung Nordwestkreuz Frankfurt am Main)", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A66 Neubau der \u00dcF Eschborner Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.573960884, + 50.129722444 + ], + [ + 8.573799, + 50.129691701 + ], + [ + 8.5731564, + 50.129574801 + ], + [ + 8.5725777, + 50.129480701 + ], + [ + 8.5722686, + 50.129443201 + ], + [ + 8.5719544, + 50.129422801 + ], + [ + 8.5716222, + 50.129418601 + ], + [ + 8.57156984, + 50.129421224 + ] + ] + } + }, + { + "identifier": "2026-015807--vi-bs.2026-04-07_09-00-00-000.devi-bs.2026-04-07_09-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.11429287635557,8.530775197136414,50.114206017719866,8.533071200696389", + "point": "50.11429287635557,8.530775197136414", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Kelkheim (aus Richtung Frankfurt am Main-Zeilsheim)", + "title": "A66 Tiefbauarbeiten neben der Fahrbahn", + "coordinate": { + "lat": 50.11429287635557, + "long": 8.530775197136414 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "17.04.26 von 09:00 bis 15:00 Uhr", + "", + "Abfahrt von der A66: AS Kelkheim (aus Richtung Frankfurt am Main-Zeilsheim)", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A66 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.530775197, + 50.114292876 + ], + [ + 8.5307795, + 50.114293901 + ], + [ + 8.5309476, + 50.114320901 + ], + [ + 8.5310625, + 50.114339501 + ], + [ + 8.5312073, + 50.114356801 + ], + [ + 8.5313703, + 50.114369501 + ], + [ + 8.5314779, + 50.114372701 + ], + [ + 8.5315801, + 50.114370701 + ], + [ + 8.5316906, + 50.114361801 + ], + [ + 8.5317774, + 50.114347301 + ], + [ + 8.5318716, + 50.114333001 + ], + [ + 8.5319713, + 50.114312801 + ], + [ + 8.5323026, + 50.114234601 + ], + [ + 8.5324347, + 50.114206901 + ], + [ + 8.5325286, + 50.114192101 + ], + [ + 8.5326378, + 50.114181101 + ], + [ + 8.5327299, + 50.114176701 + ], + [ + 8.5328548, + 50.114179501 + ], + [ + 8.5329584, + 50.114188001 + ], + [ + 8.533071201, + 50.114206018 + ] + ] + } + }, + { + "identifier": "2026-015807--vi-bs.2026-04-07_09-00-00-000.devi-bs.2026-04-07_09-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.11429287635557,8.530775197136414,50.114206017719866,8.533071200696389", + "point": "50.11429287635557,8.530775197136414", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Kelkheim (aus Richtung Frankfurt am Main-Zeilsheim)", + "title": "A66 Tiefbauarbeiten neben der Fahrbahn", + "coordinate": { + "lat": 50.11429287635557, + "long": 8.530775197136414 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 15:00 Uhr", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "17.04.26 von 09:00 bis 15:00 Uhr", + "", + "Abfahrt von der A66: AS Kelkheim (aus Richtung Frankfurt am Main-Zeilsheim)", + "", + "L\u00e4nge: 0.17 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A66 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.530775197, + 50.114292876 + ], + [ + 8.5307795, + 50.114293901 + ], + [ + 8.5309476, + 50.114320901 + ], + [ + 8.5310625, + 50.114339501 + ], + [ + 8.5312073, + 50.114356801 + ], + [ + 8.5313703, + 50.114369501 + ], + [ + 8.5314779, + 50.114372701 + ], + [ + 8.5315801, + 50.114370701 + ], + [ + 8.5316906, + 50.114361801 + ], + [ + 8.5317774, + 50.114347301 + ], + [ + 8.5318716, + 50.114333001 + ], + [ + 8.5319713, + 50.114312801 + ], + [ + 8.5323026, + 50.114234601 + ], + [ + 8.5324347, + 50.114206901 + ], + [ + 8.5325286, + 50.114192101 + ], + [ + 8.5326378, + 50.114181101 + ], + [ + 8.5327299, + 50.114176701 + ], + [ + 8.5328548, + 50.114179501 + ], + [ + 8.5329584, + 50.114188001 + ], + [ + 8.533071201, + 50.114206018 + ] + ] + } + }, + { + "identifier": "2024-012559--vi-bs.2025-05-14_12-00-00-000.devi-bs.2025-03-01_09-30-00-000_001.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.08266667570565,8.490385353579944,50.08238995939195,8.486790446742809", + "point": "50.08266667570565,8.490385353579944", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Krifteler Dreieck (aus Richtung Frankfurt-Sindlingen)", + "title": "A66 Krifteler Dreieck", + "startTimestamp": "2025-05-14T12:00:00+02:00", + "coordinate": { + "lat": 50.08266667570565, + "long": 8.490385353579944 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.05.25 um 12:00 Uhr", + "Ende: 30.06.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "Abfahrt von der B40: AD Krifteler Dreieck (aus Richtung Frankfurt-Sindlingen)", + "", + "L\u00e4nge: 0.26 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A66 Krifteler Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.490385354, + 50.082666676 + ], + [ + 8.4901052, + 50.082675801 + ], + [ + 8.4894886, + 50.082691001 + ], + [ + 8.4891064, + 50.082700501 + ], + [ + 8.4887241, + 50.082693501 + ], + [ + 8.4883433, + 50.082669901 + ], + [ + 8.4879659, + 50.082629901 + ], + [ + 8.4875934, + 50.082573701 + ], + [ + 8.4872277, + 50.082501601 + ], + [ + 8.4868705, + 50.082413701 + ], + [ + 8.486790447, + 50.082389959 + ] + ] + } + }, + { + "identifier": "2024-012559--vi-bs.2025-05-14_12-00-00-000.devi-bs.2025-03-01_09-30-00-000_001.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.07775695011479,8.481476580695796,50.08255467155541,8.490738466862958", + "point": "50.07775695011479,8.481476580695796", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wiesbaden -> Frankfurt", + "title": "A66 Krifteler Dreieck", + "startTimestamp": "2025-05-14T12:00:00+02:00", + "coordinate": { + "lat": 50.07775695011479, + "long": 8.481476580695796 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.05.25 um 12:00 Uhr", + "Ende: 30.06.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "Von A66: Wiesbaden -> Frankfurt, zwischen 0.6 km hinter AS Hattersheim und AD Krifteler Dreieck nach Abfahrt von der A66: AS Hattersheim (aus Richtung Weilbach)", + "", + "L\u00e4nge: 0.89 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A66 Krifteler Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.481476581, + 50.07775695 + ], + [ + 8.4825692, + 50.078587201 + ], + [ + 8.4844735, + 50.079955601 + ], + [ + 8.4847858, + 50.080194601 + ], + [ + 8.4852994, + 50.080490801 + ], + [ + 8.4856336, + 50.080723601 + ], + [ + 8.4868606, + 50.081637501 + ], + [ + 8.4871179, + 50.081811101 + ], + [ + 8.4873976, + 50.081969601 + ], + [ + 8.4876978, + 50.082112001 + ], + [ + 8.488016, + 50.082237201 + ], + [ + 8.48835, + 50.082344101 + ], + [ + 8.4886972, + 50.082432001 + ], + [ + 8.489055, + 50.082500301 + ], + [ + 8.4894207, + 50.082548401 + ], + [ + 8.4897915, + 50.082575901 + ], + [ + 8.4901646, + 50.082582701 + ], + [ + 8.4905372, + 50.082568601 + ], + [ + 8.490738467, + 50.082554672 + ] + ] + } + }, + { + "identifier": "2026-017253--vi-bs.2026-04-09_19-00-00-000.devi-bs.2026-04-09_19-00-00-000_009.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.13232216020366,8.612089750086499,50.1325840609132,8.611214156915823", + "point": "50.13232216020366,8.612089750086499", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Frankfurt -> Wiesbaden", + "title": "A66 Beseitigung Unfallfolgen Schutzplanke", + "coordinate": { + "lat": 50.13232216020366, + "long": 8.612089750086499 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 01:00 bis 05:00 Uhr", + "", + "Von A66: Frankfurt -> Wiesbaden, zwischen 0.4 km hinter AS Frankfurt am Main-Ludwig-Landmann-Stra\u00dfe und AK Nordwestkreuz Frankfurt am Main nach Abfahrt von der A66: AS Frankfurt am Main-Ludwig-Landmann-Stra\u00dfe (aus Richtung Frankfurt am Main-Miquelallee)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A66 Beseitigung Unfallfolgen Schutzplanke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.61208975, + 50.13232216 + ], + [ + 8.6118379, + 50.132255301 + ], + [ + 8.6114826, + 50.132299201 + ], + [ + 8.6113928, + 50.132324401 + ], + [ + 8.6113158, + 50.132363301 + ], + [ + 8.6112565, + 50.132413401 + ], + [ + 8.6112188, + 50.132471401 + ], + [ + 8.6112051, + 50.132533601 + ], + [ + 8.611214157, + 50.132584061 + ] + ] + } + }, + { + "identifier": "2026-017253--vi-bs.2026-04-09_19-00-00-000.devi-bs.2026-04-09_19-00-00-000_009.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.12856511229025,8.563451263653858,50.12696002355391,8.562530732592789", + "point": "50.12856511229025,8.563451263653858", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Eschborn (aus Richtung Eschborner Dreieck)", + "title": "A66 Beseitigung Unfallfolgen Schutzplanke", + "coordinate": { + "lat": 50.12856511229025, + "long": 8.563451263653858 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 19:00 bis 22:00 Uhr", + "", + "Auffahrt auf die A66: AS Eschborn (aus Richtung Eschborner Dreieck)", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A66 Beseitigung Unfallfolgen Schutzplanke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.563451264, + 50.128565112 + ], + [ + 8.5633987, + 50.128526401 + ], + [ + 8.5633238, + 50.128447001 + ], + [ + 8.5632788, + 50.128344601 + ], + [ + 8.5632511, + 50.128229301 + ], + [ + 8.563257, + 50.128022101 + ], + [ + 8.5632893, + 50.127794401 + ], + [ + 8.5632863, + 50.127644301 + ], + [ + 8.5632538, + 50.127513301 + ], + [ + 8.5631744, + 50.127371201 + ], + [ + 8.5630513, + 50.127259601 + ], + [ + 8.5629306, + 50.127177801 + ], + [ + 8.5627484, + 50.127076601 + ], + [ + 8.562530733, + 50.126960024 + ] + ] + } + }, + { + "identifier": "2025-054538--vi-bs.2026-03-02_09-30-00-000.devi-zus.2025-11-17_09-30-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.05315809450877,8.260398941194927,50.053060203989965,8.262479795592906", + "point": "50.05315809450877,8.260398941194927", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wiesbaden-Mainzer Stra\u00dfe (aus Richtung Wiesbaden-Erbenheim)", + "title": "A66 AS Wi-Mainzer-Stra\u00dfe (RRB)", + "startTimestamp": "2026-03-02T09:30:00+01:00", + "coordinate": { + "lat": 50.05315809450877, + "long": 8.260398941194927 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 09:30 Uhr", + "Ende: 30.04.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "Auffahrt auf die A66: AS Wiesbaden-Mainzer Stra\u00dfe (aus Richtung Wiesbaden-Erbenheim)", + "", + "L\u00e4nge: 0.21 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A66 AS Wi-Mainzer-Stra\u00dfe (RRB)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.260398941, + 50.053158095 + ], + [ + 8.2604065, + 50.053159201 + ], + [ + 8.2605968, + 50.053191801 + ], + [ + 8.2608095, + 50.053241601 + ], + [ + 8.2610102, + 50.053297701 + ], + [ + 8.2611783, + 50.053360501 + ], + [ + 8.2615346, + 50.053504001 + ], + [ + 8.2616557, + 50.053543001 + ], + [ + 8.2617609, + 50.053567801 + ], + [ + 8.2618775, + 50.053587501 + ], + [ + 8.2619748, + 50.053593901 + ], + [ + 8.2620714, + 50.053593101 + ], + [ + 8.2621663, + 50.053581501 + ], + [ + 8.2622566, + 50.053559301 + ], + [ + 8.2623395, + 50.053527401 + ], + [ + 8.2624123, + 50.053486701 + ], + [ + 8.262473, + 50.053438401 + ], + [ + 8.2625196, + 50.053384001 + ], + [ + 8.2625506, + 50.053325201 + ], + [ + 8.2625645, + 50.053273601 + ], + [ + 8.2625658, + 50.053221201 + ], + [ + 8.2625542, + 50.053169401 + ], + [ + 8.26253, + 50.053119601 + ], + [ + 8.2624939, + 50.053072901 + ], + [ + 8.262479796, + 50.053060204 + ] + ] + } + } + ] + }, + "A67": { + "roadworks": [ + { + "identifier": "2026-017023--vi-bs.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_007.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.755671794593326,8.543780673731723,49.757470348572845,8.543831977728292", + "point": "49.755671794593326,8.543780673731723", + "startLcPosition": "6", + "impact": { + "lower": "Pfungstadt", + "upper": "Gernsheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mannheim -> Darmstadt", + "title": "A67 | Gernsheim - Pfungstadt", + "coordinate": { + "lat": 49.755671794593326, + "long": 8.543780673731723 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "", + "A67: Mannheim -> Darmstadt, zwischen 1.3 km hinter AS Gernsheim und 5.5 km vor AS Pfungstadt", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A67 von Pfungstadt (Raststaette) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.543780674, + 49.755671795 + ], + [ + 8.543831978, + 49.757470349 + ] + ] + } + }, + { + "identifier": "2026-017023--vi-bs.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_007.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.752074685429434,8.543678075792569,49.75477251818971,8.543755023011297", + "point": "49.752074685429434,8.543678075792569", + "startLcPosition": "6", + "impact": { + "lower": "Pfungstadt", + "upper": "Gernsheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mannheim -> Darmstadt", + "title": "A67 | Gernsheim - Pfungstadt", + "coordinate": { + "lat": 49.752074685429434, + "long": 8.543678075792569 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A67: Mannheim -> Darmstadt, zwischen 0.9 km hinter AS Gernsheim und 5.8 km vor AS Pfungstadt", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A67 von Pfungstadt (Raststaette) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.543678076, + 49.752074685 + ], + [ + 8.543755023, + 49.754772518 + ] + ] + } + }, + { + "identifier": "2026-016675--vi-fbm.2026-04-13_20-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.768210197793515,8.545025134193823,49.71371091952715,8.545112974725049", + "point": "49.768210197793515,8.545025134193823", + "startLcPosition": "7", + "impact": { + "lower": "J\u00e4gersburger Wald", + "upper": "Pfungstadt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Mannheim", + "title": "A67 | Pfungstadt - J\u00e4gersburger Wald", + "coordinate": { + "lat": 49.768210197793515, + "long": 8.545025134193823 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 05:00 Uhr.", + "", + "A67: Darmstadt -> Mannheim, zwischen 4.3 km hinter AS Pfungstadt und 1.9 km vor J\u00e4gersburger Wald", + "", + "L\u00e4nge: 6.08 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A67 von Pfungstadt (AS) nach J\u00e4gersburger Wald (Parkplatz) Baustelleneinrichtung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.545025134, + 49.768210198 + ], + [ + 8.5448596, + 49.767836001 + ], + [ + 8.5445584, + 49.767048501 + ], + [ + 8.5442991, + 49.766255601 + ], + [ + 8.544109, + 49.765458701 + ], + [ + 8.5439537, + 49.764659201 + ], + [ + 8.5438546, + 49.763669601 + ], + [ + 8.5438148, + 49.762666601 + ], + [ + 8.5433977, + 49.747880201 + ], + [ + 8.5433751, + 49.746980001 + ], + [ + 8.5433375, + 49.745500401 + ], + [ + 8.5433065, + 49.744526501 + ], + [ + 8.5432775, + 49.743261801 + ], + [ + 8.5427963, + 49.726852301 + ], + [ + 8.5427666, + 49.724545101 + ], + [ + 8.5428511, + 49.723162801 + ], + [ + 8.5429664, + 49.722252501 + ], + [ + 8.5432224, + 49.720888401 + ], + [ + 8.543589, + 49.719514901 + ], + [ + 8.5442134, + 49.717095401 + ], + [ + 8.5442916, + 49.716798101 + ], + [ + 8.545112975, + 49.71371092 + ] + ] + } + }, + { + "identifier": "2025-030544--vi-bs.2026-04-13_15-30-00-000.devi-zus.2026-01-19_09-30-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.746240142494656,8.543356298265426,49.71548360724637,8.544641347007653", + "point": "49.746240142494656,8.543356298265426", + "startLcPosition": "7", + "impact": { + "lower": "J\u00e4gersburger Wald", + "upper": "Pfungstadt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Mannheim", + "title": "A67 | Pfungstadt - J\u00e4gersburger Wald", + "startTimestamp": "2026-04-13T15:30:00+02:00", + "coordinate": { + "lat": 49.746240142494656, + "long": 8.543356298265426 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 15:30 Uhr", + "Ende: 22.05.26 um 09:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 22.05.26)", + "", + "A67: Darmstadt -> Mannheim, zwischen 6.8 km hinter AS Pfungstadt und 2.1 km vor J\u00e4gersburger Wald", + "", + "L\u00e4nge: 3.43 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A67 6-streifiger Ausbau zw. Pfungstadt und Lorsch" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.543356298, + 49.746240142 + ], + [ + 8.5433375, + 49.745500401 + ], + [ + 8.5433065, + 49.744526501 + ], + [ + 8.5432775, + 49.743261801 + ], + [ + 8.5427963, + 49.726852301 + ], + [ + 8.5427666, + 49.724545101 + ], + [ + 8.5428511, + 49.723162801 + ], + [ + 8.5429664, + 49.722252501 + ], + [ + 8.5432224, + 49.720888401 + ], + [ + 8.543589, + 49.719514901 + ], + [ + 8.5442134, + 49.717095401 + ], + [ + 8.5442916, + 49.716798101 + ], + [ + 8.544641347, + 49.715483607 + ] + ] + } + }, + { + "identifier": "2026-016445--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.84395867253541,8.595196672413378,49.845752042442626,8.59554959840784", + "point": "49.84395867253541,8.595196672413378", + "startLcPosition": "8", + "impact": { + "lower": "Darmst\u00e4dter Kreuz", + "upper": "Pfungstadt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Mannheim -> Darmstadt", + "title": "A67 | Pfungstadt - Darmst\u00e4dter Kreuz", + "coordinate": { + "lat": 49.84395867253541, + "long": 8.595196672413378 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 00:00 bis 04:00 Uhr", + "", + "A67: Mannheim -> Darmstadt, zwischen 3.7 km hinter Pfungstadt und 1.4 km vor AK Darmst\u00e4dter Kreuz", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A67 von Darmst\u00e4dter Kreuz (AK) nach Pfungstadt (Raststaette) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.595196672, + 49.843958673 + ], + [ + 8.595549598, + 49.845752042 + ] + ] + } + }, + { + "identifier": "2023-000063--vi-bs.2026-03-30_05-00-00-000.devi-zus.2020-12-08_22-00-00-000_002.f.de28", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.86793372194033,8.588280325877545,49.871251040893526,8.581683444231121", + "point": "49.86793372194033,8.588280325877545", + "startLcPosition": "9", + "impact": { + "lower": "B\u00fcttelborn", + "upper": "Darmst\u00e4dter Kreuz", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Mannheim -> M\u00f6nchhof-Dreieck", + "title": "A67 | Darmst\u00e4dter Kreuz - B\u00fcttelborn", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 49.86793372194033, + "long": 8.588280325877545 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 31.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.07.26)", + "", + "A67: Mannheim -> M\u00f6nchhof-Dreieck, zwischen 1.4 km hinter AK Darmst\u00e4dter Kreuz und 3.4 km vor B\u00fcttelborn", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A67 Ersatzneubau Griesheimer Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.588280326, + 49.867933722 + ], + [ + 8.587534, + 49.868349401 + ], + [ + 8.5866847, + 49.868790201 + ], + [ + 8.5857829, + 49.869233601 + ], + [ + 8.5851438, + 49.869539901 + ], + [ + 8.5839977, + 49.870089101 + ], + [ + 8.581683444, + 49.871251041 + ] + ] + } + }, + { + "identifier": "2026-016445--vi-bs.2026-04-09_20-00-00-000.devi-zus.2026-04-09_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.83422429444921,8.592619670874743,49.83253509991673,8.591654116937375", + "point": "49.83422429444921,8.592619670874743", + "startLcPosition": "9", + "impact": { + "lower": "Pfungstadt", + "upper": "Darmst\u00e4dter Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Mannheim", + "title": "A67 | Darmst\u00e4dter Kreuz - Pfungstadt", + "coordinate": { + "lat": 49.83422429444921, + "long": 8.592619670874743 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 20:00 bis 24:00 Uhr", + "", + "A67: Darmstadt -> Mannheim, zwischen 2.7 km hinter AK Darmst\u00e4dter Kreuz und 2.4 km vor Pfungstadt", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A67 von Darmst\u00e4dter Kreuz (AK) nach Pfungstadt (Raststaette) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.592619671, + 49.834224294 + ], + [ + 8.592599, + 49.834180601 + ], + [ + 8.5922313, + 49.833486801 + ], + [ + 8.5917785, + 49.832720401 + ], + [ + 8.591654117, + 49.8325351 + ] + ] + } + }, + { + "identifier": "2023-001863--vi-bs.2025-05-31_05-00-00-000.devi-zus.2023-04-17_15-30-00-000_001.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.86281014146274,8.594174715353006,49.86058501203984,8.596000870539658", + "point": "49.86281014146274,8.594174715353006", + "startLcPosition": "10", + "impact": { + "lower": "Darmst\u00e4dter Kreuz", + "upper": "Griesheimer Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Mannheim", + "title": "A67 | Griesheimer Dreieck - Darmst\u00e4dter Kreuz", + "startTimestamp": "2025-05-31T05:00:00+02:00", + "coordinate": { + "lat": 49.86281014146274, + "long": 8.594174715353006 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.05.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A67: Darmstadt -> Mannheim, zwischen 1.1 km hinter AD Griesheimer Dreieck und 0.2 km vor AK Darmst\u00e4dter Kreuz", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 13.35 m", + "", + "A5 A67 ENB Darmst\u00e4dter Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.594174715, + 49.862810141 + ], + [ + 8.5943502, + 49.862604101 + ], + [ + 8.5956862, + 49.860971001 + ], + [ + 8.5959086, + 49.860696801 + ], + [ + 8.596000871, + 49.860585012 + ] + ] + } + }, + { + "identifier": "2026-016652--vi-bs.2026-04-13_08-00-00-000_009.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.8589678162284,8.596796878062648,49.854414417014546,8.597081163340725", + "point": "49.8589678162284,8.596796878062648", + "startLcPosition": "10", + "impact": { + "lower": "Pfungstadt", + "upper": "Griesheimer Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Mannheim", + "title": "A67 | Griesheimer Dreieck - Pfungstadt", + "coordinate": { + "lat": 49.8589678162284, + "long": 8.596796878062648 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "15.04.26 von 08:00 bis 17:00 Uhr", + "16.04.26 von 08:00 bis 17:00 Uhr", + "", + "A67: Darmstadt -> Mannheim, zwischen 1.5 km hinter AD Griesheimer Dreieck und 4.9 km vor Pfungstadt", + "", + "L\u00e4nge: 0.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A67 von Darmst\u00e4dter Kreuz (AK) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.596796878, + 49.858967816 + ], + [ + 8.5968033, + 49.858950101 + ], + [ + 8.596823, + 49.858821601 + ], + [ + 8.5968587, + 49.858589201 + ], + [ + 8.5968704, + 49.858224201 + ], + [ + 8.5968056, + 49.857749901 + ], + [ + 8.5966325, + 49.857215501 + ], + [ + 8.5965274, + 49.856739301 + ], + [ + 8.5965343, + 49.856313701 + ], + [ + 8.5966681, + 49.855839901 + ], + [ + 8.5969553, + 49.855208601 + ], + [ + 8.5970455, + 49.854964101 + ], + [ + 8.597081163, + 49.854414417 + ] + ] + } + }, + { + "identifier": "2023-001863--vi-bs.2025-05-31_05-00-00-000.devi-zus.2023-04-17_15-30-00-000_001.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.860688162262946,8.595915730381316,49.85408100411445,8.597052739066987", + "point": "49.860688162262946,8.595915730381316", + "startLcPosition": "10", + "impact": { + "lower": "Pfungstadt", + "upper": "Griesheimer Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Mannheim", + "title": "A67 | Griesheimer Dreieck - Pfungstadt", + "startTimestamp": "2025-05-31T05:00:00+02:00", + "coordinate": { + "lat": 49.860688162262946, + "long": 8.595915730381316 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.05.25 um 05:00 Uhr", + "Ende: 30.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A67: Darmstadt -> Mannheim, zwischen 1.3 km hinter AD Griesheimer Dreieck und 4.9 km vor Pfungstadt", + "", + "L\u00e4nge: 0.75 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A5 A67 ENB Darmst\u00e4dter Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.59591573, + 49.860688162 + ], + [ + 8.596127, + 49.860432201 + ], + [ + 8.5964644, + 49.859733201 + ], + [ + 8.5966774, + 49.859297401 + ], + [ + 8.5968033, + 49.858950101 + ], + [ + 8.596823, + 49.858821601 + ], + [ + 8.5968587, + 49.858589201 + ], + [ + 8.5968704, + 49.858224201 + ], + [ + 8.5968056, + 49.857749901 + ], + [ + 8.5966325, + 49.857215501 + ], + [ + 8.5965274, + 49.856739301 + ], + [ + 8.5965343, + 49.856313701 + ], + [ + 8.5966681, + 49.855839901 + ], + [ + 8.5969553, + 49.855208601 + ], + [ + 8.5970455, + 49.854964101 + ], + [ + 8.597091, + 49.854262801 + ], + [ + 8.597052739, + 49.854081004 + ] + ] + } + }, + { + "identifier": "2023-000063--vi-bs.2026-03-30_05-00-00-000.devi-zus.2020-12-08_22-00-00-000_002.f.de26", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.87115152585393,8.58156421878905,49.867831897715284,8.588141018274468", + "point": "49.87115152585393,8.58156421878905", + "startLcPosition": "11", + "impact": { + "lower": "Darmst\u00e4dter Kreuz", + "upper": "B\u00fcttelborn", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00f6nchhof-Dreieck -> Mannheim", + "title": "A67 | B\u00fcttelborn - Darmst\u00e4dter Kreuz", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 49.87115152585393, + "long": 8.58156421878905 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 31.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.07.26)", + "", + "A67: M\u00f6nchhof-Dreieck -> Mannheim, zwischen 3.4 km hinter B\u00fcttelborn und 1.2 km vor AK Darmst\u00e4dter Kreuz", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A67 Ersatzneubau Griesheimer Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.581564219, + 49.871151526 + ], + [ + 8.5825757, + 49.870647301 + ], + [ + 8.5847518, + 49.869567401 + ], + [ + 8.5855299, + 49.869197101 + ], + [ + 8.5873089, + 49.868316601 + ], + [ + 8.588141018, + 49.867831898 + ] + ] + } + }, + { + "identifier": "2026-016611--vi-bs.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_004.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.96981429027391,8.46714729411453,49.98042919585337,8.465159573741284", + "point": "49.96981429027391,8.46714729411453", + "startLcPosition": "14", + "impact": { + "lower": "R\u00fcsselsheim-Ost", + "upper": "Gro\u00df-Gerau", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> M\u00f6nchhof-Dreieck", + "title": "A67 | Gro\u00df-Gerau - R\u00fcsselsheim-Ost", + "coordinate": { + "lat": 49.96981429027391, + "long": 8.46714729411453 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A67: Darmstadt -> M\u00f6nchhof-Dreieck, zwischen 4.7 km hinter AS Gro\u00df-Gerau und 1.1 km vor AS R\u00fcsselsheim-Ost", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A67 von Gro\u00df-Gerau (AS) nach R\u00fcsselsheim-Ost (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.467147294, + 49.96981429 + ], + [ + 8.4668825, + 49.970414501 + ], + [ + 8.4666048, + 49.971100201 + ], + [ + 8.4663505, + 49.971789601 + ], + [ + 8.4661195, + 49.972482401 + ], + [ + 8.4659119, + 49.973178301 + ], + [ + 8.465728, + 49.973876801 + ], + [ + 8.4655677, + 49.974577801 + ], + [ + 8.4654312, + 49.975280901 + ], + [ + 8.4653185, + 49.975985601 + ], + [ + 8.4652296, + 49.976691801 + ], + [ + 8.4651646, + 49.977399001 + ], + [ + 8.4651236, + 49.978107001 + ], + [ + 8.4651066, + 49.978815401 + ], + [ + 8.4651134, + 49.979523801 + ], + [ + 8.4651443, + 49.980232001 + ], + [ + 8.465159574, + 49.980429196 + ] + ] + } + }, + { + "identifier": "2026-016611--vi-bs.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_004.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.96981429027391,8.46714729411453,49.98042919585337,8.465159573741284", + "point": "49.96981429027391,8.46714729411453", + "startLcPosition": "14", + "impact": { + "lower": "R\u00fcsselsheim-Ost", + "upper": "Gro\u00df-Gerau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> M\u00f6nchhof-Dreieck", + "title": "A67 | Gro\u00df-Gerau - R\u00fcsselsheim-Ost", + "coordinate": { + "lat": 49.96981429027391, + "long": 8.46714729411453 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A67: Darmstadt -> M\u00f6nchhof-Dreieck, zwischen 4.7 km hinter AS Gro\u00df-Gerau und 1.1 km vor AS R\u00fcsselsheim-Ost", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A67 von Gro\u00df-Gerau (AS) nach R\u00fcsselsheim-Ost (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.467147294, + 49.96981429 + ], + [ + 8.4668825, + 49.970414501 + ], + [ + 8.4666048, + 49.971100201 + ], + [ + 8.4663505, + 49.971789601 + ], + [ + 8.4661195, + 49.972482401 + ], + [ + 8.4659119, + 49.973178301 + ], + [ + 8.465728, + 49.973876801 + ], + [ + 8.4655677, + 49.974577801 + ], + [ + 8.4654312, + 49.975280901 + ], + [ + 8.4653185, + 49.975985601 + ], + [ + 8.4652296, + 49.976691801 + ], + [ + 8.4651646, + 49.977399001 + ], + [ + 8.4651236, + 49.978107001 + ], + [ + 8.4651066, + 49.978815401 + ], + [ + 8.4651134, + 49.979523801 + ], + [ + 8.4651443, + 49.980232001 + ], + [ + 8.465159574, + 49.980429196 + ] + ] + } + }, + { + "identifier": "2023-000696--vi-bs.2026-04-15_15-30-00-000.devi-zus.2024-02-04_15-30-00-000.f.de110", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.9732994134013,8.4658800140931,49.97864393559525,8.465110714834356", + "point": "49.9732994134013,8.4658800140931", + "startLcPosition": "14", + "impact": { + "lower": "R\u00fcsselsheim-Ost", + "upper": "Gro\u00df-Gerau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> M\u00f6nchhof-Dreieck", + "title": "A67 | Gro\u00df-Gerau - R\u00fcsselsheim-Ost", + "startTimestamp": "2026-04-15T15:30:00+02:00", + "coordinate": { + "lat": 49.9732994134013, + "long": 8.4658800140931 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 15:30 Uhr", + "Ende: 31.05.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A67: Darmstadt -> M\u00f6nchhof-Dreieck, zwischen 5.1 km hinter AS Gro\u00df-Gerau und 1.3 km vor AS R\u00fcsselsheim-Ost", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A67, A60 AD R\u00fcsselsheim \u00dcF A60" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.465880014, + 49.973299413 + ], + [ + 8.465728, + 49.973876801 + ], + [ + 8.4655677, + 49.974577801 + ], + [ + 8.4654312, + 49.975280901 + ], + [ + 8.4653185, + 49.975985601 + ], + [ + 8.4652296, + 49.976691801 + ], + [ + 8.4651646, + 49.977399001 + ], + [ + 8.4651236, + 49.978107001 + ], + [ + 8.465110715, + 49.978643936 + ] + ] + } + }, + { + "identifier": "2023-000696--vi-bs.2025-12-19_00-00-00-000.devi-zus.2024-02-04_15-30-00-000.f.de77", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.970679571829315,8.466775150557176,49.97864393559525,8.465110714834356", + "point": "49.970679571829315,8.466775150557176", + "startLcPosition": "14", + "impact": { + "lower": "R\u00fcsselsheim-Ost", + "upper": "Gro\u00df-Gerau", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> M\u00f6nchhof-Dreieck", + "title": "A67 | Gro\u00df-Gerau - R\u00fcsselsheim-Ost", + "startTimestamp": "2025-12-19T00:00:00+01:00", + "coordinate": { + "lat": 49.970679571829315, + "long": 8.466775150557176 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.12.25 um 00:00 Uhr", + "Ende: 15.04.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A67: Darmstadt -> M\u00f6nchhof-Dreieck, zwischen 4.8 km hinter AS Gro\u00df-Gerau und 1.3 km vor AS R\u00fcsselsheim-Ost", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A67, A60 AD R\u00fcsselsheim \u00dcF A60" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.466775151, + 49.970679572 + ], + [ + 8.4666048, + 49.971100201 + ], + [ + 8.4663505, + 49.971789601 + ], + [ + 8.4661195, + 49.972482401 + ], + [ + 8.4659119, + 49.973178301 + ], + [ + 8.465728, + 49.973876801 + ], + [ + 8.4655677, + 49.974577801 + ], + [ + 8.4654312, + 49.975280901 + ], + [ + 8.4653185, + 49.975985601 + ], + [ + 8.4652296, + 49.976691801 + ], + [ + 8.4651646, + 49.977399001 + ], + [ + 8.4651236, + 49.978107001 + ], + [ + 8.465110715, + 49.978643936 + ] + ] + } + }, + { + "identifier": "2026-016611--vi-bs.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_004.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.98045384782743,8.46495241493528,49.97685434845605,8.465010093581066", + "point": "49.98045384782743,8.46495241493528", + "startLcPosition": "16", + "impact": { + "lower": "Gro\u00df-Gerau", + "upper": "R\u00fcsselsheim-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchhof-Dreieck -> Darmstadt", + "title": "A67 | R\u00fcsselsheim-Ost - Gro\u00df-Gerau", + "coordinate": { + "lat": 49.98045384782743, + "long": 8.46495241493528 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A67: M\u00f6nchhof-Dreieck -> Darmstadt, zwischen 1.1 km hinter AS R\u00fcsselsheim-Ost und 5.5 km vor AS Gro\u00df-Gerau", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A67 von Gro\u00df-Gerau (AS) nach R\u00fcsselsheim-Ost (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.464952415, + 49.980453848 + ], + [ + 8.4649347, + 49.980223201 + ], + [ + 8.4649043, + 49.979498701 + ], + [ + 8.4648991, + 49.978773901 + ], + [ + 8.4649191, + 49.978049201 + ], + [ + 8.4649643, + 49.977324901 + ], + [ + 8.465010094, + 49.976854348 + ] + ] + } + }, + { + "identifier": "2026-016611--vi-bs.2026-04-07_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_004.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.98045384782743,8.46495241493528,49.97685434845605,8.465010093581066", + "point": "49.98045384782743,8.46495241493528", + "startLcPosition": "16", + "impact": { + "lower": "Gro\u00df-Gerau", + "upper": "R\u00fcsselsheim-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchhof-Dreieck -> Darmstadt", + "title": "A67 | R\u00fcsselsheim-Ost - Gro\u00df-Gerau", + "coordinate": { + "lat": 49.98045384782743, + "long": 8.46495241493528 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A67: M\u00f6nchhof-Dreieck -> Darmstadt, zwischen 1.1 km hinter AS R\u00fcsselsheim-Ost und 5.5 km vor AS Gro\u00df-Gerau", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A67 von Gro\u00df-Gerau (AS) nach R\u00fcsselsheim-Ost (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.464952415, + 49.980453848 + ], + [ + 8.4649347, + 49.980223201 + ], + [ + 8.4649043, + 49.979498701 + ], + [ + 8.4648991, + 49.978773901 + ], + [ + 8.4649191, + 49.978049201 + ], + [ + 8.4649643, + 49.977324901 + ], + [ + 8.465010094, + 49.976854348 + ] + ] + } + }, + { + "identifier": "2023-000696--vi-bs.2026-04-15_15-30-00-000.devi-zus.2024-02-04_15-30-00-000.f.de112", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.97955336598662,8.464906593714645,49.97328692585127,8.465686446333795", + "point": "49.97955336598662,8.464906593714645", + "startLcPosition": "16", + "impact": { + "lower": "Gro\u00df-Gerau", + "upper": "R\u00fcsselsheim-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00f6nchhof-Dreieck -> Darmstadt", + "title": "A67 | R\u00fcsselsheim-Ost - Gro\u00df-Gerau", + "startTimestamp": "2026-04-15T15:30:00+02:00", + "coordinate": { + "lat": 49.97955336598662, + "long": 8.464906593714645 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 15:30 Uhr", + "Ende: 31.05.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A67: M\u00f6nchhof-Dreieck -> Darmstadt, zwischen 1.2 km hinter AS R\u00fcsselsheim-Ost und 5.1 km vor AS Gro\u00df-Gerau", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A67, A60 AD R\u00fcsselsheim \u00dcF A60" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.464906594, + 49.979553366 + ], + [ + 8.4649043, + 49.979498701 + ], + [ + 8.4648991, + 49.978773901 + ], + [ + 8.4649191, + 49.978049201 + ], + [ + 8.4649643, + 49.977324901 + ], + [ + 8.4650347, + 49.976601501 + ], + [ + 8.4651302, + 49.975879201 + ], + [ + 8.4652508, + 49.975158501 + ], + [ + 8.4653964, + 49.974439701 + ], + [ + 8.465567, + 49.973723101 + ], + [ + 8.465686446, + 49.973286926 + ] + ] + } + }, + { + "identifier": "2023-000696--vi-bs.2025-12-19_00-00-00-000.devi-zus.2024-02-04_15-30-00-000.f.de79", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.97955336598662,8.464906593714645,49.974175665217274,8.465459259239092", + "point": "49.97955336598662,8.464906593714645", + "startLcPosition": "16", + "impact": { + "lower": "Gro\u00df-Gerau", + "upper": "R\u00fcsselsheim-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00f6nchhof-Dreieck -> Darmstadt", + "title": "A67 | R\u00fcsselsheim-Ost - Gro\u00df-Gerau", + "startTimestamp": "2025-12-19T00:00:00+01:00", + "coordinate": { + "lat": 49.97955336598662, + "long": 8.464906593714645 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.12.25 um 00:00 Uhr", + "Ende: 15.04.26 um 15:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.26)", + "", + "A67: M\u00f6nchhof-Dreieck -> Darmstadt, zwischen 1.2 km hinter AS R\u00fcsselsheim-Ost und 5.2 km vor AS Gro\u00df-Gerau", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A67, A60 AD R\u00fcsselsheim \u00dcF A60" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.464906594, + 49.979553366 + ], + [ + 8.4649043, + 49.979498701 + ], + [ + 8.4648991, + 49.978773901 + ], + [ + 8.4649191, + 49.978049201 + ], + [ + 8.4649643, + 49.977324901 + ], + [ + 8.4650347, + 49.976601501 + ], + [ + 8.4651302, + 49.975879201 + ], + [ + 8.4652508, + 49.975158501 + ], + [ + 8.4653964, + 49.974439701 + ], + [ + 8.465459259, + 49.974175665 + ] + ] + } + }, + { + "identifier": "2026-016896--vi-bs.2026-04-15_21-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.99549572793824,8.471969962973294,49.984878646851016,8.46578102459895", + "point": "49.99549572793824,8.471969962973294", + "startLcPosition": "17", + "impact": { + "lower": "R\u00fcsselsheimer Dreieck", + "upper": "Neuh\u00f6fer Tann", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00f6nchhof-Dreieck -> Darmstadt", + "title": "A67 | Neuh\u00f6fer Tann - R\u00fcsselsheimer Dreieck", + "coordinate": { + "lat": 49.99549572793824, + "long": 8.471969962973294 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 21:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A67: M\u00f6nchhof-Dreieck -> Darmstadt, zwischen 1.1 km hinter Neuh\u00f6fer Tann und 0.7 km vor AD R\u00fcsselsheimer Dreieck", + "", + "L\u00e4nge: 1.27 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A67 von Neuh\u00f6fer Tann (Rastplatz) Beseitigung Unfallfolgen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.471969963, + 49.995495728 + ], + [ + 8.4714482, + 49.994920901 + ], + [ + 8.470708, + 49.994050501 + ], + [ + 8.4701794, + 49.993383301 + ], + [ + 8.4696116, + 49.992623101 + ], + [ + 8.4687782, + 49.991409001 + ], + [ + 8.4686469, + 49.991207201 + ], + [ + 8.4680941, + 49.990281101 + ], + [ + 8.4677351, + 49.989642601 + ], + [ + 8.4675636, + 49.989334001 + ], + [ + 8.4668384, + 49.987855301 + ], + [ + 8.4662411, + 49.986368801 + ], + [ + 8.465781025, + 49.984878647 + ] + ] + } + }, + { + "identifier": "2023-000063--vi-bs.2026-03-30_05-00-00-000.devi-zus.2020-12-08_22-00-00-000_002.f.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.87073968733261,8.5863480288725,49.8680040883427,8.58573398961533", + "point": "49.87073968733261,8.5863480288725", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Griesheimer Dreieck (aus Richtung B\u00fcttelborn)", + "title": "A67 Ersatzneubau Griesheimer Dreieck", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 49.87073968733261, + "long": 8.5863480288725 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 31.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.07.26)", + "", + "Auffahrt auf die A67: AD Griesheimer Dreieck (aus Richtung B\u00fcttelborn)", + "", + "L\u00e4nge: 0.47 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A67 Ersatzneubau Griesheimer Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.586348029, + 49.870739687 + ], + [ + 8.5862526, + 49.870714601 + ], + [ + 8.5859522, + 49.870621501 + ], + [ + 8.5856954, + 49.870533001 + ], + [ + 8.5854402, + 49.870433001 + ], + [ + 8.5852024, + 49.870322801 + ], + [ + 8.5850369, + 49.870239901 + ], + [ + 8.5848677, + 49.870142701 + ], + [ + 8.5847269, + 49.870048801 + ], + [ + 8.5846084, + 49.869962901 + ], + [ + 8.5845105, + 49.869882401 + ], + [ + 8.5844189, + 49.869799101 + ], + [ + 8.5843338, + 49.869712901 + ], + [ + 8.5842552, + 49.869624201 + ], + [ + 8.5841934, + 49.869550801 + ], + [ + 8.5841236, + 49.869447001 + ], + [ + 8.5840584, + 49.869339001 + ], + [ + 8.5839929, + 49.869207601 + ], + [ + 8.5839545, + 49.869091401 + ], + [ + 8.5839355, + 49.868991401 + ], + [ + 8.5839325, + 49.868882301 + ], + [ + 8.5839451, + 49.868791401 + ], + [ + 8.5839751, + 49.868692501 + ], + [ + 8.5840318, + 49.868574601 + ], + [ + 8.5841017, + 49.868482101 + ], + [ + 8.5841911, + 49.868395301 + ], + [ + 8.5842973, + 49.868313501 + ], + [ + 8.5844108, + 49.868240001 + ], + [ + 8.5845414, + 49.868177001 + ], + [ + 8.5846881, + 49.868121801 + ], + [ + 8.5848445, + 49.868075001 + ], + [ + 8.5849898, + 49.868044901 + ], + [ + 8.5851436, + 49.868024301 + ], + [ + 8.5853058, + 49.868011001 + ], + [ + 8.58549, + 49.868003601 + ], + [ + 8.58573399, + 49.868004088 + ] + ] + } + }, + { + "identifier": "2023-000063--vi-bs.2026-03-30_05-00-00-000.devi-zus.2020-12-08_22-00-00-000_002.f.de31", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.86868758289183,8.585931053133855,49.870310175654396,8.585383525461694", + "point": "49.86868758289183,8.585931053133855", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Griesheimer Dreieck (aus Richtung B\u00fcttelborn)", + "title": "A67 Ersatzneubau Griesheimer Dreieck", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 49.86868758289183, + "long": 8.585931053133855 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 31.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.07.26)", + "", + "Abfahrt von der A67: AD Griesheimer Dreieck (aus Richtung B\u00fcttelborn)", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A67 Ersatzneubau Griesheimer Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.585931053, + 49.868687583 + ], + [ + 8.5859314, + 49.868684201 + ], + [ + 8.5859171, + 49.868594901 + ], + [ + 8.5858796, + 49.868508401 + ], + [ + 8.5858199, + 49.868427201 + ], + [ + 8.5857399, + 49.868353601 + ], + [ + 8.5856418, + 49.868289801 + ], + [ + 8.5855283, + 49.868237701 + ], + [ + 8.5854028, + 49.868198501 + ], + [ + 8.5852689, + 49.868173601 + ], + [ + 8.5851304, + 49.868163701 + ], + [ + 8.5849913, + 49.868168901 + ], + [ + 8.5848555, + 49.868189201 + ], + [ + 8.584727, + 49.868224001 + ], + [ + 8.5845957, + 49.868279101 + ], + [ + 8.5844431, + 49.868358201 + ], + [ + 8.5843122, + 49.868457401 + ], + [ + 8.5842061, + 49.868583401 + ], + [ + 8.5841078, + 49.868748901 + ], + [ + 8.5840688, + 49.868900301 + ], + [ + 8.5840932, + 49.869093001 + ], + [ + 8.5841526, + 49.869257301 + ], + [ + 8.5842219, + 49.869379901 + ], + [ + 8.5843041, + 49.869504101 + ], + [ + 8.5843589, + 49.869578801 + ], + [ + 8.5844388, + 49.869663801 + ], + [ + 8.5845212, + 49.869748701 + ], + [ + 8.5846099, + 49.869831001 + ], + [ + 8.5847048, + 49.869910501 + ], + [ + 8.5848139, + 49.869993801 + ], + [ + 8.5849938, + 49.870111701 + ], + [ + 8.5852357, + 49.870245001 + ], + [ + 8.585383525, + 49.870310176 + ] + ] + } + }, + { + "identifier": "2023-000063--vi-bs.2026-03-30_05-00-00-000.devi-zus.2020-12-08_22-00-00-000_002.f.de24", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.87134624456886,8.589892451230932,49.871127739916496,8.587356005096565", + "point": "49.87134624456886,8.589892451230932", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Griesheimer Dreieck (aus Richtung Darmst\u00e4dter Kreuz)", + "title": "A67 Ersatzneubau Griesheimer Dreieck", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 49.87134624456886, + "long": 8.589892451230932 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 31.05.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.07.26)", + "", + "Auffahrt auf die A67: AD Griesheimer Dreieck (aus Richtung Darmst\u00e4dter Kreuz)", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A67 Ersatzneubau Griesheimer Dreieck" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.589892451, + 49.871346245 + ], + [ + 8.5897252, + 49.871341201 + ], + [ + 8.589208, + 49.871307701 + ], + [ + 8.5887889, + 49.871274101 + ], + [ + 8.588287, + 49.871227401 + ], + [ + 8.5877567, + 49.871178201 + ], + [ + 8.587356005, + 49.87112774 + ] + ] + } + } + ] + }, + "A70": { + "roadworks": [ + { + "identifier": "2026-017637--vi-bs.2026-04-09_08-30-00-000.devi-zus.2026-04-09_08-30-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.0012030305488,10.079731480803517,50.02098681618484,10.192650669922466", + "point": "50.0012030305488,10.079731480803517", + "startLcPosition": "0", + "impact": { + "lower": "Schweinfurt-Hafen", + "upper": "Schweinfurt/Werneck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schweinfurt/Werneck -> Bamberg", + "title": "A70 | Schweinfurt/Werneck - Schweinfurt-Hafen", + "coordinate": { + "lat": 50.0012030305488, + "long": 10.079731480803517 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 15:45 Uhr", + "", + "A70: Schweinfurt/Werneck -> Bamberg, zwischen 0.1 km hinter AD Schweinfurt/Werneck und 1.9 km vor AS Schweinfurt-Hafen", + "", + "L\u00e4nge: 9.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A70 von SchweinfurtWerneck (AD) nach Schweinfurt-Hafen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.079731481, + 50.001203031 + ], + [ + 10.0819977, + 50.000821901 + ], + [ + 10.0823014, + 50.000772401 + ], + [ + 10.0833821, + 50.000609001 + ], + [ + 10.084549, + 50.000465701 + ], + [ + 10.0849537, + 50.000416301 + ], + [ + 10.0852532, + 50.000382001 + ], + [ + 10.0859582, + 50.000301101 + ], + [ + 10.0867907, + 50.000205301 + ], + [ + 10.0880934, + 50.000083801 + ], + [ + 10.0894629, + 49.999968501 + ], + [ + 10.09072, + 49.999880001 + ], + [ + 10.0919362, + 49.999811501 + ], + [ + 10.0930414, + 49.999749301 + ], + [ + 10.0943849, + 49.999694801 + ], + [ + 10.0957629, + 49.999659201 + ], + [ + 10.0983477, + 49.999654401 + ], + [ + 10.0991163, + 49.999667801 + ], + [ + 10.0996734, + 49.999677501 + ], + [ + 10.1009803, + 49.999727301 + ], + [ + 10.1022563, + 49.999793401 + ], + [ + 10.1035657, + 49.999889701 + ], + [ + 10.1047519, + 49.999991701 + ], + [ + 10.1060289, + 50.000107001 + ], + [ + 10.1061454, + 50.000117501 + ], + [ + 10.10779, + 50.000317801 + ], + [ + 10.1094095, + 50.000547201 + ], + [ + 10.11181, + 50.000909901 + ], + [ + 10.1129587, + 50.001083501 + ], + [ + 10.1143607, + 50.001288701 + ], + [ + 10.115803, + 50.001492301 + ], + [ + 10.1165177, + 50.001584601 + ], + [ + 10.1175371, + 50.001707601 + ], + [ + 10.1184409, + 50.001798401 + ], + [ + 10.1192359, + 50.001876801 + ], + [ + 10.1195211, + 50.001900901 + ], + [ + 10.1199896, + 50.001940401 + ], + [ + 10.1211616, + 50.002023101 + ], + [ + 10.1215777, + 50.002056901 + ], + [ + 10.1217414, + 50.002062201 + ], + [ + 10.1230871, + 50.002123901 + ], + [ + 10.1243111, + 50.002159601 + ], + [ + 10.1247327, + 50.002166701 + ], + [ + 10.1254109, + 50.002178201 + ], + [ + 10.126419, + 50.002187101 + ], + [ + 10.1274959, + 50.002199401 + ], + [ + 10.1285549, + 50.002227701 + ], + [ + 10.1296265, + 50.002265001 + ], + [ + 10.1317561, + 50.002376101 + ], + [ + 10.1338176, + 50.002544501 + ], + [ + 10.1348967, + 50.002656701 + ], + [ + 10.1358582, + 50.002775901 + ], + [ + 10.1375441, + 50.003012501 + ], + [ + 10.1391963, + 50.003273901 + ], + [ + 10.1402181, + 50.003469001 + ], + [ + 10.1415921, + 50.003731401 + ], + [ + 10.1431692, + 50.004089501 + ], + [ + 10.1444934, + 50.004412101 + ], + [ + 10.1458365, + 50.004776301 + ], + [ + 10.1466077, + 50.005019201 + ], + [ + 10.1468013, + 50.005084101 + ], + [ + 10.1475374, + 50.005330701 + ], + [ + 10.1482096, + 50.005586701 + ], + [ + 10.1488538, + 50.005840001 + ], + [ + 10.1496605, + 50.006201101 + ], + [ + 10.1504117, + 50.006564301 + ], + [ + 10.1511464, + 50.006949201 + ], + [ + 10.1515906, + 50.007214401 + ], + [ + 10.1525118, + 50.007783501 + ], + [ + 10.1528133, + 50.007997001 + ], + [ + 10.1531346, + 50.008224501 + ], + [ + 10.1536605, + 50.008616301 + ], + [ + 10.1541412, + 50.009011201 + ], + [ + 10.1546068, + 50.009410501 + ], + [ + 10.1550171, + 50.009811301 + ], + [ + 10.1555388, + 50.010333701 + ], + [ + 10.1559183, + 50.010750001 + ], + [ + 10.1562723, + 50.011148701 + ], + [ + 10.1566462, + 50.011605001 + ], + [ + 10.1571308, + 50.012196201 + ], + [ + 10.1580516, + 50.013371001 + ], + [ + 10.1589806, + 50.014546801 + ], + [ + 10.1592521, + 50.014869501 + ], + [ + 10.1598481, + 50.015587301 + ], + [ + 10.1604609, + 50.016259101 + ], + [ + 10.1607185, + 50.016515301 + ], + [ + 10.161226, + 50.017010601 + ], + [ + 10.1615308, + 50.017291801 + ], + [ + 10.1618227, + 50.017525701 + ], + [ + 10.1620857, + 50.017751701 + ], + [ + 10.1625353, + 50.018103701 + ], + [ + 10.1632009, + 50.018582701 + ], + [ + 10.1635343, + 50.018794701 + ], + [ + 10.1642602, + 50.019251301 + ], + [ + 10.1654246, + 50.019888601 + ], + [ + 10.1660341, + 50.020190101 + ], + [ + 10.1668095, + 50.020530101 + ], + [ + 10.1676391, + 50.020871801 + ], + [ + 10.1684539, + 50.021171601 + ], + [ + 10.1692484, + 50.021433901 + ], + [ + 10.1700368, + 50.021670101 + ], + [ + 10.1708198, + 50.021883501 + ], + [ + 10.1716955, + 50.022078801 + ], + [ + 10.1725165, + 50.022243901 + ], + [ + 10.17311, + 50.022349001 + ], + [ + 10.1736601, + 50.022435501 + ], + [ + 10.1746779, + 50.022565701 + ], + [ + 10.1753283, + 50.022637601 + ], + [ + 10.1759464, + 50.022689901 + ], + [ + 10.1763691, + 50.022720001 + ], + [ + 10.1768364, + 50.022744101 + ], + [ + 10.1773897, + 50.022767701 + ], + [ + 10.1779587, + 50.022781801 + ], + [ + 10.1785807, + 50.022784001 + ], + [ + 10.1791848, + 50.022773501 + ], + [ + 10.1803785, + 50.022718601 + ], + [ + 10.1813913, + 50.022636701 + ], + [ + 10.1820895, + 50.022560701 + ], + [ + 10.1827593, + 50.022477001 + ], + [ + 10.1840537, + 50.022269901 + ], + [ + 10.1853136, + 50.022023001 + ], + [ + 10.1866296, + 50.021750901 + ], + [ + 10.1878699, + 50.021505101 + ], + [ + 10.1890984, + 50.021292901 + ], + [ + 10.1899093, + 50.021176501 + ], + [ + 10.1903435, + 50.021124401 + ], + [ + 10.1907723, + 50.021082501 + ], + [ + 10.1912926, + 50.021044001 + ], + [ + 10.1919693, + 50.021008401 + ], + [ + 10.19265067, + 50.020986816 + ] + ] + } + }, + { + "identifier": "2026-016115--vi-bs.2026-04-08_09-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.02284394417437,10.22855046668545,50.021321499401466,10.196858187401503", + "point": "50.02284394417437,10.22855046668545", + "startLcPosition": "5", + "impact": { + "lower": "Schweinfurt/Bergrheinfeld", + "upper": "Schweinfurt-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bamberg -> Schweinfurt/Werneck", + "title": "A70 | Schweinfurt-Zentrum - Schweinfurt/Bergrheinfeld", + "coordinate": { + "lat": 50.02284394417437, + "long": 10.22855046668545 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 12:00 Uhr", + "16.04.26 von 09:00 bis 12:00 Uhr", + "", + "A70: Bamberg -> Schweinfurt/Werneck, zwischen 0.7 km hinter AS Schweinfurt-Zentrum und 0.3 km vor AS Schweinfurt/Bergrheinfeld", + "", + "L\u00e4nge: 2.3 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A70 von Schweinfurt-Zentrum (AS) nach SchweinfurtBergrheinfeld (AS) Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.228550467, + 50.022843944 + ], + [ + 10.227708, + 50.022757001 + ], + [ + 10.226919, + 50.022689501 + ], + [ + 10.2260821, + 50.022628801 + ], + [ + 10.2253234, + 50.022596001 + ], + [ + 10.2245089, + 50.022564701 + ], + [ + 10.2241234, + 50.022557701 + ], + [ + 10.2237059, + 50.022550201 + ], + [ + 10.2228684, + 50.022540801 + ], + [ + 10.2217103, + 50.022556601 + ], + [ + 10.220743, + 50.022582901 + ], + [ + 10.2196819, + 50.022637101 + ], + [ + 10.2193638, + 50.022660401 + ], + [ + 10.2191693, + 50.022673501 + ], + [ + 10.2186094, + 50.022711101 + ], + [ + 10.2180685, + 50.022754201 + ], + [ + 10.2171739, + 50.022823001 + ], + [ + 10.21658, + 50.022868701 + ], + [ + 10.2158696, + 50.022925401 + ], + [ + 10.214874, + 50.023000101 + ], + [ + 10.21377, + 50.023068901 + ], + [ + 10.213238, + 50.023096001 + ], + [ + 10.2126699, + 50.023117901 + ], + [ + 10.2122093, + 50.023130601 + ], + [ + 10.211734, + 50.023140101 + ], + [ + 10.2112724, + 50.023140801 + ], + [ + 10.2106086, + 50.023134901 + ], + [ + 10.2104086, + 50.023128701 + ], + [ + 10.2103021, + 50.023125901 + ], + [ + 10.2095765, + 50.023107101 + ], + [ + 10.2086094, + 50.023063101 + ], + [ + 10.2078688, + 50.023012901 + ], + [ + 10.2071813, + 50.022949701 + ], + [ + 10.2059272, + 50.022808801 + ], + [ + 10.2044269, + 50.022600301 + ], + [ + 10.2036251, + 50.022468301 + ], + [ + 10.2033092, + 50.022413001 + ], + [ + 10.2028469, + 50.022332101 + ], + [ + 10.201484, + 50.022082701 + ], + [ + 10.2001252, + 50.021830201 + ], + [ + 10.1992352, + 50.021674201 + ], + [ + 10.1982718, + 50.021515401 + ], + [ + 10.196858187, + 50.021321499 + ] + ] + } + }, + { + "identifier": "2026-017774--vi-bs.2026-04-14_09-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.00589498354613,10.482003348142307,50.00610350093604,10.487569295389962", + "point": "50.00589498354613,10.482003348142307", + "startLcPosition": "9", + "impact": { + "lower": "Knetzgau", + "upper": "Ha\u00dffurt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schweinfurt/Werneck -> Bamberg", + "title": "A70 | Ha\u00dffurt - Knetzgau", + "coordinate": { + "lat": 50.00589498354613, + "long": 10.482003348142307 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 12:00 Uhr", + "", + "A70: Schweinfurt/Werneck -> Bamberg, zwischen 3.3 km hinter AS Ha\u00dffurt und 6.1 km vor AS Knetzgau", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A70 von Ha\u00dffurt (AS) nach Knetzgau (AS) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.482003348, + 50.005894984 + ], + [ + 10.4831541, + 50.005953901 + ], + [ + 10.4854556, + 50.006057501 + ], + [ + 10.4867926, + 50.006092801 + ], + [ + 10.4871792, + 50.006097901 + ], + [ + 10.487569295, + 50.006103501 + ] + ] + } + }, + { + "identifier": "2026-017412--vi-bs.2026-04-13_08-00-00-000_013.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.97970743465352,10.554164097041452,50.03051884059415,10.271504247766256", + "point": "49.97970743465352,10.554164097041452", + "startLcPosition": "10", + "impact": { + "lower": "Gochsheim", + "upper": "Knetzgau", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bamberg -> Schweinfurt/Werneck", + "title": "A70 | Knetzgau - Gochsheim", + "coordinate": { + "lat": 49.97970743465352, + "long": 10.554164097041452 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "", + "A70: Bamberg -> Schweinfurt/Werneck, zwischen 0.3 km hinter AS Knetzgau und 0.5 km vor AS Gochsheim", + "", + "L\u00e4nge: 22.01 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A70 von Knetzgau (AS) nach Gochsheim (AS) Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.554164097, + 49.979707435 + ], + [ + 10.5538903, + 49.979775101 + ], + [ + 10.5523437, + 49.980157401 + ], + [ + 10.5513346, + 49.980415501 + ], + [ + 10.5499975, + 49.980768301 + ], + [ + 10.5486542, + 49.981137401 + ], + [ + 10.5474067, + 49.981495101 + ], + [ + 10.5473324, + 49.981516401 + ], + [ + 10.5459926, + 49.981933701 + ], + [ + 10.5447057, + 49.982353101 + ], + [ + 10.543424, + 49.982791101 + ], + [ + 10.5421507, + 49.983247001 + ], + [ + 10.5411226, + 49.983632801 + ], + [ + 10.5409032, + 49.983715201 + ], + [ + 10.5394604, + 49.984289501 + ], + [ + 10.538049, + 49.984880201 + ], + [ + 10.5365524, + 49.985540701 + ], + [ + 10.5356387, + 49.985962401 + ], + [ + 10.5351433, + 49.986191001 + ], + [ + 10.5344381, + 49.986542501 + ], + [ + 10.5337374, + 49.986893801 + ], + [ + 10.5323411, + 49.987608101 + ], + [ + 10.530977, + 49.988346001 + ], + [ + 10.530032, + 49.988893301 + ], + [ + 10.5296552, + 49.989111601 + ], + [ + 10.5287266, + 49.989669901 + ], + [ + 10.5278324, + 49.990228901 + ], + [ + 10.5269327, + 49.990798501 + ], + [ + 10.5260469, + 49.991384601 + ], + [ + 10.5251452, + 49.992026101 + ], + [ + 10.5250508, + 49.992094101 + ], + [ + 10.5243188, + 49.992621901 + ], + [ + 10.5234661, + 49.993252501 + ], + [ + 10.5226554, + 49.993889201 + ], + [ + 10.5219501, + 49.994454601 + ], + [ + 10.521253, + 49.995035101 + ], + [ + 10.5205394, + 49.995644501 + ], + [ + 10.5198632, + 49.996222001 + ], + [ + 10.5191954, + 49.996792101 + ], + [ + 10.5184983, + 49.997367301 + ], + [ + 10.5177798, + 49.997947201 + ], + [ + 10.5170309, + 49.998527401 + ], + [ + 10.5164365, + 49.998966601 + ], + [ + 10.5160899, + 49.999210001 + ], + [ + 10.5157419, + 49.999455601 + ], + [ + 10.5154427, + 49.999657901 + ], + [ + 10.5145113, + 50.000253901 + ], + [ + 10.5139876, + 50.000567201 + ], + [ + 10.5134254, + 50.000882301 + ], + [ + 10.5121244, + 50.001570201 + ], + [ + 10.5111088, + 50.002039601 + ], + [ + 10.5108572, + 50.002155901 + ], + [ + 10.5100233, + 50.002510601 + ], + [ + 10.5092034, + 50.002826001 + ], + [ + 10.5083344, + 50.003136701 + ], + [ + 10.5074362, + 50.003448101 + ], + [ + 10.5056707, + 50.003965701 + ], + [ + 10.5047043, + 50.004232001 + ], + [ + 10.5037269, + 50.004474401 + ], + [ + 10.5025829, + 50.004737501 + ], + [ + 10.501404, + 50.004994201 + ], + [ + 10.5000976, + 50.005233601 + ], + [ + 10.4992489, + 50.005386701 + ], + [ + 10.4984793, + 50.005509001 + ], + [ + 10.4981206, + 50.005555301 + ], + [ + 10.4962906, + 50.005791201 + ], + [ + 10.4952862, + 50.005897701 + ], + [ + 10.4942364, + 50.005994701 + ], + [ + 10.4923796, + 50.006125901 + ], + [ + 10.4913974, + 50.006168101 + ], + [ + 10.4903765, + 50.006204401 + ], + [ + 10.4891154, + 50.006220001 + ], + [ + 10.4878791, + 50.006213101 + ], + [ + 10.4871616, + 50.006202701 + ], + [ + 10.4867279, + 50.006196901 + ], + [ + 10.485457, + 50.006158901 + ], + [ + 10.4842703, + 50.006104601 + ], + [ + 10.4831378, + 50.006052701 + ], + [ + 10.4810116, + 50.005938101 + ], + [ + 10.4783075, + 50.005765401 + ], + [ + 10.4774847, + 50.005711401 + ], + [ + 10.4756624, + 50.005591701 + ], + [ + 10.4729571, + 50.005384501 + ], + [ + 10.4704207, + 50.005176301 + ], + [ + 10.4702191, + 50.005159701 + ], + [ + 10.4698549, + 50.005130101 + ], + [ + 10.4664183, + 50.004832901 + ], + [ + 10.4633986, + 50.004584001 + ], + [ + 10.4629963, + 50.004550801 + ], + [ + 10.4607993, + 50.004391801 + ], + [ + 10.4585797, + 50.004249001 + ], + [ + 10.4580736, + 50.004215901 + ], + [ + 10.4569835, + 50.004121901 + ], + [ + 10.4566291, + 50.004101401 + ], + [ + 10.4555088, + 50.004036701 + ], + [ + 10.45366, + 50.003926201 + ], + [ + 10.4509189, + 50.003778801 + ], + [ + 10.4497083, + 50.003721301 + ], + [ + 10.4493647, + 50.003705001 + ], + [ + 10.4478431, + 50.003645501 + ], + [ + 10.4448014, + 50.003522701 + ], + [ + 10.4425703, + 50.003449501 + ], + [ + 10.4421163, + 50.003434601 + ], + [ + 10.4390119, + 50.003347801 + ], + [ + 10.4375953, + 50.003328401 + ], + [ + 10.435548, + 50.003298201 + ], + [ + 10.4346839, + 50.003285401 + ], + [ + 10.4333806, + 50.003268801 + ], + [ + 10.4318396, + 50.003257301 + ], + [ + 10.4313523, + 50.003255301 + ], + [ + 10.4297089, + 50.003248801 + ], + [ + 10.4289244, + 50.003241601 + ], + [ + 10.4286504, + 50.003239101 + ], + [ + 10.4285144, + 50.003237801 + ], + [ + 10.426007, + 50.003196401 + ], + [ + 10.4248734, + 50.003166401 + ], + [ + 10.4235293, + 50.003144501 + ], + [ + 10.4218741, + 50.003067601 + ], + [ + 10.4204239, + 50.003014701 + ], + [ + 10.4175942, + 50.002911101 + ], + [ + 10.4148125, + 50.002833501 + ], + [ + 10.4146987, + 50.002831901 + ], + [ + 10.4131303, + 50.002810501 + ], + [ + 10.4108432, + 50.002819001 + ], + [ + 10.4090035, + 50.002861801 + ], + [ + 10.4077328, + 50.002910601 + ], + [ + 10.4076572, + 50.002913501 + ], + [ + 10.4063394, + 50.002977501 + ], + [ + 10.4039113, + 50.003140301 + ], + [ + 10.4013922, + 50.003358301 + ], + [ + 10.400848, + 50.003421401 + ], + [ + 10.3989359, + 50.003643301 + ], + [ + 10.3970061, + 50.003916701 + ], + [ + 10.3952365, + 50.004185001 + ], + [ + 10.3946717, + 50.004275001 + ], + [ + 10.3939308, + 50.004400701 + ], + [ + 10.3935004, + 50.004473801 + ], + [ + 10.3913857, + 50.004846501 + ], + [ + 10.3903026, + 50.005044601 + ], + [ + 10.3891904, + 50.005252201 + ], + [ + 10.3887738, + 50.005333401 + ], + [ + 10.3872309, + 50.005629101 + ], + [ + 10.3870667, + 50.005660601 + ], + [ + 10.3835006, + 50.006313401 + ], + [ + 10.3809052, + 50.006724001 + ], + [ + 10.3806012, + 50.006765501 + ], + [ + 10.3795393, + 50.006910301 + ], + [ + 10.3781761, + 50.007079001 + ], + [ + 10.3761743, + 50.007292901 + ], + [ + 10.3741346, + 50.007468401 + ], + [ + 10.3738489, + 50.007490901 + ], + [ + 10.3725585, + 50.007584501 + ], + [ + 10.3717104, + 50.007635101 + ], + [ + 10.3709148, + 50.007671501 + ], + [ + 10.3694432, + 50.007737301 + ], + [ + 10.3686288, + 50.007763801 + ], + [ + 10.3679251, + 50.007775101 + ], + [ + 10.366641, + 50.007810101 + ], + [ + 10.3663972, + 50.007816701 + ], + [ + 10.365241, + 50.007853101 + ], + [ + 10.3645303, + 50.007875401 + ], + [ + 10.364089, + 50.007895101 + ], + [ + 10.3634773, + 50.007928901 + ], + [ + 10.3629512, + 50.007968301 + ], + [ + 10.3624581, + 50.008008301 + ], + [ + 10.3614778, + 50.008107801 + ], + [ + 10.3601959, + 50.008255901 + ], + [ + 10.3596429, + 50.008325801 + ], + [ + 10.3588774, + 50.008434201 + ], + [ + 10.3581934, + 50.008546501 + ], + [ + 10.3576782, + 50.008635501 + ], + [ + 10.3563523, + 50.008886701 + ], + [ + 10.3554129, + 50.009080001 + ], + [ + 10.3544279, + 50.009313601 + ], + [ + 10.3535248, + 50.009557701 + ], + [ + 10.3526069, + 50.009781901 + ], + [ + 10.3518243, + 50.010016801 + ], + [ + 10.3514446, + 50.010131801 + ], + [ + 10.3502789, + 50.010505101 + ], + [ + 10.3494473, + 50.010802401 + ], + [ + 10.3486114, + 50.011118401 + ], + [ + 10.3475277, + 50.011558801 + ], + [ + 10.3469574, + 50.011807701 + ], + [ + 10.3463632, + 50.012067001 + ], + [ + 10.3453342, + 50.012578501 + ], + [ + 10.3443255, + 50.013124401 + ], + [ + 10.3432921, + 50.013741401 + ], + [ + 10.341927, + 50.014592401 + ], + [ + 10.3415071, + 50.014854101 + ], + [ + 10.3405125, + 50.015434901 + ], + [ + 10.3395194, + 50.016006801 + ], + [ + 10.3385382, + 50.016523801 + ], + [ + 10.337555, + 50.016998601 + ], + [ + 10.3365616, + 50.017440101 + ], + [ + 10.3363625, + 50.017528601 + ], + [ + 10.3356988, + 50.017795601 + ], + [ + 10.3350036, + 50.018054701 + ], + [ + 10.3343798, + 50.018280001 + ], + [ + 10.3337571, + 50.018494601 + ], + [ + 10.3331453, + 50.018681901 + ], + [ + 10.3325402, + 50.018861301 + ], + [ + 10.3305174, + 50.019435501 + ], + [ + 10.3301935, + 50.019529001 + ], + [ + 10.3293628, + 50.019768701 + ], + [ + 10.3283489, + 50.020087301 + ], + [ + 10.3279398, + 50.020216801 + ], + [ + 10.3275466, + 50.020341201 + ], + [ + 10.3271379, + 50.020477401 + ], + [ + 10.3264418, + 50.020716301 + ], + [ + 10.3256567, + 50.021006301 + ], + [ + 10.3249299, + 50.021292601 + ], + [ + 10.3241504, + 50.021602001 + ], + [ + 10.3240289, + 50.021651701 + ], + [ + 10.3233149, + 50.021943501 + ], + [ + 10.3226285, + 50.022242701 + ], + [ + 10.3213482, + 50.022798401 + ], + [ + 10.3210723, + 50.022918101 + ], + [ + 10.319972, + 50.023387101 + ], + [ + 10.3183094, + 50.024072701 + ], + [ + 10.317257, + 50.024479001 + ], + [ + 10.3142599, + 50.025551301 + ], + [ + 10.3129683, + 50.025976001 + ], + [ + 10.3122711, + 50.026191701 + ], + [ + 10.3114659, + 50.026466701 + ], + [ + 10.3103931, + 50.026786601 + ], + [ + 10.3100808, + 50.026874601 + ], + [ + 10.3084204, + 50.027327801 + ], + [ + 10.3072744, + 50.027623401 + ], + [ + 10.3061177, + 50.027902101 + ], + [ + 10.3055707, + 50.028026301 + ], + [ + 10.3049578, + 50.028169901 + ], + [ + 10.3037613, + 50.028430401 + ], + [ + 10.3026768, + 50.028655201 + ], + [ + 10.3019663, + 50.028793801 + ], + [ + 10.3014184, + 50.028901101 + ], + [ + 10.3006635, + 50.029033601 + ], + [ + 10.2998882, + 50.029182501 + ], + [ + 10.2989099, + 50.029345901 + ], + [ + 10.2979385, + 50.029484301 + ], + [ + 10.296956, + 50.029611501 + ], + [ + 10.2953967, + 50.029818901 + ], + [ + 10.2938093, + 50.030003001 + ], + [ + 10.2922568, + 50.030169601 + ], + [ + 10.2906746, + 50.030305001 + ], + [ + 10.2891114, + 50.030426001 + ], + [ + 10.2875075, + 50.030518701 + ], + [ + 10.2864543, + 50.030578701 + ], + [ + 10.2854161, + 50.030630201 + ], + [ + 10.2853288, + 50.030633401 + ], + [ + 10.2849563, + 50.030646901 + ], + [ + 10.2838494, + 50.030692001 + ], + [ + 10.2823146, + 50.030733901 + ], + [ + 10.2809161, + 50.030756001 + ], + [ + 10.2794347, + 50.030762101 + ], + [ + 10.2783973, + 50.030752801 + ], + [ + 10.2768814, + 50.030739201 + ], + [ + 10.2750568, + 50.030687601 + ], + [ + 10.2733738, + 50.030621501 + ], + [ + 10.2729511, + 50.030599401 + ], + [ + 10.271504248, + 50.030518841 + ] + ] + } + }, + { + "identifier": "2026-017417--vi-bs.2026-04-13_08-00-00-000_014.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.97767165659399,10.66333705114664,49.91833495566392,10.841925963655688", + "point": "49.97767165659399,10.66333705114664", + "startLcPosition": "12", + "impact": { + "lower": "Bamberg-Hafen", + "upper": "Schwarzer Berg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schweinfurt/Werneck -> Bamberg", + "title": "A70 | Schwarzer Berg - Bamberg-Hafen", + "coordinate": { + "lat": 49.97767165659399, + "long": 10.66333705114664 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 14:30 Uhr", + "14.04.26 von 08:00 bis 14:30 Uhr", + "15.04.26 von 08:00 bis 14:30 Uhr", + "16.04.26 von 08:00 bis 14:30 Uhr", + "17.04.26 von 08:00 bis 11:45 Uhr", + "", + "A70: Schweinfurt/Werneck -> Bamberg, zwischen 2.1 km hinter Schwarzer Berg und 1.3 km vor AS Bamberg-Hafen", + "", + "L\u00e4nge: 14.98 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A70 von Schwarzer Berg (Tunnel) nach Bamberg-Hafen (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.663337051, + 49.977671657 + ], + [ + 10.6641892, + 49.977684801 + ], + [ + 10.6655378, + 49.977709601 + ], + [ + 10.6668818, + 49.977731401 + ], + [ + 10.6673204, + 49.977728701 + ], + [ + 10.6695478, + 49.977769201 + ], + [ + 10.6697309, + 49.977773301 + ], + [ + 10.6700797, + 49.977777901 + ], + [ + 10.6722705, + 49.977813901 + ], + [ + 10.6728271, + 49.977821101 + ], + [ + 10.6756232, + 49.977869201 + ], + [ + 10.6766326, + 49.977882501 + ], + [ + 10.6782985, + 49.977904401 + ], + [ + 10.6799805, + 49.977918601 + ], + [ + 10.6805116, + 49.977909401 + ], + [ + 10.6809853, + 49.977897901 + ], + [ + 10.6817326, + 49.977856001 + ], + [ + 10.6821779, + 49.977819601 + ], + [ + 10.6825733, + 49.977776501 + ], + [ + 10.683461, + 49.977673501 + ], + [ + 10.683984, + 49.977586301 + ], + [ + 10.6844891, + 49.977488001 + ], + [ + 10.6850415, + 49.977365801 + ], + [ + 10.6856064, + 49.977228201 + ], + [ + 10.6861525, + 49.977077801 + ], + [ + 10.6866812, + 49.976922501 + ], + [ + 10.6900674, + 49.975847301 + ], + [ + 10.6959835, + 49.973968601 + ], + [ + 10.7023197, + 49.971956401 + ], + [ + 10.7042575, + 49.971341001 + ], + [ + 10.7089684, + 49.969839101 + ], + [ + 10.7109878, + 49.969195301 + ], + [ + 10.7112738, + 49.969104101 + ], + [ + 10.7151975, + 49.967859301 + ], + [ + 10.7199166, + 49.966362101 + ], + [ + 10.7212869, + 49.965935401 + ], + [ + 10.7219875, + 49.965711701 + ], + [ + 10.7226019, + 49.965507501 + ], + [ + 10.7229897, + 49.965366801 + ], + [ + 10.7233598, + 49.965221101 + ], + [ + 10.7236715, + 49.965095701 + ], + [ + 10.724015, + 49.964950001 + ], + [ + 10.7250437, + 49.964442101 + ], + [ + 10.7257548, + 49.964006401 + ], + [ + 10.7264689, + 49.963529401 + ], + [ + 10.7271748, + 49.963021801 + ], + [ + 10.7278521, + 49.962546901 + ], + [ + 10.7287123, + 49.962015901 + ], + [ + 10.7296359, + 49.961537701 + ], + [ + 10.7304366, + 49.961185401 + ], + [ + 10.7316295, + 49.960754801 + ], + [ + 10.7328764, + 49.960383801 + ], + [ + 10.7338492, + 49.960143401 + ], + [ + 10.7348599, + 49.959912401 + ], + [ + 10.7370449, + 49.959452901 + ], + [ + 10.7381219, + 49.959210501 + ], + [ + 10.7391443, + 49.958949901 + ], + [ + 10.7401325, + 49.958664101 + ], + [ + 10.7411499, + 49.958316301 + ], + [ + 10.7418957, + 49.958043601 + ], + [ + 10.7425986, + 49.957751601 + ], + [ + 10.7436996, + 49.957252301 + ], + [ + 10.7443086, + 49.956932001 + ], + [ + 10.7449586, + 49.956578601 + ], + [ + 10.7454278, + 49.956294801 + ], + [ + 10.7459206, + 49.955981001 + ], + [ + 10.746714, + 49.955437701 + ], + [ + 10.7470249, + 49.955218301 + ], + [ + 10.7476455, + 49.954757901 + ], + [ + 10.748248, + 49.954317001 + ], + [ + 10.7487549, + 49.953964801 + ], + [ + 10.749285, + 49.953615501 + ], + [ + 10.7499248, + 49.953232201 + ], + [ + 10.7502547, + 49.953047401 + ], + [ + 10.7506195, + 49.952860001 + ], + [ + 10.7509773, + 49.952689401 + ], + [ + 10.7513823, + 49.952503101 + ], + [ + 10.7517395, + 49.952354401 + ], + [ + 10.7521301, + 49.952198301 + ], + [ + 10.7528047, + 49.951946701 + ], + [ + 10.7534483, + 49.951696901 + ], + [ + 10.7541134, + 49.951425701 + ], + [ + 10.7547555, + 49.951142701 + ], + [ + 10.755224, + 49.950916201 + ], + [ + 10.7556677, + 49.950674301 + ], + [ + 10.7561368, + 49.950401501 + ], + [ + 10.7565616, + 49.950132801 + ], + [ + 10.7569738, + 49.949850001 + ], + [ + 10.757373, + 49.949538901 + ], + [ + 10.7578383, + 49.949142301 + ], + [ + 10.7585015, + 49.948498101 + ], + [ + 10.7591329, + 49.947763801 + ], + [ + 10.7597961, + 49.946906801 + ], + [ + 10.7606406, + 49.945727601 + ], + [ + 10.7612017, + 49.944951701 + ], + [ + 10.7618594, + 49.944187601 + ], + [ + 10.7624058, + 49.943600401 + ], + [ + 10.7627108, + 49.943304701 + ], + [ + 10.7630275, + 49.943016101 + ], + [ + 10.7633512, + 49.942739301 + ], + [ + 10.7636769, + 49.942480401 + ], + [ + 10.7649528, + 49.941581501 + ], + [ + 10.7663315, + 49.940736401 + ], + [ + 10.768452, + 49.939504401 + ], + [ + 10.7704673, + 49.938300001 + ], + [ + 10.7714247, + 49.937660301 + ], + [ + 10.772212, + 49.937094301 + ], + [ + 10.7729447, + 49.936533901 + ], + [ + 10.7736835, + 49.935954101 + ], + [ + 10.7748104, + 49.935053701 + ], + [ + 10.7751312, + 49.934798801 + ], + [ + 10.7758097, + 49.934280301 + ], + [ + 10.7766504, + 49.933653701 + ], + [ + 10.7770088, + 49.933402501 + ], + [ + 10.7775729, + 49.933026701 + ], + [ + 10.7784173, + 49.932498401 + ], + [ + 10.7793777, + 49.931949001 + ], + [ + 10.7802569, + 49.931496501 + ], + [ + 10.7806458, + 49.931313101 + ], + [ + 10.7811102, + 49.931086201 + ], + [ + 10.7817948, + 49.930781901 + ], + [ + 10.7822654, + 49.930584501 + ], + [ + 10.7827083, + 49.930398801 + ], + [ + 10.7838946, + 49.929960601 + ], + [ + 10.7848421, + 49.929641701 + ], + [ + 10.7859867, + 49.929298701 + ], + [ + 10.7870012, + 49.929026401 + ], + [ + 10.7880119, + 49.928773901 + ], + [ + 10.7898088, + 49.928393701 + ], + [ + 10.7907415, + 49.928234901 + ], + [ + 10.7915769, + 49.928114201 + ], + [ + 10.7932882, + 49.927918501 + ], + [ + 10.795109, + 49.927746401 + ], + [ + 10.7969075, + 49.927570801 + ], + [ + 10.7986579, + 49.927411501 + ], + [ + 10.800542, + 49.927227601 + ], + [ + 10.8024164, + 49.927027801 + ], + [ + 10.8042986, + 49.926807401 + ], + [ + 10.8052284, + 49.926685001 + ], + [ + 10.8061462, + 49.926567601 + ], + [ + 10.8079297, + 49.926317101 + ], + [ + 10.8097165, + 49.926043301 + ], + [ + 10.8115227, + 49.925748401 + ], + [ + 10.8132854, + 49.925442001 + ], + [ + 10.8146252, + 49.925196901 + ], + [ + 10.8159176, + 49.924944401 + ], + [ + 10.818825, + 49.924341201 + ], + [ + 10.8201748, + 49.924039001 + ], + [ + 10.8214827, + 49.923729801 + ], + [ + 10.8235166, + 49.923242801 + ], + [ + 10.8255948, + 49.922702201 + ], + [ + 10.8264164, + 49.922475001 + ], + [ + 10.8287014, + 49.921843001 + ], + [ + 10.8298141, + 49.921520301 + ], + [ + 10.8305988, + 49.921279801 + ], + [ + 10.8314122, + 49.921039501 + ], + [ + 10.8340688, + 49.920225401 + ], + [ + 10.8356509, + 49.919760501 + ], + [ + 10.8372363, + 49.919341001 + ], + [ + 10.8390238, + 49.918910401 + ], + [ + 10.8404033, + 49.918616601 + ], + [ + 10.8418188, + 49.918352701 + ], + [ + 10.841925964, + 49.918334956 + ] + ] + } + }, + { + "identifier": "2023-000436--vi-bs.2025-08-23_00-00-00-000.devi-zus.2023-10-10_00-00-00-000.f_001.de16", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.91952803249424,10.869242285836345,49.92247666351046,10.896419893990318", + "point": "49.91952803249424,10.869242285836345", + "startLcPosition": "15", + "impact": { + "lower": "Bamberg", + "upper": "Bamberg-Hafen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Schweinfurt/Werneck -> Bamberg", + "title": "A70 | Bamberg-Hafen - Bamberg", + "startTimestamp": "2025-08-23T00:00:00+02:00", + "coordinate": { + "lat": 49.91952803249424, + "long": 10.869242285836345 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.08.25 um 00:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A70: Schweinfurt/Werneck -> Bamberg, zwischen 0.7 km hinter AS Bamberg-Hafen und 0.2 km vor AS Bamberg", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A70 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.869242286, + 49.919528032 + ], + [ + 10.8709331, + 49.919948501 + ], + [ + 10.8722957, + 49.920284301 + ], + [ + 10.8731252, + 49.920474701 + ], + [ + 10.8742722, + 49.920746201 + ], + [ + 10.8750774, + 49.920909301 + ], + [ + 10.8754301, + 49.920977301 + ], + [ + 10.8756882, + 49.921024401 + ], + [ + 10.8760821, + 49.921096201 + ], + [ + 10.877102, + 49.921275501 + ], + [ + 10.8773955, + 49.921321901 + ], + [ + 10.8780357, + 49.921426801 + ], + [ + 10.879575, + 49.921642601 + ], + [ + 10.8805497, + 49.921759701 + ], + [ + 10.8808097, + 49.921790201 + ], + [ + 10.8820289, + 49.921912701 + ], + [ + 10.8823554, + 49.921943001 + ], + [ + 10.8832763, + 49.922008301 + ], + [ + 10.884194, + 49.922079201 + ], + [ + 10.8849673, + 49.922120201 + ], + [ + 10.8855886, + 49.922149601 + ], + [ + 10.8866913, + 49.922191301 + ], + [ + 10.8870255, + 49.922198101 + ], + [ + 10.888968, + 49.922222301 + ], + [ + 10.8909438, + 49.922225401 + ], + [ + 10.8928681, + 49.922241501 + ], + [ + 10.8935806, + 49.922263201 + ], + [ + 10.894009, + 49.922276301 + ], + [ + 10.8948333, + 49.922326501 + ], + [ + 10.8957225, + 49.922402801 + ], + [ + 10.896401, + 49.922474501 + ], + [ + 10.896419894, + 49.922476664 + ] + ] + } + }, + { + "identifier": "2023-000436--vi-bs.2025-08-23_00-00-00-000.devi-zus.2023-10-10_00-00-00-000.f_001.de18", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.92257587660451,10.896392485217282,49.919637642056145,10.869177784988171", + "point": "49.92257587660451,10.896392485217282", + "startLcPosition": "17", + "impact": { + "lower": "Bamberg-Hafen", + "upper": "Bamberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bamberg -> Schweinfurt/Werneck", + "title": "A70 | Bamberg - Bamberg-Hafen", + "startTimestamp": "2025-08-23T00:00:00+02:00", + "coordinate": { + "lat": 49.92257587660451, + "long": 10.896392485217282 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.08.25 um 00:00 Uhr", + "Ende: 01.01.28 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.28)", + "", + "A70: Bamberg -> Schweinfurt/Werneck, zwischen 0.2 km hinter AS Bamberg und 0.7 km vor AS Bamberg-Hafen", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A70 Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.896392485, + 49.922575877 + ], + [ + 10.8963435, + 49.922570201 + ], + [ + 10.8957011, + 49.922500701 + ], + [ + 10.8948053, + 49.922424101 + ], + [ + 10.894009, + 49.922379001 + ], + [ + 10.8928466, + 49.922341001 + ], + [ + 10.8909151, + 49.922327101 + ], + [ + 10.8889752, + 49.922324001 + ], + [ + 10.8870207, + 49.922294801 + ], + [ + 10.8866865, + 49.922288001 + ], + [ + 10.8855775, + 49.922250401 + ], + [ + 10.8849543, + 49.922221001 + ], + [ + 10.8841808, + 49.922175601 + ], + [ + 10.8832584, + 49.922114501 + ], + [ + 10.8823305, + 49.922043401 + ], + [ + 10.8820188, + 49.922011701 + ], + [ + 10.8810576, + 49.921913201 + ], + [ + 10.8807773, + 49.921884501 + ], + [ + 10.880525, + 49.921856201 + ], + [ + 10.879873, + 49.921782401 + ], + [ + 10.8791671, + 49.921690701 + ], + [ + 10.8784416, + 49.921590301 + ], + [ + 10.8780191, + 49.921528001 + ], + [ + 10.8773449, + 49.921413701 + ], + [ + 10.8770529, + 49.921368101 + ], + [ + 10.8756537, + 49.921124401 + ], + [ + 10.8755026, + 49.921098001 + ], + [ + 10.8753447, + 49.921061901 + ], + [ + 10.8742514, + 49.920845201 + ], + [ + 10.8727469, + 49.920511101 + ], + [ + 10.8722196, + 49.920380501 + ], + [ + 10.8707965, + 49.920029801 + ], + [ + 10.869177785, + 49.919637642 + ] + ] + } + } + ] + }, + "A71": { + "roadworks": [ + { + "identifier": "2026-012501--vi-bs.2026-04-01_06-00-00-000.devi-bs.2026-03-12_06-00-00-000_001.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.428766040709895,10.397003694250822,50.612662321946765,10.655139409017798", + "point": "50.428766040709895,10.397003694250822", + "startLcPosition": "10", + "impact": { + "lower": "Berg Bock", + "upper": "Mellrichst\u00e4dter H\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schweinfurt -> Erfurt", + "title": "A71 | Mellrichst\u00e4dter H\u00f6he - Berg Bock", + "coordinate": { + "lat": 50.428766040709895, + "long": 10.397003694250822 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 06:00 bis 15:15 Uhr.", + "", + "A71: Schweinfurt -> Erfurt, zwischen 3.4 km hinter Mellrichst\u00e4dter H\u00f6he und 2.7 km vor Berg Bock", + "", + "L\u00e4nge: 34.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 Reinigungsarbeiten Entw\u00e4sserung AM ZM" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.397003694, + 50.428766041 + ], + [ + 10.4016029, + 50.428760301 + ], + [ + 10.4017554, + 50.428760101 + ], + [ + 10.4034352, + 50.428757901 + ], + [ + 10.406287, + 50.428836701 + ], + [ + 10.4077955, + 50.428910501 + ], + [ + 10.4081632, + 50.428939001 + ], + [ + 10.4093522, + 50.429031301 + ], + [ + 10.4116596, + 50.429281801 + ], + [ + 10.4130141, + 50.429459801 + ], + [ + 10.4142007, + 50.429647801 + ], + [ + 10.4154593, + 50.429853001 + ], + [ + 10.4168876, + 50.430134401 + ], + [ + 10.4192323, + 50.430676801 + ], + [ + 10.421024, + 50.431157401 + ], + [ + 10.4215968, + 50.431334701 + ], + [ + 10.4231572, + 50.431817801 + ], + [ + 10.4251147, + 50.432497301 + ], + [ + 10.4268281, + 50.433177901 + ], + [ + 10.4281301, + 50.433738401 + ], + [ + 10.4297862, + 50.434528401 + ], + [ + 10.4314699, + 50.435416001 + ], + [ + 10.4332604, + 50.436474401 + ], + [ + 10.4344425, + 50.437241001 + ], + [ + 10.4359143, + 50.438286201 + ], + [ + 10.4365149, + 50.438733401 + ], + [ + 10.437868, + 50.439845201 + ], + [ + 10.4391198, + 50.441007901 + ], + [ + 10.4405366, + 50.442495601 + ], + [ + 10.4418855, + 50.444068501 + ], + [ + 10.4421093, + 50.444304501 + ], + [ + 10.442492, + 50.444767901 + ], + [ + 10.4428915, + 50.445274201 + ], + [ + 10.443751, + 50.446305001 + ], + [ + 10.4441491, + 50.446850601 + ], + [ + 10.4447097, + 50.447554301 + ], + [ + 10.4451267, + 50.448074801 + ], + [ + 10.4455277, + 50.448611601 + ], + [ + 10.445924, + 50.449100601 + ], + [ + 10.4463741, + 50.449700101 + ], + [ + 10.4466922, + 50.450117801 + ], + [ + 10.4474412, + 50.451148101 + ], + [ + 10.4480526, + 50.451989001 + ], + [ + 10.4481806, + 50.452169601 + ], + [ + 10.4492351, + 50.453664401 + ], + [ + 10.4506627, + 50.455803901 + ], + [ + 10.4508586, + 50.456113601 + ], + [ + 10.451516, + 50.457231101 + ], + [ + 10.4520735, + 50.458298901 + ], + [ + 10.4527014, + 50.459605701 + ], + [ + 10.4530593, + 50.460645901 + ], + [ + 10.4533361, + 50.461634501 + ], + [ + 10.453616, + 50.463025701 + ], + [ + 10.4537615, + 50.463945501 + ], + [ + 10.4538547, + 50.464837201 + ], + [ + 10.4538912, + 50.465239701 + ], + [ + 10.4539281, + 50.466371201 + ], + [ + 10.4538873, + 50.467440901 + ], + [ + 10.4537704, + 50.468629901 + ], + [ + 10.4536629, + 50.469273201 + ], + [ + 10.453619, + 50.469523101 + ], + [ + 10.4535395, + 50.469963001 + ], + [ + 10.4534819, + 50.470215801 + ], + [ + 10.4532466, + 50.471121001 + ], + [ + 10.4529915, + 50.471968701 + ], + [ + 10.4527957, + 50.472519501 + ], + [ + 10.4526879, + 50.472801901 + ], + [ + 10.4525818, + 50.473052701 + ], + [ + 10.4522976, + 50.473754801 + ], + [ + 10.4520918, + 50.474204701 + ], + [ + 10.4518372, + 50.474723601 + ], + [ + 10.4516291, + 50.475123001 + ], + [ + 10.4512615, + 50.475782001 + ], + [ + 10.4507949, + 50.476576501 + ], + [ + 10.4502678, + 50.477368101 + ], + [ + 10.4495515, + 50.478354901 + ], + [ + 10.448987, + 50.479069901 + ], + [ + 10.4478738, + 50.480345601 + ], + [ + 10.4468041, + 50.481495901 + ], + [ + 10.4461875, + 50.482181501 + ], + [ + 10.4457434, + 50.482627701 + ], + [ + 10.444601, + 50.483917401 + ], + [ + 10.443913, + 50.484782201 + ], + [ + 10.4431513, + 50.485945001 + ], + [ + 10.4430886, + 50.486056501 + ], + [ + 10.4425615, + 50.486993301 + ], + [ + 10.4420785, + 50.488071401 + ], + [ + 10.4416896, + 50.489285401 + ], + [ + 10.4414933, + 50.490203601 + ], + [ + 10.4413818, + 50.490725401 + ], + [ + 10.4412408, + 50.491761401 + ], + [ + 10.4412404, + 50.491915201 + ], + [ + 10.4412381, + 50.492818101 + ], + [ + 10.4412867, + 50.494211801 + ], + [ + 10.4413237, + 50.494651101 + ], + [ + 10.4413887, + 50.495444201 + ], + [ + 10.4414024, + 50.495557001 + ], + [ + 10.4414398, + 50.495871501 + ], + [ + 10.441553, + 50.496625901 + ], + [ + 10.44173, + 50.497591301 + ], + [ + 10.4421583, + 50.499281601 + ], + [ + 10.4422923, + 50.499810301 + ], + [ + 10.4427966, + 50.501314101 + ], + [ + 10.4435291, + 50.503073301 + ], + [ + 10.4437335, + 50.503501901 + ], + [ + 10.444137, + 50.504347801 + ], + [ + 10.4442869, + 50.504633101 + ], + [ + 10.4447411, + 50.505457001 + ], + [ + 10.4452314, + 50.506272501 + ], + [ + 10.4457575, + 50.507079001 + ], + [ + 10.4463189, + 50.507875701 + ], + [ + 10.4463798, + 50.507967601 + ], + [ + 10.4464552, + 50.508059701 + ], + [ + 10.446661, + 50.508345201 + ], + [ + 10.4467832, + 50.508516401 + ], + [ + 10.4472676, + 50.509117001 + ], + [ + 10.4477651, + 50.509713301 + ], + [ + 10.4482755, + 50.510305101 + ], + [ + 10.4487988, + 50.510892301 + ], + [ + 10.4493348, + 50.511474901 + ], + [ + 10.4498311, + 50.511998301 + ], + [ + 10.4503377, + 50.512517601 + ], + [ + 10.4508545, + 50.513032901 + ], + [ + 10.4513815, + 50.513544001 + ], + [ + 10.4519185, + 50.514050801 + ], + [ + 10.4524655, + 50.514553301 + ], + [ + 10.4530224, + 50.515051401 + ], + [ + 10.453589, + 50.515545001 + ], + [ + 10.4540554, + 50.515941701 + ], + [ + 10.454528, + 50.516335301 + ], + [ + 10.455007, + 50.516725801 + ], + [ + 10.4558264, + 50.517325901 + ], + [ + 10.4562842, + 50.517661101 + ], + [ + 10.4575994, + 50.518577901 + ], + [ + 10.4581239, + 50.518897301 + ], + [ + 10.4586528, + 50.519219301 + ], + [ + 10.4591971, + 50.519514001 + ], + [ + 10.459779, + 50.519797101 + ], + [ + 10.4604712, + 50.520115201 + ], + [ + 10.4612367, + 50.520419201 + ], + [ + 10.4618075, + 50.520620801 + ], + [ + 10.4624059, + 50.520804601 + ], + [ + 10.4631608, + 50.521013701 + ], + [ + 10.4638766, + 50.521178401 + ], + [ + 10.4642721, + 50.521260901 + ], + [ + 10.4657031, + 50.521553101 + ], + [ + 10.4663567, + 50.521674901 + ], + [ + 10.4671841, + 50.521852801 + ], + [ + 10.467734, + 50.521978101 + ], + [ + 10.4683397, + 50.522133201 + ], + [ + 10.4694129, + 50.522459001 + ], + [ + 10.4697869, + 50.522594501 + ], + [ + 10.4701599, + 50.522737101 + ], + [ + 10.4703967, + 50.522831101 + ], + [ + 10.4706996, + 50.522958601 + ], + [ + 10.4708611, + 50.523031801 + ], + [ + 10.4710343, + 50.523107901 + ], + [ + 10.4716139, + 50.523396401 + ], + [ + 10.472072, + 50.523641501 + ], + [ + 10.4725538, + 50.523920501 + ], + [ + 10.4732475, + 50.524364201 + ], + [ + 10.4735346, + 50.524572201 + ], + [ + 10.4738115, + 50.524785701 + ], + [ + 10.474078, + 50.525004401 + ], + [ + 10.4743339, + 50.525228201 + ], + [ + 10.474579, + 50.525456901 + ], + [ + 10.4748129, + 50.525690201 + ], + [ + 10.4750355, + 50.525928001 + ], + [ + 10.4752425, + 50.526165201 + ], + [ + 10.4754383, + 50.526406201 + ], + [ + 10.4756227, + 50.526650901 + ], + [ + 10.4757954, + 50.526899001 + ], + [ + 10.4759564, + 50.527150201 + ], + [ + 10.4761119, + 50.527415801 + ], + [ + 10.4762542, + 50.527684501 + ], + [ + 10.4763832, + 50.527955801 + ], + [ + 10.4764988, + 50.528229501 + ], + [ + 10.4766009, + 50.528505401 + ], + [ + 10.4766893, + 50.528783201 + ], + [ + 10.476764, + 50.529062601 + ], + [ + 10.476825, + 50.529343401 + ], + [ + 10.476872, + 50.529625201 + ], + [ + 10.4769052, + 50.529907801 + ], + [ + 10.4769245, + 50.530191001 + ], + [ + 10.4769298, + 50.530474401 + ], + [ + 10.4769227, + 50.530728501 + ], + [ + 10.4769043, + 50.530982401 + ], + [ + 10.4768748, + 50.531235901 + ], + [ + 10.4768341, + 50.531488701 + ], + [ + 10.4767301, + 50.531963001 + ], + [ + 10.4766039, + 50.532404501 + ], + [ + 10.476471, + 50.532822901 + ], + [ + 10.4762645, + 50.533391201 + ], + [ + 10.4761294, + 50.533750401 + ], + [ + 10.4758609, + 50.534625301 + ], + [ + 10.4757904, + 50.534937501 + ], + [ + 10.475698, + 50.535475001 + ], + [ + 10.4756286, + 50.536250601 + ], + [ + 10.4756631, + 50.536983601 + ], + [ + 10.4758221, + 50.537770701 + ], + [ + 10.4760437, + 50.538502701 + ], + [ + 10.476523, + 50.539442701 + ], + [ + 10.4771038, + 50.540392201 + ], + [ + 10.4775712, + 50.541047601 + ], + [ + 10.4779252, + 50.541515401 + ], + [ + 10.4781494, + 50.541852501 + ], + [ + 10.4787277, + 50.542843201 + ], + [ + 10.4789607, + 50.543375701 + ], + [ + 10.4790897, + 50.543728801 + ], + [ + 10.4792842, + 50.544495301 + ], + [ + 10.4793594, + 50.545241301 + ], + [ + 10.4793882, + 50.545833801 + ], + [ + 10.4793631, + 50.546152001 + ], + [ + 10.4792689, + 50.546748101 + ], + [ + 10.4791253, + 50.547372901 + ], + [ + 10.4788957, + 50.548039601 + ], + [ + 10.4786047, + 50.548639101 + ], + [ + 10.4785006, + 50.548819901 + ], + [ + 10.478129, + 50.549439701 + ], + [ + 10.4778723, + 50.549807701 + ], + [ + 10.4775227, + 50.550228601 + ], + [ + 10.4769693, + 50.550855901 + ], + [ + 10.4763081, + 50.551571901 + ], + [ + 10.4758132, + 50.552129101 + ], + [ + 10.4755454, + 50.552450001 + ], + [ + 10.4752811, + 50.552794801 + ], + [ + 10.4749148, + 50.553354501 + ], + [ + 10.4747521, + 50.553633601 + ], + [ + 10.4746043, + 50.553913801 + ], + [ + 10.4743987, + 50.554378001 + ], + [ + 10.4741836, + 50.555023601 + ], + [ + 10.4740875, + 50.555415701 + ], + [ + 10.474015, + 50.555837701 + ], + [ + 10.4739866, + 50.556236301 + ], + [ + 10.4739883, + 50.556686201 + ], + [ + 10.474004, + 50.557095501 + ], + [ + 10.4740715, + 50.557497401 + ], + [ + 10.4742461, + 50.558252501 + ], + [ + 10.4744026, + 50.558701401 + ], + [ + 10.4745928, + 50.559149801 + ], + [ + 10.4748381, + 50.559623801 + ], + [ + 10.4751348, + 50.560090601 + ], + [ + 10.4757414, + 50.560897501 + ], + [ + 10.4764193, + 50.561686301 + ], + [ + 10.4774089, + 50.562851101 + ], + [ + 10.4780252, + 50.563648001 + ], + [ + 10.4785694, + 50.564397801 + ], + [ + 10.4786232, + 50.564487501 + ], + [ + 10.4791194, + 50.565314501 + ], + [ + 10.4795444, + 50.566186601 + ], + [ + 10.4799203, + 50.567193001 + ], + [ + 10.4801579, + 50.568137601 + ], + [ + 10.4802714, + 50.568898601 + ], + [ + 10.4802966, + 50.569180901 + ], + [ + 10.4803535, + 50.571329701 + ], + [ + 10.4803911, + 50.572322801 + ], + [ + 10.4804954, + 50.573310801 + ], + [ + 10.4805319, + 50.573515101 + ], + [ + 10.4806258, + 50.573889101 + ], + [ + 10.4807087, + 50.574254201 + ], + [ + 10.480862, + 50.574798101 + ], + [ + 10.4810593, + 50.575408401 + ], + [ + 10.4812174, + 50.575834901 + ], + [ + 10.4815685, + 50.576640901 + ], + [ + 10.4818502, + 50.577201401 + ], + [ + 10.4820265, + 50.577524201 + ], + [ + 10.4822192, + 50.577855901 + ], + [ + 10.4825552, + 50.578396401 + ], + [ + 10.4828719, + 50.578843501 + ], + [ + 10.4831183, + 50.579182801 + ], + [ + 10.4833449, + 50.579478401 + ], + [ + 10.4834813, + 50.579665501 + ], + [ + 10.4836128, + 50.579835001 + ], + [ + 10.4839119, + 50.580208601 + ], + [ + 10.4842008, + 50.580548201 + ], + [ + 10.4849751, + 50.581427901 + ], + [ + 10.4850333, + 50.581489301 + ], + [ + 10.4859501, + 50.582456001 + ], + [ + 10.4871157, + 50.583578501 + ], + [ + 10.4873209, + 50.583773301 + ], + [ + 10.4876709, + 50.584126201 + ], + [ + 10.4880673, + 50.584545901 + ], + [ + 10.4884078, + 50.584948101 + ], + [ + 10.4887467, + 50.585369701 + ], + [ + 10.48891, + 50.585603201 + ], + [ + 10.4891143, + 50.585895301 + ], + [ + 10.4893409, + 50.586236201 + ], + [ + 10.4897003, + 50.586865401 + ], + [ + 10.4898406, + 50.587131101 + ], + [ + 10.4900983, + 50.587715701 + ], + [ + 10.4902445, + 50.588059601 + ], + [ + 10.4906609, + 50.589193601 + ], + [ + 10.4908187, + 50.589559101 + ], + [ + 10.4909653, + 50.589867601 + ], + [ + 10.4912354, + 50.590362601 + ], + [ + 10.4914612, + 50.590728601 + ], + [ + 10.4916564, + 50.591010001 + ], + [ + 10.4919688, + 50.591431201 + ], + [ + 10.4922402, + 50.591765801 + ], + [ + 10.4924448, + 50.591990801 + ], + [ + 10.4927112, + 50.592268001 + ], + [ + 10.4928669, + 50.592426801 + ], + [ + 10.493315, + 50.592849301 + ], + [ + 10.4937358, + 50.593210801 + ], + [ + 10.4941738, + 50.593549301 + ], + [ + 10.4945169, + 50.593792101 + ], + [ + 10.4947197, + 50.593935601 + ], + [ + 10.4950952, + 50.594187201 + ], + [ + 10.4961224, + 50.594795201 + ], + [ + 10.4967297, + 50.595119101 + ], + [ + 10.4976008, + 50.595535301 + ], + [ + 10.4986043, + 50.595973701 + ], + [ + 10.4998496, + 50.596437301 + ], + [ + 10.5010041, + 50.596798901 + ], + [ + 10.5023974, + 50.597181101 + ], + [ + 10.5041735, + 50.597552601 + ], + [ + 10.5055553, + 50.597771001 + ], + [ + 10.506819, + 50.597911201 + ], + [ + 10.5081086, + 50.598000301 + ], + [ + 10.5092225, + 50.598053401 + ], + [ + 10.5103917, + 50.598051901 + ], + [ + 10.5114409, + 50.598023401 + ], + [ + 10.5125637, + 50.597955501 + ], + [ + 10.5132388, + 50.597910401 + ], + [ + 10.5177941, + 50.597645101 + ], + [ + 10.5188707, + 50.597614801 + ], + [ + 10.5198668, + 50.597596401 + ], + [ + 10.5211468, + 50.597593901 + ], + [ + 10.5217704, + 50.597607501 + ], + [ + 10.5226335, + 50.597634101 + ], + [ + 10.5234966, + 50.597674801 + ], + [ + 10.5247644, + 50.597766501 + ], + [ + 10.525553, + 50.597850001 + ], + [ + 10.5263372, + 50.597947601 + ], + [ + 10.5267831, + 50.598011701 + ], + [ + 10.5276463, + 50.598151901 + ], + [ + 10.5290019, + 50.598443401 + ], + [ + 10.5301697, + 50.598749501 + ], + [ + 10.5314458, + 50.599144301 + ], + [ + 10.5321329, + 50.599378901 + ], + [ + 10.5334186, + 50.599899501 + ], + [ + 10.5336536, + 50.600010201 + ], + [ + 10.5342822, + 50.600306501 + ], + [ + 10.5349955, + 50.600667901 + ], + [ + 10.5352373, + 50.600794801 + ], + [ + 10.535363, + 50.600865201 + ], + [ + 10.5359718, + 50.601234801 + ], + [ + 10.5370115, + 50.601925701 + ], + [ + 10.5373877, + 50.602211301 + ], + [ + 10.5381089, + 50.602791401 + ], + [ + 10.5385278, + 50.603151201 + ], + [ + 10.5390888, + 50.603658701 + ], + [ + 10.5408108, + 50.605216201 + ], + [ + 10.542239, + 50.606338001 + ], + [ + 10.543332, + 50.607039601 + ], + [ + 10.5436222, + 50.607189901 + ], + [ + 10.5446082, + 50.607700401 + ], + [ + 10.5456612, + 50.608170701 + ], + [ + 10.5467756, + 50.608563801 + ], + [ + 10.5479125, + 50.608904401 + ], + [ + 10.5491969, + 50.609197001 + ], + [ + 10.5492427, + 50.609205101 + ], + [ + 10.5500871, + 50.609355401 + ], + [ + 10.5509268, + 50.609473201 + ], + [ + 10.5521579, + 50.609612401 + ], + [ + 10.5527034, + 50.609667601 + ], + [ + 10.5553141, + 50.609943001 + ], + [ + 10.5564381, + 50.610114801 + ], + [ + 10.5568752, + 50.610181601 + ], + [ + 10.5580826, + 50.610434701 + ], + [ + 10.5592261, + 50.610716901 + ], + [ + 10.5603094, + 50.611013601 + ], + [ + 10.5612382, + 50.611327501 + ], + [ + 10.562111, + 50.611652201 + ], + [ + 10.5626205, + 50.611855701 + ], + [ + 10.5631206, + 50.612062801 + ], + [ + 10.56392, + 50.612430201 + ], + [ + 10.564818, + 50.612875801 + ], + [ + 10.5662846, + 50.613639001 + ], + [ + 10.5669939, + 50.613974501 + ], + [ + 10.5681492, + 50.614472101 + ], + [ + 10.5687321, + 50.614688001 + ], + [ + 10.5691119, + 50.614828601 + ], + [ + 10.5705256, + 50.615249501 + ], + [ + 10.5715797, + 50.615512101 + ], + [ + 10.5727818, + 50.615749601 + ], + [ + 10.5742331, + 50.615944901 + ], + [ + 10.5750119, + 50.615998101 + ], + [ + 10.5758828, + 50.616057501 + ], + [ + 10.5769701, + 50.616083701 + ], + [ + 10.5781353, + 50.616061001 + ], + [ + 10.5804588, + 50.616016501 + ], + [ + 10.581648, + 50.616014301 + ], + [ + 10.5823622, + 50.616048001 + ], + [ + 10.5828044, + 50.616068901 + ], + [ + 10.5838441, + 50.616148801 + ], + [ + 10.5847578, + 50.616221101 + ], + [ + 10.5874811, + 50.616477201 + ], + [ + 10.5883209, + 50.616549301 + ], + [ + 10.5889934, + 50.616583201 + ], + [ + 10.5903779, + 50.616641001 + ], + [ + 10.5918703, + 50.616666501 + ], + [ + 10.5925566, + 50.616658201 + ], + [ + 10.5928673, + 50.616641101 + ], + [ + 10.5935252, + 50.616618601 + ], + [ + 10.5942602, + 50.616576601 + ], + [ + 10.5950319, + 50.616517901 + ], + [ + 10.595722, + 50.616450101 + ], + [ + 10.5960806, + 50.616409801 + ], + [ + 10.5965175, + 50.616360601 + ], + [ + 10.5972745, + 50.616260701 + ], + [ + 10.5980188, + 50.616139001 + ], + [ + 10.5987501, + 50.616009201 + ], + [ + 10.599564, + 50.615850801 + ], + [ + 10.6003485, + 50.615677901 + ], + [ + 10.6011589, + 50.615472001 + ], + [ + 10.6017791, + 50.615310501 + ], + [ + 10.6024757, + 50.615115501 + ], + [ + 10.6050004, + 50.614340601 + ], + [ + 10.6054208, + 50.614217401 + ], + [ + 10.6059718, + 50.614060601 + ], + [ + 10.6064027, + 50.613943701 + ], + [ + 10.6070314, + 50.613800101 + ], + [ + 10.6079113, + 50.613614801 + ], + [ + 10.6089169, + 50.613445901 + ], + [ + 10.6094158, + 50.613374001 + ], + [ + 10.6099874, + 50.613310701 + ], + [ + 10.6106134, + 50.613247801 + ], + [ + 10.6112402, + 50.613202101 + ], + [ + 10.6162079, + 50.613015001 + ], + [ + 10.6163707, + 50.613009701 + ], + [ + 10.6201752, + 50.612884601 + ], + [ + 10.6221237, + 50.612803401 + ], + [ + 10.6234964, + 50.612677901 + ], + [ + 10.6249389, + 50.612471201 + ], + [ + 10.6263639, + 50.612179701 + ], + [ + 10.6272481, + 50.611961901 + ], + [ + 10.6283939, + 50.611622301 + ], + [ + 10.6291559, + 50.611386101 + ], + [ + 10.6300672, + 50.611097001 + ], + [ + 10.6301342, + 50.611075701 + ], + [ + 10.6330587, + 50.610241901 + ], + [ + 10.6346275, + 50.609812801 + ], + [ + 10.6359489, + 50.609488101 + ], + [ + 10.6369621, + 50.609276001 + ], + [ + 10.6379356, + 50.609083401 + ], + [ + 10.6386697, + 50.608946401 + ], + [ + 10.6394492, + 50.608809001 + ], + [ + 10.6401152, + 50.608706701 + ], + [ + 10.6407786, + 50.608625801 + ], + [ + 10.6413762, + 50.608570001 + ], + [ + 10.6421096, + 50.608524801 + ], + [ + 10.6422549, + 50.608519101 + ], + [ + 10.6428547, + 50.608497001 + ], + [ + 10.6431197, + 50.608493401 + ], + [ + 10.6433596, + 50.608495801 + ], + [ + 10.6437644, + 50.608502001 + ], + [ + 10.6444384, + 50.608528401 + ], + [ + 10.6451373, + 50.608591901 + ], + [ + 10.6456727, + 50.608647501 + ], + [ + 10.6462425, + 50.608719001 + ], + [ + 10.6465543, + 50.608761101 + ], + [ + 10.6469626, + 50.608829901 + ], + [ + 10.6474614, + 50.608922201 + ], + [ + 10.647994, + 50.609029801 + ], + [ + 10.6487635, + 50.609222101 + ], + [ + 10.6494204, + 50.609409901 + ], + [ + 10.6499412, + 50.609588101 + ], + [ + 10.6508902, + 50.609945101 + ], + [ + 10.6515158, + 50.610219501 + ], + [ + 10.6520748, + 50.610489001 + ], + [ + 10.6528157, + 50.610901801 + ], + [ + 10.6530639, + 50.611056001 + ], + [ + 10.6534471, + 50.611301001 + ], + [ + 10.6538712, + 50.611585501 + ], + [ + 10.6539923, + 50.611676901 + ], + [ + 10.6547149, + 50.612270701 + ], + [ + 10.6550742, + 50.612593501 + ], + [ + 10.655139409, + 50.612662322 + ] + ] + } + }, + { + "identifier": "2026-016831--vi-bs.2026-04-01_07-00-00-000_016.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.42887211616306,10.396933879195087,50.24365934858889,10.216737419581797", + "point": "50.42887211616306,10.396933879195087", + "startLcPosition": "11", + "impact": { + "lower": "Lauertal", + "upper": "Rentwertshausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Suhl -> Schweinfurt", + "title": "A71 | Rentwertshausen - Lauertal", + "coordinate": { + "lat": 50.42887211616306, + "long": 10.396933879195087 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 15:45 Uhr", + "16.04.26 von 07:00 bis 15:45 Uhr", + "17.04.26 von 07:00 bis 15:45 Uhr", + "21.04.26 von 07:00 bis 15:45 Uhr", + "", + "A71: Suhl -> Schweinfurt, zwischen 4.6 km hinter AS Rentwertshausen und 0.4 km vor Lauertal", + "", + "L\u00e4nge: 27.13 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A71 von Rentwertshausen (AS) nach Lauertal (Rastplatz) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.396933879, + 50.428872116 + ], + [ + 10.3967086, + 50.428872801 + ], + [ + 10.3950754, + 50.428858401 + ], + [ + 10.3928075, + 50.428856801 + ], + [ + 10.3891285, + 50.428777401 + ], + [ + 10.3879964, + 50.428743001 + ], + [ + 10.3844232, + 50.428563501 + ], + [ + 10.380917, + 50.428314901 + ], + [ + 10.3772589, + 50.427970301 + ], + [ + 10.3741293, + 50.427600701 + ], + [ + 10.3703525, + 50.427089301 + ], + [ + 10.3672907, + 50.426601901 + ], + [ + 10.3667606, + 50.426511601 + ], + [ + 10.362808, + 50.425775501 + ], + [ + 10.3599049, + 50.425154601 + ], + [ + 10.358557, + 50.424840001 + ], + [ + 10.3563916, + 50.424295301 + ], + [ + 10.3560726, + 50.424212901 + ], + [ + 10.3547503, + 50.423846001 + ], + [ + 10.353799, + 50.423574601 + ], + [ + 10.3520102, + 50.423029201 + ], + [ + 10.3498955, + 50.422312601 + ], + [ + 10.3487713, + 50.421899701 + ], + [ + 10.3477533, + 50.421524101 + ], + [ + 10.345519, + 50.420602801 + ], + [ + 10.3438456, + 50.419848901 + ], + [ + 10.3430578, + 50.419483501 + ], + [ + 10.3406219, + 50.418310001 + ], + [ + 10.3390975, + 50.417455701 + ], + [ + 10.3376083, + 50.416557401 + ], + [ + 10.3364085, + 50.415764901 + ], + [ + 10.3356319, + 50.415246101 + ], + [ + 10.3346662, + 50.414583101 + ], + [ + 10.3338108, + 50.413973101 + ], + [ + 10.3327453, + 50.413152201 + ], + [ + 10.3322922, + 50.412796101 + ], + [ + 10.331257, + 50.411940101 + ], + [ + 10.3303529, + 50.411142901 + ], + [ + 10.329586, + 50.410436101 + ], + [ + 10.3292122, + 50.410067301 + ], + [ + 10.3285816, + 50.409446201 + ], + [ + 10.3280672, + 50.408933401 + ], + [ + 10.3274206, + 50.408256501 + ], + [ + 10.326789, + 50.407581501 + ], + [ + 10.3225544, + 50.402968201 + ], + [ + 10.3222821, + 50.402671601 + ], + [ + 10.3202981, + 50.400510001 + ], + [ + 10.3196034, + 50.399730401 + ], + [ + 10.3189085, + 50.398916801 + ], + [ + 10.3182301, + 50.398089101 + ], + [ + 10.3175827, + 50.397234701 + ], + [ + 10.3170902, + 50.396553701 + ], + [ + 10.3167089, + 50.395982201 + ], + [ + 10.3163123, + 50.395372201 + ], + [ + 10.3159744, + 50.394813001 + ], + [ + 10.3156454, + 50.394253901 + ], + [ + 10.3153744, + 50.393757201 + ], + [ + 10.3150621, + 50.393172101 + ], + [ + 10.314772, + 50.392594401 + ], + [ + 10.3145144, + 50.392048301 + ], + [ + 10.3142713, + 50.391499601 + ], + [ + 10.3140429, + 50.390948201 + ], + [ + 10.3138292, + 50.390394501 + ], + [ + 10.3136304, + 50.389838601 + ], + [ + 10.3133752, + 50.389051101 + ], + [ + 10.3132996, + 50.388797801 + ], + [ + 10.3132004, + 50.388447901 + ], + [ + 10.3130595, + 50.387909601 + ], + [ + 10.3128576, + 50.387059701 + ], + [ + 10.3127123, + 50.386332601 + ], + [ + 10.3125921, + 50.385640301 + ], + [ + 10.3125139, + 50.385046601 + ], + [ + 10.3124258, + 50.384280601 + ], + [ + 10.3123775, + 50.383656401 + ], + [ + 10.3123576, + 50.383069001 + ], + [ + 10.3123499, + 50.382220001 + ], + [ + 10.3123513, + 50.381788201 + ], + [ + 10.3123815, + 50.381148001 + ], + [ + 10.312415, + 50.380553801 + ], + [ + 10.3124751, + 50.379934201 + ], + [ + 10.3125457, + 50.379342801 + ], + [ + 10.3126173, + 50.378856601 + ], + [ + 10.312691, + 50.378394601 + ], + [ + 10.3127748, + 50.377915601 + ], + [ + 10.3128779, + 50.377443301 + ], + [ + 10.3131039, + 50.376489901 + ], + [ + 10.3133645, + 50.375551001 + ], + [ + 10.3135941, + 50.374801001 + ], + [ + 10.3138308, + 50.374070201 + ], + [ + 10.3141024, + 50.373325301 + ], + [ + 10.3143794, + 50.372583001 + ], + [ + 10.3149427, + 50.371087001 + ], + [ + 10.3152081, + 50.370359201 + ], + [ + 10.3154695, + 50.369611001 + ], + [ + 10.3157202, + 50.368850701 + ], + [ + 10.3159695, + 50.368076001 + ], + [ + 10.3161946, + 50.367329501 + ], + [ + 10.3163988, + 50.366564401 + ], + [ + 10.3166533, + 50.365479001 + ], + [ + 10.316745, + 50.365038901 + ], + [ + 10.3167713, + 50.364912701 + ], + [ + 10.316922, + 50.364069001 + ], + [ + 10.3170605, + 50.363189301 + ], + [ + 10.3171559, + 50.362393901 + ], + [ + 10.3172348, + 50.361569201 + ], + [ + 10.3172815, + 50.360702001 + ], + [ + 10.3173015, + 50.359844301 + ], + [ + 10.317302, + 50.359105301 + ], + [ + 10.3172886, + 50.358383001 + ], + [ + 10.3172511, + 50.357650701 + ], + [ + 10.3171909, + 50.356897801 + ], + [ + 10.3171217, + 50.356222201 + ], + [ + 10.3170436, + 50.355518001 + ], + [ + 10.316936, + 50.354810701 + ], + [ + 10.3168224, + 50.354113401 + ], + [ + 10.3163786, + 50.352131501 + ], + [ + 10.3163213, + 50.351893801 + ], + [ + 10.316103, + 50.351169701 + ], + [ + 10.3156853, + 50.349967401 + ], + [ + 10.3152359, + 50.348941701 + ], + [ + 10.3147771, + 50.348048901 + ], + [ + 10.3144222, + 50.347429701 + ], + [ + 10.3139982, + 50.346769401 + ], + [ + 10.3135973, + 50.346186701 + ], + [ + 10.3132635, + 50.345736901 + ], + [ + 10.3129271, + 50.345306201 + ], + [ + 10.3125509, + 50.344852701 + ], + [ + 10.3122352, + 50.344487101 + ], + [ + 10.3118881, + 50.344115101 + ], + [ + 10.3112161, + 50.343419401 + ], + [ + 10.3104873, + 50.342735701 + ], + [ + 10.3096553, + 50.342017201 + ], + [ + 10.3089362, + 50.341449301 + ], + [ + 10.3081984, + 50.340902801 + ], + [ + 10.3061751, + 50.339559701 + ], + [ + 10.3052422, + 50.339018101 + ], + [ + 10.3043611, + 50.338543001 + ], + [ + 10.3038675, + 50.338290101 + ], + [ + 10.3033647, + 50.338029001 + ], + [ + 10.3024391, + 50.337568601 + ], + [ + 10.3015273, + 50.337130401 + ], + [ + 10.3006086, + 50.336695701 + ], + [ + 10.2988431, + 50.335807901 + ], + [ + 10.2983218, + 50.335517801 + ], + [ + 10.297766, + 50.335201501 + ], + [ + 10.2969359, + 50.334703601 + ], + [ + 10.2962123, + 50.334226901 + ], + [ + 10.2954821, + 50.333706101 + ], + [ + 10.2950489, + 50.333378801 + ], + [ + 10.2946462, + 50.333056601 + ], + [ + 10.2942644, + 50.332749501 + ], + [ + 10.2938731, + 50.332409401 + ], + [ + 10.2932968, + 50.331873101 + ], + [ + 10.2929803, + 50.331565901 + ], + [ + 10.2926904, + 50.331270201 + ], + [ + 10.2921461, + 50.330671101 + ], + [ + 10.29178, + 50.330237101 + ], + [ + 10.2914539, + 50.329827001 + ], + [ + 10.2912703, + 50.329578301 + ], + [ + 10.2910063, + 50.329211501 + ], + [ + 10.2908704, + 50.329008401 + ], + [ + 10.2902992, + 50.328112101 + ], + [ + 10.2901027, + 50.327754601 + ], + [ + 10.2899395, + 50.327438301 + ], + [ + 10.289712, + 50.326966801 + ], + [ + 10.28952, + 50.326526401 + ], + [ + 10.2892911, + 50.325940501 + ], + [ + 10.2890922, + 50.325336901 + ], + [ + 10.2889495, + 50.324836601 + ], + [ + 10.2888368, + 50.324350101 + ], + [ + 10.2887167, + 50.323721601 + ], + [ + 10.2886347, + 50.323114401 + ], + [ + 10.2885274, + 50.321994801 + ], + [ + 10.2884915, + 50.321433501 + ], + [ + 10.2884497, + 50.320858301 + ], + [ + 10.2883621, + 50.319992701 + ], + [ + 10.2883023, + 50.319550701 + ], + [ + 10.2882224, + 50.319088101 + ], + [ + 10.2881082, + 50.318590101 + ], + [ + 10.2879782, + 50.318109301 + ], + [ + 10.2878064, + 50.317551501 + ], + [ + 10.2877089, + 50.317281401 + ], + [ + 10.2875835, + 50.316941501 + ], + [ + 10.2873754, + 50.316438901 + ], + [ + 10.2871527, + 50.315950401 + ], + [ + 10.2869045, + 50.315483601 + ], + [ + 10.2866435, + 50.315028101 + ], + [ + 10.2862251, + 50.314357501 + ], + [ + 10.2859259, + 50.313917401 + ], + [ + 10.2856304, + 50.313518601 + ], + [ + 10.2851926, + 50.312951101 + ], + [ + 10.2849253, + 50.312627501 + ], + [ + 10.2845992, + 50.312237101 + ], + [ + 10.2829435, + 50.310377501 + ], + [ + 10.2826244, + 50.309986201 + ], + [ + 10.2820224, + 50.309251001 + ], + [ + 10.2815204, + 50.308587701 + ], + [ + 10.281226, + 50.308175301 + ], + [ + 10.2809654, + 50.307780001 + ], + [ + 10.2807821, + 50.307457901 + ], + [ + 10.2801368, + 50.306268001 + ], + [ + 10.2798016, + 50.305510801 + ], + [ + 10.2794683, + 50.304706501 + ], + [ + 10.2788065, + 50.303104001 + ], + [ + 10.2784739, + 50.302392701 + ], + [ + 10.2781625, + 50.301760701 + ], + [ + 10.2777902, + 50.301099401 + ], + [ + 10.277419, + 50.300529201 + ], + [ + 10.2770591, + 50.300014901 + ], + [ + 10.2766474, + 50.299485701 + ], + [ + 10.2762822, + 50.299037101 + ], + [ + 10.2758649, + 50.298564201 + ], + [ + 10.2746245, + 50.297346001 + ], + [ + 10.2736536, + 50.296544501 + ], + [ + 10.2728043, + 50.295839301 + ], + [ + 10.271583, + 50.295035401 + ], + [ + 10.267499, + 50.292547501 + ], + [ + 10.2664979, + 50.291867201 + ], + [ + 10.2657713, + 50.291348301 + ], + [ + 10.2654237, + 50.291069401 + ], + [ + 10.2650939, + 50.290807501 + ], + [ + 10.2643054, + 50.290111801 + ], + [ + 10.2637773, + 50.289599701 + ], + [ + 10.2633205, + 50.289125301 + ], + [ + 10.2628085, + 50.288533801 + ], + [ + 10.262297, + 50.287929001 + ], + [ + 10.2614159, + 50.286593701 + ], + [ + 10.2608759, + 50.285537101 + ], + [ + 10.2592769, + 50.281792801 + ], + [ + 10.2584276, + 50.280302501 + ], + [ + 10.2574503, + 50.279046101 + ], + [ + 10.2562558, + 50.277770101 + ], + [ + 10.2551191, + 50.276809501 + ], + [ + 10.2538526, + 50.275853001 + ], + [ + 10.2522825, + 50.274834601 + ], + [ + 10.2506515, + 50.274000501 + ], + [ + 10.2487089, + 50.273152301 + ], + [ + 10.2470779, + 50.272575201 + ], + [ + 10.2448454, + 50.271913901 + ], + [ + 10.2429246, + 50.271491401 + ], + [ + 10.2412632, + 50.271179701 + ], + [ + 10.2410863, + 50.271148301 + ], + [ + 10.2371013, + 50.270414901 + ], + [ + 10.2357859, + 50.270147901 + ], + [ + 10.2345493, + 50.269847801 + ], + [ + 10.232475, + 50.269265601 + ], + [ + 10.2304938, + 50.268597801 + ], + [ + 10.2282508, + 50.267682001 + ], + [ + 10.2265958, + 50.266888801 + ], + [ + 10.2252292, + 50.266117801 + ], + [ + 10.2236266, + 50.265129301 + ], + [ + 10.2226194, + 50.264391501 + ], + [ + 10.2224044, + 50.264233701 + ], + [ + 10.2213693, + 50.263442101 + ], + [ + 10.2205553, + 50.262708301 + ], + [ + 10.2193942, + 50.261606601 + ], + [ + 10.2182448, + 50.260328301 + ], + [ + 10.2173823, + 50.259145401 + ], + [ + 10.2167817, + 50.258126401 + ], + [ + 10.216413, + 50.257458201 + ], + [ + 10.2162553, + 50.257148701 + ], + [ + 10.216105, + 50.256834501 + ], + [ + 10.2158185, + 50.256172601 + ], + [ + 10.2155576, + 50.255483301 + ], + [ + 10.2154267, + 50.255091401 + ], + [ + 10.2153039, + 50.254693201 + ], + [ + 10.2151858, + 50.254250601 + ], + [ + 10.2150241, + 50.253541501 + ], + [ + 10.2150051, + 50.253432601 + ], + [ + 10.2149895, + 50.253343301 + ], + [ + 10.2149862, + 50.253324301 + ], + [ + 10.2149023, + 50.252721201 + ], + [ + 10.2148385, + 50.252204701 + ], + [ + 10.2147993, + 50.251660401 + ], + [ + 10.2147651, + 50.250821601 + ], + [ + 10.2148053, + 50.250088501 + ], + [ + 10.2148723, + 50.249405801 + ], + [ + 10.2150213, + 50.248516101 + ], + [ + 10.2151907, + 50.247696901 + ], + [ + 10.2156331, + 50.246217501 + ], + [ + 10.2160612, + 50.245173201 + ], + [ + 10.2163838, + 50.244470401 + ], + [ + 10.2167009, + 50.243739901 + ], + [ + 10.21673742, + 50.243659349 + ] + ] + } + }, + { + "identifier": "2023-004696--vi-bs.2025-05-05_07-00-00-000.devi-zus.2024-03-04_06-00-00-000_023.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.49914316952295,10.442123222066023,50.52083755784619,10.462524880533783", + "point": "50.49914316952295,10.442123222066023", + "startLcPosition": "12", + "impact": { + "lower": "Meiningen-S\u00fcd", + "upper": "Th\u00fcringer Tor", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Schweinfurt -> Suhl", + "title": "A71 | Th\u00fcringer Tor - Meiningen-S\u00fcd", + "startTimestamp": "2025-05-05T07:00:00+02:00", + "coordinate": { + "lat": 50.49914316952295, + "long": 10.442123222066023 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.05.25 um 07:00 Uhr", + "Ende: 30.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.07.26)", + "", + "A71: Schweinfurt -> Suhl, zwischen 3.4 km hinter Th\u00fcringer Tor und 0.8 km vor AS Meiningen-S\u00fcd", + "", + "L\u00e4nge: 2.9 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A71_TIS Eichelberg km 151,3-154,51" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.442123222, + 50.49914317 + ], + [ + 10.4421583, + 50.499281601 + ], + [ + 10.4422923, + 50.499810301 + ], + [ + 10.4427966, + 50.501314101 + ], + [ + 10.4435291, + 50.503073301 + ], + [ + 10.4437335, + 50.503501901 + ], + [ + 10.444137, + 50.504347801 + ], + [ + 10.4442869, + 50.504633101 + ], + [ + 10.4447411, + 50.505457001 + ], + [ + 10.4452314, + 50.506272501 + ], + [ + 10.4457575, + 50.507079001 + ], + [ + 10.4463189, + 50.507875701 + ], + [ + 10.4463798, + 50.507967601 + ], + [ + 10.4464552, + 50.508059701 + ], + [ + 10.446661, + 50.508345201 + ], + [ + 10.4467832, + 50.508516401 + ], + [ + 10.4472676, + 50.509117001 + ], + [ + 10.4477651, + 50.509713301 + ], + [ + 10.4482755, + 50.510305101 + ], + [ + 10.4487988, + 50.510892301 + ], + [ + 10.4493348, + 50.511474901 + ], + [ + 10.4498311, + 50.511998301 + ], + [ + 10.4503377, + 50.512517601 + ], + [ + 10.4508545, + 50.513032901 + ], + [ + 10.4513815, + 50.513544001 + ], + [ + 10.4519185, + 50.514050801 + ], + [ + 10.4524655, + 50.514553301 + ], + [ + 10.4530224, + 50.515051401 + ], + [ + 10.453589, + 50.515545001 + ], + [ + 10.4540554, + 50.515941701 + ], + [ + 10.454528, + 50.516335301 + ], + [ + 10.455007, + 50.516725801 + ], + [ + 10.4558264, + 50.517325901 + ], + [ + 10.4562842, + 50.517661101 + ], + [ + 10.4575994, + 50.518577901 + ], + [ + 10.4581239, + 50.518897301 + ], + [ + 10.4586528, + 50.519219301 + ], + [ + 10.4591971, + 50.519514001 + ], + [ + 10.459779, + 50.519797101 + ], + [ + 10.4604712, + 50.520115201 + ], + [ + 10.4612367, + 50.520419201 + ], + [ + 10.4618075, + 50.520620801 + ], + [ + 10.4624059, + 50.520804601 + ], + [ + 10.462524881, + 50.520837558 + ] + ] + } + }, + { + "identifier": "2025-039482--vi-bs.2026-04-07_06-30-00-000.devi-zus.2025-08-25_06-30-00-000_001.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.574184462490344,10.480692865008482,50.61041163792386,10.632463387542657", + "point": "50.574184462490344,10.480692865008482", + "startLcPosition": "14", + "impact": { + "lower": "Dreieck Suhl", + "upper": "Meiningen-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schweinfurt -> Suhl", + "title": "A71 | Meiningen-S\u00fcd - Dreieck Suhl", + "coordinate": { + "lat": 50.574184462490344, + "long": 10.480692865008482 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 07.04.26 und dem 09.05.26 von 06:30 bis 19:00 Uhr.", + "", + "A71: Schweinfurt -> Suhl, zwischen 5.9 km hinter AS Meiningen-S\u00fcd und 1.0 km vor AD Dreieck Suhl", + "", + "L\u00e4nge: 13.11 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Fugeninstandsetzung A 71 km 132,0 - 144,9" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.480692865, + 50.574184462 + ], + [ + 10.4807087, + 50.574254201 + ], + [ + 10.480862, + 50.574798101 + ], + [ + 10.4810593, + 50.575408401 + ], + [ + 10.4812174, + 50.575834901 + ], + [ + 10.4815685, + 50.576640901 + ], + [ + 10.4818502, + 50.577201401 + ], + [ + 10.4820265, + 50.577524201 + ], + [ + 10.4822192, + 50.577855901 + ], + [ + 10.4825552, + 50.578396401 + ], + [ + 10.4828719, + 50.578843501 + ], + [ + 10.4831183, + 50.579182801 + ], + [ + 10.4833449, + 50.579478401 + ], + [ + 10.4834813, + 50.579665501 + ], + [ + 10.4836128, + 50.579835001 + ], + [ + 10.4839119, + 50.580208601 + ], + [ + 10.4842008, + 50.580548201 + ], + [ + 10.4849751, + 50.581427901 + ], + [ + 10.4850333, + 50.581489301 + ], + [ + 10.4859501, + 50.582456001 + ], + [ + 10.4871157, + 50.583578501 + ], + [ + 10.4873209, + 50.583773301 + ], + [ + 10.4876709, + 50.584126201 + ], + [ + 10.4880673, + 50.584545901 + ], + [ + 10.4884078, + 50.584948101 + ], + [ + 10.4887467, + 50.585369701 + ], + [ + 10.48891, + 50.585603201 + ], + [ + 10.4891143, + 50.585895301 + ], + [ + 10.4893409, + 50.586236201 + ], + [ + 10.4897003, + 50.586865401 + ], + [ + 10.4898406, + 50.587131101 + ], + [ + 10.4900983, + 50.587715701 + ], + [ + 10.4902445, + 50.588059601 + ], + [ + 10.4906609, + 50.589193601 + ], + [ + 10.4908187, + 50.589559101 + ], + [ + 10.4909653, + 50.589867601 + ], + [ + 10.4912354, + 50.590362601 + ], + [ + 10.4914612, + 50.590728601 + ], + [ + 10.4916564, + 50.591010001 + ], + [ + 10.4919688, + 50.591431201 + ], + [ + 10.4922402, + 50.591765801 + ], + [ + 10.4924448, + 50.591990801 + ], + [ + 10.4927112, + 50.592268001 + ], + [ + 10.4928669, + 50.592426801 + ], + [ + 10.493315, + 50.592849301 + ], + [ + 10.4937358, + 50.593210801 + ], + [ + 10.4941738, + 50.593549301 + ], + [ + 10.4945169, + 50.593792101 + ], + [ + 10.4947197, + 50.593935601 + ], + [ + 10.4950952, + 50.594187201 + ], + [ + 10.4961224, + 50.594795201 + ], + [ + 10.4967297, + 50.595119101 + ], + [ + 10.4976008, + 50.595535301 + ], + [ + 10.4986043, + 50.595973701 + ], + [ + 10.4998496, + 50.596437301 + ], + [ + 10.5010041, + 50.596798901 + ], + [ + 10.5023974, + 50.597181101 + ], + [ + 10.5041735, + 50.597552601 + ], + [ + 10.5055553, + 50.597771001 + ], + [ + 10.506819, + 50.597911201 + ], + [ + 10.5081086, + 50.598000301 + ], + [ + 10.5092225, + 50.598053401 + ], + [ + 10.5103917, + 50.598051901 + ], + [ + 10.5114409, + 50.598023401 + ], + [ + 10.5125637, + 50.597955501 + ], + [ + 10.5132388, + 50.597910401 + ], + [ + 10.5177941, + 50.597645101 + ], + [ + 10.5188707, + 50.597614801 + ], + [ + 10.5198668, + 50.597596401 + ], + [ + 10.5211468, + 50.597593901 + ], + [ + 10.5217704, + 50.597607501 + ], + [ + 10.5226335, + 50.597634101 + ], + [ + 10.5234966, + 50.597674801 + ], + [ + 10.5247644, + 50.597766501 + ], + [ + 10.525553, + 50.597850001 + ], + [ + 10.5263372, + 50.597947601 + ], + [ + 10.5267831, + 50.598011701 + ], + [ + 10.5276463, + 50.598151901 + ], + [ + 10.5290019, + 50.598443401 + ], + [ + 10.5301697, + 50.598749501 + ], + [ + 10.5314458, + 50.599144301 + ], + [ + 10.5321329, + 50.599378901 + ], + [ + 10.5334186, + 50.599899501 + ], + [ + 10.5336536, + 50.600010201 + ], + [ + 10.5342822, + 50.600306501 + ], + [ + 10.5349955, + 50.600667901 + ], + [ + 10.5352373, + 50.600794801 + ], + [ + 10.535363, + 50.600865201 + ], + [ + 10.5359718, + 50.601234801 + ], + [ + 10.5370115, + 50.601925701 + ], + [ + 10.5373877, + 50.602211301 + ], + [ + 10.5381089, + 50.602791401 + ], + [ + 10.5385278, + 50.603151201 + ], + [ + 10.5390888, + 50.603658701 + ], + [ + 10.5408108, + 50.605216201 + ], + [ + 10.542239, + 50.606338001 + ], + [ + 10.543332, + 50.607039601 + ], + [ + 10.5436222, + 50.607189901 + ], + [ + 10.5446082, + 50.607700401 + ], + [ + 10.5456612, + 50.608170701 + ], + [ + 10.5467756, + 50.608563801 + ], + [ + 10.5479125, + 50.608904401 + ], + [ + 10.5491969, + 50.609197001 + ], + [ + 10.5492427, + 50.609205101 + ], + [ + 10.5500871, + 50.609355401 + ], + [ + 10.5509268, + 50.609473201 + ], + [ + 10.5521579, + 50.609612401 + ], + [ + 10.5527034, + 50.609667601 + ], + [ + 10.5553141, + 50.609943001 + ], + [ + 10.5564381, + 50.610114801 + ], + [ + 10.5568752, + 50.610181601 + ], + [ + 10.5580826, + 50.610434701 + ], + [ + 10.5592261, + 50.610716901 + ], + [ + 10.5603094, + 50.611013601 + ], + [ + 10.5612382, + 50.611327501 + ], + [ + 10.562111, + 50.611652201 + ], + [ + 10.5626205, + 50.611855701 + ], + [ + 10.5631206, + 50.612062801 + ], + [ + 10.56392, + 50.612430201 + ], + [ + 10.564818, + 50.612875801 + ], + [ + 10.5662846, + 50.613639001 + ], + [ + 10.5669939, + 50.613974501 + ], + [ + 10.5681492, + 50.614472101 + ], + [ + 10.5687321, + 50.614688001 + ], + [ + 10.5691119, + 50.614828601 + ], + [ + 10.5705256, + 50.615249501 + ], + [ + 10.5715797, + 50.615512101 + ], + [ + 10.5727818, + 50.615749601 + ], + [ + 10.5742331, + 50.615944901 + ], + [ + 10.5750119, + 50.615998101 + ], + [ + 10.5758828, + 50.616057501 + ], + [ + 10.5769701, + 50.616083701 + ], + [ + 10.5781353, + 50.616061001 + ], + [ + 10.5804588, + 50.616016501 + ], + [ + 10.581648, + 50.616014301 + ], + [ + 10.5823622, + 50.616048001 + ], + [ + 10.5828044, + 50.616068901 + ], + [ + 10.5838441, + 50.616148801 + ], + [ + 10.5847578, + 50.616221101 + ], + [ + 10.5874811, + 50.616477201 + ], + [ + 10.5883209, + 50.616549301 + ], + [ + 10.5889934, + 50.616583201 + ], + [ + 10.5903779, + 50.616641001 + ], + [ + 10.5918703, + 50.616666501 + ], + [ + 10.5925566, + 50.616658201 + ], + [ + 10.5928673, + 50.616641101 + ], + [ + 10.5935252, + 50.616618601 + ], + [ + 10.5942602, + 50.616576601 + ], + [ + 10.5950319, + 50.616517901 + ], + [ + 10.595722, + 50.616450101 + ], + [ + 10.5960806, + 50.616409801 + ], + [ + 10.5965175, + 50.616360601 + ], + [ + 10.5972745, + 50.616260701 + ], + [ + 10.5980188, + 50.616139001 + ], + [ + 10.5987501, + 50.616009201 + ], + [ + 10.599564, + 50.615850801 + ], + [ + 10.6003485, + 50.615677901 + ], + [ + 10.6011589, + 50.615472001 + ], + [ + 10.6017791, + 50.615310501 + ], + [ + 10.6024757, + 50.615115501 + ], + [ + 10.6050004, + 50.614340601 + ], + [ + 10.6054208, + 50.614217401 + ], + [ + 10.6059718, + 50.614060601 + ], + [ + 10.6064027, + 50.613943701 + ], + [ + 10.6070314, + 50.613800101 + ], + [ + 10.6079113, + 50.613614801 + ], + [ + 10.6089169, + 50.613445901 + ], + [ + 10.6094158, + 50.613374001 + ], + [ + 10.6099874, + 50.613310701 + ], + [ + 10.6106134, + 50.613247801 + ], + [ + 10.6112402, + 50.613202101 + ], + [ + 10.6162079, + 50.613015001 + ], + [ + 10.6163707, + 50.613009701 + ], + [ + 10.6201752, + 50.612884601 + ], + [ + 10.6221237, + 50.612803401 + ], + [ + 10.6234964, + 50.612677901 + ], + [ + 10.6249389, + 50.612471201 + ], + [ + 10.6263639, + 50.612179701 + ], + [ + 10.6272481, + 50.611961901 + ], + [ + 10.6283939, + 50.611622301 + ], + [ + 10.6291559, + 50.611386101 + ], + [ + 10.6300672, + 50.611097001 + ], + [ + 10.6301342, + 50.611075701 + ], + [ + 10.632463388, + 50.610411638 + ] + ] + } + }, + { + "identifier": "2025-039482--vi-bs.2026-04-07_06-30-00-000.devi-zus.2025-08-25_06-30-00-000_001.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.574184462490344,10.480692865008482,50.61041163792386,10.632463387542657", + "point": "50.574184462490344,10.480692865008482", + "startLcPosition": "14", + "impact": { + "lower": "Dreieck Suhl", + "upper": "Meiningen-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schweinfurt -> Suhl", + "title": "A71 | Meiningen-S\u00fcd - Dreieck Suhl", + "coordinate": { + "lat": 50.574184462490344, + "long": 10.480692865008482 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 07.04.26 und dem 09.05.26 von 06:30 bis 19:00 Uhr.", + "", + "A71: Schweinfurt -> Suhl, zwischen 5.9 km hinter AS Meiningen-S\u00fcd und 1.0 km vor AD Dreieck Suhl", + "", + "L\u00e4nge: 13.11 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.25 m", + "", + "Fugeninstandsetzung A 71 km 132,0 - 144,9" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.480692865, + 50.574184462 + ], + [ + 10.4807087, + 50.574254201 + ], + [ + 10.480862, + 50.574798101 + ], + [ + 10.4810593, + 50.575408401 + ], + [ + 10.4812174, + 50.575834901 + ], + [ + 10.4815685, + 50.576640901 + ], + [ + 10.4818502, + 50.577201401 + ], + [ + 10.4820265, + 50.577524201 + ], + [ + 10.4822192, + 50.577855901 + ], + [ + 10.4825552, + 50.578396401 + ], + [ + 10.4828719, + 50.578843501 + ], + [ + 10.4831183, + 50.579182801 + ], + [ + 10.4833449, + 50.579478401 + ], + [ + 10.4834813, + 50.579665501 + ], + [ + 10.4836128, + 50.579835001 + ], + [ + 10.4839119, + 50.580208601 + ], + [ + 10.4842008, + 50.580548201 + ], + [ + 10.4849751, + 50.581427901 + ], + [ + 10.4850333, + 50.581489301 + ], + [ + 10.4859501, + 50.582456001 + ], + [ + 10.4871157, + 50.583578501 + ], + [ + 10.4873209, + 50.583773301 + ], + [ + 10.4876709, + 50.584126201 + ], + [ + 10.4880673, + 50.584545901 + ], + [ + 10.4884078, + 50.584948101 + ], + [ + 10.4887467, + 50.585369701 + ], + [ + 10.48891, + 50.585603201 + ], + [ + 10.4891143, + 50.585895301 + ], + [ + 10.4893409, + 50.586236201 + ], + [ + 10.4897003, + 50.586865401 + ], + [ + 10.4898406, + 50.587131101 + ], + [ + 10.4900983, + 50.587715701 + ], + [ + 10.4902445, + 50.588059601 + ], + [ + 10.4906609, + 50.589193601 + ], + [ + 10.4908187, + 50.589559101 + ], + [ + 10.4909653, + 50.589867601 + ], + [ + 10.4912354, + 50.590362601 + ], + [ + 10.4914612, + 50.590728601 + ], + [ + 10.4916564, + 50.591010001 + ], + [ + 10.4919688, + 50.591431201 + ], + [ + 10.4922402, + 50.591765801 + ], + [ + 10.4924448, + 50.591990801 + ], + [ + 10.4927112, + 50.592268001 + ], + [ + 10.4928669, + 50.592426801 + ], + [ + 10.493315, + 50.592849301 + ], + [ + 10.4937358, + 50.593210801 + ], + [ + 10.4941738, + 50.593549301 + ], + [ + 10.4945169, + 50.593792101 + ], + [ + 10.4947197, + 50.593935601 + ], + [ + 10.4950952, + 50.594187201 + ], + [ + 10.4961224, + 50.594795201 + ], + [ + 10.4967297, + 50.595119101 + ], + [ + 10.4976008, + 50.595535301 + ], + [ + 10.4986043, + 50.595973701 + ], + [ + 10.4998496, + 50.596437301 + ], + [ + 10.5010041, + 50.596798901 + ], + [ + 10.5023974, + 50.597181101 + ], + [ + 10.5041735, + 50.597552601 + ], + [ + 10.5055553, + 50.597771001 + ], + [ + 10.506819, + 50.597911201 + ], + [ + 10.5081086, + 50.598000301 + ], + [ + 10.5092225, + 50.598053401 + ], + [ + 10.5103917, + 50.598051901 + ], + [ + 10.5114409, + 50.598023401 + ], + [ + 10.5125637, + 50.597955501 + ], + [ + 10.5132388, + 50.597910401 + ], + [ + 10.5177941, + 50.597645101 + ], + [ + 10.5188707, + 50.597614801 + ], + [ + 10.5198668, + 50.597596401 + ], + [ + 10.5211468, + 50.597593901 + ], + [ + 10.5217704, + 50.597607501 + ], + [ + 10.5226335, + 50.597634101 + ], + [ + 10.5234966, + 50.597674801 + ], + [ + 10.5247644, + 50.597766501 + ], + [ + 10.525553, + 50.597850001 + ], + [ + 10.5263372, + 50.597947601 + ], + [ + 10.5267831, + 50.598011701 + ], + [ + 10.5276463, + 50.598151901 + ], + [ + 10.5290019, + 50.598443401 + ], + [ + 10.5301697, + 50.598749501 + ], + [ + 10.5314458, + 50.599144301 + ], + [ + 10.5321329, + 50.599378901 + ], + [ + 10.5334186, + 50.599899501 + ], + [ + 10.5336536, + 50.600010201 + ], + [ + 10.5342822, + 50.600306501 + ], + [ + 10.5349955, + 50.600667901 + ], + [ + 10.5352373, + 50.600794801 + ], + [ + 10.535363, + 50.600865201 + ], + [ + 10.5359718, + 50.601234801 + ], + [ + 10.5370115, + 50.601925701 + ], + [ + 10.5373877, + 50.602211301 + ], + [ + 10.5381089, + 50.602791401 + ], + [ + 10.5385278, + 50.603151201 + ], + [ + 10.5390888, + 50.603658701 + ], + [ + 10.5408108, + 50.605216201 + ], + [ + 10.542239, + 50.606338001 + ], + [ + 10.543332, + 50.607039601 + ], + [ + 10.5436222, + 50.607189901 + ], + [ + 10.5446082, + 50.607700401 + ], + [ + 10.5456612, + 50.608170701 + ], + [ + 10.5467756, + 50.608563801 + ], + [ + 10.5479125, + 50.608904401 + ], + [ + 10.5491969, + 50.609197001 + ], + [ + 10.5492427, + 50.609205101 + ], + [ + 10.5500871, + 50.609355401 + ], + [ + 10.5509268, + 50.609473201 + ], + [ + 10.5521579, + 50.609612401 + ], + [ + 10.5527034, + 50.609667601 + ], + [ + 10.5553141, + 50.609943001 + ], + [ + 10.5564381, + 50.610114801 + ], + [ + 10.5568752, + 50.610181601 + ], + [ + 10.5580826, + 50.610434701 + ], + [ + 10.5592261, + 50.610716901 + ], + [ + 10.5603094, + 50.611013601 + ], + [ + 10.5612382, + 50.611327501 + ], + [ + 10.562111, + 50.611652201 + ], + [ + 10.5626205, + 50.611855701 + ], + [ + 10.5631206, + 50.612062801 + ], + [ + 10.56392, + 50.612430201 + ], + [ + 10.564818, + 50.612875801 + ], + [ + 10.5662846, + 50.613639001 + ], + [ + 10.5669939, + 50.613974501 + ], + [ + 10.5681492, + 50.614472101 + ], + [ + 10.5687321, + 50.614688001 + ], + [ + 10.5691119, + 50.614828601 + ], + [ + 10.5705256, + 50.615249501 + ], + [ + 10.5715797, + 50.615512101 + ], + [ + 10.5727818, + 50.615749601 + ], + [ + 10.5742331, + 50.615944901 + ], + [ + 10.5750119, + 50.615998101 + ], + [ + 10.5758828, + 50.616057501 + ], + [ + 10.5769701, + 50.616083701 + ], + [ + 10.5781353, + 50.616061001 + ], + [ + 10.5804588, + 50.616016501 + ], + [ + 10.581648, + 50.616014301 + ], + [ + 10.5823622, + 50.616048001 + ], + [ + 10.5828044, + 50.616068901 + ], + [ + 10.5838441, + 50.616148801 + ], + [ + 10.5847578, + 50.616221101 + ], + [ + 10.5874811, + 50.616477201 + ], + [ + 10.5883209, + 50.616549301 + ], + [ + 10.5889934, + 50.616583201 + ], + [ + 10.5903779, + 50.616641001 + ], + [ + 10.5918703, + 50.616666501 + ], + [ + 10.5925566, + 50.616658201 + ], + [ + 10.5928673, + 50.616641101 + ], + [ + 10.5935252, + 50.616618601 + ], + [ + 10.5942602, + 50.616576601 + ], + [ + 10.5950319, + 50.616517901 + ], + [ + 10.595722, + 50.616450101 + ], + [ + 10.5960806, + 50.616409801 + ], + [ + 10.5965175, + 50.616360601 + ], + [ + 10.5972745, + 50.616260701 + ], + [ + 10.5980188, + 50.616139001 + ], + [ + 10.5987501, + 50.616009201 + ], + [ + 10.599564, + 50.615850801 + ], + [ + 10.6003485, + 50.615677901 + ], + [ + 10.6011589, + 50.615472001 + ], + [ + 10.6017791, + 50.615310501 + ], + [ + 10.6024757, + 50.615115501 + ], + [ + 10.6050004, + 50.614340601 + ], + [ + 10.6054208, + 50.614217401 + ], + [ + 10.6059718, + 50.614060601 + ], + [ + 10.6064027, + 50.613943701 + ], + [ + 10.6070314, + 50.613800101 + ], + [ + 10.6079113, + 50.613614801 + ], + [ + 10.6089169, + 50.613445901 + ], + [ + 10.6094158, + 50.613374001 + ], + [ + 10.6099874, + 50.613310701 + ], + [ + 10.6106134, + 50.613247801 + ], + [ + 10.6112402, + 50.613202101 + ], + [ + 10.6162079, + 50.613015001 + ], + [ + 10.6163707, + 50.613009701 + ], + [ + 10.6201752, + 50.612884601 + ], + [ + 10.6221237, + 50.612803401 + ], + [ + 10.6234964, + 50.612677901 + ], + [ + 10.6249389, + 50.612471201 + ], + [ + 10.6263639, + 50.612179701 + ], + [ + 10.6272481, + 50.611961901 + ], + [ + 10.6283939, + 50.611622301 + ], + [ + 10.6291559, + 50.611386101 + ], + [ + 10.6300672, + 50.611097001 + ], + [ + 10.6301342, + 50.611075701 + ], + [ + 10.632463388, + 50.610411638 + ] + ] + } + }, + { + "identifier": "2023-004696--vi-bs.2025-05-05_07-00-00-000.devi-zus.2024-03-04_06-00-00-000_023.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.52093164859487,10.462457291335511,50.49916232020804,10.441946888007765", + "point": "50.52093164859487,10.462457291335511", + "startLcPosition": "14", + "impact": { + "lower": "Th\u00fcringer Tor", + "upper": "Meiningen-S\u00fcd", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Suhl -> Schweinfurt", + "title": "A71 | Meiningen-S\u00fcd - Th\u00fcringer Tor", + "startTimestamp": "2025-05-05T07:00:00+02:00", + "coordinate": { + "lat": 50.52093164859487, + "long": 10.462457291335511 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.05.25 um 07:00 Uhr", + "Ende: 30.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.07.26)", + "", + "A71: Suhl -> Schweinfurt, zwischen 0.8 km hinter AS Meiningen-S\u00fcd und 3.4 km vor Th\u00fcringer Tor", + "", + "L\u00e4nge: 2.9 km | Maximale Durchfahrtsbreite: 3.35 m", + "", + "A71_TIS Eichelberg km 151,3-154,51" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.462457291, + 50.520931649 + ], + [ + 10.4621126, + 50.520823801 + ], + [ + 10.4615016, + 50.520633201 + ], + [ + 10.4611401, + 50.520494601 + ], + [ + 10.4603992, + 50.520202401 + ], + [ + 10.4598956, + 50.519991801 + ], + [ + 10.4594105, + 50.519748501 + ], + [ + 10.4591111, + 50.519596601 + ], + [ + 10.4585422, + 50.519288501 + ], + [ + 10.4579913, + 50.518990101 + ], + [ + 10.4574113, + 50.518676001 + ], + [ + 10.4566287, + 50.518214801 + ], + [ + 10.4558475, + 50.517688001 + ], + [ + 10.455547, + 50.517470501 + ], + [ + 10.4549127, + 50.517011401 + ], + [ + 10.4543723, + 50.516580601 + ], + [ + 10.4538406, + 50.516145501 + ], + [ + 10.4533177, + 50.515706001 + ], + [ + 10.4527379, + 50.515204701 + ], + [ + 10.4521695, + 50.514698101 + ], + [ + 10.4516127, + 50.514186301 + ], + [ + 10.4510677, + 50.513669501 + ], + [ + 10.4505344, + 50.513147601 + ], + [ + 10.450013, + 50.512621001 + ], + [ + 10.4495037, + 50.512089601 + ], + [ + 10.4490065, + 50.511553501 + ], + [ + 10.4485695, + 50.511067301 + ], + [ + 10.4481425, + 50.510577401 + ], + [ + 10.4477255, + 50.510084101 + ], + [ + 10.4473187, + 50.509587401 + ], + [ + 10.4469221, + 50.509087301 + ], + [ + 10.4465357, + 50.508584001 + ], + [ + 10.4462141, + 50.508132301 + ], + [ + 10.4460758, + 50.507936901 + ], + [ + 10.4455432, + 50.507136201 + ], + [ + 10.4450346, + 50.506329101 + ], + [ + 10.4445503, + 50.505516001 + ], + [ + 10.4440903, + 50.504697201 + ], + [ + 10.4435544, + 50.503529601 + ], + [ + 10.4433724, + 50.503153001 + ], + [ + 10.4429924, + 50.502236401 + ], + [ + 10.44264, + 50.501320201 + ], + [ + 10.4421253, + 50.499795701 + ], + [ + 10.4419854, + 50.499299101 + ], + [ + 10.441946888, + 50.49916232 + ] + ] + } + }, + { + "identifier": "2023-002185--vi-bs.2024-01-01_00-00-00-000.devi-zus.2022-01-01_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.58642162294038,10.48944681224482,50.597618058936106,10.52211295427149", + "point": "50.58642162294038,10.48944681224482", + "startLcPosition": "15", + "impact": { + "lower": "Dolmar", + "upper": "Meiningen-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Schweinfurt -> Suhl", + "title": "A71 | Meiningen-Nord - Dolmar", + "startTimestamp": "2024-01-01T00:00:00+01:00", + "coordinate": { + "lat": 50.58642162294038, + "long": 10.48944681224482 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.01.24 um 00:00 Uhr", + "Ende: 08.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.12.26)", + "", + "A71: Schweinfurt -> Suhl, zwischen 1.1 km hinter AS Meiningen-Nord und 0.8 km vor Dolmar", + "", + "L\u00e4nge: 2.99 km | Maximale Durchfahrtsbreite: 7 m", + "", + "71 ZM_2023-002185_bRF_km 139,5-145,0_Akute Verkehrsgef\u00e4hrdung aufgrund Steinschlag" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.489446812, + 50.586421623 + ], + [ + 10.4897003, + 50.586865401 + ], + [ + 10.4898406, + 50.587131101 + ], + [ + 10.4900983, + 50.587715701 + ], + [ + 10.4902445, + 50.588059601 + ], + [ + 10.4906609, + 50.589193601 + ], + [ + 10.4908187, + 50.589559101 + ], + [ + 10.4909653, + 50.589867601 + ], + [ + 10.4912354, + 50.590362601 + ], + [ + 10.4914612, + 50.590728601 + ], + [ + 10.4916564, + 50.591010001 + ], + [ + 10.4919688, + 50.591431201 + ], + [ + 10.4922402, + 50.591765801 + ], + [ + 10.4924448, + 50.591990801 + ], + [ + 10.4927112, + 50.592268001 + ], + [ + 10.4928669, + 50.592426801 + ], + [ + 10.493315, + 50.592849301 + ], + [ + 10.4937358, + 50.593210801 + ], + [ + 10.4941738, + 50.593549301 + ], + [ + 10.4945169, + 50.593792101 + ], + [ + 10.4947197, + 50.593935601 + ], + [ + 10.4950952, + 50.594187201 + ], + [ + 10.4961224, + 50.594795201 + ], + [ + 10.4967297, + 50.595119101 + ], + [ + 10.4976008, + 50.595535301 + ], + [ + 10.4986043, + 50.595973701 + ], + [ + 10.4998496, + 50.596437301 + ], + [ + 10.5010041, + 50.596798901 + ], + [ + 10.5023974, + 50.597181101 + ], + [ + 10.5041735, + 50.597552601 + ], + [ + 10.5055553, + 50.597771001 + ], + [ + 10.506819, + 50.597911201 + ], + [ + 10.5081086, + 50.598000301 + ], + [ + 10.5092225, + 50.598053401 + ], + [ + 10.5103917, + 50.598051901 + ], + [ + 10.5114409, + 50.598023401 + ], + [ + 10.5125637, + 50.597955501 + ], + [ + 10.5132388, + 50.597910401 + ], + [ + 10.5177941, + 50.597645101 + ], + [ + 10.5188707, + 50.597614801 + ], + [ + 10.5198668, + 50.597596401 + ], + [ + 10.5211468, + 50.597593901 + ], + [ + 10.5217704, + 50.597607501 + ], + [ + 10.522112954, + 50.597618059 + ] + ] + } + }, + { + "identifier": "2023-002185--vi-bs.2024-01-01_00-00-00-000.devi-zus.2022-01-01_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.59799587034696,10.513618053763073,50.58177374019116,10.485126855192352", + "point": "50.59799587034696,10.513618053763073", + "startLcPosition": "16", + "impact": { + "lower": "Meiningen-Nord", + "upper": "Dolmar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Suhl -> Schweinfurt", + "title": "A71 | Dolmar - Meiningen-Nord", + "startTimestamp": "2024-01-01T00:00:00+01:00", + "coordinate": { + "lat": 50.59799587034696, + "long": 10.513618053763073 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.01.24 um 00:00 Uhr", + "Ende: 08.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 08.12.26)", + "", + "A71: Suhl -> Schweinfurt, zwischen 1.4 km hinter Dolmar und 0.5 km vor AS Meiningen-Nord", + "", + "L\u00e4nge: 3.01 km | Maximale Durchfahrtsbreite: 7 m", + "", + "71 ZM_2023-002185_bRF_km 139,5-145,0_Akute Verkehrsgef\u00e4hrdung aufgrund Steinschlag" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.513618054, + 50.59799587 + ], + [ + 10.5132823, + 50.598015701 + ], + [ + 10.512596, + 50.598057201 + ], + [ + 10.5125554, + 50.598059701 + ], + [ + 10.5114353, + 50.598129601 + ], + [ + 10.5104181, + 50.598151001 + ], + [ + 10.5092447, + 50.598153701 + ], + [ + 10.508062, + 50.598101301 + ], + [ + 10.506784, + 50.598019701 + ], + [ + 10.5055136, + 50.597869701 + ], + [ + 10.5041334, + 50.597644601 + ], + [ + 10.5022805, + 50.597258801 + ], + [ + 10.5012064, + 50.596970601 + ], + [ + 10.4997653, + 50.596516801 + ], + [ + 10.4991595, + 50.596295101 + ], + [ + 10.4985279, + 50.596057301 + ], + [ + 10.4980731, + 50.595863201 + ], + [ + 10.4974772, + 50.595598201 + ], + [ + 10.4966259, + 50.595189801 + ], + [ + 10.4960157, + 50.594868701 + ], + [ + 10.4949711, + 50.594263701 + ], + [ + 10.4947832, + 50.594127301 + ], + [ + 10.4944014, + 50.593858701 + ], + [ + 10.4940559, + 50.593624401 + ], + [ + 10.4936307, + 50.593288601 + ], + [ + 10.4931458, + 50.592874601 + ], + [ + 10.4927776, + 50.592529301 + ], + [ + 10.4924285, + 50.592170001 + ], + [ + 10.4921191, + 50.591827401 + ], + [ + 10.4918188, + 50.591460401 + ], + [ + 10.4915012, + 50.591027001 + ], + [ + 10.4912165, + 50.590605601 + ], + [ + 10.4909708, + 50.590186101 + ], + [ + 10.4907998, + 50.589855101 + ], + [ + 10.4906663, + 50.589574001 + ], + [ + 10.4905063, + 50.589188001 + ], + [ + 10.4900913, + 50.588065801 + ], + [ + 10.4899388, + 50.587710801 + ], + [ + 10.4896494, + 50.587079701 + ], + [ + 10.4895603, + 50.586908901 + ], + [ + 10.4891883, + 50.586266301 + ], + [ + 10.488778, + 50.585644701 + ], + [ + 10.4885587, + 50.585347501 + ], + [ + 10.487923, + 50.584581201 + ], + [ + 10.487519, + 50.584155201 + ], + [ + 10.4869878, + 50.583629301 + ], + [ + 10.4858205, + 50.582507101 + ], + [ + 10.485126855, + 50.58177374 + ] + ] + } + }, + { + "identifier": "2025-039482--vi-bs.2026-04-07_06-30-00-000.devi-zus.2025-08-25_06-30-00-000_001.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.610480066300845,10.632511335919972,50.574190415855284,10.480528199908376", + "point": "50.610480066300845,10.632511335919972", + "startLcPosition": "17", + "impact": { + "lower": "Meiningen-S\u00fcd", + "upper": "Dreieck Suhl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Suhl -> Schweinfurt", + "title": "A71 | Dreieck Suhl - Meiningen-S\u00fcd", + "coordinate": { + "lat": 50.610480066300845, + "long": 10.632511335919972 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag und Mittwoch zwischen dem 11.05.26 und dem 13.05.26 von 06:30 bis 19:00 Uhr.", + "", + "A71: Suhl -> Schweinfurt, zwischen 0.9 km hinter AD Dreieck Suhl und 5.9 km vor AS Meiningen-S\u00fcd", + "", + "L\u00e4nge: 13.11 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Fugeninstandsetzung A 71 km 132,0 - 144,9" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.632511336, + 50.610480066 + ], + [ + 10.6301848, + 50.611138901 + ], + [ + 10.6291959, + 50.611457901 + ], + [ + 10.6284721, + 50.611698001 + ], + [ + 10.627304, + 50.612053001 + ], + [ + 10.6264321, + 50.612277401 + ], + [ + 10.6250173, + 50.612575001 + ], + [ + 10.6235366, + 50.612804601 + ], + [ + 10.62213, + 50.612940301 + ], + [ + 10.620197, + 50.613018601 + ], + [ + 10.6164017, + 50.613135001 + ], + [ + 10.6162815, + 50.613138701 + ], + [ + 10.6112326, + 50.613310901 + ], + [ + 10.6106458, + 50.613345401 + ], + [ + 10.6100141, + 50.613402101 + ], + [ + 10.6094407, + 50.613471001 + ], + [ + 10.6089299, + 50.613538301 + ], + [ + 10.6079546, + 50.613708501 + ], + [ + 10.6070992, + 50.613888101 + ], + [ + 10.6064573, + 50.614037301 + ], + [ + 10.6060251, + 50.614150501 + ], + [ + 10.6054746, + 50.614308101 + ], + [ + 10.6050553, + 50.614430401 + ], + [ + 10.6025353, + 50.615203301 + ], + [ + 10.602021, + 50.615348401 + ], + [ + 10.601835, + 50.615400901 + ], + [ + 10.6012068, + 50.615567501 + ], + [ + 10.600417, + 50.615764301 + ], + [ + 10.5996053, + 50.615944301 + ], + [ + 10.5987844, + 50.616105601 + ], + [ + 10.5980548, + 50.616235801 + ], + [ + 10.5972966, + 50.616355201 + ], + [ + 10.59654, + 50.616455901 + ], + [ + 10.59612, + 50.616504601 + ], + [ + 10.595747, + 50.616547801 + ], + [ + 10.5950437, + 50.616614601 + ], + [ + 10.5942742, + 50.616671601 + ], + [ + 10.5935231, + 50.616716101 + ], + [ + 10.5928686, + 50.616741101 + ], + [ + 10.5925605, + 50.616753301 + ], + [ + 10.5918733, + 50.616766001 + ], + [ + 10.5903698, + 50.616747201 + ], + [ + 10.5889695, + 50.616685701 + ], + [ + 10.5882859, + 50.616640801 + ], + [ + 10.5874748, + 50.616581401 + ], + [ + 10.5847379, + 50.616322201 + ], + [ + 10.582824, + 50.616162001 + ], + [ + 10.5823714, + 50.616140401 + ], + [ + 10.5816512, + 50.616106101 + ], + [ + 10.5809311, + 50.616105601 + ], + [ + 10.5802797, + 50.616114201 + ], + [ + 10.5780839, + 50.616171301 + ], + [ + 10.5769135, + 50.616197001 + ], + [ + 10.575554, + 50.616149501 + ], + [ + 10.5750139, + 50.616108901 + ], + [ + 10.5741941, + 50.616047201 + ], + [ + 10.5727574, + 50.615845701 + ], + [ + 10.571508, + 50.615609101 + ], + [ + 10.5704411, + 50.615355801 + ], + [ + 10.5690532, + 50.614932101 + ], + [ + 10.5686617, + 50.614787801 + ], + [ + 10.5679714, + 50.614533401 + ], + [ + 10.5668807, + 50.614045401 + ], + [ + 10.5661388, + 50.613688001 + ], + [ + 10.5646032, + 50.612904401 + ], + [ + 10.563825, + 50.612512101 + ], + [ + 10.5630195, + 50.612145901 + ], + [ + 10.5625429, + 50.611940301 + ], + [ + 10.5620213, + 50.611737101 + ], + [ + 10.5611604, + 50.611410901 + ], + [ + 10.5602393, + 50.611108001 + ], + [ + 10.559187, + 50.610813001 + ], + [ + 10.5580435, + 50.610533901 + ], + [ + 10.5568462, + 50.610282701 + ], + [ + 10.5563993, + 50.610213101 + ], + [ + 10.5553118, + 50.610043901 + ], + [ + 10.5526797, + 50.609769101 + ], + [ + 10.5521347, + 50.609711601 + ], + [ + 10.5507898, + 50.609561701 + ], + [ + 10.5491998, + 50.609306201 + ], + [ + 10.549138, + 50.609296701 + ], + [ + 10.5478681, + 50.608994401 + ], + [ + 10.5466959, + 50.608651501 + ], + [ + 10.5455074, + 50.608223201 + ], + [ + 10.5444852, + 50.607773801 + ], + [ + 10.543978, + 50.607529901 + ], + [ + 10.5435015, + 50.607268001 + ], + [ + 10.5431812, + 50.607083801 + ], + [ + 10.5421189, + 50.606396701 + ], + [ + 10.5406871, + 50.605277501 + ], + [ + 10.5389303, + 50.603703701 + ], + [ + 10.5383756, + 50.603206801 + ], + [ + 10.5379755, + 50.602845001 + ], + [ + 10.5372515, + 50.602262401 + ], + [ + 10.5366994, + 50.601843801 + ], + [ + 10.5355212, + 50.601108801 + ], + [ + 10.5351614, + 50.600889301 + ], + [ + 10.5348097, + 50.600700801 + ], + [ + 10.5341806, + 50.600373401 + ], + [ + 10.5335741, + 50.600093301 + ], + [ + 10.5332907, + 50.599962401 + ], + [ + 10.5320885, + 50.599475001 + ], + [ + 10.5316779, + 50.599342401 + ], + [ + 10.5310138, + 50.599128801 + ], + [ + 10.5301725, + 50.598856801 + ], + [ + 10.5289351, + 50.598535701 + ], + [ + 10.5276041, + 50.598258701 + ], + [ + 10.5267639, + 50.598119801 + ], + [ + 10.5262966, + 50.598047201 + ], + [ + 10.5255053, + 50.597958201 + ], + [ + 10.5247141, + 50.597867801 + ], + [ + 10.5234729, + 50.597770701 + ], + [ + 10.5226099, + 50.597729301 + ], + [ + 10.5217468, + 50.597699101 + ], + [ + 10.5211499, + 50.597689501 + ], + [ + 10.5198577, + 50.597694501 + ], + [ + 10.5178032, + 50.597748601 + ], + [ + 10.5132823, + 50.598015701 + ], + [ + 10.512596, + 50.598057201 + ], + [ + 10.5125554, + 50.598059701 + ], + [ + 10.5114353, + 50.598129601 + ], + [ + 10.5104181, + 50.598151001 + ], + [ + 10.5092447, + 50.598153701 + ], + [ + 10.508062, + 50.598101301 + ], + [ + 10.506784, + 50.598019701 + ], + [ + 10.5055136, + 50.597869701 + ], + [ + 10.5041334, + 50.597644601 + ], + [ + 10.5022805, + 50.597258801 + ], + [ + 10.5012064, + 50.596970601 + ], + [ + 10.4997653, + 50.596516801 + ], + [ + 10.4991595, + 50.596295101 + ], + [ + 10.4985279, + 50.596057301 + ], + [ + 10.4980731, + 50.595863201 + ], + [ + 10.4974772, + 50.595598201 + ], + [ + 10.4966259, + 50.595189801 + ], + [ + 10.4960157, + 50.594868701 + ], + [ + 10.4949711, + 50.594263701 + ], + [ + 10.4947832, + 50.594127301 + ], + [ + 10.4944014, + 50.593858701 + ], + [ + 10.4940559, + 50.593624401 + ], + [ + 10.4936307, + 50.593288601 + ], + [ + 10.4931458, + 50.592874601 + ], + [ + 10.4927776, + 50.592529301 + ], + [ + 10.4924285, + 50.592170001 + ], + [ + 10.4921191, + 50.591827401 + ], + [ + 10.4918188, + 50.591460401 + ], + [ + 10.4915012, + 50.591027001 + ], + [ + 10.4912165, + 50.590605601 + ], + [ + 10.4909708, + 50.590186101 + ], + [ + 10.4907998, + 50.589855101 + ], + [ + 10.4906663, + 50.589574001 + ], + [ + 10.4905063, + 50.589188001 + ], + [ + 10.4900913, + 50.588065801 + ], + [ + 10.4899388, + 50.587710801 + ], + [ + 10.4896494, + 50.587079701 + ], + [ + 10.4895603, + 50.586908901 + ], + [ + 10.4891883, + 50.586266301 + ], + [ + 10.488778, + 50.585644701 + ], + [ + 10.4885587, + 50.585347501 + ], + [ + 10.487923, + 50.584581201 + ], + [ + 10.487519, + 50.584155201 + ], + [ + 10.4869878, + 50.583629301 + ], + [ + 10.4858205, + 50.582507101 + ], + [ + 10.4849159, + 50.581550701 + ], + [ + 10.4845316, + 50.581124901 + ], + [ + 10.4840479, + 50.580568701 + ], + [ + 10.4834814, + 50.579880701 + ], + [ + 10.4829642, + 50.579222801 + ], + [ + 10.4828308, + 50.579036701 + ], + [ + 10.4827068, + 50.578856601 + ], + [ + 10.482391, + 50.578387801 + ], + [ + 10.4820761, + 50.577889701 + ], + [ + 10.481885, + 50.577562201 + ], + [ + 10.4817001, + 50.577226901 + ], + [ + 10.4816461, + 50.577119101 + ], + [ + 10.4814101, + 50.576647701 + ], + [ + 10.4811809, + 50.576168801 + ], + [ + 10.4808379, + 50.575229501 + ], + [ + 10.4807197, + 50.574832001 + ], + [ + 10.4805989, + 50.574439601 + ], + [ + 10.480529, + 50.574194001 + ], + [ + 10.4805282, + 50.574190416 + ] + ] + } + }, + { + "identifier": "2025-039482--vi-bs.2026-04-07_06-30-00-000.devi-zus.2025-08-25_06-30-00-000_001.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.610480066300845,10.632511335919972,50.574190415855284,10.480528199908376", + "point": "50.610480066300845,10.632511335919972", + "startLcPosition": "17", + "impact": { + "lower": "Meiningen-S\u00fcd", + "upper": "Dreieck Suhl", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Suhl -> Schweinfurt", + "title": "A71 | Dreieck Suhl - Meiningen-S\u00fcd", + "coordinate": { + "lat": 50.610480066300845, + "long": 10.632511335919972 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag und Mittwoch zwischen dem 11.05.26 und dem 13.05.26 von 06:30 bis 19:00 Uhr.", + "", + "A71: Suhl -> Schweinfurt, zwischen 0.9 km hinter AD Dreieck Suhl und 5.9 km vor AS Meiningen-S\u00fcd", + "", + "L\u00e4nge: 13.11 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "Fugeninstandsetzung A 71 km 132,0 - 144,9" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.632511336, + 50.610480066 + ], + [ + 10.6301848, + 50.611138901 + ], + [ + 10.6291959, + 50.611457901 + ], + [ + 10.6284721, + 50.611698001 + ], + [ + 10.627304, + 50.612053001 + ], + [ + 10.6264321, + 50.612277401 + ], + [ + 10.6250173, + 50.612575001 + ], + [ + 10.6235366, + 50.612804601 + ], + [ + 10.62213, + 50.612940301 + ], + [ + 10.620197, + 50.613018601 + ], + [ + 10.6164017, + 50.613135001 + ], + [ + 10.6162815, + 50.613138701 + ], + [ + 10.6112326, + 50.613310901 + ], + [ + 10.6106458, + 50.613345401 + ], + [ + 10.6100141, + 50.613402101 + ], + [ + 10.6094407, + 50.613471001 + ], + [ + 10.6089299, + 50.613538301 + ], + [ + 10.6079546, + 50.613708501 + ], + [ + 10.6070992, + 50.613888101 + ], + [ + 10.6064573, + 50.614037301 + ], + [ + 10.6060251, + 50.614150501 + ], + [ + 10.6054746, + 50.614308101 + ], + [ + 10.6050553, + 50.614430401 + ], + [ + 10.6025353, + 50.615203301 + ], + [ + 10.602021, + 50.615348401 + ], + [ + 10.601835, + 50.615400901 + ], + [ + 10.6012068, + 50.615567501 + ], + [ + 10.600417, + 50.615764301 + ], + [ + 10.5996053, + 50.615944301 + ], + [ + 10.5987844, + 50.616105601 + ], + [ + 10.5980548, + 50.616235801 + ], + [ + 10.5972966, + 50.616355201 + ], + [ + 10.59654, + 50.616455901 + ], + [ + 10.59612, + 50.616504601 + ], + [ + 10.595747, + 50.616547801 + ], + [ + 10.5950437, + 50.616614601 + ], + [ + 10.5942742, + 50.616671601 + ], + [ + 10.5935231, + 50.616716101 + ], + [ + 10.5928686, + 50.616741101 + ], + [ + 10.5925605, + 50.616753301 + ], + [ + 10.5918733, + 50.616766001 + ], + [ + 10.5903698, + 50.616747201 + ], + [ + 10.5889695, + 50.616685701 + ], + [ + 10.5882859, + 50.616640801 + ], + [ + 10.5874748, + 50.616581401 + ], + [ + 10.5847379, + 50.616322201 + ], + [ + 10.582824, + 50.616162001 + ], + [ + 10.5823714, + 50.616140401 + ], + [ + 10.5816512, + 50.616106101 + ], + [ + 10.5809311, + 50.616105601 + ], + [ + 10.5802797, + 50.616114201 + ], + [ + 10.5780839, + 50.616171301 + ], + [ + 10.5769135, + 50.616197001 + ], + [ + 10.575554, + 50.616149501 + ], + [ + 10.5750139, + 50.616108901 + ], + [ + 10.5741941, + 50.616047201 + ], + [ + 10.5727574, + 50.615845701 + ], + [ + 10.571508, + 50.615609101 + ], + [ + 10.5704411, + 50.615355801 + ], + [ + 10.5690532, + 50.614932101 + ], + [ + 10.5686617, + 50.614787801 + ], + [ + 10.5679714, + 50.614533401 + ], + [ + 10.5668807, + 50.614045401 + ], + [ + 10.5661388, + 50.613688001 + ], + [ + 10.5646032, + 50.612904401 + ], + [ + 10.563825, + 50.612512101 + ], + [ + 10.5630195, + 50.612145901 + ], + [ + 10.5625429, + 50.611940301 + ], + [ + 10.5620213, + 50.611737101 + ], + [ + 10.5611604, + 50.611410901 + ], + [ + 10.5602393, + 50.611108001 + ], + [ + 10.559187, + 50.610813001 + ], + [ + 10.5580435, + 50.610533901 + ], + [ + 10.5568462, + 50.610282701 + ], + [ + 10.5563993, + 50.610213101 + ], + [ + 10.5553118, + 50.610043901 + ], + [ + 10.5526797, + 50.609769101 + ], + [ + 10.5521347, + 50.609711601 + ], + [ + 10.5507898, + 50.609561701 + ], + [ + 10.5491998, + 50.609306201 + ], + [ + 10.549138, + 50.609296701 + ], + [ + 10.5478681, + 50.608994401 + ], + [ + 10.5466959, + 50.608651501 + ], + [ + 10.5455074, + 50.608223201 + ], + [ + 10.5444852, + 50.607773801 + ], + [ + 10.543978, + 50.607529901 + ], + [ + 10.5435015, + 50.607268001 + ], + [ + 10.5431812, + 50.607083801 + ], + [ + 10.5421189, + 50.606396701 + ], + [ + 10.5406871, + 50.605277501 + ], + [ + 10.5389303, + 50.603703701 + ], + [ + 10.5383756, + 50.603206801 + ], + [ + 10.5379755, + 50.602845001 + ], + [ + 10.5372515, + 50.602262401 + ], + [ + 10.5366994, + 50.601843801 + ], + [ + 10.5355212, + 50.601108801 + ], + [ + 10.5351614, + 50.600889301 + ], + [ + 10.5348097, + 50.600700801 + ], + [ + 10.5341806, + 50.600373401 + ], + [ + 10.5335741, + 50.600093301 + ], + [ + 10.5332907, + 50.599962401 + ], + [ + 10.5320885, + 50.599475001 + ], + [ + 10.5316779, + 50.599342401 + ], + [ + 10.5310138, + 50.599128801 + ], + [ + 10.5301725, + 50.598856801 + ], + [ + 10.5289351, + 50.598535701 + ], + [ + 10.5276041, + 50.598258701 + ], + [ + 10.5267639, + 50.598119801 + ], + [ + 10.5262966, + 50.598047201 + ], + [ + 10.5255053, + 50.597958201 + ], + [ + 10.5247141, + 50.597867801 + ], + [ + 10.5234729, + 50.597770701 + ], + [ + 10.5226099, + 50.597729301 + ], + [ + 10.5217468, + 50.597699101 + ], + [ + 10.5211499, + 50.597689501 + ], + [ + 10.5198577, + 50.597694501 + ], + [ + 10.5178032, + 50.597748601 + ], + [ + 10.5132823, + 50.598015701 + ], + [ + 10.512596, + 50.598057201 + ], + [ + 10.5125554, + 50.598059701 + ], + [ + 10.5114353, + 50.598129601 + ], + [ + 10.5104181, + 50.598151001 + ], + [ + 10.5092447, + 50.598153701 + ], + [ + 10.508062, + 50.598101301 + ], + [ + 10.506784, + 50.598019701 + ], + [ + 10.5055136, + 50.597869701 + ], + [ + 10.5041334, + 50.597644601 + ], + [ + 10.5022805, + 50.597258801 + ], + [ + 10.5012064, + 50.596970601 + ], + [ + 10.4997653, + 50.596516801 + ], + [ + 10.4991595, + 50.596295101 + ], + [ + 10.4985279, + 50.596057301 + ], + [ + 10.4980731, + 50.595863201 + ], + [ + 10.4974772, + 50.595598201 + ], + [ + 10.4966259, + 50.595189801 + ], + [ + 10.4960157, + 50.594868701 + ], + [ + 10.4949711, + 50.594263701 + ], + [ + 10.4947832, + 50.594127301 + ], + [ + 10.4944014, + 50.593858701 + ], + [ + 10.4940559, + 50.593624401 + ], + [ + 10.4936307, + 50.593288601 + ], + [ + 10.4931458, + 50.592874601 + ], + [ + 10.4927776, + 50.592529301 + ], + [ + 10.4924285, + 50.592170001 + ], + [ + 10.4921191, + 50.591827401 + ], + [ + 10.4918188, + 50.591460401 + ], + [ + 10.4915012, + 50.591027001 + ], + [ + 10.4912165, + 50.590605601 + ], + [ + 10.4909708, + 50.590186101 + ], + [ + 10.4907998, + 50.589855101 + ], + [ + 10.4906663, + 50.589574001 + ], + [ + 10.4905063, + 50.589188001 + ], + [ + 10.4900913, + 50.588065801 + ], + [ + 10.4899388, + 50.587710801 + ], + [ + 10.4896494, + 50.587079701 + ], + [ + 10.4895603, + 50.586908901 + ], + [ + 10.4891883, + 50.586266301 + ], + [ + 10.488778, + 50.585644701 + ], + [ + 10.4885587, + 50.585347501 + ], + [ + 10.487923, + 50.584581201 + ], + [ + 10.487519, + 50.584155201 + ], + [ + 10.4869878, + 50.583629301 + ], + [ + 10.4858205, + 50.582507101 + ], + [ + 10.4849159, + 50.581550701 + ], + [ + 10.4845316, + 50.581124901 + ], + [ + 10.4840479, + 50.580568701 + ], + [ + 10.4834814, + 50.579880701 + ], + [ + 10.4829642, + 50.579222801 + ], + [ + 10.4828308, + 50.579036701 + ], + [ + 10.4827068, + 50.578856601 + ], + [ + 10.482391, + 50.578387801 + ], + [ + 10.4820761, + 50.577889701 + ], + [ + 10.481885, + 50.577562201 + ], + [ + 10.4817001, + 50.577226901 + ], + [ + 10.4816461, + 50.577119101 + ], + [ + 10.4814101, + 50.576647701 + ], + [ + 10.4811809, + 50.576168801 + ], + [ + 10.4808379, + 50.575229501 + ], + [ + 10.4807197, + 50.574832001 + ], + [ + 10.4805989, + 50.574439601 + ], + [ + 10.480529, + 50.574194001 + ], + [ + 10.4805282, + 50.574190416 + ] + ] + } + }, + { + "identifier": "2026-012501--vi-bs.2026-04-07_06-30-00-000.devi-bs.2026-03-12_06-00-00-000_001.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.612662321946765,10.655139409017798,50.71531027970277,10.96537993513731", + "point": "50.612662321946765,10.655139409017798", + "startLcPosition": "17", + "impact": { + "lower": "Stadtilm", + "upper": "Dreieck Suhl", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schweinfurt -> Erfurt", + "title": "A71 | Dreieck Suhl - Stadtilm", + "coordinate": { + "lat": 50.612662321946765, + "long": 10.655139409017798 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 06:30 bis 15:30 Uhr.", + "", + "A71: Schweinfurt -> Erfurt, zwischen 0.8 km hinter AD Dreieck Suhl und 4.6 km vor AS Stadtilm", + "", + "L\u00e4nge: 29.53 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 Reinigungsarbeiten Entw\u00e4sserung AM ZM" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.655139409, + 50.612662322 + ], + [ + 10.6553974, + 50.612934601 + ], + [ + 10.6555414, + 50.613090701 + ], + [ + 10.655598, + 50.613152001 + ], + [ + 10.6558139, + 50.613410601 + ], + [ + 10.6560379, + 50.613706501 + ], + [ + 10.65622, + 50.613965501 + ], + [ + 10.6563462, + 50.614156701 + ], + [ + 10.656411, + 50.614265101 + ], + [ + 10.6565962, + 50.614558101 + ], + [ + 10.6567879, + 50.614907501 + ], + [ + 10.6569628, + 50.615262701 + ], + [ + 10.657087, + 50.615530201 + ], + [ + 10.6572995, + 50.615954601 + ], + [ + 10.6574935, + 50.616391601 + ], + [ + 10.6576214, + 50.616664801 + ], + [ + 10.6577464, + 50.616963501 + ], + [ + 10.6578673, + 50.617252601 + ], + [ + 10.6581901, + 50.617998001 + ], + [ + 10.6584876, + 50.618643601 + ], + [ + 10.6587099, + 50.619099701 + ], + [ + 10.6588243, + 50.619320601 + ], + [ + 10.6589512, + 50.619551801 + ], + [ + 10.6590758, + 50.619788601 + ], + [ + 10.6592446, + 50.620085501 + ], + [ + 10.6600741, + 50.621360301 + ], + [ + 10.662847, + 50.624376401 + ], + [ + 10.6640797, + 50.625430001 + ], + [ + 10.6677941, + 50.628588501 + ], + [ + 10.6681022, + 50.628843401 + ], + [ + 10.6698018, + 50.630273901 + ], + [ + 10.671903, + 50.632047101 + ], + [ + 10.6739684, + 50.633748201 + ], + [ + 10.6761079, + 50.635320001 + ], + [ + 10.6812137, + 50.638044801 + ], + [ + 10.683209, + 50.638819801 + ], + [ + 10.6836761, + 50.638987801 + ], + [ + 10.6842364, + 50.639189501 + ], + [ + 10.6845658, + 50.639315801 + ], + [ + 10.6847256, + 50.639375401 + ], + [ + 10.6853257, + 50.639597201 + ], + [ + 10.6858885, + 50.639810601 + ], + [ + 10.6863877, + 50.640023801 + ], + [ + 10.6868828, + 50.640258901 + ], + [ + 10.6873389, + 50.640493501 + ], + [ + 10.6878197, + 50.640763201 + ], + [ + 10.6882761, + 50.641056501 + ], + [ + 10.6887303, + 50.641388001 + ], + [ + 10.689094, + 50.641686201 + ], + [ + 10.6894819, + 50.642044901 + ], + [ + 10.6897962, + 50.642369501 + ], + [ + 10.6899038, + 50.642490601 + ], + [ + 10.690109, + 50.642747501 + ], + [ + 10.6902784, + 50.642964001 + ], + [ + 10.6905835, + 50.643453901 + ], + [ + 10.6908214, + 50.643924001 + ], + [ + 10.6909112, + 50.644136301 + ], + [ + 10.6910116, + 50.644411901 + ], + [ + 10.6910231, + 50.644452601 + ], + [ + 10.6910659, + 50.644591101 + ], + [ + 10.6911078, + 50.644739601 + ], + [ + 10.6911481, + 50.644926901 + ], + [ + 10.6912107, + 50.645246901 + ], + [ + 10.6912525, + 50.645890501 + ], + [ + 10.6912298, + 50.646222401 + ], + [ + 10.6911899, + 50.646700101 + ], + [ + 10.690959, + 50.648670001 + ], + [ + 10.6909144, + 50.649096601 + ], + [ + 10.69082, + 50.650036801 + ], + [ + 10.6907304, + 50.651108401 + ], + [ + 10.6906576, + 50.652143101 + ], + [ + 10.6906077, + 50.652677301 + ], + [ + 10.6905416, + 50.653296401 + ], + [ + 10.6905387, + 50.653325201 + ], + [ + 10.6905208, + 50.653503501 + ], + [ + 10.6900604, + 50.657772701 + ], + [ + 10.689626, + 50.661801101 + ], + [ + 10.6895376, + 50.662383901 + ], + [ + 10.6894769, + 50.662783701 + ], + [ + 10.6894461, + 50.662991801 + ], + [ + 10.6894232, + 50.663191201 + ], + [ + 10.6893616, + 50.663729001 + ], + [ + 10.689303, + 50.664252501 + ], + [ + 10.6892876, + 50.664383401 + ], + [ + 10.689168, + 50.665460801 + ], + [ + 10.6891437, + 50.665718201 + ], + [ + 10.6890921, + 50.666546401 + ], + [ + 10.6890755, + 50.666986501 + ], + [ + 10.689074, + 50.667336901 + ], + [ + 10.6890723, + 50.667376001 + ], + [ + 10.6890778, + 50.667509201 + ], + [ + 10.6890955, + 50.667897001 + ], + [ + 10.6891161, + 50.668129001 + ], + [ + 10.6891516, + 50.668431301 + ], + [ + 10.6891974, + 50.668713601 + ], + [ + 10.6892261, + 50.668873901 + ], + [ + 10.6892746, + 50.669118001 + ], + [ + 10.6893482, + 50.669429001 + ], + [ + 10.6895514, + 50.669949601 + ], + [ + 10.689764, + 50.670484901 + ], + [ + 10.6899905, + 50.670972201 + ], + [ + 10.6903059, + 50.671476601 + ], + [ + 10.6907763, + 50.672127501 + ], + [ + 10.6912787, + 50.672717201 + ], + [ + 10.6919393, + 50.673353301 + ], + [ + 10.692486, + 50.673814401 + ], + [ + 10.6931614, + 50.674312101 + ], + [ + 10.6939557, + 50.674843601 + ], + [ + 10.694719, + 50.675280001 + ], + [ + 10.6957774, + 50.675792401 + ], + [ + 10.6968035, + 50.676249901 + ], + [ + 10.6998173, + 50.677341201 + ], + [ + 10.7006301, + 50.677621801 + ], + [ + 10.7035941, + 50.678652001 + ], + [ + 10.7068191, + 50.679765501 + ], + [ + 10.7095595, + 50.680772601 + ], + [ + 10.7121235, + 50.681814401 + ], + [ + 10.7148767, + 50.683065501 + ], + [ + 10.716402, + 50.683833101 + ], + [ + 10.7179557, + 50.684681001 + ], + [ + 10.7193474, + 50.685496001 + ], + [ + 10.7232423, + 50.688033901 + ], + [ + 10.7282363, + 50.691340901 + ], + [ + 10.7312085, + 50.693089501 + ], + [ + 10.7329028, + 50.694002401 + ], + [ + 10.7348314, + 50.694939801 + ], + [ + 10.7368159, + 50.695875901 + ], + [ + 10.7407869, + 50.697638901 + ], + [ + 10.7413801, + 50.697895901 + ], + [ + 10.7455361, + 50.699728501 + ], + [ + 10.7473593, + 50.700543201 + ], + [ + 10.7514597, + 50.702330901 + ], + [ + 10.7562283, + 50.704418801 + ], + [ + 10.761473, + 50.706713501 + ], + [ + 10.7623827, + 50.707103301 + ], + [ + 10.7684631, + 50.709606001 + ], + [ + 10.7738173, + 50.711535001 + ], + [ + 10.7761804, + 50.712230901 + ], + [ + 10.7765012, + 50.712326601 + ], + [ + 10.7766891, + 50.712384001 + ], + [ + 10.7768668, + 50.712439801 + ], + [ + 10.7775189, + 50.712630901 + ], + [ + 10.7782276, + 50.712828501 + ], + [ + 10.7787848, + 50.712984601 + ], + [ + 10.7793472, + 50.713137201 + ], + [ + 10.780071, + 50.713325201 + ], + [ + 10.7808024, + 50.713509201 + ], + [ + 10.7814125, + 50.713653301 + ], + [ + 10.7819164, + 50.713769101 + ], + [ + 10.78266, + 50.713938601 + ], + [ + 10.7832385, + 50.714058201 + ], + [ + 10.7841582, + 50.714244801 + ], + [ + 10.785612, + 50.714534201 + ], + [ + 10.7871149, + 50.714820901 + ], + [ + 10.7907936, + 50.715451201 + ], + [ + 10.7919025, + 50.715619301 + ], + [ + 10.7925821, + 50.715711801 + ], + [ + 10.7936316, + 50.715842901 + ], + [ + 10.7941926, + 50.715908501 + ], + [ + 10.7954337, + 50.716033801 + ], + [ + 10.7967313, + 50.716153701 + ], + [ + 10.7973966, + 50.716207201 + ], + [ + 10.797718, + 50.716233001 + ], + [ + 10.7979017, + 50.716245201 + ], + [ + 10.7985667, + 50.716292101 + ], + [ + 10.7987185, + 50.716300901 + ], + [ + 10.7987904, + 50.716306001 + ], + [ + 10.8010745, + 50.716424701 + ], + [ + 10.8082955, + 50.716822001 + ], + [ + 10.8110788, + 50.716975101 + ], + [ + 10.811515, + 50.717001301 + ], + [ + 10.8120151, + 50.717045101 + ], + [ + 10.8130618, + 50.717142301 + ], + [ + 10.815357, + 50.717393101 + ], + [ + 10.8158443, + 50.717451001 + ], + [ + 10.8167085, + 50.717561201 + ], + [ + 10.8176867, + 50.717706601 + ], + [ + 10.8184682, + 50.717827301 + ], + [ + 10.8191941, + 50.717951501 + ], + [ + 10.8199084, + 50.718087601 + ], + [ + 10.8207082, + 50.718252201 + ], + [ + 10.8208076, + 50.718273601 + ], + [ + 10.8218633, + 50.718507301 + ], + [ + 10.8228022, + 50.718738201 + ], + [ + 10.8232751, + 50.718857601 + ], + [ + 10.8237401, + 50.718983001 + ], + [ + 10.8243891, + 50.719162001 + ], + [ + 10.8249152, + 50.719316401 + ], + [ + 10.8255312, + 50.719503001 + ], + [ + 10.8262184, + 50.719720401 + ], + [ + 10.826896, + 50.719947701 + ], + [ + 10.8275543, + 50.720175701 + ], + [ + 10.8281838, + 50.720408101 + ], + [ + 10.8283389, + 50.720464601 + ], + [ + 10.8286556, + 50.720589801 + ], + [ + 10.8289349, + 50.720696401 + ], + [ + 10.8295261, + 50.720932001 + ], + [ + 10.83023, + 50.721216601 + ], + [ + 10.8311629, + 50.721606701 + ], + [ + 10.8321275, + 50.722016401 + ], + [ + 10.8342335, + 50.722900101 + ], + [ + 10.8343059, + 50.722931501 + ], + [ + 10.8348638, + 50.723154701 + ], + [ + 10.835326, + 50.723337101 + ], + [ + 10.8357704, + 50.723506201 + ], + [ + 10.8361714, + 50.723661701 + ], + [ + 10.8367854, + 50.723881501 + ], + [ + 10.837115, + 50.723997701 + ], + [ + 10.8371934, + 50.724025701 + ], + [ + 10.8377718, + 50.724219801 + ], + [ + 10.8383824, + 50.724412701 + ], + [ + 10.8388314, + 50.724549201 + ], + [ + 10.8395646, + 50.724754601 + ], + [ + 10.8402241, + 50.724926701 + ], + [ + 10.8408807, + 50.725079601 + ], + [ + 10.8414837, + 50.725205701 + ], + [ + 10.8420094, + 50.725307901 + ], + [ + 10.8425338, + 50.725397701 + ], + [ + 10.8430626, + 50.725477601 + ], + [ + 10.8435315, + 50.725540801 + ], + [ + 10.8438287, + 50.725579801 + ], + [ + 10.8442784, + 50.725635301 + ], + [ + 10.8449236, + 50.725698601 + ], + [ + 10.8455244, + 50.725746601 + ], + [ + 10.8460935, + 50.725779101 + ], + [ + 10.8465979, + 50.725803701 + ], + [ + 10.8471032, + 50.725820301 + ], + [ + 10.8478118, + 50.725823101 + ], + [ + 10.8483849, + 50.725822001 + ], + [ + 10.8488811, + 50.725810501 + ], + [ + 10.8494058, + 50.725790301 + ], + [ + 10.8500873, + 50.725752301 + ], + [ + 10.8505368, + 50.725717401 + ], + [ + 10.8510071, + 50.725680401 + ], + [ + 10.8512683, + 50.725656001 + ], + [ + 10.8521344, + 50.725547201 + ], + [ + 10.8528302, + 50.725447801 + ], + [ + 10.8535626, + 50.725328501 + ], + [ + 10.8542277, + 50.725202701 + ], + [ + 10.8549905, + 50.725040101 + ], + [ + 10.8555868, + 50.724903301 + ], + [ + 10.8561776, + 50.724744301 + ], + [ + 10.8568195, + 50.724562701 + ], + [ + 10.8577336, + 50.724271801 + ], + [ + 10.8585849, + 50.723979001 + ], + [ + 10.8592093, + 50.723736401 + ], + [ + 10.8598589, + 50.723478801 + ], + [ + 10.8606622, + 50.723135301 + ], + [ + 10.8615139, + 50.722761201 + ], + [ + 10.862362, + 50.722363601 + ], + [ + 10.8634682, + 50.721824701 + ], + [ + 10.8645211, + 50.721305001 + ], + [ + 10.8657961, + 50.720665901 + ], + [ + 10.8668311, + 50.720159801 + ], + [ + 10.8708077, + 50.718170501 + ], + [ + 10.8723974, + 50.717380401 + ], + [ + 10.8769945, + 50.715098701 + ], + [ + 10.8778533, + 50.714673301 + ], + [ + 10.8784584, + 50.714377201 + ], + [ + 10.879076, + 50.714092201 + ], + [ + 10.8794981, + 50.713903601 + ], + [ + 10.8799425, + 50.713713401 + ], + [ + 10.8804495, + 50.713506601 + ], + [ + 10.8809689, + 50.713306201 + ], + [ + 10.8816384, + 50.713061301 + ], + [ + 10.8825574, + 50.712752801 + ], + [ + 10.8836579, + 50.712423201 + ], + [ + 10.8845085, + 50.712195601 + ], + [ + 10.8852835, + 50.712004801 + ], + [ + 10.8860611, + 50.711835501 + ], + [ + 10.8877706, + 50.711520301 + ], + [ + 10.8886714, + 50.711392301 + ], + [ + 10.889576, + 50.711281401 + ], + [ + 10.8898443, + 50.711247701 + ], + [ + 10.8907807, + 50.711158201 + ], + [ + 10.8908112, + 50.711156201 + ], + [ + 10.8916049, + 50.711103901 + ], + [ + 10.8925829, + 50.711056801 + ], + [ + 10.8936495, + 50.711034301 + ], + [ + 10.8944, + 50.711033401 + ], + [ + 10.8953908, + 50.711058401 + ], + [ + 10.8959851, + 50.711084701 + ], + [ + 10.8964693, + 50.711107401 + ], + [ + 10.8975254, + 50.711182801 + ], + [ + 10.8980096, + 50.711232201 + ], + [ + 10.8984639, + 50.711282901 + ], + [ + 10.8989565, + 50.711341001 + ], + [ + 10.9002487, + 50.711527301 + ], + [ + 10.901009, + 50.711646801 + ], + [ + 10.9048657, + 50.712304201 + ], + [ + 10.9078194, + 50.712814301 + ], + [ + 10.9103591, + 50.713248501 + ], + [ + 10.9118035, + 50.713495901 + ], + [ + 10.9162528, + 50.714255001 + ], + [ + 10.9169649, + 50.714366701 + ], + [ + 10.9179285, + 50.714489101 + ], + [ + 10.9184861, + 50.714546701 + ], + [ + 10.9190488, + 50.714594601 + ], + [ + 10.9196961, + 50.714643201 + ], + [ + 10.9205747, + 50.714686101 + ], + [ + 10.9212613, + 50.714703301 + ], + [ + 10.9219491, + 50.714704101 + ], + [ + 10.9228177, + 50.714684201 + ], + [ + 10.9232708, + 50.714667701 + ], + [ + 10.9240129, + 50.714625301 + ], + [ + 10.9247679, + 50.714560201 + ], + [ + 10.9253488, + 50.714501201 + ], + [ + 10.9259065, + 50.714437401 + ], + [ + 10.9263259, + 50.714378301 + ], + [ + 10.9269928, + 50.714277801 + ], + [ + 10.9276145, + 50.714169101 + ], + [ + 10.9284502, + 50.714002701 + ], + [ + 10.9292497, + 50.713822401 + ], + [ + 10.9303721, + 50.713530401 + ], + [ + 10.9327419, + 50.712884501 + ], + [ + 10.9347141, + 50.712345701 + ], + [ + 10.9360313, + 50.711985001 + ], + [ + 10.936926, + 50.711746601 + ], + [ + 10.9373537, + 50.711640601 + ], + [ + 10.9380523, + 50.711473201 + ], + [ + 10.9386825, + 50.711329601 + ], + [ + 10.939332, + 50.711204701 + ], + [ + 10.9400115, + 50.711072301 + ], + [ + 10.940582, + 50.710987701 + ], + [ + 10.9413449, + 50.710875201 + ], + [ + 10.9420203, + 50.710788001 + ], + [ + 10.9426931, + 50.710712201 + ], + [ + 10.9437654, + 50.710619201 + ], + [ + 10.9445618, + 50.710569401 + ], + [ + 10.9455568, + 50.710529301 + ], + [ + 10.9463123, + 50.710518601 + ], + [ + 10.9472754, + 50.710514301 + ], + [ + 10.9483467, + 50.710548201 + ], + [ + 10.9491803, + 50.710589301 + ], + [ + 10.9502693, + 50.710668601 + ], + [ + 10.9511499, + 50.710756701 + ], + [ + 10.951805, + 50.710835301 + ], + [ + 10.9526525, + 50.710958801 + ], + [ + 10.9533293, + 50.711072001 + ], + [ + 10.9541686, + 50.711217401 + ], + [ + 10.955402, + 50.711476501 + ], + [ + 10.956294, + 50.711704801 + ], + [ + 10.9571336, + 50.711922901 + ], + [ + 10.9581875, + 50.712244201 + ], + [ + 10.9591178, + 50.712547901 + ], + [ + 10.9601792, + 50.712935401 + ], + [ + 10.9605998, + 50.713093901 + ], + [ + 10.9613216, + 50.713382701 + ], + [ + 10.9620728, + 50.713705601 + ], + [ + 10.9626907, + 50.713982501 + ], + [ + 10.9628189, + 50.714039901 + ], + [ + 10.9632716, + 50.714252601 + ], + [ + 10.9645161, + 50.714868401 + ], + [ + 10.9651025, + 50.715166601 + ], + [ + 10.9653432, + 50.715289601 + ], + [ + 10.965379935, + 50.71531028 + ] + ] + } + }, + { + "identifier": "2026-012501--vi-bs.2026-04-07_06-30-00-000.devi-bs.2026-03-12_06-00-00-000_001.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.612662321946765,10.655139409017798,50.71531027970277,10.96537993513731", + "point": "50.612662321946765,10.655139409017798", + "startLcPosition": "17", + "impact": { + "lower": "Stadtilm", + "upper": "Dreieck Suhl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schweinfurt -> Erfurt", + "title": "A71 | Dreieck Suhl - Stadtilm", + "coordinate": { + "lat": 50.612662321946765, + "long": 10.655139409017798 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 06:30 bis 15:15 Uhr.", + "", + "A71: Schweinfurt -> Erfurt, zwischen 0.8 km hinter AD Dreieck Suhl und 4.6 km vor AS Stadtilm", + "", + "L\u00e4nge: 29.53 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 Reinigungsarbeiten Entw\u00e4sserung AM ZM" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.655139409, + 50.612662322 + ], + [ + 10.6553974, + 50.612934601 + ], + [ + 10.6555414, + 50.613090701 + ], + [ + 10.655598, + 50.613152001 + ], + [ + 10.6558139, + 50.613410601 + ], + [ + 10.6560379, + 50.613706501 + ], + [ + 10.65622, + 50.613965501 + ], + [ + 10.6563462, + 50.614156701 + ], + [ + 10.656411, + 50.614265101 + ], + [ + 10.6565962, + 50.614558101 + ], + [ + 10.6567879, + 50.614907501 + ], + [ + 10.6569628, + 50.615262701 + ], + [ + 10.657087, + 50.615530201 + ], + [ + 10.6572995, + 50.615954601 + ], + [ + 10.6574935, + 50.616391601 + ], + [ + 10.6576214, + 50.616664801 + ], + [ + 10.6577464, + 50.616963501 + ], + [ + 10.6578673, + 50.617252601 + ], + [ + 10.6581901, + 50.617998001 + ], + [ + 10.6584876, + 50.618643601 + ], + [ + 10.6587099, + 50.619099701 + ], + [ + 10.6588243, + 50.619320601 + ], + [ + 10.6589512, + 50.619551801 + ], + [ + 10.6590758, + 50.619788601 + ], + [ + 10.6592446, + 50.620085501 + ], + [ + 10.6600741, + 50.621360301 + ], + [ + 10.662847, + 50.624376401 + ], + [ + 10.6640797, + 50.625430001 + ], + [ + 10.6677941, + 50.628588501 + ], + [ + 10.6681022, + 50.628843401 + ], + [ + 10.6698018, + 50.630273901 + ], + [ + 10.671903, + 50.632047101 + ], + [ + 10.6739684, + 50.633748201 + ], + [ + 10.6761079, + 50.635320001 + ], + [ + 10.6812137, + 50.638044801 + ], + [ + 10.683209, + 50.638819801 + ], + [ + 10.6836761, + 50.638987801 + ], + [ + 10.6842364, + 50.639189501 + ], + [ + 10.6845658, + 50.639315801 + ], + [ + 10.6847256, + 50.639375401 + ], + [ + 10.6853257, + 50.639597201 + ], + [ + 10.6858885, + 50.639810601 + ], + [ + 10.6863877, + 50.640023801 + ], + [ + 10.6868828, + 50.640258901 + ], + [ + 10.6873389, + 50.640493501 + ], + [ + 10.6878197, + 50.640763201 + ], + [ + 10.6882761, + 50.641056501 + ], + [ + 10.6887303, + 50.641388001 + ], + [ + 10.689094, + 50.641686201 + ], + [ + 10.6894819, + 50.642044901 + ], + [ + 10.6897962, + 50.642369501 + ], + [ + 10.6899038, + 50.642490601 + ], + [ + 10.690109, + 50.642747501 + ], + [ + 10.6902784, + 50.642964001 + ], + [ + 10.6905835, + 50.643453901 + ], + [ + 10.6908214, + 50.643924001 + ], + [ + 10.6909112, + 50.644136301 + ], + [ + 10.6910116, + 50.644411901 + ], + [ + 10.6910231, + 50.644452601 + ], + [ + 10.6910659, + 50.644591101 + ], + [ + 10.6911078, + 50.644739601 + ], + [ + 10.6911481, + 50.644926901 + ], + [ + 10.6912107, + 50.645246901 + ], + [ + 10.6912525, + 50.645890501 + ], + [ + 10.6912298, + 50.646222401 + ], + [ + 10.6911899, + 50.646700101 + ], + [ + 10.690959, + 50.648670001 + ], + [ + 10.6909144, + 50.649096601 + ], + [ + 10.69082, + 50.650036801 + ], + [ + 10.6907304, + 50.651108401 + ], + [ + 10.6906576, + 50.652143101 + ], + [ + 10.6906077, + 50.652677301 + ], + [ + 10.6905416, + 50.653296401 + ], + [ + 10.6905387, + 50.653325201 + ], + [ + 10.6905208, + 50.653503501 + ], + [ + 10.6900604, + 50.657772701 + ], + [ + 10.689626, + 50.661801101 + ], + [ + 10.6895376, + 50.662383901 + ], + [ + 10.6894769, + 50.662783701 + ], + [ + 10.6894461, + 50.662991801 + ], + [ + 10.6894232, + 50.663191201 + ], + [ + 10.6893616, + 50.663729001 + ], + [ + 10.689303, + 50.664252501 + ], + [ + 10.6892876, + 50.664383401 + ], + [ + 10.689168, + 50.665460801 + ], + [ + 10.6891437, + 50.665718201 + ], + [ + 10.6890921, + 50.666546401 + ], + [ + 10.6890755, + 50.666986501 + ], + [ + 10.689074, + 50.667336901 + ], + [ + 10.6890723, + 50.667376001 + ], + [ + 10.6890778, + 50.667509201 + ], + [ + 10.6890955, + 50.667897001 + ], + [ + 10.6891161, + 50.668129001 + ], + [ + 10.6891516, + 50.668431301 + ], + [ + 10.6891974, + 50.668713601 + ], + [ + 10.6892261, + 50.668873901 + ], + [ + 10.6892746, + 50.669118001 + ], + [ + 10.6893482, + 50.669429001 + ], + [ + 10.6895514, + 50.669949601 + ], + [ + 10.689764, + 50.670484901 + ], + [ + 10.6899905, + 50.670972201 + ], + [ + 10.6903059, + 50.671476601 + ], + [ + 10.6907763, + 50.672127501 + ], + [ + 10.6912787, + 50.672717201 + ], + [ + 10.6919393, + 50.673353301 + ], + [ + 10.692486, + 50.673814401 + ], + [ + 10.6931614, + 50.674312101 + ], + [ + 10.6939557, + 50.674843601 + ], + [ + 10.694719, + 50.675280001 + ], + [ + 10.6957774, + 50.675792401 + ], + [ + 10.6968035, + 50.676249901 + ], + [ + 10.6998173, + 50.677341201 + ], + [ + 10.7006301, + 50.677621801 + ], + [ + 10.7035941, + 50.678652001 + ], + [ + 10.7068191, + 50.679765501 + ], + [ + 10.7095595, + 50.680772601 + ], + [ + 10.7121235, + 50.681814401 + ], + [ + 10.7148767, + 50.683065501 + ], + [ + 10.716402, + 50.683833101 + ], + [ + 10.7179557, + 50.684681001 + ], + [ + 10.7193474, + 50.685496001 + ], + [ + 10.7232423, + 50.688033901 + ], + [ + 10.7282363, + 50.691340901 + ], + [ + 10.7312085, + 50.693089501 + ], + [ + 10.7329028, + 50.694002401 + ], + [ + 10.7348314, + 50.694939801 + ], + [ + 10.7368159, + 50.695875901 + ], + [ + 10.7407869, + 50.697638901 + ], + [ + 10.7413801, + 50.697895901 + ], + [ + 10.7455361, + 50.699728501 + ], + [ + 10.7473593, + 50.700543201 + ], + [ + 10.7514597, + 50.702330901 + ], + [ + 10.7562283, + 50.704418801 + ], + [ + 10.761473, + 50.706713501 + ], + [ + 10.7623827, + 50.707103301 + ], + [ + 10.7684631, + 50.709606001 + ], + [ + 10.7738173, + 50.711535001 + ], + [ + 10.7761804, + 50.712230901 + ], + [ + 10.7765012, + 50.712326601 + ], + [ + 10.7766891, + 50.712384001 + ], + [ + 10.7768668, + 50.712439801 + ], + [ + 10.7775189, + 50.712630901 + ], + [ + 10.7782276, + 50.712828501 + ], + [ + 10.7787848, + 50.712984601 + ], + [ + 10.7793472, + 50.713137201 + ], + [ + 10.780071, + 50.713325201 + ], + [ + 10.7808024, + 50.713509201 + ], + [ + 10.7814125, + 50.713653301 + ], + [ + 10.7819164, + 50.713769101 + ], + [ + 10.78266, + 50.713938601 + ], + [ + 10.7832385, + 50.714058201 + ], + [ + 10.7841582, + 50.714244801 + ], + [ + 10.785612, + 50.714534201 + ], + [ + 10.7871149, + 50.714820901 + ], + [ + 10.7907936, + 50.715451201 + ], + [ + 10.7919025, + 50.715619301 + ], + [ + 10.7925821, + 50.715711801 + ], + [ + 10.7936316, + 50.715842901 + ], + [ + 10.7941926, + 50.715908501 + ], + [ + 10.7954337, + 50.716033801 + ], + [ + 10.7967313, + 50.716153701 + ], + [ + 10.7973966, + 50.716207201 + ], + [ + 10.797718, + 50.716233001 + ], + [ + 10.7979017, + 50.716245201 + ], + [ + 10.7985667, + 50.716292101 + ], + [ + 10.7987185, + 50.716300901 + ], + [ + 10.7987904, + 50.716306001 + ], + [ + 10.8010745, + 50.716424701 + ], + [ + 10.8082955, + 50.716822001 + ], + [ + 10.8110788, + 50.716975101 + ], + [ + 10.811515, + 50.717001301 + ], + [ + 10.8120151, + 50.717045101 + ], + [ + 10.8130618, + 50.717142301 + ], + [ + 10.815357, + 50.717393101 + ], + [ + 10.8158443, + 50.717451001 + ], + [ + 10.8167085, + 50.717561201 + ], + [ + 10.8176867, + 50.717706601 + ], + [ + 10.8184682, + 50.717827301 + ], + [ + 10.8191941, + 50.717951501 + ], + [ + 10.8199084, + 50.718087601 + ], + [ + 10.8207082, + 50.718252201 + ], + [ + 10.8208076, + 50.718273601 + ], + [ + 10.8218633, + 50.718507301 + ], + [ + 10.8228022, + 50.718738201 + ], + [ + 10.8232751, + 50.718857601 + ], + [ + 10.8237401, + 50.718983001 + ], + [ + 10.8243891, + 50.719162001 + ], + [ + 10.8249152, + 50.719316401 + ], + [ + 10.8255312, + 50.719503001 + ], + [ + 10.8262184, + 50.719720401 + ], + [ + 10.826896, + 50.719947701 + ], + [ + 10.8275543, + 50.720175701 + ], + [ + 10.8281838, + 50.720408101 + ], + [ + 10.8283389, + 50.720464601 + ], + [ + 10.8286556, + 50.720589801 + ], + [ + 10.8289349, + 50.720696401 + ], + [ + 10.8295261, + 50.720932001 + ], + [ + 10.83023, + 50.721216601 + ], + [ + 10.8311629, + 50.721606701 + ], + [ + 10.8321275, + 50.722016401 + ], + [ + 10.8342335, + 50.722900101 + ], + [ + 10.8343059, + 50.722931501 + ], + [ + 10.8348638, + 50.723154701 + ], + [ + 10.835326, + 50.723337101 + ], + [ + 10.8357704, + 50.723506201 + ], + [ + 10.8361714, + 50.723661701 + ], + [ + 10.8367854, + 50.723881501 + ], + [ + 10.837115, + 50.723997701 + ], + [ + 10.8371934, + 50.724025701 + ], + [ + 10.8377718, + 50.724219801 + ], + [ + 10.8383824, + 50.724412701 + ], + [ + 10.8388314, + 50.724549201 + ], + [ + 10.8395646, + 50.724754601 + ], + [ + 10.8402241, + 50.724926701 + ], + [ + 10.8408807, + 50.725079601 + ], + [ + 10.8414837, + 50.725205701 + ], + [ + 10.8420094, + 50.725307901 + ], + [ + 10.8425338, + 50.725397701 + ], + [ + 10.8430626, + 50.725477601 + ], + [ + 10.8435315, + 50.725540801 + ], + [ + 10.8438287, + 50.725579801 + ], + [ + 10.8442784, + 50.725635301 + ], + [ + 10.8449236, + 50.725698601 + ], + [ + 10.8455244, + 50.725746601 + ], + [ + 10.8460935, + 50.725779101 + ], + [ + 10.8465979, + 50.725803701 + ], + [ + 10.8471032, + 50.725820301 + ], + [ + 10.8478118, + 50.725823101 + ], + [ + 10.8483849, + 50.725822001 + ], + [ + 10.8488811, + 50.725810501 + ], + [ + 10.8494058, + 50.725790301 + ], + [ + 10.8500873, + 50.725752301 + ], + [ + 10.8505368, + 50.725717401 + ], + [ + 10.8510071, + 50.725680401 + ], + [ + 10.8512683, + 50.725656001 + ], + [ + 10.8521344, + 50.725547201 + ], + [ + 10.8528302, + 50.725447801 + ], + [ + 10.8535626, + 50.725328501 + ], + [ + 10.8542277, + 50.725202701 + ], + [ + 10.8549905, + 50.725040101 + ], + [ + 10.8555868, + 50.724903301 + ], + [ + 10.8561776, + 50.724744301 + ], + [ + 10.8568195, + 50.724562701 + ], + [ + 10.8577336, + 50.724271801 + ], + [ + 10.8585849, + 50.723979001 + ], + [ + 10.8592093, + 50.723736401 + ], + [ + 10.8598589, + 50.723478801 + ], + [ + 10.8606622, + 50.723135301 + ], + [ + 10.8615139, + 50.722761201 + ], + [ + 10.862362, + 50.722363601 + ], + [ + 10.8634682, + 50.721824701 + ], + [ + 10.8645211, + 50.721305001 + ], + [ + 10.8657961, + 50.720665901 + ], + [ + 10.8668311, + 50.720159801 + ], + [ + 10.8708077, + 50.718170501 + ], + [ + 10.8723974, + 50.717380401 + ], + [ + 10.8769945, + 50.715098701 + ], + [ + 10.8778533, + 50.714673301 + ], + [ + 10.8784584, + 50.714377201 + ], + [ + 10.879076, + 50.714092201 + ], + [ + 10.8794981, + 50.713903601 + ], + [ + 10.8799425, + 50.713713401 + ], + [ + 10.8804495, + 50.713506601 + ], + [ + 10.8809689, + 50.713306201 + ], + [ + 10.8816384, + 50.713061301 + ], + [ + 10.8825574, + 50.712752801 + ], + [ + 10.8836579, + 50.712423201 + ], + [ + 10.8845085, + 50.712195601 + ], + [ + 10.8852835, + 50.712004801 + ], + [ + 10.8860611, + 50.711835501 + ], + [ + 10.8877706, + 50.711520301 + ], + [ + 10.8886714, + 50.711392301 + ], + [ + 10.889576, + 50.711281401 + ], + [ + 10.8898443, + 50.711247701 + ], + [ + 10.8907807, + 50.711158201 + ], + [ + 10.8908112, + 50.711156201 + ], + [ + 10.8916049, + 50.711103901 + ], + [ + 10.8925829, + 50.711056801 + ], + [ + 10.8936495, + 50.711034301 + ], + [ + 10.8944, + 50.711033401 + ], + [ + 10.8953908, + 50.711058401 + ], + [ + 10.8959851, + 50.711084701 + ], + [ + 10.8964693, + 50.711107401 + ], + [ + 10.8975254, + 50.711182801 + ], + [ + 10.8980096, + 50.711232201 + ], + [ + 10.8984639, + 50.711282901 + ], + [ + 10.8989565, + 50.711341001 + ], + [ + 10.9002487, + 50.711527301 + ], + [ + 10.901009, + 50.711646801 + ], + [ + 10.9048657, + 50.712304201 + ], + [ + 10.9078194, + 50.712814301 + ], + [ + 10.9103591, + 50.713248501 + ], + [ + 10.9118035, + 50.713495901 + ], + [ + 10.9162528, + 50.714255001 + ], + [ + 10.9169649, + 50.714366701 + ], + [ + 10.9179285, + 50.714489101 + ], + [ + 10.9184861, + 50.714546701 + ], + [ + 10.9190488, + 50.714594601 + ], + [ + 10.9196961, + 50.714643201 + ], + [ + 10.9205747, + 50.714686101 + ], + [ + 10.9212613, + 50.714703301 + ], + [ + 10.9219491, + 50.714704101 + ], + [ + 10.9228177, + 50.714684201 + ], + [ + 10.9232708, + 50.714667701 + ], + [ + 10.9240129, + 50.714625301 + ], + [ + 10.9247679, + 50.714560201 + ], + [ + 10.9253488, + 50.714501201 + ], + [ + 10.9259065, + 50.714437401 + ], + [ + 10.9263259, + 50.714378301 + ], + [ + 10.9269928, + 50.714277801 + ], + [ + 10.9276145, + 50.714169101 + ], + [ + 10.9284502, + 50.714002701 + ], + [ + 10.9292497, + 50.713822401 + ], + [ + 10.9303721, + 50.713530401 + ], + [ + 10.9327419, + 50.712884501 + ], + [ + 10.9347141, + 50.712345701 + ], + [ + 10.9360313, + 50.711985001 + ], + [ + 10.936926, + 50.711746601 + ], + [ + 10.9373537, + 50.711640601 + ], + [ + 10.9380523, + 50.711473201 + ], + [ + 10.9386825, + 50.711329601 + ], + [ + 10.939332, + 50.711204701 + ], + [ + 10.9400115, + 50.711072301 + ], + [ + 10.940582, + 50.710987701 + ], + [ + 10.9413449, + 50.710875201 + ], + [ + 10.9420203, + 50.710788001 + ], + [ + 10.9426931, + 50.710712201 + ], + [ + 10.9437654, + 50.710619201 + ], + [ + 10.9445618, + 50.710569401 + ], + [ + 10.9455568, + 50.710529301 + ], + [ + 10.9463123, + 50.710518601 + ], + [ + 10.9472754, + 50.710514301 + ], + [ + 10.9483467, + 50.710548201 + ], + [ + 10.9491803, + 50.710589301 + ], + [ + 10.9502693, + 50.710668601 + ], + [ + 10.9511499, + 50.710756701 + ], + [ + 10.951805, + 50.710835301 + ], + [ + 10.9526525, + 50.710958801 + ], + [ + 10.9533293, + 50.711072001 + ], + [ + 10.9541686, + 50.711217401 + ], + [ + 10.955402, + 50.711476501 + ], + [ + 10.956294, + 50.711704801 + ], + [ + 10.9571336, + 50.711922901 + ], + [ + 10.9581875, + 50.712244201 + ], + [ + 10.9591178, + 50.712547901 + ], + [ + 10.9601792, + 50.712935401 + ], + [ + 10.9605998, + 50.713093901 + ], + [ + 10.9613216, + 50.713382701 + ], + [ + 10.9620728, + 50.713705601 + ], + [ + 10.9626907, + 50.713982501 + ], + [ + 10.9628189, + 50.714039901 + ], + [ + 10.9632716, + 50.714252601 + ], + [ + 10.9645161, + 50.714868401 + ], + [ + 10.9651025, + 50.715166601 + ], + [ + 10.9653432, + 50.715289601 + ], + [ + 10.965379935, + 50.71531028 + ] + ] + } + }, + { + "identifier": "2026-016290--vi-bs.2026-04-01_07-00-00-000.devi-bs.2026-04-01_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.6194221566528,10.658880041271242,50.71634668871431,10.799573241316775", + "point": "50.6194221566528,10.658880041271242", + "startLcPosition": "17", + "impact": { + "lower": "Alte Burg", + "upper": "Dreieck Suhl", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schweinfurt -> Erfurt", + "title": "A71 | Dreieck Suhl - Alte Burg", + "coordinate": { + "lat": 50.6194221566528, + "long": 10.658880041271242 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 12:00 Uhr", + "13.04.26 von 07:00 bis 15:00 Uhr", + "14.04.26 von 07:00 bis 15:00 Uhr", + "", + "A71: Schweinfurt -> Erfurt, zwischen 1.6 km hinter AD Dreieck Suhl und 0.4 km vor Alte Burg", + "", + "L\u00e4nge: 16.07 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 Tunnelwartung Tunnelkette KW 14-16" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.658880041, + 50.619422157 + ], + [ + 10.6589512, + 50.619551801 + ], + [ + 10.6590758, + 50.619788601 + ], + [ + 10.6592446, + 50.620085501 + ], + [ + 10.6600741, + 50.621360301 + ], + [ + 10.662847, + 50.624376401 + ], + [ + 10.6640797, + 50.625430001 + ], + [ + 10.6677941, + 50.628588501 + ], + [ + 10.6681022, + 50.628843401 + ], + [ + 10.6698018, + 50.630273901 + ], + [ + 10.671903, + 50.632047101 + ], + [ + 10.6739684, + 50.633748201 + ], + [ + 10.6761079, + 50.635320001 + ], + [ + 10.6812137, + 50.638044801 + ], + [ + 10.683209, + 50.638819801 + ], + [ + 10.6836761, + 50.638987801 + ], + [ + 10.6842364, + 50.639189501 + ], + [ + 10.6845658, + 50.639315801 + ], + [ + 10.6847256, + 50.639375401 + ], + [ + 10.6853257, + 50.639597201 + ], + [ + 10.6858885, + 50.639810601 + ], + [ + 10.6863877, + 50.640023801 + ], + [ + 10.6868828, + 50.640258901 + ], + [ + 10.6873389, + 50.640493501 + ], + [ + 10.6878197, + 50.640763201 + ], + [ + 10.6882761, + 50.641056501 + ], + [ + 10.6887303, + 50.641388001 + ], + [ + 10.689094, + 50.641686201 + ], + [ + 10.6894819, + 50.642044901 + ], + [ + 10.6897962, + 50.642369501 + ], + [ + 10.6899038, + 50.642490601 + ], + [ + 10.690109, + 50.642747501 + ], + [ + 10.6902784, + 50.642964001 + ], + [ + 10.6905835, + 50.643453901 + ], + [ + 10.6908214, + 50.643924001 + ], + [ + 10.6909112, + 50.644136301 + ], + [ + 10.6910116, + 50.644411901 + ], + [ + 10.6910231, + 50.644452601 + ], + [ + 10.6910659, + 50.644591101 + ], + [ + 10.6911078, + 50.644739601 + ], + [ + 10.6911481, + 50.644926901 + ], + [ + 10.6912107, + 50.645246901 + ], + [ + 10.6912525, + 50.645890501 + ], + [ + 10.6912298, + 50.646222401 + ], + [ + 10.6911899, + 50.646700101 + ], + [ + 10.690959, + 50.648670001 + ], + [ + 10.6909144, + 50.649096601 + ], + [ + 10.69082, + 50.650036801 + ], + [ + 10.6907304, + 50.651108401 + ], + [ + 10.6906576, + 50.652143101 + ], + [ + 10.6906077, + 50.652677301 + ], + [ + 10.6905416, + 50.653296401 + ], + [ + 10.6905387, + 50.653325201 + ], + [ + 10.6905208, + 50.653503501 + ], + [ + 10.6900604, + 50.657772701 + ], + [ + 10.689626, + 50.661801101 + ], + [ + 10.6895376, + 50.662383901 + ], + [ + 10.6894769, + 50.662783701 + ], + [ + 10.6894461, + 50.662991801 + ], + [ + 10.6894232, + 50.663191201 + ], + [ + 10.6893616, + 50.663729001 + ], + [ + 10.689303, + 50.664252501 + ], + [ + 10.6892876, + 50.664383401 + ], + [ + 10.689168, + 50.665460801 + ], + [ + 10.6891437, + 50.665718201 + ], + [ + 10.6890921, + 50.666546401 + ], + [ + 10.6890755, + 50.666986501 + ], + [ + 10.689074, + 50.667336901 + ], + [ + 10.6890723, + 50.667376001 + ], + [ + 10.6890778, + 50.667509201 + ], + [ + 10.6890955, + 50.667897001 + ], + [ + 10.6891161, + 50.668129001 + ], + [ + 10.6891516, + 50.668431301 + ], + [ + 10.6891974, + 50.668713601 + ], + [ + 10.6892261, + 50.668873901 + ], + [ + 10.6892746, + 50.669118001 + ], + [ + 10.6893482, + 50.669429001 + ], + [ + 10.6895514, + 50.669949601 + ], + [ + 10.689764, + 50.670484901 + ], + [ + 10.6899905, + 50.670972201 + ], + [ + 10.6903059, + 50.671476601 + ], + [ + 10.6907763, + 50.672127501 + ], + [ + 10.6912787, + 50.672717201 + ], + [ + 10.6919393, + 50.673353301 + ], + [ + 10.692486, + 50.673814401 + ], + [ + 10.6931614, + 50.674312101 + ], + [ + 10.6939557, + 50.674843601 + ], + [ + 10.694719, + 50.675280001 + ], + [ + 10.6957774, + 50.675792401 + ], + [ + 10.6968035, + 50.676249901 + ], + [ + 10.6998173, + 50.677341201 + ], + [ + 10.7006301, + 50.677621801 + ], + [ + 10.7035941, + 50.678652001 + ], + [ + 10.7068191, + 50.679765501 + ], + [ + 10.7095595, + 50.680772601 + ], + [ + 10.7121235, + 50.681814401 + ], + [ + 10.7148767, + 50.683065501 + ], + [ + 10.716402, + 50.683833101 + ], + [ + 10.7179557, + 50.684681001 + ], + [ + 10.7193474, + 50.685496001 + ], + [ + 10.7232423, + 50.688033901 + ], + [ + 10.7282363, + 50.691340901 + ], + [ + 10.7312085, + 50.693089501 + ], + [ + 10.7329028, + 50.694002401 + ], + [ + 10.7348314, + 50.694939801 + ], + [ + 10.7368159, + 50.695875901 + ], + [ + 10.7407869, + 50.697638901 + ], + [ + 10.7413801, + 50.697895901 + ], + [ + 10.7455361, + 50.699728501 + ], + [ + 10.7473593, + 50.700543201 + ], + [ + 10.7514597, + 50.702330901 + ], + [ + 10.7562283, + 50.704418801 + ], + [ + 10.761473, + 50.706713501 + ], + [ + 10.7623827, + 50.707103301 + ], + [ + 10.7684631, + 50.709606001 + ], + [ + 10.7738173, + 50.711535001 + ], + [ + 10.7761804, + 50.712230901 + ], + [ + 10.7765012, + 50.712326601 + ], + [ + 10.7766891, + 50.712384001 + ], + [ + 10.7768668, + 50.712439801 + ], + [ + 10.7775189, + 50.712630901 + ], + [ + 10.7782276, + 50.712828501 + ], + [ + 10.7787848, + 50.712984601 + ], + [ + 10.7793472, + 50.713137201 + ], + [ + 10.780071, + 50.713325201 + ], + [ + 10.7808024, + 50.713509201 + ], + [ + 10.7814125, + 50.713653301 + ], + [ + 10.7819164, + 50.713769101 + ], + [ + 10.78266, + 50.713938601 + ], + [ + 10.7832385, + 50.714058201 + ], + [ + 10.7841582, + 50.714244801 + ], + [ + 10.785612, + 50.714534201 + ], + [ + 10.7871149, + 50.714820901 + ], + [ + 10.7907936, + 50.715451201 + ], + [ + 10.7919025, + 50.715619301 + ], + [ + 10.7925821, + 50.715711801 + ], + [ + 10.7936316, + 50.715842901 + ], + [ + 10.7941926, + 50.715908501 + ], + [ + 10.7954337, + 50.716033801 + ], + [ + 10.7967313, + 50.716153701 + ], + [ + 10.7973966, + 50.716207201 + ], + [ + 10.797718, + 50.716233001 + ], + [ + 10.7979017, + 50.716245201 + ], + [ + 10.7985667, + 50.716292101 + ], + [ + 10.7987185, + 50.716300901 + ], + [ + 10.7987904, + 50.716306001 + ], + [ + 10.799573241, + 50.716346689 + ] + ] + } + }, + { + "identifier": "2026-013464--vi-bs.2026-03-16_06-15-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.619524349575535,10.658490386250945,50.42885760187825,10.39393494771687", + "point": "50.619524349575535,10.658490386250945", + "startLcPosition": "18", + "impact": { + "lower": "Mellrichst\u00e4dter H\u00f6he", + "upper": "Berg Bock", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Schweinfurt", + "title": "A71 | Berg Bock - Mellrichst\u00e4dter H\u00f6he", + "coordinate": { + "lat": 50.619524349575535, + "long": 10.658490386250945 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 16.03.26 und dem 30.04.26 von 06:15 bis 19:00 Uhr.", + "", + "A71: Erfurt -> Schweinfurt, zwischen 2.0 km hinter Berg Bock und 3.2 km vor Mellrichst\u00e4dter H\u00f6he", + "", + "L\u00e4nge: 35.82 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 von Berg Bock (Tunnel) nach Mellrichst\u00e4dter H\u00f6he (Raststaette) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.658490386, + 50.61952435 + ], + [ + 10.6582932, + 50.619135601 + ], + [ + 10.6580912, + 50.618701501 + ], + [ + 10.6578219, + 50.618076901 + ], + [ + 10.6575402, + 50.617291501 + ], + [ + 10.657223, + 50.616425901 + ], + [ + 10.6570619, + 50.615990701 + ], + [ + 10.6568795, + 50.615575701 + ], + [ + 10.6567541, + 50.615285901 + ], + [ + 10.6566055, + 50.614940901 + ], + [ + 10.6564319, + 50.614598301 + ], + [ + 10.656344, + 50.614447201 + ], + [ + 10.6561801, + 50.614170401 + ], + [ + 10.6558768, + 50.613724801 + ], + [ + 10.6556514, + 50.613437301 + ], + [ + 10.6554116, + 50.613157001 + ], + [ + 10.6552591, + 50.612980001 + ], + [ + 10.6549493, + 50.612664601 + ], + [ + 10.6545899, + 50.612331601 + ], + [ + 10.6543142, + 50.612083801 + ], + [ + 10.6539397, + 50.611800401 + ], + [ + 10.6536528, + 50.611575601 + ], + [ + 10.6532406, + 50.611299201 + ], + [ + 10.6528009, + 50.611028301 + ], + [ + 10.6518769, + 50.610523101 + ], + [ + 10.6514775, + 50.610329001 + ], + [ + 10.6511056, + 50.610154701 + ], + [ + 10.6508289, + 50.610031501 + ], + [ + 10.649889, + 50.609678301 + ], + [ + 10.6493579, + 50.609507901 + ], + [ + 10.6489308, + 50.609384501 + ], + [ + 10.6481358, + 50.609178701 + ], + [ + 10.6477225, + 50.609081901 + ], + [ + 10.647264, + 50.608988801 + ], + [ + 10.64675, + 50.608896001 + ], + [ + 10.6460876, + 50.608797401 + ], + [ + 10.6457008, + 50.608747001 + ], + [ + 10.645164, + 50.608691401 + ], + [ + 10.644458, + 50.608629901 + ], + [ + 10.6440816, + 50.608615801 + ], + [ + 10.6433729, + 50.608596801 + ], + [ + 10.6428832, + 50.608597501 + ], + [ + 10.6420272, + 50.608626901 + ], + [ + 10.6415364, + 50.608655101 + ], + [ + 10.6407966, + 50.608728401 + ], + [ + 10.6401282, + 50.608818601 + ], + [ + 10.639472, + 50.608915401 + ], + [ + 10.6387145, + 50.609045601 + ], + [ + 10.6379827, + 50.609177001 + ], + [ + 10.6370047, + 50.609369301 + ], + [ + 10.635977, + 50.609590601 + ], + [ + 10.6346943, + 50.609893601 + ], + [ + 10.6330949, + 50.610314801 + ], + [ + 10.6301848, + 50.611138901 + ], + [ + 10.6291959, + 50.611457901 + ], + [ + 10.6284721, + 50.611698001 + ], + [ + 10.627304, + 50.612053001 + ], + [ + 10.6264321, + 50.612277401 + ], + [ + 10.6250173, + 50.612575001 + ], + [ + 10.6235366, + 50.612804601 + ], + [ + 10.62213, + 50.612940301 + ], + [ + 10.620197, + 50.613018601 + ], + [ + 10.6164017, + 50.613135001 + ], + [ + 10.6162815, + 50.613138701 + ], + [ + 10.6112326, + 50.613310901 + ], + [ + 10.6106458, + 50.613345401 + ], + [ + 10.6100141, + 50.613402101 + ], + [ + 10.6094407, + 50.613471001 + ], + [ + 10.6089299, + 50.613538301 + ], + [ + 10.6079546, + 50.613708501 + ], + [ + 10.6070992, + 50.613888101 + ], + [ + 10.6064573, + 50.614037301 + ], + [ + 10.6060251, + 50.614150501 + ], + [ + 10.6054746, + 50.614308101 + ], + [ + 10.6050553, + 50.614430401 + ], + [ + 10.6025353, + 50.615203301 + ], + [ + 10.602021, + 50.615348401 + ], + [ + 10.601835, + 50.615400901 + ], + [ + 10.6012068, + 50.615567501 + ], + [ + 10.600417, + 50.615764301 + ], + [ + 10.5996053, + 50.615944301 + ], + [ + 10.5987844, + 50.616105601 + ], + [ + 10.5980548, + 50.616235801 + ], + [ + 10.5972966, + 50.616355201 + ], + [ + 10.59654, + 50.616455901 + ], + [ + 10.59612, + 50.616504601 + ], + [ + 10.595747, + 50.616547801 + ], + [ + 10.5950437, + 50.616614601 + ], + [ + 10.5942742, + 50.616671601 + ], + [ + 10.5935231, + 50.616716101 + ], + [ + 10.5928686, + 50.616741101 + ], + [ + 10.5925605, + 50.616753301 + ], + [ + 10.5918733, + 50.616766001 + ], + [ + 10.5903698, + 50.616747201 + ], + [ + 10.5889695, + 50.616685701 + ], + [ + 10.5882859, + 50.616640801 + ], + [ + 10.5874748, + 50.616581401 + ], + [ + 10.5847379, + 50.616322201 + ], + [ + 10.582824, + 50.616162001 + ], + [ + 10.5823714, + 50.616140401 + ], + [ + 10.5816512, + 50.616106101 + ], + [ + 10.5809311, + 50.616105601 + ], + [ + 10.5802797, + 50.616114201 + ], + [ + 10.5780839, + 50.616171301 + ], + [ + 10.5769135, + 50.616197001 + ], + [ + 10.575554, + 50.616149501 + ], + [ + 10.5750139, + 50.616108901 + ], + [ + 10.5741941, + 50.616047201 + ], + [ + 10.5727574, + 50.615845701 + ], + [ + 10.571508, + 50.615609101 + ], + [ + 10.5704411, + 50.615355801 + ], + [ + 10.5690532, + 50.614932101 + ], + [ + 10.5686617, + 50.614787801 + ], + [ + 10.5679714, + 50.614533401 + ], + [ + 10.5668807, + 50.614045401 + ], + [ + 10.5661388, + 50.613688001 + ], + [ + 10.5646032, + 50.612904401 + ], + [ + 10.563825, + 50.612512101 + ], + [ + 10.5630195, + 50.612145901 + ], + [ + 10.5625429, + 50.611940301 + ], + [ + 10.5620213, + 50.611737101 + ], + [ + 10.5611604, + 50.611410901 + ], + [ + 10.5602393, + 50.611108001 + ], + [ + 10.559187, + 50.610813001 + ], + [ + 10.5580435, + 50.610533901 + ], + [ + 10.5568462, + 50.610282701 + ], + [ + 10.5563993, + 50.610213101 + ], + [ + 10.5553118, + 50.610043901 + ], + [ + 10.5526797, + 50.609769101 + ], + [ + 10.5521347, + 50.609711601 + ], + [ + 10.5507898, + 50.609561701 + ], + [ + 10.5491998, + 50.609306201 + ], + [ + 10.549138, + 50.609296701 + ], + [ + 10.5478681, + 50.608994401 + ], + [ + 10.5466959, + 50.608651501 + ], + [ + 10.5455074, + 50.608223201 + ], + [ + 10.5444852, + 50.607773801 + ], + [ + 10.543978, + 50.607529901 + ], + [ + 10.5435015, + 50.607268001 + ], + [ + 10.5431812, + 50.607083801 + ], + [ + 10.5421189, + 50.606396701 + ], + [ + 10.5406871, + 50.605277501 + ], + [ + 10.5389303, + 50.603703701 + ], + [ + 10.5383756, + 50.603206801 + ], + [ + 10.5379755, + 50.602845001 + ], + [ + 10.5372515, + 50.602262401 + ], + [ + 10.5366994, + 50.601843801 + ], + [ + 10.5355212, + 50.601108801 + ], + [ + 10.5351614, + 50.600889301 + ], + [ + 10.5348097, + 50.600700801 + ], + [ + 10.5341806, + 50.600373401 + ], + [ + 10.5335741, + 50.600093301 + ], + [ + 10.5332907, + 50.599962401 + ], + [ + 10.5320885, + 50.599475001 + ], + [ + 10.5316779, + 50.599342401 + ], + [ + 10.5310138, + 50.599128801 + ], + [ + 10.5301725, + 50.598856801 + ], + [ + 10.5289351, + 50.598535701 + ], + [ + 10.5276041, + 50.598258701 + ], + [ + 10.5267639, + 50.598119801 + ], + [ + 10.5262966, + 50.598047201 + ], + [ + 10.5255053, + 50.597958201 + ], + [ + 10.5247141, + 50.597867801 + ], + [ + 10.5234729, + 50.597770701 + ], + [ + 10.5226099, + 50.597729301 + ], + [ + 10.5217468, + 50.597699101 + ], + [ + 10.5211499, + 50.597689501 + ], + [ + 10.5198577, + 50.597694501 + ], + [ + 10.5178032, + 50.597748601 + ], + [ + 10.5132823, + 50.598015701 + ], + [ + 10.512596, + 50.598057201 + ], + [ + 10.5125554, + 50.598059701 + ], + [ + 10.5114353, + 50.598129601 + ], + [ + 10.5104181, + 50.598151001 + ], + [ + 10.5092447, + 50.598153701 + ], + [ + 10.508062, + 50.598101301 + ], + [ + 10.506784, + 50.598019701 + ], + [ + 10.5055136, + 50.597869701 + ], + [ + 10.5041334, + 50.597644601 + ], + [ + 10.5022805, + 50.597258801 + ], + [ + 10.5012064, + 50.596970601 + ], + [ + 10.4997653, + 50.596516801 + ], + [ + 10.4991595, + 50.596295101 + ], + [ + 10.4985279, + 50.596057301 + ], + [ + 10.4980731, + 50.595863201 + ], + [ + 10.4974772, + 50.595598201 + ], + [ + 10.4966259, + 50.595189801 + ], + [ + 10.4960157, + 50.594868701 + ], + [ + 10.4949711, + 50.594263701 + ], + [ + 10.4947832, + 50.594127301 + ], + [ + 10.4944014, + 50.593858701 + ], + [ + 10.4940559, + 50.593624401 + ], + [ + 10.4936307, + 50.593288601 + ], + [ + 10.4931458, + 50.592874601 + ], + [ + 10.4927776, + 50.592529301 + ], + [ + 10.4924285, + 50.592170001 + ], + [ + 10.4921191, + 50.591827401 + ], + [ + 10.4918188, + 50.591460401 + ], + [ + 10.4915012, + 50.591027001 + ], + [ + 10.4912165, + 50.590605601 + ], + [ + 10.4909708, + 50.590186101 + ], + [ + 10.4907998, + 50.589855101 + ], + [ + 10.4906663, + 50.589574001 + ], + [ + 10.4905063, + 50.589188001 + ], + [ + 10.4900913, + 50.588065801 + ], + [ + 10.4899388, + 50.587710801 + ], + [ + 10.4896494, + 50.587079701 + ], + [ + 10.4895603, + 50.586908901 + ], + [ + 10.4891883, + 50.586266301 + ], + [ + 10.488778, + 50.585644701 + ], + [ + 10.4885587, + 50.585347501 + ], + [ + 10.487923, + 50.584581201 + ], + [ + 10.487519, + 50.584155201 + ], + [ + 10.4869878, + 50.583629301 + ], + [ + 10.4858205, + 50.582507101 + ], + [ + 10.4849159, + 50.581550701 + ], + [ + 10.4845316, + 50.581124901 + ], + [ + 10.4840479, + 50.580568701 + ], + [ + 10.4834814, + 50.579880701 + ], + [ + 10.4829642, + 50.579222801 + ], + [ + 10.4828308, + 50.579036701 + ], + [ + 10.4827068, + 50.578856601 + ], + [ + 10.482391, + 50.578387801 + ], + [ + 10.4820761, + 50.577889701 + ], + [ + 10.481885, + 50.577562201 + ], + [ + 10.4817001, + 50.577226901 + ], + [ + 10.4816461, + 50.577119101 + ], + [ + 10.4814101, + 50.576647701 + ], + [ + 10.4811809, + 50.576168801 + ], + [ + 10.4808379, + 50.575229501 + ], + [ + 10.4807197, + 50.574832001 + ], + [ + 10.4805989, + 50.574439601 + ], + [ + 10.480529, + 50.574194001 + ], + [ + 10.4804034, + 50.573631201 + ], + [ + 10.4803547, + 50.573321001 + ], + [ + 10.4802382, + 50.572313501 + ], + [ + 10.4801966, + 50.571810101 + ], + [ + 10.4801926, + 50.571300701 + ], + [ + 10.4801387, + 50.569183101 + ], + [ + 10.4801199, + 50.568907801 + ], + [ + 10.4800087, + 50.568172701 + ], + [ + 10.4797699, + 50.567211401 + ], + [ + 10.4794047, + 50.566216901 + ], + [ + 10.478974, + 50.565339801 + ], + [ + 10.4784972, + 50.564559501 + ], + [ + 10.4784376, + 50.564474701 + ], + [ + 10.4779083, + 50.563714201 + ], + [ + 10.4772618, + 50.562887401 + ], + [ + 10.4762795, + 50.561730801 + ], + [ + 10.4756107, + 50.560950501 + ], + [ + 10.4753319, + 50.560597501 + ], + [ + 10.4749964, + 50.560142501 + ], + [ + 10.4746936, + 50.559663801 + ], + [ + 10.4744499, + 50.559200401 + ], + [ + 10.4741298, + 50.558400001 + ], + [ + 10.4739951, + 50.557962201 + ], + [ + 10.4739073, + 50.557524401 + ], + [ + 10.4738506, + 50.557116001 + ], + [ + 10.4738295, + 50.556703801 + ], + [ + 10.4738328, + 50.556243101 + ], + [ + 10.4738654, + 50.555839801 + ], + [ + 10.473953, + 50.555313601 + ], + [ + 10.4740331, + 50.555002601 + ], + [ + 10.4742539, + 50.554363801 + ], + [ + 10.474457, + 50.553887701 + ], + [ + 10.4747653, + 50.553312901 + ], + [ + 10.4751392, + 50.552762001 + ], + [ + 10.4753992, + 50.552413101 + ], + [ + 10.4756771, + 50.552079701 + ], + [ + 10.476165, + 50.551522701 + ], + [ + 10.4768268, + 50.550813401 + ], + [ + 10.477399, + 50.550166301 + ], + [ + 10.4777238, + 50.549768501 + ], + [ + 10.4780049, + 50.549378701 + ], + [ + 10.4784141, + 50.548700401 + ], + [ + 10.4784669, + 50.548616401 + ], + [ + 10.4787248, + 50.548052601 + ], + [ + 10.4789792, + 50.547324301 + ], + [ + 10.4791207, + 50.546731501 + ], + [ + 10.4792168, + 50.545933801 + ], + [ + 10.4792183, + 50.545230601 + ], + [ + 10.479132, + 50.544505401 + ], + [ + 10.4788073, + 50.543397501 + ], + [ + 10.4785812, + 50.542880401 + ], + [ + 10.4780226, + 50.541884201 + ], + [ + 10.4777856, + 50.541553101 + ], + [ + 10.4774411, + 50.541069001 + ], + [ + 10.4769747, + 50.540437701 + ], + [ + 10.4763319, + 50.539453001 + ], + [ + 10.4758686, + 50.538517201 + ], + [ + 10.4756348, + 50.537773101 + ], + [ + 10.475474, + 50.536947001 + ], + [ + 10.4754366, + 50.536235101 + ], + [ + 10.475504, + 50.535461501 + ], + [ + 10.4755985, + 50.535020201 + ], + [ + 10.4756871, + 50.534606901 + ], + [ + 10.4759701, + 50.533738401 + ], + [ + 10.4763139, + 50.532799601 + ], + [ + 10.4764647, + 50.532356901 + ], + [ + 10.476576, + 50.531947501 + ], + [ + 10.4766817, + 50.531502501 + ], + [ + 10.4767234, + 50.531245201 + ], + [ + 10.4767534, + 50.530987201 + ], + [ + 10.4767717, + 50.530728801 + ], + [ + 10.4767783, + 50.530470101 + ], + [ + 10.4767724, + 50.530194801 + ], + [ + 10.4767533, + 50.529919801 + ], + [ + 10.4767209, + 50.529645301 + ], + [ + 10.4766754, + 50.529371501 + ], + [ + 10.4766166, + 50.529098701 + ], + [ + 10.4765447, + 50.528827301 + ], + [ + 10.4764598, + 50.528557301 + ], + [ + 10.4763601, + 50.528284401 + ], + [ + 10.476247, + 50.528013601 + ], + [ + 10.4761207, + 50.527745201 + ], + [ + 10.4759813, + 50.527479401 + ], + [ + 10.4758289, + 50.527216501 + ], + [ + 10.4756637, + 50.526956701 + ], + [ + 10.4754858, + 50.526700401 + ], + [ + 10.4752955, + 50.526447701 + ], + [ + 10.4750929, + 50.526198801 + ], + [ + 10.4748781, + 50.525954201 + ], + [ + 10.4746532, + 50.525715701 + ], + [ + 10.4744168, + 50.525481701 + ], + [ + 10.4741691, + 50.525252501 + ], + [ + 10.4739104, + 50.525028201 + ], + [ + 10.4736409, + 50.524809201 + ], + [ + 10.4733609, + 50.524595601 + ], + [ + 10.4730706, + 50.524387501 + ], + [ + 10.4727703, + 50.524185301 + ], + [ + 10.4724603, + 50.523989101 + ], + [ + 10.4721409, + 50.523799101 + ], + [ + 10.4718124, + 50.523615501 + ], + [ + 10.4714752, + 50.523438401 + ], + [ + 10.4711294, + 50.523268001 + ], + [ + 10.4707756, + 50.523104501 + ], + [ + 10.4703062, + 50.522906901 + ], + [ + 10.4700827, + 50.522818001 + ], + [ + 10.4690568, + 50.522457801 + ], + [ + 10.468293, + 50.522225001 + ], + [ + 10.4676911, + 50.522068601 + ], + [ + 10.467114, + 50.521939001 + ], + [ + 10.4656708, + 50.521647501 + ], + [ + 10.4640653, + 50.521325601 + ], + [ + 10.463801, + 50.521265201 + ], + [ + 10.4636407, + 50.521229001 + ], + [ + 10.4630335, + 50.521079701 + ], + [ + 10.4624728, + 50.520936501 + ], + [ + 10.4621126, + 50.520823801 + ], + [ + 10.4615016, + 50.520633201 + ], + [ + 10.4611401, + 50.520494601 + ], + [ + 10.4603992, + 50.520202401 + ], + [ + 10.4598956, + 50.519991801 + ], + [ + 10.4594105, + 50.519748501 + ], + [ + 10.4591111, + 50.519596601 + ], + [ + 10.4585422, + 50.519288501 + ], + [ + 10.4579913, + 50.518990101 + ], + [ + 10.4574113, + 50.518676001 + ], + [ + 10.4566287, + 50.518214801 + ], + [ + 10.4558475, + 50.517688001 + ], + [ + 10.455547, + 50.517470501 + ], + [ + 10.4549127, + 50.517011401 + ], + [ + 10.4543723, + 50.516580601 + ], + [ + 10.4538406, + 50.516145501 + ], + [ + 10.4533177, + 50.515706001 + ], + [ + 10.4527379, + 50.515204701 + ], + [ + 10.4521695, + 50.514698101 + ], + [ + 10.4516127, + 50.514186301 + ], + [ + 10.4510677, + 50.513669501 + ], + [ + 10.4505344, + 50.513147601 + ], + [ + 10.450013, + 50.512621001 + ], + [ + 10.4495037, + 50.512089601 + ], + [ + 10.4490065, + 50.511553501 + ], + [ + 10.4485695, + 50.511067301 + ], + [ + 10.4481425, + 50.510577401 + ], + [ + 10.4477255, + 50.510084101 + ], + [ + 10.4473187, + 50.509587401 + ], + [ + 10.4469221, + 50.509087301 + ], + [ + 10.4465357, + 50.508584001 + ], + [ + 10.4462141, + 50.508132301 + ], + [ + 10.4460758, + 50.507936901 + ], + [ + 10.4455432, + 50.507136201 + ], + [ + 10.4450346, + 50.506329101 + ], + [ + 10.4445503, + 50.505516001 + ], + [ + 10.4440903, + 50.504697201 + ], + [ + 10.4435544, + 50.503529601 + ], + [ + 10.4433724, + 50.503153001 + ], + [ + 10.4429924, + 50.502236401 + ], + [ + 10.44264, + 50.501320201 + ], + [ + 10.4421253, + 50.499795701 + ], + [ + 10.4419854, + 50.499299101 + ], + [ + 10.4418799, + 50.498924401 + ], + [ + 10.4415749, + 50.497580701 + ], + [ + 10.4413893, + 50.496614001 + ], + [ + 10.4412729, + 50.495819701 + ], + [ + 10.4412357, + 50.495500401 + ], + [ + 10.4411967, + 50.495040701 + ], + [ + 10.4411286, + 50.494188801 + ], + [ + 10.4410794, + 50.492811401 + ], + [ + 10.4410738, + 50.491732601 + ], + [ + 10.441176, + 50.490687701 + ], + [ + 10.4412193, + 50.490487001 + ], + [ + 10.4414827, + 50.489265701 + ], + [ + 10.441912, + 50.488051701 + ], + [ + 10.442389, + 50.486941701 + ], + [ + 10.4429242, + 50.486032301 + ], + [ + 10.4430091, + 50.485888101 + ], + [ + 10.4437589, + 50.484740701 + ], + [ + 10.4444606, + 50.483880501 + ], + [ + 10.4456153, + 50.482543201 + ], + [ + 10.4459865, + 50.482142201 + ], + [ + 10.4466633, + 50.481415201 + ], + [ + 10.4477728, + 50.480256601 + ], + [ + 10.4488915, + 50.478961101 + ], + [ + 10.4493958, + 50.478310901 + ], + [ + 10.4501274, + 50.477327201 + ], + [ + 10.4506447, + 50.476543201 + ], + [ + 10.4511024, + 50.475756401 + ], + [ + 10.4514687, + 50.475118801 + ], + [ + 10.4516996, + 50.474674201 + ], + [ + 10.4519572, + 50.474115401 + ], + [ + 10.452166, + 50.473686701 + ], + [ + 10.4523265, + 50.473286701 + ], + [ + 10.4526407, + 50.472515501 + ], + [ + 10.4530555, + 50.471225101 + ], + [ + 10.4531465, + 50.470912501 + ], + [ + 10.4533293, + 50.470201601 + ], + [ + 10.453511, + 50.469251701 + ], + [ + 10.4535794, + 50.468912601 + ], + [ + 10.4536175, + 50.468624501 + ], + [ + 10.4536425, + 50.468346101 + ], + [ + 10.4536951, + 50.467793101 + ], + [ + 10.453734, + 50.467354701 + ], + [ + 10.4537646, + 50.466329101 + ], + [ + 10.4537358, + 50.465249001 + ], + [ + 10.4537012, + 50.464938701 + ], + [ + 10.4536023, + 50.463955701 + ], + [ + 10.4534569, + 50.463035901 + ], + [ + 10.4531808, + 50.461763401 + ], + [ + 10.452877, + 50.460693201 + ], + [ + 10.4524921, + 50.459644401 + ], + [ + 10.4519279, + 50.458353001 + ], + [ + 10.451642, + 50.457763401 + ], + [ + 10.4513701, + 50.457245601 + ], + [ + 10.4506896, + 50.456108601 + ], + [ + 10.4505343, + 50.455858101 + ], + [ + 10.449086, + 50.453702701 + ], + [ + 10.4481188, + 50.452320001 + ], + [ + 10.4480428, + 50.452210401 + ], + [ + 10.447085, + 50.450893201 + ], + [ + 10.446545, + 50.450161401 + ], + [ + 10.4456323, + 50.448973401 + ], + [ + 10.4453963, + 50.448664501 + ], + [ + 10.4449846, + 50.448110001 + ], + [ + 10.4445795, + 50.447596301 + ], + [ + 10.4433009, + 50.446002101 + ], + [ + 10.4427209, + 50.445296201 + ], + [ + 10.4422915, + 50.444756401 + ], + [ + 10.4417683, + 50.444129601 + ], + [ + 10.4415658, + 50.443887001 + ], + [ + 10.4404113, + 50.442550701 + ], + [ + 10.4389769, + 50.441076301 + ], + [ + 10.4377212, + 50.439923201 + ], + [ + 10.4364213, + 50.438819401 + ], + [ + 10.4362659, + 50.438699001 + ], + [ + 10.4357899, + 50.438344501 + ], + [ + 10.4343357, + 50.437302001 + ], + [ + 10.4331495, + 50.436538901 + ], + [ + 10.4313756, + 50.435487601 + ], + [ + 10.430005, + 50.434768601 + ], + [ + 10.429693, + 50.434604901 + ], + [ + 10.4283625, + 50.433967901 + ], + [ + 10.4276617, + 50.433660701 + ], + [ + 10.4267425, + 50.433257801 + ], + [ + 10.4250399, + 50.432588801 + ], + [ + 10.4230941, + 50.431903501 + ], + [ + 10.42151, + 50.431419701 + ], + [ + 10.4209558, + 50.431250401 + ], + [ + 10.4191696, + 50.430776801 + ], + [ + 10.4168321, + 50.430225301 + ], + [ + 10.4154174, + 50.429955401 + ], + [ + 10.414172, + 50.429751101 + ], + [ + 10.4129746, + 50.429553001 + ], + [ + 10.4116258, + 50.429380401 + ], + [ + 10.409321, + 50.429136401 + ], + [ + 10.4081341, + 50.429041101 + ], + [ + 10.4062846, + 50.428942801 + ], + [ + 10.4034225, + 50.428867401 + ], + [ + 10.4015127, + 50.428851601 + ], + [ + 10.4012212, + 50.428859001 + ], + [ + 10.3967086, + 50.428872801 + ], + [ + 10.3950754, + 50.428858401 + ], + [ + 10.393934948, + 50.428857602 + ] + ] + } + }, + { + "identifier": "2025-014278--vi-bs.2025-03-31_09-00-00-000.devi-zus.2025-03-31_09-00-00-000_032.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.64379800006636,10.690757635176322,50.650976437176574,10.690741434115042", + "point": "50.64379800006636,10.690757635176322", + "startLcPosition": "19", + "impact": { + "lower": "Hochwald", + "upper": "Suhl/Zella-Mehlis", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Suhl -> Erfurt", + "title": "A71 | Suhl/Zella-Mehlis - Hochwald", + "coordinate": { + "lat": 50.64379800006636, + "long": 10.690757635176322 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.05.26 von 09:00 bis 16:00 Uhr", + "", + "A71: Suhl -> Erfurt, zwischen 0.2 km hinter AS Suhl/Zella-Mehlis und 1.2 km vor Hochwald", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Wartung der VMT, Au\u00dfenmessstelle Suhl, A71 km 124,504 - 125,210 FR Schweinfurt, A71 km 125,602 - 124,800 FR Sangerhausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.690757635, + 50.643798 + ], + [ + 10.6908214, + 50.643924001 + ], + [ + 10.6909112, + 50.644136301 + ], + [ + 10.6910116, + 50.644411901 + ], + [ + 10.6910231, + 50.644452601 + ], + [ + 10.6910659, + 50.644591101 + ], + [ + 10.6911078, + 50.644739601 + ], + [ + 10.6911481, + 50.644926901 + ], + [ + 10.6912107, + 50.645246901 + ], + [ + 10.6912525, + 50.645890501 + ], + [ + 10.6912298, + 50.646222401 + ], + [ + 10.6911899, + 50.646700101 + ], + [ + 10.690959, + 50.648670001 + ], + [ + 10.6909144, + 50.649096601 + ], + [ + 10.69082, + 50.650036801 + ], + [ + 10.690741434, + 50.650976437 + ] + ] + } + }, + { + "identifier": "2025-014278--vi-bs.2025-03-31_09-00-00-000.devi-zus.2025-03-31_09-00-00-000_032.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.64379800006636,10.690757635176322,50.650976437176574,10.690741434115042", + "point": "50.64379800006636,10.690757635176322", + "startLcPosition": "19", + "impact": { + "lower": "Hochwald", + "upper": "Suhl/Zella-Mehlis", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Suhl -> Erfurt", + "title": "A71 | Suhl/Zella-Mehlis - Hochwald", + "coordinate": { + "lat": 50.64379800006636, + "long": 10.690757635176322 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.05.26 von 09:00 bis 16:00 Uhr", + "", + "A71: Suhl -> Erfurt, zwischen 0.2 km hinter AS Suhl/Zella-Mehlis und 1.2 km vor Hochwald", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Wartung der VMT, Au\u00dfenmessstelle Suhl, A71 km 124,504 - 125,210 FR Schweinfurt, A71 km 125,602 - 124,800 FR Sangerhausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.690757635, + 50.643798 + ], + [ + 10.6908214, + 50.643924001 + ], + [ + 10.6909112, + 50.644136301 + ], + [ + 10.6910116, + 50.644411901 + ], + [ + 10.6910231, + 50.644452601 + ], + [ + 10.6910659, + 50.644591101 + ], + [ + 10.6911078, + 50.644739601 + ], + [ + 10.6911481, + 50.644926901 + ], + [ + 10.6912107, + 50.645246901 + ], + [ + 10.6912525, + 50.645890501 + ], + [ + 10.6912298, + 50.646222401 + ], + [ + 10.6911899, + 50.646700101 + ], + [ + 10.690959, + 50.648670001 + ], + [ + 10.6909144, + 50.649096601 + ], + [ + 10.69082, + 50.650036801 + ], + [ + 10.690741434, + 50.650976437 + ] + ] + } + }, + { + "identifier": "2025-014278--vi-bs.2025-03-31_09-00-00-000.devi-zus.2025-03-31_09-00-00-000_032.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.653619468500544,10.690149364288153,50.647318415019974,10.690951516816117", + "point": "50.653619468500544,10.690149364288153", + "startLcPosition": "20", + "impact": { + "lower": "Suhl/Zella-Mehlis", + "upper": "Hochwald", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Suhl", + "title": "A71 | Hochwald - Suhl/Zella-Mehlis", + "coordinate": { + "lat": 50.653619468500544, + "long": 10.690149364288153 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.05.26 von 09:00 bis 16:00 Uhr", + "", + "A71: Erfurt -> Suhl, zwischen 0.9 km hinter Hochwald und 0.6 km vor AS Suhl/Zella-Mehlis", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Wartung der VMT, Au\u00dfenmessstelle Suhl, A71 km 124,504 - 125,210 FR Schweinfurt, A71 km 125,602 - 124,800 FR Sangerhausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.690149364, + 50.653619469 + ], + [ + 10.6901639, + 50.653484501 + ], + [ + 10.690189, + 50.653280601 + ], + [ + 10.6903329, + 50.652113201 + ], + [ + 10.6905331, + 50.650948301 + ], + [ + 10.6906645, + 50.650013901 + ], + [ + 10.6907487, + 50.649101601 + ], + [ + 10.690951517, + 50.647318415 + ] + ] + } + }, + { + "identifier": "2025-014278--vi-bs.2025-03-31_09-00-00-000.devi-zus.2025-03-31_09-00-00-000_032.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.653619468500544,10.690149364288153,50.647318415019974,10.690951516816117", + "point": "50.653619468500544,10.690149364288153", + "startLcPosition": "20", + "impact": { + "lower": "Suhl/Zella-Mehlis", + "upper": "Hochwald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Suhl", + "title": "A71 | Hochwald - Suhl/Zella-Mehlis", + "coordinate": { + "lat": 50.653619468500544, + "long": 10.690149364288153 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.05.26 von 09:00 bis 16:00 Uhr", + "", + "A71: Erfurt -> Suhl, zwischen 0.9 km hinter Hochwald und 0.6 km vor AS Suhl/Zella-Mehlis", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Wartung der VMT, Au\u00dfenmessstelle Suhl, A71 km 124,504 - 125,210 FR Schweinfurt, A71 km 125,602 - 124,800 FR Sangerhausen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.690149364, + 50.653619469 + ], + [ + 10.6901639, + 50.653484501 + ], + [ + 10.690189, + 50.653280601 + ], + [ + 10.6903329, + 50.652113201 + ], + [ + 10.6905331, + 50.650948301 + ], + [ + 10.6906645, + 50.650013901 + ], + [ + 10.6907487, + 50.649101601 + ], + [ + 10.690951517, + 50.647318415 + ] + ] + } + }, + { + "identifier": "2026-016290--vi-bs.2026-04-01_07-00-00-000.devi-bs.2026-04-01_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.71656061240265,10.799544389679998,50.619524349575535,10.658490386250945", + "point": "50.71656061240265,10.799544389679998", + "startLcPosition": "23", + "impact": { + "lower": "Dreieck Suhl", + "upper": "Alte Burg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Schweinfurt", + "title": "A71 | Alte Burg - Dreieck Suhl", + "coordinate": { + "lat": 50.71656061240265, + "long": 10.799544389679998 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 12:00 Uhr", + "13.04.26 von 07:00 bis 15:00 Uhr", + "14.04.26 von 07:00 bis 15:00 Uhr", + "", + "A71: Erfurt -> Schweinfurt, zwischen 0.4 km hinter Alte Burg und 1.6 km vor AD Dreieck Suhl", + "", + "L\u00e4nge: 16.07 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 Tunnelwartung Tunnelkette KW 14-16" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.79954439, + 50.716560612 + ], + [ + 10.7987428, + 50.716514801 + ], + [ + 10.7986827, + 50.716510001 + ], + [ + 10.7985254, + 50.716497301 + ], + [ + 10.7975434, + 50.716416801 + ], + [ + 10.7964063, + 50.716304801 + ], + [ + 10.7952402, + 50.716175501 + ], + [ + 10.7941189, + 50.716040201 + ], + [ + 10.7935938, + 50.715972001 + ], + [ + 10.792166, + 50.715767401 + ], + [ + 10.7907558, + 50.715548401 + ], + [ + 10.7888911, + 50.715237901 + ], + [ + 10.7870752, + 50.714918201 + ], + [ + 10.7854775, + 50.714612101 + ], + [ + 10.7843316, + 50.714384701 + ], + [ + 10.7831873, + 50.714157501 + ], + [ + 10.7821975, + 50.713947601 + ], + [ + 10.7814028, + 50.713770601 + ], + [ + 10.7807321, + 50.713611801 + ], + [ + 10.7797475, + 50.713368801 + ], + [ + 10.7788727, + 50.713140901 + ], + [ + 10.7781584, + 50.712947201 + ], + [ + 10.7777868, + 50.712845001 + ], + [ + 10.7772008, + 50.712683301 + ], + [ + 10.7767739, + 50.712565401 + ], + [ + 10.7765195, + 50.712496901 + ], + [ + 10.7761472, + 50.712397401 + ], + [ + 10.7737058, + 50.711641901 + ], + [ + 10.7709611, + 50.710703401 + ], + [ + 10.7682312, + 50.709704301 + ], + [ + 10.7622684, + 50.707261701 + ], + [ + 10.7612817, + 50.706837101 + ], + [ + 10.7560823, + 50.704596701 + ], + [ + 10.751313, + 50.702527101 + ], + [ + 10.7470532, + 50.700666701 + ], + [ + 10.7454274, + 50.699962401 + ], + [ + 10.7405418, + 50.697865401 + ], + [ + 10.736557, + 50.696108001 + ], + [ + 10.7345673, + 50.695177801 + ], + [ + 10.7326141, + 50.694206601 + ], + [ + 10.7309298, + 50.693284301 + ], + [ + 10.7279833, + 50.691517001 + ], + [ + 10.7230779, + 50.688267001 + ], + [ + 10.719136, + 50.685795601 + ], + [ + 10.7175716, + 50.684876301 + ], + [ + 10.7160399, + 50.684047501 + ], + [ + 10.7145508, + 50.683291301 + ], + [ + 10.7118347, + 50.682042401 + ], + [ + 10.7092104, + 50.681021501 + ], + [ + 10.7065429, + 50.680014801 + ], + [ + 10.7033292, + 50.678916401 + ], + [ + 10.7003203, + 50.677892201 + ], + [ + 10.6996018, + 50.677646401 + ], + [ + 10.6971399, + 50.676763201 + ], + [ + 10.6955981, + 50.676103901 + ], + [ + 10.6945067, + 50.675564301 + ], + [ + 10.693634, + 50.675057401 + ], + [ + 10.6929039, + 50.674580701 + ], + [ + 10.6921541, + 50.674007201 + ], + [ + 10.6915049, + 50.673432601 + ], + [ + 10.6909367, + 50.672859901 + ], + [ + 10.6904288, + 50.672233301 + ], + [ + 10.6900019, + 50.671579001 + ], + [ + 10.6897264, + 50.671057901 + ], + [ + 10.6894421, + 50.670535701 + ], + [ + 10.6892195, + 50.669980201 + ], + [ + 10.6889885, + 50.669374901 + ], + [ + 10.6889196, + 50.669104601 + ], + [ + 10.6888745, + 50.668900701 + ], + [ + 10.6888339, + 50.668667001 + ], + [ + 10.6887879, + 50.668341601 + ], + [ + 10.6887549, + 50.668021301 + ], + [ + 10.6887309, + 50.667714401 + ], + [ + 10.6887265, + 50.667377001 + ], + [ + 10.6887247, + 50.667178201 + ], + [ + 10.6887253, + 50.666935701 + ], + [ + 10.688734, + 50.666585501 + ], + [ + 10.6887885, + 50.665707001 + ], + [ + 10.6888161, + 50.665449701 + ], + [ + 10.6889235, + 50.664434301 + ], + [ + 10.6889714, + 50.664036501 + ], + [ + 10.6890182, + 50.663616301 + ], + [ + 10.6890568, + 50.663297401 + ], + [ + 10.6890702, + 50.663186301 + ], + [ + 10.6890735, + 50.663159301 + ], + [ + 10.6890834, + 50.663077501 + ], + [ + 10.6890984, + 50.662953101 + ], + [ + 10.6891239, + 50.662778101 + ], + [ + 10.6891825, + 50.662375801 + ], + [ + 10.6892719, + 50.661765201 + ], + [ + 10.6897024, + 50.657769301 + ], + [ + 10.6901639, + 50.653484501 + ], + [ + 10.690189, + 50.653280601 + ], + [ + 10.6903329, + 50.652113201 + ], + [ + 10.6905331, + 50.650948301 + ], + [ + 10.6906645, + 50.650013901 + ], + [ + 10.6907487, + 50.649101601 + ], + [ + 10.6910206, + 50.646711001 + ], + [ + 10.6910775, + 50.646219201 + ], + [ + 10.6910871, + 50.645898901 + ], + [ + 10.6910574, + 50.645296601 + ], + [ + 10.6909781, + 50.644877501 + ], + [ + 10.6909104, + 50.644606701 + ], + [ + 10.690873, + 50.644475501 + ], + [ + 10.690774, + 50.644198401 + ], + [ + 10.6907043, + 50.644026501 + ], + [ + 10.6904587, + 50.643517901 + ], + [ + 10.6902997, + 50.643274501 + ], + [ + 10.6900606, + 50.642923101 + ], + [ + 10.6897926, + 50.642574301 + ], + [ + 10.689662, + 50.642419801 + ], + [ + 10.6892889, + 50.642031301 + ], + [ + 10.6891757, + 50.641932201 + ], + [ + 10.6888917, + 50.641681201 + ], + [ + 10.6885894, + 50.641433501 + ], + [ + 10.6881602, + 50.641123701 + ], + [ + 10.6877051, + 50.640833401 + ], + [ + 10.6872458, + 50.640570001 + ], + [ + 10.6869911, + 50.640439101 + ], + [ + 10.6867751, + 50.640333301 + ], + [ + 10.6866454, + 50.640271601 + ], + [ + 10.6863128, + 50.640121301 + ], + [ + 10.6858133, + 50.639916101 + ], + [ + 10.6851544, + 50.639683101 + ], + [ + 10.6840944, + 50.639332701 + ], + [ + 10.6836612, + 50.639180001 + ], + [ + 10.6830631, + 50.638971101 + ], + [ + 10.6809906, + 50.638216201 + ], + [ + 10.675814, + 50.635536701 + ], + [ + 10.6737643, + 50.634051301 + ], + [ + 10.6715493, + 50.632190101 + ], + [ + 10.6694484, + 50.630425001 + ], + [ + 10.6677411, + 50.629005301 + ], + [ + 10.6674374, + 50.628740701 + ], + [ + 10.6637083, + 50.625581301 + ], + [ + 10.6625519, + 50.624595901 + ], + [ + 10.6596765, + 50.621432001 + ], + [ + 10.6588375, + 50.620179001 + ], + [ + 10.6586728, + 50.619866601 + ], + [ + 10.6585386, + 50.619619401 + ], + [ + 10.658490386, + 50.61952435 + ] + ] + } + }, + { + "identifier": "2026-016951--vi-bs.2026-04-09_08-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.713112023336215,10.93190715027749,50.77436245413829,11.004313868802848", + "point": "50.713112023336215,10.93190715027749", + "startLcPosition": "27", + "impact": { + "lower": "Behringen", + "upper": "Ilmenau-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Suhl -> Erfurt", + "title": "A71 | Ilmenau-West - Behringen", + "coordinate": { + "lat": 50.713112023336215, + "long": 10.93190715027749 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 09.04.26 und dem 17.04.26 von 08:00 bis 18:00 Uhr.", + "", + "A71: Suhl -> Erfurt, zwischen 2.7 km hinter AS Ilmenau-West und 0.3 km vor Behringen", + "", + "L\u00e4nge: 10 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 2026-016951_RF-SGH_km_103,0-93,0_von Ilmenau-West (AS) nach Behringen (Tunnel) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.93190715, + 50.713112023 + ], + [ + 10.9327419, + 50.712884501 + ], + [ + 10.9347141, + 50.712345701 + ], + [ + 10.9360313, + 50.711985001 + ], + [ + 10.936926, + 50.711746601 + ], + [ + 10.9373537, + 50.711640601 + ], + [ + 10.9380523, + 50.711473201 + ], + [ + 10.9386825, + 50.711329601 + ], + [ + 10.939332, + 50.711204701 + ], + [ + 10.9400115, + 50.711072301 + ], + [ + 10.940582, + 50.710987701 + ], + [ + 10.9413449, + 50.710875201 + ], + [ + 10.9420203, + 50.710788001 + ], + [ + 10.9426931, + 50.710712201 + ], + [ + 10.9437654, + 50.710619201 + ], + [ + 10.9445618, + 50.710569401 + ], + [ + 10.9455568, + 50.710529301 + ], + [ + 10.9463123, + 50.710518601 + ], + [ + 10.9472754, + 50.710514301 + ], + [ + 10.9483467, + 50.710548201 + ], + [ + 10.9491803, + 50.710589301 + ], + [ + 10.9502693, + 50.710668601 + ], + [ + 10.9511499, + 50.710756701 + ], + [ + 10.951805, + 50.710835301 + ], + [ + 10.9526525, + 50.710958801 + ], + [ + 10.9533293, + 50.711072001 + ], + [ + 10.9541686, + 50.711217401 + ], + [ + 10.955402, + 50.711476501 + ], + [ + 10.956294, + 50.711704801 + ], + [ + 10.9571336, + 50.711922901 + ], + [ + 10.9581875, + 50.712244201 + ], + [ + 10.9591178, + 50.712547901 + ], + [ + 10.9601792, + 50.712935401 + ], + [ + 10.9605998, + 50.713093901 + ], + [ + 10.9613216, + 50.713382701 + ], + [ + 10.9620728, + 50.713705601 + ], + [ + 10.9626907, + 50.713982501 + ], + [ + 10.9628189, + 50.714039901 + ], + [ + 10.9632716, + 50.714252601 + ], + [ + 10.9645161, + 50.714868401 + ], + [ + 10.9651025, + 50.715166601 + ], + [ + 10.9653432, + 50.715289601 + ], + [ + 10.9654942, + 50.715374601 + ], + [ + 10.9660058, + 50.715655901 + ], + [ + 10.967312, + 50.716404501 + ], + [ + 10.9681478, + 50.716904201 + ], + [ + 10.9689656, + 50.717414501 + ], + [ + 10.9697503, + 50.717913101 + ], + [ + 10.9708223, + 50.718629701 + ], + [ + 10.9708741, + 50.718664901 + ], + [ + 10.9711532, + 50.718858601 + ], + [ + 10.9714939, + 50.719095201 + ], + [ + 10.97206, + 50.719488101 + ], + [ + 10.9731419, + 50.720285501 + ], + [ + 10.9742048, + 50.721090901 + ], + [ + 10.9752327, + 50.721925701 + ], + [ + 10.9757374, + 50.722348601 + ], + [ + 10.976598, + 50.723091201 + ], + [ + 10.9773285, + 50.723751001 + ], + [ + 10.977904, + 50.724282001 + ], + [ + 10.9784608, + 50.724816601 + ], + [ + 10.9795421, + 50.725898301 + ], + [ + 10.980561, + 50.727009801 + ], + [ + 10.9813104, + 50.727850701 + ], + [ + 10.9815912, + 50.728187201 + ], + [ + 10.9827656, + 50.729629501 + ], + [ + 10.9829756, + 50.729918201 + ], + [ + 10.9837489, + 50.730992901 + ], + [ + 10.9839899, + 50.731335301 + ], + [ + 10.9842885, + 50.731761801 + ], + [ + 10.9848125, + 50.732572201 + ], + [ + 10.9855449, + 50.733760701 + ], + [ + 10.9859978, + 50.734529201 + ], + [ + 10.9864326, + 50.735277901 + ], + [ + 10.987043, + 50.736351101 + ], + [ + 10.9876781, + 50.737493601 + ], + [ + 10.9878911, + 50.737869901 + ], + [ + 10.9888399, + 50.739538101 + ], + [ + 10.9896042, + 50.740908701 + ], + [ + 10.9899679, + 50.741510201 + ], + [ + 10.990191, + 50.741839201 + ], + [ + 10.9904002, + 50.742124601 + ], + [ + 10.9906255, + 50.742419901 + ], + [ + 10.9908773, + 50.742710701 + ], + [ + 10.9911112, + 50.742975901 + ], + [ + 10.9913645, + 50.743236401 + ], + [ + 10.991643, + 50.743509101 + ], + [ + 10.9919361, + 50.743777201 + ], + [ + 10.9922348, + 50.744032001 + ], + [ + 10.9925407, + 50.744276201 + ], + [ + 10.9927286, + 50.744424901 + ], + [ + 10.9932376, + 50.744790801 + ], + [ + 10.9939143, + 50.745231901 + ], + [ + 10.9946412, + 50.745650401 + ], + [ + 10.9947777, + 50.745722701 + ], + [ + 10.9957832, + 50.746255001 + ], + [ + 10.9966747, + 50.746732601 + ], + [ + 10.9975509, + 50.747222401 + ], + [ + 10.9976999, + 50.747306101 + ], + [ + 10.9987998, + 50.747997001 + ], + [ + 10.9989874, + 50.748114901 + ], + [ + 10.9997054, + 50.748640701 + ], + [ + 11.0003547, + 50.749138501 + ], + [ + 11.0011057, + 50.749837601 + ], + [ + 11.0018245, + 50.750536801 + ], + [ + 11.0019102, + 50.750633801 + ], + [ + 11.0023199, + 50.751128301 + ], + [ + 11.0025998, + 50.751466201 + ], + [ + 11.0030166, + 50.752022401 + ], + [ + 11.0033013, + 50.752455401 + ], + [ + 11.0036006, + 50.752948801 + ], + [ + 11.0040333, + 50.753770901 + ], + [ + 11.0042528, + 50.754277701 + ], + [ + 11.0044408, + 50.754789101 + ], + [ + 11.004593, + 50.755261401 + ], + [ + 11.0047199, + 50.755744501 + ], + [ + 11.0048769, + 50.756528701 + ], + [ + 11.0049154, + 50.756849301 + ], + [ + 11.0049511, + 50.757303901 + ], + [ + 11.0049648, + 50.758091401 + ], + [ + 11.004893, + 50.758994901 + ], + [ + 11.0047588, + 50.759880501 + ], + [ + 11.0045175, + 50.760874001 + ], + [ + 11.004333, + 50.761465301 + ], + [ + 11.0040347, + 50.762421301 + ], + [ + 11.0037952, + 50.763373001 + ], + [ + 11.0036707, + 50.763949301 + ], + [ + 11.003575, + 50.764427301 + ], + [ + 11.0034618, + 50.765250901 + ], + [ + 11.0034194, + 50.765726601 + ], + [ + 11.0033959, + 50.766062301 + ], + [ + 11.0033865, + 50.767062301 + ], + [ + 11.0034429, + 50.768024501 + ], + [ + 11.003597, + 50.769719001 + ], + [ + 11.003724, + 50.770557801 + ], + [ + 11.0038583, + 50.771525601 + ], + [ + 11.004005, + 50.772440001 + ], + [ + 11.004177, + 50.773316001 + ], + [ + 11.004313869, + 50.774362454 + ] + ] + } + }, + { + "identifier": "2026-012501--vi-bs.2026-04-07_06-30-00-000.devi-bs.2026-03-12_06-00-00-000_001.de35", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.715394325573214,10.96528388399981,50.61271642272275,10.655000201332168", + "point": "50.715394325573214,10.96528388399981", + "startLcPosition": "29", + "impact": { + "lower": "Dreieck Suhl", + "upper": "Stadtilm", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Schweinfurt", + "title": "A71 | Stadtilm - Dreieck Suhl", + "coordinate": { + "lat": 50.715394325573214, + "long": 10.96528388399981 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 06:30 bis 15:30 Uhr.", + "", + "A71: Erfurt -> Schweinfurt, zwischen 4.6 km hinter AS Stadtilm und 0.8 km vor AD Dreieck Suhl", + "", + "L\u00e4nge: 29.53 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 Reinigungsarbeiten Entw\u00e4sserung AM ZM" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.965283884, + 50.715394326 + ], + [ + 10.9647243, + 50.715093501 + ], + [ + 10.9644182, + 50.714933301 + ], + [ + 10.9635465, + 50.714509001 + ], + [ + 10.9623987, + 50.713961601 + ], + [ + 10.9612362, + 50.713464101 + ], + [ + 10.9607312, + 50.713259001 + ], + [ + 10.9600972, + 50.713008901 + ], + [ + 10.9593414, + 50.712739001 + ], + [ + 10.9585565, + 50.712469001 + ], + [ + 10.9578199, + 50.712238401 + ], + [ + 10.9570755, + 50.712017701 + ], + [ + 10.9565204, + 50.711864901 + ], + [ + 10.9560118, + 50.711733401 + ], + [ + 10.955361, + 50.711579301 + ], + [ + 10.9541914, + 50.711324701 + ], + [ + 10.9533008, + 50.711162201 + ], + [ + 10.9526117, + 50.711054001 + ], + [ + 10.9517884, + 50.710938201 + ], + [ + 10.9511462, + 50.710859701 + ], + [ + 10.9505545, + 50.710796601 + ], + [ + 10.9503177, + 50.710775201 + ], + [ + 10.9491827, + 50.710688901 + ], + [ + 10.9486779, + 50.710659901 + ], + [ + 10.9479185, + 50.710631701 + ], + [ + 10.9472468, + 50.710618301 + ], + [ + 10.9463069, + 50.710616501 + ], + [ + 10.9458302, + 50.710619201 + ], + [ + 10.9450726, + 50.710646301 + ], + [ + 10.9442194, + 50.710687301 + ], + [ + 10.94323, + 50.710762001 + ], + [ + 10.9422805, + 50.710858801 + ], + [ + 10.9412998, + 50.710982201 + ], + [ + 10.9407477, + 50.711061801 + ], + [ + 10.940068, + 50.711171501 + ], + [ + 10.9394002, + 50.711296001 + ], + [ + 10.9387286, + 50.711428601 + ], + [ + 10.9373733, + 50.711737901 + ], + [ + 10.9361032, + 50.712072601 + ], + [ + 10.9348589, + 50.712415401 + ], + [ + 10.932806, + 50.712974901 + ], + [ + 10.9304543, + 50.713616001 + ], + [ + 10.9293374, + 50.713903701 + ], + [ + 10.9285659, + 50.714081801 + ], + [ + 10.9278163, + 50.714233701 + ], + [ + 10.9272315, + 50.714338501 + ], + [ + 10.9266467, + 50.714433501 + ], + [ + 10.9259573, + 50.714530701 + ], + [ + 10.925051, + 50.714641201 + ], + [ + 10.924229, + 50.714708201 + ], + [ + 10.9236108, + 50.714749101 + ], + [ + 10.9229622, + 50.714779901 + ], + [ + 10.9222994, + 50.714795201 + ], + [ + 10.921526, + 50.714802001 + ], + [ + 10.92051, + 50.714781801 + ], + [ + 10.9197712, + 50.714747901 + ], + [ + 10.9190363, + 50.714697701 + ], + [ + 10.9183028, + 50.714630001 + ], + [ + 10.9175822, + 50.714547501 + ], + [ + 10.9167658, + 50.714437401 + ], + [ + 10.9156411, + 50.714253801 + ], + [ + 10.9140962, + 50.713989101 + ], + [ + 10.911787, + 50.713595601 + ], + [ + 10.91034, + 50.713348301 + ], + [ + 10.9082235, + 50.712982501 + ], + [ + 10.9048291, + 50.712401301 + ], + [ + 10.9027152, + 50.712037601 + ], + [ + 10.9005149, + 50.711665001 + ], + [ + 10.8988242, + 50.711422001 + ], + [ + 10.8979956, + 50.711332101 + ], + [ + 10.8969668, + 50.711240801 + ], + [ + 10.8964214, + 50.711206301 + ], + [ + 10.8959747, + 50.711184101 + ], + [ + 10.8953802, + 50.711160301 + ], + [ + 10.8948598, + 50.711145401 + ], + [ + 10.8943793, + 50.711135701 + ], + [ + 10.8934522, + 50.711135401 + ], + [ + 10.8929705, + 50.711153101 + ], + [ + 10.8925018, + 50.711165201 + ], + [ + 10.8916171, + 50.711207601 + ], + [ + 10.8908565, + 50.711254301 + ], + [ + 10.8901343, + 50.711321101 + ], + [ + 10.8896101, + 50.711374001 + ], + [ + 10.8886814, + 50.711488801 + ], + [ + 10.8878243, + 50.711623601 + ], + [ + 10.8869155, + 50.711772001 + ], + [ + 10.8860183, + 50.711949601 + ], + [ + 10.8849192, + 50.712197801 + ], + [ + 10.8837538, + 50.712503101 + ], + [ + 10.8831802, + 50.712672201 + ], + [ + 10.8826823, + 50.712826301 + ], + [ + 10.8818011, + 50.713119301 + ], + [ + 10.8809596, + 50.713422601 + ], + [ + 10.8806487, + 50.713542601 + ], + [ + 10.8800114, + 50.713799401 + ], + [ + 10.8791728, + 50.714166601 + ], + [ + 10.8785555, + 50.714456401 + ], + [ + 10.877937, + 50.714758101 + ], + [ + 10.8770912, + 50.715176701 + ], + [ + 10.872522, + 50.717489801 + ], + [ + 10.8709698, + 50.718242501 + ], + [ + 10.8669137, + 50.720242601 + ], + [ + 10.8658952, + 50.720745701 + ], + [ + 10.8647247, + 50.721328001 + ], + [ + 10.8635194, + 50.721922901 + ], + [ + 10.8624834, + 50.722424601 + ], + [ + 10.861636, + 50.722821801 + ], + [ + 10.8608099, + 50.723188501 + ], + [ + 10.8599862, + 50.723541701 + ], + [ + 10.8593202, + 50.723808901 + ], + [ + 10.8586547, + 50.724056401 + ], + [ + 10.8578073, + 50.724355901 + ], + [ + 10.856899, + 50.724640901 + ], + [ + 10.8562073, + 50.724834401 + ], + [ + 10.8556308, + 50.724985501 + ], + [ + 10.85504, + 50.725124501 + ], + [ + 10.8542739, + 50.725296301 + ], + [ + 10.8535767, + 50.725429501 + ], + [ + 10.8528753, + 50.725542501 + ], + [ + 10.8521713, + 50.725646901 + ], + [ + 10.8512937, + 50.725749001 + ], + [ + 10.8511546, + 50.725765501 + ], + [ + 10.8500982, + 50.725850301 + ], + [ + 10.8494031, + 50.725889001 + ], + [ + 10.8488851, + 50.725911901 + ], + [ + 10.8483742, + 50.725925001 + ], + [ + 10.8480949, + 50.725924701 + ], + [ + 10.8478105, + 50.725924501 + ], + [ + 10.8475064, + 50.725918201 + ], + [ + 10.8470982, + 50.725918601 + ], + [ + 10.8464805, + 50.725896001 + ], + [ + 10.8462302, + 50.725886301 + ], + [ + 10.8460848, + 50.725878901 + ], + [ + 10.8456588, + 50.725853401 + ], + [ + 10.8449012, + 50.725797001 + ], + [ + 10.8445628, + 50.725766301 + ], + [ + 10.84409, + 50.725715101 + ], + [ + 10.8436269, + 50.725658801 + ], + [ + 10.8430124, + 50.725572301 + ], + [ + 10.8424979, + 50.725491601 + ], + [ + 10.8419696, + 50.725401901 + ], + [ + 10.8414382, + 50.725300701 + ], + [ + 10.8408392, + 50.725178201 + ], + [ + 10.8403016, + 50.725049401 + ], + [ + 10.840065, + 50.724992401 + ], + [ + 10.8395157, + 50.724852401 + ], + [ + 10.839122, + 50.724742301 + ], + [ + 10.8385023, + 50.724559201 + ], + [ + 10.8383093, + 50.724501601 + ], + [ + 10.8376895, + 50.724305101 + ], + [ + 10.8373043, + 50.724182101 + ], + [ + 10.8370382, + 50.724086001 + ], + [ + 10.8367085, + 50.723969801 + ], + [ + 10.8366771, + 50.723958501 + ], + [ + 10.8364654, + 50.723885201 + ], + [ + 10.8349055, + 50.723288301 + ], + [ + 10.8342438, + 50.723021401 + ], + [ + 10.8325363, + 50.722306401 + ], + [ + 10.8310582, + 50.721679801 + ], + [ + 10.8295717, + 50.721067101 + ], + [ + 10.8289083, + 50.720800301 + ], + [ + 10.8285427, + 50.720656901 + ], + [ + 10.8282146, + 50.720533101 + ], + [ + 10.8281155, + 50.720495801 + ], + [ + 10.8279838, + 50.720448301 + ], + [ + 10.8273878, + 50.720232901 + ], + [ + 10.8267993, + 50.720027701 + ], + [ + 10.8261989, + 50.719826301 + ], + [ + 10.8255706, + 50.719623401 + ], + [ + 10.8249109, + 50.719425201 + ], + [ + 10.8243181, + 50.719250801 + ], + [ + 10.8235304, + 50.719032101 + ], + [ + 10.8228195, + 50.718847701 + ], + [ + 10.8223457, + 50.718729601 + ], + [ + 10.8218509, + 50.718612701 + ], + [ + 10.820757, + 50.718367901 + ], + [ + 10.8206576, + 50.718346601 + ], + [ + 10.8197089, + 50.718155001 + ], + [ + 10.818887, + 50.718001901 + ], + [ + 10.8181579, + 50.717880801 + ], + [ + 10.81733, + 50.717748301 + ], + [ + 10.8159248, + 50.717556901 + ], + [ + 10.8153437, + 50.717485901 + ], + [ + 10.8142024, + 50.717372601 + ], + [ + 10.8135352, + 50.717325501 + ], + [ + 10.8125953, + 50.717276601 + ], + [ + 10.811978, + 50.717243001 + ], + [ + 10.8115544, + 50.717220701 + ], + [ + 10.8110745, + 50.717190401 + ], + [ + 10.8082601, + 50.717037801 + ], + [ + 10.8010755, + 50.716648101 + ], + [ + 10.7987428, + 50.716514801 + ], + [ + 10.7986827, + 50.716510001 + ], + [ + 10.7985254, + 50.716497301 + ], + [ + 10.7975434, + 50.716416801 + ], + [ + 10.7964063, + 50.716304801 + ], + [ + 10.7952402, + 50.716175501 + ], + [ + 10.7941189, + 50.716040201 + ], + [ + 10.7935938, + 50.715972001 + ], + [ + 10.792166, + 50.715767401 + ], + [ + 10.7907558, + 50.715548401 + ], + [ + 10.7888911, + 50.715237901 + ], + [ + 10.7870752, + 50.714918201 + ], + [ + 10.7854775, + 50.714612101 + ], + [ + 10.7843316, + 50.714384701 + ], + [ + 10.7831873, + 50.714157501 + ], + [ + 10.7821975, + 50.713947601 + ], + [ + 10.7814028, + 50.713770601 + ], + [ + 10.7807321, + 50.713611801 + ], + [ + 10.7797475, + 50.713368801 + ], + [ + 10.7788727, + 50.713140901 + ], + [ + 10.7781584, + 50.712947201 + ], + [ + 10.7777868, + 50.712845001 + ], + [ + 10.7772008, + 50.712683301 + ], + [ + 10.7767739, + 50.712565401 + ], + [ + 10.7765195, + 50.712496901 + ], + [ + 10.7761472, + 50.712397401 + ], + [ + 10.7737058, + 50.711641901 + ], + [ + 10.7709611, + 50.710703401 + ], + [ + 10.7682312, + 50.709704301 + ], + [ + 10.7622684, + 50.707261701 + ], + [ + 10.7612817, + 50.706837101 + ], + [ + 10.7560823, + 50.704596701 + ], + [ + 10.751313, + 50.702527101 + ], + [ + 10.7470532, + 50.700666701 + ], + [ + 10.7454274, + 50.699962401 + ], + [ + 10.7405418, + 50.697865401 + ], + [ + 10.736557, + 50.696108001 + ], + [ + 10.7345673, + 50.695177801 + ], + [ + 10.7326141, + 50.694206601 + ], + [ + 10.7309298, + 50.693284301 + ], + [ + 10.7279833, + 50.691517001 + ], + [ + 10.7230779, + 50.688267001 + ], + [ + 10.719136, + 50.685795601 + ], + [ + 10.7175716, + 50.684876301 + ], + [ + 10.7160399, + 50.684047501 + ], + [ + 10.7145508, + 50.683291301 + ], + [ + 10.7118347, + 50.682042401 + ], + [ + 10.7092104, + 50.681021501 + ], + [ + 10.7065429, + 50.680014801 + ], + [ + 10.7033292, + 50.678916401 + ], + [ + 10.7003203, + 50.677892201 + ], + [ + 10.6996018, + 50.677646401 + ], + [ + 10.6971399, + 50.676763201 + ], + [ + 10.6955981, + 50.676103901 + ], + [ + 10.6945067, + 50.675564301 + ], + [ + 10.693634, + 50.675057401 + ], + [ + 10.6929039, + 50.674580701 + ], + [ + 10.6921541, + 50.674007201 + ], + [ + 10.6915049, + 50.673432601 + ], + [ + 10.6909367, + 50.672859901 + ], + [ + 10.6904288, + 50.672233301 + ], + [ + 10.6900019, + 50.671579001 + ], + [ + 10.6897264, + 50.671057901 + ], + [ + 10.6894421, + 50.670535701 + ], + [ + 10.6892195, + 50.669980201 + ], + [ + 10.6889885, + 50.669374901 + ], + [ + 10.6889196, + 50.669104601 + ], + [ + 10.6888745, + 50.668900701 + ], + [ + 10.6888339, + 50.668667001 + ], + [ + 10.6887879, + 50.668341601 + ], + [ + 10.6887549, + 50.668021301 + ], + [ + 10.6887309, + 50.667714401 + ], + [ + 10.6887265, + 50.667377001 + ], + [ + 10.6887247, + 50.667178201 + ], + [ + 10.6887253, + 50.666935701 + ], + [ + 10.688734, + 50.666585501 + ], + [ + 10.6887885, + 50.665707001 + ], + [ + 10.6888161, + 50.665449701 + ], + [ + 10.6889235, + 50.664434301 + ], + [ + 10.6889714, + 50.664036501 + ], + [ + 10.6890182, + 50.663616301 + ], + [ + 10.6890568, + 50.663297401 + ], + [ + 10.6890702, + 50.663186301 + ], + [ + 10.6890735, + 50.663159301 + ], + [ + 10.6890834, + 50.663077501 + ], + [ + 10.6890984, + 50.662953101 + ], + [ + 10.6891239, + 50.662778101 + ], + [ + 10.6891825, + 50.662375801 + ], + [ + 10.6892719, + 50.661765201 + ], + [ + 10.6897024, + 50.657769301 + ], + [ + 10.6901639, + 50.653484501 + ], + [ + 10.690189, + 50.653280601 + ], + [ + 10.6903329, + 50.652113201 + ], + [ + 10.6905331, + 50.650948301 + ], + [ + 10.6906645, + 50.650013901 + ], + [ + 10.6907487, + 50.649101601 + ], + [ + 10.6910206, + 50.646711001 + ], + [ + 10.6910775, + 50.646219201 + ], + [ + 10.6910871, + 50.645898901 + ], + [ + 10.6910574, + 50.645296601 + ], + [ + 10.6909781, + 50.644877501 + ], + [ + 10.6909104, + 50.644606701 + ], + [ + 10.690873, + 50.644475501 + ], + [ + 10.690774, + 50.644198401 + ], + [ + 10.6907043, + 50.644026501 + ], + [ + 10.6904587, + 50.643517901 + ], + [ + 10.6902997, + 50.643274501 + ], + [ + 10.6900606, + 50.642923101 + ], + [ + 10.6897926, + 50.642574301 + ], + [ + 10.689662, + 50.642419801 + ], + [ + 10.6892889, + 50.642031301 + ], + [ + 10.6891757, + 50.641932201 + ], + [ + 10.6888917, + 50.641681201 + ], + [ + 10.6885894, + 50.641433501 + ], + [ + 10.6881602, + 50.641123701 + ], + [ + 10.6877051, + 50.640833401 + ], + [ + 10.6872458, + 50.640570001 + ], + [ + 10.6869911, + 50.640439101 + ], + [ + 10.6867751, + 50.640333301 + ], + [ + 10.6866454, + 50.640271601 + ], + [ + 10.6863128, + 50.640121301 + ], + [ + 10.6858133, + 50.639916101 + ], + [ + 10.6851544, + 50.639683101 + ], + [ + 10.6840944, + 50.639332701 + ], + [ + 10.6836612, + 50.639180001 + ], + [ + 10.6830631, + 50.638971101 + ], + [ + 10.6809906, + 50.638216201 + ], + [ + 10.675814, + 50.635536701 + ], + [ + 10.6737643, + 50.634051301 + ], + [ + 10.6715493, + 50.632190101 + ], + [ + 10.6694484, + 50.630425001 + ], + [ + 10.6677411, + 50.629005301 + ], + [ + 10.6674374, + 50.628740701 + ], + [ + 10.6637083, + 50.625581301 + ], + [ + 10.6625519, + 50.624595901 + ], + [ + 10.6596765, + 50.621432001 + ], + [ + 10.6588375, + 50.620179001 + ], + [ + 10.6586728, + 50.619866601 + ], + [ + 10.6585386, + 50.619619401 + ], + [ + 10.6582932, + 50.619135601 + ], + [ + 10.6580912, + 50.618701501 + ], + [ + 10.6578219, + 50.618076901 + ], + [ + 10.6575402, + 50.617291501 + ], + [ + 10.657223, + 50.616425901 + ], + [ + 10.6570619, + 50.615990701 + ], + [ + 10.6568795, + 50.615575701 + ], + [ + 10.6567541, + 50.615285901 + ], + [ + 10.6566055, + 50.614940901 + ], + [ + 10.6564319, + 50.614598301 + ], + [ + 10.656344, + 50.614447201 + ], + [ + 10.6561801, + 50.614170401 + ], + [ + 10.6558768, + 50.613724801 + ], + [ + 10.6556514, + 50.613437301 + ], + [ + 10.6554116, + 50.613157001 + ], + [ + 10.6552591, + 50.612980001 + ], + [ + 10.655000201, + 50.612716423 + ] + ] + } + }, + { + "identifier": "2026-012501--vi-bs.2026-04-07_06-30-00-000.devi-bs.2026-03-12_06-00-00-000_001.de33", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.715394325573214,10.96528388399981,50.61271642272275,10.655000201332168", + "point": "50.715394325573214,10.96528388399981", + "startLcPosition": "29", + "impact": { + "lower": "Dreieck Suhl", + "upper": "Stadtilm", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Schweinfurt", + "title": "A71 | Stadtilm - Dreieck Suhl", + "coordinate": { + "lat": 50.715394325573214, + "long": 10.96528388399981 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 06:30 bis 15:30 Uhr.", + "", + "A71: Erfurt -> Schweinfurt, zwischen 4.6 km hinter AS Stadtilm und 0.8 km vor AD Dreieck Suhl", + "", + "L\u00e4nge: 29.53 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 Reinigungsarbeiten Entw\u00e4sserung AM ZM" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.965283884, + 50.715394326 + ], + [ + 10.9647243, + 50.715093501 + ], + [ + 10.9644182, + 50.714933301 + ], + [ + 10.9635465, + 50.714509001 + ], + [ + 10.9623987, + 50.713961601 + ], + [ + 10.9612362, + 50.713464101 + ], + [ + 10.9607312, + 50.713259001 + ], + [ + 10.9600972, + 50.713008901 + ], + [ + 10.9593414, + 50.712739001 + ], + [ + 10.9585565, + 50.712469001 + ], + [ + 10.9578199, + 50.712238401 + ], + [ + 10.9570755, + 50.712017701 + ], + [ + 10.9565204, + 50.711864901 + ], + [ + 10.9560118, + 50.711733401 + ], + [ + 10.955361, + 50.711579301 + ], + [ + 10.9541914, + 50.711324701 + ], + [ + 10.9533008, + 50.711162201 + ], + [ + 10.9526117, + 50.711054001 + ], + [ + 10.9517884, + 50.710938201 + ], + [ + 10.9511462, + 50.710859701 + ], + [ + 10.9505545, + 50.710796601 + ], + [ + 10.9503177, + 50.710775201 + ], + [ + 10.9491827, + 50.710688901 + ], + [ + 10.9486779, + 50.710659901 + ], + [ + 10.9479185, + 50.710631701 + ], + [ + 10.9472468, + 50.710618301 + ], + [ + 10.9463069, + 50.710616501 + ], + [ + 10.9458302, + 50.710619201 + ], + [ + 10.9450726, + 50.710646301 + ], + [ + 10.9442194, + 50.710687301 + ], + [ + 10.94323, + 50.710762001 + ], + [ + 10.9422805, + 50.710858801 + ], + [ + 10.9412998, + 50.710982201 + ], + [ + 10.9407477, + 50.711061801 + ], + [ + 10.940068, + 50.711171501 + ], + [ + 10.9394002, + 50.711296001 + ], + [ + 10.9387286, + 50.711428601 + ], + [ + 10.9373733, + 50.711737901 + ], + [ + 10.9361032, + 50.712072601 + ], + [ + 10.9348589, + 50.712415401 + ], + [ + 10.932806, + 50.712974901 + ], + [ + 10.9304543, + 50.713616001 + ], + [ + 10.9293374, + 50.713903701 + ], + [ + 10.9285659, + 50.714081801 + ], + [ + 10.9278163, + 50.714233701 + ], + [ + 10.9272315, + 50.714338501 + ], + [ + 10.9266467, + 50.714433501 + ], + [ + 10.9259573, + 50.714530701 + ], + [ + 10.925051, + 50.714641201 + ], + [ + 10.924229, + 50.714708201 + ], + [ + 10.9236108, + 50.714749101 + ], + [ + 10.9229622, + 50.714779901 + ], + [ + 10.9222994, + 50.714795201 + ], + [ + 10.921526, + 50.714802001 + ], + [ + 10.92051, + 50.714781801 + ], + [ + 10.9197712, + 50.714747901 + ], + [ + 10.9190363, + 50.714697701 + ], + [ + 10.9183028, + 50.714630001 + ], + [ + 10.9175822, + 50.714547501 + ], + [ + 10.9167658, + 50.714437401 + ], + [ + 10.9156411, + 50.714253801 + ], + [ + 10.9140962, + 50.713989101 + ], + [ + 10.911787, + 50.713595601 + ], + [ + 10.91034, + 50.713348301 + ], + [ + 10.9082235, + 50.712982501 + ], + [ + 10.9048291, + 50.712401301 + ], + [ + 10.9027152, + 50.712037601 + ], + [ + 10.9005149, + 50.711665001 + ], + [ + 10.8988242, + 50.711422001 + ], + [ + 10.8979956, + 50.711332101 + ], + [ + 10.8969668, + 50.711240801 + ], + [ + 10.8964214, + 50.711206301 + ], + [ + 10.8959747, + 50.711184101 + ], + [ + 10.8953802, + 50.711160301 + ], + [ + 10.8948598, + 50.711145401 + ], + [ + 10.8943793, + 50.711135701 + ], + [ + 10.8934522, + 50.711135401 + ], + [ + 10.8929705, + 50.711153101 + ], + [ + 10.8925018, + 50.711165201 + ], + [ + 10.8916171, + 50.711207601 + ], + [ + 10.8908565, + 50.711254301 + ], + [ + 10.8901343, + 50.711321101 + ], + [ + 10.8896101, + 50.711374001 + ], + [ + 10.8886814, + 50.711488801 + ], + [ + 10.8878243, + 50.711623601 + ], + [ + 10.8869155, + 50.711772001 + ], + [ + 10.8860183, + 50.711949601 + ], + [ + 10.8849192, + 50.712197801 + ], + [ + 10.8837538, + 50.712503101 + ], + [ + 10.8831802, + 50.712672201 + ], + [ + 10.8826823, + 50.712826301 + ], + [ + 10.8818011, + 50.713119301 + ], + [ + 10.8809596, + 50.713422601 + ], + [ + 10.8806487, + 50.713542601 + ], + [ + 10.8800114, + 50.713799401 + ], + [ + 10.8791728, + 50.714166601 + ], + [ + 10.8785555, + 50.714456401 + ], + [ + 10.877937, + 50.714758101 + ], + [ + 10.8770912, + 50.715176701 + ], + [ + 10.872522, + 50.717489801 + ], + [ + 10.8709698, + 50.718242501 + ], + [ + 10.8669137, + 50.720242601 + ], + [ + 10.8658952, + 50.720745701 + ], + [ + 10.8647247, + 50.721328001 + ], + [ + 10.8635194, + 50.721922901 + ], + [ + 10.8624834, + 50.722424601 + ], + [ + 10.861636, + 50.722821801 + ], + [ + 10.8608099, + 50.723188501 + ], + [ + 10.8599862, + 50.723541701 + ], + [ + 10.8593202, + 50.723808901 + ], + [ + 10.8586547, + 50.724056401 + ], + [ + 10.8578073, + 50.724355901 + ], + [ + 10.856899, + 50.724640901 + ], + [ + 10.8562073, + 50.724834401 + ], + [ + 10.8556308, + 50.724985501 + ], + [ + 10.85504, + 50.725124501 + ], + [ + 10.8542739, + 50.725296301 + ], + [ + 10.8535767, + 50.725429501 + ], + [ + 10.8528753, + 50.725542501 + ], + [ + 10.8521713, + 50.725646901 + ], + [ + 10.8512937, + 50.725749001 + ], + [ + 10.8511546, + 50.725765501 + ], + [ + 10.8500982, + 50.725850301 + ], + [ + 10.8494031, + 50.725889001 + ], + [ + 10.8488851, + 50.725911901 + ], + [ + 10.8483742, + 50.725925001 + ], + [ + 10.8480949, + 50.725924701 + ], + [ + 10.8478105, + 50.725924501 + ], + [ + 10.8475064, + 50.725918201 + ], + [ + 10.8470982, + 50.725918601 + ], + [ + 10.8464805, + 50.725896001 + ], + [ + 10.8462302, + 50.725886301 + ], + [ + 10.8460848, + 50.725878901 + ], + [ + 10.8456588, + 50.725853401 + ], + [ + 10.8449012, + 50.725797001 + ], + [ + 10.8445628, + 50.725766301 + ], + [ + 10.84409, + 50.725715101 + ], + [ + 10.8436269, + 50.725658801 + ], + [ + 10.8430124, + 50.725572301 + ], + [ + 10.8424979, + 50.725491601 + ], + [ + 10.8419696, + 50.725401901 + ], + [ + 10.8414382, + 50.725300701 + ], + [ + 10.8408392, + 50.725178201 + ], + [ + 10.8403016, + 50.725049401 + ], + [ + 10.840065, + 50.724992401 + ], + [ + 10.8395157, + 50.724852401 + ], + [ + 10.839122, + 50.724742301 + ], + [ + 10.8385023, + 50.724559201 + ], + [ + 10.8383093, + 50.724501601 + ], + [ + 10.8376895, + 50.724305101 + ], + [ + 10.8373043, + 50.724182101 + ], + [ + 10.8370382, + 50.724086001 + ], + [ + 10.8367085, + 50.723969801 + ], + [ + 10.8366771, + 50.723958501 + ], + [ + 10.8364654, + 50.723885201 + ], + [ + 10.8349055, + 50.723288301 + ], + [ + 10.8342438, + 50.723021401 + ], + [ + 10.8325363, + 50.722306401 + ], + [ + 10.8310582, + 50.721679801 + ], + [ + 10.8295717, + 50.721067101 + ], + [ + 10.8289083, + 50.720800301 + ], + [ + 10.8285427, + 50.720656901 + ], + [ + 10.8282146, + 50.720533101 + ], + [ + 10.8281155, + 50.720495801 + ], + [ + 10.8279838, + 50.720448301 + ], + [ + 10.8273878, + 50.720232901 + ], + [ + 10.8267993, + 50.720027701 + ], + [ + 10.8261989, + 50.719826301 + ], + [ + 10.8255706, + 50.719623401 + ], + [ + 10.8249109, + 50.719425201 + ], + [ + 10.8243181, + 50.719250801 + ], + [ + 10.8235304, + 50.719032101 + ], + [ + 10.8228195, + 50.718847701 + ], + [ + 10.8223457, + 50.718729601 + ], + [ + 10.8218509, + 50.718612701 + ], + [ + 10.820757, + 50.718367901 + ], + [ + 10.8206576, + 50.718346601 + ], + [ + 10.8197089, + 50.718155001 + ], + [ + 10.818887, + 50.718001901 + ], + [ + 10.8181579, + 50.717880801 + ], + [ + 10.81733, + 50.717748301 + ], + [ + 10.8159248, + 50.717556901 + ], + [ + 10.8153437, + 50.717485901 + ], + [ + 10.8142024, + 50.717372601 + ], + [ + 10.8135352, + 50.717325501 + ], + [ + 10.8125953, + 50.717276601 + ], + [ + 10.811978, + 50.717243001 + ], + [ + 10.8115544, + 50.717220701 + ], + [ + 10.8110745, + 50.717190401 + ], + [ + 10.8082601, + 50.717037801 + ], + [ + 10.8010755, + 50.716648101 + ], + [ + 10.7987428, + 50.716514801 + ], + [ + 10.7986827, + 50.716510001 + ], + [ + 10.7985254, + 50.716497301 + ], + [ + 10.7975434, + 50.716416801 + ], + [ + 10.7964063, + 50.716304801 + ], + [ + 10.7952402, + 50.716175501 + ], + [ + 10.7941189, + 50.716040201 + ], + [ + 10.7935938, + 50.715972001 + ], + [ + 10.792166, + 50.715767401 + ], + [ + 10.7907558, + 50.715548401 + ], + [ + 10.7888911, + 50.715237901 + ], + [ + 10.7870752, + 50.714918201 + ], + [ + 10.7854775, + 50.714612101 + ], + [ + 10.7843316, + 50.714384701 + ], + [ + 10.7831873, + 50.714157501 + ], + [ + 10.7821975, + 50.713947601 + ], + [ + 10.7814028, + 50.713770601 + ], + [ + 10.7807321, + 50.713611801 + ], + [ + 10.7797475, + 50.713368801 + ], + [ + 10.7788727, + 50.713140901 + ], + [ + 10.7781584, + 50.712947201 + ], + [ + 10.7777868, + 50.712845001 + ], + [ + 10.7772008, + 50.712683301 + ], + [ + 10.7767739, + 50.712565401 + ], + [ + 10.7765195, + 50.712496901 + ], + [ + 10.7761472, + 50.712397401 + ], + [ + 10.7737058, + 50.711641901 + ], + [ + 10.7709611, + 50.710703401 + ], + [ + 10.7682312, + 50.709704301 + ], + [ + 10.7622684, + 50.707261701 + ], + [ + 10.7612817, + 50.706837101 + ], + [ + 10.7560823, + 50.704596701 + ], + [ + 10.751313, + 50.702527101 + ], + [ + 10.7470532, + 50.700666701 + ], + [ + 10.7454274, + 50.699962401 + ], + [ + 10.7405418, + 50.697865401 + ], + [ + 10.736557, + 50.696108001 + ], + [ + 10.7345673, + 50.695177801 + ], + [ + 10.7326141, + 50.694206601 + ], + [ + 10.7309298, + 50.693284301 + ], + [ + 10.7279833, + 50.691517001 + ], + [ + 10.7230779, + 50.688267001 + ], + [ + 10.719136, + 50.685795601 + ], + [ + 10.7175716, + 50.684876301 + ], + [ + 10.7160399, + 50.684047501 + ], + [ + 10.7145508, + 50.683291301 + ], + [ + 10.7118347, + 50.682042401 + ], + [ + 10.7092104, + 50.681021501 + ], + [ + 10.7065429, + 50.680014801 + ], + [ + 10.7033292, + 50.678916401 + ], + [ + 10.7003203, + 50.677892201 + ], + [ + 10.6996018, + 50.677646401 + ], + [ + 10.6971399, + 50.676763201 + ], + [ + 10.6955981, + 50.676103901 + ], + [ + 10.6945067, + 50.675564301 + ], + [ + 10.693634, + 50.675057401 + ], + [ + 10.6929039, + 50.674580701 + ], + [ + 10.6921541, + 50.674007201 + ], + [ + 10.6915049, + 50.673432601 + ], + [ + 10.6909367, + 50.672859901 + ], + [ + 10.6904288, + 50.672233301 + ], + [ + 10.6900019, + 50.671579001 + ], + [ + 10.6897264, + 50.671057901 + ], + [ + 10.6894421, + 50.670535701 + ], + [ + 10.6892195, + 50.669980201 + ], + [ + 10.6889885, + 50.669374901 + ], + [ + 10.6889196, + 50.669104601 + ], + [ + 10.6888745, + 50.668900701 + ], + [ + 10.6888339, + 50.668667001 + ], + [ + 10.6887879, + 50.668341601 + ], + [ + 10.6887549, + 50.668021301 + ], + [ + 10.6887309, + 50.667714401 + ], + [ + 10.6887265, + 50.667377001 + ], + [ + 10.6887247, + 50.667178201 + ], + [ + 10.6887253, + 50.666935701 + ], + [ + 10.688734, + 50.666585501 + ], + [ + 10.6887885, + 50.665707001 + ], + [ + 10.6888161, + 50.665449701 + ], + [ + 10.6889235, + 50.664434301 + ], + [ + 10.6889714, + 50.664036501 + ], + [ + 10.6890182, + 50.663616301 + ], + [ + 10.6890568, + 50.663297401 + ], + [ + 10.6890702, + 50.663186301 + ], + [ + 10.6890735, + 50.663159301 + ], + [ + 10.6890834, + 50.663077501 + ], + [ + 10.6890984, + 50.662953101 + ], + [ + 10.6891239, + 50.662778101 + ], + [ + 10.6891825, + 50.662375801 + ], + [ + 10.6892719, + 50.661765201 + ], + [ + 10.6897024, + 50.657769301 + ], + [ + 10.6901639, + 50.653484501 + ], + [ + 10.690189, + 50.653280601 + ], + [ + 10.6903329, + 50.652113201 + ], + [ + 10.6905331, + 50.650948301 + ], + [ + 10.6906645, + 50.650013901 + ], + [ + 10.6907487, + 50.649101601 + ], + [ + 10.6910206, + 50.646711001 + ], + [ + 10.6910775, + 50.646219201 + ], + [ + 10.6910871, + 50.645898901 + ], + [ + 10.6910574, + 50.645296601 + ], + [ + 10.6909781, + 50.644877501 + ], + [ + 10.6909104, + 50.644606701 + ], + [ + 10.690873, + 50.644475501 + ], + [ + 10.690774, + 50.644198401 + ], + [ + 10.6907043, + 50.644026501 + ], + [ + 10.6904587, + 50.643517901 + ], + [ + 10.6902997, + 50.643274501 + ], + [ + 10.6900606, + 50.642923101 + ], + [ + 10.6897926, + 50.642574301 + ], + [ + 10.689662, + 50.642419801 + ], + [ + 10.6892889, + 50.642031301 + ], + [ + 10.6891757, + 50.641932201 + ], + [ + 10.6888917, + 50.641681201 + ], + [ + 10.6885894, + 50.641433501 + ], + [ + 10.6881602, + 50.641123701 + ], + [ + 10.6877051, + 50.640833401 + ], + [ + 10.6872458, + 50.640570001 + ], + [ + 10.6869911, + 50.640439101 + ], + [ + 10.6867751, + 50.640333301 + ], + [ + 10.6866454, + 50.640271601 + ], + [ + 10.6863128, + 50.640121301 + ], + [ + 10.6858133, + 50.639916101 + ], + [ + 10.6851544, + 50.639683101 + ], + [ + 10.6840944, + 50.639332701 + ], + [ + 10.6836612, + 50.639180001 + ], + [ + 10.6830631, + 50.638971101 + ], + [ + 10.6809906, + 50.638216201 + ], + [ + 10.675814, + 50.635536701 + ], + [ + 10.6737643, + 50.634051301 + ], + [ + 10.6715493, + 50.632190101 + ], + [ + 10.6694484, + 50.630425001 + ], + [ + 10.6677411, + 50.629005301 + ], + [ + 10.6674374, + 50.628740701 + ], + [ + 10.6637083, + 50.625581301 + ], + [ + 10.6625519, + 50.624595901 + ], + [ + 10.6596765, + 50.621432001 + ], + [ + 10.6588375, + 50.620179001 + ], + [ + 10.6586728, + 50.619866601 + ], + [ + 10.6585386, + 50.619619401 + ], + [ + 10.6582932, + 50.619135601 + ], + [ + 10.6580912, + 50.618701501 + ], + [ + 10.6578219, + 50.618076901 + ], + [ + 10.6575402, + 50.617291501 + ], + [ + 10.657223, + 50.616425901 + ], + [ + 10.6570619, + 50.615990701 + ], + [ + 10.6568795, + 50.615575701 + ], + [ + 10.6567541, + 50.615285901 + ], + [ + 10.6566055, + 50.614940901 + ], + [ + 10.6564319, + 50.614598301 + ], + [ + 10.656344, + 50.614447201 + ], + [ + 10.6561801, + 50.614170401 + ], + [ + 10.6558768, + 50.613724801 + ], + [ + 10.6556514, + 50.613437301 + ], + [ + 10.6554116, + 50.613157001 + ], + [ + 10.6552591, + 50.612980001 + ], + [ + 10.655000201, + 50.612716423 + ] + ] + } + }, + { + "identifier": "2026-016955--vi-bs.2026-04-16_08-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.75661514167975,11.004700010227884,50.71320314692849,10.931968769177763", + "point": "50.75661514167975,11.004700010227884", + "startLcPosition": "30", + "impact": { + "lower": "Ilmenau-West", + "upper": "Behringen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Suhl", + "title": "A71 | Behringen - Ilmenau-West", + "coordinate": { + "lat": 50.75661514167975, + "long": 11.004700010227884 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Donnerstag und Freitag zwischen dem 16.04.26 und dem 21.04.26 von 08:00 bis 18:00 Uhr.", + "", + "A71: Erfurt -> Suhl, zwischen 2.3 km hinter Behringen und 2.7 km vor AS Ilmenau-West", + "", + "L\u00e4nge: 8.01 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 2026-016955_RF-SW_km-95,0-103,0_von Behringen (Tunnel) nach Ilmenau-West (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.00470001, + 50.756615142 + ], + [ + 11.0046904, + 50.756537401 + ], + [ + 11.004619, + 50.756145301 + ], + [ + 11.0045416, + 50.755763001 + ], + [ + 11.0042246, + 50.754751101 + ], + [ + 11.0038586, + 50.753802901 + ], + [ + 11.0034366, + 50.752988301 + ], + [ + 11.0031134, + 50.752490701 + ], + [ + 11.0028405, + 50.752058901 + ], + [ + 11.0024121, + 50.751487401 + ], + [ + 11.0022764, + 50.751318301 + ], + [ + 11.00166, + 50.750598801 + ], + [ + 11.001279, + 50.750209601 + ], + [ + 11.0001903, + 50.749203801 + ], + [ + 10.9994989, + 50.748636501 + ], + [ + 10.9987742, + 50.748157901 + ], + [ + 10.9986358, + 50.748065601 + ], + [ + 10.9980744, + 50.747691301 + ], + [ + 10.9976492, + 50.747434801 + ], + [ + 10.9972328, + 50.747179301 + ], + [ + 10.9966298, + 50.746852401 + ], + [ + 10.9952411, + 50.746118301 + ], + [ + 10.9949367, + 50.745960401 + ], + [ + 10.9948388, + 50.745906101 + ], + [ + 10.9946439, + 50.745804301 + ], + [ + 10.9938958, + 50.745378501 + ], + [ + 10.9931713, + 50.744914301 + ], + [ + 10.9927463, + 50.744604901 + ], + [ + 10.9925131, + 50.744436701 + ], + [ + 10.9919061, + 50.743946501 + ], + [ + 10.991304, + 50.743391901 + ], + [ + 10.9909298, + 50.743007401 + ], + [ + 10.9906536, + 50.742693901 + ], + [ + 10.9903315, + 50.742302501 + ], + [ + 10.9900354, + 50.741896201 + ], + [ + 10.9898901, + 50.741686501 + ], + [ + 10.9895254, + 50.741093801 + ], + [ + 10.9892602, + 50.740672901 + ], + [ + 10.9890385, + 50.740271901 + ], + [ + 10.9885781, + 50.739442901 + ], + [ + 10.987766, + 50.737938101 + ], + [ + 10.9875324, + 50.737519501 + ], + [ + 10.9874664, + 50.737402401 + ], + [ + 10.9869147, + 50.736424601 + ], + [ + 10.9863144, + 50.735353501 + ], + [ + 10.986045, + 50.734885601 + ], + [ + 10.9857636, + 50.734406301 + ], + [ + 10.9854364, + 50.733843801 + ], + [ + 10.9853585, + 50.733717801 + ], + [ + 10.985282, + 50.733594101 + ], + [ + 10.9847116, + 50.732671801 + ], + [ + 10.9841331, + 50.731776001 + ], + [ + 10.9838582, + 50.731368701 + ], + [ + 10.9836107, + 50.731027801 + ], + [ + 10.9828305, + 50.729961601 + ], + [ + 10.9825633, + 50.729606701 + ], + [ + 10.9817866, + 50.728622901 + ], + [ + 10.9814227, + 50.728186201 + ], + [ + 10.9804386, + 50.727053201 + ], + [ + 10.9794139, + 50.725952201 + ], + [ + 10.978297, + 50.724830801 + ], + [ + 10.9777496, + 50.724305701 + ], + [ + 10.9771719, + 50.723780901 + ], + [ + 10.9764459, + 50.723127101 + ], + [ + 10.9756927, + 50.722469001 + ], + [ + 10.9751255, + 50.721994401 + ], + [ + 10.9746193, + 50.721578101 + ], + [ + 10.974028, + 50.721112701 + ], + [ + 10.9733697, + 50.720601401 + ], + [ + 10.9726959, + 50.720099901 + ], + [ + 10.9719075, + 50.719521701 + ], + [ + 10.971386, + 50.719159001 + ], + [ + 10.9710456, + 50.718922201 + ], + [ + 10.970719, + 50.718695101 + ], + [ + 10.9696243, + 50.717971301 + ], + [ + 10.9687879, + 50.717434701 + ], + [ + 10.9679387, + 50.716908701 + ], + [ + 10.9673325, + 50.716544601 + ], + [ + 10.9662541, + 50.715925901 + ], + [ + 10.9660122, + 50.715788801 + ], + [ + 10.9655115, + 50.715516401 + ], + [ + 10.9654887, + 50.715504601 + ], + [ + 10.9653216, + 50.715414601 + ], + [ + 10.9647243, + 50.715093501 + ], + [ + 10.9644182, + 50.714933301 + ], + [ + 10.9635465, + 50.714509001 + ], + [ + 10.9623987, + 50.713961601 + ], + [ + 10.9612362, + 50.713464101 + ], + [ + 10.9607312, + 50.713259001 + ], + [ + 10.9600972, + 50.713008901 + ], + [ + 10.9593414, + 50.712739001 + ], + [ + 10.9585565, + 50.712469001 + ], + [ + 10.9578199, + 50.712238401 + ], + [ + 10.9570755, + 50.712017701 + ], + [ + 10.9565204, + 50.711864901 + ], + [ + 10.9560118, + 50.711733401 + ], + [ + 10.955361, + 50.711579301 + ], + [ + 10.9541914, + 50.711324701 + ], + [ + 10.9533008, + 50.711162201 + ], + [ + 10.9526117, + 50.711054001 + ], + [ + 10.9517884, + 50.710938201 + ], + [ + 10.9511462, + 50.710859701 + ], + [ + 10.9505545, + 50.710796601 + ], + [ + 10.9503177, + 50.710775201 + ], + [ + 10.9491827, + 50.710688901 + ], + [ + 10.9486779, + 50.710659901 + ], + [ + 10.9479185, + 50.710631701 + ], + [ + 10.9472468, + 50.710618301 + ], + [ + 10.9463069, + 50.710616501 + ], + [ + 10.9458302, + 50.710619201 + ], + [ + 10.9450726, + 50.710646301 + ], + [ + 10.9442194, + 50.710687301 + ], + [ + 10.94323, + 50.710762001 + ], + [ + 10.9422805, + 50.710858801 + ], + [ + 10.9412998, + 50.710982201 + ], + [ + 10.9407477, + 50.711061801 + ], + [ + 10.940068, + 50.711171501 + ], + [ + 10.9394002, + 50.711296001 + ], + [ + 10.9387286, + 50.711428601 + ], + [ + 10.9373733, + 50.711737901 + ], + [ + 10.9361032, + 50.712072601 + ], + [ + 10.9348589, + 50.712415401 + ], + [ + 10.932806, + 50.712974901 + ], + [ + 10.931968769, + 50.713203147 + ] + ] + } + }, + { + "identifier": "2026-000548--vi-fbm.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.85070794883769,11.009680795976115,50.893859965174414,10.958410600589131", + "point": "50.85070794883769,11.009680795976115", + "startLcPosition": "32", + "impact": { + "lower": "Kreuz Erfurt", + "upper": "Dornheimer Rieth", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Suhl -> Erfurt", + "title": "A71 | Dornheimer Rieth - Kreuz Erfurt", + "coordinate": { + "lat": 50.85070794883769, + "long": 11.009680795976115 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:00 Uhr", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 14.04.26 und dem 27.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A71: Suhl -> Erfurt, zwischen 1.5 km hinter Dornheimer Rieth und 0.2 km vor AK Kreuz Erfurt", + "", + "L\u00e4nge: 6.33 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A71 AS Arnstadt-Nord in beiden FR, Sanierung BW auf der L1044n" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.009680796, + 50.850707949 + ], + [ + 11.009567, + 50.851027401 + ], + [ + 11.0093202, + 50.851675001 + ], + [ + 11.0090664, + 50.852279301 + ], + [ + 11.009021, + 50.852367601 + ], + [ + 11.0087978, + 50.852857101 + ], + [ + 11.0084161, + 50.853635301 + ], + [ + 11.0082015, + 50.854078101 + ], + [ + 11.0079601, + 50.854531101 + ], + [ + 11.0076306, + 50.855124701 + ], + [ + 11.0071573, + 50.855912201 + ], + [ + 11.0063287, + 50.857205201 + ], + [ + 11.0055407, + 50.858293401 + ], + [ + 11.0046652, + 50.859411301 + ], + [ + 11.0037423, + 50.860527701 + ], + [ + 11.0020405, + 50.862453101 + ], + [ + 10.999015, + 50.865869401 + ], + [ + 10.9975414, + 50.867514101 + ], + [ + 10.9960918, + 50.869137401 + ], + [ + 10.9952657, + 50.870070701 + ], + [ + 10.9920129, + 50.873740001 + ], + [ + 10.9891629, + 50.876933501 + ], + [ + 10.9884883, + 50.877688501 + ], + [ + 10.9863841, + 50.880045901 + ], + [ + 10.9852839, + 50.881279201 + ], + [ + 10.9822695, + 50.884662101 + ], + [ + 10.9819594, + 50.885007801 + ], + [ + 10.9815687, + 50.885451101 + ], + [ + 10.9809384, + 50.886147001 + ], + [ + 10.9800965, + 50.887016801 + ], + [ + 10.9797347, + 50.887369701 + ], + [ + 10.9793509, + 50.887718101 + ], + [ + 10.9789001, + 50.888102001 + ], + [ + 10.9784386, + 50.888474401 + ], + [ + 10.9775841, + 50.889091501 + ], + [ + 10.9772225, + 50.889329501 + ], + [ + 10.9768376, + 50.889568001 + ], + [ + 10.9765474, + 50.889752501 + ], + [ + 10.9761227, + 50.889995801 + ], + [ + 10.9757275, + 50.890210901 + ], + [ + 10.9753538, + 50.890408601 + ], + [ + 10.9750453, + 50.890557201 + ], + [ + 10.974716, + 50.890720301 + ], + [ + 10.9742755, + 50.890922801 + ], + [ + 10.9733868, + 50.891300801 + ], + [ + 10.9728449, + 50.891511701 + ], + [ + 10.9722932, + 50.891711601 + ], + [ + 10.9718471, + 50.891864301 + ], + [ + 10.9716116, + 50.891939501 + ], + [ + 10.9710455, + 50.892116601 + ], + [ + 10.9704277, + 50.892293701 + ], + [ + 10.9692615, + 50.892589201 + ], + [ + 10.9679784, + 50.892860301 + ], + [ + 10.9666999, + 50.893072401 + ], + [ + 10.9657134, + 50.893203301 + ], + [ + 10.9654065, + 50.893240101 + ], + [ + 10.964939, + 50.893291501 + ], + [ + 10.9644093, + 50.893344001 + ], + [ + 10.963963, + 50.893382301 + ], + [ + 10.9632544, + 50.893438601 + ], + [ + 10.9622486, + 50.893509101 + ], + [ + 10.9613967, + 50.893567901 + ], + [ + 10.9604496, + 50.893639001 + ], + [ + 10.9596974, + 50.893705501 + ], + [ + 10.9592998, + 50.893745101 + ], + [ + 10.9588386, + 50.893798401 + ], + [ + 10.958410601, + 50.893859965 + ] + ] + } + }, + { + "identifier": "2026-017048--vi-bs.2026-04-08_07-00-00-000.devi-bs.2026-04-08_07-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.8821039588724,10.98437426897769,50.87309187592639,10.992384322951716", + "point": "50.8821039588724,10.98437426897769", + "startLcPosition": "34", + "impact": { + "lower": "Arnstadt-Nord", + "upper": "Kreuz Erfurt", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Suhl", + "title": "A71 | Kreuz Erfurt - Arnstadt-Nord", + "coordinate": { + "lat": 50.8821039588724, + "long": 10.98437426897769 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Mittwoch, Donnerstag und Freitag zwischen dem 08.04.26 und dem 10.04.26 von 07:00 bis 18:00 Uhr.", + "Jeden Donnerstag, Freitag und Samstag zwischen dem 16.04.26 und dem 18.04.26 von 07:00 bis 18:00 Uhr.", + "", + "A71: Erfurt -> Suhl, zwischen 2.6 km hinter AK Kreuz Erfurt und 2.6 km vor AS Arnstadt-Nord", + "", + "L\u00e4nge: 1.15 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "RV 2025-28 Beton AM Erf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.984374269, + 50.882103959 + ], + [ + 10.9851617, + 50.881220101 + ], + [ + 10.9862429, + 50.880011701 + ], + [ + 10.9883511, + 50.877639401 + ], + [ + 10.9890728, + 50.876827301 + ], + [ + 10.9918642, + 50.873673201 + ], + [ + 10.992384323, + 50.873091876 + ] + ] + } + }, + { + "identifier": "2026-017048--vi-bs.2026-04-08_07-00-00-000.devi-bs.2026-04-08_07-00-00-000_003.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.8821039588724,10.98437426897769,50.87309187592639,10.992384322951716", + "point": "50.8821039588724,10.98437426897769", + "startLcPosition": "34", + "impact": { + "lower": "Arnstadt-Nord", + "upper": "Kreuz Erfurt", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Suhl", + "title": "A71 | Kreuz Erfurt - Arnstadt-Nord", + "coordinate": { + "lat": 50.8821039588724, + "long": 10.98437426897769 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Samstag zwischen dem 11.04.26 und dem 16.04.26 von 07:00 bis 18:00 Uhr.", + "", + "A71: Erfurt -> Suhl, zwischen 2.6 km hinter AK Kreuz Erfurt und 2.6 km vor AS Arnstadt-Nord", + "", + "L\u00e4nge: 1.15 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "RV 2025-28 Beton AM Erf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.984374269, + 50.882103959 + ], + [ + 10.9851617, + 50.881220101 + ], + [ + 10.9862429, + 50.880011701 + ], + [ + 10.9883511, + 50.877639401 + ], + [ + 10.9890728, + 50.876827301 + ], + [ + 10.9918642, + 50.873673201 + ], + [ + 10.992384323, + 50.873091876 + ] + ] + } + }, + { + "identifier": "2026-000548--vi-fbm.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.90756739877442,10.94368227489816,50.85192393912776,11.009048220042963", + "point": "50.90756739877442,10.94368227489816", + "startLcPosition": "35", + "impact": { + "lower": "Dornheimer Rieth", + "upper": "Erfurter Becken", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sangerhausen -> Suhl", + "title": "A71 | Erfurter Becken - Dornheimer Rieth", + "coordinate": { + "lat": 50.90756739877442, + "long": 10.94368227489816 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 27.04.26 von 08:00 bis 16:00 Uhr.", + "27.04.26 von 08:00 bis 16:00 Uhr", + "", + "A71: Sangerhausen -> Suhl, zwischen 3.7 km hinter Erfurter Becken und 1.7 km vor Dornheimer Rieth", + "", + "L\u00e4nge: 8.17 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A71 AS Arnstadt-Nord in beiden FR, Sanierung BW auf der L1044n" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.943682275, + 50.907567399 + ], + [ + 10.9436828, + 50.907564501 + ], + [ + 10.9436931, + 50.907507901 + ], + [ + 10.9438812, + 50.906542201 + ], + [ + 10.9440224, + 50.905947501 + ], + [ + 10.9441267, + 50.905539801 + ], + [ + 10.9443725, + 50.904675101 + ], + [ + 10.9445598, + 50.904066001 + ], + [ + 10.9448156, + 50.903336501 + ], + [ + 10.9448988, + 50.903111401 + ], + [ + 10.9449856, + 50.902880101 + ], + [ + 10.9450555, + 50.902697601 + ], + [ + 10.9452826, + 50.902162401 + ], + [ + 10.9454512, + 50.901802201 + ], + [ + 10.9457087, + 50.901288501 + ], + [ + 10.9459797, + 50.900814001 + ], + [ + 10.9462408, + 50.900384301 + ], + [ + 10.9464654, + 50.900051101 + ], + [ + 10.9468029, + 50.899583601 + ], + [ + 10.946986, + 50.899357201 + ], + [ + 10.9471612, + 50.899145601 + ], + [ + 10.9472131, + 50.899086701 + ], + [ + 10.9473738, + 50.898906701 + ], + [ + 10.9475207, + 50.898750601 + ], + [ + 10.9478567, + 50.898408101 + ], + [ + 10.9482144, + 50.898074001 + ], + [ + 10.9485971, + 50.897743401 + ], + [ + 10.9493446, + 50.897162001 + ], + [ + 10.9498544, + 50.896815101 + ], + [ + 10.9502606, + 50.896556001 + ], + [ + 10.9506708, + 50.896309501 + ], + [ + 10.9510544, + 50.896095801 + ], + [ + 10.9514506, + 50.895885801 + ], + [ + 10.9518199, + 50.895702801 + ], + [ + 10.9520406, + 50.895597501 + ], + [ + 10.9523383, + 50.895460301 + ], + [ + 10.9531392, + 50.895125001 + ], + [ + 10.9535596, + 50.894964501 + ], + [ + 10.9540309, + 50.894796201 + ], + [ + 10.9544319, + 50.894663201 + ], + [ + 10.9548276, + 50.894537501 + ], + [ + 10.9553856, + 50.894365501 + ], + [ + 10.9559791, + 50.894219701 + ], + [ + 10.9565682, + 50.894084201 + ], + [ + 10.957076, + 50.893976101 + ], + [ + 10.9575642, + 50.893885201 + ], + [ + 10.9580549, + 50.893801801 + ], + [ + 10.9585176, + 50.893733101 + ], + [ + 10.9589763, + 50.893672701 + ], + [ + 10.9592713, + 50.893636301 + ], + [ + 10.9597298, + 50.893585801 + ], + [ + 10.9602469, + 50.893537201 + ], + [ + 10.9607911, + 50.893489901 + ], + [ + 10.9612933, + 50.893451101 + ], + [ + 10.9617684, + 50.893415901 + ], + [ + 10.9625154, + 50.893367001 + ], + [ + 10.9631887, + 50.893318301 + ], + [ + 10.9643977, + 50.893223501 + ], + [ + 10.9653014, + 50.893138501 + ], + [ + 10.9653797, + 50.893130001 + ], + [ + 10.9658214, + 50.893082101 + ], + [ + 10.966581, + 50.892985701 + ], + [ + 10.9670967, + 50.892907301 + ], + [ + 10.9676144, + 50.892818801 + ], + [ + 10.9680922, + 50.892733301 + ], + [ + 10.9685833, + 50.892633301 + ], + [ + 10.9690643, + 50.892528601 + ], + [ + 10.969527, + 50.892420801 + ], + [ + 10.9700193, + 50.892296001 + ], + [ + 10.9705001, + 50.892165901 + ], + [ + 10.9709588, + 50.892034201 + ], + [ + 10.9714172, + 50.891893201 + ], + [ + 10.9716927, + 50.891805101 + ], + [ + 10.9719082, + 50.891731601 + ], + [ + 10.9723036, + 50.891595801 + ], + [ + 10.9729908, + 50.891340401 + ], + [ + 10.9734123, + 50.891171601 + ], + [ + 10.9738384, + 50.890993801 + ], + [ + 10.9741852, + 50.890843501 + ], + [ + 10.9744839, + 50.890711201 + ], + [ + 10.9749161, + 50.890501901 + ], + [ + 10.9753344, + 50.890289901 + ], + [ + 10.9756785, + 50.890109101 + ], + [ + 10.975968, + 50.889951601 + ], + [ + 10.9764389, + 50.889680801 + ], + [ + 10.9766915, + 50.889524901 + ], + [ + 10.9770421, + 50.889303701 + ], + [ + 10.9773915, + 50.889073301 + ], + [ + 10.9774649, + 50.889024101 + ], + [ + 10.977927, + 50.888702701 + ], + [ + 10.9784045, + 50.888342101 + ], + [ + 10.9788453, + 50.887983901 + ], + [ + 10.9792258, + 50.887655501 + ], + [ + 10.9796088, + 50.887306001 + ], + [ + 10.9799811, + 50.886945501 + ], + [ + 10.9803077, + 50.886615901 + ], + [ + 10.9808125, + 50.886084601 + ], + [ + 10.9814236, + 50.885408101 + ], + [ + 10.9818587, + 50.884922801 + ], + [ + 10.9821688, + 50.884579301 + ], + [ + 10.9851617, + 50.881220101 + ], + [ + 10.9862429, + 50.880011701 + ], + [ + 10.9883511, + 50.877639401 + ], + [ + 10.9890728, + 50.876827301 + ], + [ + 10.9918642, + 50.873673201 + ], + [ + 10.9951448, + 50.870006301 + ], + [ + 10.9959495, + 50.869098401 + ], + [ + 10.9973741, + 50.867499201 + ], + [ + 10.9988762, + 50.865808301 + ], + [ + 11.0019008, + 50.862407601 + ], + [ + 11.0036184, + 50.860488401 + ], + [ + 11.0045734, + 50.859326501 + ], + [ + 11.0053983, + 50.858258601 + ], + [ + 11.006204, + 50.857123901 + ], + [ + 11.0068241, + 50.856186901 + ], + [ + 11.0072885, + 50.855427101 + ], + [ + 11.0080607, + 50.854032401 + ], + [ + 11.0083197, + 50.853517701 + ], + [ + 11.008518, + 50.853102801 + ], + [ + 11.008639, + 50.852847001 + ], + [ + 11.0089113, + 50.852244301 + ], + [ + 11.00904822, + 50.851923939 + ] + ] + } + }, + { + "identifier": "2026-017411--vi-bs.2026-04-13_08-00-00-000_012.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.92458873599055,10.950268999530026,50.75661514167975,11.004700010227884", + "point": "50.92458873599055,10.950268999530026", + "startLcPosition": "35", + "impact": { + "lower": "Stadtilm", + "upper": "Erfurter Becken", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sangerhausen -> Suhl", + "title": "A71 | Erfurter Becken - Stadtilm", + "coordinate": { + "lat": 50.92458873599055, + "long": 10.950268999530026 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 08:00 bis 18:00 Uhr.", + "", + "A71: Sangerhausen -> Suhl, zwischen 1.7 km hinter Erfurter Becken und 0.8 km vor AS Stadtilm", + "", + "L\u00e4nge: 20.95 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A71 2026-017411_RF-SW_km_74,0-95,0_von Erfurter Becken (Rastplatz) nach Stadtilm (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.950269, + 50.924588736 + ], + [ + 10.9500087, + 50.924344201 + ], + [ + 10.9496312, + 50.923985501 + ], + [ + 10.949297, + 50.923663401 + ], + [ + 10.9488834, + 50.923263401 + ], + [ + 10.9481282, + 50.922519201 + ], + [ + 10.9479702, + 50.922353601 + ], + [ + 10.9473614, + 50.921695601 + ], + [ + 10.9467402, + 50.920945901 + ], + [ + 10.9462646, + 50.920344601 + ], + [ + 10.945807, + 50.919699501 + ], + [ + 10.9452292, + 50.918781001 + ], + [ + 10.9449364, + 50.918245301 + ], + [ + 10.9445775, + 50.917519901 + ], + [ + 10.9443715, + 50.917069901 + ], + [ + 10.9441861, + 50.916611301 + ], + [ + 10.943937, + 50.915917701 + ], + [ + 10.9437515, + 50.915309201 + ], + [ + 10.9437148, + 50.915183001 + ], + [ + 10.9435091, + 50.914285101 + ], + [ + 10.9433849, + 50.913569701 + ], + [ + 10.9433214, + 50.912981901 + ], + [ + 10.9432785, + 50.912394201 + ], + [ + 10.9432652, + 50.911682301 + ], + [ + 10.9432703, + 50.911275801 + ], + [ + 10.943321, + 50.910358101 + ], + [ + 10.9434084, + 50.909403601 + ], + [ + 10.9435233, + 50.908444701 + ], + [ + 10.9436828, + 50.907564501 + ], + [ + 10.9436931, + 50.907507901 + ], + [ + 10.9438812, + 50.906542201 + ], + [ + 10.9440224, + 50.905947501 + ], + [ + 10.9441267, + 50.905539801 + ], + [ + 10.9443725, + 50.904675101 + ], + [ + 10.9445598, + 50.904066001 + ], + [ + 10.9448156, + 50.903336501 + ], + [ + 10.9448988, + 50.903111401 + ], + [ + 10.9449856, + 50.902880101 + ], + [ + 10.9450555, + 50.902697601 + ], + [ + 10.9452826, + 50.902162401 + ], + [ + 10.9454512, + 50.901802201 + ], + [ + 10.9457087, + 50.901288501 + ], + [ + 10.9459797, + 50.900814001 + ], + [ + 10.9462408, + 50.900384301 + ], + [ + 10.9464654, + 50.900051101 + ], + [ + 10.9468029, + 50.899583601 + ], + [ + 10.946986, + 50.899357201 + ], + [ + 10.9471612, + 50.899145601 + ], + [ + 10.9472131, + 50.899086701 + ], + [ + 10.9473738, + 50.898906701 + ], + [ + 10.9475207, + 50.898750601 + ], + [ + 10.9478567, + 50.898408101 + ], + [ + 10.9482144, + 50.898074001 + ], + [ + 10.9485971, + 50.897743401 + ], + [ + 10.9493446, + 50.897162001 + ], + [ + 10.9498544, + 50.896815101 + ], + [ + 10.9502606, + 50.896556001 + ], + [ + 10.9506708, + 50.896309501 + ], + [ + 10.9510544, + 50.896095801 + ], + [ + 10.9514506, + 50.895885801 + ], + [ + 10.9518199, + 50.895702801 + ], + [ + 10.9520406, + 50.895597501 + ], + [ + 10.9523383, + 50.895460301 + ], + [ + 10.9531392, + 50.895125001 + ], + [ + 10.9535596, + 50.894964501 + ], + [ + 10.9540309, + 50.894796201 + ], + [ + 10.9544319, + 50.894663201 + ], + [ + 10.9548276, + 50.894537501 + ], + [ + 10.9553856, + 50.894365501 + ], + [ + 10.9559791, + 50.894219701 + ], + [ + 10.9565682, + 50.894084201 + ], + [ + 10.957076, + 50.893976101 + ], + [ + 10.9575642, + 50.893885201 + ], + [ + 10.9580549, + 50.893801801 + ], + [ + 10.9585176, + 50.893733101 + ], + [ + 10.9589763, + 50.893672701 + ], + [ + 10.9592713, + 50.893636301 + ], + [ + 10.9597298, + 50.893585801 + ], + [ + 10.9602469, + 50.893537201 + ], + [ + 10.9607911, + 50.893489901 + ], + [ + 10.9612933, + 50.893451101 + ], + [ + 10.9617684, + 50.893415901 + ], + [ + 10.9625154, + 50.893367001 + ], + [ + 10.9631887, + 50.893318301 + ], + [ + 10.9643977, + 50.893223501 + ], + [ + 10.9653014, + 50.893138501 + ], + [ + 10.9653797, + 50.893130001 + ], + [ + 10.9658214, + 50.893082101 + ], + [ + 10.966581, + 50.892985701 + ], + [ + 10.9670967, + 50.892907301 + ], + [ + 10.9676144, + 50.892818801 + ], + [ + 10.9680922, + 50.892733301 + ], + [ + 10.9685833, + 50.892633301 + ], + [ + 10.9690643, + 50.892528601 + ], + [ + 10.969527, + 50.892420801 + ], + [ + 10.9700193, + 50.892296001 + ], + [ + 10.9705001, + 50.892165901 + ], + [ + 10.9709588, + 50.892034201 + ], + [ + 10.9714172, + 50.891893201 + ], + [ + 10.9716927, + 50.891805101 + ], + [ + 10.9719082, + 50.891731601 + ], + [ + 10.9723036, + 50.891595801 + ], + [ + 10.9729908, + 50.891340401 + ], + [ + 10.9734123, + 50.891171601 + ], + [ + 10.9738384, + 50.890993801 + ], + [ + 10.9741852, + 50.890843501 + ], + [ + 10.9744839, + 50.890711201 + ], + [ + 10.9749161, + 50.890501901 + ], + [ + 10.9753344, + 50.890289901 + ], + [ + 10.9756785, + 50.890109101 + ], + [ + 10.975968, + 50.889951601 + ], + [ + 10.9764389, + 50.889680801 + ], + [ + 10.9766915, + 50.889524901 + ], + [ + 10.9770421, + 50.889303701 + ], + [ + 10.9773915, + 50.889073301 + ], + [ + 10.9774649, + 50.889024101 + ], + [ + 10.977927, + 50.888702701 + ], + [ + 10.9784045, + 50.888342101 + ], + [ + 10.9788453, + 50.887983901 + ], + [ + 10.9792258, + 50.887655501 + ], + [ + 10.9796088, + 50.887306001 + ], + [ + 10.9799811, + 50.886945501 + ], + [ + 10.9803077, + 50.886615901 + ], + [ + 10.9808125, + 50.886084601 + ], + [ + 10.9814236, + 50.885408101 + ], + [ + 10.9818587, + 50.884922801 + ], + [ + 10.9821688, + 50.884579301 + ], + [ + 10.9851617, + 50.881220101 + ], + [ + 10.9862429, + 50.880011701 + ], + [ + 10.9883511, + 50.877639401 + ], + [ + 10.9890728, + 50.876827301 + ], + [ + 10.9918642, + 50.873673201 + ], + [ + 10.9951448, + 50.870006301 + ], + [ + 10.9959495, + 50.869098401 + ], + [ + 10.9973741, + 50.867499201 + ], + [ + 10.9988762, + 50.865808301 + ], + [ + 11.0019008, + 50.862407601 + ], + [ + 11.0036184, + 50.860488401 + ], + [ + 11.0045734, + 50.859326501 + ], + [ + 11.0053983, + 50.858258601 + ], + [ + 11.006204, + 50.857123901 + ], + [ + 11.0068241, + 50.856186901 + ], + [ + 11.0072885, + 50.855427101 + ], + [ + 11.0080607, + 50.854032401 + ], + [ + 11.0083197, + 50.853517701 + ], + [ + 11.008518, + 50.853102801 + ], + [ + 11.008639, + 50.852847001 + ], + [ + 11.0089113, + 50.852244301 + ], + [ + 11.0091644, + 50.851652101 + ], + [ + 11.0094062, + 50.851001201 + ], + [ + 11.0096616, + 50.850284201 + ], + [ + 11.0098588, + 50.849663301 + ], + [ + 11.0098721, + 50.849621301 + ], + [ + 11.0100228, + 50.849142801 + ], + [ + 11.0101847, + 50.848584801 + ], + [ + 11.0104152, + 50.847622801 + ], + [ + 11.0106392, + 50.846451901 + ], + [ + 11.0107716, + 50.845583201 + ], + [ + 11.0108341, + 50.845097801 + ], + [ + 11.0108883, + 50.844524601 + ], + [ + 11.010928, + 50.843981001 + ], + [ + 11.0109523, + 50.843440901 + ], + [ + 11.0109726, + 50.842998101 + ], + [ + 11.0109737, + 50.842236601 + ], + [ + 11.0109442, + 50.841389801 + ], + [ + 11.0108515, + 50.840347301 + ], + [ + 11.0107752, + 50.839489401 + ], + [ + 11.0107242, + 50.839071601 + ], + [ + 11.0106948, + 50.838828801 + ], + [ + 11.010566, + 50.838117401 + ], + [ + 11.0103944, + 50.837365301 + ], + [ + 11.0102227, + 50.836633501 + ], + [ + 11.0101392, + 50.836323801 + ], + [ + 11.0099698, + 50.835738201 + ], + [ + 11.0098472, + 50.835319001 + ], + [ + 11.0096755, + 50.834804101 + ], + [ + 11.0095542, + 50.834454701 + ], + [ + 11.0094379, + 50.834145101 + ], + [ + 11.009182, + 50.833476001 + ], + [ + 11.0088264, + 50.832586601 + ], + [ + 11.0086327, + 50.832152701 + ], + [ + 11.008313, + 50.831436301 + ], + [ + 11.0073688, + 50.829416901 + ], + [ + 11.0068181, + 50.828275701 + ], + [ + 11.0066885, + 50.828000601 + ], + [ + 11.00627, + 50.827112601 + ], + [ + 11.0055632, + 50.825618901 + ], + [ + 11.0054526, + 50.825378301 + ], + [ + 11.0053991, + 50.825272601 + ], + [ + 11.0052551, + 50.824949801 + ], + [ + 11.0050878, + 50.824619001 + ], + [ + 11.0047648, + 50.823915201 + ], + [ + 11.0045136, + 50.823387501 + ], + [ + 11.0044255, + 50.823210501 + ], + [ + 11.003854, + 50.822008501 + ], + [ + 11.0034702, + 50.821194401 + ], + [ + 11.0026408, + 50.819413601 + ], + [ + 11.002359, + 50.818815701 + ], + [ + 11.0009475, + 50.815802701 + ], + [ + 11.0004636, + 50.814629501 + ], + [ + 11.0004423, + 50.814583201 + ], + [ + 11.000192, + 50.813953201 + ], + [ + 10.9999626, + 50.813310701 + ], + [ + 10.9996298, + 50.812241801 + ], + [ + 10.9993743, + 50.811297201 + ], + [ + 10.9992536, + 50.810769701 + ], + [ + 10.9991441, + 50.810280901 + ], + [ + 10.9990477, + 50.809747701 + ], + [ + 10.9990291, + 50.809645101 + ], + [ + 10.9989246, + 50.809005901 + ], + [ + 10.9988276, + 50.808305601 + ], + [ + 10.9987456, + 50.807388001 + ], + [ + 10.9986952, + 50.806401601 + ], + [ + 10.9986869, + 50.805438301 + ], + [ + 10.9986934, + 50.805317101 + ], + [ + 10.9986951, + 50.804877101 + ], + [ + 10.9987239, + 50.804331001 + ], + [ + 10.9987937, + 50.803454001 + ], + [ + 10.998915, + 50.802430301 + ], + [ + 10.9990733, + 50.801481101 + ], + [ + 10.999162, + 50.801036001 + ], + [ + 10.9992729, + 50.800529201 + ], + [ + 10.9995144, + 50.799517201 + ], + [ + 10.9997392, + 50.798770701 + ], + [ + 11.0001459, + 50.797559701 + ], + [ + 11.000517, + 50.796601501 + ], + [ + 11.0010722, + 50.795243901 + ], + [ + 11.0020413, + 50.792940201 + ], + [ + 11.0022916, + 50.792326201 + ], + [ + 11.0028192, + 50.791032301 + ], + [ + 11.0033958, + 50.789357601 + ], + [ + 11.0037306, + 50.788182801 + ], + [ + 11.0037758, + 50.787994101 + ], + [ + 11.0040271, + 50.786946101 + ], + [ + 11.0041598, + 50.786325901 + ], + [ + 11.0042679, + 50.785705801 + ], + [ + 11.0043441, + 50.785219001 + ], + [ + 11.0044476, + 50.784386801 + ], + [ + 11.0045241, + 50.783490001 + ], + [ + 11.0045629, + 50.782826001 + ], + [ + 11.0045769, + 50.782203801 + ], + [ + 11.0045826, + 50.781685201 + ], + [ + 11.004585, + 50.781357001 + ], + [ + 11.0045453, + 50.780279301 + ], + [ + 11.0045071, + 50.779414101 + ], + [ + 11.0044924, + 50.779263901 + ], + [ + 11.0044628, + 50.778995801 + ], + [ + 11.0040322, + 50.775101901 + ], + [ + 11.0040138, + 50.774949901 + ], + [ + 11.0039637, + 50.774590701 + ], + [ + 11.0039008, + 50.774139601 + ], + [ + 11.0038343, + 50.773351001 + ], + [ + 11.0036906, + 50.771947501 + ], + [ + 11.0035593, + 50.770538401 + ], + [ + 11.003438, + 50.769691001 + ], + [ + 11.0032443, + 50.767809301 + ], + [ + 11.0032099, + 50.767028001 + ], + [ + 11.0032273, + 50.766057901 + ], + [ + 11.003257, + 50.765726101 + ], + [ + 11.0033008, + 50.765228001 + ], + [ + 11.0034085, + 50.764421001 + ], + [ + 11.00362, + 50.763354401 + ], + [ + 11.0038461, + 50.762400601 + ], + [ + 11.0041482, + 50.761432301 + ], + [ + 11.0043294, + 50.760851701 + ], + [ + 11.0045599, + 50.759863101 + ], + [ + 11.0047021, + 50.758986201 + ], + [ + 11.0047868, + 50.758091301 + ], + [ + 11.0047307, + 50.756863401 + ], + [ + 11.00470001, + 50.756615142 + ] + ] + } + }, + { + "identifier": "2026-015158--vi-bs.2026-04-08_08-00-00-000.devi-bs.2026-04-08_08-00-00-000_004.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.00317800288911,10.930893380075373,50.974927877967296,10.915439526044944", + "point": "51.00317800288911,10.930893380075373", + "startLcPosition": "37", + "impact": { + "lower": "Erfurt-Bindersleben", + "upper": "Erfurt-Gispersleben", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sangerhausen -> Erfurt", + "title": "A71 | Erfurt-Gispersleben - Erfurt-Bindersleben", + "coordinate": { + "lat": 51.00317800288911, + "long": 10.930893380075373 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "", + "A71: Sangerhausen -> Erfurt, zwischen 3.9 km hinter AS Erfurt-Gispersleben und 2.8 km vor AS Erfurt-Bindersleben", + "", + "L\u00e4nge: 3.8 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "71 EF_2026-015158_bRF_Gew\u00e4hrl. Fa. Strassing" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.93089338, + 51.003178003 + ], + [ + 10.929828, + 51.002837801 + ], + [ + 10.9286225, + 51.002452901 + ], + [ + 10.9265909, + 51.001788601 + ], + [ + 10.9257158, + 51.001473401 + ], + [ + 10.9248602, + 51.001150501 + ], + [ + 10.9240028, + 51.000803701 + ], + [ + 10.9233093, + 51.000491801 + ], + [ + 10.9224537, + 51.000097501 + ], + [ + 10.9216731, + 50.999703501 + ], + [ + 10.921096, + 50.999400401 + ], + [ + 10.9207088, + 50.999168101 + ], + [ + 10.9197332, + 50.998598201 + ], + [ + 10.919039, + 50.998163501 + ], + [ + 10.9183277, + 50.997657101 + ], + [ + 10.9174945, + 50.997051801 + ], + [ + 10.9167149, + 50.996415201 + ], + [ + 10.9159705, + 50.995760201 + ], + [ + 10.9151893, + 50.994989701 + ], + [ + 10.9145012, + 50.994256701 + ], + [ + 10.9137241, + 50.993333701 + ], + [ + 10.9131709, + 50.992573201 + ], + [ + 10.9127564, + 50.991915701 + ], + [ + 10.912451, + 50.991378501 + ], + [ + 10.9124374, + 50.991354501 + ], + [ + 10.9121666, + 50.990836201 + ], + [ + 10.9121468, + 50.990794101 + ], + [ + 10.9121201, + 50.990742101 + ], + [ + 10.9119528, + 50.990410301 + ], + [ + 10.9119396, + 50.990370801 + ], + [ + 10.9118875, + 50.990256201 + ], + [ + 10.9115764, + 50.989528001 + ], + [ + 10.9112895, + 50.988681301 + ], + [ + 10.9110703, + 50.987889701 + ], + [ + 10.9109087, + 50.987078201 + ], + [ + 10.9108148, + 50.986279301 + ], + [ + 10.91075, + 50.985477401 + ], + [ + 10.9107521, + 50.985086601 + ], + [ + 10.9107533, + 50.984876001 + ], + [ + 10.9107783, + 50.984356601 + ], + [ + 10.9108677, + 50.983437001 + ], + [ + 10.911002, + 50.982688301 + ], + [ + 10.9110198, + 50.982588901 + ], + [ + 10.9112523, + 50.981614101 + ], + [ + 10.9114503, + 50.981014801 + ], + [ + 10.9116433, + 50.980492801 + ], + [ + 10.9118827, + 50.979923601 + ], + [ + 10.912141, + 50.979408301 + ], + [ + 10.9127309, + 50.978314201 + ], + [ + 10.9134125, + 50.977281401 + ], + [ + 10.9140689, + 50.976447401 + ], + [ + 10.9149066, + 50.975468701 + ], + [ + 10.915439526, + 50.974927878 + ] + ] + } + }, + { + "identifier": "2026-017048--vi-bs.2026-04-07_07-00-00-000.devi-bs.2026-04-08_07-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.03725275761065,11.061767235848926,51.07313436601197,11.122624897092203", + "point": "51.03725275761065,11.061767235848926", + "startLcPosition": "39", + "impact": { + "lower": "S\u00f6mmerda-S\u00fcd", + "upper": "Erfurt-Stotternheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Sangerhausen", + "title": "A71 | Erfurt-Stotternheim - S\u00f6mmerda-S\u00fcd", + "coordinate": { + "lat": 51.03725275761065, + "long": 11.061767235848926 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 17.04.26 von 07:00 bis 18:00 Uhr.", + "", + "A71: Erfurt -> Sangerhausen, zwischen 1.5 km hinter AS Erfurt-Stotternheim und 5.0 km vor AS S\u00f6mmerda-S\u00fcd", + "", + "L\u00e4nge: 6.01 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "RV 2025-28 Beton AM Erf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.061767236, + 51.037252758 + ], + [ + 11.061994, + 51.037327701 + ], + [ + 11.0625902, + 51.037565301 + ], + [ + 11.062916, + 51.037712501 + ], + [ + 11.0630947, + 51.037797601 + ], + [ + 11.0637211, + 51.038126401 + ], + [ + 11.064257, + 51.038477501 + ], + [ + 11.0646063, + 51.038745201 + ], + [ + 11.0649387, + 51.039015501 + ], + [ + 11.0651667, + 51.039224201 + ], + [ + 11.0655933, + 51.039650501 + ], + [ + 11.066097, + 51.040205301 + ], + [ + 11.0666003, + 51.040764001 + ], + [ + 11.0666778, + 51.040848901 + ], + [ + 11.0669997, + 51.041188901 + ], + [ + 11.0674033, + 51.041555101 + ], + [ + 11.0677737, + 51.041851501 + ], + [ + 11.0680974, + 51.042087401 + ], + [ + 11.0684341, + 51.042321501 + ], + [ + 11.0690415, + 51.042692601 + ], + [ + 11.069616, + 51.042994101 + ], + [ + 11.0702268, + 51.043270101 + ], + [ + 11.0708273, + 51.043515601 + ], + [ + 11.071457, + 51.043737701 + ], + [ + 11.0723646, + 51.044015201 + ], + [ + 11.0733603, + 51.044268801 + ], + [ + 11.0742234, + 51.044460401 + ], + [ + 11.0749577, + 51.044603401 + ], + [ + 11.0763419, + 51.044844101 + ], + [ + 11.0786199, + 51.045194301 + ], + [ + 11.0795761, + 51.045339501 + ], + [ + 11.0806109, + 51.045509801 + ], + [ + 11.0811186, + 51.045597701 + ], + [ + 11.0815854, + 51.045690301 + ], + [ + 11.0827141, + 51.045928801 + ], + [ + 11.0832218, + 51.046050701 + ], + [ + 11.0838274, + 51.046204601 + ], + [ + 11.0846083, + 51.046417301 + ], + [ + 11.0847032, + 51.046443201 + ], + [ + 11.0853431, + 51.046632501 + ], + [ + 11.0859205, + 51.046817201 + ], + [ + 11.0863386, + 51.046956401 + ], + [ + 11.0872518, + 51.047286401 + ], + [ + 11.087903, + 51.047542101 + ], + [ + 11.0885384, + 51.047804301 + ], + [ + 11.089563, + 51.048276401 + ], + [ + 11.0900849, + 51.048539901 + ], + [ + 11.0905778, + 51.048794101 + ], + [ + 11.0910506, + 51.049046701 + ], + [ + 11.0910977, + 51.049071801 + ], + [ + 11.0922853, + 51.049744301 + ], + [ + 11.0951962, + 51.051498501 + ], + [ + 11.0960828, + 51.052051101 + ], + [ + 11.0986754, + 51.053667201 + ], + [ + 11.0996458, + 51.054287201 + ], + [ + 11.1008359, + 51.055051201 + ], + [ + 11.1010128, + 51.055164801 + ], + [ + 11.1032923, + 51.056663501 + ], + [ + 11.1055816, + 51.058209401 + ], + [ + 11.1057839, + 51.058347701 + ], + [ + 11.1080961, + 51.059928701 + ], + [ + 11.1099583, + 51.061266101 + ], + [ + 11.1117408, + 51.062546201 + ], + [ + 11.1141908, + 51.064359201 + ], + [ + 11.1154957, + 51.065354701 + ], + [ + 11.1162001, + 51.065914201 + ], + [ + 11.11664, + 51.066285201 + ], + [ + 11.1172327, + 51.066790301 + ], + [ + 11.1182889, + 51.067747001 + ], + [ + 11.1191075, + 51.068563801 + ], + [ + 11.119562, + 51.069064401 + ], + [ + 11.1200981, + 51.069654901 + ], + [ + 11.1207723, + 51.070452701 + ], + [ + 11.1214876, + 51.071395201 + ], + [ + 11.1217925, + 51.071842301 + ], + [ + 11.1221171, + 51.072310701 + ], + [ + 11.1225514, + 51.073007601 + ], + [ + 11.122624897, + 51.073134366 + ] + ] + } + }, + { + "identifier": "2026-011743--vi-bs.2026-03-31_07-00-00-000.devi-zus.2026-03-10_19-00-00-000_006.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.03774708134498,11.062988614648665,51.06607750900971,11.116393735590743", + "point": "51.03774708134498,11.062988614648665", + "startLcPosition": "40", + "impact": { + "lower": "S\u00f6mmerda-S\u00fcd", + "upper": "Erfurt-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Erfurt -> Sangerhausen", + "title": "A71 | Erfurt-Nord - S\u00f6mmerda-S\u00fcd", + "coordinate": { + "lat": 51.03774708134498, + "long": 11.062988614648665 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 07.04.26 und dem 10.04.26 von 07:00 bis 18:00 Uhr.", + "", + "A71: Erfurt -> Sangerhausen, zwischen AS Erfurt-Nord und 5.9 km vor AS S\u00f6mmerda-S\u00fcd", + "", + "L\u00e4nge: 5.01 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "RV 2025-28 Beton AM Hdf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.062988615, + 51.037747081 + ], + [ + 11.0630947, + 51.037797601 + ], + [ + 11.0637211, + 51.038126401 + ], + [ + 11.064257, + 51.038477501 + ], + [ + 11.0646063, + 51.038745201 + ], + [ + 11.0649387, + 51.039015501 + ], + [ + 11.0651667, + 51.039224201 + ], + [ + 11.0655933, + 51.039650501 + ], + [ + 11.066097, + 51.040205301 + ], + [ + 11.0666003, + 51.040764001 + ], + [ + 11.0666778, + 51.040848901 + ], + [ + 11.0669997, + 51.041188901 + ], + [ + 11.0674033, + 51.041555101 + ], + [ + 11.0677737, + 51.041851501 + ], + [ + 11.0680974, + 51.042087401 + ], + [ + 11.0684341, + 51.042321501 + ], + [ + 11.0690415, + 51.042692601 + ], + [ + 11.069616, + 51.042994101 + ], + [ + 11.0702268, + 51.043270101 + ], + [ + 11.0708273, + 51.043515601 + ], + [ + 11.071457, + 51.043737701 + ], + [ + 11.0723646, + 51.044015201 + ], + [ + 11.0733603, + 51.044268801 + ], + [ + 11.0742234, + 51.044460401 + ], + [ + 11.0749577, + 51.044603401 + ], + [ + 11.0763419, + 51.044844101 + ], + [ + 11.0786199, + 51.045194301 + ], + [ + 11.0795761, + 51.045339501 + ], + [ + 11.0806109, + 51.045509801 + ], + [ + 11.0811186, + 51.045597701 + ], + [ + 11.0815854, + 51.045690301 + ], + [ + 11.0827141, + 51.045928801 + ], + [ + 11.0832218, + 51.046050701 + ], + [ + 11.0838274, + 51.046204601 + ], + [ + 11.0846083, + 51.046417301 + ], + [ + 11.0847032, + 51.046443201 + ], + [ + 11.0853431, + 51.046632501 + ], + [ + 11.0859205, + 51.046817201 + ], + [ + 11.0863386, + 51.046956401 + ], + [ + 11.0872518, + 51.047286401 + ], + [ + 11.087903, + 51.047542101 + ], + [ + 11.0885384, + 51.047804301 + ], + [ + 11.089563, + 51.048276401 + ], + [ + 11.0900849, + 51.048539901 + ], + [ + 11.0905778, + 51.048794101 + ], + [ + 11.0910506, + 51.049046701 + ], + [ + 11.0910977, + 51.049071801 + ], + [ + 11.0922853, + 51.049744301 + ], + [ + 11.0951962, + 51.051498501 + ], + [ + 11.0960828, + 51.052051101 + ], + [ + 11.0986754, + 51.053667201 + ], + [ + 11.0996458, + 51.054287201 + ], + [ + 11.1008359, + 51.055051201 + ], + [ + 11.1010128, + 51.055164801 + ], + [ + 11.1032923, + 51.056663501 + ], + [ + 11.1055816, + 51.058209401 + ], + [ + 11.1057839, + 51.058347701 + ], + [ + 11.1080961, + 51.059928701 + ], + [ + 11.1099583, + 51.061266101 + ], + [ + 11.1117408, + 51.062546201 + ], + [ + 11.1141908, + 51.064359201 + ], + [ + 11.1154957, + 51.065354701 + ], + [ + 11.1162001, + 51.065914201 + ], + [ + 11.116393736, + 51.066077509 + ] + ] + } + }, + { + "identifier": "2024-058285--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-03-09_08-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.157320198480605,11.168647742016683,51.19553563163831,11.173565910215336", + "point": "51.157320198480605,11.168647742016683", + "startLcPosition": "43", + "impact": { + "lower": "Leubinger F\u00fcrstenh\u00fcgel", + "upper": "S\u00f6mmerda-Ost", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Sangerhausen", + "title": "A71 | S\u00f6mmerda-Ost - Leubinger F\u00fcrstenh\u00fcgel", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 51.157320198480605, + "long": 11.168647742016683 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 29.06.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.06.26)", + "", + "A71: Erfurt -> Sangerhausen, zwischen 0.2 km hinter AS S\u00f6mmerda-Ost und 0.4 km vor Leubinger F\u00fcrstenh\u00fcgel", + "", + "L\u00e4nge: 4.94 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "71 EF_2024-058285_SW_km 32,9-33,0_Br\u00fccken Leubinger F\u00fcrstenh\u00fcgel Instandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.168647742, + 51.157320198 + ], + [ + 11.1686335, + 51.157337401 + ], + [ + 11.1682785, + 51.157783601 + ], + [ + 11.1673492, + 51.158951601 + ], + [ + 11.1667734, + 51.159681201 + ], + [ + 11.1666174, + 51.159881801 + ], + [ + 11.1665858, + 51.159922501 + ], + [ + 11.1631954, + 51.164200801 + ], + [ + 11.1600652, + 51.168150301 + ], + [ + 11.1587057, + 51.169865601 + ], + [ + 11.1582873, + 51.170419901 + ], + [ + 11.1581149, + 51.170642801 + ], + [ + 11.1575678, + 51.171492701 + ], + [ + 11.1572113, + 51.172114001 + ], + [ + 11.1569864, + 51.172556101 + ], + [ + 11.1567001, + 51.173118901 + ], + [ + 11.1564128, + 51.173790701 + ], + [ + 11.1562645, + 51.174160601 + ], + [ + 11.1559303, + 51.175185001 + ], + [ + 11.1557003, + 51.176489401 + ], + [ + 11.1556445, + 51.177087101 + ], + [ + 11.1556392, + 51.177280701 + ], + [ + 11.1556106, + 51.178324701 + ], + [ + 11.1556184, + 51.178554301 + ], + [ + 11.1556667, + 51.179250501 + ], + [ + 11.1557441, + 51.179885101 + ], + [ + 11.1559601, + 51.180861201 + ], + [ + 11.1561794, + 51.181582601 + ], + [ + 11.1562058, + 51.181673101 + ], + [ + 11.1563065, + 51.181974001 + ], + [ + 11.1564673, + 51.182386201 + ], + [ + 11.1566089, + 51.182713301 + ], + [ + 11.1566818, + 51.182890301 + ], + [ + 11.1570085, + 51.183558201 + ], + [ + 11.1573624, + 51.184215301 + ], + [ + 11.1576118, + 51.184625401 + ], + [ + 11.158082, + 51.185334801 + ], + [ + 11.1582309, + 51.185539201 + ], + [ + 11.1586272, + 51.186069301 + ], + [ + 11.1589954, + 51.186499401 + ], + [ + 11.1594553, + 51.187024401 + ], + [ + 11.1598563, + 51.187434201 + ], + [ + 11.1602999, + 51.187837501 + ], + [ + 11.1612194, + 51.188682801 + ], + [ + 11.1620618, + 51.189360601 + ], + [ + 11.1626041, + 51.189752801 + ], + [ + 11.1631532, + 51.190161601 + ], + [ + 11.1642894, + 51.190901601 + ], + [ + 11.1654381, + 51.191560801 + ], + [ + 11.166038, + 51.191873701 + ], + [ + 11.1666349, + 51.192173601 + ], + [ + 11.1669441, + 51.192315101 + ], + [ + 11.167262, + 51.192481201 + ], + [ + 11.1680035, + 51.192825301 + ], + [ + 11.1681798, + 51.192905201 + ], + [ + 11.1699073, + 51.193697601 + ], + [ + 11.1712839, + 51.194341701 + ], + [ + 11.17356591, + 51.195535632 + ] + ] + } + }, + { + "identifier": "2024-058285--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-03-09_08-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.19568073560349,11.173371289391275,51.15727122317926,11.168495255669182", + "point": "51.19568073560349,11.173371289391275", + "startLcPosition": "44", + "impact": { + "lower": "S\u00f6mmerda-Ost", + "upper": "Leubinger F\u00fcrstenh\u00fcgel", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sangerhausen -> Erfurt", + "title": "A71 | Leubinger F\u00fcrstenh\u00fcgel - S\u00f6mmerda-Ost", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 51.19568073560349, + "long": 11.173371289391275 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 29.06.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.06.26)", + "", + "A71: Sangerhausen -> Erfurt, zwischen 0.4 km hinter Leubinger F\u00fcrstenh\u00fcgel und 0.2 km vor AS S\u00f6mmerda-Ost", + "", + "L\u00e4nge: 4.94 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "71 EF_2024-058285_SW_km 32,9-33,0_Br\u00fccken Leubinger F\u00fcrstenh\u00fcgel Instandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.173371289, + 51.195680736 + ], + [ + 11.1709407, + 51.194382101 + ], + [ + 11.1680608, + 51.193013901 + ], + [ + 11.1664956, + 51.192242501 + ], + [ + 11.1653765, + 51.191658701 + ], + [ + 11.1642843, + 51.191055201 + ], + [ + 11.1630862, + 51.190284201 + ], + [ + 11.1624262, + 51.189837101 + ], + [ + 11.161935, + 51.189453901 + ], + [ + 11.1612437, + 51.188904901 + ], + [ + 11.1606042, + 51.188339101 + ], + [ + 11.1603192, + 51.188083101 + ], + [ + 11.1597691, + 51.187549201 + ], + [ + 11.1595534, + 51.187320501 + ], + [ + 11.159249, + 51.187000801 + ], + [ + 11.1587191, + 51.186396501 + ], + [ + 11.158466, + 51.186084801 + ], + [ + 11.1579929, + 51.185460901 + ], + [ + 11.1577024, + 51.185048101 + ], + [ + 11.1571915, + 51.184223001 + ], + [ + 11.1568693, + 51.183641901 + ], + [ + 11.1565578, + 51.183002501 + ], + [ + 11.1563156, + 51.182484201 + ], + [ + 11.156262, + 51.182341701 + ], + [ + 11.156116, + 51.181928601 + ], + [ + 11.1559995, + 51.181640401 + ], + [ + 11.1557995, + 51.180913401 + ], + [ + 11.1556312, + 51.180151001 + ], + [ + 11.1555326, + 51.179675901 + ], + [ + 11.1554708, + 51.179229701 + ], + [ + 11.1554271, + 51.178281501 + ], + [ + 11.1554385, + 51.177284701 + ], + [ + 11.1554468, + 51.177069601 + ], + [ + 11.1555372, + 51.176337901 + ], + [ + 11.1557989, + 51.175083701 + ], + [ + 11.1560714, + 51.174179201 + ], + [ + 11.156508, + 51.173102401 + ], + [ + 11.1567845, + 51.172518901 + ], + [ + 11.1572924, + 51.171596801 + ], + [ + 11.1577783, + 51.170832301 + ], + [ + 11.1581144, + 51.170367701 + ], + [ + 11.1585458, + 51.169817301 + ], + [ + 11.1591196, + 51.169079101 + ], + [ + 11.1598846, + 51.168109301 + ], + [ + 11.1630072, + 51.164162801 + ], + [ + 11.1664335, + 51.159874301 + ], + [ + 11.1664986, + 51.159787401 + ], + [ + 11.1666226, + 51.159633501 + ], + [ + 11.1671903, + 51.158909401 + ], + [ + 11.168495256, + 51.157271223 + ] + ] + } + }, + { + "identifier": "2023-004896--vi-bs.2026-03-10_09-00-00-000.devi-zus.2025-03-17_00-00-00-000_003.f.de12", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.26034628270404,11.206140624931134,51.289806526017294,11.232792097787078", + "point": "51.26034628270404,11.206140624931134", + "startLcPosition": "45", + "impact": { + "lower": "Heldrungen", + "upper": "K\u00f6lleda", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Sangerhausen", + "title": "A71 | K\u00f6lleda - Heldrungen", + "startTimestamp": "2026-03-10T09:00:00+01:00", + "coordinate": { + "lat": 51.26034628270404, + "long": 11.206140624931134 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 09:00 Uhr", + "Ende: 30.11.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.11.28)", + "", + "A71: Erfurt -> Sangerhausen, zwischen 5.1 km hinter AS K\u00f6lleda und 2.1 km vor AS Heldrungen", + "", + "L\u00e4nge: 3.8 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "71 EF_2023-004896_bRF_ km 20,15-22,3_TIS Schm\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.206140625, + 51.260346283 + ], + [ + 11.20639, + 51.260598701 + ], + [ + 11.2069358, + 51.261169601 + ], + [ + 11.2074693, + 51.261747501 + ], + [ + 11.2077681, + 51.262083801 + ], + [ + 11.2084585, + 51.262866801 + ], + [ + 11.2088228, + 51.263295201 + ], + [ + 11.2092102, + 51.263772901 + ], + [ + 11.2092805, + 51.263863901 + ], + [ + 11.2097475, + 51.264456301 + ], + [ + 11.2101845, + 51.265020001 + ], + [ + 11.2106153, + 51.265607001 + ], + [ + 11.2108277, + 51.265895601 + ], + [ + 11.2114195, + 51.266753001 + ], + [ + 11.2119325, + 51.267523301 + ], + [ + 11.212485, + 51.268397001 + ], + [ + 11.2130203, + 51.269273401 + ], + [ + 11.2132034, + 51.269552801 + ], + [ + 11.2135891, + 51.270173201 + ], + [ + 11.2138258, + 51.270543301 + ], + [ + 11.2139089, + 51.270690101 + ], + [ + 11.2139683, + 51.270795001 + ], + [ + 11.2139727, + 51.270803201 + ], + [ + 11.2142726, + 51.271365701 + ], + [ + 11.2146096, + 51.271998001 + ], + [ + 11.2150975, + 51.272898001 + ], + [ + 11.215283, + 51.273225101 + ], + [ + 11.2155923, + 51.273770501 + ], + [ + 11.2161455, + 51.274628401 + ], + [ + 11.2162852, + 51.274841501 + ], + [ + 11.2165922, + 51.275309901 + ], + [ + 11.2167143, + 51.275496101 + ], + [ + 11.2167796, + 51.275587501 + ], + [ + 11.2169603, + 51.275840101 + ], + [ + 11.2173259, + 51.276351501 + ], + [ + 11.2179921, + 51.277168001 + ], + [ + 11.2185889, + 51.277876601 + ], + [ + 11.2186817, + 51.277986801 + ], + [ + 11.219418, + 51.278764201 + ], + [ + 11.2202167, + 51.279541601 + ], + [ + 11.2205349, + 51.279816501 + ], + [ + 11.220801, + 51.280046401 + ], + [ + 11.2210855, + 51.280292201 + ], + [ + 11.221962, + 51.281033001 + ], + [ + 11.2228698, + 51.281754301 + ], + [ + 11.2233015, + 51.282073401 + ], + [ + 11.223836, + 51.282468301 + ], + [ + 11.224557, + 51.282984501 + ], + [ + 11.2248333, + 51.283182301 + ], + [ + 11.2249045, + 51.283231801 + ], + [ + 11.2260149, + 51.284004001 + ], + [ + 11.2260354, + 51.284018301 + ], + [ + 11.2263269, + 51.284216601 + ], + [ + 11.2263646, + 51.284242301 + ], + [ + 11.2265828, + 51.284398501 + ], + [ + 11.2268024, + 51.284554701 + ], + [ + 11.2270414, + 51.284731801 + ], + [ + 11.2273575, + 51.284961301 + ], + [ + 11.2277161, + 51.285237501 + ], + [ + 11.2279883, + 51.285447201 + ], + [ + 11.2286229, + 51.285913901 + ], + [ + 11.2289221, + 51.286142201 + ], + [ + 11.2289567, + 51.286168901 + ], + [ + 11.2292706, + 51.286411601 + ], + [ + 11.2298751, + 51.286912301 + ], + [ + 11.2304697, + 51.287419301 + ], + [ + 11.2310385, + 51.287948601 + ], + [ + 11.2313978, + 51.288293001 + ], + [ + 11.2315855, + 51.288472901 + ], + [ + 11.2320808, + 51.288987901 + ], + [ + 11.2321062, + 51.289014301 + ], + [ + 11.2325963, + 51.289566201 + ], + [ + 11.232792098, + 51.289806526 + ] + ] + } + }, + { + "identifier": "2026-017048--vi-bs.2026-04-13_07-00-00-000.devi-bs.2026-04-08_07-00-00-000_003.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.228338984099935,11.183121381837404,51.22295720793352,11.18387841944165", + "point": "51.228338984099935,11.183121381837404", + "startLcPosition": "46", + "impact": { + "lower": "K\u00f6lleda", + "upper": "Schm\u00fccke", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sangerhausen -> Erfurt", + "title": "A71 | Schm\u00fccke - K\u00f6lleda", + "coordinate": { + "lat": 51.228338984099935, + "long": 11.183121381837404 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 07:00 bis 18:00 Uhr.", + "", + "A71: Sangerhausen -> Erfurt, zwischen 6.6 km hinter Schm\u00fccke und 0.5 km vor AS K\u00f6lleda", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "RV 2025-28 Beton AM Erf" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.183121382, + 51.228338984 + ], + [ + 11.1833858, + 51.226459101 + ], + [ + 11.1836715, + 51.224429901 + ], + [ + 11.1837078, + 51.224170801 + ], + [ + 11.183878419, + 51.222957208 + ] + ] + } + }, + { + "identifier": "2023-004896--vi-bs.2026-03-10_09-00-00-000.devi-zus.2025-03-17_00-00-00-000_003.f.de10", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.28985277857593,11.232648529488554,51.260401721310686,11.205998669740817", + "point": "51.28985277857593,11.232648529488554", + "startLcPosition": "47", + "impact": { + "lower": "K\u00f6lleda", + "upper": "Heldrungen", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sangerhausen -> Erfurt", + "title": "A71 | Heldrungen - K\u00f6lleda", + "startTimestamp": "2026-03-10T09:00:00+01:00", + "coordinate": { + "lat": 51.28985277857593, + "long": 11.232648529488554 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 09:00 Uhr", + "Ende: 30.11.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.11.28)", + "", + "A71: Sangerhausen -> Erfurt, zwischen 2.1 km hinter AS Heldrungen und 5.1 km vor AS K\u00f6lleda", + "", + "L\u00e4nge: 3.8 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "71 EF_2023-004896_bRF_ km 20,15-22,3_TIS Schm\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.232648529, + 51.289852779 + ], + [ + 11.2324506, + 51.289613801 + ], + [ + 11.2319484, + 51.289065201 + ], + [ + 11.2319419, + 51.289058401 + ], + [ + 11.2314428, + 51.288533601 + ], + [ + 11.2312489, + 51.288348701 + ], + [ + 11.2311605, + 51.288264301 + ], + [ + 11.2308918, + 51.288008101 + ], + [ + 11.230327, + 51.287487501 + ], + [ + 11.2297403, + 51.286979301 + ], + [ + 11.2295356, + 51.286810401 + ], + [ + 11.2291319, + 51.286477301 + ], + [ + 11.2287832, + 51.286213201 + ], + [ + 11.2285016, + 51.286000001 + ], + [ + 11.2284809, + 51.285985601 + ], + [ + 11.2281667, + 51.285765801 + ], + [ + 11.2278258, + 51.285529001 + ], + [ + 11.2277305, + 51.285466601 + ], + [ + 11.2271415, + 51.285065401 + ], + [ + 11.2264676, + 51.284604301 + ], + [ + 11.2263554, + 51.284528701 + ], + [ + 11.226098, + 51.284355401 + ], + [ + 11.2260155, + 51.284299901 + ], + [ + 11.2258001, + 51.284154901 + ], + [ + 11.2257819, + 51.284142101 + ], + [ + 11.2245252, + 51.283258901 + ], + [ + 11.2243377, + 51.283124701 + ], + [ + 11.2235278, + 51.282544901 + ], + [ + 11.223056, + 51.282196301 + ], + [ + 11.2225616, + 51.281830901 + ], + [ + 11.2216539, + 51.281109601 + ], + [ + 11.2208093, + 51.280395801 + ], + [ + 11.2207773, + 51.280368801 + ], + [ + 11.2205341, + 51.280158601 + ], + [ + 11.2199085, + 51.279618201 + ], + [ + 11.2191099, + 51.278840801 + ], + [ + 11.2183736, + 51.278063401 + ], + [ + 11.2182923, + 51.277967001 + ], + [ + 11.217684, + 51.277244601 + ], + [ + 11.2170178, + 51.276428101 + ], + [ + 11.2166635, + 51.275932701 + ], + [ + 11.2164745, + 51.275668401 + ], + [ + 11.2164061, + 51.275572701 + ], + [ + 11.216286, + 51.275389501 + ], + [ + 11.2158373, + 51.274705101 + ], + [ + 11.2152841, + 51.273847201 + ], + [ + 11.2149689, + 51.273291301 + ], + [ + 11.2147894, + 51.272974601 + ], + [ + 11.2143015, + 51.272074601 + ], + [ + 11.2139732, + 51.271428901 + ], + [ + 11.2136856, + 51.270863101 + ], + [ + 11.2136821, + 51.270856301 + ], + [ + 11.2135501, + 51.270612201 + ], + [ + 11.2133128, + 51.270168701 + ], + [ + 11.2130071, + 51.269575501 + ], + [ + 11.2128199, + 51.269246301 + ], + [ + 11.2123358, + 51.268435601 + ], + [ + 11.211799, + 51.267598201 + ], + [ + 11.2112897, + 51.266821201 + ], + [ + 11.210678, + 51.265948301 + ], + [ + 11.2103605, + 51.265503801 + ], + [ + 11.210038, + 51.265063001 + ], + [ + 11.2096069, + 51.264498601 + ], + [ + 11.2091293, + 51.263909401 + ], + [ + 11.2086618, + 51.263344801 + ], + [ + 11.208313, + 51.262929701 + ], + [ + 11.2079312, + 51.262480301 + ], + [ + 11.2073145, + 51.261780701 + ], + [ + 11.206274, + 51.260677801 + ], + [ + 11.20599867, + 51.260401721 + ] + ] + } + }, + { + "identifier": "2023-001338--vi-bs.2026-02-16_08-00-00-000.devi-zus.2025-03-03_00-00-00-000.f_001.de55", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.33260145514996,11.253198780371344,51.391419621476174,11.285380243966708", + "point": "51.33260145514996,11.253198780371344", + "startLcPosition": "48", + "impact": { + "lower": "S\u00fcdharz", + "upper": "Hohe Schrecke", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Sangerhausen", + "title": "A71 | Hohe Schrecke - S\u00fcdharz", + "startTimestamp": "2026-02-16T08:00:00+01:00", + "coordinate": { + "lat": 51.33260145514996, + "long": 11.253198780371344 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.02.26 um 08:00 Uhr", + "Ende: 13.04.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.27)", + "", + "A71: Erfurt -> Sangerhausen, zwischen 0.4 km hinter Hohe Schrecke und 6.6 km vor AD S\u00fcdharz", + "", + "L\u00e4nge: 7.06 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "71 EF_2023-001338_bRF_km 0,0-20,0_ERN Fahrbahn sowie INS von Bauwerken " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.25319878, + 51.332601455 + ], + [ + 11.2533179, + 51.332817101 + ], + [ + 11.2534568, + 51.333067701 + ], + [ + 11.2536734, + 51.333463501 + ], + [ + 11.2542485, + 51.334496801 + ], + [ + 11.2546238, + 51.335171001 + ], + [ + 11.2548659, + 51.335608301 + ], + [ + 11.2552045, + 51.336211801 + ], + [ + 11.2555669, + 51.336822801 + ], + [ + 11.2559426, + 51.337414601 + ], + [ + 11.2562443, + 51.337882201 + ], + [ + 11.2563257, + 51.338008401 + ], + [ + 11.2564846, + 51.338256001 + ], + [ + 11.256593, + 51.338419901 + ], + [ + 11.2566932, + 51.338571401 + ], + [ + 11.2569146, + 51.338906101 + ], + [ + 11.2570166, + 51.339053501 + ], + [ + 11.2573506, + 51.339555701 + ], + [ + 11.2578219, + 51.340204301 + ], + [ + 11.2581602, + 51.340640201 + ], + [ + 11.2582862, + 51.340802501 + ], + [ + 11.2594593, + 51.342318701 + ], + [ + 11.2596617, + 51.342564501 + ], + [ + 11.2598516, + 51.342791801 + ], + [ + 11.2605577, + 51.343637301 + ], + [ + 11.2616294, + 51.344833601 + ], + [ + 11.2627456, + 51.346012001 + ], + [ + 11.2633852, + 51.346668601 + ], + [ + 11.2638925, + 51.347189401 + ], + [ + 11.2664194, + 51.349780801 + ], + [ + 11.2665766, + 51.349940601 + ], + [ + 11.2674707, + 51.350938101 + ], + [ + 11.2675886, + 51.351070301 + ], + [ + 11.2682582, + 51.351889301 + ], + [ + 11.2686541, + 51.352416101 + ], + [ + 11.2691059, + 51.353048701 + ], + [ + 11.2696764, + 51.353909501 + ], + [ + 11.2701167, + 51.354641201 + ], + [ + 11.2704422, + 51.355198301 + ], + [ + 11.2706824, + 51.355652801 + ], + [ + 11.2708881, + 51.356067701 + ], + [ + 11.2711222, + 51.356575601 + ], + [ + 11.271426, + 51.357344201 + ], + [ + 11.2716067, + 51.357805101 + ], + [ + 11.2717259, + 51.358199801 + ], + [ + 11.2717812, + 51.358380101 + ], + [ + 11.272104, + 51.359485701 + ], + [ + 11.272139, + 51.359622601 + ], + [ + 11.2721898, + 51.359846301 + ], + [ + 11.2722997, + 51.360306801 + ], + [ + 11.2723833, + 51.360747701 + ], + [ + 11.2724592, + 51.361255501 + ], + [ + 11.2725298, + 51.361755201 + ], + [ + 11.2725559, + 51.362165001 + ], + [ + 11.2725952, + 51.362579801 + ], + [ + 11.2726318, + 51.363012501 + ], + [ + 11.2726352, + 51.363166401 + ], + [ + 11.2726354, + 51.363339801 + ], + [ + 11.2726436, + 51.363843301 + ], + [ + 11.2726468, + 51.363971101 + ], + [ + 11.2725905, + 51.367410401 + ], + [ + 11.272568, + 51.368035401 + ], + [ + 11.2725409, + 51.368820501 + ], + [ + 11.2725523, + 51.369379501 + ], + [ + 11.2725646, + 51.369914601 + ], + [ + 11.2725707, + 51.370416901 + ], + [ + 11.2725954, + 51.370920801 + ], + [ + 11.2726541, + 51.371557001 + ], + [ + 11.2726672, + 51.371774601 + ], + [ + 11.272727, + 51.372312601 + ], + [ + 11.2727666, + 51.372547201 + ], + [ + 11.2728066, + 51.372819301 + ], + [ + 11.2728636, + 51.373248001 + ], + [ + 11.2729459, + 51.373688501 + ], + [ + 11.2730218, + 51.374085501 + ], + [ + 11.2731041, + 51.374452901 + ], + [ + 11.2731768, + 51.374749101 + ], + [ + 11.2732781, + 51.375140201 + ], + [ + 11.2733825, + 51.375547101 + ], + [ + 11.2735291, + 51.376055701 + ], + [ + 11.2736215, + 51.376366801 + ], + [ + 11.2737288, + 51.376691901 + ], + [ + 11.2738561, + 51.377086301 + ], + [ + 11.2740123, + 51.377501801 + ], + [ + 11.2742148, + 51.378019001 + ], + [ + 11.2744138, + 51.378498201 + ], + [ + 11.2746015, + 51.378904501 + ], + [ + 11.2747187, + 51.379148601 + ], + [ + 11.2750206, + 51.379778801 + ], + [ + 11.2751709, + 51.380086301 + ], + [ + 11.2754195, + 51.380584201 + ], + [ + 11.2755689, + 51.380796701 + ], + [ + 11.2757982, + 51.381187501 + ], + [ + 11.2758263, + 51.381235501 + ], + [ + 11.2759276, + 51.381411601 + ], + [ + 11.2761854, + 51.381831001 + ], + [ + 11.2762696, + 51.381963001 + ], + [ + 11.2765369, + 51.382400101 + ], + [ + 11.2767807, + 51.382753601 + ], + [ + 11.2770997, + 51.383223601 + ], + [ + 11.2772968, + 51.383489701 + ], + [ + 11.2775281, + 51.383799501 + ], + [ + 11.2778709, + 51.384251501 + ], + [ + 11.2781136, + 51.384571401 + ], + [ + 11.2785019, + 51.385034101 + ], + [ + 11.2786099, + 51.385162801 + ], + [ + 11.2788335, + 51.385442801 + ], + [ + 11.279121, + 51.385764501 + ], + [ + 11.2793173, + 51.385980101 + ], + [ + 11.2799162, + 51.386629701 + ], + [ + 11.2804679, + 51.387192701 + ], + [ + 11.2809727, + 51.387700201 + ], + [ + 11.2814643, + 51.388176701 + ], + [ + 11.2819795, + 51.388653301 + ], + [ + 11.2820339, + 51.388702001 + ], + [ + 11.2825757, + 51.389186901 + ], + [ + 11.2832007, + 51.389710701 + ], + [ + 11.2838571, + 51.390249201 + ], + [ + 11.2844497, + 51.390714101 + ], + [ + 11.2848927, + 51.391051701 + ], + [ + 11.285031, + 51.391160901 + ], + [ + 11.2853389, + 51.391390901 + ], + [ + 11.285380244, + 51.391419621 + ] + ] + } + }, + { + "identifier": "2023-001338--vi-bs.2026-04-13_08-00-00-000.devi-zus.2025-03-03_00-00-00-000.f_001.de60", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.335997220840795,11.255084106476476,51.39072850464873,11.2844686004329", + "point": "51.335997220840795,11.255084106476476", + "startLcPosition": "48", + "impact": { + "lower": "S\u00fcdharz", + "upper": "Hohe Schrecke", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Erfurt -> Sangerhausen", + "title": "A71 | Hohe Schrecke - S\u00fcdharz", + "startTimestamp": "2026-04-13T08:00:00+02:00", + "coordinate": { + "lat": 51.335997220840795, + "long": 11.255084106476476 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 08:00 Uhr", + "Ende: 15.06.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.27)", + "", + "A71: Erfurt -> Sangerhausen, zwischen 0.8 km hinter Hohe Schrecke und 6.7 km vor AD S\u00fcdharz", + "", + "L\u00e4nge: 6.56 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "71 EF_2023-001338_bRF_km 0,0-20,0_ERN Fahrbahn sowie INS von Bauwerken " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.255084106, + 51.335997221 + ], + [ + 11.2552045, + 51.336211801 + ], + [ + 11.2555669, + 51.336822801 + ], + [ + 11.2559426, + 51.337414601 + ], + [ + 11.2562443, + 51.337882201 + ], + [ + 11.2563257, + 51.338008401 + ], + [ + 11.2564846, + 51.338256001 + ], + [ + 11.256593, + 51.338419901 + ], + [ + 11.2566932, + 51.338571401 + ], + [ + 11.2569146, + 51.338906101 + ], + [ + 11.2570166, + 51.339053501 + ], + [ + 11.2573506, + 51.339555701 + ], + [ + 11.2578219, + 51.340204301 + ], + [ + 11.2581602, + 51.340640201 + ], + [ + 11.2582862, + 51.340802501 + ], + [ + 11.2594593, + 51.342318701 + ], + [ + 11.2596617, + 51.342564501 + ], + [ + 11.2598516, + 51.342791801 + ], + [ + 11.2605577, + 51.343637301 + ], + [ + 11.2616294, + 51.344833601 + ], + [ + 11.2627456, + 51.346012001 + ], + [ + 11.2633852, + 51.346668601 + ], + [ + 11.2638925, + 51.347189401 + ], + [ + 11.2664194, + 51.349780801 + ], + [ + 11.2665766, + 51.349940601 + ], + [ + 11.2674707, + 51.350938101 + ], + [ + 11.2675886, + 51.351070301 + ], + [ + 11.2682582, + 51.351889301 + ], + [ + 11.2686541, + 51.352416101 + ], + [ + 11.2691059, + 51.353048701 + ], + [ + 11.2696764, + 51.353909501 + ], + [ + 11.2701167, + 51.354641201 + ], + [ + 11.2704422, + 51.355198301 + ], + [ + 11.2706824, + 51.355652801 + ], + [ + 11.2708881, + 51.356067701 + ], + [ + 11.2711222, + 51.356575601 + ], + [ + 11.271426, + 51.357344201 + ], + [ + 11.2716067, + 51.357805101 + ], + [ + 11.2717259, + 51.358199801 + ], + [ + 11.2717812, + 51.358380101 + ], + [ + 11.272104, + 51.359485701 + ], + [ + 11.272139, + 51.359622601 + ], + [ + 11.2721898, + 51.359846301 + ], + [ + 11.2722997, + 51.360306801 + ], + [ + 11.2723833, + 51.360747701 + ], + [ + 11.2724592, + 51.361255501 + ], + [ + 11.2725298, + 51.361755201 + ], + [ + 11.2725559, + 51.362165001 + ], + [ + 11.2725952, + 51.362579801 + ], + [ + 11.2726318, + 51.363012501 + ], + [ + 11.2726352, + 51.363166401 + ], + [ + 11.2726354, + 51.363339801 + ], + [ + 11.2726436, + 51.363843301 + ], + [ + 11.2726468, + 51.363971101 + ], + [ + 11.2725905, + 51.367410401 + ], + [ + 11.272568, + 51.368035401 + ], + [ + 11.2725409, + 51.368820501 + ], + [ + 11.2725523, + 51.369379501 + ], + [ + 11.2725646, + 51.369914601 + ], + [ + 11.2725707, + 51.370416901 + ], + [ + 11.2725954, + 51.370920801 + ], + [ + 11.2726541, + 51.371557001 + ], + [ + 11.2726672, + 51.371774601 + ], + [ + 11.272727, + 51.372312601 + ], + [ + 11.2727666, + 51.372547201 + ], + [ + 11.2728066, + 51.372819301 + ], + [ + 11.2728636, + 51.373248001 + ], + [ + 11.2729459, + 51.373688501 + ], + [ + 11.2730218, + 51.374085501 + ], + [ + 11.2731041, + 51.374452901 + ], + [ + 11.2731768, + 51.374749101 + ], + [ + 11.2732781, + 51.375140201 + ], + [ + 11.2733825, + 51.375547101 + ], + [ + 11.2735291, + 51.376055701 + ], + [ + 11.2736215, + 51.376366801 + ], + [ + 11.2737288, + 51.376691901 + ], + [ + 11.2738561, + 51.377086301 + ], + [ + 11.2740123, + 51.377501801 + ], + [ + 11.2742148, + 51.378019001 + ], + [ + 11.2744138, + 51.378498201 + ], + [ + 11.2746015, + 51.378904501 + ], + [ + 11.2747187, + 51.379148601 + ], + [ + 11.2750206, + 51.379778801 + ], + [ + 11.2751709, + 51.380086301 + ], + [ + 11.2754195, + 51.380584201 + ], + [ + 11.2755689, + 51.380796701 + ], + [ + 11.2757982, + 51.381187501 + ], + [ + 11.2758263, + 51.381235501 + ], + [ + 11.2759276, + 51.381411601 + ], + [ + 11.2761854, + 51.381831001 + ], + [ + 11.2762696, + 51.381963001 + ], + [ + 11.2765369, + 51.382400101 + ], + [ + 11.2767807, + 51.382753601 + ], + [ + 11.2770997, + 51.383223601 + ], + [ + 11.2772968, + 51.383489701 + ], + [ + 11.2775281, + 51.383799501 + ], + [ + 11.2778709, + 51.384251501 + ], + [ + 11.2781136, + 51.384571401 + ], + [ + 11.2785019, + 51.385034101 + ], + [ + 11.2786099, + 51.385162801 + ], + [ + 11.2788335, + 51.385442801 + ], + [ + 11.279121, + 51.385764501 + ], + [ + 11.2793173, + 51.385980101 + ], + [ + 11.2799162, + 51.386629701 + ], + [ + 11.2804679, + 51.387192701 + ], + [ + 11.2809727, + 51.387700201 + ], + [ + 11.2814643, + 51.388176701 + ], + [ + 11.2819795, + 51.388653301 + ], + [ + 11.2820339, + 51.388702001 + ], + [ + 11.2825757, + 51.389186901 + ], + [ + 11.2832007, + 51.389710701 + ], + [ + 11.2838571, + 51.390249201 + ], + [ + 11.2844497, + 51.390714101 + ], + [ + 11.2844686, + 51.390728505 + ] + ] + } + }, + { + "identifier": "2023-001338--vi-bs.2026-02-16_08-00-00-000.devi-zus.2025-03-03_00-00-00-000.f_001.de53", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.39149593103577,11.285242379489492,51.33264106314775,11.253016034025682", + "point": "51.39149593103577,11.285242379489492", + "startLcPosition": "50", + "impact": { + "lower": "Hohe Schrecke", + "upper": "S\u00fcdharz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sangerhausen -> Erfurt", + "title": "A71 | S\u00fcdharz - Hohe Schrecke", + "startTimestamp": "2026-02-16T08:00:00+01:00", + "coordinate": { + "lat": 51.39149593103577, + "long": 11.285242379489492 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.02.26 um 08:00 Uhr", + "Ende: 13.04.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.27)", + "", + "A71: Sangerhausen -> Erfurt, zwischen 6.6 km hinter AD S\u00fcdharz und 0.4 km vor Hohe Schrecke", + "", + "L\u00e4nge: 7.06 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "71 EF_2023-001338_bRF_km 0,0-20,0_ERN Fahrbahn sowie INS von Bauwerken " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.285242379, + 51.391495931 + ], + [ + 11.2848821, + 51.391236201 + ], + [ + 11.2847345, + 51.391128701 + ], + [ + 11.2842693, + 51.390773301 + ], + [ + 11.283695, + 51.390335701 + ], + [ + 11.2830412, + 51.389785801 + ], + [ + 11.2824293, + 51.389276601 + ], + [ + 11.2818513, + 51.388761001 + ], + [ + 11.2813048, + 51.388255101 + ], + [ + 11.2807896, + 51.387757301 + ], + [ + 11.2802849, + 51.387258001 + ], + [ + 11.279741, + 51.386703101 + ], + [ + 11.2791369, + 51.386037201 + ], + [ + 11.2786635, + 51.385492201 + ], + [ + 11.2783314, + 51.385087401 + ], + [ + 11.2779549, + 51.384620701 + ], + [ + 11.2774868, + 51.384026601 + ], + [ + 11.2769376, + 51.383277501 + ], + [ + 11.2767864, + 51.383055601 + ], + [ + 11.2766133, + 51.382792701 + ], + [ + 11.2762786, + 51.382273701 + ], + [ + 11.2760925, + 51.381993101 + ], + [ + 11.2759933, + 51.381837601 + ], + [ + 11.2757423, + 51.381414001 + ], + [ + 11.2756567, + 51.381277901 + ], + [ + 11.2756303, + 51.381232301 + ], + [ + 11.2754194, + 51.380872901 + ], + [ + 11.2753109, + 51.380646001 + ], + [ + 11.2752447, + 51.380527201 + ], + [ + 11.2750339, + 51.380121001 + ], + [ + 11.2748651, + 51.379802001 + ], + [ + 11.2747346, + 51.379573401 + ], + [ + 11.2745339, + 51.379172201 + ], + [ + 11.2744205, + 51.378910901 + ], + [ + 11.2743484, + 51.378742201 + ], + [ + 11.2742563, + 51.378526701 + ], + [ + 11.274052, + 51.378043501 + ], + [ + 11.2737211, + 51.377223501 + ], + [ + 11.2736767, + 51.377112701 + ], + [ + 11.2735133, + 51.376671801 + ], + [ + 11.273446, + 51.376476201 + ], + [ + 11.2733427, + 51.376172501 + ], + [ + 11.2731757, + 51.375599301 + ], + [ + 11.2730519, + 51.375186001 + ], + [ + 11.2729419, + 51.374805801 + ], + [ + 11.2728633, + 51.374479601 + ], + [ + 11.2727828, + 51.374126401 + ], + [ + 11.2726924, + 51.373729001 + ], + [ + 11.272602, + 51.373281301 + ], + [ + 11.2725081, + 51.372746801 + ], + [ + 11.2724896, + 51.372613401 + ], + [ + 11.2724691, + 51.372488401 + ], + [ + 11.2723977, + 51.371966401 + ], + [ + 11.2723723, + 51.371746901 + ], + [ + 11.2723505, + 51.371483301 + ], + [ + 11.2722896, + 51.370958301 + ], + [ + 11.2722484, + 51.370413701 + ], + [ + 11.2722326, + 51.369913301 + ], + [ + 11.2722268, + 51.369378501 + ], + [ + 11.2722268, + 51.368838801 + ], + [ + 11.2722425, + 51.368026801 + ], + [ + 11.2722719, + 51.367438001 + ], + [ + 11.2723931, + 51.365751701 + ], + [ + 11.2724542, + 51.364063701 + ], + [ + 11.2724539, + 51.363883401 + ], + [ + 11.2724452, + 51.363376901 + ], + [ + 11.272442, + 51.363255201 + ], + [ + 11.2724341, + 51.363028301 + ], + [ + 11.2724103, + 51.362594801 + ], + [ + 11.2723818, + 51.362182101 + ], + [ + 11.2723366, + 51.361778401 + ], + [ + 11.2722748, + 51.361276701 + ], + [ + 11.2721916, + 51.360760101 + ], + [ + 11.2721012, + 51.360323601 + ], + [ + 11.2720014, + 51.359872401 + ], + [ + 11.2719487, + 51.359644901 + ], + [ + 11.2719118, + 51.359506701 + ], + [ + 11.2715954, + 51.358400401 + ], + [ + 11.2715395, + 51.358227401 + ], + [ + 11.2714047, + 51.357831101 + ], + [ + 11.2712359, + 51.357393201 + ], + [ + 11.2710814, + 51.357017601 + ], + [ + 11.2709102, + 51.356616801 + ], + [ + 11.2706867, + 51.356122401 + ], + [ + 11.2704775, + 51.355693301 + ], + [ + 11.2702432, + 51.355241601 + ], + [ + 11.26993, + 51.354672101 + ], + [ + 11.269481, + 51.353941701 + ], + [ + 11.268931, + 51.353104801 + ], + [ + 11.2684716, + 51.352448301 + ], + [ + 11.2680957, + 51.351924401 + ], + [ + 11.2676153, + 51.351339701 + ], + [ + 11.2674344, + 51.351126901 + ], + [ + 11.2673231, + 51.350990201 + ], + [ + 11.2664302, + 51.349994001 + ], + [ + 11.2662722, + 51.349832101 + ], + [ + 11.2637473, + 51.347244101 + ], + [ + 11.2632067, + 51.346689001 + ], + [ + 11.2626005, + 51.346066701 + ], + [ + 11.2614829, + 51.344886901 + ], + [ + 11.2604102, + 51.343689401 + ], + [ + 11.2596514, + 51.342798701 + ], + [ + 11.2594384, + 51.342545201 + ], + [ + 11.2592557, + 51.342330301 + ], + [ + 11.2580812, + 51.340808101 + ], + [ + 11.2579295, + 51.340604201 + ], + [ + 11.2576628, + 51.340245701 + ], + [ + 11.2571929, + 51.339599201 + ], + [ + 11.2567347, + 51.338944901 + ], + [ + 11.2564613, + 51.338533401 + ], + [ + 11.2564156, + 51.338464601 + ], + [ + 11.2563073, + 51.338301601 + ], + [ + 11.2561447, + 51.338055001 + ], + [ + 11.2560628, + 51.337927901 + ], + [ + 11.2557593, + 51.337460701 + ], + [ + 11.2553833, + 51.336859701 + ], + [ + 11.2550139, + 51.336251101 + ], + [ + 11.2546714, + 51.335650101 + ], + [ + 11.2540604, + 51.334538901 + ], + [ + 11.2532462, + 51.333057901 + ], + [ + 11.253016034, + 51.332641063 + ] + ] + } + }, + { + "identifier": "2023-001338--vi-bs.2026-04-13_08-00-00-000.devi-zus.2025-03-03_00-00-00-000.f_001.de58", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "51.39080767491915,11.284314293324496,51.336039631781404,11.254893386095567", + "point": "51.39080767491915,11.284314293324496", + "startLcPosition": "50", + "impact": { + "lower": "Hohe Schrecke", + "upper": "S\u00fcdharz", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sangerhausen -> Erfurt", + "title": "A71 | S\u00fcdharz - Hohe Schrecke", + "startTimestamp": "2026-04-13T08:00:00+02:00", + "coordinate": { + "lat": 51.39080767491915, + "long": 11.284314293324496 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 08:00 Uhr", + "Ende: 15.06.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.27)", + "", + "A71: Sangerhausen -> Erfurt, zwischen 6.7 km hinter AD S\u00fcdharz und 0.8 km vor Hohe Schrecke", + "", + "L\u00e4nge: 6.56 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "71 EF_2023-001338_bRF_km 0,0-20,0_ERN Fahrbahn sowie INS von Bauwerken " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.284314293, + 51.390807675 + ], + [ + 11.2842693, + 51.390773301 + ], + [ + 11.283695, + 51.390335701 + ], + [ + 11.2830412, + 51.389785801 + ], + [ + 11.2824293, + 51.389276601 + ], + [ + 11.2818513, + 51.388761001 + ], + [ + 11.2813048, + 51.388255101 + ], + [ + 11.2807896, + 51.387757301 + ], + [ + 11.2802849, + 51.387258001 + ], + [ + 11.279741, + 51.386703101 + ], + [ + 11.2791369, + 51.386037201 + ], + [ + 11.2786635, + 51.385492201 + ], + [ + 11.2783314, + 51.385087401 + ], + [ + 11.2779549, + 51.384620701 + ], + [ + 11.2774868, + 51.384026601 + ], + [ + 11.2769376, + 51.383277501 + ], + [ + 11.2767864, + 51.383055601 + ], + [ + 11.2766133, + 51.382792701 + ], + [ + 11.2762786, + 51.382273701 + ], + [ + 11.2760925, + 51.381993101 + ], + [ + 11.2759933, + 51.381837601 + ], + [ + 11.2757423, + 51.381414001 + ], + [ + 11.2756567, + 51.381277901 + ], + [ + 11.2756303, + 51.381232301 + ], + [ + 11.2754194, + 51.380872901 + ], + [ + 11.2753109, + 51.380646001 + ], + [ + 11.2752447, + 51.380527201 + ], + [ + 11.2750339, + 51.380121001 + ], + [ + 11.2748651, + 51.379802001 + ], + [ + 11.2747346, + 51.379573401 + ], + [ + 11.2745339, + 51.379172201 + ], + [ + 11.2744205, + 51.378910901 + ], + [ + 11.2743484, + 51.378742201 + ], + [ + 11.2742563, + 51.378526701 + ], + [ + 11.274052, + 51.378043501 + ], + [ + 11.2737211, + 51.377223501 + ], + [ + 11.2736767, + 51.377112701 + ], + [ + 11.2735133, + 51.376671801 + ], + [ + 11.273446, + 51.376476201 + ], + [ + 11.2733427, + 51.376172501 + ], + [ + 11.2731757, + 51.375599301 + ], + [ + 11.2730519, + 51.375186001 + ], + [ + 11.2729419, + 51.374805801 + ], + [ + 11.2728633, + 51.374479601 + ], + [ + 11.2727828, + 51.374126401 + ], + [ + 11.2726924, + 51.373729001 + ], + [ + 11.272602, + 51.373281301 + ], + [ + 11.2725081, + 51.372746801 + ], + [ + 11.2724896, + 51.372613401 + ], + [ + 11.2724691, + 51.372488401 + ], + [ + 11.2723977, + 51.371966401 + ], + [ + 11.2723723, + 51.371746901 + ], + [ + 11.2723505, + 51.371483301 + ], + [ + 11.2722896, + 51.370958301 + ], + [ + 11.2722484, + 51.370413701 + ], + [ + 11.2722326, + 51.369913301 + ], + [ + 11.2722268, + 51.369378501 + ], + [ + 11.2722268, + 51.368838801 + ], + [ + 11.2722425, + 51.368026801 + ], + [ + 11.2722719, + 51.367438001 + ], + [ + 11.2723931, + 51.365751701 + ], + [ + 11.2724542, + 51.364063701 + ], + [ + 11.2724539, + 51.363883401 + ], + [ + 11.2724452, + 51.363376901 + ], + [ + 11.272442, + 51.363255201 + ], + [ + 11.2724341, + 51.363028301 + ], + [ + 11.2724103, + 51.362594801 + ], + [ + 11.2723818, + 51.362182101 + ], + [ + 11.2723366, + 51.361778401 + ], + [ + 11.2722748, + 51.361276701 + ], + [ + 11.2721916, + 51.360760101 + ], + [ + 11.2721012, + 51.360323601 + ], + [ + 11.2720014, + 51.359872401 + ], + [ + 11.2719487, + 51.359644901 + ], + [ + 11.2719118, + 51.359506701 + ], + [ + 11.2715954, + 51.358400401 + ], + [ + 11.2715395, + 51.358227401 + ], + [ + 11.2714047, + 51.357831101 + ], + [ + 11.2712359, + 51.357393201 + ], + [ + 11.2710814, + 51.357017601 + ], + [ + 11.2709102, + 51.356616801 + ], + [ + 11.2706867, + 51.356122401 + ], + [ + 11.2704775, + 51.355693301 + ], + [ + 11.2702432, + 51.355241601 + ], + [ + 11.26993, + 51.354672101 + ], + [ + 11.269481, + 51.353941701 + ], + [ + 11.268931, + 51.353104801 + ], + [ + 11.2684716, + 51.352448301 + ], + [ + 11.2680957, + 51.351924401 + ], + [ + 11.2676153, + 51.351339701 + ], + [ + 11.2674344, + 51.351126901 + ], + [ + 11.2673231, + 51.350990201 + ], + [ + 11.2664302, + 51.349994001 + ], + [ + 11.2662722, + 51.349832101 + ], + [ + 11.2637473, + 51.347244101 + ], + [ + 11.2632067, + 51.346689001 + ], + [ + 11.2626005, + 51.346066701 + ], + [ + 11.2614829, + 51.344886901 + ], + [ + 11.2604102, + 51.343689401 + ], + [ + 11.2596514, + 51.342798701 + ], + [ + 11.2594384, + 51.342545201 + ], + [ + 11.2592557, + 51.342330301 + ], + [ + 11.2580812, + 51.340808101 + ], + [ + 11.2579295, + 51.340604201 + ], + [ + 11.2576628, + 51.340245701 + ], + [ + 11.2571929, + 51.339599201 + ], + [ + 11.2567347, + 51.338944901 + ], + [ + 11.2564613, + 51.338533401 + ], + [ + 11.2564156, + 51.338464601 + ], + [ + 11.2563073, + 51.338301601 + ], + [ + 11.2561447, + 51.338055001 + ], + [ + 11.2560628, + 51.337927901 + ], + [ + 11.2557593, + 51.337460701 + ], + [ + 11.2553833, + 51.336859701 + ], + [ + 11.2550139, + 51.336251101 + ], + [ + 11.254893386, + 51.336039632 + ] + ] + } + } + ] + }, + "A72": { + "roadworks": [ + { + "identifier": "2025-048722--vi-bs.2026-04-13_00-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.40361668869184,12.019261810971987,50.406176463001565,12.025035029648455", + "point": "50.40361668869184,12.019261810971987", + "startLcPosition": "4", + "impact": { + "lower": "Gro\u00dfz\u00f6bern", + "upper": "Landesgrenze", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hof -> Plauen", + "title": "A72 | Landesgrenze - Gro\u00dfz\u00f6bern", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 50.40361668869184, + "long": 12.019261810971987 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 31.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A72: Hof -> Plauen, zwischen 3.3 km hinter Landesgrenze und 0.6 km vor Gro\u00dfz\u00f6bern", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A72 Entw\u00e4sserungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.019261811, + 50.403616689 + ], + [ + 12.020164, + 50.404027401 + ], + [ + 12.0226532, + 50.405118501 + ], + [ + 12.0228722, + 50.405216401 + ], + [ + 12.0238927, + 50.405687701 + ], + [ + 12.0249241, + 50.406132901 + ], + [ + 12.02503503, + 50.406176463 + ] + ] + } + }, + { + "identifier": "2025-048735--vi-bs.2026-03-29_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_004.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.654555561291254,12.5011273507531,50.677413479618785,12.572073793483396", + "point": "50.654555561291254,12.5011273507531", + "startLcPosition": "16", + "impact": { + "lower": "Zwickau-Ost", + "upper": "Niedercrinitz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Plauen -> Zwickau", + "title": "A72 | Niedercrinitz - Zwickau-Ost", + "startTimestamp": "2026-03-29T00:00:00+01:00", + "coordinate": { + "lat": 50.654555561291254, + "long": 12.5011273507531 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.03.26 um 00:00 Uhr", + "Ende: 01.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.26)", + "", + "A72: Plauen -> Zwickau, zwischen 1.1 km hinter Niedercrinitz und 0.9 km vor AS Zwickau-Ost", + "", + "L\u00e4nge: 6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A72 Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.501127351, + 50.654555561 + ], + [ + 12.5016881, + 50.654948201 + ], + [ + 12.5019718, + 50.655144701 + ], + [ + 12.5039365, + 50.656508801 + ], + [ + 12.5044205, + 50.656844901 + ], + [ + 12.5047068, + 50.657046201 + ], + [ + 12.5077124, + 50.659133201 + ], + [ + 12.5086764, + 50.659803001 + ], + [ + 12.5107018, + 50.661235701 + ], + [ + 12.5122996, + 50.662336701 + ], + [ + 12.5128932, + 50.662724701 + ], + [ + 12.5134801, + 50.663116501 + ], + [ + 12.5138343, + 50.663329101 + ], + [ + 12.5142029, + 50.663535401 + ], + [ + 12.5145859, + 50.663733801 + ], + [ + 12.5149748, + 50.663922101 + ], + [ + 12.5154539, + 50.664141501 + ], + [ + 12.5159462, + 50.664359001 + ], + [ + 12.5169327, + 50.664795301 + ], + [ + 12.5182248, + 50.665369801 + ], + [ + 12.5187639, + 50.665640901 + ], + [ + 12.5190798, + 50.665801601 + ], + [ + 12.5192069, + 50.665875401 + ], + [ + 12.5196049, + 50.666106401 + ], + [ + 12.5203096, + 50.666548501 + ], + [ + 12.5217726, + 50.667474301 + ], + [ + 12.5227761, + 50.668095001 + ], + [ + 12.523818, + 50.668702101 + ], + [ + 12.5247489, + 50.669204201 + ], + [ + 12.5311982, + 50.672629901 + ], + [ + 12.5320048, + 50.673059301 + ], + [ + 12.5337889, + 50.673965701 + ], + [ + 12.5345202, + 50.674262201 + ], + [ + 12.5350329, + 50.674444301 + ], + [ + 12.5355224, + 50.674599001 + ], + [ + 12.535953, + 50.674719601 + ], + [ + 12.5364164, + 50.674834301 + ], + [ + 12.5373652, + 50.675033601 + ], + [ + 12.5393418, + 50.675424401 + ], + [ + 12.5403968, + 50.675629701 + ], + [ + 12.5407007, + 50.675688801 + ], + [ + 12.5423871, + 50.676021401 + ], + [ + 12.5432727, + 50.676195001 + ], + [ + 12.5437112, + 50.676275801 + ], + [ + 12.544147, + 50.676345501 + ], + [ + 12.5444414, + 50.676388701 + ], + [ + 12.5447588, + 50.676429701 + ], + [ + 12.5453904, + 50.676490101 + ], + [ + 12.5459858, + 50.676525401 + ], + [ + 12.5465989, + 50.676541501 + ], + [ + 12.5470398, + 50.676539501 + ], + [ + 12.5474887, + 50.676526701 + ], + [ + 12.5483291, + 50.676470201 + ], + [ + 12.5486177, + 50.676444301 + ], + [ + 12.5489138, + 50.676410701 + ], + [ + 12.5494295, + 50.676346701 + ], + [ + 12.5506754, + 50.676186401 + ], + [ + 12.5508337, + 50.676166501 + ], + [ + 12.5510011, + 50.676145401 + ], + [ + 12.5511424, + 50.676127601 + ], + [ + 12.5530259, + 50.675890401 + ], + [ + 12.5564696, + 50.675454701 + ], + [ + 12.5577406, + 50.675297301 + ], + [ + 12.5586529, + 50.675190401 + ], + [ + 12.5595822, + 50.675117701 + ], + [ + 12.5602718, + 50.675092201 + ], + [ + 12.5611238, + 50.675081401 + ], + [ + 12.5612837, + 50.675084701 + ], + [ + 12.5620712, + 50.675102801 + ], + [ + 12.5623264, + 50.675112201 + ], + [ + 12.5627575, + 50.675134701 + ], + [ + 12.563879, + 50.675223301 + ], + [ + 12.5642616, + 50.675265801 + ], + [ + 12.5646597, + 50.675317501 + ], + [ + 12.5653596, + 50.675421701 + ], + [ + 12.5660611, + 50.675544901 + ], + [ + 12.5665776, + 50.675650801 + ], + [ + 12.5670909, + 50.675768201 + ], + [ + 12.5676148, + 50.675897101 + ], + [ + 12.5681295, + 50.676036401 + ], + [ + 12.5684117, + 50.676125701 + ], + [ + 12.5689743, + 50.676303701 + ], + [ + 12.5698103, + 50.676592101 + ], + [ + 12.572073793, + 50.67741348 + ] + ] + } + }, + { + "identifier": "2025-048735--vi-bs.2026-03-29_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_004.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.67751007766864,12.57198683768383,50.65464790160458,12.500968679941787", + "point": "50.67751007766864,12.57198683768383", + "startLcPosition": "17", + "impact": { + "lower": "Niedercrinitz", + "upper": "Zwickau-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Zwickau -> Plauen", + "title": "A72 | Zwickau-Ost - Niedercrinitz", + "startTimestamp": "2026-03-29T00:00:00+01:00", + "coordinate": { + "lat": 50.67751007766864, + "long": 12.57198683768383 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.03.26 um 00:00 Uhr", + "Ende: 01.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.26)", + "", + "A72: Zwickau -> Plauen, zwischen 0.9 km hinter AS Zwickau-Ost und 1.1 km vor Niedercrinitz", + "", + "L\u00e4nge: 6 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A72 Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.571986838, + 50.677510078 + ], + [ + 12.570119, + 50.676830101 + ], + [ + 12.569725, + 50.676685901 + ], + [ + 12.5689158, + 50.676404901 + ], + [ + 12.5683297, + 50.676219601 + ], + [ + 12.5680738, + 50.676143201 + ], + [ + 12.5670514, + 50.675876001 + ], + [ + 12.5665381, + 50.675761401 + ], + [ + 12.5660176, + 50.675656301 + ], + [ + 12.5653429, + 50.675534301 + ], + [ + 12.5646648, + 50.675431501 + ], + [ + 12.564248, + 50.675377401 + ], + [ + 12.5638369, + 50.675331001 + ], + [ + 12.5635558, + 50.675304201 + ], + [ + 12.5633444, + 50.675284101 + ], + [ + 12.5627726, + 50.675244301 + ], + [ + 12.5623261, + 50.675219701 + ], + [ + 12.5621387, + 50.675212701 + ], + [ + 12.5617908, + 50.675201301 + ], + [ + 12.5615083, + 50.675195501 + ], + [ + 12.5609457, + 50.675190401 + ], + [ + 12.5607301, + 50.675195601 + ], + [ + 12.5595729, + 50.675231601 + ], + [ + 12.5586711, + 50.675303901 + ], + [ + 12.5577791, + 50.675395701 + ], + [ + 12.5530491, + 50.676002601 + ], + [ + 12.5511834, + 50.676238001 + ], + [ + 12.5510358, + 50.676256601 + ], + [ + 12.5508684, + 50.676277701 + ], + [ + 12.5506845, + 50.676300901 + ], + [ + 12.5495, + 50.676454001 + ], + [ + 12.5489032, + 50.676525201 + ], + [ + 12.548607, + 50.676558901 + ], + [ + 12.5483184, + 50.676586001 + ], + [ + 12.5474394, + 50.676639401 + ], + [ + 12.5469973, + 50.676650801 + ], + [ + 12.5465872, + 50.676651801 + ], + [ + 12.5460314, + 50.676637301 + ], + [ + 12.5454875, + 50.676608201 + ], + [ + 12.544766, + 50.676542501 + ], + [ + 12.5443987, + 50.676495901 + ], + [ + 12.5436614, + 50.676382701 + ], + [ + 12.5432291, + 50.676302901 + ], + [ + 12.5425195, + 50.676164201 + ], + [ + 12.5406409, + 50.675796801 + ], + [ + 12.5403236, + 50.675735301 + ], + [ + 12.5392654, + 50.675526801 + ], + [ + 12.5368569, + 50.675044301 + ], + [ + 12.5364035, + 50.674945301 + ], + [ + 12.5359675, + 50.674842201 + ], + [ + 12.5355958, + 50.674740901 + ], + [ + 12.5350503, + 50.674576401 + ], + [ + 12.534408, + 50.674351801 + ], + [ + 12.533738, + 50.674074001 + ], + [ + 12.5318939, + 50.673144101 + ], + [ + 12.5299164, + 50.672091501 + ], + [ + 12.5281012, + 50.671120201 + ], + [ + 12.5246386, + 50.669288401 + ], + [ + 12.5243059, + 50.669111801 + ], + [ + 12.5241349, + 50.669020001 + ], + [ + 12.5236986, + 50.668784901 + ], + [ + 12.5231065, + 50.668446601 + ], + [ + 12.5221145, + 50.667850101 + ], + [ + 12.5215406, + 50.667493901 + ], + [ + 12.5201813, + 50.666623901 + ], + [ + 12.5194895, + 50.666190501 + ], + [ + 12.518794, + 50.665797101 + ], + [ + 12.5181149, + 50.665462101 + ], + [ + 12.5168378, + 50.664891201 + ], + [ + 12.5148731, + 50.664024601 + ], + [ + 12.5140539, + 50.663633801 + ], + [ + 12.5136752, + 50.663427501 + ], + [ + 12.5133467, + 50.663234001 + ], + [ + 12.5133094, + 50.663210801 + ], + [ + 12.5121409, + 50.662423701 + ], + [ + 12.510489, + 50.661299501 + ], + [ + 12.5074788, + 50.659188601 + ], + [ + 12.5044598, + 50.657085501 + ], + [ + 12.5042309, + 50.656925901 + ], + [ + 12.5018031, + 50.655226401 + ], + [ + 12.5015509, + 50.655049901 + ], + [ + 12.50096868, + 50.654647902 + ] + ] + } + }, + { + "identifier": "2026-017012--vi-bs.2026-04-07_10-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.796691056690015,12.851378520282006,50.681540294261275,12.583079557549079", + "point": "50.796691056690015,12.851378520282006", + "startLcPosition": "23", + "impact": { + "lower": "Zwickau-Ost", + "upper": "Chemnitz-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Chemnitz -> Plauen", + "title": "A72 | Chemnitz-S\u00fcd - Zwickau-Ost", + "coordinate": { + "lat": 50.796691056690015, + "long": 12.851378520282006 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A72: Chemnitz -> Plauen, zwischen 1.4 km hinter AS Chemnitz-S\u00fcd und AS Zwickau-Ost", + "", + "L\u00e4nge: 25.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A72 von Chemnitz-S\u00fcd (AS) nach Zwickau-Ost (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.85137852, + 50.796691057 + ], + [ + 12.8510103, + 50.796354501 + ], + [ + 12.850827, + 50.796194201 + ], + [ + 12.8505459, + 50.795964501 + ], + [ + 12.8501367, + 50.795647101 + ], + [ + 12.8497262, + 50.795359601 + ], + [ + 12.8493477, + 50.795118301 + ], + [ + 12.8489729, + 50.794888101 + ], + [ + 12.8485269, + 50.794644501 + ], + [ + 12.8482703, + 50.794511401 + ], + [ + 12.8474907, + 50.794145501 + ], + [ + 12.8467508, + 50.793844501 + ], + [ + 12.8460317, + 50.793587201 + ], + [ + 12.8455664, + 50.793431501 + ], + [ + 12.8431174, + 50.792628301 + ], + [ + 12.8427865, + 50.792518401 + ], + [ + 12.8419861, + 50.792249101 + ], + [ + 12.8413285, + 50.792003601 + ], + [ + 12.8405622, + 50.791693601 + ], + [ + 12.83997, + 50.791431101 + ], + [ + 12.8393028, + 50.791108301 + ], + [ + 12.8390538, + 50.790985101 + ], + [ + 12.8381125, + 50.790494501 + ], + [ + 12.8377422, + 50.790301301 + ], + [ + 12.8371346, + 50.789987501 + ], + [ + 12.8348078, + 50.788775301 + ], + [ + 12.8338125, + 50.788253301 + ], + [ + 12.8331537, + 50.787905301 + ], + [ + 12.8325114, + 50.787547701 + ], + [ + 12.8320845, + 50.787302801 + ], + [ + 12.8316661, + 50.787049501 + ], + [ + 12.8310976, + 50.786688301 + ], + [ + 12.8305811, + 50.786343501 + ], + [ + 12.8300638, + 50.785975701 + ], + [ + 12.8295621, + 50.785602201 + ], + [ + 12.8287701, + 50.784965201 + ], + [ + 12.8285547, + 50.784780901 + ], + [ + 12.8281567, + 50.784427801 + ], + [ + 12.827771, + 50.784068101 + ], + [ + 12.8269903, + 50.783282701 + ], + [ + 12.8262157, + 50.782465201 + ], + [ + 12.8251478, + 50.781339201 + ], + [ + 12.8237772, + 50.779886201 + ], + [ + 12.8225332, + 50.778586701 + ], + [ + 12.8214924, + 50.777487701 + ], + [ + 12.8179351, + 50.773734901 + ], + [ + 12.81692, + 50.772664201 + ], + [ + 12.8158678, + 50.771554601 + ], + [ + 12.8153484, + 50.770997801 + ], + [ + 12.814822, + 50.770396701 + ], + [ + 12.8146072, + 50.770148901 + ], + [ + 12.8142425, + 50.769711101 + ], + [ + 12.8140064, + 50.769418701 + ], + [ + 12.8136352, + 50.768947501 + ], + [ + 12.8132809, + 50.768472501 + ], + [ + 12.8122427, + 50.766984801 + ], + [ + 12.8120756, + 50.766743901 + ], + [ + 12.8114601, + 50.765868101 + ], + [ + 12.8112566, + 50.765577001 + ], + [ + 12.8093695, + 50.762871101 + ], + [ + 12.8092414, + 50.762686901 + ], + [ + 12.8084263, + 50.761518301 + ], + [ + 12.8066835, + 50.759019601 + ], + [ + 12.8064799, + 50.758727501 + ], + [ + 12.8062539, + 50.758411901 + ], + [ + 12.8058024, + 50.757807801 + ], + [ + 12.8057504, + 50.757749101 + ], + [ + 12.8055798, + 50.757530201 + ], + [ + 12.8052378, + 50.757130001 + ], + [ + 12.8049483, + 50.756812701 + ], + [ + 12.8046513, + 50.756497901 + ], + [ + 12.8042539, + 50.756103101 + ], + [ + 12.802794, + 50.754724701 + ], + [ + 12.8016179, + 50.753622801 + ], + [ + 12.7977078, + 50.749961901 + ], + [ + 12.7969139, + 50.749234801 + ], + [ + 12.7965053, + 50.748880401 + ], + [ + 12.7960853, + 50.748529601 + ], + [ + 12.7955656, + 50.748135001 + ], + [ + 12.7950331, + 50.747758701 + ], + [ + 12.7949851, + 50.747727301 + ], + [ + 12.7947812, + 50.747593801 + ], + [ + 12.7944915, + 50.747404001 + ], + [ + 12.7939348, + 50.747061901 + ], + [ + 12.7929926, + 50.746536101 + ], + [ + 12.791529, + 50.745773901 + ], + [ + 12.7903661, + 50.745153601 + ], + [ + 12.7897637, + 50.744816901 + ], + [ + 12.7891771, + 50.744472401 + ], + [ + 12.7884856, + 50.744043401 + ], + [ + 12.7878122, + 50.743594401 + ], + [ + 12.7871203, + 50.743108601 + ], + [ + 12.7864539, + 50.742601901 + ], + [ + 12.7859452, + 50.742192701 + ], + [ + 12.7854573, + 50.741771201 + ], + [ + 12.7849702, + 50.741333201 + ], + [ + 12.7845072, + 50.740886401 + ], + [ + 12.7840143, + 50.740383101 + ], + [ + 12.7838643, + 50.740223901 + ], + [ + 12.7835482, + 50.739868301 + ], + [ + 12.7830917, + 50.739334501 + ], + [ + 12.7826666, + 50.738792601 + ], + [ + 12.7823192, + 50.738314801 + ], + [ + 12.7819232, + 50.737728301 + ], + [ + 12.7815695, + 50.737151501 + ], + [ + 12.7812474, + 50.736567001 + ], + [ + 12.7811572, + 50.736395701 + ], + [ + 12.7808876, + 50.735845701 + ], + [ + 12.7806501, + 50.735286401 + ], + [ + 12.780389, + 50.734598601 + ], + [ + 12.7802539, + 50.734196501 + ], + [ + 12.7801339, + 50.733809701 + ], + [ + 12.7800111, + 50.733327301 + ], + [ + 12.7799008, + 50.732846001 + ], + [ + 12.7797425, + 50.732080601 + ], + [ + 12.779703, + 50.731876401 + ], + [ + 12.7795893, + 50.731327201 + ], + [ + 12.7793089, + 50.729942101 + ], + [ + 12.7792282, + 50.729562401 + ], + [ + 12.7790768, + 50.728944201 + ], + [ + 12.7789871, + 50.728654401 + ], + [ + 12.7788073, + 50.728215701 + ], + [ + 12.778685, + 50.727940201 + ], + [ + 12.778522, + 50.727631301 + ], + [ + 12.7783827, + 50.727401101 + ], + [ + 12.7781751, + 50.727060501 + ], + [ + 12.7780399, + 50.726868301 + ], + [ + 12.7777494, + 50.726497601 + ], + [ + 12.7774158, + 50.726110001 + ], + [ + 12.7768433, + 50.725535501 + ], + [ + 12.7765743, + 50.725289201 + ], + [ + 12.776182, + 50.724973701 + ], + [ + 12.7758886, + 50.724753001 + ], + [ + 12.7756036, + 50.724553501 + ], + [ + 12.7750002, + 50.724157801 + ], + [ + 12.774412, + 50.723816101 + ], + [ + 12.7736807, + 50.723411401 + ], + [ + 12.7721764, + 50.722570601 + ], + [ + 12.7706638, + 50.721738101 + ], + [ + 12.7698965, + 50.721310601 + ], + [ + 12.7691395, + 50.720887001 + ], + [ + 12.768737, + 50.720656301 + ], + [ + 12.7680518, + 50.720278201 + ], + [ + 12.7673858, + 50.719883501 + ], + [ + 12.7669729, + 50.719630401 + ], + [ + 12.7665636, + 50.719357901 + ], + [ + 12.7660999, + 50.719021601 + ], + [ + 12.7656392, + 50.718675101 + ], + [ + 12.7647303, + 50.717986401 + ], + [ + 12.7641485, + 50.717546101 + ], + [ + 12.7627571, + 50.716496001 + ], + [ + 12.7614011, + 50.715469301 + ], + [ + 12.7609775, + 50.715148301 + ], + [ + 12.7605477, + 50.714810301 + ], + [ + 12.7602185, + 50.714530501 + ], + [ + 12.7598922, + 50.714233701 + ], + [ + 12.7595144, + 50.713847801 + ], + [ + 12.7591598, + 50.713446301 + ], + [ + 12.7589209, + 50.713149301 + ], + [ + 12.7587465, + 50.712905201 + ], + [ + 12.7585595, + 50.712630501 + ], + [ + 12.7583839, + 50.712342201 + ], + [ + 12.7581713, + 50.711937101 + ], + [ + 12.7579815, + 50.711526501 + ], + [ + 12.7576597, + 50.710693401 + ], + [ + 12.7574381, + 50.710098001 + ], + [ + 12.757145, + 50.709315701 + ], + [ + 12.7569066, + 50.708729501 + ], + [ + 12.7566775, + 50.708257601 + ], + [ + 12.7563284, + 50.707668101 + ], + [ + 12.7559785, + 50.707170101 + ], + [ + 12.7554895, + 50.706605501 + ], + [ + 12.7552181, + 50.706323501 + ], + [ + 12.7547945, + 50.705916201 + ], + [ + 12.754005, + 50.705272101 + ], + [ + 12.7535094, + 50.704877101 + ], + [ + 12.7529577, + 50.704446001 + ], + [ + 12.752652, + 50.704202201 + ], + [ + 12.7512638, + 50.703102701 + ], + [ + 12.7503841, + 50.702409801 + ], + [ + 12.7496992, + 50.701909901 + ], + [ + 12.7489619, + 50.701459101 + ], + [ + 12.7481676, + 50.701015601 + ], + [ + 12.7477175, + 50.700798701 + ], + [ + 12.7470228, + 50.700493601 + ], + [ + 12.7460325, + 50.700124401 + ], + [ + 12.7448063, + 50.699719201 + ], + [ + 12.7431019, + 50.699158401 + ], + [ + 12.738579, + 50.697673701 + ], + [ + 12.735136, + 50.696552001 + ], + [ + 12.7341533, + 50.696256401 + ], + [ + 12.733164, + 50.695973201 + ], + [ + 12.7327052, + 50.695847601 + ], + [ + 12.7322077, + 50.695715601 + ], + [ + 12.7310824, + 50.695423201 + ], + [ + 12.7283011, + 50.694706101 + ], + [ + 12.7281129, + 50.694658201 + ], + [ + 12.7256241, + 50.694014801 + ], + [ + 12.7230319, + 50.693344601 + ], + [ + 12.7201483, + 50.692600401 + ], + [ + 12.7192289, + 50.692389801 + ], + [ + 12.7191355, + 50.692368401 + ], + [ + 12.718944, + 50.692324501 + ], + [ + 12.7178077, + 50.692089701 + ], + [ + 12.7165632, + 50.691873801 + ], + [ + 12.7153814, + 50.691703101 + ], + [ + 12.7139021, + 50.691537801 + ], + [ + 12.7129744, + 50.691461401 + ], + [ + 12.7120479, + 50.691399801 + ], + [ + 12.7099764, + 50.691338801 + ], + [ + 12.7084101, + 50.691364401 + ], + [ + 12.7077932, + 50.691384701 + ], + [ + 12.7053781, + 50.691462801 + ], + [ + 12.7049499, + 50.691475301 + ], + [ + 12.702972, + 50.691533501 + ], + [ + 12.7022477, + 50.691555601 + ], + [ + 12.701015, + 50.691593301 + ], + [ + 12.7000837, + 50.691625701 + ], + [ + 12.6994202, + 50.691648801 + ], + [ + 12.6991098, + 50.691659601 + ], + [ + 12.698565, + 50.691678101 + ], + [ + 12.6973423, + 50.691716701 + ], + [ + 12.6970483, + 50.691722301 + ], + [ + 12.6964375, + 50.691728401 + ], + [ + 12.6958244, + 50.691716301 + ], + [ + 12.6950652, + 50.691678701 + ], + [ + 12.6943103, + 50.691616601 + ], + [ + 12.6934016, + 50.691506901 + ], + [ + 12.692599, + 50.691378101 + ], + [ + 12.6908547, + 50.690995001 + ], + [ + 12.6895347, + 50.690676401 + ], + [ + 12.6879538, + 50.690294601 + ], + [ + 12.6870821, + 50.690086701 + ], + [ + 12.6862049, + 50.689890801 + ], + [ + 12.6856121, + 50.689775601 + ], + [ + 12.6850113, + 50.689680001 + ], + [ + 12.6844474, + 50.689606901 + ], + [ + 12.6838836, + 50.689552201 + ], + [ + 12.6830214, + 50.689498301 + ], + [ + 12.6818919, + 50.689478601 + ], + [ + 12.6808479, + 50.689531801 + ], + [ + 12.6800216, + 50.689607601 + ], + [ + 12.6788232, + 50.689781601 + ], + [ + 12.6772927, + 50.690089801 + ], + [ + 12.6764939, + 50.690250601 + ], + [ + 12.6742713, + 50.690703901 + ], + [ + 12.6737627, + 50.690795001 + ], + [ + 12.6732513, + 50.690873701 + ], + [ + 12.6727186, + 50.690936201 + ], + [ + 12.6721835, + 50.690981601 + ], + [ + 12.6713813, + 50.691021201 + ], + [ + 12.670785, + 50.691027501 + ], + [ + 12.6705384, + 50.691025801 + ], + [ + 12.6698891, + 50.691001301 + ], + [ + 12.6689997, + 50.690933301 + ], + [ + 12.6678601, + 50.690826001 + ], + [ + 12.6654512, + 50.690594201 + ], + [ + 12.6634416, + 50.690398501 + ], + [ + 12.6628951, + 50.690345201 + ], + [ + 12.6615029, + 50.690211501 + ], + [ + 12.6606745, + 50.690123501 + ], + [ + 12.6599965, + 50.690034101 + ], + [ + 12.6593293, + 50.689917501 + ], + [ + 12.6588029, + 50.689805501 + ], + [ + 12.658283, + 50.689677901 + ], + [ + 12.6575291, + 50.689456501 + ], + [ + 12.6569601, + 50.689261401 + ], + [ + 12.6567037, + 50.689164101 + ], + [ + 12.6563769, + 50.689030901 + ], + [ + 12.6558404, + 50.688790801 + ], + [ + 12.655316, + 50.688527801 + ], + [ + 12.654826, + 50.688247701 + ], + [ + 12.6543812, + 50.687964701 + ], + [ + 12.6539609, + 50.687665101 + ], + [ + 12.6535588, + 50.687349401 + ], + [ + 12.6531749, + 50.687029901 + ], + [ + 12.6518929, + 50.685947001 + ], + [ + 12.6516521, + 50.685745001 + ], + [ + 12.6504148, + 50.684720101 + ], + [ + 12.6497373, + 50.684233501 + ], + [ + 12.6489983, + 50.683796001 + ], + [ + 12.6486711, + 50.683623801 + ], + [ + 12.6478725, + 50.683258401 + ], + [ + 12.6474081, + 50.683071501 + ], + [ + 12.6469423, + 50.682906901 + ], + [ + 12.6467122, + 50.682832701 + ], + [ + 12.6461388, + 50.682660701 + ], + [ + 12.6453219, + 50.682460601 + ], + [ + 12.644455, + 50.682298201 + ], + [ + 12.6440257, + 50.682236701 + ], + [ + 12.6435938, + 50.682182001 + ], + [ + 12.6430341, + 50.682130401 + ], + [ + 12.6424788, + 50.682098201 + ], + [ + 12.6419271, + 50.682083001 + ], + [ + 12.6413728, + 50.682084301 + ], + [ + 12.6410095, + 50.682091301 + ], + [ + 12.6399361, + 50.682122701 + ], + [ + 12.6371913, + 50.682213301 + ], + [ + 12.6356389, + 50.682263501 + ], + [ + 12.6349787, + 50.682298801 + ], + [ + 12.6343173, + 50.682353501 + ], + [ + 12.6337691, + 50.682417901 + ], + [ + 12.6332532, + 50.682491501 + ], + [ + 12.6329899, + 50.682533001 + ], + [ + 12.6320874, + 50.682706701 + ], + [ + 12.6262375, + 50.683969901 + ], + [ + 12.6233991, + 50.684583601 + ], + [ + 12.6194531, + 50.685438601 + ], + [ + 12.6182988, + 50.685697901 + ], + [ + 12.6172043, + 50.685986801 + ], + [ + 12.6165898, + 50.686177901 + ], + [ + 12.6159838, + 50.686380801 + ], + [ + 12.6149463, + 50.686759201 + ], + [ + 12.6135817, + 50.687271201 + ], + [ + 12.6122889, + 50.687739601 + ], + [ + 12.6117499, + 50.687913801 + ], + [ + 12.6112031, + 50.688069301 + ], + [ + 12.6106086, + 50.688217501 + ], + [ + 12.6099991, + 50.688346701 + ], + [ + 12.6089991, + 50.688512801 + ], + [ + 12.6080048, + 50.688626601 + ], + [ + 12.6076274, + 50.688656501 + ], + [ + 12.6073792, + 50.688673801 + ], + [ + 12.6067404, + 50.688697101 + ], + [ + 12.6064957, + 50.688702401 + ], + [ + 12.6061913, + 50.688702101 + ], + [ + 12.6056816, + 50.688697701 + ], + [ + 12.6051708, + 50.688676801 + ], + [ + 12.6047308, + 50.688649701 + ], + [ + 12.6042927, + 50.688612601 + ], + [ + 12.6037592, + 50.688552401 + ], + [ + 12.6032264, + 50.688478601 + ], + [ + 12.6027486, + 50.688399501 + ], + [ + 12.6022743, + 50.688310201 + ], + [ + 12.6016885, + 50.688179401 + ], + [ + 12.6013854, + 50.688101701 + ], + [ + 12.6011057, + 50.688028001 + ], + [ + 12.6007565, + 50.687926501 + ], + [ + 12.60011, + 50.687721001 + ], + [ + 12.5992371, + 50.687409501 + ], + [ + 12.5976652, + 50.686833601 + ], + [ + 12.5973278, + 50.686711701 + ], + [ + 12.5945325, + 50.685701301 + ], + [ + 12.5903041, + 50.684168401 + ], + [ + 12.5896541, + 50.683928401 + ], + [ + 12.5888135, + 50.683624501 + ], + [ + 12.5883827, + 50.683468801 + ], + [ + 12.5872363, + 50.683049801 + ], + [ + 12.5854445, + 50.682398601 + ], + [ + 12.5831176, + 50.681554101 + ], + [ + 12.583079558, + 50.681540294 + ] + ] + } + }, + { + "identifier": "2024-013516--vi-bs.2026-03-04_08-00-00-000.devi-zus.2025-07-07_19-00-00-000_008.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.843465735259194,12.845498760910472,50.85193127352725,12.841075110333138", + "point": "50.843465735259194,12.845498760910472", + "startLcPosition": "24", + "impact": { + "lower": "Chemnitz-R\u00f6hrsdorf", + "upper": "Chemnitz-Rottluff", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Zwickau -> Leipzig", + "title": "A72 | Chemnitz-Rottluff - Chemnitz-R\u00f6hrsdorf", + "startTimestamp": "2026-03-04T08:00:00+01:00", + "coordinate": { + "lat": 50.843465735259194, + "long": 12.845498760910472 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 04.03.26 um 08:00 Uhr", + "Ende: 06.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A72: Zwickau -> Leipzig, zwischen 1.8 km hinter AS Chemnitz-Rottluff und 3.2 km vor AS Chemnitz-R\u00f6hrsdorf", + "", + "L\u00e4nge: 1.02 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A4-West, FBE zw. AS Limbach-Oberfrohna bis AS Chemnitz-Gl\u00f6sa (Km 73,10-79,10), RiFa G\u00f6rlitz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.845498761, + 50.843465735 + ], + [ + 12.8454881, + 50.843590501 + ], + [ + 12.8454336, + 50.844392001 + ], + [ + 12.8453743, + 50.845196801 + ], + [ + 12.8453437, + 50.845572901 + ], + [ + 12.8453011, + 50.845948701 + ], + [ + 12.8452572, + 50.846224101 + ], + [ + 12.8452066, + 50.846487101 + ], + [ + 12.8451191, + 50.846831601 + ], + [ + 12.8450225, + 50.847151801 + ], + [ + 12.8449012, + 50.847476801 + ], + [ + 12.8446532, + 50.848057001 + ], + [ + 12.8444415, + 50.848460901 + ], + [ + 12.8440915, + 50.849018901 + ], + [ + 12.8439785, + 50.849186001 + ], + [ + 12.8438504, + 50.849359101 + ], + [ + 12.8435564, + 50.849736301 + ], + [ + 12.843109, + 50.850243101 + ], + [ + 12.8427775, + 50.850567401 + ], + [ + 12.8424426, + 50.850876901 + ], + [ + 12.8420973, + 50.851172701 + ], + [ + 12.8416857, + 50.851499401 + ], + [ + 12.8412589, + 50.851811101 + ], + [ + 12.84107511, + 50.851931274 + ] + ] + } + }, + { + "identifier": "2023-004002--vi-bs.2026-04-06_00-00-00-000.f.devi-zus.2024-05-27_00-00-00-000_005.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.98202774183005,12.696580171616935,51.003469227777686,12.68778907798305", + "point": "50.98202774183005,12.696580171616935", + "startLcPosition": "30", + "impact": { + "lower": "Geithain", + "upper": "Penig", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Chemnitz -> Leipzig", + "title": "A72 | Penig - Geithain", + "startTimestamp": "2026-04-06T00:00:00+02:00", + "coordinate": { + "lat": 50.98202774183005, + "long": 12.696580171616935 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.04.26 um 00:00 Uhr", + "Ende: 30.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.26)", + "", + "A72: Chemnitz -> Leipzig, zwischen 4.1 km hinter AS Penig und 7.6 km vor AS Geithain", + "", + "L\u00e4nge: 2.47 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A72-N Km 128,37 - 128,46 beide RF - Erneuerung Fahrbahn\u00fcbergang u. Lager BW 25" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.696580172, + 50.982027742 + ], + [ + 12.6965622, + 50.982095201 + ], + [ + 12.6964298, + 50.982542801 + ], + [ + 12.6961772, + 50.983242001 + ], + [ + 12.6957856, + 50.984145501 + ], + [ + 12.6953444, + 50.985066301 + ], + [ + 12.6943039, + 50.987037201 + ], + [ + 12.6938217, + 50.987970801 + ], + [ + 12.693395, + 50.988875001 + ], + [ + 12.6929807, + 50.989895201 + ], + [ + 12.6927245, + 50.990611001 + ], + [ + 12.6926244, + 50.990899201 + ], + [ + 12.6924606, + 50.991449801 + ], + [ + 12.6923213, + 50.992013501 + ], + [ + 12.6921874, + 50.992543701 + ], + [ + 12.6921345, + 50.992798101 + ], + [ + 12.6920493, + 50.993220301 + ], + [ + 12.6919904, + 50.993522701 + ], + [ + 12.6918265, + 50.994379001 + ], + [ + 12.6917928, + 50.994565401 + ], + [ + 12.6916611, + 50.995237001 + ], + [ + 12.6915117, + 50.995959101 + ], + [ + 12.6914108, + 50.996396801 + ], + [ + 12.6912998, + 50.996791801 + ], + [ + 12.6912103, + 50.997131901 + ], + [ + 12.6910288, + 50.997712701 + ], + [ + 12.6908676, + 50.998140801 + ], + [ + 12.6906818, + 50.998618701 + ], + [ + 12.6903866, + 50.999300201 + ], + [ + 12.6901317, + 50.999823601 + ], + [ + 12.689867, + 51.000322801 + ], + [ + 12.6895031, + 51.000959201 + ], + [ + 12.689312, + 51.001270701 + ], + [ + 12.6891099, + 51.001582301 + ], + [ + 12.688757, + 51.002116601 + ], + [ + 12.6883626, + 51.002683201 + ], + [ + 12.6879138, + 51.003300201 + ], + [ + 12.687789078, + 51.003469228 + ] + ] + } + }, + { + "identifier": "2023-004002--vi-bs.2026-04-06_00-00-00-000.f.devi-zus.2024-05-27_00-00-00-000_005.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.00342197821426,12.68762810854039,50.982009128937385,12.6964076729285", + "point": "51.00342197821426,12.68762810854039", + "startLcPosition": "32", + "impact": { + "lower": "Penig", + "upper": "Geithain", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Leipzig -> Chemnitz", + "title": "A72 | Geithain - Penig", + "startTimestamp": "2026-04-06T00:00:00+02:00", + "coordinate": { + "lat": 51.00342197821426, + "long": 12.68762810854039 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.04.26 um 00:00 Uhr", + "Ende: 30.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.09.26)", + "", + "A72: Leipzig -> Chemnitz, zwischen 7.6 km hinter AS Geithain und 4.1 km vor AS Penig", + "", + "L\u00e4nge: 2.47 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A72-N Km 128,37 - 128,46 beide RF - Erneuerung Fahrbahn\u00fcbergang u. Lager BW 25" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.687628109, + 51.003421978 + ], + [ + 12.6877461, + 51.003261801 + ], + [ + 12.6882234, + 51.002603001 + ], + [ + 12.6885998, + 51.002066301 + ], + [ + 12.6889429, + 51.001553501 + ], + [ + 12.6891557, + 51.001236801 + ], + [ + 12.6893482, + 51.000927001 + ], + [ + 12.6897084, + 51.000297001 + ], + [ + 12.6898648, + 50.999982901 + ], + [ + 12.6899592, + 50.999793301 + ], + [ + 12.6902113, + 50.999275501 + ], + [ + 12.6904891, + 50.998645901 + ], + [ + 12.6906979, + 50.998108601 + ], + [ + 12.6908945, + 50.997560301 + ], + [ + 12.6910396, + 50.997104401 + ], + [ + 12.6911329, + 50.996768601 + ], + [ + 12.6911781, + 50.996600401 + ], + [ + 12.6912296, + 50.996381701 + ], + [ + 12.6913343, + 50.995948201 + ], + [ + 12.6914649, + 50.995318401 + ], + [ + 12.6914892, + 50.995196001 + ], + [ + 12.6916154, + 50.994547501 + ], + [ + 12.6918052, + 50.993548401 + ], + [ + 12.6918684, + 50.993232101 + ], + [ + 12.6919194, + 50.992936101 + ], + [ + 12.6920081, + 50.992535701 + ], + [ + 12.6921459, + 50.991996001 + ], + [ + 12.6922831, + 50.991454801 + ], + [ + 12.6924201, + 50.990953901 + ], + [ + 12.6925314, + 50.990639201 + ], + [ + 12.6927825, + 50.989924101 + ], + [ + 12.6932187, + 50.988846501 + ], + [ + 12.6936567, + 50.987925901 + ], + [ + 12.6941392, + 50.986998201 + ], + [ + 12.6944397, + 50.986427801 + ], + [ + 12.6951691, + 50.985045401 + ], + [ + 12.6956585, + 50.984019201 + ], + [ + 12.6960044, + 50.983221201 + ], + [ + 12.6962381, + 50.982559601 + ], + [ + 12.6963911, + 50.982069401 + ], + [ + 12.696407673, + 50.982009129 + ] + ] + } + }, + { + "identifier": "2025-061443--vi-bs.2026-03-24_08-00-00-000.devi-zus.2026-03-23_08-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.09497202802962,12.528238773330155,51.13821682073557,12.508846223855372", + "point": "51.09497202802962,12.528238773330155", + "startLcPosition": "32", + "impact": { + "lower": "Borna-Nord", + "upper": "Geithain", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Chemnitz -> Leipzig", + "title": "A72 | Geithain - Borna-Nord", + "startTimestamp": "2026-03-24T08:00:00+01:00", + "coordinate": { + "lat": 51.09497202802962, + "long": 12.528238773330155 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 08:00 Uhr", + "Ende: 23.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 23.04.26)", + "", + "A72: Chemnitz -> Leipzig, zwischen 10.0 km hinter AS Geithain und 0.5 km vor AS Borna-Nord", + "", + "L\u00e4nge: 5.14 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "Farbahnerneuerung A72 AS Geithain - AS Borna-Nord (Km 148,02 - 152,70) RiFa Leipzig " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.528238773, + 51.094972028 + ], + [ + 12.5281003, + 51.095084701 + ], + [ + 12.5275052, + 51.095574001 + ], + [ + 12.527059, + 51.095938301 + ], + [ + 12.526438, + 51.096465501 + ], + [ + 12.5261317, + 51.096747301 + ], + [ + 12.5257628, + 51.097101101 + ], + [ + 12.5254906, + 51.097376801 + ], + [ + 12.5251851, + 51.097686901 + ], + [ + 12.5249159, + 51.097973501 + ], + [ + 12.524695, + 51.098214701 + ], + [ + 12.5246084, + 51.098314001 + ], + [ + 12.5245724, + 51.098355201 + ], + [ + 12.5239476, + 51.099079701 + ], + [ + 12.5235954, + 51.099494701 + ], + [ + 12.5232687, + 51.099898701 + ], + [ + 12.5230008, + 51.100249501 + ], + [ + 12.5223776, + 51.101124501 + ], + [ + 12.5219544, + 51.101764501 + ], + [ + 12.5215501, + 51.102429301 + ], + [ + 12.5214417, + 51.102607401 + ], + [ + 12.5210091, + 51.103401001 + ], + [ + 12.5206147, + 51.104207001 + ], + [ + 12.5202872, + 51.104955501 + ], + [ + 12.5199886, + 51.105714401 + ], + [ + 12.5196113, + 51.106851601 + ], + [ + 12.519318, + 51.107934201 + ], + [ + 12.5190512, + 51.109259701 + ], + [ + 12.51887, + 51.110325901 + ], + [ + 12.5187977, + 51.110814001 + ], + [ + 12.5187216, + 51.111292501 + ], + [ + 12.5186709, + 51.111645101 + ], + [ + 12.5186268, + 51.111995101 + ], + [ + 12.5185154, + 51.112847101 + ], + [ + 12.5184703, + 51.113278101 + ], + [ + 12.5184147, + 51.113771201 + ], + [ + 12.5183184, + 51.114824201 + ], + [ + 12.5182631, + 51.115555201 + ], + [ + 12.5182403, + 51.115856001 + ], + [ + 12.518208, + 51.116460101 + ], + [ + 12.5181605, + 51.117443501 + ], + [ + 12.5181317, + 51.118577701 + ], + [ + 12.5181205, + 51.119495201 + ], + [ + 12.5181218, + 51.119696401 + ], + [ + 12.5181264, + 51.120034601 + ], + [ + 12.5181317, + 51.120420401 + ], + [ + 12.5181434, + 51.121141501 + ], + [ + 12.5181679, + 51.121810701 + ], + [ + 12.5182218, + 51.122793001 + ], + [ + 12.5182464, + 51.123280101 + ], + [ + 12.518331, + 51.124359601 + ], + [ + 12.5183387, + 51.124509501 + ], + [ + 12.5183697, + 51.125108201 + ], + [ + 12.5183724, + 51.125489501 + ], + [ + 12.5183615, + 51.125902901 + ], + [ + 12.5183412, + 51.126130701 + ], + [ + 12.5183173, + 51.126364801 + ], + [ + 12.5182398, + 51.126822601 + ], + [ + 12.5181482, + 51.127214401 + ], + [ + 12.5180208, + 51.127627101 + ], + [ + 12.5179383, + 51.127875901 + ], + [ + 12.5178424, + 51.128131801 + ], + [ + 12.5177076, + 51.128457001 + ], + [ + 12.5175682, + 51.128738401 + ], + [ + 12.5174821, + 51.128904401 + ], + [ + 12.5173406, + 51.129166301 + ], + [ + 12.5170501, + 51.129634001 + ], + [ + 12.5167296, + 51.130083101 + ], + [ + 12.5164541, + 51.130435201 + ], + [ + 12.51611, + 51.130829901 + ], + [ + 12.5159166, + 51.131044101 + ], + [ + 12.5157064, + 51.131260901 + ], + [ + 12.5153233, + 51.131649601 + ], + [ + 12.5149673, + 51.131991301 + ], + [ + 12.5146904, + 51.132259801 + ], + [ + 12.5141288, + 51.132799501 + ], + [ + 12.5137804, + 51.133127401 + ], + [ + 12.5134475, + 51.133439601 + ], + [ + 12.5130382, + 51.133836401 + ], + [ + 12.5124004, + 51.134447801 + ], + [ + 12.5117542, + 51.135059901 + ], + [ + 12.5110273, + 51.135791401 + ], + [ + 12.5103774, + 51.136475501 + ], + [ + 12.5102967, + 51.136563301 + ], + [ + 12.5096036, + 51.137328901 + ], + [ + 12.5091449, + 51.137860101 + ], + [ + 12.5089828, + 51.138049801 + ], + [ + 12.508846224, + 51.138216821 + ] + ] + } + }, + { + "identifier": "2025-061443--vi-bs.2026-03-23_08-00-00-000.devi-zus.2026-03-23_08-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.09497202802962,12.528238773330155,51.13821682073557,12.508846223855372", + "point": "51.09497202802962,12.528238773330155", + "startLcPosition": "32", + "impact": { + "lower": "Borna-Nord", + "upper": "Geithain", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Chemnitz -> Leipzig", + "title": "A72 | Geithain - Borna-Nord", + "startTimestamp": "2026-03-23T08:00:00+01:00", + "coordinate": { + "lat": 51.09497202802962, + "long": 12.528238773330155 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 08:00 Uhr", + "Ende: 22.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 23.04.26)", + "", + "A72: Chemnitz -> Leipzig, zwischen 10.0 km hinter AS Geithain und 0.5 km vor AS Borna-Nord", + "", + "L\u00e4nge: 5.14 km | Maximale Durchfahrtsbreite: 3.85 m", + "", + "Farbahnerneuerung A72 AS Geithain - AS Borna-Nord (Km 148,02 - 152,70) RiFa Leipzig " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.528238773, + 51.094972028 + ], + [ + 12.5281003, + 51.095084701 + ], + [ + 12.5275052, + 51.095574001 + ], + [ + 12.527059, + 51.095938301 + ], + [ + 12.526438, + 51.096465501 + ], + [ + 12.5261317, + 51.096747301 + ], + [ + 12.5257628, + 51.097101101 + ], + [ + 12.5254906, + 51.097376801 + ], + [ + 12.5251851, + 51.097686901 + ], + [ + 12.5249159, + 51.097973501 + ], + [ + 12.524695, + 51.098214701 + ], + [ + 12.5246084, + 51.098314001 + ], + [ + 12.5245724, + 51.098355201 + ], + [ + 12.5239476, + 51.099079701 + ], + [ + 12.5235954, + 51.099494701 + ], + [ + 12.5232687, + 51.099898701 + ], + [ + 12.5230008, + 51.100249501 + ], + [ + 12.5223776, + 51.101124501 + ], + [ + 12.5219544, + 51.101764501 + ], + [ + 12.5215501, + 51.102429301 + ], + [ + 12.5214417, + 51.102607401 + ], + [ + 12.5210091, + 51.103401001 + ], + [ + 12.5206147, + 51.104207001 + ], + [ + 12.5202872, + 51.104955501 + ], + [ + 12.5199886, + 51.105714401 + ], + [ + 12.5196113, + 51.106851601 + ], + [ + 12.519318, + 51.107934201 + ], + [ + 12.5190512, + 51.109259701 + ], + [ + 12.51887, + 51.110325901 + ], + [ + 12.5187977, + 51.110814001 + ], + [ + 12.5187216, + 51.111292501 + ], + [ + 12.5186709, + 51.111645101 + ], + [ + 12.5186268, + 51.111995101 + ], + [ + 12.5185154, + 51.112847101 + ], + [ + 12.5184703, + 51.113278101 + ], + [ + 12.5184147, + 51.113771201 + ], + [ + 12.5183184, + 51.114824201 + ], + [ + 12.5182631, + 51.115555201 + ], + [ + 12.5182403, + 51.115856001 + ], + [ + 12.518208, + 51.116460101 + ], + [ + 12.5181605, + 51.117443501 + ], + [ + 12.5181317, + 51.118577701 + ], + [ + 12.5181205, + 51.119495201 + ], + [ + 12.5181218, + 51.119696401 + ], + [ + 12.5181264, + 51.120034601 + ], + [ + 12.5181317, + 51.120420401 + ], + [ + 12.5181434, + 51.121141501 + ], + [ + 12.5181679, + 51.121810701 + ], + [ + 12.5182218, + 51.122793001 + ], + [ + 12.5182464, + 51.123280101 + ], + [ + 12.518331, + 51.124359601 + ], + [ + 12.5183387, + 51.124509501 + ], + [ + 12.5183697, + 51.125108201 + ], + [ + 12.5183724, + 51.125489501 + ], + [ + 12.5183615, + 51.125902901 + ], + [ + 12.5183412, + 51.126130701 + ], + [ + 12.5183173, + 51.126364801 + ], + [ + 12.5182398, + 51.126822601 + ], + [ + 12.5181482, + 51.127214401 + ], + [ + 12.5180208, + 51.127627101 + ], + [ + 12.5179383, + 51.127875901 + ], + [ + 12.5178424, + 51.128131801 + ], + [ + 12.5177076, + 51.128457001 + ], + [ + 12.5175682, + 51.128738401 + ], + [ + 12.5174821, + 51.128904401 + ], + [ + 12.5173406, + 51.129166301 + ], + [ + 12.5170501, + 51.129634001 + ], + [ + 12.5167296, + 51.130083101 + ], + [ + 12.5164541, + 51.130435201 + ], + [ + 12.51611, + 51.130829901 + ], + [ + 12.5159166, + 51.131044101 + ], + [ + 12.5157064, + 51.131260901 + ], + [ + 12.5153233, + 51.131649601 + ], + [ + 12.5149673, + 51.131991301 + ], + [ + 12.5146904, + 51.132259801 + ], + [ + 12.5141288, + 51.132799501 + ], + [ + 12.5137804, + 51.133127401 + ], + [ + 12.5134475, + 51.133439601 + ], + [ + 12.5130382, + 51.133836401 + ], + [ + 12.5124004, + 51.134447801 + ], + [ + 12.5117542, + 51.135059901 + ], + [ + 12.5110273, + 51.135791401 + ], + [ + 12.5103774, + 51.136475501 + ], + [ + 12.5102967, + 51.136563301 + ], + [ + 12.5096036, + 51.137328901 + ], + [ + 12.5091449, + 51.137860101 + ], + [ + 12.5089828, + 51.138049801 + ], + [ + 12.508846224, + 51.138216821 + ] + ] + } + }, + { + "identifier": "2026-015718--vi-bs.2026-04-07_06-00-00-000.devi-zus.2026-04-07_06-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.14059835005759,12.506834100088762,51.124470240585275,12.518160211976832", + "point": "51.14059835005759,12.506834100088762", + "startLcPosition": "34", + "impact": { + "lower": "Borna-S\u00fcd", + "upper": "Borna-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leipzig -> Chemnitz", + "title": "A72 | Borna-Nord - Borna-S\u00fcd", + "coordinate": { + "lat": 51.14059835005759, + "long": 12.506834100088762 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 06:00 bis 19:00 Uhr", + "", + "A72: Leipzig -> Chemnitz, zwischen 0.2 km hinter AS Borna-Nord und 1.4 km vor AS Borna-S\u00fcd", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A72 von Borna-Nord (AS) nach Borna-S\u00fcd (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.5068341, + 51.14059835 + ], + [ + 12.5068924, + 51.140518101 + ], + [ + 12.5071427, + 51.140173201 + ], + [ + 12.5078355, + 51.139233301 + ], + [ + 12.508153, + 51.138836001 + ], + [ + 12.5085127, + 51.138379401 + ], + [ + 12.5089587, + 51.137840201 + ], + [ + 12.5094238, + 51.137302701 + ], + [ + 12.5102085, + 51.136432301 + ], + [ + 12.5108691, + 51.135737901 + ], + [ + 12.5115829, + 51.135021101 + ], + [ + 12.5122469, + 51.134381301 + ], + [ + 12.512888, + 51.133772101 + ], + [ + 12.5132775, + 51.133395001 + ], + [ + 12.5136265, + 51.133066501 + ], + [ + 12.5139414, + 51.132768101 + ], + [ + 12.5142368, + 51.132482401 + ], + [ + 12.5145261, + 51.132211001 + ], + [ + 12.5147986, + 51.131947801 + ], + [ + 12.5151855, + 51.131573001 + ], + [ + 12.5155206, + 51.131240701 + ], + [ + 12.5157558, + 51.130981901 + ], + [ + 12.5160627, + 51.130640001 + ], + [ + 12.5162885, + 51.130385601 + ], + [ + 12.5164521, + 51.130188001 + ], + [ + 12.5166024, + 51.129985301 + ], + [ + 12.516792, + 51.129719101 + ], + [ + 12.5170079, + 51.129387601 + ], + [ + 12.5171994, + 51.129078901 + ], + [ + 12.5173936, + 51.128715301 + ], + [ + 12.5176658, + 51.128114501 + ], + [ + 12.5177721, + 51.127836801 + ], + [ + 12.5178725, + 51.127542101 + ], + [ + 12.5179743, + 51.127178301 + ], + [ + 12.5180593, + 51.126815001 + ], + [ + 12.5181362, + 51.126359501 + ], + [ + 12.5181662, + 51.126120201 + ], + [ + 12.5181846, + 51.125865101 + ], + [ + 12.5181961, + 51.125483501 + ], + [ + 12.5181922, + 51.125112401 + ], + [ + 12.518160212, + 51.124470241 + ] + ] + } + }, + { + "identifier": "2026-015718--vi-bs.2026-04-07_06-00-00-000.devi-zus.2026-04-07_06-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.14059835005759,12.506834100088762,51.124470240585275,12.518160211976832", + "point": "51.14059835005759,12.506834100088762", + "startLcPosition": "34", + "impact": { + "lower": "Borna-S\u00fcd", + "upper": "Borna-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leipzig -> Chemnitz", + "title": "A72 | Borna-Nord - Borna-S\u00fcd", + "coordinate": { + "lat": 51.14059835005759, + "long": 12.506834100088762 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 06:00 bis 19:00 Uhr", + "", + "A72: Leipzig -> Chemnitz, zwischen 0.2 km hinter AS Borna-Nord und 1.4 km vor AS Borna-S\u00fcd", + "", + "L\u00e4nge: 2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A72 von Borna-Nord (AS) nach Borna-S\u00fcd (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.5068341, + 51.14059835 + ], + [ + 12.5068924, + 51.140518101 + ], + [ + 12.5071427, + 51.140173201 + ], + [ + 12.5078355, + 51.139233301 + ], + [ + 12.508153, + 51.138836001 + ], + [ + 12.5085127, + 51.138379401 + ], + [ + 12.5089587, + 51.137840201 + ], + [ + 12.5094238, + 51.137302701 + ], + [ + 12.5102085, + 51.136432301 + ], + [ + 12.5108691, + 51.135737901 + ], + [ + 12.5115829, + 51.135021101 + ], + [ + 12.5122469, + 51.134381301 + ], + [ + 12.512888, + 51.133772101 + ], + [ + 12.5132775, + 51.133395001 + ], + [ + 12.5136265, + 51.133066501 + ], + [ + 12.5139414, + 51.132768101 + ], + [ + 12.5142368, + 51.132482401 + ], + [ + 12.5145261, + 51.132211001 + ], + [ + 12.5147986, + 51.131947801 + ], + [ + 12.5151855, + 51.131573001 + ], + [ + 12.5155206, + 51.131240701 + ], + [ + 12.5157558, + 51.130981901 + ], + [ + 12.5160627, + 51.130640001 + ], + [ + 12.5162885, + 51.130385601 + ], + [ + 12.5164521, + 51.130188001 + ], + [ + 12.5166024, + 51.129985301 + ], + [ + 12.516792, + 51.129719101 + ], + [ + 12.5170079, + 51.129387601 + ], + [ + 12.5171994, + 51.129078901 + ], + [ + 12.5173936, + 51.128715301 + ], + [ + 12.5176658, + 51.128114501 + ], + [ + 12.5177721, + 51.127836801 + ], + [ + 12.5178725, + 51.127542101 + ], + [ + 12.5179743, + 51.127178301 + ], + [ + 12.5180593, + 51.126815001 + ], + [ + 12.5181362, + 51.126359501 + ], + [ + 12.5181662, + 51.126120201 + ], + [ + 12.5181846, + 51.125865101 + ], + [ + 12.5181961, + 51.125483501 + ], + [ + 12.5181922, + 51.125112401 + ], + [ + 12.518160212, + 51.124470241 + ] + ] + } + }, + { + "identifier": "2026-017006--vi-bs.2026-04-07_18-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.1328077232027,12.513899587144989,51.124470240585275,12.518160211976832", + "point": "51.1328077232027,12.513899587144989", + "startLcPosition": "34", + "impact": { + "lower": "Borna-S\u00fcd", + "upper": "Borna-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Leipzig -> Chemnitz", + "title": "A72 | Borna-Nord - Borna-S\u00fcd", + "coordinate": { + "lat": 51.1328077232027, + "long": 12.513899587144989 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 18:00 bis 23:00 Uhr", + "10.04.26 von 18:00 bis 23:00 Uhr", + "", + "A72: Leipzig -> Chemnitz, zwischen 1.2 km hinter AS Borna-Nord und 1.4 km vor AS Borna-S\u00fcd", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A72 von Borna-Nord (AS) nach Borna-S\u00fcd (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.513899587, + 51.132807723 + ], + [ + 12.5139414, + 51.132768101 + ], + [ + 12.5142368, + 51.132482401 + ], + [ + 12.5145261, + 51.132211001 + ], + [ + 12.5147986, + 51.131947801 + ], + [ + 12.5151855, + 51.131573001 + ], + [ + 12.5155206, + 51.131240701 + ], + [ + 12.5157558, + 51.130981901 + ], + [ + 12.5160627, + 51.130640001 + ], + [ + 12.5162885, + 51.130385601 + ], + [ + 12.5164521, + 51.130188001 + ], + [ + 12.5166024, + 51.129985301 + ], + [ + 12.516792, + 51.129719101 + ], + [ + 12.5170079, + 51.129387601 + ], + [ + 12.5171994, + 51.129078901 + ], + [ + 12.5173936, + 51.128715301 + ], + [ + 12.5176658, + 51.128114501 + ], + [ + 12.5177721, + 51.127836801 + ], + [ + 12.5178725, + 51.127542101 + ], + [ + 12.5179743, + 51.127178301 + ], + [ + 12.5180593, + 51.126815001 + ], + [ + 12.5181362, + 51.126359501 + ], + [ + 12.5181662, + 51.126120201 + ], + [ + 12.5181846, + 51.125865101 + ], + [ + 12.5181961, + 51.125483501 + ], + [ + 12.5181922, + 51.125112401 + ], + [ + 12.518160212, + 51.124470241 + ] + ] + } + } + ] + }, + "A73": { + "roadworks": [ + { + "identifier": "2026-017068--vi-bs.2026-04-13_08-00-00-000_011.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.35078019966797,11.20191451895641,49.36753138064989,11.179621894801434", + "point": "49.35078019966797,11.20191451895641", + "startLcPosition": "0", + "impact": { + "lower": "R\u00f6thenbach bei Sankt Wolfgang", + "upper": "N\u00fcrnberg/Feucht", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Feucht -> N\u00fcrnberg", + "title": "A73 | N\u00fcrnberg/Feucht - R\u00f6thenbach bei Sankt Wolfgang", + "coordinate": { + "lat": 49.35078019966797, + "long": 11.20191451895641 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 16:00 Uhr", + "14.04.26 von 08:00 bis 16:00 Uhr", + "15.04.26 von 08:00 bis 16:00 Uhr", + "16.04.26 von 08:00 bis 16:00 Uhr", + "", + "A73: Feucht -> N\u00fcrnberg, zwischen 0.2 km hinter AD N\u00fcrnberg/Feucht und 0.7 km vor AS R\u00f6thenbach bei Sankt Wolfgang", + "", + "L\u00e4nge: 2.93 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A73 Arbeiten an Verkehrszeichenbr\u00fccke Sicherung Fa. ASS A73 " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.201914519, + 49.3507802 + ], + [ + 11.2017038, + 49.350969001 + ], + [ + 11.2015352, + 49.351128001 + ], + [ + 11.2013322, + 49.351339401 + ], + [ + 11.2011008, + 49.351613101 + ], + [ + 11.20092, + 49.351859001 + ], + [ + 11.2007644, + 49.352102601 + ], + [ + 11.2006058, + 49.352393601 + ], + [ + 11.2005262, + 49.352547901 + ], + [ + 11.2004128, + 49.352848501 + ], + [ + 11.2003404, + 49.353075901 + ], + [ + 11.2002915, + 49.353308501 + ], + [ + 11.2002467, + 49.353590101 + ], + [ + 11.2002263, + 49.353994201 + ], + [ + 11.2002238, + 49.354243701 + ], + [ + 11.2002506, + 49.354562001 + ], + [ + 11.2002667, + 49.354779001 + ], + [ + 11.2002985, + 49.355073801 + ], + [ + 11.2003823, + 49.355475101 + ], + [ + 11.2005306, + 49.356202001 + ], + [ + 11.2005834, + 49.356468001 + ], + [ + 11.200653, + 49.356891701 + ], + [ + 11.200715, + 49.357298901 + ], + [ + 11.2007396, + 49.357709701 + ], + [ + 11.2007466, + 49.358030601 + ], + [ + 11.2007373, + 49.358345301 + ], + [ + 11.2007122, + 49.358637701 + ], + [ + 11.2006639, + 49.358972301 + ], + [ + 11.2005958, + 49.359281201 + ], + [ + 11.2005094, + 49.359663401 + ], + [ + 11.2003248, + 49.360210101 + ], + [ + 11.2002874, + 49.360302801 + ], + [ + 11.2000908, + 49.360751301 + ], + [ + 11.1998524, + 49.361212801 + ], + [ + 11.1996814, + 49.361490301 + ], + [ + 11.1995168, + 49.361721801 + ], + [ + 11.1993784, + 49.361907601 + ], + [ + 11.1993176, + 49.361979601 + ], + [ + 11.1991294, + 49.362202201 + ], + [ + 11.1988674, + 49.362497101 + ], + [ + 11.1982524, + 49.363129701 + ], + [ + 11.1979371, + 49.363419101 + ], + [ + 11.1976086, + 49.363685301 + ], + [ + 11.1971811, + 49.364003701 + ], + [ + 11.1967569, + 49.364304201 + ], + [ + 11.1961292, + 49.364695501 + ], + [ + 11.195656, + 49.364961901 + ], + [ + 11.1951742, + 49.365211601 + ], + [ + 11.1950535, + 49.365274901 + ], + [ + 11.1940314, + 49.365732201 + ], + [ + 11.1936387, + 49.365886801 + ], + [ + 11.1931967, + 49.366046201 + ], + [ + 11.1926577, + 49.366204001 + ], + [ + 11.1922799, + 49.366307201 + ], + [ + 11.1917783, + 49.366438301 + ], + [ + 11.1913233, + 49.366540001 + ], + [ + 11.1908469, + 49.366641701 + ], + [ + 11.1902907, + 49.366740001 + ], + [ + 11.1896153, + 49.366838001 + ], + [ + 11.1889335, + 49.366923501 + ], + [ + 11.188223, + 49.367001901 + ], + [ + 11.1875341, + 49.367070501 + ], + [ + 11.1867232, + 49.367138101 + ], + [ + 11.1858182, + 49.367209901 + ], + [ + 11.1852644, + 49.367242901 + ], + [ + 11.18426, + 49.367291401 + ], + [ + 11.1830481, + 49.367349201 + ], + [ + 11.1818319, + 49.367405701 + ], + [ + 11.1807998, + 49.367456201 + ], + [ + 11.179621895, + 49.367531381 + ] + ] + } + }, + { + "identifier": "2024-052646--vi-bs.2025-11-22_00-00-00-000.devi-zus.2025-03-10_00-00-00-000.f_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.370508612729815,11.164698908501025,49.37433449654934,11.14648968894087", + "point": "49.370508612729815,11.164698908501025", + "startLcPosition": "2", + "impact": { + "lower": "N\u00fcrnberg-S\u00fcd", + "upper": "R\u00f6thenbach bei Sankt Wolfgang", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Feucht -> N\u00fcrnberg", + "title": "A73 | R\u00f6thenbach bei Sankt Wolfgang - N\u00fcrnberg-S\u00fcd", + "startTimestamp": "2025-11-22T00:00:00+01:00", + "coordinate": { + "lat": 49.370508612729815, + "long": 11.164698908501025 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.11.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A73: Feucht -> N\u00fcrnberg, zwischen 0.4 km hinter AS R\u00f6thenbach bei Sankt Wolfgang und 0.8 km vor AK N\u00fcrnberg-S\u00fcd", + "", + "L\u00e4nge: 1.39 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 8.5 m", + "", + "A73 Br\u00fcckenneubau Wendelstein Bw 4b" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.164698909, + 49.370508613 + ], + [ + 11.1642008, + 49.370659201 + ], + [ + 11.1622214, + 49.371296701 + ], + [ + 11.161046, + 49.371661601 + ], + [ + 11.1603638, + 49.371875101 + ], + [ + 11.1595561, + 49.372114501 + ], + [ + 11.1590748, + 49.372226601 + ], + [ + 11.158176, + 49.372439901 + ], + [ + 11.157417, + 49.372595101 + ], + [ + 11.1562728, + 49.372794701 + ], + [ + 11.1547838, + 49.373036601 + ], + [ + 11.1519236, + 49.373476201 + ], + [ + 11.1510543, + 49.373614601 + ], + [ + 11.1487079, + 49.373984801 + ], + [ + 11.1475209, + 49.374171101 + ], + [ + 11.146489689, + 49.374334497 + ] + ] + } + }, + { + "identifier": "2024-052646--vi-bs.2025-11-22_00-00-00-000.devi-zus.2025-03-10_00-00-00-000.f_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.37419398555843,11.146438037427188,49.37038380027582,11.164609012551994", + "point": "49.37419398555843,11.146438037427188", + "startLcPosition": "4", + "impact": { + "lower": "R\u00f6thenbach bei Sankt Wolfgang", + "upper": "N\u00fcrnberg-S\u00fcd", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Feucht", + "title": "A73 | N\u00fcrnberg-S\u00fcd - R\u00f6thenbach bei Sankt Wolfgang", + "startTimestamp": "2025-11-22T00:00:00+01:00", + "coordinate": { + "lat": 49.37419398555843, + "long": 11.146438037427188 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 22.11.25 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A73: N\u00fcrnberg -> Feucht, zwischen 0.8 km hinter AK N\u00fcrnberg-S\u00fcd und 0.4 km vor AS R\u00f6thenbach bei Sankt Wolfgang", + "", + "L\u00e4nge: 1.39 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 8.5 m", + "", + "A73 Br\u00fcckenneubau Wendelstein Bw 4b" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.146438037, + 49.374193986 + ], + [ + 11.1474681, + 49.374034501 + ], + [ + 11.1486764, + 49.373846001 + ], + [ + 11.150409, + 49.373567301 + ], + [ + 11.1509179, + 49.373496101 + ], + [ + 11.1522383, + 49.373283401 + ], + [ + 11.1535588, + 49.373079001 + ], + [ + 11.1546335, + 49.372908001 + ], + [ + 11.1562205, + 49.372656201 + ], + [ + 11.1573949, + 49.372448901 + ], + [ + 11.1581047, + 49.372300201 + ], + [ + 11.1588103, + 49.372137801 + ], + [ + 11.1597108, + 49.371906301 + ], + [ + 11.1610074, + 49.371518001 + ], + [ + 11.1621994, + 49.371150701 + ], + [ + 11.1641906, + 49.370514401 + ], + [ + 11.164609013, + 49.3703838 + ] + ] + } + }, + { + "identifier": "2025-048780--vi-bs.2026-04-01_00-00-00-000.devi-zus.2026-04-01_00-00-00-000_004.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.85822056240724,10.974140749710351,49.85875452283489,10.973021614575382", + "point": "49.85822056240724,10.974140749710351", + "startLcPosition": "27", + "impact": { + "lower": "Bamberg-S\u00fcd", + "upper": "Hirschaid", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " N\u00fcrnberg -> Bamberg", + "title": "A73 | Hirschaid - Bamberg-S\u00fcd", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 49.85822056240724, + "long": 10.974140749710351 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 29.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.11.26)", + "", + "A73: N\u00fcrnberg -> Bamberg, zwischen 4.7 km hinter AS Hirschaid und 2.1 km vor AS Bamberg-S\u00fcd", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A73 Bauwerksarbeiten Bw 106a" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.97414075, + 49.858220562 + ], + [ + 10.973021615, + 49.858754523 + ] + ] + } + }, + { + "identifier": "2025-048780--vi-bs.2026-04-01_00-00-00-000.devi-zus.2026-04-01_00-00-00-000_004.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.8586729396084,10.972928284792465,49.858137413520595,10.974045625553336", + "point": "49.8586729396084,10.972928284792465", + "startLcPosition": "28", + "impact": { + "lower": "Hirschaid", + "upper": "Bamberg-S\u00fcd", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bamberg -> N\u00fcrnberg", + "title": "A73 | Bamberg-S\u00fcd - Hirschaid", + "startTimestamp": "2026-04-01T00:00:00+02:00", + "coordinate": { + "lat": 49.8586729396084, + "long": 10.972928284792465 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.26 um 00:00 Uhr", + "Ende: 29.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.11.26)", + "", + "A73: Bamberg -> N\u00fcrnberg, zwischen 2.1 km hinter AS Bamberg-S\u00fcd und 4.7 km vor AS Hirschaid", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A73 Bauwerksarbeiten Bw 106a" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.972928285, + 49.85867294 + ], + [ + 10.974045626, + 49.858137414 + ] + ] + } + }, + { + "identifier": "2025-048770--vi-bs.2026-03-18_00-00-00-000.devi-zus.2026-02-16_00-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.081106684444414,10.999047108720752,50.12952948170041,11.034500713909596", + "point": "50.081106684444414,10.999047108720752", + "startLcPosition": "38", + "impact": { + "lower": "Lichtenfels-Nord", + "upper": "Ebensfeld", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bamberg -> Suhl", + "title": "A73 | Ebensfeld - Lichtenfels-Nord", + "startTimestamp": "2026-03-18T00:00:00+01:00", + "coordinate": { + "lat": 50.081106684444414, + "long": 10.999047108720752 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 00:00 Uhr", + "Ende: 28.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.08.26)", + "", + "A73: Bamberg -> Suhl, zwischen 3.5 km hinter AS Ebensfeld und 1.9 km vor AS Lichtenfels-Nord", + "", + "L\u00e4nge: 6.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.9 m", + "", + "A73 Erneuerung an der Decke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.999047109, + 50.081106684 + ], + [ + 10.9994119, + 50.081934401 + ], + [ + 10.9998718, + 50.083030401 + ], + [ + 10.9999324, + 50.083174801 + ], + [ + 11.0003712, + 50.084214901 + ], + [ + 11.0007673, + 50.085146401 + ], + [ + 11.0012081, + 50.086188901 + ], + [ + 11.0013681, + 50.086556301 + ], + [ + 11.0017268, + 50.087380001 + ], + [ + 11.001768, + 50.087472201 + ], + [ + 11.0021791, + 50.088391501 + ], + [ + 11.0026619, + 50.089407001 + ], + [ + 11.0035772, + 50.091236401 + ], + [ + 11.0038604, + 50.091750801 + ], + [ + 11.0040361, + 50.092070001 + ], + [ + 11.0041752, + 50.092326401 + ], + [ + 11.0047166, + 50.093297901 + ], + [ + 11.0049381, + 50.093690201 + ], + [ + 11.0053457, + 50.094402401 + ], + [ + 11.005747, + 50.095060001 + ], + [ + 11.0058674, + 50.095278601 + ], + [ + 11.0062026, + 50.095836101 + ], + [ + 11.0062376, + 50.095894301 + ], + [ + 11.0067835, + 50.096809901 + ], + [ + 11.0069441, + 50.097086601 + ], + [ + 11.0075672, + 50.098134601 + ], + [ + 11.0084156, + 50.099547801 + ], + [ + 11.0088391, + 50.100252801 + ], + [ + 11.0095412, + 50.101424901 + ], + [ + 11.0101341, + 50.102432801 + ], + [ + 11.0106825, + 50.103349701 + ], + [ + 11.0113191, + 50.104419601 + ], + [ + 11.0113782, + 50.104517901 + ], + [ + 11.0119656, + 50.105494301 + ], + [ + 11.012325, + 50.106096201 + ], + [ + 11.0127857, + 50.106872901 + ], + [ + 11.0136564, + 50.108316401 + ], + [ + 11.0137332, + 50.108452101 + ], + [ + 11.0138771, + 50.108706601 + ], + [ + 11.0142037, + 50.109240501 + ], + [ + 11.0144542, + 50.109678801 + ], + [ + 11.0152354, + 50.110971401 + ], + [ + 11.015583, + 50.111554801 + ], + [ + 11.0160232, + 50.112296701 + ], + [ + 11.0162794, + 50.112726601 + ], + [ + 11.0166384, + 50.113329101 + ], + [ + 11.0171465, + 50.114152701 + ], + [ + 11.017735, + 50.115075601 + ], + [ + 11.0180963, + 50.115589401 + ], + [ + 11.0184452, + 50.116062201 + ], + [ + 11.0189194, + 50.116679101 + ], + [ + 11.0190804, + 50.116870801 + ], + [ + 11.0194835, + 50.117350601 + ], + [ + 11.0199582, + 50.117890101 + ], + [ + 11.0207621, + 50.118736701 + ], + [ + 11.021574, + 50.119532501 + ], + [ + 11.0224268, + 50.120306401 + ], + [ + 11.0228727, + 50.120689201 + ], + [ + 11.0233358, + 50.121071401 + ], + [ + 11.023817, + 50.121453501 + ], + [ + 11.0243004, + 50.121826101 + ], + [ + 11.0248781, + 50.122252601 + ], + [ + 11.0254808, + 50.122677601 + ], + [ + 11.0260057, + 50.123032301 + ], + [ + 11.0265169, + 50.123368601 + ], + [ + 11.0273005, + 50.123865201 + ], + [ + 11.0276479, + 50.124082901 + ], + [ + 11.0277927, + 50.124173701 + ], + [ + 11.0293461, + 50.125124901 + ], + [ + 11.03059, + 50.125906901 + ], + [ + 11.0311542, + 50.126277601 + ], + [ + 11.0316943, + 50.126645101 + ], + [ + 11.0323986, + 50.127170801 + ], + [ + 11.0324253, + 50.127190701 + ], + [ + 11.0330175, + 50.127705101 + ], + [ + 11.0334073, + 50.128080901 + ], + [ + 11.0337838, + 50.128474601 + ], + [ + 11.0339969, + 50.128758901 + ], + [ + 11.0341332, + 50.128936301 + ], + [ + 11.0343001, + 50.129193101 + ], + [ + 11.0344748, + 50.129479501 + ], + [ + 11.034500714, + 50.129529482 + ] + ] + } + }, + { + "identifier": "2025-048770--vi-bs.2026-03-18_00-00-00-000.devi-zus.2026-02-16_00-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.129567972322356,11.034322664236543,50.08113386353194,10.998896789587757", + "point": "50.129567972322356,11.034322664236543", + "startLcPosition": "42", + "impact": { + "lower": "Ebensfeld", + "upper": "Lichtenfels-Nord", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Suhl -> Bamberg", + "title": "A73 | Lichtenfels-Nord - Ebensfeld", + "startTimestamp": "2026-03-18T00:00:00+01:00", + "coordinate": { + "lat": 50.129567972322356, + "long": 11.034322664236543 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 00:00 Uhr", + "Ende: 28.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.08.26)", + "", + "A73: Suhl -> Bamberg, zwischen 1.9 km hinter AS Lichtenfels-Nord und 3.5 km vor AS Ebensfeld", + "", + "L\u00e4nge: 6.03 km | Maximale Durchfahrtsbreite: 5 m", + "", + "A73 Erneuerung an der Decke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.034322664, + 50.129567972 + ], + [ + 11.0341721, + 50.129283501 + ], + [ + 11.0339167, + 50.128913501 + ], + [ + 11.0335828, + 50.128496401 + ], + [ + 11.0332382, + 50.128119701 + ], + [ + 11.0328196, + 50.127715001 + ], + [ + 11.0325334, + 50.127454901 + ], + [ + 11.032254, + 50.127222801 + ], + [ + 11.0315285, + 50.126683801 + ], + [ + 11.0311059, + 50.126388701 + ], + [ + 11.0306386, + 50.126073801 + ], + [ + 11.0298676, + 50.125588301 + ], + [ + 11.0291588, + 50.125149401 + ], + [ + 11.0272722, + 50.123994701 + ], + [ + 11.0271675, + 50.123921801 + ], + [ + 11.0264083, + 50.123437401 + ], + [ + 11.0257379, + 50.122993601 + ], + [ + 11.0250912, + 50.122553201 + ], + [ + 11.0247694, + 50.122318401 + ], + [ + 11.024187, + 50.121892001 + ], + [ + 11.0237264, + 50.121533501 + ], + [ + 11.0231968, + 50.121115301 + ], + [ + 11.0227158, + 50.120712001 + ], + [ + 11.0222798, + 50.120346401 + ], + [ + 11.0214451, + 50.119591901 + ], + [ + 11.0206397, + 50.118803301 + ], + [ + 11.0197996, + 50.117917401 + ], + [ + 11.0193497, + 50.117392301 + ], + [ + 11.0189424, + 50.116907201 + ], + [ + 11.0187699, + 50.116701701 + ], + [ + 11.0182979, + 50.116090601 + ], + [ + 11.0179669, + 50.115646101 + ], + [ + 11.0175974, + 50.115117101 + ], + [ + 11.0170045, + 50.114193201 + ], + [ + 11.0164887, + 50.113353301 + ], + [ + 11.0161408, + 50.112764701 + ], + [ + 11.0158811, + 50.112325401 + ], + [ + 11.0154342, + 50.111580501 + ], + [ + 11.0150593, + 50.110943601 + ], + [ + 11.0146822, + 50.110322701 + ], + [ + 11.014341, + 50.109753401 + ], + [ + 11.0141601, + 50.109439501 + ], + [ + 11.0135511, + 50.108429701 + ], + [ + 11.0132989, + 50.108011501 + ], + [ + 11.0126419, + 50.106908301 + ], + [ + 11.0121669, + 50.106116601 + ], + [ + 11.0118197, + 50.105526501 + ], + [ + 11.0111446, + 50.104400801 + ], + [ + 11.0105427, + 50.103398801 + ], + [ + 11.0100545, + 50.102584701 + ], + [ + 11.0098844, + 50.102298401 + ], + [ + 11.0098009, + 50.102156501 + ], + [ + 11.0093817, + 50.101444001 + ], + [ + 11.00869, + 50.100264901 + ], + [ + 11.0082551, + 50.099559801 + ], + [ + 11.0074295, + 50.098176901 + ], + [ + 11.0073676, + 50.098065801 + ], + [ + 11.0065551, + 50.096707501 + ], + [ + 11.0060827, + 50.095918201 + ], + [ + 11.0060549, + 50.095870401 + ], + [ + 11.005839, + 50.095490201 + ], + [ + 11.0057511, + 50.095353201 + ], + [ + 11.0051938, + 50.094413401 + ], + [ + 11.004765, + 50.093684001 + ], + [ + 11.0046583, + 50.093495101 + ], + [ + 11.0041337, + 50.092553801 + ], + [ + 11.003882, + 50.092081701 + ], + [ + 11.003713, + 50.091767201 + ], + [ + 11.0034471, + 50.091272501 + ], + [ + 11.00252, + 50.089443501 + ], + [ + 11.0020293, + 50.088404701 + ], + [ + 11.0016322, + 50.087493901 + ], + [ + 11.0010571, + 50.086212601 + ], + [ + 11.0006118, + 50.085163001 + ], + [ + 11.000226, + 50.084249301 + ], + [ + 10.9997829, + 50.083199901 + ], + [ + 10.9997153, + 50.083041401 + ], + [ + 10.9992551, + 50.081961501 + ], + [ + 10.99889679, + 50.081133864 + ] + ] + } + }, + { + "identifier": "2025-048768--vi-bs.2026-04-08_00-00-00-000.devi-zus.2026-04-08_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.24832166932777,11.036510631483836,50.25424664742993,11.026040404131667", + "point": "50.24832166932777,11.036510631483836", + "startLcPosition": "44", + "impact": { + "lower": "R\u00f6dental", + "upper": "Ebersdorf b.Coburg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bamberg -> Suhl", + "title": "A73 | Ebersdorf b.Coburg - R\u00f6dental", + "startTimestamp": "2026-04-08T00:00:00+02:00", + "coordinate": { + "lat": 50.24832166932777, + "long": 11.036510631483836 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A73: Bamberg -> Suhl, zwischen 3.3 km hinter AS Ebersdorf b.Coburg und 3.9 km vor AS R\u00f6dental", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A73 Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.036510631, + 50.248321669 + ], + [ + 11.036302, + 50.248422501 + ], + [ + 11.0346, + 50.249247901 + ], + [ + 11.033428, + 50.249834701 + ], + [ + 11.0325097, + 50.250305901 + ], + [ + 11.0319494, + 50.250603801 + ], + [ + 11.0308111, + 50.251220701 + ], + [ + 11.0297167, + 50.251843401 + ], + [ + 11.0291495, + 50.252186401 + ], + [ + 11.0287162, + 50.252462601 + ], + [ + 11.0277188, + 50.253093701 + ], + [ + 11.026631, + 50.253830201 + ], + [ + 11.0261607, + 50.254158801 + ], + [ + 11.026040404, + 50.254246647 + ] + ] + } + }, + { + "identifier": "2025-048768--vi-bs.2026-04-08_00-00-00-000.devi-zus.2026-04-08_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.254180672987964,11.025923461523158,50.248241080412036,11.036416138092806", + "point": "50.254180672987964,11.025923461523158", + "startLcPosition": "46", + "impact": { + "lower": "Ebersdorf b.Coburg", + "upper": "R\u00f6dental", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Suhl -> Bamberg", + "title": "A73 | R\u00f6dental - Ebersdorf b.Coburg", + "startTimestamp": "2026-04-08T00:00:00+02:00", + "coordinate": { + "lat": 50.254180672987964, + "long": 11.025923461523158 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A73: Suhl -> Bamberg, zwischen 3.9 km hinter AS R\u00f6dental und 3.2 km vor AS Ebersdorf b.Coburg", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A73 Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.025923462, + 50.254180673 + ], + [ + 11.0260735, + 50.254071501 + ], + [ + 11.0265494, + 50.253741701 + ], + [ + 11.0274425, + 50.253130701 + ], + [ + 11.0285749, + 50.252406101 + ], + [ + 11.0290602, + 50.252099501 + ], + [ + 11.0295839, + 50.251785301 + ], + [ + 11.0307509, + 50.251117701 + ], + [ + 11.0319239, + 50.250476801 + ], + [ + 11.0332601, + 50.249789301 + ], + [ + 11.0337259, + 50.249557401 + ], + [ + 11.0355, + 50.248679201 + ], + [ + 11.036151, + 50.248368401 + ], + [ + 11.036416138, + 50.24824108 + ] + ] + } + }, + { + "identifier": "2024-006740--vi-bs.2024-01-01_00-00-00-000.devi-zus.2024-01-01_00-00-00-000_030.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.50631185782824,10.779710869222857,50.50630381345316,10.779717095072922", + "point": "50.50631185782824,10.779710869222857", + "startLcPosition": "52", + "impact": { + "lower": "Eisfeld-Nord", + "upper": "Schleusingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Suhl -> Bamberg", + "title": "A73 | Schleusingen - Eisfeld-Nord", + "startTimestamp": "2024-01-01T00:00:00+01:00", + "coordinate": { + "lat": 50.50631185782824, + "long": 10.779710869222857 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.01.24 um 00:00 Uhr", + "Ende: 01.01.30 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.30)", + "", + "A73: Suhl -> Bamberg, zwischen 1.3 km hinter AS Schleusingen und 11.0 km vor AS Eisfeld-Nord", + "", + "L\u00e4nge: 0 km | Maximale Durchfahrtsbreite: 7 m", + "", + "73 ZM_2024-006740_bRF_Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.779710869, + 50.506311858 + ], + [ + 10.779717095, + 50.506303813 + ] + ] + } + }, + { + "identifier": "2026-017716--vi-bs.2026-04-09_09-00-00-000_023.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.48856394884361,10.811848010720976,50.47302080808884,10.825725430548557", + "point": "50.48856394884361,10.811848010720976", + "startLcPosition": "52", + "impact": { + "lower": "Eisfeld-Nord", + "upper": "Schleusingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Suhl -> Bamberg", + "title": "A73 | Schleusingen - Eisfeld-Nord", + "coordinate": { + "lat": 50.48856394884361, + "long": 10.811848010720976 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:00 Uhr", + "", + "A73: Suhl -> Bamberg, zwischen 4.4 km hinter AS Schleusingen und 5.9 km vor AS Eisfeld-Nord", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A73 Reparatur Notrufs\u00e4ule FIT" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.811848011, + 50.488563949 + ], + [ + 10.8121034, + 50.488399401 + ], + [ + 10.8128903, + 50.487848401 + ], + [ + 10.8134816, + 50.487384601 + ], + [ + 10.8140331, + 50.486910001 + ], + [ + 10.8142986, + 50.486677101 + ], + [ + 10.8148128, + 50.486155401 + ], + [ + 10.815037, + 50.485918501 + ], + [ + 10.8155425, + 50.485344601 + ], + [ + 10.815886, + 50.484916301 + ], + [ + 10.8164249, + 50.484164701 + ], + [ + 10.8187213, + 50.480827601 + ], + [ + 10.8195691, + 50.479595601 + ], + [ + 10.8200649, + 50.478894001 + ], + [ + 10.8209785, + 50.477732901 + ], + [ + 10.8217112, + 50.476884601 + ], + [ + 10.8218524, + 50.476721101 + ], + [ + 10.8221822, + 50.476346101 + ], + [ + 10.8225263, + 50.476017401 + ], + [ + 10.8230099, + 50.475525601 + ], + [ + 10.823402, + 50.475132601 + ], + [ + 10.823691, + 50.474846501 + ], + [ + 10.825268, + 50.473388801 + ], + [ + 10.8255666, + 50.473148601 + ], + [ + 10.825725431, + 50.473020808 + ] + ] + } + } + ] + }, + "A81": { + "roadworks": [ + { + "identifier": "2026-002992--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_006.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.74284462348398,8.747382682485846,47.75344237799871,8.776292708535694", + "point": "47.74284462348398,8.747382682485846", + "startLcPosition": "0", + "impact": { + "lower": "Hilzingen", + "upper": "Gottmadingen", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Schaffhausen -> Singen", + "title": "A81 | Gottmadingen - Hilzingen", + "coordinate": { + "lat": 47.74284462348398, + "long": 8.747382682485846 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Schaffhausen -> Singen, zwischen 0.5 km hinter AS Gottmadingen und 1.9 km vor AS Hilzingen", + "", + "L\u00e4nge: 2.54 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 Tunnelinstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.747382682, + 47.742844623 + ], + [ + 8.7474073, + 47.742869001 + ], + [ + 8.7476469, + 47.743089901 + ], + [ + 8.7477978, + 47.743228001 + ], + [ + 8.7480688, + 47.743466401 + ], + [ + 8.7482445, + 47.743606201 + ], + [ + 8.748535, + 47.743830901 + ], + [ + 8.7486948, + 47.743955101 + ], + [ + 8.7488581, + 47.744074801 + ], + [ + 8.7490245, + 47.744190501 + ], + [ + 8.7493436, + 47.744409801 + ], + [ + 8.7495208, + 47.744525101 + ], + [ + 8.7496932, + 47.744631301 + ], + [ + 8.7498681, + 47.744736901 + ], + [ + 8.7501457, + 47.744898401 + ], + [ + 8.7504136, + 47.745052401 + ], + [ + 8.7506336, + 47.745172501 + ], + [ + 8.750871, + 47.745299501 + ], + [ + 8.7510703, + 47.745397701 + ], + [ + 8.7512772, + 47.745499701 + ], + [ + 8.7514946, + 47.745605501 + ], + [ + 8.7517268, + 47.745709401 + ], + [ + 8.7519438, + 47.745802301 + ], + [ + 8.752286, + 47.745940401 + ], + [ + 8.7525035, + 47.746023801 + ], + [ + 8.752684, + 47.746090301 + ], + [ + 8.7528636, + 47.746152201 + ], + [ + 8.7530838, + 47.746228701 + ], + [ + 8.7533299, + 47.746312101 + ], + [ + 8.7535465, + 47.746378901 + ], + [ + 8.7537787, + 47.746446801 + ], + [ + 8.7540458, + 47.746522901 + ], + [ + 8.7542762, + 47.746585001 + ], + [ + 8.7544877, + 47.746640101 + ], + [ + 8.754807, + 47.746719801 + ], + [ + 8.7550738, + 47.746780301 + ], + [ + 8.7553015, + 47.746829201 + ], + [ + 8.755537, + 47.746876301 + ], + [ + 8.7557559, + 47.746919201 + ], + [ + 8.7560072, + 47.746963701 + ], + [ + 8.7562537, + 47.747010201 + ], + [ + 8.7564813, + 47.747054501 + ], + [ + 8.7566364, + 47.747084701 + ], + [ + 8.7569301, + 47.747144401 + ], + [ + 8.7572238, + 47.747204301 + ], + [ + 8.7575077, + 47.747265401 + ], + [ + 8.759489, + 47.747772201 + ], + [ + 8.7605118, + 47.748066901 + ], + [ + 8.7615098, + 47.748424101 + ], + [ + 8.7632519, + 47.749192601 + ], + [ + 8.763445, + 47.749293201 + ], + [ + 8.7636251, + 47.749388901 + ], + [ + 8.7640402, + 47.749633401 + ], + [ + 8.7642637, + 47.749771501 + ], + [ + 8.7644637, + 47.749895701 + ], + [ + 8.7648038, + 47.750108801 + ], + [ + 8.7650727, + 47.750273401 + ], + [ + 8.7652525, + 47.750384401 + ], + [ + 8.7655372, + 47.750548901 + ], + [ + 8.7658101, + 47.750692401 + ], + [ + 8.7660612, + 47.750827801 + ], + [ + 8.7665489, + 47.751090601 + ], + [ + 8.7668514, + 47.751235501 + ], + [ + 8.7671946, + 47.751398701 + ], + [ + 8.767479, + 47.751528001 + ], + [ + 8.7678301, + 47.751680701 + ], + [ + 8.7681237, + 47.751804601 + ], + [ + 8.7683346, + 47.751886401 + ], + [ + 8.7685122, + 47.751954501 + ], + [ + 8.7686812, + 47.752017901 + ], + [ + 8.7688633, + 47.752083601 + ], + [ + 8.7691665, + 47.752178101 + ], + [ + 8.7693767, + 47.752249801 + ], + [ + 8.7695871, + 47.752319801 + ], + [ + 8.7698017, + 47.752387601 + ], + [ + 8.7700154, + 47.752450701 + ], + [ + 8.7703719, + 47.752554201 + ], + [ + 8.770737, + 47.752653301 + ], + [ + 8.7710472, + 47.752731201 + ], + [ + 8.7713612, + 47.752806501 + ], + [ + 8.7716321, + 47.752866301 + ], + [ + 8.7719035, + 47.752922601 + ], + [ + 8.7721293, + 47.752967501 + ], + [ + 8.7723566, + 47.753010701 + ], + [ + 8.7725839, + 47.753052601 + ], + [ + 8.7728128, + 47.753091701 + ], + [ + 8.7731611, + 47.753144401 + ], + [ + 8.7735099, + 47.753192401 + ], + [ + 8.7739834, + 47.753250201 + ], + [ + 8.7744507, + 47.753301401 + ], + [ + 8.7748036, + 47.753333601 + ], + [ + 8.7751532, + 47.753361901 + ], + [ + 8.7758662, + 47.753413501 + ], + [ + 8.776292709, + 47.753442378 + ] + ] + } + }, + { + "identifier": "2026-002992--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_006.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.753541370322004,8.776278112931756,47.74289672362319,8.747269246629253", + "point": "47.753541370322004,8.776278112931756", + "startLcPosition": "2", + "impact": { + "lower": "Gottmadingen", + "upper": "Hilzingen", + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Schaffhausen", + "title": "A81 | Hilzingen - Gottmadingen", + "coordinate": { + "lat": 47.753541370322004, + "long": 8.776278112931756 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Schaffhausen, zwischen 1.9 km hinter AS Hilzingen und 0.5 km vor AS Gottmadingen", + "", + "L\u00e4nge: 2.54 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 Tunnelinstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.776278113, + 47.75354137 + ], + [ + 8.7758528, + 47.753513301 + ], + [ + 8.77514, + 47.753459901 + ], + [ + 8.7747861, + 47.753431601 + ], + [ + 8.7744343, + 47.753398301 + ], + [ + 8.773959, + 47.753348301 + ], + [ + 8.7734883, + 47.753290901 + ], + [ + 8.7731345, + 47.753241201 + ], + [ + 8.7727862, + 47.753188001 + ], + [ + 8.7725561, + 47.753150101 + ], + [ + 8.7723277, + 47.753107201 + ], + [ + 8.7720998, + 47.753063501 + ], + [ + 8.7718736, + 47.753017901 + ], + [ + 8.7715928, + 47.752960301 + ], + [ + 8.7713137, + 47.752898501 + ], + [ + 8.7709961, + 47.752823301 + ], + [ + 8.7706831, + 47.752744301 + ], + [ + 8.7703223, + 47.752645801 + ], + [ + 8.7699635, + 47.752543501 + ], + [ + 8.7697442, + 47.752477401 + ], + [ + 8.7695283, + 47.752408901 + ], + [ + 8.7693152, + 47.752337901 + ], + [ + 8.7691033, + 47.752265201 + ], + [ + 8.7687734, + 47.752149701 + ], + [ + 8.7686082, + 47.752090301 + ], + [ + 8.76843, + 47.752028301 + ], + [ + 8.7682175, + 47.751948801 + ], + [ + 8.7679826, + 47.751858201 + ], + [ + 8.7677255, + 47.751748601 + ], + [ + 8.7674058, + 47.751604501 + ], + [ + 8.767087, + 47.751462701 + ], + [ + 8.7667557, + 47.751304601 + ], + [ + 8.7664479, + 47.751158201 + ], + [ + 8.765971, + 47.750905701 + ], + [ + 8.7656329, + 47.750726701 + ], + [ + 8.7654298, + 47.750619201 + ], + [ + 8.7652222, + 47.750509001 + ], + [ + 8.7649363, + 47.750349801 + ], + [ + 8.7646584, + 47.750204101 + ], + [ + 8.7643985, + 47.750066301 + ], + [ + 8.764151, + 47.749936501 + ], + [ + 8.7638944, + 47.749802601 + ], + [ + 8.7634663, + 47.749574201 + ], + [ + 8.7631995, + 47.749435001 + ], + [ + 8.7629326, + 47.749303701 + ], + [ + 8.7627267, + 47.749207801 + ], + [ + 8.7613734, + 47.748603301 + ], + [ + 8.7603997, + 47.748264301 + ], + [ + 8.7593979, + 47.747969301 + ], + [ + 8.7573977, + 47.747477501 + ], + [ + 8.7571386, + 47.747418801 + ], + [ + 8.7568348, + 47.747349101 + ], + [ + 8.7565468, + 47.747283001 + ], + [ + 8.7562275, + 47.747205101 + ], + [ + 8.7559515, + 47.747139501 + ], + [ + 8.755682, + 47.747070901 + ], + [ + 8.7554653, + 47.747012401 + ], + [ + 8.755056, + 47.746904001 + ], + [ + 8.7546289, + 47.746789001 + ], + [ + 8.7543712, + 47.746720001 + ], + [ + 8.7541715, + 47.746664201 + ], + [ + 8.7539429, + 47.746599701 + ], + [ + 8.7537211, + 47.746539401 + ], + [ + 8.753499, + 47.746473801 + ], + [ + 8.7532793, + 47.746405801 + ], + [ + 8.7530696, + 47.746335401 + ], + [ + 8.7528582, + 47.746261701 + ], + [ + 8.7526446, + 47.746187801 + ], + [ + 8.7524028, + 47.746099401 + ], + [ + 8.7522087, + 47.746025101 + ], + [ + 8.7518383, + 47.745876401 + ], + [ + 8.7516108, + 47.745775501 + ], + [ + 8.7514078, + 47.745684901 + ], + [ + 8.7511875, + 47.745577101 + ], + [ + 8.7509914, + 47.745478701 + ], + [ + 8.7507972, + 47.745381001 + ], + [ + 8.7505579, + 47.745256901 + ], + [ + 8.7503235, + 47.745130201 + ], + [ + 8.7500427, + 47.744967301 + ], + [ + 8.7497728, + 47.744805701 + ], + [ + 8.7495942, + 47.744694801 + ], + [ + 8.7494261, + 47.744589201 + ], + [ + 8.7492467, + 47.744475601 + ], + [ + 8.7490789, + 47.744364601 + ], + [ + 8.7489127, + 47.744248501 + ], + [ + 8.748751, + 47.744132101 + ], + [ + 8.7485886, + 47.744011901 + ], + [ + 8.7484261, + 47.743891601 + ], + [ + 8.7482846, + 47.743784001 + ], + [ + 8.7481218, + 47.743654301 + ], + [ + 8.747955, + 47.743515901 + ], + [ + 8.7477107, + 47.743304001 + ], + [ + 8.747522, + 47.743133301 + ], + [ + 8.7472882, + 47.742915501 + ], + [ + 8.747269247, + 47.742896724 + ] + ] + } + }, + { + "identifier": "2025-061157--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_012.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.86608969061032,8.782185719492439,47.859215684544765,8.790793420467441", + "point": "47.86608969061032,8.782185719492439", + "startLcPosition": "10", + "impact": { + "lower": "Engen", + "upper": "Geisingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Geisingen - Engen", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 47.86608969061032, + "long": 8.782185719492439 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 31.10.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A81: Stuttgart -> Singen, zwischen 12.0 km hinter AS Geisingen und 0.8 km vor AS Engen", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "Sanierung Tank- und Rastanlage Hegau West" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.782185719, + 47.866089691 + ], + [ + 8.7829401, + 47.865359401 + ], + [ + 8.7833896, + 47.864939501 + ], + [ + 8.7835407, + 47.864791801 + ], + [ + 8.7837263, + 47.864626801 + ], + [ + 8.7840566, + 47.864325201 + ], + [ + 8.7845997, + 47.863846501 + ], + [ + 8.7851391, + 47.863379301 + ], + [ + 8.7856945, + 47.862915401 + ], + [ + 8.7866057, + 47.862177401 + ], + [ + 8.7870019, + 47.861867101 + ], + [ + 8.7874032, + 47.861559801 + ], + [ + 8.7884092, + 47.860813301 + ], + [ + 8.789044, + 47.860354401 + ], + [ + 8.7894982, + 47.860039701 + ], + [ + 8.7898793, + 47.859775901 + ], + [ + 8.7906338, + 47.859316801 + ], + [ + 8.79079342, + 47.859215685 + ] + ] + } + }, + { + "identifier": "2026-008845--vi-bs.2026-03-23_09-00-00-000.devi-zus.2026-03-24_09-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.97773743580871,8.617415088094209,47.9821994924884,8.61427759922693", + "point": "47.97773743580871,8.617415088094209", + "startLcPosition": "12", + "impact": { + "lower": "Bad D\u00fcrrheim", + "upper": "R\u00e4thisgraben", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | R\u00e4thisgraben - Bad D\u00fcrrheim", + "startTimestamp": "2026-03-23T09:00:00+01:00", + "coordinate": { + "lat": 47.97773743580871, + "long": 8.617415088094209 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 09:00 Uhr", + "Ende: 24.06.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.06.26)", + "", + "A81: Singen -> Stuttgart, zwischen 1.5 km hinter R\u00e4thisgraben und 1.9 km vor AD Bad D\u00fcrrheim", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A81 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.617415088, + 47.977737436 + ], + [ + 8.6173192, + 47.977897001 + ], + [ + 8.617093, + 47.978262401 + ], + [ + 8.6169328, + 47.978514501 + ], + [ + 8.6167679, + 47.978766501 + ], + [ + 8.6165346, + 47.979116801 + ], + [ + 8.6162976, + 47.979463901 + ], + [ + 8.6160589, + 47.979810801 + ], + [ + 8.6158128, + 47.980157301 + ], + [ + 8.615312, + 47.980838601 + ], + [ + 8.6148019, + 47.981512401 + ], + [ + 8.6143482, + 47.982108601 + ], + [ + 8.614277599, + 47.982199492 + ] + ] + } + }, + { + "identifier": "2026-008845--vi-bs.2026-03-23_09-00-00-000.devi-zus.2026-03-24_09-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.982142335008795,8.614114265727611,47.97769137406761,8.617245871872766", + "point": "47.982142335008795,8.614114265727611", + "startLcPosition": "13", + "impact": { + "lower": "R\u00e4thisgraben", + "upper": "Bad D\u00fcrrheim", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Bad D\u00fcrrheim - R\u00e4thisgraben", + "startTimestamp": "2026-03-23T09:00:00+01:00", + "coordinate": { + "lat": 47.982142335008795, + "long": 8.614114265727611 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 09:00 Uhr", + "Ende: 24.06.26 um 17:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.06.26)", + "", + "A81: Stuttgart -> Singen, zwischen 1.9 km hinter AD Bad D\u00fcrrheim und 1.5 km vor R\u00e4thisgraben", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 6.2 m", + "", + "A81 Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.614114266, + 47.982142335 + ], + [ + 8.6141863, + 47.982049501 + ], + [ + 8.6146489, + 47.981444701 + ], + [ + 8.6151487, + 47.980784201 + ], + [ + 8.6156498, + 47.980098201 + ], + [ + 8.6158961, + 47.979753401 + ], + [ + 8.6161359, + 47.979406901 + ], + [ + 8.6163734, + 47.979059601 + ], + [ + 8.6166066, + 47.978711901 + ], + [ + 8.6167663, + 47.978462701 + ], + [ + 8.6169255, + 47.978213201 + ], + [ + 8.6171524, + 47.977845401 + ], + [ + 8.617245872, + 47.977691374 + ] + ] + } + }, + { + "identifier": "2026-015614--vi-bs.2026-04-18_22-00-00-000.devi-bs.2026-04-18_22-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.0532765969948,8.622932979049853,48.056693768316315,8.621215597369238", + "point": "48.0532765969948,8.622932979049853", + "startLcPosition": "15", + "impact": { + "lower": "Villingen-Schwenningen", + "upper": "Tuningen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Tuningen - Villingen-Schwenningen", + "coordinate": { + "lat": 48.0532765969948, + "long": 8.622932979049853 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 22:00 bis 24:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 2.4 km hinter AS Tuningen und 4.3 km vor AS Villingen-Schwenningen", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h", + "", + "A81 von Villingen-Schwenningen (AS) nach Tuningen (AS) Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.622932979, + 48.053276597 + ], + [ + 8.622853, + 48.053484101 + ], + [ + 8.6226728, + 48.053908901 + ], + [ + 8.6225813, + 48.054124901 + ], + [ + 8.6225595, + 48.054176201 + ], + [ + 8.6223894, + 48.054540901 + ], + [ + 8.6221366, + 48.055051501 + ], + [ + 8.6218717, + 48.055556901 + ], + [ + 8.6217114, + 48.055848401 + ], + [ + 8.6215459, + 48.056139801 + ], + [ + 8.6213862, + 48.056412201 + ], + [ + 8.6212224, + 48.056683001 + ], + [ + 8.621215597, + 48.056693768 + ] + ] + } + }, + { + "identifier": "2026-015614--vi-bs.2026-04-18_22-00-00-000.devi-bs.2026-04-18_22-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.05665020602292,8.621061911234332,48.05324789925442,8.622768722468491", + "point": "48.05665020602292,8.621061911234332", + "startLcPosition": "16", + "impact": { + "lower": "Tuningen", + "upper": "Villingen-Schwenningen", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Villingen-Schwenningen - Tuningen", + "coordinate": { + "lat": 48.05665020602292, + "long": 8.621061911234332 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 von 22:00 bis 24:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 4.3 km hinter AS Villingen-Schwenningen und 2.4 km vor AS Tuningen", + "", + "L\u00e4nge: 0.4 km | Max. 80 km/h", + "", + "A81 von Villingen-Schwenningen (AS) nach Tuningen (AS) Leitungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.621061911, + 48.056650206 + ], + [ + 8.6210682, + 48.056640201 + ], + [ + 8.6212353, + 48.056364101 + ], + [ + 8.6213964, + 48.056088801 + ], + [ + 8.621557, + 48.055805101 + ], + [ + 8.6217133, + 48.055520401 + ], + [ + 8.6219783, + 48.055013501 + ], + [ + 8.6222292, + 48.054502001 + ], + [ + 8.6223886, + 48.054154101 + ], + [ + 8.6226891, + 48.053450801 + ], + [ + 8.622768722, + 48.053247899 + ] + ] + } + }, + { + "identifier": "2026-017835--vi-bs.2026-04-13_19-00-00-000_007.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.135805461443105,8.570852823940415,48.1056995845921,8.58415246920358", + "point": "48.135805461443105,8.570852823940415", + "startLcPosition": "17", + "impact": { + "lower": "Villingen-Schwenningen", + "upper": "Eschachtal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Eschachtal - Villingen-Schwenningen", + "coordinate": { + "lat": 48.135805461443105, + "long": 8.570852823940415 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 06:00 Uhr.", + "14.04.26 19:00 bis zum 15.04.26 06:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 06:00 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 06:00 Uhr.", + "17.04.26 19:00 bis zum 18.04.26 06:00 Uhr.", + "", + "A81: Stuttgart -> Singen, zwischen 0.8 km hinter Eschachtal und 1.8 km vor AS Villingen-Schwenningen", + "", + "L\u00e4nge: 3.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A81 von Eschachtal (Rastplatz) nach Villingen-Schwenningen (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.570852824, + 48.135805461 + ], + [ + 8.570862, + 48.135743801 + ], + [ + 8.5709394, + 48.135284701 + ], + [ + 8.5710493, + 48.134728001 + ], + [ + 8.5711697, + 48.134173801 + ], + [ + 8.5713248, + 48.133611901 + ], + [ + 8.5714759, + 48.133064601 + ], + [ + 8.5715544, + 48.132781701 + ], + [ + 8.5716412, + 48.132506201 + ], + [ + 8.571822, + 48.131962101 + ], + [ + 8.5720084, + 48.131417101 + ], + [ + 8.5721707, + 48.130982301 + ], + [ + 8.5723386, + 48.130549601 + ], + [ + 8.5725189, + 48.130119301 + ], + [ + 8.5726083, + 48.129903501 + ], + [ + 8.5727051, + 48.129689301 + ], + [ + 8.5729027, + 48.129267601 + ], + [ + 8.5731079, + 48.128843301 + ], + [ + 8.5735171, + 48.127992001 + ], + [ + 8.5736881, + 48.127666401 + ], + [ + 8.5738675, + 48.127342001 + ], + [ + 8.5740494, + 48.127015701 + ], + [ + 8.5742375, + 48.126689201 + ], + [ + 8.5746229, + 48.126042801 + ], + [ + 8.5750083, + 48.125407601 + ], + [ + 8.5776469, + 48.121281401 + ], + [ + 8.5780406, + 48.120655201 + ], + [ + 8.5782594, + 48.120298501 + ], + [ + 8.5784728, + 48.119940201 + ], + [ + 8.5788292, + 48.119327901 + ], + [ + 8.579038, + 48.118952201 + ], + [ + 8.5792411, + 48.118576401 + ], + [ + 8.5795563, + 48.117958301 + ], + [ + 8.579742, + 48.117587601 + ], + [ + 8.5799183, + 48.117212601 + ], + [ + 8.5800666, + 48.116895601 + ], + [ + 8.5802054, + 48.116581501 + ], + [ + 8.5803762, + 48.116187201 + ], + [ + 8.5805371, + 48.115791801 + ], + [ + 8.5807162, + 48.115335001 + ], + [ + 8.5808908, + 48.114868801 + ], + [ + 8.5810603, + 48.114418401 + ], + [ + 8.5812189, + 48.113964701 + ], + [ + 8.581542, + 48.113048101 + ], + [ + 8.5818101, + 48.112158201 + ], + [ + 8.5824124, + 48.110272501 + ], + [ + 8.5827266, + 48.109333401 + ], + [ + 8.5830299, + 48.108451701 + ], + [ + 8.5831964, + 48.107990101 + ], + [ + 8.5833694, + 48.107530601 + ], + [ + 8.5835468, + 48.107082401 + ], + [ + 8.5837283, + 48.106636901 + ], + [ + 8.5841322, + 48.105744601 + ], + [ + 8.584152469, + 48.105699585 + ] + ] + } + }, + { + "identifier": "2025-004701--vi-bs.2025-12-08_00-00-00-000.devi-zus.2025-04-01_00-00-00-000_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.19712621167331,8.596997267703989,48.206996158635164,8.62643918469142", + "point": "48.19712621167331,8.596997267703989", + "startLcPosition": "18", + "impact": { + "lower": "Oberndorf am Neckar", + "upper": "Rottweil", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Rottweil - Oberndorf am Neckar", + "startTimestamp": "2025-12-08T00:00:00+01:00", + "coordinate": { + "lat": 48.19712621167331, + "long": 8.596997267703989 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.12.25 um 00:00 Uhr", + "Ende: 16.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.28)", + "", + "A81: Singen -> Stuttgart, zwischen 2.8 km hinter AS Rottweil und 11.1 km vor AS Oberndorf am Neckar", + "", + "L\u00e4nge: 2.45 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "Instandsetzung und Verst\u00e4rkung der Talbr\u00fccke Neckarburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.596997268, + 48.197126212 + ], + [ + 8.597362, + 48.197281601 + ], + [ + 8.5975038, + 48.197341401 + ], + [ + 8.597872, + 48.197496701 + ], + [ + 8.5979596, + 48.197533701 + ], + [ + 8.598331, + 48.197685001 + ], + [ + 8.5987056, + 48.197832401 + ], + [ + 8.5990977, + 48.197986001 + ], + [ + 8.5994913, + 48.198138401 + ], + [ + 8.6002627, + 48.198426001 + ], + [ + 8.6010203, + 48.198697501 + ], + [ + 8.6017561, + 48.198951301 + ], + [ + 8.6026203, + 48.199240301 + ], + [ + 8.6032755, + 48.199450201 + ], + [ + 8.6039316, + 48.199659001 + ], + [ + 8.6047509, + 48.199912201 + ], + [ + 8.6055736, + 48.200164301 + ], + [ + 8.6063283, + 48.200391001 + ], + [ + 8.6070853, + 48.200615201 + ], + [ + 8.6088409, + 48.201141301 + ], + [ + 8.6105285, + 48.201639501 + ], + [ + 8.615056, + 48.202994601 + ], + [ + 8.6170551, + 48.203594101 + ], + [ + 8.6180649, + 48.203905301 + ], + [ + 8.6186104, + 48.204075301 + ], + [ + 8.6191532, + 48.204249201 + ], + [ + 8.6197683, + 48.204447801 + ], + [ + 8.6204828, + 48.204682501 + ], + [ + 8.6211251, + 48.204905401 + ], + [ + 8.6216175, + 48.205078601 + ], + [ + 8.6222627, + 48.205314601 + ], + [ + 8.6228117, + 48.205517801 + ], + [ + 8.6233598, + 48.205723201 + ], + [ + 8.6244168, + 48.206144801 + ], + [ + 8.624928, + 48.206352401 + ], + [ + 8.6254397, + 48.206566301 + ], + [ + 8.626439185, + 48.206996159 + ] + ] + } + }, + { + "identifier": "2024-014679--vi-bs.2026-04-08_20-00-00-000.devi-zus.2025-05-01_00-00-00-000_007.f.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.205276029333206,8.622157248047566,48.22182581916709,8.646652424907199", + "point": "48.205276029333206,8.622157248047566", + "startLcPosition": "18", + "impact": { + "lower": "Oberndorf am Neckar", + "upper": "Rottweil", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Rottweil - Oberndorf am Neckar", + "coordinate": { + "lat": 48.205276029333206, + "long": 8.622157248047566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A81: Singen -> Stuttgart, zwischen 4.9 km hinter AS Rottweil und 8.9 km vor AS Oberndorf am Neckar", + "", + "L\u00e4nge: 2.62 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A81 FBE Irslingen 2026 - 2027" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.622157248, + 48.205276029 + ], + [ + 8.6222627, + 48.205314601 + ], + [ + 8.6228117, + 48.205517801 + ], + [ + 8.6233598, + 48.205723201 + ], + [ + 8.6244168, + 48.206144801 + ], + [ + 8.624928, + 48.206352401 + ], + [ + 8.6254397, + 48.206566301 + ], + [ + 8.6265202, + 48.207031001 + ], + [ + 8.6271465, + 48.207309401 + ], + [ + 8.6279086, + 48.207660101 + ], + [ + 8.6289182, + 48.208144701 + ], + [ + 8.6313236, + 48.209389301 + ], + [ + 8.6325991, + 48.210092601 + ], + [ + 8.6333634, + 48.210537801 + ], + [ + 8.6341198, + 48.210993701 + ], + [ + 8.6349027, + 48.211477901 + ], + [ + 8.6350412, + 48.211565301 + ], + [ + 8.6354025, + 48.211805801 + ], + [ + 8.6357659, + 48.212045501 + ], + [ + 8.6364659, + 48.212517701 + ], + [ + 8.6368119, + 48.212759101 + ], + [ + 8.6371628, + 48.213003701 + ], + [ + 8.6378439, + 48.213491001 + ], + [ + 8.6384215, + 48.213914701 + ], + [ + 8.6389736, + 48.214336201 + ], + [ + 8.6395239, + 48.214769701 + ], + [ + 8.6400629, + 48.215201301 + ], + [ + 8.6406771, + 48.215710901 + ], + [ + 8.6412811, + 48.216226701 + ], + [ + 8.6418728, + 48.216760401 + ], + [ + 8.6423975, + 48.217249301 + ], + [ + 8.6428976, + 48.217721701 + ], + [ + 8.6433867, + 48.218196601 + ], + [ + 8.6442824, + 48.219121101 + ], + [ + 8.6447884, + 48.219658601 + ], + [ + 8.64504, + 48.219928901 + ], + [ + 8.6452807, + 48.220200701 + ], + [ + 8.6457229, + 48.220691401 + ], + [ + 8.6461677, + 48.221228501 + ], + [ + 8.646652425, + 48.221825819 + ] + ] + } + }, + { + "identifier": "2024-014679--vi-bs.2026-04-08_20-00-00-000.devi-zus.2025-05-01_00-00-00-000_007.f.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.205276029333206,8.622157248047566,48.22182581916709,8.646652424907199", + "point": "48.205276029333206,8.622157248047566", + "startLcPosition": "18", + "impact": { + "lower": "Oberndorf am Neckar", + "upper": "Rottweil", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Rottweil - Oberndorf am Neckar", + "coordinate": { + "lat": 48.205276029333206, + "long": 8.622157248047566 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "", + "A81: Singen -> Stuttgart, zwischen 4.9 km hinter AS Rottweil und 8.9 km vor AS Oberndorf am Neckar", + "", + "L\u00e4nge: 2.62 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A81 FBE Irslingen 2026 - 2027" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.622157248, + 48.205276029 + ], + [ + 8.6222627, + 48.205314601 + ], + [ + 8.6228117, + 48.205517801 + ], + [ + 8.6233598, + 48.205723201 + ], + [ + 8.6244168, + 48.206144801 + ], + [ + 8.624928, + 48.206352401 + ], + [ + 8.6254397, + 48.206566301 + ], + [ + 8.6265202, + 48.207031001 + ], + [ + 8.6271465, + 48.207309401 + ], + [ + 8.6279086, + 48.207660101 + ], + [ + 8.6289182, + 48.208144701 + ], + [ + 8.6313236, + 48.209389301 + ], + [ + 8.6325991, + 48.210092601 + ], + [ + 8.6333634, + 48.210537801 + ], + [ + 8.6341198, + 48.210993701 + ], + [ + 8.6349027, + 48.211477901 + ], + [ + 8.6350412, + 48.211565301 + ], + [ + 8.6354025, + 48.211805801 + ], + [ + 8.6357659, + 48.212045501 + ], + [ + 8.6364659, + 48.212517701 + ], + [ + 8.6368119, + 48.212759101 + ], + [ + 8.6371628, + 48.213003701 + ], + [ + 8.6378439, + 48.213491001 + ], + [ + 8.6384215, + 48.213914701 + ], + [ + 8.6389736, + 48.214336201 + ], + [ + 8.6395239, + 48.214769701 + ], + [ + 8.6400629, + 48.215201301 + ], + [ + 8.6406771, + 48.215710901 + ], + [ + 8.6412811, + 48.216226701 + ], + [ + 8.6418728, + 48.216760401 + ], + [ + 8.6423975, + 48.217249301 + ], + [ + 8.6428976, + 48.217721701 + ], + [ + 8.6433867, + 48.218196601 + ], + [ + 8.6442824, + 48.219121101 + ], + [ + 8.6447884, + 48.219658601 + ], + [ + 8.64504, + 48.219928901 + ], + [ + 8.6452807, + 48.220200701 + ], + [ + 8.6457229, + 48.220691401 + ], + [ + 8.6461677, + 48.221228501 + ], + [ + 8.646652425, + 48.221825819 + ] + ] + } + }, + { + "identifier": "2025-004701--vi-bs.2025-12-08_00-00-00-000.devi-zus.2025-04-01_00-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.207097367226766,8.626341939141103,48.197224649398954,8.596901630869107", + "point": "48.207097367226766,8.626341939141103", + "startLcPosition": "20", + "impact": { + "lower": "Rottweil", + "upper": "Oberndorf am Neckar", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Oberndorf am Neckar - Rottweil", + "startTimestamp": "2025-12-08T00:00:00+01:00", + "coordinate": { + "lat": 48.207097367226766, + "long": 8.626341939141103 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.12.25 um 00:00 Uhr", + "Ende: 16.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.28)", + "", + "A81: Stuttgart -> Singen, zwischen 11.1 km hinter AS Oberndorf am Neckar und 2.8 km vor AS Rottweil", + "", + "L\u00e4nge: 2.45 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "Instandsetzung und Verst\u00e4rkung der Talbr\u00fccke Neckarburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.626341939, + 48.207097367 + ], + [ + 8.6253415, + 48.206668101 + ], + [ + 8.6248546, + 48.206464301 + ], + [ + 8.6243357, + 48.206253301 + ], + [ + 8.6232685, + 48.205831401 + ], + [ + 8.6227308, + 48.205626201 + ], + [ + 8.6221868, + 48.205424401 + ], + [ + 8.6215443, + 48.205190501 + ], + [ + 8.6210576, + 48.205018401 + ], + [ + 8.6204052, + 48.204795201 + ], + [ + 8.6197018, + 48.204562301 + ], + [ + 8.6190613, + 48.204360501 + ], + [ + 8.6180587, + 48.204050501 + ], + [ + 8.6174801, + 48.203863001 + ], + [ + 8.6166521, + 48.203608501 + ], + [ + 8.6149809, + 48.203106101 + ], + [ + 8.6104534, + 48.201751001 + ], + [ + 8.6087775, + 48.201254401 + ], + [ + 8.6070118, + 48.200728101 + ], + [ + 8.6062558, + 48.200504201 + ], + [ + 8.6055019, + 48.200277801 + ], + [ + 8.6046845, + 48.200026801 + ], + [ + 8.6038696, + 48.199774101 + ], + [ + 8.6032148, + 48.199565601 + ], + [ + 8.6025629, + 48.199355101 + ], + [ + 8.6016945, + 48.199065001 + ], + [ + 8.6009415, + 48.198805601 + ], + [ + 8.6002004, + 48.198539901 + ], + [ + 8.5993926, + 48.198237601 + ], + [ + 8.5989999, + 48.198085501 + ], + [ + 8.5986092, + 48.197932501 + ], + [ + 8.5982479, + 48.197790001 + ], + [ + 8.5978898, + 48.197643901 + ], + [ + 8.597791, + 48.197602901 + ], + [ + 8.5974034, + 48.197442101 + ], + [ + 8.5972835, + 48.197392401 + ], + [ + 8.596901631, + 48.197224649 + ] + ] + } + }, + { + "identifier": "2025-052047--vi-fbm.2026-04-09_09-00-00-000.devi-zus.2026-03-09_00-00-00-000.de63", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.361066814062845,8.684419289105541,48.372236088793805,8.695707223763934", + "point": "48.361066814062845,8.684419289105541", + "startLcPosition": "22", + "impact": { + "lower": "Empfingen", + "upper": "Sulz am Neckar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Sulz am Neckar - Empfingen", + "coordinate": { + "lat": 48.361066814062845, + "long": 8.684419289105541 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:30 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 2.6 km hinter AS Sulz am Neckar und 2.6 km vor AS Empfingen", + "", + "L\u00e4nge: 1.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A81 Br\u00fcckeninstandsetzung M\u00fchlbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.684419289, + 48.361066814 + ], + [ + 8.6844271, + 48.361074601 + ], + [ + 8.6846915, + 48.361348701 + ], + [ + 8.6854308, + 48.362134701 + ], + [ + 8.6861129, + 48.362878601 + ], + [ + 8.6867876, + 48.363623601 + ], + [ + 8.6883203, + 48.365353601 + ], + [ + 8.6886966, + 48.365777001 + ], + [ + 8.6890769, + 48.366200201 + ], + [ + 8.6894661, + 48.366624601 + ], + [ + 8.689857, + 48.367051201 + ], + [ + 8.6904042, + 48.367633401 + ], + [ + 8.6909624, + 48.368207701 + ], + [ + 8.6912671, + 48.368509901 + ], + [ + 8.6913846, + 48.368624301 + ], + [ + 8.6915757, + 48.368813601 + ], + [ + 8.6918732, + 48.369105901 + ], + [ + 8.6921783, + 48.369393901 + ], + [ + 8.6927712, + 48.369927401 + ], + [ + 8.6930275, + 48.370159001 + ], + [ + 8.6933354, + 48.370417501 + ], + [ + 8.6936719, + 48.370696701 + ], + [ + 8.6940399, + 48.370997001 + ], + [ + 8.694228, + 48.371147201 + ], + [ + 8.6944191, + 48.371296601 + ], + [ + 8.6946499, + 48.371473001 + ], + [ + 8.6948853, + 48.371649301 + ], + [ + 8.6952463, + 48.371910901 + ], + [ + 8.6955998, + 48.372159501 + ], + [ + 8.695707224, + 48.372236089 + ] + ] + } + }, + { + "identifier": "2026-013803--vi-bs.2026-04-21_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.33223986703522,8.64650468632097,48.33134859316345,8.64640003184461", + "point": "48.33223986703522,8.64650468632097", + "startLcPosition": "22", + "impact": { + "lower": "Hasenrain", + "upper": "Sulz am Neckar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Sulz am Neckar - Hasenrain", + "coordinate": { + "lat": 48.33223986703522, + "long": 8.64650468632097 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 08:00 bis 18:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 1.8 km hinter AS Sulz am Neckar und 0.7 km vor Hasenrain", + "", + "L\u00e4nge: 0.1 km | Max. 120 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A81 von Sulz am Neckar (AS) nach Hasenrain (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.646504686, + 48.332239867 + ], + [ + 8.6464798, + 48.332085101 + ], + [ + 8.6464469, + 48.331843001 + ], + [ + 8.6464221, + 48.331599201 + ], + [ + 8.646400032, + 48.331348593 + ] + ] + } + }, + { + "identifier": "2024-044947--vi-bs.2026-03-11_06-00-00-000.devi-zus.2024-09-23_17-00-00-000.f.de54", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.40946107298224,8.726381008422178,48.419077402654835,8.732931516839377", + "point": "48.40946107298224,8.726381008422178", + "startLcPosition": "23", + "impact": { + "lower": "Horb am Neckar", + "upper": "Empfingen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Empfingen - Horb am Neckar", + "startTimestamp": "2026-03-11T06:00:00+01:00", + "coordinate": { + "lat": 48.40946107298224, + "long": 8.726381008422178 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.03.26 um 06:00 Uhr", + "Ende: 17.07.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 2.8 km hinter AS Empfingen und 1.6 km vor AS Horb am Neckar", + "", + "L\u00e4nge: 1.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "DEGES NLSW - E051 A81 Instandsetzung Br\u00fccke Dettensee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.726381008, + 48.409461073 + ], + [ + 8.7264044, + 48.409642701 + ], + [ + 8.7264504, + 48.409921001 + ], + [ + 8.7265034, + 48.410198201 + ], + [ + 8.7265667, + 48.410471301 + ], + [ + 8.7266346, + 48.410744301 + ], + [ + 8.7267178, + 48.411052901 + ], + [ + 8.7268044, + 48.411367301 + ], + [ + 8.7269065, + 48.411678801 + ], + [ + 8.7270168, + 48.411972701 + ], + [ + 8.7271112, + 48.412219701 + ], + [ + 8.7272133, + 48.412466301 + ], + [ + 8.727324, + 48.412714501 + ], + [ + 8.7274355, + 48.412956901 + ], + [ + 8.7276, + 48.413284901 + ], + [ + 8.7277846, + 48.413630301 + ], + [ + 8.727931, + 48.413884001 + ], + [ + 8.7280823, + 48.414142201 + ], + [ + 8.7282437, + 48.414400601 + ], + [ + 8.7284033, + 48.414653601 + ], + [ + 8.7285931, + 48.414921101 + ], + [ + 8.7288029, + 48.415192301 + ], + [ + 8.7290292, + 48.415475601 + ], + [ + 8.7292735, + 48.415776901 + ], + [ + 8.7295093, + 48.416061901 + ], + [ + 8.7297431, + 48.416329901 + ], + [ + 8.7299265, + 48.416531101 + ], + [ + 8.7301136, + 48.416733401 + ], + [ + 8.7304345, + 48.417052701 + ], + [ + 8.730772, + 48.417365001 + ], + [ + 8.7315202, + 48.418030301 + ], + [ + 8.7319955, + 48.418395901 + ], + [ + 8.7324689, + 48.418741701 + ], + [ + 8.7328278, + 48.419002801 + ], + [ + 8.732931517, + 48.419077403 + ] + ] + } + }, + { + "identifier": "2024-044947--vi-bs.2026-03-11_06-00-00-000.devi-zus.2024-09-23_17-00-00-000.f.de52", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.41615160960546,8.729587560442534,48.41947446223695,8.73349754609783", + "point": "48.41615160960546,8.729587560442534", + "startLcPosition": "23", + "impact": { + "lower": "Horb am Neckar", + "upper": "Empfingen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Empfingen - Horb am Neckar", + "startTimestamp": "2026-03-11T06:00:00+01:00", + "coordinate": { + "lat": 48.41615160960546, + "long": 8.729587560442534 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.03.26 um 06:00 Uhr", + "Ende: 17.07.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 3.6 km hinter AS Empfingen und 1.6 km vor AS Horb am Neckar", + "", + "L\u00e4nge: 0.47 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "DEGES NLSW - E051 A81 Instandsetzung Br\u00fccke Dettensee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.72958756, + 48.41615161 + ], + [ + 8.7297431, + 48.416329901 + ], + [ + 8.7299265, + 48.416531101 + ], + [ + 8.7301136, + 48.416733401 + ], + [ + 8.7304345, + 48.417052701 + ], + [ + 8.730772, + 48.417365001 + ], + [ + 8.7315202, + 48.418030301 + ], + [ + 8.7319955, + 48.418395901 + ], + [ + 8.7324689, + 48.418741701 + ], + [ + 8.7328278, + 48.419002801 + ], + [ + 8.7331883, + 48.419262101 + ], + [ + 8.733497546, + 48.419474462 + ] + ] + } + }, + { + "identifier": "2025-052047--vi-fbm.2026-04-09_09-00-00-000.devi-zus.2026-03-09_00-00-00-000.de61", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.38398024818606,8.723851212164714,48.376969233135824,8.707014728606424", + "point": "48.38398024818606,8.723851212164714", + "startLcPosition": "23", + "impact": { + "lower": "Sulz am Neckar", + "upper": "Empfingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Empfingen - Sulz am Neckar", + "coordinate": { + "lat": 48.38398024818606, + "long": 8.723851212164714 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:00 bis 16:30 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 0.1 km hinter AS Empfingen und 5.1 km vor AS Sulz am Neckar", + "", + "L\u00e4nge: 1.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A81 Br\u00fcckeninstandsetzung M\u00fchlbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.723851212, + 48.383980248 + ], + [ + 8.7235842, + 48.383747901 + ], + [ + 8.7233423, + 48.383549301 + ], + [ + 8.7228888, + 48.383182501 + ], + [ + 8.7226399, + 48.382991901 + ], + [ + 8.7223739, + 48.382793301 + ], + [ + 8.7220983, + 48.382595101 + ], + [ + 8.7217929, + 48.382383801 + ], + [ + 8.7214904, + 48.382174701 + ], + [ + 8.7208569, + 48.381766401 + ], + [ + 8.720488, + 48.381539601 + ], + [ + 8.7201163, + 48.381316001 + ], + [ + 8.7197376, + 48.381099001 + ], + [ + 8.7193542, + 48.380886901 + ], + [ + 8.7188174, + 48.380608301 + ], + [ + 8.7182659, + 48.380335701 + ], + [ + 8.7177176, + 48.380073301 + ], + [ + 8.7174388, + 48.379947101 + ], + [ + 8.7171556, + 48.379824601 + ], + [ + 8.716592, + 48.379583301 + ], + [ + 8.7160176, + 48.379351001 + ], + [ + 8.7154366, + 48.379130901 + ], + [ + 8.714851, + 48.378920701 + ], + [ + 8.714547, + 48.378815801 + ], + [ + 8.7142424, + 48.378714201 + ], + [ + 8.7136199, + 48.378521801 + ], + [ + 8.7129971, + 48.378336301 + ], + [ + 8.7123746, + 48.378165201 + ], + [ + 8.71176, + 48.378005001 + ], + [ + 8.711134, + 48.377853801 + ], + [ + 8.7097994, + 48.377558801 + ], + [ + 8.7085604, + 48.377294701 + ], + [ + 8.7073289, + 48.377037501 + ], + [ + 8.707014729, + 48.376969233 + ] + ] + } + }, + { + "identifier": "2024-044947--vi-bs.2026-03-11_06-00-00-000.devi-zus.2024-09-23_17-00-00-000.f.de56", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.41916001498683,8.732797570794308,48.40947127637346,8.726208452047263", + "point": "48.41916001498683,8.732797570794308", + "startLcPosition": "24", + "impact": { + "lower": "Empfingen", + "upper": "Horb am Neckar", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Horb am Neckar - Empfingen", + "startTimestamp": "2026-03-11T06:00:00+01:00", + "coordinate": { + "lat": 48.41916001498683, + "long": 8.732797570794308 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.03.26 um 06:00 Uhr", + "Ende: 17.07.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 1.6 km hinter AS Horb am Neckar und 2.8 km vor AS Empfingen", + "", + "L\u00e4nge: 1.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "DEGES NLSW - E051 A81 Instandsetzung Br\u00fccke Dettensee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.732797571, + 48.419160015 + ], + [ + 8.7326979, + 48.419088501 + ], + [ + 8.7323392, + 48.418825401 + ], + [ + 8.7318599, + 48.418474801 + ], + [ + 8.7313808, + 48.418104701 + ], + [ + 8.7306221, + 48.417440001 + ], + [ + 8.7302942, + 48.417118801 + ], + [ + 8.729967, + 48.416789101 + ], + [ + 8.7297762, + 48.416588901 + ], + [ + 8.7295922, + 48.416386501 + ], + [ + 8.7293558, + 48.416119201 + ], + [ + 8.7291105, + 48.415830001 + ], + [ + 8.7288696, + 48.415536401 + ], + [ + 8.7286431, + 48.415248501 + ], + [ + 8.72844, + 48.414974801 + ], + [ + 8.728248, + 48.414705301 + ], + [ + 8.7280813, + 48.414450901 + ], + [ + 8.7279138, + 48.414191801 + ], + [ + 8.72776, + 48.413935701 + ], + [ + 8.7276081, + 48.413671801 + ], + [ + 8.7274306, + 48.413338901 + ], + [ + 8.7272622, + 48.413005301 + ], + [ + 8.7271423, + 48.412749601 + ], + [ + 8.7270329, + 48.412501401 + ], + [ + 8.7269307, + 48.412251701 + ], + [ + 8.7268334, + 48.412001801 + ], + [ + 8.7267335, + 48.411702901 + ], + [ + 8.72663, + 48.411390801 + ], + [ + 8.7265362, + 48.411076101 + ], + [ + 8.7264551, + 48.410766901 + ], + [ + 8.7263904, + 48.410491801 + ], + [ + 8.7263302, + 48.410216701 + ], + [ + 8.726279, + 48.409938801 + ], + [ + 8.7262345, + 48.409660901 + ], + [ + 8.726208452, + 48.409471276 + ] + ] + } + }, + { + "identifier": "2024-044947--vi-bs.2026-03-11_06-00-00-000.devi-zus.2024-09-23_17-00-00-000.f.de50", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.419559790979385,8.733364459616327,48.41621047499982,8.729436522404203", + "point": "48.419559790979385,8.733364459616327", + "startLcPosition": "24", + "impact": { + "lower": "Empfingen", + "upper": "Horb am Neckar", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Horb am Neckar - Empfingen", + "startTimestamp": "2026-03-11T06:00:00+01:00", + "coordinate": { + "lat": 48.419559790979385, + "long": 8.733364459616327 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.03.26 um 06:00 Uhr", + "Ende: 17.07.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 1.6 km hinter AS Horb am Neckar und 3.6 km vor AS Empfingen", + "", + "L\u00e4nge: 0.47 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.35 m", + "", + "DEGES NLSW - E051 A81 Instandsetzung Br\u00fccke Dettensee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.73336446, + 48.419559791 + ], + [ + 8.7330625, + 48.419350101 + ], + [ + 8.7326979, + 48.419088501 + ], + [ + 8.7323392, + 48.418825401 + ], + [ + 8.7318599, + 48.418474801 + ], + [ + 8.7313808, + 48.418104701 + ], + [ + 8.7306221, + 48.417440001 + ], + [ + 8.7302942, + 48.417118801 + ], + [ + 8.729967, + 48.416789101 + ], + [ + 8.7297762, + 48.416588901 + ], + [ + 8.7295922, + 48.416386501 + ], + [ + 8.729436522, + 48.416210475 + ] + ] + } + }, + { + "identifier": "2024-015004--vi-bs.2025-04-01_00-00-00-000.f.devi-zus.2025-04-01_00-00-00-000_028.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.44474316040711,8.760844942580391,48.45224647324261,8.77054872450655", + "point": "48.44474316040711,8.760844942580391", + "startLcPosition": "24", + "impact": { + "lower": "Hirtenhaus", + "upper": "Horb am Neckar", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Horb am Neckar - Hirtenhaus", + "startTimestamp": "2025-04-01T00:00:00+02:00", + "coordinate": { + "lat": 48.44474316040711, + "long": 8.760844942580391 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A81: Singen -> Stuttgart, zwischen 1.9 km hinter AS Horb am Neckar und 0.5 km vor Hirtenhaus", + "", + "L\u00e4nge: 1.1 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A81 Br\u00fcckeninstandsetzung Neckartalbr\u00fccke Weitingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.760844943, + 48.44474316 + ], + [ + 8.7609771, + 48.444844101 + ], + [ + 8.7619119, + 48.445531701 + ], + [ + 8.7642295, + 48.447329801 + ], + [ + 8.7661645, + 48.448831001 + ], + [ + 8.7673786, + 48.449772901 + ], + [ + 8.7700973, + 48.451882001 + ], + [ + 8.770548725, + 48.452246473 + ] + ] + } + }, + { + "identifier": "2024-015004--vi-bs.2025-04-01_00-00-00-000.f.devi-zus.2025-04-01_00-00-00-000_028.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.45232228091417,8.770410966863288,48.44481857630336,8.760715292651605", + "point": "48.45232228091417,8.770410966863288", + "startLcPosition": "26", + "impact": { + "lower": "Horb am Neckar", + "upper": "Hirtenhaus", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Hirtenhaus - Horb am Neckar", + "startTimestamp": "2025-04-01T00:00:00+02:00", + "coordinate": { + "lat": 48.45232228091417, + "long": 8.770410966863288 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 01.04.25 um 00:00 Uhr", + "Ende: 01.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A81: Stuttgart -> Singen, zwischen 0.5 km hinter Hirtenhaus und 1.9 km vor AS Horb am Neckar", + "", + "L\u00e4nge: 1.1 km | Maximale Durchfahrtsbreite: 5.58 m", + "", + "A81 Br\u00fcckeninstandsetzung Neckartalbr\u00fccke Weitingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.770410967, + 48.452322281 + ], + [ + 8.7699583, + 48.451960801 + ], + [ + 8.7672399, + 48.449851901 + ], + [ + 8.766022, + 48.448907101 + ], + [ + 8.7640992, + 48.447415401 + ], + [ + 8.7617729, + 48.445610601 + ], + [ + 8.760715293, + 48.444818576 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.49382644289274,8.832596081643583,48.593994832271896,8.896949343043396", + "point": "48.49382644289274,8.832596081643583", + "startLcPosition": "27", + "impact": { + "lower": "Sch\u00f6nbuchtunnel", + "upper": "Neckarblick", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Neckarblick - Sch\u00f6nbuchtunnel", + "coordinate": { + "lat": 48.49382644289274, + "long": 8.832596081643583 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 6.1 km hinter Neckarblick und 1.5 km vor Sch\u00f6nbuchtunnel", + "", + "L\u00e4nge: 13.27 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.832596082, + 48.493826443 + ], + [ + 8.8326378, + 48.493862501 + ], + [ + 8.8332107, + 48.494377501 + ], + [ + 8.833769, + 48.494897001 + ], + [ + 8.8343192, + 48.495415401 + ], + [ + 8.8348752, + 48.495949501 + ], + [ + 8.8362693, + 48.497310001 + ], + [ + 8.8381419, + 48.499120401 + ], + [ + 8.838767, + 48.499705601 + ], + [ + 8.8390793, + 48.499987201 + ], + [ + 8.83943, + 48.500301101 + ], + [ + 8.8397614, + 48.500599701 + ], + [ + 8.8400995, + 48.500899701 + ], + [ + 8.840558, + 48.501288801 + ], + [ + 8.8410196, + 48.501674201 + ], + [ + 8.8414937, + 48.502054001 + ], + [ + 8.8419736, + 48.502440501 + ], + [ + 8.8420759, + 48.502520701 + ], + [ + 8.842559, + 48.502899501 + ], + [ + 8.8432349, + 48.503405701 + ], + [ + 8.8438632, + 48.503859001 + ], + [ + 8.844417, + 48.504262901 + ], + [ + 8.8445152, + 48.504333101 + ], + [ + 8.8451867, + 48.504796001 + ], + [ + 8.8455235, + 48.505021401 + ], + [ + 8.8458648, + 48.505244701 + ], + [ + 8.8462336, + 48.505492301 + ], + [ + 8.8466216, + 48.505745901 + ], + [ + 8.847016, + 48.505999101 + ], + [ + 8.8473, + 48.506172901 + ], + [ + 8.8477381, + 48.506441801 + ], + [ + 8.8483518, + 48.506816801 + ], + [ + 8.8486776, + 48.507012201 + ], + [ + 8.8490071, + 48.507205401 + ], + [ + 8.8492515, + 48.507348701 + ], + [ + 8.8494994, + 48.507490701 + ], + [ + 8.8497478, + 48.507633001 + ], + [ + 8.8499963, + 48.507772501 + ], + [ + 8.8505371, + 48.508075001 + ], + [ + 8.8508112, + 48.508227301 + ], + [ + 8.851088, + 48.508378801 + ], + [ + 8.8514714, + 48.508581901 + ], + [ + 8.8518584, + 48.508782901 + ], + [ + 8.8522478, + 48.508982101 + ], + [ + 8.8526402, + 48.509179401 + ], + [ + 8.8530687, + 48.509396301 + ], + [ + 8.8534976, + 48.509611401 + ], + [ + 8.8543612, + 48.510028401 + ], + [ + 8.8553146, + 48.510472501 + ], + [ + 8.855779, + 48.510683401 + ], + [ + 8.8562472, + 48.510891401 + ], + [ + 8.8568189, + 48.511141901 + ], + [ + 8.8574257, + 48.511396701 + ], + [ + 8.8580074, + 48.511640301 + ], + [ + 8.8586023, + 48.511886101 + ], + [ + 8.8590213, + 48.512053701 + ], + [ + 8.8594447, + 48.512217401 + ], + [ + 8.8602872, + 48.512538001 + ], + [ + 8.8611469, + 48.512861601 + ], + [ + 8.8619939, + 48.513163301 + ], + [ + 8.8626016, + 48.513373401 + ], + [ + 8.8632131, + 48.513579301 + ], + [ + 8.8638203, + 48.513781901 + ], + [ + 8.8644291, + 48.513979701 + ], + [ + 8.8668906, + 48.514757801 + ], + [ + 8.8684251, + 48.515236701 + ], + [ + 8.869179, + 48.515475401 + ], + [ + 8.8699979, + 48.515733801 + ], + [ + 8.8706862, + 48.515958401 + ], + [ + 8.871411, + 48.516200201 + ], + [ + 8.8721632, + 48.516455101 + ], + [ + 8.8725337, + 48.516586301 + ], + [ + 8.8729017, + 48.516721001 + ], + [ + 8.8736388, + 48.516990501 + ], + [ + 8.8743892, + 48.517274601 + ], + [ + 8.8747574, + 48.517419601 + ], + [ + 8.8751228, + 48.517569001 + ], + [ + 8.8754951, + 48.517723401 + ], + [ + 8.8758639, + 48.517878901 + ], + [ + 8.8761845, + 48.518019001 + ], + [ + 8.876505, + 48.518159601 + ], + [ + 8.8771368, + 48.518450401 + ], + [ + 8.877758, + 48.518754801 + ], + [ + 8.8781155, + 48.518941601 + ], + [ + 8.8790366, + 48.519443101 + ], + [ + 8.879674, + 48.519806401 + ], + [ + 8.8803244, + 48.520190501 + ], + [ + 8.8809441, + 48.520578301 + ], + [ + 8.8812809, + 48.520799001 + ], + [ + 8.8816206, + 48.521022701 + ], + [ + 8.8822632, + 48.521471301 + ], + [ + 8.8827672, + 48.521837201 + ], + [ + 8.8832305, + 48.522195201 + ], + [ + 8.8835438, + 48.522440401 + ], + [ + 8.8838564, + 48.522690701 + ], + [ + 8.8844113, + 48.523158101 + ], + [ + 8.8846845, + 48.523392401 + ], + [ + 8.884954, + 48.523626401 + ], + [ + 8.8852458, + 48.523902601 + ], + [ + 8.8855324, + 48.524181501 + ], + [ + 8.8858057, + 48.524451201 + ], + [ + 8.8861093, + 48.524771801 + ], + [ + 8.8863701, + 48.525050301 + ], + [ + 8.886621, + 48.525332301 + ], + [ + 8.8871223, + 48.525911701 + ], + [ + 8.8872931, + 48.526117801 + ], + [ + 8.8874573, + 48.526324501 + ], + [ + 8.8877774, + 48.526743901 + ], + [ + 8.8880331, + 48.527083001 + ], + [ + 8.8884425, + 48.527680101 + ], + [ + 8.888738, + 48.528134101 + ], + [ + 8.8889236, + 48.528437401 + ], + [ + 8.8891065, + 48.528744701 + ], + [ + 8.8892311, + 48.528962601 + ], + [ + 8.8893511, + 48.529182401 + ], + [ + 8.8895849, + 48.529638501 + ], + [ + 8.8898319, + 48.530138801 + ], + [ + 8.8899369, + 48.530376101 + ], + [ + 8.8900719, + 48.530723201 + ], + [ + 8.8901557, + 48.530954901 + ], + [ + 8.8902356, + 48.531152601 + ], + [ + 8.8903693, + 48.531506501 + ], + [ + 8.890522, + 48.531915001 + ], + [ + 8.8906304, + 48.532254301 + ], + [ + 8.8907443, + 48.532635501 + ], + [ + 8.8908325, + 48.532935301 + ], + [ + 8.8910035, + 48.533617601 + ], + [ + 8.891056, + 48.533919101 + ], + [ + 8.8911188, + 48.534217901 + ], + [ + 8.8911561, + 48.534531401 + ], + [ + 8.8912008, + 48.534832501 + ], + [ + 8.891231, + 48.535105501 + ], + [ + 8.8912592, + 48.535355701 + ], + [ + 8.8912913, + 48.535662301 + ], + [ + 8.8913193, + 48.535959501 + ], + [ + 8.8913329, + 48.536144401 + ], + [ + 8.8913411, + 48.536329001 + ], + [ + 8.8913463, + 48.536680901 + ], + [ + 8.8913454, + 48.537032601 + ], + [ + 8.8913324, + 48.537367801 + ], + [ + 8.8913138, + 48.537700701 + ], + [ + 8.8912916, + 48.537991501 + ], + [ + 8.8912643, + 48.538281901 + ], + [ + 8.8912308, + 48.538565101 + ], + [ + 8.8911927, + 48.538847101 + ], + [ + 8.8911275, + 48.539289701 + ], + [ + 8.8910395, + 48.539783401 + ], + [ + 8.8909244, + 48.540284501 + ], + [ + 8.8907779, + 48.540866001 + ], + [ + 8.8906156, + 48.541446001 + ], + [ + 8.8904836, + 48.541914101 + ], + [ + 8.8903279, + 48.542459701 + ], + [ + 8.8901637, + 48.543003301 + ], + [ + 8.8899244, + 48.543784701 + ], + [ + 8.8897033, + 48.544567601 + ], + [ + 8.8895505, + 48.545155001 + ], + [ + 8.8894742, + 48.545456401 + ], + [ + 8.8894069, + 48.545758001 + ], + [ + 8.8893049, + 48.546323601 + ], + [ + 8.8892074, + 48.546890801 + ], + [ + 8.8891688, + 48.547131801 + ], + [ + 8.8891338, + 48.547374201 + ], + [ + 8.8891065, + 48.547613101 + ], + [ + 8.8890824, + 48.547853001 + ], + [ + 8.8890679, + 48.547974801 + ], + [ + 8.889058, + 48.548096401 + ], + [ + 8.8890393, + 48.548340501 + ], + [ + 8.8890243, + 48.548588301 + ], + [ + 8.8890137, + 48.548836401 + ], + [ + 8.8890037, + 48.548998801 + ], + [ + 8.8889885, + 48.549288001 + ], + [ + 8.8889855, + 48.549467101 + ], + [ + 8.8889855, + 48.549631401 + ], + [ + 8.8889883, + 48.549806901 + ], + [ + 8.8889949, + 48.550039701 + ], + [ + 8.8890051, + 48.550263201 + ], + [ + 8.8890178, + 48.550501901 + ], + [ + 8.8890351, + 48.550742601 + ], + [ + 8.889081, + 48.551176801 + ], + [ + 8.8891326, + 48.551612301 + ], + [ + 8.8892186, + 48.552265701 + ], + [ + 8.8893467, + 48.552915001 + ], + [ + 8.8894083, + 48.553182501 + ], + [ + 8.8894723, + 48.553450501 + ], + [ + 8.8896117, + 48.553998501 + ], + [ + 8.8896713, + 48.554195901 + ], + [ + 8.8898161, + 48.554650601 + ], + [ + 8.8899003, + 48.554901401 + ], + [ + 8.8899869, + 48.555152401 + ], + [ + 8.8900789, + 48.555403701 + ], + [ + 8.8901749, + 48.555654801 + ], + [ + 8.890274, + 48.555905201 + ], + [ + 8.8903793, + 48.556148901 + ], + [ + 8.8905488, + 48.556554001 + ], + [ + 8.8906364, + 48.556747401 + ], + [ + 8.8907307, + 48.556941101 + ], + [ + 8.8909255, + 48.557333601 + ], + [ + 8.8911116, + 48.557687001 + ], + [ + 8.8913148, + 48.558059401 + ], + [ + 8.8914204, + 48.558245801 + ], + [ + 8.8915314, + 48.558430501 + ], + [ + 8.8916991, + 48.558703301 + ], + [ + 8.891871, + 48.558974201 + ], + [ + 8.8920288, + 48.559222201 + ], + [ + 8.8921931, + 48.559465501 + ], + [ + 8.892482, + 48.559891901 + ], + [ + 8.8927939, + 48.560322301 + ], + [ + 8.8931123, + 48.560741601 + ], + [ + 8.8934323, + 48.561164601 + ], + [ + 8.8937891, + 48.561605301 + ], + [ + 8.8941399, + 48.562048801 + ], + [ + 8.8944959, + 48.562489501 + ], + [ + 8.8948595, + 48.562928301 + ], + [ + 8.8952684, + 48.563438201 + ], + [ + 8.8955703, + 48.563816201 + ], + [ + 8.8959185, + 48.564264201 + ], + [ + 8.8962604, + 48.564714701 + ], + [ + 8.8965515, + 48.565116601 + ], + [ + 8.8968758, + 48.565584801 + ], + [ + 8.8970888, + 48.565899001 + ], + [ + 8.8972613, + 48.566161201 + ], + [ + 8.897417, + 48.566407901 + ], + [ + 8.8976077, + 48.566722001 + ], + [ + 8.8977905, + 48.567038101 + ], + [ + 8.8979456, + 48.567324001 + ], + [ + 8.8980968, + 48.567609601 + ], + [ + 8.8983086, + 48.568032201 + ], + [ + 8.8984952, + 48.568430501 + ], + [ + 8.8986601, + 48.568808701 + ], + [ + 8.8988173, + 48.569186701 + ], + [ + 8.8989118, + 48.569440501 + ], + [ + 8.8989518, + 48.569550701 + ], + [ + 8.8990374, + 48.569790701 + ], + [ + 8.89907, + 48.569881701 + ], + [ + 8.8991398, + 48.570075001 + ], + [ + 8.8992162, + 48.570303601 + ], + [ + 8.899416, + 48.571000201 + ], + [ + 8.8995228, + 48.571398801 + ], + [ + 8.8996464, + 48.571942801 + ], + [ + 8.8997461, + 48.572484601 + ], + [ + 8.8998334, + 48.573099001 + ], + [ + 8.8998834, + 48.573535301 + ], + [ + 8.8999186, + 48.573969801 + ], + [ + 8.8999353, + 48.574330901 + ], + [ + 8.8999473, + 48.574692101 + ], + [ + 8.8999474, + 48.575058301 + ], + [ + 8.899939, + 48.575424201 + ], + [ + 8.8999315, + 48.575694201 + ], + [ + 8.8999179, + 48.575921001 + ], + [ + 8.8999038, + 48.576152601 + ], + [ + 8.8998846, + 48.576383901 + ], + [ + 8.8998518, + 48.576703001 + ], + [ + 8.899807, + 48.577095401 + ], + [ + 8.8997709, + 48.577360001 + ], + [ + 8.8997285, + 48.577667901 + ], + [ + 8.8996933, + 48.577893801 + ], + [ + 8.8996475, + 48.578213801 + ], + [ + 8.8994663, + 48.579270101 + ], + [ + 8.8993428, + 48.579989201 + ], + [ + 8.899177, + 48.580940301 + ], + [ + 8.8991108, + 48.581317501 + ], + [ + 8.8989821, + 48.582104501 + ], + [ + 8.8988252, + 48.583021001 + ], + [ + 8.8986173, + 48.584224901 + ], + [ + 8.8984014, + 48.585463801 + ], + [ + 8.8982026, + 48.586639801 + ], + [ + 8.8981023, + 48.587244301 + ], + [ + 8.8980433, + 48.587559201 + ], + [ + 8.8979936, + 48.587824601 + ], + [ + 8.8979668, + 48.587992701 + ], + [ + 8.8978985, + 48.588415701 + ], + [ + 8.8978321, + 48.588830001 + ], + [ + 8.897763, + 48.589246901 + ], + [ + 8.8976933, + 48.589655401 + ], + [ + 8.8976222, + 48.590045201 + ], + [ + 8.8975538, + 48.590456401 + ], + [ + 8.8974747, + 48.590930101 + ], + [ + 8.8973855, + 48.591395701 + ], + [ + 8.8971743, + 48.592674401 + ], + [ + 8.8969798, + 48.593814201 + ], + [ + 8.896949343, + 48.593994832 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.49382644289274,8.832596081643583,48.593994832271896,8.896949343043396", + "point": "48.49382644289274,8.832596081643583", + "startLcPosition": "27", + "impact": { + "lower": "Sch\u00f6nbuchtunnel", + "upper": "Neckarblick", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Neckarblick - Sch\u00f6nbuchtunnel", + "coordinate": { + "lat": 48.49382644289274, + "long": 8.832596081643583 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 6.1 km hinter Neckarblick und 1.5 km vor Sch\u00f6nbuchtunnel", + "", + "L\u00e4nge: 13.27 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.832596082, + 48.493826443 + ], + [ + 8.8326378, + 48.493862501 + ], + [ + 8.8332107, + 48.494377501 + ], + [ + 8.833769, + 48.494897001 + ], + [ + 8.8343192, + 48.495415401 + ], + [ + 8.8348752, + 48.495949501 + ], + [ + 8.8362693, + 48.497310001 + ], + [ + 8.8381419, + 48.499120401 + ], + [ + 8.838767, + 48.499705601 + ], + [ + 8.8390793, + 48.499987201 + ], + [ + 8.83943, + 48.500301101 + ], + [ + 8.8397614, + 48.500599701 + ], + [ + 8.8400995, + 48.500899701 + ], + [ + 8.840558, + 48.501288801 + ], + [ + 8.8410196, + 48.501674201 + ], + [ + 8.8414937, + 48.502054001 + ], + [ + 8.8419736, + 48.502440501 + ], + [ + 8.8420759, + 48.502520701 + ], + [ + 8.842559, + 48.502899501 + ], + [ + 8.8432349, + 48.503405701 + ], + [ + 8.8438632, + 48.503859001 + ], + [ + 8.844417, + 48.504262901 + ], + [ + 8.8445152, + 48.504333101 + ], + [ + 8.8451867, + 48.504796001 + ], + [ + 8.8455235, + 48.505021401 + ], + [ + 8.8458648, + 48.505244701 + ], + [ + 8.8462336, + 48.505492301 + ], + [ + 8.8466216, + 48.505745901 + ], + [ + 8.847016, + 48.505999101 + ], + [ + 8.8473, + 48.506172901 + ], + [ + 8.8477381, + 48.506441801 + ], + [ + 8.8483518, + 48.506816801 + ], + [ + 8.8486776, + 48.507012201 + ], + [ + 8.8490071, + 48.507205401 + ], + [ + 8.8492515, + 48.507348701 + ], + [ + 8.8494994, + 48.507490701 + ], + [ + 8.8497478, + 48.507633001 + ], + [ + 8.8499963, + 48.507772501 + ], + [ + 8.8505371, + 48.508075001 + ], + [ + 8.8508112, + 48.508227301 + ], + [ + 8.851088, + 48.508378801 + ], + [ + 8.8514714, + 48.508581901 + ], + [ + 8.8518584, + 48.508782901 + ], + [ + 8.8522478, + 48.508982101 + ], + [ + 8.8526402, + 48.509179401 + ], + [ + 8.8530687, + 48.509396301 + ], + [ + 8.8534976, + 48.509611401 + ], + [ + 8.8543612, + 48.510028401 + ], + [ + 8.8553146, + 48.510472501 + ], + [ + 8.855779, + 48.510683401 + ], + [ + 8.8562472, + 48.510891401 + ], + [ + 8.8568189, + 48.511141901 + ], + [ + 8.8574257, + 48.511396701 + ], + [ + 8.8580074, + 48.511640301 + ], + [ + 8.8586023, + 48.511886101 + ], + [ + 8.8590213, + 48.512053701 + ], + [ + 8.8594447, + 48.512217401 + ], + [ + 8.8602872, + 48.512538001 + ], + [ + 8.8611469, + 48.512861601 + ], + [ + 8.8619939, + 48.513163301 + ], + [ + 8.8626016, + 48.513373401 + ], + [ + 8.8632131, + 48.513579301 + ], + [ + 8.8638203, + 48.513781901 + ], + [ + 8.8644291, + 48.513979701 + ], + [ + 8.8668906, + 48.514757801 + ], + [ + 8.8684251, + 48.515236701 + ], + [ + 8.869179, + 48.515475401 + ], + [ + 8.8699979, + 48.515733801 + ], + [ + 8.8706862, + 48.515958401 + ], + [ + 8.871411, + 48.516200201 + ], + [ + 8.8721632, + 48.516455101 + ], + [ + 8.8725337, + 48.516586301 + ], + [ + 8.8729017, + 48.516721001 + ], + [ + 8.8736388, + 48.516990501 + ], + [ + 8.8743892, + 48.517274601 + ], + [ + 8.8747574, + 48.517419601 + ], + [ + 8.8751228, + 48.517569001 + ], + [ + 8.8754951, + 48.517723401 + ], + [ + 8.8758639, + 48.517878901 + ], + [ + 8.8761845, + 48.518019001 + ], + [ + 8.876505, + 48.518159601 + ], + [ + 8.8771368, + 48.518450401 + ], + [ + 8.877758, + 48.518754801 + ], + [ + 8.8781155, + 48.518941601 + ], + [ + 8.8790366, + 48.519443101 + ], + [ + 8.879674, + 48.519806401 + ], + [ + 8.8803244, + 48.520190501 + ], + [ + 8.8809441, + 48.520578301 + ], + [ + 8.8812809, + 48.520799001 + ], + [ + 8.8816206, + 48.521022701 + ], + [ + 8.8822632, + 48.521471301 + ], + [ + 8.8827672, + 48.521837201 + ], + [ + 8.8832305, + 48.522195201 + ], + [ + 8.8835438, + 48.522440401 + ], + [ + 8.8838564, + 48.522690701 + ], + [ + 8.8844113, + 48.523158101 + ], + [ + 8.8846845, + 48.523392401 + ], + [ + 8.884954, + 48.523626401 + ], + [ + 8.8852458, + 48.523902601 + ], + [ + 8.8855324, + 48.524181501 + ], + [ + 8.8858057, + 48.524451201 + ], + [ + 8.8861093, + 48.524771801 + ], + [ + 8.8863701, + 48.525050301 + ], + [ + 8.886621, + 48.525332301 + ], + [ + 8.8871223, + 48.525911701 + ], + [ + 8.8872931, + 48.526117801 + ], + [ + 8.8874573, + 48.526324501 + ], + [ + 8.8877774, + 48.526743901 + ], + [ + 8.8880331, + 48.527083001 + ], + [ + 8.8884425, + 48.527680101 + ], + [ + 8.888738, + 48.528134101 + ], + [ + 8.8889236, + 48.528437401 + ], + [ + 8.8891065, + 48.528744701 + ], + [ + 8.8892311, + 48.528962601 + ], + [ + 8.8893511, + 48.529182401 + ], + [ + 8.8895849, + 48.529638501 + ], + [ + 8.8898319, + 48.530138801 + ], + [ + 8.8899369, + 48.530376101 + ], + [ + 8.8900719, + 48.530723201 + ], + [ + 8.8901557, + 48.530954901 + ], + [ + 8.8902356, + 48.531152601 + ], + [ + 8.8903693, + 48.531506501 + ], + [ + 8.890522, + 48.531915001 + ], + [ + 8.8906304, + 48.532254301 + ], + [ + 8.8907443, + 48.532635501 + ], + [ + 8.8908325, + 48.532935301 + ], + [ + 8.8910035, + 48.533617601 + ], + [ + 8.891056, + 48.533919101 + ], + [ + 8.8911188, + 48.534217901 + ], + [ + 8.8911561, + 48.534531401 + ], + [ + 8.8912008, + 48.534832501 + ], + [ + 8.891231, + 48.535105501 + ], + [ + 8.8912592, + 48.535355701 + ], + [ + 8.8912913, + 48.535662301 + ], + [ + 8.8913193, + 48.535959501 + ], + [ + 8.8913329, + 48.536144401 + ], + [ + 8.8913411, + 48.536329001 + ], + [ + 8.8913463, + 48.536680901 + ], + [ + 8.8913454, + 48.537032601 + ], + [ + 8.8913324, + 48.537367801 + ], + [ + 8.8913138, + 48.537700701 + ], + [ + 8.8912916, + 48.537991501 + ], + [ + 8.8912643, + 48.538281901 + ], + [ + 8.8912308, + 48.538565101 + ], + [ + 8.8911927, + 48.538847101 + ], + [ + 8.8911275, + 48.539289701 + ], + [ + 8.8910395, + 48.539783401 + ], + [ + 8.8909244, + 48.540284501 + ], + [ + 8.8907779, + 48.540866001 + ], + [ + 8.8906156, + 48.541446001 + ], + [ + 8.8904836, + 48.541914101 + ], + [ + 8.8903279, + 48.542459701 + ], + [ + 8.8901637, + 48.543003301 + ], + [ + 8.8899244, + 48.543784701 + ], + [ + 8.8897033, + 48.544567601 + ], + [ + 8.8895505, + 48.545155001 + ], + [ + 8.8894742, + 48.545456401 + ], + [ + 8.8894069, + 48.545758001 + ], + [ + 8.8893049, + 48.546323601 + ], + [ + 8.8892074, + 48.546890801 + ], + [ + 8.8891688, + 48.547131801 + ], + [ + 8.8891338, + 48.547374201 + ], + [ + 8.8891065, + 48.547613101 + ], + [ + 8.8890824, + 48.547853001 + ], + [ + 8.8890679, + 48.547974801 + ], + [ + 8.889058, + 48.548096401 + ], + [ + 8.8890393, + 48.548340501 + ], + [ + 8.8890243, + 48.548588301 + ], + [ + 8.8890137, + 48.548836401 + ], + [ + 8.8890037, + 48.548998801 + ], + [ + 8.8889885, + 48.549288001 + ], + [ + 8.8889855, + 48.549467101 + ], + [ + 8.8889855, + 48.549631401 + ], + [ + 8.8889883, + 48.549806901 + ], + [ + 8.8889949, + 48.550039701 + ], + [ + 8.8890051, + 48.550263201 + ], + [ + 8.8890178, + 48.550501901 + ], + [ + 8.8890351, + 48.550742601 + ], + [ + 8.889081, + 48.551176801 + ], + [ + 8.8891326, + 48.551612301 + ], + [ + 8.8892186, + 48.552265701 + ], + [ + 8.8893467, + 48.552915001 + ], + [ + 8.8894083, + 48.553182501 + ], + [ + 8.8894723, + 48.553450501 + ], + [ + 8.8896117, + 48.553998501 + ], + [ + 8.8896713, + 48.554195901 + ], + [ + 8.8898161, + 48.554650601 + ], + [ + 8.8899003, + 48.554901401 + ], + [ + 8.8899869, + 48.555152401 + ], + [ + 8.8900789, + 48.555403701 + ], + [ + 8.8901749, + 48.555654801 + ], + [ + 8.890274, + 48.555905201 + ], + [ + 8.8903793, + 48.556148901 + ], + [ + 8.8905488, + 48.556554001 + ], + [ + 8.8906364, + 48.556747401 + ], + [ + 8.8907307, + 48.556941101 + ], + [ + 8.8909255, + 48.557333601 + ], + [ + 8.8911116, + 48.557687001 + ], + [ + 8.8913148, + 48.558059401 + ], + [ + 8.8914204, + 48.558245801 + ], + [ + 8.8915314, + 48.558430501 + ], + [ + 8.8916991, + 48.558703301 + ], + [ + 8.891871, + 48.558974201 + ], + [ + 8.8920288, + 48.559222201 + ], + [ + 8.8921931, + 48.559465501 + ], + [ + 8.892482, + 48.559891901 + ], + [ + 8.8927939, + 48.560322301 + ], + [ + 8.8931123, + 48.560741601 + ], + [ + 8.8934323, + 48.561164601 + ], + [ + 8.8937891, + 48.561605301 + ], + [ + 8.8941399, + 48.562048801 + ], + [ + 8.8944959, + 48.562489501 + ], + [ + 8.8948595, + 48.562928301 + ], + [ + 8.8952684, + 48.563438201 + ], + [ + 8.8955703, + 48.563816201 + ], + [ + 8.8959185, + 48.564264201 + ], + [ + 8.8962604, + 48.564714701 + ], + [ + 8.8965515, + 48.565116601 + ], + [ + 8.8968758, + 48.565584801 + ], + [ + 8.8970888, + 48.565899001 + ], + [ + 8.8972613, + 48.566161201 + ], + [ + 8.897417, + 48.566407901 + ], + [ + 8.8976077, + 48.566722001 + ], + [ + 8.8977905, + 48.567038101 + ], + [ + 8.8979456, + 48.567324001 + ], + [ + 8.8980968, + 48.567609601 + ], + [ + 8.8983086, + 48.568032201 + ], + [ + 8.8984952, + 48.568430501 + ], + [ + 8.8986601, + 48.568808701 + ], + [ + 8.8988173, + 48.569186701 + ], + [ + 8.8989118, + 48.569440501 + ], + [ + 8.8989518, + 48.569550701 + ], + [ + 8.8990374, + 48.569790701 + ], + [ + 8.89907, + 48.569881701 + ], + [ + 8.8991398, + 48.570075001 + ], + [ + 8.8992162, + 48.570303601 + ], + [ + 8.899416, + 48.571000201 + ], + [ + 8.8995228, + 48.571398801 + ], + [ + 8.8996464, + 48.571942801 + ], + [ + 8.8997461, + 48.572484601 + ], + [ + 8.8998334, + 48.573099001 + ], + [ + 8.8998834, + 48.573535301 + ], + [ + 8.8999186, + 48.573969801 + ], + [ + 8.8999353, + 48.574330901 + ], + [ + 8.8999473, + 48.574692101 + ], + [ + 8.8999474, + 48.575058301 + ], + [ + 8.899939, + 48.575424201 + ], + [ + 8.8999315, + 48.575694201 + ], + [ + 8.8999179, + 48.575921001 + ], + [ + 8.8999038, + 48.576152601 + ], + [ + 8.8998846, + 48.576383901 + ], + [ + 8.8998518, + 48.576703001 + ], + [ + 8.899807, + 48.577095401 + ], + [ + 8.8997709, + 48.577360001 + ], + [ + 8.8997285, + 48.577667901 + ], + [ + 8.8996933, + 48.577893801 + ], + [ + 8.8996475, + 48.578213801 + ], + [ + 8.8994663, + 48.579270101 + ], + [ + 8.8993428, + 48.579989201 + ], + [ + 8.899177, + 48.580940301 + ], + [ + 8.8991108, + 48.581317501 + ], + [ + 8.8989821, + 48.582104501 + ], + [ + 8.8988252, + 48.583021001 + ], + [ + 8.8986173, + 48.584224901 + ], + [ + 8.8984014, + 48.585463801 + ], + [ + 8.8982026, + 48.586639801 + ], + [ + 8.8981023, + 48.587244301 + ], + [ + 8.8980433, + 48.587559201 + ], + [ + 8.8979936, + 48.587824601 + ], + [ + 8.8979668, + 48.587992701 + ], + [ + 8.8978985, + 48.588415701 + ], + [ + 8.8978321, + 48.588830001 + ], + [ + 8.897763, + 48.589246901 + ], + [ + 8.8976933, + 48.589655401 + ], + [ + 8.8976222, + 48.590045201 + ], + [ + 8.8975538, + 48.590456401 + ], + [ + 8.8974747, + 48.590930101 + ], + [ + 8.8973855, + 48.591395701 + ], + [ + 8.8971743, + 48.592674401 + ], + [ + 8.8969798, + 48.593814201 + ], + [ + 8.896949343, + 48.593994832 + ] + ] + } + }, + { + "identifier": "2026-012047--vi-bs.2026-04-21_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.51765129325031,8.87532122827278,48.519217775984856,8.878622743980573", + "point": "48.51765129325031,8.87532122827278", + "startLcPosition": "28", + "impact": { + "lower": "Ziegler", + "upper": "Rottenburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Rottenburg - Ziegler", + "coordinate": { + "lat": 48.51765129325031, + "long": 8.87532122827278 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 08:00 bis 18:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 3.0 km hinter AS Rottenburg und 0.8 km vor Ziegler", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A81 von Rottenburg (AS) nach Ziegler (Rastplatz) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.875321228, + 48.517651293 + ], + [ + 8.8754951, + 48.517723401 + ], + [ + 8.8758639, + 48.517878901 + ], + [ + 8.8761845, + 48.518019001 + ], + [ + 8.876505, + 48.518159601 + ], + [ + 8.8771368, + 48.518450401 + ], + [ + 8.877758, + 48.518754801 + ], + [ + 8.8781155, + 48.518941601 + ], + [ + 8.878622744, + 48.519217776 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.593963544867165,8.896770109776583,48.49388520273287,8.832436629920306", + "point": "48.593963544867165,8.896770109776583", + "startLcPosition": "32", + "impact": { + "lower": "Neckarblick", + "upper": "Sch\u00f6nbuchtunnel", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Sch\u00f6nbuchtunnel - Neckarblick", + "coordinate": { + "lat": 48.593963544867165, + "long": 8.896770109776583 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 1.5 km hinter Sch\u00f6nbuchtunnel und 6.1 km vor Neckarblick", + "", + "L\u00e4nge: 13.27 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.89677011, + 48.593963545 + ], + [ + 8.8967988, + 48.593790701 + ], + [ + 8.8969959, + 48.592644301 + ], + [ + 8.8972081, + 48.591368001 + ], + [ + 8.897293, + 48.590910601 + ], + [ + 8.8973721, + 48.590452401 + ], + [ + 8.897517, + 48.589612801 + ], + [ + 8.897586, + 48.589213201 + ], + [ + 8.8976558, + 48.588806501 + ], + [ + 8.8977228, + 48.588401901 + ], + [ + 8.8977879, + 48.587992901 + ], + [ + 8.8978165, + 48.587826701 + ], + [ + 8.8978744, + 48.587518401 + ], + [ + 8.8979293, + 48.587211501 + ], + [ + 8.8980126, + 48.586698801 + ], + [ + 8.8980963, + 48.586198801 + ], + [ + 8.8981956, + 48.585619101 + ], + [ + 8.8983639, + 48.584633001 + ], + [ + 8.8985315, + 48.583683701 + ], + [ + 8.8986339, + 48.583108201 + ], + [ + 8.8989252, + 48.581334601 + ], + [ + 8.8989956, + 48.580959201 + ], + [ + 8.8990287, + 48.580790301 + ], + [ + 8.8991643, + 48.579973301 + ], + [ + 8.8992881, + 48.579260801 + ], + [ + 8.8993754, + 48.578772301 + ], + [ + 8.8994695, + 48.578200801 + ], + [ + 8.8995508, + 48.577651501 + ], + [ + 8.8995942, + 48.577353301 + ], + [ + 8.899628, + 48.577122101 + ], + [ + 8.8996769, + 48.576700201 + ], + [ + 8.899708, + 48.576382601 + ], + [ + 8.8997274, + 48.576152101 + ], + [ + 8.8997414, + 48.575921901 + ], + [ + 8.8997526, + 48.575691801 + ], + [ + 8.8997638, + 48.575422701 + ], + [ + 8.8997738, + 48.575057301 + ], + [ + 8.8997708, + 48.574692501 + ], + [ + 8.8997604, + 48.574337001 + ], + [ + 8.8997422, + 48.573981401 + ], + [ + 8.8997065, + 48.573543701 + ], + [ + 8.8996597, + 48.573111801 + ], + [ + 8.8995721, + 48.572501301 + ], + [ + 8.8994688, + 48.571956301 + ], + [ + 8.8993743, + 48.571522301 + ], + [ + 8.8992716, + 48.571120601 + ], + [ + 8.8990423, + 48.570325301 + ], + [ + 8.8989668, + 48.570097601 + ], + [ + 8.8988969, + 48.569896401 + ], + [ + 8.898867, + 48.569811601 + ], + [ + 8.8987822, + 48.569573201 + ], + [ + 8.89865, + 48.569222801 + ], + [ + 8.8984916, + 48.568844001 + ], + [ + 8.8983271, + 48.568465101 + ], + [ + 8.8981394, + 48.568067901 + ], + [ + 8.8979282, + 48.567647601 + ], + [ + 8.8977798, + 48.567366501 + ], + [ + 8.8976271, + 48.567086101 + ], + [ + 8.8974416, + 48.566768801 + ], + [ + 8.8972515, + 48.566452101 + ], + [ + 8.8970984, + 48.566208301 + ], + [ + 8.8969373, + 48.565961701 + ], + [ + 8.8967265, + 48.565647001 + ], + [ + 8.8963867, + 48.565170801 + ], + [ + 8.896097, + 48.564772801 + ], + [ + 8.8957575, + 48.564325001 + ], + [ + 8.8954113, + 48.563880001 + ], + [ + 8.8950622, + 48.563436901 + ], + [ + 8.8947083, + 48.562994001 + ], + [ + 8.8943416, + 48.562552201 + ], + [ + 8.8939847, + 48.562108401 + ], + [ + 8.8936287, + 48.561665801 + ], + [ + 8.8932698, + 48.561222101 + ], + [ + 8.8929422, + 48.560798301 + ], + [ + 8.892625, + 48.560375301 + ], + [ + 8.8923151, + 48.559944201 + ], + [ + 8.8920251, + 48.559521001 + ], + [ + 8.8918609, + 48.559274101 + ], + [ + 8.8917052, + 48.559027301 + ], + [ + 8.8915357, + 48.558754601 + ], + [ + 8.8913684, + 48.558482001 + ], + [ + 8.8912561, + 48.558295701 + ], + [ + 8.8911487, + 48.558108901 + ], + [ + 8.8909451, + 48.557735401 + ], + [ + 8.8907634, + 48.557380701 + ], + [ + 8.8905582, + 48.556976301 + ], + [ + 8.8904669, + 48.556784801 + ], + [ + 8.8903801, + 48.556594101 + ], + [ + 8.8902053, + 48.556183301 + ], + [ + 8.8900966, + 48.555928701 + ], + [ + 8.8899968, + 48.555683901 + ], + [ + 8.8899012, + 48.555433201 + ], + [ + 8.88981, + 48.555182701 + ], + [ + 8.8897229, + 48.554928701 + ], + [ + 8.8896416, + 48.554673601 + ], + [ + 8.8894923, + 48.554211701 + ], + [ + 8.8894389, + 48.554019001 + ], + [ + 8.8892954, + 48.553472501 + ], + [ + 8.889231, + 48.553204701 + ], + [ + 8.8891694, + 48.552938301 + ], + [ + 8.8890328, + 48.552277401 + ], + [ + 8.8889501, + 48.551622301 + ], + [ + 8.8889014, + 48.551184301 + ], + [ + 8.8888569, + 48.550747001 + ], + [ + 8.8888379, + 48.550507101 + ], + [ + 8.8888242, + 48.550267401 + ], + [ + 8.8888139, + 48.550045101 + ], + [ + 8.8888085, + 48.549901301 + ], + [ + 8.8888046, + 48.549743501 + ], + [ + 8.8888045, + 48.549510601 + ], + [ + 8.88881, + 48.549265801 + ], + [ + 8.8888201, + 48.549052301 + ], + [ + 8.8888301, + 48.548822101 + ], + [ + 8.8888414, + 48.548577601 + ], + [ + 8.8888568, + 48.548332801 + ], + [ + 8.888873, + 48.548088401 + ], + [ + 8.8888826, + 48.547967301 + ], + [ + 8.8888943, + 48.547846001 + ], + [ + 8.8889228, + 48.547606101 + ], + [ + 8.8889543, + 48.547365701 + ], + [ + 8.8889891, + 48.547120001 + ], + [ + 8.8890273, + 48.546875001 + ], + [ + 8.889125, + 48.546305201 + ], + [ + 8.8892265, + 48.545738801 + ], + [ + 8.8892965, + 48.545436001 + ], + [ + 8.8893716, + 48.545133301 + ], + [ + 8.8895263, + 48.544542301 + ], + [ + 8.8897524, + 48.543756901 + ], + [ + 8.889989, + 48.542973401 + ], + [ + 8.8901537, + 48.542432801 + ], + [ + 8.8903045, + 48.541891301 + ], + [ + 8.8904371, + 48.541427901 + ], + [ + 8.8905981, + 48.540843801 + ], + [ + 8.8907496, + 48.540252001 + ], + [ + 8.8908571, + 48.539762401 + ], + [ + 8.8909458, + 48.539273801 + ], + [ + 8.8910126, + 48.538836001 + ], + [ + 8.8910494, + 48.538556101 + ], + [ + 8.8910819, + 48.538278001 + ], + [ + 8.8911109, + 48.537988401 + ], + [ + 8.8911335, + 48.537697801 + ], + [ + 8.891151, + 48.537366101 + ], + [ + 8.8911655, + 48.537034301 + ], + [ + 8.8911663, + 48.536684001 + ], + [ + 8.8911604, + 48.536333701 + ], + [ + 8.8911534, + 48.536151301 + ], + [ + 8.8911428, + 48.535968901 + ], + [ + 8.8911134, + 48.535675601 + ], + [ + 8.8910785, + 48.535382101 + ], + [ + 8.8910494, + 48.535117901 + ], + [ + 8.8910122, + 48.534812901 + ], + [ + 8.89097, + 48.534516601 + ], + [ + 8.8909221, + 48.534220201 + ], + [ + 8.8908654, + 48.533922601 + ], + [ + 8.8908044, + 48.533625001 + ], + [ + 8.8906338, + 48.532883801 + ], + [ + 8.8905546, + 48.532596601 + ], + [ + 8.8904553, + 48.532277501 + ], + [ + 8.8903491, + 48.531946301 + ], + [ + 8.8902015, + 48.531540801 + ], + [ + 8.890064, + 48.531174701 + ], + [ + 8.889986, + 48.530979701 + ], + [ + 8.8899118, + 48.530785201 + ], + [ + 8.8897644, + 48.530411601 + ], + [ + 8.8895923, + 48.530034801 + ], + [ + 8.8894056, + 48.529660201 + ], + [ + 8.8891773, + 48.529218801 + ], + [ + 8.8890582, + 48.529001001 + ], + [ + 8.8889356, + 48.528783901 + ], + [ + 8.8887534, + 48.528479201 + ], + [ + 8.8885083, + 48.528089701 + ], + [ + 8.8882778, + 48.527725201 + ], + [ + 8.8878669, + 48.527126001 + ], + [ + 8.8875672, + 48.526715501 + ], + [ + 8.8872974, + 48.526373701 + ], + [ + 8.8871378, + 48.526168401 + ], + [ + 8.8869703, + 48.525965901 + ], + [ + 8.8864725, + 48.525389701 + ], + [ + 8.8862186, + 48.525107001 + ], + [ + 8.8859545, + 48.524821801 + ], + [ + 8.8853835, + 48.524241801 + ], + [ + 8.8851006, + 48.523968001 + ], + [ + 8.8848091, + 48.523696601 + ], + [ + 8.8845456, + 48.523460201 + ], + [ + 8.8842782, + 48.523225801 + ], + [ + 8.8837752, + 48.522791301 + ], + [ + 8.8834098, + 48.522503201 + ], + [ + 8.8831112, + 48.522266601 + ], + [ + 8.8826339, + 48.521902801 + ], + [ + 8.8821428, + 48.521543901 + ], + [ + 8.8815046, + 48.521096601 + ], + [ + 8.8811788, + 48.520881101 + ], + [ + 8.8808507, + 48.520670501 + ], + [ + 8.8802131, + 48.520268701 + ], + [ + 8.8795742, + 48.519889601 + ], + [ + 8.8789274, + 48.519520501 + ], + [ + 8.8782599, + 48.519153301 + ], + [ + 8.8776506, + 48.518836701 + ], + [ + 8.8770361, + 48.518535701 + ], + [ + 8.876412, + 48.518250901 + ], + [ + 8.8760973, + 48.518111601 + ], + [ + 8.87578, + 48.517973601 + ], + [ + 8.875411, + 48.517817701 + ], + [ + 8.8750399, + 48.517663701 + ], + [ + 8.8746775, + 48.517518301 + ], + [ + 8.8743106, + 48.517374301 + ], + [ + 8.8735651, + 48.517089001 + ], + [ + 8.8728284, + 48.516819501 + ], + [ + 8.8724578, + 48.516683901 + ], + [ + 8.8720822, + 48.516549601 + ], + [ + 8.8713451, + 48.516300701 + ], + [ + 8.8706183, + 48.516060901 + ], + [ + 8.8699234, + 48.515833801 + ], + [ + 8.8691088, + 48.515575301 + ], + [ + 8.8683482, + 48.515335901 + ], + [ + 8.8668137, + 48.514855501 + ], + [ + 8.8643637, + 48.514081201 + ], + [ + 8.863751, + 48.513882701 + ], + [ + 8.8631465, + 48.513681201 + ], + [ + 8.8625349, + 48.513475301 + ], + [ + 8.8619259, + 48.513265901 + ], + [ + 8.8610709, + 48.512960801 + ], + [ + 8.8602158, + 48.512638001 + ], + [ + 8.8593707, + 48.512316101 + ], + [ + 8.8589463, + 48.512153001 + ], + [ + 8.8585254, + 48.511985901 + ], + [ + 8.8579364, + 48.511742201 + ], + [ + 8.8573366, + 48.511491901 + ], + [ + 8.8567449, + 48.511241501 + ], + [ + 8.8561548, + 48.510986201 + ], + [ + 8.855683, + 48.510774101 + ], + [ + 8.8552123, + 48.510558901 + ], + [ + 8.8542682, + 48.510121601 + ], + [ + 8.8534097, + 48.509708301 + ], + [ + 8.8529829, + 48.509494101 + ], + [ + 8.8525588, + 48.509276901 + ], + [ + 8.8521618, + 48.509078001 + ], + [ + 8.8517682, + 48.508876601 + ], + [ + 8.851379, + 48.508673701 + ], + [ + 8.8509915, + 48.508468801 + ], + [ + 8.8507124, + 48.508315201 + ], + [ + 8.8504368, + 48.508161601 + ], + [ + 8.8498949, + 48.507862701 + ], + [ + 8.8496415, + 48.507719801 + ], + [ + 8.8493903, + 48.507575301 + ], + [ + 8.8491396, + 48.507431501 + ], + [ + 8.8488915, + 48.507286101 + ], + [ + 8.8485647, + 48.507095201 + ], + [ + 8.8482409, + 48.506902201 + ], + [ + 8.8476117, + 48.506522401 + ], + [ + 8.8471896, + 48.506261101 + ], + [ + 8.8467463, + 48.505980001 + ], + [ + 8.8464317, + 48.505781401 + ], + [ + 8.8461022, + 48.505564601 + ], + [ + 8.845744, + 48.505323801 + ], + [ + 8.8454074, + 48.505102301 + ], + [ + 8.8450741, + 48.504877601 + ], + [ + 8.8443994, + 48.504413301 + ], + [ + 8.8436797, + 48.503900001 + ], + [ + 8.8431119, + 48.503481201 + ], + [ + 8.8424286, + 48.502963901 + ], + [ + 8.8418456, + 48.502509701 + ], + [ + 8.8416938, + 48.502385901 + ], + [ + 8.8413605, + 48.502122201 + ], + [ + 8.8408991, + 48.501749001 + ], + [ + 8.8404305, + 48.501362001 + ], + [ + 8.8399696, + 48.500972001 + ], + [ + 8.8397532, + 48.500783701 + ], + [ + 8.8396254, + 48.500676101 + ], + [ + 8.8392925, + 48.500385001 + ], + [ + 8.8389319, + 48.500060301 + ], + [ + 8.8385898, + 48.499749801 + ], + [ + 8.8372371, + 48.498528101 + ], + [ + 8.8369016, + 48.498186701 + ], + [ + 8.8364346, + 48.497689201 + ], + [ + 8.835969, + 48.497222101 + ], + [ + 8.8347211, + 48.496014001 + ], + [ + 8.8341587, + 48.495470901 + ], + [ + 8.8336109, + 48.494959601 + ], + [ + 8.8330554, + 48.494441201 + ], + [ + 8.8324907, + 48.493932001 + ], + [ + 8.83243663, + 48.493885203 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.593963544867165,8.896770109776583,48.49388520273287,8.832436629920306", + "point": "48.593963544867165,8.896770109776583", + "startLcPosition": "32", + "impact": { + "lower": "Neckarblick", + "upper": "Sch\u00f6nbuchtunnel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Sch\u00f6nbuchtunnel - Neckarblick", + "coordinate": { + "lat": 48.593963544867165, + "long": 8.896770109776583 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 1.5 km hinter Sch\u00f6nbuchtunnel und 6.1 km vor Neckarblick", + "", + "L\u00e4nge: 13.27 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.89677011, + 48.593963545 + ], + [ + 8.8967988, + 48.593790701 + ], + [ + 8.8969959, + 48.592644301 + ], + [ + 8.8972081, + 48.591368001 + ], + [ + 8.897293, + 48.590910601 + ], + [ + 8.8973721, + 48.590452401 + ], + [ + 8.897517, + 48.589612801 + ], + [ + 8.897586, + 48.589213201 + ], + [ + 8.8976558, + 48.588806501 + ], + [ + 8.8977228, + 48.588401901 + ], + [ + 8.8977879, + 48.587992901 + ], + [ + 8.8978165, + 48.587826701 + ], + [ + 8.8978744, + 48.587518401 + ], + [ + 8.8979293, + 48.587211501 + ], + [ + 8.8980126, + 48.586698801 + ], + [ + 8.8980963, + 48.586198801 + ], + [ + 8.8981956, + 48.585619101 + ], + [ + 8.8983639, + 48.584633001 + ], + [ + 8.8985315, + 48.583683701 + ], + [ + 8.8986339, + 48.583108201 + ], + [ + 8.8989252, + 48.581334601 + ], + [ + 8.8989956, + 48.580959201 + ], + [ + 8.8990287, + 48.580790301 + ], + [ + 8.8991643, + 48.579973301 + ], + [ + 8.8992881, + 48.579260801 + ], + [ + 8.8993754, + 48.578772301 + ], + [ + 8.8994695, + 48.578200801 + ], + [ + 8.8995508, + 48.577651501 + ], + [ + 8.8995942, + 48.577353301 + ], + [ + 8.899628, + 48.577122101 + ], + [ + 8.8996769, + 48.576700201 + ], + [ + 8.899708, + 48.576382601 + ], + [ + 8.8997274, + 48.576152101 + ], + [ + 8.8997414, + 48.575921901 + ], + [ + 8.8997526, + 48.575691801 + ], + [ + 8.8997638, + 48.575422701 + ], + [ + 8.8997738, + 48.575057301 + ], + [ + 8.8997708, + 48.574692501 + ], + [ + 8.8997604, + 48.574337001 + ], + [ + 8.8997422, + 48.573981401 + ], + [ + 8.8997065, + 48.573543701 + ], + [ + 8.8996597, + 48.573111801 + ], + [ + 8.8995721, + 48.572501301 + ], + [ + 8.8994688, + 48.571956301 + ], + [ + 8.8993743, + 48.571522301 + ], + [ + 8.8992716, + 48.571120601 + ], + [ + 8.8990423, + 48.570325301 + ], + [ + 8.8989668, + 48.570097601 + ], + [ + 8.8988969, + 48.569896401 + ], + [ + 8.898867, + 48.569811601 + ], + [ + 8.8987822, + 48.569573201 + ], + [ + 8.89865, + 48.569222801 + ], + [ + 8.8984916, + 48.568844001 + ], + [ + 8.8983271, + 48.568465101 + ], + [ + 8.8981394, + 48.568067901 + ], + [ + 8.8979282, + 48.567647601 + ], + [ + 8.8977798, + 48.567366501 + ], + [ + 8.8976271, + 48.567086101 + ], + [ + 8.8974416, + 48.566768801 + ], + [ + 8.8972515, + 48.566452101 + ], + [ + 8.8970984, + 48.566208301 + ], + [ + 8.8969373, + 48.565961701 + ], + [ + 8.8967265, + 48.565647001 + ], + [ + 8.8963867, + 48.565170801 + ], + [ + 8.896097, + 48.564772801 + ], + [ + 8.8957575, + 48.564325001 + ], + [ + 8.8954113, + 48.563880001 + ], + [ + 8.8950622, + 48.563436901 + ], + [ + 8.8947083, + 48.562994001 + ], + [ + 8.8943416, + 48.562552201 + ], + [ + 8.8939847, + 48.562108401 + ], + [ + 8.8936287, + 48.561665801 + ], + [ + 8.8932698, + 48.561222101 + ], + [ + 8.8929422, + 48.560798301 + ], + [ + 8.892625, + 48.560375301 + ], + [ + 8.8923151, + 48.559944201 + ], + [ + 8.8920251, + 48.559521001 + ], + [ + 8.8918609, + 48.559274101 + ], + [ + 8.8917052, + 48.559027301 + ], + [ + 8.8915357, + 48.558754601 + ], + [ + 8.8913684, + 48.558482001 + ], + [ + 8.8912561, + 48.558295701 + ], + [ + 8.8911487, + 48.558108901 + ], + [ + 8.8909451, + 48.557735401 + ], + [ + 8.8907634, + 48.557380701 + ], + [ + 8.8905582, + 48.556976301 + ], + [ + 8.8904669, + 48.556784801 + ], + [ + 8.8903801, + 48.556594101 + ], + [ + 8.8902053, + 48.556183301 + ], + [ + 8.8900966, + 48.555928701 + ], + [ + 8.8899968, + 48.555683901 + ], + [ + 8.8899012, + 48.555433201 + ], + [ + 8.88981, + 48.555182701 + ], + [ + 8.8897229, + 48.554928701 + ], + [ + 8.8896416, + 48.554673601 + ], + [ + 8.8894923, + 48.554211701 + ], + [ + 8.8894389, + 48.554019001 + ], + [ + 8.8892954, + 48.553472501 + ], + [ + 8.889231, + 48.553204701 + ], + [ + 8.8891694, + 48.552938301 + ], + [ + 8.8890328, + 48.552277401 + ], + [ + 8.8889501, + 48.551622301 + ], + [ + 8.8889014, + 48.551184301 + ], + [ + 8.8888569, + 48.550747001 + ], + [ + 8.8888379, + 48.550507101 + ], + [ + 8.8888242, + 48.550267401 + ], + [ + 8.8888139, + 48.550045101 + ], + [ + 8.8888085, + 48.549901301 + ], + [ + 8.8888046, + 48.549743501 + ], + [ + 8.8888045, + 48.549510601 + ], + [ + 8.88881, + 48.549265801 + ], + [ + 8.8888201, + 48.549052301 + ], + [ + 8.8888301, + 48.548822101 + ], + [ + 8.8888414, + 48.548577601 + ], + [ + 8.8888568, + 48.548332801 + ], + [ + 8.888873, + 48.548088401 + ], + [ + 8.8888826, + 48.547967301 + ], + [ + 8.8888943, + 48.547846001 + ], + [ + 8.8889228, + 48.547606101 + ], + [ + 8.8889543, + 48.547365701 + ], + [ + 8.8889891, + 48.547120001 + ], + [ + 8.8890273, + 48.546875001 + ], + [ + 8.889125, + 48.546305201 + ], + [ + 8.8892265, + 48.545738801 + ], + [ + 8.8892965, + 48.545436001 + ], + [ + 8.8893716, + 48.545133301 + ], + [ + 8.8895263, + 48.544542301 + ], + [ + 8.8897524, + 48.543756901 + ], + [ + 8.889989, + 48.542973401 + ], + [ + 8.8901537, + 48.542432801 + ], + [ + 8.8903045, + 48.541891301 + ], + [ + 8.8904371, + 48.541427901 + ], + [ + 8.8905981, + 48.540843801 + ], + [ + 8.8907496, + 48.540252001 + ], + [ + 8.8908571, + 48.539762401 + ], + [ + 8.8909458, + 48.539273801 + ], + [ + 8.8910126, + 48.538836001 + ], + [ + 8.8910494, + 48.538556101 + ], + [ + 8.8910819, + 48.538278001 + ], + [ + 8.8911109, + 48.537988401 + ], + [ + 8.8911335, + 48.537697801 + ], + [ + 8.891151, + 48.537366101 + ], + [ + 8.8911655, + 48.537034301 + ], + [ + 8.8911663, + 48.536684001 + ], + [ + 8.8911604, + 48.536333701 + ], + [ + 8.8911534, + 48.536151301 + ], + [ + 8.8911428, + 48.535968901 + ], + [ + 8.8911134, + 48.535675601 + ], + [ + 8.8910785, + 48.535382101 + ], + [ + 8.8910494, + 48.535117901 + ], + [ + 8.8910122, + 48.534812901 + ], + [ + 8.89097, + 48.534516601 + ], + [ + 8.8909221, + 48.534220201 + ], + [ + 8.8908654, + 48.533922601 + ], + [ + 8.8908044, + 48.533625001 + ], + [ + 8.8906338, + 48.532883801 + ], + [ + 8.8905546, + 48.532596601 + ], + [ + 8.8904553, + 48.532277501 + ], + [ + 8.8903491, + 48.531946301 + ], + [ + 8.8902015, + 48.531540801 + ], + [ + 8.890064, + 48.531174701 + ], + [ + 8.889986, + 48.530979701 + ], + [ + 8.8899118, + 48.530785201 + ], + [ + 8.8897644, + 48.530411601 + ], + [ + 8.8895923, + 48.530034801 + ], + [ + 8.8894056, + 48.529660201 + ], + [ + 8.8891773, + 48.529218801 + ], + [ + 8.8890582, + 48.529001001 + ], + [ + 8.8889356, + 48.528783901 + ], + [ + 8.8887534, + 48.528479201 + ], + [ + 8.8885083, + 48.528089701 + ], + [ + 8.8882778, + 48.527725201 + ], + [ + 8.8878669, + 48.527126001 + ], + [ + 8.8875672, + 48.526715501 + ], + [ + 8.8872974, + 48.526373701 + ], + [ + 8.8871378, + 48.526168401 + ], + [ + 8.8869703, + 48.525965901 + ], + [ + 8.8864725, + 48.525389701 + ], + [ + 8.8862186, + 48.525107001 + ], + [ + 8.8859545, + 48.524821801 + ], + [ + 8.8853835, + 48.524241801 + ], + [ + 8.8851006, + 48.523968001 + ], + [ + 8.8848091, + 48.523696601 + ], + [ + 8.8845456, + 48.523460201 + ], + [ + 8.8842782, + 48.523225801 + ], + [ + 8.8837752, + 48.522791301 + ], + [ + 8.8834098, + 48.522503201 + ], + [ + 8.8831112, + 48.522266601 + ], + [ + 8.8826339, + 48.521902801 + ], + [ + 8.8821428, + 48.521543901 + ], + [ + 8.8815046, + 48.521096601 + ], + [ + 8.8811788, + 48.520881101 + ], + [ + 8.8808507, + 48.520670501 + ], + [ + 8.8802131, + 48.520268701 + ], + [ + 8.8795742, + 48.519889601 + ], + [ + 8.8789274, + 48.519520501 + ], + [ + 8.8782599, + 48.519153301 + ], + [ + 8.8776506, + 48.518836701 + ], + [ + 8.8770361, + 48.518535701 + ], + [ + 8.876412, + 48.518250901 + ], + [ + 8.8760973, + 48.518111601 + ], + [ + 8.87578, + 48.517973601 + ], + [ + 8.875411, + 48.517817701 + ], + [ + 8.8750399, + 48.517663701 + ], + [ + 8.8746775, + 48.517518301 + ], + [ + 8.8743106, + 48.517374301 + ], + [ + 8.8735651, + 48.517089001 + ], + [ + 8.8728284, + 48.516819501 + ], + [ + 8.8724578, + 48.516683901 + ], + [ + 8.8720822, + 48.516549601 + ], + [ + 8.8713451, + 48.516300701 + ], + [ + 8.8706183, + 48.516060901 + ], + [ + 8.8699234, + 48.515833801 + ], + [ + 8.8691088, + 48.515575301 + ], + [ + 8.8683482, + 48.515335901 + ], + [ + 8.8668137, + 48.514855501 + ], + [ + 8.8643637, + 48.514081201 + ], + [ + 8.863751, + 48.513882701 + ], + [ + 8.8631465, + 48.513681201 + ], + [ + 8.8625349, + 48.513475301 + ], + [ + 8.8619259, + 48.513265901 + ], + [ + 8.8610709, + 48.512960801 + ], + [ + 8.8602158, + 48.512638001 + ], + [ + 8.8593707, + 48.512316101 + ], + [ + 8.8589463, + 48.512153001 + ], + [ + 8.8585254, + 48.511985901 + ], + [ + 8.8579364, + 48.511742201 + ], + [ + 8.8573366, + 48.511491901 + ], + [ + 8.8567449, + 48.511241501 + ], + [ + 8.8561548, + 48.510986201 + ], + [ + 8.855683, + 48.510774101 + ], + [ + 8.8552123, + 48.510558901 + ], + [ + 8.8542682, + 48.510121601 + ], + [ + 8.8534097, + 48.509708301 + ], + [ + 8.8529829, + 48.509494101 + ], + [ + 8.8525588, + 48.509276901 + ], + [ + 8.8521618, + 48.509078001 + ], + [ + 8.8517682, + 48.508876601 + ], + [ + 8.851379, + 48.508673701 + ], + [ + 8.8509915, + 48.508468801 + ], + [ + 8.8507124, + 48.508315201 + ], + [ + 8.8504368, + 48.508161601 + ], + [ + 8.8498949, + 48.507862701 + ], + [ + 8.8496415, + 48.507719801 + ], + [ + 8.8493903, + 48.507575301 + ], + [ + 8.8491396, + 48.507431501 + ], + [ + 8.8488915, + 48.507286101 + ], + [ + 8.8485647, + 48.507095201 + ], + [ + 8.8482409, + 48.506902201 + ], + [ + 8.8476117, + 48.506522401 + ], + [ + 8.8471896, + 48.506261101 + ], + [ + 8.8467463, + 48.505980001 + ], + [ + 8.8464317, + 48.505781401 + ], + [ + 8.8461022, + 48.505564601 + ], + [ + 8.845744, + 48.505323801 + ], + [ + 8.8454074, + 48.505102301 + ], + [ + 8.8450741, + 48.504877601 + ], + [ + 8.8443994, + 48.504413301 + ], + [ + 8.8436797, + 48.503900001 + ], + [ + 8.8431119, + 48.503481201 + ], + [ + 8.8424286, + 48.502963901 + ], + [ + 8.8418456, + 48.502509701 + ], + [ + 8.8416938, + 48.502385901 + ], + [ + 8.8413605, + 48.502122201 + ], + [ + 8.8408991, + 48.501749001 + ], + [ + 8.8404305, + 48.501362001 + ], + [ + 8.8399696, + 48.500972001 + ], + [ + 8.8397532, + 48.500783701 + ], + [ + 8.8396254, + 48.500676101 + ], + [ + 8.8392925, + 48.500385001 + ], + [ + 8.8389319, + 48.500060301 + ], + [ + 8.8385898, + 48.499749801 + ], + [ + 8.8372371, + 48.498528101 + ], + [ + 8.8369016, + 48.498186701 + ], + [ + 8.8364346, + 48.497689201 + ], + [ + 8.835969, + 48.497222101 + ], + [ + 8.8347211, + 48.496014001 + ], + [ + 8.8341587, + 48.495470901 + ], + [ + 8.8336109, + 48.494959601 + ], + [ + 8.8330554, + 48.494441201 + ], + [ + 8.8324907, + 48.493932001 + ], + [ + 8.83243663, + 48.493885203 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de33", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.631424304948496,8.915488705231043,48.641944351850164,8.932888609916395", + "point": "48.631424304948496,8.915488705231043", + "startLcPosition": "33", + "impact": { + "lower": "Hildrizhausen", + "upper": "Sch\u00f6nbuch", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Sch\u00f6nbuch - Hildrizhausen", + "coordinate": { + "lat": 48.631424304948496, + "long": 8.915488705231043 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 2.3 km hinter Sch\u00f6nbuch und 0.9 km vor AS Hildrizhausen", + "", + "L\u00e4nge: 1.77 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.915488705, + 48.631424305 + ], + [ + 8.9155542, + 48.631561101 + ], + [ + 8.9157623, + 48.631985401 + ], + [ + 8.9160901, + 48.632566501 + ], + [ + 8.9161402, + 48.632640101 + ], + [ + 8.9163843, + 48.632978301 + ], + [ + 8.9166247, + 48.633293601 + ], + [ + 8.9169968, + 48.633711801 + ], + [ + 8.9172972, + 48.634009601 + ], + [ + 8.9176223, + 48.634284301 + ], + [ + 8.9180138, + 48.634595001 + ], + [ + 8.9184272, + 48.634883301 + ], + [ + 8.9189413, + 48.635187001 + ], + [ + 8.9194694, + 48.635480501 + ], + [ + 8.9200213, + 48.635766601 + ], + [ + 8.9205731, + 48.636042401 + ], + [ + 8.921214, + 48.636354101 + ], + [ + 8.9218459, + 48.636654601 + ], + [ + 8.9229391, + 48.637151801 + ], + [ + 8.9240413, + 48.637649201 + ], + [ + 8.9249083, + 48.638019501 + ], + [ + 8.9257712, + 48.638379801 + ], + [ + 8.9266991, + 48.638768401 + ], + [ + 8.92762, + 48.639161801 + ], + [ + 8.9285267, + 48.639577301 + ], + [ + 8.9294162, + 48.640010101 + ], + [ + 8.9299955, + 48.640293201 + ], + [ + 8.9309121, + 48.640738401 + ], + [ + 8.9314708, + 48.641055101 + ], + [ + 8.9319137, + 48.641337901 + ], + [ + 8.9325644, + 48.641729801 + ], + [ + 8.93288861, + 48.641944352 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.62577356593103,8.913260671614482,48.63130588224558,8.915432007473065", + "point": "48.62577356593103,8.913260671614482", + "startLcPosition": "33", + "impact": { + "lower": "G\u00e4rtringen", + "upper": "Sch\u00f6nbuch", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Sch\u00f6nbuch - G\u00e4rtringen", + "coordinate": { + "lat": 48.62577356593103, + "long": 8.913260671614482 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 1.6 km hinter Sch\u00f6nbuch und 0.5 km vor AS G\u00e4rtringen", + "", + "L\u00e4nge: 0.64 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.913260672, + 48.625773566 + ], + [ + 8.9134674, + 48.626284001 + ], + [ + 8.9138479, + 48.627266201 + ], + [ + 8.9141159, + 48.627911701 + ], + [ + 8.9142123, + 48.628171401 + ], + [ + 8.9142331, + 48.628228401 + ], + [ + 8.9144917, + 48.628996001 + ], + [ + 8.9147813, + 48.629776501 + ], + [ + 8.9150481, + 48.630461101 + ], + [ + 8.9153963, + 48.631231301 + ], + [ + 8.915432007, + 48.631305882 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de35", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.631424304948496,8.915488705231043,48.641944351850164,8.932888609916395", + "point": "48.631424304948496,8.915488705231043", + "startLcPosition": "33", + "impact": { + "lower": "Hildrizhausen", + "upper": "Sch\u00f6nbuch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Sch\u00f6nbuch - Hildrizhausen", + "coordinate": { + "lat": 48.631424304948496, + "long": 8.915488705231043 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 2.3 km hinter Sch\u00f6nbuch und 0.9 km vor AS Hildrizhausen", + "", + "L\u00e4nge: 1.77 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.915488705, + 48.631424305 + ], + [ + 8.9155542, + 48.631561101 + ], + [ + 8.9157623, + 48.631985401 + ], + [ + 8.9160901, + 48.632566501 + ], + [ + 8.9161402, + 48.632640101 + ], + [ + 8.9163843, + 48.632978301 + ], + [ + 8.9166247, + 48.633293601 + ], + [ + 8.9169968, + 48.633711801 + ], + [ + 8.9172972, + 48.634009601 + ], + [ + 8.9176223, + 48.634284301 + ], + [ + 8.9180138, + 48.634595001 + ], + [ + 8.9184272, + 48.634883301 + ], + [ + 8.9189413, + 48.635187001 + ], + [ + 8.9194694, + 48.635480501 + ], + [ + 8.9200213, + 48.635766601 + ], + [ + 8.9205731, + 48.636042401 + ], + [ + 8.921214, + 48.636354101 + ], + [ + 8.9218459, + 48.636654601 + ], + [ + 8.9229391, + 48.637151801 + ], + [ + 8.9240413, + 48.637649201 + ], + [ + 8.9249083, + 48.638019501 + ], + [ + 8.9257712, + 48.638379801 + ], + [ + 8.9266991, + 48.638768401 + ], + [ + 8.92762, + 48.639161801 + ], + [ + 8.9285267, + 48.639577301 + ], + [ + 8.9294162, + 48.640010101 + ], + [ + 8.9299955, + 48.640293201 + ], + [ + 8.9309121, + 48.640738401 + ], + [ + 8.9314708, + 48.641055101 + ], + [ + 8.9319137, + 48.641337901 + ], + [ + 8.9325644, + 48.641729801 + ], + [ + 8.93288861, + 48.641944352 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.62577356593103,8.913260671614482,48.63130588224558,8.915432007473065", + "point": "48.62577356593103,8.913260671614482", + "startLcPosition": "33", + "impact": { + "lower": "G\u00e4rtringen", + "upper": "Sch\u00f6nbuch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Sch\u00f6nbuch - G\u00e4rtringen", + "coordinate": { + "lat": 48.62577356593103, + "long": 8.913260671614482 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 1.6 km hinter Sch\u00f6nbuch und 0.5 km vor AS G\u00e4rtringen", + "", + "L\u00e4nge: 0.64 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.913260672, + 48.625773566 + ], + [ + 8.9134674, + 48.626284001 + ], + [ + 8.9138479, + 48.627266201 + ], + [ + 8.9141159, + 48.627911701 + ], + [ + 8.9142123, + 48.628171401 + ], + [ + 8.9142331, + 48.628228401 + ], + [ + 8.9144917, + 48.628996001 + ], + [ + 8.9147813, + 48.629776501 + ], + [ + 8.9150481, + 48.630461101 + ], + [ + 8.9153963, + 48.631231301 + ], + [ + 8.915432007, + 48.631305882 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de27", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.613132262478764,8.902996502687088,48.62567040074527,8.91321888979484", + "point": "48.613132262478764,8.902996502687088", + "startLcPosition": "33", + "impact": { + "lower": "G\u00e4rtringen", + "upper": "Sch\u00f6nbuch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Sch\u00f6nbuch - G\u00e4rtringen", + "coordinate": { + "lat": 48.613132262478764, + "long": 8.902996502687088 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen Sch\u00f6nbuch und 1.1 km vor AS G\u00e4rtringen", + "", + "L\u00e4nge: 1.6 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.902996503, + 48.613132262 + ], + [ + 8.9036073, + 48.613626101 + ], + [ + 8.9045675, + 48.614397501 + ], + [ + 8.905553, + 48.615169701 + ], + [ + 8.9058342, + 48.615404601 + ], + [ + 8.9061351, + 48.615657201 + ], + [ + 8.9064321, + 48.615909901 + ], + [ + 8.9068633, + 48.616291501 + ], + [ + 8.9071471, + 48.616553601 + ], + [ + 8.9074279, + 48.616812301 + ], + [ + 8.9078311, + 48.617200901 + ], + [ + 8.9080928, + 48.617465501 + ], + [ + 8.9083479, + 48.617726701 + ], + [ + 8.9086178, + 48.618011201 + ], + [ + 8.9088035, + 48.618219901 + ], + [ + 8.9092667, + 48.618750601 + ], + [ + 8.9097012, + 48.619273701 + ], + [ + 8.9103047, + 48.620087501 + ], + [ + 8.9105771, + 48.620472701 + ], + [ + 8.9107097, + 48.620685101 + ], + [ + 8.9111121, + 48.621351801 + ], + [ + 8.9115144, + 48.622036101 + ], + [ + 8.9118003, + 48.622577801 + ], + [ + 8.9119452, + 48.622857501 + ], + [ + 8.9123064, + 48.623577201 + ], + [ + 8.9126624, + 48.624333901 + ], + [ + 8.9130754, + 48.625316101 + ], + [ + 8.91321889, + 48.625670401 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.613132262478764,8.902996502687088,48.62567040074527,8.91321888979484", + "point": "48.613132262478764,8.902996502687088", + "startLcPosition": "33", + "impact": { + "lower": "G\u00e4rtringen", + "upper": "Sch\u00f6nbuch", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Sch\u00f6nbuch - G\u00e4rtringen", + "coordinate": { + "lat": 48.613132262478764, + "long": 8.902996502687088 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen Sch\u00f6nbuch und 1.1 km vor AS G\u00e4rtringen", + "", + "L\u00e4nge: 1.6 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.902996503, + 48.613132262 + ], + [ + 8.9036073, + 48.613626101 + ], + [ + 8.9045675, + 48.614397501 + ], + [ + 8.905553, + 48.615169701 + ], + [ + 8.9058342, + 48.615404601 + ], + [ + 8.9061351, + 48.615657201 + ], + [ + 8.9064321, + 48.615909901 + ], + [ + 8.9068633, + 48.616291501 + ], + [ + 8.9071471, + 48.616553601 + ], + [ + 8.9074279, + 48.616812301 + ], + [ + 8.9078311, + 48.617200901 + ], + [ + 8.9080928, + 48.617465501 + ], + [ + 8.9083479, + 48.617726701 + ], + [ + 8.9086178, + 48.618011201 + ], + [ + 8.9088035, + 48.618219901 + ], + [ + 8.9092667, + 48.618750601 + ], + [ + 8.9097012, + 48.619273701 + ], + [ + 8.9103047, + 48.620087501 + ], + [ + 8.9105771, + 48.620472701 + ], + [ + 8.9107097, + 48.620685101 + ], + [ + 8.9111121, + 48.621351801 + ], + [ + 8.9115144, + 48.622036101 + ], + [ + 8.9118003, + 48.622577801 + ], + [ + 8.9119452, + 48.622857501 + ], + [ + 8.9123064, + 48.623577201 + ], + [ + 8.9126624, + 48.624333901 + ], + [ + 8.9130754, + 48.625316101 + ], + [ + 8.91321889, + 48.625670401 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de39", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.642067745067806,8.933075072458804,48.66052877254951,8.96157509483284", + "point": "48.642067745067806,8.933075072458804", + "startLcPosition": "34", + "impact": { + "lower": "Ehningen", + "upper": "G\u00e4rtringen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | G\u00e4rtringen - Ehningen", + "coordinate": { + "lat": 48.642067745067806, + "long": 8.933075072458804 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 1.3 km hinter AS G\u00e4rtringen und 0.7 km vor AS Ehningen", + "", + "L\u00e4nge: 2.98 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.933075072, + 48.642067745 + ], + [ + 8.9332642, + 48.642192901 + ], + [ + 8.9342518, + 48.642873301 + ], + [ + 8.9352344, + 48.643570001 + ], + [ + 8.9357165, + 48.643913301 + ], + [ + 8.9362089, + 48.644241101 + ], + [ + 8.9365332, + 48.644438001 + ], + [ + 8.9368737, + 48.644645601 + ], + [ + 8.9372084, + 48.644850501 + ], + [ + 8.9377016, + 48.645120501 + ], + [ + 8.9382204, + 48.645375401 + ], + [ + 8.9388167, + 48.645637901 + ], + [ + 8.939401, + 48.645888401 + ], + [ + 8.9399314, + 48.646086301 + ], + [ + 8.9404724, + 48.646257701 + ], + [ + 8.9414998, + 48.646600001 + ], + [ + 8.9432476, + 48.647198201 + ], + [ + 8.9439601, + 48.647459501 + ], + [ + 8.9445398, + 48.647697801 + ], + [ + 8.9450197, + 48.647938101 + ], + [ + 8.9457234, + 48.648254001 + ], + [ + 8.9463007, + 48.648549901 + ], + [ + 8.9468765, + 48.648873701 + ], + [ + 8.9474359, + 48.649209701 + ], + [ + 8.9481449, + 48.649663401 + ], + [ + 8.9486572, + 48.650022801 + ], + [ + 8.9491535, + 48.650377901 + ], + [ + 8.9506586, + 48.651504901 + ], + [ + 8.9511124, + 48.651847901 + ], + [ + 8.9516428, + 48.652240901 + ], + [ + 8.9521653, + 48.652612701 + ], + [ + 8.9526986, + 48.652976801 + ], + [ + 8.9531241, + 48.653249601 + ], + [ + 8.9535754, + 48.653516001 + ], + [ + 8.9540672, + 48.653794701 + ], + [ + 8.9554576, + 48.654624501 + ], + [ + 8.9560956, + 48.655008701 + ], + [ + 8.9566379, + 48.655356601 + ], + [ + 8.9571612, + 48.655715101 + ], + [ + 8.9576501, + 48.656080401 + ], + [ + 8.958125, + 48.656457601 + ], + [ + 8.9585789, + 48.656853301 + ], + [ + 8.9590125, + 48.657259501 + ], + [ + 8.9594569, + 48.657658801 + ], + [ + 8.9598615, + 48.658084401 + ], + [ + 8.9601766, + 48.658446801 + ], + [ + 8.9604702, + 48.658832401 + ], + [ + 8.9609411, + 48.659459501 + ], + [ + 8.9612331, + 48.659912001 + ], + [ + 8.961482, + 48.660357301 + ], + [ + 8.961575095, + 48.660528773 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de37", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.642067745067806,8.933075072458804,48.66052877254951,8.96157509483284", + "point": "48.642067745067806,8.933075072458804", + "startLcPosition": "34", + "impact": { + "lower": "Ehningen", + "upper": "G\u00e4rtringen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | G\u00e4rtringen - Ehningen", + "coordinate": { + "lat": 48.642067745067806, + "long": 8.933075072458804 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Singen -> Stuttgart, zwischen 1.3 km hinter AS G\u00e4rtringen und 0.7 km vor AS Ehningen", + "", + "L\u00e4nge: 2.98 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.933075072, + 48.642067745 + ], + [ + 8.9332642, + 48.642192901 + ], + [ + 8.9342518, + 48.642873301 + ], + [ + 8.9352344, + 48.643570001 + ], + [ + 8.9357165, + 48.643913301 + ], + [ + 8.9362089, + 48.644241101 + ], + [ + 8.9365332, + 48.644438001 + ], + [ + 8.9368737, + 48.644645601 + ], + [ + 8.9372084, + 48.644850501 + ], + [ + 8.9377016, + 48.645120501 + ], + [ + 8.9382204, + 48.645375401 + ], + [ + 8.9388167, + 48.645637901 + ], + [ + 8.939401, + 48.645888401 + ], + [ + 8.9399314, + 48.646086301 + ], + [ + 8.9404724, + 48.646257701 + ], + [ + 8.9414998, + 48.646600001 + ], + [ + 8.9432476, + 48.647198201 + ], + [ + 8.9439601, + 48.647459501 + ], + [ + 8.9445398, + 48.647697801 + ], + [ + 8.9450197, + 48.647938101 + ], + [ + 8.9457234, + 48.648254001 + ], + [ + 8.9463007, + 48.648549901 + ], + [ + 8.9468765, + 48.648873701 + ], + [ + 8.9474359, + 48.649209701 + ], + [ + 8.9481449, + 48.649663401 + ], + [ + 8.9486572, + 48.650022801 + ], + [ + 8.9491535, + 48.650377901 + ], + [ + 8.9506586, + 48.651504901 + ], + [ + 8.9511124, + 48.651847901 + ], + [ + 8.9516428, + 48.652240901 + ], + [ + 8.9521653, + 48.652612701 + ], + [ + 8.9526986, + 48.652976801 + ], + [ + 8.9531241, + 48.653249601 + ], + [ + 8.9535754, + 48.653516001 + ], + [ + 8.9540672, + 48.653794701 + ], + [ + 8.9554576, + 48.654624501 + ], + [ + 8.9560956, + 48.655008701 + ], + [ + 8.9566379, + 48.655356601 + ], + [ + 8.9571612, + 48.655715101 + ], + [ + 8.9576501, + 48.656080401 + ], + [ + 8.958125, + 48.656457601 + ], + [ + 8.9585789, + 48.656853301 + ], + [ + 8.9590125, + 48.657259501 + ], + [ + 8.9594569, + 48.657658801 + ], + [ + 8.9598615, + 48.658084401 + ], + [ + 8.9601766, + 48.658446801 + ], + [ + 8.9604702, + 48.658832401 + ], + [ + 8.9609411, + 48.659459501 + ], + [ + 8.9612331, + 48.659912001 + ], + [ + 8.961482, + 48.660357301 + ], + [ + 8.961575095, + 48.660528773 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.6256848321382,8.913025106242962,48.61318718161846,8.902832147518582", + "point": "48.6256848321382,8.913025106242962", + "startLcPosition": "34", + "impact": { + "lower": "Sch\u00f6nbuch", + "upper": "G\u00e4rtringen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | G\u00e4rtringen - Sch\u00f6nbuch", + "coordinate": { + "lat": 48.6256848321382, + "long": 8.913025106242962 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 1.2 km hinter AS G\u00e4rtringen und Sch\u00f6nbuch", + "", + "L\u00e4nge: 1.6 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.913025106, + 48.625684832 + ], + [ + 8.9129038, + 48.625358601 + ], + [ + 8.9124961, + 48.624397701 + ], + [ + 8.9121398, + 48.623615101 + ], + [ + 8.9117599, + 48.622855401 + ], + [ + 8.9116143, + 48.622569301 + ], + [ + 8.9113534, + 48.622085801 + ], + [ + 8.9109511, + 48.621401401 + ], + [ + 8.9105059, + 48.620709901 + ], + [ + 8.9100874, + 48.620061001 + ], + [ + 8.9094897, + 48.619276701 + ], + [ + 8.9093273, + 48.619073601 + ], + [ + 8.9091513, + 48.618860001 + ], + [ + 8.9088018, + 48.618452601 + ], + [ + 8.9086736, + 48.618305001 + ], + [ + 8.9084434, + 48.618051301 + ], + [ + 8.9080628, + 48.617648601 + ], + [ + 8.9077683, + 48.617347701 + ], + [ + 8.9074603, + 48.617047001 + ], + [ + 8.9072609, + 48.616858001 + ], + [ + 8.9070054, + 48.616618201 + ], + [ + 8.9067168, + 48.616354401 + ], + [ + 8.906445, + 48.616115701 + ], + [ + 8.905985, + 48.615719701 + ], + [ + 8.9056904, + 48.615470601 + ], + [ + 8.9052572, + 48.615116301 + ], + [ + 8.9044494, + 48.614486101 + ], + [ + 8.9036172, + 48.613814601 + ], + [ + 8.903063, + 48.613370801 + ], + [ + 8.902832148, + 48.613187182 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.6256848321382,8.913025106242962,48.61318718161846,8.902832147518582", + "point": "48.6256848321382,8.913025106242962", + "startLcPosition": "34", + "impact": { + "lower": "Sch\u00f6nbuch", + "upper": "G\u00e4rtringen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | G\u00e4rtringen - Sch\u00f6nbuch", + "coordinate": { + "lat": 48.6256848321382, + "long": 8.913025106242962 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 1.2 km hinter AS G\u00e4rtringen und Sch\u00f6nbuch", + "", + "L\u00e4nge: 1.6 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.913025106, + 48.625684832 + ], + [ + 8.9129038, + 48.625358601 + ], + [ + 8.9124961, + 48.624397701 + ], + [ + 8.9121398, + 48.623615101 + ], + [ + 8.9117599, + 48.622855401 + ], + [ + 8.9116143, + 48.622569301 + ], + [ + 8.9113534, + 48.622085801 + ], + [ + 8.9109511, + 48.621401401 + ], + [ + 8.9105059, + 48.620709901 + ], + [ + 8.9100874, + 48.620061001 + ], + [ + 8.9094897, + 48.619276701 + ], + [ + 8.9093273, + 48.619073601 + ], + [ + 8.9091513, + 48.618860001 + ], + [ + 8.9088018, + 48.618452601 + ], + [ + 8.9086736, + 48.618305001 + ], + [ + 8.9084434, + 48.618051301 + ], + [ + 8.9080628, + 48.617648601 + ], + [ + 8.9077683, + 48.617347701 + ], + [ + 8.9074603, + 48.617047001 + ], + [ + 8.9072609, + 48.616858001 + ], + [ + 8.9070054, + 48.616618201 + ], + [ + 8.9067168, + 48.616354401 + ], + [ + 8.906445, + 48.616115701 + ], + [ + 8.905985, + 48.615719701 + ], + [ + 8.9056904, + 48.615470601 + ], + [ + 8.9052572, + 48.615116301 + ], + [ + 8.9044494, + 48.614486101 + ], + [ + 8.9036172, + 48.613814601 + ], + [ + 8.903063, + 48.613370801 + ], + [ + 8.902832148, + 48.613187182 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.63196762320707,8.914588026494135,48.62581637304459,8.91307401904654", + "point": "48.63196762320707,8.914588026494135", + "startLcPosition": "34", + "impact": { + "lower": "Sch\u00f6nbuch", + "upper": "G\u00e4rtringen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | G\u00e4rtringen - Sch\u00f6nbuch", + "coordinate": { + "lat": 48.63196762320707, + "long": 8.914588026494135 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 0.4 km hinter AS G\u00e4rtringen und 1.6 km vor Sch\u00f6nbuch", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.914588026, + 48.631967623 + ], + [ + 8.9145345, + 48.631846801 + ], + [ + 8.9143941, + 48.631488701 + ], + [ + 8.9142761, + 48.631161401 + ], + [ + 8.9141853, + 48.630795501 + ], + [ + 8.9141247, + 48.630433601 + ], + [ + 8.9140271, + 48.629431701 + ], + [ + 8.9140081, + 48.629240501 + ], + [ + 8.9139529, + 48.628601801 + ], + [ + 8.9139412, + 48.628291001 + ], + [ + 8.9139018, + 48.628095501 + ], + [ + 8.9138543, + 48.627889401 + ], + [ + 8.9137272, + 48.627572901 + ], + [ + 8.913074019, + 48.625816373 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.63196762320707,8.914588026494135,48.62581637304459,8.91307401904654", + "point": "48.63196762320707,8.914588026494135", + "startLcPosition": "34", + "impact": { + "lower": "Sch\u00f6nbuch", + "upper": "G\u00e4rtringen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | G\u00e4rtringen - Sch\u00f6nbuch", + "coordinate": { + "lat": 48.63196762320707, + "long": 8.914588026494135 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 0.4 km hinter AS G\u00e4rtringen und 1.6 km vor Sch\u00f6nbuch", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.914588026, + 48.631967623 + ], + [ + 8.9145345, + 48.631846801 + ], + [ + 8.9143941, + 48.631488701 + ], + [ + 8.9142761, + 48.631161401 + ], + [ + 8.9141853, + 48.630795501 + ], + [ + 8.9141247, + 48.630433601 + ], + [ + 8.9140271, + 48.629431701 + ], + [ + 8.9140081, + 48.629240501 + ], + [ + 8.9139529, + 48.628601801 + ], + [ + 8.9139412, + 48.628291001 + ], + [ + 8.9139018, + 48.628095501 + ], + [ + 8.9138543, + 48.627889401 + ], + [ + 8.9137272, + 48.627572901 + ], + [ + 8.913074019, + 48.625816373 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.642088023188975,8.932788541926325,48.632055892467605,8.91462713157662", + "point": "48.642088023188975,8.932788541926325", + "startLcPosition": "35", + "impact": { + "lower": "Sch\u00f6nbuch", + "upper": "Hildrizhausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Hildrizhausen - Sch\u00f6nbuch", + "coordinate": { + "lat": 48.642088023188975, + "long": 8.932788541926325 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 0.9 km hinter AS Hildrizhausen und 2.3 km vor Sch\u00f6nbuch", + "", + "L\u00e4nge: 1.77 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.932788542, + 48.642088023 + ], + [ + 8.9324505, + 48.641869701 + ], + [ + 8.9320292, + 48.641618401 + ], + [ + 8.9313111, + 48.641179501 + ], + [ + 8.9307169, + 48.640828701 + ], + [ + 8.9300355, + 48.640456001 + ], + [ + 8.9294607, + 48.640161801 + ], + [ + 8.9284477, + 48.639677501 + ], + [ + 8.927549, + 48.639269001 + ], + [ + 8.9266718, + 48.638911801 + ], + [ + 8.9254768, + 48.638410201 + ], + [ + 8.924822, + 48.638114101 + ], + [ + 8.9239417, + 48.637742701 + ], + [ + 8.9228183, + 48.637256401 + ], + [ + 8.9217195, + 48.636792701 + ], + [ + 8.9210617, + 48.636511301 + ], + [ + 8.9203929, + 48.636224901 + ], + [ + 8.9197882, + 48.635964701 + ], + [ + 8.9191788, + 48.635696201 + ], + [ + 8.9186241, + 48.635445901 + ], + [ + 8.9180782, + 48.635182401 + ], + [ + 8.9176352, + 48.634950001 + ], + [ + 8.9171931, + 48.634692001 + ], + [ + 8.9167427, + 48.634392001 + ], + [ + 8.916233, + 48.634012001 + ], + [ + 8.9158576, + 48.633657801 + ], + [ + 8.9153553, + 48.633065601 + ], + [ + 8.9151371, + 48.632803901 + ], + [ + 8.9149485, + 48.632546001 + ], + [ + 8.9148108, + 48.632333001 + ], + [ + 8.9146589, + 48.632127601 + ], + [ + 8.914627132, + 48.632055892 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.642088023188975,8.932788541926325,48.632055892467605,8.91462713157662", + "point": "48.642088023188975,8.932788541926325", + "startLcPosition": "35", + "impact": { + "lower": "Sch\u00f6nbuch", + "upper": "Hildrizhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Hildrizhausen - Sch\u00f6nbuch", + "coordinate": { + "lat": 48.642088023188975, + "long": 8.932788541926325 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 0.9 km hinter AS Hildrizhausen und 2.3 km vor Sch\u00f6nbuch", + "", + "L\u00e4nge: 1.77 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.932788542, + 48.642088023 + ], + [ + 8.9324505, + 48.641869701 + ], + [ + 8.9320292, + 48.641618401 + ], + [ + 8.9313111, + 48.641179501 + ], + [ + 8.9307169, + 48.640828701 + ], + [ + 8.9300355, + 48.640456001 + ], + [ + 8.9294607, + 48.640161801 + ], + [ + 8.9284477, + 48.639677501 + ], + [ + 8.927549, + 48.639269001 + ], + [ + 8.9266718, + 48.638911801 + ], + [ + 8.9254768, + 48.638410201 + ], + [ + 8.924822, + 48.638114101 + ], + [ + 8.9239417, + 48.637742701 + ], + [ + 8.9228183, + 48.637256401 + ], + [ + 8.9217195, + 48.636792701 + ], + [ + 8.9210617, + 48.636511301 + ], + [ + 8.9203929, + 48.636224901 + ], + [ + 8.9197882, + 48.635964701 + ], + [ + 8.9191788, + 48.635696201 + ], + [ + 8.9186241, + 48.635445901 + ], + [ + 8.9180782, + 48.635182401 + ], + [ + 8.9176352, + 48.634950001 + ], + [ + 8.9171931, + 48.634692001 + ], + [ + 8.9167427, + 48.634392001 + ], + [ + 8.916233, + 48.634012001 + ], + [ + 8.9158576, + 48.633657801 + ], + [ + 8.9153553, + 48.633065601 + ], + [ + 8.9151371, + 48.632803901 + ], + [ + 8.9149485, + 48.632546001 + ], + [ + 8.9148108, + 48.632333001 + ], + [ + 8.9146589, + 48.632127601 + ], + [ + 8.914627132, + 48.632055892 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-fbm.2026-02-02_20-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de277", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.66906994776833,8.963484628088475,48.68279093638385,8.970475784494834", + "point": "48.66906994776833,8.963484628088475", + "startLcPosition": "36", + "impact": { + "lower": "B\u00f6blingen/Sindelfingen", + "upper": "Ehningen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Ehningen - B\u00f6blingen/Sindelfingen", + "coordinate": { + "lat": 48.66906994776833, + "long": 8.963484628088475 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "11.04.26 20:00 bis zum 12.04.26 05:00 Uhr.", + "12.04.26 20:00 bis zum 13.04.26 05:00 Uhr.", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A81: Singen -> Stuttgart, zwischen 0.2 km hinter AS Ehningen und 2.8 km vor AS B\u00f6blingen/Sindelfingen", + "", + "L\u00e4nge: 1.68 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.963484628, + 48.669069948 + ], + [ + 8.9634859, + 48.669109801 + ], + [ + 8.9634899, + 48.669270101 + ], + [ + 8.9634952, + 48.669433601 + ], + [ + 8.963498, + 48.669596501 + ], + [ + 8.9635008, + 48.669758701 + ], + [ + 8.963504, + 48.669921901 + ], + [ + 8.9635058, + 48.670084501 + ], + [ + 8.9635094, + 48.670251001 + ], + [ + 8.9635127, + 48.670413801 + ], + [ + 8.9635167, + 48.670563601 + ], + [ + 8.9635201, + 48.670708001 + ], + [ + 8.9635228, + 48.670890401 + ], + [ + 8.9635296, + 48.671057801 + ], + [ + 8.9635335, + 48.671211501 + ], + [ + 8.9635395, + 48.671373101 + ], + [ + 8.9635435, + 48.671536901 + ], + [ + 8.9635511, + 48.671695901 + ], + [ + 8.9635583, + 48.671872601 + ], + [ + 8.9635704, + 48.672183401 + ], + [ + 8.9635807, + 48.672344201 + ], + [ + 8.9635932, + 48.672508001 + ], + [ + 8.9636091, + 48.672675701 + ], + [ + 8.9636207, + 48.672831301 + ], + [ + 8.9636349, + 48.672990401 + ], + [ + 8.9636469, + 48.673102001 + ], + [ + 8.9636542, + 48.673178001 + ], + [ + 8.96367, + 48.673320401 + ], + [ + 8.9636884, + 48.673479101 + ], + [ + 8.9637114, + 48.673655601 + ], + [ + 8.9637313, + 48.673804101 + ], + [ + 8.9637547, + 48.673964401 + ], + [ + 8.9637803, + 48.674126001 + ], + [ + 8.9638067, + 48.674289001 + ], + [ + 8.9638366, + 48.674450101 + ], + [ + 8.9638679, + 48.674612001 + ], + [ + 8.9639016, + 48.674777801 + ], + [ + 8.9639346, + 48.674933601 + ], + [ + 8.963972, + 48.675096601 + ], + [ + 8.9640096, + 48.675253301 + ], + [ + 8.9640475, + 48.675398801 + ], + [ + 8.9640967, + 48.675590801 + ], + [ + 8.9641397, + 48.675737701 + ], + [ + 8.9641853, + 48.675892201 + ], + [ + 8.9642382, + 48.676058301 + ], + [ + 8.9642932, + 48.676222201 + ], + [ + 8.9643462, + 48.676377501 + ], + [ + 8.9644057, + 48.676534601 + ], + [ + 8.9644622, + 48.676684801 + ], + [ + 8.9645246, + 48.676842501 + ], + [ + 8.964594, + 48.677006601 + ], + [ + 8.9647314, + 48.677312101 + ], + [ + 8.9648854, + 48.677621701 + ], + [ + 8.965012, + 48.677850301 + ], + [ + 8.9651415, + 48.678083501 + ], + [ + 8.9652557, + 48.678274901 + ], + [ + 8.9654171, + 48.678531601 + ], + [ + 8.9655384, + 48.678707201 + ], + [ + 8.9656243, + 48.678832801 + ], + [ + 8.9657892, + 48.679053201 + ], + [ + 8.9659528, + 48.679266101 + ], + [ + 8.9661406, + 48.679489301 + ], + [ + 8.9663241, + 48.679694301 + ], + [ + 8.9664492, + 48.679829401 + ], + [ + 8.9665828, + 48.679971101 + ], + [ + 8.9667224, + 48.680116401 + ], + [ + 8.9669688, + 48.680356201 + ], + [ + 8.9671888, + 48.680543501 + ], + [ + 8.9673404, + 48.680671601 + ], + [ + 8.9675776, + 48.680872101 + ], + [ + 8.9678879, + 48.681123901 + ], + [ + 8.9681154, + 48.681303201 + ], + [ + 8.9682327, + 48.681393901 + ], + [ + 8.9683646, + 48.681489001 + ], + [ + 8.9686976, + 48.681726101 + ], + [ + 8.9688671, + 48.681843301 + ], + [ + 8.9690338, + 48.681954401 + ], + [ + 8.9692261, + 48.682081401 + ], + [ + 8.9695199, + 48.682268401 + ], + [ + 8.9696924, + 48.682371801 + ], + [ + 8.9699634, + 48.682521101 + ], + [ + 8.9702333, + 48.682665801 + ], + [ + 8.970461, + 48.682783601 + ], + [ + 8.970475784, + 48.682790936 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.66056246247493,8.961386477825137,48.64215976921057,8.932899631734832", + "point": "48.66056246247493,8.961386477825137", + "startLcPosition": "36", + "impact": { + "lower": "G\u00e4rtringen", + "upper": "Ehningen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Ehningen - G\u00e4rtringen", + "coordinate": { + "lat": 48.66056246247493, + "long": 8.961386477825137 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 0.7 km hinter AS Ehningen und 1.3 km vor AS G\u00e4rtringen", + "", + "L\u00e4nge: 2.98 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.961386478, + 48.660562462 + ], + [ + 8.9613112, + 48.660410201 + ], + [ + 8.9610501, + 48.659966201 + ], + [ + 8.9607544, + 48.659508601 + ], + [ + 8.9603103, + 48.658867901 + ], + [ + 8.960016, + 48.658486301 + ], + [ + 8.9596945, + 48.658132901 + ], + [ + 8.9592878, + 48.657729601 + ], + [ + 8.9588765, + 48.657319001 + ], + [ + 8.9584444, + 48.656922001 + ], + [ + 8.9579917, + 48.656532501 + ], + [ + 8.9575234, + 48.656155301 + ], + [ + 8.9570351, + 48.655788101 + ], + [ + 8.9565188, + 48.655437801 + ], + [ + 8.9559818, + 48.655094101 + ], + [ + 8.9553474, + 48.654712301 + ], + [ + 8.9539624, + 48.653887901 + ], + [ + 8.9534629, + 48.653603201 + ], + [ + 8.9530141, + 48.653332501 + ], + [ + 8.9525793, + 48.653055901 + ], + [ + 8.9520403, + 48.652700901 + ], + [ + 8.9515186, + 48.652329001 + ], + [ + 8.9510024, + 48.651937701 + ], + [ + 8.9505362, + 48.651583701 + ], + [ + 8.9489461, + 48.650394101 + ], + [ + 8.9485371, + 48.650102901 + ], + [ + 8.9480426, + 48.649753801 + ], + [ + 8.9473279, + 48.649290301 + ], + [ + 8.9467713, + 48.648961301 + ], + [ + 8.9462046, + 48.648641301 + ], + [ + 8.9456218, + 48.648361701 + ], + [ + 8.9450151, + 48.648085501 + ], + [ + 8.9444258, + 48.647835901 + ], + [ + 8.9437802, + 48.647586701 + ], + [ + 8.9425928, + 48.647118201 + ], + [ + 8.9412407, + 48.646647501 + ], + [ + 8.9404177, + 48.646360301 + ], + [ + 8.9394785, + 48.646066701 + ], + [ + 8.9390369, + 48.645904701 + ], + [ + 8.9386764, + 48.645752701 + ], + [ + 8.9381033, + 48.645504101 + ], + [ + 8.9375775, + 48.645233401 + ], + [ + 8.9370991, + 48.644947801 + ], + [ + 8.9367495, + 48.644755701 + ], + [ + 8.9364063, + 48.644554701 + ], + [ + 8.9360764, + 48.644348501 + ], + [ + 8.935571, + 48.644015501 + ], + [ + 8.9350709, + 48.643683001 + ], + [ + 8.9340878, + 48.642981701 + ], + [ + 8.9331019, + 48.642290401 + ], + [ + 8.932899632, + 48.642159769 + ] + ] + } + }, + { + "identifier": "2026-016572--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_004.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.66056246247493,8.961386477825137,48.64215976921057,8.932899631734832", + "point": "48.66056246247493,8.961386477825137", + "startLcPosition": "36", + "impact": { + "lower": "G\u00e4rtringen", + "upper": "Ehningen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Ehningen - G\u00e4rtringen", + "coordinate": { + "lat": 48.66056246247493, + "long": 8.961386477825137 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Singen, zwischen 0.7 km hinter AS Ehningen und 1.3 km vor AS G\u00e4rtringen", + "", + "L\u00e4nge: 2.98 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von Ehningen (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.961386478, + 48.660562462 + ], + [ + 8.9613112, + 48.660410201 + ], + [ + 8.9610501, + 48.659966201 + ], + [ + 8.9607544, + 48.659508601 + ], + [ + 8.9603103, + 48.658867901 + ], + [ + 8.960016, + 48.658486301 + ], + [ + 8.9596945, + 48.658132901 + ], + [ + 8.9592878, + 48.657729601 + ], + [ + 8.9588765, + 48.657319001 + ], + [ + 8.9584444, + 48.656922001 + ], + [ + 8.9579917, + 48.656532501 + ], + [ + 8.9575234, + 48.656155301 + ], + [ + 8.9570351, + 48.655788101 + ], + [ + 8.9565188, + 48.655437801 + ], + [ + 8.9559818, + 48.655094101 + ], + [ + 8.9553474, + 48.654712301 + ], + [ + 8.9539624, + 48.653887901 + ], + [ + 8.9534629, + 48.653603201 + ], + [ + 8.9530141, + 48.653332501 + ], + [ + 8.9525793, + 48.653055901 + ], + [ + 8.9520403, + 48.652700901 + ], + [ + 8.9515186, + 48.652329001 + ], + [ + 8.9510024, + 48.651937701 + ], + [ + 8.9505362, + 48.651583701 + ], + [ + 8.9489461, + 48.650394101 + ], + [ + 8.9485371, + 48.650102901 + ], + [ + 8.9480426, + 48.649753801 + ], + [ + 8.9473279, + 48.649290301 + ], + [ + 8.9467713, + 48.648961301 + ], + [ + 8.9462046, + 48.648641301 + ], + [ + 8.9456218, + 48.648361701 + ], + [ + 8.9450151, + 48.648085501 + ], + [ + 8.9444258, + 48.647835901 + ], + [ + 8.9437802, + 48.647586701 + ], + [ + 8.9425928, + 48.647118201 + ], + [ + 8.9412407, + 48.646647501 + ], + [ + 8.9404177, + 48.646360301 + ], + [ + 8.9394785, + 48.646066701 + ], + [ + 8.9390369, + 48.645904701 + ], + [ + 8.9386764, + 48.645752701 + ], + [ + 8.9381033, + 48.645504101 + ], + [ + 8.9375775, + 48.645233401 + ], + [ + 8.9370991, + 48.644947801 + ], + [ + 8.9367495, + 48.644755701 + ], + [ + 8.9364063, + 48.644554701 + ], + [ + 8.9360764, + 48.644348501 + ], + [ + 8.935571, + 48.644015501 + ], + [ + 8.9350709, + 48.643683001 + ], + [ + 8.9340878, + 48.642981701 + ], + [ + 8.9331019, + 48.642290401 + ], + [ + 8.932899632, + 48.642159769 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de367", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.68422509557813,8.97424450098822,48.69356457769466,9.001049995611524", + "point": "48.68422509557813,8.97424450098822", + "startLcPosition": "37", + "impact": { + "lower": "B\u00f6blingen/Sindelfingen", + "upper": "B\u00f6blingen-Hulb", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | B\u00f6blingen-Hulb - B\u00f6blingen/Sindelfingen", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.68422509557813, + "long": 8.97424450098822 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 0.4 km hinter AS B\u00f6blingen-Hulb und 0.1 km vor AS B\u00f6blingen/Sindelfingen", + "", + "L\u00e4nge: 2.29 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.974244501, + 48.684225096 + ], + [ + 8.9742993, + 48.684241501 + ], + [ + 8.9747186, + 48.684364201 + ], + [ + 8.9751896, + 48.684496001 + ], + [ + 8.9755328, + 48.684590701 + ], + [ + 8.9758504, + 48.684677801 + ], + [ + 8.976049, + 48.684732701 + ], + [ + 8.9767886, + 48.684936901 + ], + [ + 8.9772562, + 48.685069201 + ], + [ + 8.9778, + 48.685220401 + ], + [ + 8.9781048, + 48.685309501 + ], + [ + 8.9786075, + 48.685459901 + ], + [ + 8.9790984, + 48.685610401 + ], + [ + 8.9795666, + 48.685763201 + ], + [ + 8.9799868, + 48.685908901 + ], + [ + 8.9804267, + 48.686069001 + ], + [ + 8.9808726, + 48.686239901 + ], + [ + 8.9812992, + 48.686408101 + ], + [ + 8.9817213, + 48.686585601 + ], + [ + 8.9822936, + 48.686838401 + ], + [ + 8.9827101, + 48.687034901 + ], + [ + 8.9831871, + 48.687268201 + ], + [ + 8.9835783, + 48.687465901 + ], + [ + 8.9839253, + 48.687653401 + ], + [ + 8.9842368, + 48.687822601 + ], + [ + 8.984574, + 48.688012401 + ], + [ + 8.9848653, + 48.688182901 + ], + [ + 8.985114, + 48.688337401 + ], + [ + 8.9853765, + 48.688498001 + ], + [ + 8.9857278, + 48.688725601 + ], + [ + 8.986033, + 48.688926301 + ], + [ + 8.9863426, + 48.689134101 + ], + [ + 8.9866898, + 48.689368201 + ], + [ + 8.9870056, + 48.689583601 + ], + [ + 8.9873523, + 48.689817301 + ], + [ + 8.9878694, + 48.690165901 + ], + [ + 8.9881881, + 48.690373801 + ], + [ + 8.9885851, + 48.690625801 + ], + [ + 8.9889357, + 48.690841201 + ], + [ + 8.9891177, + 48.690950201 + ], + [ + 8.9893152, + 48.691064901 + ], + [ + 8.9896692, + 48.691263201 + ], + [ + 8.989948, + 48.691415401 + ], + [ + 8.9902819, + 48.691581901 + ], + [ + 8.9905926, + 48.691731401 + ], + [ + 8.9908499, + 48.691850001 + ], + [ + 8.9911866, + 48.691993901 + ], + [ + 8.9914806, + 48.692115701 + ], + [ + 8.9918396, + 48.692255501 + ], + [ + 8.9921547, + 48.692368001 + ], + [ + 8.992478, + 48.692479501 + ], + [ + 8.992776, + 48.692576401 + ], + [ + 8.9930499, + 48.692660901 + ], + [ + 8.9933908, + 48.692759001 + ], + [ + 8.993609, + 48.692818701 + ], + [ + 8.9942235, + 48.692974901 + ], + [ + 8.9945694, + 48.693050901 + ], + [ + 8.9949264, + 48.693125001 + ], + [ + 8.9953093, + 48.693200001 + ], + [ + 8.9956916, + 48.693264401 + ], + [ + 8.9959676, + 48.693305101 + ], + [ + 8.9964082, + 48.693366201 + ], + [ + 8.9966473, + 48.693395601 + ], + [ + 8.997068, + 48.693434901 + ], + [ + 8.9975604, + 48.693475901 + ], + [ + 8.9980432, + 48.693503901 + ], + [ + 8.9985819, + 48.693525501 + ], + [ + 8.9990872, + 48.693540101 + ], + [ + 8.9995526, + 48.693547701 + ], + [ + 8.9998104, + 48.693550201 + ], + [ + 9.0002657, + 48.693556001 + ], + [ + 9.0005438, + 48.693558101 + ], + [ + 9.001049996, + 48.693564578 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de338", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.68422509557813,8.97424450098822,48.69356457769466,9.001049995611524", + "point": "48.68422509557813,8.97424450098822", + "startLcPosition": "37", + "impact": { + "lower": "B\u00f6blingen/Sindelfingen", + "upper": "B\u00f6blingen-Hulb", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | B\u00f6blingen-Hulb - B\u00f6blingen/Sindelfingen", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.68422509557813, + "long": 8.97424450098822 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 0.4 km hinter AS B\u00f6blingen-Hulb und 0.1 km vor AS B\u00f6blingen/Sindelfingen", + "", + "L\u00e4nge: 2.29 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.974244501, + 48.684225096 + ], + [ + 8.9742993, + 48.684241501 + ], + [ + 8.9747186, + 48.684364201 + ], + [ + 8.9751896, + 48.684496001 + ], + [ + 8.9755328, + 48.684590701 + ], + [ + 8.9758504, + 48.684677801 + ], + [ + 8.976049, + 48.684732701 + ], + [ + 8.9767886, + 48.684936901 + ], + [ + 8.9772562, + 48.685069201 + ], + [ + 8.9778, + 48.685220401 + ], + [ + 8.9781048, + 48.685309501 + ], + [ + 8.9786075, + 48.685459901 + ], + [ + 8.9790984, + 48.685610401 + ], + [ + 8.9795666, + 48.685763201 + ], + [ + 8.9799868, + 48.685908901 + ], + [ + 8.9804267, + 48.686069001 + ], + [ + 8.9808726, + 48.686239901 + ], + [ + 8.9812992, + 48.686408101 + ], + [ + 8.9817213, + 48.686585601 + ], + [ + 8.9822936, + 48.686838401 + ], + [ + 8.9827101, + 48.687034901 + ], + [ + 8.9831871, + 48.687268201 + ], + [ + 8.9835783, + 48.687465901 + ], + [ + 8.9839253, + 48.687653401 + ], + [ + 8.9842368, + 48.687822601 + ], + [ + 8.984574, + 48.688012401 + ], + [ + 8.9848653, + 48.688182901 + ], + [ + 8.985114, + 48.688337401 + ], + [ + 8.9853765, + 48.688498001 + ], + [ + 8.9857278, + 48.688725601 + ], + [ + 8.986033, + 48.688926301 + ], + [ + 8.9863426, + 48.689134101 + ], + [ + 8.9866898, + 48.689368201 + ], + [ + 8.9870056, + 48.689583601 + ], + [ + 8.9873523, + 48.689817301 + ], + [ + 8.9878694, + 48.690165901 + ], + [ + 8.9881881, + 48.690373801 + ], + [ + 8.9885851, + 48.690625801 + ], + [ + 8.9889357, + 48.690841201 + ], + [ + 8.9891177, + 48.690950201 + ], + [ + 8.9893152, + 48.691064901 + ], + [ + 8.9896692, + 48.691263201 + ], + [ + 8.989948, + 48.691415401 + ], + [ + 8.9902819, + 48.691581901 + ], + [ + 8.9905926, + 48.691731401 + ], + [ + 8.9908499, + 48.691850001 + ], + [ + 8.9911866, + 48.691993901 + ], + [ + 8.9914806, + 48.692115701 + ], + [ + 8.9918396, + 48.692255501 + ], + [ + 8.9921547, + 48.692368001 + ], + [ + 8.992478, + 48.692479501 + ], + [ + 8.992776, + 48.692576401 + ], + [ + 8.9930499, + 48.692660901 + ], + [ + 8.9933908, + 48.692759001 + ], + [ + 8.993609, + 48.692818701 + ], + [ + 8.9942235, + 48.692974901 + ], + [ + 8.9945694, + 48.693050901 + ], + [ + 8.9949264, + 48.693125001 + ], + [ + 8.9953093, + 48.693200001 + ], + [ + 8.9956916, + 48.693264401 + ], + [ + 8.9959676, + 48.693305101 + ], + [ + 8.9964082, + 48.693366201 + ], + [ + 8.9966473, + 48.693395601 + ], + [ + 8.997068, + 48.693434901 + ], + [ + 8.9975604, + 48.693475901 + ], + [ + 8.9980432, + 48.693503901 + ], + [ + 8.9985819, + 48.693525501 + ], + [ + 8.9990872, + 48.693540101 + ], + [ + 8.9995526, + 48.693547701 + ], + [ + 8.9998104, + 48.693550201 + ], + [ + 9.0002657, + 48.693556001 + ], + [ + 9.0005438, + 48.693558101 + ], + [ + 9.001049996, + 48.693564578 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de378", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.69356492530169,9.00107716804409,48.69363337872964,9.00373445680072", + "point": "48.69356492530169,9.00107716804409", + "startLcPosition": "37", + "impact": { + "lower": "B\u00f6blingen-Ost", + "upper": "B\u00f6blingen-Hulb", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | B\u00f6blingen-Hulb - B\u00f6blingen-Ost", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.69356492530169, + "long": 9.00107716804409 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 2.7 km hinter AS B\u00f6blingen-Hulb und 2.6 km vor AS B\u00f6blingen-Ost", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.001077168, + 48.693564925 + ], + [ + 9.0016382, + 48.693572101 + ], + [ + 9.0023149, + 48.693587201 + ], + [ + 9.0027577, + 48.693599101 + ], + [ + 9.0034335, + 48.693621801 + ], + [ + 9.003734457, + 48.693633379 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de349", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.69356492530169,9.00107716804409,48.69363337872964,9.00373445680072", + "point": "48.69356492530169,9.00107716804409", + "startLcPosition": "37", + "impact": { + "lower": "B\u00f6blingen-Ost", + "upper": "B\u00f6blingen-Hulb", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | B\u00f6blingen-Hulb - B\u00f6blingen-Ost", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.69356492530169, + "long": 9.00107716804409 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 2.7 km hinter AS B\u00f6blingen-Hulb und 2.6 km vor AS B\u00f6blingen-Ost", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.001077168, + 48.693564925 + ], + [ + 9.0016382, + 48.693572101 + ], + [ + 9.0023149, + 48.693587201 + ], + [ + 9.0027577, + 48.693599101 + ], + [ + 9.0034335, + 48.693621801 + ], + [ + 9.003734457, + 48.693633379 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-fbm.2026-02-02_20-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de275", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.68279093638385,8.970475784494834,48.720744628198126,9.058110548343869", + "point": "48.68279093638385,8.970475784494834", + "startLcPosition": "37", + "impact": { + "lower": "Stuttgart", + "upper": "B\u00f6blingen-Hulb", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | B\u00f6blingen-Hulb - Stuttgart", + "coordinate": { + "lat": 48.68279093638385, + "long": 8.970475784494834 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 20:00 bis zum 11.04.26 05:00 Uhr.", + "11.04.26 20:00 bis zum 12.04.26 05:00 Uhr.", + "12.04.26 20:00 bis zum 13.04.26 05:00 Uhr.", + "", + "A81: Singen -> Stuttgart, zwischen AS B\u00f6blingen-Hulb und 1.5 km vor AK Stuttgart", + "", + "L\u00e4nge: 8.36 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.970475784, + 48.682790936 + ], + [ + 8.9706821, + 48.682893301 + ], + [ + 8.9708848, + 48.682991901 + ], + [ + 8.9711843, + 48.683127901 + ], + [ + 8.9714877, + 48.683259501 + ], + [ + 8.9719082, + 48.683431701 + ], + [ + 8.9721189, + 48.683514201 + ], + [ + 8.9723235, + 48.683592301 + ], + [ + 8.9725539, + 48.683676601 + ], + [ + 8.9727915, + 48.683761401 + ], + [ + 8.9731724, + 48.683890001 + ], + [ + 8.9734124, + 48.683968201 + ], + [ + 8.9738507, + 48.684107201 + ], + [ + 8.9742993, + 48.684241501 + ], + [ + 8.9747186, + 48.684364201 + ], + [ + 8.9751896, + 48.684496001 + ], + [ + 8.9755328, + 48.684590701 + ], + [ + 8.9758504, + 48.684677801 + ], + [ + 8.976049, + 48.684732701 + ], + [ + 8.9767886, + 48.684936901 + ], + [ + 8.9772562, + 48.685069201 + ], + [ + 8.9778, + 48.685220401 + ], + [ + 8.9781048, + 48.685309501 + ], + [ + 8.9786075, + 48.685459901 + ], + [ + 8.9790984, + 48.685610401 + ], + [ + 8.9795666, + 48.685763201 + ], + [ + 8.9799868, + 48.685908901 + ], + [ + 8.9804267, + 48.686069001 + ], + [ + 8.9808726, + 48.686239901 + ], + [ + 8.9812992, + 48.686408101 + ], + [ + 8.9817213, + 48.686585601 + ], + [ + 8.9822936, + 48.686838401 + ], + [ + 8.9827101, + 48.687034901 + ], + [ + 8.9831871, + 48.687268201 + ], + [ + 8.9835783, + 48.687465901 + ], + [ + 8.9839253, + 48.687653401 + ], + [ + 8.9842368, + 48.687822601 + ], + [ + 8.984574, + 48.688012401 + ], + [ + 8.9848653, + 48.688182901 + ], + [ + 8.985114, + 48.688337401 + ], + [ + 8.9853765, + 48.688498001 + ], + [ + 8.9857278, + 48.688725601 + ], + [ + 8.986033, + 48.688926301 + ], + [ + 8.9863426, + 48.689134101 + ], + [ + 8.9866898, + 48.689368201 + ], + [ + 8.9870056, + 48.689583601 + ], + [ + 8.9873523, + 48.689817301 + ], + [ + 8.9878694, + 48.690165901 + ], + [ + 8.9881881, + 48.690373801 + ], + [ + 8.9885851, + 48.690625801 + ], + [ + 8.9889357, + 48.690841201 + ], + [ + 8.9891177, + 48.690950201 + ], + [ + 8.9893152, + 48.691064901 + ], + [ + 8.9896692, + 48.691263201 + ], + [ + 8.989948, + 48.691415401 + ], + [ + 8.9902819, + 48.691581901 + ], + [ + 8.9905926, + 48.691731401 + ], + [ + 8.9908499, + 48.691850001 + ], + [ + 8.9911866, + 48.691993901 + ], + [ + 8.9914806, + 48.692115701 + ], + [ + 8.9918396, + 48.692255501 + ], + [ + 8.9921547, + 48.692368001 + ], + [ + 8.992478, + 48.692479501 + ], + [ + 8.992776, + 48.692576401 + ], + [ + 8.9930499, + 48.692660901 + ], + [ + 8.9933908, + 48.692759001 + ], + [ + 8.993609, + 48.692818701 + ], + [ + 8.9942235, + 48.692974901 + ], + [ + 8.9945694, + 48.693050901 + ], + [ + 8.9949264, + 48.693125001 + ], + [ + 8.9953093, + 48.693200001 + ], + [ + 8.9956916, + 48.693264401 + ], + [ + 8.9959676, + 48.693305101 + ], + [ + 8.9964082, + 48.693366201 + ], + [ + 8.9966473, + 48.693395601 + ], + [ + 8.997068, + 48.693434901 + ], + [ + 8.9975604, + 48.693475901 + ], + [ + 8.9980432, + 48.693503901 + ], + [ + 8.9985819, + 48.693525501 + ], + [ + 8.9990872, + 48.693540101 + ], + [ + 8.9995526, + 48.693547701 + ], + [ + 8.9998104, + 48.693550201 + ], + [ + 9.0002657, + 48.693556001 + ], + [ + 9.0005438, + 48.693558101 + ], + [ + 9.0016382, + 48.693572101 + ], + [ + 9.0023149, + 48.693587201 + ], + [ + 9.0027577, + 48.693599101 + ], + [ + 9.0034335, + 48.693621801 + ], + [ + 9.0039508, + 48.693641701 + ], + [ + 9.0044896, + 48.693665301 + ], + [ + 9.0049323, + 48.693686301 + ], + [ + 9.0055371, + 48.693719601 + ], + [ + 9.0058219, + 48.693735701 + ], + [ + 9.0061001, + 48.693751701 + ], + [ + 9.0065682, + 48.693781301 + ], + [ + 9.0070021, + 48.693811601 + ], + [ + 9.0077916, + 48.693869701 + ], + [ + 9.0084371, + 48.693924001 + ], + [ + 9.0090769, + 48.693988301 + ], + [ + 9.0094838, + 48.694037101 + ], + [ + 9.0097531, + 48.694072801 + ], + [ + 9.0101979, + 48.694137701 + ], + [ + 9.01044, + 48.694177901 + ], + [ + 9.0106735, + 48.694217901 + ], + [ + 9.0110384, + 48.694288001 + ], + [ + 9.0114061, + 48.694366501 + ], + [ + 9.0118537, + 48.694468001 + ], + [ + 9.0122614, + 48.694571201 + ], + [ + 9.0127622, + 48.694706601 + ], + [ + 9.0131867, + 48.694830301 + ], + [ + 9.0135487, + 48.694942801 + ], + [ + 9.0139728, + 48.695080601 + ], + [ + 9.014072, + 48.695116001 + ], + [ + 9.0141473, + 48.695139401 + ], + [ + 9.0142546, + 48.695177401 + ], + [ + 9.0144141, + 48.695229701 + ], + [ + 9.0146013, + 48.695279101 + ], + [ + 9.0147245, + 48.695308801 + ], + [ + 9.0148418, + 48.695331001 + ], + [ + 9.014953, + 48.695353001 + ], + [ + 9.0152472, + 48.695401601 + ], + [ + 9.0153902, + 48.695430301 + ], + [ + 9.0155293, + 48.695464301 + ], + [ + 9.0156764, + 48.695503801 + ], + [ + 9.0158209, + 48.695547801 + ], + [ + 9.0161138, + 48.695651501 + ], + [ + 9.0164956, + 48.695810901 + ], + [ + 9.0168546, + 48.695969401 + ], + [ + 9.0171798, + 48.696113601 + ], + [ + 9.0178718, + 48.696435801 + ], + [ + 9.0190442, + 48.696995101 + ], + [ + 9.0196128, + 48.697280801 + ], + [ + 9.020192, + 48.697584101 + ], + [ + 9.020467, + 48.697721001 + ], + [ + 9.0213325, + 48.698153601 + ], + [ + 9.0223024, + 48.698644101 + ], + [ + 9.0231813, + 48.699082101 + ], + [ + 9.0237476, + 48.699354201 + ], + [ + 9.0251199, + 48.699990401 + ], + [ + 9.025258, + 48.700058001 + ], + [ + 9.0253948, + 48.700134501 + ], + [ + 9.0254966, + 48.700201001 + ], + [ + 9.025597, + 48.700272901 + ], + [ + 9.0256962, + 48.700355001 + ], + [ + 9.0257893, + 48.700440101 + ], + [ + 9.0259398, + 48.700600201 + ], + [ + 9.0260612, + 48.700734001 + ], + [ + 9.0261276, + 48.700797401 + ], + [ + 9.0261947, + 48.700856701 + ], + [ + 9.0263129, + 48.700944701 + ], + [ + 9.0264249, + 48.701007601 + ], + [ + 9.0265382, + 48.701055601 + ], + [ + 9.0266353, + 48.701095101 + ], + [ + 9.0267084, + 48.701123101 + ], + [ + 9.0267605, + 48.701142901 + ], + [ + 9.0269467, + 48.701210301 + ], + [ + 9.0272379, + 48.701320601 + ], + [ + 9.027478, + 48.701406801 + ], + [ + 9.0276974, + 48.701484001 + ], + [ + 9.0278943, + 48.701550101 + ], + [ + 9.0281282, + 48.701628401 + ], + [ + 9.028345, + 48.701697301 + ], + [ + 9.028543, + 48.701758201 + ], + [ + 9.0287632, + 48.701823901 + ], + [ + 9.0289898, + 48.701890801 + ], + [ + 9.0292289, + 48.701957001 + ], + [ + 9.029473, + 48.702023501 + ], + [ + 9.0298699, + 48.702126601 + ], + [ + 9.0301304, + 48.702192101 + ], + [ + 9.0305475, + 48.702294601 + ], + [ + 9.0308192, + 48.702358001 + ], + [ + 9.0310953, + 48.702418801 + ], + [ + 9.0312902, + 48.702461701 + ], + [ + 9.0315443, + 48.702515101 + ], + [ + 9.0317567, + 48.702559001 + ], + [ + 9.0320029, + 48.702607001 + ], + [ + 9.0321964, + 48.702643101 + ], + [ + 9.0324028, + 48.702680401 + ], + [ + 9.0326502, + 48.702725301 + ], + [ + 9.0329054, + 48.702769401 + ], + [ + 9.0331508, + 48.702809801 + ], + [ + 9.0334056, + 48.702850101 + ], + [ + 9.0336585, + 48.702888001 + ], + [ + 9.0338352, + 48.702913001 + ], + [ + 9.0340194, + 48.702938801 + ], + [ + 9.0343747, + 48.702986701 + ], + [ + 9.0347949, + 48.703039801 + ], + [ + 9.0350853, + 48.703072901 + ], + [ + 9.0353196, + 48.703099001 + ], + [ + 9.0355371, + 48.703121301 + ], + [ + 9.0357817, + 48.703144801 + ], + [ + 9.0360319, + 48.703167401 + ], + [ + 9.0362552, + 48.703186301 + ], + [ + 9.0364975, + 48.703205601 + ], + [ + 9.0367592, + 48.703225401 + ], + [ + 9.0369834, + 48.703241901 + ], + [ + 9.0372195, + 48.703258001 + ], + [ + 9.0374727, + 48.703274801 + ], + [ + 9.0377274, + 48.703291901 + ], + [ + 9.0379742, + 48.703308001 + ], + [ + 9.0381485, + 48.703318901 + ], + [ + 9.0389337, + 48.703372001 + ], + [ + 9.0393522, + 48.703400701 + ], + [ + 9.039741, + 48.703427701 + ], + [ + 9.0403835, + 48.703476201 + ], + [ + 9.0408354, + 48.703509401 + ], + [ + 9.0412258, + 48.703538201 + ], + [ + 9.041392, + 48.703549901 + ], + [ + 9.0415529, + 48.703563801 + ], + [ + 9.0418234, + 48.703590101 + ], + [ + 9.0422261, + 48.703636601 + ], + [ + 9.042514, + 48.703671401 + ], + [ + 9.0429844, + 48.703734801 + ], + [ + 9.0434459, + 48.703804801 + ], + [ + 9.0436102, + 48.703832601 + ], + [ + 9.0437776, + 48.703860301 + ], + [ + 9.0441607, + 48.703930401 + ], + [ + 9.0443531, + 48.703968501 + ], + [ + 9.0445348, + 48.704004101 + ], + [ + 9.0454126, + 48.704200901 + ], + [ + 9.0458326, + 48.704325601 + ], + [ + 9.0460671, + 48.704393801 + ], + [ + 9.0462824, + 48.704457801 + ], + [ + 9.0466371, + 48.704575001 + ], + [ + 9.0468946, + 48.704665401 + ], + [ + 9.0471077, + 48.704742101 + ], + [ + 9.0473346, + 48.704825601 + ], + [ + 9.0476556, + 48.704955301 + ], + [ + 9.0478661, + 48.705045201 + ], + [ + 9.0481324, + 48.705162001 + ], + [ + 9.0484348, + 48.705300501 + ], + [ + 9.0488203, + 48.705495101 + ], + [ + 9.0490517, + 48.705613801 + ], + [ + 9.0493398, + 48.705772601 + ], + [ + 9.0495432, + 48.705889101 + ], + [ + 9.0498805, + 48.706097001 + ], + [ + 9.0499805, + 48.706162001 + ], + [ + 9.0501276, + 48.706257601 + ], + [ + 9.0504276, + 48.706462501 + ], + [ + 9.0507776, + 48.706723601 + ], + [ + 9.0511821, + 48.707050001 + ], + [ + 9.0513906, + 48.707229001 + ], + [ + 9.0516236, + 48.707442301 + ], + [ + 9.0517735, + 48.707586901 + ], + [ + 9.051913, + 48.707727401 + ], + [ + 9.0520484, + 48.707867001 + ], + [ + 9.0521824, + 48.708011901 + ], + [ + 9.0523092, + 48.708154701 + ], + [ + 9.0524466, + 48.708319601 + ], + [ + 9.05257, + 48.708472101 + ], + [ + 9.052672, + 48.708605601 + ], + [ + 9.05279, + 48.708768801 + ], + [ + 9.0528323, + 48.708827501 + ], + [ + 9.0529002, + 48.708921701 + ], + [ + 9.0530202, + 48.709101001 + ], + [ + 9.0531257, + 48.709269701 + ], + [ + 9.0532788, + 48.709534001 + ], + [ + 9.0533682, + 48.709698501 + ], + [ + 9.0534486, + 48.709861801 + ], + [ + 9.0535397, + 48.710054701 + ], + [ + 9.0536154, + 48.710227501 + ], + [ + 9.0536772, + 48.710377301 + ], + [ + 9.0537316, + 48.710521101 + ], + [ + 9.0537851, + 48.710674201 + ], + [ + 9.0538433, + 48.710850501 + ], + [ + 9.0538983, + 48.711043701 + ], + [ + 9.0539373, + 48.711191801 + ], + [ + 9.0539774, + 48.711366201 + ], + [ + 9.0540161, + 48.711568701 + ], + [ + 9.0540446, + 48.711726301 + ], + [ + 9.0540657, + 48.711879101 + ], + [ + 9.0540896, + 48.712068401 + ], + [ + 9.0540989, + 48.712175901 + ], + [ + 9.0541089, + 48.712342101 + ], + [ + 9.0541181, + 48.712543901 + ], + [ + 9.0541204, + 48.712706801 + ], + [ + 9.0541212, + 48.712866901 + ], + [ + 9.0541182, + 48.713179001 + ], + [ + 9.054109, + 48.713517801 + ], + [ + 9.0541013, + 48.713853801 + ], + [ + 9.0540967, + 48.714068001 + ], + [ + 9.0540967, + 48.714374801 + ], + [ + 9.0541058, + 48.714700101 + ], + [ + 9.0541164, + 48.714864201 + ], + [ + 9.0541327, + 48.715050901 + ], + [ + 9.0541585, + 48.715248901 + ], + [ + 9.0541801, + 48.715388001 + ], + [ + 9.0542106, + 48.715555401 + ], + [ + 9.0542457, + 48.715721201 + ], + [ + 9.0542766, + 48.715850401 + ], + [ + 9.0543071, + 48.715969301 + ], + [ + 9.0543774, + 48.716215901 + ], + [ + 9.0544382, + 48.716392901 + ], + [ + 9.0545034, + 48.716577301 + ], + [ + 9.0545551, + 48.716711001 + ], + [ + 9.0546111, + 48.716842001 + ], + [ + 9.0547321, + 48.717102801 + ], + [ + 9.0548651, + 48.717372401 + ], + [ + 9.0549829, + 48.717581901 + ], + [ + 9.0550404, + 48.717685501 + ], + [ + 9.0550986, + 48.717781001 + ], + [ + 9.0551936, + 48.717932901 + ], + [ + 9.0552959, + 48.718081901 + ], + [ + 9.0553911, + 48.718222201 + ], + [ + 9.0554759, + 48.718331901 + ], + [ + 9.0555483, + 48.718435601 + ], + [ + 9.0556677, + 48.718588801 + ], + [ + 9.0558, + 48.718750201 + ], + [ + 9.0558855, + 48.718848701 + ], + [ + 9.0559765, + 48.718952601 + ], + [ + 9.056236, + 48.719235901 + ], + [ + 9.0563448, + 48.719341501 + ], + [ + 9.056434, + 48.719427701 + ], + [ + 9.0565316, + 48.719522801 + ], + [ + 9.0567215, + 48.719699101 + ], + [ + 9.0568831, + 48.719836001 + ], + [ + 9.0570318, + 48.719957201 + ], + [ + 9.0572552, + 48.720133301 + ], + [ + 9.0575118, + 48.720317801 + ], + [ + 9.0576978, + 48.720454501 + ], + [ + 9.0578778, + 48.720584901 + ], + [ + 9.0580713, + 48.720718101 + ], + [ + 9.058110548, + 48.720744628 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de374", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.69363337872964,9.00373445680072,48.703390267651294,9.03920006031373", + "point": "48.69363337872964,9.00373445680072", + "startLcPosition": "38", + "impact": { + "lower": "Sindelfingen-Ost", + "upper": "B\u00f6blingen/Sindelfingen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | B\u00f6blingen/Sindelfingen - Sindelfingen-Ost", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.69363337872964, + "long": 9.00373445680072 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 0.1 km hinter AS B\u00f6blingen/Sindelfingen und 0.4 km vor AS Sindelfingen-Ost", + "", + "L\u00e4nge: 2.89 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.003734457, + 48.693633379 + ], + [ + 9.0039508, + 48.693641701 + ], + [ + 9.0044896, + 48.693665301 + ], + [ + 9.0049323, + 48.693686301 + ], + [ + 9.0055371, + 48.693719601 + ], + [ + 9.0058219, + 48.693735701 + ], + [ + 9.0061001, + 48.693751701 + ], + [ + 9.0065682, + 48.693781301 + ], + [ + 9.0070021, + 48.693811601 + ], + [ + 9.0077916, + 48.693869701 + ], + [ + 9.0084371, + 48.693924001 + ], + [ + 9.0090769, + 48.693988301 + ], + [ + 9.0094838, + 48.694037101 + ], + [ + 9.0097531, + 48.694072801 + ], + [ + 9.0101979, + 48.694137701 + ], + [ + 9.01044, + 48.694177901 + ], + [ + 9.0106735, + 48.694217901 + ], + [ + 9.0110384, + 48.694288001 + ], + [ + 9.0114061, + 48.694366501 + ], + [ + 9.0118537, + 48.694468001 + ], + [ + 9.0122614, + 48.694571201 + ], + [ + 9.0127622, + 48.694706601 + ], + [ + 9.0131867, + 48.694830301 + ], + [ + 9.0135487, + 48.694942801 + ], + [ + 9.0139728, + 48.695080601 + ], + [ + 9.014072, + 48.695116001 + ], + [ + 9.0141473, + 48.695139401 + ], + [ + 9.0142546, + 48.695177401 + ], + [ + 9.0144141, + 48.695229701 + ], + [ + 9.0146013, + 48.695279101 + ], + [ + 9.0147245, + 48.695308801 + ], + [ + 9.0148418, + 48.695331001 + ], + [ + 9.014953, + 48.695353001 + ], + [ + 9.0152472, + 48.695401601 + ], + [ + 9.0153902, + 48.695430301 + ], + [ + 9.0155293, + 48.695464301 + ], + [ + 9.0156764, + 48.695503801 + ], + [ + 9.0158209, + 48.695547801 + ], + [ + 9.0161138, + 48.695651501 + ], + [ + 9.0164956, + 48.695810901 + ], + [ + 9.0168546, + 48.695969401 + ], + [ + 9.0171798, + 48.696113601 + ], + [ + 9.0178718, + 48.696435801 + ], + [ + 9.0190442, + 48.696995101 + ], + [ + 9.0196128, + 48.697280801 + ], + [ + 9.020192, + 48.697584101 + ], + [ + 9.020467, + 48.697721001 + ], + [ + 9.0213325, + 48.698153601 + ], + [ + 9.0223024, + 48.698644101 + ], + [ + 9.0231813, + 48.699082101 + ], + [ + 9.0237476, + 48.699354201 + ], + [ + 9.0251199, + 48.699990401 + ], + [ + 9.025258, + 48.700058001 + ], + [ + 9.0253948, + 48.700134501 + ], + [ + 9.0254966, + 48.700201001 + ], + [ + 9.025597, + 48.700272901 + ], + [ + 9.0256962, + 48.700355001 + ], + [ + 9.0257893, + 48.700440101 + ], + [ + 9.0259398, + 48.700600201 + ], + [ + 9.0260612, + 48.700734001 + ], + [ + 9.0261276, + 48.700797401 + ], + [ + 9.0261947, + 48.700856701 + ], + [ + 9.0263129, + 48.700944701 + ], + [ + 9.0264249, + 48.701007601 + ], + [ + 9.0265382, + 48.701055601 + ], + [ + 9.0266353, + 48.701095101 + ], + [ + 9.0267084, + 48.701123101 + ], + [ + 9.0267605, + 48.701142901 + ], + [ + 9.0269467, + 48.701210301 + ], + [ + 9.0272379, + 48.701320601 + ], + [ + 9.027478, + 48.701406801 + ], + [ + 9.0276974, + 48.701484001 + ], + [ + 9.0278943, + 48.701550101 + ], + [ + 9.0281282, + 48.701628401 + ], + [ + 9.028345, + 48.701697301 + ], + [ + 9.028543, + 48.701758201 + ], + [ + 9.0287632, + 48.701823901 + ], + [ + 9.0289898, + 48.701890801 + ], + [ + 9.0292289, + 48.701957001 + ], + [ + 9.029473, + 48.702023501 + ], + [ + 9.0298699, + 48.702126601 + ], + [ + 9.0301304, + 48.702192101 + ], + [ + 9.0305475, + 48.702294601 + ], + [ + 9.0308192, + 48.702358001 + ], + [ + 9.0310953, + 48.702418801 + ], + [ + 9.0312902, + 48.702461701 + ], + [ + 9.0315443, + 48.702515101 + ], + [ + 9.0317567, + 48.702559001 + ], + [ + 9.0320029, + 48.702607001 + ], + [ + 9.0321964, + 48.702643101 + ], + [ + 9.0324028, + 48.702680401 + ], + [ + 9.0326502, + 48.702725301 + ], + [ + 9.0329054, + 48.702769401 + ], + [ + 9.0331508, + 48.702809801 + ], + [ + 9.0334056, + 48.702850101 + ], + [ + 9.0336585, + 48.702888001 + ], + [ + 9.0338352, + 48.702913001 + ], + [ + 9.0340194, + 48.702938801 + ], + [ + 9.0343747, + 48.702986701 + ], + [ + 9.0347949, + 48.703039801 + ], + [ + 9.0350853, + 48.703072901 + ], + [ + 9.0353196, + 48.703099001 + ], + [ + 9.0355371, + 48.703121301 + ], + [ + 9.0357817, + 48.703144801 + ], + [ + 9.0360319, + 48.703167401 + ], + [ + 9.0362552, + 48.703186301 + ], + [ + 9.0364975, + 48.703205601 + ], + [ + 9.0367592, + 48.703225401 + ], + [ + 9.0369834, + 48.703241901 + ], + [ + 9.0372195, + 48.703258001 + ], + [ + 9.0374727, + 48.703274801 + ], + [ + 9.0377274, + 48.703291901 + ], + [ + 9.0379742, + 48.703308001 + ], + [ + 9.0381485, + 48.703318901 + ], + [ + 9.0389337, + 48.703372001 + ], + [ + 9.03920006, + 48.703390268 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de365", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.69367981607442,9.00104671275708,48.684327052253316,8.974174523489861", + "point": "48.69367981607442,9.00104671275708", + "startLcPosition": "38", + "impact": { + "lower": "B\u00f6blingen-Hulb", + "upper": "B\u00f6blingen/Sindelfingen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | B\u00f6blingen/Sindelfingen - B\u00f6blingen-Hulb", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.69367981607442, + "long": 9.00104671275708 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 0.1 km hinter AS B\u00f6blingen/Sindelfingen und 0.4 km vor AS B\u00f6blingen-Hulb", + "", + "L\u00e4nge: 2.29 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.001046713, + 48.693679816 + ], + [ + 9.0005294, + 48.693673501 + ], + [ + 8.99991, + 48.693666201 + ], + [ + 8.9992605, + 48.693654701 + ], + [ + 8.9989105, + 48.693647601 + ], + [ + 8.9985823, + 48.693638501 + ], + [ + 8.9980705, + 48.693616801 + ], + [ + 8.9975677, + 48.693586001 + ], + [ + 8.9970921, + 48.693548701 + ], + [ + 8.9968377, + 48.693524401 + ], + [ + 8.9966036, + 48.693497901 + ], + [ + 8.9963664, + 48.693469201 + ], + [ + 8.9961296, + 48.693438101 + ], + [ + 8.9958964, + 48.693404801 + ], + [ + 8.9954422, + 48.693333201 + ], + [ + 8.9951846, + 48.693287701 + ], + [ + 8.9949092, + 48.693235001 + ], + [ + 8.9944802, + 48.693146501 + ], + [ + 8.9942475, + 48.693094301 + ], + [ + 8.9940287, + 48.693042201 + ], + [ + 8.9937517, + 48.692973101 + ], + [ + 8.9935394, + 48.692917701 + ], + [ + 8.9933414, + 48.692862701 + ], + [ + 8.9931223, + 48.692800401 + ], + [ + 8.9928946, + 48.692734401 + ], + [ + 8.9926366, + 48.692653401 + ], + [ + 8.9922334, + 48.692519801 + ], + [ + 8.992008, + 48.692440701 + ], + [ + 8.9917788, + 48.692357201 + ], + [ + 8.9915587, + 48.692273401 + ], + [ + 8.9913578, + 48.692193401 + ], + [ + 8.991159, + 48.692112001 + ], + [ + 8.9909322, + 48.692014601 + ], + [ + 8.9907418, + 48.691931201 + ], + [ + 8.9905435, + 48.691841001 + ], + [ + 8.990322, + 48.691736201 + ], + [ + 8.9901294, + 48.691641801 + ], + [ + 8.9899314, + 48.691542401 + ], + [ + 8.9897354, + 48.691439501 + ], + [ + 8.9895449, + 48.691336601 + ], + [ + 8.9893594, + 48.691233401 + ], + [ + 8.9891721, + 48.691126801 + ], + [ + 8.9889957, + 48.691023001 + ], + [ + 8.9888341, + 48.690927201 + ], + [ + 8.9886684, + 48.690826001 + ], + [ + 8.9884801, + 48.690710901 + ], + [ + 8.9882756, + 48.690580701 + ], + [ + 8.988097, + 48.690465601 + ], + [ + 8.987928, + 48.690355501 + ], + [ + 8.9877497, + 48.690238901 + ], + [ + 8.9874226, + 48.690020201 + ], + [ + 8.98709, + 48.689796701 + ], + [ + 8.9868365, + 48.689624001 + ], + [ + 8.9865755, + 48.689446601 + ], + [ + 8.9862403, + 48.689219601 + ], + [ + 8.9859054, + 48.688995701 + ], + [ + 8.9857012, + 48.688859901 + ], + [ + 8.9855464, + 48.688758601 + ], + [ + 8.9853841, + 48.688653901 + ], + [ + 8.9851461, + 48.688502301 + ], + [ + 8.9849509, + 48.688382301 + ], + [ + 8.9847553, + 48.688263001 + ], + [ + 8.9845677, + 48.688151501 + ], + [ + 8.9844051, + 48.688058801 + ], + [ + 8.9842347, + 48.687960901 + ], + [ + 8.9840376, + 48.687850501 + ], + [ + 8.9838224, + 48.687733501 + ], + [ + 8.9832899, + 48.687453401 + ], + [ + 8.9830639, + 48.687338701 + ], + [ + 8.9828692, + 48.687242001 + ], + [ + 8.9826565, + 48.687138501 + ], + [ + 8.9824337, + 48.687034601 + ], + [ + 8.9822456, + 48.686947701 + ], + [ + 8.9820481, + 48.686858201 + ], + [ + 8.9818418, + 48.686767701 + ], + [ + 8.9816366, + 48.686678501 + ], + [ + 8.981433, + 48.686592601 + ], + [ + 8.9812518, + 48.686517801 + ], + [ + 8.9810656, + 48.686442801 + ], + [ + 8.9808377, + 48.686352801 + ], + [ + 8.9806136, + 48.686265801 + ], + [ + 8.9803922, + 48.686180801 + ], + [ + 8.9801683, + 48.686098301 + ], + [ + 8.9799781, + 48.686029801 + ], + [ + 8.9797602, + 48.685952901 + ], + [ + 8.9795775, + 48.685889301 + ], + [ + 8.9793554, + 48.685814101 + ], + [ + 8.9791491, + 48.685746901 + ], + [ + 8.9789064, + 48.685668601 + ], + [ + 8.978699, + 48.685604101 + ], + [ + 8.9784788, + 48.685538201 + ], + [ + 8.9782399, + 48.685466301 + ], + [ + 8.9780154, + 48.685400701 + ], + [ + 8.9777113, + 48.685312701 + ], + [ + 8.9773294, + 48.685204801 + ], + [ + 8.9770941, + 48.685138801 + ], + [ + 8.9764356, + 48.684958201 + ], + [ + 8.9757617, + 48.684775301 + ], + [ + 8.9755362, + 48.684713801 + ], + [ + 8.9753101, + 48.684651501 + ], + [ + 8.9750871, + 48.684589401 + ], + [ + 8.9748627, + 48.684526401 + ], + [ + 8.9746382, + 48.684462101 + ], + [ + 8.9744138, + 48.684397201 + ], + [ + 8.9741899, + 48.684331701 + ], + [ + 8.974174523, + 48.684327052 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de345", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.69363337872964,9.00373445680072,48.703390267651294,9.03920006031373", + "point": "48.69363337872964,9.00373445680072", + "startLcPosition": "38", + "impact": { + "lower": "Sindelfingen-Ost", + "upper": "B\u00f6blingen/Sindelfingen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | B\u00f6blingen/Sindelfingen - Sindelfingen-Ost", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.69363337872964, + "long": 9.00373445680072 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 0.1 km hinter AS B\u00f6blingen/Sindelfingen und 0.4 km vor AS Sindelfingen-Ost", + "", + "L\u00e4nge: 2.89 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.003734457, + 48.693633379 + ], + [ + 9.0039508, + 48.693641701 + ], + [ + 9.0044896, + 48.693665301 + ], + [ + 9.0049323, + 48.693686301 + ], + [ + 9.0055371, + 48.693719601 + ], + [ + 9.0058219, + 48.693735701 + ], + [ + 9.0061001, + 48.693751701 + ], + [ + 9.0065682, + 48.693781301 + ], + [ + 9.0070021, + 48.693811601 + ], + [ + 9.0077916, + 48.693869701 + ], + [ + 9.0084371, + 48.693924001 + ], + [ + 9.0090769, + 48.693988301 + ], + [ + 9.0094838, + 48.694037101 + ], + [ + 9.0097531, + 48.694072801 + ], + [ + 9.0101979, + 48.694137701 + ], + [ + 9.01044, + 48.694177901 + ], + [ + 9.0106735, + 48.694217901 + ], + [ + 9.0110384, + 48.694288001 + ], + [ + 9.0114061, + 48.694366501 + ], + [ + 9.0118537, + 48.694468001 + ], + [ + 9.0122614, + 48.694571201 + ], + [ + 9.0127622, + 48.694706601 + ], + [ + 9.0131867, + 48.694830301 + ], + [ + 9.0135487, + 48.694942801 + ], + [ + 9.0139728, + 48.695080601 + ], + [ + 9.014072, + 48.695116001 + ], + [ + 9.0141473, + 48.695139401 + ], + [ + 9.0142546, + 48.695177401 + ], + [ + 9.0144141, + 48.695229701 + ], + [ + 9.0146013, + 48.695279101 + ], + [ + 9.0147245, + 48.695308801 + ], + [ + 9.0148418, + 48.695331001 + ], + [ + 9.014953, + 48.695353001 + ], + [ + 9.0152472, + 48.695401601 + ], + [ + 9.0153902, + 48.695430301 + ], + [ + 9.0155293, + 48.695464301 + ], + [ + 9.0156764, + 48.695503801 + ], + [ + 9.0158209, + 48.695547801 + ], + [ + 9.0161138, + 48.695651501 + ], + [ + 9.0164956, + 48.695810901 + ], + [ + 9.0168546, + 48.695969401 + ], + [ + 9.0171798, + 48.696113601 + ], + [ + 9.0178718, + 48.696435801 + ], + [ + 9.0190442, + 48.696995101 + ], + [ + 9.0196128, + 48.697280801 + ], + [ + 9.020192, + 48.697584101 + ], + [ + 9.020467, + 48.697721001 + ], + [ + 9.0213325, + 48.698153601 + ], + [ + 9.0223024, + 48.698644101 + ], + [ + 9.0231813, + 48.699082101 + ], + [ + 9.0237476, + 48.699354201 + ], + [ + 9.0251199, + 48.699990401 + ], + [ + 9.025258, + 48.700058001 + ], + [ + 9.0253948, + 48.700134501 + ], + [ + 9.0254966, + 48.700201001 + ], + [ + 9.025597, + 48.700272901 + ], + [ + 9.0256962, + 48.700355001 + ], + [ + 9.0257893, + 48.700440101 + ], + [ + 9.0259398, + 48.700600201 + ], + [ + 9.0260612, + 48.700734001 + ], + [ + 9.0261276, + 48.700797401 + ], + [ + 9.0261947, + 48.700856701 + ], + [ + 9.0263129, + 48.700944701 + ], + [ + 9.0264249, + 48.701007601 + ], + [ + 9.0265382, + 48.701055601 + ], + [ + 9.0266353, + 48.701095101 + ], + [ + 9.0267084, + 48.701123101 + ], + [ + 9.0267605, + 48.701142901 + ], + [ + 9.0269467, + 48.701210301 + ], + [ + 9.0272379, + 48.701320601 + ], + [ + 9.027478, + 48.701406801 + ], + [ + 9.0276974, + 48.701484001 + ], + [ + 9.0278943, + 48.701550101 + ], + [ + 9.0281282, + 48.701628401 + ], + [ + 9.028345, + 48.701697301 + ], + [ + 9.028543, + 48.701758201 + ], + [ + 9.0287632, + 48.701823901 + ], + [ + 9.0289898, + 48.701890801 + ], + [ + 9.0292289, + 48.701957001 + ], + [ + 9.029473, + 48.702023501 + ], + [ + 9.0298699, + 48.702126601 + ], + [ + 9.0301304, + 48.702192101 + ], + [ + 9.0305475, + 48.702294601 + ], + [ + 9.0308192, + 48.702358001 + ], + [ + 9.0310953, + 48.702418801 + ], + [ + 9.0312902, + 48.702461701 + ], + [ + 9.0315443, + 48.702515101 + ], + [ + 9.0317567, + 48.702559001 + ], + [ + 9.0320029, + 48.702607001 + ], + [ + 9.0321964, + 48.702643101 + ], + [ + 9.0324028, + 48.702680401 + ], + [ + 9.0326502, + 48.702725301 + ], + [ + 9.0329054, + 48.702769401 + ], + [ + 9.0331508, + 48.702809801 + ], + [ + 9.0334056, + 48.702850101 + ], + [ + 9.0336585, + 48.702888001 + ], + [ + 9.0338352, + 48.702913001 + ], + [ + 9.0340194, + 48.702938801 + ], + [ + 9.0343747, + 48.702986701 + ], + [ + 9.0347949, + 48.703039801 + ], + [ + 9.0350853, + 48.703072901 + ], + [ + 9.0353196, + 48.703099001 + ], + [ + 9.0355371, + 48.703121301 + ], + [ + 9.0357817, + 48.703144801 + ], + [ + 9.0360319, + 48.703167401 + ], + [ + 9.0362552, + 48.703186301 + ], + [ + 9.0364975, + 48.703205601 + ], + [ + 9.0367592, + 48.703225401 + ], + [ + 9.0369834, + 48.703241901 + ], + [ + 9.0372195, + 48.703258001 + ], + [ + 9.0374727, + 48.703274801 + ], + [ + 9.0377274, + 48.703291901 + ], + [ + 9.0379742, + 48.703308001 + ], + [ + 9.0381485, + 48.703318901 + ], + [ + 9.0389337, + 48.703372001 + ], + [ + 9.03920006, + 48.703390268 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de336", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.69367981607442,9.00104671275708,48.684327052253316,8.974174523489861", + "point": "48.69367981607442,9.00104671275708", + "startLcPosition": "38", + "impact": { + "lower": "B\u00f6blingen-Hulb", + "upper": "B\u00f6blingen/Sindelfingen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | B\u00f6blingen/Sindelfingen - B\u00f6blingen-Hulb", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.69367981607442, + "long": 9.00104671275708 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 0.1 km hinter AS B\u00f6blingen/Sindelfingen und 0.4 km vor AS B\u00f6blingen-Hulb", + "", + "L\u00e4nge: 2.29 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.001046713, + 48.693679816 + ], + [ + 9.0005294, + 48.693673501 + ], + [ + 8.99991, + 48.693666201 + ], + [ + 8.9992605, + 48.693654701 + ], + [ + 8.9989105, + 48.693647601 + ], + [ + 8.9985823, + 48.693638501 + ], + [ + 8.9980705, + 48.693616801 + ], + [ + 8.9975677, + 48.693586001 + ], + [ + 8.9970921, + 48.693548701 + ], + [ + 8.9968377, + 48.693524401 + ], + [ + 8.9966036, + 48.693497901 + ], + [ + 8.9963664, + 48.693469201 + ], + [ + 8.9961296, + 48.693438101 + ], + [ + 8.9958964, + 48.693404801 + ], + [ + 8.9954422, + 48.693333201 + ], + [ + 8.9951846, + 48.693287701 + ], + [ + 8.9949092, + 48.693235001 + ], + [ + 8.9944802, + 48.693146501 + ], + [ + 8.9942475, + 48.693094301 + ], + [ + 8.9940287, + 48.693042201 + ], + [ + 8.9937517, + 48.692973101 + ], + [ + 8.9935394, + 48.692917701 + ], + [ + 8.9933414, + 48.692862701 + ], + [ + 8.9931223, + 48.692800401 + ], + [ + 8.9928946, + 48.692734401 + ], + [ + 8.9926366, + 48.692653401 + ], + [ + 8.9922334, + 48.692519801 + ], + [ + 8.992008, + 48.692440701 + ], + [ + 8.9917788, + 48.692357201 + ], + [ + 8.9915587, + 48.692273401 + ], + [ + 8.9913578, + 48.692193401 + ], + [ + 8.991159, + 48.692112001 + ], + [ + 8.9909322, + 48.692014601 + ], + [ + 8.9907418, + 48.691931201 + ], + [ + 8.9905435, + 48.691841001 + ], + [ + 8.990322, + 48.691736201 + ], + [ + 8.9901294, + 48.691641801 + ], + [ + 8.9899314, + 48.691542401 + ], + [ + 8.9897354, + 48.691439501 + ], + [ + 8.9895449, + 48.691336601 + ], + [ + 8.9893594, + 48.691233401 + ], + [ + 8.9891721, + 48.691126801 + ], + [ + 8.9889957, + 48.691023001 + ], + [ + 8.9888341, + 48.690927201 + ], + [ + 8.9886684, + 48.690826001 + ], + [ + 8.9884801, + 48.690710901 + ], + [ + 8.9882756, + 48.690580701 + ], + [ + 8.988097, + 48.690465601 + ], + [ + 8.987928, + 48.690355501 + ], + [ + 8.9877497, + 48.690238901 + ], + [ + 8.9874226, + 48.690020201 + ], + [ + 8.98709, + 48.689796701 + ], + [ + 8.9868365, + 48.689624001 + ], + [ + 8.9865755, + 48.689446601 + ], + [ + 8.9862403, + 48.689219601 + ], + [ + 8.9859054, + 48.688995701 + ], + [ + 8.9857012, + 48.688859901 + ], + [ + 8.9855464, + 48.688758601 + ], + [ + 8.9853841, + 48.688653901 + ], + [ + 8.9851461, + 48.688502301 + ], + [ + 8.9849509, + 48.688382301 + ], + [ + 8.9847553, + 48.688263001 + ], + [ + 8.9845677, + 48.688151501 + ], + [ + 8.9844051, + 48.688058801 + ], + [ + 8.9842347, + 48.687960901 + ], + [ + 8.9840376, + 48.687850501 + ], + [ + 8.9838224, + 48.687733501 + ], + [ + 8.9832899, + 48.687453401 + ], + [ + 8.9830639, + 48.687338701 + ], + [ + 8.9828692, + 48.687242001 + ], + [ + 8.9826565, + 48.687138501 + ], + [ + 8.9824337, + 48.687034601 + ], + [ + 8.9822456, + 48.686947701 + ], + [ + 8.9820481, + 48.686858201 + ], + [ + 8.9818418, + 48.686767701 + ], + [ + 8.9816366, + 48.686678501 + ], + [ + 8.981433, + 48.686592601 + ], + [ + 8.9812518, + 48.686517801 + ], + [ + 8.9810656, + 48.686442801 + ], + [ + 8.9808377, + 48.686352801 + ], + [ + 8.9806136, + 48.686265801 + ], + [ + 8.9803922, + 48.686180801 + ], + [ + 8.9801683, + 48.686098301 + ], + [ + 8.9799781, + 48.686029801 + ], + [ + 8.9797602, + 48.685952901 + ], + [ + 8.9795775, + 48.685889301 + ], + [ + 8.9793554, + 48.685814101 + ], + [ + 8.9791491, + 48.685746901 + ], + [ + 8.9789064, + 48.685668601 + ], + [ + 8.978699, + 48.685604101 + ], + [ + 8.9784788, + 48.685538201 + ], + [ + 8.9782399, + 48.685466301 + ], + [ + 8.9780154, + 48.685400701 + ], + [ + 8.9777113, + 48.685312701 + ], + [ + 8.9773294, + 48.685204801 + ], + [ + 8.9770941, + 48.685138801 + ], + [ + 8.9764356, + 48.684958201 + ], + [ + 8.9757617, + 48.684775301 + ], + [ + 8.9755362, + 48.684713801 + ], + [ + 8.9753101, + 48.684651501 + ], + [ + 8.9750871, + 48.684589401 + ], + [ + 8.9748627, + 48.684526401 + ], + [ + 8.9746382, + 48.684462101 + ], + [ + 8.9744138, + 48.684397201 + ], + [ + 8.9741899, + 48.684331701 + ], + [ + 8.974174523, + 48.684327052 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de384", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.70338655926486,9.039145984851713,48.705753908441785,9.049305887303301", + "point": "48.70338655926486,9.039145984851713", + "startLcPosition": "39", + "impact": { + "lower": "Stuttgart", + "upper": "B\u00f6blingen-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | B\u00f6blingen-Ost - Stuttgart", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.70338655926486, + "long": 9.039145984851713 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 0.3 km hinter AS B\u00f6blingen-Ost und 3.4 km vor AK Stuttgart", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.039145985, + 48.703386559 + ], + [ + 9.0393522, + 48.703400701 + ], + [ + 9.039741, + 48.703427701 + ], + [ + 9.0403835, + 48.703476201 + ], + [ + 9.0408354, + 48.703509401 + ], + [ + 9.0412258, + 48.703538201 + ], + [ + 9.041392, + 48.703549901 + ], + [ + 9.0415529, + 48.703563801 + ], + [ + 9.0418234, + 48.703590101 + ], + [ + 9.0422261, + 48.703636601 + ], + [ + 9.042514, + 48.703671401 + ], + [ + 9.0429844, + 48.703734801 + ], + [ + 9.0434459, + 48.703804801 + ], + [ + 9.0436102, + 48.703832601 + ], + [ + 9.0437776, + 48.703860301 + ], + [ + 9.0441607, + 48.703930401 + ], + [ + 9.0443531, + 48.703968501 + ], + [ + 9.0445348, + 48.704004101 + ], + [ + 9.0454126, + 48.704200901 + ], + [ + 9.0458326, + 48.704325601 + ], + [ + 9.0460671, + 48.704393801 + ], + [ + 9.0462824, + 48.704457801 + ], + [ + 9.0466371, + 48.704575001 + ], + [ + 9.0468946, + 48.704665401 + ], + [ + 9.0471077, + 48.704742101 + ], + [ + 9.0473346, + 48.704825601 + ], + [ + 9.0476556, + 48.704955301 + ], + [ + 9.0478661, + 48.705045201 + ], + [ + 9.0481324, + 48.705162001 + ], + [ + 9.0484348, + 48.705300501 + ], + [ + 9.0488203, + 48.705495101 + ], + [ + 9.0490517, + 48.705613801 + ], + [ + 9.049305887, + 48.705753908 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de355", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.70338655926486,9.039145984851713,48.705753908441785,9.049305887303301", + "point": "48.70338655926486,9.039145984851713", + "startLcPosition": "39", + "impact": { + "lower": "Stuttgart", + "upper": "B\u00f6blingen-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | B\u00f6blingen-Ost - Stuttgart", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.70338655926486, + "long": 9.039145984851713 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 0.3 km hinter AS B\u00f6blingen-Ost und 3.4 km vor AK Stuttgart", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.039145985, + 48.703386559 + ], + [ + 9.0393522, + 48.703400701 + ], + [ + 9.039741, + 48.703427701 + ], + [ + 9.0403835, + 48.703476201 + ], + [ + 9.0408354, + 48.703509401 + ], + [ + 9.0412258, + 48.703538201 + ], + [ + 9.041392, + 48.703549901 + ], + [ + 9.0415529, + 48.703563801 + ], + [ + 9.0418234, + 48.703590101 + ], + [ + 9.0422261, + 48.703636601 + ], + [ + 9.042514, + 48.703671401 + ], + [ + 9.0429844, + 48.703734801 + ], + [ + 9.0434459, + 48.703804801 + ], + [ + 9.0436102, + 48.703832601 + ], + [ + 9.0437776, + 48.703860301 + ], + [ + 9.0441607, + 48.703930401 + ], + [ + 9.0443531, + 48.703968501 + ], + [ + 9.0445348, + 48.704004101 + ], + [ + 9.0454126, + 48.704200901 + ], + [ + 9.0458326, + 48.704325601 + ], + [ + 9.0460671, + 48.704393801 + ], + [ + 9.0462824, + 48.704457801 + ], + [ + 9.0466371, + 48.704575001 + ], + [ + 9.0468946, + 48.704665401 + ], + [ + 9.0471077, + 48.704742101 + ], + [ + 9.0473346, + 48.704825601 + ], + [ + 9.0476556, + 48.704955301 + ], + [ + 9.0478661, + 48.705045201 + ], + [ + 9.0481324, + 48.705162001 + ], + [ + 9.0484348, + 48.705300501 + ], + [ + 9.0488203, + 48.705495101 + ], + [ + 9.0490517, + 48.705613801 + ], + [ + 9.049305887, + 48.705753908 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de380", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.693746252059405,9.003724644627368,48.69368014772508,9.001073885657174", + "point": "48.693746252059405,9.003724644627368", + "startLcPosition": "39", + "impact": { + "lower": "B\u00f6blingen-Hulb", + "upper": "B\u00f6blingen-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | B\u00f6blingen-Ost - B\u00f6blingen-Hulb", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.693746252059405, + "long": 9.003724644627368 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 2.6 km hinter AS B\u00f6blingen-Ost und 2.7 km vor AS B\u00f6blingen-Hulb", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.003724645, + 48.693746252 + ], + [ + 9.0034214, + 48.693734801 + ], + [ + 9.0032625, + 48.693729601 + ], + [ + 9.002075, + 48.693711501 + ], + [ + 9.0012749, + 48.693682601 + ], + [ + 9.001073886, + 48.693680148 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de351", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.693746252059405,9.003724644627368,48.69368014772508,9.001073885657174", + "point": "48.693746252059405,9.003724644627368", + "startLcPosition": "39", + "impact": { + "lower": "B\u00f6blingen-Hulb", + "upper": "B\u00f6blingen-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | B\u00f6blingen-Ost - B\u00f6blingen-Hulb", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.693746252059405, + "long": 9.003724644627368 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 2.6 km hinter AS B\u00f6blingen-Ost und 2.7 km vor AS B\u00f6blingen-Hulb", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.003724645, + 48.693746252 + ], + [ + 9.0034214, + 48.693734801 + ], + [ + 9.0032625, + 48.693729601 + ], + [ + 9.002075, + 48.693711501 + ], + [ + 9.0012749, + 48.693682601 + ], + [ + 9.001073886, + 48.693680148 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de376", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.70351900830041,9.039180585571657,48.693746252059405,9.003724644627368", + "point": "48.70351900830041,9.039180585571657", + "startLcPosition": "40", + "impact": { + "lower": "B\u00f6blingen/Sindelfingen", + "upper": "Sindelfingen-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Sindelfingen-Ost - B\u00f6blingen/Sindelfingen", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.70351900830041, + "long": 9.039180585571657 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 0.4 km hinter AS Sindelfingen-Ost und 0.1 km vor AS B\u00f6blingen/Sindelfingen", + "", + "L\u00e4nge: 2.89 km | Maximale Durchfahrtsbreite: 6 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.039180586, + 48.703519008 + ], + [ + 9.038813, + 48.703495401 + ], + [ + 9.0381769, + 48.703452301 + ], + [ + 9.0374259, + 48.703397001 + ], + [ + 9.0367747, + 48.703347801 + ], + [ + 9.0360807, + 48.703286001 + ], + [ + 9.0354054, + 48.703219901 + ], + [ + 9.0349827, + 48.703176501 + ], + [ + 9.0345494, + 48.703123401 + ], + [ + 9.0341996, + 48.703080001 + ], + [ + 9.0338434, + 48.703029601 + ], + [ + 9.033449, + 48.702971301 + ], + [ + 9.033174, + 48.702928701 + ], + [ + 9.0328815, + 48.702880801 + ], + [ + 9.0325436, + 48.702822901 + ], + [ + 9.0322951, + 48.702777801 + ], + [ + 9.0320448, + 48.702730901 + ], + [ + 9.031798, + 48.702684101 + ], + [ + 9.0315195, + 48.702627701 + ], + [ + 9.0311465, + 48.702549001 + ], + [ + 9.0308891, + 48.702491701 + ], + [ + 9.0306592, + 48.702438701 + ], + [ + 9.030403, + 48.702377601 + ], + [ + 9.0302112, + 48.702331501 + ], + [ + 9.0300077, + 48.702281701 + ], + [ + 9.0297729, + 48.702222201 + ], + [ + 9.0294906, + 48.702149001 + ], + [ + 9.0290723, + 48.702035901 + ], + [ + 9.0286499, + 48.701914801 + ], + [ + 9.0282193, + 48.701782701 + ], + [ + 9.0279674, + 48.701701101 + ], + [ + 9.0277492, + 48.701628701 + ], + [ + 9.0273457, + 48.701488701 + ], + [ + 9.0271099, + 48.701403101 + ], + [ + 9.0268671, + 48.701312601 + ], + [ + 9.0267149, + 48.701253801 + ], + [ + 9.0266715, + 48.701235701 + ], + [ + 9.0266283, + 48.701217501 + ], + [ + 9.0265964, + 48.701203801 + ], + [ + 9.0265195, + 48.701168501 + ], + [ + 9.0264561, + 48.701141701 + ], + [ + 9.0263899, + 48.701112301 + ], + [ + 9.0262594, + 48.701040201 + ], + [ + 9.0261575, + 48.700969001 + ], + [ + 9.026069, + 48.700894201 + ], + [ + 9.0260054, + 48.700839001 + ], + [ + 9.0258595, + 48.700671001 + ], + [ + 9.0257898, + 48.700590401 + ], + [ + 9.0256749, + 48.700456001 + ], + [ + 9.0255338, + 48.700346501 + ], + [ + 9.0254416, + 48.700265701 + ], + [ + 9.0253155, + 48.700189601 + ], + [ + 9.0250253, + 48.700031901 + ], + [ + 9.0245656, + 48.699821301 + ], + [ + 9.0239776, + 48.699548501 + ], + [ + 9.0235415, + 48.699342001 + ], + [ + 9.0230409, + 48.699101401 + ], + [ + 9.0220528, + 48.698605001 + ], + [ + 9.0214918, + 48.698315801 + ], + [ + 9.0209557, + 48.698041201 + ], + [ + 9.0203036, + 48.697719901 + ], + [ + 9.0199123, + 48.697524901 + ], + [ + 9.0191421, + 48.697129901 + ], + [ + 9.0185605, + 48.696848001 + ], + [ + 9.0179917, + 48.696574501 + ], + [ + 9.0171525, + 48.696183301 + ], + [ + 9.0166169, + 48.695945701 + ], + [ + 9.0162264, + 48.695779801 + ], + [ + 9.0158694, + 48.695641201 + ], + [ + 9.0157291, + 48.695597401 + ], + [ + 9.0155875, + 48.695558801 + ], + [ + 9.0152869, + 48.695494101 + ], + [ + 9.0150694, + 48.695459001 + ], + [ + 9.014855, + 48.695426901 + ], + [ + 9.0146491, + 48.695389501 + ], + [ + 9.0144172, + 48.695334501 + ], + [ + 9.0142235, + 48.695281001 + ], + [ + 9.0138516, + 48.695167201 + ], + [ + 9.0137533, + 48.695134001 + ], + [ + 9.0136953, + 48.695114601 + ], + [ + 9.0136333, + 48.695095001 + ], + [ + 9.0134869, + 48.695047001 + ], + [ + 9.0131533, + 48.694942601 + ], + [ + 9.0127507, + 48.694825501 + ], + [ + 9.0122025, + 48.694673401 + ], + [ + 9.0117924, + 48.694570501 + ], + [ + 9.0113721, + 48.694475601 + ], + [ + 9.0110069, + 48.694396101 + ], + [ + 9.0106097, + 48.694320501 + ], + [ + 9.0102649, + 48.694263601 + ], + [ + 9.0100668, + 48.694230901 + ], + [ + 9.0096292, + 48.694169101 + ], + [ + 9.0090593, + 48.694099701 + ], + [ + 9.0084037, + 48.694033701 + ], + [ + 9.0077082, + 48.693975301 + ], + [ + 9.0069716, + 48.693920901 + ], + [ + 9.0060809, + 48.693863901 + ], + [ + 9.0055192, + 48.693828601 + ], + [ + 9.0049913, + 48.693800601 + ], + [ + 9.0044581, + 48.693775601 + ], + [ + 9.0040305, + 48.693757801 + ], + [ + 9.003724645, + 48.693746252 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de347", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.70351900830041,9.039180585571657,48.693746252059405,9.003724644627368", + "point": "48.70351900830041,9.039180585571657", + "startLcPosition": "40", + "impact": { + "lower": "B\u00f6blingen/Sindelfingen", + "upper": "Sindelfingen-Ost", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Sindelfingen-Ost - B\u00f6blingen/Sindelfingen", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.70351900830041, + "long": 9.039180585571657 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 0.4 km hinter AS Sindelfingen-Ost und 0.1 km vor AS B\u00f6blingen/Sindelfingen", + "", + "L\u00e4nge: 2.89 km | Maximale Durchfahrtsbreite: 6 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.039180586, + 48.703519008 + ], + [ + 9.038813, + 48.703495401 + ], + [ + 9.0381769, + 48.703452301 + ], + [ + 9.0374259, + 48.703397001 + ], + [ + 9.0367747, + 48.703347801 + ], + [ + 9.0360807, + 48.703286001 + ], + [ + 9.0354054, + 48.703219901 + ], + [ + 9.0349827, + 48.703176501 + ], + [ + 9.0345494, + 48.703123401 + ], + [ + 9.0341996, + 48.703080001 + ], + [ + 9.0338434, + 48.703029601 + ], + [ + 9.033449, + 48.702971301 + ], + [ + 9.033174, + 48.702928701 + ], + [ + 9.0328815, + 48.702880801 + ], + [ + 9.0325436, + 48.702822901 + ], + [ + 9.0322951, + 48.702777801 + ], + [ + 9.0320448, + 48.702730901 + ], + [ + 9.031798, + 48.702684101 + ], + [ + 9.0315195, + 48.702627701 + ], + [ + 9.0311465, + 48.702549001 + ], + [ + 9.0308891, + 48.702491701 + ], + [ + 9.0306592, + 48.702438701 + ], + [ + 9.030403, + 48.702377601 + ], + [ + 9.0302112, + 48.702331501 + ], + [ + 9.0300077, + 48.702281701 + ], + [ + 9.0297729, + 48.702222201 + ], + [ + 9.0294906, + 48.702149001 + ], + [ + 9.0290723, + 48.702035901 + ], + [ + 9.0286499, + 48.701914801 + ], + [ + 9.0282193, + 48.701782701 + ], + [ + 9.0279674, + 48.701701101 + ], + [ + 9.0277492, + 48.701628701 + ], + [ + 9.0273457, + 48.701488701 + ], + [ + 9.0271099, + 48.701403101 + ], + [ + 9.0268671, + 48.701312601 + ], + [ + 9.0267149, + 48.701253801 + ], + [ + 9.0266715, + 48.701235701 + ], + [ + 9.0266283, + 48.701217501 + ], + [ + 9.0265964, + 48.701203801 + ], + [ + 9.0265195, + 48.701168501 + ], + [ + 9.0264561, + 48.701141701 + ], + [ + 9.0263899, + 48.701112301 + ], + [ + 9.0262594, + 48.701040201 + ], + [ + 9.0261575, + 48.700969001 + ], + [ + 9.026069, + 48.700894201 + ], + [ + 9.0260054, + 48.700839001 + ], + [ + 9.0258595, + 48.700671001 + ], + [ + 9.0257898, + 48.700590401 + ], + [ + 9.0256749, + 48.700456001 + ], + [ + 9.0255338, + 48.700346501 + ], + [ + 9.0254416, + 48.700265701 + ], + [ + 9.0253155, + 48.700189601 + ], + [ + 9.0250253, + 48.700031901 + ], + [ + 9.0245656, + 48.699821301 + ], + [ + 9.0239776, + 48.699548501 + ], + [ + 9.0235415, + 48.699342001 + ], + [ + 9.0230409, + 48.699101401 + ], + [ + 9.0220528, + 48.698605001 + ], + [ + 9.0214918, + 48.698315801 + ], + [ + 9.0209557, + 48.698041201 + ], + [ + 9.0203036, + 48.697719901 + ], + [ + 9.0199123, + 48.697524901 + ], + [ + 9.0191421, + 48.697129901 + ], + [ + 9.0185605, + 48.696848001 + ], + [ + 9.0179917, + 48.696574501 + ], + [ + 9.0171525, + 48.696183301 + ], + [ + 9.0166169, + 48.695945701 + ], + [ + 9.0162264, + 48.695779801 + ], + [ + 9.0158694, + 48.695641201 + ], + [ + 9.0157291, + 48.695597401 + ], + [ + 9.0155875, + 48.695558801 + ], + [ + 9.0152869, + 48.695494101 + ], + [ + 9.0150694, + 48.695459001 + ], + [ + 9.014855, + 48.695426901 + ], + [ + 9.0146491, + 48.695389501 + ], + [ + 9.0144172, + 48.695334501 + ], + [ + 9.0142235, + 48.695281001 + ], + [ + 9.0138516, + 48.695167201 + ], + [ + 9.0137533, + 48.695134001 + ], + [ + 9.0136953, + 48.695114601 + ], + [ + 9.0136333, + 48.695095001 + ], + [ + 9.0134869, + 48.695047001 + ], + [ + 9.0131533, + 48.694942601 + ], + [ + 9.0127507, + 48.694825501 + ], + [ + 9.0122025, + 48.694673401 + ], + [ + 9.0117924, + 48.694570501 + ], + [ + 9.0113721, + 48.694475601 + ], + [ + 9.0110069, + 48.694396101 + ], + [ + 9.0106097, + 48.694320501 + ], + [ + 9.0102649, + 48.694263601 + ], + [ + 9.0100668, + 48.694230901 + ], + [ + 9.0096292, + 48.694169101 + ], + [ + 9.0090593, + 48.694099701 + ], + [ + 9.0084037, + 48.694033701 + ], + [ + 9.0077082, + 48.693975301 + ], + [ + 9.0069716, + 48.693920901 + ], + [ + 9.0060809, + 48.693863901 + ], + [ + 9.0055192, + 48.693828601 + ], + [ + 9.0049913, + 48.693800601 + ], + [ + 9.0044581, + 48.693775601 + ], + [ + 9.0040305, + 48.693757801 + ], + [ + 9.003724645, + 48.693746252 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de371", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.705753908441785,9.049305887303301,48.718662841272156,9.055728390927042", + "point": "48.705753908441785,9.049305887303301", + "startLcPosition": "40", + "impact": { + "lower": "Stuttgart", + "upper": "Sindelfingen-Ost", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Sindelfingen-Ost - Stuttgart", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.705753908441785, + "long": 9.049305887303301 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 0.4 km hinter AS Sindelfingen-Ost und 1.8 km vor AK Stuttgart", + "", + "L\u00e4nge: 1.56 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.049305887, + 48.705753908 + ], + [ + 9.0493398, + 48.705772601 + ], + [ + 9.0495432, + 48.705889101 + ], + [ + 9.0498805, + 48.706097001 + ], + [ + 9.0499805, + 48.706162001 + ], + [ + 9.0501276, + 48.706257601 + ], + [ + 9.0504276, + 48.706462501 + ], + [ + 9.0507776, + 48.706723601 + ], + [ + 9.0511821, + 48.707050001 + ], + [ + 9.0513906, + 48.707229001 + ], + [ + 9.0516236, + 48.707442301 + ], + [ + 9.0517735, + 48.707586901 + ], + [ + 9.051913, + 48.707727401 + ], + [ + 9.0520484, + 48.707867001 + ], + [ + 9.0521824, + 48.708011901 + ], + [ + 9.0523092, + 48.708154701 + ], + [ + 9.0524466, + 48.708319601 + ], + [ + 9.05257, + 48.708472101 + ], + [ + 9.052672, + 48.708605601 + ], + [ + 9.05279, + 48.708768801 + ], + [ + 9.0528323, + 48.708827501 + ], + [ + 9.0529002, + 48.708921701 + ], + [ + 9.0530202, + 48.709101001 + ], + [ + 9.0531257, + 48.709269701 + ], + [ + 9.0532788, + 48.709534001 + ], + [ + 9.0533682, + 48.709698501 + ], + [ + 9.0534486, + 48.709861801 + ], + [ + 9.0535397, + 48.710054701 + ], + [ + 9.0536154, + 48.710227501 + ], + [ + 9.0536772, + 48.710377301 + ], + [ + 9.0537316, + 48.710521101 + ], + [ + 9.0537851, + 48.710674201 + ], + [ + 9.0538433, + 48.710850501 + ], + [ + 9.0538983, + 48.711043701 + ], + [ + 9.0539373, + 48.711191801 + ], + [ + 9.0539774, + 48.711366201 + ], + [ + 9.0540161, + 48.711568701 + ], + [ + 9.0540446, + 48.711726301 + ], + [ + 9.0540657, + 48.711879101 + ], + [ + 9.0540896, + 48.712068401 + ], + [ + 9.0540989, + 48.712175901 + ], + [ + 9.0541089, + 48.712342101 + ], + [ + 9.0541181, + 48.712543901 + ], + [ + 9.0541204, + 48.712706801 + ], + [ + 9.0541212, + 48.712866901 + ], + [ + 9.0541182, + 48.713179001 + ], + [ + 9.054109, + 48.713517801 + ], + [ + 9.0541013, + 48.713853801 + ], + [ + 9.0540967, + 48.714068001 + ], + [ + 9.0540967, + 48.714374801 + ], + [ + 9.0541058, + 48.714700101 + ], + [ + 9.0541164, + 48.714864201 + ], + [ + 9.0541327, + 48.715050901 + ], + [ + 9.0541585, + 48.715248901 + ], + [ + 9.0541801, + 48.715388001 + ], + [ + 9.0542106, + 48.715555401 + ], + [ + 9.0542457, + 48.715721201 + ], + [ + 9.0542766, + 48.715850401 + ], + [ + 9.0543071, + 48.715969301 + ], + [ + 9.0543774, + 48.716215901 + ], + [ + 9.0544382, + 48.716392901 + ], + [ + 9.0545034, + 48.716577301 + ], + [ + 9.0545551, + 48.716711001 + ], + [ + 9.0546111, + 48.716842001 + ], + [ + 9.0547321, + 48.717102801 + ], + [ + 9.0548651, + 48.717372401 + ], + [ + 9.0549829, + 48.717581901 + ], + [ + 9.0550404, + 48.717685501 + ], + [ + 9.0550986, + 48.717781001 + ], + [ + 9.0551936, + 48.717932901 + ], + [ + 9.0552959, + 48.718081901 + ], + [ + 9.0553911, + 48.718222201 + ], + [ + 9.0554759, + 48.718331901 + ], + [ + 9.0555483, + 48.718435601 + ], + [ + 9.0556677, + 48.718588801 + ], + [ + 9.055728391, + 48.718662841 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de342", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.705753908441785,9.049305887303301,48.718662841272156,9.055728390927042", + "point": "48.705753908441785,9.049305887303301", + "startLcPosition": "40", + "impact": { + "lower": "Stuttgart", + "upper": "Sindelfingen-Ost", + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 | Sindelfingen-Ost - Stuttgart", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.705753908441785, + "long": 9.049305887303301 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Singen -> Stuttgart, zwischen 0.4 km hinter AS Sindelfingen-Ost und 1.8 km vor AK Stuttgart", + "", + "L\u00e4nge: 1.56 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.049305887, + 48.705753908 + ], + [ + 9.0493398, + 48.705772601 + ], + [ + 9.0495432, + 48.705889101 + ], + [ + 9.0498805, + 48.706097001 + ], + [ + 9.0499805, + 48.706162001 + ], + [ + 9.0501276, + 48.706257601 + ], + [ + 9.0504276, + 48.706462501 + ], + [ + 9.0507776, + 48.706723601 + ], + [ + 9.0511821, + 48.707050001 + ], + [ + 9.0513906, + 48.707229001 + ], + [ + 9.0516236, + 48.707442301 + ], + [ + 9.0517735, + 48.707586901 + ], + [ + 9.051913, + 48.707727401 + ], + [ + 9.0520484, + 48.707867001 + ], + [ + 9.0521824, + 48.708011901 + ], + [ + 9.0523092, + 48.708154701 + ], + [ + 9.0524466, + 48.708319601 + ], + [ + 9.05257, + 48.708472101 + ], + [ + 9.052672, + 48.708605601 + ], + [ + 9.05279, + 48.708768801 + ], + [ + 9.0528323, + 48.708827501 + ], + [ + 9.0529002, + 48.708921701 + ], + [ + 9.0530202, + 48.709101001 + ], + [ + 9.0531257, + 48.709269701 + ], + [ + 9.0532788, + 48.709534001 + ], + [ + 9.0533682, + 48.709698501 + ], + [ + 9.0534486, + 48.709861801 + ], + [ + 9.0535397, + 48.710054701 + ], + [ + 9.0536154, + 48.710227501 + ], + [ + 9.0536772, + 48.710377301 + ], + [ + 9.0537316, + 48.710521101 + ], + [ + 9.0537851, + 48.710674201 + ], + [ + 9.0538433, + 48.710850501 + ], + [ + 9.0538983, + 48.711043701 + ], + [ + 9.0539373, + 48.711191801 + ], + [ + 9.0539774, + 48.711366201 + ], + [ + 9.0540161, + 48.711568701 + ], + [ + 9.0540446, + 48.711726301 + ], + [ + 9.0540657, + 48.711879101 + ], + [ + 9.0540896, + 48.712068401 + ], + [ + 9.0540989, + 48.712175901 + ], + [ + 9.0541089, + 48.712342101 + ], + [ + 9.0541181, + 48.712543901 + ], + [ + 9.0541204, + 48.712706801 + ], + [ + 9.0541212, + 48.712866901 + ], + [ + 9.0541182, + 48.713179001 + ], + [ + 9.054109, + 48.713517801 + ], + [ + 9.0541013, + 48.713853801 + ], + [ + 9.0540967, + 48.714068001 + ], + [ + 9.0540967, + 48.714374801 + ], + [ + 9.0541058, + 48.714700101 + ], + [ + 9.0541164, + 48.714864201 + ], + [ + 9.0541327, + 48.715050901 + ], + [ + 9.0541585, + 48.715248901 + ], + [ + 9.0541801, + 48.715388001 + ], + [ + 9.0542106, + 48.715555401 + ], + [ + 9.0542457, + 48.715721201 + ], + [ + 9.0542766, + 48.715850401 + ], + [ + 9.0543071, + 48.715969301 + ], + [ + 9.0543774, + 48.716215901 + ], + [ + 9.0544382, + 48.716392901 + ], + [ + 9.0545034, + 48.716577301 + ], + [ + 9.0545551, + 48.716711001 + ], + [ + 9.0546111, + 48.716842001 + ], + [ + 9.0547321, + 48.717102801 + ], + [ + 9.0548651, + 48.717372401 + ], + [ + 9.0549829, + 48.717581901 + ], + [ + 9.0550404, + 48.717685501 + ], + [ + 9.0550986, + 48.717781001 + ], + [ + 9.0551936, + 48.717932901 + ], + [ + 9.0552959, + 48.718081901 + ], + [ + 9.0553911, + 48.718222201 + ], + [ + 9.0554759, + 48.718331901 + ], + [ + 9.0555483, + 48.718435601 + ], + [ + 9.0556677, + 48.718588801 + ], + [ + 9.055728391, + 48.718662841 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de382", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.7058681462889,9.049159283452225,48.70351553317807,9.039126473942927", + "point": "48.7058681462889,9.049159283452225", + "startLcPosition": "41", + "impact": { + "lower": "B\u00f6blingen-Ost", + "upper": "Stuttgart", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Stuttgart - B\u00f6blingen-Ost", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.7058681462889, + "long": 9.049159283452225 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 2.6 km hinter AK Stuttgart und 0.3 km vor AS B\u00f6blingen-Ost", + "", + "L\u00e4nge: 0.8 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.049159283, + 48.705868146 + ], + [ + 9.0491155, + 48.705842901 + ], + [ + 9.0489176, + 48.705734401 + ], + [ + 9.0487318, + 48.705637201 + ], + [ + 9.0485115, + 48.705522801 + ], + [ + 9.0482602, + 48.705401201 + ], + [ + 9.0478862, + 48.705229701 + ], + [ + 9.047663, + 48.705134101 + ], + [ + 9.0474476, + 48.705046001 + ], + [ + 9.0471902, + 48.704945101 + ], + [ + 9.0468575, + 48.704819801 + ], + [ + 9.0464009, + 48.704662301 + ], + [ + 9.0461526, + 48.704583301 + ], + [ + 9.0458631, + 48.704495001 + ], + [ + 9.0455259, + 48.704402601 + ], + [ + 9.045174, + 48.704310501 + ], + [ + 9.04473, + 48.704204401 + ], + [ + 9.0442747, + 48.704107501 + ], + [ + 9.0440098, + 48.704056601 + ], + [ + 9.0435197, + 48.703968601 + ], + [ + 9.0430682, + 48.703898701 + ], + [ + 9.0425498, + 48.703828601 + ], + [ + 9.0420759, + 48.703770201 + ], + [ + 9.041599, + 48.703716901 + ], + [ + 9.0411533, + 48.703674701 + ], + [ + 9.0406975, + 48.703632801 + ], + [ + 9.0401782, + 48.703590401 + ], + [ + 9.0394156, + 48.703534101 + ], + [ + 9.039126474, + 48.703515533 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de353", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.7058681462889,9.049159283452225,48.70351553317807,9.039126473942927", + "point": "48.7058681462889,9.049159283452225", + "startLcPosition": "41", + "impact": { + "lower": "B\u00f6blingen-Ost", + "upper": "Stuttgart", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Stuttgart - B\u00f6blingen-Ost", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.7058681462889, + "long": 9.049159283452225 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 2.6 km hinter AK Stuttgart und 0.3 km vor AS B\u00f6blingen-Ost", + "", + "L\u00e4nge: 0.8 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 5.95 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.049159283, + 48.705868146 + ], + [ + 9.0491155, + 48.705842901 + ], + [ + 9.0489176, + 48.705734401 + ], + [ + 9.0487318, + 48.705637201 + ], + [ + 9.0485115, + 48.705522801 + ], + [ + 9.0482602, + 48.705401201 + ], + [ + 9.0478862, + 48.705229701 + ], + [ + 9.047663, + 48.705134101 + ], + [ + 9.0474476, + 48.705046001 + ], + [ + 9.0471902, + 48.704945101 + ], + [ + 9.0468575, + 48.704819801 + ], + [ + 9.0464009, + 48.704662301 + ], + [ + 9.0461526, + 48.704583301 + ], + [ + 9.0458631, + 48.704495001 + ], + [ + 9.0455259, + 48.704402601 + ], + [ + 9.045174, + 48.704310501 + ], + [ + 9.04473, + 48.704204401 + ], + [ + 9.0442747, + 48.704107501 + ], + [ + 9.0440098, + 48.704056601 + ], + [ + 9.0435197, + 48.703968601 + ], + [ + 9.0430682, + 48.703898701 + ], + [ + 9.0425498, + 48.703828601 + ], + [ + 9.0420759, + 48.703770201 + ], + [ + 9.041599, + 48.703716901 + ], + [ + 9.0411533, + 48.703674701 + ], + [ + 9.0406975, + 48.703632801 + ], + [ + 9.0401782, + 48.703590401 + ], + [ + 9.0394156, + 48.703534101 + ], + [ + 9.039126474, + 48.703515533 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-04-11_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de369", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.71874158364505,9.05550948261159,48.7058681462889,9.049159283452225", + "point": "48.71874158364505,9.05550948261159", + "startLcPosition": "41", + "impact": { + "lower": "Sindelfingen-Ost", + "upper": "Stuttgart", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Stuttgart - Sindelfingen-Ost", + "startTimestamp": "2026-04-11T05:00:00+02:00", + "coordinate": { + "lat": 48.71874158364505, + "long": 9.05550948261159 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 11.04.26 um 05:00 Uhr", + "Ende: 11.04.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 1.0 km hinter AK Stuttgart und 0.4 km vor AS Sindelfingen-Ost", + "", + "L\u00e4nge: 1.56 km | Maximale Durchfahrtsbreite: 9.2 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.055509483, + 48.718741584 + ], + [ + 9.0554302, + 48.718645301 + ], + [ + 9.0553118, + 48.718493901 + ], + [ + 9.0551947, + 48.718335301 + ], + [ + 9.0550753, + 48.718164401 + ], + [ + 9.0549801, + 48.718022601 + ], + [ + 9.054883, + 48.717873701 + ], + [ + 9.0547853, + 48.717711301 + ], + [ + 9.0547003, + 48.717561001 + ], + [ + 9.0546237, + 48.717417801 + ], + [ + 9.0545288, + 48.717232801 + ], + [ + 9.0544497, + 48.717065501 + ], + [ + 9.0543692, + 48.716882601 + ], + [ + 9.0543108, + 48.716742301 + ], + [ + 9.0542567, + 48.716610601 + ], + [ + 9.0542072, + 48.716469601 + ], + [ + 9.0541613, + 48.716336101 + ], + [ + 9.0541338, + 48.716254701 + ], + [ + 9.0540849, + 48.716080401 + ], + [ + 9.0540575, + 48.715988901 + ], + [ + 9.0539973, + 48.715746401 + ], + [ + 9.0539693, + 48.715600601 + ], + [ + 9.0539468, + 48.715493001 + ], + [ + 9.053929, + 48.715400701 + ], + [ + 9.0539171, + 48.715323701 + ], + [ + 9.0538947, + 48.715147501 + ], + [ + 9.0538779, + 48.714976601 + ], + [ + 9.0538609, + 48.714826101 + ], + [ + 9.0538521, + 48.714676801 + ], + [ + 9.0538444, + 48.714374901 + ], + [ + 9.0538423, + 48.714223901 + ], + [ + 9.0538432, + 48.714148201 + ], + [ + 9.053844, + 48.714071601 + ], + [ + 9.0538441, + 48.713920301 + ], + [ + 9.0538507, + 48.713769301 + ], + [ + 9.05386, + 48.713469601 + ], + [ + 9.0538638, + 48.713218201 + ], + [ + 9.0538711, + 48.712882001 + ], + [ + 9.053868, + 48.712565001 + ], + [ + 9.0538602, + 48.712392201 + ], + [ + 9.0538513, + 48.712235901 + ], + [ + 9.0538337, + 48.712044401 + ], + [ + 9.053816, + 48.711877701 + ], + [ + 9.0537908, + 48.711714901 + ], + [ + 9.053761, + 48.711547101 + ], + [ + 9.0537311, + 48.711399701 + ], + [ + 9.0536933, + 48.711234301 + ], + [ + 9.0536506, + 48.711076101 + ], + [ + 9.053586, + 48.710853501 + ], + [ + 9.0535404, + 48.710706501 + ], + [ + 9.0534849, + 48.710552401 + ], + [ + 9.053423, + 48.710393601 + ], + [ + 9.0533568, + 48.710229001 + ], + [ + 9.0532883, + 48.710074201 + ], + [ + 9.0532127, + 48.709913201 + ], + [ + 9.0531116, + 48.709716701 + ], + [ + 9.0530209, + 48.709552001 + ], + [ + 9.052934, + 48.709402601 + ], + [ + 9.0528618, + 48.709283001 + ], + [ + 9.0527844, + 48.709160501 + ], + [ + 9.0526709, + 48.708987101 + ], + [ + 9.0525538, + 48.708819101 + ], + [ + 9.0524221, + 48.708642301 + ], + [ + 9.0522932, + 48.708479001 + ], + [ + 9.0521594, + 48.708311901 + ], + [ + 9.0520511, + 48.708191801 + ], + [ + 9.0519367, + 48.708066601 + ], + [ + 9.0518057, + 48.707924601 + ], + [ + 9.0516672, + 48.707782301 + ], + [ + 9.0515294, + 48.707646201 + ], + [ + 9.0513849, + 48.707506201 + ], + [ + 9.05118, + 48.707324101 + ], + [ + 9.0509698, + 48.707138201 + ], + [ + 9.0507167, + 48.706931201 + ], + [ + 9.0505048, + 48.706765201 + ], + [ + 9.0503041, + 48.706605401 + ], + [ + 9.0501608, + 48.706498401 + ], + [ + 9.0500124, + 48.706394201 + ], + [ + 9.0498597, + 48.706292201 + ], + [ + 9.0496921, + 48.706185101 + ], + [ + 9.0494088, + 48.706011101 + ], + [ + 9.0492676, + 48.705930601 + ], + [ + 9.049159283, + 48.705868146 + ] + ] + } + }, + { + "identifier": "2025-015399--vi-bs.2026-03-20_05-00-00-000.devi-zus.2025-04-01_00-00-00-000_002.de340", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.71874158364505,9.05550948261159,48.7058681462889,9.049159283452225", + "point": "48.71874158364505,9.05550948261159", + "startLcPosition": "41", + "impact": { + "lower": "Sindelfingen-Ost", + "upper": "Stuttgart", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A81 | Stuttgart - Sindelfingen-Ost", + "startTimestamp": "2026-03-20T05:00:00+01:00", + "coordinate": { + "lat": 48.71874158364505, + "long": 9.05550948261159 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.03.26 um 05:00 Uhr", + "Ende: 11.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 11.04.27)", + "", + "A81: Stuttgart -> Singen, zwischen 1.0 km hinter AK Stuttgart und 0.4 km vor AS Sindelfingen-Ost", + "", + "L\u00e4nge: 1.56 km | Maximale Durchfahrtsbreite: 9.2 m", + "", + "DEGES A81, 6-streifiger Ausbau AS Sindelfingen-Ost - AS B\u00f6blingen-Hulb" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.055509483, + 48.718741584 + ], + [ + 9.0554302, + 48.718645301 + ], + [ + 9.0553118, + 48.718493901 + ], + [ + 9.0551947, + 48.718335301 + ], + [ + 9.0550753, + 48.718164401 + ], + [ + 9.0549801, + 48.718022601 + ], + [ + 9.054883, + 48.717873701 + ], + [ + 9.0547853, + 48.717711301 + ], + [ + 9.0547003, + 48.717561001 + ], + [ + 9.0546237, + 48.717417801 + ], + [ + 9.0545288, + 48.717232801 + ], + [ + 9.0544497, + 48.717065501 + ], + [ + 9.0543692, + 48.716882601 + ], + [ + 9.0543108, + 48.716742301 + ], + [ + 9.0542567, + 48.716610601 + ], + [ + 9.0542072, + 48.716469601 + ], + [ + 9.0541613, + 48.716336101 + ], + [ + 9.0541338, + 48.716254701 + ], + [ + 9.0540849, + 48.716080401 + ], + [ + 9.0540575, + 48.715988901 + ], + [ + 9.0539973, + 48.715746401 + ], + [ + 9.0539693, + 48.715600601 + ], + [ + 9.0539468, + 48.715493001 + ], + [ + 9.053929, + 48.715400701 + ], + [ + 9.0539171, + 48.715323701 + ], + [ + 9.0538947, + 48.715147501 + ], + [ + 9.0538779, + 48.714976601 + ], + [ + 9.0538609, + 48.714826101 + ], + [ + 9.0538521, + 48.714676801 + ], + [ + 9.0538444, + 48.714374901 + ], + [ + 9.0538423, + 48.714223901 + ], + [ + 9.0538432, + 48.714148201 + ], + [ + 9.053844, + 48.714071601 + ], + [ + 9.0538441, + 48.713920301 + ], + [ + 9.0538507, + 48.713769301 + ], + [ + 9.05386, + 48.713469601 + ], + [ + 9.0538638, + 48.713218201 + ], + [ + 9.0538711, + 48.712882001 + ], + [ + 9.053868, + 48.712565001 + ], + [ + 9.0538602, + 48.712392201 + ], + [ + 9.0538513, + 48.712235901 + ], + [ + 9.0538337, + 48.712044401 + ], + [ + 9.053816, + 48.711877701 + ], + [ + 9.0537908, + 48.711714901 + ], + [ + 9.053761, + 48.711547101 + ], + [ + 9.0537311, + 48.711399701 + ], + [ + 9.0536933, + 48.711234301 + ], + [ + 9.0536506, + 48.711076101 + ], + [ + 9.053586, + 48.710853501 + ], + [ + 9.0535404, + 48.710706501 + ], + [ + 9.0534849, + 48.710552401 + ], + [ + 9.053423, + 48.710393601 + ], + [ + 9.0533568, + 48.710229001 + ], + [ + 9.0532883, + 48.710074201 + ], + [ + 9.0532127, + 48.709913201 + ], + [ + 9.0531116, + 48.709716701 + ], + [ + 9.0530209, + 48.709552001 + ], + [ + 9.052934, + 48.709402601 + ], + [ + 9.0528618, + 48.709283001 + ], + [ + 9.0527844, + 48.709160501 + ], + [ + 9.0526709, + 48.708987101 + ], + [ + 9.0525538, + 48.708819101 + ], + [ + 9.0524221, + 48.708642301 + ], + [ + 9.0522932, + 48.708479001 + ], + [ + 9.0521594, + 48.708311901 + ], + [ + 9.0520511, + 48.708191801 + ], + [ + 9.0519367, + 48.708066601 + ], + [ + 9.0518057, + 48.707924601 + ], + [ + 9.0516672, + 48.707782301 + ], + [ + 9.0515294, + 48.707646201 + ], + [ + 9.0513849, + 48.707506201 + ], + [ + 9.05118, + 48.707324101 + ], + [ + 9.0509698, + 48.707138201 + ], + [ + 9.0507167, + 48.706931201 + ], + [ + 9.0505048, + 48.706765201 + ], + [ + 9.0503041, + 48.706605401 + ], + [ + 9.0501608, + 48.706498401 + ], + [ + 9.0500124, + 48.706394201 + ], + [ + 9.0498597, + 48.706292201 + ], + [ + 9.0496921, + 48.706185101 + ], + [ + 9.0494088, + 48.706011101 + ], + [ + 9.0492676, + 48.705930601 + ], + [ + 9.049159283, + 48.705868146 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2025-08-15_00-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de4", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.77798292877582,9.02024360847102,48.78565505379302,9.01596155675939", + "point": "48.77798292877582,9.02024360847102", + "startLcPosition": "44", + "impact": { + "lower": "Engelbergtunnel", + "upper": "Leonberg-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Heilbronn", + "title": "A81 | Leonberg-Ost - Engelbergtunnel", + "coordinate": { + "lat": 48.77798292877582, + "long": 9.02024360847102 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 15.08.25 und dem 09.05.26 von 00:00 bis 05:00 Uhr.", + "Jeden Tag zwischen dem 15.08.25 und dem 11.05.26 von 20:00 bis 00:00 Uhr.", + "Jeden Sonntag und Sonntag zwischen dem 17.08.25 und dem 10.05.26 von 00:00 bis 07:00 Uhr.", + "", + "A81: Stuttgart -> Heilbronn, zwischen 0.4 km hinter AS Leonberg-Ost und 2.1 km vor Engelbergtunnel", + "", + "L\u00e4nge: 1.06 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.020243608, + 48.777982929 + ], + [ + 9.020042, + 48.778080301 + ], + [ + 9.0186493, + 48.778720501 + ], + [ + 9.0184989, + 48.778789601 + ], + [ + 9.0178054, + 48.779120801 + ], + [ + 9.0175552, + 48.779242201 + ], + [ + 9.0169901, + 48.779510501 + ], + [ + 9.0165942, + 48.779713401 + ], + [ + 9.0162527, + 48.779896201 + ], + [ + 9.0160044, + 48.780050601 + ], + [ + 9.0158557, + 48.780154701 + ], + [ + 9.0156897, + 48.780297301 + ], + [ + 9.0154959, + 48.780458601 + ], + [ + 9.0153618, + 48.780579301 + ], + [ + 9.0151559, + 48.780799301 + ], + [ + 9.0150691, + 48.780908601 + ], + [ + 9.0149774, + 48.781032801 + ], + [ + 9.0148804, + 48.781164901 + ], + [ + 9.0148019, + 48.781297701 + ], + [ + 9.0147184, + 48.781451701 + ], + [ + 9.0146383, + 48.781611501 + ], + [ + 9.0145775, + 48.781768601 + ], + [ + 9.0145258, + 48.781916501 + ], + [ + 9.0144692, + 48.782073001 + ], + [ + 9.0144384, + 48.782240501 + ], + [ + 9.0144099, + 48.782392001 + ], + [ + 9.0144006, + 48.782524901 + ], + [ + 9.0144009, + 48.782720701 + ], + [ + 9.0144135, + 48.782871101 + ], + [ + 9.0144307, + 48.783029101 + ], + [ + 9.0144686, + 48.783196901 + ], + [ + 9.014511, + 48.783360901 + ], + [ + 9.0145649, + 48.783512801 + ], + [ + 9.0146326, + 48.783671501 + ], + [ + 9.0146851, + 48.783780501 + ], + [ + 9.0147236, + 48.783852201 + ], + [ + 9.0148046, + 48.783999501 + ], + [ + 9.0150559, + 48.784500001 + ], + [ + 9.015542, + 48.785119401 + ], + [ + 9.0157395, + 48.785370201 + ], + [ + 9.0158294, + 48.785483101 + ], + [ + 9.0159111, + 48.785589401 + ], + [ + 9.015961557, + 48.785655054 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2026-03-24_12-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de41", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.778443360167536,9.019252204770025,48.78495239906135,9.015410936959789", + "point": "48.778443360167536,9.019252204770025", + "startLcPosition": "44", + "impact": { + "lower": "Engelbergtunnel", + "upper": "Leonberg-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Heilbronn", + "title": "A81 | Leonberg-Ost - Engelbergtunnel", + "startTimestamp": "2026-03-24T12:00:00+01:00", + "coordinate": { + "lat": 48.778443360167536, + "long": 9.019252204770025 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 12:00 Uhr", + "Ende: 30.06.26 um 20:00 Uhr", + "Die Baustelle gilt nicht an folgenden Tagen:", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A81: Stuttgart -> Heilbronn, zwischen 0.5 km hinter AS Leonberg-Ost und 2.1 km vor Engelbergtunnel", + "", + "L\u00e4nge: 0.89 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.4 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.019252205, + 48.77844336 + ], + [ + 9.0186493, + 48.778720501 + ], + [ + 9.0184989, + 48.778789601 + ], + [ + 9.0178054, + 48.779120801 + ], + [ + 9.0175552, + 48.779242201 + ], + [ + 9.0169901, + 48.779510501 + ], + [ + 9.0165942, + 48.779713401 + ], + [ + 9.0162527, + 48.779896201 + ], + [ + 9.0160044, + 48.780050601 + ], + [ + 9.0158557, + 48.780154701 + ], + [ + 9.0156897, + 48.780297301 + ], + [ + 9.0154959, + 48.780458601 + ], + [ + 9.0153618, + 48.780579301 + ], + [ + 9.0151559, + 48.780799301 + ], + [ + 9.0150691, + 48.780908601 + ], + [ + 9.0149774, + 48.781032801 + ], + [ + 9.0148804, + 48.781164901 + ], + [ + 9.0148019, + 48.781297701 + ], + [ + 9.0147184, + 48.781451701 + ], + [ + 9.0146383, + 48.781611501 + ], + [ + 9.0145775, + 48.781768601 + ], + [ + 9.0145258, + 48.781916501 + ], + [ + 9.0144692, + 48.782073001 + ], + [ + 9.0144384, + 48.782240501 + ], + [ + 9.0144099, + 48.782392001 + ], + [ + 9.0144006, + 48.782524901 + ], + [ + 9.0144009, + 48.782720701 + ], + [ + 9.0144135, + 48.782871101 + ], + [ + 9.0144307, + 48.783029101 + ], + [ + 9.0144686, + 48.783196901 + ], + [ + 9.014511, + 48.783360901 + ], + [ + 9.0145649, + 48.783512801 + ], + [ + 9.0146326, + 48.783671501 + ], + [ + 9.0146851, + 48.783780501 + ], + [ + 9.0147236, + 48.783852201 + ], + [ + 9.0148046, + 48.783999501 + ], + [ + 9.0150559, + 48.784500001 + ], + [ + 9.015410937, + 48.784952399 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2025-12-07_05-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de10", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.778443360167536,9.019252204770025,48.78495239906135,9.015410936959789", + "point": "48.778443360167536,9.019252204770025", + "startLcPosition": "44", + "impact": { + "lower": "Engelbergtunnel", + "upper": "Leonberg-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Heilbronn", + "title": "A81 | Leonberg-Ost - Engelbergtunnel", + "startTimestamp": "2025-12-07T05:00:00+01:00", + "coordinate": { + "lat": 48.778443360167536, + "long": 9.019252204770025 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.12.25 um 05:00 Uhr", + "Ende: 10.05.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A81: Stuttgart -> Heilbronn, zwischen 0.5 km hinter AS Leonberg-Ost und 2.1 km vor Engelbergtunnel", + "", + "L\u00e4nge: 0.89 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.4 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.019252205, + 48.77844336 + ], + [ + 9.0186493, + 48.778720501 + ], + [ + 9.0184989, + 48.778789601 + ], + [ + 9.0178054, + 48.779120801 + ], + [ + 9.0175552, + 48.779242201 + ], + [ + 9.0169901, + 48.779510501 + ], + [ + 9.0165942, + 48.779713401 + ], + [ + 9.0162527, + 48.779896201 + ], + [ + 9.0160044, + 48.780050601 + ], + [ + 9.0158557, + 48.780154701 + ], + [ + 9.0156897, + 48.780297301 + ], + [ + 9.0154959, + 48.780458601 + ], + [ + 9.0153618, + 48.780579301 + ], + [ + 9.0151559, + 48.780799301 + ], + [ + 9.0150691, + 48.780908601 + ], + [ + 9.0149774, + 48.781032801 + ], + [ + 9.0148804, + 48.781164901 + ], + [ + 9.0148019, + 48.781297701 + ], + [ + 9.0147184, + 48.781451701 + ], + [ + 9.0146383, + 48.781611501 + ], + [ + 9.0145775, + 48.781768601 + ], + [ + 9.0145258, + 48.781916501 + ], + [ + 9.0144692, + 48.782073001 + ], + [ + 9.0144384, + 48.782240501 + ], + [ + 9.0144099, + 48.782392001 + ], + [ + 9.0144006, + 48.782524901 + ], + [ + 9.0144009, + 48.782720701 + ], + [ + 9.0144135, + 48.782871101 + ], + [ + 9.0144307, + 48.783029101 + ], + [ + 9.0144686, + 48.783196901 + ], + [ + 9.014511, + 48.783360901 + ], + [ + 9.0145649, + 48.783512801 + ], + [ + 9.0146326, + 48.783671501 + ], + [ + 9.0146851, + 48.783780501 + ], + [ + 9.0147236, + 48.783852201 + ], + [ + 9.0148046, + 48.783999501 + ], + [ + 9.0150559, + 48.784500001 + ], + [ + 9.015410937, + 48.784952399 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2025-08-15_22-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.78638179759446,9.016512935520261,48.80294522880168,9.037671528950543", + "point": "48.78638179759446,9.016512935520261", + "startLcPosition": "45", + "impact": { + "lower": "Gerlinger H\u00f6he", + "upper": "Leonberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Heilbronn", + "title": "A81 | Leonberg - Gerlinger H\u00f6he", + "coordinate": { + "lat": 48.78638179759446, + "long": 9.016512935520261 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 15.08.25 und dem 11.05.26 von 22:00 bis 00:00 Uhr.", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 16.08.25 und dem 30.04.26 von 00:00 bis 05:00 Uhr.", + "Jeden Sonntag und Sonntag zwischen dem 17.08.25 und dem 10.05.26 von 00:00 bis 07:00 Uhr.", + "", + "A81: Stuttgart -> Heilbronn, zwischen 0.6 km hinter AD Leonberg und 1.0 km vor Gerlinger H\u00f6he", + "", + "L\u00e4nge: 2.43 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.016512936, + 48.786381798 + ], + [ + 9.0169037, + 48.786915701 + ], + [ + 9.0173513, + 48.787510501 + ], + [ + 9.01747, + 48.787665101 + ], + [ + 9.0175587, + 48.787772401 + ], + [ + 9.0194385, + 48.790099301 + ], + [ + 9.0207546, + 48.791308001 + ], + [ + 9.021523, + 48.791851501 + ], + [ + 9.0223745, + 48.792426701 + ], + [ + 9.0233447, + 48.793022201 + ], + [ + 9.0249452, + 48.793972501 + ], + [ + 9.0269483, + 48.795112101 + ], + [ + 9.0283806, + 48.795981101 + ], + [ + 9.0286393, + 48.796138101 + ], + [ + 9.0302718, + 48.797201401 + ], + [ + 9.0316737, + 48.798205901 + ], + [ + 9.0323091, + 48.798712501 + ], + [ + 9.0332054, + 48.799455101 + ], + [ + 9.0357518, + 48.801485501 + ], + [ + 9.037671529, + 48.802945229 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2025-12-07_05-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de6", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.78702891902411,9.016988898158743,48.80257173181827,9.03718031795562", + "point": "48.78702891902411,9.016988898158743", + "startLcPosition": "45", + "impact": { + "lower": "Gerlinger H\u00f6he", + "upper": "Leonberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Heilbronn", + "title": "A81 | Leonberg - Gerlinger H\u00f6he", + "startTimestamp": "2025-12-07T05:00:00+01:00", + "coordinate": { + "lat": 48.78702891902411, + "long": 9.016988898158743 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.12.25 um 05:00 Uhr", + "Ende: 10.05.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A81: Stuttgart -> Heilbronn, zwischen 0.7 km hinter AD Leonberg und 1.0 km vor Gerlinger H\u00f6he", + "", + "L\u00e4nge: 2.29 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.4 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.016988898, + 48.787028919 + ], + [ + 9.0173513, + 48.787510501 + ], + [ + 9.01747, + 48.787665101 + ], + [ + 9.0175587, + 48.787772401 + ], + [ + 9.0194385, + 48.790099301 + ], + [ + 9.0207546, + 48.791308001 + ], + [ + 9.021523, + 48.791851501 + ], + [ + 9.0223745, + 48.792426701 + ], + [ + 9.0233447, + 48.793022201 + ], + [ + 9.0249452, + 48.793972501 + ], + [ + 9.0269483, + 48.795112101 + ], + [ + 9.0283806, + 48.795981101 + ], + [ + 9.0286393, + 48.796138101 + ], + [ + 9.0302718, + 48.797201401 + ], + [ + 9.0316737, + 48.798205901 + ], + [ + 9.0323091, + 48.798712501 + ], + [ + 9.0332054, + 48.799455101 + ], + [ + 9.0357518, + 48.801485501 + ], + [ + 9.037180318, + 48.802571732 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2026-03-24_00-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de51", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.78627660189918,9.01643594376584,48.81912591233261,9.074749755403989", + "point": "48.78627660189918,9.01643594376584", + "startLcPosition": "45", + "impact": { + "lower": "Stuttgart-Feuerbach", + "upper": "Leonberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Heilbronn", + "title": "A81 | Leonberg - Stuttgart-Feuerbach", + "coordinate": { + "lat": 48.78627660189918, + "long": 9.01643594376584 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 08.04.26 und dem 17.04.26 von 05:00 bis 22:00 Uhr.", + "09.04.26 von 05:00 bis 22:15 Uhr", + "", + "A81: Stuttgart -> Heilbronn, zwischen 0.6 km hinter AD Leonberg und 0.5 km vor AS Stuttgart-Feuerbach", + "", + "L\u00e4nge: 5.74 km | Maximale Durchfahrtsbreite: 6.4 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.016435944, + 48.786276602 + ], + [ + 9.0169037, + 48.786915701 + ], + [ + 9.0173513, + 48.787510501 + ], + [ + 9.01747, + 48.787665101 + ], + [ + 9.0175587, + 48.787772401 + ], + [ + 9.0194385, + 48.790099301 + ], + [ + 9.0207546, + 48.791308001 + ], + [ + 9.021523, + 48.791851501 + ], + [ + 9.0223745, + 48.792426701 + ], + [ + 9.0233447, + 48.793022201 + ], + [ + 9.0249452, + 48.793972501 + ], + [ + 9.0269483, + 48.795112101 + ], + [ + 9.0283806, + 48.795981101 + ], + [ + 9.0286393, + 48.796138101 + ], + [ + 9.0302718, + 48.797201401 + ], + [ + 9.0316737, + 48.798205901 + ], + [ + 9.0323091, + 48.798712501 + ], + [ + 9.0332054, + 48.799455101 + ], + [ + 9.0357518, + 48.801485501 + ], + [ + 9.0380479, + 48.803231401 + ], + [ + 9.0382242, + 48.803362801 + ], + [ + 9.0383796, + 48.803474301 + ], + [ + 9.0388149, + 48.803784801 + ], + [ + 9.0396318, + 48.804323901 + ], + [ + 9.0402091, + 48.804696401 + ], + [ + 9.0409141, + 48.805111001 + ], + [ + 9.0418888, + 48.805658301 + ], + [ + 9.0427663, + 48.806100601 + ], + [ + 9.0430548, + 48.806247101 + ], + [ + 9.0435447, + 48.806487201 + ], + [ + 9.0437758, + 48.806598501 + ], + [ + 9.0443908, + 48.806880101 + ], + [ + 9.0449196, + 48.807106901 + ], + [ + 9.0453647, + 48.807290601 + ], + [ + 9.0461517, + 48.807612401 + ], + [ + 9.0466372, + 48.807799101 + ], + [ + 9.0475132, + 48.808132701 + ], + [ + 9.0483161, + 48.808431801 + ], + [ + 9.050163, + 48.809097601 + ], + [ + 9.0508201, + 48.809339801 + ], + [ + 9.0518967, + 48.809736201 + ], + [ + 9.0521429, + 48.809825401 + ], + [ + 9.0529699, + 48.810119801 + ], + [ + 9.0547862, + 48.810772701 + ], + [ + 9.0587078, + 48.812191701 + ], + [ + 9.0636351, + 48.813973901 + ], + [ + 9.0669494, + 48.815176101 + ], + [ + 9.0684722, + 48.815734801 + ], + [ + 9.0689281, + 48.815915401 + ], + [ + 9.0696532, + 48.816213101 + ], + [ + 9.0703647, + 48.816530401 + ], + [ + 9.0709541, + 48.816812601 + ], + [ + 9.0715399, + 48.817106901 + ], + [ + 9.0720639, + 48.817390301 + ], + [ + 9.0725817, + 48.817686001 + ], + [ + 9.0732991, + 48.818134401 + ], + [ + 9.0736482, + 48.818356001 + ], + [ + 9.0740525, + 48.818618501 + ], + [ + 9.0745017, + 48.818936901 + ], + [ + 9.074749755, + 48.819125912 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2025-12-07_05-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de12", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.80277681342636,9.036846894209214,48.78711460836559,9.016785474495109", + "point": "48.80277681342636,9.036846894209214", + "startLcPosition": "47", + "impact": { + "lower": "Leonberg", + "upper": "Gerlinger H\u00f6he", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> Stuttgart", + "title": "A81 | Gerlinger H\u00f6he - Leonberg", + "startTimestamp": "2025-12-07T05:00:00+01:00", + "coordinate": { + "lat": 48.80277681342636, + "long": 9.036846894209214 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.12.25 um 05:00 Uhr", + "Ende: 10.05.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A81: Heilbronn -> Stuttgart, zwischen 1.0 km hinter Gerlinger H\u00f6he und 0.8 km vor AD Leonberg", + "", + "L\u00e4nge: 2.3 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.036846894, + 48.802776813 + ], + [ + 9.0353764, + 48.801677701 + ], + [ + 9.0328104, + 48.799646901 + ], + [ + 9.0313367, + 48.798477001 + ], + [ + 9.0299094, + 48.797407901 + ], + [ + 9.0283286, + 48.796400101 + ], + [ + 9.0280089, + 48.796195401 + ], + [ + 9.0266292, + 48.795345701 + ], + [ + 9.0259567, + 48.794930201 + ], + [ + 9.0244758, + 48.794098201 + ], + [ + 9.0230279, + 48.793249401 + ], + [ + 9.0213171, + 48.792133201 + ], + [ + 9.0202444, + 48.791358901 + ], + [ + 9.0195446, + 48.790758901 + ], + [ + 9.0191054, + 48.790296501 + ], + [ + 9.0182245, + 48.789177501 + ], + [ + 9.0177439, + 48.788391401 + ], + [ + 9.0173938, + 48.787846901 + ], + [ + 9.016785474, + 48.787114608 + ] + ] + } + }, + { + "identifier": "2026-017311--vi-bs.2026-04-08_21-00-00-000.devi-bs.2026-04-09_23-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.8196133332868,9.07537950812279,48.82382737658481,9.079632655821596", + "point": "48.8196133332868,9.07537950812279", + "startLcPosition": "48", + "impact": { + "lower": "Stuttgart-Zuffenhausen", + "upper": "Engelberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Heilbronn", + "title": "A81 | Engelberg - Stuttgart-Zuffenhausen", + "coordinate": { + "lat": 48.8196133332868, + "long": 9.07537950812279 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 23:00 bis zum 10.04.26 02:00 Uhr.", + "", + "A81: Stuttgart -> Heilbronn, zwischen 2.4 km hinter Engelberg und 4.4 km vor AS Stuttgart-Zuffenhausen", + "", + "L\u00e4nge: 0.56 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A81, Fugenarbeiten, AS Stgt.-Feuerbach FR W\u00fcrzburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.075379508, + 48.819613333 + ], + [ + 9.0759517, + 48.820075201 + ], + [ + 9.0763457, + 48.820423901 + ], + [ + 9.0768078, + 48.820851601 + ], + [ + 9.077073, + 48.821112401 + ], + [ + 9.07779, + 48.821827501 + ], + [ + 9.0784575, + 48.822533201 + ], + [ + 9.0786984, + 48.822785401 + ], + [ + 9.0791811, + 48.823323401 + ], + [ + 9.079632656, + 48.823827377 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2026-03-24_00-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de48", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.8210204036758,9.076695254257103,48.78819101833071,9.017615057982162", + "point": "48.8210204036758,9.076695254257103", + "startLcPosition": "49", + "impact": { + "lower": "Leonberg", + "upper": "Stuttgart-Feuerbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> Stuttgart", + "title": "A81 | Stuttgart-Feuerbach - Leonberg", + "coordinate": { + "lat": 48.8210204036758, + "long": 9.076695254257103 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Tag zwischen dem 24.03.26 und dem 30.06.26 von 05:00 bis 22:00 Uhr.", + "", + "A81: Heilbronn -> Stuttgart, zwischen 0.3 km hinter AS Stuttgart-Feuerbach und 0.9 km vor AD Leonberg", + "", + "L\u00e4nge: 5.78 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.076695254, + 48.821020404 + ], + [ + 9.0766233, + 48.820953801 + ], + [ + 9.0764156, + 48.820758801 + ], + [ + 9.0760294, + 48.820416001 + ], + [ + 9.0757613, + 48.820169601 + ], + [ + 9.0743223, + 48.819038701 + ], + [ + 9.0740153, + 48.818805801 + ], + [ + 9.0734844, + 48.818448401 + ], + [ + 9.0730787, + 48.818188201 + ], + [ + 9.0726229, + 48.817908901 + ], + [ + 9.0721636, + 48.817640201 + ], + [ + 9.0718641, + 48.817472201 + ], + [ + 9.0716848, + 48.817374401 + ], + [ + 9.0714006, + 48.817237001 + ], + [ + 9.0708294, + 48.816947801 + ], + [ + 9.0702435, + 48.816667201 + ], + [ + 9.0695497, + 48.816359601 + ], + [ + 9.0688869, + 48.816083801 + ], + [ + 9.0684478, + 48.815908601 + ], + [ + 9.0668465, + 48.815318701 + ], + [ + 9.06354, + 48.814119201 + ], + [ + 9.0603791, + 48.812964501 + ], + [ + 9.0596663, + 48.812708301 + ], + [ + 9.0586064, + 48.812334201 + ], + [ + 9.0546903, + 48.810913301 + ], + [ + 9.0534069, + 48.810457901 + ], + [ + 9.0528434, + 48.810256601 + ], + [ + 9.0510213, + 48.809580101 + ], + [ + 9.049747, + 48.809132101 + ], + [ + 9.0474945, + 48.808291201 + ], + [ + 9.0470787, + 48.808143801 + ], + [ + 9.0464367, + 48.807902401 + ], + [ + 9.0458732, + 48.807663701 + ], + [ + 9.0454401, + 48.807488401 + ], + [ + 9.0448934, + 48.807263901 + ], + [ + 9.0442707, + 48.806990201 + ], + [ + 9.044059, + 48.806897301 + ], + [ + 9.0435781, + 48.806680001 + ], + [ + 9.0432035, + 48.806513701 + ], + [ + 9.0429471, + 48.806389601 + ], + [ + 9.0425798, + 48.806213601 + ], + [ + 9.0417861, + 48.805811601 + ], + [ + 9.0406945, + 48.805221801 + ], + [ + 9.0405318, + 48.805130501 + ], + [ + 9.0399316, + 48.804782901 + ], + [ + 9.0392717, + 48.804389201 + ], + [ + 9.0385887, + 48.803957301 + ], + [ + 9.038111, + 48.803643901 + ], + [ + 9.0379351, + 48.803536501 + ], + [ + 9.0379061, + 48.803518201 + ], + [ + 9.0372789, + 48.803099701 + ], + [ + 9.0353764, + 48.801677701 + ], + [ + 9.0328104, + 48.799646901 + ], + [ + 9.0313367, + 48.798477001 + ], + [ + 9.0299094, + 48.797407901 + ], + [ + 9.0283286, + 48.796400101 + ], + [ + 9.0280089, + 48.796195401 + ], + [ + 9.0266292, + 48.795345701 + ], + [ + 9.0259567, + 48.794930201 + ], + [ + 9.0244758, + 48.794098201 + ], + [ + 9.0230279, + 48.793249401 + ], + [ + 9.0213171, + 48.792133201 + ], + [ + 9.0202444, + 48.791358901 + ], + [ + 9.0195446, + 48.790758901 + ], + [ + 9.0191054, + 48.790296501 + ], + [ + 9.0182245, + 48.789177501 + ], + [ + 9.0177439, + 48.788391401 + ], + [ + 9.017615058, + 48.788191018 + ] + ] + } + }, + { + "identifier": "2026-016923--vi-bs.2026-04-09_09-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.83011666685158,9.085386395157775,48.835508530778064,9.094375289971186", + "point": "48.83011666685158,9.085386395157775", + "startLcPosition": "49", + "impact": { + "lower": "Stuttgart-Zuffenhausen", + "upper": "Stuttgart-Feuerbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Stuttgart -> Heilbronn", + "title": "A81 | Stuttgart-Feuerbach - Stuttgart-Zuffenhausen", + "coordinate": { + "lat": 48.83011666685158, + "long": 9.085386395157775 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 09:30 bis 16:00 Uhr", + "", + "A81: Stuttgart -> Heilbronn, zwischen 0.9 km hinter AS Stuttgart-Feuerbach und 2.7 km vor AS Stuttgart-Zuffenhausen", + "", + "L\u00e4nge: 0.9 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A81 von Stuttgart-Feuerbach (AS) nach Stuttgart-Zuffenhausen (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.085386395, + 48.830116667 + ], + [ + 9.0853931, + 48.830123101 + ], + [ + 9.0856887, + 48.830410201 + ], + [ + 9.0860266, + 48.830705501 + ], + [ + 9.0863237, + 48.830953001 + ], + [ + 9.0866354, + 48.831210201 + ], + [ + 9.0869589, + 48.831464001 + ], + [ + 9.0872842, + 48.831708501 + ], + [ + 9.0876104, + 48.831946101 + ], + [ + 9.0880564, + 48.832252301 + ], + [ + 9.0884653, + 48.832524401 + ], + [ + 9.0886597, + 48.832649501 + ], + [ + 9.0890246, + 48.832888801 + ], + [ + 9.0893772, + 48.833094601 + ], + [ + 9.0900263, + 48.833470201 + ], + [ + 9.0904049, + 48.833683201 + ], + [ + 9.0907754, + 48.833874301 + ], + [ + 9.0912009, + 48.834093501 + ], + [ + 9.0916515, + 48.834313101 + ], + [ + 9.0920488, + 48.834496301 + ], + [ + 9.0924492, + 48.834677101 + ], + [ + 9.0938793, + 48.835294701 + ], + [ + 9.0940109, + 48.835352201 + ], + [ + 9.09437529, + 48.835508531 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2026-03-24_12-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de45", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.81873321399045,9.073907474765091,48.78977869508326,9.01869776693851", + "point": "48.81873321399045,9.073907474765091", + "startLcPosition": "49", + "impact": { + "lower": "Leonberg", + "upper": "Stuttgart-Feuerbach", + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> Stuttgart", + "title": "A81 | Stuttgart-Feuerbach - Leonberg", + "startTimestamp": "2026-03-24T12:00:00+01:00", + "coordinate": { + "lat": 48.81873321399045, + "long": 9.073907474765091 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 12:00 Uhr", + "Ende: 30.06.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A81: Heilbronn -> Stuttgart, zwischen 0.6 km hinter AS Stuttgart-Feuerbach und 1.1 km vor AD Leonberg", + "", + "L\u00e4nge: 5.26 km | Max. 40 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.073907475, + 48.818733214 + ], + [ + 9.0734844, + 48.818448401 + ], + [ + 9.0730787, + 48.818188201 + ], + [ + 9.0726229, + 48.817908901 + ], + [ + 9.0721636, + 48.817640201 + ], + [ + 9.0718641, + 48.817472201 + ], + [ + 9.0716848, + 48.817374401 + ], + [ + 9.0714006, + 48.817237001 + ], + [ + 9.0708294, + 48.816947801 + ], + [ + 9.0702435, + 48.816667201 + ], + [ + 9.0695497, + 48.816359601 + ], + [ + 9.0688869, + 48.816083801 + ], + [ + 9.0684478, + 48.815908601 + ], + [ + 9.0668465, + 48.815318701 + ], + [ + 9.06354, + 48.814119201 + ], + [ + 9.0603791, + 48.812964501 + ], + [ + 9.0596663, + 48.812708301 + ], + [ + 9.0586064, + 48.812334201 + ], + [ + 9.0546903, + 48.810913301 + ], + [ + 9.0534069, + 48.810457901 + ], + [ + 9.0528434, + 48.810256601 + ], + [ + 9.0510213, + 48.809580101 + ], + [ + 9.049747, + 48.809132101 + ], + [ + 9.0474945, + 48.808291201 + ], + [ + 9.0470787, + 48.808143801 + ], + [ + 9.0464367, + 48.807902401 + ], + [ + 9.0458732, + 48.807663701 + ], + [ + 9.0454401, + 48.807488401 + ], + [ + 9.0448934, + 48.807263901 + ], + [ + 9.0442707, + 48.806990201 + ], + [ + 9.044059, + 48.806897301 + ], + [ + 9.0435781, + 48.806680001 + ], + [ + 9.0432035, + 48.806513701 + ], + [ + 9.0429471, + 48.806389601 + ], + [ + 9.0425798, + 48.806213601 + ], + [ + 9.0417861, + 48.805811601 + ], + [ + 9.0406945, + 48.805221801 + ], + [ + 9.0405318, + 48.805130501 + ], + [ + 9.0399316, + 48.804782901 + ], + [ + 9.0392717, + 48.804389201 + ], + [ + 9.0385887, + 48.803957301 + ], + [ + 9.038111, + 48.803643901 + ], + [ + 9.0379351, + 48.803536501 + ], + [ + 9.0379061, + 48.803518201 + ], + [ + 9.0372789, + 48.803099701 + ], + [ + 9.0353764, + 48.801677701 + ], + [ + 9.0328104, + 48.799646901 + ], + [ + 9.0313367, + 48.798477001 + ], + [ + 9.0299094, + 48.797407901 + ], + [ + 9.0283286, + 48.796400101 + ], + [ + 9.0280089, + 48.796195401 + ], + [ + 9.0266292, + 48.795345701 + ], + [ + 9.0259567, + 48.794930201 + ], + [ + 9.0244758, + 48.794098201 + ], + [ + 9.0230279, + 48.793249401 + ], + [ + 9.0213171, + 48.792133201 + ], + [ + 9.0202444, + 48.791358901 + ], + [ + 9.0195446, + 48.790758901 + ], + [ + 9.0191054, + 48.790296501 + ], + [ + 9.018697767, + 48.789778695 + ] + ] + } + }, + { + "identifier": "2024-004786--vi-bs.2025-12-14_05-00-00-000.devi-zus.2025-03-03_00-00-00-000_004.de29", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.93536711754295,9.1892150482604,48.94700225854688,9.199606559261186", + "point": "48.93536711754295,9.1892150482604", + "startLcPosition": "52", + "impact": { + "lower": "Pleidelsheim", + "upper": "Ludwigsburg-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Heilbronn", + "title": "A81 | Ludwigsburg-Nord - Pleidelsheim", + "startTimestamp": "2025-12-14T05:00:00+01:00", + "coordinate": { + "lat": 48.93536711754295, + "long": 9.1892150482604 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 05:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A81: Stuttgart -> Heilbronn, zwischen 2.9 km hinter AS Ludwigsburg-Nord und 1.9 km vor AS Pleidelsheim", + "", + "L\u00e4nge: 1.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.15 m", + "", + "A81 Br\u00fcckeninstandsetzung - Neckarbr\u00fccke Beihingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.189215048, + 48.935367118 + ], + [ + 9.1892885, + 48.935426801 + ], + [ + 9.1895707, + 48.935668701 + ], + [ + 9.1898339, + 48.935915301 + ], + [ + 9.190365, + 48.936451101 + ], + [ + 9.1908679, + 48.936993801 + ], + [ + 9.1912491, + 48.937405101 + ], + [ + 9.1918659, + 48.938076901 + ], + [ + 9.1923059, + 48.938573501 + ], + [ + 9.1932062, + 48.939566801 + ], + [ + 9.1946771, + 48.941305401 + ], + [ + 9.1968168, + 48.943851401 + ], + [ + 9.1974552, + 48.944617501 + ], + [ + 9.1981085, + 48.945377701 + ], + [ + 9.1984326, + 48.945765301 + ], + [ + 9.1987677, + 48.946144501 + ], + [ + 9.1991241, + 48.946517601 + ], + [ + 9.1994837, + 48.946886801 + ], + [ + 9.199606559, + 48.947002259 + ] + ] + } + }, + { + "identifier": "2024-004786--vi-bs.2025-12-14_05-00-00-000.devi-zus.2025-03-03_00-00-00-000_004.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.94915893895695,9.20200554888506,48.93927949703455,9.192653488905046", + "point": "48.94915893895695,9.20200554888506", + "startLcPosition": "53", + "impact": { + "lower": "Ludwigsburg-Nord", + "upper": "Pleidelsheim", + "symbols": [ + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> Stuttgart", + "title": "A81 | Pleidelsheim - Ludwigsburg-Nord", + "startTimestamp": "2025-12-14T05:00:00+01:00", + "coordinate": { + "lat": 48.94915893895695, + "long": 9.20200554888506 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.12.25 um 05:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.07.26)", + "", + "A81: Heilbronn -> Stuttgart, zwischen 1.6 km hinter AS Pleidelsheim und 3.4 km vor AS Ludwigsburg-Nord", + "", + "L\u00e4nge: 1.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A81 Br\u00fcckeninstandsetzung - Neckarbr\u00fccke Beihingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.202005549, + 48.949158939 + ], + [ + 9.2016424, + 48.948906801 + ], + [ + 9.2012642, + 48.948637501 + ], + [ + 9.2008907, + 48.948359901 + ], + [ + 9.2005008, + 48.948023401 + ], + [ + 9.2000866, + 48.947672601 + ], + [ + 9.1997539, + 48.947377801 + ], + [ + 9.19949, + 48.947133201 + ], + [ + 9.1992336, + 48.946887601 + ], + [ + 9.198926, + 48.946604901 + ], + [ + 9.1985646, + 48.946232701 + ], + [ + 9.1982165, + 48.945856701 + ], + [ + 9.1978763, + 48.945478001 + ], + [ + 9.1972151, + 48.944709701 + ], + [ + 9.1965706, + 48.943939301 + ], + [ + 9.1944351, + 48.941392101 + ], + [ + 9.1929722, + 48.939638901 + ], + [ + 9.192653489, + 48.939279497 + ] + ] + } + }, + { + "identifier": "2026-016843--vi-bs.2026-04-15_09-00-00-000.devi-zus.2026-04-15_09-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.998934414592995,9.233365532859015,48.98826047395665,9.231372924372996", + "point": "48.998934414592995,9.233365532859015", + "startLcPosition": "55", + "impact": { + "lower": "Pleidelsheim", + "upper": "Mundelsheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> Stuttgart", + "title": "A81 | Mundelsheim - Pleidelsheim", + "coordinate": { + "lat": 48.998934414592995, + "long": 9.233365532859015 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 15:00 Uhr", + "", + "A81: Heilbronn -> Stuttgart, zwischen 0.8 km hinter AS Mundelsheim und 3.4 km vor AS Pleidelsheim", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A81 Mundelsheim Aufstellung Hinweisschild Erlebnispark Tripsdrill " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.233365533, + 48.998934415 + ], + [ + 9.2333415, + 48.998866101 + ], + [ + 9.2332174, + 48.998459901 + ], + [ + 9.2331279, + 48.998115301 + ], + [ + 9.2330498, + 48.997767901 + ], + [ + 9.232985, + 48.997424501 + ], + [ + 9.2329335, + 48.997079401 + ], + [ + 9.2329019, + 48.996757001 + ], + [ + 9.2328723, + 48.996312701 + ], + [ + 9.2328347, + 48.995683401 + ], + [ + 9.2328258, + 48.995566601 + ], + [ + 9.232811, + 48.995309801 + ], + [ + 9.232775, + 48.994754601 + ], + [ + 9.232739, + 48.994204901 + ], + [ + 9.2327235, + 48.993963001 + ], + [ + 9.2326784, + 48.993314301 + ], + [ + 9.2326488, + 48.992801301 + ], + [ + 9.2326223, + 48.992359701 + ], + [ + 9.2325665, + 48.991884901 + ], + [ + 9.2325469, + 48.991774301 + ], + [ + 9.2325116, + 48.991557201 + ], + [ + 9.232471, + 48.991339301 + ], + [ + 9.2324261, + 48.991127701 + ], + [ + 9.2323587, + 48.990870501 + ], + [ + 9.2322648, + 48.990529501 + ], + [ + 9.2321439, + 48.990166301 + ], + [ + 9.232012, + 48.989807701 + ], + [ + 9.2319002, + 48.989529801 + ], + [ + 9.2318132, + 48.989310801 + ], + [ + 9.2315326, + 48.988647001 + ], + [ + 9.231372924, + 48.988260474 + ] + ] + } + }, + { + "identifier": "2026-016843--vi-bs.2026-04-16_09-00-00-000.devi-zus.2026-04-15_09-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.034057867105865,9.25411423753684,49.023726092741704,9.249938919718453", + "point": "49.034057867105865,9.25411423753684", + "startLcPosition": "56", + "impact": { + "lower": "Mundelsheim", + "upper": "Wunnenstein", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> Stuttgart", + "title": "A81 | Wunnenstein - Mundelsheim", + "coordinate": { + "lat": 49.034057867105865, + "long": 9.25411423753684 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A81: Heilbronn -> Stuttgart, zwischen 1.4 km hinter Wunnenstein und 2.3 km vor AS Mundelsheim", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A81 Mundelsheim Aufstellung Hinweisschild Erlebnispark Tripsdrill " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.254114238, + 49.034057867 + ], + [ + 9.254087, + 49.033990601 + ], + [ + 9.2539515, + 49.033619201 + ], + [ + 9.253833, + 49.033251201 + ], + [ + 9.2537284, + 49.032878401 + ], + [ + 9.2536477, + 49.032502101 + ], + [ + 9.2535572, + 49.031940001 + ], + [ + 9.2534713, + 49.031376301 + ], + [ + 9.2533854, + 49.030665301 + ], + [ + 9.2533484, + 49.030359301 + ], + [ + 9.2533119, + 49.030092901 + ], + [ + 9.2532675, + 49.029824201 + ], + [ + 9.25326, + 49.029782701 + ], + [ + 9.2532192, + 49.029558101 + ], + [ + 9.2531586, + 49.029291201 + ], + [ + 9.2530321, + 49.028836501 + ], + [ + 9.2528962, + 49.028383001 + ], + [ + 9.2527207, + 49.027929001 + ], + [ + 9.2525291, + 49.027476901 + ], + [ + 9.252434, + 49.027262301 + ], + [ + 9.2523313, + 49.027046901 + ], + [ + 9.2521054, + 49.026627101 + ], + [ + 9.2518814, + 49.026247401 + ], + [ + 9.2516365, + 49.025862601 + ], + [ + 9.2514547, + 49.025597301 + ], + [ + 9.2512651, + 49.025333301 + ], + [ + 9.2508523, + 49.024817601 + ], + [ + 9.24993892, + 49.023726093 + ] + ] + } + }, + { + "identifier": "2026-012366--vi-bs.2026-04-24_01-00-00-000.devi-bs.2026-04-24_22-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.061559928335846,9.271419488270471,49.05595470807631,9.268389043569204", + "point": "49.061559928335846,9.271419488270471", + "startLcPosition": "58", + "impact": { + "lower": "Wunnenstein", + "upper": "Heilbronn/Untergruppenbach", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> Stuttgart", + "title": "A81 | Heilbronn/Untergruppenbach - Wunnenstein", + "coordinate": { + "lat": 49.061559928335846, + "long": 9.271419488270471 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 von 01:00 bis 05:00 Uhr", + "", + "A81: Heilbronn -> Stuttgart, zwischen 3.0 km hinter AS Heilbronn/Untergruppenbach und 1.3 km vor Wunnenstein", + "", + "L\u00e4nge: 0.67 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A81 AS Ilsfeld Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.271419488, + 49.061559928 + ], + [ + 9.2712897, + 49.061448001 + ], + [ + 9.2709762, + 49.061146101 + ], + [ + 9.2705263, + 49.060694001 + ], + [ + 9.2702493, + 49.060387301 + ], + [ + 9.2700832, + 49.060190501 + ], + [ + 9.2699219, + 49.059987201 + ], + [ + 9.2696211, + 49.059578501 + ], + [ + 9.2694034, + 49.059214001 + ], + [ + 9.2692089, + 49.058831701 + ], + [ + 9.2689472, + 49.058268701 + ], + [ + 9.2688437, + 49.058018301 + ], + [ + 9.2687553, + 49.057765301 + ], + [ + 9.2687012, + 49.057575701 + ], + [ + 9.2686111, + 49.057195601 + ], + [ + 9.268455, + 49.056336701 + ], + [ + 9.268389044, + 49.055954708 + ] + ] + } + }, + { + "identifier": "2026-012366--vi-bs.2026-04-24_01-00-00-000.devi-bs.2026-04-24_22-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.061559928335846,9.271419488270471,49.05595470807631,9.268389043569204", + "point": "49.061559928335846,9.271419488270471", + "startLcPosition": "58", + "impact": { + "lower": "Wunnenstein", + "upper": "Heilbronn/Untergruppenbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> Stuttgart", + "title": "A81 | Heilbronn/Untergruppenbach - Wunnenstein", + "coordinate": { + "lat": 49.061559928335846, + "long": 9.271419488270471 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "24.04.26 22:00 bis zum 25.04.26 01:00 Uhr.", + "", + "A81: Heilbronn -> Stuttgart, zwischen 3.0 km hinter AS Heilbronn/Untergruppenbach und 1.3 km vor Wunnenstein", + "", + "L\u00e4nge: 0.67 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A81 AS Ilsfeld Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.271419488, + 49.061559928 + ], + [ + 9.2712897, + 49.061448001 + ], + [ + 9.2709762, + 49.061146101 + ], + [ + 9.2705263, + 49.060694001 + ], + [ + 9.2702493, + 49.060387301 + ], + [ + 9.2700832, + 49.060190501 + ], + [ + 9.2699219, + 49.059987201 + ], + [ + 9.2696211, + 49.059578501 + ], + [ + 9.2694034, + 49.059214001 + ], + [ + 9.2692089, + 49.058831701 + ], + [ + 9.2689472, + 49.058268701 + ], + [ + 9.2688437, + 49.058018301 + ], + [ + 9.2687553, + 49.057765301 + ], + [ + 9.2687012, + 49.057575701 + ], + [ + 9.2686111, + 49.057195601 + ], + [ + 9.268455, + 49.056336701 + ], + [ + 9.268389044, + 49.055954708 + ] + ] + } + }, + { + "identifier": "2025-053061--vi-fbm.2026-04-09_20-00-00-000.devi-zus.2026-02-26_00-00-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.172545968044815,9.330688938632921,49.23176929256357,9.350247312489955", + "point": "49.172545968044815,9.330688938632921", + "startLcPosition": "60", + "impact": { + "lower": "Neuenstadt (Kocher)", + "upper": "Weinsberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | Weinsberg - Neuenstadt (Kocher)", + "coordinate": { + "lat": 49.172545968044815, + "long": 9.330688938632921 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "11.04.26 20:00 bis zum 12.04.26 06:00 Uhr.", + "12.04.26 20:00 bis zum 13.04.26 06:00 Uhr.", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 3.2 km hinter AK Weinsberg und 0.6 km vor AS Neuenstadt (Kocher)", + "", + "L\u00e4nge: 7.29 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 Brettachtalbr\u00fccke Instandsetzung \u00dcKO" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.330688939, + 49.172545968 + ], + [ + 9.3307648, + 49.172570501 + ], + [ + 9.3312412, + 49.172743501 + ], + [ + 9.3316809, + 49.172912301 + ], + [ + 9.3321923, + 49.173126301 + ], + [ + 9.3326843, + 49.173360901 + ], + [ + 9.333282, + 49.173659101 + ], + [ + 9.3336092, + 49.173834701 + ], + [ + 9.3339588, + 49.174033301 + ], + [ + 9.3341877, + 49.174174301 + ], + [ + 9.3348444, + 49.174592401 + ], + [ + 9.3351095, + 49.174780901 + ], + [ + 9.3353592, + 49.174968201 + ], + [ + 9.3357149, + 49.175232001 + ], + [ + 9.3360385, + 49.175500901 + ], + [ + 9.3364209, + 49.175833901 + ], + [ + 9.3368109, + 49.176215501 + ], + [ + 9.3371611, + 49.176586701 + ], + [ + 9.3375021, + 49.176973501 + ], + [ + 9.337999, + 49.177594901 + ], + [ + 9.3383586, + 49.178072201 + ], + [ + 9.3402867, + 49.180784101 + ], + [ + 9.340547, + 49.181151301 + ], + [ + 9.3411656, + 49.182010801 + ], + [ + 9.3413708, + 49.182281201 + ], + [ + 9.3419167, + 49.183010001 + ], + [ + 9.3420283, + 49.183159001 + ], + [ + 9.3425036, + 49.183793801 + ], + [ + 9.3429689, + 49.184347701 + ], + [ + 9.3431686, + 49.184578501 + ], + [ + 9.3437879, + 49.185256201 + ], + [ + 9.3441822, + 49.185660301 + ], + [ + 9.3443878, + 49.185855101 + ], + [ + 9.3446633, + 49.186116101 + ], + [ + 9.3451985, + 49.186622201 + ], + [ + 9.3455949, + 49.186970301 + ], + [ + 9.3459739, + 49.187294101 + ], + [ + 9.3462664, + 49.187529601 + ], + [ + 9.3469399, + 49.188032901 + ], + [ + 9.3471219, + 49.188177401 + ], + [ + 9.3476635, + 49.188607901 + ], + [ + 9.3482618, + 49.189072001 + ], + [ + 9.3488638, + 49.189569201 + ], + [ + 9.3495072, + 49.190302701 + ], + [ + 9.3503212, + 49.191402401 + ], + [ + 9.3505645, + 49.191913501 + ], + [ + 9.3507069, + 49.192221901 + ], + [ + 9.3508543, + 49.192598501 + ], + [ + 9.3509264, + 49.192825301 + ], + [ + 9.3510094, + 49.193155201 + ], + [ + 9.3510499, + 49.193400801 + ], + [ + 9.3511001, + 49.193863901 + ], + [ + 9.3511154, + 49.194158801 + ], + [ + 9.3511081, + 49.194394901 + ], + [ + 9.3510971, + 49.194576201 + ], + [ + 9.3510718, + 49.194890701 + ], + [ + 9.3510065, + 49.195430801 + ], + [ + 9.3509379, + 49.195752401 + ], + [ + 9.3508465, + 49.196156801 + ], + [ + 9.3505914, + 49.196832101 + ], + [ + 9.3503629, + 49.197271201 + ], + [ + 9.3501332, + 49.197625501 + ], + [ + 9.3498834, + 49.197986101 + ], + [ + 9.3495554, + 49.198418101 + ], + [ + 9.3492586, + 49.198765101 + ], + [ + 9.3489098, + 49.199112101 + ], + [ + 9.3485673, + 49.199442501 + ], + [ + 9.347986, + 49.199971801 + ], + [ + 9.3475594, + 49.200360301 + ], + [ + 9.3473945, + 49.200523401 + ], + [ + 9.3470399, + 49.200860501 + ], + [ + 9.3464813, + 49.201415801 + ], + [ + 9.3461304, + 49.201796001 + ], + [ + 9.345625, + 49.202415701 + ], + [ + 9.3453519, + 49.202820001 + ], + [ + 9.3450459, + 49.203298301 + ], + [ + 9.3447799, + 49.203770001 + ], + [ + 9.3445696, + 49.204235101 + ], + [ + 9.3443869, + 49.204711501 + ], + [ + 9.3442702, + 49.205088901 + ], + [ + 9.3441315, + 49.205593501 + ], + [ + 9.3440605, + 49.205946801 + ], + [ + 9.3440259, + 49.206225201 + ], + [ + 9.3439993, + 49.206439001 + ], + [ + 9.343965, + 49.206867201 + ], + [ + 9.3439496, + 49.207373101 + ], + [ + 9.3439663, + 49.207809201 + ], + [ + 9.3439993, + 49.208381201 + ], + [ + 9.3440468, + 49.208916201 + ], + [ + 9.3441344, + 49.209500501 + ], + [ + 9.3442412, + 49.210011001 + ], + [ + 9.3443463, + 49.210431401 + ], + [ + 9.3444418, + 49.210766701 + ], + [ + 9.3445052, + 49.210965801 + ], + [ + 9.3447229, + 49.211582001 + ], + [ + 9.3449529, + 49.212169901 + ], + [ + 9.3450913, + 49.212480001 + ], + [ + 9.3453559, + 49.213027701 + ], + [ + 9.3456455, + 49.213562301 + ], + [ + 9.3459594, + 49.214084101 + ], + [ + 9.346327, + 49.214659201 + ], + [ + 9.3466001, + 49.215075101 + ], + [ + 9.3469658, + 49.215612501 + ], + [ + 9.3473514, + 49.216173801 + ], + [ + 9.3480417, + 49.217159901 + ], + [ + 9.3484159, + 49.217719901 + ], + [ + 9.348791, + 49.218341001 + ], + [ + 9.3489091, + 49.218536501 + ], + [ + 9.3490819, + 49.218839501 + ], + [ + 9.3493054, + 49.219231301 + ], + [ + 9.3496538, + 49.219931501 + ], + [ + 9.3499329, + 49.220554801 + ], + [ + 9.3500046, + 49.220737801 + ], + [ + 9.3501824, + 49.221191701 + ], + [ + 9.3503693, + 49.221738001 + ], + [ + 9.3505915, + 49.222545901 + ], + [ + 9.3506915, + 49.222941201 + ], + [ + 9.3507165, + 49.223040101 + ], + [ + 9.3507874, + 49.223320301 + ], + [ + 9.3509284, + 49.223999601 + ], + [ + 9.3509725, + 49.224311301 + ], + [ + 9.3510059, + 49.224570301 + ], + [ + 9.3510776, + 49.225087001 + ], + [ + 9.3511558, + 49.225666701 + ], + [ + 9.3511665, + 49.225950001 + ], + [ + 9.3511787, + 49.226302401 + ], + [ + 9.3511853, + 49.226603701 + ], + [ + 9.3511913, + 49.226992001 + ], + [ + 9.3511634, + 49.227530001 + ], + [ + 9.3511506, + 49.227690301 + ], + [ + 9.3511256, + 49.228004301 + ], + [ + 9.3510801, + 49.228476601 + ], + [ + 9.3510196, + 49.228886501 + ], + [ + 9.3509305, + 49.229368101 + ], + [ + 9.3508767, + 49.229566201 + ], + [ + 9.3507568, + 49.229981201 + ], + [ + 9.3506071, + 49.230572001 + ], + [ + 9.3504355, + 49.231137001 + ], + [ + 9.350247312, + 49.231769293 + ] + ] + } + }, + { + "identifier": "2025-053061--vi-fbm.2026-04-09_20-00-00-000.devi-zus.2026-02-26_00-00-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.172545968044815,9.330688938632921,49.23176929256357,9.350247312489955", + "point": "49.172545968044815,9.330688938632921", + "startLcPosition": "60", + "impact": { + "lower": "Neuenstadt (Kocher)", + "upper": "Weinsberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | Weinsberg - Neuenstadt (Kocher)", + "coordinate": { + "lat": 49.172545968044815, + "long": 9.330688938632921 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 06:00 Uhr.", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "11.04.26 20:00 bis zum 12.04.26 06:00 Uhr.", + "12.04.26 20:00 bis zum 13.04.26 06:00 Uhr.", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 3.2 km hinter AK Weinsberg und 0.6 km vor AS Neuenstadt (Kocher)", + "", + "L\u00e4nge: 7.29 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 Brettachtalbr\u00fccke Instandsetzung \u00dcKO" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.330688939, + 49.172545968 + ], + [ + 9.3307648, + 49.172570501 + ], + [ + 9.3312412, + 49.172743501 + ], + [ + 9.3316809, + 49.172912301 + ], + [ + 9.3321923, + 49.173126301 + ], + [ + 9.3326843, + 49.173360901 + ], + [ + 9.333282, + 49.173659101 + ], + [ + 9.3336092, + 49.173834701 + ], + [ + 9.3339588, + 49.174033301 + ], + [ + 9.3341877, + 49.174174301 + ], + [ + 9.3348444, + 49.174592401 + ], + [ + 9.3351095, + 49.174780901 + ], + [ + 9.3353592, + 49.174968201 + ], + [ + 9.3357149, + 49.175232001 + ], + [ + 9.3360385, + 49.175500901 + ], + [ + 9.3364209, + 49.175833901 + ], + [ + 9.3368109, + 49.176215501 + ], + [ + 9.3371611, + 49.176586701 + ], + [ + 9.3375021, + 49.176973501 + ], + [ + 9.337999, + 49.177594901 + ], + [ + 9.3383586, + 49.178072201 + ], + [ + 9.3402867, + 49.180784101 + ], + [ + 9.340547, + 49.181151301 + ], + [ + 9.3411656, + 49.182010801 + ], + [ + 9.3413708, + 49.182281201 + ], + [ + 9.3419167, + 49.183010001 + ], + [ + 9.3420283, + 49.183159001 + ], + [ + 9.3425036, + 49.183793801 + ], + [ + 9.3429689, + 49.184347701 + ], + [ + 9.3431686, + 49.184578501 + ], + [ + 9.3437879, + 49.185256201 + ], + [ + 9.3441822, + 49.185660301 + ], + [ + 9.3443878, + 49.185855101 + ], + [ + 9.3446633, + 49.186116101 + ], + [ + 9.3451985, + 49.186622201 + ], + [ + 9.3455949, + 49.186970301 + ], + [ + 9.3459739, + 49.187294101 + ], + [ + 9.3462664, + 49.187529601 + ], + [ + 9.3469399, + 49.188032901 + ], + [ + 9.3471219, + 49.188177401 + ], + [ + 9.3476635, + 49.188607901 + ], + [ + 9.3482618, + 49.189072001 + ], + [ + 9.3488638, + 49.189569201 + ], + [ + 9.3495072, + 49.190302701 + ], + [ + 9.3503212, + 49.191402401 + ], + [ + 9.3505645, + 49.191913501 + ], + [ + 9.3507069, + 49.192221901 + ], + [ + 9.3508543, + 49.192598501 + ], + [ + 9.3509264, + 49.192825301 + ], + [ + 9.3510094, + 49.193155201 + ], + [ + 9.3510499, + 49.193400801 + ], + [ + 9.3511001, + 49.193863901 + ], + [ + 9.3511154, + 49.194158801 + ], + [ + 9.3511081, + 49.194394901 + ], + [ + 9.3510971, + 49.194576201 + ], + [ + 9.3510718, + 49.194890701 + ], + [ + 9.3510065, + 49.195430801 + ], + [ + 9.3509379, + 49.195752401 + ], + [ + 9.3508465, + 49.196156801 + ], + [ + 9.3505914, + 49.196832101 + ], + [ + 9.3503629, + 49.197271201 + ], + [ + 9.3501332, + 49.197625501 + ], + [ + 9.3498834, + 49.197986101 + ], + [ + 9.3495554, + 49.198418101 + ], + [ + 9.3492586, + 49.198765101 + ], + [ + 9.3489098, + 49.199112101 + ], + [ + 9.3485673, + 49.199442501 + ], + [ + 9.347986, + 49.199971801 + ], + [ + 9.3475594, + 49.200360301 + ], + [ + 9.3473945, + 49.200523401 + ], + [ + 9.3470399, + 49.200860501 + ], + [ + 9.3464813, + 49.201415801 + ], + [ + 9.3461304, + 49.201796001 + ], + [ + 9.345625, + 49.202415701 + ], + [ + 9.3453519, + 49.202820001 + ], + [ + 9.3450459, + 49.203298301 + ], + [ + 9.3447799, + 49.203770001 + ], + [ + 9.3445696, + 49.204235101 + ], + [ + 9.3443869, + 49.204711501 + ], + [ + 9.3442702, + 49.205088901 + ], + [ + 9.3441315, + 49.205593501 + ], + [ + 9.3440605, + 49.205946801 + ], + [ + 9.3440259, + 49.206225201 + ], + [ + 9.3439993, + 49.206439001 + ], + [ + 9.343965, + 49.206867201 + ], + [ + 9.3439496, + 49.207373101 + ], + [ + 9.3439663, + 49.207809201 + ], + [ + 9.3439993, + 49.208381201 + ], + [ + 9.3440468, + 49.208916201 + ], + [ + 9.3441344, + 49.209500501 + ], + [ + 9.3442412, + 49.210011001 + ], + [ + 9.3443463, + 49.210431401 + ], + [ + 9.3444418, + 49.210766701 + ], + [ + 9.3445052, + 49.210965801 + ], + [ + 9.3447229, + 49.211582001 + ], + [ + 9.3449529, + 49.212169901 + ], + [ + 9.3450913, + 49.212480001 + ], + [ + 9.3453559, + 49.213027701 + ], + [ + 9.3456455, + 49.213562301 + ], + [ + 9.3459594, + 49.214084101 + ], + [ + 9.346327, + 49.214659201 + ], + [ + 9.3466001, + 49.215075101 + ], + [ + 9.3469658, + 49.215612501 + ], + [ + 9.3473514, + 49.216173801 + ], + [ + 9.3480417, + 49.217159901 + ], + [ + 9.3484159, + 49.217719901 + ], + [ + 9.348791, + 49.218341001 + ], + [ + 9.3489091, + 49.218536501 + ], + [ + 9.3490819, + 49.218839501 + ], + [ + 9.3493054, + 49.219231301 + ], + [ + 9.3496538, + 49.219931501 + ], + [ + 9.3499329, + 49.220554801 + ], + [ + 9.3500046, + 49.220737801 + ], + [ + 9.3501824, + 49.221191701 + ], + [ + 9.3503693, + 49.221738001 + ], + [ + 9.3505915, + 49.222545901 + ], + [ + 9.3506915, + 49.222941201 + ], + [ + 9.3507165, + 49.223040101 + ], + [ + 9.3507874, + 49.223320301 + ], + [ + 9.3509284, + 49.223999601 + ], + [ + 9.3509725, + 49.224311301 + ], + [ + 9.3510059, + 49.224570301 + ], + [ + 9.3510776, + 49.225087001 + ], + [ + 9.3511558, + 49.225666701 + ], + [ + 9.3511665, + 49.225950001 + ], + [ + 9.3511787, + 49.226302401 + ], + [ + 9.3511853, + 49.226603701 + ], + [ + 9.3511913, + 49.226992001 + ], + [ + 9.3511634, + 49.227530001 + ], + [ + 9.3511506, + 49.227690301 + ], + [ + 9.3511256, + 49.228004301 + ], + [ + 9.3510801, + 49.228476601 + ], + [ + 9.3510196, + 49.228886501 + ], + [ + 9.3509305, + 49.229368101 + ], + [ + 9.3508767, + 49.229566201 + ], + [ + 9.3507568, + 49.229981201 + ], + [ + 9.3506071, + 49.230572001 + ], + [ + 9.3504355, + 49.231137001 + ], + [ + 9.350247312, + 49.231769293 + ] + ] + } + }, + { + "identifier": "2026-010623--vi-bs.2026-03-30_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.159055704380314,9.30000147279282,49.18435793762365,9.342977757254118", + "point": "49.159055704380314,9.30000147279282", + "startLcPosition": "60", + "impact": { + "lower": "H\u00f6lzern", + "upper": "Weinsberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | Weinsberg - H\u00f6lzern", + "coordinate": { + "lat": 49.159055704380314, + "long": 9.30000147279282 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 17:00 Uhr", + "13.04.26 von 08:00 bis 17:00 Uhr", + "14.04.26 von 08:00 bis 17:00 Uhr", + "15.04.26 von 08:00 bis 17:00 Uhr", + "16.04.26 von 08:00 bis 17:00 Uhr", + "20.04.26 von 08:00 bis 17:00 Uhr", + "21.04.26 von 08:00 bis 17:00 Uhr", + "22.04.26 von 08:00 bis 17:00 Uhr", + "23.04.26 von 08:00 bis 17:00 Uhr", + "27.04.26 von 08:00 bis 17:00 Uhr", + "28.04.26 von 08:00 bis 17:00 Uhr", + "29.04.26 von 08:00 bis 17:00 Uhr", + "30.04.26 von 08:00 bis 17:00 Uhr", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 0.2 km hinter AK Weinsberg und 1.0 km vor H\u00f6lzern", + "", + "L\u00e4nge: 4.6 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A81 von Weinsberg (AK) nach H\u00f6lzern (Tunnel) Tiefbauarbeiten neben der Fahrbahn, Herstellung LWL Leerrohrtrasse" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.300001473, + 49.159055704 + ], + [ + 9.3001344, + 49.159690201 + ], + [ + 9.3002322, + 49.160075201 + ], + [ + 9.3003387, + 49.160433701 + ], + [ + 9.300516, + 49.160913701 + ], + [ + 9.3006503, + 49.161235501 + ], + [ + 9.3008132, + 49.161579901 + ], + [ + 9.3008946, + 49.161733201 + ], + [ + 9.3010274, + 49.161983201 + ], + [ + 9.3013012, + 49.162448401 + ], + [ + 9.3015504, + 49.162866201 + ], + [ + 9.302043, + 49.163589501 + ], + [ + 9.3023269, + 49.163991601 + ], + [ + 9.3024843, + 49.164213101 + ], + [ + 9.3027293, + 49.164534701 + ], + [ + 9.3030042, + 49.164859501 + ], + [ + 9.3030846, + 49.164957801 + ], + [ + 9.3035943, + 49.165487701 + ], + [ + 9.30389, + 49.165793301 + ], + [ + 9.3040717, + 49.165981001 + ], + [ + 9.3043973, + 49.166289101 + ], + [ + 9.3049111, + 49.166724201 + ], + [ + 9.3052539, + 49.167002301 + ], + [ + 9.3056495, + 49.167290201 + ], + [ + 9.30606, + 49.167557401 + ], + [ + 9.3065454, + 49.167845701 + ], + [ + 9.3071075, + 49.168162901 + ], + [ + 9.3076771, + 49.168438401 + ], + [ + 9.3081151, + 49.168634801 + ], + [ + 9.3085465, + 49.168812501 + ], + [ + 9.3089532, + 49.168964401 + ], + [ + 9.3094111, + 49.169118701 + ], + [ + 9.3097969, + 49.169243101 + ], + [ + 9.3101092, + 49.169340401 + ], + [ + 9.3105515, + 49.169463101 + ], + [ + 9.3109638, + 49.169562801 + ], + [ + 9.3114803, + 49.169677701 + ], + [ + 9.3118662, + 49.169759201 + ], + [ + 9.3122247, + 49.169821001 + ], + [ + 9.3132101, + 49.169959701 + ], + [ + 9.3142322, + 49.170072701 + ], + [ + 9.3149022, + 49.170128101 + ], + [ + 9.3151471, + 49.170148401 + ], + [ + 9.3162304, + 49.170230001 + ], + [ + 9.3174803, + 49.170315601 + ], + [ + 9.3184338, + 49.170379001 + ], + [ + 9.3195392, + 49.170467201 + ], + [ + 9.3203064, + 49.170541001 + ], + [ + 9.3210487, + 49.170622401 + ], + [ + 9.321873, + 49.170710901 + ], + [ + 9.3233652, + 49.170900101 + ], + [ + 9.3248745, + 49.171140501 + ], + [ + 9.3260955, + 49.171378201 + ], + [ + 9.3272252, + 49.171589101 + ], + [ + 9.3286229, + 49.171919801 + ], + [ + 9.3295961, + 49.172200401 + ], + [ + 9.3299262, + 49.172299301 + ], + [ + 9.3307648, + 49.172570501 + ], + [ + 9.3312412, + 49.172743501 + ], + [ + 9.3316809, + 49.172912301 + ], + [ + 9.3321923, + 49.173126301 + ], + [ + 9.3326843, + 49.173360901 + ], + [ + 9.333282, + 49.173659101 + ], + [ + 9.3336092, + 49.173834701 + ], + [ + 9.3339588, + 49.174033301 + ], + [ + 9.3341877, + 49.174174301 + ], + [ + 9.3348444, + 49.174592401 + ], + [ + 9.3351095, + 49.174780901 + ], + [ + 9.3353592, + 49.174968201 + ], + [ + 9.3357149, + 49.175232001 + ], + [ + 9.3360385, + 49.175500901 + ], + [ + 9.3364209, + 49.175833901 + ], + [ + 9.3368109, + 49.176215501 + ], + [ + 9.3371611, + 49.176586701 + ], + [ + 9.3375021, + 49.176973501 + ], + [ + 9.337999, + 49.177594901 + ], + [ + 9.3383586, + 49.178072201 + ], + [ + 9.3402867, + 49.180784101 + ], + [ + 9.340547, + 49.181151301 + ], + [ + 9.3411656, + 49.182010801 + ], + [ + 9.3413708, + 49.182281201 + ], + [ + 9.3419167, + 49.183010001 + ], + [ + 9.3420283, + 49.183159001 + ], + [ + 9.3425036, + 49.183793801 + ], + [ + 9.3429689, + 49.184347701 + ], + [ + 9.342977757, + 49.184357938 + ] + ] + } + }, + { + "identifier": "2025-053061--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-02-26_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.22087533890164,9.350058475492046,49.231089783996914,9.350449840733022", + "point": "49.22087533890164,9.350058475492046", + "startLcPosition": "61", + "impact": { + "lower": "Neuenstadt (Kocher)", + "upper": "H\u00f6lzern", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | H\u00f6lzern - Neuenstadt (Kocher)", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 49.22087533890164, + "long": 9.350058475492046 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 14.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.08.26)", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 3.4 km hinter H\u00f6lzern und 0.7 km vor AS Neuenstadt (Kocher)", + "", + "L\u00e4nge: 1.14 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A81 Brettachtalbr\u00fccke Instandsetzung \u00dcKO" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.350058475, + 49.220875339 + ], + [ + 9.3501824, + 49.221191701 + ], + [ + 9.3503693, + 49.221738001 + ], + [ + 9.3505915, + 49.222545901 + ], + [ + 9.3506915, + 49.222941201 + ], + [ + 9.3507165, + 49.223040101 + ], + [ + 9.3507874, + 49.223320301 + ], + [ + 9.3509284, + 49.223999601 + ], + [ + 9.3509725, + 49.224311301 + ], + [ + 9.3510059, + 49.224570301 + ], + [ + 9.3510776, + 49.225087001 + ], + [ + 9.3511558, + 49.225666701 + ], + [ + 9.3511665, + 49.225950001 + ], + [ + 9.3511787, + 49.226302401 + ], + [ + 9.3511853, + 49.226603701 + ], + [ + 9.3511913, + 49.226992001 + ], + [ + 9.3511634, + 49.227530001 + ], + [ + 9.3511506, + 49.227690301 + ], + [ + 9.3511256, + 49.228004301 + ], + [ + 9.3510801, + 49.228476601 + ], + [ + 9.3510196, + 49.228886501 + ], + [ + 9.3509305, + 49.229368101 + ], + [ + 9.3508767, + 49.229566201 + ], + [ + 9.3507568, + 49.229981201 + ], + [ + 9.3506071, + 49.230572001 + ], + [ + 9.350449841, + 49.231089784 + ] + ] + } + }, + { + "identifier": "2026-007119--vi-bs.2026-03-02_10-00-00-000.devi-bs.2026-03-02_10-00-00-000_009.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.28725457030514,9.364662598063939,49.30583941600826,9.393799780034302", + "point": "49.28725457030514,9.364662598063939", + "startLcPosition": "63", + "impact": { + "lower": "Jagsttal", + "upper": "M\u00f6ckm\u00fchl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | M\u00f6ckm\u00fchl - Jagsttal", + "coordinate": { + "lat": 49.28725457030514, + "long": 9.364662598063939 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 21:00 Uhr", + "13.04.26 von 07:00 bis 21:00 Uhr", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 0.8 km hinter AS M\u00f6ckm\u00fchl und 2.7 km vor Jagsttal", + "", + "L\u00e4nge: 3 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A81 von Osterburken (AS) nach M\u00f6ckm\u00fchl (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.364662598, + 49.28725457 + ], + [ + 9.364686, + 49.287266501 + ], + [ + 9.3653997, + 49.287617901 + ], + [ + 9.3680532, + 49.288916401 + ], + [ + 9.3705006, + 49.290282001 + ], + [ + 9.3729448, + 49.291984101 + ], + [ + 9.3757275, + 49.294240301 + ], + [ + 9.378735, + 49.297339401 + ], + [ + 9.3802535, + 49.298899501 + ], + [ + 9.3817796, + 49.300226301 + ], + [ + 9.3835077, + 49.301412901 + ], + [ + 9.3853592, + 49.302419801 + ], + [ + 9.3869573, + 49.303162101 + ], + [ + 9.3889297, + 49.303921401 + ], + [ + 9.3911472, + 49.304711701 + ], + [ + 9.3923208, + 49.305155601 + ], + [ + 9.3929605, + 49.305437901 + ], + [ + 9.393678, + 49.305776401 + ], + [ + 9.39379978, + 49.305839416 + ] + ] + } + }, + { + "identifier": "2026-015343--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.3134882534806,9.406114071259731,49.32011537825586,9.412760292539947", + "point": "49.3134882534806,9.406114071259731", + "startLcPosition": "63", + "impact": { + "lower": "Jagsttal", + "upper": "M\u00f6ckm\u00fchl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | M\u00f6ckm\u00fchl - Jagsttal", + "coordinate": { + "lat": 49.3134882534806, + "long": 9.406114071259731 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "20.04.26 von 07:00 bis 17:00 Uhr", + "21.04.26 von 07:00 bis 17:00 Uhr", + "22.04.26 von 07:00 bis 17:00 Uhr", + "23.04.26 von 07:00 bis 17:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "27.04.26 von 07:00 bis 17:00 Uhr", + "28.04.26 von 07:00 bis 17:00 Uhr", + "29.04.26 von 07:00 bis 17:00 Uhr", + "30.04.26 von 07:00 bis 12:00 Uhr", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 5.1 km hinter AS M\u00f6ckm\u00fchl und 0.5 km vor Jagsttal", + "", + "L\u00e4nge: 0.89 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A81 Bauwerkspr\u00fcfung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.406114071, + 49.313488253 + ], + [ + 9.406127, + 49.313496201 + ], + [ + 9.4066514, + 49.313834701 + ], + [ + 9.4071689, + 49.314181201 + ], + [ + 9.4076711, + 49.314537201 + ], + [ + 9.4081575, + 49.314902301 + ], + [ + 9.4086277, + 49.315276401 + ], + [ + 9.4090813, + 49.315659001 + ], + [ + 9.4095181, + 49.316049901 + ], + [ + 9.4099376, + 49.316448801 + ], + [ + 9.4103395, + 49.316855201 + ], + [ + 9.4107234, + 49.317269001 + ], + [ + 9.4110891, + 49.317689801 + ], + [ + 9.4114362, + 49.318117101 + ], + [ + 9.4117645, + 49.318550701 + ], + [ + 9.4120737, + 49.318990301 + ], + [ + 9.4123636, + 49.319435401 + ], + [ + 9.4126339, + 49.319885701 + ], + [ + 9.412760293, + 49.320115378 + ] + ] + } + }, + { + "identifier": "2026-007119--vi-bs.2026-03-02_10-00-00-000.devi-bs.2026-03-02_10-00-00-000_009.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.30908685888505,9.398521618543194,49.267600348678826,9.352039310666878", + "point": "49.30908685888505,9.398521618543194", + "startLcPosition": "64", + "impact": { + "lower": "Neuenstadt (Kocher)", + "upper": "Jagsttal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Heilbronn", + "title": "A81 | Jagsttal - Neuenstadt (Kocher)", + "coordinate": { + "lat": 49.30908685888505, + "long": 9.398521618543194 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 21:00 Uhr", + "13.04.26 von 10:00 bis 21:00 Uhr", + "14.04.26 von 07:00 bis 21:00 Uhr", + "15.04.26 von 07:00 bis 21:00 Uhr", + "16.04.26 von 07:00 bis 21:00 Uhr", + "", + "A81: W\u00fcrzburg -> Heilbronn, zwischen 2.1 km hinter Jagsttal und 3.5 km vor AS Neuenstadt (Kocher)", + "", + "L\u00e4nge: 6.01 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A81 von Osterburken (AS) nach M\u00f6ckm\u00fchl (AS) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.398521619, + 49.309086859 + ], + [ + 9.3981528, + 49.308801901 + ], + [ + 9.3974258, + 49.308235701 + ], + [ + 9.3964729, + 49.307560201 + ], + [ + 9.3954838, + 49.306910801 + ], + [ + 9.3945792, + 49.306385001 + ], + [ + 9.3935823, + 49.305871401 + ], + [ + 9.3928981, + 49.305548801 + ], + [ + 9.3921867, + 49.305241301 + ], + [ + 9.391027, + 49.304798101 + ], + [ + 9.38883, + 49.304026801 + ], + [ + 9.3874694, + 49.303515101 + ], + [ + 9.386809, + 49.303266701 + ], + [ + 9.3862642, + 49.303020001 + ], + [ + 9.3852733, + 49.302530401 + ], + [ + 9.3842061, + 49.301953801 + ], + [ + 9.3833143, + 49.301431901 + ], + [ + 9.3824491, + 49.300865301 + ], + [ + 9.3823263, + 49.300771701 + ], + [ + 9.381725, + 49.300313601 + ], + [ + 9.3807035, + 49.299488401 + ], + [ + 9.3801166, + 49.298971501 + ], + [ + 9.3792476, + 49.298054401 + ], + [ + 9.378205, + 49.296975101 + ], + [ + 9.376736, + 49.295454501 + ], + [ + 9.3759814, + 49.294731201 + ], + [ + 9.3749904, + 49.293831401 + ], + [ + 9.374462, + 49.293385601 + ], + [ + 9.37403, + 49.293021101 + ], + [ + 9.3730352, + 49.292263001 + ], + [ + 9.3719681, + 49.291467501 + ], + [ + 9.3705579, + 49.290567701 + ], + [ + 9.3696332, + 49.290000101 + ], + [ + 9.3693916, + 49.289851801 + ], + [ + 9.3675546, + 49.288845001 + ], + [ + 9.3662168, + 49.288176301 + ], + [ + 9.3641616, + 49.287170901 + ], + [ + 9.3631983, + 49.286699601 + ], + [ + 9.3618758, + 49.285996101 + ], + [ + 9.3609839, + 49.285483901 + ], + [ + 9.3599587, + 49.284857401 + ], + [ + 9.3590536, + 49.284239301 + ], + [ + 9.3588229, + 49.284081801 + ], + [ + 9.358254, + 49.283635901 + ], + [ + 9.3575571, + 49.283108701 + ], + [ + 9.3569985, + 49.282618101 + ], + [ + 9.356238, + 49.281836401 + ], + [ + 9.3560277, + 49.281612701 + ], + [ + 9.3557986, + 49.281371701 + ], + [ + 9.3555705, + 49.281117401 + ], + [ + 9.355387, + 49.280904301 + ], + [ + 9.3551981, + 49.280678401 + ], + [ + 9.3550875, + 49.280541701 + ], + [ + 9.3548543, + 49.280253501 + ], + [ + 9.3546137, + 49.279939401 + ], + [ + 9.3541374, + 49.279247401 + ], + [ + 9.3537794, + 49.278685601 + ], + [ + 9.3534983, + 49.278197101 + ], + [ + 9.3532764, + 49.277768701 + ], + [ + 9.353045, + 49.277301301 + ], + [ + 9.352814, + 49.276750601 + ], + [ + 9.3527076, + 49.276474301 + ], + [ + 9.3524762, + 49.275873001 + ], + [ + 9.352362, + 49.275521101 + ], + [ + 9.352288, + 49.275274301 + ], + [ + 9.352126, + 49.274639701 + ], + [ + 9.3520144, + 49.274163501 + ], + [ + 9.3519073, + 49.273673101 + ], + [ + 9.3518297, + 49.273218801 + ], + [ + 9.3517383, + 49.272518401 + ], + [ + 9.3517014, + 49.272113401 + ], + [ + 9.3516792, + 49.271779101 + ], + [ + 9.3516642, + 49.271279001 + ], + [ + 9.3516597, + 49.270607401 + ], + [ + 9.3517281, + 49.269578701 + ], + [ + 9.3517947, + 49.268942501 + ], + [ + 9.3519668, + 49.267934101 + ], + [ + 9.352039311, + 49.267600349 + ] + ] + } + }, + { + "identifier": "2026-015343--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.320151789308845,9.412606911405065,49.31355844957257,9.40597591730404", + "point": "49.320151789308845,9.412606911405065", + "startLcPosition": "64", + "impact": { + "lower": "M\u00f6ckm\u00fchl", + "upper": "Jagsttal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Heilbronn", + "title": "A81 | Jagsttal - M\u00f6ckm\u00fchl", + "coordinate": { + "lat": 49.320151789308845, + "long": 9.412606911405065 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "20.04.26 von 10:00 bis 17:00 Uhr", + "21.04.26 von 07:00 bis 17:00 Uhr", + "22.04.26 von 07:00 bis 17:00 Uhr", + "23.04.26 von 07:00 bis 17:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "27.04.26 von 10:00 bis 17:00 Uhr", + "28.04.26 von 07:00 bis 17:00 Uhr", + "29.04.26 von 07:00 bis 17:00 Uhr", + "30.04.26 von 07:00 bis 12:00 Uhr", + "", + "A81: W\u00fcrzburg -> Heilbronn, zwischen 0.5 km hinter Jagsttal und 5.1 km vor AS M\u00f6ckm\u00fchl", + "", + "L\u00e4nge: 0.89 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A81 Bauwerkspr\u00fcfung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.412606911, + 49.320151789 + ], + [ + 9.412479, + 49.319923601 + ], + [ + 9.4122104, + 49.319476101 + ], + [ + 9.4119224, + 49.319033801 + ], + [ + 9.4116152, + 49.318597101 + ], + [ + 9.411289, + 49.318166201 + ], + [ + 9.410944, + 49.317741601 + ], + [ + 9.4105807, + 49.317323501 + ], + [ + 9.4101992, + 49.316912301 + ], + [ + 9.4097999, + 49.316508401 + ], + [ + 9.409383, + 49.316112101 + ], + [ + 9.4089491, + 49.315723701 + ], + [ + 9.4084983, + 49.315343501 + ], + [ + 9.408031, + 49.314971901 + ], + [ + 9.4075478, + 49.314609001 + ], + [ + 9.4070488, + 49.314255301 + ], + [ + 9.4065346, + 49.313911001 + ], + [ + 9.4060038, + 49.313575401 + ], + [ + 9.405975917, + 49.31355845 + ] + ] + } + }, + { + "identifier": "2026-014173--vi-bs.2026-03-23_10-00-00-000_004.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.427031976001594,9.492074864189235,49.32345278674711,9.413740005493844", + "point": "49.427031976001594,9.492074864189235", + "startLcPosition": "68", + "impact": { + "lower": "M\u00f6ckm\u00fchl", + "upper": "Holzspitze", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Heilbronn", + "title": "A81 | Holzspitze - M\u00f6ckm\u00fchl", + "coordinate": { + "lat": 49.427031976001594, + "long": 9.492074864189235 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 18:00 Uhr", + "10.04.26 von 07:00 bis 12:00 Uhr", + "13.04.26 von 10:00 bis 18:00 Uhr", + "14.04.26 von 06:00 bis 18:00 Uhr", + "15.04.26 von 06:00 bis 18:00 Uhr", + "16.04.26 von 06:00 bis 18:00 Uhr", + "17.04.26 von 06:00 bis 12:00 Uhr", + "20.04.26 von 10:00 bis 18:00 Uhr", + "21.04.26 von 06:00 bis 18:00 Uhr", + "22.04.26 von 06:00 bis 18:00 Uhr", + "23.04.26 von 06:00 bis 18:00 Uhr", + "24.04.26 von 06:00 bis 13:00 Uhr", + "", + "A81: W\u00fcrzburg -> Heilbronn, zwischen 4.3 km hinter Holzspitze und 6.3 km vor AS M\u00f6ckm\u00fchl", + "", + "L\u00e4nge: 13.98 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A81 von Holzspitze (Rastplatz) nach M\u00f6ckm\u00fchl (AS) Fahrbahninstandhaltung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.492074864, + 49.427031976 + ], + [ + 9.4905214, + 49.426342401 + ], + [ + 9.4883505, + 49.425341701 + ], + [ + 9.4870198, + 49.424640401 + ], + [ + 9.4862655, + 49.424201401 + ], + [ + 9.4852465, + 49.423608401 + ], + [ + 9.4843415, + 49.423019301 + ], + [ + 9.4831731, + 49.422173001 + ], + [ + 9.4820444, + 49.421288001 + ], + [ + 9.4817684, + 49.421054301 + ], + [ + 9.4809131, + 49.420329901 + ], + [ + 9.4798969, + 49.419316001 + ], + [ + 9.4794557, + 49.418851801 + ], + [ + 9.4792612, + 49.418624601 + ], + [ + 9.4782217, + 49.417408601 + ], + [ + 9.4780592, + 49.417191701 + ], + [ + 9.4773215, + 49.416207001 + ], + [ + 9.4765697, + 49.415078901 + ], + [ + 9.4761092, + 49.414342801 + ], + [ + 9.4756633, + 49.413626301 + ], + [ + 9.4753439, + 49.413062701 + ], + [ + 9.4748469, + 49.412185701 + ], + [ + 9.4741852, + 49.410873501 + ], + [ + 9.4738947, + 49.410264001 + ], + [ + 9.4737096, + 49.409875701 + ], + [ + 9.4732655, + 49.408892601 + ], + [ + 9.4732018, + 49.408740001 + ], + [ + 9.4728649, + 49.407933001 + ], + [ + 9.4726899, + 49.407494501 + ], + [ + 9.4724752, + 49.406917801 + ], + [ + 9.4723051, + 49.406461001 + ], + [ + 9.4719595, + 49.405466601 + ], + [ + 9.4717937, + 49.404946901 + ], + [ + 9.4716758, + 49.404524201 + ], + [ + 9.4713519, + 49.403363101 + ], + [ + 9.4712652, + 49.403027701 + ], + [ + 9.4711952, + 49.402757101 + ], + [ + 9.4708671, + 49.401244201 + ], + [ + 9.4706235, + 49.399884201 + ], + [ + 9.4706037, + 49.399773601 + ], + [ + 9.4704003, + 49.398514201 + ], + [ + 9.4702197, + 49.397230301 + ], + [ + 9.4700088, + 49.395906101 + ], + [ + 9.4699002, + 49.395275301 + ], + [ + 9.4697629, + 49.394632001 + ], + [ + 9.4692477, + 49.392741801 + ], + [ + 9.4689804, + 49.391948501 + ], + [ + 9.4688316, + 49.391540601 + ], + [ + 9.4686399, + 49.391099901 + ], + [ + 9.4682729, + 49.390289101 + ], + [ + 9.4678959, + 49.389515501 + ], + [ + 9.4672805, + 49.388485601 + ], + [ + 9.4666234, + 49.387436301 + ], + [ + 9.4660941, + 49.386692601 + ], + [ + 9.4655768, + 49.385949201 + ], + [ + 9.4648692, + 49.384997201 + ], + [ + 9.4640887, + 49.384044701 + ], + [ + 9.4636528, + 49.383543601 + ], + [ + 9.4631372, + 49.382971801 + ], + [ + 9.4628978, + 49.382706301 + ], + [ + 9.4627127, + 49.382510701 + ], + [ + 9.462305, + 49.382095201 + ], + [ + 9.4615221, + 49.381336501 + ], + [ + 9.4612509, + 49.381073701 + ], + [ + 9.4608593, + 49.380693001 + ], + [ + 9.4604476, + 49.380342201 + ], + [ + 9.4596939, + 49.379694801 + ], + [ + 9.4594471, + 49.379482801 + ], + [ + 9.4592473, + 49.379301201 + ], + [ + 9.4589366, + 49.379062001 + ], + [ + 9.4585391, + 49.378761201 + ], + [ + 9.4583256, + 49.378596301 + ], + [ + 9.4574349, + 49.377969001 + ], + [ + 9.4569969, + 49.377663201 + ], + [ + 9.456531, + 49.377357401 + ], + [ + 9.4554707, + 49.376699301 + ], + [ + 9.4543568, + 49.376088201 + ], + [ + 9.4535487, + 49.375659901 + ], + [ + 9.4519934, + 49.374884301 + ], + [ + 9.45016, + 49.374013301 + ], + [ + 9.4487513, + 49.373349001 + ], + [ + 9.4431924, + 49.370732601 + ], + [ + 9.4413927, + 49.369876201 + ], + [ + 9.4375346, + 49.368057901 + ], + [ + 9.4321811, + 49.365528401 + ], + [ + 9.4310089, + 49.364971201 + ], + [ + 9.4306144, + 49.364785001 + ], + [ + 9.4283712, + 49.363726101 + ], + [ + 9.4266524, + 49.362922701 + ], + [ + 9.4264418, + 49.362820001 + ], + [ + 9.4252815, + 49.362261501 + ], + [ + 9.424724, + 49.361988701 + ], + [ + 9.423889, + 49.361580101 + ], + [ + 9.4235245, + 49.361388901 + ], + [ + 9.4227987, + 49.361002401 + ], + [ + 9.4217114, + 49.360420501 + ], + [ + 9.4211874, + 49.360120301 + ], + [ + 9.4205618, + 49.359741101 + ], + [ + 9.419982, + 49.359380901 + ], + [ + 9.4188341, + 49.358656601 + ], + [ + 9.4178124, + 49.357947201 + ], + [ + 9.4163851, + 49.356882201 + ], + [ + 9.4158986, + 49.356519201 + ], + [ + 9.4148447, + 49.355651301 + ], + [ + 9.4144896, + 49.355338001 + ], + [ + 9.4138804, + 49.354785701 + ], + [ + 9.4132716, + 49.354219101 + ], + [ + 9.4123374, + 49.353280501 + ], + [ + 9.411789, + 49.352716101 + ], + [ + 9.4111955, + 49.352041701 + ], + [ + 9.4106735, + 49.351410001 + ], + [ + 9.4103249, + 49.350978001 + ], + [ + 9.4100518, + 49.350623801 + ], + [ + 9.4094597, + 49.349810801 + ], + [ + 9.4092124, + 49.349456501 + ], + [ + 9.4090117, + 49.349173401 + ], + [ + 9.4086085, + 49.348537601 + ], + [ + 9.4082336, + 49.347931001 + ], + [ + 9.4080023, + 49.347525801 + ], + [ + 9.4077824, + 49.347115201 + ], + [ + 9.4074533, + 49.346410201 + ], + [ + 9.4072875, + 49.346020501 + ], + [ + 9.4070465, + 49.345374801 + ], + [ + 9.40688, + 49.344836701 + ], + [ + 9.4068491, + 49.344686701 + ], + [ + 9.4067404, + 49.344178601 + ], + [ + 9.4066555, + 49.343623801 + ], + [ + 9.4066138, + 49.342903401 + ], + [ + 9.4066048, + 49.342320201 + ], + [ + 9.4066599, + 49.341639501 + ], + [ + 9.4067189, + 49.341216501 + ], + [ + 9.406791, + 49.340773201 + ], + [ + 9.4068821, + 49.340334101 + ], + [ + 9.4071979, + 49.339364701 + ], + [ + 9.4075316, + 49.338614301 + ], + [ + 9.4079483, + 49.337801301 + ], + [ + 9.4083227, + 49.337155401 + ], + [ + 9.4090379, + 49.336078001 + ], + [ + 9.4096977, + 49.335105101 + ], + [ + 9.4110925, + 49.332921601 + ], + [ + 9.4116223, + 49.331993001 + ], + [ + 9.4122062, + 49.330969301 + ], + [ + 9.4126513, + 49.329919801 + ], + [ + 9.4127684, + 49.329641401 + ], + [ + 9.412829, + 49.329445301 + ], + [ + 9.4130645, + 49.328785601 + ], + [ + 9.41328, + 49.328105001 + ], + [ + 9.4134142, + 49.327612901 + ], + [ + 9.413458, + 49.327452201 + ], + [ + 9.4136137, + 49.326796001 + ], + [ + 9.4137209, + 49.326223901 + ], + [ + 9.4138009, + 49.325584601 + ], + [ + 9.4138309, + 49.325124301 + ], + [ + 9.4138345, + 49.324690901 + ], + [ + 9.4138222, + 49.324204701 + ], + [ + 9.413793, + 49.323886101 + ], + [ + 9.4137453, + 49.323489501 + ], + [ + 9.413740005, + 49.323452787 + ] + ] + } + }, + { + "identifier": "2026-017192--vi-fbm.2026-04-21_05-00-00-000.devi-bs.2026-04-20_22-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.58201353437938,9.653885791287788,49.584334009011094,9.661332708198264", + "point": "49.58201353437938,9.653885791287788", + "startLcPosition": "70", + "impact": { + "lower": "Tauberbischofsheim", + "upper": "Ahorn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | Ahorn - Tauberbischofsheim", + "coordinate": { + "lat": 49.58201353437938, + "long": 9.653885791287788 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 05:00 bis 22:00 Uhr", + "22.04.26 von 05:00 bis 22:00 Uhr", + "28.04.26 von 05:00 bis 22:00 Uhr", + "29.04.26 von 05:00 bis 22:00 Uhr", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 7.1 km hinter AS Ahorn und 3.2 km vor AS Tauberbischofsheim", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A81 von Ahorn (AS) nach Tauberbischofsheim (AS) - Durchf\u00fchrung von S\u00fcdlink Transporten \u00fcber Behelfsausfahrt km 475 FR W\u00dc" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.653885791, + 49.582013534 + ], + [ + 9.6560708, + 49.582476501 + ], + [ + 9.6570978, + 49.582740801 + ], + [ + 9.6575092, + 49.582846601 + ], + [ + 9.6589936, + 49.583330701 + ], + [ + 9.6601573, + 49.583781701 + ], + [ + 9.6609799, + 49.584150301 + ], + [ + 9.661332708, + 49.584334009 + ] + ] + } + }, + { + "identifier": "2026-017192--vi-bs.2026-04-20_22-00-00-000.devi-bs.2026-04-20_22-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.58201353437938,9.653885791287788,49.58519336318312,9.662945594256785", + "point": "49.58201353437938,9.653885791287788", + "startLcPosition": "70", + "impact": { + "lower": "Tauberbischofsheim", + "upper": "Ahorn", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | Ahorn - Tauberbischofsheim", + "coordinate": { + "lat": 49.58201353437938, + "long": 9.653885791287788 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 22:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 22:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 22:00 bis zum 23.04.26 05:00 Uhr.", + "27.04.26 22:00 bis zum 28.04.26 05:00 Uhr.", + "28.04.26 22:00 bis zum 29.04.26 05:00 Uhr.", + "29.04.26 22:00 bis zum 30.04.26 05:00 Uhr.", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 7.1 km hinter AS Ahorn und 3.1 km vor AS Tauberbischofsheim", + "", + "L\u00e4nge: 0.75 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 von Ahorn (AS) nach Tauberbischofsheim (AS) - Durchf\u00fchrung von S\u00fcdlink Transporten \u00fcber Behelfsausfahrt km 475 FR W\u00dc" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.653885791, + 49.582013534 + ], + [ + 9.6560708, + 49.582476501 + ], + [ + 9.6570978, + 49.582740801 + ], + [ + 9.6575092, + 49.582846601 + ], + [ + 9.6589936, + 49.583330701 + ], + [ + 9.6601573, + 49.583781701 + ], + [ + 9.6609799, + 49.584150301 + ], + [ + 9.661707, + 49.584528901 + ], + [ + 9.6628515, + 49.585132901 + ], + [ + 9.6628977, + 49.585162601 + ], + [ + 9.662945594, + 49.585193363 + ] + ] + } + }, + { + "identifier": "2026-015343--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.61638520031611,9.723082397188154,49.61912018751739,9.726503527722768", + "point": "49.61638520031611,9.723082397188154", + "startLcPosition": "71", + "impact": { + "lower": "Ob der Tauber", + "upper": "Tauberbischofsheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | Tauberbischofsheim - Ob der Tauber", + "coordinate": { + "lat": 49.61638520031611, + "long": 9.723082397188154 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 12:00 Uhr", + "20.04.26 von 10:00 bis 17:00 Uhr", + "21.04.26 von 07:00 bis 17:00 Uhr", + "22.04.26 von 07:00 bis 17:00 Uhr", + "23.04.26 von 07:00 bis 17:00 Uhr", + "24.04.26 von 07:00 bis 12:00 Uhr", + "27.04.26 von 10:00 bis 17:00 Uhr", + "28.04.26 von 07:00 bis 17:00 Uhr", + "29.04.26 von 07:00 bis 17:00 Uhr", + "30.04.26 von 07:00 bis 12:00 Uhr", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 2.8 km hinter AS Tauberbischofsheim und 1.1 km vor Ob der Tauber", + "", + "L\u00e4nge: 0.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A81 Bauwerkspr\u00fcfung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.723082397, + 49.6163852 + ], + [ + 9.7237947, + 49.616864501 + ], + [ + 9.7240662, + 49.617047201 + ], + [ + 9.725294, + 49.618015301 + ], + [ + 9.7263885, + 49.619002401 + ], + [ + 9.726503528, + 49.619120188 + ] + ] + } + }, + { + "identifier": "2025-050314--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_010.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.71385779414246,9.81485866387218,49.72090725753444,9.823338534386107", + "point": "49.71385779414246,9.81485866387218", + "startLcPosition": "72", + "impact": { + "lower": "Gerchsheim", + "upper": "Ob der Tauber", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Heilbronn -> W\u00fcrzburg", + "title": "A81 | Ob der Tauber - Gerchsheim", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 49.71385779414246, + "long": 9.81485866387218 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 02.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.07.26)", + "", + "A81: Heilbronn -> W\u00fcrzburg, zwischen 11.7 km hinter Ob der Tauber und 0.6 km vor AS Gerchsheim", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A81 Br\u00fcckenneubau Bw 454" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.814858664, + 49.713857794 + ], + [ + 9.8153521, + 49.714135501 + ], + [ + 9.8156642, + 49.714311201 + ], + [ + 9.8162939, + 49.714680301 + ], + [ + 9.816608, + 49.714869601 + ], + [ + 9.817719, + 49.715576901 + ], + [ + 9.8185329, + 49.716128801 + ], + [ + 9.819024, + 49.716505001 + ], + [ + 9.8193006, + 49.716716901 + ], + [ + 9.8201447, + 49.717400501 + ], + [ + 9.8208735, + 49.718057901 + ], + [ + 9.8217573, + 49.718959301 + ], + [ + 9.8224866, + 49.719791501 + ], + [ + 9.82308, + 49.720557101 + ], + [ + 9.8231773, + 49.720688801 + ], + [ + 9.823338534, + 49.720907258 + ] + ] + } + }, + { + "identifier": "2026-015343--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.619151557617776,9.726322259199858,49.6164676643425,9.72295022827846", + "point": "49.619151557617776,9.726322259199858", + "startLcPosition": "72", + "impact": { + "lower": "Tauberbischofsheim", + "upper": "Ob der Tauber", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " W\u00fcrzburg -> Heilbronn", + "title": "A81 | Ob der Tauber - Tauberbischofsheim", + "coordinate": { + "lat": 49.619151557617776, + "long": 9.726322259199858 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 16.04.26 von 07:00 bis 17:00 Uhr.", + "17.04.26 von 07:00 bis 12:00 Uhr", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 20.04.26 und dem 23.04.26 von 07:00 bis 17:00 Uhr.", + "24.04.26 von 07:00 bis 12:00 Uhr", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 27.04.26 und dem 30.04.26 von 07:00 bis 17:00 Uhr.", + "", + "A81: W\u00fcrzburg -> Heilbronn, zwischen 1.1 km hinter Ob der Tauber und 2.8 km vor AS Tauberbischofsheim", + "", + "L\u00e4nge: 0.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A81 Bauwerkspr\u00fcfung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.726322259, + 49.619151558 + ], + [ + 9.7262386, + 49.619063401 + ], + [ + 9.725924, + 49.618774701 + ], + [ + 9.7251369, + 49.618080101 + ], + [ + 9.7239294, + 49.617133101 + ], + [ + 9.723671, + 49.616957501 + ], + [ + 9.722950228, + 49.616467664 + ] + ] + } + }, + { + "identifier": "2025-050314--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_010.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.72095937832755,9.823168185137579,49.71394617444125,9.814740755868911", + "point": "49.72095937832755,9.823168185137579", + "startLcPosition": "73", + "impact": { + "lower": "Ob der Tauber", + "upper": "Gerchsheim", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " W\u00fcrzburg -> Heilbronn", + "title": "A81 | Gerchsheim - Ob der Tauber", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 49.72095937832755, + "long": 9.823168185137579 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 02.07.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.07.26)", + "", + "A81: W\u00fcrzburg -> Heilbronn, zwischen 0.6 km hinter AS Gerchsheim und 11.7 km vor Ob der Tauber", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A81 Br\u00fcckenneubau Bw 454" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.823168185, + 49.720959378 + ], + [ + 9.8230043, + 49.720731001 + ], + [ + 9.822895, + 49.720578601 + ], + [ + 9.8223173, + 49.719837101 + ], + [ + 9.8215558, + 49.718973401 + ], + [ + 9.8207655, + 49.718174501 + ], + [ + 9.8200166, + 49.717483301 + ], + [ + 9.8191738, + 49.716785801 + ], + [ + 9.8188857, + 49.716572701 + ], + [ + 9.8182989, + 49.716138701 + ], + [ + 9.8175747, + 49.715645001 + ], + [ + 9.8164825, + 49.714956601 + ], + [ + 9.8161685, + 49.714767201 + ], + [ + 9.8152268, + 49.714218101 + ], + [ + 9.814740756, + 49.713946174 + ] + ] + } + }, + { + "identifier": "2026-016368--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72600223403363,9.06747496634354,48.6782116459576,8.964989561096363", + "point": "48.72600223403363,9.06747496634354", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 11.63 nach A81", + "title": "A81 von B\u00f6blingen-Hulb (AS) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 48.72600223403363, + "long": 9.06747496634354 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Von A831: km 11.63 nach A81: Stuttgart -> Singen, zwischen AK Stuttgart und 1.3 km vor AS Ehningen", + "", + "L\u00e4nge: 9.92 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von B\u00f6blingen-Hulb (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.067474966, + 48.726002234 + ], + [ + 9.0672738, + 48.725911501 + ], + [ + 9.0668415, + 48.725716401 + ], + [ + 9.0664411, + 48.725533601 + ], + [ + 9.0658813, + 48.725270601 + ], + [ + 9.0655117, + 48.725094901 + ], + [ + 9.064895, + 48.724796001 + ], + [ + 9.0644194, + 48.724560501 + ], + [ + 9.0639719, + 48.724334001 + ], + [ + 9.0635752, + 48.724131001 + ], + [ + 9.0631762, + 48.723924401 + ], + [ + 9.0625999, + 48.723617001 + ], + [ + 9.0623736, + 48.723495401 + ], + [ + 9.0620273, + 48.723306701 + ], + [ + 9.061764, + 48.723162301 + ], + [ + 9.0614904, + 48.723008801 + ], + [ + 9.0610034, + 48.722734401 + ], + [ + 9.0605186, + 48.722454101 + ], + [ + 9.0595152, + 48.721882301 + ], + [ + 9.0590685, + 48.721612401 + ], + [ + 9.0588009, + 48.721445901 + ], + [ + 9.0585259, + 48.721273601 + ], + [ + 9.0581609, + 48.721038801 + ], + [ + 9.0577336, + 48.720749201 + ], + [ + 9.0574493, + 48.720543801 + ], + [ + 9.057227, + 48.720379801 + ], + [ + 9.0570491, + 48.720240501 + ], + [ + 9.056887, + 48.720110401 + ], + [ + 9.0567329, + 48.719983301 + ], + [ + 9.0565812, + 48.719851601 + ], + [ + 9.0563925, + 48.719681401 + ], + [ + 9.0562243, + 48.719520601 + ], + [ + 9.0560255, + 48.719320401 + ], + [ + 9.0559034, + 48.719190301 + ], + [ + 9.0557399, + 48.719016101 + ], + [ + 9.0555883, + 48.718837301 + ], + [ + 9.0554302, + 48.718645301 + ], + [ + 9.0553118, + 48.718493901 + ], + [ + 9.0551947, + 48.718335301 + ], + [ + 9.0550753, + 48.718164401 + ], + [ + 9.0549801, + 48.718022601 + ], + [ + 9.054883, + 48.717873701 + ], + [ + 9.0547853, + 48.717711301 + ], + [ + 9.0547003, + 48.717561001 + ], + [ + 9.0546237, + 48.717417801 + ], + [ + 9.0545288, + 48.717232801 + ], + [ + 9.0544497, + 48.717065501 + ], + [ + 9.0543692, + 48.716882601 + ], + [ + 9.0543108, + 48.716742301 + ], + [ + 9.0542567, + 48.716610601 + ], + [ + 9.0542072, + 48.716469601 + ], + [ + 9.0541613, + 48.716336101 + ], + [ + 9.0541338, + 48.716254701 + ], + [ + 9.0540849, + 48.716080401 + ], + [ + 9.0540575, + 48.715988901 + ], + [ + 9.0539973, + 48.715746401 + ], + [ + 9.0539693, + 48.715600601 + ], + [ + 9.0539468, + 48.715493001 + ], + [ + 9.053929, + 48.715400701 + ], + [ + 9.0539171, + 48.715323701 + ], + [ + 9.0538947, + 48.715147501 + ], + [ + 9.0538779, + 48.714976601 + ], + [ + 9.0538609, + 48.714826101 + ], + [ + 9.0538521, + 48.714676801 + ], + [ + 9.0538444, + 48.714374901 + ], + [ + 9.0538423, + 48.714223901 + ], + [ + 9.0538432, + 48.714148201 + ], + [ + 9.053844, + 48.714071601 + ], + [ + 9.0538441, + 48.713920301 + ], + [ + 9.0538507, + 48.713769301 + ], + [ + 9.05386, + 48.713469601 + ], + [ + 9.0538638, + 48.713218201 + ], + [ + 9.0538711, + 48.712882001 + ], + [ + 9.053868, + 48.712565001 + ], + [ + 9.0538602, + 48.712392201 + ], + [ + 9.0538513, + 48.712235901 + ], + [ + 9.0538337, + 48.712044401 + ], + [ + 9.053816, + 48.711877701 + ], + [ + 9.0537908, + 48.711714901 + ], + [ + 9.053761, + 48.711547101 + ], + [ + 9.0537311, + 48.711399701 + ], + [ + 9.0536933, + 48.711234301 + ], + [ + 9.0536506, + 48.711076101 + ], + [ + 9.053586, + 48.710853501 + ], + [ + 9.0535404, + 48.710706501 + ], + [ + 9.0534849, + 48.710552401 + ], + [ + 9.053423, + 48.710393601 + ], + [ + 9.0533568, + 48.710229001 + ], + [ + 9.0532883, + 48.710074201 + ], + [ + 9.0532127, + 48.709913201 + ], + [ + 9.0531116, + 48.709716701 + ], + [ + 9.0530209, + 48.709552001 + ], + [ + 9.052934, + 48.709402601 + ], + [ + 9.0528618, + 48.709283001 + ], + [ + 9.0527844, + 48.709160501 + ], + [ + 9.0526709, + 48.708987101 + ], + [ + 9.0525538, + 48.708819101 + ], + [ + 9.0524221, + 48.708642301 + ], + [ + 9.0522932, + 48.708479001 + ], + [ + 9.0521594, + 48.708311901 + ], + [ + 9.0520511, + 48.708191801 + ], + [ + 9.0519367, + 48.708066601 + ], + [ + 9.0518057, + 48.707924601 + ], + [ + 9.0516672, + 48.707782301 + ], + [ + 9.0515294, + 48.707646201 + ], + [ + 9.0513849, + 48.707506201 + ], + [ + 9.05118, + 48.707324101 + ], + [ + 9.0509698, + 48.707138201 + ], + [ + 9.0507167, + 48.706931201 + ], + [ + 9.0505048, + 48.706765201 + ], + [ + 9.0503041, + 48.706605401 + ], + [ + 9.0501608, + 48.706498401 + ], + [ + 9.0500124, + 48.706394201 + ], + [ + 9.0498597, + 48.706292201 + ], + [ + 9.0496921, + 48.706185101 + ], + [ + 9.0494088, + 48.706011101 + ], + [ + 9.0492676, + 48.705930601 + ], + [ + 9.0491155, + 48.705842901 + ], + [ + 9.0489176, + 48.705734401 + ], + [ + 9.0487318, + 48.705637201 + ], + [ + 9.0485115, + 48.705522801 + ], + [ + 9.0482602, + 48.705401201 + ], + [ + 9.0478862, + 48.705229701 + ], + [ + 9.047663, + 48.705134101 + ], + [ + 9.0474476, + 48.705046001 + ], + [ + 9.0471902, + 48.704945101 + ], + [ + 9.0468575, + 48.704819801 + ], + [ + 9.0464009, + 48.704662301 + ], + [ + 9.0461526, + 48.704583301 + ], + [ + 9.0458631, + 48.704495001 + ], + [ + 9.0455259, + 48.704402601 + ], + [ + 9.045174, + 48.704310501 + ], + [ + 9.04473, + 48.704204401 + ], + [ + 9.0442747, + 48.704107501 + ], + [ + 9.0440098, + 48.704056601 + ], + [ + 9.0435197, + 48.703968601 + ], + [ + 9.0430682, + 48.703898701 + ], + [ + 9.0425498, + 48.703828601 + ], + [ + 9.0420759, + 48.703770201 + ], + [ + 9.041599, + 48.703716901 + ], + [ + 9.0411533, + 48.703674701 + ], + [ + 9.0406975, + 48.703632801 + ], + [ + 9.0401782, + 48.703590401 + ], + [ + 9.0394156, + 48.703534101 + ], + [ + 9.038813, + 48.703495401 + ], + [ + 9.0381769, + 48.703452301 + ], + [ + 9.0374259, + 48.703397001 + ], + [ + 9.0367747, + 48.703347801 + ], + [ + 9.0360807, + 48.703286001 + ], + [ + 9.0354054, + 48.703219901 + ], + [ + 9.0349827, + 48.703176501 + ], + [ + 9.0345494, + 48.703123401 + ], + [ + 9.0341996, + 48.703080001 + ], + [ + 9.0338434, + 48.703029601 + ], + [ + 9.033449, + 48.702971301 + ], + [ + 9.033174, + 48.702928701 + ], + [ + 9.0328815, + 48.702880801 + ], + [ + 9.0325436, + 48.702822901 + ], + [ + 9.0322951, + 48.702777801 + ], + [ + 9.0320448, + 48.702730901 + ], + [ + 9.031798, + 48.702684101 + ], + [ + 9.0315195, + 48.702627701 + ], + [ + 9.0311465, + 48.702549001 + ], + [ + 9.0308891, + 48.702491701 + ], + [ + 9.0306592, + 48.702438701 + ], + [ + 9.030403, + 48.702377601 + ], + [ + 9.0302112, + 48.702331501 + ], + [ + 9.0300077, + 48.702281701 + ], + [ + 9.0297729, + 48.702222201 + ], + [ + 9.0294906, + 48.702149001 + ], + [ + 9.0290723, + 48.702035901 + ], + [ + 9.0286499, + 48.701914801 + ], + [ + 9.0282193, + 48.701782701 + ], + [ + 9.0279674, + 48.701701101 + ], + [ + 9.0277492, + 48.701628701 + ], + [ + 9.0273457, + 48.701488701 + ], + [ + 9.0271099, + 48.701403101 + ], + [ + 9.0268671, + 48.701312601 + ], + [ + 9.0267149, + 48.701253801 + ], + [ + 9.0266715, + 48.701235701 + ], + [ + 9.0266283, + 48.701217501 + ], + [ + 9.0265964, + 48.701203801 + ], + [ + 9.0265195, + 48.701168501 + ], + [ + 9.0264561, + 48.701141701 + ], + [ + 9.0263899, + 48.701112301 + ], + [ + 9.0262594, + 48.701040201 + ], + [ + 9.0261575, + 48.700969001 + ], + [ + 9.026069, + 48.700894201 + ], + [ + 9.0260054, + 48.700839001 + ], + [ + 9.0258595, + 48.700671001 + ], + [ + 9.0257898, + 48.700590401 + ], + [ + 9.0256749, + 48.700456001 + ], + [ + 9.0255338, + 48.700346501 + ], + [ + 9.0254416, + 48.700265701 + ], + [ + 9.0253155, + 48.700189601 + ], + [ + 9.0250253, + 48.700031901 + ], + [ + 9.0245656, + 48.699821301 + ], + [ + 9.0239776, + 48.699548501 + ], + [ + 9.0235415, + 48.699342001 + ], + [ + 9.0230409, + 48.699101401 + ], + [ + 9.0220528, + 48.698605001 + ], + [ + 9.0214918, + 48.698315801 + ], + [ + 9.0209557, + 48.698041201 + ], + [ + 9.0203036, + 48.697719901 + ], + [ + 9.0199123, + 48.697524901 + ], + [ + 9.0191421, + 48.697129901 + ], + [ + 9.0185605, + 48.696848001 + ], + [ + 9.0179917, + 48.696574501 + ], + [ + 9.0171525, + 48.696183301 + ], + [ + 9.0166169, + 48.695945701 + ], + [ + 9.0162264, + 48.695779801 + ], + [ + 9.0158694, + 48.695641201 + ], + [ + 9.0157291, + 48.695597401 + ], + [ + 9.0155875, + 48.695558801 + ], + [ + 9.0152869, + 48.695494101 + ], + [ + 9.0150694, + 48.695459001 + ], + [ + 9.014855, + 48.695426901 + ], + [ + 9.0146491, + 48.695389501 + ], + [ + 9.0144172, + 48.695334501 + ], + [ + 9.0142235, + 48.695281001 + ], + [ + 9.0138516, + 48.695167201 + ], + [ + 9.0137533, + 48.695134001 + ], + [ + 9.0136953, + 48.695114601 + ], + [ + 9.0136333, + 48.695095001 + ], + [ + 9.0134869, + 48.695047001 + ], + [ + 9.0131533, + 48.694942601 + ], + [ + 9.0127507, + 48.694825501 + ], + [ + 9.0122025, + 48.694673401 + ], + [ + 9.0117924, + 48.694570501 + ], + [ + 9.0113721, + 48.694475601 + ], + [ + 9.0110069, + 48.694396101 + ], + [ + 9.0106097, + 48.694320501 + ], + [ + 9.0102649, + 48.694263601 + ], + [ + 9.0100668, + 48.694230901 + ], + [ + 9.0096292, + 48.694169101 + ], + [ + 9.0090593, + 48.694099701 + ], + [ + 9.0084037, + 48.694033701 + ], + [ + 9.0077082, + 48.693975301 + ], + [ + 9.0069716, + 48.693920901 + ], + [ + 9.0060809, + 48.693863901 + ], + [ + 9.0055192, + 48.693828601 + ], + [ + 9.0049913, + 48.693800601 + ], + [ + 9.0044581, + 48.693775601 + ], + [ + 9.0040305, + 48.693757801 + ], + [ + 9.0034214, + 48.693734801 + ], + [ + 9.0032625, + 48.693729601 + ], + [ + 9.002075, + 48.693711501 + ], + [ + 9.0012749, + 48.693682601 + ], + [ + 9.0005294, + 48.693673501 + ], + [ + 8.99991, + 48.693666201 + ], + [ + 8.9992605, + 48.693654701 + ], + [ + 8.9989105, + 48.693647601 + ], + [ + 8.9985823, + 48.693638501 + ], + [ + 8.9980705, + 48.693616801 + ], + [ + 8.9975677, + 48.693586001 + ], + [ + 8.9970921, + 48.693548701 + ], + [ + 8.9968377, + 48.693524401 + ], + [ + 8.9966036, + 48.693497901 + ], + [ + 8.9963664, + 48.693469201 + ], + [ + 8.9961296, + 48.693438101 + ], + [ + 8.9958964, + 48.693404801 + ], + [ + 8.9954422, + 48.693333201 + ], + [ + 8.9951846, + 48.693287701 + ], + [ + 8.9949092, + 48.693235001 + ], + [ + 8.9944802, + 48.693146501 + ], + [ + 8.9942475, + 48.693094301 + ], + [ + 8.9940287, + 48.693042201 + ], + [ + 8.9937517, + 48.692973101 + ], + [ + 8.9935394, + 48.692917701 + ], + [ + 8.9933414, + 48.692862701 + ], + [ + 8.9931223, + 48.692800401 + ], + [ + 8.9928946, + 48.692734401 + ], + [ + 8.9926366, + 48.692653401 + ], + [ + 8.9922334, + 48.692519801 + ], + [ + 8.992008, + 48.692440701 + ], + [ + 8.9917788, + 48.692357201 + ], + [ + 8.9915587, + 48.692273401 + ], + [ + 8.9913578, + 48.692193401 + ], + [ + 8.991159, + 48.692112001 + ], + [ + 8.9909322, + 48.692014601 + ], + [ + 8.9907418, + 48.691931201 + ], + [ + 8.9905435, + 48.691841001 + ], + [ + 8.990322, + 48.691736201 + ], + [ + 8.9901294, + 48.691641801 + ], + [ + 8.9899314, + 48.691542401 + ], + [ + 8.9897354, + 48.691439501 + ], + [ + 8.9895449, + 48.691336601 + ], + [ + 8.9893594, + 48.691233401 + ], + [ + 8.9891721, + 48.691126801 + ], + [ + 8.9889957, + 48.691023001 + ], + [ + 8.9888341, + 48.690927201 + ], + [ + 8.9886684, + 48.690826001 + ], + [ + 8.9884801, + 48.690710901 + ], + [ + 8.9882756, + 48.690580701 + ], + [ + 8.988097, + 48.690465601 + ], + [ + 8.987928, + 48.690355501 + ], + [ + 8.9877497, + 48.690238901 + ], + [ + 8.9874226, + 48.690020201 + ], + [ + 8.98709, + 48.689796701 + ], + [ + 8.9868365, + 48.689624001 + ], + [ + 8.9865755, + 48.689446601 + ], + [ + 8.9862403, + 48.689219601 + ], + [ + 8.9859054, + 48.688995701 + ], + [ + 8.9857012, + 48.688859901 + ], + [ + 8.9855464, + 48.688758601 + ], + [ + 8.9853841, + 48.688653901 + ], + [ + 8.9851461, + 48.688502301 + ], + [ + 8.9849509, + 48.688382301 + ], + [ + 8.9847553, + 48.688263001 + ], + [ + 8.9845677, + 48.688151501 + ], + [ + 8.9844051, + 48.688058801 + ], + [ + 8.9842347, + 48.687960901 + ], + [ + 8.9840376, + 48.687850501 + ], + [ + 8.9838224, + 48.687733501 + ], + [ + 8.9832899, + 48.687453401 + ], + [ + 8.9830639, + 48.687338701 + ], + [ + 8.9828692, + 48.687242001 + ], + [ + 8.9826565, + 48.687138501 + ], + [ + 8.9824337, + 48.687034601 + ], + [ + 8.9822456, + 48.686947701 + ], + [ + 8.9820481, + 48.686858201 + ], + [ + 8.9818418, + 48.686767701 + ], + [ + 8.9816366, + 48.686678501 + ], + [ + 8.981433, + 48.686592601 + ], + [ + 8.9812518, + 48.686517801 + ], + [ + 8.9810656, + 48.686442801 + ], + [ + 8.9808377, + 48.686352801 + ], + [ + 8.9806136, + 48.686265801 + ], + [ + 8.9803922, + 48.686180801 + ], + [ + 8.9801683, + 48.686098301 + ], + [ + 8.9799781, + 48.686029801 + ], + [ + 8.9797602, + 48.685952901 + ], + [ + 8.9795775, + 48.685889301 + ], + [ + 8.9793554, + 48.685814101 + ], + [ + 8.9791491, + 48.685746901 + ], + [ + 8.9789064, + 48.685668601 + ], + [ + 8.978699, + 48.685604101 + ], + [ + 8.9784788, + 48.685538201 + ], + [ + 8.9782399, + 48.685466301 + ], + [ + 8.9780154, + 48.685400701 + ], + [ + 8.9777113, + 48.685312701 + ], + [ + 8.9773294, + 48.685204801 + ], + [ + 8.9770941, + 48.685138801 + ], + [ + 8.9764356, + 48.684958201 + ], + [ + 8.9757617, + 48.684775301 + ], + [ + 8.9755362, + 48.684713801 + ], + [ + 8.9753101, + 48.684651501 + ], + [ + 8.9750871, + 48.684589401 + ], + [ + 8.9748627, + 48.684526401 + ], + [ + 8.9746382, + 48.684462101 + ], + [ + 8.9744138, + 48.684397201 + ], + [ + 8.9741899, + 48.684331701 + ], + [ + 8.9739663, + 48.684264101 + ], + [ + 8.9737439, + 48.684196301 + ], + [ + 8.9735227, + 48.684127901 + ], + [ + 8.9733026, + 48.684057501 + ], + [ + 8.9730828, + 48.683985401 + ], + [ + 8.9728676, + 48.683913301 + ], + [ + 8.9726498, + 48.683837601 + ], + [ + 8.9724353, + 48.683761201 + ], + [ + 8.9722198, + 48.683682001 + ], + [ + 8.972008, + 48.683602101 + ], + [ + 8.9717988, + 48.683519801 + ], + [ + 8.9715918, + 48.683436401 + ], + [ + 8.9713823, + 48.683348201 + ], + [ + 8.9711775, + 48.683259701 + ], + [ + 8.9709745, + 48.683169301 + ], + [ + 8.9708041, + 48.683091701 + ], + [ + 8.9706029, + 48.682995001 + ], + [ + 8.9704063, + 48.682897901 + ], + [ + 8.970174, + 48.682779001 + ], + [ + 8.9700194, + 48.682697001 + ], + [ + 8.9698327, + 48.682596801 + ], + [ + 8.9696302, + 48.682485201 + ], + [ + 8.9694586, + 48.682388201 + ], + [ + 8.969261, + 48.682274601 + ], + [ + 8.9690472, + 48.682144701 + ], + [ + 8.968865, + 48.682031901 + ], + [ + 8.9686871, + 48.681920101 + ], + [ + 8.9685123, + 48.681805701 + ], + [ + 8.9683411, + 48.681691501 + ], + [ + 8.968169, + 48.681571901 + ], + [ + 8.9680052, + 48.681452701 + ], + [ + 8.9678431, + 48.681333001 + ], + [ + 8.967677, + 48.681206601 + ], + [ + 8.9675243, + 48.681084501 + ], + [ + 8.9673721, + 48.680958001 + ], + [ + 8.9672212, + 48.680830501 + ], + [ + 8.9670745, + 48.680701101 + ], + [ + 8.9669263, + 48.680568201 + ], + [ + 8.9667823, + 48.680435001 + ], + [ + 8.9666482, + 48.680302101 + ], + [ + 8.9665142, + 48.680168001 + ], + [ + 8.9663783, + 48.680030501 + ], + [ + 8.9662507, + 48.679894901 + ], + [ + 8.9661245, + 48.679754001 + ], + [ + 8.9660011, + 48.679614001 + ], + [ + 8.9658801, + 48.679472701 + ], + [ + 8.9657608, + 48.679328001 + ], + [ + 8.9656531, + 48.679186401 + ], + [ + 8.965541, + 48.679040401 + ], + [ + 8.9654318, + 48.678889501 + ], + [ + 8.9653289, + 48.678742801 + ], + [ + 8.965229, + 48.678594501 + ], + [ + 8.9651331, + 48.678445701 + ], + [ + 8.9650392, + 48.678294601 + ], + [ + 8.964989561, + 48.678211646 + ] + ] + } + }, + { + "identifier": "2026-016368--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.678159885444174,8.96518707517348,48.725894083756415,9.067585899056143", + "point": "48.678159885444174,8.96518707517348", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 von B\u00f6blingen-Hulb (AS) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 48.678159885444174, + "long": 8.96518707517348 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Von A81: Singen -> Stuttgart, zwischen 1.3 km hinter AS Ehningen und AK Stuttgart nach A831: km 11.37", + "", + "L\u00e4nge: 9.92 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von B\u00f6blingen-Hulb (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.965187075, + 48.678159885 + ], + [ + 8.9652557, + 48.678274901 + ], + [ + 8.9654171, + 48.678531601 + ], + [ + 8.9655384, + 48.678707201 + ], + [ + 8.9656243, + 48.678832801 + ], + [ + 8.9657892, + 48.679053201 + ], + [ + 8.9659528, + 48.679266101 + ], + [ + 8.9661406, + 48.679489301 + ], + [ + 8.9663241, + 48.679694301 + ], + [ + 8.9664492, + 48.679829401 + ], + [ + 8.9665828, + 48.679971101 + ], + [ + 8.9667224, + 48.680116401 + ], + [ + 8.9669688, + 48.680356201 + ], + [ + 8.9671888, + 48.680543501 + ], + [ + 8.9673404, + 48.680671601 + ], + [ + 8.9675776, + 48.680872101 + ], + [ + 8.9678879, + 48.681123901 + ], + [ + 8.9681154, + 48.681303201 + ], + [ + 8.9682327, + 48.681393901 + ], + [ + 8.9683646, + 48.681489001 + ], + [ + 8.9686976, + 48.681726101 + ], + [ + 8.9688671, + 48.681843301 + ], + [ + 8.9690338, + 48.681954401 + ], + [ + 8.9692261, + 48.682081401 + ], + [ + 8.9695199, + 48.682268401 + ], + [ + 8.9696924, + 48.682371801 + ], + [ + 8.9699634, + 48.682521101 + ], + [ + 8.9702333, + 48.682665801 + ], + [ + 8.970461, + 48.682783601 + ], + [ + 8.9706821, + 48.682893301 + ], + [ + 8.9708848, + 48.682991901 + ], + [ + 8.9711843, + 48.683127901 + ], + [ + 8.9714877, + 48.683259501 + ], + [ + 8.9719082, + 48.683431701 + ], + [ + 8.9721189, + 48.683514201 + ], + [ + 8.9723235, + 48.683592301 + ], + [ + 8.9725539, + 48.683676601 + ], + [ + 8.9727915, + 48.683761401 + ], + [ + 8.9731724, + 48.683890001 + ], + [ + 8.9734124, + 48.683968201 + ], + [ + 8.9738507, + 48.684107201 + ], + [ + 8.9742993, + 48.684241501 + ], + [ + 8.9747186, + 48.684364201 + ], + [ + 8.9751896, + 48.684496001 + ], + [ + 8.9755328, + 48.684590701 + ], + [ + 8.9758504, + 48.684677801 + ], + [ + 8.976049, + 48.684732701 + ], + [ + 8.9767886, + 48.684936901 + ], + [ + 8.9772562, + 48.685069201 + ], + [ + 8.9778, + 48.685220401 + ], + [ + 8.9781048, + 48.685309501 + ], + [ + 8.9786075, + 48.685459901 + ], + [ + 8.9790984, + 48.685610401 + ], + [ + 8.9795666, + 48.685763201 + ], + [ + 8.9799868, + 48.685908901 + ], + [ + 8.9804267, + 48.686069001 + ], + [ + 8.9808726, + 48.686239901 + ], + [ + 8.9812992, + 48.686408101 + ], + [ + 8.9817213, + 48.686585601 + ], + [ + 8.9822936, + 48.686838401 + ], + [ + 8.9827101, + 48.687034901 + ], + [ + 8.9831871, + 48.687268201 + ], + [ + 8.9835783, + 48.687465901 + ], + [ + 8.9839253, + 48.687653401 + ], + [ + 8.9842368, + 48.687822601 + ], + [ + 8.984574, + 48.688012401 + ], + [ + 8.9848653, + 48.688182901 + ], + [ + 8.985114, + 48.688337401 + ], + [ + 8.9853765, + 48.688498001 + ], + [ + 8.9857278, + 48.688725601 + ], + [ + 8.986033, + 48.688926301 + ], + [ + 8.9863426, + 48.689134101 + ], + [ + 8.9866898, + 48.689368201 + ], + [ + 8.9870056, + 48.689583601 + ], + [ + 8.9873523, + 48.689817301 + ], + [ + 8.9878694, + 48.690165901 + ], + [ + 8.9881881, + 48.690373801 + ], + [ + 8.9885851, + 48.690625801 + ], + [ + 8.9889357, + 48.690841201 + ], + [ + 8.9891177, + 48.690950201 + ], + [ + 8.9893152, + 48.691064901 + ], + [ + 8.9896692, + 48.691263201 + ], + [ + 8.989948, + 48.691415401 + ], + [ + 8.9902819, + 48.691581901 + ], + [ + 8.9905926, + 48.691731401 + ], + [ + 8.9908499, + 48.691850001 + ], + [ + 8.9911866, + 48.691993901 + ], + [ + 8.9914806, + 48.692115701 + ], + [ + 8.9918396, + 48.692255501 + ], + [ + 8.9921547, + 48.692368001 + ], + [ + 8.992478, + 48.692479501 + ], + [ + 8.992776, + 48.692576401 + ], + [ + 8.9930499, + 48.692660901 + ], + [ + 8.9933908, + 48.692759001 + ], + [ + 8.993609, + 48.692818701 + ], + [ + 8.9942235, + 48.692974901 + ], + [ + 8.9945694, + 48.693050901 + ], + [ + 8.9949264, + 48.693125001 + ], + [ + 8.9953093, + 48.693200001 + ], + [ + 8.9956916, + 48.693264401 + ], + [ + 8.9959676, + 48.693305101 + ], + [ + 8.9964082, + 48.693366201 + ], + [ + 8.9966473, + 48.693395601 + ], + [ + 8.997068, + 48.693434901 + ], + [ + 8.9975604, + 48.693475901 + ], + [ + 8.9980432, + 48.693503901 + ], + [ + 8.9985819, + 48.693525501 + ], + [ + 8.9990872, + 48.693540101 + ], + [ + 8.9995526, + 48.693547701 + ], + [ + 8.9998104, + 48.693550201 + ], + [ + 9.0002657, + 48.693556001 + ], + [ + 9.0005438, + 48.693558101 + ], + [ + 9.0016382, + 48.693572101 + ], + [ + 9.0023149, + 48.693587201 + ], + [ + 9.0027577, + 48.693599101 + ], + [ + 9.0034335, + 48.693621801 + ], + [ + 9.0039508, + 48.693641701 + ], + [ + 9.0044896, + 48.693665301 + ], + [ + 9.0049323, + 48.693686301 + ], + [ + 9.0055371, + 48.693719601 + ], + [ + 9.0058219, + 48.693735701 + ], + [ + 9.0061001, + 48.693751701 + ], + [ + 9.0065682, + 48.693781301 + ], + [ + 9.0070021, + 48.693811601 + ], + [ + 9.0077916, + 48.693869701 + ], + [ + 9.0084371, + 48.693924001 + ], + [ + 9.0090769, + 48.693988301 + ], + [ + 9.0094838, + 48.694037101 + ], + [ + 9.0097531, + 48.694072801 + ], + [ + 9.0101979, + 48.694137701 + ], + [ + 9.01044, + 48.694177901 + ], + [ + 9.0106735, + 48.694217901 + ], + [ + 9.0110384, + 48.694288001 + ], + [ + 9.0114061, + 48.694366501 + ], + [ + 9.0118537, + 48.694468001 + ], + [ + 9.0122614, + 48.694571201 + ], + [ + 9.0127622, + 48.694706601 + ], + [ + 9.0131867, + 48.694830301 + ], + [ + 9.0135487, + 48.694942801 + ], + [ + 9.0139728, + 48.695080601 + ], + [ + 9.014072, + 48.695116001 + ], + [ + 9.0141473, + 48.695139401 + ], + [ + 9.0142546, + 48.695177401 + ], + [ + 9.0144141, + 48.695229701 + ], + [ + 9.0146013, + 48.695279101 + ], + [ + 9.0147245, + 48.695308801 + ], + [ + 9.0148418, + 48.695331001 + ], + [ + 9.014953, + 48.695353001 + ], + [ + 9.0152472, + 48.695401601 + ], + [ + 9.0153902, + 48.695430301 + ], + [ + 9.0155293, + 48.695464301 + ], + [ + 9.0156764, + 48.695503801 + ], + [ + 9.0158209, + 48.695547801 + ], + [ + 9.0161138, + 48.695651501 + ], + [ + 9.0164956, + 48.695810901 + ], + [ + 9.0168546, + 48.695969401 + ], + [ + 9.0171798, + 48.696113601 + ], + [ + 9.0178718, + 48.696435801 + ], + [ + 9.0190442, + 48.696995101 + ], + [ + 9.0196128, + 48.697280801 + ], + [ + 9.020192, + 48.697584101 + ], + [ + 9.020467, + 48.697721001 + ], + [ + 9.0213325, + 48.698153601 + ], + [ + 9.0223024, + 48.698644101 + ], + [ + 9.0231813, + 48.699082101 + ], + [ + 9.0237476, + 48.699354201 + ], + [ + 9.0251199, + 48.699990401 + ], + [ + 9.025258, + 48.700058001 + ], + [ + 9.0253948, + 48.700134501 + ], + [ + 9.0254966, + 48.700201001 + ], + [ + 9.025597, + 48.700272901 + ], + [ + 9.0256962, + 48.700355001 + ], + [ + 9.0257893, + 48.700440101 + ], + [ + 9.0259398, + 48.700600201 + ], + [ + 9.0260612, + 48.700734001 + ], + [ + 9.0261276, + 48.700797401 + ], + [ + 9.0261947, + 48.700856701 + ], + [ + 9.0263129, + 48.700944701 + ], + [ + 9.0264249, + 48.701007601 + ], + [ + 9.0265382, + 48.701055601 + ], + [ + 9.0266353, + 48.701095101 + ], + [ + 9.0267084, + 48.701123101 + ], + [ + 9.0267605, + 48.701142901 + ], + [ + 9.0269467, + 48.701210301 + ], + [ + 9.0272379, + 48.701320601 + ], + [ + 9.027478, + 48.701406801 + ], + [ + 9.0276974, + 48.701484001 + ], + [ + 9.0278943, + 48.701550101 + ], + [ + 9.0281282, + 48.701628401 + ], + [ + 9.028345, + 48.701697301 + ], + [ + 9.028543, + 48.701758201 + ], + [ + 9.0287632, + 48.701823901 + ], + [ + 9.0289898, + 48.701890801 + ], + [ + 9.0292289, + 48.701957001 + ], + [ + 9.029473, + 48.702023501 + ], + [ + 9.0298699, + 48.702126601 + ], + [ + 9.0301304, + 48.702192101 + ], + [ + 9.0305475, + 48.702294601 + ], + [ + 9.0308192, + 48.702358001 + ], + [ + 9.0310953, + 48.702418801 + ], + [ + 9.0312902, + 48.702461701 + ], + [ + 9.0315443, + 48.702515101 + ], + [ + 9.0317567, + 48.702559001 + ], + [ + 9.0320029, + 48.702607001 + ], + [ + 9.0321964, + 48.702643101 + ], + [ + 9.0324028, + 48.702680401 + ], + [ + 9.0326502, + 48.702725301 + ], + [ + 9.0329054, + 48.702769401 + ], + [ + 9.0331508, + 48.702809801 + ], + [ + 9.0334056, + 48.702850101 + ], + [ + 9.0336585, + 48.702888001 + ], + [ + 9.0338352, + 48.702913001 + ], + [ + 9.0340194, + 48.702938801 + ], + [ + 9.0343747, + 48.702986701 + ], + [ + 9.0347949, + 48.703039801 + ], + [ + 9.0350853, + 48.703072901 + ], + [ + 9.0353196, + 48.703099001 + ], + [ + 9.0355371, + 48.703121301 + ], + [ + 9.0357817, + 48.703144801 + ], + [ + 9.0360319, + 48.703167401 + ], + [ + 9.0362552, + 48.703186301 + ], + [ + 9.0364975, + 48.703205601 + ], + [ + 9.0367592, + 48.703225401 + ], + [ + 9.0369834, + 48.703241901 + ], + [ + 9.0372195, + 48.703258001 + ], + [ + 9.0374727, + 48.703274801 + ], + [ + 9.0377274, + 48.703291901 + ], + [ + 9.0379742, + 48.703308001 + ], + [ + 9.0381485, + 48.703318901 + ], + [ + 9.0389337, + 48.703372001 + ], + [ + 9.0393522, + 48.703400701 + ], + [ + 9.039741, + 48.703427701 + ], + [ + 9.0403835, + 48.703476201 + ], + [ + 9.0408354, + 48.703509401 + ], + [ + 9.0412258, + 48.703538201 + ], + [ + 9.041392, + 48.703549901 + ], + [ + 9.0415529, + 48.703563801 + ], + [ + 9.0418234, + 48.703590101 + ], + [ + 9.0422261, + 48.703636601 + ], + [ + 9.042514, + 48.703671401 + ], + [ + 9.0429844, + 48.703734801 + ], + [ + 9.0434459, + 48.703804801 + ], + [ + 9.0436102, + 48.703832601 + ], + [ + 9.0437776, + 48.703860301 + ], + [ + 9.0441607, + 48.703930401 + ], + [ + 9.0443531, + 48.703968501 + ], + [ + 9.0445348, + 48.704004101 + ], + [ + 9.0454126, + 48.704200901 + ], + [ + 9.0458326, + 48.704325601 + ], + [ + 9.0460671, + 48.704393801 + ], + [ + 9.0462824, + 48.704457801 + ], + [ + 9.0466371, + 48.704575001 + ], + [ + 9.0468946, + 48.704665401 + ], + [ + 9.0471077, + 48.704742101 + ], + [ + 9.0473346, + 48.704825601 + ], + [ + 9.0476556, + 48.704955301 + ], + [ + 9.0478661, + 48.705045201 + ], + [ + 9.0481324, + 48.705162001 + ], + [ + 9.0484348, + 48.705300501 + ], + [ + 9.0488203, + 48.705495101 + ], + [ + 9.0490517, + 48.705613801 + ], + [ + 9.0493398, + 48.705772601 + ], + [ + 9.0495432, + 48.705889101 + ], + [ + 9.0498805, + 48.706097001 + ], + [ + 9.0499805, + 48.706162001 + ], + [ + 9.0501276, + 48.706257601 + ], + [ + 9.0504276, + 48.706462501 + ], + [ + 9.0507776, + 48.706723601 + ], + [ + 9.0511821, + 48.707050001 + ], + [ + 9.0513906, + 48.707229001 + ], + [ + 9.0516236, + 48.707442301 + ], + [ + 9.0517735, + 48.707586901 + ], + [ + 9.051913, + 48.707727401 + ], + [ + 9.0520484, + 48.707867001 + ], + [ + 9.0521824, + 48.708011901 + ], + [ + 9.0523092, + 48.708154701 + ], + [ + 9.0524466, + 48.708319601 + ], + [ + 9.05257, + 48.708472101 + ], + [ + 9.052672, + 48.708605601 + ], + [ + 9.05279, + 48.708768801 + ], + [ + 9.0528323, + 48.708827501 + ], + [ + 9.0529002, + 48.708921701 + ], + [ + 9.0530202, + 48.709101001 + ], + [ + 9.0531257, + 48.709269701 + ], + [ + 9.0532788, + 48.709534001 + ], + [ + 9.0533682, + 48.709698501 + ], + [ + 9.0534486, + 48.709861801 + ], + [ + 9.0535397, + 48.710054701 + ], + [ + 9.0536154, + 48.710227501 + ], + [ + 9.0536772, + 48.710377301 + ], + [ + 9.0537316, + 48.710521101 + ], + [ + 9.0537851, + 48.710674201 + ], + [ + 9.0538433, + 48.710850501 + ], + [ + 9.0538983, + 48.711043701 + ], + [ + 9.0539373, + 48.711191801 + ], + [ + 9.0539774, + 48.711366201 + ], + [ + 9.0540161, + 48.711568701 + ], + [ + 9.0540446, + 48.711726301 + ], + [ + 9.0540657, + 48.711879101 + ], + [ + 9.0540896, + 48.712068401 + ], + [ + 9.0540989, + 48.712175901 + ], + [ + 9.0541089, + 48.712342101 + ], + [ + 9.0541181, + 48.712543901 + ], + [ + 9.0541204, + 48.712706801 + ], + [ + 9.0541212, + 48.712866901 + ], + [ + 9.0541182, + 48.713179001 + ], + [ + 9.054109, + 48.713517801 + ], + [ + 9.0541013, + 48.713853801 + ], + [ + 9.0540967, + 48.714068001 + ], + [ + 9.0540967, + 48.714374801 + ], + [ + 9.0541058, + 48.714700101 + ], + [ + 9.0541164, + 48.714864201 + ], + [ + 9.0541327, + 48.715050901 + ], + [ + 9.0541585, + 48.715248901 + ], + [ + 9.0541801, + 48.715388001 + ], + [ + 9.0542106, + 48.715555401 + ], + [ + 9.0542457, + 48.715721201 + ], + [ + 9.0542766, + 48.715850401 + ], + [ + 9.0543071, + 48.715969301 + ], + [ + 9.0543774, + 48.716215901 + ], + [ + 9.0544382, + 48.716392901 + ], + [ + 9.0545034, + 48.716577301 + ], + [ + 9.0545551, + 48.716711001 + ], + [ + 9.0546111, + 48.716842001 + ], + [ + 9.0547321, + 48.717102801 + ], + [ + 9.0548651, + 48.717372401 + ], + [ + 9.0549829, + 48.717581901 + ], + [ + 9.0550404, + 48.717685501 + ], + [ + 9.0550986, + 48.717781001 + ], + [ + 9.0551936, + 48.717932901 + ], + [ + 9.0552959, + 48.718081901 + ], + [ + 9.0553911, + 48.718222201 + ], + [ + 9.0554759, + 48.718331901 + ], + [ + 9.0555483, + 48.718435601 + ], + [ + 9.0556677, + 48.718588801 + ], + [ + 9.0558, + 48.718750201 + ], + [ + 9.0558855, + 48.718848701 + ], + [ + 9.0559765, + 48.718952601 + ], + [ + 9.056236, + 48.719235901 + ], + [ + 9.0563448, + 48.719341501 + ], + [ + 9.056434, + 48.719427701 + ], + [ + 9.0565316, + 48.719522801 + ], + [ + 9.0567215, + 48.719699101 + ], + [ + 9.0568831, + 48.719836001 + ], + [ + 9.0570318, + 48.719957201 + ], + [ + 9.0572552, + 48.720133301 + ], + [ + 9.0575118, + 48.720317801 + ], + [ + 9.0576978, + 48.720454501 + ], + [ + 9.0578778, + 48.720584901 + ], + [ + 9.0580713, + 48.720718101 + ], + [ + 9.0583101, + 48.720879501 + ], + [ + 9.058565, + 48.721046501 + ], + [ + 9.0587378, + 48.721158301 + ], + [ + 9.0589114, + 48.721267101 + ], + [ + 9.0591616, + 48.721422901 + ], + [ + 9.0594054, + 48.721571001 + ], + [ + 9.059637, + 48.721711301 + ], + [ + 9.0598722, + 48.721851401 + ], + [ + 9.0601433, + 48.722013001 + ], + [ + 9.060458, + 48.722198201 + ], + [ + 9.0608701, + 48.722437101 + ], + [ + 9.0610809, + 48.722557501 + ], + [ + 9.0613389, + 48.722705701 + ], + [ + 9.0616165, + 48.722863201 + ], + [ + 9.0618955, + 48.723018501 + ], + [ + 9.0621066, + 48.723134201 + ], + [ + 9.0624835, + 48.723340501 + ], + [ + 9.0627115, + 48.723463501 + ], + [ + 9.0629297, + 48.723579401 + ], + [ + 9.0631534, + 48.723699301 + ], + [ + 9.0633707, + 48.723813401 + ], + [ + 9.0636074, + 48.723937701 + ], + [ + 9.0638378, + 48.724054901 + ], + [ + 9.0639313, + 48.724133201 + ], + [ + 9.0640526, + 48.724211501 + ], + [ + 9.064463, + 48.724417701 + ], + [ + 9.0647004, + 48.724537101 + ], + [ + 9.065062, + 48.724714801 + ], + [ + 9.0652777, + 48.724819801 + ], + [ + 9.0656432, + 48.724997601 + ], + [ + 9.0660529, + 48.725191801 + ], + [ + 9.0664432, + 48.725374501 + ], + [ + 9.0668622, + 48.725568201 + ], + [ + 9.0672747, + 48.725755001 + ], + [ + 9.067585899, + 48.725894084 + ] + ] + } + }, + { + "identifier": "2026-016368--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72600223403363,9.06747496634354,48.6782116459576,8.964989561096363", + "point": "48.72600223403363,9.06747496634354", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 11.63 nach A81", + "title": "A81 von B\u00f6blingen-Hulb (AS) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 48.72600223403363, + "long": 9.06747496634354 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Von A831: km 11.63 nach A81: Stuttgart -> Singen, zwischen AK Stuttgart und 1.3 km vor AS Ehningen", + "", + "L\u00e4nge: 9.92 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von B\u00f6blingen-Hulb (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.067474966, + 48.726002234 + ], + [ + 9.0672738, + 48.725911501 + ], + [ + 9.0668415, + 48.725716401 + ], + [ + 9.0664411, + 48.725533601 + ], + [ + 9.0658813, + 48.725270601 + ], + [ + 9.0655117, + 48.725094901 + ], + [ + 9.064895, + 48.724796001 + ], + [ + 9.0644194, + 48.724560501 + ], + [ + 9.0639719, + 48.724334001 + ], + [ + 9.0635752, + 48.724131001 + ], + [ + 9.0631762, + 48.723924401 + ], + [ + 9.0625999, + 48.723617001 + ], + [ + 9.0623736, + 48.723495401 + ], + [ + 9.0620273, + 48.723306701 + ], + [ + 9.061764, + 48.723162301 + ], + [ + 9.0614904, + 48.723008801 + ], + [ + 9.0610034, + 48.722734401 + ], + [ + 9.0605186, + 48.722454101 + ], + [ + 9.0595152, + 48.721882301 + ], + [ + 9.0590685, + 48.721612401 + ], + [ + 9.0588009, + 48.721445901 + ], + [ + 9.0585259, + 48.721273601 + ], + [ + 9.0581609, + 48.721038801 + ], + [ + 9.0577336, + 48.720749201 + ], + [ + 9.0574493, + 48.720543801 + ], + [ + 9.057227, + 48.720379801 + ], + [ + 9.0570491, + 48.720240501 + ], + [ + 9.056887, + 48.720110401 + ], + [ + 9.0567329, + 48.719983301 + ], + [ + 9.0565812, + 48.719851601 + ], + [ + 9.0563925, + 48.719681401 + ], + [ + 9.0562243, + 48.719520601 + ], + [ + 9.0560255, + 48.719320401 + ], + [ + 9.0559034, + 48.719190301 + ], + [ + 9.0557399, + 48.719016101 + ], + [ + 9.0555883, + 48.718837301 + ], + [ + 9.0554302, + 48.718645301 + ], + [ + 9.0553118, + 48.718493901 + ], + [ + 9.0551947, + 48.718335301 + ], + [ + 9.0550753, + 48.718164401 + ], + [ + 9.0549801, + 48.718022601 + ], + [ + 9.054883, + 48.717873701 + ], + [ + 9.0547853, + 48.717711301 + ], + [ + 9.0547003, + 48.717561001 + ], + [ + 9.0546237, + 48.717417801 + ], + [ + 9.0545288, + 48.717232801 + ], + [ + 9.0544497, + 48.717065501 + ], + [ + 9.0543692, + 48.716882601 + ], + [ + 9.0543108, + 48.716742301 + ], + [ + 9.0542567, + 48.716610601 + ], + [ + 9.0542072, + 48.716469601 + ], + [ + 9.0541613, + 48.716336101 + ], + [ + 9.0541338, + 48.716254701 + ], + [ + 9.0540849, + 48.716080401 + ], + [ + 9.0540575, + 48.715988901 + ], + [ + 9.0539973, + 48.715746401 + ], + [ + 9.0539693, + 48.715600601 + ], + [ + 9.0539468, + 48.715493001 + ], + [ + 9.053929, + 48.715400701 + ], + [ + 9.0539171, + 48.715323701 + ], + [ + 9.0538947, + 48.715147501 + ], + [ + 9.0538779, + 48.714976601 + ], + [ + 9.0538609, + 48.714826101 + ], + [ + 9.0538521, + 48.714676801 + ], + [ + 9.0538444, + 48.714374901 + ], + [ + 9.0538423, + 48.714223901 + ], + [ + 9.0538432, + 48.714148201 + ], + [ + 9.053844, + 48.714071601 + ], + [ + 9.0538441, + 48.713920301 + ], + [ + 9.0538507, + 48.713769301 + ], + [ + 9.05386, + 48.713469601 + ], + [ + 9.0538638, + 48.713218201 + ], + [ + 9.0538711, + 48.712882001 + ], + [ + 9.053868, + 48.712565001 + ], + [ + 9.0538602, + 48.712392201 + ], + [ + 9.0538513, + 48.712235901 + ], + [ + 9.0538337, + 48.712044401 + ], + [ + 9.053816, + 48.711877701 + ], + [ + 9.0537908, + 48.711714901 + ], + [ + 9.053761, + 48.711547101 + ], + [ + 9.0537311, + 48.711399701 + ], + [ + 9.0536933, + 48.711234301 + ], + [ + 9.0536506, + 48.711076101 + ], + [ + 9.053586, + 48.710853501 + ], + [ + 9.0535404, + 48.710706501 + ], + [ + 9.0534849, + 48.710552401 + ], + [ + 9.053423, + 48.710393601 + ], + [ + 9.0533568, + 48.710229001 + ], + [ + 9.0532883, + 48.710074201 + ], + [ + 9.0532127, + 48.709913201 + ], + [ + 9.0531116, + 48.709716701 + ], + [ + 9.0530209, + 48.709552001 + ], + [ + 9.052934, + 48.709402601 + ], + [ + 9.0528618, + 48.709283001 + ], + [ + 9.0527844, + 48.709160501 + ], + [ + 9.0526709, + 48.708987101 + ], + [ + 9.0525538, + 48.708819101 + ], + [ + 9.0524221, + 48.708642301 + ], + [ + 9.0522932, + 48.708479001 + ], + [ + 9.0521594, + 48.708311901 + ], + [ + 9.0520511, + 48.708191801 + ], + [ + 9.0519367, + 48.708066601 + ], + [ + 9.0518057, + 48.707924601 + ], + [ + 9.0516672, + 48.707782301 + ], + [ + 9.0515294, + 48.707646201 + ], + [ + 9.0513849, + 48.707506201 + ], + [ + 9.05118, + 48.707324101 + ], + [ + 9.0509698, + 48.707138201 + ], + [ + 9.0507167, + 48.706931201 + ], + [ + 9.0505048, + 48.706765201 + ], + [ + 9.0503041, + 48.706605401 + ], + [ + 9.0501608, + 48.706498401 + ], + [ + 9.0500124, + 48.706394201 + ], + [ + 9.0498597, + 48.706292201 + ], + [ + 9.0496921, + 48.706185101 + ], + [ + 9.0494088, + 48.706011101 + ], + [ + 9.0492676, + 48.705930601 + ], + [ + 9.0491155, + 48.705842901 + ], + [ + 9.0489176, + 48.705734401 + ], + [ + 9.0487318, + 48.705637201 + ], + [ + 9.0485115, + 48.705522801 + ], + [ + 9.0482602, + 48.705401201 + ], + [ + 9.0478862, + 48.705229701 + ], + [ + 9.047663, + 48.705134101 + ], + [ + 9.0474476, + 48.705046001 + ], + [ + 9.0471902, + 48.704945101 + ], + [ + 9.0468575, + 48.704819801 + ], + [ + 9.0464009, + 48.704662301 + ], + [ + 9.0461526, + 48.704583301 + ], + [ + 9.0458631, + 48.704495001 + ], + [ + 9.0455259, + 48.704402601 + ], + [ + 9.045174, + 48.704310501 + ], + [ + 9.04473, + 48.704204401 + ], + [ + 9.0442747, + 48.704107501 + ], + [ + 9.0440098, + 48.704056601 + ], + [ + 9.0435197, + 48.703968601 + ], + [ + 9.0430682, + 48.703898701 + ], + [ + 9.0425498, + 48.703828601 + ], + [ + 9.0420759, + 48.703770201 + ], + [ + 9.041599, + 48.703716901 + ], + [ + 9.0411533, + 48.703674701 + ], + [ + 9.0406975, + 48.703632801 + ], + [ + 9.0401782, + 48.703590401 + ], + [ + 9.0394156, + 48.703534101 + ], + [ + 9.038813, + 48.703495401 + ], + [ + 9.0381769, + 48.703452301 + ], + [ + 9.0374259, + 48.703397001 + ], + [ + 9.0367747, + 48.703347801 + ], + [ + 9.0360807, + 48.703286001 + ], + [ + 9.0354054, + 48.703219901 + ], + [ + 9.0349827, + 48.703176501 + ], + [ + 9.0345494, + 48.703123401 + ], + [ + 9.0341996, + 48.703080001 + ], + [ + 9.0338434, + 48.703029601 + ], + [ + 9.033449, + 48.702971301 + ], + [ + 9.033174, + 48.702928701 + ], + [ + 9.0328815, + 48.702880801 + ], + [ + 9.0325436, + 48.702822901 + ], + [ + 9.0322951, + 48.702777801 + ], + [ + 9.0320448, + 48.702730901 + ], + [ + 9.031798, + 48.702684101 + ], + [ + 9.0315195, + 48.702627701 + ], + [ + 9.0311465, + 48.702549001 + ], + [ + 9.0308891, + 48.702491701 + ], + [ + 9.0306592, + 48.702438701 + ], + [ + 9.030403, + 48.702377601 + ], + [ + 9.0302112, + 48.702331501 + ], + [ + 9.0300077, + 48.702281701 + ], + [ + 9.0297729, + 48.702222201 + ], + [ + 9.0294906, + 48.702149001 + ], + [ + 9.0290723, + 48.702035901 + ], + [ + 9.0286499, + 48.701914801 + ], + [ + 9.0282193, + 48.701782701 + ], + [ + 9.0279674, + 48.701701101 + ], + [ + 9.0277492, + 48.701628701 + ], + [ + 9.0273457, + 48.701488701 + ], + [ + 9.0271099, + 48.701403101 + ], + [ + 9.0268671, + 48.701312601 + ], + [ + 9.0267149, + 48.701253801 + ], + [ + 9.0266715, + 48.701235701 + ], + [ + 9.0266283, + 48.701217501 + ], + [ + 9.0265964, + 48.701203801 + ], + [ + 9.0265195, + 48.701168501 + ], + [ + 9.0264561, + 48.701141701 + ], + [ + 9.0263899, + 48.701112301 + ], + [ + 9.0262594, + 48.701040201 + ], + [ + 9.0261575, + 48.700969001 + ], + [ + 9.026069, + 48.700894201 + ], + [ + 9.0260054, + 48.700839001 + ], + [ + 9.0258595, + 48.700671001 + ], + [ + 9.0257898, + 48.700590401 + ], + [ + 9.0256749, + 48.700456001 + ], + [ + 9.0255338, + 48.700346501 + ], + [ + 9.0254416, + 48.700265701 + ], + [ + 9.0253155, + 48.700189601 + ], + [ + 9.0250253, + 48.700031901 + ], + [ + 9.0245656, + 48.699821301 + ], + [ + 9.0239776, + 48.699548501 + ], + [ + 9.0235415, + 48.699342001 + ], + [ + 9.0230409, + 48.699101401 + ], + [ + 9.0220528, + 48.698605001 + ], + [ + 9.0214918, + 48.698315801 + ], + [ + 9.0209557, + 48.698041201 + ], + [ + 9.0203036, + 48.697719901 + ], + [ + 9.0199123, + 48.697524901 + ], + [ + 9.0191421, + 48.697129901 + ], + [ + 9.0185605, + 48.696848001 + ], + [ + 9.0179917, + 48.696574501 + ], + [ + 9.0171525, + 48.696183301 + ], + [ + 9.0166169, + 48.695945701 + ], + [ + 9.0162264, + 48.695779801 + ], + [ + 9.0158694, + 48.695641201 + ], + [ + 9.0157291, + 48.695597401 + ], + [ + 9.0155875, + 48.695558801 + ], + [ + 9.0152869, + 48.695494101 + ], + [ + 9.0150694, + 48.695459001 + ], + [ + 9.014855, + 48.695426901 + ], + [ + 9.0146491, + 48.695389501 + ], + [ + 9.0144172, + 48.695334501 + ], + [ + 9.0142235, + 48.695281001 + ], + [ + 9.0138516, + 48.695167201 + ], + [ + 9.0137533, + 48.695134001 + ], + [ + 9.0136953, + 48.695114601 + ], + [ + 9.0136333, + 48.695095001 + ], + [ + 9.0134869, + 48.695047001 + ], + [ + 9.0131533, + 48.694942601 + ], + [ + 9.0127507, + 48.694825501 + ], + [ + 9.0122025, + 48.694673401 + ], + [ + 9.0117924, + 48.694570501 + ], + [ + 9.0113721, + 48.694475601 + ], + [ + 9.0110069, + 48.694396101 + ], + [ + 9.0106097, + 48.694320501 + ], + [ + 9.0102649, + 48.694263601 + ], + [ + 9.0100668, + 48.694230901 + ], + [ + 9.0096292, + 48.694169101 + ], + [ + 9.0090593, + 48.694099701 + ], + [ + 9.0084037, + 48.694033701 + ], + [ + 9.0077082, + 48.693975301 + ], + [ + 9.0069716, + 48.693920901 + ], + [ + 9.0060809, + 48.693863901 + ], + [ + 9.0055192, + 48.693828601 + ], + [ + 9.0049913, + 48.693800601 + ], + [ + 9.0044581, + 48.693775601 + ], + [ + 9.0040305, + 48.693757801 + ], + [ + 9.0034214, + 48.693734801 + ], + [ + 9.0032625, + 48.693729601 + ], + [ + 9.002075, + 48.693711501 + ], + [ + 9.0012749, + 48.693682601 + ], + [ + 9.0005294, + 48.693673501 + ], + [ + 8.99991, + 48.693666201 + ], + [ + 8.9992605, + 48.693654701 + ], + [ + 8.9989105, + 48.693647601 + ], + [ + 8.9985823, + 48.693638501 + ], + [ + 8.9980705, + 48.693616801 + ], + [ + 8.9975677, + 48.693586001 + ], + [ + 8.9970921, + 48.693548701 + ], + [ + 8.9968377, + 48.693524401 + ], + [ + 8.9966036, + 48.693497901 + ], + [ + 8.9963664, + 48.693469201 + ], + [ + 8.9961296, + 48.693438101 + ], + [ + 8.9958964, + 48.693404801 + ], + [ + 8.9954422, + 48.693333201 + ], + [ + 8.9951846, + 48.693287701 + ], + [ + 8.9949092, + 48.693235001 + ], + [ + 8.9944802, + 48.693146501 + ], + [ + 8.9942475, + 48.693094301 + ], + [ + 8.9940287, + 48.693042201 + ], + [ + 8.9937517, + 48.692973101 + ], + [ + 8.9935394, + 48.692917701 + ], + [ + 8.9933414, + 48.692862701 + ], + [ + 8.9931223, + 48.692800401 + ], + [ + 8.9928946, + 48.692734401 + ], + [ + 8.9926366, + 48.692653401 + ], + [ + 8.9922334, + 48.692519801 + ], + [ + 8.992008, + 48.692440701 + ], + [ + 8.9917788, + 48.692357201 + ], + [ + 8.9915587, + 48.692273401 + ], + [ + 8.9913578, + 48.692193401 + ], + [ + 8.991159, + 48.692112001 + ], + [ + 8.9909322, + 48.692014601 + ], + [ + 8.9907418, + 48.691931201 + ], + [ + 8.9905435, + 48.691841001 + ], + [ + 8.990322, + 48.691736201 + ], + [ + 8.9901294, + 48.691641801 + ], + [ + 8.9899314, + 48.691542401 + ], + [ + 8.9897354, + 48.691439501 + ], + [ + 8.9895449, + 48.691336601 + ], + [ + 8.9893594, + 48.691233401 + ], + [ + 8.9891721, + 48.691126801 + ], + [ + 8.9889957, + 48.691023001 + ], + [ + 8.9888341, + 48.690927201 + ], + [ + 8.9886684, + 48.690826001 + ], + [ + 8.9884801, + 48.690710901 + ], + [ + 8.9882756, + 48.690580701 + ], + [ + 8.988097, + 48.690465601 + ], + [ + 8.987928, + 48.690355501 + ], + [ + 8.9877497, + 48.690238901 + ], + [ + 8.9874226, + 48.690020201 + ], + [ + 8.98709, + 48.689796701 + ], + [ + 8.9868365, + 48.689624001 + ], + [ + 8.9865755, + 48.689446601 + ], + [ + 8.9862403, + 48.689219601 + ], + [ + 8.9859054, + 48.688995701 + ], + [ + 8.9857012, + 48.688859901 + ], + [ + 8.9855464, + 48.688758601 + ], + [ + 8.9853841, + 48.688653901 + ], + [ + 8.9851461, + 48.688502301 + ], + [ + 8.9849509, + 48.688382301 + ], + [ + 8.9847553, + 48.688263001 + ], + [ + 8.9845677, + 48.688151501 + ], + [ + 8.9844051, + 48.688058801 + ], + [ + 8.9842347, + 48.687960901 + ], + [ + 8.9840376, + 48.687850501 + ], + [ + 8.9838224, + 48.687733501 + ], + [ + 8.9832899, + 48.687453401 + ], + [ + 8.9830639, + 48.687338701 + ], + [ + 8.9828692, + 48.687242001 + ], + [ + 8.9826565, + 48.687138501 + ], + [ + 8.9824337, + 48.687034601 + ], + [ + 8.9822456, + 48.686947701 + ], + [ + 8.9820481, + 48.686858201 + ], + [ + 8.9818418, + 48.686767701 + ], + [ + 8.9816366, + 48.686678501 + ], + [ + 8.981433, + 48.686592601 + ], + [ + 8.9812518, + 48.686517801 + ], + [ + 8.9810656, + 48.686442801 + ], + [ + 8.9808377, + 48.686352801 + ], + [ + 8.9806136, + 48.686265801 + ], + [ + 8.9803922, + 48.686180801 + ], + [ + 8.9801683, + 48.686098301 + ], + [ + 8.9799781, + 48.686029801 + ], + [ + 8.9797602, + 48.685952901 + ], + [ + 8.9795775, + 48.685889301 + ], + [ + 8.9793554, + 48.685814101 + ], + [ + 8.9791491, + 48.685746901 + ], + [ + 8.9789064, + 48.685668601 + ], + [ + 8.978699, + 48.685604101 + ], + [ + 8.9784788, + 48.685538201 + ], + [ + 8.9782399, + 48.685466301 + ], + [ + 8.9780154, + 48.685400701 + ], + [ + 8.9777113, + 48.685312701 + ], + [ + 8.9773294, + 48.685204801 + ], + [ + 8.9770941, + 48.685138801 + ], + [ + 8.9764356, + 48.684958201 + ], + [ + 8.9757617, + 48.684775301 + ], + [ + 8.9755362, + 48.684713801 + ], + [ + 8.9753101, + 48.684651501 + ], + [ + 8.9750871, + 48.684589401 + ], + [ + 8.9748627, + 48.684526401 + ], + [ + 8.9746382, + 48.684462101 + ], + [ + 8.9744138, + 48.684397201 + ], + [ + 8.9741899, + 48.684331701 + ], + [ + 8.9739663, + 48.684264101 + ], + [ + 8.9737439, + 48.684196301 + ], + [ + 8.9735227, + 48.684127901 + ], + [ + 8.9733026, + 48.684057501 + ], + [ + 8.9730828, + 48.683985401 + ], + [ + 8.9728676, + 48.683913301 + ], + [ + 8.9726498, + 48.683837601 + ], + [ + 8.9724353, + 48.683761201 + ], + [ + 8.9722198, + 48.683682001 + ], + [ + 8.972008, + 48.683602101 + ], + [ + 8.9717988, + 48.683519801 + ], + [ + 8.9715918, + 48.683436401 + ], + [ + 8.9713823, + 48.683348201 + ], + [ + 8.9711775, + 48.683259701 + ], + [ + 8.9709745, + 48.683169301 + ], + [ + 8.9708041, + 48.683091701 + ], + [ + 8.9706029, + 48.682995001 + ], + [ + 8.9704063, + 48.682897901 + ], + [ + 8.970174, + 48.682779001 + ], + [ + 8.9700194, + 48.682697001 + ], + [ + 8.9698327, + 48.682596801 + ], + [ + 8.9696302, + 48.682485201 + ], + [ + 8.9694586, + 48.682388201 + ], + [ + 8.969261, + 48.682274601 + ], + [ + 8.9690472, + 48.682144701 + ], + [ + 8.968865, + 48.682031901 + ], + [ + 8.9686871, + 48.681920101 + ], + [ + 8.9685123, + 48.681805701 + ], + [ + 8.9683411, + 48.681691501 + ], + [ + 8.968169, + 48.681571901 + ], + [ + 8.9680052, + 48.681452701 + ], + [ + 8.9678431, + 48.681333001 + ], + [ + 8.967677, + 48.681206601 + ], + [ + 8.9675243, + 48.681084501 + ], + [ + 8.9673721, + 48.680958001 + ], + [ + 8.9672212, + 48.680830501 + ], + [ + 8.9670745, + 48.680701101 + ], + [ + 8.9669263, + 48.680568201 + ], + [ + 8.9667823, + 48.680435001 + ], + [ + 8.9666482, + 48.680302101 + ], + [ + 8.9665142, + 48.680168001 + ], + [ + 8.9663783, + 48.680030501 + ], + [ + 8.9662507, + 48.679894901 + ], + [ + 8.9661245, + 48.679754001 + ], + [ + 8.9660011, + 48.679614001 + ], + [ + 8.9658801, + 48.679472701 + ], + [ + 8.9657608, + 48.679328001 + ], + [ + 8.9656531, + 48.679186401 + ], + [ + 8.965541, + 48.679040401 + ], + [ + 8.9654318, + 48.678889501 + ], + [ + 8.9653289, + 48.678742801 + ], + [ + 8.965229, + 48.678594501 + ], + [ + 8.9651331, + 48.678445701 + ], + [ + 8.9650392, + 48.678294601 + ], + [ + 8.964989561, + 48.678211646 + ] + ] + } + }, + { + "identifier": "2026-016368--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.678159885444174,8.96518707517348,48.725894083756415,9.067585899056143", + "point": "48.678159885444174,8.96518707517348", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A81 von B\u00f6blingen-Hulb (AS) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 48.678159885444174, + "long": 8.96518707517348 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "", + "Von A81: Singen -> Stuttgart, zwischen 1.3 km hinter AS Ehningen und AK Stuttgart nach A831: km 11.37", + "", + "L\u00e4nge: 9.92 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A81 von B\u00f6blingen-Hulb (AS) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.965187075, + 48.678159885 + ], + [ + 8.9652557, + 48.678274901 + ], + [ + 8.9654171, + 48.678531601 + ], + [ + 8.9655384, + 48.678707201 + ], + [ + 8.9656243, + 48.678832801 + ], + [ + 8.9657892, + 48.679053201 + ], + [ + 8.9659528, + 48.679266101 + ], + [ + 8.9661406, + 48.679489301 + ], + [ + 8.9663241, + 48.679694301 + ], + [ + 8.9664492, + 48.679829401 + ], + [ + 8.9665828, + 48.679971101 + ], + [ + 8.9667224, + 48.680116401 + ], + [ + 8.9669688, + 48.680356201 + ], + [ + 8.9671888, + 48.680543501 + ], + [ + 8.9673404, + 48.680671601 + ], + [ + 8.9675776, + 48.680872101 + ], + [ + 8.9678879, + 48.681123901 + ], + [ + 8.9681154, + 48.681303201 + ], + [ + 8.9682327, + 48.681393901 + ], + [ + 8.9683646, + 48.681489001 + ], + [ + 8.9686976, + 48.681726101 + ], + [ + 8.9688671, + 48.681843301 + ], + [ + 8.9690338, + 48.681954401 + ], + [ + 8.9692261, + 48.682081401 + ], + [ + 8.9695199, + 48.682268401 + ], + [ + 8.9696924, + 48.682371801 + ], + [ + 8.9699634, + 48.682521101 + ], + [ + 8.9702333, + 48.682665801 + ], + [ + 8.970461, + 48.682783601 + ], + [ + 8.9706821, + 48.682893301 + ], + [ + 8.9708848, + 48.682991901 + ], + [ + 8.9711843, + 48.683127901 + ], + [ + 8.9714877, + 48.683259501 + ], + [ + 8.9719082, + 48.683431701 + ], + [ + 8.9721189, + 48.683514201 + ], + [ + 8.9723235, + 48.683592301 + ], + [ + 8.9725539, + 48.683676601 + ], + [ + 8.9727915, + 48.683761401 + ], + [ + 8.9731724, + 48.683890001 + ], + [ + 8.9734124, + 48.683968201 + ], + [ + 8.9738507, + 48.684107201 + ], + [ + 8.9742993, + 48.684241501 + ], + [ + 8.9747186, + 48.684364201 + ], + [ + 8.9751896, + 48.684496001 + ], + [ + 8.9755328, + 48.684590701 + ], + [ + 8.9758504, + 48.684677801 + ], + [ + 8.976049, + 48.684732701 + ], + [ + 8.9767886, + 48.684936901 + ], + [ + 8.9772562, + 48.685069201 + ], + [ + 8.9778, + 48.685220401 + ], + [ + 8.9781048, + 48.685309501 + ], + [ + 8.9786075, + 48.685459901 + ], + [ + 8.9790984, + 48.685610401 + ], + [ + 8.9795666, + 48.685763201 + ], + [ + 8.9799868, + 48.685908901 + ], + [ + 8.9804267, + 48.686069001 + ], + [ + 8.9808726, + 48.686239901 + ], + [ + 8.9812992, + 48.686408101 + ], + [ + 8.9817213, + 48.686585601 + ], + [ + 8.9822936, + 48.686838401 + ], + [ + 8.9827101, + 48.687034901 + ], + [ + 8.9831871, + 48.687268201 + ], + [ + 8.9835783, + 48.687465901 + ], + [ + 8.9839253, + 48.687653401 + ], + [ + 8.9842368, + 48.687822601 + ], + [ + 8.984574, + 48.688012401 + ], + [ + 8.9848653, + 48.688182901 + ], + [ + 8.985114, + 48.688337401 + ], + [ + 8.9853765, + 48.688498001 + ], + [ + 8.9857278, + 48.688725601 + ], + [ + 8.986033, + 48.688926301 + ], + [ + 8.9863426, + 48.689134101 + ], + [ + 8.9866898, + 48.689368201 + ], + [ + 8.9870056, + 48.689583601 + ], + [ + 8.9873523, + 48.689817301 + ], + [ + 8.9878694, + 48.690165901 + ], + [ + 8.9881881, + 48.690373801 + ], + [ + 8.9885851, + 48.690625801 + ], + [ + 8.9889357, + 48.690841201 + ], + [ + 8.9891177, + 48.690950201 + ], + [ + 8.9893152, + 48.691064901 + ], + [ + 8.9896692, + 48.691263201 + ], + [ + 8.989948, + 48.691415401 + ], + [ + 8.9902819, + 48.691581901 + ], + [ + 8.9905926, + 48.691731401 + ], + [ + 8.9908499, + 48.691850001 + ], + [ + 8.9911866, + 48.691993901 + ], + [ + 8.9914806, + 48.692115701 + ], + [ + 8.9918396, + 48.692255501 + ], + [ + 8.9921547, + 48.692368001 + ], + [ + 8.992478, + 48.692479501 + ], + [ + 8.992776, + 48.692576401 + ], + [ + 8.9930499, + 48.692660901 + ], + [ + 8.9933908, + 48.692759001 + ], + [ + 8.993609, + 48.692818701 + ], + [ + 8.9942235, + 48.692974901 + ], + [ + 8.9945694, + 48.693050901 + ], + [ + 8.9949264, + 48.693125001 + ], + [ + 8.9953093, + 48.693200001 + ], + [ + 8.9956916, + 48.693264401 + ], + [ + 8.9959676, + 48.693305101 + ], + [ + 8.9964082, + 48.693366201 + ], + [ + 8.9966473, + 48.693395601 + ], + [ + 8.997068, + 48.693434901 + ], + [ + 8.9975604, + 48.693475901 + ], + [ + 8.9980432, + 48.693503901 + ], + [ + 8.9985819, + 48.693525501 + ], + [ + 8.9990872, + 48.693540101 + ], + [ + 8.9995526, + 48.693547701 + ], + [ + 8.9998104, + 48.693550201 + ], + [ + 9.0002657, + 48.693556001 + ], + [ + 9.0005438, + 48.693558101 + ], + [ + 9.0016382, + 48.693572101 + ], + [ + 9.0023149, + 48.693587201 + ], + [ + 9.0027577, + 48.693599101 + ], + [ + 9.0034335, + 48.693621801 + ], + [ + 9.0039508, + 48.693641701 + ], + [ + 9.0044896, + 48.693665301 + ], + [ + 9.0049323, + 48.693686301 + ], + [ + 9.0055371, + 48.693719601 + ], + [ + 9.0058219, + 48.693735701 + ], + [ + 9.0061001, + 48.693751701 + ], + [ + 9.0065682, + 48.693781301 + ], + [ + 9.0070021, + 48.693811601 + ], + [ + 9.0077916, + 48.693869701 + ], + [ + 9.0084371, + 48.693924001 + ], + [ + 9.0090769, + 48.693988301 + ], + [ + 9.0094838, + 48.694037101 + ], + [ + 9.0097531, + 48.694072801 + ], + [ + 9.0101979, + 48.694137701 + ], + [ + 9.01044, + 48.694177901 + ], + [ + 9.0106735, + 48.694217901 + ], + [ + 9.0110384, + 48.694288001 + ], + [ + 9.0114061, + 48.694366501 + ], + [ + 9.0118537, + 48.694468001 + ], + [ + 9.0122614, + 48.694571201 + ], + [ + 9.0127622, + 48.694706601 + ], + [ + 9.0131867, + 48.694830301 + ], + [ + 9.0135487, + 48.694942801 + ], + [ + 9.0139728, + 48.695080601 + ], + [ + 9.014072, + 48.695116001 + ], + [ + 9.0141473, + 48.695139401 + ], + [ + 9.0142546, + 48.695177401 + ], + [ + 9.0144141, + 48.695229701 + ], + [ + 9.0146013, + 48.695279101 + ], + [ + 9.0147245, + 48.695308801 + ], + [ + 9.0148418, + 48.695331001 + ], + [ + 9.014953, + 48.695353001 + ], + [ + 9.0152472, + 48.695401601 + ], + [ + 9.0153902, + 48.695430301 + ], + [ + 9.0155293, + 48.695464301 + ], + [ + 9.0156764, + 48.695503801 + ], + [ + 9.0158209, + 48.695547801 + ], + [ + 9.0161138, + 48.695651501 + ], + [ + 9.0164956, + 48.695810901 + ], + [ + 9.0168546, + 48.695969401 + ], + [ + 9.0171798, + 48.696113601 + ], + [ + 9.0178718, + 48.696435801 + ], + [ + 9.0190442, + 48.696995101 + ], + [ + 9.0196128, + 48.697280801 + ], + [ + 9.020192, + 48.697584101 + ], + [ + 9.020467, + 48.697721001 + ], + [ + 9.0213325, + 48.698153601 + ], + [ + 9.0223024, + 48.698644101 + ], + [ + 9.0231813, + 48.699082101 + ], + [ + 9.0237476, + 48.699354201 + ], + [ + 9.0251199, + 48.699990401 + ], + [ + 9.025258, + 48.700058001 + ], + [ + 9.0253948, + 48.700134501 + ], + [ + 9.0254966, + 48.700201001 + ], + [ + 9.025597, + 48.700272901 + ], + [ + 9.0256962, + 48.700355001 + ], + [ + 9.0257893, + 48.700440101 + ], + [ + 9.0259398, + 48.700600201 + ], + [ + 9.0260612, + 48.700734001 + ], + [ + 9.0261276, + 48.700797401 + ], + [ + 9.0261947, + 48.700856701 + ], + [ + 9.0263129, + 48.700944701 + ], + [ + 9.0264249, + 48.701007601 + ], + [ + 9.0265382, + 48.701055601 + ], + [ + 9.0266353, + 48.701095101 + ], + [ + 9.0267084, + 48.701123101 + ], + [ + 9.0267605, + 48.701142901 + ], + [ + 9.0269467, + 48.701210301 + ], + [ + 9.0272379, + 48.701320601 + ], + [ + 9.027478, + 48.701406801 + ], + [ + 9.0276974, + 48.701484001 + ], + [ + 9.0278943, + 48.701550101 + ], + [ + 9.0281282, + 48.701628401 + ], + [ + 9.028345, + 48.701697301 + ], + [ + 9.028543, + 48.701758201 + ], + [ + 9.0287632, + 48.701823901 + ], + [ + 9.0289898, + 48.701890801 + ], + [ + 9.0292289, + 48.701957001 + ], + [ + 9.029473, + 48.702023501 + ], + [ + 9.0298699, + 48.702126601 + ], + [ + 9.0301304, + 48.702192101 + ], + [ + 9.0305475, + 48.702294601 + ], + [ + 9.0308192, + 48.702358001 + ], + [ + 9.0310953, + 48.702418801 + ], + [ + 9.0312902, + 48.702461701 + ], + [ + 9.0315443, + 48.702515101 + ], + [ + 9.0317567, + 48.702559001 + ], + [ + 9.0320029, + 48.702607001 + ], + [ + 9.0321964, + 48.702643101 + ], + [ + 9.0324028, + 48.702680401 + ], + [ + 9.0326502, + 48.702725301 + ], + [ + 9.0329054, + 48.702769401 + ], + [ + 9.0331508, + 48.702809801 + ], + [ + 9.0334056, + 48.702850101 + ], + [ + 9.0336585, + 48.702888001 + ], + [ + 9.0338352, + 48.702913001 + ], + [ + 9.0340194, + 48.702938801 + ], + [ + 9.0343747, + 48.702986701 + ], + [ + 9.0347949, + 48.703039801 + ], + [ + 9.0350853, + 48.703072901 + ], + [ + 9.0353196, + 48.703099001 + ], + [ + 9.0355371, + 48.703121301 + ], + [ + 9.0357817, + 48.703144801 + ], + [ + 9.0360319, + 48.703167401 + ], + [ + 9.0362552, + 48.703186301 + ], + [ + 9.0364975, + 48.703205601 + ], + [ + 9.0367592, + 48.703225401 + ], + [ + 9.0369834, + 48.703241901 + ], + [ + 9.0372195, + 48.703258001 + ], + [ + 9.0374727, + 48.703274801 + ], + [ + 9.0377274, + 48.703291901 + ], + [ + 9.0379742, + 48.703308001 + ], + [ + 9.0381485, + 48.703318901 + ], + [ + 9.0389337, + 48.703372001 + ], + [ + 9.0393522, + 48.703400701 + ], + [ + 9.039741, + 48.703427701 + ], + [ + 9.0403835, + 48.703476201 + ], + [ + 9.0408354, + 48.703509401 + ], + [ + 9.0412258, + 48.703538201 + ], + [ + 9.041392, + 48.703549901 + ], + [ + 9.0415529, + 48.703563801 + ], + [ + 9.0418234, + 48.703590101 + ], + [ + 9.0422261, + 48.703636601 + ], + [ + 9.042514, + 48.703671401 + ], + [ + 9.0429844, + 48.703734801 + ], + [ + 9.0434459, + 48.703804801 + ], + [ + 9.0436102, + 48.703832601 + ], + [ + 9.0437776, + 48.703860301 + ], + [ + 9.0441607, + 48.703930401 + ], + [ + 9.0443531, + 48.703968501 + ], + [ + 9.0445348, + 48.704004101 + ], + [ + 9.0454126, + 48.704200901 + ], + [ + 9.0458326, + 48.704325601 + ], + [ + 9.0460671, + 48.704393801 + ], + [ + 9.0462824, + 48.704457801 + ], + [ + 9.0466371, + 48.704575001 + ], + [ + 9.0468946, + 48.704665401 + ], + [ + 9.0471077, + 48.704742101 + ], + [ + 9.0473346, + 48.704825601 + ], + [ + 9.0476556, + 48.704955301 + ], + [ + 9.0478661, + 48.705045201 + ], + [ + 9.0481324, + 48.705162001 + ], + [ + 9.0484348, + 48.705300501 + ], + [ + 9.0488203, + 48.705495101 + ], + [ + 9.0490517, + 48.705613801 + ], + [ + 9.0493398, + 48.705772601 + ], + [ + 9.0495432, + 48.705889101 + ], + [ + 9.0498805, + 48.706097001 + ], + [ + 9.0499805, + 48.706162001 + ], + [ + 9.0501276, + 48.706257601 + ], + [ + 9.0504276, + 48.706462501 + ], + [ + 9.0507776, + 48.706723601 + ], + [ + 9.0511821, + 48.707050001 + ], + [ + 9.0513906, + 48.707229001 + ], + [ + 9.0516236, + 48.707442301 + ], + [ + 9.0517735, + 48.707586901 + ], + [ + 9.051913, + 48.707727401 + ], + [ + 9.0520484, + 48.707867001 + ], + [ + 9.0521824, + 48.708011901 + ], + [ + 9.0523092, + 48.708154701 + ], + [ + 9.0524466, + 48.708319601 + ], + [ + 9.05257, + 48.708472101 + ], + [ + 9.052672, + 48.708605601 + ], + [ + 9.05279, + 48.708768801 + ], + [ + 9.0528323, + 48.708827501 + ], + [ + 9.0529002, + 48.708921701 + ], + [ + 9.0530202, + 48.709101001 + ], + [ + 9.0531257, + 48.709269701 + ], + [ + 9.0532788, + 48.709534001 + ], + [ + 9.0533682, + 48.709698501 + ], + [ + 9.0534486, + 48.709861801 + ], + [ + 9.0535397, + 48.710054701 + ], + [ + 9.0536154, + 48.710227501 + ], + [ + 9.0536772, + 48.710377301 + ], + [ + 9.0537316, + 48.710521101 + ], + [ + 9.0537851, + 48.710674201 + ], + [ + 9.0538433, + 48.710850501 + ], + [ + 9.0538983, + 48.711043701 + ], + [ + 9.0539373, + 48.711191801 + ], + [ + 9.0539774, + 48.711366201 + ], + [ + 9.0540161, + 48.711568701 + ], + [ + 9.0540446, + 48.711726301 + ], + [ + 9.0540657, + 48.711879101 + ], + [ + 9.0540896, + 48.712068401 + ], + [ + 9.0540989, + 48.712175901 + ], + [ + 9.0541089, + 48.712342101 + ], + [ + 9.0541181, + 48.712543901 + ], + [ + 9.0541204, + 48.712706801 + ], + [ + 9.0541212, + 48.712866901 + ], + [ + 9.0541182, + 48.713179001 + ], + [ + 9.054109, + 48.713517801 + ], + [ + 9.0541013, + 48.713853801 + ], + [ + 9.0540967, + 48.714068001 + ], + [ + 9.0540967, + 48.714374801 + ], + [ + 9.0541058, + 48.714700101 + ], + [ + 9.0541164, + 48.714864201 + ], + [ + 9.0541327, + 48.715050901 + ], + [ + 9.0541585, + 48.715248901 + ], + [ + 9.0541801, + 48.715388001 + ], + [ + 9.0542106, + 48.715555401 + ], + [ + 9.0542457, + 48.715721201 + ], + [ + 9.0542766, + 48.715850401 + ], + [ + 9.0543071, + 48.715969301 + ], + [ + 9.0543774, + 48.716215901 + ], + [ + 9.0544382, + 48.716392901 + ], + [ + 9.0545034, + 48.716577301 + ], + [ + 9.0545551, + 48.716711001 + ], + [ + 9.0546111, + 48.716842001 + ], + [ + 9.0547321, + 48.717102801 + ], + [ + 9.0548651, + 48.717372401 + ], + [ + 9.0549829, + 48.717581901 + ], + [ + 9.0550404, + 48.717685501 + ], + [ + 9.0550986, + 48.717781001 + ], + [ + 9.0551936, + 48.717932901 + ], + [ + 9.0552959, + 48.718081901 + ], + [ + 9.0553911, + 48.718222201 + ], + [ + 9.0554759, + 48.718331901 + ], + [ + 9.0555483, + 48.718435601 + ], + [ + 9.0556677, + 48.718588801 + ], + [ + 9.0558, + 48.718750201 + ], + [ + 9.0558855, + 48.718848701 + ], + [ + 9.0559765, + 48.718952601 + ], + [ + 9.056236, + 48.719235901 + ], + [ + 9.0563448, + 48.719341501 + ], + [ + 9.056434, + 48.719427701 + ], + [ + 9.0565316, + 48.719522801 + ], + [ + 9.0567215, + 48.719699101 + ], + [ + 9.0568831, + 48.719836001 + ], + [ + 9.0570318, + 48.719957201 + ], + [ + 9.0572552, + 48.720133301 + ], + [ + 9.0575118, + 48.720317801 + ], + [ + 9.0576978, + 48.720454501 + ], + [ + 9.0578778, + 48.720584901 + ], + [ + 9.0580713, + 48.720718101 + ], + [ + 9.0583101, + 48.720879501 + ], + [ + 9.058565, + 48.721046501 + ], + [ + 9.0587378, + 48.721158301 + ], + [ + 9.0589114, + 48.721267101 + ], + [ + 9.0591616, + 48.721422901 + ], + [ + 9.0594054, + 48.721571001 + ], + [ + 9.059637, + 48.721711301 + ], + [ + 9.0598722, + 48.721851401 + ], + [ + 9.0601433, + 48.722013001 + ], + [ + 9.060458, + 48.722198201 + ], + [ + 9.0608701, + 48.722437101 + ], + [ + 9.0610809, + 48.722557501 + ], + [ + 9.0613389, + 48.722705701 + ], + [ + 9.0616165, + 48.722863201 + ], + [ + 9.0618955, + 48.723018501 + ], + [ + 9.0621066, + 48.723134201 + ], + [ + 9.0624835, + 48.723340501 + ], + [ + 9.0627115, + 48.723463501 + ], + [ + 9.0629297, + 48.723579401 + ], + [ + 9.0631534, + 48.723699301 + ], + [ + 9.0633707, + 48.723813401 + ], + [ + 9.0636074, + 48.723937701 + ], + [ + 9.0638378, + 48.724054901 + ], + [ + 9.0639313, + 48.724133201 + ], + [ + 9.0640526, + 48.724211501 + ], + [ + 9.064463, + 48.724417701 + ], + [ + 9.0647004, + 48.724537101 + ], + [ + 9.065062, + 48.724714801 + ], + [ + 9.0652777, + 48.724819801 + ], + [ + 9.0656432, + 48.724997601 + ], + [ + 9.0660529, + 48.725191801 + ], + [ + 9.0664432, + 48.725374501 + ], + [ + 9.0668622, + 48.725568201 + ], + [ + 9.0672747, + 48.725755001 + ], + [ + 9.067585899, + 48.725894084 + ] + ] + } + }, + { + "identifier": "2023-001297--vi-bs.2025-12-07_05-00-00-000.devi-zus.2023-09-03_05-00-00-000.f_001.de8", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.78318334053514,9.005275908797676,48.782669217384075,9.012677513774822", + "point": "48.78318334053514,9.005275908797676", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Leonberg (aus Richtung Leonberg-West)", + "title": "A81 Sanierung Engelbergtunnel", + "startTimestamp": "2025-12-07T05:00:00+01:00", + "coordinate": { + "lat": 48.78318334053514, + "long": 9.005275908797676 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.12.25 um 05:00 Uhr", + "Ende: 10.05.26 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "Abfahrt von der A8: AD Leonberg (aus Richtung Leonberg-West)", + "", + "L\u00e4nge: 0.6 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A81 Sanierung Engelbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.005275909, + 48.783183341 + ], + [ + 9.0057351, + 48.783094401 + ], + [ + 9.006095, + 48.782949601 + ], + [ + 9.0062778, + 48.782862801 + ], + [ + 9.0064234, + 48.782802601 + ], + [ + 9.0067851, + 48.782582901 + ], + [ + 9.0070056, + 48.782442901 + ], + [ + 9.0072559, + 48.782294901 + ], + [ + 9.0075008, + 48.782178101 + ], + [ + 9.0077917, + 48.782065801 + ], + [ + 9.0081042, + 48.781981101 + ], + [ + 9.0084289, + 48.781925801 + ], + [ + 9.0087212, + 48.781893701 + ], + [ + 9.0090703, + 48.781889301 + ], + [ + 9.0094072, + 48.781891901 + ], + [ + 9.0096699, + 48.781914801 + ], + [ + 9.0098821, + 48.781935601 + ], + [ + 9.0100274, + 48.781953601 + ], + [ + 9.0102135, + 48.781976601 + ], + [ + 9.0103239, + 48.781994301 + ], + [ + 9.0105315, + 48.782027501 + ], + [ + 9.0106478, + 48.782048901 + ], + [ + 9.0108467, + 48.782085401 + ], + [ + 9.0109574, + 48.782110101 + ], + [ + 9.0111471, + 48.782152301 + ], + [ + 9.0113655, + 48.782209901 + ], + [ + 9.0114745, + 48.782238701 + ], + [ + 9.0117627, + 48.782323401 + ], + [ + 9.0120157, + 48.782401001 + ], + [ + 9.0123385, + 48.782524501 + ], + [ + 9.0126083, + 48.782636401 + ], + [ + 9.012677514, + 48.782669217 + ] + ] + } + } + ] + }, + "A92": { + "roadworks": [ + { + "identifier": "2026-015833--vi-bs.2026-03-30_20-00-00-000.devi-zus.2026-03-30_20-00-00-000_005.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.37338564947262,11.747301109291978,48.35385888454055,11.730025939288364", + "point": "48.37338564947262,11.747301109291978", + "startLcPosition": "9", + "impact": { + "lower": "Flughafen M\u00fcnchen", + "upper": "Freising-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Deggendorf -> M\u00fcnchen", + "title": "A92 | Freising-Ost - Flughafen M\u00fcnchen", + "coordinate": { + "lat": 48.37338564947262, + "long": 11.747301109291978 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 15:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A92: Deggendorf -> M\u00fcnchen, zwischen 2.8 km hinter AS Freising-Ost und 0.4 km vor AS Flughafen M\u00fcnchen", + "", + "L\u00e4nge: 2.54 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A92 von Flughafen M\u00fcnchen (AS) nach Isarau (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.747301109, + 48.373385649 + ], + [ + 11.7464578, + 48.372775101 + ], + [ + 11.7446235, + 48.371341201 + ], + [ + 11.7427186, + 48.369741401 + ], + [ + 11.742151, + 48.369248301 + ], + [ + 11.7415248, + 48.368669401 + ], + [ + 11.7407663, + 48.367978201 + ], + [ + 11.740076, + 48.367318001 + ], + [ + 11.739406, + 48.366644001 + ], + [ + 11.7387375, + 48.365951401 + ], + [ + 11.738128, + 48.365309901 + ], + [ + 11.737329, + 48.364433701 + ], + [ + 11.7370279, + 48.364080501 + ], + [ + 11.7366423, + 48.363647701 + ], + [ + 11.7362396, + 48.363164701 + ], + [ + 11.735453, + 48.362202501 + ], + [ + 11.7345677, + 48.361050301 + ], + [ + 11.7337057, + 48.359891801 + ], + [ + 11.7329594, + 48.358770601 + ], + [ + 11.7322742, + 48.357733001 + ], + [ + 11.7315217, + 48.356483901 + ], + [ + 11.7308116, + 48.355255401 + ], + [ + 11.7300706, + 48.353926101 + ], + [ + 11.730025939, + 48.353858885 + ] + ] + } + }, + { + "identifier": "2026-015833--vi-bs.2026-03-30_20-00-00-000.devi-zus.2026-03-30_20-00-00-000_005.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.37593996972097,11.751049179850648,48.371078557630916,11.744310756595722", + "point": "48.37593996972097,11.751049179850648", + "startLcPosition": "9", + "impact": { + "lower": "Isarau", + "upper": "Freising-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Deggendorf -> M\u00fcnchen", + "title": "A92 | Freising-Ost - Isarau", + "coordinate": { + "lat": 48.37593996972097, + "long": 11.751049179850648 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 15:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A92: Deggendorf -> M\u00fcnchen, zwischen 2.4 km hinter AS Freising-Ost und 0.4 km vor Isarau", + "", + "L\u00e4nge: 0.74 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A92 von Flughafen M\u00fcnchen (AS) nach Isarau (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.75104918, + 48.37593997 + ], + [ + 11.7500856, + 48.375314301 + ], + [ + 11.7492609, + 48.374765601 + ], + [ + 11.7482228, + 48.374038901 + ], + [ + 11.7473469, + 48.373418801 + ], + [ + 11.7464578, + 48.372775101 + ], + [ + 11.7446235, + 48.371341201 + ], + [ + 11.744310757, + 48.371078558 + ] + ] + } + }, + { + "identifier": "2026-015833--vi-bs.2026-03-30_20-00-00-000.devi-zus.2026-03-30_20-00-00-000_005.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.38395538275388,11.767293612168993,48.37685941104441,11.752535270804264", + "point": "48.38395538275388,11.767293612168993", + "startLcPosition": "9", + "impact": { + "lower": "Freising-Mitte", + "upper": "Freising-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Deggendorf -> M\u00fcnchen", + "title": "A92 | Freising-Ost - Freising-Mitte", + "coordinate": { + "lat": 48.38395538275388, + "long": 11.767293612168993 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 15:00 bis zum 14.04.26 05:00 Uhr.", + "", + "A92: Deggendorf -> M\u00fcnchen, zwischen 0.9 km hinter AS Freising-Ost und 0.8 km vor AS Freising-Mitte", + "", + "L\u00e4nge: 1.35 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A92 von Flughafen M\u00fcnchen (AS) nach Isarau (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.767293612, + 48.383955383 + ], + [ + 11.7666693, + 48.383719501 + ], + [ + 11.7658452, + 48.383402901 + ], + [ + 11.7652642, + 48.383177701 + ], + [ + 11.7646776, + 48.382930201 + ], + [ + 11.7635079, + 48.382443201 + ], + [ + 11.7629649, + 48.382213501 + ], + [ + 11.7619568, + 48.381770801 + ], + [ + 11.7609425, + 48.381319101 + ], + [ + 11.7601074, + 48.380921901 + ], + [ + 11.7592657, + 48.380515401 + ], + [ + 11.7575828, + 48.379681101 + ], + [ + 11.7562795, + 48.378991601 + ], + [ + 11.7550015, + 48.378292501 + ], + [ + 11.7537632, + 48.377590101 + ], + [ + 11.752535271, + 48.376859411 + ] + ] + } + }, + { + "identifier": "2026-015833--vi-bs.2026-03-30_20-00-00-000.devi-zus.2026-03-30_20-00-00-000_005.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.3859975327589,11.773296959172736,48.385539628068585,11.771829501122934", + "point": "48.3859975327589,11.773296959172736", + "startLcPosition": "9", + "impact": { + "lower": "Freising-Mitte", + "upper": "Freising-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Deggendorf -> M\u00fcnchen", + "title": "A92 | Freising-Ost - Freising-Mitte", + "coordinate": { + "lat": 48.3859975327589, + "long": 11.773296959172736 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 15:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A92: Deggendorf -> M\u00fcnchen, zwischen 0.4 km hinter AS Freising-Ost und 2.6 km vor AS Freising-Mitte", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A92 von Flughafen M\u00fcnchen (AS) nach Isarau (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.773296959, + 48.385997533 + ], + [ + 11.7726332, + 48.385792401 + ], + [ + 11.771829501, + 48.385539628 + ] + ] + } + }, + { + "identifier": "2026-015833--vi-bs.2026-03-30_20-00-00-000.devi-zus.2026-03-30_20-00-00-000_005.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.388198737613074,11.781732824452432,48.369375602892134,11.742297533977942", + "point": "48.388198737613074,11.781732824452432", + "startLcPosition": "10", + "impact": { + "lower": "Isarau", + "upper": "Erding", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Deggendorf -> M\u00fcnchen", + "title": "A92 | Erding - Isarau", + "coordinate": { + "lat": 48.388198737613074, + "long": 11.781732824452432 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 15:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A92: Deggendorf -> M\u00fcnchen, zwischen 5.7 km hinter AS Erding und 0.2 km vor Isarau", + "", + "L\u00e4nge: 3.65 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A92 von Flughafen M\u00fcnchen (AS) nach Isarau (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.781732824, + 48.388198738 + ], + [ + 11.7808144, + 48.388000101 + ], + [ + 11.7780202, + 48.387329301 + ], + [ + 11.775328, + 48.386597401 + ], + [ + 11.7735266, + 48.386068501 + ], + [ + 11.7726332, + 48.385792401 + ], + [ + 11.7717264, + 48.385507201 + ], + [ + 11.771613, + 48.385467101 + ], + [ + 11.7699665, + 48.384917801 + ], + [ + 11.7683347, + 48.384345501 + ], + [ + 11.7675144, + 48.384038801 + ], + [ + 11.7666693, + 48.383719501 + ], + [ + 11.7658452, + 48.383402901 + ], + [ + 11.7652642, + 48.383177701 + ], + [ + 11.7646776, + 48.382930201 + ], + [ + 11.7635079, + 48.382443201 + ], + [ + 11.7629649, + 48.382213501 + ], + [ + 11.7619568, + 48.381770801 + ], + [ + 11.7609425, + 48.381319101 + ], + [ + 11.7601074, + 48.380921901 + ], + [ + 11.7592657, + 48.380515401 + ], + [ + 11.7575828, + 48.379681101 + ], + [ + 11.7562795, + 48.378991601 + ], + [ + 11.7550015, + 48.378292501 + ], + [ + 11.7537632, + 48.377590101 + ], + [ + 11.7525287, + 48.376855501 + ], + [ + 11.7512881, + 48.376095101 + ], + [ + 11.7500856, + 48.375314301 + ], + [ + 11.7492609, + 48.374765601 + ], + [ + 11.7482228, + 48.374038901 + ], + [ + 11.7473469, + 48.373418801 + ], + [ + 11.7464578, + 48.372775101 + ], + [ + 11.7446235, + 48.371341201 + ], + [ + 11.7427186, + 48.369741401 + ], + [ + 11.742297534, + 48.369375603 + ] + ] + } + }, + { + "identifier": "2024-052184--vi-bs.2026-02-09_00-00-00-000.devi-zus.2025-05-01_07-30-00-000.f.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.63513331595675,12.358624434823962,48.651068608398155,12.452021590742493", + "point": "48.63513331595675,12.358624434823962", + "startLcPosition": "21", + "impact": { + "lower": "Teisbacher Moos", + "upper": "W\u00f6rth a.d.Isar", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Deggendorf", + "title": "A92 | W\u00f6rth a.d.Isar - Teisbacher Moos", + "startTimestamp": "2026-02-09T00:00:00+01:00", + "coordinate": { + "lat": 48.63513331595675, + "long": 12.358624434823962 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.02.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.28)", + "", + "A92: M\u00fcnchen -> Deggendorf, zwischen 2.8 km hinter AS W\u00f6rth a.d.Isar und 0.1 km vor Teisbacher Moos", + "", + "L\u00e4nge: 7.13 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A92 Grundhafte Erneuerung AK LA_Essenbach - AS DGF-Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.358624435, + 48.635133316 + ], + [ + 12.3636589, + 48.635475201 + ], + [ + 12.3659614, + 48.635677501 + ], + [ + 12.3688482, + 48.635967301 + ], + [ + 12.3709088, + 48.636207701 + ], + [ + 12.3729958, + 48.636473801 + ], + [ + 12.3751263, + 48.636781001 + ], + [ + 12.37722, + 48.637108901 + ], + [ + 12.3793757, + 48.637487301 + ], + [ + 12.3815355, + 48.637876601 + ], + [ + 12.3839553, + 48.638363101 + ], + [ + 12.3863683, + 48.638848301 + ], + [ + 12.3904257, + 48.639633201 + ], + [ + 12.3945271, + 48.640363701 + ], + [ + 12.3992747, + 48.641171401 + ], + [ + 12.39946, + 48.641200401 + ], + [ + 12.4015536, + 48.641528901 + ], + [ + 12.4037047, + 48.641859601 + ], + [ + 12.406613, + 48.642285101 + ], + [ + 12.4090062, + 48.642623701 + ], + [ + 12.4113598, + 48.642937301 + ], + [ + 12.4158338, + 48.643496801 + ], + [ + 12.4199243, + 48.643971401 + ], + [ + 12.4222177, + 48.644272501 + ], + [ + 12.4245526, + 48.644602001 + ], + [ + 12.4269575, + 48.644981901 + ], + [ + 12.4293508, + 48.645384701 + ], + [ + 12.4302053, + 48.645544701 + ], + [ + 12.4326378, + 48.646006701 + ], + [ + 12.4331934, + 48.646119101 + ], + [ + 12.43548, + 48.646596401 + ], + [ + 12.4360946, + 48.646723201 + ], + [ + 12.4382823, + 48.647218301 + ], + [ + 12.4420575, + 48.648142501 + ], + [ + 12.4457406, + 48.649139801 + ], + [ + 12.4477651, + 48.649728801 + ], + [ + 12.4502216, + 48.650474701 + ], + [ + 12.452021591, + 48.651068608 + ] + ] + } + }, + { + "identifier": "2024-052184--vi-bs.2026-02-09_00-00-00-000.devi-zus.2025-05-01_07-30-00-000.f.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.654386130465255,12.461577592258529,48.636115687343604,12.369286530068223", + "point": "48.654386130465255,12.461577592258529", + "startLcPosition": "24", + "impact": { + "lower": "W\u00f6rth a.d.Isar", + "upper": "Dingolfing-Mitte", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Deggendorf -> M\u00fcnchen", + "title": "A92 | Dingolfing-Mitte - W\u00f6rth a.d.Isar", + "startTimestamp": "2026-02-09T00:00:00+01:00", + "coordinate": { + "lat": 48.654386130465255, + "long": 12.461577592258529 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.02.26 um 00:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.28)", + "", + "A92: Deggendorf -> M\u00fcnchen, zwischen 0.7 km hinter AS Dingolfing-Mitte und 3.6 km vor AS W\u00f6rth a.d.Isar", + "", + "L\u00e4nge: 7.13 km | Maximale Durchfahrtsbreite: 5.35 m", + "", + "A92 Grundhafte Erneuerung AK LA_Essenbach - AS DGF-Ost" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.461577592, + 48.65438613 + ], + [ + 12.4607946, + 48.654140801 + ], + [ + 12.4604075, + 48.654019501 + ], + [ + 12.4585567, + 48.653413301 + ], + [ + 12.4573018, + 48.652982201 + ], + [ + 12.455499, + 48.652376101 + ], + [ + 12.4552599, + 48.652290301 + ], + [ + 12.4546648, + 48.652081901 + ], + [ + 12.4531119, + 48.651540001 + ], + [ + 12.4514157, + 48.650976001 + ], + [ + 12.4505962, + 48.650712601 + ], + [ + 12.4479896, + 48.649901001 + ], + [ + 12.4456165, + 48.649210101 + ], + [ + 12.4419399, + 48.648221601 + ], + [ + 12.4394421, + 48.647597001 + ], + [ + 12.4369446, + 48.647016101 + ], + [ + 12.4365112, + 48.646920301 + ], + [ + 12.4353071, + 48.646653701 + ], + [ + 12.434412, + 48.646464101 + ], + [ + 12.4326303, + 48.646099701 + ], + [ + 12.4292234, + 48.645463501 + ], + [ + 12.4280522, + 48.645267801 + ], + [ + 12.4268069, + 48.645054901 + ], + [ + 12.4244924, + 48.644697901 + ], + [ + 12.4221731, + 48.644365301 + ], + [ + 12.4198685, + 48.644067201 + ], + [ + 12.4158014, + 48.643597001 + ], + [ + 12.4113274, + 48.643032401 + ], + [ + 12.4089449, + 48.642714301 + ], + [ + 12.4065641, + 48.642380701 + ], + [ + 12.4036746, + 48.641956801 + ], + [ + 12.4015246, + 48.641625401 + ], + [ + 12.3993783, + 48.641286501 + ], + [ + 12.3991475, + 48.641247701 + ], + [ + 12.3945184, + 48.640465601 + ], + [ + 12.3903873, + 48.639717901 + ], + [ + 12.3863045, + 48.638932001 + ], + [ + 12.3838915, + 48.638451101 + ], + [ + 12.3814796, + 48.637972701 + ], + [ + 12.3793453, + 48.637579201 + ], + [ + 12.3771992, + 48.637206901 + ], + [ + 12.3751075, + 48.636881501 + ], + [ + 12.3729942, + 48.636571201 + ], + [ + 12.3708133, + 48.636294801 + ], + [ + 12.36928653, + 48.636115687 + ] + ] + } + }, + { + "identifier": "2025-057517--vi-bs.2026-04-17_21-00-00-000.devi-zus.2026-04-17_20-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.6961408979771,12.674990152638376,48.726947854999885,12.728018886982722", + "point": "48.6961408979771,12.674990152638376", + "startLcPosition": "27", + "impact": { + "lower": "Wallersdorf-Nord", + "upper": "Pilsting", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Deggendorf", + "title": "A92 | Pilsting - Wallersdorf-Nord", + "startTimestamp": "2026-04-17T21:00:00+02:00", + "coordinate": { + "lat": 48.6961408979771, + "long": 12.674990152638376 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.04.26 um 21:00 Uhr", + "Ende: 20.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.04.26)", + "", + "A92: M\u00fcnchen -> Deggendorf, zwischen 1.6 km hinter Pilsting und 2.5 km vor AS Wallersdorf-Nord", + "", + "L\u00e4nge: 5.22 km", + "", + "Replos A92" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.674990153, + 48.696140898 + ], + [ + 12.6771577, + 48.697118001 + ], + [ + 12.6780854, + 48.697565801 + ], + [ + 12.6790841, + 48.698066801 + ], + [ + 12.680393, + 48.698738201 + ], + [ + 12.6822035, + 48.699744501 + ], + [ + 12.6839574, + 48.700794901 + ], + [ + 12.685857, + 48.702012501 + ], + [ + 12.6877098, + 48.703270001 + ], + [ + 12.6895506, + 48.704478801 + ], + [ + 12.6914184, + 48.705658001 + ], + [ + 12.6931507, + 48.706709901 + ], + [ + 12.6947263, + 48.707645901 + ], + [ + 12.6970458, + 48.708958501 + ], + [ + 12.6990077, + 48.710029701 + ], + [ + 12.7012031, + 48.711184801 + ], + [ + 12.7033832, + 48.712278101 + ], + [ + 12.7067894, + 48.713927201 + ], + [ + 12.7111994, + 48.716049801 + ], + [ + 12.7130902, + 48.716965001 + ], + [ + 12.7149632, + 48.717896401 + ], + [ + 12.717143, + 48.719022901 + ], + [ + 12.7194744, + 48.720324001 + ], + [ + 12.7208937, + 48.721179601 + ], + [ + 12.7222776, + 48.722052001 + ], + [ + 12.7232519, + 48.722751001 + ], + [ + 12.7238029, + 48.723146301 + ], + [ + 12.725345, + 48.724365401 + ], + [ + 12.7261785, + 48.725096101 + ], + [ + 12.7269152, + 48.725800201 + ], + [ + 12.7274697, + 48.726349201 + ], + [ + 12.7278317, + 48.726743301 + ], + [ + 12.728018887, + 48.726947855 + ] + ] + } + } + ] + }, + "A93": { + "roadworks": [ + { + "identifier": "2026-010459--vi-bs.2026-04-18_23-00-00-000.devi-zus.2026-04-07_00-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.756855967970864,12.110873081589954,47.7732706768042,12.09646350056621", + "point": "47.756855967970864,12.110873081589954", + "startLcPosition": "10", + "impact": { + "lower": "Nicklheim", + "upper": "Brannenburg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kiefersfelden -> Rosenheim", + "title": "A93 | Brannenburg - Nicklheim", + "startTimestamp": "2026-04-18T23:00:00+02:00", + "coordinate": { + "lat": 47.756855967970864, + "long": 12.110873081589954 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.04.26 um 23:00 Uhr", + "Ende: 14.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.09.26)", + "", + "A93: Kiefersfelden -> Rosenheim, zwischen 2.5 km hinter AS Brannenburg und 0.9 km vor Nicklheim", + "", + "L\u00e4nge: 2.13 km | Maximale Durchfahrtsbreite: 5.2 m", + "", + "A93 S\u00fcd DB E\u00dc Reischenhart BW19 Korrosionsschutz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.110873082, + 47.756855968 + ], + [ + 12.1106742, + 47.757043901 + ], + [ + 12.1105156, + 47.757188701 + ], + [ + 12.1097855, + 47.757870201 + ], + [ + 12.1087795, + 47.758800301 + ], + [ + 12.1084333, + 47.759126601 + ], + [ + 12.1062807, + 47.761142401 + ], + [ + 12.1050989, + 47.762305401 + ], + [ + 12.1049177, + 47.762492901 + ], + [ + 12.104466, + 47.762956801 + ], + [ + 12.1038942, + 47.763551901 + ], + [ + 12.1033292, + 47.764136401 + ], + [ + 12.1007461, + 47.767093701 + ], + [ + 12.0998338, + 47.768307701 + ], + [ + 12.098629, + 47.769893601 + ], + [ + 12.0974656, + 47.771685401 + ], + [ + 12.0972694, + 47.771950101 + ], + [ + 12.0971151, + 47.772188101 + ], + [ + 12.0966554, + 47.772956901 + ], + [ + 12.096463501, + 47.773270677 + ] + ] + } + }, + { + "identifier": "2026-010459--vi-bs.2026-04-18_23-00-00-000.devi-zus.2026-04-07_00-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.773223077323586,12.096292830584323,47.75679205373684,12.110740645291871", + "point": "47.773223077323586,12.096292830584323", + "startLcPosition": "12", + "impact": { + "lower": "Brannenburg", + "upper": "Nicklheim", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Rosenheim -> Kiefersfelden", + "title": "A93 | Nicklheim - Brannenburg", + "startTimestamp": "2026-04-18T23:00:00+02:00", + "coordinate": { + "lat": 47.773223077323586, + "long": 12.096292830584323 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.04.26 um 23:00 Uhr", + "Ende: 14.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 14.09.26)", + "", + "A93: Rosenheim -> Kiefersfelden, zwischen 0.9 km hinter Nicklheim und 2.5 km vor AS Brannenburg", + "", + "L\u00e4nge: 2.13 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 5.2 m", + "", + "A93 S\u00fcd DB E\u00dc Reischenhart BW19 Korrosionsschutz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.096292831, + 47.773223077 + ], + [ + 12.0963074, + 47.773199501 + ], + [ + 12.0964757, + 47.772926301 + ], + [ + 12.0969966, + 47.772067901 + ], + [ + 12.097159, + 47.771824701 + ], + [ + 12.0972895, + 47.771626901 + ], + [ + 12.0977877, + 47.770890501 + ], + [ + 12.0984528, + 47.769842101 + ], + [ + 12.0996568, + 47.768271701 + ], + [ + 12.1006567, + 47.766981201 + ], + [ + 12.1032552, + 47.763995701 + ], + [ + 12.1036208, + 47.763625301 + ], + [ + 12.1043158, + 47.762920701 + ], + [ + 12.1047884, + 47.762435701 + ], + [ + 12.1049478, + 47.762274701 + ], + [ + 12.1058532, + 47.761366101 + ], + [ + 12.1074303, + 47.759842801 + ], + [ + 12.1085477, + 47.758827201 + ], + [ + 12.1086197, + 47.758761301 + ], + [ + 12.1098465, + 47.757620001 + ], + [ + 12.1103663, + 47.757149401 + ], + [ + 12.1105417, + 47.756978801 + ], + [ + 12.110740645, + 47.756792054 + ] + ] + } + }, + { + "identifier": "2026-016461--vi-bs.2026-04-09_07-30-00-000.devi-zus.2026-04-01_07-00-00-000_006.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.70856286215667,11.789721914872333,48.713675483870404,11.808175679799865", + "point": "48.70856286215667,11.789721914872333", + "startLcPosition": "18", + "impact": { + "lower": "Deutschmeister", + "upper": "Aiglsbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Holledau -> Regensburg", + "title": "A93 | Aiglsbach - Deutschmeister", + "coordinate": { + "lat": 48.70856286215667, + "long": 11.789721914872333 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 17:00 Uhr", + "", + "A93: Holledau -> Regensburg, zwischen 4.6 km hinter AS Aiglsbach und 4.6 km vor Deutschmeister", + "", + "L\u00e4nge: 1.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A93 von Elsendorf (AS) nach Siegenburg (AS) Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.789721915, + 48.708562862 + ], + [ + 11.7898779, + 48.708619401 + ], + [ + 11.7936601, + 48.710376401 + ], + [ + 11.7957341, + 48.711376801 + ], + [ + 11.7969033, + 48.711871301 + ], + [ + 11.7975638, + 48.712113401 + ], + [ + 11.7983896, + 48.712371701 + ], + [ + 11.7990008, + 48.712541501 + ], + [ + 11.7997941, + 48.712710401 + ], + [ + 11.8000726, + 48.712758501 + ], + [ + 11.8008282, + 48.712882701 + ], + [ + 11.8013946, + 48.712961601 + ], + [ + 11.8021832, + 48.713034801 + ], + [ + 11.8028205, + 48.713091501 + ], + [ + 11.8034342, + 48.713139601 + ], + [ + 11.8046277, + 48.713233301 + ], + [ + 11.8050306, + 48.713262801 + ], + [ + 11.8057816, + 48.713328101 + ], + [ + 11.8064687, + 48.713398201 + ], + [ + 11.8069915, + 48.713468801 + ], + [ + 11.8075771, + 48.713554801 + ], + [ + 11.80817568, + 48.713675484 + ] + ] + } + }, + { + "identifier": "2026-016735--vi-bs.2026-04-13_07-15-00-000.devi-bs.2026-04-13_07-15-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.75068872745348,11.866780206852065,48.97621263609642,12.065406784243311", + "point": "48.75068872745348,11.866780206852065", + "startLcPosition": "20", + "impact": { + "lower": "Regensburg-S\u00fcd", + "upper": "Deutschmeister", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Holledau -> Regensburg", + "title": "A93 | Deutschmeister - Regensburg-S\u00fcd", + "coordinate": { + "lat": 48.75068872745348, + "long": 11.866780206852065 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:15 bis 16:00 Uhr", + "14.04.26 von 07:15 bis 16:00 Uhr", + "15.04.26 von 07:15 bis 16:00 Uhr", + "16.04.26 von 07:15 bis 14:15 Uhr", + "17.04.26 von 07:15 bis 12:30 Uhr", + "", + "A93: Holledau -> Regensburg, zwischen 1.5 km hinter Deutschmeister und 0.1 km vor AS Regensburg-S\u00fcd", + "", + "L\u00e4nge: 33.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Regensburg-S\u00fcd (AS) nach Deutschmeister (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.866780207, + 48.750688727 + ], + [ + 11.8669623, + 48.750824901 + ], + [ + 11.867201, + 48.750997601 + ], + [ + 11.8674812, + 48.751213601 + ], + [ + 11.8688582, + 48.752201501 + ], + [ + 11.8698223, + 48.752841601 + ], + [ + 11.8705726, + 48.753335801 + ], + [ + 11.8710814, + 48.753653901 + ], + [ + 11.8713717, + 48.753843701 + ], + [ + 11.8719212, + 48.754173301 + ], + [ + 11.8728131, + 48.754709901 + ], + [ + 11.8738813, + 48.755350201 + ], + [ + 11.8748403, + 48.755950401 + ], + [ + 11.8755314, + 48.756429401 + ], + [ + 11.8760268, + 48.756797801 + ], + [ + 11.8766397, + 48.757309801 + ], + [ + 11.8772707, + 48.757940201 + ], + [ + 11.8777865, + 48.758521001 + ], + [ + 11.8781509, + 48.758976801 + ], + [ + 11.8786635, + 48.759700201 + ], + [ + 11.8805597, + 48.762466501 + ], + [ + 11.8822558, + 48.765016901 + ], + [ + 11.8823243, + 48.765129501 + ], + [ + 11.8834843, + 48.766799301 + ], + [ + 11.8840749, + 48.767676801 + ], + [ + 11.8846737, + 48.768575201 + ], + [ + 11.8850443, + 48.769116601 + ], + [ + 11.885398, + 48.769594301 + ], + [ + 11.8857087, + 48.769977801 + ], + [ + 11.8859599, + 48.770266001 + ], + [ + 11.8862115, + 48.770540101 + ], + [ + 11.8864832, + 48.770814201 + ], + [ + 11.8866716, + 48.770982201 + ], + [ + 11.8869638, + 48.771247301 + ], + [ + 11.8872636, + 48.771497601 + ], + [ + 11.8875346, + 48.771714101 + ], + [ + 11.8878685, + 48.771952501 + ], + [ + 11.8881746, + 48.772138401 + ], + [ + 11.8886484, + 48.772425901 + ], + [ + 11.8893521, + 48.772808901 + ], + [ + 11.8898106, + 48.773035801 + ], + [ + 11.8905649, + 48.773375901 + ], + [ + 11.8914825, + 48.773715001 + ], + [ + 11.892515, + 48.774069501 + ], + [ + 11.8936794, + 48.774442901 + ], + [ + 11.8947779, + 48.774806701 + ], + [ + 11.8958609, + 48.775207701 + ], + [ + 11.8966005, + 48.775520201 + ], + [ + 11.8974457, + 48.775945101 + ], + [ + 11.898006, + 48.776260701 + ], + [ + 11.8985472, + 48.776602701 + ], + [ + 11.8993532, + 48.777153301 + ], + [ + 11.8998925, + 48.777559601 + ], + [ + 11.9036323, + 48.780563301 + ], + [ + 11.9073201, + 48.783527001 + ], + [ + 11.9083959, + 48.784401901 + ], + [ + 11.9093957, + 48.785195501 + ], + [ + 11.9103152, + 48.785950701 + ], + [ + 11.9112587, + 48.786690201 + ], + [ + 11.9120681, + 48.787316401 + ], + [ + 11.9128554, + 48.787868701 + ], + [ + 11.9139545, + 48.788579701 + ], + [ + 11.9151953, + 48.789311701 + ], + [ + 11.9171058, + 48.790416301 + ], + [ + 11.9190878, + 48.791552101 + ], + [ + 11.9205752, + 48.792403201 + ], + [ + 11.9219132, + 48.793196801 + ], + [ + 11.922712, + 48.793700201 + ], + [ + 11.9234586, + 48.794226701 + ], + [ + 11.9237338, + 48.794429901 + ], + [ + 11.9243543, + 48.794931101 + ], + [ + 11.9250828, + 48.795581001 + ], + [ + 11.925803, + 48.796246901 + ], + [ + 11.9272014, + 48.797567401 + ], + [ + 11.9285211, + 48.798826101 + ], + [ + 11.9299286, + 48.800157701 + ], + [ + 11.932553, + 48.802640701 + ], + [ + 11.9347996, + 48.804751901 + ], + [ + 11.9357834, + 48.805674301 + ], + [ + 11.9368978, + 48.806683601 + ], + [ + 11.9374079, + 48.807142401 + ], + [ + 11.9379617, + 48.807622301 + ], + [ + 11.939046, + 48.808555301 + ], + [ + 11.9405485, + 48.809832201 + ], + [ + 11.9414389, + 48.810593201 + ], + [ + 11.9421879, + 48.811230501 + ], + [ + 11.9423405, + 48.811358701 + ], + [ + 11.9429781, + 48.811906801 + ], + [ + 11.9439876, + 48.812762801 + ], + [ + 11.9444758, + 48.813181401 + ], + [ + 11.9454967, + 48.814056801 + ], + [ + 11.9463124, + 48.814772601 + ], + [ + 11.946715, + 48.815143601 + ], + [ + 11.9470692, + 48.815511401 + ], + [ + 11.9477123, + 48.816255701 + ], + [ + 11.9479127, + 48.816528601 + ], + [ + 11.9484702, + 48.817279601 + ], + [ + 11.9488205, + 48.817788301 + ], + [ + 11.9498611, + 48.819232701 + ], + [ + 11.9506212, + 48.820216201 + ], + [ + 11.9510482, + 48.820723001 + ], + [ + 11.9515414, + 48.821262201 + ], + [ + 11.9519289, + 48.821656901 + ], + [ + 11.9523351, + 48.822043101 + ], + [ + 11.9531959, + 48.822805001 + ], + [ + 11.953801, + 48.823295301 + ], + [ + 11.9540403, + 48.823478601 + ], + [ + 11.9549229, + 48.824110001 + ], + [ + 11.9557689, + 48.824667301 + ], + [ + 11.9565331, + 48.825140301 + ], + [ + 11.9570711, + 48.825442201 + ], + [ + 11.9573734, + 48.825600901 + ], + [ + 11.9581807, + 48.826018601 + ], + [ + 11.9589641, + 48.826392101 + ], + [ + 11.9597763, + 48.826747401 + ], + [ + 11.9615322, + 48.827473801 + ], + [ + 11.965383, + 48.829043901 + ], + [ + 11.9690303, + 48.830543901 + ], + [ + 11.9711238, + 48.831405901 + ], + [ + 11.9735037, + 48.832359401 + ], + [ + 11.9749366, + 48.832925401 + ], + [ + 11.9764674, + 48.833502101 + ], + [ + 11.9782727, + 48.834159401 + ], + [ + 11.9803708, + 48.834915201 + ], + [ + 11.9832974, + 48.835959901 + ], + [ + 11.9856354, + 48.836797901 + ], + [ + 11.9869166, + 48.837247401 + ], + [ + 11.9880593, + 48.837617901 + ], + [ + 11.9892727, + 48.837959501 + ], + [ + 11.9904939, + 48.838266101 + ], + [ + 11.9911383, + 48.838413501 + ], + [ + 11.9919886, + 48.838593101 + ], + [ + 11.9935932, + 48.838933301 + ], + [ + 11.9948698, + 48.839202201 + ], + [ + 11.9965542, + 48.839557001 + ], + [ + 11.9992877, + 48.840146001 + ], + [ + 12.0001708, + 48.840379101 + ], + [ + 12.001108, + 48.840685801 + ], + [ + 12.0016606, + 48.840899501 + ], + [ + 12.0021452, + 48.841092701 + ], + [ + 12.0027011, + 48.841358101 + ], + [ + 12.0032244, + 48.841618101 + ], + [ + 12.0041556, + 48.842174701 + ], + [ + 12.0046126, + 48.842481801 + ], + [ + 12.005083, + 48.842840901 + ], + [ + 12.0054321, + 48.843123901 + ], + [ + 12.0057966, + 48.843461901 + ], + [ + 12.0063343, + 48.844024701 + ], + [ + 12.0067001, + 48.844443401 + ], + [ + 12.0071164, + 48.845042801 + ], + [ + 12.0074694, + 48.845612401 + ], + [ + 12.0076709, + 48.846027601 + ], + [ + 12.0079561, + 48.846617701 + ], + [ + 12.0084607, + 48.847674401 + ], + [ + 12.0092625, + 48.849368701 + ], + [ + 12.0093551, + 48.849555201 + ], + [ + 12.0112964, + 48.853622501 + ], + [ + 12.0116025, + 48.854250301 + ], + [ + 12.0121617, + 48.855397301 + ], + [ + 12.0123742, + 48.855802201 + ], + [ + 12.0125581, + 48.856125701 + ], + [ + 12.0128001, + 48.856533301 + ], + [ + 12.013017, + 48.856891001 + ], + [ + 12.0131373, + 48.857076501 + ], + [ + 12.0136689, + 48.857792601 + ], + [ + 12.0140385, + 48.858237101 + ], + [ + 12.0143242, + 48.858560001 + ], + [ + 12.0145338, + 48.858777101 + ], + [ + 12.01489, + 48.859128401 + ], + [ + 12.0153588, + 48.859556901 + ], + [ + 12.0157975, + 48.859930101 + ], + [ + 12.0163588, + 48.860364201 + ], + [ + 12.016902, + 48.860758501 + ], + [ + 12.017519, + 48.861162501 + ], + [ + 12.0181093, + 48.861519901 + ], + [ + 12.0188405, + 48.861924401 + ], + [ + 12.0191844, + 48.862100101 + ], + [ + 12.0195488, + 48.862277301 + ], + [ + 12.0201336, + 48.862544201 + ], + [ + 12.0207311, + 48.862799201 + ], + [ + 12.0213475, + 48.863047301 + ], + [ + 12.0220389, + 48.863291801 + ], + [ + 12.0228365, + 48.863562001 + ], + [ + 12.0239119, + 48.863883801 + ], + [ + 12.0245591, + 48.864079901 + ], + [ + 12.0252167, + 48.864275701 + ], + [ + 12.0263002, + 48.864600101 + ], + [ + 12.026792, + 48.864762101 + ], + [ + 12.0273647, + 48.864959501 + ], + [ + 12.0277856, + 48.865115501 + ], + [ + 12.0284065, + 48.865364601 + ], + [ + 12.0291998, + 48.865722501 + ], + [ + 12.0297566, + 48.866011301 + ], + [ + 12.0303453, + 48.866361101 + ], + [ + 12.0306439, + 48.866546901 + ], + [ + 12.0310314, + 48.866813101 + ], + [ + 12.0314549, + 48.867126801 + ], + [ + 12.0317516, + 48.867371701 + ], + [ + 12.0320432, + 48.867619401 + ], + [ + 12.0325989, + 48.868120101 + ], + [ + 12.0329266, + 48.868431801 + ], + [ + 12.0331952, + 48.868691101 + ], + [ + 12.0337522, + 48.869203401 + ], + [ + 12.034463, + 48.869837001 + ], + [ + 12.0348671, + 48.870157801 + ], + [ + 12.035256, + 48.870437501 + ], + [ + 12.0359135, + 48.870877901 + ], + [ + 12.0365804, + 48.871260901 + ], + [ + 12.0372256, + 48.871576601 + ], + [ + 12.0377565, + 48.871809301 + ], + [ + 12.0382429, + 48.872006501 + ], + [ + 12.0387905, + 48.872215901 + ], + [ + 12.0392666, + 48.872377601 + ], + [ + 12.0401263, + 48.872644301 + ], + [ + 12.0411545, + 48.872941601 + ], + [ + 12.0415876, + 48.873055001 + ], + [ + 12.0421902, + 48.873215901 + ], + [ + 12.0434339, + 48.873565201 + ], + [ + 12.0445705, + 48.873960101 + ], + [ + 12.0455022, + 48.874360901 + ], + [ + 12.0462609, + 48.874741201 + ], + [ + 12.0468724, + 48.875090501 + ], + [ + 12.0475065, + 48.875497701 + ], + [ + 12.0478269, + 48.875730101 + ], + [ + 12.0486476, + 48.876372801 + ], + [ + 12.0493515, + 48.877015301 + ], + [ + 12.0507472, + 48.878330401 + ], + [ + 12.051669, + 48.879157001 + ], + [ + 12.0522706, + 48.879603301 + ], + [ + 12.0526977, + 48.879881201 + ], + [ + 12.0532186, + 48.880182401 + ], + [ + 12.0536941, + 48.880470601 + ], + [ + 12.0545203, + 48.880890301 + ], + [ + 12.0555034, + 48.881300301 + ], + [ + 12.0561627, + 48.881527001 + ], + [ + 12.0568589, + 48.881747401 + ], + [ + 12.0577665, + 48.881990001 + ], + [ + 12.0620003, + 48.882944401 + ], + [ + 12.0636456, + 48.883425501 + ], + [ + 12.064738, + 48.883781601 + ], + [ + 12.0661203, + 48.884297601 + ], + [ + 12.0669131, + 48.884617401 + ], + [ + 12.0684894, + 48.885330901 + ], + [ + 12.0698086, + 48.886046101 + ], + [ + 12.071043, + 48.886786701 + ], + [ + 12.0713877, + 48.887014201 + ], + [ + 12.0720266, + 48.887444601 + ], + [ + 12.0729061, + 48.888091301 + ], + [ + 12.0731555, + 48.888287001 + ], + [ + 12.0737988, + 48.888826901 + ], + [ + 12.0743643, + 48.889334701 + ], + [ + 12.0748682, + 48.889824201 + ], + [ + 12.0751294, + 48.890075901 + ], + [ + 12.0754751, + 48.890444701 + ], + [ + 12.0760247, + 48.891079101 + ], + [ + 12.0767411, + 48.891996201 + ], + [ + 12.0768441, + 48.892151501 + ], + [ + 12.0770608, + 48.892474501 + ], + [ + 12.0773329, + 48.892924201 + ], + [ + 12.0775898, + 48.893402201 + ], + [ + 12.0779253, + 48.894124701 + ], + [ + 12.078196, + 48.894829801 + ], + [ + 12.0783617, + 48.895370401 + ], + [ + 12.0786287, + 48.896296201 + ], + [ + 12.0788779, + 48.897156101 + ], + [ + 12.0791322, + 48.897943201 + ], + [ + 12.0794366, + 48.898826501 + ], + [ + 12.0797922, + 48.899719101 + ], + [ + 12.080182, + 48.900581801 + ], + [ + 12.0805752, + 48.901347901 + ], + [ + 12.0810099, + 48.902105001 + ], + [ + 12.0819245, + 48.903554201 + ], + [ + 12.0842687, + 48.906745201 + ], + [ + 12.0857259, + 48.908864901 + ], + [ + 12.0862376, + 48.909745801 + ], + [ + 12.0866603, + 48.910630101 + ], + [ + 12.0871627, + 48.911869801 + ], + [ + 12.0875874, + 48.913021601 + ], + [ + 12.0880549, + 48.914786201 + ], + [ + 12.088371, + 48.916430201 + ], + [ + 12.0885841, + 48.918183801 + ], + [ + 12.0886283, + 48.920897301 + ], + [ + 12.088454, + 48.923435601 + ], + [ + 12.0883255, + 48.925149301 + ], + [ + 12.0883037, + 48.925780801 + ], + [ + 12.0883037, + 48.926538701 + ], + [ + 12.0883314, + 48.927150101 + ], + [ + 12.0884543, + 48.928428101 + ], + [ + 12.0886505, + 48.929632301 + ], + [ + 12.0887694, + 48.930178301 + ], + [ + 12.0889306, + 48.930847901 + ], + [ + 12.0892248, + 48.931904901 + ], + [ + 12.0897032, + 48.933502201 + ], + [ + 12.0897568, + 48.933684801 + ], + [ + 12.0900227, + 48.934588901 + ], + [ + 12.0902412, + 48.935276201 + ], + [ + 12.0906937, + 48.936858101 + ], + [ + 12.0909816, + 48.937951301 + ], + [ + 12.0912666, + 48.939138801 + ], + [ + 12.0914147, + 48.939958801 + ], + [ + 12.0915046, + 48.940419901 + ], + [ + 12.0916827, + 48.941638901 + ], + [ + 12.09184, + 48.943285201 + ], + [ + 12.091889, + 48.944490701 + ], + [ + 12.0919188, + 48.945595901 + ], + [ + 12.0919707, + 48.948310301 + ], + [ + 12.0919878, + 48.948936201 + ], + [ + 12.0919987, + 48.949678601 + ], + [ + 12.0920166, + 48.950344701 + ], + [ + 12.0920325, + 48.950933901 + ], + [ + 12.0922017, + 48.953507801 + ], + [ + 12.0922681, + 48.954144901 + ], + [ + 12.0923642, + 48.954861401 + ], + [ + 12.0926088, + 48.956293201 + ], + [ + 12.092774, + 48.957228001 + ], + [ + 12.0928877, + 48.957968101 + ], + [ + 12.0929395, + 48.958590901 + ], + [ + 12.0929512, + 48.959220001 + ], + [ + 12.092954, + 48.959287901 + ], + [ + 12.0929125, + 48.959756901 + ], + [ + 12.0927476, + 48.960579101 + ], + [ + 12.0925426, + 48.961202201 + ], + [ + 12.0923003, + 48.961746701 + ], + [ + 12.0919668, + 48.962366401 + ], + [ + 12.0917427, + 48.962715001 + ], + [ + 12.0914146, + 48.963153201 + ], + [ + 12.090959, + 48.963692201 + ], + [ + 12.0905594, + 48.964090701 + ], + [ + 12.0902418, + 48.964386801 + ], + [ + 12.0898876, + 48.964686801 + ], + [ + 12.0896794, + 48.964851601 + ], + [ + 12.0890036, + 48.965335401 + ], + [ + 12.0887468, + 48.965501901 + ], + [ + 12.0884724, + 48.965670101 + ], + [ + 12.0879617, + 48.965964801 + ], + [ + 12.0875034, + 48.966211201 + ], + [ + 12.0870473, + 48.966424501 + ], + [ + 12.0869244, + 48.966481201 + ], + [ + 12.0861506, + 48.966796701 + ], + [ + 12.085388, + 48.967062201 + ], + [ + 12.0842202, + 48.967407801 + ], + [ + 12.0837028, + 48.967535501 + ], + [ + 12.0832728, + 48.967624801 + ], + [ + 12.0831646, + 48.967643401 + ], + [ + 12.082629, + 48.967742801 + ], + [ + 12.0819985, + 48.967847001 + ], + [ + 12.0809707, + 48.967964301 + ], + [ + 12.0802753, + 48.968039001 + ], + [ + 12.0791939, + 48.968132801 + ], + [ + 12.0784823, + 48.968206001 + ], + [ + 12.0776798, + 48.968291301 + ], + [ + 12.0765096, + 48.968443801 + ], + [ + 12.075941, + 48.968538701 + ], + [ + 12.0754333, + 48.968643701 + ], + [ + 12.0749084, + 48.968764901 + ], + [ + 12.0742249, + 48.968943301 + ], + [ + 12.0733872, + 48.969201701 + ], + [ + 12.0728128, + 48.969415201 + ], + [ + 12.072118, + 48.969698701 + ], + [ + 12.0713653, + 48.970048901 + ], + [ + 12.0707167, + 48.970426001 + ], + [ + 12.0699987, + 48.970845801 + ], + [ + 12.0694599, + 48.971223701 + ], + [ + 12.0687093, + 48.971832601 + ], + [ + 12.0682012, + 48.972307001 + ], + [ + 12.067817, + 48.972768101 + ], + [ + 12.06737, + 48.973284901 + ], + [ + 12.0669226, + 48.973906501 + ], + [ + 12.0657939, + 48.975625101 + ], + [ + 12.065406784, + 48.976212636 + ] + ] + } + }, + { + "identifier": "2026-016735--vi-bs.2026-04-13_07-15-00-000.devi-bs.2026-04-13_07-15-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.75068872745348,11.866780206852065,48.97621263609642,12.065406784243311", + "point": "48.75068872745348,11.866780206852065", + "startLcPosition": "20", + "impact": { + "lower": "Regensburg-S\u00fcd", + "upper": "Deutschmeister", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Holledau -> Regensburg", + "title": "A93 | Deutschmeister - Regensburg-S\u00fcd", + "coordinate": { + "lat": 48.75068872745348, + "long": 11.866780206852065 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:15 bis 16:00 Uhr", + "14.04.26 von 07:15 bis 16:00 Uhr", + "15.04.26 von 07:15 bis 16:00 Uhr", + "16.04.26 von 07:15 bis 14:15 Uhr", + "17.04.26 von 07:15 bis 12:30 Uhr", + "", + "A93: Holledau -> Regensburg, zwischen 1.5 km hinter Deutschmeister und 0.1 km vor AS Regensburg-S\u00fcd", + "", + "L\u00e4nge: 33.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A93 von Regensburg-S\u00fcd (AS) nach Deutschmeister (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.866780207, + 48.750688727 + ], + [ + 11.8669623, + 48.750824901 + ], + [ + 11.867201, + 48.750997601 + ], + [ + 11.8674812, + 48.751213601 + ], + [ + 11.8688582, + 48.752201501 + ], + [ + 11.8698223, + 48.752841601 + ], + [ + 11.8705726, + 48.753335801 + ], + [ + 11.8710814, + 48.753653901 + ], + [ + 11.8713717, + 48.753843701 + ], + [ + 11.8719212, + 48.754173301 + ], + [ + 11.8728131, + 48.754709901 + ], + [ + 11.8738813, + 48.755350201 + ], + [ + 11.8748403, + 48.755950401 + ], + [ + 11.8755314, + 48.756429401 + ], + [ + 11.8760268, + 48.756797801 + ], + [ + 11.8766397, + 48.757309801 + ], + [ + 11.8772707, + 48.757940201 + ], + [ + 11.8777865, + 48.758521001 + ], + [ + 11.8781509, + 48.758976801 + ], + [ + 11.8786635, + 48.759700201 + ], + [ + 11.8805597, + 48.762466501 + ], + [ + 11.8822558, + 48.765016901 + ], + [ + 11.8823243, + 48.765129501 + ], + [ + 11.8834843, + 48.766799301 + ], + [ + 11.8840749, + 48.767676801 + ], + [ + 11.8846737, + 48.768575201 + ], + [ + 11.8850443, + 48.769116601 + ], + [ + 11.885398, + 48.769594301 + ], + [ + 11.8857087, + 48.769977801 + ], + [ + 11.8859599, + 48.770266001 + ], + [ + 11.8862115, + 48.770540101 + ], + [ + 11.8864832, + 48.770814201 + ], + [ + 11.8866716, + 48.770982201 + ], + [ + 11.8869638, + 48.771247301 + ], + [ + 11.8872636, + 48.771497601 + ], + [ + 11.8875346, + 48.771714101 + ], + [ + 11.8878685, + 48.771952501 + ], + [ + 11.8881746, + 48.772138401 + ], + [ + 11.8886484, + 48.772425901 + ], + [ + 11.8893521, + 48.772808901 + ], + [ + 11.8898106, + 48.773035801 + ], + [ + 11.8905649, + 48.773375901 + ], + [ + 11.8914825, + 48.773715001 + ], + [ + 11.892515, + 48.774069501 + ], + [ + 11.8936794, + 48.774442901 + ], + [ + 11.8947779, + 48.774806701 + ], + [ + 11.8958609, + 48.775207701 + ], + [ + 11.8966005, + 48.775520201 + ], + [ + 11.8974457, + 48.775945101 + ], + [ + 11.898006, + 48.776260701 + ], + [ + 11.8985472, + 48.776602701 + ], + [ + 11.8993532, + 48.777153301 + ], + [ + 11.8998925, + 48.777559601 + ], + [ + 11.9036323, + 48.780563301 + ], + [ + 11.9073201, + 48.783527001 + ], + [ + 11.9083959, + 48.784401901 + ], + [ + 11.9093957, + 48.785195501 + ], + [ + 11.9103152, + 48.785950701 + ], + [ + 11.9112587, + 48.786690201 + ], + [ + 11.9120681, + 48.787316401 + ], + [ + 11.9128554, + 48.787868701 + ], + [ + 11.9139545, + 48.788579701 + ], + [ + 11.9151953, + 48.789311701 + ], + [ + 11.9171058, + 48.790416301 + ], + [ + 11.9190878, + 48.791552101 + ], + [ + 11.9205752, + 48.792403201 + ], + [ + 11.9219132, + 48.793196801 + ], + [ + 11.922712, + 48.793700201 + ], + [ + 11.9234586, + 48.794226701 + ], + [ + 11.9237338, + 48.794429901 + ], + [ + 11.9243543, + 48.794931101 + ], + [ + 11.9250828, + 48.795581001 + ], + [ + 11.925803, + 48.796246901 + ], + [ + 11.9272014, + 48.797567401 + ], + [ + 11.9285211, + 48.798826101 + ], + [ + 11.9299286, + 48.800157701 + ], + [ + 11.932553, + 48.802640701 + ], + [ + 11.9347996, + 48.804751901 + ], + [ + 11.9357834, + 48.805674301 + ], + [ + 11.9368978, + 48.806683601 + ], + [ + 11.9374079, + 48.807142401 + ], + [ + 11.9379617, + 48.807622301 + ], + [ + 11.939046, + 48.808555301 + ], + [ + 11.9405485, + 48.809832201 + ], + [ + 11.9414389, + 48.810593201 + ], + [ + 11.9421879, + 48.811230501 + ], + [ + 11.9423405, + 48.811358701 + ], + [ + 11.9429781, + 48.811906801 + ], + [ + 11.9439876, + 48.812762801 + ], + [ + 11.9444758, + 48.813181401 + ], + [ + 11.9454967, + 48.814056801 + ], + [ + 11.9463124, + 48.814772601 + ], + [ + 11.946715, + 48.815143601 + ], + [ + 11.9470692, + 48.815511401 + ], + [ + 11.9477123, + 48.816255701 + ], + [ + 11.9479127, + 48.816528601 + ], + [ + 11.9484702, + 48.817279601 + ], + [ + 11.9488205, + 48.817788301 + ], + [ + 11.9498611, + 48.819232701 + ], + [ + 11.9506212, + 48.820216201 + ], + [ + 11.9510482, + 48.820723001 + ], + [ + 11.9515414, + 48.821262201 + ], + [ + 11.9519289, + 48.821656901 + ], + [ + 11.9523351, + 48.822043101 + ], + [ + 11.9531959, + 48.822805001 + ], + [ + 11.953801, + 48.823295301 + ], + [ + 11.9540403, + 48.823478601 + ], + [ + 11.9549229, + 48.824110001 + ], + [ + 11.9557689, + 48.824667301 + ], + [ + 11.9565331, + 48.825140301 + ], + [ + 11.9570711, + 48.825442201 + ], + [ + 11.9573734, + 48.825600901 + ], + [ + 11.9581807, + 48.826018601 + ], + [ + 11.9589641, + 48.826392101 + ], + [ + 11.9597763, + 48.826747401 + ], + [ + 11.9615322, + 48.827473801 + ], + [ + 11.965383, + 48.829043901 + ], + [ + 11.9690303, + 48.830543901 + ], + [ + 11.9711238, + 48.831405901 + ], + [ + 11.9735037, + 48.832359401 + ], + [ + 11.9749366, + 48.832925401 + ], + [ + 11.9764674, + 48.833502101 + ], + [ + 11.9782727, + 48.834159401 + ], + [ + 11.9803708, + 48.834915201 + ], + [ + 11.9832974, + 48.835959901 + ], + [ + 11.9856354, + 48.836797901 + ], + [ + 11.9869166, + 48.837247401 + ], + [ + 11.9880593, + 48.837617901 + ], + [ + 11.9892727, + 48.837959501 + ], + [ + 11.9904939, + 48.838266101 + ], + [ + 11.9911383, + 48.838413501 + ], + [ + 11.9919886, + 48.838593101 + ], + [ + 11.9935932, + 48.838933301 + ], + [ + 11.9948698, + 48.839202201 + ], + [ + 11.9965542, + 48.839557001 + ], + [ + 11.9992877, + 48.840146001 + ], + [ + 12.0001708, + 48.840379101 + ], + [ + 12.001108, + 48.840685801 + ], + [ + 12.0016606, + 48.840899501 + ], + [ + 12.0021452, + 48.841092701 + ], + [ + 12.0027011, + 48.841358101 + ], + [ + 12.0032244, + 48.841618101 + ], + [ + 12.0041556, + 48.842174701 + ], + [ + 12.0046126, + 48.842481801 + ], + [ + 12.005083, + 48.842840901 + ], + [ + 12.0054321, + 48.843123901 + ], + [ + 12.0057966, + 48.843461901 + ], + [ + 12.0063343, + 48.844024701 + ], + [ + 12.0067001, + 48.844443401 + ], + [ + 12.0071164, + 48.845042801 + ], + [ + 12.0074694, + 48.845612401 + ], + [ + 12.0076709, + 48.846027601 + ], + [ + 12.0079561, + 48.846617701 + ], + [ + 12.0084607, + 48.847674401 + ], + [ + 12.0092625, + 48.849368701 + ], + [ + 12.0093551, + 48.849555201 + ], + [ + 12.0112964, + 48.853622501 + ], + [ + 12.0116025, + 48.854250301 + ], + [ + 12.0121617, + 48.855397301 + ], + [ + 12.0123742, + 48.855802201 + ], + [ + 12.0125581, + 48.856125701 + ], + [ + 12.0128001, + 48.856533301 + ], + [ + 12.013017, + 48.856891001 + ], + [ + 12.0131373, + 48.857076501 + ], + [ + 12.0136689, + 48.857792601 + ], + [ + 12.0140385, + 48.858237101 + ], + [ + 12.0143242, + 48.858560001 + ], + [ + 12.0145338, + 48.858777101 + ], + [ + 12.01489, + 48.859128401 + ], + [ + 12.0153588, + 48.859556901 + ], + [ + 12.0157975, + 48.859930101 + ], + [ + 12.0163588, + 48.860364201 + ], + [ + 12.016902, + 48.860758501 + ], + [ + 12.017519, + 48.861162501 + ], + [ + 12.0181093, + 48.861519901 + ], + [ + 12.0188405, + 48.861924401 + ], + [ + 12.0191844, + 48.862100101 + ], + [ + 12.0195488, + 48.862277301 + ], + [ + 12.0201336, + 48.862544201 + ], + [ + 12.0207311, + 48.862799201 + ], + [ + 12.0213475, + 48.863047301 + ], + [ + 12.0220389, + 48.863291801 + ], + [ + 12.0228365, + 48.863562001 + ], + [ + 12.0239119, + 48.863883801 + ], + [ + 12.0245591, + 48.864079901 + ], + [ + 12.0252167, + 48.864275701 + ], + [ + 12.0263002, + 48.864600101 + ], + [ + 12.026792, + 48.864762101 + ], + [ + 12.0273647, + 48.864959501 + ], + [ + 12.0277856, + 48.865115501 + ], + [ + 12.0284065, + 48.865364601 + ], + [ + 12.0291998, + 48.865722501 + ], + [ + 12.0297566, + 48.866011301 + ], + [ + 12.0303453, + 48.866361101 + ], + [ + 12.0306439, + 48.866546901 + ], + [ + 12.0310314, + 48.866813101 + ], + [ + 12.0314549, + 48.867126801 + ], + [ + 12.0317516, + 48.867371701 + ], + [ + 12.0320432, + 48.867619401 + ], + [ + 12.0325989, + 48.868120101 + ], + [ + 12.0329266, + 48.868431801 + ], + [ + 12.0331952, + 48.868691101 + ], + [ + 12.0337522, + 48.869203401 + ], + [ + 12.034463, + 48.869837001 + ], + [ + 12.0348671, + 48.870157801 + ], + [ + 12.035256, + 48.870437501 + ], + [ + 12.0359135, + 48.870877901 + ], + [ + 12.0365804, + 48.871260901 + ], + [ + 12.0372256, + 48.871576601 + ], + [ + 12.0377565, + 48.871809301 + ], + [ + 12.0382429, + 48.872006501 + ], + [ + 12.0387905, + 48.872215901 + ], + [ + 12.0392666, + 48.872377601 + ], + [ + 12.0401263, + 48.872644301 + ], + [ + 12.0411545, + 48.872941601 + ], + [ + 12.0415876, + 48.873055001 + ], + [ + 12.0421902, + 48.873215901 + ], + [ + 12.0434339, + 48.873565201 + ], + [ + 12.0445705, + 48.873960101 + ], + [ + 12.0455022, + 48.874360901 + ], + [ + 12.0462609, + 48.874741201 + ], + [ + 12.0468724, + 48.875090501 + ], + [ + 12.0475065, + 48.875497701 + ], + [ + 12.0478269, + 48.875730101 + ], + [ + 12.0486476, + 48.876372801 + ], + [ + 12.0493515, + 48.877015301 + ], + [ + 12.0507472, + 48.878330401 + ], + [ + 12.051669, + 48.879157001 + ], + [ + 12.0522706, + 48.879603301 + ], + [ + 12.0526977, + 48.879881201 + ], + [ + 12.0532186, + 48.880182401 + ], + [ + 12.0536941, + 48.880470601 + ], + [ + 12.0545203, + 48.880890301 + ], + [ + 12.0555034, + 48.881300301 + ], + [ + 12.0561627, + 48.881527001 + ], + [ + 12.0568589, + 48.881747401 + ], + [ + 12.0577665, + 48.881990001 + ], + [ + 12.0620003, + 48.882944401 + ], + [ + 12.0636456, + 48.883425501 + ], + [ + 12.064738, + 48.883781601 + ], + [ + 12.0661203, + 48.884297601 + ], + [ + 12.0669131, + 48.884617401 + ], + [ + 12.0684894, + 48.885330901 + ], + [ + 12.0698086, + 48.886046101 + ], + [ + 12.071043, + 48.886786701 + ], + [ + 12.0713877, + 48.887014201 + ], + [ + 12.0720266, + 48.887444601 + ], + [ + 12.0729061, + 48.888091301 + ], + [ + 12.0731555, + 48.888287001 + ], + [ + 12.0737988, + 48.888826901 + ], + [ + 12.0743643, + 48.889334701 + ], + [ + 12.0748682, + 48.889824201 + ], + [ + 12.0751294, + 48.890075901 + ], + [ + 12.0754751, + 48.890444701 + ], + [ + 12.0760247, + 48.891079101 + ], + [ + 12.0767411, + 48.891996201 + ], + [ + 12.0768441, + 48.892151501 + ], + [ + 12.0770608, + 48.892474501 + ], + [ + 12.0773329, + 48.892924201 + ], + [ + 12.0775898, + 48.893402201 + ], + [ + 12.0779253, + 48.894124701 + ], + [ + 12.078196, + 48.894829801 + ], + [ + 12.0783617, + 48.895370401 + ], + [ + 12.0786287, + 48.896296201 + ], + [ + 12.0788779, + 48.897156101 + ], + [ + 12.0791322, + 48.897943201 + ], + [ + 12.0794366, + 48.898826501 + ], + [ + 12.0797922, + 48.899719101 + ], + [ + 12.080182, + 48.900581801 + ], + [ + 12.0805752, + 48.901347901 + ], + [ + 12.0810099, + 48.902105001 + ], + [ + 12.0819245, + 48.903554201 + ], + [ + 12.0842687, + 48.906745201 + ], + [ + 12.0857259, + 48.908864901 + ], + [ + 12.0862376, + 48.909745801 + ], + [ + 12.0866603, + 48.910630101 + ], + [ + 12.0871627, + 48.911869801 + ], + [ + 12.0875874, + 48.913021601 + ], + [ + 12.0880549, + 48.914786201 + ], + [ + 12.088371, + 48.916430201 + ], + [ + 12.0885841, + 48.918183801 + ], + [ + 12.0886283, + 48.920897301 + ], + [ + 12.088454, + 48.923435601 + ], + [ + 12.0883255, + 48.925149301 + ], + [ + 12.0883037, + 48.925780801 + ], + [ + 12.0883037, + 48.926538701 + ], + [ + 12.0883314, + 48.927150101 + ], + [ + 12.0884543, + 48.928428101 + ], + [ + 12.0886505, + 48.929632301 + ], + [ + 12.0887694, + 48.930178301 + ], + [ + 12.0889306, + 48.930847901 + ], + [ + 12.0892248, + 48.931904901 + ], + [ + 12.0897032, + 48.933502201 + ], + [ + 12.0897568, + 48.933684801 + ], + [ + 12.0900227, + 48.934588901 + ], + [ + 12.0902412, + 48.935276201 + ], + [ + 12.0906937, + 48.936858101 + ], + [ + 12.0909816, + 48.937951301 + ], + [ + 12.0912666, + 48.939138801 + ], + [ + 12.0914147, + 48.939958801 + ], + [ + 12.0915046, + 48.940419901 + ], + [ + 12.0916827, + 48.941638901 + ], + [ + 12.09184, + 48.943285201 + ], + [ + 12.091889, + 48.944490701 + ], + [ + 12.0919188, + 48.945595901 + ], + [ + 12.0919707, + 48.948310301 + ], + [ + 12.0919878, + 48.948936201 + ], + [ + 12.0919987, + 48.949678601 + ], + [ + 12.0920166, + 48.950344701 + ], + [ + 12.0920325, + 48.950933901 + ], + [ + 12.0922017, + 48.953507801 + ], + [ + 12.0922681, + 48.954144901 + ], + [ + 12.0923642, + 48.954861401 + ], + [ + 12.0926088, + 48.956293201 + ], + [ + 12.092774, + 48.957228001 + ], + [ + 12.0928877, + 48.957968101 + ], + [ + 12.0929395, + 48.958590901 + ], + [ + 12.0929512, + 48.959220001 + ], + [ + 12.092954, + 48.959287901 + ], + [ + 12.0929125, + 48.959756901 + ], + [ + 12.0927476, + 48.960579101 + ], + [ + 12.0925426, + 48.961202201 + ], + [ + 12.0923003, + 48.961746701 + ], + [ + 12.0919668, + 48.962366401 + ], + [ + 12.0917427, + 48.962715001 + ], + [ + 12.0914146, + 48.963153201 + ], + [ + 12.090959, + 48.963692201 + ], + [ + 12.0905594, + 48.964090701 + ], + [ + 12.0902418, + 48.964386801 + ], + [ + 12.0898876, + 48.964686801 + ], + [ + 12.0896794, + 48.964851601 + ], + [ + 12.0890036, + 48.965335401 + ], + [ + 12.0887468, + 48.965501901 + ], + [ + 12.0884724, + 48.965670101 + ], + [ + 12.0879617, + 48.965964801 + ], + [ + 12.0875034, + 48.966211201 + ], + [ + 12.0870473, + 48.966424501 + ], + [ + 12.0869244, + 48.966481201 + ], + [ + 12.0861506, + 48.966796701 + ], + [ + 12.085388, + 48.967062201 + ], + [ + 12.0842202, + 48.967407801 + ], + [ + 12.0837028, + 48.967535501 + ], + [ + 12.0832728, + 48.967624801 + ], + [ + 12.0831646, + 48.967643401 + ], + [ + 12.082629, + 48.967742801 + ], + [ + 12.0819985, + 48.967847001 + ], + [ + 12.0809707, + 48.967964301 + ], + [ + 12.0802753, + 48.968039001 + ], + [ + 12.0791939, + 48.968132801 + ], + [ + 12.0784823, + 48.968206001 + ], + [ + 12.0776798, + 48.968291301 + ], + [ + 12.0765096, + 48.968443801 + ], + [ + 12.075941, + 48.968538701 + ], + [ + 12.0754333, + 48.968643701 + ], + [ + 12.0749084, + 48.968764901 + ], + [ + 12.0742249, + 48.968943301 + ], + [ + 12.0733872, + 48.969201701 + ], + [ + 12.0728128, + 48.969415201 + ], + [ + 12.072118, + 48.969698701 + ], + [ + 12.0713653, + 48.970048901 + ], + [ + 12.0707167, + 48.970426001 + ], + [ + 12.0699987, + 48.970845801 + ], + [ + 12.0694599, + 48.971223701 + ], + [ + 12.0687093, + 48.971832601 + ], + [ + 12.0682012, + 48.972307001 + ], + [ + 12.067817, + 48.972768101 + ], + [ + 12.06737, + 48.973284901 + ], + [ + 12.0669226, + 48.973906501 + ], + [ + 12.0657939, + 48.975625101 + ], + [ + 12.065406784, + 48.976212636 + ] + ] + } + }, + { + "identifier": "2026-016735--vi-bs.2026-04-13_07-15-00-000.devi-bs.2026-04-13_07-15-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.97621263609642,12.065406784243311,49.15791028726485,12.111335962352605", + "point": "48.97621263609642,12.065406784243311", + "startLcPosition": "27", + "impact": { + "lower": "Harberhof Ost", + "upper": "Pentling", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Holledau -> Weiden", + "title": "A93 | Pentling - Harberhof Ost", + "coordinate": { + "lat": 48.97621263609642, + "long": 12.065406784243311 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:15 bis 14:30 Uhr", + "14.04.26 von 07:15 bis 14:30 Uhr", + "15.04.26 von 07:15 bis 14:30 Uhr", + "16.04.26 von 07:15 bis 14:00 Uhr", + "17.04.26 von 07:15 bis 13:00 Uhr", + "", + "A93: Holledau -> Weiden, zwischen 3.0 km hinter Pentling und 1.4 km vor Harberhof Ost", + "", + "L\u00e4nge: 22.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A93 von Regensburg-S\u00fcd (AS) nach Deutschmeister (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.065406784, + 48.976212636 + ], + [ + 12.0649975, + 48.976833801 + ], + [ + 12.0647449, + 48.977242801 + ], + [ + 12.0645394, + 48.977568701 + ], + [ + 12.0640269, + 48.978491301 + ], + [ + 12.0636875, + 48.979122901 + ], + [ + 12.0629298, + 48.980686301 + ], + [ + 12.0619223, + 48.982950101 + ], + [ + 12.0615243, + 48.983962801 + ], + [ + 12.0613333, + 48.984513601 + ], + [ + 12.0611661, + 48.985053801 + ], + [ + 12.0610393, + 48.985507201 + ], + [ + 12.0608984, + 48.986178201 + ], + [ + 12.0608504, + 48.986475701 + ], + [ + 12.0607874, + 48.986895701 + ], + [ + 12.0607207, + 48.987672001 + ], + [ + 12.0607117, + 48.988524601 + ], + [ + 12.060741, + 48.989148801 + ], + [ + 12.0607951, + 48.989596201 + ], + [ + 12.0608412, + 48.989904701 + ], + [ + 12.0609187, + 48.990307101 + ], + [ + 12.0610265, + 48.990824301 + ], + [ + 12.0611684, + 48.991376601 + ], + [ + 12.0613669, + 48.991983701 + ], + [ + 12.0614811, + 48.992152201 + ], + [ + 12.061687, + 48.992658401 + ], + [ + 12.0619445, + 48.993243601 + ], + [ + 12.0623108, + 48.994021701 + ], + [ + 12.0623445, + 48.994197801 + ], + [ + 12.0627809, + 48.995106101 + ], + [ + 12.0630323, + 48.995675301 + ], + [ + 12.0632219, + 48.996176401 + ], + [ + 12.0633195, + 48.996496401 + ], + [ + 12.0633646, + 48.996658601 + ], + [ + 12.0635298, + 48.997329901 + ], + [ + 12.0635909, + 48.997819501 + ], + [ + 12.0635964, + 48.997875401 + ], + [ + 12.0636194, + 48.998106601 + ], + [ + 12.0636245, + 48.998158501 + ], + [ + 12.0636486, + 48.998681601 + ], + [ + 12.0636395, + 48.999037501 + ], + [ + 12.0635651, + 48.999782901 + ], + [ + 12.0634598, + 49.000344901 + ], + [ + 12.0633688, + 49.000700201 + ], + [ + 12.0632616, + 49.001021301 + ], + [ + 12.0631137, + 49.001452901 + ], + [ + 12.062957, + 49.001840201 + ], + [ + 12.0628003, + 49.002195001 + ], + [ + 12.0623038, + 49.003235501 + ], + [ + 12.0619279, + 49.003956301 + ], + [ + 12.0614912, + 49.004865101 + ], + [ + 12.061335, + 49.005218401 + ], + [ + 12.0611282, + 49.005767801 + ], + [ + 12.061021, + 49.006059601 + ], + [ + 12.0608974, + 49.006523601 + ], + [ + 12.0608035, + 49.006983301 + ], + [ + 12.0607624, + 49.007338701 + ], + [ + 12.0607575, + 49.007415601 + ], + [ + 12.0607399, + 49.007610901 + ], + [ + 12.0607254, + 49.007948101 + ], + [ + 12.0607467, + 49.008413801 + ], + [ + 12.0607892, + 49.008755901 + ], + [ + 12.0608359, + 49.009002501 + ], + [ + 12.0609366, + 49.009473101 + ], + [ + 12.0610308, + 49.009783301 + ], + [ + 12.0611618, + 49.010171401 + ], + [ + 12.061308, + 49.010481601 + ], + [ + 12.0614799, + 49.010837601 + ], + [ + 12.061727, + 49.011275801 + ], + [ + 12.0620771, + 49.011784401 + ], + [ + 12.0625318, + 49.012363001 + ], + [ + 12.0629029, + 49.012796201 + ], + [ + 12.0630411, + 49.012952601 + ], + [ + 12.0633156, + 49.013247301 + ], + [ + 12.0637845, + 49.013749201 + ], + [ + 12.0639614, + 49.013952101 + ], + [ + 12.0652257, + 49.015321601 + ], + [ + 12.0654072, + 49.015531701 + ], + [ + 12.0685069, + 49.019746601 + ], + [ + 12.0687229, + 49.020116001 + ], + [ + 12.0689042, + 49.020534501 + ], + [ + 12.0690369, + 49.021071801 + ], + [ + 12.0690608, + 49.021168101 + ], + [ + 12.0691203, + 49.021492001 + ], + [ + 12.0692325, + 49.022037801 + ], + [ + 12.069282, + 49.022347001 + ], + [ + 12.0693904, + 49.023169301 + ], + [ + 12.0694564, + 49.023520101 + ], + [ + 12.0694999, + 49.023719801 + ], + [ + 12.0696446, + 49.024242901 + ], + [ + 12.0697294, + 49.024468401 + ], + [ + 12.0699425, + 49.024904901 + ], + [ + 12.0700708, + 49.025122101 + ], + [ + 12.0702428, + 49.025374201 + ], + [ + 12.0704966, + 49.025682701 + ], + [ + 12.0707342, + 49.025949801 + ], + [ + 12.0709733, + 49.026180001 + ], + [ + 12.0712416, + 49.026421801 + ], + [ + 12.0714726, + 49.026585601 + ], + [ + 12.0720064, + 49.026947101 + ], + [ + 12.0723365, + 49.027146501 + ], + [ + 12.0729281, + 49.027443801 + ], + [ + 12.0733086, + 49.027607201 + ], + [ + 12.0739861, + 49.027864301 + ], + [ + 12.0743949, + 49.028009701 + ], + [ + 12.0750052, + 49.028212501 + ], + [ + 12.0765281, + 49.028700401 + ], + [ + 12.0789162, + 49.029468801 + ], + [ + 12.0793318, + 49.029612701 + ], + [ + 12.0796983, + 49.029755101 + ], + [ + 12.0798923, + 49.029836701 + ], + [ + 12.0800471, + 49.029902401 + ], + [ + 12.0802977, + 49.030024001 + ], + [ + 12.0806746, + 49.030236601 + ], + [ + 12.0813347, + 49.030584101 + ], + [ + 12.0821031, + 49.031055901 + ], + [ + 12.0826154, + 49.031434401 + ], + [ + 12.0831143, + 49.031878501 + ], + [ + 12.0864215, + 49.035404701 + ], + [ + 12.0870709, + 49.035967601 + ], + [ + 12.0877377, + 49.036450001 + ], + [ + 12.0881722, + 49.036716301 + ], + [ + 12.0884988, + 49.036895501 + ], + [ + 12.0888234, + 49.037066701 + ], + [ + 12.0893223, + 49.037323701 + ], + [ + 12.0898573, + 49.037576301 + ], + [ + 12.090307, + 49.037780301 + ], + [ + 12.0911347, + 49.038145001 + ], + [ + 12.0917655, + 49.038408601 + ], + [ + 12.0921833, + 49.038594101 + ], + [ + 12.0928385, + 49.038883001 + ], + [ + 12.0931992, + 49.039068301 + ], + [ + 12.0935991, + 49.039291201 + ], + [ + 12.0940499, + 49.039562201 + ], + [ + 12.0943679, + 49.039806801 + ], + [ + 12.0948476, + 49.040238301 + ], + [ + 12.0951465, + 49.040540201 + ], + [ + 12.0953463, + 49.040764901 + ], + [ + 12.095522, + 49.041001201 + ], + [ + 12.0957151, + 49.041287201 + ], + [ + 12.0958715, + 49.041576001 + ], + [ + 12.0959823, + 49.041827001 + ], + [ + 12.0960776, + 49.042055001 + ], + [ + 12.0961656, + 49.042317501 + ], + [ + 12.0962319, + 49.042601501 + ], + [ + 12.0962647, + 49.042787901 + ], + [ + 12.096285, + 49.043030701 + ], + [ + 12.0962944, + 49.043200701 + ], + [ + 12.0962834, + 49.043550001 + ], + [ + 12.0962653, + 49.043762201 + ], + [ + 12.096205, + 49.044106201 + ], + [ + 12.0961344, + 49.044387401 + ], + [ + 12.0960433, + 49.044655701 + ], + [ + 12.0958666, + 49.045059701 + ], + [ + 12.0956768, + 49.045403001 + ], + [ + 12.0954865, + 49.045686501 + ], + [ + 12.0952702, + 49.045961501 + ], + [ + 12.0949956, + 49.046296001 + ], + [ + 12.0946647, + 49.046673101 + ], + [ + 12.0943446, + 49.047006901 + ], + [ + 12.0940005, + 49.047413301 + ], + [ + 12.0938316, + 49.047597201 + ], + [ + 12.0935516, + 49.047952701 + ], + [ + 12.0932024, + 49.048426401 + ], + [ + 12.092901, + 49.048924701 + ], + [ + 12.0926686, + 49.049382001 + ], + [ + 12.0925044, + 49.049785401 + ], + [ + 12.0923367, + 49.050269301 + ], + [ + 12.0922234, + 49.050746901 + ], + [ + 12.0921306, + 49.051278901 + ], + [ + 12.0920849, + 49.051861101 + ], + [ + 12.0921002, + 49.052343901 + ], + [ + 12.0921567, + 49.052880701 + ], + [ + 12.0922969, + 49.053655101 + ], + [ + 12.0923624, + 49.053964701 + ], + [ + 12.0924582, + 49.054319001 + ], + [ + 12.0928093, + 49.055678801 + ], + [ + 12.0929192, + 49.056348501 + ], + [ + 12.0929879, + 49.056976801 + ], + [ + 12.0929897, + 49.057581401 + ], + [ + 12.0929451, + 49.058247501 + ], + [ + 12.0928751, + 49.058879001 + ], + [ + 12.0927663, + 49.059489701 + ], + [ + 12.0925854, + 49.060367901 + ], + [ + 12.0924033, + 49.061222101 + ], + [ + 12.0922179, + 49.062151401 + ], + [ + 12.092125, + 49.062750601 + ], + [ + 12.0920911, + 49.063080101 + ], + [ + 12.0920406, + 49.063514101 + ], + [ + 12.0920338, + 49.063936101 + ], + [ + 12.0920363, + 49.064383801 + ], + [ + 12.092066, + 49.064851601 + ], + [ + 12.0921098, + 49.065243501 + ], + [ + 12.0921739, + 49.065650501 + ], + [ + 12.092272, + 49.066134501 + ], + [ + 12.0923996, + 49.066618501 + ], + [ + 12.09254, + 49.067045301 + ], + [ + 12.0927091, + 49.067511301 + ], + [ + 12.0930321, + 49.068220501 + ], + [ + 12.0933356, + 49.068787501 + ], + [ + 12.0936559, + 49.069314901 + ], + [ + 12.0939409, + 49.069737801 + ], + [ + 12.0943839, + 49.070323901 + ], + [ + 12.094717, + 49.070722201 + ], + [ + 12.0950966, + 49.071144901 + ], + [ + 12.0955686, + 49.071629401 + ], + [ + 12.09695, + 49.072967201 + ], + [ + 12.0976817, + 49.073667301 + ], + [ + 12.0983418, + 49.074352901 + ], + [ + 12.0987155, + 49.074769001 + ], + [ + 12.0989594, + 49.075078501 + ], + [ + 12.099161, + 49.075327401 + ], + [ + 12.0993697, + 49.075614901 + ], + [ + 12.0995339, + 49.075862201 + ], + [ + 12.0997873, + 49.076250201 + ], + [ + 12.0999827, + 49.076594701 + ], + [ + 12.1001623, + 49.076948501 + ], + [ + 12.1003012, + 49.077229701 + ], + [ + 12.1005746, + 49.077954201 + ], + [ + 12.1007813, + 49.078572501 + ], + [ + 12.1009395, + 49.079376001 + ], + [ + 12.1010347, + 49.080219301 + ], + [ + 12.1010384, + 49.080794401 + ], + [ + 12.1010079, + 49.081335301 + ], + [ + 12.1008921, + 49.082066501 + ], + [ + 12.1007319, + 49.082770101 + ], + [ + 12.1005037, + 49.083482701 + ], + [ + 12.1002896, + 49.084004701 + ], + [ + 12.1000275, + 49.084560801 + ], + [ + 12.0996064, + 49.085361401 + ], + [ + 12.0992556, + 49.085954501 + ], + [ + 12.0982932, + 49.087433201 + ], + [ + 12.0976823, + 49.088287001 + ], + [ + 12.0972005, + 49.088956801 + ], + [ + 12.096363, + 49.090120201 + ], + [ + 12.0953349, + 49.091550301 + ], + [ + 12.0945748, + 49.092697301 + ], + [ + 12.0943807, + 49.092998601 + ], + [ + 12.0939633, + 49.093768701 + ], + [ + 12.0936124, + 49.094520101 + ], + [ + 12.0933283, + 49.095301701 + ], + [ + 12.0931246, + 49.096126101 + ], + [ + 12.0930206, + 49.096880801 + ], + [ + 12.0930004, + 49.097564901 + ], + [ + 12.0930656, + 49.098379701 + ], + [ + 12.0931896, + 49.099014801 + ], + [ + 12.0934398, + 49.099887301 + ], + [ + 12.0937644, + 49.100645701 + ], + [ + 12.0940126, + 49.101128001 + ], + [ + 12.0945395, + 49.101995801 + ], + [ + 12.0952674, + 49.103017901 + ], + [ + 12.095965, + 49.103910701 + ], + [ + 12.096526, + 49.104614601 + ], + [ + 12.0970662, + 49.105275001 + ], + [ + 12.0976885, + 49.106055401 + ], + [ + 12.0991126, + 49.107852901 + ], + [ + 12.0998888, + 49.108860601 + ], + [ + 12.1005515, + 49.109742801 + ], + [ + 12.1012564, + 49.110722101 + ], + [ + 12.1019649, + 49.111738601 + ], + [ + 12.1032624, + 49.113772201 + ], + [ + 12.1036818, + 49.114454301 + ], + [ + 12.1042668, + 49.115440601 + ], + [ + 12.1047342, + 49.116261801 + ], + [ + 12.1056013, + 49.117889401 + ], + [ + 12.1057233, + 49.118128901 + ], + [ + 12.1060858, + 49.118827001 + ], + [ + 12.1061779, + 49.119017801 + ], + [ + 12.1065072, + 49.119750401 + ], + [ + 12.1071909, + 49.121259501 + ], + [ + 12.1076799, + 49.122440501 + ], + [ + 12.1079117, + 49.123009501 + ], + [ + 12.1082488, + 49.123937101 + ], + [ + 12.1085315, + 49.124797301 + ], + [ + 12.1085569, + 49.124881001 + ], + [ + 12.1087363, + 49.125665401 + ], + [ + 12.1088904, + 49.126454401 + ], + [ + 12.1090304, + 49.127399001 + ], + [ + 12.1091122, + 49.128447001 + ], + [ + 12.1091412, + 49.128977001 + ], + [ + 12.1091553, + 49.129565001 + ], + [ + 12.1090938, + 49.130024501 + ], + [ + 12.1089982, + 49.130870101 + ], + [ + 12.1088668, + 49.131751601 + ], + [ + 12.108706, + 49.132527101 + ], + [ + 12.1084902, + 49.133310701 + ], + [ + 12.1081883, + 49.134235401 + ], + [ + 12.1078428, + 49.135164701 + ], + [ + 12.1071755, + 49.136736101 + ], + [ + 12.1065537, + 49.138188701 + ], + [ + 12.1062261, + 49.138963301 + ], + [ + 12.1059403, + 49.139714601 + ], + [ + 12.1055828, + 49.140851501 + ], + [ + 12.1054162, + 49.141478101 + ], + [ + 12.1052636, + 49.142201301 + ], + [ + 12.1051563, + 49.142828901 + ], + [ + 12.1050812, + 49.143433801 + ], + [ + 12.1050242, + 49.144058001 + ], + [ + 12.1050024, + 49.144925401 + ], + [ + 12.1050374, + 49.145972901 + ], + [ + 12.1050789, + 49.146504901 + ], + [ + 12.1051671, + 49.147153501 + ], + [ + 12.1052697, + 49.147758201 + ], + [ + 12.1054093, + 49.148378001 + ], + [ + 12.1057092, + 49.149479501 + ], + [ + 12.1060735, + 49.150487901 + ], + [ + 12.1070908, + 49.152460101 + ], + [ + 12.1072504, + 49.152711701 + ], + [ + 12.1078945, + 49.153641901 + ], + [ + 12.108633, + 49.154604301 + ], + [ + 12.109038, + 49.155103601 + ], + [ + 12.110145, + 49.156412601 + ], + [ + 12.1103092, + 49.156610701 + ], + [ + 12.110504, + 49.156840601 + ], + [ + 12.111335962, + 49.157910287 + ] + ] + } + }, + { + "identifier": "2026-016735--vi-bs.2026-04-13_07-15-00-000.devi-bs.2026-04-13_07-15-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.97621263609642,12.065406784243311,49.15791028726485,12.111335962352605", + "point": "48.97621263609642,12.065406784243311", + "startLcPosition": "27", + "impact": { + "lower": "Harberhof Ost", + "upper": "Pentling", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Holledau -> Weiden", + "title": "A93 | Pentling - Harberhof Ost", + "coordinate": { + "lat": 48.97621263609642, + "long": 12.065406784243311 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:15 bis 14:30 Uhr", + "14.04.26 von 07:15 bis 14:30 Uhr", + "15.04.26 von 07:15 bis 14:30 Uhr", + "16.04.26 von 07:15 bis 14:00 Uhr", + "17.04.26 von 07:15 bis 13:00 Uhr", + "", + "A93: Holledau -> Weiden, zwischen 3.0 km hinter Pentling und 1.4 km vor Harberhof Ost", + "", + "L\u00e4nge: 22.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Regensburg-S\u00fcd (AS) nach Deutschmeister (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.065406784, + 48.976212636 + ], + [ + 12.0649975, + 48.976833801 + ], + [ + 12.0647449, + 48.977242801 + ], + [ + 12.0645394, + 48.977568701 + ], + [ + 12.0640269, + 48.978491301 + ], + [ + 12.0636875, + 48.979122901 + ], + [ + 12.0629298, + 48.980686301 + ], + [ + 12.0619223, + 48.982950101 + ], + [ + 12.0615243, + 48.983962801 + ], + [ + 12.0613333, + 48.984513601 + ], + [ + 12.0611661, + 48.985053801 + ], + [ + 12.0610393, + 48.985507201 + ], + [ + 12.0608984, + 48.986178201 + ], + [ + 12.0608504, + 48.986475701 + ], + [ + 12.0607874, + 48.986895701 + ], + [ + 12.0607207, + 48.987672001 + ], + [ + 12.0607117, + 48.988524601 + ], + [ + 12.060741, + 48.989148801 + ], + [ + 12.0607951, + 48.989596201 + ], + [ + 12.0608412, + 48.989904701 + ], + [ + 12.0609187, + 48.990307101 + ], + [ + 12.0610265, + 48.990824301 + ], + [ + 12.0611684, + 48.991376601 + ], + [ + 12.0613669, + 48.991983701 + ], + [ + 12.0614811, + 48.992152201 + ], + [ + 12.061687, + 48.992658401 + ], + [ + 12.0619445, + 48.993243601 + ], + [ + 12.0623108, + 48.994021701 + ], + [ + 12.0623445, + 48.994197801 + ], + [ + 12.0627809, + 48.995106101 + ], + [ + 12.0630323, + 48.995675301 + ], + [ + 12.0632219, + 48.996176401 + ], + [ + 12.0633195, + 48.996496401 + ], + [ + 12.0633646, + 48.996658601 + ], + [ + 12.0635298, + 48.997329901 + ], + [ + 12.0635909, + 48.997819501 + ], + [ + 12.0635964, + 48.997875401 + ], + [ + 12.0636194, + 48.998106601 + ], + [ + 12.0636245, + 48.998158501 + ], + [ + 12.0636486, + 48.998681601 + ], + [ + 12.0636395, + 48.999037501 + ], + [ + 12.0635651, + 48.999782901 + ], + [ + 12.0634598, + 49.000344901 + ], + [ + 12.0633688, + 49.000700201 + ], + [ + 12.0632616, + 49.001021301 + ], + [ + 12.0631137, + 49.001452901 + ], + [ + 12.062957, + 49.001840201 + ], + [ + 12.0628003, + 49.002195001 + ], + [ + 12.0623038, + 49.003235501 + ], + [ + 12.0619279, + 49.003956301 + ], + [ + 12.0614912, + 49.004865101 + ], + [ + 12.061335, + 49.005218401 + ], + [ + 12.0611282, + 49.005767801 + ], + [ + 12.061021, + 49.006059601 + ], + [ + 12.0608974, + 49.006523601 + ], + [ + 12.0608035, + 49.006983301 + ], + [ + 12.0607624, + 49.007338701 + ], + [ + 12.0607575, + 49.007415601 + ], + [ + 12.0607399, + 49.007610901 + ], + [ + 12.0607254, + 49.007948101 + ], + [ + 12.0607467, + 49.008413801 + ], + [ + 12.0607892, + 49.008755901 + ], + [ + 12.0608359, + 49.009002501 + ], + [ + 12.0609366, + 49.009473101 + ], + [ + 12.0610308, + 49.009783301 + ], + [ + 12.0611618, + 49.010171401 + ], + [ + 12.061308, + 49.010481601 + ], + [ + 12.0614799, + 49.010837601 + ], + [ + 12.061727, + 49.011275801 + ], + [ + 12.0620771, + 49.011784401 + ], + [ + 12.0625318, + 49.012363001 + ], + [ + 12.0629029, + 49.012796201 + ], + [ + 12.0630411, + 49.012952601 + ], + [ + 12.0633156, + 49.013247301 + ], + [ + 12.0637845, + 49.013749201 + ], + [ + 12.0639614, + 49.013952101 + ], + [ + 12.0652257, + 49.015321601 + ], + [ + 12.0654072, + 49.015531701 + ], + [ + 12.0685069, + 49.019746601 + ], + [ + 12.0687229, + 49.020116001 + ], + [ + 12.0689042, + 49.020534501 + ], + [ + 12.0690369, + 49.021071801 + ], + [ + 12.0690608, + 49.021168101 + ], + [ + 12.0691203, + 49.021492001 + ], + [ + 12.0692325, + 49.022037801 + ], + [ + 12.069282, + 49.022347001 + ], + [ + 12.0693904, + 49.023169301 + ], + [ + 12.0694564, + 49.023520101 + ], + [ + 12.0694999, + 49.023719801 + ], + [ + 12.0696446, + 49.024242901 + ], + [ + 12.0697294, + 49.024468401 + ], + [ + 12.0699425, + 49.024904901 + ], + [ + 12.0700708, + 49.025122101 + ], + [ + 12.0702428, + 49.025374201 + ], + [ + 12.0704966, + 49.025682701 + ], + [ + 12.0707342, + 49.025949801 + ], + [ + 12.0709733, + 49.026180001 + ], + [ + 12.0712416, + 49.026421801 + ], + [ + 12.0714726, + 49.026585601 + ], + [ + 12.0720064, + 49.026947101 + ], + [ + 12.0723365, + 49.027146501 + ], + [ + 12.0729281, + 49.027443801 + ], + [ + 12.0733086, + 49.027607201 + ], + [ + 12.0739861, + 49.027864301 + ], + [ + 12.0743949, + 49.028009701 + ], + [ + 12.0750052, + 49.028212501 + ], + [ + 12.0765281, + 49.028700401 + ], + [ + 12.0789162, + 49.029468801 + ], + [ + 12.0793318, + 49.029612701 + ], + [ + 12.0796983, + 49.029755101 + ], + [ + 12.0798923, + 49.029836701 + ], + [ + 12.0800471, + 49.029902401 + ], + [ + 12.0802977, + 49.030024001 + ], + [ + 12.0806746, + 49.030236601 + ], + [ + 12.0813347, + 49.030584101 + ], + [ + 12.0821031, + 49.031055901 + ], + [ + 12.0826154, + 49.031434401 + ], + [ + 12.0831143, + 49.031878501 + ], + [ + 12.0864215, + 49.035404701 + ], + [ + 12.0870709, + 49.035967601 + ], + [ + 12.0877377, + 49.036450001 + ], + [ + 12.0881722, + 49.036716301 + ], + [ + 12.0884988, + 49.036895501 + ], + [ + 12.0888234, + 49.037066701 + ], + [ + 12.0893223, + 49.037323701 + ], + [ + 12.0898573, + 49.037576301 + ], + [ + 12.090307, + 49.037780301 + ], + [ + 12.0911347, + 49.038145001 + ], + [ + 12.0917655, + 49.038408601 + ], + [ + 12.0921833, + 49.038594101 + ], + [ + 12.0928385, + 49.038883001 + ], + [ + 12.0931992, + 49.039068301 + ], + [ + 12.0935991, + 49.039291201 + ], + [ + 12.0940499, + 49.039562201 + ], + [ + 12.0943679, + 49.039806801 + ], + [ + 12.0948476, + 49.040238301 + ], + [ + 12.0951465, + 49.040540201 + ], + [ + 12.0953463, + 49.040764901 + ], + [ + 12.095522, + 49.041001201 + ], + [ + 12.0957151, + 49.041287201 + ], + [ + 12.0958715, + 49.041576001 + ], + [ + 12.0959823, + 49.041827001 + ], + [ + 12.0960776, + 49.042055001 + ], + [ + 12.0961656, + 49.042317501 + ], + [ + 12.0962319, + 49.042601501 + ], + [ + 12.0962647, + 49.042787901 + ], + [ + 12.096285, + 49.043030701 + ], + [ + 12.0962944, + 49.043200701 + ], + [ + 12.0962834, + 49.043550001 + ], + [ + 12.0962653, + 49.043762201 + ], + [ + 12.096205, + 49.044106201 + ], + [ + 12.0961344, + 49.044387401 + ], + [ + 12.0960433, + 49.044655701 + ], + [ + 12.0958666, + 49.045059701 + ], + [ + 12.0956768, + 49.045403001 + ], + [ + 12.0954865, + 49.045686501 + ], + [ + 12.0952702, + 49.045961501 + ], + [ + 12.0949956, + 49.046296001 + ], + [ + 12.0946647, + 49.046673101 + ], + [ + 12.0943446, + 49.047006901 + ], + [ + 12.0940005, + 49.047413301 + ], + [ + 12.0938316, + 49.047597201 + ], + [ + 12.0935516, + 49.047952701 + ], + [ + 12.0932024, + 49.048426401 + ], + [ + 12.092901, + 49.048924701 + ], + [ + 12.0926686, + 49.049382001 + ], + [ + 12.0925044, + 49.049785401 + ], + [ + 12.0923367, + 49.050269301 + ], + [ + 12.0922234, + 49.050746901 + ], + [ + 12.0921306, + 49.051278901 + ], + [ + 12.0920849, + 49.051861101 + ], + [ + 12.0921002, + 49.052343901 + ], + [ + 12.0921567, + 49.052880701 + ], + [ + 12.0922969, + 49.053655101 + ], + [ + 12.0923624, + 49.053964701 + ], + [ + 12.0924582, + 49.054319001 + ], + [ + 12.0928093, + 49.055678801 + ], + [ + 12.0929192, + 49.056348501 + ], + [ + 12.0929879, + 49.056976801 + ], + [ + 12.0929897, + 49.057581401 + ], + [ + 12.0929451, + 49.058247501 + ], + [ + 12.0928751, + 49.058879001 + ], + [ + 12.0927663, + 49.059489701 + ], + [ + 12.0925854, + 49.060367901 + ], + [ + 12.0924033, + 49.061222101 + ], + [ + 12.0922179, + 49.062151401 + ], + [ + 12.092125, + 49.062750601 + ], + [ + 12.0920911, + 49.063080101 + ], + [ + 12.0920406, + 49.063514101 + ], + [ + 12.0920338, + 49.063936101 + ], + [ + 12.0920363, + 49.064383801 + ], + [ + 12.092066, + 49.064851601 + ], + [ + 12.0921098, + 49.065243501 + ], + [ + 12.0921739, + 49.065650501 + ], + [ + 12.092272, + 49.066134501 + ], + [ + 12.0923996, + 49.066618501 + ], + [ + 12.09254, + 49.067045301 + ], + [ + 12.0927091, + 49.067511301 + ], + [ + 12.0930321, + 49.068220501 + ], + [ + 12.0933356, + 49.068787501 + ], + [ + 12.0936559, + 49.069314901 + ], + [ + 12.0939409, + 49.069737801 + ], + [ + 12.0943839, + 49.070323901 + ], + [ + 12.094717, + 49.070722201 + ], + [ + 12.0950966, + 49.071144901 + ], + [ + 12.0955686, + 49.071629401 + ], + [ + 12.09695, + 49.072967201 + ], + [ + 12.0976817, + 49.073667301 + ], + [ + 12.0983418, + 49.074352901 + ], + [ + 12.0987155, + 49.074769001 + ], + [ + 12.0989594, + 49.075078501 + ], + [ + 12.099161, + 49.075327401 + ], + [ + 12.0993697, + 49.075614901 + ], + [ + 12.0995339, + 49.075862201 + ], + [ + 12.0997873, + 49.076250201 + ], + [ + 12.0999827, + 49.076594701 + ], + [ + 12.1001623, + 49.076948501 + ], + [ + 12.1003012, + 49.077229701 + ], + [ + 12.1005746, + 49.077954201 + ], + [ + 12.1007813, + 49.078572501 + ], + [ + 12.1009395, + 49.079376001 + ], + [ + 12.1010347, + 49.080219301 + ], + [ + 12.1010384, + 49.080794401 + ], + [ + 12.1010079, + 49.081335301 + ], + [ + 12.1008921, + 49.082066501 + ], + [ + 12.1007319, + 49.082770101 + ], + [ + 12.1005037, + 49.083482701 + ], + [ + 12.1002896, + 49.084004701 + ], + [ + 12.1000275, + 49.084560801 + ], + [ + 12.0996064, + 49.085361401 + ], + [ + 12.0992556, + 49.085954501 + ], + [ + 12.0982932, + 49.087433201 + ], + [ + 12.0976823, + 49.088287001 + ], + [ + 12.0972005, + 49.088956801 + ], + [ + 12.096363, + 49.090120201 + ], + [ + 12.0953349, + 49.091550301 + ], + [ + 12.0945748, + 49.092697301 + ], + [ + 12.0943807, + 49.092998601 + ], + [ + 12.0939633, + 49.093768701 + ], + [ + 12.0936124, + 49.094520101 + ], + [ + 12.0933283, + 49.095301701 + ], + [ + 12.0931246, + 49.096126101 + ], + [ + 12.0930206, + 49.096880801 + ], + [ + 12.0930004, + 49.097564901 + ], + [ + 12.0930656, + 49.098379701 + ], + [ + 12.0931896, + 49.099014801 + ], + [ + 12.0934398, + 49.099887301 + ], + [ + 12.0937644, + 49.100645701 + ], + [ + 12.0940126, + 49.101128001 + ], + [ + 12.0945395, + 49.101995801 + ], + [ + 12.0952674, + 49.103017901 + ], + [ + 12.095965, + 49.103910701 + ], + [ + 12.096526, + 49.104614601 + ], + [ + 12.0970662, + 49.105275001 + ], + [ + 12.0976885, + 49.106055401 + ], + [ + 12.0991126, + 49.107852901 + ], + [ + 12.0998888, + 49.108860601 + ], + [ + 12.1005515, + 49.109742801 + ], + [ + 12.1012564, + 49.110722101 + ], + [ + 12.1019649, + 49.111738601 + ], + [ + 12.1032624, + 49.113772201 + ], + [ + 12.1036818, + 49.114454301 + ], + [ + 12.1042668, + 49.115440601 + ], + [ + 12.1047342, + 49.116261801 + ], + [ + 12.1056013, + 49.117889401 + ], + [ + 12.1057233, + 49.118128901 + ], + [ + 12.1060858, + 49.118827001 + ], + [ + 12.1061779, + 49.119017801 + ], + [ + 12.1065072, + 49.119750401 + ], + [ + 12.1071909, + 49.121259501 + ], + [ + 12.1076799, + 49.122440501 + ], + [ + 12.1079117, + 49.123009501 + ], + [ + 12.1082488, + 49.123937101 + ], + [ + 12.1085315, + 49.124797301 + ], + [ + 12.1085569, + 49.124881001 + ], + [ + 12.1087363, + 49.125665401 + ], + [ + 12.1088904, + 49.126454401 + ], + [ + 12.1090304, + 49.127399001 + ], + [ + 12.1091122, + 49.128447001 + ], + [ + 12.1091412, + 49.128977001 + ], + [ + 12.1091553, + 49.129565001 + ], + [ + 12.1090938, + 49.130024501 + ], + [ + 12.1089982, + 49.130870101 + ], + [ + 12.1088668, + 49.131751601 + ], + [ + 12.108706, + 49.132527101 + ], + [ + 12.1084902, + 49.133310701 + ], + [ + 12.1081883, + 49.134235401 + ], + [ + 12.1078428, + 49.135164701 + ], + [ + 12.1071755, + 49.136736101 + ], + [ + 12.1065537, + 49.138188701 + ], + [ + 12.1062261, + 49.138963301 + ], + [ + 12.1059403, + 49.139714601 + ], + [ + 12.1055828, + 49.140851501 + ], + [ + 12.1054162, + 49.141478101 + ], + [ + 12.1052636, + 49.142201301 + ], + [ + 12.1051563, + 49.142828901 + ], + [ + 12.1050812, + 49.143433801 + ], + [ + 12.1050242, + 49.144058001 + ], + [ + 12.1050024, + 49.144925401 + ], + [ + 12.1050374, + 49.145972901 + ], + [ + 12.1050789, + 49.146504901 + ], + [ + 12.1051671, + 49.147153501 + ], + [ + 12.1052697, + 49.147758201 + ], + [ + 12.1054093, + 49.148378001 + ], + [ + 12.1057092, + 49.149479501 + ], + [ + 12.1060735, + 49.150487901 + ], + [ + 12.1070908, + 49.152460101 + ], + [ + 12.1072504, + 49.152711701 + ], + [ + 12.1078945, + 49.153641901 + ], + [ + 12.108633, + 49.154604301 + ], + [ + 12.109038, + 49.155103601 + ], + [ + 12.110145, + 49.156412601 + ], + [ + 12.1103092, + 49.156610701 + ], + [ + 12.110504, + 49.156840601 + ], + [ + 12.111335962, + 49.157910287 + ] + ] + } + }, + { + "identifier": "2026-016735--vi-bs.2026-04-13_07-15-00-000.devi-bs.2026-04-13_07-15-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.976169127429145,12.065256086290008,48.75075168004507,11.866672447895057", + "point": "48.976169127429145,12.065256086290008", + "startLcPosition": "28", + "impact": { + "lower": "Deutschmeister", + "upper": "Regensburg-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Regensburg -> Holledau", + "title": "A93 | Regensburg-S\u00fcd - Deutschmeister", + "coordinate": { + "lat": 48.976169127429145, + "long": 12.065256086290008 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:15 bis 17:15 Uhr", + "14.04.26 von 07:15 bis 17:15 Uhr", + "15.04.26 von 07:15 bis 17:15 Uhr", + "16.04.26 von 07:15 bis 15:30 Uhr", + "17.04.26 von 07:15 bis 14:30 Uhr", + "", + "A93: Regensburg -> Holledau, zwischen 0.1 km hinter AS Regensburg-S\u00fcd und 1.5 km vor Deutschmeister", + "", + "L\u00e4nge: 33.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A93 von Regensburg-S\u00fcd (AS) nach Deutschmeister (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.065256086, + 48.976169127 + ], + [ + 12.0656136, + 48.975638601 + ], + [ + 12.066923, + 48.973676901 + ], + [ + 12.0672678, + 48.973211901 + ], + [ + 12.0676584, + 48.972723301 + ], + [ + 12.0680814, + 48.972265701 + ], + [ + 12.0685881, + 48.971783901 + ], + [ + 12.0693863, + 48.971134201 + ], + [ + 12.0698847, + 48.970791001 + ], + [ + 12.0706223, + 48.970330201 + ], + [ + 12.0713074, + 48.969963501 + ], + [ + 12.0721306, + 48.969576901 + ], + [ + 12.0726954, + 48.969352301 + ], + [ + 12.0733075, + 48.969123201 + ], + [ + 12.0741192, + 48.968872601 + ], + [ + 12.0747736, + 48.968697801 + ], + [ + 12.0753109, + 48.968575101 + ], + [ + 12.0759094, + 48.968451201 + ], + [ + 12.0763948, + 48.968366801 + ], + [ + 12.0776075, + 48.968204001 + ], + [ + 12.0784954, + 48.968107601 + ], + [ + 12.0791876, + 48.968044401 + ], + [ + 12.0802212, + 48.967948501 + ], + [ + 12.0809262, + 48.967867601 + ], + [ + 12.0819797, + 48.967745801 + ], + [ + 12.0825624, + 48.967653001 + ], + [ + 12.0831183, + 48.967556101 + ], + [ + 12.0832202, + 48.967535401 + ], + [ + 12.0836671, + 48.967441501 + ], + [ + 12.0841418, + 48.967327501 + ], + [ + 12.0852416, + 48.967007201 + ], + [ + 12.0860771, + 48.966717001 + ], + [ + 12.0868565, + 48.966393601 + ], + [ + 12.0869566, + 48.966348301 + ], + [ + 12.0873838, + 48.966145001 + ], + [ + 12.0878416, + 48.965908301 + ], + [ + 12.0883352, + 48.965627401 + ], + [ + 12.0888814, + 48.965294301 + ], + [ + 12.0895754, + 48.964802501 + ], + [ + 12.089987, + 48.964456201 + ], + [ + 12.0904584, + 48.964024301 + ], + [ + 12.0908676, + 48.963607801 + ], + [ + 12.0912506, + 48.963164901 + ], + [ + 12.0916006, + 48.962698901 + ], + [ + 12.0918824, + 48.962262501 + ], + [ + 12.0921894, + 48.961697801 + ], + [ + 12.0924304, + 48.961126901 + ], + [ + 12.0926372, + 48.960488701 + ], + [ + 12.0927645, + 48.959745401 + ], + [ + 12.092809, + 48.959206401 + ], + [ + 12.0927888, + 48.958401901 + ], + [ + 12.0927587, + 48.958072101 + ], + [ + 12.092641, + 48.957263301 + ], + [ + 12.0924629, + 48.956307801 + ], + [ + 12.0923464, + 48.955588601 + ], + [ + 12.0922234, + 48.954872101 + ], + [ + 12.0921286, + 48.954172501 + ], + [ + 12.0920455, + 48.953448401 + ], + [ + 12.0918904, + 48.950895701 + ], + [ + 12.0918579, + 48.949675901 + ], + [ + 12.0918416, + 48.948986001 + ], + [ + 12.0918297, + 48.948350101 + ], + [ + 12.0917794, + 48.945581701 + ], + [ + 12.0917455, + 48.944424901 + ], + [ + 12.0916937, + 48.943323401 + ], + [ + 12.0915935, + 48.942198201 + ], + [ + 12.0915864, + 48.942134201 + ], + [ + 12.0914896, + 48.941283901 + ], + [ + 12.091281, + 48.940017401 + ], + [ + 12.0911187, + 48.939143401 + ], + [ + 12.0908469, + 48.937996801 + ], + [ + 12.0905498, + 48.936874501 + ], + [ + 12.0901775, + 48.935571401 + ], + [ + 12.0898885, + 48.934612301 + ], + [ + 12.0896435, + 48.933790001 + ], + [ + 12.0893952, + 48.932962901 + ], + [ + 12.0891388, + 48.932108401 + ], + [ + 12.0890757, + 48.931881901 + ], + [ + 12.0887938, + 48.930870601 + ], + [ + 12.0886299, + 48.930186801 + ], + [ + 12.0885003, + 48.929624901 + ], + [ + 12.0883042, + 48.928437701 + ], + [ + 12.0881759, + 48.927144101 + ], + [ + 12.0881616, + 48.926504401 + ], + [ + 12.0881562, + 48.925760701 + ], + [ + 12.0881685, + 48.925220901 + ], + [ + 12.0882702, + 48.923440501 + ], + [ + 12.0884505, + 48.920891001 + ], + [ + 12.0884211, + 48.918195001 + ], + [ + 12.0882007, + 48.916439001 + ], + [ + 12.0878799, + 48.914819201 + ], + [ + 12.0873951, + 48.913056301 + ], + [ + 12.0870107, + 48.911914701 + ], + [ + 12.0865195, + 48.910671301 + ], + [ + 12.0860849, + 48.909806801 + ], + [ + 12.0855759, + 48.908902101 + ], + [ + 12.084148, + 48.906795401 + ], + [ + 12.0818083, + 48.903598401 + ], + [ + 12.0808657, + 48.902146901 + ], + [ + 12.0804584, + 48.901392601 + ], + [ + 12.0800715, + 48.900658201 + ], + [ + 12.0796649, + 48.899772401 + ], + [ + 12.079286, + 48.898833901 + ], + [ + 12.0789916, + 48.897956501 + ], + [ + 12.0787407, + 48.897164801 + ], + [ + 12.0784956, + 48.896336001 + ], + [ + 12.0782219, + 48.895379101 + ], + [ + 12.0780496, + 48.894848801 + ], + [ + 12.0778789, + 48.894373101 + ], + [ + 12.0777844, + 48.894129801 + ], + [ + 12.0774623, + 48.893428301 + ], + [ + 12.0772132, + 48.892976101 + ], + [ + 12.0769446, + 48.892526201 + ], + [ + 12.0765879, + 48.892009601 + ], + [ + 12.07583, + 48.891042201 + ], + [ + 12.0757094, + 48.890904501 + ], + [ + 12.0752768, + 48.890409901 + ], + [ + 12.0750443, + 48.890166301 + ], + [ + 12.0747085, + 48.889829101 + ], + [ + 12.0743259, + 48.889455201 + ], + [ + 12.0737301, + 48.888927601 + ], + [ + 12.0732029, + 48.888482101 + ], + [ + 12.0726324, + 48.888027901 + ], + [ + 12.0720694, + 48.887633101 + ], + [ + 12.0708671, + 48.886812301 + ], + [ + 12.0697962, + 48.886167201 + ], + [ + 12.06907, + 48.885772601 + ], + [ + 12.0683647, + 48.885407501 + ], + [ + 12.0669492, + 48.884761901 + ], + [ + 12.0660485, + 48.884384601 + ], + [ + 12.0643381, + 48.883765601 + ], + [ + 12.0630891, + 48.883374901 + ], + [ + 12.0618387, + 48.883034901 + ], + [ + 12.0577838, + 48.882098201 + ], + [ + 12.0567835, + 48.881839701 + ], + [ + 12.055429, + 48.881391101 + ], + [ + 12.0544532, + 48.880974501 + ], + [ + 12.0529808, + 48.880225901 + ], + [ + 12.0518399, + 48.879443101 + ], + [ + 12.051088, + 48.878817301 + ], + [ + 12.0506393, + 48.878401801 + ], + [ + 12.0501193, + 48.877906201 + ], + [ + 12.0492094, + 48.877047401 + ], + [ + 12.0485137, + 48.876423601 + ], + [ + 12.0477419, + 48.875799201 + ], + [ + 12.0474049, + 48.875569401 + ], + [ + 12.0467391, + 48.875142301 + ], + [ + 12.0461188, + 48.874784901 + ], + [ + 12.0454085, + 48.874430401 + ], + [ + 12.0445446, + 48.874062301 + ], + [ + 12.0433451, + 48.873645701 + ], + [ + 12.0421819, + 48.873316901 + ], + [ + 12.0415845, + 48.873163401 + ], + [ + 12.0410681, + 48.873012601 + ], + [ + 12.0400433, + 48.872724801 + ], + [ + 12.0391176, + 48.872430901 + ], + [ + 12.038692, + 48.872290301 + ], + [ + 12.038134, + 48.872082201 + ], + [ + 12.0376549, + 48.871878201 + ], + [ + 12.0371124, + 48.871640001 + ], + [ + 12.0365005, + 48.871333201 + ], + [ + 12.0358138, + 48.870942201 + ], + [ + 12.0351564, + 48.870505701 + ], + [ + 12.0347851, + 48.870239001 + ], + [ + 12.03437, + 48.869908501 + ], + [ + 12.0336599, + 48.869279101 + ], + [ + 12.0331091, + 48.868765401 + ], + [ + 12.0327949, + 48.868459101 + ], + [ + 12.0325084, + 48.868201401 + ], + [ + 12.0319476, + 48.867694401 + ], + [ + 12.0316634, + 48.867450101 + ], + [ + 12.031362, + 48.867210201 + ], + [ + 12.0309353, + 48.866883201 + ], + [ + 12.0305233, + 48.866614901 + ], + [ + 12.0301969, + 48.866399501 + ], + [ + 12.0296384, + 48.866083001 + ], + [ + 12.029099, + 48.865793801 + ], + [ + 12.0283061, + 48.865431501 + ], + [ + 12.0277078, + 48.865196001 + ], + [ + 12.0272784, + 48.865035701 + ], + [ + 12.0267161, + 48.864842601 + ], + [ + 12.0262103, + 48.864678001 + ], + [ + 12.0251969, + 48.864374601 + ], + [ + 12.024472, + 48.864159001 + ], + [ + 12.0238926, + 48.863985801 + ], + [ + 12.0227462, + 48.863638401 + ], + [ + 12.0219425, + 48.863371701 + ], + [ + 12.0212574, + 48.863119001 + ], + [ + 12.0206357, + 48.862877701 + ], + [ + 12.0200362, + 48.862618901 + ], + [ + 12.0194554, + 48.862350301 + ], + [ + 12.0187476, + 48.862000201 + ], + [ + 12.0180221, + 48.861596301 + ], + [ + 12.017424, + 48.861236001 + ], + [ + 12.0168077, + 48.860833501 + ], + [ + 12.0162748, + 48.860442801 + ], + [ + 12.0156959, + 48.860003801 + ], + [ + 12.0152428, + 48.859617301 + ], + [ + 12.0147905, + 48.859206201 + ], + [ + 12.014398, + 48.858809801 + ], + [ + 12.0141817, + 48.858587301 + ], + [ + 12.0139141, + 48.858272901 + ], + [ + 12.0135533, + 48.857846601 + ], + [ + 12.0130395, + 48.857175501 + ], + [ + 12.0128232, + 48.856833301 + ], + [ + 12.0125741, + 48.856433401 + ], + [ + 12.0122237, + 48.855792101 + ], + [ + 12.0120776, + 48.855525101 + ], + [ + 12.0116843, + 48.854738401 + ], + [ + 12.0112873, + 48.853919601 + ], + [ + 12.0111465, + 48.853618601 + ], + [ + 12.0105406, + 48.852341101 + ], + [ + 12.0104253, + 48.852101101 + ], + [ + 12.0096614, + 48.850510901 + ], + [ + 12.0091387, + 48.849414001 + ], + [ + 12.0083074, + 48.847668801 + ], + [ + 12.0078186, + 48.846649401 + ], + [ + 12.0075401, + 48.846063001 + ], + [ + 12.0069885, + 48.845088901 + ], + [ + 12.0062773, + 48.844137701 + ], + [ + 12.0056184, + 48.843457701 + ], + [ + 12.0052592, + 48.843145901 + ], + [ + 12.0049363, + 48.842871901 + ], + [ + 12.004443, + 48.842506001 + ], + [ + 12.0040577, + 48.842245801 + ], + [ + 12.0030557, + 48.841657701 + ], + [ + 12.0026072, + 48.841426001 + ], + [ + 12.0020754, + 48.841184601 + ], + [ + 12.0015918, + 48.840984001 + ], + [ + 12.0010671, + 48.840781301 + ], + [ + 12.0001227, + 48.840471101 + ], + [ + 11.999242, + 48.840232801 + ], + [ + 11.9965152, + 48.839647501 + ], + [ + 11.9947912, + 48.839284601 + ], + [ + 11.993547, + 48.839022701 + ], + [ + 11.9919245, + 48.838682101 + ], + [ + 11.9911085, + 48.838505601 + ], + [ + 11.9904203, + 48.838347601 + ], + [ + 11.9892291, + 48.838054501 + ], + [ + 11.9880076, + 48.837707201 + ], + [ + 11.9868707, + 48.837336401 + ], + [ + 11.9855712, + 48.836877801 + ], + [ + 11.983209, + 48.836040301 + ], + [ + 11.9816642, + 48.835484301 + ], + [ + 11.9802837, + 48.834990601 + ], + [ + 11.9794691, + 48.834696501 + ], + [ + 11.9778612, + 48.834118901 + ], + [ + 11.9763879, + 48.833574601 + ], + [ + 11.9748687, + 48.833007801 + ], + [ + 11.9730889, + 48.832307601 + ], + [ + 11.9710541, + 48.831484701 + ], + [ + 11.9690038, + 48.830647301 + ], + [ + 11.9652843, + 48.829119601 + ], + [ + 11.9614814, + 48.827567901 + ], + [ + 11.9596579, + 48.826808401 + ], + [ + 11.9588582, + 48.826456401 + ], + [ + 11.9580822, + 48.826088201 + ], + [ + 11.957261, + 48.825665301 + ], + [ + 11.9569596, + 48.825500701 + ], + [ + 11.9564079, + 48.825186701 + ], + [ + 11.9556663, + 48.824731501 + ], + [ + 11.9548169, + 48.824173801 + ], + [ + 11.953682, + 48.823347601 + ], + [ + 11.9530785, + 48.822862001 + ], + [ + 11.9522116, + 48.822086501 + ], + [ + 11.9518284, + 48.821717801 + ], + [ + 11.9513517, + 48.821232501 + ], + [ + 11.9509363, + 48.820778501 + ], + [ + 11.9505115, + 48.820277601 + ], + [ + 11.9497427, + 48.819286401 + ], + [ + 11.9486829, + 48.817824901 + ], + [ + 11.9484821, + 48.817528501 + ], + [ + 11.9481702, + 48.817101001 + ], + [ + 11.9479045, + 48.816731201 + ], + [ + 11.9476057, + 48.816318701 + ], + [ + 11.9469676, + 48.815580201 + ], + [ + 11.9465717, + 48.815168701 + ], + [ + 11.9461456, + 48.814768301 + ], + [ + 11.9443394, + 48.813227801 + ], + [ + 11.942877, + 48.811969101 + ], + [ + 11.9413181, + 48.810640901 + ], + [ + 11.9389411, + 48.808605201 + ], + [ + 11.9368071, + 48.806771301 + ], + [ + 11.9356646, + 48.805730801 + ], + [ + 11.9346721, + 48.804801401 + ], + [ + 11.9324257, + 48.802674301 + ], + [ + 11.9297952, + 48.800193901 + ], + [ + 11.9283822, + 48.798855001 + ], + [ + 11.9270966, + 48.797631401 + ], + [ + 11.9256586, + 48.796286701 + ], + [ + 11.9249659, + 48.795632801 + ], + [ + 11.9242267, + 48.794980801 + ], + [ + 11.9235949, + 48.794469601 + ], + [ + 11.9233188, + 48.794267201 + ], + [ + 11.9226042, + 48.793753101 + ], + [ + 11.9217674, + 48.793235501 + ], + [ + 11.9204436, + 48.792447801 + ], + [ + 11.9190078, + 48.791627701 + ], + [ + 11.9169578, + 48.790456001 + ], + [ + 11.9150453, + 48.789353801 + ], + [ + 11.9138211, + 48.788632701 + ], + [ + 11.912708, + 48.787914801 + ], + [ + 11.9119182, + 48.787338101 + ], + [ + 11.9111183, + 48.786729801 + ], + [ + 11.9101634, + 48.785970001 + ], + [ + 11.9092422, + 48.785228101 + ], + [ + 11.9082496, + 48.784427101 + ], + [ + 11.9071936, + 48.783587901 + ], + [ + 11.9035592, + 48.780648801 + ], + [ + 11.8997861, + 48.777620001 + ], + [ + 11.899196, + 48.777184601 + ], + [ + 11.8984663, + 48.776682701 + ], + [ + 11.8979274, + 48.776337801 + ], + [ + 11.8972392, + 48.775955601 + ], + [ + 11.8965675, + 48.775619801 + ], + [ + 11.8958093, + 48.775299801 + ], + [ + 11.8947268, + 48.774897001 + ], + [ + 11.8936337, + 48.774530801 + ], + [ + 11.8924967, + 48.774169401 + ], + [ + 11.8914314, + 48.773806201 + ], + [ + 11.8905184, + 48.773469301 + ], + [ + 11.8897514, + 48.773125101 + ], + [ + 11.8892829, + 48.772902901 + ], + [ + 11.8885789, + 48.772513401 + ], + [ + 11.8880604, + 48.772201301 + ], + [ + 11.8876837, + 48.771952501 + ], + [ + 11.8874841, + 48.771808801 + ], + [ + 11.8871563, + 48.771554601 + ], + [ + 11.8868575, + 48.771304501 + ], + [ + 11.8866031, + 48.771079301 + ], + [ + 11.8863272, + 48.770815901 + ], + [ + 11.8860551, + 48.770541801 + ], + [ + 11.8858022, + 48.770262401 + ], + [ + 11.8855588, + 48.769974401 + ], + [ + 11.8852966, + 48.769653001 + ], + [ + 11.8848892, + 48.769103801 + ], + [ + 11.884556, + 48.768611101 + ], + [ + 11.8839871, + 48.767769701 + ], + [ + 11.8833654, + 48.766848201 + ], + [ + 11.8821885, + 48.765147401 + ], + [ + 11.8821166, + 48.765041101 + ], + [ + 11.8804369, + 48.762525301 + ], + [ + 11.8785363, + 48.759719001 + ], + [ + 11.8780172, + 48.759008701 + ], + [ + 11.8776456, + 48.758544001 + ], + [ + 11.8771272, + 48.757963901 + ], + [ + 11.8765235, + 48.757382701 + ], + [ + 11.8759123, + 48.756861401 + ], + [ + 11.8753882, + 48.756458901 + ], + [ + 11.8747512, + 48.756022101 + ], + [ + 11.8737864, + 48.755421201 + ], + [ + 11.8728049, + 48.754832301 + ], + [ + 11.8717513, + 48.754199501 + ], + [ + 11.8704817, + 48.753407001 + ], + [ + 11.8697505, + 48.752938001 + ], + [ + 11.8688485, + 48.752328501 + ], + [ + 11.8677743, + 48.751580701 + ], + [ + 11.8673881, + 48.751295401 + ], + [ + 11.8670904, + 48.751064901 + ], + [ + 11.866672448, + 48.75075168 + ] + ] + } + }, + { + "identifier": "2026-016735--vi-bs.2026-04-13_07-15-00-000.devi-bs.2026-04-13_07-15-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.976169127429145,12.065256086290008,48.75075168004507,11.866672447895057", + "point": "48.976169127429145,12.065256086290008", + "startLcPosition": "28", + "impact": { + "lower": "Deutschmeister", + "upper": "Regensburg-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Regensburg -> Holledau", + "title": "A93 | Regensburg-S\u00fcd - Deutschmeister", + "coordinate": { + "lat": 48.976169127429145, + "long": 12.065256086290008 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:15 bis 17:15 Uhr", + "14.04.26 von 07:15 bis 17:15 Uhr", + "15.04.26 von 07:15 bis 17:15 Uhr", + "16.04.26 von 07:15 bis 15:30 Uhr", + "17.04.26 von 07:15 bis 14:30 Uhr", + "", + "A93: Regensburg -> Holledau, zwischen 0.1 km hinter AS Regensburg-S\u00fcd und 1.5 km vor Deutschmeister", + "", + "L\u00e4nge: 33.39 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Regensburg-S\u00fcd (AS) nach Deutschmeister (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.065256086, + 48.976169127 + ], + [ + 12.0656136, + 48.975638601 + ], + [ + 12.066923, + 48.973676901 + ], + [ + 12.0672678, + 48.973211901 + ], + [ + 12.0676584, + 48.972723301 + ], + [ + 12.0680814, + 48.972265701 + ], + [ + 12.0685881, + 48.971783901 + ], + [ + 12.0693863, + 48.971134201 + ], + [ + 12.0698847, + 48.970791001 + ], + [ + 12.0706223, + 48.970330201 + ], + [ + 12.0713074, + 48.969963501 + ], + [ + 12.0721306, + 48.969576901 + ], + [ + 12.0726954, + 48.969352301 + ], + [ + 12.0733075, + 48.969123201 + ], + [ + 12.0741192, + 48.968872601 + ], + [ + 12.0747736, + 48.968697801 + ], + [ + 12.0753109, + 48.968575101 + ], + [ + 12.0759094, + 48.968451201 + ], + [ + 12.0763948, + 48.968366801 + ], + [ + 12.0776075, + 48.968204001 + ], + [ + 12.0784954, + 48.968107601 + ], + [ + 12.0791876, + 48.968044401 + ], + [ + 12.0802212, + 48.967948501 + ], + [ + 12.0809262, + 48.967867601 + ], + [ + 12.0819797, + 48.967745801 + ], + [ + 12.0825624, + 48.967653001 + ], + [ + 12.0831183, + 48.967556101 + ], + [ + 12.0832202, + 48.967535401 + ], + [ + 12.0836671, + 48.967441501 + ], + [ + 12.0841418, + 48.967327501 + ], + [ + 12.0852416, + 48.967007201 + ], + [ + 12.0860771, + 48.966717001 + ], + [ + 12.0868565, + 48.966393601 + ], + [ + 12.0869566, + 48.966348301 + ], + [ + 12.0873838, + 48.966145001 + ], + [ + 12.0878416, + 48.965908301 + ], + [ + 12.0883352, + 48.965627401 + ], + [ + 12.0888814, + 48.965294301 + ], + [ + 12.0895754, + 48.964802501 + ], + [ + 12.089987, + 48.964456201 + ], + [ + 12.0904584, + 48.964024301 + ], + [ + 12.0908676, + 48.963607801 + ], + [ + 12.0912506, + 48.963164901 + ], + [ + 12.0916006, + 48.962698901 + ], + [ + 12.0918824, + 48.962262501 + ], + [ + 12.0921894, + 48.961697801 + ], + [ + 12.0924304, + 48.961126901 + ], + [ + 12.0926372, + 48.960488701 + ], + [ + 12.0927645, + 48.959745401 + ], + [ + 12.092809, + 48.959206401 + ], + [ + 12.0927888, + 48.958401901 + ], + [ + 12.0927587, + 48.958072101 + ], + [ + 12.092641, + 48.957263301 + ], + [ + 12.0924629, + 48.956307801 + ], + [ + 12.0923464, + 48.955588601 + ], + [ + 12.0922234, + 48.954872101 + ], + [ + 12.0921286, + 48.954172501 + ], + [ + 12.0920455, + 48.953448401 + ], + [ + 12.0918904, + 48.950895701 + ], + [ + 12.0918579, + 48.949675901 + ], + [ + 12.0918416, + 48.948986001 + ], + [ + 12.0918297, + 48.948350101 + ], + [ + 12.0917794, + 48.945581701 + ], + [ + 12.0917455, + 48.944424901 + ], + [ + 12.0916937, + 48.943323401 + ], + [ + 12.0915935, + 48.942198201 + ], + [ + 12.0915864, + 48.942134201 + ], + [ + 12.0914896, + 48.941283901 + ], + [ + 12.091281, + 48.940017401 + ], + [ + 12.0911187, + 48.939143401 + ], + [ + 12.0908469, + 48.937996801 + ], + [ + 12.0905498, + 48.936874501 + ], + [ + 12.0901775, + 48.935571401 + ], + [ + 12.0898885, + 48.934612301 + ], + [ + 12.0896435, + 48.933790001 + ], + [ + 12.0893952, + 48.932962901 + ], + [ + 12.0891388, + 48.932108401 + ], + [ + 12.0890757, + 48.931881901 + ], + [ + 12.0887938, + 48.930870601 + ], + [ + 12.0886299, + 48.930186801 + ], + [ + 12.0885003, + 48.929624901 + ], + [ + 12.0883042, + 48.928437701 + ], + [ + 12.0881759, + 48.927144101 + ], + [ + 12.0881616, + 48.926504401 + ], + [ + 12.0881562, + 48.925760701 + ], + [ + 12.0881685, + 48.925220901 + ], + [ + 12.0882702, + 48.923440501 + ], + [ + 12.0884505, + 48.920891001 + ], + [ + 12.0884211, + 48.918195001 + ], + [ + 12.0882007, + 48.916439001 + ], + [ + 12.0878799, + 48.914819201 + ], + [ + 12.0873951, + 48.913056301 + ], + [ + 12.0870107, + 48.911914701 + ], + [ + 12.0865195, + 48.910671301 + ], + [ + 12.0860849, + 48.909806801 + ], + [ + 12.0855759, + 48.908902101 + ], + [ + 12.084148, + 48.906795401 + ], + [ + 12.0818083, + 48.903598401 + ], + [ + 12.0808657, + 48.902146901 + ], + [ + 12.0804584, + 48.901392601 + ], + [ + 12.0800715, + 48.900658201 + ], + [ + 12.0796649, + 48.899772401 + ], + [ + 12.079286, + 48.898833901 + ], + [ + 12.0789916, + 48.897956501 + ], + [ + 12.0787407, + 48.897164801 + ], + [ + 12.0784956, + 48.896336001 + ], + [ + 12.0782219, + 48.895379101 + ], + [ + 12.0780496, + 48.894848801 + ], + [ + 12.0778789, + 48.894373101 + ], + [ + 12.0777844, + 48.894129801 + ], + [ + 12.0774623, + 48.893428301 + ], + [ + 12.0772132, + 48.892976101 + ], + [ + 12.0769446, + 48.892526201 + ], + [ + 12.0765879, + 48.892009601 + ], + [ + 12.07583, + 48.891042201 + ], + [ + 12.0757094, + 48.890904501 + ], + [ + 12.0752768, + 48.890409901 + ], + [ + 12.0750443, + 48.890166301 + ], + [ + 12.0747085, + 48.889829101 + ], + [ + 12.0743259, + 48.889455201 + ], + [ + 12.0737301, + 48.888927601 + ], + [ + 12.0732029, + 48.888482101 + ], + [ + 12.0726324, + 48.888027901 + ], + [ + 12.0720694, + 48.887633101 + ], + [ + 12.0708671, + 48.886812301 + ], + [ + 12.0697962, + 48.886167201 + ], + [ + 12.06907, + 48.885772601 + ], + [ + 12.0683647, + 48.885407501 + ], + [ + 12.0669492, + 48.884761901 + ], + [ + 12.0660485, + 48.884384601 + ], + [ + 12.0643381, + 48.883765601 + ], + [ + 12.0630891, + 48.883374901 + ], + [ + 12.0618387, + 48.883034901 + ], + [ + 12.0577838, + 48.882098201 + ], + [ + 12.0567835, + 48.881839701 + ], + [ + 12.055429, + 48.881391101 + ], + [ + 12.0544532, + 48.880974501 + ], + [ + 12.0529808, + 48.880225901 + ], + [ + 12.0518399, + 48.879443101 + ], + [ + 12.051088, + 48.878817301 + ], + [ + 12.0506393, + 48.878401801 + ], + [ + 12.0501193, + 48.877906201 + ], + [ + 12.0492094, + 48.877047401 + ], + [ + 12.0485137, + 48.876423601 + ], + [ + 12.0477419, + 48.875799201 + ], + [ + 12.0474049, + 48.875569401 + ], + [ + 12.0467391, + 48.875142301 + ], + [ + 12.0461188, + 48.874784901 + ], + [ + 12.0454085, + 48.874430401 + ], + [ + 12.0445446, + 48.874062301 + ], + [ + 12.0433451, + 48.873645701 + ], + [ + 12.0421819, + 48.873316901 + ], + [ + 12.0415845, + 48.873163401 + ], + [ + 12.0410681, + 48.873012601 + ], + [ + 12.0400433, + 48.872724801 + ], + [ + 12.0391176, + 48.872430901 + ], + [ + 12.038692, + 48.872290301 + ], + [ + 12.038134, + 48.872082201 + ], + [ + 12.0376549, + 48.871878201 + ], + [ + 12.0371124, + 48.871640001 + ], + [ + 12.0365005, + 48.871333201 + ], + [ + 12.0358138, + 48.870942201 + ], + [ + 12.0351564, + 48.870505701 + ], + [ + 12.0347851, + 48.870239001 + ], + [ + 12.03437, + 48.869908501 + ], + [ + 12.0336599, + 48.869279101 + ], + [ + 12.0331091, + 48.868765401 + ], + [ + 12.0327949, + 48.868459101 + ], + [ + 12.0325084, + 48.868201401 + ], + [ + 12.0319476, + 48.867694401 + ], + [ + 12.0316634, + 48.867450101 + ], + [ + 12.031362, + 48.867210201 + ], + [ + 12.0309353, + 48.866883201 + ], + [ + 12.0305233, + 48.866614901 + ], + [ + 12.0301969, + 48.866399501 + ], + [ + 12.0296384, + 48.866083001 + ], + [ + 12.029099, + 48.865793801 + ], + [ + 12.0283061, + 48.865431501 + ], + [ + 12.0277078, + 48.865196001 + ], + [ + 12.0272784, + 48.865035701 + ], + [ + 12.0267161, + 48.864842601 + ], + [ + 12.0262103, + 48.864678001 + ], + [ + 12.0251969, + 48.864374601 + ], + [ + 12.024472, + 48.864159001 + ], + [ + 12.0238926, + 48.863985801 + ], + [ + 12.0227462, + 48.863638401 + ], + [ + 12.0219425, + 48.863371701 + ], + [ + 12.0212574, + 48.863119001 + ], + [ + 12.0206357, + 48.862877701 + ], + [ + 12.0200362, + 48.862618901 + ], + [ + 12.0194554, + 48.862350301 + ], + [ + 12.0187476, + 48.862000201 + ], + [ + 12.0180221, + 48.861596301 + ], + [ + 12.017424, + 48.861236001 + ], + [ + 12.0168077, + 48.860833501 + ], + [ + 12.0162748, + 48.860442801 + ], + [ + 12.0156959, + 48.860003801 + ], + [ + 12.0152428, + 48.859617301 + ], + [ + 12.0147905, + 48.859206201 + ], + [ + 12.014398, + 48.858809801 + ], + [ + 12.0141817, + 48.858587301 + ], + [ + 12.0139141, + 48.858272901 + ], + [ + 12.0135533, + 48.857846601 + ], + [ + 12.0130395, + 48.857175501 + ], + [ + 12.0128232, + 48.856833301 + ], + [ + 12.0125741, + 48.856433401 + ], + [ + 12.0122237, + 48.855792101 + ], + [ + 12.0120776, + 48.855525101 + ], + [ + 12.0116843, + 48.854738401 + ], + [ + 12.0112873, + 48.853919601 + ], + [ + 12.0111465, + 48.853618601 + ], + [ + 12.0105406, + 48.852341101 + ], + [ + 12.0104253, + 48.852101101 + ], + [ + 12.0096614, + 48.850510901 + ], + [ + 12.0091387, + 48.849414001 + ], + [ + 12.0083074, + 48.847668801 + ], + [ + 12.0078186, + 48.846649401 + ], + [ + 12.0075401, + 48.846063001 + ], + [ + 12.0069885, + 48.845088901 + ], + [ + 12.0062773, + 48.844137701 + ], + [ + 12.0056184, + 48.843457701 + ], + [ + 12.0052592, + 48.843145901 + ], + [ + 12.0049363, + 48.842871901 + ], + [ + 12.004443, + 48.842506001 + ], + [ + 12.0040577, + 48.842245801 + ], + [ + 12.0030557, + 48.841657701 + ], + [ + 12.0026072, + 48.841426001 + ], + [ + 12.0020754, + 48.841184601 + ], + [ + 12.0015918, + 48.840984001 + ], + [ + 12.0010671, + 48.840781301 + ], + [ + 12.0001227, + 48.840471101 + ], + [ + 11.999242, + 48.840232801 + ], + [ + 11.9965152, + 48.839647501 + ], + [ + 11.9947912, + 48.839284601 + ], + [ + 11.993547, + 48.839022701 + ], + [ + 11.9919245, + 48.838682101 + ], + [ + 11.9911085, + 48.838505601 + ], + [ + 11.9904203, + 48.838347601 + ], + [ + 11.9892291, + 48.838054501 + ], + [ + 11.9880076, + 48.837707201 + ], + [ + 11.9868707, + 48.837336401 + ], + [ + 11.9855712, + 48.836877801 + ], + [ + 11.983209, + 48.836040301 + ], + [ + 11.9816642, + 48.835484301 + ], + [ + 11.9802837, + 48.834990601 + ], + [ + 11.9794691, + 48.834696501 + ], + [ + 11.9778612, + 48.834118901 + ], + [ + 11.9763879, + 48.833574601 + ], + [ + 11.9748687, + 48.833007801 + ], + [ + 11.9730889, + 48.832307601 + ], + [ + 11.9710541, + 48.831484701 + ], + [ + 11.9690038, + 48.830647301 + ], + [ + 11.9652843, + 48.829119601 + ], + [ + 11.9614814, + 48.827567901 + ], + [ + 11.9596579, + 48.826808401 + ], + [ + 11.9588582, + 48.826456401 + ], + [ + 11.9580822, + 48.826088201 + ], + [ + 11.957261, + 48.825665301 + ], + [ + 11.9569596, + 48.825500701 + ], + [ + 11.9564079, + 48.825186701 + ], + [ + 11.9556663, + 48.824731501 + ], + [ + 11.9548169, + 48.824173801 + ], + [ + 11.953682, + 48.823347601 + ], + [ + 11.9530785, + 48.822862001 + ], + [ + 11.9522116, + 48.822086501 + ], + [ + 11.9518284, + 48.821717801 + ], + [ + 11.9513517, + 48.821232501 + ], + [ + 11.9509363, + 48.820778501 + ], + [ + 11.9505115, + 48.820277601 + ], + [ + 11.9497427, + 48.819286401 + ], + [ + 11.9486829, + 48.817824901 + ], + [ + 11.9484821, + 48.817528501 + ], + [ + 11.9481702, + 48.817101001 + ], + [ + 11.9479045, + 48.816731201 + ], + [ + 11.9476057, + 48.816318701 + ], + [ + 11.9469676, + 48.815580201 + ], + [ + 11.9465717, + 48.815168701 + ], + [ + 11.9461456, + 48.814768301 + ], + [ + 11.9443394, + 48.813227801 + ], + [ + 11.942877, + 48.811969101 + ], + [ + 11.9413181, + 48.810640901 + ], + [ + 11.9389411, + 48.808605201 + ], + [ + 11.9368071, + 48.806771301 + ], + [ + 11.9356646, + 48.805730801 + ], + [ + 11.9346721, + 48.804801401 + ], + [ + 11.9324257, + 48.802674301 + ], + [ + 11.9297952, + 48.800193901 + ], + [ + 11.9283822, + 48.798855001 + ], + [ + 11.9270966, + 48.797631401 + ], + [ + 11.9256586, + 48.796286701 + ], + [ + 11.9249659, + 48.795632801 + ], + [ + 11.9242267, + 48.794980801 + ], + [ + 11.9235949, + 48.794469601 + ], + [ + 11.9233188, + 48.794267201 + ], + [ + 11.9226042, + 48.793753101 + ], + [ + 11.9217674, + 48.793235501 + ], + [ + 11.9204436, + 48.792447801 + ], + [ + 11.9190078, + 48.791627701 + ], + [ + 11.9169578, + 48.790456001 + ], + [ + 11.9150453, + 48.789353801 + ], + [ + 11.9138211, + 48.788632701 + ], + [ + 11.912708, + 48.787914801 + ], + [ + 11.9119182, + 48.787338101 + ], + [ + 11.9111183, + 48.786729801 + ], + [ + 11.9101634, + 48.785970001 + ], + [ + 11.9092422, + 48.785228101 + ], + [ + 11.9082496, + 48.784427101 + ], + [ + 11.9071936, + 48.783587901 + ], + [ + 11.9035592, + 48.780648801 + ], + [ + 11.8997861, + 48.777620001 + ], + [ + 11.899196, + 48.777184601 + ], + [ + 11.8984663, + 48.776682701 + ], + [ + 11.8979274, + 48.776337801 + ], + [ + 11.8972392, + 48.775955601 + ], + [ + 11.8965675, + 48.775619801 + ], + [ + 11.8958093, + 48.775299801 + ], + [ + 11.8947268, + 48.774897001 + ], + [ + 11.8936337, + 48.774530801 + ], + [ + 11.8924967, + 48.774169401 + ], + [ + 11.8914314, + 48.773806201 + ], + [ + 11.8905184, + 48.773469301 + ], + [ + 11.8897514, + 48.773125101 + ], + [ + 11.8892829, + 48.772902901 + ], + [ + 11.8885789, + 48.772513401 + ], + [ + 11.8880604, + 48.772201301 + ], + [ + 11.8876837, + 48.771952501 + ], + [ + 11.8874841, + 48.771808801 + ], + [ + 11.8871563, + 48.771554601 + ], + [ + 11.8868575, + 48.771304501 + ], + [ + 11.8866031, + 48.771079301 + ], + [ + 11.8863272, + 48.770815901 + ], + [ + 11.8860551, + 48.770541801 + ], + [ + 11.8858022, + 48.770262401 + ], + [ + 11.8855588, + 48.769974401 + ], + [ + 11.8852966, + 48.769653001 + ], + [ + 11.8848892, + 48.769103801 + ], + [ + 11.884556, + 48.768611101 + ], + [ + 11.8839871, + 48.767769701 + ], + [ + 11.8833654, + 48.766848201 + ], + [ + 11.8821885, + 48.765147401 + ], + [ + 11.8821166, + 48.765041101 + ], + [ + 11.8804369, + 48.762525301 + ], + [ + 11.8785363, + 48.759719001 + ], + [ + 11.8780172, + 48.759008701 + ], + [ + 11.8776456, + 48.758544001 + ], + [ + 11.8771272, + 48.757963901 + ], + [ + 11.8765235, + 48.757382701 + ], + [ + 11.8759123, + 48.756861401 + ], + [ + 11.8753882, + 48.756458901 + ], + [ + 11.8747512, + 48.756022101 + ], + [ + 11.8737864, + 48.755421201 + ], + [ + 11.8728049, + 48.754832301 + ], + [ + 11.8717513, + 48.754199501 + ], + [ + 11.8704817, + 48.753407001 + ], + [ + 11.8697505, + 48.752938001 + ], + [ + 11.8688485, + 48.752328501 + ], + [ + 11.8677743, + 48.751580701 + ], + [ + 11.8673881, + 48.751295401 + ], + [ + 11.8670904, + 48.751064901 + ], + [ + 11.866672448, + 48.75075168 + ] + ] + } + }, + { + "identifier": "2026-015439--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_003.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.00253229712245,12.062639353182,49.02730217786742,12.072646281299692", + "point": "49.00253229712245,12.062639353182", + "startLcPosition": "30", + "impact": { + "lower": "Regensburg-Pfaffenstein", + "upper": "Regensburg-Kumpfm\u00fchl", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Holledau -> Regensburg", + "title": "A93 | Regensburg-Kumpfm\u00fchl - Regensburg-Pfaffenstein", + "coordinate": { + "lat": 49.00253229712245, + "long": 12.062639353182 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:00 bis zum 15.04.26 06:00 Uhr.", + "", + "A93: Holledau -> Regensburg, zwischen 0.2 km hinter AS Regensburg-Kumpfm\u00fchl und 0.6 km vor AS Regensburg-Pfaffenstein", + "", + "L\u00e4nge: 3 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A93 von Regensburg-Kumpfm\u00fchl (AS) nach Regensburg-Pfaffenstein (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.062639353, + 49.002532297 + ], + [ + 12.0623038, + 49.003235501 + ], + [ + 12.0619279, + 49.003956301 + ], + [ + 12.0614912, + 49.004865101 + ], + [ + 12.061335, + 49.005218401 + ], + [ + 12.0611282, + 49.005767801 + ], + [ + 12.061021, + 49.006059601 + ], + [ + 12.0608974, + 49.006523601 + ], + [ + 12.0608035, + 49.006983301 + ], + [ + 12.0607624, + 49.007338701 + ], + [ + 12.0607575, + 49.007415601 + ], + [ + 12.0607399, + 49.007610901 + ], + [ + 12.0607254, + 49.007948101 + ], + [ + 12.0607467, + 49.008413801 + ], + [ + 12.0607892, + 49.008755901 + ], + [ + 12.0608359, + 49.009002501 + ], + [ + 12.0609366, + 49.009473101 + ], + [ + 12.0610308, + 49.009783301 + ], + [ + 12.0611618, + 49.010171401 + ], + [ + 12.061308, + 49.010481601 + ], + [ + 12.0614799, + 49.010837601 + ], + [ + 12.061727, + 49.011275801 + ], + [ + 12.0620771, + 49.011784401 + ], + [ + 12.0625318, + 49.012363001 + ], + [ + 12.0629029, + 49.012796201 + ], + [ + 12.0630411, + 49.012952601 + ], + [ + 12.0633156, + 49.013247301 + ], + [ + 12.0637845, + 49.013749201 + ], + [ + 12.0639614, + 49.013952101 + ], + [ + 12.0652257, + 49.015321601 + ], + [ + 12.0654072, + 49.015531701 + ], + [ + 12.0685069, + 49.019746601 + ], + [ + 12.0687229, + 49.020116001 + ], + [ + 12.0689042, + 49.020534501 + ], + [ + 12.0690369, + 49.021071801 + ], + [ + 12.0690608, + 49.021168101 + ], + [ + 12.0691203, + 49.021492001 + ], + [ + 12.0692325, + 49.022037801 + ], + [ + 12.069282, + 49.022347001 + ], + [ + 12.0693904, + 49.023169301 + ], + [ + 12.0694564, + 49.023520101 + ], + [ + 12.0694999, + 49.023719801 + ], + [ + 12.0696446, + 49.024242901 + ], + [ + 12.0697294, + 49.024468401 + ], + [ + 12.0699425, + 49.024904901 + ], + [ + 12.0700708, + 49.025122101 + ], + [ + 12.0702428, + 49.025374201 + ], + [ + 12.0704966, + 49.025682701 + ], + [ + 12.0707342, + 49.025949801 + ], + [ + 12.0709733, + 49.026180001 + ], + [ + 12.0712416, + 49.026421801 + ], + [ + 12.0714726, + 49.026585601 + ], + [ + 12.0720064, + 49.026947101 + ], + [ + 12.0723365, + 49.027146501 + ], + [ + 12.072646281, + 49.027302178 + ] + ] + } + }, + { + "identifier": "2026-015439--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_003.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.00253229712245,12.062639353182,49.02730217786742,12.072646281299692", + "point": "49.00253229712245,12.062639353182", + "startLcPosition": "30", + "impact": { + "lower": "Regensburg-Pfaffenstein", + "upper": "Regensburg-Kumpfm\u00fchl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Holledau -> Regensburg", + "title": "A93 | Regensburg-Kumpfm\u00fchl - Regensburg-Pfaffenstein", + "coordinate": { + "lat": 49.00253229712245, + "long": 12.062639353182 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 19:00 bis zum 14.04.26 06:00 Uhr.", + "15.04.26 19:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A93: Holledau -> Regensburg, zwischen 0.2 km hinter AS Regensburg-Kumpfm\u00fchl und 0.6 km vor AS Regensburg-Pfaffenstein", + "", + "L\u00e4nge: 3 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A93 von Regensburg-Kumpfm\u00fchl (AS) nach Regensburg-Pfaffenstein (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.062639353, + 49.002532297 + ], + [ + 12.0623038, + 49.003235501 + ], + [ + 12.0619279, + 49.003956301 + ], + [ + 12.0614912, + 49.004865101 + ], + [ + 12.061335, + 49.005218401 + ], + [ + 12.0611282, + 49.005767801 + ], + [ + 12.061021, + 49.006059601 + ], + [ + 12.0608974, + 49.006523601 + ], + [ + 12.0608035, + 49.006983301 + ], + [ + 12.0607624, + 49.007338701 + ], + [ + 12.0607575, + 49.007415601 + ], + [ + 12.0607399, + 49.007610901 + ], + [ + 12.0607254, + 49.007948101 + ], + [ + 12.0607467, + 49.008413801 + ], + [ + 12.0607892, + 49.008755901 + ], + [ + 12.0608359, + 49.009002501 + ], + [ + 12.0609366, + 49.009473101 + ], + [ + 12.0610308, + 49.009783301 + ], + [ + 12.0611618, + 49.010171401 + ], + [ + 12.061308, + 49.010481601 + ], + [ + 12.0614799, + 49.010837601 + ], + [ + 12.061727, + 49.011275801 + ], + [ + 12.0620771, + 49.011784401 + ], + [ + 12.0625318, + 49.012363001 + ], + [ + 12.0629029, + 49.012796201 + ], + [ + 12.0630411, + 49.012952601 + ], + [ + 12.0633156, + 49.013247301 + ], + [ + 12.0637845, + 49.013749201 + ], + [ + 12.0639614, + 49.013952101 + ], + [ + 12.0652257, + 49.015321601 + ], + [ + 12.0654072, + 49.015531701 + ], + [ + 12.0685069, + 49.019746601 + ], + [ + 12.0687229, + 49.020116001 + ], + [ + 12.0689042, + 49.020534501 + ], + [ + 12.0690369, + 49.021071801 + ], + [ + 12.0690608, + 49.021168101 + ], + [ + 12.0691203, + 49.021492001 + ], + [ + 12.0692325, + 49.022037801 + ], + [ + 12.069282, + 49.022347001 + ], + [ + 12.0693904, + 49.023169301 + ], + [ + 12.0694564, + 49.023520101 + ], + [ + 12.0694999, + 49.023719801 + ], + [ + 12.0696446, + 49.024242901 + ], + [ + 12.0697294, + 49.024468401 + ], + [ + 12.0699425, + 49.024904901 + ], + [ + 12.0700708, + 49.025122101 + ], + [ + 12.0702428, + 49.025374201 + ], + [ + 12.0704966, + 49.025682701 + ], + [ + 12.0707342, + 49.025949801 + ], + [ + 12.0709733, + 49.026180001 + ], + [ + 12.0712416, + 49.026421801 + ], + [ + 12.0714726, + 49.026585601 + ], + [ + 12.0720064, + 49.026947101 + ], + [ + 12.0723365, + 49.027146501 + ], + [ + 12.072646281, + 49.027302178 + ] + ] + } + }, + { + "identifier": "2025-063334--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_014.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.99569801301633,12.062846060529862,48.99208770514077,12.06121853072069", + "point": "48.99569801301633,12.062846060529862", + "startLcPosition": "30", + "impact": { + "lower": "Regensburg-S\u00fcd", + "upper": "Regensburg-Kumpfm\u00fchl", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Regensburg -> Holledau", + "title": "A93 | Regensburg-Kumpfm\u00fchl - Regensburg-S\u00fcd", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 48.99569801301633, + "long": 12.062846060529862 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 20.04.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.11.26)", + "", + "A93: Regensburg -> Holledau, zwischen 0.6 km hinter AS Regensburg-Kumpfm\u00fchl und 1.7 km vor AS Regensburg-S\u00fcd", + "", + "L\u00e4nge: 0.42 km | Maximale Durchfahrtsbreite: 5.6 m", + "", + "A3 Erneuerung BW 50 Vorarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.062846061, + 48.995698013 + ], + [ + 12.0626417, + 48.995219301 + ], + [ + 12.0623714, + 48.994648301 + ], + [ + 12.0622341, + 48.994484301 + ], + [ + 12.0617317, + 48.993436001 + ], + [ + 12.0617317, + 48.993327501 + ], + [ + 12.0612458, + 48.992172601 + ], + [ + 12.061218531, + 48.992087705 + ] + ] + } + }, + { + "identifier": "2025-063334--vi-bs.2026-04-20_06-00-00-000.devi-zus.2026-04-13_00-00-00-000_014.de6", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "49.00185530094511,12.062774000026973,48.99164816648797,12.061077348532944", + "point": "49.00185530094511,12.062774000026973", + "startLcPosition": "31", + "impact": { + "lower": "Regensburg-S\u00fcd", + "upper": "Regensburg-K\u00f6nigswiesen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Regensburg -> Holledau", + "title": "A93 | Regensburg-K\u00f6nigswiesen - Regensburg-S\u00fcd", + "startTimestamp": "2026-04-20T06:00:00+02:00", + "coordinate": { + "lat": 49.00185530094511, + "long": 12.062774000026973 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 06:00 Uhr", + "Ende: 27.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.11.26)", + "", + "A93: Regensburg -> Holledau, zwischen 1.0 km hinter AS Regensburg-K\u00f6nigswiesen und 1.7 km vor AS Regensburg-S\u00fcd", + "", + "L\u00e4nge: 1.17 km | Maximale Durchfahrtsbreite: 5.6 m", + "", + "A3 Erneuerung BW 50 Vorarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.062774, + 49.001855301 + ], + [ + 12.0628994, + 49.001518301 + ], + [ + 12.0629495, + 49.001411201 + ], + [ + 12.0631029, + 49.000983401 + ], + [ + 12.0631926, + 49.000681301 + ], + [ + 12.0633297, + 49.000084501 + ], + [ + 12.0634164, + 48.999555901 + ], + [ + 12.0634614, + 48.999015101 + ], + [ + 12.0634631, + 48.998598801 + ], + [ + 12.0634344, + 48.998166101 + ], + [ + 12.0634177, + 48.997937401 + ], + [ + 12.0634162, + 48.997914301 + ], + [ + 12.0634047, + 48.997743201 + ], + [ + 12.0633589, + 48.997419301 + ], + [ + 12.0632643, + 48.996996201 + ], + [ + 12.0631741, + 48.996624001 + ], + [ + 12.0630241, + 48.996151201 + ], + [ + 12.0629004, + 48.995825301 + ], + [ + 12.0626417, + 48.995219301 + ], + [ + 12.0623714, + 48.994648301 + ], + [ + 12.0622341, + 48.994484301 + ], + [ + 12.0617317, + 48.993436001 + ], + [ + 12.0617317, + 48.993327501 + ], + [ + 12.0612458, + 48.992172601 + ], + [ + 12.061077349, + 48.991648166 + ] + ] + } + }, + { + "identifier": "2026-015439--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_003.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.02739592250064,12.07253626715177,49.00250564996759,12.06246448741961", + "point": "49.02739592250064,12.07253626715177", + "startLcPosition": "35", + "impact": { + "lower": "Regensburg-Kumpfm\u00fchl", + "upper": "Regensburg-Pfaffenstein", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Regensburg -> Holledau", + "title": "A93 | Regensburg-Pfaffenstein - Regensburg-Kumpfm\u00fchl", + "coordinate": { + "lat": 49.02739592250064, + "long": 12.07253626715177 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 19:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A93: Regensburg -> Holledau, zwischen 0.6 km hinter AS Regensburg-Pfaffenstein und 0.2 km vor AS Regensburg-Kumpfm\u00fchl", + "", + "L\u00e4nge: 2.99 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A93 von Regensburg-Kumpfm\u00fchl (AS) nach Regensburg-Pfaffenstein (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.072536267, + 49.027395923 + ], + [ + 12.0724627, + 49.027358301 + ], + [ + 12.0721893, + 49.027208401 + ], + [ + 12.0718899, + 49.027035301 + ], + [ + 12.0715427, + 49.026807501 + ], + [ + 12.0712379, + 49.026585801 + ], + [ + 12.0710746, + 49.026458701 + ], + [ + 12.0708512, + 49.026258201 + ], + [ + 12.0705701, + 49.025991901 + ], + [ + 12.0704362, + 49.025846701 + ], + [ + 12.0703295, + 49.025727601 + ], + [ + 12.0702129, + 49.025575701 + ], + [ + 12.0700645, + 49.025387701 + ], + [ + 12.0698935, + 49.025146501 + ], + [ + 12.0698262, + 49.025028101 + ], + [ + 12.0697395, + 49.024871801 + ], + [ + 12.0695745, + 49.024515601 + ], + [ + 12.0694729, + 49.024248901 + ], + [ + 12.0693154, + 49.023727601 + ], + [ + 12.0691594, + 49.022773601 + ], + [ + 12.0691147, + 49.022447401 + ], + [ + 12.0690652, + 49.022102801 + ], + [ + 12.0690133, + 49.021802901 + ], + [ + 12.0689473, + 49.021452001 + ], + [ + 12.0688695, + 49.021170701 + ], + [ + 12.0688283, + 49.021059401 + ], + [ + 12.0686622, + 49.020562901 + ], + [ + 12.0684788, + 49.020137101 + ], + [ + 12.0682965, + 49.019782701 + ], + [ + 12.0680813, + 49.019452901 + ], + [ + 12.0658276, + 49.016380501 + ], + [ + 12.0651715, + 49.015486101 + ], + [ + 12.0645238, + 49.014774601 + ], + [ + 12.0641807, + 49.014401501 + ], + [ + 12.0639285, + 49.014121301 + ], + [ + 12.0633659, + 49.013533101 + ], + [ + 12.0629088, + 49.013040801 + ], + [ + 12.0627251, + 49.012830501 + ], + [ + 12.0623336, + 49.012373601 + ], + [ + 12.0618672, + 49.011784301 + ], + [ + 12.0615431, + 49.011299601 + ], + [ + 12.0612838, + 49.010842301 + ], + [ + 12.0611251, + 49.010499001 + ], + [ + 12.0609902, + 49.010185601 + ], + [ + 12.0608719, + 49.009859801 + ], + [ + 12.0607701, + 49.009530801 + ], + [ + 12.0606252, + 49.008958501 + ], + [ + 12.060553, + 49.008295301 + ], + [ + 12.0605369, + 49.007882701 + ], + [ + 12.0605734, + 49.007334601 + ], + [ + 12.06072, + 49.006496401 + ], + [ + 12.0608345, + 49.006067101 + ], + [ + 12.0609463, + 49.005751101 + ], + [ + 12.0611919, + 49.005129801 + ], + [ + 12.061331, + 49.004817401 + ], + [ + 12.0619219, + 49.003588001 + ], + [ + 12.0621444, + 49.003178201 + ], + [ + 12.062464487, + 49.00250565 + ] + ] + } + }, + { + "identifier": "2026-015439--vi-bs.2026-04-13_19-00-00-000.devi-zus.2026-04-13_19-00-00-000_003.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.02739592250064,12.07253626715177,49.00250564996759,12.06246448741961", + "point": "49.02739592250064,12.07253626715177", + "startLcPosition": "35", + "impact": { + "lower": "Regensburg-Kumpfm\u00fchl", + "upper": "Regensburg-Pfaffenstein", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Regensburg -> Holledau", + "title": "A93 | Regensburg-Pfaffenstein - Regensburg-Kumpfm\u00fchl", + "coordinate": { + "lat": 49.02739592250064, + "long": 12.07253626715177 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 19:00 bis zum 15.04.26 06:00 Uhr.", + "16.04.26 19:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A93: Regensburg -> Holledau, zwischen 0.6 km hinter AS Regensburg-Pfaffenstein und 0.2 km vor AS Regensburg-Kumpfm\u00fchl", + "", + "L\u00e4nge: 2.99 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A93 von Regensburg-Kumpfm\u00fchl (AS) nach Regensburg-Pfaffenstein (AS) Tunnelwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.072536267, + 49.027395923 + ], + [ + 12.0724627, + 49.027358301 + ], + [ + 12.0721893, + 49.027208401 + ], + [ + 12.0718899, + 49.027035301 + ], + [ + 12.0715427, + 49.026807501 + ], + [ + 12.0712379, + 49.026585801 + ], + [ + 12.0710746, + 49.026458701 + ], + [ + 12.0708512, + 49.026258201 + ], + [ + 12.0705701, + 49.025991901 + ], + [ + 12.0704362, + 49.025846701 + ], + [ + 12.0703295, + 49.025727601 + ], + [ + 12.0702129, + 49.025575701 + ], + [ + 12.0700645, + 49.025387701 + ], + [ + 12.0698935, + 49.025146501 + ], + [ + 12.0698262, + 49.025028101 + ], + [ + 12.0697395, + 49.024871801 + ], + [ + 12.0695745, + 49.024515601 + ], + [ + 12.0694729, + 49.024248901 + ], + [ + 12.0693154, + 49.023727601 + ], + [ + 12.0691594, + 49.022773601 + ], + [ + 12.0691147, + 49.022447401 + ], + [ + 12.0690652, + 49.022102801 + ], + [ + 12.0690133, + 49.021802901 + ], + [ + 12.0689473, + 49.021452001 + ], + [ + 12.0688695, + 49.021170701 + ], + [ + 12.0688283, + 49.021059401 + ], + [ + 12.0686622, + 49.020562901 + ], + [ + 12.0684788, + 49.020137101 + ], + [ + 12.0682965, + 49.019782701 + ], + [ + 12.0680813, + 49.019452901 + ], + [ + 12.0658276, + 49.016380501 + ], + [ + 12.0651715, + 49.015486101 + ], + [ + 12.0645238, + 49.014774601 + ], + [ + 12.0641807, + 49.014401501 + ], + [ + 12.0639285, + 49.014121301 + ], + [ + 12.0633659, + 49.013533101 + ], + [ + 12.0629088, + 49.013040801 + ], + [ + 12.0627251, + 49.012830501 + ], + [ + 12.0623336, + 49.012373601 + ], + [ + 12.0618672, + 49.011784301 + ], + [ + 12.0615431, + 49.011299601 + ], + [ + 12.0612838, + 49.010842301 + ], + [ + 12.0611251, + 49.010499001 + ], + [ + 12.0609902, + 49.010185601 + ], + [ + 12.0608719, + 49.009859801 + ], + [ + 12.0607701, + 49.009530801 + ], + [ + 12.0606252, + 49.008958501 + ], + [ + 12.060553, + 49.008295301 + ], + [ + 12.0605369, + 49.007882701 + ], + [ + 12.0605734, + 49.007334601 + ], + [ + 12.06072, + 49.006496401 + ], + [ + 12.0608345, + 49.006067101 + ], + [ + 12.0609463, + 49.005751101 + ], + [ + 12.0611919, + 49.005129801 + ], + [ + 12.061331, + 49.004817401 + ], + [ + 12.0619219, + 49.003588001 + ], + [ + 12.0621444, + 49.003178201 + ], + [ + 12.062464487, + 49.00250565 + ] + ] + } + }, + { + "identifier": "2026-015842--vi-bs.2026-04-09_18-00-00-000.devi-zus.2026-04-09_18-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.09815200372045,12.092874427687823,49.09205162922762,12.09481003978461", + "point": "49.09815200372045,12.092874427687823", + "startLcPosition": "40", + "impact": { + "lower": "Regendorf", + "upper": "Regenstauf", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Regensburg", + "title": "A93 | Regenstauf - Regendorf", + "coordinate": { + "lat": 49.09815200372045, + "long": 12.092874427687823 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 18:00 bis zum 15.04.26 06:00 Uhr.", + "", + "A93: Weiden -> Regensburg, zwischen 2.5 km hinter AS Regenstauf und 0.6 km vor Regendorf", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Ponholz (AS) nach Regendorf (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.092874428, + 49.098152004 + ], + [ + 12.0928231, + 49.097559901 + ], + [ + 12.0928482, + 49.096832301 + ], + [ + 12.092966, + 49.096023401 + ], + [ + 12.0931615, + 49.095245801 + ], + [ + 12.0934424, + 49.094475401 + ], + [ + 12.0942102, + 49.092966401 + ], + [ + 12.0944121, + 49.092645001 + ], + [ + 12.09481004, + 49.092051629 + ] + ] + } + }, + { + "identifier": "2026-015842--vi-bs.2026-04-09_18-00-00-000.devi-zus.2026-04-09_18-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.108066412298996,12.099090090654263,49.097258737953204,12.092833489269847", + "point": "49.108066412298996,12.099090090654263", + "startLcPosition": "40", + "impact": { + "lower": "Regendorf", + "upper": "Regenstauf", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Regensburg", + "title": "A93 | Regenstauf - Regendorf", + "coordinate": { + "lat": 49.108066412298996, + "long": 12.099090090654263 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 18:00 bis zum 14.04.26 06:00 Uhr.", + "", + "A93: Weiden -> Regensburg, zwischen 1.3 km hinter AS Regenstauf und 1.2 km vor Regendorf", + "", + "L\u00e4nge: 1.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Ponholz (AS) nach Regendorf (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.099090091, + 49.108066412 + ], + [ + 12.0989615, + 49.107900601 + ], + [ + 12.0975581, + 49.106140801 + ], + [ + 12.0968702, + 49.105288501 + ], + [ + 12.0963561, + 49.104645101 + ], + [ + 12.0957866, + 49.103930601 + ], + [ + 12.0951142, + 49.103069101 + ], + [ + 12.0943301, + 49.101966801 + ], + [ + 12.0938514, + 49.101167301 + ], + [ + 12.0935822, + 49.100643201 + ], + [ + 12.0932581, + 49.099871301 + ], + [ + 12.0930244, + 49.099085501 + ], + [ + 12.0928974, + 49.098417001 + ], + [ + 12.0928231, + 49.097559901 + ], + [ + 12.092833489, + 49.097258738 + ] + ] + } + }, + { + "identifier": "2026-015842--vi-bs.2026-04-09_18-00-00-000.devi-zus.2026-04-09_18-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.09815200372045,12.092874427687823,49.09205162922762,12.09481003978461", + "point": "49.09815200372045,12.092874427687823", + "startLcPosition": "40", + "impact": { + "lower": "Regendorf", + "upper": "Regenstauf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Regensburg", + "title": "A93 | Regenstauf - Regendorf", + "coordinate": { + "lat": 49.09815200372045, + "long": 12.092874427687823 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 18:00 bis zum 21.04.26 06:00 Uhr.", + "", + "A93: Weiden -> Regensburg, zwischen 2.5 km hinter AS Regenstauf und 0.6 km vor Regendorf", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Ponholz (AS) nach Regendorf (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.092874428, + 49.098152004 + ], + [ + 12.0928231, + 49.097559901 + ], + [ + 12.0928482, + 49.096832301 + ], + [ + 12.092966, + 49.096023401 + ], + [ + 12.0931615, + 49.095245801 + ], + [ + 12.0934424, + 49.094475401 + ], + [ + 12.0942102, + 49.092966401 + ], + [ + 12.0944121, + 49.092645001 + ], + [ + 12.09481004, + 49.092051629 + ] + ] + } + }, + { + "identifier": "2026-015842--vi-bs.2026-04-09_18-00-00-000.devi-zus.2026-04-09_18-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.108066412298996,12.099090090654263,49.097258737953204,12.092833489269847", + "point": "49.108066412298996,12.099090090654263", + "startLcPosition": "40", + "impact": { + "lower": "Regendorf", + "upper": "Regenstauf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Regensburg", + "title": "A93 | Regenstauf - Regendorf", + "coordinate": { + "lat": 49.108066412298996, + "long": 12.099090090654263 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 18:00 bis zum 17.04.26 06:00 Uhr.", + "", + "A93: Weiden -> Regensburg, zwischen 1.3 km hinter AS Regenstauf und 1.2 km vor Regendorf", + "", + "L\u00e4nge: 1.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Ponholz (AS) nach Regendorf (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.099090091, + 49.108066412 + ], + [ + 12.0989615, + 49.107900601 + ], + [ + 12.0975581, + 49.106140801 + ], + [ + 12.0968702, + 49.105288501 + ], + [ + 12.0963561, + 49.104645101 + ], + [ + 12.0957866, + 49.103930601 + ], + [ + 12.0951142, + 49.103069101 + ], + [ + 12.0943301, + 49.101966801 + ], + [ + 12.0938514, + 49.101167301 + ], + [ + 12.0935822, + 49.100643201 + ], + [ + 12.0932581, + 49.099871301 + ], + [ + 12.0930244, + 49.099085501 + ], + [ + 12.0928974, + 49.098417001 + ], + [ + 12.0928231, + 49.097559901 + ], + [ + 12.092833489, + 49.097258738 + ] + ] + } + }, + { + "identifier": "2026-015842--vi-bs.2026-04-09_18-00-00-000.devi-zus.2026-04-09_18-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.14081344396799,12.105408867427519,49.11049684122577,12.100895791017305", + "point": "49.14081344396799,12.105408867427519", + "startLcPosition": "41", + "impact": { + "lower": "Regendorf", + "upper": "Ponholz", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Regensburg", + "title": "A93 | Ponholz - Regendorf", + "coordinate": { + "lat": 49.14081344396799, + "long": 12.105408867427519 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 18:00 bis zum 10.04.26 06:00 Uhr.", + "", + "A93: Weiden -> Regensburg, zwischen 1.8 km hinter AS Ponholz und 2.8 km vor Regendorf", + "", + "L\u00e4nge: 3.5 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Ponholz (AS) nach Regendorf (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.105408867, + 49.140813444 + ], + [ + 12.1054141, + 49.140793101 + ], + [ + 12.1057712, + 49.139686501 + ], + [ + 12.1060629, + 49.138914601 + ], + [ + 12.1063865, + 49.138131301 + ], + [ + 12.1069933, + 49.136740101 + ], + [ + 12.1076821, + 49.135100701 + ], + [ + 12.1079929, + 49.134260401 + ], + [ + 12.1083146, + 49.133312501 + ], + [ + 12.1085288, + 49.132521801 + ], + [ + 12.1086987, + 49.131723301 + ], + [ + 12.108837, + 49.130829201 + ], + [ + 12.1089211, + 49.129964801 + ], + [ + 12.108982, + 49.129488501 + ], + [ + 12.1089619, + 49.128899301 + ], + [ + 12.1089372, + 49.128524801 + ], + [ + 12.1088652, + 49.127455701 + ], + [ + 12.1087267, + 49.126444301 + ], + [ + 12.1085711, + 49.125699701 + ], + [ + 12.1083773, + 49.124902301 + ], + [ + 12.1083539, + 49.124825501 + ], + [ + 12.1080792, + 49.123965101 + ], + [ + 12.1077525, + 49.123054601 + ], + [ + 12.1075142, + 49.122447301 + ], + [ + 12.1070041, + 49.121269101 + ], + [ + 12.1068766, + 49.120950101 + ], + [ + 12.1063147, + 49.119737101 + ], + [ + 12.106246, + 49.119584501 + ], + [ + 12.1059903, + 49.119071001 + ], + [ + 12.1059279, + 49.118954501 + ], + [ + 12.1053924, + 49.117852901 + ], + [ + 12.1050364, + 49.117176901 + ], + [ + 12.104572, + 49.116300601 + ], + [ + 12.1041567, + 49.115579601 + ], + [ + 12.1035142, + 49.114491601 + ], + [ + 12.1031231, + 49.113846201 + ], + [ + 12.101805, + 49.111794601 + ], + [ + 12.1010983, + 49.110779301 + ], + [ + 12.100895791, + 49.110496841 + ] + ] + } + }, + { + "identifier": "2026-015842--vi-bs.2026-04-09_18-00-00-000.devi-zus.2026-04-09_18-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.13906488087156,12.106006110129709,49.11049684122577,12.100895791017305", + "point": "49.13906488087156,12.106006110129709", + "startLcPosition": "41", + "impact": { + "lower": "Regendorf", + "upper": "Ponholz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Regensburg", + "title": "A93 | Ponholz - Regendorf", + "coordinate": { + "lat": 49.13906488087156, + "long": 12.106006110129709 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 18:00 bis zum 16.04.26 06:00 Uhr.", + "", + "A93: Weiden -> Regensburg, zwischen 2.0 km hinter AS Ponholz und 2.8 km vor Regendorf", + "", + "L\u00e4nge: 3.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Ponholz (AS) nach Regendorf (Parkplatz) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.10600611, + 49.139064881 + ], + [ + 12.1060629, + 49.138914601 + ], + [ + 12.1063865, + 49.138131301 + ], + [ + 12.1069933, + 49.136740101 + ], + [ + 12.1076821, + 49.135100701 + ], + [ + 12.1079929, + 49.134260401 + ], + [ + 12.1083146, + 49.133312501 + ], + [ + 12.1085288, + 49.132521801 + ], + [ + 12.1086987, + 49.131723301 + ], + [ + 12.108837, + 49.130829201 + ], + [ + 12.1089211, + 49.129964801 + ], + [ + 12.108982, + 49.129488501 + ], + [ + 12.1089619, + 49.128899301 + ], + [ + 12.1089372, + 49.128524801 + ], + [ + 12.1088652, + 49.127455701 + ], + [ + 12.1087267, + 49.126444301 + ], + [ + 12.1085711, + 49.125699701 + ], + [ + 12.1083773, + 49.124902301 + ], + [ + 12.1083539, + 49.124825501 + ], + [ + 12.1080792, + 49.123965101 + ], + [ + 12.1077525, + 49.123054601 + ], + [ + 12.1075142, + 49.122447301 + ], + [ + 12.1070041, + 49.121269101 + ], + [ + 12.1068766, + 49.120950101 + ], + [ + 12.1063147, + 49.119737101 + ], + [ + 12.106246, + 49.119584501 + ], + [ + 12.1059903, + 49.119071001 + ], + [ + 12.1059279, + 49.118954501 + ], + [ + 12.1053924, + 49.117852901 + ], + [ + 12.1050364, + 49.117176901 + ], + [ + 12.104572, + 49.116300601 + ], + [ + 12.1041567, + 49.115579601 + ], + [ + 12.1035142, + 49.114491601 + ], + [ + 12.1031231, + 49.113846201 + ], + [ + 12.101805, + 49.111794601 + ], + [ + 12.1010983, + 49.110779301 + ], + [ + 12.100895791, + 49.110496841 + ] + ] + } + }, + { + "identifier": "2026-016735--vi-bs.2026-04-13_07-15-00-000.devi-bs.2026-04-13_07-15-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.1579540214952,12.111198435895862,48.976169127429145,12.065256086290008", + "point": "49.1579540214952,12.111198435895862", + "startLcPosition": "42", + "impact": { + "lower": "Pentling", + "upper": "Harberhof Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Holledau", + "title": "A93 | Harberhof Ost - Pentling", + "coordinate": { + "lat": 49.1579540214952, + "long": 12.111198435895862 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:30 bis 15:30 Uhr", + "14.04.26 von 08:30 bis 15:30 Uhr", + "15.04.26 von 08:30 bis 15:30 Uhr", + "16.04.26 von 08:30 bis 15:00 Uhr", + "17.04.26 von 08:30 bis 12:00 Uhr", + "", + "A93: Weiden -> Holledau, zwischen 1.4 km hinter Harberhof Ost und 3.0 km vor Pentling", + "", + "L\u00e4nge: 22.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A93 von Regensburg-S\u00fcd (AS) nach Deutschmeister (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.111198436, + 49.157954021 + ], + [ + 12.1101908, + 49.156705701 + ], + [ + 12.1100351, + 49.156523501 + ], + [ + 12.1098498, + 49.156301601 + ], + [ + 12.1082832, + 49.154403001 + ], + [ + 12.107689, + 49.153626101 + ], + [ + 12.1072297, + 49.152930401 + ], + [ + 12.1071196, + 49.152758901 + ], + [ + 12.1069683, + 49.152512501 + ], + [ + 12.105931, + 49.150551501 + ], + [ + 12.105559, + 49.149525401 + ], + [ + 12.1052353, + 49.148364101 + ], + [ + 12.1051019, + 49.147781301 + ], + [ + 12.1049911, + 49.147143901 + ], + [ + 12.1049112, + 49.146499101 + ], + [ + 12.1048596, + 49.145964101 + ], + [ + 12.1048204, + 49.144880401 + ], + [ + 12.1048553, + 49.144048901 + ], + [ + 12.1048985, + 49.143421601 + ], + [ + 12.1049891, + 49.142756401 + ], + [ + 12.1050922, + 49.142159301 + ], + [ + 12.1052369, + 49.141482001 + ], + [ + 12.1054141, + 49.140793101 + ], + [ + 12.1057712, + 49.139686501 + ], + [ + 12.1060629, + 49.138914601 + ], + [ + 12.1063865, + 49.138131301 + ], + [ + 12.1069933, + 49.136740101 + ], + [ + 12.1076821, + 49.135100701 + ], + [ + 12.1079929, + 49.134260401 + ], + [ + 12.1083146, + 49.133312501 + ], + [ + 12.1085288, + 49.132521801 + ], + [ + 12.1086987, + 49.131723301 + ], + [ + 12.108837, + 49.130829201 + ], + [ + 12.1089211, + 49.129964801 + ], + [ + 12.108982, + 49.129488501 + ], + [ + 12.1089619, + 49.128899301 + ], + [ + 12.1089372, + 49.128524801 + ], + [ + 12.1088652, + 49.127455701 + ], + [ + 12.1087267, + 49.126444301 + ], + [ + 12.1085711, + 49.125699701 + ], + [ + 12.1083773, + 49.124902301 + ], + [ + 12.1083539, + 49.124825501 + ], + [ + 12.1080792, + 49.123965101 + ], + [ + 12.1077525, + 49.123054601 + ], + [ + 12.1075142, + 49.122447301 + ], + [ + 12.1070041, + 49.121269101 + ], + [ + 12.1068766, + 49.120950101 + ], + [ + 12.1063147, + 49.119737101 + ], + [ + 12.106246, + 49.119584501 + ], + [ + 12.1059903, + 49.119071001 + ], + [ + 12.1059279, + 49.118954501 + ], + [ + 12.1053924, + 49.117852901 + ], + [ + 12.1050364, + 49.117176901 + ], + [ + 12.104572, + 49.116300601 + ], + [ + 12.1041567, + 49.115579601 + ], + [ + 12.1035142, + 49.114491601 + ], + [ + 12.1031231, + 49.113846201 + ], + [ + 12.101805, + 49.111794601 + ], + [ + 12.1010983, + 49.110779301 + ], + [ + 12.1003757, + 49.109771401 + ], + [ + 12.0997351, + 49.108898101 + ], + [ + 12.0989615, + 49.107900601 + ], + [ + 12.0975581, + 49.106140801 + ], + [ + 12.0968702, + 49.105288501 + ], + [ + 12.0963561, + 49.104645101 + ], + [ + 12.0957866, + 49.103930601 + ], + [ + 12.0951142, + 49.103069101 + ], + [ + 12.0943301, + 49.101966801 + ], + [ + 12.0938514, + 49.101167301 + ], + [ + 12.0935822, + 49.100643201 + ], + [ + 12.0932581, + 49.099871301 + ], + [ + 12.0930244, + 49.099085501 + ], + [ + 12.0928974, + 49.098417001 + ], + [ + 12.0928231, + 49.097559901 + ], + [ + 12.0928482, + 49.096832301 + ], + [ + 12.092966, + 49.096023401 + ], + [ + 12.0931615, + 49.095245801 + ], + [ + 12.0934424, + 49.094475401 + ], + [ + 12.0942102, + 49.092966401 + ], + [ + 12.0944121, + 49.092645001 + ], + [ + 12.0951728, + 49.091510701 + ], + [ + 12.0965076, + 49.089649601 + ], + [ + 12.0967129, + 49.089357001 + ], + [ + 12.097113, + 49.088812001 + ], + [ + 12.0975388, + 49.088218901 + ], + [ + 12.0981878, + 49.087295701 + ], + [ + 12.0991311, + 49.085849901 + ], + [ + 12.0994565, + 49.085300201 + ], + [ + 12.0998912, + 49.084477301 + ], + [ + 12.1001056, + 49.084010501 + ], + [ + 12.1003328, + 49.083445101 + ], + [ + 12.1005686, + 49.082754601 + ], + [ + 12.1007296, + 49.082007401 + ], + [ + 12.1008358, + 49.081360601 + ], + [ + 12.1008669, + 49.080831001 + ], + [ + 12.1008536, + 49.080223201 + ], + [ + 12.1007697, + 49.079322101 + ], + [ + 12.1006051, + 49.078560301 + ], + [ + 12.1004172, + 49.077981401 + ], + [ + 12.1002591, + 49.077563701 + ], + [ + 12.1000282, + 49.077043001 + ], + [ + 12.0998682, + 49.076723501 + ], + [ + 12.099626, + 49.076290701 + ], + [ + 12.0991911, + 49.075632601 + ], + [ + 12.0987801, + 49.075096301 + ], + [ + 12.0983031, + 49.074538401 + ], + [ + 12.0975131, + 49.073708801 + ], + [ + 12.0967691, + 49.072993201 + ], + [ + 12.0955998, + 49.071871301 + ], + [ + 12.0954308, + 49.071694201 + ], + [ + 12.094997, + 49.071253801 + ], + [ + 12.0945981, + 49.070821301 + ], + [ + 12.0942782, + 49.070429001 + ], + [ + 12.0937891, + 49.069792501 + ], + [ + 12.0935055, + 49.069366001 + ], + [ + 12.0931627, + 49.068813001 + ], + [ + 12.0928892, + 49.068301001 + ], + [ + 12.0925578, + 49.067558501 + ], + [ + 12.0923714, + 49.067066601 + ], + [ + 12.0922384, + 49.066644201 + ], + [ + 12.0920968, + 49.066110501 + ], + [ + 12.0920052, + 49.065658501 + ], + [ + 12.091948, + 49.065330901 + ], + [ + 12.0918936, + 49.064839901 + ], + [ + 12.0918639, + 49.064400201 + ], + [ + 12.0918645, + 49.063930101 + ], + [ + 12.091872, + 49.063553701 + ], + [ + 12.0919157, + 49.063059401 + ], + [ + 12.0920039, + 49.062410601 + ], + [ + 12.0922358, + 49.061200501 + ], + [ + 12.0924255, + 49.060332501 + ], + [ + 12.0926, + 49.059460401 + ], + [ + 12.0927022, + 49.058863501 + ], + [ + 12.0927683, + 49.058236101 + ], + [ + 12.0928146, + 49.057575701 + ], + [ + 12.092804, + 49.056902901 + ], + [ + 12.0927454, + 49.056312001 + ], + [ + 12.0926295, + 49.055698801 + ], + [ + 12.0922889, + 49.054341701 + ], + [ + 12.0921132, + 49.053635001 + ], + [ + 12.0919741, + 49.052864601 + ], + [ + 12.0919223, + 49.052334001 + ], + [ + 12.0919142, + 49.051863601 + ], + [ + 12.0919548, + 49.051261801 + ], + [ + 12.0920514, + 49.050686701 + ], + [ + 12.0921511, + 49.050248001 + ], + [ + 12.0923021, + 49.049729801 + ], + [ + 12.0924814, + 49.049308301 + ], + [ + 12.0926913, + 49.048886901 + ], + [ + 12.0930601, + 49.048297001 + ], + [ + 12.0933634, + 49.047889201 + ], + [ + 12.0937044, + 49.047512401 + ], + [ + 12.0942705, + 49.046880401 + ], + [ + 12.0947534, + 49.046341601 + ], + [ + 12.0949972, + 49.046052501 + ], + [ + 12.0952762, + 49.045686801 + ], + [ + 12.09546, + 49.045434401 + ], + [ + 12.0956092, + 49.045179301 + ], + [ + 12.0957368, + 49.044948201 + ], + [ + 12.0958772, + 49.044601101 + ], + [ + 12.0959666, + 49.044336601 + ], + [ + 12.0960456, + 49.044049201 + ], + [ + 12.0960868, + 49.043759401 + ], + [ + 12.0961064, + 49.043366301 + ], + [ + 12.0960914, + 49.043041201 + ], + [ + 12.0960711, + 49.042784801 + ], + [ + 12.096026, + 49.042510901 + ], + [ + 12.0959905, + 49.042371401 + ], + [ + 12.0959043, + 49.042111901 + ], + [ + 12.0958188, + 49.041890501 + ], + [ + 12.0957006, + 49.041614501 + ], + [ + 12.0955324, + 49.041320001 + ], + [ + 12.0952777, + 49.040948901 + ], + [ + 12.0950387, + 49.040649201 + ], + [ + 12.0947351, + 49.040334701 + ], + [ + 12.094385, + 49.040030201 + ], + [ + 12.0941351, + 49.039826601 + ], + [ + 12.0937774, + 49.039580401 + ], + [ + 12.0935347, + 49.039422801 + ], + [ + 12.0930279, + 49.039134501 + ], + [ + 12.0926235, + 49.038938701 + ], + [ + 12.0921369, + 49.038726401 + ], + [ + 12.0916328, + 49.038531001 + ], + [ + 12.0910364, + 49.038322501 + ], + [ + 12.090753, + 49.038227401 + ], + [ + 12.0899302, + 49.037915201 + ], + [ + 12.0897209, + 49.037830201 + ], + [ + 12.0893307, + 49.037662701 + ], + [ + 12.0889728, + 49.037504201 + ], + [ + 12.0885525, + 49.037284801 + ], + [ + 12.0880752, + 49.037037101 + ], + [ + 12.0878015, + 49.036881401 + ], + [ + 12.0874759, + 49.036679501 + ], + [ + 12.0867484, + 49.036136501 + ], + [ + 12.0861226, + 49.035588401 + ], + [ + 12.0827292, + 49.032031501 + ], + [ + 12.0823267, + 49.031645001 + ], + [ + 12.0817291, + 49.031117201 + ], + [ + 12.0811193, + 49.030674701 + ], + [ + 12.0806015, + 49.030334001 + ], + [ + 12.0801147, + 49.030094801 + ], + [ + 12.079824, + 49.029955801 + ], + [ + 12.0795535, + 49.029837801 + ], + [ + 12.0792897, + 49.029733601 + ], + [ + 12.0790703, + 49.029657101 + ], + [ + 12.0784219, + 49.029438001 + ], + [ + 12.0763656, + 49.028790301 + ], + [ + 12.0748128, + 49.028300801 + ], + [ + 12.0742098, + 49.028100901 + ], + [ + 12.0736209, + 49.027890501 + ], + [ + 12.0731346, + 49.027690701 + ], + [ + 12.0727832, + 49.027522201 + ], + [ + 12.0724627, + 49.027358301 + ], + [ + 12.0721893, + 49.027208401 + ], + [ + 12.0718899, + 49.027035301 + ], + [ + 12.0715427, + 49.026807501 + ], + [ + 12.0712379, + 49.026585801 + ], + [ + 12.0710746, + 49.026458701 + ], + [ + 12.0708512, + 49.026258201 + ], + [ + 12.0705701, + 49.025991901 + ], + [ + 12.0704362, + 49.025846701 + ], + [ + 12.0703295, + 49.025727601 + ], + [ + 12.0702129, + 49.025575701 + ], + [ + 12.0700645, + 49.025387701 + ], + [ + 12.0698935, + 49.025146501 + ], + [ + 12.0698262, + 49.025028101 + ], + [ + 12.0697395, + 49.024871801 + ], + [ + 12.0695745, + 49.024515601 + ], + [ + 12.0694729, + 49.024248901 + ], + [ + 12.0693154, + 49.023727601 + ], + [ + 12.0691594, + 49.022773601 + ], + [ + 12.0691147, + 49.022447401 + ], + [ + 12.0690652, + 49.022102801 + ], + [ + 12.0690133, + 49.021802901 + ], + [ + 12.0689473, + 49.021452001 + ], + [ + 12.0688695, + 49.021170701 + ], + [ + 12.0688283, + 49.021059401 + ], + [ + 12.0686622, + 49.020562901 + ], + [ + 12.0684788, + 49.020137101 + ], + [ + 12.0682965, + 49.019782701 + ], + [ + 12.0680813, + 49.019452901 + ], + [ + 12.0658276, + 49.016380501 + ], + [ + 12.0651715, + 49.015486101 + ], + [ + 12.0645238, + 49.014774601 + ], + [ + 12.0641807, + 49.014401501 + ], + [ + 12.0639285, + 49.014121301 + ], + [ + 12.0633659, + 49.013533101 + ], + [ + 12.0629088, + 49.013040801 + ], + [ + 12.0627251, + 49.012830501 + ], + [ + 12.0623336, + 49.012373601 + ], + [ + 12.0618672, + 49.011784301 + ], + [ + 12.0615431, + 49.011299601 + ], + [ + 12.0612838, + 49.010842301 + ], + [ + 12.0611251, + 49.010499001 + ], + [ + 12.0609902, + 49.010185601 + ], + [ + 12.0608719, + 49.009859801 + ], + [ + 12.0607701, + 49.009530801 + ], + [ + 12.0606252, + 49.008958501 + ], + [ + 12.060553, + 49.008295301 + ], + [ + 12.0605369, + 49.007882701 + ], + [ + 12.0605734, + 49.007334601 + ], + [ + 12.06072, + 49.006496401 + ], + [ + 12.0608345, + 49.006067101 + ], + [ + 12.0609463, + 49.005751101 + ], + [ + 12.0611919, + 49.005129801 + ], + [ + 12.061331, + 49.004817401 + ], + [ + 12.0619219, + 49.003588001 + ], + [ + 12.0621444, + 49.003178201 + ], + [ + 12.062774, + 49.001855301 + ], + [ + 12.0628994, + 49.001518301 + ], + [ + 12.0629495, + 49.001411201 + ], + [ + 12.0631029, + 49.000983401 + ], + [ + 12.0631926, + 49.000681301 + ], + [ + 12.0633297, + 49.000084501 + ], + [ + 12.0634164, + 48.999555901 + ], + [ + 12.0634614, + 48.999015101 + ], + [ + 12.0634631, + 48.998598801 + ], + [ + 12.0634344, + 48.998166101 + ], + [ + 12.0634177, + 48.997937401 + ], + [ + 12.0634162, + 48.997914301 + ], + [ + 12.0634047, + 48.997743201 + ], + [ + 12.0633589, + 48.997419301 + ], + [ + 12.0632643, + 48.996996201 + ], + [ + 12.0631741, + 48.996624001 + ], + [ + 12.0630241, + 48.996151201 + ], + [ + 12.0629004, + 48.995825301 + ], + [ + 12.0626417, + 48.995219301 + ], + [ + 12.0623714, + 48.994648301 + ], + [ + 12.0622341, + 48.994484301 + ], + [ + 12.0617317, + 48.993436001 + ], + [ + 12.0617317, + 48.993327501 + ], + [ + 12.0612458, + 48.992172601 + ], + [ + 12.0609704, + 48.991315201 + ], + [ + 12.0609089, + 48.991070801 + ], + [ + 12.060842, + 48.990821201 + ], + [ + 12.060788, + 48.990615401 + ], + [ + 12.0607302, + 48.990323901 + ], + [ + 12.0606778, + 48.990030901 + ], + [ + 12.0606259, + 48.989701501 + ], + [ + 12.0605833, + 48.989344201 + ], + [ + 12.0605431, + 48.988984201 + ], + [ + 12.060522, + 48.988251301 + ], + [ + 12.0605279, + 48.987699401 + ], + [ + 12.0605384, + 48.987498201 + ], + [ + 12.0605772, + 48.986892501 + ], + [ + 12.0607037, + 48.986087001 + ], + [ + 12.0608348, + 48.985529501 + ], + [ + 12.0609881, + 48.984963501 + ], + [ + 12.0613039, + 48.983984401 + ], + [ + 12.0617216, + 48.982915801 + ], + [ + 12.0626986, + 48.980712401 + ], + [ + 12.063016, + 48.980051701 + ], + [ + 12.0634781, + 48.979140001 + ], + [ + 12.0638022, + 48.978537001 + ], + [ + 12.0646303, + 48.977121701 + ], + [ + 12.0646713, + 48.977057501 + ], + [ + 12.0649172, + 48.976672001 + ], + [ + 12.065256086, + 48.976169127 + ] + ] + } + }, + { + "identifier": "2026-016735--vi-bs.2026-04-13_07-15-00-000.devi-bs.2026-04-13_07-15-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.1579540214952,12.111198435895862,48.976169127429145,12.065256086290008", + "point": "49.1579540214952,12.111198435895862", + "startLcPosition": "42", + "impact": { + "lower": "Pentling", + "upper": "Harberhof Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Holledau", + "title": "A93 | Harberhof Ost - Pentling", + "coordinate": { + "lat": 49.1579540214952, + "long": 12.111198435895862 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:30 bis 15:30 Uhr", + "14.04.26 von 08:30 bis 15:30 Uhr", + "15.04.26 von 08:30 bis 15:30 Uhr", + "16.04.26 von 08:30 bis 15:00 Uhr", + "17.04.26 von 08:30 bis 12:00 Uhr", + "", + "A93: Weiden -> Holledau, zwischen 1.4 km hinter Harberhof Ost und 3.0 km vor Pentling", + "", + "L\u00e4nge: 22.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A93 von Regensburg-S\u00fcd (AS) nach Deutschmeister (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.111198436, + 49.157954021 + ], + [ + 12.1101908, + 49.156705701 + ], + [ + 12.1100351, + 49.156523501 + ], + [ + 12.1098498, + 49.156301601 + ], + [ + 12.1082832, + 49.154403001 + ], + [ + 12.107689, + 49.153626101 + ], + [ + 12.1072297, + 49.152930401 + ], + [ + 12.1071196, + 49.152758901 + ], + [ + 12.1069683, + 49.152512501 + ], + [ + 12.105931, + 49.150551501 + ], + [ + 12.105559, + 49.149525401 + ], + [ + 12.1052353, + 49.148364101 + ], + [ + 12.1051019, + 49.147781301 + ], + [ + 12.1049911, + 49.147143901 + ], + [ + 12.1049112, + 49.146499101 + ], + [ + 12.1048596, + 49.145964101 + ], + [ + 12.1048204, + 49.144880401 + ], + [ + 12.1048553, + 49.144048901 + ], + [ + 12.1048985, + 49.143421601 + ], + [ + 12.1049891, + 49.142756401 + ], + [ + 12.1050922, + 49.142159301 + ], + [ + 12.1052369, + 49.141482001 + ], + [ + 12.1054141, + 49.140793101 + ], + [ + 12.1057712, + 49.139686501 + ], + [ + 12.1060629, + 49.138914601 + ], + [ + 12.1063865, + 49.138131301 + ], + [ + 12.1069933, + 49.136740101 + ], + [ + 12.1076821, + 49.135100701 + ], + [ + 12.1079929, + 49.134260401 + ], + [ + 12.1083146, + 49.133312501 + ], + [ + 12.1085288, + 49.132521801 + ], + [ + 12.1086987, + 49.131723301 + ], + [ + 12.108837, + 49.130829201 + ], + [ + 12.1089211, + 49.129964801 + ], + [ + 12.108982, + 49.129488501 + ], + [ + 12.1089619, + 49.128899301 + ], + [ + 12.1089372, + 49.128524801 + ], + [ + 12.1088652, + 49.127455701 + ], + [ + 12.1087267, + 49.126444301 + ], + [ + 12.1085711, + 49.125699701 + ], + [ + 12.1083773, + 49.124902301 + ], + [ + 12.1083539, + 49.124825501 + ], + [ + 12.1080792, + 49.123965101 + ], + [ + 12.1077525, + 49.123054601 + ], + [ + 12.1075142, + 49.122447301 + ], + [ + 12.1070041, + 49.121269101 + ], + [ + 12.1068766, + 49.120950101 + ], + [ + 12.1063147, + 49.119737101 + ], + [ + 12.106246, + 49.119584501 + ], + [ + 12.1059903, + 49.119071001 + ], + [ + 12.1059279, + 49.118954501 + ], + [ + 12.1053924, + 49.117852901 + ], + [ + 12.1050364, + 49.117176901 + ], + [ + 12.104572, + 49.116300601 + ], + [ + 12.1041567, + 49.115579601 + ], + [ + 12.1035142, + 49.114491601 + ], + [ + 12.1031231, + 49.113846201 + ], + [ + 12.101805, + 49.111794601 + ], + [ + 12.1010983, + 49.110779301 + ], + [ + 12.1003757, + 49.109771401 + ], + [ + 12.0997351, + 49.108898101 + ], + [ + 12.0989615, + 49.107900601 + ], + [ + 12.0975581, + 49.106140801 + ], + [ + 12.0968702, + 49.105288501 + ], + [ + 12.0963561, + 49.104645101 + ], + [ + 12.0957866, + 49.103930601 + ], + [ + 12.0951142, + 49.103069101 + ], + [ + 12.0943301, + 49.101966801 + ], + [ + 12.0938514, + 49.101167301 + ], + [ + 12.0935822, + 49.100643201 + ], + [ + 12.0932581, + 49.099871301 + ], + [ + 12.0930244, + 49.099085501 + ], + [ + 12.0928974, + 49.098417001 + ], + [ + 12.0928231, + 49.097559901 + ], + [ + 12.0928482, + 49.096832301 + ], + [ + 12.092966, + 49.096023401 + ], + [ + 12.0931615, + 49.095245801 + ], + [ + 12.0934424, + 49.094475401 + ], + [ + 12.0942102, + 49.092966401 + ], + [ + 12.0944121, + 49.092645001 + ], + [ + 12.0951728, + 49.091510701 + ], + [ + 12.0965076, + 49.089649601 + ], + [ + 12.0967129, + 49.089357001 + ], + [ + 12.097113, + 49.088812001 + ], + [ + 12.0975388, + 49.088218901 + ], + [ + 12.0981878, + 49.087295701 + ], + [ + 12.0991311, + 49.085849901 + ], + [ + 12.0994565, + 49.085300201 + ], + [ + 12.0998912, + 49.084477301 + ], + [ + 12.1001056, + 49.084010501 + ], + [ + 12.1003328, + 49.083445101 + ], + [ + 12.1005686, + 49.082754601 + ], + [ + 12.1007296, + 49.082007401 + ], + [ + 12.1008358, + 49.081360601 + ], + [ + 12.1008669, + 49.080831001 + ], + [ + 12.1008536, + 49.080223201 + ], + [ + 12.1007697, + 49.079322101 + ], + [ + 12.1006051, + 49.078560301 + ], + [ + 12.1004172, + 49.077981401 + ], + [ + 12.1002591, + 49.077563701 + ], + [ + 12.1000282, + 49.077043001 + ], + [ + 12.0998682, + 49.076723501 + ], + [ + 12.099626, + 49.076290701 + ], + [ + 12.0991911, + 49.075632601 + ], + [ + 12.0987801, + 49.075096301 + ], + [ + 12.0983031, + 49.074538401 + ], + [ + 12.0975131, + 49.073708801 + ], + [ + 12.0967691, + 49.072993201 + ], + [ + 12.0955998, + 49.071871301 + ], + [ + 12.0954308, + 49.071694201 + ], + [ + 12.094997, + 49.071253801 + ], + [ + 12.0945981, + 49.070821301 + ], + [ + 12.0942782, + 49.070429001 + ], + [ + 12.0937891, + 49.069792501 + ], + [ + 12.0935055, + 49.069366001 + ], + [ + 12.0931627, + 49.068813001 + ], + [ + 12.0928892, + 49.068301001 + ], + [ + 12.0925578, + 49.067558501 + ], + [ + 12.0923714, + 49.067066601 + ], + [ + 12.0922384, + 49.066644201 + ], + [ + 12.0920968, + 49.066110501 + ], + [ + 12.0920052, + 49.065658501 + ], + [ + 12.091948, + 49.065330901 + ], + [ + 12.0918936, + 49.064839901 + ], + [ + 12.0918639, + 49.064400201 + ], + [ + 12.0918645, + 49.063930101 + ], + [ + 12.091872, + 49.063553701 + ], + [ + 12.0919157, + 49.063059401 + ], + [ + 12.0920039, + 49.062410601 + ], + [ + 12.0922358, + 49.061200501 + ], + [ + 12.0924255, + 49.060332501 + ], + [ + 12.0926, + 49.059460401 + ], + [ + 12.0927022, + 49.058863501 + ], + [ + 12.0927683, + 49.058236101 + ], + [ + 12.0928146, + 49.057575701 + ], + [ + 12.092804, + 49.056902901 + ], + [ + 12.0927454, + 49.056312001 + ], + [ + 12.0926295, + 49.055698801 + ], + [ + 12.0922889, + 49.054341701 + ], + [ + 12.0921132, + 49.053635001 + ], + [ + 12.0919741, + 49.052864601 + ], + [ + 12.0919223, + 49.052334001 + ], + [ + 12.0919142, + 49.051863601 + ], + [ + 12.0919548, + 49.051261801 + ], + [ + 12.0920514, + 49.050686701 + ], + [ + 12.0921511, + 49.050248001 + ], + [ + 12.0923021, + 49.049729801 + ], + [ + 12.0924814, + 49.049308301 + ], + [ + 12.0926913, + 49.048886901 + ], + [ + 12.0930601, + 49.048297001 + ], + [ + 12.0933634, + 49.047889201 + ], + [ + 12.0937044, + 49.047512401 + ], + [ + 12.0942705, + 49.046880401 + ], + [ + 12.0947534, + 49.046341601 + ], + [ + 12.0949972, + 49.046052501 + ], + [ + 12.0952762, + 49.045686801 + ], + [ + 12.09546, + 49.045434401 + ], + [ + 12.0956092, + 49.045179301 + ], + [ + 12.0957368, + 49.044948201 + ], + [ + 12.0958772, + 49.044601101 + ], + [ + 12.0959666, + 49.044336601 + ], + [ + 12.0960456, + 49.044049201 + ], + [ + 12.0960868, + 49.043759401 + ], + [ + 12.0961064, + 49.043366301 + ], + [ + 12.0960914, + 49.043041201 + ], + [ + 12.0960711, + 49.042784801 + ], + [ + 12.096026, + 49.042510901 + ], + [ + 12.0959905, + 49.042371401 + ], + [ + 12.0959043, + 49.042111901 + ], + [ + 12.0958188, + 49.041890501 + ], + [ + 12.0957006, + 49.041614501 + ], + [ + 12.0955324, + 49.041320001 + ], + [ + 12.0952777, + 49.040948901 + ], + [ + 12.0950387, + 49.040649201 + ], + [ + 12.0947351, + 49.040334701 + ], + [ + 12.094385, + 49.040030201 + ], + [ + 12.0941351, + 49.039826601 + ], + [ + 12.0937774, + 49.039580401 + ], + [ + 12.0935347, + 49.039422801 + ], + [ + 12.0930279, + 49.039134501 + ], + [ + 12.0926235, + 49.038938701 + ], + [ + 12.0921369, + 49.038726401 + ], + [ + 12.0916328, + 49.038531001 + ], + [ + 12.0910364, + 49.038322501 + ], + [ + 12.090753, + 49.038227401 + ], + [ + 12.0899302, + 49.037915201 + ], + [ + 12.0897209, + 49.037830201 + ], + [ + 12.0893307, + 49.037662701 + ], + [ + 12.0889728, + 49.037504201 + ], + [ + 12.0885525, + 49.037284801 + ], + [ + 12.0880752, + 49.037037101 + ], + [ + 12.0878015, + 49.036881401 + ], + [ + 12.0874759, + 49.036679501 + ], + [ + 12.0867484, + 49.036136501 + ], + [ + 12.0861226, + 49.035588401 + ], + [ + 12.0827292, + 49.032031501 + ], + [ + 12.0823267, + 49.031645001 + ], + [ + 12.0817291, + 49.031117201 + ], + [ + 12.0811193, + 49.030674701 + ], + [ + 12.0806015, + 49.030334001 + ], + [ + 12.0801147, + 49.030094801 + ], + [ + 12.079824, + 49.029955801 + ], + [ + 12.0795535, + 49.029837801 + ], + [ + 12.0792897, + 49.029733601 + ], + [ + 12.0790703, + 49.029657101 + ], + [ + 12.0784219, + 49.029438001 + ], + [ + 12.0763656, + 49.028790301 + ], + [ + 12.0748128, + 49.028300801 + ], + [ + 12.0742098, + 49.028100901 + ], + [ + 12.0736209, + 49.027890501 + ], + [ + 12.0731346, + 49.027690701 + ], + [ + 12.0727832, + 49.027522201 + ], + [ + 12.0724627, + 49.027358301 + ], + [ + 12.0721893, + 49.027208401 + ], + [ + 12.0718899, + 49.027035301 + ], + [ + 12.0715427, + 49.026807501 + ], + [ + 12.0712379, + 49.026585801 + ], + [ + 12.0710746, + 49.026458701 + ], + [ + 12.0708512, + 49.026258201 + ], + [ + 12.0705701, + 49.025991901 + ], + [ + 12.0704362, + 49.025846701 + ], + [ + 12.0703295, + 49.025727601 + ], + [ + 12.0702129, + 49.025575701 + ], + [ + 12.0700645, + 49.025387701 + ], + [ + 12.0698935, + 49.025146501 + ], + [ + 12.0698262, + 49.025028101 + ], + [ + 12.0697395, + 49.024871801 + ], + [ + 12.0695745, + 49.024515601 + ], + [ + 12.0694729, + 49.024248901 + ], + [ + 12.0693154, + 49.023727601 + ], + [ + 12.0691594, + 49.022773601 + ], + [ + 12.0691147, + 49.022447401 + ], + [ + 12.0690652, + 49.022102801 + ], + [ + 12.0690133, + 49.021802901 + ], + [ + 12.0689473, + 49.021452001 + ], + [ + 12.0688695, + 49.021170701 + ], + [ + 12.0688283, + 49.021059401 + ], + [ + 12.0686622, + 49.020562901 + ], + [ + 12.0684788, + 49.020137101 + ], + [ + 12.0682965, + 49.019782701 + ], + [ + 12.0680813, + 49.019452901 + ], + [ + 12.0658276, + 49.016380501 + ], + [ + 12.0651715, + 49.015486101 + ], + [ + 12.0645238, + 49.014774601 + ], + [ + 12.0641807, + 49.014401501 + ], + [ + 12.0639285, + 49.014121301 + ], + [ + 12.0633659, + 49.013533101 + ], + [ + 12.0629088, + 49.013040801 + ], + [ + 12.0627251, + 49.012830501 + ], + [ + 12.0623336, + 49.012373601 + ], + [ + 12.0618672, + 49.011784301 + ], + [ + 12.0615431, + 49.011299601 + ], + [ + 12.0612838, + 49.010842301 + ], + [ + 12.0611251, + 49.010499001 + ], + [ + 12.0609902, + 49.010185601 + ], + [ + 12.0608719, + 49.009859801 + ], + [ + 12.0607701, + 49.009530801 + ], + [ + 12.0606252, + 49.008958501 + ], + [ + 12.060553, + 49.008295301 + ], + [ + 12.0605369, + 49.007882701 + ], + [ + 12.0605734, + 49.007334601 + ], + [ + 12.06072, + 49.006496401 + ], + [ + 12.0608345, + 49.006067101 + ], + [ + 12.0609463, + 49.005751101 + ], + [ + 12.0611919, + 49.005129801 + ], + [ + 12.061331, + 49.004817401 + ], + [ + 12.0619219, + 49.003588001 + ], + [ + 12.0621444, + 49.003178201 + ], + [ + 12.062774, + 49.001855301 + ], + [ + 12.0628994, + 49.001518301 + ], + [ + 12.0629495, + 49.001411201 + ], + [ + 12.0631029, + 49.000983401 + ], + [ + 12.0631926, + 49.000681301 + ], + [ + 12.0633297, + 49.000084501 + ], + [ + 12.0634164, + 48.999555901 + ], + [ + 12.0634614, + 48.999015101 + ], + [ + 12.0634631, + 48.998598801 + ], + [ + 12.0634344, + 48.998166101 + ], + [ + 12.0634177, + 48.997937401 + ], + [ + 12.0634162, + 48.997914301 + ], + [ + 12.0634047, + 48.997743201 + ], + [ + 12.0633589, + 48.997419301 + ], + [ + 12.0632643, + 48.996996201 + ], + [ + 12.0631741, + 48.996624001 + ], + [ + 12.0630241, + 48.996151201 + ], + [ + 12.0629004, + 48.995825301 + ], + [ + 12.0626417, + 48.995219301 + ], + [ + 12.0623714, + 48.994648301 + ], + [ + 12.0622341, + 48.994484301 + ], + [ + 12.0617317, + 48.993436001 + ], + [ + 12.0617317, + 48.993327501 + ], + [ + 12.0612458, + 48.992172601 + ], + [ + 12.0609704, + 48.991315201 + ], + [ + 12.0609089, + 48.991070801 + ], + [ + 12.060842, + 48.990821201 + ], + [ + 12.060788, + 48.990615401 + ], + [ + 12.0607302, + 48.990323901 + ], + [ + 12.0606778, + 48.990030901 + ], + [ + 12.0606259, + 48.989701501 + ], + [ + 12.0605833, + 48.989344201 + ], + [ + 12.0605431, + 48.988984201 + ], + [ + 12.060522, + 48.988251301 + ], + [ + 12.0605279, + 48.987699401 + ], + [ + 12.0605384, + 48.987498201 + ], + [ + 12.0605772, + 48.986892501 + ], + [ + 12.0607037, + 48.986087001 + ], + [ + 12.0608348, + 48.985529501 + ], + [ + 12.0609881, + 48.984963501 + ], + [ + 12.0613039, + 48.983984401 + ], + [ + 12.0617216, + 48.982915801 + ], + [ + 12.0626986, + 48.980712401 + ], + [ + 12.063016, + 48.980051701 + ], + [ + 12.0634781, + 48.979140001 + ], + [ + 12.0638022, + 48.978537001 + ], + [ + 12.0646303, + 48.977121701 + ], + [ + 12.0646713, + 48.977057501 + ], + [ + 12.0649172, + 48.976672001 + ], + [ + 12.065256086, + 48.976169127 + ] + ] + } + }, + { + "identifier": "2025-050324--vi-bs.2026-03-10_00-00-00-000.devi-zus.2026-02-02_00-00-00-000_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.44482458713037,12.189344976520482,49.45692870837755,12.194463956941716", + "point": "49.44482458713037,12.189344976520482", + "startLcPosition": "52", + "impact": { + "lower": "Schlo\u00dfberg", + "upper": "Schwarzenfeld", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Regensburg -> Weiden", + "title": "A93 | Schwarzenfeld - Schlo\u00dfberg", + "startTimestamp": "2026-03-10T00:00:00+01:00", + "coordinate": { + "lat": 49.44482458713037, + "long": 12.189344976520482 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 00:00 Uhr", + "Ende: 01.03.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.03.27)", + "", + "A93: Regensburg -> Weiden, zwischen 7.1 km hinter AS Schwarzenfeld und 2.1 km vor Schlo\u00dfberg", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A93 Br\u00fcckenneubau Bw 144c" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.189344977, + 49.444824587 + ], + [ + 12.189532, + 49.445099701 + ], + [ + 12.1900622, + 49.445928701 + ], + [ + 12.1903173, + 49.446359001 + ], + [ + 12.1905702, + 49.446792901 + ], + [ + 12.1910622, + 49.447660501 + ], + [ + 12.1914148, + 49.448326901 + ], + [ + 12.1917588, + 49.449011601 + ], + [ + 12.1923807, + 49.450360801 + ], + [ + 12.1924378, + 49.450497301 + ], + [ + 12.1927603, + 49.451279701 + ], + [ + 12.193167, + 49.452317401 + ], + [ + 12.1933369, + 49.452804801 + ], + [ + 12.1935265, + 49.453366301 + ], + [ + 12.193707, + 49.453932001 + ], + [ + 12.1937679, + 49.454130501 + ], + [ + 12.1939892, + 49.454936201 + ], + [ + 12.1941171, + 49.455421401 + ], + [ + 12.194206, + 49.455777701 + ], + [ + 12.1943708, + 49.456494001 + ], + [ + 12.194463957, + 49.456928708 + ] + ] + } + }, + { + "identifier": "2026-017584--vi-bs.2026-04-10_07-00-00-000.devi-zus.2026-04-10_07-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.41289182556882,12.164787540749506,49.326685061382754,12.153683182077758", + "point": "49.41289182556882,12.164787540749506", + "startLcPosition": "53", + "impact": { + "lower": "Schwandorf-Mitte", + "upper": "Nabburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Regensburg", + "title": "A93 | Nabburg - Schwandorf-Mitte", + "coordinate": { + "lat": 49.41289182556882, + "long": 12.164787540749506 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 13:00 Uhr", + "", + "A93: Weiden -> Regensburg, zwischen 5.2 km hinter AS Nabburg und 1.4 km vor AS Schwandorf-Mitte", + "", + "L\u00e4nge: 9.99 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A93 von Oberpf\u00e4lzer Wald (AK) nach Gr\u00fcnau (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.164787541, + 49.412891826 + ], + [ + 12.1645447, + 49.412053201 + ], + [ + 12.1643139, + 49.411207501 + ], + [ + 12.1641429, + 49.410498401 + ], + [ + 12.1639791, + 49.409784001 + ], + [ + 12.1636748, + 49.408354101 + ], + [ + 12.1636462, + 49.408211601 + ], + [ + 12.1636198, + 49.408093301 + ], + [ + 12.1633151, + 49.406596801 + ], + [ + 12.1631617, + 49.405882801 + ], + [ + 12.1630756, + 49.405524301 + ], + [ + 12.1629934, + 49.405174801 + ], + [ + 12.1627602, + 49.404316701 + ], + [ + 12.1624814, + 49.403474401 + ], + [ + 12.1622789, + 49.402945201 + ], + [ + 12.1620589, + 49.402432301 + ], + [ + 12.1618101, + 49.401911301 + ], + [ + 12.161541, + 49.401403701 + ], + [ + 12.1613295, + 49.401032201 + ], + [ + 12.1611096, + 49.400665001 + ], + [ + 12.1606308, + 49.399958201 + ], + [ + 12.1602909, + 49.399496101 + ], + [ + 12.1599317, + 49.399048401 + ], + [ + 12.1595607, + 49.398606701 + ], + [ + 12.1591796, + 49.398181301 + ], + [ + 12.1585035, + 49.397509001 + ], + [ + 12.1581536, + 49.397176301 + ], + [ + 12.1577982, + 49.396851501 + ], + [ + 12.1574199, + 49.396525401 + ], + [ + 12.1570358, + 49.396212701 + ], + [ + 12.1566462, + 49.395902201 + ], + [ + 12.1562427, + 49.395604601 + ], + [ + 12.1555549, + 49.395113401 + ], + [ + 12.1547987, + 49.394596301 + ], + [ + 12.153306, + 49.393625901 + ], + [ + 12.1527888, + 49.393285401 + ], + [ + 12.1521804, + 49.392873901 + ], + [ + 12.1516783, + 49.392515601 + ], + [ + 12.1512046, + 49.392149801 + ], + [ + 12.1509083, + 49.391906201 + ], + [ + 12.1502159, + 49.391243701 + ], + [ + 12.1499627, + 49.390973701 + ], + [ + 12.1498227, + 49.390825901 + ], + [ + 12.1494408, + 49.390332901 + ], + [ + 12.149179, + 49.389959901 + ], + [ + 12.1488922, + 49.389502101 + ], + [ + 12.1486566, + 49.389056301 + ], + [ + 12.148451, + 49.388615801 + ], + [ + 12.1482899, + 49.388206301 + ], + [ + 12.1482224, + 49.387994001 + ], + [ + 12.1481494, + 49.387734801 + ], + [ + 12.1480745, + 49.387474401 + ], + [ + 12.1479951, + 49.387056301 + ], + [ + 12.1479317, + 49.386516601 + ], + [ + 12.1479117, + 49.386288801 + ], + [ + 12.1479099, + 49.385958101 + ], + [ + 12.1479237, + 49.385544801 + ], + [ + 12.1479717, + 49.385103001 + ], + [ + 12.1480307, + 49.384733901 + ], + [ + 12.1481024, + 49.384364901 + ], + [ + 12.1482419, + 49.383826501 + ], + [ + 12.1484952, + 49.383019301 + ], + [ + 12.148799, + 49.382236001 + ], + [ + 12.1492835, + 49.381116001 + ], + [ + 12.1497818, + 49.380005301 + ], + [ + 12.1507304, + 49.377787501 + ], + [ + 12.1511076, + 49.376844001 + ], + [ + 12.1514252, + 49.375904501 + ], + [ + 12.1516918, + 49.374959901 + ], + [ + 12.1519282, + 49.374010901 + ], + [ + 12.1522106, + 49.372691601 + ], + [ + 12.1524708, + 49.370648901 + ], + [ + 12.1524878, + 49.370384701 + ], + [ + 12.1525378, + 49.369312001 + ], + [ + 12.1525357, + 49.368478801 + ], + [ + 12.1524628, + 49.367332801 + ], + [ + 12.1523819, + 49.366353001 + ], + [ + 12.1522139, + 49.364999701 + ], + [ + 12.1503346, + 49.349445901 + ], + [ + 12.1502833, + 49.349008301 + ], + [ + 12.1502085, + 49.348395901 + ], + [ + 12.1500164, + 49.346714701 + ], + [ + 12.1498631, + 49.344892301 + ], + [ + 12.1497857, + 49.343005401 + ], + [ + 12.1497912, + 49.342264001 + ], + [ + 12.149838, + 49.341416301 + ], + [ + 12.1498716, + 49.340749701 + ], + [ + 12.1498858, + 49.340619901 + ], + [ + 12.1500864, + 49.338779901 + ], + [ + 12.1501805, + 49.338183301 + ], + [ + 12.1505893, + 49.336108101 + ], + [ + 12.1508737, + 49.334998601 + ], + [ + 12.1511792, + 49.333938001 + ], + [ + 12.1516057, + 49.332670301 + ], + [ + 12.1519521, + 49.331712801 + ], + [ + 12.1520575, + 49.331421201 + ], + [ + 12.152523, + 49.330174601 + ], + [ + 12.1530192, + 49.328805301 + ], + [ + 12.153221, + 49.328210201 + ], + [ + 12.153296, + 49.327969601 + ], + [ + 12.1535651, + 49.327107101 + ], + [ + 12.153683182, + 49.326685061 + ] + ] + } + }, + { + "identifier": "2026-017584--vi-bs.2026-04-10_07-00-00-000.devi-zus.2026-04-10_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.41289182556882,12.164787540749506,49.326685061382754,12.153683182077758", + "point": "49.41289182556882,12.164787540749506", + "startLcPosition": "53", + "impact": { + "lower": "Schwandorf-Mitte", + "upper": "Nabburg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weiden -> Regensburg", + "title": "A93 | Nabburg - Schwandorf-Mitte", + "coordinate": { + "lat": 49.41289182556882, + "long": 12.164787540749506 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 13:00 Uhr", + "", + "A93: Weiden -> Regensburg, zwischen 5.2 km hinter AS Nabburg und 1.4 km vor AS Schwandorf-Mitte", + "", + "L\u00e4nge: 9.99 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A93 von Oberpf\u00e4lzer Wald (AK) nach Gr\u00fcnau (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.164787541, + 49.412891826 + ], + [ + 12.1645447, + 49.412053201 + ], + [ + 12.1643139, + 49.411207501 + ], + [ + 12.1641429, + 49.410498401 + ], + [ + 12.1639791, + 49.409784001 + ], + [ + 12.1636748, + 49.408354101 + ], + [ + 12.1636462, + 49.408211601 + ], + [ + 12.1636198, + 49.408093301 + ], + [ + 12.1633151, + 49.406596801 + ], + [ + 12.1631617, + 49.405882801 + ], + [ + 12.1630756, + 49.405524301 + ], + [ + 12.1629934, + 49.405174801 + ], + [ + 12.1627602, + 49.404316701 + ], + [ + 12.1624814, + 49.403474401 + ], + [ + 12.1622789, + 49.402945201 + ], + [ + 12.1620589, + 49.402432301 + ], + [ + 12.1618101, + 49.401911301 + ], + [ + 12.161541, + 49.401403701 + ], + [ + 12.1613295, + 49.401032201 + ], + [ + 12.1611096, + 49.400665001 + ], + [ + 12.1606308, + 49.399958201 + ], + [ + 12.1602909, + 49.399496101 + ], + [ + 12.1599317, + 49.399048401 + ], + [ + 12.1595607, + 49.398606701 + ], + [ + 12.1591796, + 49.398181301 + ], + [ + 12.1585035, + 49.397509001 + ], + [ + 12.1581536, + 49.397176301 + ], + [ + 12.1577982, + 49.396851501 + ], + [ + 12.1574199, + 49.396525401 + ], + [ + 12.1570358, + 49.396212701 + ], + [ + 12.1566462, + 49.395902201 + ], + [ + 12.1562427, + 49.395604601 + ], + [ + 12.1555549, + 49.395113401 + ], + [ + 12.1547987, + 49.394596301 + ], + [ + 12.153306, + 49.393625901 + ], + [ + 12.1527888, + 49.393285401 + ], + [ + 12.1521804, + 49.392873901 + ], + [ + 12.1516783, + 49.392515601 + ], + [ + 12.1512046, + 49.392149801 + ], + [ + 12.1509083, + 49.391906201 + ], + [ + 12.1502159, + 49.391243701 + ], + [ + 12.1499627, + 49.390973701 + ], + [ + 12.1498227, + 49.390825901 + ], + [ + 12.1494408, + 49.390332901 + ], + [ + 12.149179, + 49.389959901 + ], + [ + 12.1488922, + 49.389502101 + ], + [ + 12.1486566, + 49.389056301 + ], + [ + 12.148451, + 49.388615801 + ], + [ + 12.1482899, + 49.388206301 + ], + [ + 12.1482224, + 49.387994001 + ], + [ + 12.1481494, + 49.387734801 + ], + [ + 12.1480745, + 49.387474401 + ], + [ + 12.1479951, + 49.387056301 + ], + [ + 12.1479317, + 49.386516601 + ], + [ + 12.1479117, + 49.386288801 + ], + [ + 12.1479099, + 49.385958101 + ], + [ + 12.1479237, + 49.385544801 + ], + [ + 12.1479717, + 49.385103001 + ], + [ + 12.1480307, + 49.384733901 + ], + [ + 12.1481024, + 49.384364901 + ], + [ + 12.1482419, + 49.383826501 + ], + [ + 12.1484952, + 49.383019301 + ], + [ + 12.148799, + 49.382236001 + ], + [ + 12.1492835, + 49.381116001 + ], + [ + 12.1497818, + 49.380005301 + ], + [ + 12.1507304, + 49.377787501 + ], + [ + 12.1511076, + 49.376844001 + ], + [ + 12.1514252, + 49.375904501 + ], + [ + 12.1516918, + 49.374959901 + ], + [ + 12.1519282, + 49.374010901 + ], + [ + 12.1522106, + 49.372691601 + ], + [ + 12.1524708, + 49.370648901 + ], + [ + 12.1524878, + 49.370384701 + ], + [ + 12.1525378, + 49.369312001 + ], + [ + 12.1525357, + 49.368478801 + ], + [ + 12.1524628, + 49.367332801 + ], + [ + 12.1523819, + 49.366353001 + ], + [ + 12.1522139, + 49.364999701 + ], + [ + 12.1503346, + 49.349445901 + ], + [ + 12.1502833, + 49.349008301 + ], + [ + 12.1502085, + 49.348395901 + ], + [ + 12.1500164, + 49.346714701 + ], + [ + 12.1498631, + 49.344892301 + ], + [ + 12.1497857, + 49.343005401 + ], + [ + 12.1497912, + 49.342264001 + ], + [ + 12.149838, + 49.341416301 + ], + [ + 12.1498716, + 49.340749701 + ], + [ + 12.1498858, + 49.340619901 + ], + [ + 12.1500864, + 49.338779901 + ], + [ + 12.1501805, + 49.338183301 + ], + [ + 12.1505893, + 49.336108101 + ], + [ + 12.1508737, + 49.334998601 + ], + [ + 12.1511792, + 49.333938001 + ], + [ + 12.1516057, + 49.332670301 + ], + [ + 12.1519521, + 49.331712801 + ], + [ + 12.1520575, + 49.331421201 + ], + [ + 12.152523, + 49.330174601 + ], + [ + 12.1530192, + 49.328805301 + ], + [ + 12.153221, + 49.328210201 + ], + [ + 12.153296, + 49.327969601 + ], + [ + 12.1535651, + 49.327107101 + ], + [ + 12.153683182, + 49.326685061 + ] + ] + } + }, + { + "identifier": "2025-050324--vi-bs.2026-03-10_00-00-00-000.devi-zus.2026-02-02_00-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.456943428058274,12.194298349365505,49.44487061453687,12.189183837855479", + "point": "49.456943428058274,12.194298349365505", + "startLcPosition": "54", + "impact": { + "lower": "Schwarzenfeld", + "upper": "Schlo\u00dfberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Weiden -> Regensburg", + "title": "A93 | Schlo\u00dfberg - Schwarzenfeld", + "startTimestamp": "2026-03-10T00:00:00+01:00", + "coordinate": { + "lat": 49.456943428058274, + "long": 12.194298349365505 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.03.26 um 00:00 Uhr", + "Ende: 01.03.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.03.27)", + "", + "A93: Weiden -> Regensburg, zwischen 2.1 km hinter Schlo\u00dfberg und 7.1 km vor AS Schwarzenfeld", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A93 Br\u00fcckenneubau Bw 144c" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.194298349, + 49.456943428 + ], + [ + 12.1942474, + 49.456693001 + ], + [ + 12.1941885, + 49.456435701 + ], + [ + 12.1938191, + 49.454973801 + ], + [ + 12.1936721, + 49.454394301 + ], + [ + 12.1935767, + 49.454077801 + ], + [ + 12.1934787, + 49.453757901 + ], + [ + 12.1933823, + 49.453468201 + ], + [ + 12.1932878, + 49.453178201 + ], + [ + 12.1931254, + 49.452707801 + ], + [ + 12.1930454, + 49.452488801 + ], + [ + 12.1927601, + 49.451707101 + ], + [ + 12.1924035, + 49.450821201 + ], + [ + 12.1922717, + 49.450522901 + ], + [ + 12.1922076, + 49.450383201 + ], + [ + 12.1920572, + 49.450040601 + ], + [ + 12.1916975, + 49.449263501 + ], + [ + 12.1913201, + 49.448505001 + ], + [ + 12.1909241, + 49.447745701 + ], + [ + 12.1904379, + 49.446880101 + ], + [ + 12.1899243, + 49.446007201 + ], + [ + 12.189372, + 49.445154401 + ], + [ + 12.189183838, + 49.444870615 + ] + ] + } + }, + { + "identifier": "2026-017584--vi-bs.2026-04-10_07-00-00-000.devi-zus.2026-04-10_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.53118029497151,12.142505853894564,49.538483370553095,12.134343875055405", + "point": "49.53118029497151,12.142505853894564", + "startLcPosition": "56", + "impact": { + "lower": "Gr\u00fcnau", + "upper": "Oberpf\u00e4lzer Wald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Regensburg -> Weiden", + "title": "A93 | Oberpf\u00e4lzer Wald - Gr\u00fcnau", + "coordinate": { + "lat": 49.53118029497151, + "long": 12.142505853894564 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:00 bis 09:00 Uhr", + "", + "A93: Regensburg -> Weiden, zwischen 2.1 km hinter AK Oberpf\u00e4lzer Wald und 3.8 km vor Gr\u00fcnau", + "", + "L\u00e4nge: 1.01 km | Maximale Durchfahrtsbreite: 3.8 m", + "", + "A93 von Oberpf\u00e4lzer Wald (AK) nach Gr\u00fcnau (Rastplatz) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.142505854, + 49.531180295 + ], + [ + 12.1423139, + 49.531307301 + ], + [ + 12.1415541, + 49.531808101 + ], + [ + 12.1405417, + 49.532552401 + ], + [ + 12.1402812, + 49.532754701 + ], + [ + 12.1393765, + 49.533460201 + ], + [ + 12.1391275, + 49.533664701 + ], + [ + 12.1384051, + 49.534284101 + ], + [ + 12.1375602, + 49.535068701 + ], + [ + 12.1365488, + 49.536064301 + ], + [ + 12.1361322, + 49.536501301 + ], + [ + 12.1349636, + 49.537752701 + ], + [ + 12.134343875, + 49.538483371 + ] + ] + } + }, + { + "identifier": "2025-048814--vi-bs.2026-03-16_00-00-00-000.devi-zus.2026-03-02_00-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.77900046628182,12.160679206448197,49.78948666195119,12.171448364693825", + "point": "49.77900046628182,12.160679206448197", + "startLcPosition": "66", + "impact": { + "lower": "Windischeschenbach", + "upper": "Neustadt an der Waldnaab", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Weiden -> Hof", + "title": "A93 | Neustadt an der Waldnaab - Windischeschenbach", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 49.77900046628182, + "long": 12.160679206448197 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 29.08.29 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.08.29)", + "", + "A93: Weiden -> Hof, zwischen 4.6 km hinter AS Neustadt an der Waldnaab und 2.0 km vor AS Windischeschenbach", + "", + "L\u00e4nge: 1.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.8 m", + "", + "A93 Br\u00fcckenneubau Bw 104 a Waldnaabbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.160679206, + 49.779000466 + ], + [ + 12.1617549, + 49.780042401 + ], + [ + 12.1624337, + 49.780715001 + ], + [ + 12.1635451, + 49.781787401 + ], + [ + 12.1639791, + 49.782212301 + ], + [ + 12.164525, + 49.782750101 + ], + [ + 12.164928, + 49.783108201 + ], + [ + 12.1660837, + 49.784206301 + ], + [ + 12.1676666, + 49.785781801 + ], + [ + 12.1679926, + 49.786108601 + ], + [ + 12.1708551, + 49.788916701 + ], + [ + 12.171448365, + 49.789486662 + ] + ] + } + }, + { + "identifier": "2025-048814--vi-bs.2026-03-16_00-00-00-000.devi-zus.2026-03-02_00-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.78954175244709,12.17132115042228,49.77905281011691,12.160558226246915", + "point": "49.78954175244709,12.17132115042228", + "startLcPosition": "69", + "impact": { + "lower": "Neustadt an der Waldnaab", + "upper": "Windischeschenbach", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hof -> Weiden", + "title": "A93 | Windischeschenbach - Neustadt an der Waldnaab", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 49.78954175244709, + "long": 12.17132115042228 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 29.08.29 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 29.08.29)", + "", + "A93: Hof -> Weiden, zwischen 1.9 km hinter AS Windischeschenbach und 4.6 km vor AS Neustadt an der Waldnaab", + "", + "L\u00e4nge: 1.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.8 m", + "", + "A93 Br\u00fcckenneubau Bw 104 a Waldnaabbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.17132115, + 49.789541752 + ], + [ + 12.167538, + 49.785835401 + ], + [ + 12.1659993, + 49.784279501 + ], + [ + 12.1647817, + 49.783166801 + ], + [ + 12.1643781, + 49.782791101 + ], + [ + 12.1632793, + 49.781712501 + ], + [ + 12.1622196, + 49.780675301 + ], + [ + 12.1619845, + 49.780465701 + ], + [ + 12.1606379, + 49.779130101 + ], + [ + 12.160558226, + 49.77905281 + ] + ] + } + } + ] + }, + "A94": { + "roadworks": [ + { + "identifier": "2026-017104--vi-bs.2026-04-08_20-00-00-000.devi-zus.2026-04-08_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.139137185037924,11.647397629228411,48.14320608121433,11.7725218332561", + "point": "48.139137185037924,11.647397629228411", + "startLcPosition": "0", + "impact": { + "lower": "Parsdorf", + "upper": "M\u00fcnchen-Steinhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Passau", + "title": "A94 | M\u00fcnchen-Steinhausen - Parsdorf", + "coordinate": { + "lat": 48.139137185037924, + "long": 11.647397629228411 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A94: M\u00fcnchen -> Passau, zwischen 1.5 km hinter AS M\u00fcnchen-Steinhausen und 1.2 km vor AS Parsdorf", + "", + "L\u00e4nge: 9.47 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A94 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.647397629, + 48.139137185 + ], + [ + 11.6479842, + 48.139157901 + ], + [ + 11.6484394, + 48.139179401 + ], + [ + 11.6499148, + 48.139226301 + ], + [ + 11.6503193, + 48.139229301 + ], + [ + 11.6507263, + 48.139242901 + ], + [ + 11.6514275, + 48.139259701 + ], + [ + 11.6519929, + 48.139266601 + ], + [ + 11.6530532, + 48.139291201 + ], + [ + 11.6552305, + 48.139313501 + ], + [ + 11.6566511, + 48.139304101 + ], + [ + 11.6573581, + 48.139295501 + ], + [ + 11.6582262, + 48.139268501 + ], + [ + 11.6590226, + 48.139238901 + ], + [ + 11.6598956, + 48.139196401 + ], + [ + 11.661609, + 48.139077801 + ], + [ + 11.6617464, + 48.139065301 + ], + [ + 11.662925, + 48.138966801 + ], + [ + 11.6635952, + 48.138900401 + ], + [ + 11.6646355, + 48.138783301 + ], + [ + 11.6652012, + 48.138722901 + ], + [ + 11.6658894, + 48.138633901 + ], + [ + 11.6668338, + 48.138500601 + ], + [ + 11.6673729, + 48.138427501 + ], + [ + 11.6681584, + 48.138299501 + ], + [ + 11.6692718, + 48.138115101 + ], + [ + 11.6697647, + 48.138021501 + ], + [ + 11.6703108, + 48.137926101 + ], + [ + 11.6722118, + 48.137576801 + ], + [ + 11.6733535, + 48.137398501 + ], + [ + 11.6735557, + 48.137366201 + ], + [ + 11.6743135, + 48.137276201 + ], + [ + 11.6752864, + 48.137178601 + ], + [ + 11.6759243, + 48.137148701 + ], + [ + 11.676479, + 48.137128001 + ], + [ + 11.6766588, + 48.137122101 + ], + [ + 11.6768758, + 48.137124201 + ], + [ + 11.6774217, + 48.137127001 + ], + [ + 11.6783046, + 48.137155101 + ], + [ + 11.6791582, + 48.137213901 + ], + [ + 11.6800111, + 48.137302901 + ], + [ + 11.6806193, + 48.137394601 + ], + [ + 11.6816168, + 48.137571501 + ], + [ + 11.68242, + 48.137750601 + ], + [ + 11.6833986, + 48.138003601 + ], + [ + 11.683862, + 48.138148901 + ], + [ + 11.684156, + 48.138238701 + ], + [ + 11.6849667, + 48.138520801 + ], + [ + 11.6862072, + 48.138985301 + ], + [ + 11.6874647, + 48.139495801 + ], + [ + 11.6892013, + 48.140177801 + ], + [ + 11.6897428, + 48.140380401 + ], + [ + 11.690507, + 48.140629701 + ], + [ + 11.6911903, + 48.140839301 + ], + [ + 11.6920558, + 48.141070601 + ], + [ + 11.6929296, + 48.141273601 + ], + [ + 11.6932671, + 48.141343701 + ], + [ + 11.6939205, + 48.141472301 + ], + [ + 11.6947484, + 48.141615901 + ], + [ + 11.6948083, + 48.141624701 + ], + [ + 11.6954355, + 48.141716501 + ], + [ + 11.6961556, + 48.141808201 + ], + [ + 11.6970465, + 48.141908401 + ], + [ + 11.6977991, + 48.141978601 + ], + [ + 11.6982067, + 48.142011701 + ], + [ + 11.698765, + 48.142045401 + ], + [ + 11.6998682, + 48.142107501 + ], + [ + 11.7009618, + 48.142150601 + ], + [ + 11.7021861, + 48.142171801 + ], + [ + 11.7034108, + 48.142170601 + ], + [ + 11.7044769, + 48.142165401 + ], + [ + 11.7058918, + 48.142132901 + ], + [ + 11.7068811, + 48.142099101 + ], + [ + 11.7077997, + 48.142063201 + ], + [ + 11.7094814, + 48.141995201 + ], + [ + 11.710283, + 48.141957001 + ], + [ + 11.7111273, + 48.141922401 + ], + [ + 11.7120914, + 48.141892101 + ], + [ + 11.7130017, + 48.141866701 + ], + [ + 11.7139803, + 48.141842301 + ], + [ + 11.7156919, + 48.141831901 + ], + [ + 11.7172583, + 48.141848001 + ], + [ + 11.7184898, + 48.141860401 + ], + [ + 11.7201541, + 48.141910601 + ], + [ + 11.7218698, + 48.141987401 + ], + [ + 11.7232393, + 48.142064301 + ], + [ + 11.7247092, + 48.142159801 + ], + [ + 11.7283293, + 48.142457001 + ], + [ + 11.7300033, + 48.142586501 + ], + [ + 11.7315049, + 48.142679401 + ], + [ + 11.7329996, + 48.142766801 + ], + [ + 11.7338724, + 48.142808701 + ], + [ + 11.7346743, + 48.142841801 + ], + [ + 11.7358482, + 48.142893401 + ], + [ + 11.7366375, + 48.142915801 + ], + [ + 11.7377807, + 48.142949101 + ], + [ + 11.7391343, + 48.142978201 + ], + [ + 11.7409614, + 48.143010901 + ], + [ + 11.7432529, + 48.143018801 + ], + [ + 11.7446339, + 48.143009801 + ], + [ + 11.7460656, + 48.143000601 + ], + [ + 11.7477976, + 48.142967001 + ], + [ + 11.7488266, + 48.142942301 + ], + [ + 11.7500334, + 48.142905401 + ], + [ + 11.7535361, + 48.142793801 + ], + [ + 11.753818, + 48.142785701 + ], + [ + 11.7545116, + 48.142767801 + ], + [ + 11.7570142, + 48.142688001 + ], + [ + 11.7572156, + 48.142679101 + ], + [ + 11.758469, + 48.142641601 + ], + [ + 11.7599677, + 48.142597501 + ], + [ + 11.7616102, + 48.142551801 + ], + [ + 11.7620763, + 48.142535901 + ], + [ + 11.7629972, + 48.142507401 + ], + [ + 11.7645098, + 48.142463901 + ], + [ + 11.7648725, + 48.142456601 + ], + [ + 11.7654392, + 48.142445101 + ], + [ + 11.7662326, + 48.142443501 + ], + [ + 11.766858, + 48.142457301 + ], + [ + 11.7674145, + 48.142474701 + ], + [ + 11.7681079, + 48.142521101 + ], + [ + 11.7684408, + 48.142546701 + ], + [ + 11.7691338, + 48.142620901 + ], + [ + 11.7702773, + 48.142762101 + ], + [ + 11.7712363, + 48.142921101 + ], + [ + 11.7721804, + 48.143122101 + ], + [ + 11.772521833, + 48.143206081 + ] + ] + } + }, + { + "identifier": "2026-017104--vi-bs.2026-04-08_20-00-00-000.devi-zus.2026-04-08_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.139137185037924,11.647397629228411,48.14320608121433,11.7725218332561", + "point": "48.139137185037924,11.647397629228411", + "startLcPosition": "0", + "impact": { + "lower": "Parsdorf", + "upper": "M\u00fcnchen-Steinhausen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Passau", + "title": "A94 | M\u00fcnchen-Steinhausen - Parsdorf", + "coordinate": { + "lat": 48.139137185037924, + "long": 11.647397629228411 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A94: M\u00fcnchen -> Passau, zwischen 1.5 km hinter AS M\u00fcnchen-Steinhausen und 1.2 km vor AS Parsdorf", + "", + "L\u00e4nge: 9.47 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A94 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.647397629, + 48.139137185 + ], + [ + 11.6479842, + 48.139157901 + ], + [ + 11.6484394, + 48.139179401 + ], + [ + 11.6499148, + 48.139226301 + ], + [ + 11.6503193, + 48.139229301 + ], + [ + 11.6507263, + 48.139242901 + ], + [ + 11.6514275, + 48.139259701 + ], + [ + 11.6519929, + 48.139266601 + ], + [ + 11.6530532, + 48.139291201 + ], + [ + 11.6552305, + 48.139313501 + ], + [ + 11.6566511, + 48.139304101 + ], + [ + 11.6573581, + 48.139295501 + ], + [ + 11.6582262, + 48.139268501 + ], + [ + 11.6590226, + 48.139238901 + ], + [ + 11.6598956, + 48.139196401 + ], + [ + 11.661609, + 48.139077801 + ], + [ + 11.6617464, + 48.139065301 + ], + [ + 11.662925, + 48.138966801 + ], + [ + 11.6635952, + 48.138900401 + ], + [ + 11.6646355, + 48.138783301 + ], + [ + 11.6652012, + 48.138722901 + ], + [ + 11.6658894, + 48.138633901 + ], + [ + 11.6668338, + 48.138500601 + ], + [ + 11.6673729, + 48.138427501 + ], + [ + 11.6681584, + 48.138299501 + ], + [ + 11.6692718, + 48.138115101 + ], + [ + 11.6697647, + 48.138021501 + ], + [ + 11.6703108, + 48.137926101 + ], + [ + 11.6722118, + 48.137576801 + ], + [ + 11.6733535, + 48.137398501 + ], + [ + 11.6735557, + 48.137366201 + ], + [ + 11.6743135, + 48.137276201 + ], + [ + 11.6752864, + 48.137178601 + ], + [ + 11.6759243, + 48.137148701 + ], + [ + 11.676479, + 48.137128001 + ], + [ + 11.6766588, + 48.137122101 + ], + [ + 11.6768758, + 48.137124201 + ], + [ + 11.6774217, + 48.137127001 + ], + [ + 11.6783046, + 48.137155101 + ], + [ + 11.6791582, + 48.137213901 + ], + [ + 11.6800111, + 48.137302901 + ], + [ + 11.6806193, + 48.137394601 + ], + [ + 11.6816168, + 48.137571501 + ], + [ + 11.68242, + 48.137750601 + ], + [ + 11.6833986, + 48.138003601 + ], + [ + 11.683862, + 48.138148901 + ], + [ + 11.684156, + 48.138238701 + ], + [ + 11.6849667, + 48.138520801 + ], + [ + 11.6862072, + 48.138985301 + ], + [ + 11.6874647, + 48.139495801 + ], + [ + 11.6892013, + 48.140177801 + ], + [ + 11.6897428, + 48.140380401 + ], + [ + 11.690507, + 48.140629701 + ], + [ + 11.6911903, + 48.140839301 + ], + [ + 11.6920558, + 48.141070601 + ], + [ + 11.6929296, + 48.141273601 + ], + [ + 11.6932671, + 48.141343701 + ], + [ + 11.6939205, + 48.141472301 + ], + [ + 11.6947484, + 48.141615901 + ], + [ + 11.6948083, + 48.141624701 + ], + [ + 11.6954355, + 48.141716501 + ], + [ + 11.6961556, + 48.141808201 + ], + [ + 11.6970465, + 48.141908401 + ], + [ + 11.6977991, + 48.141978601 + ], + [ + 11.6982067, + 48.142011701 + ], + [ + 11.698765, + 48.142045401 + ], + [ + 11.6998682, + 48.142107501 + ], + [ + 11.7009618, + 48.142150601 + ], + [ + 11.7021861, + 48.142171801 + ], + [ + 11.7034108, + 48.142170601 + ], + [ + 11.7044769, + 48.142165401 + ], + [ + 11.7058918, + 48.142132901 + ], + [ + 11.7068811, + 48.142099101 + ], + [ + 11.7077997, + 48.142063201 + ], + [ + 11.7094814, + 48.141995201 + ], + [ + 11.710283, + 48.141957001 + ], + [ + 11.7111273, + 48.141922401 + ], + [ + 11.7120914, + 48.141892101 + ], + [ + 11.7130017, + 48.141866701 + ], + [ + 11.7139803, + 48.141842301 + ], + [ + 11.7156919, + 48.141831901 + ], + [ + 11.7172583, + 48.141848001 + ], + [ + 11.7184898, + 48.141860401 + ], + [ + 11.7201541, + 48.141910601 + ], + [ + 11.7218698, + 48.141987401 + ], + [ + 11.7232393, + 48.142064301 + ], + [ + 11.7247092, + 48.142159801 + ], + [ + 11.7283293, + 48.142457001 + ], + [ + 11.7300033, + 48.142586501 + ], + [ + 11.7315049, + 48.142679401 + ], + [ + 11.7329996, + 48.142766801 + ], + [ + 11.7338724, + 48.142808701 + ], + [ + 11.7346743, + 48.142841801 + ], + [ + 11.7358482, + 48.142893401 + ], + [ + 11.7366375, + 48.142915801 + ], + [ + 11.7377807, + 48.142949101 + ], + [ + 11.7391343, + 48.142978201 + ], + [ + 11.7409614, + 48.143010901 + ], + [ + 11.7432529, + 48.143018801 + ], + [ + 11.7446339, + 48.143009801 + ], + [ + 11.7460656, + 48.143000601 + ], + [ + 11.7477976, + 48.142967001 + ], + [ + 11.7488266, + 48.142942301 + ], + [ + 11.7500334, + 48.142905401 + ], + [ + 11.7535361, + 48.142793801 + ], + [ + 11.753818, + 48.142785701 + ], + [ + 11.7545116, + 48.142767801 + ], + [ + 11.7570142, + 48.142688001 + ], + [ + 11.7572156, + 48.142679101 + ], + [ + 11.758469, + 48.142641601 + ], + [ + 11.7599677, + 48.142597501 + ], + [ + 11.7616102, + 48.142551801 + ], + [ + 11.7620763, + 48.142535901 + ], + [ + 11.7629972, + 48.142507401 + ], + [ + 11.7645098, + 48.142463901 + ], + [ + 11.7648725, + 48.142456601 + ], + [ + 11.7654392, + 48.142445101 + ], + [ + 11.7662326, + 48.142443501 + ], + [ + 11.766858, + 48.142457301 + ], + [ + 11.7674145, + 48.142474701 + ], + [ + 11.7681079, + 48.142521101 + ], + [ + 11.7684408, + 48.142546701 + ], + [ + 11.7691338, + 48.142620901 + ], + [ + 11.7702773, + 48.142762101 + ], + [ + 11.7712363, + 48.142921101 + ], + [ + 11.7721804, + 48.143122101 + ], + [ + 11.772521833, + 48.143206081 + ] + ] + } + }, + { + "identifier": "2025-033096--vi-bs.2026-02-27_20-00-00-000.devi-zus.2026-03-01_00-00-00-000_004.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.14207911657591,11.707392478317475,48.14250875278149,11.728998238404944", + "point": "48.14207911657591,11.707392478317475", + "startLcPosition": "4", + "impact": { + "lower": "Feldkirchen-Ost", + "upper": "M\u00fcnchen-Riem", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Passau", + "title": "A94 | M\u00fcnchen-Riem - Feldkirchen-Ost", + "startTimestamp": "2026-02-27T20:00:00+01:00", + "coordinate": { + "lat": 48.14207911657591, + "long": 11.707392478317475 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.02.26 um 20:00 Uhr", + "Ende: 01.02.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "A94: M\u00fcnchen -> Passau, zwischen 1.5 km hinter AS M\u00fcnchen-Riem und 1.2 km vor AS Feldkirchen-Ost", + "", + "L\u00e4nge: 1.61 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A94 BW 6-3 Fu\u00df- und Radwegbr\u00fccke Messe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.707392478, + 48.142079117 + ], + [ + 11.7077997, + 48.142063201 + ], + [ + 11.7094814, + 48.141995201 + ], + [ + 11.710283, + 48.141957001 + ], + [ + 11.7111273, + 48.141922401 + ], + [ + 11.7120914, + 48.141892101 + ], + [ + 11.7130017, + 48.141866701 + ], + [ + 11.7139803, + 48.141842301 + ], + [ + 11.7156919, + 48.141831901 + ], + [ + 11.7172583, + 48.141848001 + ], + [ + 11.7184898, + 48.141860401 + ], + [ + 11.7201541, + 48.141910601 + ], + [ + 11.7218698, + 48.141987401 + ], + [ + 11.7232393, + 48.142064301 + ], + [ + 11.7247092, + 48.142159801 + ], + [ + 11.7283293, + 48.142457001 + ], + [ + 11.728998238, + 48.142508753 + ] + ] + } + }, + { + "identifier": "2026-017104--vi-bs.2026-04-08_20-00-00-000.devi-zus.2026-04-08_20-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.142985421993885,11.73953763319447,48.14300113254139,11.745982949156035", + "point": "48.142985421993885,11.73953763319447", + "startLcPosition": "5", + "impact": { + "lower": "M\u00fcnchen-Ost", + "upper": "Feldkirchen-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Passau", + "title": "A94 | Feldkirchen-West - M\u00fcnchen-Ost", + "coordinate": { + "lat": 48.142985421993885, + "long": 11.73953763319447 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 22:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A94: M\u00fcnchen -> Passau, zwischen 2.3 km hinter AS Feldkirchen-West und 0.9 km vor AK M\u00fcnchen-Ost", + "", + "L\u00e4nge: 0.48 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A94 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.739537633, + 48.142985422 + ], + [ + 11.7409614, + 48.143010901 + ], + [ + 11.7432529, + 48.143018801 + ], + [ + 11.7446339, + 48.143009801 + ], + [ + 11.745982949, + 48.143001133 + ] + ] + } + }, + { + "identifier": "2026-017104--vi-bs.2026-04-08_20-00-00-000.devi-zus.2026-04-08_20-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.1422940617458,11.726344410728132,48.1427665034109,11.732994511021118", + "point": "48.1422940617458,11.726344410728132", + "startLcPosition": "5", + "impact": { + "lower": "Feldkirchen-Ost", + "upper": "Feldkirchen-West", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Passau", + "title": "A94 | Feldkirchen-West - Feldkirchen-Ost", + "coordinate": { + "lat": 48.1422940617458, + "long": 11.726344410728132 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 22:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A94: M\u00fcnchen -> Passau, zwischen 1.3 km hinter AS Feldkirchen-West und 0.9 km vor AS Feldkirchen-Ost", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A94 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.726344411, + 48.142294062 + ], + [ + 11.7283293, + 48.142457001 + ], + [ + 11.7300033, + 48.142586501 + ], + [ + 11.7315049, + 48.142679401 + ], + [ + 11.732994511, + 48.142766503 + ] + ] + } + }, + { + "identifier": "2025-033096--vi-bs.2026-02-27_20-00-00-000.devi-zus.2026-03-01_00-00-00-000_004.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.14261815805591,11.728979674495394,48.142190714231454,11.70740179504769", + "point": "48.14261815805591,11.728979674495394", + "startLcPosition": "6", + "impact": { + "lower": "M\u00fcnchen-Riem", + "upper": "Feldkirchen-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Passau -> M\u00fcnchen", + "title": "A94 | Feldkirchen-Ost - M\u00fcnchen-Riem", + "startTimestamp": "2026-02-27T20:00:00+01:00", + "coordinate": { + "lat": 48.14261815805591, + "long": 11.728979674495394 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.02.26 um 20:00 Uhr", + "Ende: 01.02.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "A94: Passau -> M\u00fcnchen, zwischen 1.2 km hinter AS Feldkirchen-Ost und 1.5 km vor AS M\u00fcnchen-Riem", + "", + "L\u00e4nge: 1.61 km | Maximale Durchfahrtsbreite: 9.25 m", + "", + "A94 BW 6-3 Fu\u00df- und Radwegbr\u00fccke Messe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.728979674, + 48.142618158 + ], + [ + 11.7280766, + 48.142550801 + ], + [ + 11.7264034, + 48.142409701 + ], + [ + 11.7246328, + 48.142276201 + ], + [ + 11.7232639, + 48.142173701 + ], + [ + 11.7218083, + 48.142089801 + ], + [ + 11.720196, + 48.142025901 + ], + [ + 11.7186177, + 48.141978401 + ], + [ + 11.7173896, + 48.141956301 + ], + [ + 11.7157856, + 48.141952701 + ], + [ + 11.7146984, + 48.141955501 + ], + [ + 11.7124129, + 48.141994201 + ], + [ + 11.7121044, + 48.142002701 + ], + [ + 11.7111667, + 48.142033301 + ], + [ + 11.7104812, + 48.142064601 + ], + [ + 11.7091087, + 48.142120001 + ], + [ + 11.7078336, + 48.142175301 + ], + [ + 11.707401795, + 48.142190714 + ] + ] + } + }, + { + "identifier": "2026-017104--vi-bs.2026-04-08_20-00-00-000.devi-zus.2026-04-08_20-00-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.1430963147679,11.739533446832844,48.14287712221518,11.733062197099057", + "point": "48.1430963147679,11.739533446832844", + "startLcPosition": "6", + "impact": { + "lower": "Feldkirchen-West", + "upper": "Feldkirchen-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> M\u00fcnchen", + "title": "A94 | Feldkirchen-Ost - Feldkirchen-West", + "coordinate": { + "lat": 48.1430963147679, + "long": 11.739533446832844 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 22:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A94: Passau -> M\u00fcnchen, zwischen 0.4 km hinter AS Feldkirchen-Ost und 1.8 km vor AS Feldkirchen-West", + "", + "L\u00e4nge: 0.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A94 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.739533447, + 48.143096315 + ], + [ + 11.7392243, + 48.143091401 + ], + [ + 11.7377827, + 48.143062101 + ], + [ + 11.7366283, + 48.143024901 + ], + [ + 11.7358259, + 48.142996601 + ], + [ + 11.7346604, + 48.142951301 + ], + [ + 11.7338478, + 48.142915401 + ], + [ + 11.733062197, + 48.142877122 + ] + ] + } + }, + { + "identifier": "2026-017104--vi-bs.2026-04-08_20-00-00-000.devi-zus.2026-04-08_20-00-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.1455378355938,11.778268925837144,48.143304863883316,11.772474950736072", + "point": "48.1455378355938,11.778268925837144", + "startLcPosition": "8", + "impact": { + "lower": "M\u00fcnchen-Ost", + "upper": "Parsdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> M\u00fcnchen", + "title": "A94 | Parsdorf - M\u00fcnchen-Ost", + "coordinate": { + "lat": 48.1455378355938, + "long": 11.778268925837144 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 22:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A94: Passau -> M\u00fcnchen, zwischen 0.7 km hinter AS Parsdorf und 1.1 km vor AK M\u00fcnchen-Ost", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A94 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.778268926, + 48.145537836 + ], + [ + 11.7780689, + 48.145432801 + ], + [ + 11.777128, + 48.144968901 + ], + [ + 11.7761444, + 48.144515001 + ], + [ + 11.7749968, + 48.144068401 + ], + [ + 11.7738289, + 48.143673301 + ], + [ + 11.7729969, + 48.143437101 + ], + [ + 11.772474951, + 48.143304864 + ] + ] + } + }, + { + "identifier": "2026-017104--vi-bs.2026-04-08_20-00-00-000.devi-zus.2026-04-08_20-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.14997727143796,11.790106508827948,48.139255799343616,11.647387698027089", + "point": "48.14997727143796,11.790106508827948", + "startLcPosition": "9", + "impact": { + "lower": "M\u00fcnchen-Steinhausen", + "upper": "Markt Schwaben", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> M\u00fcnchen", + "title": "A94 | Markt Schwaben - M\u00fcnchen-Steinhausen", + "coordinate": { + "lat": 48.14997727143796, + "long": 11.790106508827948 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A94: Passau -> M\u00fcnchen, zwischen 3.4 km hinter AS Markt Schwaben und 1.5 km vor AS M\u00fcnchen-Steinhausen", + "", + "L\u00e4nge: 10.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A94 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.790106509, + 48.149977271 + ], + [ + 11.7893531, + 48.149831901 + ], + [ + 11.788883, + 48.149737901 + ], + [ + 11.7879303, + 48.149511901 + ], + [ + 11.7873492, + 48.149356701 + ], + [ + 11.7860511, + 48.148990701 + ], + [ + 11.7853949, + 48.148785001 + ], + [ + 11.785149, + 48.148700301 + ], + [ + 11.7843042, + 48.148410101 + ], + [ + 11.7840739, + 48.148317901 + ], + [ + 11.7835194, + 48.148099701 + ], + [ + 11.7828851, + 48.147838201 + ], + [ + 11.7822764, + 48.147567901 + ], + [ + 11.7816614, + 48.147287501 + ], + [ + 11.780976, + 48.146944701 + ], + [ + 11.7797149, + 48.146297101 + ], + [ + 11.7780689, + 48.145432801 + ], + [ + 11.777128, + 48.144968901 + ], + [ + 11.7761444, + 48.144515001 + ], + [ + 11.7749968, + 48.144068401 + ], + [ + 11.7738289, + 48.143673301 + ], + [ + 11.7729969, + 48.143437101 + ], + [ + 11.7721621, + 48.143225601 + ], + [ + 11.7711979, + 48.143029801 + ], + [ + 11.770242, + 48.142867801 + ], + [ + 11.769109, + 48.142719901 + ], + [ + 11.768134, + 48.142633001 + ], + [ + 11.7673296, + 48.142580001 + ], + [ + 11.7664165, + 48.142558301 + ], + [ + 11.7655681, + 48.142554401 + ], + [ + 11.7645161, + 48.142569901 + ], + [ + 11.7629922, + 48.142619301 + ], + [ + 11.7620607, + 48.142643701 + ], + [ + 11.7611268, + 48.142676701 + ], + [ + 11.7584275, + 48.142764701 + ], + [ + 11.7571841, + 48.142795901 + ], + [ + 11.7536824, + 48.142902501 + ], + [ + 11.7534122, + 48.142911001 + ], + [ + 11.7500287, + 48.143011701 + ], + [ + 11.7488111, + 48.143046601 + ], + [ + 11.7478131, + 48.143075101 + ], + [ + 11.7461302, + 48.143103301 + ], + [ + 11.7456582, + 48.143111601 + ], + [ + 11.7451063, + 48.143117301 + ], + [ + 11.7435347, + 48.143131301 + ], + [ + 11.7416201, + 48.143122001 + ], + [ + 11.7409614, + 48.143119001 + ], + [ + 11.7392243, + 48.143091401 + ], + [ + 11.7377827, + 48.143062101 + ], + [ + 11.7366283, + 48.143024901 + ], + [ + 11.7358259, + 48.142996601 + ], + [ + 11.7346604, + 48.142951301 + ], + [ + 11.7338478, + 48.142915401 + ], + [ + 11.7330043, + 48.142874301 + ], + [ + 11.7315301, + 48.142793001 + ], + [ + 11.7299725, + 48.142692201 + ], + [ + 11.7280766, + 48.142550801 + ], + [ + 11.7264034, + 48.142409701 + ], + [ + 11.7246328, + 48.142276201 + ], + [ + 11.7232639, + 48.142173701 + ], + [ + 11.7218083, + 48.142089801 + ], + [ + 11.720196, + 48.142025901 + ], + [ + 11.7186177, + 48.141978401 + ], + [ + 11.7173896, + 48.141956301 + ], + [ + 11.7157856, + 48.141952701 + ], + [ + 11.7146984, + 48.141955501 + ], + [ + 11.7124129, + 48.141994201 + ], + [ + 11.7121044, + 48.142002701 + ], + [ + 11.7111667, + 48.142033301 + ], + [ + 11.7104812, + 48.142064601 + ], + [ + 11.7091087, + 48.142120001 + ], + [ + 11.7078336, + 48.142175301 + ], + [ + 11.7063402, + 48.142228601 + ], + [ + 11.705326, + 48.142252301 + ], + [ + 11.704553, + 48.142272901 + ], + [ + 11.7038938, + 48.142283201 + ], + [ + 11.7030986, + 48.142289301 + ], + [ + 11.7023807, + 48.142286501 + ], + [ + 11.7009184, + 48.142264401 + ], + [ + 11.7004136, + 48.142245501 + ], + [ + 11.6994421, + 48.142201601 + ], + [ + 11.6980869, + 48.142113701 + ], + [ + 11.6975411, + 48.142067901 + ], + [ + 11.6968177, + 48.141999101 + ], + [ + 11.696135, + 48.141918701 + ], + [ + 11.6950539, + 48.141778401 + ], + [ + 11.6947784, + 48.141734201 + ], + [ + 11.6941235, + 48.141624301 + ], + [ + 11.6933354, + 48.141473901 + ], + [ + 11.6924818, + 48.141293401 + ], + [ + 11.6918136, + 48.141125601 + ], + [ + 11.6910365, + 48.140919601 + ], + [ + 11.6904291, + 48.140733301 + ], + [ + 11.6896641, + 48.140477401 + ], + [ + 11.6885957, + 48.140075901 + ], + [ + 11.6868164, + 48.139361401 + ], + [ + 11.6864193, + 48.139203701 + ], + [ + 11.6858689, + 48.138986501 + ], + [ + 11.6853006, + 48.138772701 + ], + [ + 11.6846325, + 48.138525501 + ], + [ + 11.6842896, + 48.138406301 + ], + [ + 11.683336, + 48.138099101 + ], + [ + 11.6823672, + 48.137856601 + ], + [ + 11.6815655, + 48.137679201 + ], + [ + 11.6807025, + 48.137526301 + ], + [ + 11.6799856, + 48.137421101 + ], + [ + 11.679134, + 48.137330901 + ], + [ + 11.6782887, + 48.137270401 + ], + [ + 11.6774144, + 48.137234201 + ], + [ + 11.6768659, + 48.137233001 + ], + [ + 11.6764767, + 48.137241801 + ], + [ + 11.675926, + 48.137258101 + ], + [ + 11.6753004, + 48.137293501 + ], + [ + 11.674494, + 48.137364401 + ], + [ + 11.6735718, + 48.137477201 + ], + [ + 11.6721752, + 48.137697201 + ], + [ + 11.6693104, + 48.138219601 + ], + [ + 11.6680074, + 48.138442801 + ], + [ + 11.6663916, + 48.138684801 + ], + [ + 11.6646736, + 48.138899301 + ], + [ + 11.6631664, + 48.139067601 + ], + [ + 11.6619784, + 48.139171001 + ], + [ + 11.6615382, + 48.139198801 + ], + [ + 11.6598964, + 48.139306301 + ], + [ + 11.6582523, + 48.139382301 + ], + [ + 11.6573613, + 48.139407601 + ], + [ + 11.6565508, + 48.139424401 + ], + [ + 11.6557739, + 48.139428001 + ], + [ + 11.6552833, + 48.139431201 + ], + [ + 11.6534205, + 48.139410801 + ], + [ + 11.6513759, + 48.139365501 + ], + [ + 11.6506768, + 48.139350001 + ], + [ + 11.6504253, + 48.139345601 + ], + [ + 11.6490889, + 48.139313701 + ], + [ + 11.6484331, + 48.139294401 + ], + [ + 11.6479777, + 48.139277301 + ], + [ + 11.6477521, + 48.139270201 + ], + [ + 11.647387698, + 48.139255799 + ] + ] + } + }, + { + "identifier": "2026-017104--vi-bs.2026-04-08_20-00-00-000.devi-zus.2026-04-08_20-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.14997727143796,11.790106508827948,48.139255799343616,11.647387698027089", + "point": "48.14997727143796,11.790106508827948", + "startLcPosition": "9", + "impact": { + "lower": "M\u00fcnchen-Steinhausen", + "upper": "Markt Schwaben", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Passau -> M\u00fcnchen", + "title": "A94 | Markt Schwaben - M\u00fcnchen-Steinhausen", + "coordinate": { + "lat": 48.14997727143796, + "long": 11.790106508827948 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 20:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A94: Passau -> M\u00fcnchen, zwischen 3.4 km hinter AS Markt Schwaben und 1.5 km vor AS M\u00fcnchen-Steinhausen", + "", + "L\u00e4nge: 10.98 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A94 Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.790106509, + 48.149977271 + ], + [ + 11.7893531, + 48.149831901 + ], + [ + 11.788883, + 48.149737901 + ], + [ + 11.7879303, + 48.149511901 + ], + [ + 11.7873492, + 48.149356701 + ], + [ + 11.7860511, + 48.148990701 + ], + [ + 11.7853949, + 48.148785001 + ], + [ + 11.785149, + 48.148700301 + ], + [ + 11.7843042, + 48.148410101 + ], + [ + 11.7840739, + 48.148317901 + ], + [ + 11.7835194, + 48.148099701 + ], + [ + 11.7828851, + 48.147838201 + ], + [ + 11.7822764, + 48.147567901 + ], + [ + 11.7816614, + 48.147287501 + ], + [ + 11.780976, + 48.146944701 + ], + [ + 11.7797149, + 48.146297101 + ], + [ + 11.7780689, + 48.145432801 + ], + [ + 11.777128, + 48.144968901 + ], + [ + 11.7761444, + 48.144515001 + ], + [ + 11.7749968, + 48.144068401 + ], + [ + 11.7738289, + 48.143673301 + ], + [ + 11.7729969, + 48.143437101 + ], + [ + 11.7721621, + 48.143225601 + ], + [ + 11.7711979, + 48.143029801 + ], + [ + 11.770242, + 48.142867801 + ], + [ + 11.769109, + 48.142719901 + ], + [ + 11.768134, + 48.142633001 + ], + [ + 11.7673296, + 48.142580001 + ], + [ + 11.7664165, + 48.142558301 + ], + [ + 11.7655681, + 48.142554401 + ], + [ + 11.7645161, + 48.142569901 + ], + [ + 11.7629922, + 48.142619301 + ], + [ + 11.7620607, + 48.142643701 + ], + [ + 11.7611268, + 48.142676701 + ], + [ + 11.7584275, + 48.142764701 + ], + [ + 11.7571841, + 48.142795901 + ], + [ + 11.7536824, + 48.142902501 + ], + [ + 11.7534122, + 48.142911001 + ], + [ + 11.7500287, + 48.143011701 + ], + [ + 11.7488111, + 48.143046601 + ], + [ + 11.7478131, + 48.143075101 + ], + [ + 11.7461302, + 48.143103301 + ], + [ + 11.7456582, + 48.143111601 + ], + [ + 11.7451063, + 48.143117301 + ], + [ + 11.7435347, + 48.143131301 + ], + [ + 11.7416201, + 48.143122001 + ], + [ + 11.7409614, + 48.143119001 + ], + [ + 11.7392243, + 48.143091401 + ], + [ + 11.7377827, + 48.143062101 + ], + [ + 11.7366283, + 48.143024901 + ], + [ + 11.7358259, + 48.142996601 + ], + [ + 11.7346604, + 48.142951301 + ], + [ + 11.7338478, + 48.142915401 + ], + [ + 11.7330043, + 48.142874301 + ], + [ + 11.7315301, + 48.142793001 + ], + [ + 11.7299725, + 48.142692201 + ], + [ + 11.7280766, + 48.142550801 + ], + [ + 11.7264034, + 48.142409701 + ], + [ + 11.7246328, + 48.142276201 + ], + [ + 11.7232639, + 48.142173701 + ], + [ + 11.7218083, + 48.142089801 + ], + [ + 11.720196, + 48.142025901 + ], + [ + 11.7186177, + 48.141978401 + ], + [ + 11.7173896, + 48.141956301 + ], + [ + 11.7157856, + 48.141952701 + ], + [ + 11.7146984, + 48.141955501 + ], + [ + 11.7124129, + 48.141994201 + ], + [ + 11.7121044, + 48.142002701 + ], + [ + 11.7111667, + 48.142033301 + ], + [ + 11.7104812, + 48.142064601 + ], + [ + 11.7091087, + 48.142120001 + ], + [ + 11.7078336, + 48.142175301 + ], + [ + 11.7063402, + 48.142228601 + ], + [ + 11.705326, + 48.142252301 + ], + [ + 11.704553, + 48.142272901 + ], + [ + 11.7038938, + 48.142283201 + ], + [ + 11.7030986, + 48.142289301 + ], + [ + 11.7023807, + 48.142286501 + ], + [ + 11.7009184, + 48.142264401 + ], + [ + 11.7004136, + 48.142245501 + ], + [ + 11.6994421, + 48.142201601 + ], + [ + 11.6980869, + 48.142113701 + ], + [ + 11.6975411, + 48.142067901 + ], + [ + 11.6968177, + 48.141999101 + ], + [ + 11.696135, + 48.141918701 + ], + [ + 11.6950539, + 48.141778401 + ], + [ + 11.6947784, + 48.141734201 + ], + [ + 11.6941235, + 48.141624301 + ], + [ + 11.6933354, + 48.141473901 + ], + [ + 11.6924818, + 48.141293401 + ], + [ + 11.6918136, + 48.141125601 + ], + [ + 11.6910365, + 48.140919601 + ], + [ + 11.6904291, + 48.140733301 + ], + [ + 11.6896641, + 48.140477401 + ], + [ + 11.6885957, + 48.140075901 + ], + [ + 11.6868164, + 48.139361401 + ], + [ + 11.6864193, + 48.139203701 + ], + [ + 11.6858689, + 48.138986501 + ], + [ + 11.6853006, + 48.138772701 + ], + [ + 11.6846325, + 48.138525501 + ], + [ + 11.6842896, + 48.138406301 + ], + [ + 11.683336, + 48.138099101 + ], + [ + 11.6823672, + 48.137856601 + ], + [ + 11.6815655, + 48.137679201 + ], + [ + 11.6807025, + 48.137526301 + ], + [ + 11.6799856, + 48.137421101 + ], + [ + 11.679134, + 48.137330901 + ], + [ + 11.6782887, + 48.137270401 + ], + [ + 11.6774144, + 48.137234201 + ], + [ + 11.6768659, + 48.137233001 + ], + [ + 11.6764767, + 48.137241801 + ], + [ + 11.675926, + 48.137258101 + ], + [ + 11.6753004, + 48.137293501 + ], + [ + 11.674494, + 48.137364401 + ], + [ + 11.6735718, + 48.137477201 + ], + [ + 11.6721752, + 48.137697201 + ], + [ + 11.6693104, + 48.138219601 + ], + [ + 11.6680074, + 48.138442801 + ], + [ + 11.6663916, + 48.138684801 + ], + [ + 11.6646736, + 48.138899301 + ], + [ + 11.6631664, + 48.139067601 + ], + [ + 11.6619784, + 48.139171001 + ], + [ + 11.6615382, + 48.139198801 + ], + [ + 11.6598964, + 48.139306301 + ], + [ + 11.6582523, + 48.139382301 + ], + [ + 11.6573613, + 48.139407601 + ], + [ + 11.6565508, + 48.139424401 + ], + [ + 11.6557739, + 48.139428001 + ], + [ + 11.6552833, + 48.139431201 + ], + [ + 11.6534205, + 48.139410801 + ], + [ + 11.6513759, + 48.139365501 + ], + [ + 11.6506768, + 48.139350001 + ], + [ + 11.6504253, + 48.139345601 + ], + [ + 11.6490889, + 48.139313701 + ], + [ + 11.6484331, + 48.139294401 + ], + [ + 11.6479777, + 48.139277301 + ], + [ + 11.6477521, + 48.139270201 + ], + [ + 11.647387698, + 48.139255799 + ] + ] + } + }, + { + "identifier": "2026-017156--vi-bs.2026-04-07_14-00-00-000.devi-zus.2026-04-07_10-00-00-000_002.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.24672746478545,12.04082836107676,48.246873334868226,12.042156862383946", + "point": "48.24672746478545,12.04082836107676", + "startLcPosition": "15", + "impact": { + "lower": "Dorfen", + "upper": "Pastetten", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Passau", + "title": "A94 | Pastetten - Dorfen", + "startTimestamp": "2026-04-07T14:00:00+02:00", + "coordinate": { + "lat": 48.24672746478545, + "long": 12.04082836107676 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 14:00 Uhr", + "Ende: 20.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "A94: M\u00fcnchen -> Passau, zwischen 8.0 km hinter AS Pastetten und 9.1 km vor AS Dorfen", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A94 Gefahrenbeschilderung Fahrbahnschaden nach PKW-Brand" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.040828361, + 48.246727465 + ], + [ + 12.0416152, + 48.246812001 + ], + [ + 12.0417801, + 48.246830601 + ], + [ + 12.042156862, + 48.246873335 + ] + ] + } + }, + { + "identifier": "2026-006168--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_023.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.254093096206496,12.200699243558459,48.25006150698274,12.270010097185507", + "point": "48.254093096206496,12.200699243558459", + "startLcPosition": "18", + "impact": { + "lower": "Schwindegg", + "upper": "F\u00fcrthholz", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Passau", + "title": "A94 | F\u00fcrthholz - Schwindegg", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 48.254093096206496, + "long": 12.200699243558459 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.07.26)", + "", + "A94: M\u00fcnchen -> Passau, zwischen 1.0 km hinter F\u00fcrthholz und 0.9 km vor AS Schwindegg", + "", + "L\u00e4nge: 5.32 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A94 von Schwindegg (AS) Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.200699244, + 48.254093096 + ], + [ + 12.2007748, + 48.254065701 + ], + [ + 12.2017402, + 48.253745901 + ], + [ + 12.2026548, + 48.253472101 + ], + [ + 12.2035971, + 48.253212301 + ], + [ + 12.2040937, + 48.253087701 + ], + [ + 12.2051676, + 48.252840101 + ], + [ + 12.2054817, + 48.252777001 + ], + [ + 12.206424, + 48.252597101 + ], + [ + 12.2072439, + 48.252461801 + ], + [ + 12.2079927, + 48.252349101 + ], + [ + 12.2084846, + 48.252289001 + ], + [ + 12.2091396, + 48.252219201 + ], + [ + 12.2097731, + 48.252152601 + ], + [ + 12.2105116, + 48.252096701 + ], + [ + 12.2113304, + 48.252047501 + ], + [ + 12.2121691, + 48.252017501 + ], + [ + 12.2129265, + 48.252000001 + ], + [ + 12.2136663, + 48.251999201 + ], + [ + 12.2142396, + 48.252009201 + ], + [ + 12.2148455, + 48.252027501 + ], + [ + 12.2156949, + 48.252071401 + ], + [ + 12.2163286, + 48.252111901 + ], + [ + 12.2166682, + 48.252139201 + ], + [ + 12.217537, + 48.252219201 + ], + [ + 12.2181905, + 48.252292401 + ], + [ + 12.2193285, + 48.252446601 + ], + [ + 12.2202004, + 48.252587801 + ], + [ + 12.22108, + 48.252756101 + ], + [ + 12.2218785, + 48.252925601 + ], + [ + 12.2229877, + 48.253181201 + ], + [ + 12.2239907, + 48.253440701 + ], + [ + 12.2250825, + 48.253718101 + ], + [ + 12.2260624, + 48.253971101 + ], + [ + 12.226994, + 48.254197101 + ], + [ + 12.227646, + 48.254343501 + ], + [ + 12.2282563, + 48.254469701 + ], + [ + 12.2289408, + 48.254599501 + ], + [ + 12.2298815, + 48.254749501 + ], + [ + 12.2305949, + 48.254840601 + ], + [ + 12.2313224, + 48.254918201 + ], + [ + 12.2320639, + 48.254977201 + ], + [ + 12.2328427, + 48.255015501 + ], + [ + 12.2335546, + 48.255032101 + ], + [ + 12.2341049, + 48.255035201 + ], + [ + 12.234921, + 48.255029001 + ], + [ + 12.2357309, + 48.254991701 + ], + [ + 12.2363076, + 48.254955501 + ], + [ + 12.2369962, + 48.254892401 + ], + [ + 12.2375403, + 48.254837501 + ], + [ + 12.2381092, + 48.254760901 + ], + [ + 12.2391367, + 48.254596301 + ], + [ + 12.2399606, + 48.254444201 + ], + [ + 12.2407472, + 48.254273401 + ], + [ + 12.2413985, + 48.254113001 + ], + [ + 12.2422379, + 48.253873901 + ], + [ + 12.2430198, + 48.253627601 + ], + [ + 12.2438639, + 48.253344001 + ], + [ + 12.2446877, + 48.253053101 + ], + [ + 12.2453593, + 48.252821301 + ], + [ + 12.2460634, + 48.252577001 + ], + [ + 12.2468749, + 48.252304801 + ], + [ + 12.2475168, + 48.252111301 + ], + [ + 12.2481542, + 48.251927001 + ], + [ + 12.2490884, + 48.251689001 + ], + [ + 12.2496807, + 48.251550301 + ], + [ + 12.2503926, + 48.251398101 + ], + [ + 12.2509025, + 48.251300801 + ], + [ + 12.2518056, + 48.251146601 + ], + [ + 12.2527957, + 48.251002501 + ], + [ + 12.2537844, + 48.250888901 + ], + [ + 12.2543891, + 48.250833001 + ], + [ + 12.255039, + 48.250783701 + ], + [ + 12.2565432, + 48.250700501 + ], + [ + 12.2598329, + 48.250540701 + ], + [ + 12.2644812, + 48.250322701 + ], + [ + 12.2671333, + 48.250197101 + ], + [ + 12.270010097, + 48.250061507 + ] + ] + } + }, + { + "identifier": "2026-006168--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_023.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.25016275323297,12.270020854977714,48.25418359783977,12.200772786957236", + "point": "48.25016275323297,12.270020854977714", + "startLcPosition": "19", + "impact": { + "lower": "F\u00fcrthholz", + "upper": "Schwindegg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Passau -> M\u00fcnchen", + "title": "A94 | Schwindegg - F\u00fcrthholz", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 48.25016275323297, + "long": 12.270020854977714 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 19.07.26)", + "", + "A94: Passau -> M\u00fcnchen, zwischen 0.9 km hinter AS Schwindegg und 1.0 km vor F\u00fcrthholz", + "", + "L\u00e4nge: 5.32 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 5.75 m", + "", + "A94 von Schwindegg (AS) Erneuerung der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.270020855, + 48.250162753 + ], + [ + 12.2671439, + 48.250299701 + ], + [ + 12.259845, + 48.250639801 + ], + [ + 12.2568919, + 48.250777301 + ], + [ + 12.2558244, + 48.250836301 + ], + [ + 12.2550519, + 48.250880901 + ], + [ + 12.2543462, + 48.250936601 + ], + [ + 12.2538634, + 48.250982701 + ], + [ + 12.2534058, + 48.251029801 + ], + [ + 12.2528067, + 48.251104101 + ], + [ + 12.2521305, + 48.251201401 + ], + [ + 12.2511869, + 48.251351501 + ], + [ + 12.2505092, + 48.251479901 + ], + [ + 12.2498097, + 48.251627901 + ], + [ + 12.2488972, + 48.251835901 + ], + [ + 12.247949, + 48.252093701 + ], + [ + 12.2471547, + 48.252329701 + ], + [ + 12.2465422, + 48.252528401 + ], + [ + 12.2454323, + 48.252907201 + ], + [ + 12.244324, + 48.253298401 + ], + [ + 12.2432732, + 48.253653501 + ], + [ + 12.2424135, + 48.253929801 + ], + [ + 12.2417063, + 48.254136801 + ], + [ + 12.2408498, + 48.254354201 + ], + [ + 12.2405181, + 48.254425101 + ], + [ + 12.2400414, + 48.254527001 + ], + [ + 12.2391845, + 48.254699701 + ], + [ + 12.2381362, + 48.254859801 + ], + [ + 12.2373341, + 48.254953101 + ], + [ + 12.2366687, + 48.255019701 + ], + [ + 12.236025, + 48.255067401 + ], + [ + 12.2354964, + 48.255097401 + ], + [ + 12.2349395, + 48.255123001 + ], + [ + 12.2340123, + 48.255136301 + ], + [ + 12.2335637, + 48.255137401 + ], + [ + 12.2327699, + 48.255113001 + ], + [ + 12.2321896, + 48.255079701 + ], + [ + 12.2315643, + 48.255039701 + ], + [ + 12.2308606, + 48.254972001 + ], + [ + 12.2302603, + 48.254899801 + ], + [ + 12.2295782, + 48.254808701 + ], + [ + 12.2288944, + 48.254696701 + ], + [ + 12.2282078, + 48.254565901 + ], + [ + 12.2275823, + 48.254438301 + ], + [ + 12.2268358, + 48.254265201 + ], + [ + 12.2261755, + 48.254105401 + ], + [ + 12.2252697, + 48.253874901 + ], + [ + 12.2245863, + 48.253698201 + ], + [ + 12.2238729, + 48.253515601 + ], + [ + 12.2232702, + 48.253358701 + ], + [ + 12.2223522, + 48.253136301 + ], + [ + 12.2217262, + 48.252995001 + ], + [ + 12.2210491, + 48.252853701 + ], + [ + 12.2203812, + 48.252732801 + ], + [ + 12.2195407, + 48.252584001 + ], + [ + 12.2186411, + 48.252446001 + ], + [ + 12.2178625, + 48.252350901 + ], + [ + 12.2170751, + 48.252270101 + ], + [ + 12.2162782, + 48.252206101 + ], + [ + 12.215657, + 48.252167101 + ], + [ + 12.2149857, + 48.252130101 + ], + [ + 12.2145188, + 48.252113401 + ], + [ + 12.2139304, + 48.252101701 + ], + [ + 12.2130955, + 48.252097501 + ], + [ + 12.2120214, + 48.252115901 + ], + [ + 12.2110725, + 48.252159201 + ], + [ + 12.2103664, + 48.252202601 + ], + [ + 12.2094601, + 48.252285901 + ], + [ + 12.2085267, + 48.252393701 + ], + [ + 12.2080209, + 48.252458301 + ], + [ + 12.20706, + 48.252598101 + ], + [ + 12.2063374, + 48.252719401 + ], + [ + 12.2055142, + 48.252879001 + ], + [ + 12.205239, + 48.252935501 + ], + [ + 12.2040571, + 48.253202301 + ], + [ + 12.2031894, + 48.253427801 + ], + [ + 12.202463, + 48.253636101 + ], + [ + 12.2016357, + 48.253892301 + ], + [ + 12.2009569, + 48.254116901 + ], + [ + 12.200772787, + 48.254183598 + ] + ] + } + }, + { + "identifier": "2026-011706--vi-bs.2026-03-16_00-00-00-000.devi-zus.2026-03-16_00-00-00-000_007.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.25432552256812,12.701878310450008,48.25004411422912,12.763732791580994", + "point": "48.25432552256812,12.701878310450008", + "startLcPosition": "27", + "impact": { + "lower": "Burghausen", + "upper": "Neu\u00f6tting", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Passau", + "title": "A94 | Neu\u00f6tting - Burghausen", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 48.25432552256812, + "long": 12.701878310450008 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 02.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.06.26)", + "", + "A94: M\u00fcnchen -> Passau, zwischen 0.6 km hinter AS Neu\u00f6tting und 5.3 km vor AS Burghausen", + "", + "L\u00e4nge: 4.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.75 m", + "", + "2026_A94 Oberbausanierung BS_DS inkl. Instandsetzungsma\u00dfnahme an Br\u00fccken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.70187831, + 48.254325523 + ], + [ + 12.7019412, + 48.254317701 + ], + [ + 12.7026821, + 48.254214201 + ], + [ + 12.703103, + 48.254147601 + ], + [ + 12.7042774, + 48.253968001 + ], + [ + 12.7047723, + 48.253897401 + ], + [ + 12.7053527, + 48.253826701 + ], + [ + 12.7058859, + 48.253777701 + ], + [ + 12.7065105, + 48.253728701 + ], + [ + 12.7070342, + 48.253711001 + ], + [ + 12.7076396, + 48.253699201 + ], + [ + 12.7081007, + 48.253692401 + ], + [ + 12.7083849, + 48.253695301 + ], + [ + 12.7089933, + 48.253714901 + ], + [ + 12.70964, + 48.253749301 + ], + [ + 12.7102248, + 48.253793401 + ], + [ + 12.7106357, + 48.253838501 + ], + [ + 12.7115588, + 48.253954801 + ], + [ + 12.7139754, + 48.254344501 + ], + [ + 12.7146952, + 48.254445601 + ], + [ + 12.7159278, + 48.254574201 + ], + [ + 12.7166604, + 48.254623201 + ], + [ + 12.7174095, + 48.254644101 + ], + [ + 12.718214, + 48.254640901 + ], + [ + 12.7188799, + 48.254620801 + ], + [ + 12.7196157, + 48.254575001 + ], + [ + 12.7202417, + 48.254519601 + ], + [ + 12.7207677, + 48.254454501 + ], + [ + 12.7215073, + 48.254341701 + ], + [ + 12.722109, + 48.254241701 + ], + [ + 12.7225927, + 48.254144501 + ], + [ + 12.7228557, + 48.254091501 + ], + [ + 12.7233961, + 48.253961401 + ], + [ + 12.7239413, + 48.253816801 + ], + [ + 12.7246373, + 48.253606401 + ], + [ + 12.725191, + 48.253422501 + ], + [ + 12.7257157, + 48.253236901 + ], + [ + 12.7261186, + 48.253075501 + ], + [ + 12.7266892, + 48.252826501 + ], + [ + 12.7271837, + 48.252597601 + ], + [ + 12.7277121, + 48.252333401 + ], + [ + 12.7282344, + 48.252045001 + ], + [ + 12.7288182, + 48.251707701 + ], + [ + 12.7296602, + 48.251210501 + ], + [ + 12.7306008, + 48.250649701 + ], + [ + 12.7312741, + 48.250276401 + ], + [ + 12.731891, + 48.249962001 + ], + [ + 12.7326769, + 48.249593201 + ], + [ + 12.7332656, + 48.249343201 + ], + [ + 12.733735, + 48.249154701 + ], + [ + 12.7343103, + 48.248938601 + ], + [ + 12.7349688, + 48.248710001 + ], + [ + 12.7356407, + 48.248498401 + ], + [ + 12.7361812, + 48.248345601 + ], + [ + 12.7370408, + 48.248123301 + ], + [ + 12.7376591, + 48.247982201 + ], + [ + 12.7382719, + 48.247850001 + ], + [ + 12.7388647, + 48.247742801 + ], + [ + 12.7395071, + 48.247641901 + ], + [ + 12.7402367, + 48.247541001 + ], + [ + 12.7407999, + 48.247477601 + ], + [ + 12.7415536, + 48.247409701 + ], + [ + 12.7421786, + 48.247365101 + ], + [ + 12.7427955, + 48.247334701 + ], + [ + 12.7435237, + 48.247310601 + ], + [ + 12.7442251, + 48.247305201 + ], + [ + 12.7450097, + 48.247307901 + ], + [ + 12.7457178, + 48.247331101 + ], + [ + 12.7464285, + 48.247357001 + ], + [ + 12.7469502, + 48.247380301 + ], + [ + 12.7478957, + 48.247434701 + ], + [ + 12.7488425, + 48.247511501 + ], + [ + 12.7497142, + 48.247587401 + ], + [ + 12.7503553, + 48.247655301 + ], + [ + 12.7512807, + 48.247766901 + ], + [ + 12.7524246, + 48.247921401 + ], + [ + 12.7530581, + 48.248015201 + ], + [ + 12.7536311, + 48.248105701 + ], + [ + 12.7542015, + 48.248203001 + ], + [ + 12.7549553, + 48.248343001 + ], + [ + 12.7558116, + 48.248512001 + ], + [ + 12.7572527, + 48.248801401 + ], + [ + 12.7580988, + 48.248985301 + ], + [ + 12.7605725, + 48.249489301 + ], + [ + 12.7618235, + 48.249727101 + ], + [ + 12.7636161, + 48.250027801 + ], + [ + 12.763732792, + 48.250044114 + ] + ] + } + }, + { + "identifier": "2026-011706--vi-bs.2026-03-16_00-00-00-000.devi-zus.2026-03-16_00-00-00-000_007.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.250139335586255,12.763700286247342,48.25442394415757,12.701905897746615", + "point": "48.250139335586255,12.763700286247342", + "startLcPosition": "29", + "impact": { + "lower": "Neu\u00f6tting", + "upper": "Burghausen", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Passau -> M\u00fcnchen", + "title": "A94 | Burghausen - Neu\u00f6tting", + "startTimestamp": "2026-03-16T00:00:00+01:00", + "coordinate": { + "lat": 48.250139335586255, + "long": 12.763700286247342 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 00:00 Uhr", + "Ende: 02.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.06.26)", + "", + "A94: Passau -> M\u00fcnchen, zwischen 5.3 km hinter AS Burghausen und 0.6 km vor AS Neu\u00f6tting", + "", + "L\u00e4nge: 4.87 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "2026_A94 Oberbausanierung BS_DS inkl. Instandsetzungsma\u00dfnahme an Br\u00fccken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 12.763700286, + 48.250139336 + ], + [ + 12.7622832, + 48.249906801 + ], + [ + 12.7610526, + 48.249687701 + ], + [ + 12.7593995, + 48.249360101 + ], + [ + 12.7579593, + 48.249059401 + ], + [ + 12.7564409, + 48.248746301 + ], + [ + 12.7556839, + 48.248592201 + ], + [ + 12.7547264, + 48.248407501 + ], + [ + 12.754058, + 48.248286601 + ], + [ + 12.753335, + 48.248158601 + ], + [ + 12.7526057, + 48.248047701 + ], + [ + 12.7516384, + 48.247910501 + ], + [ + 12.7502373, + 48.247741901 + ], + [ + 12.7496485, + 48.247680301 + ], + [ + 12.7491, + 48.247629401 + ], + [ + 12.7483854, + 48.247568901 + ], + [ + 12.7475698, + 48.247512401 + ], + [ + 12.7469019, + 48.247479401 + ], + [ + 12.7462944, + 48.247449001 + ], + [ + 12.7456346, + 48.247427601 + ], + [ + 12.7447934, + 48.247409601 + ], + [ + 12.7439985, + 48.247404401 + ], + [ + 12.7432045, + 48.247420401 + ], + [ + 12.74247, + 48.247448201 + ], + [ + 12.7418446, + 48.247484701 + ], + [ + 12.7411638, + 48.247537001 + ], + [ + 12.7406046, + 48.247595501 + ], + [ + 12.7399684, + 48.247673201 + ], + [ + 12.7393462, + 48.247767801 + ], + [ + 12.7387024, + 48.247873201 + ], + [ + 12.7380775, + 48.247994701 + ], + [ + 12.7374472, + 48.248128601 + ], + [ + 12.7368785, + 48.248266201 + ], + [ + 12.7363072, + 48.248418001 + ], + [ + 12.7357466, + 48.248576901 + ], + [ + 12.7351056, + 48.248775201 + ], + [ + 12.7342942, + 48.249056501 + ], + [ + 12.7336156, + 48.249311901 + ], + [ + 12.7328432, + 48.249635201 + ], + [ + 12.7321914, + 48.249935201 + ], + [ + 12.7315879, + 48.250237101 + ], + [ + 12.7309629, + 48.250580001 + ], + [ + 12.7296638, + 48.251337401 + ], + [ + 12.7284418, + 48.252045801 + ], + [ + 12.7278303, + 48.252388801 + ], + [ + 12.7274165, + 48.252600001 + ], + [ + 12.7268749, + 48.252864301 + ], + [ + 12.7263032, + 48.253110801 + ], + [ + 12.7256433, + 48.253372701 + ], + [ + 12.7250342, + 48.253585501 + ], + [ + 12.7245083, + 48.253755801 + ], + [ + 12.7238472, + 48.253946901 + ], + [ + 12.7234154, + 48.254061001 + ], + [ + 12.7229739, + 48.254165401 + ], + [ + 12.7223888, + 48.254289701 + ], + [ + 12.721957, + 48.254372601 + ], + [ + 12.7215319, + 48.254441001 + ], + [ + 12.7208871, + 48.254539701 + ], + [ + 12.720401, + 48.254598301 + ], + [ + 12.7196266, + 48.254671401 + ], + [ + 12.7189824, + 48.254715601 + ], + [ + 12.7184915, + 48.254735601 + ], + [ + 12.7180729, + 48.254745301 + ], + [ + 12.7176136, + 48.254744601 + ], + [ + 12.7169957, + 48.254738001 + ], + [ + 12.7163866, + 48.254709901 + ], + [ + 12.7159041, + 48.254675501 + ], + [ + 12.7146919, + 48.254547501 + ], + [ + 12.7139216, + 48.254445101 + ], + [ + 12.711971, + 48.254120001 + ], + [ + 12.71118, + 48.254000301 + ], + [ + 12.7106821, + 48.253940501 + ], + [ + 12.7101636, + 48.253884601 + ], + [ + 12.7097261, + 48.253847301 + ], + [ + 12.7092592, + 48.253819901 + ], + [ + 12.7089454, + 48.253809101 + ], + [ + 12.7085713, + 48.253797301 + ], + [ + 12.7080881, + 48.253793401 + ], + [ + 12.707521, + 48.253797301 + ], + [ + 12.7070791, + 48.253806101 + ], + [ + 12.7066214, + 48.253824401 + ], + [ + 12.7061143, + 48.253862101 + ], + [ + 12.705503, + 48.253917001 + ], + [ + 12.705008, + 48.253973901 + ], + [ + 12.7044762, + 48.254047401 + ], + [ + 12.7038031, + 48.254148401 + ], + [ + 12.703208, + 48.254238701 + ], + [ + 12.7027955, + 48.254299501 + ], + [ + 12.7019698, + 48.254415901 + ], + [ + 12.701905898, + 48.254423944 + ] + ] + } + }, + { + "identifier": "2025-033096--vi-bs.2026-02-27_20-00-00-000.devi-zus.2026-03-01_00-00-00-000_004.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.14166597812976,11.711534467307878,48.14184545954907,11.717010904096032", + "point": "48.14166597812976,11.711534467307878", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Feldkirchen-West (aus Richtung M\u00fcnchen-Riem) nach A94", + "title": "A94 BW 6-3 Fu\u00df- und Radwegbr\u00fccke Messe", + "startTimestamp": "2026-02-27T20:00:00+01:00", + "coordinate": { + "lat": 48.14166597812976, + "long": 11.711534467307878 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.02.26 um 20:00 Uhr", + "Ende: 01.02.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.05.27)", + "", + "Von Auffahrt auf die A94: AS Feldkirchen-West (aus Richtung M\u00fcnchen-Riem) nach A94: M\u00fcnchen -> Passau, zwischen AS Feldkirchen-West und 2.1 km vor AS Feldkirchen-Ost", + "", + "L\u00e4nge: 0.41 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A94 BW 6-3 Fu\u00df- und Radwegbr\u00fccke Messe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.711534467, + 48.141665978 + ], + [ + 11.7115398, + 48.141666901 + ], + [ + 11.7121926, + 48.141692701 + ], + [ + 11.7147747, + 48.141752901 + ], + [ + 11.7153706, + 48.141768501 + ], + [ + 11.7156919, + 48.141831901 + ], + [ + 11.717010904, + 48.14184546 + ] + ] + } + } + ] + }, + "A95": { + "roadworks": [ + { + "identifier": "2026-014422--vi-bs.2026-04-22_10-00-00-000.devi-zus.2026-04-22_10-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.65621392565794,11.23394300283291,47.6642307049782,11.256991375374461", + "point": "47.65621392565794,11.23394300283291", + "startLcPosition": "1", + "impact": { + "lower": "Murnau/Kochel", + "upper": "Eschenlohe", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Garmisch-Partenkirchen -> M\u00fcnchen", + "title": "A95 | Eschenlohe - Murnau/Kochel", + "coordinate": { + "lat": 47.65621392565794, + "long": 11.23394300283291 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 10:00 bis 12:00 Uhr", + "", + "A95: Garmisch-Partenkirchen -> M\u00fcnchen, zwischen 7.5 km hinter AS Eschenlohe und 2.2 km vor AS Murnau/Kochel", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A95_ENACO Energieanlagen_VSS R\u00fcckbau Stromleitung bei km 58,400" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.233943003, + 47.656213926 + ], + [ + 11.2342864, + 47.656475101 + ], + [ + 11.2350716, + 47.657042401 + ], + [ + 11.2357362, + 47.657487701 + ], + [ + 11.2365401, + 47.658023501 + ], + [ + 11.2382396, + 47.659026601 + ], + [ + 11.2386907, + 47.659267801 + ], + [ + 11.2393496, + 47.659620201 + ], + [ + 11.2399405, + 47.659915601 + ], + [ + 11.2405518, + 47.660216301 + ], + [ + 11.2410177, + 47.660436801 + ], + [ + 11.2417762, + 47.660793401 + ], + [ + 11.2427803, + 47.661224401 + ], + [ + 11.2436269, + 47.661540501 + ], + [ + 11.2442481, + 47.661744301 + ], + [ + 11.2446216, + 47.661866801 + ], + [ + 11.2464208, + 47.662403601 + ], + [ + 11.2477637, + 47.662730101 + ], + [ + 11.248981, + 47.662996001 + ], + [ + 11.2505042, + 47.663246201 + ], + [ + 11.2507848, + 47.663292301 + ], + [ + 11.2526526, + 47.663541401 + ], + [ + 11.2552166, + 47.663899501 + ], + [ + 11.2569281, + 47.664218901 + ], + [ + 11.256991375, + 47.664230705 + ] + ] + } + }, + { + "identifier": "2026-014422--vi-bs.2026-04-22_10-00-00-000.devi-zus.2026-04-22_10-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.65621392565794,11.23394300283291,47.6642307049782,11.256991375374461", + "point": "47.65621392565794,11.23394300283291", + "startLcPosition": "1", + "impact": { + "lower": "Murnau/Kochel", + "upper": "Eschenlohe", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Garmisch-Partenkirchen -> M\u00fcnchen", + "title": "A95 | Eschenlohe - Murnau/Kochel", + "coordinate": { + "lat": 47.65621392565794, + "long": 11.23394300283291 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 10:00 bis 12:00 Uhr", + "", + "A95: Garmisch-Partenkirchen -> M\u00fcnchen, zwischen 7.5 km hinter AS Eschenlohe und 2.2 km vor AS Murnau/Kochel", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A95_ENACO Energieanlagen_VSS R\u00fcckbau Stromleitung bei km 58,400" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.233943003, + 47.656213926 + ], + [ + 11.2342864, + 47.656475101 + ], + [ + 11.2350716, + 47.657042401 + ], + [ + 11.2357362, + 47.657487701 + ], + [ + 11.2365401, + 47.658023501 + ], + [ + 11.2382396, + 47.659026601 + ], + [ + 11.2386907, + 47.659267801 + ], + [ + 11.2393496, + 47.659620201 + ], + [ + 11.2399405, + 47.659915601 + ], + [ + 11.2405518, + 47.660216301 + ], + [ + 11.2410177, + 47.660436801 + ], + [ + 11.2417762, + 47.660793401 + ], + [ + 11.2427803, + 47.661224401 + ], + [ + 11.2436269, + 47.661540501 + ], + [ + 11.2442481, + 47.661744301 + ], + [ + 11.2446216, + 47.661866801 + ], + [ + 11.2464208, + 47.662403601 + ], + [ + 11.2477637, + 47.662730101 + ], + [ + 11.248981, + 47.662996001 + ], + [ + 11.2505042, + 47.663246201 + ], + [ + 11.2507848, + 47.663292301 + ], + [ + 11.2526526, + 47.663541401 + ], + [ + 11.2552166, + 47.663899501 + ], + [ + 11.2569281, + 47.664218901 + ], + [ + 11.256991375, + 47.664230705 + ] + ] + } + }, + { + "identifier": "2026-017362--vi-bs.2026-04-08_07-30-00-000.devi-bs.2026-04-08_07-30-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "47.660288437055556,11.240704217317239,47.66299837277968,11.248995438897172", + "point": "47.660288437055556,11.240704217317239", + "startLcPosition": "3", + "impact": { + "lower": "Murnau/Kochel", + "upper": "M\u00fchlweiher", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Garmisch-Partenkirchen -> M\u00fcnchen", + "title": "A95 | M\u00fchlweiher - Murnau/Kochel", + "coordinate": { + "lat": 47.660288437055556, + "long": 11.240704217317239 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 16:00 Uhr", + "", + "A95: Garmisch-Partenkirchen -> M\u00fcnchen, zwischen 0.1 km hinter M\u00fchlweiher und 2.8 km vor AS Murnau/Kochel", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Wartung M\u00fchlbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.240704217, + 47.660288437 + ], + [ + 11.2410177, + 47.660436801 + ], + [ + 11.2417762, + 47.660793401 + ], + [ + 11.2427803, + 47.661224401 + ], + [ + 11.2436269, + 47.661540501 + ], + [ + 11.2442481, + 47.661744301 + ], + [ + 11.2446216, + 47.661866801 + ], + [ + 11.2464208, + 47.662403601 + ], + [ + 11.2477637, + 47.662730101 + ], + [ + 11.248981, + 47.662996001 + ], + [ + 11.248995439, + 47.662998373 + ] + ] + } + }, + { + "identifier": "2026-014422--vi-bs.2026-04-22_10-00-00-000.devi-zus.2026-04-22_10-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.66435856093191,11.256936003914188,47.65630625602451,11.233791801264452", + "point": "47.66435856093191,11.256936003914188", + "startLcPosition": "4", + "impact": { + "lower": "Eschenlohe", + "upper": "Murnau/Kochel", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Garmisch-Partenkirchen", + "title": "A95 | Murnau/Kochel - Eschenlohe", + "coordinate": { + "lat": 47.66435856093191, + "long": 11.256936003914188 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 10:00 bis 12:00 Uhr", + "", + "A95: M\u00fcnchen -> Garmisch-Partenkirchen, zwischen 2.2 km hinter AS Murnau/Kochel und 7.5 km vor AS Eschenlohe", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A95_ENACO Energieanlagen_VSS R\u00fcckbau Stromleitung bei km 58,400" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.256936004, + 47.664358561 + ], + [ + 11.2568638, + 47.664343501 + ], + [ + 11.2547315, + 47.663958601 + ], + [ + 11.2526328, + 47.663673401 + ], + [ + 11.2510093, + 47.663457201 + ], + [ + 11.2504552, + 47.663377401 + ], + [ + 11.2489145, + 47.663101201 + ], + [ + 11.247712, + 47.662848601 + ], + [ + 11.2463155, + 47.662505401 + ], + [ + 11.2445545, + 47.661972101 + ], + [ + 11.2441626, + 47.661841801 + ], + [ + 11.2435098, + 47.661624901 + ], + [ + 11.2426516, + 47.661318201 + ], + [ + 11.2416791, + 47.660880601 + ], + [ + 11.240925, + 47.660531901 + ], + [ + 11.2404531, + 47.660313101 + ], + [ + 11.2401306, + 47.660160101 + ], + [ + 11.2392353, + 47.659702101 + ], + [ + 11.2385775, + 47.659350001 + ], + [ + 11.2381085, + 47.659098901 + ], + [ + 11.2364426, + 47.658111501 + ], + [ + 11.2356757, + 47.657627301 + ], + [ + 11.234878, + 47.657099001 + ], + [ + 11.2341754, + 47.656587501 + ], + [ + 11.233791801, + 47.656306256 + ] + ] + } + }, + { + "identifier": "2026-014422--vi-bs.2026-04-22_10-00-00-000.devi-zus.2026-04-22_10-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.66435856093191,11.256936003914188,47.65630625602451,11.233791801264452", + "point": "47.66435856093191,11.256936003914188", + "startLcPosition": "4", + "impact": { + "lower": "Eschenlohe", + "upper": "Murnau/Kochel", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Garmisch-Partenkirchen", + "title": "A95 | Murnau/Kochel - Eschenlohe", + "coordinate": { + "lat": 47.66435856093191, + "long": 11.256936003914188 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 10:00 bis 12:00 Uhr", + "", + "A95: M\u00fcnchen -> Garmisch-Partenkirchen, zwischen 2.2 km hinter AS Murnau/Kochel und 7.5 km vor AS Eschenlohe", + "", + "L\u00e4nge: 2 km | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A95_ENACO Energieanlagen_VSS R\u00fcckbau Stromleitung bei km 58,400" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.256936004, + 47.664358561 + ], + [ + 11.2568638, + 47.664343501 + ], + [ + 11.2547315, + 47.663958601 + ], + [ + 11.2526328, + 47.663673401 + ], + [ + 11.2510093, + 47.663457201 + ], + [ + 11.2504552, + 47.663377401 + ], + [ + 11.2489145, + 47.663101201 + ], + [ + 11.247712, + 47.662848601 + ], + [ + 11.2463155, + 47.662505401 + ], + [ + 11.2445545, + 47.661972101 + ], + [ + 11.2441626, + 47.661841801 + ], + [ + 11.2435098, + 47.661624901 + ], + [ + 11.2426516, + 47.661318201 + ], + [ + 11.2416791, + 47.660880601 + ], + [ + 11.240925, + 47.660531901 + ], + [ + 11.2404531, + 47.660313101 + ], + [ + 11.2401306, + 47.660160101 + ], + [ + 11.2392353, + 47.659702101 + ], + [ + 11.2385775, + 47.659350001 + ], + [ + 11.2381085, + 47.659098901 + ], + [ + 11.2364426, + 47.658111501 + ], + [ + 11.2356757, + 47.657627301 + ], + [ + 11.234878, + 47.657099001 + ], + [ + 11.2341754, + 47.656587501 + ], + [ + 11.233791801, + 47.656306256 + ] + ] + } + }, + { + "identifier": "2023-001843--vi-bs.2026-04-20_06-00-00-000.devi-zus.2024-04-04_10-00-00-000.f.de28", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.68589068729648,11.301859532387072,47.70190617998089,11.323224154584237", + "point": "47.68589068729648,11.301859532387072", + "startLcPosition": "4", + "impact": { + "lower": "Sindelsdorf", + "upper": "Murnau/Kochel", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Garmisch-Partenkirchen -> M\u00fcnchen", + "title": "A95 | Murnau/Kochel - Sindelsdorf", + "startTimestamp": "2026-04-20T06:00:00+02:00", + "coordinate": { + "lat": 47.68589068729648, + "long": 11.301859532387072 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 06:00 Uhr", + "Ende: 27.04.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.05.26)", + "", + "A95: Garmisch-Partenkirchen -> M\u00fcnchen, zwischen 2.0 km hinter AS Murnau/Kochel und 3.0 km vor AS Sindelsdorf", + "", + "L\u00e4nge: 2.4 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A95 BW62 bei km 51,769" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.301859532, + 47.685890687 + ], + [ + 11.3019089, + 47.685920401 + ], + [ + 11.3022191, + 47.686114701 + ], + [ + 11.3028383, + 47.686526601 + ], + [ + 11.3035063, + 47.687016601 + ], + [ + 11.3038687, + 47.687295801 + ], + [ + 11.30396, + 47.687374601 + ], + [ + 11.3044159, + 47.687768201 + ], + [ + 11.3049856, + 47.688261101 + ], + [ + 11.305163, + 47.688419201 + ], + [ + 11.3068957, + 47.690023101 + ], + [ + 11.3076577, + 47.690695801 + ], + [ + 11.3079316, + 47.690920301 + ], + [ + 11.3083262, + 47.691260301 + ], + [ + 11.3084637, + 47.691374801 + ], + [ + 11.3085655, + 47.691461401 + ], + [ + 11.3092109, + 47.691966901 + ], + [ + 11.3096963, + 47.692352601 + ], + [ + 11.3099257, + 47.692527201 + ], + [ + 11.3102207, + 47.692746501 + ], + [ + 11.3110982, + 47.693383601 + ], + [ + 11.3119717, + 47.693985501 + ], + [ + 11.3134131, + 47.694924501 + ], + [ + 11.3138464, + 47.695212601 + ], + [ + 11.3152144, + 47.696057101 + ], + [ + 11.3157621, + 47.696377901 + ], + [ + 11.316964, + 47.697123801 + ], + [ + 11.3178111, + 47.697682901 + ], + [ + 11.3183234, + 47.698016601 + ], + [ + 11.3196457, + 47.698942101 + ], + [ + 11.3200613, + 47.699246801 + ], + [ + 11.3204665, + 47.699564101 + ], + [ + 11.3221073, + 47.700868101 + ], + [ + 11.3224314, + 47.701169301 + ], + [ + 11.323224155, + 47.70190618 + ] + ] + } + }, + { + "identifier": "2023-001843--vi-bs.2025-12-18_20-00-00-000.devi-zus.2024-04-04_10-00-00-000.f.de19", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.68553081780711,11.3012580282152,47.70219710604261,11.323537148749518", + "point": "47.68553081780711,11.3012580282152", + "startLcPosition": "4", + "impact": { + "lower": "Sindelsdorf", + "upper": "Murnau/Kochel", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Garmisch-Partenkirchen -> M\u00fcnchen", + "title": "A95 | Murnau/Kochel - Sindelsdorf", + "startTimestamp": "2025-12-18T20:00:00+01:00", + "coordinate": { + "lat": 47.68553081780711, + "long": 11.3012580282152 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.12.25 um 20:00 Uhr", + "Ende: 20.04.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.05.26)", + "", + "A95: Garmisch-Partenkirchen -> M\u00fcnchen, zwischen 2.0 km hinter AS Murnau/Kochel und 3.0 km vor AS Sindelsdorf", + "", + "L\u00e4nge: 2.5 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A95 BW62 bei km 51,769" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.301258028, + 47.685530818 + ], + [ + 11.3013063, + 47.685557701 + ], + [ + 11.3019089, + 47.685920401 + ], + [ + 11.3022191, + 47.686114701 + ], + [ + 11.3028383, + 47.686526601 + ], + [ + 11.3035063, + 47.687016601 + ], + [ + 11.3038687, + 47.687295801 + ], + [ + 11.30396, + 47.687374601 + ], + [ + 11.3044159, + 47.687768201 + ], + [ + 11.3049856, + 47.688261101 + ], + [ + 11.305163, + 47.688419201 + ], + [ + 11.3068957, + 47.690023101 + ], + [ + 11.3076577, + 47.690695801 + ], + [ + 11.3079316, + 47.690920301 + ], + [ + 11.3083262, + 47.691260301 + ], + [ + 11.3084637, + 47.691374801 + ], + [ + 11.3085655, + 47.691461401 + ], + [ + 11.3092109, + 47.691966901 + ], + [ + 11.3096963, + 47.692352601 + ], + [ + 11.3099257, + 47.692527201 + ], + [ + 11.3102207, + 47.692746501 + ], + [ + 11.3110982, + 47.693383601 + ], + [ + 11.3119717, + 47.693985501 + ], + [ + 11.3134131, + 47.694924501 + ], + [ + 11.3138464, + 47.695212601 + ], + [ + 11.3152144, + 47.696057101 + ], + [ + 11.3157621, + 47.696377901 + ], + [ + 11.316964, + 47.697123801 + ], + [ + 11.3178111, + 47.697682901 + ], + [ + 11.3183234, + 47.698016601 + ], + [ + 11.3196457, + 47.698942101 + ], + [ + 11.3200613, + 47.699246801 + ], + [ + 11.3204665, + 47.699564101 + ], + [ + 11.3221073, + 47.700868101 + ], + [ + 11.3224314, + 47.701169301 + ], + [ + 11.323537149, + 47.702197106 + ] + ] + } + }, + { + "identifier": "2026-017362--vi-bs.2026-04-08_07-30-00-000.devi-bs.2026-04-08_07-30-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "47.663079495855285,11.248811170272715,47.66036362487903,11.240562067476361", + "point": "47.663079495855285,11.248811170272715", + "startLcPosition": "4", + "impact": { + "lower": "M\u00fchlweiher", + "upper": "Murnau/Kochel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Garmisch-Partenkirchen", + "title": "A95 | Murnau/Kochel - M\u00fchlweiher", + "coordinate": { + "lat": 47.663079495855285, + "long": 11.248811170272715 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:30 bis 16:00 Uhr", + "", + "A95: M\u00fcnchen -> Garmisch-Partenkirchen, zwischen 2.8 km hinter AS Murnau/Kochel und 0.1 km vor M\u00fchlweiher", + "", + "L\u00e4nge: 0.69 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "Wartung M\u00fchlbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.24881117, + 47.663079496 + ], + [ + 11.247712, + 47.662848601 + ], + [ + 11.2463155, + 47.662505401 + ], + [ + 11.2445545, + 47.661972101 + ], + [ + 11.2441626, + 47.661841801 + ], + [ + 11.2435098, + 47.661624901 + ], + [ + 11.2426516, + 47.661318201 + ], + [ + 11.2416791, + 47.660880601 + ], + [ + 11.240925, + 47.660531901 + ], + [ + 11.240562067, + 47.660363625 + ] + ] + } + }, + { + "identifier": "2023-001843--vi-bs.2026-04-20_06-00-00-000.devi-zus.2024-04-04_10-00-00-000.f.de26", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.701981555015294,11.32307085143707,47.68597660290168,11.301743600324706", + "point": "47.701981555015294,11.32307085143707", + "startLcPosition": "5", + "impact": { + "lower": "Murnau/Kochel", + "upper": "Sindelsdorf", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Garmisch-Partenkirchen", + "title": "A95 | Sindelsdorf - Murnau/Kochel", + "startTimestamp": "2026-04-20T06:00:00+02:00", + "coordinate": { + "lat": 47.701981555015294, + "long": 11.32307085143707 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 06:00 Uhr", + "Ende: 27.04.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.05.26)", + "", + "A95: M\u00fcnchen -> Garmisch-Partenkirchen, zwischen 3.0 km hinter AS Sindelsdorf und 2.0 km vor AS Murnau/Kochel", + "", + "L\u00e4nge: 2.4 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A95 BW62 bei km 51,769" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.323070851, + 47.701981555 + ], + [ + 11.3222562, + 47.701230601 + ], + [ + 11.3219263, + 47.700926501 + ], + [ + 11.3199696, + 47.699359401 + ], + [ + 11.319756, + 47.699196001 + ], + [ + 11.3177261, + 47.697765101 + ], + [ + 11.3157442, + 47.696546001 + ], + [ + 11.3151529, + 47.696178001 + ], + [ + 11.3137519, + 47.695309101 + ], + [ + 11.3132913, + 47.695012001 + ], + [ + 11.3118465, + 47.694068201 + ], + [ + 11.3109735, + 47.693463201 + ], + [ + 11.3101385, + 47.692852401 + ], + [ + 11.3094687, + 47.692355401 + ], + [ + 11.3085706, + 47.691648101 + ], + [ + 11.3084277, + 47.691530101 + ], + [ + 11.3083268, + 47.691448601 + ], + [ + 11.3082007, + 47.691336401 + ], + [ + 11.3081171, + 47.691268301 + ], + [ + 11.3075241, + 47.690769301 + ], + [ + 11.3067563, + 47.690095901 + ], + [ + 11.3048707, + 47.688360601 + ], + [ + 11.3046786, + 47.688184801 + ], + [ + 11.3042238, + 47.687780301 + ], + [ + 11.3038148, + 47.687440501 + ], + [ + 11.3035441, + 47.687227701 + ], + [ + 11.3031566, + 47.686930401 + ], + [ + 11.3027412, + 47.686633101 + ], + [ + 11.3025114, + 47.686472801 + ], + [ + 11.3021732, + 47.686244001 + ], + [ + 11.3017988, + 47.686011901 + ], + [ + 11.3017436, + 47.685976603 + ] + ] + } + }, + { + "identifier": "2023-001843--vi-bs.2025-12-18_20-00-00-000.devi-zus.2024-04-04_10-00-00-000.f.de17", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.70227161362286,11.323385521511474,47.685627321698014,11.301140805863287", + "point": "47.70227161362286,11.323385521511474", + "startLcPosition": "5", + "impact": { + "lower": "Murnau/Kochel", + "upper": "Sindelsdorf", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Garmisch-Partenkirchen", + "title": "A95 | Sindelsdorf - Murnau/Kochel", + "startTimestamp": "2025-12-18T20:00:00+01:00", + "coordinate": { + "lat": 47.70227161362286, + "long": 11.323385521511474 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.12.25 um 20:00 Uhr", + "Ende: 20.04.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.05.26)", + "", + "A95: M\u00fcnchen -> Garmisch-Partenkirchen, zwischen 3.0 km hinter AS Sindelsdorf und 2.0 km vor AS Murnau/Kochel", + "", + "L\u00e4nge: 2.5 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A95 BW62 bei km 51,769" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.323385522, + 47.702271614 + ], + [ + 11.3222562, + 47.701230601 + ], + [ + 11.3219263, + 47.700926501 + ], + [ + 11.3199696, + 47.699359401 + ], + [ + 11.319756, + 47.699196001 + ], + [ + 11.3177261, + 47.697765101 + ], + [ + 11.3157442, + 47.696546001 + ], + [ + 11.3151529, + 47.696178001 + ], + [ + 11.3137519, + 47.695309101 + ], + [ + 11.3132913, + 47.695012001 + ], + [ + 11.3118465, + 47.694068201 + ], + [ + 11.3109735, + 47.693463201 + ], + [ + 11.3101385, + 47.692852401 + ], + [ + 11.3094687, + 47.692355401 + ], + [ + 11.3085706, + 47.691648101 + ], + [ + 11.3084277, + 47.691530101 + ], + [ + 11.3083268, + 47.691448601 + ], + [ + 11.3082007, + 47.691336401 + ], + [ + 11.3081171, + 47.691268301 + ], + [ + 11.3075241, + 47.690769301 + ], + [ + 11.3067563, + 47.690095901 + ], + [ + 11.3048707, + 47.688360601 + ], + [ + 11.3046786, + 47.688184801 + ], + [ + 11.3042238, + 47.687780301 + ], + [ + 11.3038148, + 47.687440501 + ], + [ + 11.3035441, + 47.687227701 + ], + [ + 11.3031566, + 47.686930401 + ], + [ + 11.3027412, + 47.686633101 + ], + [ + 11.3025114, + 47.686472801 + ], + [ + 11.3021732, + 47.686244001 + ], + [ + 11.3017988, + 47.686011901 + ], + [ + 11.3015378, + 47.685845001 + ], + [ + 11.301140806, + 47.685627322 + ] + ] + } + }, + { + "identifier": "2025-062210--vi-bs.2026-03-06_00-00-00-000.devi-zus.2025-12-16_10-00-00-000.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.05737303866241,11.465753802813895,48.100660457594515,11.498282314043438", + "point": "48.05737303866241,11.465753802813895", + "startLcPosition": "12", + "impact": { + "lower": "M\u00fcnchen-Kreuzhof", + "upper": "Unterdill", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Garmisch-Partenkirchen -> M\u00fcnchen", + "title": "A95 | Unterdill - M\u00fcnchen-Kreuzhof", + "startTimestamp": "2026-03-06T00:00:00+01:00", + "coordinate": { + "lat": 48.05737303866241, + "long": 11.465753802813895 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.03.26 um 00:00 Uhr", + "Ende: 02.03.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.03.27)", + "", + "A95: Garmisch-Partenkirchen -> M\u00fcnchen, zwischen 3.7 km hinter Unterdill und 0.3 km vor AS M\u00fcnchen-Kreuzhof", + "", + "L\u00e4nge: 5.74 km | Maximale Durchfahrtsbreite: 6.7 m", + "", + "A95 Kreuzhofbr\u00fccken_LHM" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.465753803, + 48.057373039 + ], + [ + 11.4661125, + 48.057541101 + ], + [ + 11.4674205, + 48.058128401 + ], + [ + 11.4692755, + 48.058916901 + ], + [ + 11.4702165, + 48.059354401 + ], + [ + 11.4711117, + 48.059804401 + ], + [ + 11.471961, + 48.060288601 + ], + [ + 11.4729113, + 48.060911701 + ], + [ + 11.4732006, + 48.061127901 + ], + [ + 11.4732745, + 48.061189701 + ], + [ + 11.4734873, + 48.061359001 + ], + [ + 11.474256, + 48.062039101 + ], + [ + 11.4751307, + 48.062943501 + ], + [ + 11.4775066, + 48.065613801 + ], + [ + 11.4784366, + 48.066654401 + ], + [ + 11.4817783, + 48.070396901 + ], + [ + 11.4821175, + 48.070765301 + ], + [ + 11.4823675, + 48.071039701 + ], + [ + 11.4823903, + 48.071065801 + ], + [ + 11.4837171, + 48.072583201 + ], + [ + 11.4849518, + 48.073967201 + ], + [ + 11.4856259, + 48.074705001 + ], + [ + 11.4861337, + 48.075353601 + ], + [ + 11.486635, + 48.076082201 + ], + [ + 11.4868602, + 48.076475401 + ], + [ + 11.4871346, + 48.076973101 + ], + [ + 11.4873554, + 48.077458501 + ], + [ + 11.4875286, + 48.077877801 + ], + [ + 11.4876112, + 48.078131801 + ], + [ + 11.4877405, + 48.078579601 + ], + [ + 11.4878733, + 48.079100001 + ], + [ + 11.4879666, + 48.079506001 + ], + [ + 11.4880373, + 48.080040201 + ], + [ + 11.4880804, + 48.080615801 + ], + [ + 11.4880836, + 48.080989701 + ], + [ + 11.4880816, + 48.081417301 + ], + [ + 11.4880113, + 48.085691201 + ], + [ + 11.4880001, + 48.086403901 + ], + [ + 11.4879719, + 48.088280001 + ], + [ + 11.4879351, + 48.090396401 + ], + [ + 11.4879174, + 48.091383301 + ], + [ + 11.4879082, + 48.092021901 + ], + [ + 11.4879019, + 48.093632601 + ], + [ + 11.487929, + 48.093957901 + ], + [ + 11.4879896, + 48.094240201 + ], + [ + 11.488114, + 48.094601701 + ], + [ + 11.4883346, + 48.095022601 + ], + [ + 11.4885834, + 48.095346601 + ], + [ + 11.4889351, + 48.095712901 + ], + [ + 11.4892556, + 48.095975801 + ], + [ + 11.4896603, + 48.096254701 + ], + [ + 11.4905149, + 48.096714101 + ], + [ + 11.4956961, + 48.099354601 + ], + [ + 11.4982601, + 48.100649101 + ], + [ + 11.498282314, + 48.100660458 + ] + ] + } + }, + { + "identifier": "2026-017761--vi-bs.2026-04-09_08-00-00-000_048.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.02824940914727,11.425535759213282,48.02438280871236,11.42210883809112", + "point": "48.02824940914727,11.425535759213282", + "startLcPosition": "12", + "impact": { + "lower": "Starnberg", + "upper": "Unterdill", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Garmisch-Partenkirchen", + "title": "A95 | Unterdill - Starnberg", + "coordinate": { + "lat": 48.02824940914727, + "long": 11.425535759213282 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 16:00 Uhr", + "10.04.26 von 08:00 bis 13:15 Uhr", + "", + "A95: M\u00fcnchen -> Garmisch-Partenkirchen, zwischen 0.8 km hinter Unterdill und 1.1 km vor AD Starnberg", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 12 m", + "", + "Bau Abwasserleitung " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.425535759, + 48.028249409 + ], + [ + 11.4255334, + 48.028246301 + ], + [ + 11.4245749, + 48.027095601 + ], + [ + 11.4240585, + 48.026497801 + ], + [ + 11.4236844, + 48.026053701 + ], + [ + 11.4231119, + 48.025435201 + ], + [ + 11.422509, + 48.024802701 + ], + [ + 11.422108838, + 48.024382809 + ] + ] + } + }, + { + "identifier": "2025-062210--vi-bs.2026-04-13_05-00-00-000.devi-zus.2025-12-16_10-00-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.09966369247574,11.496007702986022,48.06741309752168,11.478686301306617", + "point": "48.09966369247574,11.496007702986022", + "startLcPosition": "14", + "impact": { + "lower": "Unterdill", + "upper": "M\u00fcnchen-Kreuzhof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Garmisch-Partenkirchen", + "title": "A95 | M\u00fcnchen-Kreuzhof - Unterdill", + "coordinate": { + "lat": 48.09966369247574, + "long": 11.496007702986022 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 30.04.26 von 05:00 bis 18:00 Uhr.", + "", + "A95: M\u00fcnchen -> Garmisch-Partenkirchen, zwischen 0.5 km hinter AS M\u00fcnchen-Kreuzhof und 5.2 km vor Unterdill", + "", + "L\u00e4nge: 4.03 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A95 Kreuzhofbr\u00fccken_LHM" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.496007703, + 48.099663692 + ], + [ + 11.4955796, + 48.099450101 + ], + [ + 11.4903964, + 48.096832501 + ], + [ + 11.489502, + 48.096345901 + ], + [ + 11.4890849, + 48.096061701 + ], + [ + 11.4887443, + 48.095788601 + ], + [ + 11.4883875, + 48.095411501 + ], + [ + 11.4880951, + 48.095006301 + ], + [ + 11.4878955, + 48.094633601 + ], + [ + 11.4877704, + 48.094210601 + ], + [ + 11.4876999, + 48.093660301 + ], + [ + 11.4876922, + 48.092476001 + ], + [ + 11.4877165, + 48.091372501 + ], + [ + 11.4877337, + 48.090660201 + ], + [ + 11.4877297, + 48.090081701 + ], + [ + 11.4877947, + 48.086462601 + ], + [ + 11.4878108, + 48.085714001 + ], + [ + 11.4878775, + 48.081414201 + ], + [ + 11.4878615, + 48.080674401 + ], + [ + 11.4878595, + 48.080506101 + ], + [ + 11.4878199, + 48.080139401 + ], + [ + 11.4877824, + 48.079808901 + ], + [ + 11.4877083, + 48.079457701 + ], + [ + 11.4876643, + 48.079217501 + ], + [ + 11.4875242, + 48.078657601 + ], + [ + 11.4873541, + 48.078184601 + ], + [ + 11.4871126, + 48.077602201 + ], + [ + 11.4868465, + 48.077038401 + ], + [ + 11.4866064, + 48.076582901 + ], + [ + 11.4863279, + 48.076166301 + ], + [ + 11.4859669, + 48.075665601 + ], + [ + 11.4852905, + 48.074851801 + ], + [ + 11.4821264, + 48.071302501 + ], + [ + 11.4820394, + 48.071208701 + ], + [ + 11.4818551, + 48.071010101 + ], + [ + 11.478686301, + 48.067413098 + ] + ] + } + } + ] + }, + "A96": { + "roadworks": [ + { + "identifier": "2026-015077--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_019.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.61711797370522,9.736290243968094,47.63963070678873,9.744114641369734", + "point": "47.61711797370522,9.736290243968094", + "startLcPosition": "3", + "impact": { + "lower": "Humbrechts", + "upper": "Wei\u00dfensberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A96 | Wei\u00dfensberg - Humbrechts", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 47.61711797370522, + "long": 9.736290243968094 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 20.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.06.26)", + "", + "A96: Lindau -> M\u00fcnchen, zwischen 2.6 km hinter AS Wei\u00dfensberg und 5.8 km vor Humbrechts", + "", + "L\u00e4nge: 2.59 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A96 n\u00f6rdl. AS Wei\u00dfensberg - BW 08-1 und 09-1 - Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.736290244, + 47.617117974 + ], + [ + 9.7366242, + 47.617931901 + ], + [ + 9.7371107, + 47.619022901 + ], + [ + 9.7376105, + 47.620120701 + ], + [ + 9.7386424, + 47.622333101 + ], + [ + 9.7390508, + 47.623231501 + ], + [ + 9.7394264, + 47.624142901 + ], + [ + 9.7396921, + 47.624873201 + ], + [ + 9.7399289, + 47.625613501 + ], + [ + 9.7401389, + 47.626532701 + ], + [ + 9.7401915, + 47.626855701 + ], + [ + 9.7402412, + 47.627153601 + ], + [ + 9.7402843, + 47.627441201 + ], + [ + 9.7403445, + 47.628031001 + ], + [ + 9.7403518, + 47.628108101 + ], + [ + 9.7403724, + 47.628459601 + ], + [ + 9.740389, + 47.628723401 + ], + [ + 9.7404178, + 47.629507201 + ], + [ + 9.7404441, + 47.630479801 + ], + [ + 9.7405164, + 47.631557401 + ], + [ + 9.7406748, + 47.632753801 + ], + [ + 9.7407085, + 47.632890901 + ], + [ + 9.7408751, + 47.633569901 + ], + [ + 9.7409765, + 47.633934301 + ], + [ + 9.7410987, + 47.634373101 + ], + [ + 9.741319, + 47.634980901 + ], + [ + 9.7415832, + 47.635584601 + ], + [ + 9.7420333, + 47.636495101 + ], + [ + 9.7426491, + 47.637571701 + ], + [ + 9.7435363, + 47.638893701 + ], + [ + 9.744114641, + 47.639630707 + ] + ] + } + }, + { + "identifier": "2026-015077--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-04-13_00-00-00-000_019.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.639689302612176,9.743951170468929,47.6171431543807,9.736155980554269", + "point": "47.639689302612176,9.743951170468929", + "startLcPosition": "5", + "impact": { + "lower": "Wei\u00dfensberg", + "upper": "Humbrechts", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Humbrechts - Wei\u00dfensberg", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 47.639689302612176, + "long": 9.743951170468929 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 20.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.06.26)", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 5.8 km hinter Humbrechts und 2.6 km vor AS Wei\u00dfensberg", + "", + "L\u00e4nge: 2.59 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A96 n\u00f6rdl. AS Wei\u00dfensberg - BW 08-1 und 09-1 - Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.74395117, + 47.639689303 + ], + [ + 9.7433721, + 47.638951401 + ], + [ + 9.7425069, + 47.637634801 + ], + [ + 9.7418854, + 47.636547601 + ], + [ + 9.7414188, + 47.635566201 + ], + [ + 9.7411899, + 47.635010401 + ], + [ + 9.7409752, + 47.634404201 + ], + [ + 9.7407151, + 47.633596501 + ], + [ + 9.7405257, + 47.632771101 + ], + [ + 9.7403592, + 47.631553501 + ], + [ + 9.7402993, + 47.630485901 + ], + [ + 9.7402512, + 47.629497801 + ], + [ + 9.740221, + 47.628697401 + ], + [ + 9.7402083, + 47.628462401 + ], + [ + 9.7401935, + 47.628245901 + ], + [ + 9.7401791, + 47.628036401 + ], + [ + 9.740119, + 47.627453001 + ], + [ + 9.7400793, + 47.627162101 + ], + [ + 9.7400338, + 47.626861301 + ], + [ + 9.7399679, + 47.626534401 + ], + [ + 9.7397539, + 47.625631601 + ], + [ + 9.7395295, + 47.624888801 + ], + [ + 9.7392532, + 47.624162401 + ], + [ + 9.7388934, + 47.623252401 + ], + [ + 9.7384907, + 47.622359801 + ], + [ + 9.737453, + 47.620157301 + ], + [ + 9.7369659, + 47.619048201 + ], + [ + 9.7364913, + 47.617955201 + ], + [ + 9.736155981, + 47.617143154 + ] + ] + } + }, + { + "identifier": "2026-015081--vi-fbm.2026-04-16_20-00-00-000.devi-zus.2026-04-13_00-00-00-000_020.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.81303031009689,9.990655731633638,47.82965751794478,9.991642253701311", + "point": "47.81303031009689,9.990655731633638", + "startLcPosition": "11", + "impact": { + "lower": "Leutkirch-West", + "upper": "Winterberg", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A96 | Winterberg - Leutkirch-West", + "coordinate": { + "lat": 47.81303031009689, + "long": 9.990655731633638 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Donnerstag, Freitag und Samstag zwischen dem 16.04.26 und dem 19.04.26 von 20:00 bis 00:00 Uhr.", + "Jeden Freitag, Samstag und Sonntag zwischen dem 17.04.26 und dem 19.04.26 von 00:00 bis 05:00 Uhr.", + "", + "A96: Lindau -> M\u00fcnchen, zwischen 1.5 km hinter Winterberg und 0.7 km vor AS Leutkirch-West", + "", + "L\u00e4nge: 1.85 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A96 n\u00f6rdl. AS Leutkirch-S\u00fcd - Bauarbeiten im Auftrag der DB-AG" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.990655732, + 47.81303031 + ], + [ + 9.9906914, + 47.813248501 + ], + [ + 9.9908175, + 47.814189501 + ], + [ + 9.9908837, + 47.814664001 + ], + [ + 9.9909255, + 47.814973401 + ], + [ + 9.9909846, + 47.815415201 + ], + [ + 9.9910606, + 47.816004001 + ], + [ + 9.9910914, + 47.816270801 + ], + [ + 9.9911346, + 47.816702701 + ], + [ + 9.9911856, + 47.817143501 + ], + [ + 9.9912333, + 47.817664401 + ], + [ + 9.9913215, + 47.818578201 + ], + [ + 9.9913543, + 47.818904301 + ], + [ + 9.9914654, + 47.820459701 + ], + [ + 9.9915447, + 47.821569201 + ], + [ + 9.9916322, + 47.823444901 + ], + [ + 9.9916821, + 47.825341701 + ], + [ + 9.9916826, + 47.825429801 + ], + [ + 9.9916921, + 47.827261901 + ], + [ + 9.991657, + 47.829171501 + ], + [ + 9.991642254, + 47.829657518 + ] + ] + } + }, + { + "identifier": "2025-051051--vi-bs.2025-10-27_07-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.80103810151129,9.981999969800087,47.800677684362334,9.981518922241042", + "point": "47.80103810151129,9.981999969800087", + "startLcPosition": "11", + "impact": { + "lower": "Ki\u00dflegg", + "upper": "Winterberg", + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Winterberg - Ki\u00dflegg", + "startTimestamp": "2025-10-27T07:00:00+01:00", + "coordinate": { + "lat": 47.80103810151129, + "long": 9.981999969800087 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.10.25 um 07:00 Uhr", + "Ende: 30.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A96: M\u00fcnchen -> Lindau, zwischen Winterberg und 8.1 km vor AS Ki\u00dflegg", + "", + "L\u00e4nge: konnte nicht ermittelt werden | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A96 PP Winterberg Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.98199997, + 47.801038102 + ], + [ + 9.9815789, + 47.800761301 + ], + [ + 9.981518922, + 47.800677684 + ] + ] + } + }, + { + "identifier": "2026-017621--vi-bs.2026-04-09_08-00-00-000_037.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "47.81617751452498,9.99090694118725,47.75170259709719,9.90558874911203", + "point": "47.81617751452498,9.99090694118725", + "startLcPosition": "12", + "impact": { + "lower": "Wangen-Nord", + "upper": "Leutkirch-S\u00fcd", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Leutkirch-S\u00fcd - Wangen-Nord", + "coordinate": { + "lat": 47.81617751452498, + "long": 9.99090694118725 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:00 bis 15:30 Uhr", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 0.1 km hinter AS Leutkirch-S\u00fcd und 3.9 km vor AS Wangen-Nord", + "", + "L\u00e4nge: 10.03 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A96 von Leutkirch-S\u00fcd (AS) nach Wangen-Nord (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.990906941, + 47.816177515 + ], + [ + 9.9908862, + 47.816007601 + ], + [ + 9.9908272, + 47.815473901 + ], + [ + 9.9907521, + 47.814673201 + ], + [ + 9.9907064, + 47.814396001 + ], + [ + 9.9906268, + 47.813865201 + ], + [ + 9.9905698, + 47.813395401 + ], + [ + 9.9904157, + 47.812415201 + ], + [ + 9.9903299, + 47.811927001 + ], + [ + 9.9900748, + 47.810647101 + ], + [ + 9.9896902, + 47.809383601 + ], + [ + 9.9893926, + 47.808608901 + ], + [ + 9.9887404, + 47.807296701 + ], + [ + 9.9879758, + 47.806040001 + ], + [ + 9.9870751, + 47.804864301 + ], + [ + 9.9864096, + 47.804106801 + ], + [ + 9.9859001, + 47.803577601 + ], + [ + 9.985569, + 47.803253601 + ], + [ + 9.9852475, + 47.802948401 + ], + [ + 9.985069, + 47.802780801 + ], + [ + 9.9845524, + 47.802339501 + ], + [ + 9.9838721, + 47.801800401 + ], + [ + 9.9825484, + 47.800853201 + ], + [ + 9.9813468, + 47.800099501 + ], + [ + 9.980128, + 47.799421901 + ], + [ + 9.9798709, + 47.799290701 + ], + [ + 9.9794656, + 47.799090101 + ], + [ + 9.9790452, + 47.798890201 + ], + [ + 9.9783088, + 47.798557301 + ], + [ + 9.9779547, + 47.798400701 + ], + [ + 9.9773785, + 47.798162001 + ], + [ + 9.9766395, + 47.797875901 + ], + [ + 9.9737851, + 47.796828901 + ], + [ + 9.9728242, + 47.796434601 + ], + [ + 9.9717447, + 47.795930701 + ], + [ + 9.9713495, + 47.795722401 + ], + [ + 9.9710706, + 47.795572501 + ], + [ + 9.9701226, + 47.794993401 + ], + [ + 9.9688655, + 47.794066501 + ], + [ + 9.9679882, + 47.793286801 + ], + [ + 9.9670513, + 47.792272201 + ], + [ + 9.9663717, + 47.791365601 + ], + [ + 9.9659142, + 47.790606501 + ], + [ + 9.9648254, + 47.788616901 + ], + [ + 9.9640973, + 47.787483701 + ], + [ + 9.9635925, + 47.786781901 + ], + [ + 9.9632033, + 47.786302801 + ], + [ + 9.9627066, + 47.785708501 + ], + [ + 9.9618342, + 47.784809401 + ], + [ + 9.9607435, + 47.783818501 + ], + [ + 9.9594418, + 47.782805301 + ], + [ + 9.9580703, + 47.781881201 + ], + [ + 9.9566188, + 47.781037801 + ], + [ + 9.9555952, + 47.780518101 + ], + [ + 9.9543263, + 47.779926401 + ], + [ + 9.9530347, + 47.779404301 + ], + [ + 9.9513682, + 47.778788201 + ], + [ + 9.9498571, + 47.778304601 + ], + [ + 9.9485327, + 47.777916001 + ], + [ + 9.9472327, + 47.777569101 + ], + [ + 9.945188, + 47.777089801 + ], + [ + 9.9413326, + 47.776257701 + ], + [ + 9.9409132, + 47.776171101 + ], + [ + 9.9406992, + 47.776127001 + ], + [ + 9.9395361, + 47.775825401 + ], + [ + 9.9385726, + 47.775545901 + ], + [ + 9.9374343, + 47.775158101 + ], + [ + 9.9362677, + 47.774674201 + ], + [ + 9.9350443, + 47.774095801 + ], + [ + 9.9335584, + 47.773308001 + ], + [ + 9.9318759, + 47.772365401 + ], + [ + 9.9301828, + 47.771373301 + ], + [ + 9.9281482, + 47.770087001 + ], + [ + 9.9266845, + 47.769105701 + ], + [ + 9.9251755, + 47.768047901 + ], + [ + 9.9244871, + 47.767566101 + ], + [ + 9.9229322, + 47.766473601 + ], + [ + 9.9200568, + 47.764457601 + ], + [ + 9.9147297, + 47.760720801 + ], + [ + 9.9132739, + 47.759647601 + ], + [ + 9.9117377, + 47.758370601 + ], + [ + 9.9105832, + 47.757256201 + ], + [ + 9.909353, + 47.755903701 + ], + [ + 9.9090029, + 47.755498601 + ], + [ + 9.9087091, + 47.755160201 + ], + [ + 9.9083271, + 47.754699001 + ], + [ + 9.9074233, + 47.753652701 + ], + [ + 9.9069612, + 47.753126501 + ], + [ + 9.9058321, + 47.751956501 + ], + [ + 9.905588749, + 47.751702597 + ] + ] + } + }, + { + "identifier": "2026-015081--vi-fbm.2026-04-16_20-00-00-000.devi-zus.2026-04-13_00-00-00-000_020.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.82965553544989,9.991509271214387,47.81304068435234,9.990514033295915", + "point": "47.82965553544989,9.991509271214387", + "startLcPosition": "13", + "impact": { + "lower": "Winterberg", + "upper": "Leutkirch-West", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Leutkirch-West - Winterberg", + "coordinate": { + "lat": 47.82965553544989, + "long": 9.991509271214387 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Donnerstag, Freitag und Samstag zwischen dem 16.04.26 und dem 19.04.26 von 20:00 bis 00:00 Uhr.", + "Jeden Freitag, Samstag und Sonntag zwischen dem 17.04.26 und dem 19.04.26 von 00:00 bis 05:00 Uhr.", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 0.7 km hinter AS Leutkirch-West und 1.5 km vor Winterberg", + "", + "L\u00e4nge: 1.85 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A96 n\u00f6rdl. AS Leutkirch-S\u00fcd - Bauarbeiten im Auftrag der DB-AG" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.991509271, + 47.829655535 + ], + [ + 9.9915262, + 47.829187901 + ], + [ + 9.9915573, + 47.827265701 + ], + [ + 9.9915398, + 47.825427301 + ], + [ + 9.991539, + 47.825347401 + ], + [ + 9.9915305, + 47.824417001 + ], + [ + 9.9914945, + 47.823446801 + ], + [ + 9.9914501, + 47.822437601 + ], + [ + 9.9913988, + 47.821555701 + ], + [ + 9.9913236, + 47.820460701 + ], + [ + 9.9912105, + 47.818893901 + ], + [ + 9.9911693, + 47.818440501 + ], + [ + 9.9910277, + 47.817170801 + ], + [ + 9.990981, + 47.816784201 + ], + [ + 9.9908862, + 47.816007601 + ], + [ + 9.9908272, + 47.815473901 + ], + [ + 9.9907521, + 47.814673201 + ], + [ + 9.9907064, + 47.814396001 + ], + [ + 9.9906268, + 47.813865201 + ], + [ + 9.9905698, + 47.813395401 + ], + [ + 9.990514033, + 47.813040684 + ] + ] + } + }, + { + "identifier": "2024-019219--vi-fbm.2026-04-13_20-00-00-000.devi-zus.2025-09-19_19-00-00-000_006.de27", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.993363213643526,10.14355223361679,47.99892264000264,10.180500414457581", + "point": "47.993363213643526,10.14355223361679", + "startLcPosition": "16", + "impact": { + "lower": "Memmingen-Ost", + "upper": "Buxheimer Wald", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A96 | Buxheimer Wald - Memmingen-Ost", + "coordinate": { + "lat": 47.993363213643526, + "long": 10.14355223361679 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "18.04.26 20:00 bis zum 19.04.26 05:30 Uhr.", + "19.04.26 20:00 bis zum 20.04.26 05:30 Uhr.", + "20.04.26 20:00 bis zum 21.04.26 05:30 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 05:30 Uhr.", + "22.04.26 20:00 bis zum 23.04.26 05:30 Uhr.", + "", + "A96: Lindau -> M\u00fcnchen, zwischen 3.3 km hinter Buxheimer Wald und 1.6 km vor AS Memmingen-Ost", + "", + "L\u00e4nge: 2.88 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A.K.006 VZB AK Memmingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.143552234, + 47.993363214 + ], + [ + 10.1436395, + 47.993402201 + ], + [ + 10.1445278, + 47.993765501 + ], + [ + 10.1448277, + 47.993835001 + ], + [ + 10.1449877, + 47.993882801 + ], + [ + 10.1455027, + 47.994058701 + ], + [ + 10.1460118, + 47.994218701 + ], + [ + 10.1462387, + 47.994294301 + ], + [ + 10.1465273, + 47.994378701 + ], + [ + 10.1470074, + 47.994533601 + ], + [ + 10.1472986, + 47.994638301 + ], + [ + 10.147747, + 47.994812501 + ], + [ + 10.1492808, + 47.995462001 + ], + [ + 10.1495378, + 47.995561601 + ], + [ + 10.1498846, + 47.995692001 + ], + [ + 10.1503335, + 47.995843601 + ], + [ + 10.1512378, + 47.996129801 + ], + [ + 10.1515762, + 47.996226401 + ], + [ + 10.1526443, + 47.996514701 + ], + [ + 10.153235, + 47.996672001 + ], + [ + 10.1536319, + 47.996771001 + ], + [ + 10.1542497, + 47.996927501 + ], + [ + 10.1547084, + 47.997041701 + ], + [ + 10.155478, + 47.997214601 + ], + [ + 10.1561624, + 47.997371501 + ], + [ + 10.1570591, + 47.997559601 + ], + [ + 10.1575098, + 47.997644701 + ], + [ + 10.1580632, + 47.997753101 + ], + [ + 10.159134, + 47.997957901 + ], + [ + 10.1594701, + 47.998015101 + ], + [ + 10.1601165, + 47.998119701 + ], + [ + 10.1608796, + 47.998234501 + ], + [ + 10.1616117, + 47.998339201 + ], + [ + 10.1624328, + 47.998452801 + ], + [ + 10.1629311, + 47.998516101 + ], + [ + 10.1635572, + 47.998595101 + ], + [ + 10.1645115, + 47.998693201 + ], + [ + 10.1652634, + 47.998767201 + ], + [ + 10.1664801, + 47.998872401 + ], + [ + 10.1672427, + 47.998925501 + ], + [ + 10.1681329, + 47.998977201 + ], + [ + 10.168596, + 47.999003801 + ], + [ + 10.1691494, + 47.999028601 + ], + [ + 10.1698878, + 47.999057401 + ], + [ + 10.1706907, + 47.999077501 + ], + [ + 10.1715851, + 47.999095101 + ], + [ + 10.1725286, + 47.999104601 + ], + [ + 10.1732477, + 47.999098901 + ], + [ + 10.1739565, + 47.999090501 + ], + [ + 10.1747018, + 47.999077501 + ], + [ + 10.1753023, + 47.999061301 + ], + [ + 10.1801351, + 47.998930601 + ], + [ + 10.180500414, + 47.99892264 + ] + ] + } + }, + { + "identifier": "2024-019219--vi-bs.2026-04-23_05-30-00-000.devi-zus.2025-09-19_19-00-00-000_006.de35", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.992448896437836,10.141563305122974,47.99892264000264,10.180500414457581", + "point": "47.992448896437836,10.141563305122974", + "startLcPosition": "16", + "impact": { + "lower": "Memmingen-Ost", + "upper": "Buxheimer Wald", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A96 | Buxheimer Wald - Memmingen-Ost", + "startTimestamp": "2026-04-23T05:30:00+02:00", + "coordinate": { + "lat": 47.992448896437836, + "long": 10.141563305122974 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.04.26 um 05:30 Uhr", + "Ende: 28.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.26)", + "", + "A96: Lindau -> M\u00fcnchen, zwischen 3.1 km hinter Buxheimer Wald und 1.6 km vor AS Memmingen-Ost", + "", + "L\u00e4nge: 3.06 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A.K.006 VZB AK Memmingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.141563305, + 47.992448896 + ], + [ + 10.1425066, + 47.992885801 + ], + [ + 10.1431464, + 47.993181901 + ], + [ + 10.1436395, + 47.993402201 + ], + [ + 10.1445278, + 47.993765501 + ], + [ + 10.1448277, + 47.993835001 + ], + [ + 10.1449877, + 47.993882801 + ], + [ + 10.1455027, + 47.994058701 + ], + [ + 10.1460118, + 47.994218701 + ], + [ + 10.1462387, + 47.994294301 + ], + [ + 10.1465273, + 47.994378701 + ], + [ + 10.1470074, + 47.994533601 + ], + [ + 10.1472986, + 47.994638301 + ], + [ + 10.147747, + 47.994812501 + ], + [ + 10.1492808, + 47.995462001 + ], + [ + 10.1495378, + 47.995561601 + ], + [ + 10.1498846, + 47.995692001 + ], + [ + 10.1503335, + 47.995843601 + ], + [ + 10.1512378, + 47.996129801 + ], + [ + 10.1515762, + 47.996226401 + ], + [ + 10.1526443, + 47.996514701 + ], + [ + 10.153235, + 47.996672001 + ], + [ + 10.1536319, + 47.996771001 + ], + [ + 10.1542497, + 47.996927501 + ], + [ + 10.1547084, + 47.997041701 + ], + [ + 10.155478, + 47.997214601 + ], + [ + 10.1561624, + 47.997371501 + ], + [ + 10.1570591, + 47.997559601 + ], + [ + 10.1575098, + 47.997644701 + ], + [ + 10.1580632, + 47.997753101 + ], + [ + 10.159134, + 47.997957901 + ], + [ + 10.1594701, + 47.998015101 + ], + [ + 10.1601165, + 47.998119701 + ], + [ + 10.1608796, + 47.998234501 + ], + [ + 10.1616117, + 47.998339201 + ], + [ + 10.1624328, + 47.998452801 + ], + [ + 10.1629311, + 47.998516101 + ], + [ + 10.1635572, + 47.998595101 + ], + [ + 10.1645115, + 47.998693201 + ], + [ + 10.1652634, + 47.998767201 + ], + [ + 10.1664801, + 47.998872401 + ], + [ + 10.1672427, + 47.998925501 + ], + [ + 10.1681329, + 47.998977201 + ], + [ + 10.168596, + 47.999003801 + ], + [ + 10.1691494, + 47.999028601 + ], + [ + 10.1698878, + 47.999057401 + ], + [ + 10.1706907, + 47.999077501 + ], + [ + 10.1715851, + 47.999095101 + ], + [ + 10.1725286, + 47.999104601 + ], + [ + 10.1732477, + 47.999098901 + ], + [ + 10.1739565, + 47.999090501 + ], + [ + 10.1747018, + 47.999077501 + ], + [ + 10.1753023, + 47.999061301 + ], + [ + 10.1801351, + 47.998930601 + ], + [ + 10.180500414, + 47.99892264 + ] + ] + } + }, + { + "identifier": "2025-047692--vi-bs.2026-04-15_05-30-00-000.devi-zus.2026-03-01_00-00-00-000_006.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.99697755813155,10.153959635824696,47.99389754551539,10.144194348408124", + "point": "47.99697755813155,10.153959635824696", + "startLcPosition": "18", + "impact": { + "lower": "Buxheimer Wald", + "upper": "Memmingen-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Memmingen-Nord - Buxheimer Wald", + "startTimestamp": "2026-04-15T05:30:00+02:00", + "coordinate": { + "lat": 47.99697755813155, + "long": 10.153959635824696 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 15.04.26 um 05:30 Uhr", + "Ende: 30.10.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.10.27)", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 0.1 km hinter AS Memmingen-Nord und 3.4 km vor Buxheimer Wald", + "", + "L\u00e4nge: 0.8 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 A-01397-00 BW 54-2s Ersatzneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.153959636, + 47.996977558 + ], + [ + 10.1535597, + 47.996876801 + ], + [ + 10.1528286, + 47.996686201 + ], + [ + 10.1517399, + 47.996394401 + ], + [ + 10.1505825, + 47.996068201 + ], + [ + 10.1503254, + 47.995997001 + ], + [ + 10.1500708, + 47.995937601 + ], + [ + 10.1497707, + 47.995882201 + ], + [ + 10.1494114, + 47.995830701 + ], + [ + 10.1489802, + 47.995774801 + ], + [ + 10.1486073, + 47.995724001 + ], + [ + 10.1483693, + 47.995690101 + ], + [ + 10.1481975, + 47.995664501 + ], + [ + 10.1479345, + 47.995617901 + ], + [ + 10.1476697, + 47.995558201 + ], + [ + 10.1471898, + 47.995422401 + ], + [ + 10.1468866, + 47.995327001 + ], + [ + 10.1466188, + 47.995230001 + ], + [ + 10.1462704, + 47.995090001 + ], + [ + 10.1459924, + 47.994954801 + ], + [ + 10.1456702, + 47.994791401 + ], + [ + 10.1453562, + 47.994604901 + ], + [ + 10.1450094, + 47.994382901 + ], + [ + 10.1445753, + 47.994121801 + ], + [ + 10.1442742, + 47.993943501 + ], + [ + 10.144194348, + 47.993897546 + ] + ] + } + }, + { + "identifier": "2025-047692--vi-fbm.2026-04-13_22-00-00-000.devi-zus.2026-03-01_00-00-00-000_006.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.99697755813155,10.153959635824696,47.99389754551539,10.144194348408124", + "point": "47.99697755813155,10.153959635824696", + "startLcPosition": "18", + "impact": { + "lower": "Buxheimer Wald", + "upper": "Memmingen-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Memmingen-Nord - Buxheimer Wald", + "coordinate": { + "lat": 47.99697755813155, + "long": 10.153959635824696 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 22:00 bis zum 14.04.26 05:30 Uhr.", + "14.04.26 22:00 bis zum 15.04.26 05:30 Uhr.", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 0.1 km hinter AS Memmingen-Nord und 3.4 km vor Buxheimer Wald", + "", + "L\u00e4nge: 0.8 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A7 A-01397-00 BW 54-2s Ersatzneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.153959636, + 47.996977558 + ], + [ + 10.1535597, + 47.996876801 + ], + [ + 10.1528286, + 47.996686201 + ], + [ + 10.1517399, + 47.996394401 + ], + [ + 10.1505825, + 47.996068201 + ], + [ + 10.1503254, + 47.995997001 + ], + [ + 10.1500708, + 47.995937601 + ], + [ + 10.1497707, + 47.995882201 + ], + [ + 10.1494114, + 47.995830701 + ], + [ + 10.1489802, + 47.995774801 + ], + [ + 10.1486073, + 47.995724001 + ], + [ + 10.1483693, + 47.995690101 + ], + [ + 10.1481975, + 47.995664501 + ], + [ + 10.1479345, + 47.995617901 + ], + [ + 10.1476697, + 47.995558201 + ], + [ + 10.1471898, + 47.995422401 + ], + [ + 10.1468866, + 47.995327001 + ], + [ + 10.1466188, + 47.995230001 + ], + [ + 10.1462704, + 47.995090001 + ], + [ + 10.1459924, + 47.994954801 + ], + [ + 10.1456702, + 47.994791401 + ], + [ + 10.1453562, + 47.994604901 + ], + [ + 10.1450094, + 47.994382901 + ], + [ + 10.1445753, + 47.994121801 + ], + [ + 10.1442742, + 47.993943501 + ], + [ + 10.144194348, + 47.993897546 + ] + ] + } + }, + { + "identifier": "2024-019219--vi-fbm.2026-04-13_20-00-00-000.devi-zus.2025-09-19_19-00-00-000_006.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.998782809254834,10.189814627465852,47.9957914174713,10.14910837471211", + "point": "47.998782809254834,10.189814627465852", + "startLcPosition": "19", + "impact": { + "lower": "Buxheimer Wald", + "upper": "Memmingen-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Memmingen-Ost - Buxheimer Wald", + "coordinate": { + "lat": 47.998782809254834, + "long": 10.189814627465852 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:30 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:30 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:30 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:30 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 05:30 Uhr.", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 0.9 km hinter AS Memmingen-Ost und 3.8 km vor Buxheimer Wald", + "", + "L\u00e4nge: 3.09 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A.K.006 VZB AK Memmingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.189814627, + 47.998782809 + ], + [ + 10.1829742, + 47.998957801 + ], + [ + 10.1819306, + 47.998980501 + ], + [ + 10.1809192, + 47.999008601 + ], + [ + 10.1801065, + 47.999032901 + ], + [ + 10.1790604, + 47.999059901 + ], + [ + 10.1747074, + 47.999172301 + ], + [ + 10.1739613, + 47.999185101 + ], + [ + 10.173248, + 47.999190501 + ], + [ + 10.1725205, + 47.999197901 + ], + [ + 10.1715687, + 47.999189201 + ], + [ + 10.1706807, + 47.999171701 + ], + [ + 10.1698744, + 47.999153801 + ], + [ + 10.1691308, + 47.999126001 + ], + [ + 10.1685785, + 47.999101801 + ], + [ + 10.1681224, + 47.999076201 + ], + [ + 10.1672226, + 47.999021801 + ], + [ + 10.1667633, + 47.998991901 + ], + [ + 10.1660894, + 47.998944501 + ], + [ + 10.165253, + 47.998869701 + ], + [ + 10.1645483, + 47.998806901 + ], + [ + 10.1635702, + 47.998703201 + ], + [ + 10.1630104, + 47.998633701 + ], + [ + 10.1615771, + 47.998445401 + ], + [ + 10.161071, + 47.998371701 + ], + [ + 10.1608262, + 47.998336001 + ], + [ + 10.1599046, + 47.998208101 + ], + [ + 10.1594222, + 47.998123801 + ], + [ + 10.1579495, + 47.997850201 + ], + [ + 10.1569996, + 47.997662601 + ], + [ + 10.1560967, + 47.997472801 + ], + [ + 10.1554189, + 47.997324001 + ], + [ + 10.154641, + 47.997139301 + ], + [ + 10.1542067, + 47.997039801 + ], + [ + 10.1535597, + 47.996876801 + ], + [ + 10.1528286, + 47.996686201 + ], + [ + 10.1517399, + 47.996394401 + ], + [ + 10.1505825, + 47.996068201 + ], + [ + 10.1503254, + 47.995997001 + ], + [ + 10.1500708, + 47.995937601 + ], + [ + 10.1497707, + 47.995882201 + ], + [ + 10.1494114, + 47.995830701 + ], + [ + 10.149108375, + 47.995791417 + ] + ] + } + }, + { + "identifier": "2024-019219--vi-bs.2026-04-18_05-30-00-000.devi-zus.2025-09-19_19-00-00-000_006.de33", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "47.998782809254834,10.189814627465852,47.9957914174713,10.14910837471211", + "point": "47.998782809254834,10.189814627465852", + "startLcPosition": "19", + "impact": { + "lower": "Buxheimer Wald", + "upper": "Memmingen-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Memmingen-Ost - Buxheimer Wald", + "startTimestamp": "2026-04-18T05:30:00+02:00", + "coordinate": { + "lat": 47.998782809254834, + "long": 10.189814627465852 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.04.26 um 05:30 Uhr", + "Ende: 28.06.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 28.06.26)", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 0.9 km hinter AS Memmingen-Ost und 3.8 km vor Buxheimer Wald", + "", + "L\u00e4nge: 3.09 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A.K.006 VZB AK Memmingen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.189814627, + 47.998782809 + ], + [ + 10.1829742, + 47.998957801 + ], + [ + 10.1819306, + 47.998980501 + ], + [ + 10.1809192, + 47.999008601 + ], + [ + 10.1801065, + 47.999032901 + ], + [ + 10.1790604, + 47.999059901 + ], + [ + 10.1747074, + 47.999172301 + ], + [ + 10.1739613, + 47.999185101 + ], + [ + 10.173248, + 47.999190501 + ], + [ + 10.1725205, + 47.999197901 + ], + [ + 10.1715687, + 47.999189201 + ], + [ + 10.1706807, + 47.999171701 + ], + [ + 10.1698744, + 47.999153801 + ], + [ + 10.1691308, + 47.999126001 + ], + [ + 10.1685785, + 47.999101801 + ], + [ + 10.1681224, + 47.999076201 + ], + [ + 10.1672226, + 47.999021801 + ], + [ + 10.1667633, + 47.998991901 + ], + [ + 10.1660894, + 47.998944501 + ], + [ + 10.165253, + 47.998869701 + ], + [ + 10.1645483, + 47.998806901 + ], + [ + 10.1635702, + 47.998703201 + ], + [ + 10.1630104, + 47.998633701 + ], + [ + 10.1615771, + 47.998445401 + ], + [ + 10.161071, + 47.998371701 + ], + [ + 10.1608262, + 47.998336001 + ], + [ + 10.1599046, + 47.998208101 + ], + [ + 10.1594222, + 47.998123801 + ], + [ + 10.1579495, + 47.997850201 + ], + [ + 10.1569996, + 47.997662601 + ], + [ + 10.1560967, + 47.997472801 + ], + [ + 10.1554189, + 47.997324001 + ], + [ + 10.154641, + 47.997139301 + ], + [ + 10.1542067, + 47.997039801 + ], + [ + 10.1535597, + 47.996876801 + ], + [ + 10.1528286, + 47.996686201 + ], + [ + 10.1517399, + 47.996394401 + ], + [ + 10.1505825, + 47.996068201 + ], + [ + 10.1503254, + 47.995997001 + ], + [ + 10.1500708, + 47.995937601 + ], + [ + 10.1497707, + 47.995882201 + ], + [ + 10.1494114, + 47.995830701 + ], + [ + 10.149108375, + 47.995791417 + ] + ] + } + }, + { + "identifier": "2025-045109--vi-bs.2026-04-15_10-00-00-000.devi-zus.2026-04-14_08-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.037125116172234,10.372474826596811,48.037034078352235,10.391794835535276", + "point": "48.037125116172234,10.372474826596811", + "startLcPosition": "22", + "impact": { + "lower": "Kammlachtal", + "upper": "Erkheim", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A96 | Erkheim - Kammlachtal", + "coordinate": { + "lat": 48.037125116172234, + "long": 10.372474826596811 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 10:00 bis zum 16.04.26 12:00 Uhr.", + "", + "A96: Lindau -> M\u00fcnchen, zwischen 3.7 km hinter AS Erkheim und 2.1 km vor Kammlachtal", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A96 Tunnelwartung und Reinigung Kohlbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.372474827, + 48.037125116 + ], + [ + 10.3728645, + 48.037174801 + ], + [ + 10.3736377, + 48.037253501 + ], + [ + 10.3748778, + 48.037360301 + ], + [ + 10.3757199, + 48.037422201 + ], + [ + 10.376922, + 48.037480301 + ], + [ + 10.3782161, + 48.037522101 + ], + [ + 10.380104, + 48.037518601 + ], + [ + 10.3821975, + 48.037483001 + ], + [ + 10.3842545, + 48.037417501 + ], + [ + 10.386341, + 48.037327501 + ], + [ + 10.3874449, + 48.037287501 + ], + [ + 10.3881477, + 48.037251401 + ], + [ + 10.3890796, + 48.037206201 + ], + [ + 10.3902061, + 48.037134901 + ], + [ + 10.391794836, + 48.037034078 + ] + ] + } + }, + { + "identifier": "2025-045109--vi-bs.2026-04-14_07-00-00-000.devi-zus.2026-04-14_08-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.03712343598419,10.372461649222112,48.037034078352235,10.391794835535276", + "point": "48.03712343598419,10.372461649222112", + "startLcPosition": "22", + "impact": { + "lower": "Kammlachtal", + "upper": "Erkheim", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A96 | Erkheim - Kammlachtal", + "coordinate": { + "lat": 48.03712343598419, + "long": 10.372461649222112 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 07:00 bis zum 15.04.26 10:00 Uhr.", + "", + "A96: Lindau -> M\u00fcnchen, zwischen 3.7 km hinter AS Erkheim und 2.1 km vor Kammlachtal", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A96 Tunnelwartung und Reinigung Kohlbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.372461649, + 48.037123436 + ], + [ + 10.3728645, + 48.037174801 + ], + [ + 10.3736377, + 48.037253501 + ], + [ + 10.3748778, + 48.037360301 + ], + [ + 10.3757199, + 48.037422201 + ], + [ + 10.376922, + 48.037480301 + ], + [ + 10.3782161, + 48.037522101 + ], + [ + 10.380104, + 48.037518601 + ], + [ + 10.3821975, + 48.037483001 + ], + [ + 10.3842545, + 48.037417501 + ], + [ + 10.386341, + 48.037327501 + ], + [ + 10.3874449, + 48.037287501 + ], + [ + 10.3881477, + 48.037251401 + ], + [ + 10.3890796, + 48.037206201 + ], + [ + 10.3902061, + 48.037134901 + ], + [ + 10.391794836, + 48.037034078 + ] + ] + } + }, + { + "identifier": "2025-045109--vi-bs.2026-04-15_10-00-00-000.devi-zus.2026-04-14_08-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.03713456112716,10.391809695007076,48.03725374662627,10.372437702688433", + "point": "48.03713456112716,10.391809695007076", + "startLcPosition": "24", + "impact": { + "lower": "Erkheim", + "upper": "Kammlachtal", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Kammlachtal - Erkheim", + "coordinate": { + "lat": 48.03713456112716, + "long": 10.391809695007076 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 10:00 bis zum 16.04.26 12:00 Uhr.", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 2.1 km hinter Kammlachtal und 3.7 km vor AS Erkheim", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A96 Tunnelwartung und Reinigung Kohlbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.391809695, + 48.037134561 + ], + [ + 10.3902129, + 48.037247101 + ], + [ + 10.3890816, + 48.037332501 + ], + [ + 10.3881664, + 48.037394401 + ], + [ + 10.3874537, + 48.037445301 + ], + [ + 10.3863519, + 48.037515901 + ], + [ + 10.3842716, + 48.037613601 + ], + [ + 10.3821965, + 48.037687701 + ], + [ + 10.380112, + 48.037731401 + ], + [ + 10.3781911, + 48.037741001 + ], + [ + 10.3769018, + 48.037680601 + ], + [ + 10.3756936, + 48.037603501 + ], + [ + 10.3748512, + 48.037530301 + ], + [ + 10.373615, + 48.037402401 + ], + [ + 10.3728226, + 48.037305201 + ], + [ + 10.372437703, + 48.037253747 + ] + ] + } + }, + { + "identifier": "2025-045109--vi-bs.2026-04-14_07-00-00-000.devi-zus.2026-04-14_08-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.03713456112716,10.391809695007076,48.03725198804717,10.372424548052416", + "point": "48.03713456112716,10.391809695007076", + "startLcPosition": "24", + "impact": { + "lower": "Erkheim", + "upper": "Kammlachtal", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Kammlachtal - Erkheim", + "coordinate": { + "lat": 48.03713456112716, + "long": 10.391809695007076 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 07:00 bis zum 15.04.26 10:00 Uhr.", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 2.1 km hinter Kammlachtal und 3.7 km vor AS Erkheim", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A96 Tunnelwartung und Reinigung Kohlbergtunnel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.391809695, + 48.037134561 + ], + [ + 10.3902129, + 48.037247101 + ], + [ + 10.3890816, + 48.037332501 + ], + [ + 10.3881664, + 48.037394401 + ], + [ + 10.3874537, + 48.037445301 + ], + [ + 10.3863519, + 48.037515901 + ], + [ + 10.3842716, + 48.037613601 + ], + [ + 10.3821965, + 48.037687701 + ], + [ + 10.380112, + 48.037731401 + ], + [ + 10.3781911, + 48.037741001 + ], + [ + 10.3769018, + 48.037680601 + ], + [ + 10.3756936, + 48.037603501 + ], + [ + 10.3748512, + 48.037530301 + ], + [ + 10.373615, + 48.037402401 + ], + [ + 10.3728226, + 48.037305201 + ], + [ + 10.372424548, + 48.037251988 + ] + ] + } + }, + { + "identifier": "2026-013962--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-20_12-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.03022365045297,10.666492767890826,48.02925308910805,10.670678585511046", + "point": "48.03022365045297,10.666492767890826", + "startLcPosition": "28", + "impact": { + "lower": "Buchloe-West", + "upper": "Wertachtal", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A96 | Wertachtal - Buchloe-West", + "coordinate": { + "lat": 48.03022365045297, + "long": 10.666492767890826 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 14:00 Uhr", + "", + "A96: Lindau -> M\u00fcnchen, zwischen 0.9 km hinter Wertachtal und 3.0 km vor AS Buchloe-West", + "", + "L\u00e4nge: 0.33 km | Maximale Durchfahrtsbreite: 4 m", + "", + "A96_Mindelheim_Parkplatz PWC Wertachtal-S\u00fcd km 104,200" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.666492768, + 48.03022365 + ], + [ + 10.6676986, + 48.029923101 + ], + [ + 10.6682858, + 48.029786801 + ], + [ + 10.6686106, + 48.029706801 + ], + [ + 10.6699456, + 48.029411601 + ], + [ + 10.670678586, + 48.029253089 + ] + ] + } + }, + { + "identifier": "2026-015116--vi-bs.2026-04-16_20-00-00-000.devi-zus.2026-04-14_21-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.078541270117896,11.12791542682498,48.0844671386304,11.196580798917283", + "point": "48.078541270117896,11.12791542682498", + "startLcPosition": "39", + "impact": { + "lower": "Etterschlag", + "upper": "Eching", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A96 | Eching - Etterschlag", + "coordinate": { + "lat": 48.078541270117896, + "long": 11.12791542682498 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 05:00 Uhr.", + "", + "A96: Lindau -> M\u00fcnchen, zwischen 1.0 km hinter Eching und 0.3 km vor Etterschlag", + "", + "L\u00e4nge: 5.34 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A96 Rissverf\u00fcllung Wanderbausstelle " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.127915427, + 48.07854127 + ], + [ + 11.1282482, + 48.078555701 + ], + [ + 11.1292275, + 48.078600201 + ], + [ + 11.1311793, + 48.078680601 + ], + [ + 11.133082, + 48.078807201 + ], + [ + 11.1343019, + 48.078918601 + ], + [ + 11.13547, + 48.079090201 + ], + [ + 11.1364079, + 48.079275101 + ], + [ + 11.1371705, + 48.079457501 + ], + [ + 11.1379868, + 48.079690301 + ], + [ + 11.1387, + 48.079927301 + ], + [ + 11.1394713, + 48.080222101 + ], + [ + 11.1399478, + 48.080421501 + ], + [ + 11.1412732, + 48.081043401 + ], + [ + 11.1428034, + 48.081828901 + ], + [ + 11.1442311, + 48.082535101 + ], + [ + 11.1448442, + 48.082810501 + ], + [ + 11.1454449, + 48.083059401 + ], + [ + 11.1460026, + 48.083273601 + ], + [ + 11.1466378, + 48.083498001 + ], + [ + 11.1473682, + 48.083728501 + ], + [ + 11.1483249, + 48.084000401 + ], + [ + 11.1486459, + 48.084082801 + ], + [ + 11.1495037, + 48.084276901 + ], + [ + 11.1504902, + 48.084464201 + ], + [ + 11.1511626, + 48.084573201 + ], + [ + 11.1514619, + 48.084613401 + ], + [ + 11.1516565, + 48.084638601 + ], + [ + 11.1519735, + 48.084687301 + ], + [ + 11.1525036, + 48.084743101 + ], + [ + 11.1530725, + 48.084795001 + ], + [ + 11.1536155, + 48.084833701 + ], + [ + 11.153848, + 48.084847501 + ], + [ + 11.1540891, + 48.084856901 + ], + [ + 11.1544406, + 48.084868201 + ], + [ + 11.1550995, + 48.084875301 + ], + [ + 11.1555006, + 48.084871301 + ], + [ + 11.1560311, + 48.084850001 + ], + [ + 11.1564392, + 48.084822801 + ], + [ + 11.1568473, + 48.084788401 + ], + [ + 11.1571852, + 48.084754001 + ], + [ + 11.1577908, + 48.084678601 + ], + [ + 11.1583526, + 48.084589601 + ], + [ + 11.1589487, + 48.084476401 + ], + [ + 11.159514, + 48.084350801 + ], + [ + 11.1601497, + 48.084178801 + ], + [ + 11.1606806, + 48.084030101 + ], + [ + 11.1627617, + 48.083425401 + ], + [ + 11.1630746, + 48.083347301 + ], + [ + 11.1640087, + 48.083116701 + ], + [ + 11.1650173, + 48.082924301 + ], + [ + 11.1659131, + 48.082797301 + ], + [ + 11.1663874, + 48.082747201 + ], + [ + 11.1669138, + 48.082705801 + ], + [ + 11.1670858, + 48.082695701 + ], + [ + 11.1673438, + 48.082680701 + ], + [ + 11.1676375, + 48.082663501 + ], + [ + 11.1682479, + 48.082654101 + ], + [ + 11.1688623, + 48.082654601 + ], + [ + 11.1694649, + 48.082675801 + ], + [ + 11.1702073, + 48.082718601 + ], + [ + 11.1708676, + 48.082780201 + ], + [ + 11.1712566, + 48.082821001 + ], + [ + 11.1718318, + 48.082892501 + ], + [ + 11.1733208, + 48.083117701 + ], + [ + 11.1767328, + 48.083669801 + ], + [ + 11.177852, + 48.083846901 + ], + [ + 11.1791366, + 48.084025801 + ], + [ + 11.1802411, + 48.084159201 + ], + [ + 11.1805718, + 48.084194801 + ], + [ + 11.181193, + 48.084258701 + ], + [ + 11.1820451, + 48.084333101 + ], + [ + 11.1829913, + 48.084406001 + ], + [ + 11.1837242, + 48.084447901 + ], + [ + 11.1845895, + 48.084489401 + ], + [ + 11.1850154, + 48.084504401 + ], + [ + 11.1861606, + 48.084532701 + ], + [ + 11.1865838, + 48.084540801 + ], + [ + 11.1875849, + 48.084546201 + ], + [ + 11.1877476, + 48.084546401 + ], + [ + 11.1881745, + 48.084546401 + ], + [ + 11.1906828, + 48.084523001 + ], + [ + 11.1936315, + 48.084495601 + ], + [ + 11.1949356, + 48.084480601 + ], + [ + 11.196580799, + 48.084467139 + ] + ] + } + }, + { + "identifier": "2026-015116--vi-bs.2026-04-14_21-00-00-000.devi-zus.2026-04-14_21-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.08456408671716,11.196569214700064,48.078680269409816,11.127901197790107", + "point": "48.08456408671716,11.196569214700064", + "startLcPosition": "42", + "impact": { + "lower": "Eching", + "upper": "Etterschlag", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Etterschlag - Eching", + "coordinate": { + "lat": 48.08456408671716, + "long": 11.196569214700064 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 21:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 21:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 0.3 km hinter Etterschlag und 1.0 km vor Eching", + "", + "L\u00e4nge: 5.34 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A96 Rissverf\u00fcllung Wanderbausstelle " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.196569215, + 48.084564087 + ], + [ + 11.1949396, + 48.084578501 + ], + [ + 11.1936339, + 48.084592801 + ], + [ + 11.1906869, + 48.084620701 + ], + [ + 11.188173, + 48.084640101 + ], + [ + 11.1877483, + 48.084641601 + ], + [ + 11.187581, + 48.084641301 + ], + [ + 11.1865783, + 48.084632801 + ], + [ + 11.1861567, + 48.084627601 + ], + [ + 11.1850115, + 48.084598901 + ], + [ + 11.1845797, + 48.084583501 + ], + [ + 11.1837136, + 48.084543901 + ], + [ + 11.1829736, + 48.084501501 + ], + [ + 11.1820192, + 48.084431801 + ], + [ + 11.1811744, + 48.084357301 + ], + [ + 11.1805535, + 48.084293701 + ], + [ + 11.1800349, + 48.084234301 + ], + [ + 11.1791025, + 48.084121701 + ], + [ + 11.1773852, + 48.083874901 + ], + [ + 11.1740882, + 48.083340901 + ], + [ + 11.1733506, + 48.083220801 + ], + [ + 11.1716621, + 48.082971001 + ], + [ + 11.1713914, + 48.082937501 + ], + [ + 11.1708489, + 48.082878501 + ], + [ + 11.1701828, + 48.082817801 + ], + [ + 11.1694609, + 48.082775801 + ], + [ + 11.1688468, + 48.082752901 + ], + [ + 11.1682378, + 48.082750401 + ], + [ + 11.1676323, + 48.082763501 + ], + [ + 11.1673403, + 48.082778601 + ], + [ + 11.1670894, + 48.082795201 + ], + [ + 11.1669202, + 48.082805701 + ], + [ + 11.1663895, + 48.082846401 + ], + [ + 11.1659295, + 48.082895301 + ], + [ + 11.1650341, + 48.083007401 + ], + [ + 11.1640379, + 48.083199401 + ], + [ + 11.1630912, + 48.083425701 + ], + [ + 11.162801, + 48.083496001 + ], + [ + 11.1607394, + 48.084121701 + ], + [ + 11.1602037, + 48.084270501 + ], + [ + 11.1595563, + 48.084447101 + ], + [ + 11.1589861, + 48.084573201 + ], + [ + 11.1583832, + 48.084686901 + ], + [ + 11.1578066, + 48.084777301 + ], + [ + 11.1572046, + 48.084854801 + ], + [ + 11.1565817, + 48.084911901 + ], + [ + 11.1560534, + 48.084947101 + ], + [ + 11.1555144, + 48.084966201 + ], + [ + 11.1551037, + 48.084972201 + ], + [ + 11.1544367, + 48.084965101 + ], + [ + 11.1539393, + 48.084948701 + ], + [ + 11.1535077, + 48.084924701 + ], + [ + 11.1530761, + 48.084892801 + ], + [ + 11.1527791, + 48.084867801 + ], + [ + 11.1524831, + 48.084838501 + ], + [ + 11.1520164, + 48.084789301 + ], + [ + 11.1516644, + 48.084747501 + ], + [ + 11.1514418, + 48.084716001 + ], + [ + 11.1511238, + 48.084669701 + ], + [ + 11.1504492, + 48.084559001 + ], + [ + 11.1494405, + 48.084371401 + ], + [ + 11.1487786, + 48.084216901 + ], + [ + 11.1482618, + 48.084089201 + ], + [ + 11.1477469, + 48.083944601 + ], + [ + 11.1470868, + 48.083747701 + ], + [ + 11.1465644, + 48.083583401 + ], + [ + 11.1459348, + 48.083361101 + ], + [ + 11.1453935, + 48.083149601 + ], + [ + 11.1447704, + 48.082896801 + ], + [ + 11.1441524, + 48.082617701 + ], + [ + 11.1427176, + 48.081904701 + ], + [ + 11.1411353, + 48.081102301 + ], + [ + 11.139926, + 48.080534901 + ], + [ + 11.1393137, + 48.080280301 + ], + [ + 11.1386793, + 48.080040001 + ], + [ + 11.137923, + 48.079784901 + ], + [ + 11.1371733, + 48.079575801 + ], + [ + 11.136505, + 48.079414001 + ], + [ + 11.1363539, + 48.079379001 + ], + [ + 11.1354312, + 48.079201301 + ], + [ + 11.1342666, + 48.079043201 + ], + [ + 11.1336113, + 48.078980101 + ], + [ + 11.1325085, + 48.078899701 + ], + [ + 11.1313263, + 48.078823601 + ], + [ + 11.1292141, + 48.078746901 + ], + [ + 11.1282364, + 48.078696201 + ], + [ + 11.127901198, + 48.078680269 + ] + ] + } + }, + { + "identifier": "2024-007750--vi-bs.2024-09-09_08-00-00-000.devi-zus.2024-07-05_07-00-00-000_005.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.12853332384693,11.408647078085446,48.12736820145213,11.445911937479492", + "point": "48.12853332384693,11.408647078085446", + "startLcPosition": "49", + "impact": { + "lower": "Gr\u00e4felfing", + "upper": "M\u00fcnchen S\u00fcd-West", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + null, + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Lindau -> M\u00fcnchen", + "title": "A96 | M\u00fcnchen S\u00fcd-West - Gr\u00e4felfing", + "startTimestamp": "2024-09-09T08:00:00+02:00", + "coordinate": { + "lat": 48.12853332384693, + "long": 11.408647078085446 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.09.24 um 08:00 Uhr", + "Ende: 29.06.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.28)", + "", + "A96: Lindau -> M\u00fcnchen, zwischen 0.3 km hinter AD M\u00fcnchen S\u00fcd-West und 0.2 km vor AS Gr\u00e4felfing", + "", + "L\u00e4nge: 2.91 km | Maximale Durchfahrtsbreite: 5.68 m", + "", + "A96 Tunnel Gr\u00e4felfing" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.408647078, + 48.128533324 + ], + [ + 11.4091692, + 48.128700201 + ], + [ + 11.4101511, + 48.128983501 + ], + [ + 11.4112807, + 48.129258901 + ], + [ + 11.4120803, + 48.129446201 + ], + [ + 11.4129116, + 48.129619101 + ], + [ + 11.4138727, + 48.129794401 + ], + [ + 11.4150581, + 48.129973001 + ], + [ + 11.4161366, + 48.130104801 + ], + [ + 11.4170049, + 48.130185301 + ], + [ + 11.417582, + 48.130229201 + ], + [ + 11.4181918, + 48.130267001 + ], + [ + 11.419042, + 48.130304601 + ], + [ + 11.4199496, + 48.130326401 + ], + [ + 11.4208692, + 48.130327401 + ], + [ + 11.4218058, + 48.130291301 + ], + [ + 11.4224819, + 48.130243101 + ], + [ + 11.423026, + 48.130184801 + ], + [ + 11.4236025, + 48.130107601 + ], + [ + 11.4238941, + 48.130060501 + ], + [ + 11.4242517, + 48.129998001 + ], + [ + 11.4250052, + 48.129840701 + ], + [ + 11.4257566, + 48.129653901 + ], + [ + 11.4265109, + 48.129432801 + ], + [ + 11.4275478, + 48.129088901 + ], + [ + 11.4308466, + 48.127906301 + ], + [ + 11.4316466, + 48.127627801 + ], + [ + 11.4323694, + 48.127433701 + ], + [ + 11.4330831, + 48.127273001 + ], + [ + 11.4337296, + 48.127165801 + ], + [ + 11.4346357, + 48.127079501 + ], + [ + 11.435392, + 48.127066701 + ], + [ + 11.4361883, + 48.127097301 + ], + [ + 11.437041, + 48.127196501 + ], + [ + 11.4374129, + 48.127259001 + ], + [ + 11.4377531, + 48.127322801 + ], + [ + 11.4395624, + 48.127735901 + ], + [ + 11.440219, + 48.127845001 + ], + [ + 11.4408265, + 48.127914901 + ], + [ + 11.4417539, + 48.127964001 + ], + [ + 11.4423128, + 48.127963301 + ], + [ + 11.442886, + 48.127938201 + ], + [ + 11.443769, + 48.127851601 + ], + [ + 11.4445634, + 48.127717001 + ], + [ + 11.4452784, + 48.127550701 + ], + [ + 11.4457169, + 48.127430201 + ], + [ + 11.445911937, + 48.127368201 + ] + ] + } + }, + { + "identifier": "2024-007750--vi-bs.2024-09-09_08-00-00-000.devi-zus.2024-07-05_07-00-00-000_005.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.12750554767198,11.446010220615708,48.12865018232068,11.408563361594476", + "point": "48.12750554767198,11.446010220615708", + "startLcPosition": "52", + "impact": { + "lower": "M\u00fcnchen S\u00fcd-West", + "upper": "Gr\u00e4felfing", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + null, + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen -> Lindau", + "title": "A96 | Gr\u00e4felfing - M\u00fcnchen S\u00fcd-West", + "startTimestamp": "2024-09-09T08:00:00+02:00", + "coordinate": { + "lat": 48.12750554767198, + "long": 11.446010220615708 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.09.24 um 08:00 Uhr", + "Ende: 29.06.26 um 06:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.01.28)", + "", + "A96: M\u00fcnchen -> Lindau, zwischen 0.2 km hinter AS Gr\u00e4felfing und 0.3 km vor AD M\u00fcnchen S\u00fcd-West", + "", + "L\u00e4nge: 2.91 km | Maximale Durchfahrtsbreite: 5.68 m", + "", + "A96 Tunnel Gr\u00e4felfing" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.446010221, + 48.127505548 + ], + [ + 11.4457687, + 48.127583601 + ], + [ + 11.4451054, + 48.127749901 + ], + [ + 11.444154, + 48.127939401 + ], + [ + 11.4437365, + 48.128000901 + ], + [ + 11.4427188, + 48.128090101 + ], + [ + 11.4423264, + 48.128102401 + ], + [ + 11.4417692, + 48.128115101 + ], + [ + 11.4411917, + 48.128094201 + ], + [ + 11.440716, + 48.128056301 + ], + [ + 11.440188, + 48.127999201 + ], + [ + 11.4395649, + 48.127892001 + ], + [ + 11.4377319, + 48.127472801 + ], + [ + 11.4369107, + 48.127333301 + ], + [ + 11.4360671, + 48.127248401 + ], + [ + 11.4354004, + 48.127218201 + ], + [ + 11.4349825, + 48.127221501 + ], + [ + 11.434661, + 48.127234401 + ], + [ + 11.4341887, + 48.127264201 + ], + [ + 11.4337743, + 48.127311001 + ], + [ + 11.4331029, + 48.127414801 + ], + [ + 11.4324433, + 48.127565001 + ], + [ + 11.4317287, + 48.127780401 + ], + [ + 11.430928, + 48.128042301 + ], + [ + 11.4276589, + 48.129216901 + ], + [ + 11.4265927, + 48.129551401 + ], + [ + 11.4258473, + 48.129789701 + ], + [ + 11.4250793, + 48.129978701 + ], + [ + 11.4243271, + 48.130135601 + ], + [ + 11.4236003, + 48.130265901 + ], + [ + 11.4233759, + 48.130297801 + ], + [ + 11.4228768, + 48.130357601 + ], + [ + 11.4223799, + 48.130402801 + ], + [ + 11.4219206, + 48.130435901 + ], + [ + 11.4211772, + 48.130466801 + ], + [ + 11.4205023, + 48.130482901 + ], + [ + 11.419934, + 48.130479601 + ], + [ + 11.4190165, + 48.130454201 + ], + [ + 11.4180807, + 48.130415301 + ], + [ + 11.4175584, + 48.130378401 + ], + [ + 11.416982, + 48.130333801 + ], + [ + 11.4161045, + 48.130250301 + ], + [ + 11.414994, + 48.130110601 + ], + [ + 11.413831, + 48.129934201 + ], + [ + 11.412861, + 48.129764301 + ], + [ + 11.4120063, + 48.129586401 + ], + [ + 11.4112058, + 48.129399001 + ], + [ + 11.4104404, + 48.129205601 + ], + [ + 11.4097991, + 48.129030601 + ], + [ + 11.4092033, + 48.128856401 + ], + [ + 11.408563362, + 48.128650182 + ] + ] + } + } + ] + }, + "A98": { + "roadworks": [ + { + "identifier": "2026-016267--vi-bs.2026-04-22_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.60087629340453,7.7063446162216795,47.58675400077636,7.752120883301194", + "point": "47.60087629340453,7.7063446162216795", + "startLcPosition": "5", + "impact": { + "lower": "Hochrhein", + "upper": "L\u00f6rrach-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weil am Rhein -> Schaffhausen", + "title": "A98 | L\u00f6rrach-Ost - Hochrhein", + "coordinate": { + "lat": 47.60087629340453, + "long": 7.7063446162216795 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 09:00 bis 15:00 Uhr", + "", + "A98: Weil am Rhein -> Schaffhausen, zwischen 1.2 km hinter AS L\u00f6rrach-Ost und AD Hochrhein", + "", + "L\u00e4nge: 3.87 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Weil am Rhein (AD) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.706344616, + 47.600876293 + ], + [ + 7.706807, + 47.600341001 + ], + [ + 7.707266, + 47.599842501 + ], + [ + 7.7074124, + 47.599708201 + ], + [ + 7.7075048, + 47.599623401 + ], + [ + 7.7078182, + 47.599339601 + ], + [ + 7.7082549, + 47.598963701 + ], + [ + 7.7086391, + 47.598645601 + ], + [ + 7.7092731, + 47.598134601 + ], + [ + 7.7099585, + 47.597639401 + ], + [ + 7.7106691, + 47.597156601 + ], + [ + 7.7114966, + 47.596661301 + ], + [ + 7.7122037, + 47.596269301 + ], + [ + 7.7127788, + 47.595970901 + ], + [ + 7.7135174, + 47.595630801 + ], + [ + 7.7144693, + 47.595211701 + ], + [ + 7.7154414, + 47.594827701 + ], + [ + 7.7163872, + 47.594498301 + ], + [ + 7.7174623, + 47.594154601 + ], + [ + 7.7178707, + 47.594031901 + ], + [ + 7.7193275, + 47.593625401 + ], + [ + 7.7208177, + 47.593250901 + ], + [ + 7.7235983, + 47.592585501 + ], + [ + 7.725978, + 47.592015601 + ], + [ + 7.72794, + 47.591558801 + ], + [ + 7.7312688, + 47.590767401 + ], + [ + 7.7337988, + 47.590165801 + ], + [ + 7.7362089, + 47.589589701 + ], + [ + 7.7391052, + 47.588934701 + ], + [ + 7.7397982, + 47.588787501 + ], + [ + 7.7416047, + 47.588403801 + ], + [ + 7.7422126, + 47.588274701 + ], + [ + 7.7431094, + 47.588096301 + ], + [ + 7.7435115, + 47.588017001 + ], + [ + 7.7446565, + 47.587800301 + ], + [ + 7.7459494, + 47.587587901 + ], + [ + 7.747737, + 47.587305001 + ], + [ + 7.7491088, + 47.587115801 + ], + [ + 7.7502772, + 47.586970401 + ], + [ + 7.7507515, + 47.586912201 + ], + [ + 7.7514084, + 47.586844801 + ], + [ + 7.7520103, + 47.586764601 + ], + [ + 7.752120883, + 47.586754001 + ] + ] + } + }, + { + "identifier": "2026-016314--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_004.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.60444570950053,7.703808195981532,47.58755754160527,7.746141245239396", + "point": "47.60444570950053,7.703808195981532", + "startLcPosition": "5", + "impact": { + "lower": "Hochrhein", + "upper": "L\u00f6rrach-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Weil am Rhein -> Schaffhausen", + "title": "A98 | L\u00f6rrach-Ost - Hochrhein", + "coordinate": { + "lat": 47.60444570950053, + "long": 7.703808195981532 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 09:00 bis 16:00 Uhr", + "17.04.26 von 09:00 bis 16:00 Uhr", + "20.04.26 von 09:00 bis 16:00 Uhr", + "21.04.26 von 09:00 bis 16:00 Uhr", + "22.04.26 von 09:00 bis 16:00 Uhr", + "23.04.26 von 09:00 bis 16:00 Uhr", + "24.04.26 von 09:00 bis 16:00 Uhr", + "27.04.26 von 09:00 bis 16:00 Uhr", + "28.04.26 von 09:00 bis 16:00 Uhr", + "29.04.26 von 09:00 bis 16:00 Uhr", + "30.04.26 von 09:00 bis 16:00 Uhr", + "01.05.26 von 09:00 bis 16:00 Uhr", + "", + "A98: Weil am Rhein -> Schaffhausen, zwischen 0.7 km hinter AS L\u00f6rrach-Ost und 0.5 km vor AD Hochrhein", + "", + "L\u00e4nge: 3.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Efringen-Kirchen (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.703808196, + 47.60444571 + ], + [ + 7.7042058, + 47.603857801 + ], + [ + 7.7047121, + 47.603092401 + ], + [ + 7.7050142, + 47.602632201 + ], + [ + 7.7052803, + 47.602251301 + ], + [ + 7.7058957, + 47.601433801 + ], + [ + 7.7063415, + 47.600879901 + ], + [ + 7.706807, + 47.600341001 + ], + [ + 7.707266, + 47.599842501 + ], + [ + 7.7074124, + 47.599708201 + ], + [ + 7.7075048, + 47.599623401 + ], + [ + 7.7078182, + 47.599339601 + ], + [ + 7.7082549, + 47.598963701 + ], + [ + 7.7086391, + 47.598645601 + ], + [ + 7.7092731, + 47.598134601 + ], + [ + 7.7099585, + 47.597639401 + ], + [ + 7.7106691, + 47.597156601 + ], + [ + 7.7114966, + 47.596661301 + ], + [ + 7.7122037, + 47.596269301 + ], + [ + 7.7127788, + 47.595970901 + ], + [ + 7.7135174, + 47.595630801 + ], + [ + 7.7144693, + 47.595211701 + ], + [ + 7.7154414, + 47.594827701 + ], + [ + 7.7163872, + 47.594498301 + ], + [ + 7.7174623, + 47.594154601 + ], + [ + 7.7178707, + 47.594031901 + ], + [ + 7.7193275, + 47.593625401 + ], + [ + 7.7208177, + 47.593250901 + ], + [ + 7.7235983, + 47.592585501 + ], + [ + 7.725978, + 47.592015601 + ], + [ + 7.72794, + 47.591558801 + ], + [ + 7.7312688, + 47.590767401 + ], + [ + 7.7337988, + 47.590165801 + ], + [ + 7.7362089, + 47.589589701 + ], + [ + 7.7391052, + 47.588934701 + ], + [ + 7.7397982, + 47.588787501 + ], + [ + 7.7416047, + 47.588403801 + ], + [ + 7.7422126, + 47.588274701 + ], + [ + 7.7431094, + 47.588096301 + ], + [ + 7.7435115, + 47.588017001 + ], + [ + 7.7446565, + 47.587800301 + ], + [ + 7.7459494, + 47.587587901 + ], + [ + 7.746141245, + 47.587557542 + ] + ] + } + }, + { + "identifier": "2024-005857--vi-bs.2024-02-06_00-00-00-000.devi-zus.2024-02-06_00-00-00-000_018.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.58703989714105,7.776801751911758,47.587597960170505,7.780615374433667", + "point": "47.58703989714105,7.776801751911758", + "startLcPosition": "7", + "impact": { + "lower": "Rheinfelden-Karsau", + "upper": "Herrschaftsbucktunnel", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Weil am Rhein -> Schaffhausen", + "title": "A98 | Herrschaftsbucktunnel - Rheinfelden-Karsau", + "startTimestamp": "2024-02-06T00:00:00+01:00", + "coordinate": { + "lat": 47.58703989714105, + "long": 7.776801751911758 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.02.24 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A98: Weil am Rhein -> Schaffhausen, zwischen 0.7 km hinter Herrschaftsbucktunnel und 0.2 km vor AS Rheinfelden-Karsau", + "", + "L\u00e4nge: 0.29 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A98 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.776801752, + 47.587039897 + ], + [ + 7.7777282, + 47.587151501 + ], + [ + 7.7784169, + 47.587252701 + ], + [ + 7.780615374, + 47.58759796 + ] + ] + } + }, + { + "identifier": "2024-005857--vi-bs.2024-02-06_00-00-00-000.devi-zus.2024-02-06_00-00-00-000_018.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.58771882326345,7.780574564847006,47.58718563105558,7.776763090791337", + "point": "47.58771882326345,7.780574564847006", + "startLcPosition": "8", + "impact": { + "lower": "Herrschaftsbucktunnel", + "upper": "Rheinfelden-Karsau", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Schaffhausen -> Weil am Rhein", + "title": "A98 | Rheinfelden-Karsau - Herrschaftsbucktunnel", + "startTimestamp": "2024-02-06T00:00:00+01:00", + "coordinate": { + "lat": 47.58771882326345, + "long": 7.780574564847006 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.02.24 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "A98: Schaffhausen -> Weil am Rhein, zwischen 0.2 km hinter AS Rheinfelden-Karsau und 0.7 km vor Herrschaftsbucktunnel", + "", + "L\u00e4nge: 0.29 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A98 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.780574565, + 47.587718823 + ], + [ + 7.7792028, + 47.587511401 + ], + [ + 7.777689, + 47.587299101 + ], + [ + 7.776763091, + 47.587185631 + ] + ] + } + }, + { + "identifier": "2024-005857--vi-bs.2024-02-06_00-00-00-000.devi-zus.2024-02-06_00-00-00-000_018.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.59019523235242,7.7874821086834505,47.58826463490614,7.783597829571006", + "point": "47.59019523235242,7.7874821086834505", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Rheinfelden-Karsau (in Richtung Herrschaftsbucktunnel)", + "title": "A98 Tiefbauarbeiten neben der Fahrbahn", + "startTimestamp": "2024-02-06T00:00:00+01:00", + "coordinate": { + "lat": 47.59019523235242, + "long": 7.7874821086834505 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.02.24 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "Auffahrt auf die A98: AS Rheinfelden-Karsau (in Richtung Herrschaftsbucktunnel)", + "", + "L\u00e4nge: 0.38 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A98 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.787482109, + 47.590195232 + ], + [ + 7.787464, + 47.590192901 + ], + [ + 7.7873312, + 47.590162501 + ], + [ + 7.7871837, + 47.590111901 + ], + [ + 7.7869954, + 47.589995701 + ], + [ + 7.7868584, + 47.589902201 + ], + [ + 7.7867114, + 47.589724101 + ], + [ + 7.7864965, + 47.589465801 + ], + [ + 7.7863763, + 47.589290701 + ], + [ + 7.7862411, + 47.589156701 + ], + [ + 7.7860755, + 47.589030001 + ], + [ + 7.7858062, + 47.588892101 + ], + [ + 7.7854389, + 47.588777801 + ], + [ + 7.7842051, + 47.588457601 + ], + [ + 7.78359783, + 47.588264635 + ] + ] + } + }, + { + "identifier": "2024-005857--vi-bs.2024-02-06_00-00-00-000.devi-zus.2024-02-06_00-00-00-000_018.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.58806680699236,7.783312316969478,47.59021600881318,7.7877238196586065", + "point": "47.58806680699236,7.783312316969478", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Weil am Rhein -> Schaffhausen", + "title": "A98 Tiefbauarbeiten neben der Fahrbahn", + "startTimestamp": "2024-02-06T00:00:00+01:00", + "coordinate": { + "lat": 47.58806680699236, + "long": 7.783312316969478 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.02.24 um 00:00 Uhr", + "Ende: 01.01.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.27)", + "", + "Von A98: Weil am Rhein -> Schaffhausen, zwischen 1.2 km hinter Herrschaftsbucktunnel und AS Rheinfelden-Karsau nach Abfahrt von der A98: AS Rheinfelden-Karsau (aus Richtung Herrschaftsbucktunnel)", + "", + "L\u00e4nge: 0.58 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A98 Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.783312317, + 47.588066807 + ], + [ + 7.7836297, + 47.588132801 + ], + [ + 7.784149, + 47.588187601 + ], + [ + 7.7844608, + 47.588176301 + ], + [ + 7.7847216, + 47.588136001 + ], + [ + 7.7848946, + 47.588076901 + ], + [ + 7.7850928, + 47.587999201 + ], + [ + 7.7852792, + 47.587905601 + ], + [ + 7.7854066, + 47.587824601 + ], + [ + 7.7856092, + 47.587730401 + ], + [ + 7.7858043, + 47.587676601 + ], + [ + 7.7859711, + 47.587661701 + ], + [ + 7.7860937, + 47.587667401 + ], + [ + 7.7862859, + 47.587711701 + ], + [ + 7.7864277, + 47.587795901 + ], + [ + 7.7865398, + 47.587883101 + ], + [ + 7.7866146, + 47.588007001 + ], + [ + 7.7866648, + 47.588152001 + ], + [ + 7.7866743, + 47.588362401 + ], + [ + 7.7866539, + 47.588546201 + ], + [ + 7.786616, + 47.589066901 + ], + [ + 7.7866006, + 47.589289201 + ], + [ + 7.7865876, + 47.589409501 + ], + [ + 7.7866256, + 47.589559001 + ], + [ + 7.7867114, + 47.589724101 + ], + [ + 7.7868584, + 47.589902201 + ], + [ + 7.7869954, + 47.589995701 + ], + [ + 7.7871837, + 47.590111901 + ], + [ + 7.7873312, + 47.590162501 + ], + [ + 7.787464, + 47.590192901 + ], + [ + 7.7876209, + 47.590213101 + ], + [ + 7.78772382, + 47.590216009 + ] + ] + } + } + ] + }, + "A99": { + "roadworks": [ + { + "identifier": "2026-016911--vi-bs.2026-04-03_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_005.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.22846635644076,11.583807910484717,48.22810201431972,11.579765098214182", + "point": "48.22846635644076,11.583807910484717", + "startLcPosition": "11", + "impact": { + "lower": "Neuherberg", + "upper": "M\u00fcnchen-Neuherberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd-West", + "title": "A99 | M\u00fcnchen-Neuherberg - Neuherberg", + "coordinate": { + "lat": 48.22846635644076, + "long": 11.583807910484717 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 00:00 bis 05:00 Uhr", + "", + "A99: M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd-West, zwischen 0.2 km hinter AS M\u00fcnchen-Neuherberg und 0.9 km vor Neuherberg", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A99 von M\u00fcnchen-Nord (AK) nach M\u00fcnchen-Neuherberg (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.58380791, + 48.228466356 + ], + [ + 11.5807354, + 48.228194701 + ], + [ + 11.579765098, + 48.228102014 + ] + ] + } + }, + { + "identifier": "2026-016911--vi-bs.2026-04-03_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_005.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.22846635644076,11.583807910484717,48.22810201431972,11.579765098214182", + "point": "48.22846635644076,11.583807910484717", + "startLcPosition": "11", + "impact": { + "lower": "Neuherberg", + "upper": "M\u00fcnchen-Neuherberg", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd-West", + "title": "A99 | M\u00fcnchen-Neuherberg - Neuherberg", + "coordinate": { + "lat": 48.22846635644076, + "long": 11.583807910484717 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 20:00 bis 24:00 Uhr", + "", + "A99: M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd-West, zwischen 0.2 km hinter AS M\u00fcnchen-Neuherberg und 0.9 km vor Neuherberg", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A99 von M\u00fcnchen-Nord (AK) nach M\u00fcnchen-Neuherberg (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.58380791, + 48.228466356 + ], + [ + 11.5807354, + 48.228194701 + ], + [ + 11.579765098, + 48.228102014 + ] + ] + } + }, + { + "identifier": "2026-017258--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_002.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.19363452811183,11.689983941227883,48.19179177580394,11.698986921325668", + "point": "48.19363452811183,11.689983941227883", + "startLcPosition": "13", + "impact": { + "lower": "Aschheim", + "upper": "M\u00fcnchen-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd", + "title": "A99 | M\u00fcnchen-Nord - Aschheim", + "coordinate": { + "lat": 48.19363452811183, + "long": 11.689983941227883 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A99: M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd, zwischen 5.5 km hinter AK M\u00fcnchen-Nord und 2.5 km vor Aschheim", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A99 Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.689983941, + 48.193634528 + ], + [ + 11.6899965, + 48.193631901 + ], + [ + 11.6916513, + 48.193285801 + ], + [ + 11.6946221, + 48.192701901 + ], + [ + 11.6964389, + 48.192344901 + ], + [ + 11.698986921, + 48.191791776 + ] + ] + } + }, + { + "identifier": "2026-017258--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.19363452811183,11.689983941227883,48.19179177580394,11.698986921325668", + "point": "48.19363452811183,11.689983941227883", + "startLcPosition": "13", + "impact": { + "lower": "Aschheim", + "upper": "M\u00fcnchen-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd", + "title": "A99 | M\u00fcnchen-Nord - Aschheim", + "coordinate": { + "lat": 48.19363452811183, + "long": 11.689983941227883 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A99: M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd, zwischen 5.5 km hinter AK M\u00fcnchen-Nord und 2.5 km vor Aschheim", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A99 Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.689983941, + 48.193634528 + ], + [ + 11.6899965, + 48.193631901 + ], + [ + 11.6916513, + 48.193285801 + ], + [ + 11.6946221, + 48.192701901 + ], + [ + 11.6964389, + 48.192344901 + ], + [ + 11.698986921, + 48.191791776 + ] + ] + } + }, + { + "identifier": "2026-016911--vi-bs.2026-04-03_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_005.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.22157565076033,11.628487061245032,48.2230421529154,11.625123237761255", + "point": "48.22157565076033,11.628487061245032", + "startLcPosition": "13", + "impact": { + "lower": "M\u00fcnchen-Fr\u00f6ttmaning Nord", + "upper": "M\u00fcnchen-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-S\u00fcd-West", + "title": "A99 | M\u00fcnchen-Nord - M\u00fcnchen-Fr\u00f6ttmaning Nord", + "coordinate": { + "lat": 48.22157565076033, + "long": 11.628487061245032 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 00:00 bis 05:00 Uhr", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-S\u00fcd-West, zwischen 0.1 km hinter AK M\u00fcnchen-Nord und 0.6 km vor AS M\u00fcnchen-Fr\u00f6ttmaning Nord", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A99 von M\u00fcnchen-Nord (AK) nach M\u00fcnchen-Neuherberg (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.628487061, + 48.221575651 + ], + [ + 11.6280675, + 48.221762201 + ], + [ + 11.6271192, + 48.222196801 + ], + [ + 11.6263575, + 48.222528501 + ], + [ + 11.6255983, + 48.222848801 + ], + [ + 11.625123238, + 48.223042153 + ] + ] + } + }, + { + "identifier": "2026-016911--vi-bs.2026-04-03_20-00-00-000.devi-zus.2026-04-07_20-00-00-000_005.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.22157565076033,11.628487061245032,48.2230421529154,11.625123237761255", + "point": "48.22157565076033,11.628487061245032", + "startLcPosition": "13", + "impact": { + "lower": "M\u00fcnchen-Fr\u00f6ttmaning Nord", + "upper": "M\u00fcnchen-Nord", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-S\u00fcd-West", + "title": "A99 | M\u00fcnchen-Nord - M\u00fcnchen-Fr\u00f6ttmaning Nord", + "coordinate": { + "lat": 48.22157565076033, + "long": 11.628487061245032 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 20:00 bis 24:00 Uhr", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-S\u00fcd-West, zwischen 0.1 km hinter AK M\u00fcnchen-Nord und 0.6 km vor AS M\u00fcnchen-Fr\u00f6ttmaning Nord", + "", + "L\u00e4nge: 0.3 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A99 von M\u00fcnchen-Nord (AK) nach M\u00fcnchen-Neuherberg (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.628487061, + 48.221575651 + ], + [ + 11.6280675, + 48.221762201 + ], + [ + 11.6271192, + 48.222196801 + ], + [ + 11.6263575, + 48.222528501 + ], + [ + 11.6255983, + 48.222848801 + ], + [ + 11.625123238, + 48.223042153 + ] + ] + } + }, + { + "identifier": "2026-017258--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.19200871747396,11.69911796232894,48.19332066267307,11.692679343216323", + "point": "48.19200871747396,11.69911796232894", + "startLcPosition": "15", + "impact": { + "lower": "M\u00fcnchen-Nord", + "upper": "Aschheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord", + "title": "A99 | Aschheim - M\u00fcnchen-Nord", + "coordinate": { + "lat": 48.19200871747396, + "long": 11.69911796232894 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord, zwischen 2.5 km hinter Aschheim und 5.7 km vor AK M\u00fcnchen-Nord", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A99 Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.699117962, + 48.192008717 + ], + [ + 11.6959607, + 48.192662301 + ], + [ + 11.6944394, + 48.192977201 + ], + [ + 11.6933235, + 48.193196701 + ], + [ + 11.692679343, + 48.193320663 + ] + ] + } + }, + { + "identifier": "2026-017258--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.19200871747396,11.69911796232894,48.19332066267307,11.692679343216323", + "point": "48.19200871747396,11.69911796232894", + "startLcPosition": "15", + "impact": { + "lower": "M\u00fcnchen-Nord", + "upper": "Aschheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord", + "title": "A99 | Aschheim - M\u00fcnchen-Nord", + "coordinate": { + "lat": 48.19200871747396, + "long": 11.69911796232894 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 15:00 Uhr", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord, zwischen 2.5 km hinter Aschheim und 5.7 km vor AK M\u00fcnchen-Nord", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A99 Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.699117962, + 48.192008717 + ], + [ + 11.6959607, + 48.192662301 + ], + [ + 11.6944394, + 48.192977201 + ], + [ + 11.6933235, + 48.193196701 + ], + [ + 11.692679343, + 48.193320663 + ] + ] + } + }, + { + "identifier": "2025-057907--vi-bs.2026-04-17_20-00-00-000.devi-zus.2026-01-07_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.12395529048343,11.758655413220154,48.08357629037744,11.738947094199261", + "point": "48.12395529048343,11.758655413220154", + "startLcPosition": "17", + "impact": { + "lower": "Putzbrunn", + "upper": "M\u00fcnchen-Ost", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd", + "title": "A99 | M\u00fcnchen-Ost - Putzbrunn", + "startTimestamp": "2026-04-17T20:00:00+02:00", + "coordinate": { + "lat": 48.12395529048343, + "long": 11.758655413220154 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.04.26 um 20:00 Uhr", + "Ende: 20.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A99: M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd, zwischen 2.1 km hinter AK M\u00fcnchen-Ost und 2.0 km vor Putzbrunn", + "", + "L\u00e4nge: 4.78 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A99 Ersatzneubau von BW 42-2 AS Haar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.758655413, + 48.12395529 + ], + [ + 11.7586412, + 48.123824401 + ], + [ + 11.7586106, + 48.123565301 + ], + [ + 11.758568, + 48.123205601 + ], + [ + 11.7584591, + 48.122398001 + ], + [ + 11.7583445, + 48.121600901 + ], + [ + 11.7582686, + 48.121143801 + ], + [ + 11.7581588, + 48.120482301 + ], + [ + 11.7580886, + 48.120053701 + ], + [ + 11.7580208, + 48.119689001 + ], + [ + 11.7578378, + 48.118730501 + ], + [ + 11.7577533, + 48.118301101 + ], + [ + 11.7577414, + 48.118248101 + ], + [ + 11.757662, + 48.117925601 + ], + [ + 11.7573329, + 48.116423701 + ], + [ + 11.7572555, + 48.116121101 + ], + [ + 11.7569772, + 48.115037701 + ], + [ + 11.7565409, + 48.113482001 + ], + [ + 11.7565019, + 48.113357801 + ], + [ + 11.7563053, + 48.112668701 + ], + [ + 11.7561056, + 48.112020101 + ], + [ + 11.7555964, + 48.110518901 + ], + [ + 11.7553091, + 48.109688701 + ], + [ + 11.755279, + 48.109599501 + ], + [ + 11.7552272, + 48.109454401 + ], + [ + 11.7549343, + 48.108676001 + ], + [ + 11.7542135, + 48.106828301 + ], + [ + 11.7535502, + 48.105288601 + ], + [ + 11.7534618, + 48.105092101 + ], + [ + 11.7531892, + 48.104479901 + ], + [ + 11.7523987, + 48.102825601 + ], + [ + 11.7522385, + 48.102494101 + ], + [ + 11.7515228, + 48.101096301 + ], + [ + 11.7505229, + 48.099256701 + ], + [ + 11.7504317, + 48.099089601 + ], + [ + 11.7497141, + 48.097832401 + ], + [ + 11.7489737, + 48.096603901 + ], + [ + 11.7487364, + 48.096210201 + ], + [ + 11.7481215, + 48.095233201 + ], + [ + 11.7472319, + 48.093881501 + ], + [ + 11.7466717, + 48.093073701 + ], + [ + 11.7465406, + 48.092884701 + ], + [ + 11.7463307, + 48.092570601 + ], + [ + 11.7458848, + 48.091930501 + ], + [ + 11.7454535, + 48.091339401 + ], + [ + 11.7441588, + 48.089676001 + ], + [ + 11.7440819, + 48.089577101 + ], + [ + 11.7437202, + 48.089112401 + ], + [ + 11.7431781, + 48.088416001 + ], + [ + 11.7425212, + 48.087572001 + ], + [ + 11.7418169, + 48.086724101 + ], + [ + 11.7414495, + 48.086301201 + ], + [ + 11.7413343, + 48.086169701 + ], + [ + 11.7411605, + 48.085972101 + ], + [ + 11.7403419, + 48.085067701 + ], + [ + 11.7392468, + 48.083881001 + ], + [ + 11.738947094, + 48.08357629 + ] + ] + } + }, + { + "identifier": "2025-057907--vi-bs.2026-04-20_05-00-00-000.devi-zus.2026-01-07_00-00-00-000.de17", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.112313922851754,11.756196065311974,48.09408752837058,11.747367490272426", + "point": "48.112313922851754,11.756196065311974", + "startLcPosition": "18", + "impact": { + "lower": "Putzbrunn", + "upper": "Vaterstetten", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd", + "title": "A99 | Vaterstetten - Putzbrunn", + "startTimestamp": "2026-04-20T05:00:00+02:00", + "coordinate": { + "lat": 48.112313922851754, + "long": 11.756196065311974 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 05:00 Uhr", + "Ende: 24.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A99: M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd, zwischen 1.2 km hinter Vaterstetten und 3.3 km vor Putzbrunn", + "", + "L\u00e4nge: 2.14 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A99 Ersatzneubau von BW 42-2 AS Haar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.756196065, + 48.112313923 + ], + [ + 11.7561056, + 48.112020101 + ], + [ + 11.7555964, + 48.110518901 + ], + [ + 11.7553091, + 48.109688701 + ], + [ + 11.755279, + 48.109599501 + ], + [ + 11.7552272, + 48.109454401 + ], + [ + 11.7549343, + 48.108676001 + ], + [ + 11.7542135, + 48.106828301 + ], + [ + 11.7535502, + 48.105288601 + ], + [ + 11.7534618, + 48.105092101 + ], + [ + 11.7531892, + 48.104479901 + ], + [ + 11.7523987, + 48.102825601 + ], + [ + 11.7522385, + 48.102494101 + ], + [ + 11.7515228, + 48.101096301 + ], + [ + 11.7505229, + 48.099256701 + ], + [ + 11.7504317, + 48.099089601 + ], + [ + 11.7497141, + 48.097832401 + ], + [ + 11.7489737, + 48.096603901 + ], + [ + 11.7487364, + 48.096210201 + ], + [ + 11.7481215, + 48.095233201 + ], + [ + 11.74736749, + 48.094087528 + ] + ] + } + }, + { + "identifier": "2025-057907--vi-bs.2026-02-16_00-00-00-000.devi-zus.2026-01-07_00-00-00-000.de8", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.112313922851754,11.756196065311974,48.09408752837058,11.747367490272426", + "point": "48.112313922851754,11.756196065311974", + "startLcPosition": "18", + "impact": { + "lower": "Putzbrunn", + "upper": "Vaterstetten", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd", + "title": "A99 | Vaterstetten - Putzbrunn", + "startTimestamp": "2026-02-16T00:00:00+01:00", + "coordinate": { + "lat": 48.112313922851754, + "long": 11.756196065311974 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.02.26 um 00:00 Uhr", + "Ende: 17.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A99: M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd, zwischen 1.2 km hinter Vaterstetten und 3.3 km vor Putzbrunn", + "", + "L\u00e4nge: 2.14 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A99 Ersatzneubau von BW 42-2 AS Haar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.756196065, + 48.112313923 + ], + [ + 11.7561056, + 48.112020101 + ], + [ + 11.7555964, + 48.110518901 + ], + [ + 11.7553091, + 48.109688701 + ], + [ + 11.755279, + 48.109599501 + ], + [ + 11.7552272, + 48.109454401 + ], + [ + 11.7549343, + 48.108676001 + ], + [ + 11.7542135, + 48.106828301 + ], + [ + 11.7535502, + 48.105288601 + ], + [ + 11.7534618, + 48.105092101 + ], + [ + 11.7531892, + 48.104479901 + ], + [ + 11.7523987, + 48.102825601 + ], + [ + 11.7522385, + 48.102494101 + ], + [ + 11.7515228, + 48.101096301 + ], + [ + 11.7505229, + 48.099256701 + ], + [ + 11.7504317, + 48.099089601 + ], + [ + 11.7497141, + 48.097832401 + ], + [ + 11.7489737, + 48.096603901 + ], + [ + 11.7487364, + 48.096210201 + ], + [ + 11.7481215, + 48.095233201 + ], + [ + 11.74736749, + 48.094087528 + ] + ] + } + }, + { + "identifier": "2026-017258--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_002.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.118120093464725,11.758058950000732,48.14057802172314,11.758517545143366", + "point": "48.118120093464725,11.758058950000732", + "startLcPosition": "19", + "impact": { + "lower": "M\u00fcnchen-Ost", + "upper": "Haar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord", + "title": "A99 | Haar - M\u00fcnchen-Ost", + "coordinate": { + "lat": 48.118120093464725, + "long": 11.758058950000732 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 07:30 bis 15:00 Uhr", + "23.04.26 von 07:30 bis 15:00 Uhr", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord, zwischen 1.8 km hinter AS Haar und 0.2 km vor AK M\u00fcnchen-Ost", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 10.25 m", + "", + "A99 Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.75805895, + 48.118120093 + ], + [ + 11.7580778, + 48.118207701 + ], + [ + 11.7581195, + 48.118405401 + ], + [ + 11.7582064, + 48.118836901 + ], + [ + 11.7583384, + 48.119514501 + ], + [ + 11.7584078, + 48.119905901 + ], + [ + 11.7585361, + 48.120609501 + ], + [ + 11.7586498, + 48.121300101 + ], + [ + 11.7587007, + 48.121673201 + ], + [ + 11.7588325, + 48.122591701 + ], + [ + 11.7588581, + 48.122781301 + ], + [ + 11.7588805, + 48.122946501 + ], + [ + 11.758893, + 48.123038801 + ], + [ + 11.7589165, + 48.123212701 + ], + [ + 11.7589895, + 48.123819101 + ], + [ + 11.7591809, + 48.125834001 + ], + [ + 11.7592627, + 48.127000101 + ], + [ + 11.7592639, + 48.127020501 + ], + [ + 11.7592775, + 48.127257401 + ], + [ + 11.7592921, + 48.127544101 + ], + [ + 11.7593196, + 48.128026101 + ], + [ + 11.7593386, + 48.128565801 + ], + [ + 11.7593531, + 48.129022301 + ], + [ + 11.7593579, + 48.129443901 + ], + [ + 11.7593735, + 48.130822701 + ], + [ + 11.759366, + 48.131449401 + ], + [ + 11.7593637, + 48.131642201 + ], + [ + 11.759352, + 48.132609901 + ], + [ + 11.7593098, + 48.133283701 + ], + [ + 11.7592905, + 48.133591301 + ], + [ + 11.7592812, + 48.133739801 + ], + [ + 11.7592226, + 48.134753201 + ], + [ + 11.7592135, + 48.134862401 + ], + [ + 11.7591607, + 48.135551101 + ], + [ + 11.7590984, + 48.136251401 + ], + [ + 11.759077, + 48.136509301 + ], + [ + 11.758973, + 48.137701501 + ], + [ + 11.7589518, + 48.137871101 + ], + [ + 11.7588803, + 48.138349101 + ], + [ + 11.7587499, + 48.139271701 + ], + [ + 11.7585897, + 48.140220601 + ], + [ + 11.758517545, + 48.140578022 + ] + ] + } + }, + { + "identifier": "2026-017258--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_002.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.118120093464725,11.758058950000732,48.14057802172314,11.758517545143366", + "point": "48.118120093464725,11.758058950000732", + "startLcPosition": "19", + "impact": { + "lower": "M\u00fcnchen-Ost", + "upper": "Haar", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord", + "title": "A99 | Haar - M\u00fcnchen-Ost", + "coordinate": { + "lat": 48.118120093464725, + "long": 11.758058950000732 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 09:00 bis 15:00 Uhr", + "23.04.26 von 09:00 bis 15:00 Uhr", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord, zwischen 1.8 km hinter AS Haar und 0.2 km vor AK M\u00fcnchen-Ost", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A99 Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.75805895, + 48.118120093 + ], + [ + 11.7580778, + 48.118207701 + ], + [ + 11.7581195, + 48.118405401 + ], + [ + 11.7582064, + 48.118836901 + ], + [ + 11.7583384, + 48.119514501 + ], + [ + 11.7584078, + 48.119905901 + ], + [ + 11.7585361, + 48.120609501 + ], + [ + 11.7586498, + 48.121300101 + ], + [ + 11.7587007, + 48.121673201 + ], + [ + 11.7588325, + 48.122591701 + ], + [ + 11.7588581, + 48.122781301 + ], + [ + 11.7588805, + 48.122946501 + ], + [ + 11.758893, + 48.123038801 + ], + [ + 11.7589165, + 48.123212701 + ], + [ + 11.7589895, + 48.123819101 + ], + [ + 11.7591809, + 48.125834001 + ], + [ + 11.7592627, + 48.127000101 + ], + [ + 11.7592639, + 48.127020501 + ], + [ + 11.7592775, + 48.127257401 + ], + [ + 11.7592921, + 48.127544101 + ], + [ + 11.7593196, + 48.128026101 + ], + [ + 11.7593386, + 48.128565801 + ], + [ + 11.7593531, + 48.129022301 + ], + [ + 11.7593579, + 48.129443901 + ], + [ + 11.7593735, + 48.130822701 + ], + [ + 11.759366, + 48.131449401 + ], + [ + 11.7593637, + 48.131642201 + ], + [ + 11.759352, + 48.132609901 + ], + [ + 11.7593098, + 48.133283701 + ], + [ + 11.7592905, + 48.133591301 + ], + [ + 11.7592812, + 48.133739801 + ], + [ + 11.7592226, + 48.134753201 + ], + [ + 11.7592135, + 48.134862401 + ], + [ + 11.7591607, + 48.135551101 + ], + [ + 11.7590984, + 48.136251401 + ], + [ + 11.759077, + 48.136509301 + ], + [ + 11.758973, + 48.137701501 + ], + [ + 11.7589518, + 48.137871101 + ], + [ + 11.7588803, + 48.138349101 + ], + [ + 11.7587499, + 48.139271701 + ], + [ + 11.7585897, + 48.140220601 + ], + [ + 11.758517545, + 48.140578022 + ] + ] + } + }, + { + "identifier": "2025-057907--vi-bs.2026-04-17_20-00-00-000.devi-zus.2026-01-07_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.083470303019965,11.739188125610971,48.12393956706347,11.759000942851756", + "point": "48.083470303019965,11.739188125610971", + "startLcPosition": "20", + "impact": { + "lower": "M\u00fcnchen-Ost", + "upper": "Putzbrunn", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord", + "title": "A99 | Putzbrunn - M\u00fcnchen-Ost", + "startTimestamp": "2026-04-17T20:00:00+02:00", + "coordinate": { + "lat": 48.083470303019965, + "long": 11.739188125610971 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.04.26 um 20:00 Uhr", + "Ende: 20.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord, zwischen 2.0 km hinter Putzbrunn und 2.1 km vor AK M\u00fcnchen-Ost", + "", + "L\u00e4nge: 4.78 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A99 Ersatzneubau von BW 42-2 AS Haar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.739188126, + 48.083470303 + ], + [ + 11.7395386, + 48.083830101 + ], + [ + 11.7406047, + 48.084963401 + ], + [ + 11.7412566, + 48.085690301 + ], + [ + 11.7414156, + 48.085873101 + ], + [ + 11.7415876, + 48.086071001 + ], + [ + 11.7420518, + 48.086617001 + ], + [ + 11.7427741, + 48.087465601 + ], + [ + 11.7436388, + 48.088520801 + ], + [ + 11.7443724, + 48.089471001 + ], + [ + 11.7444488, + 48.089570001 + ], + [ + 11.7453651, + 48.090756901 + ], + [ + 11.7459679, + 48.091570901 + ], + [ + 11.746177, + 48.091856001 + ], + [ + 11.7469231, + 48.092900001 + ], + [ + 11.7472108, + 48.093318701 + ], + [ + 11.7475141, + 48.093772301 + ], + [ + 11.7480368, + 48.094564701 + ], + [ + 11.7484061, + 48.095129301 + ], + [ + 11.7492719, + 48.096521001 + ], + [ + 11.7493259, + 48.096607901 + ], + [ + 11.7500297, + 48.097777501 + ], + [ + 11.7507304, + 48.099008701 + ], + [ + 11.7508298, + 48.099179301 + ], + [ + 11.7513275, + 48.100095501 + ], + [ + 11.7516221, + 48.100651701 + ], + [ + 11.7522093, + 48.101719701 + ], + [ + 11.7525507, + 48.102397701 + ], + [ + 11.7527261, + 48.102726201 + ], + [ + 11.7529062, + 48.103090501 + ], + [ + 11.7532735, + 48.103833501 + ], + [ + 11.7538061, + 48.105042801 + ], + [ + 11.7538868, + 48.105221501 + ], + [ + 11.7541945, + 48.105948801 + ], + [ + 11.7544093, + 48.106459601 + ], + [ + 11.7547607, + 48.107318901 + ], + [ + 11.7552499, + 48.108577501 + ], + [ + 11.7553969, + 48.108946201 + ], + [ + 11.7555243, + 48.109268301 + ], + [ + 11.7555772, + 48.109418201 + ], + [ + 11.7555996, + 48.109481801 + ], + [ + 11.756097, + 48.110891901 + ], + [ + 11.7568866, + 48.113419801 + ], + [ + 11.7569386, + 48.113608501 + ], + [ + 11.756957, + 48.113675401 + ], + [ + 11.7573222, + 48.115001501 + ], + [ + 11.7578282, + 48.117047501 + ], + [ + 11.7578987, + 48.117375301 + ], + [ + 11.7580778, + 48.118207701 + ], + [ + 11.7581195, + 48.118405401 + ], + [ + 11.7582064, + 48.118836901 + ], + [ + 11.7583384, + 48.119514501 + ], + [ + 11.7584078, + 48.119905901 + ], + [ + 11.7585361, + 48.120609501 + ], + [ + 11.7586498, + 48.121300101 + ], + [ + 11.7587007, + 48.121673201 + ], + [ + 11.7588325, + 48.122591701 + ], + [ + 11.7588581, + 48.122781301 + ], + [ + 11.7588805, + 48.122946501 + ], + [ + 11.758893, + 48.123038801 + ], + [ + 11.7589165, + 48.123212701 + ], + [ + 11.7589895, + 48.123819101 + ], + [ + 11.759000943, + 48.123939567 + ] + ] + } + }, + { + "identifier": "2025-057907--vi-bs.2026-04-20_05-00-00-000.devi-zus.2026-01-07_00-00-00-000.de15", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "48.09399980722203,11.747664170741853,48.112267903839985,11.75652678964411", + "point": "48.09399980722203,11.747664170741853", + "startLcPosition": "20", + "impact": { + "lower": "Vaterstetten", + "upper": "Putzbrunn", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord", + "title": "A99 | Putzbrunn - Vaterstetten", + "startTimestamp": "2026-04-20T05:00:00+02:00", + "coordinate": { + "lat": 48.09399980722203, + "long": 11.747664170741853 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 05:00 Uhr", + "Ende: 24.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord, zwischen 3.3 km hinter Putzbrunn und 1.2 km vor Vaterstetten", + "", + "L\u00e4nge: 2.14 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A99 Ersatzneubau von BW 42-2 AS Haar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.747664171, + 48.093999807 + ], + [ + 11.7480368, + 48.094564701 + ], + [ + 11.7484061, + 48.095129301 + ], + [ + 11.7492719, + 48.096521001 + ], + [ + 11.7493259, + 48.096607901 + ], + [ + 11.7500297, + 48.097777501 + ], + [ + 11.7507304, + 48.099008701 + ], + [ + 11.7508298, + 48.099179301 + ], + [ + 11.7513275, + 48.100095501 + ], + [ + 11.7516221, + 48.100651701 + ], + [ + 11.7522093, + 48.101719701 + ], + [ + 11.7525507, + 48.102397701 + ], + [ + 11.7527261, + 48.102726201 + ], + [ + 11.7529062, + 48.103090501 + ], + [ + 11.7532735, + 48.103833501 + ], + [ + 11.7538061, + 48.105042801 + ], + [ + 11.7538868, + 48.105221501 + ], + [ + 11.7541945, + 48.105948801 + ], + [ + 11.7544093, + 48.106459601 + ], + [ + 11.7547607, + 48.107318901 + ], + [ + 11.7552499, + 48.108577501 + ], + [ + 11.7553969, + 48.108946201 + ], + [ + 11.7555243, + 48.109268301 + ], + [ + 11.7555772, + 48.109418201 + ], + [ + 11.7555996, + 48.109481801 + ], + [ + 11.756097, + 48.110891901 + ], + [ + 11.75652679, + 48.112267904 + ] + ] + } + }, + { + "identifier": "2025-057907--vi-bs.2026-02-16_00-00-00-000.devi-zus.2026-01-07_00-00-00-000.de6", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.09399980722203,11.747664170741853,48.112267903839985,11.75652678964411", + "point": "48.09399980722203,11.747664170741853", + "startLcPosition": "20", + "impact": { + "lower": "Vaterstetten", + "upper": "Putzbrunn", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord", + "title": "A99 | Putzbrunn - Vaterstetten", + "startTimestamp": "2026-02-16T00:00:00+01:00", + "coordinate": { + "lat": 48.09399980722203, + "long": 11.747664170741853 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.02.26 um 00:00 Uhr", + "Ende: 17.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.28)", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord, zwischen 3.3 km hinter Putzbrunn und 1.2 km vor Vaterstetten", + "", + "L\u00e4nge: 2.14 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A99 Ersatzneubau von BW 42-2 AS Haar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.747664171, + 48.093999807 + ], + [ + 11.7480368, + 48.094564701 + ], + [ + 11.7484061, + 48.095129301 + ], + [ + 11.7492719, + 48.096521001 + ], + [ + 11.7493259, + 48.096607901 + ], + [ + 11.7500297, + 48.097777501 + ], + [ + 11.7507304, + 48.099008701 + ], + [ + 11.7508298, + 48.099179301 + ], + [ + 11.7513275, + 48.100095501 + ], + [ + 11.7516221, + 48.100651701 + ], + [ + 11.7522093, + 48.101719701 + ], + [ + 11.7525507, + 48.102397701 + ], + [ + 11.7527261, + 48.102726201 + ], + [ + 11.7529062, + 48.103090501 + ], + [ + 11.7532735, + 48.103833501 + ], + [ + 11.7538061, + 48.105042801 + ], + [ + 11.7538868, + 48.105221501 + ], + [ + 11.7541945, + 48.105948801 + ], + [ + 11.7544093, + 48.106459601 + ], + [ + 11.7547607, + 48.107318901 + ], + [ + 11.7552499, + 48.108577501 + ], + [ + 11.7553969, + 48.108946201 + ], + [ + 11.7555243, + 48.109268301 + ], + [ + 11.7555772, + 48.109418201 + ], + [ + 11.7555996, + 48.109481801 + ], + [ + 11.756097, + 48.110891901 + ], + [ + 11.75652679, + 48.112267904 + ] + ] + } + }, + { + "identifier": "2025-039398--vi-bs.2026-03-30_19-00-00-000.devi-bs.2026-03-30_19-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.06232870693088,11.707620932851194,48.03499632379784,11.67391333539803", + "point": "48.06232870693088,11.707620932851194", + "startLcPosition": "21", + "impact": { + "lower": "M\u00fcnchen-S\u00fcd", + "upper": "Hohenbrunn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd", + "title": "A99 | Hohenbrunn - M\u00fcnchen-S\u00fcd", + "startTimestamp": "2026-03-30T19:00:00+02:00", + "coordinate": { + "lat": 48.06232870693088, + "long": 11.707620932851194 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 19:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.04.26)", + "", + "A99: M\u00fcnchen-Nord -> M\u00fcnchen-S\u00fcd, zwischen 0.2 km hinter AS Hohenbrunn und 1.5 km vor AK M\u00fcnchen-S\u00fcd", + "", + "L\u00e4nge: 4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 9.5 m", + "", + "A99 AS Hohenbrunn bis AS Ottobrunn Einbau von Asphaltdehnstreifen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.707620933, + 48.062328707 + ], + [ + 11.7070601, + 48.062068901 + ], + [ + 11.7057065, + 48.061439101 + ], + [ + 11.704372, + 48.060806601 + ], + [ + 11.7033203, + 48.060329901 + ], + [ + 11.7017641, + 48.059584701 + ], + [ + 11.7012473, + 48.059336601 + ], + [ + 11.7001026, + 48.058761401 + ], + [ + 11.6993224, + 48.058347601 + ], + [ + 11.6985777, + 48.057946001 + ], + [ + 11.6976528, + 48.057417001 + ], + [ + 11.6968333, + 48.056931601 + ], + [ + 11.6961783, + 48.056516601 + ], + [ + 11.695323, + 48.055953401 + ], + [ + 11.6945111, + 48.055364401 + ], + [ + 11.6937026, + 48.054769701 + ], + [ + 11.6925179, + 48.053829701 + ], + [ + 11.6917892, + 48.053177601 + ], + [ + 11.6909867, + 48.052460101 + ], + [ + 11.6904858, + 48.051985301 + ], + [ + 11.6900072, + 48.051497401 + ], + [ + 11.6890591, + 48.050470901 + ], + [ + 11.6886907, + 48.050040801 + ], + [ + 11.6883495, + 48.049638001 + ], + [ + 11.6880443, + 48.049280501 + ], + [ + 11.6869867, + 48.047986401 + ], + [ + 11.6860201, + 48.046727701 + ], + [ + 11.6842634, + 48.044444301 + ], + [ + 11.6835052, + 48.043507401 + ], + [ + 11.683125, + 48.043065801 + ], + [ + 11.6824258, + 48.042247601 + ], + [ + 11.6818038, + 48.041562401 + ], + [ + 11.6812664, + 48.040995401 + ], + [ + 11.680591, + 48.040321201 + ], + [ + 11.6802888, + 48.040026801 + ], + [ + 11.6798121, + 48.039572701 + ], + [ + 11.6795234, + 48.039311001 + ], + [ + 11.6793892, + 48.039189401 + ], + [ + 11.6789174, + 48.038792401 + ], + [ + 11.6785494, + 48.038470801 + ], + [ + 11.677835, + 48.037874201 + ], + [ + 11.6772644, + 48.037412901 + ], + [ + 11.6766831, + 48.036956201 + ], + [ + 11.6756951, + 48.036230801 + ], + [ + 11.6753409, + 48.035970701 + ], + [ + 11.6744413, + 48.035342201 + ], + [ + 11.673913335, + 48.034996324 + ] + ] + } + }, + { + "identifier": "2026-013412--vi-bs.2026-04-08_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.06323775771279,11.70994708371529,48.09497944524023,11.748308079789695", + "point": "48.06323775771279,11.70994708371529", + "startLcPosition": "22", + "impact": { + "lower": "Haar", + "upper": "Ottobrunn", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord", + "title": "A99 | Ottobrunn - Haar", + "coordinate": { + "lat": 48.06323775771279, + "long": 11.70994708371529 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "21.04.26 von 08:00 bis 15:00 Uhr", + "23.04.26 von 08:00 bis 15:00 Uhr", + "28.04.26 von 08:00 bis 15:00 Uhr", + "29.04.26 von 08:00 bis 15:00 Uhr", + "", + "A99: M\u00fcnchen-S\u00fcd -> M\u00fcnchen-Nord, zwischen 3.5 km hinter AS Ottobrunn und 0.9 km vor AS Haar", + "", + "L\u00e4nge: 4.6 km | Maximale Durchfahrtsbreite: 11 m", + "", + "A99_April_Hohenbrunn_Parkplatz bei km 44,000 in Fahrtrichtung Lindau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.709947084, + 48.063237758 + ], + [ + 11.7112201, + 48.063842701 + ], + [ + 11.713086, + 48.064758101 + ], + [ + 11.7143498, + 48.065397601 + ], + [ + 11.7159519, + 48.066237901 + ], + [ + 11.7173445, + 48.066998801 + ], + [ + 11.718711, + 48.067771201 + ], + [ + 11.7192082, + 48.068055701 + ], + [ + 11.7195581, + 48.068255801 + ], + [ + 11.7196327, + 48.068298501 + ], + [ + 11.7199641, + 48.068497301 + ], + [ + 11.7208148, + 48.069011601 + ], + [ + 11.7222284, + 48.069875301 + ], + [ + 11.7225396, + 48.070067201 + ], + [ + 11.7227513, + 48.070192601 + ], + [ + 11.7234612, + 48.070654701 + ], + [ + 11.7241516, + 48.071105901 + ], + [ + 11.7253047, + 48.071878801 + ], + [ + 11.7257032, + 48.072152901 + ], + [ + 11.7274874, + 48.073399701 + ], + [ + 11.7280799, + 48.073824801 + ], + [ + 11.7282294, + 48.073932001 + ], + [ + 11.7293499, + 48.074769001 + ], + [ + 11.7312554, + 48.076238601 + ], + [ + 11.7320271, + 48.076877101 + ], + [ + 11.7326294, + 48.077370901 + ], + [ + 11.7328419, + 48.077545101 + ], + [ + 11.7344033, + 48.078892601 + ], + [ + 11.7349299, + 48.079360201 + ], + [ + 11.7362008, + 48.080523701 + ], + [ + 11.7365082, + 48.080821101 + ], + [ + 11.7365345, + 48.080846501 + ], + [ + 11.7366957, + 48.080993401 + ], + [ + 11.7378028, + 48.082064901 + ], + [ + 11.737889, + 48.082149801 + ], + [ + 11.7382054, + 48.082461401 + ], + [ + 11.7395386, + 48.083830101 + ], + [ + 11.7406047, + 48.084963401 + ], + [ + 11.7412566, + 48.085690301 + ], + [ + 11.7414156, + 48.085873101 + ], + [ + 11.7415876, + 48.086071001 + ], + [ + 11.7420518, + 48.086617001 + ], + [ + 11.7427741, + 48.087465601 + ], + [ + 11.7436388, + 48.088520801 + ], + [ + 11.7443724, + 48.089471001 + ], + [ + 11.7444488, + 48.089570001 + ], + [ + 11.7453651, + 48.090756901 + ], + [ + 11.7459679, + 48.091570901 + ], + [ + 11.746177, + 48.091856001 + ], + [ + 11.7469231, + 48.092900001 + ], + [ + 11.7472108, + 48.093318701 + ], + [ + 11.7475141, + 48.093772301 + ], + [ + 11.7480368, + 48.094564701 + ], + [ + 11.74830808, + 48.094979445 + ] + ] + } + }, + { + "identifier": "2026-017258--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_002.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.14054602364187,11.758166450543529,48.11815520473264,11.757718528712015", + "point": "48.14054602364187,11.758166450543529", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK M\u00fcnchen-Ost (aus Richtung Kirchheim bei M\u00fcnchen)", + "title": "A99 Br\u00fcckenwartung", + "coordinate": { + "lat": 48.14054602364187, + "long": 11.758166450543529 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 07:30 bis 15:00 Uhr", + "23.04.26 von 07:30 bis 15:00 Uhr", + "", + "Auffahrt auf die A99: AK M\u00fcnchen-Ost (aus Richtung Kirchheim bei M\u00fcnchen)", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 10.25 m", + "", + "A99 Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.758166451, + 48.140546024 + ], + [ + 11.7582241, + 48.140264901 + ], + [ + 11.7583818, + 48.139360201 + ], + [ + 11.7584792, + 48.138718401 + ], + [ + 11.7585721, + 48.138074101 + ], + [ + 11.7586113, + 48.137706301 + ], + [ + 11.7587614, + 48.136235701 + ], + [ + 11.7587662, + 48.136189301 + ], + [ + 11.7589044, + 48.134462201 + ], + [ + 11.7589343, + 48.134129501 + ], + [ + 11.7589599, + 48.133585101 + ], + [ + 11.7589744, + 48.133277501 + ], + [ + 11.7590065, + 48.132595101 + ], + [ + 11.7590124, + 48.132197901 + ], + [ + 11.7590201, + 48.131633801 + ], + [ + 11.7590319, + 48.130804001 + ], + [ + 11.7590035, + 48.128801901 + ], + [ + 11.758974, + 48.127940601 + ], + [ + 11.7589432, + 48.127454101 + ], + [ + 11.758925, + 48.127166101 + ], + [ + 11.7588744, + 48.126366701 + ], + [ + 11.7588041, + 48.125492701 + ], + [ + 11.75878, + 48.125163401 + ], + [ + 11.7587063, + 48.124423901 + ], + [ + 11.7586412, + 48.123824401 + ], + [ + 11.7586106, + 48.123565301 + ], + [ + 11.758568, + 48.123205601 + ], + [ + 11.7584591, + 48.122398001 + ], + [ + 11.7583445, + 48.121600901 + ], + [ + 11.7582686, + 48.121143801 + ], + [ + 11.7581588, + 48.120482301 + ], + [ + 11.7580886, + 48.120053701 + ], + [ + 11.7580208, + 48.119689001 + ], + [ + 11.7578378, + 48.118730501 + ], + [ + 11.7577533, + 48.118301101 + ], + [ + 11.7577414, + 48.118248101 + ], + [ + 11.757718529, + 48.118155205 + ] + ] + } + }, + { + "identifier": "2026-017258--vi-bs.2026-04-21_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_002.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.14054602364187,11.758166450543529,48.11815520473264,11.757718528712015", + "point": "48.14054602364187,11.758166450543529", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AK M\u00fcnchen-Ost (aus Richtung Kirchheim bei M\u00fcnchen)", + "title": "A99 Br\u00fcckenwartung", + "coordinate": { + "lat": 48.14054602364187, + "long": 11.758166450543529 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 09:00 bis 15:00 Uhr", + "23.04.26 von 09:00 bis 15:00 Uhr", + "", + "Auffahrt auf die A99: AK M\u00fcnchen-Ost (aus Richtung Kirchheim bei M\u00fcnchen)", + "", + "L\u00e4nge: 2.5 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A99 Br\u00fcckenwartung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.758166451, + 48.140546024 + ], + [ + 11.7582241, + 48.140264901 + ], + [ + 11.7583818, + 48.139360201 + ], + [ + 11.7584792, + 48.138718401 + ], + [ + 11.7585721, + 48.138074101 + ], + [ + 11.7586113, + 48.137706301 + ], + [ + 11.7587614, + 48.136235701 + ], + [ + 11.7587662, + 48.136189301 + ], + [ + 11.7589044, + 48.134462201 + ], + [ + 11.7589343, + 48.134129501 + ], + [ + 11.7589599, + 48.133585101 + ], + [ + 11.7589744, + 48.133277501 + ], + [ + 11.7590065, + 48.132595101 + ], + [ + 11.7590124, + 48.132197901 + ], + [ + 11.7590201, + 48.131633801 + ], + [ + 11.7590319, + 48.130804001 + ], + [ + 11.7590035, + 48.128801901 + ], + [ + 11.758974, + 48.127940601 + ], + [ + 11.7589432, + 48.127454101 + ], + [ + 11.758925, + 48.127166101 + ], + [ + 11.7588744, + 48.126366701 + ], + [ + 11.7588041, + 48.125492701 + ], + [ + 11.75878, + 48.125163401 + ], + [ + 11.7587063, + 48.124423901 + ], + [ + 11.7586412, + 48.123824401 + ], + [ + 11.7586106, + 48.123565301 + ], + [ + 11.758568, + 48.123205601 + ], + [ + 11.7584591, + 48.122398001 + ], + [ + 11.7583445, + 48.121600901 + ], + [ + 11.7582686, + 48.121143801 + ], + [ + 11.7581588, + 48.120482301 + ], + [ + 11.7580886, + 48.120053701 + ], + [ + 11.7580208, + 48.119689001 + ], + [ + 11.7578378, + 48.118730501 + ], + [ + 11.7577533, + 48.118301101 + ], + [ + 11.7577414, + 48.118248101 + ], + [ + 11.757718529, + 48.118155205 + ] + ] + } + } + ] + }, + "A100": { + "roadworks": [ + { + "identifier": "2026-016114--vi-bs.2026-04-15_20-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.53856700185067,13.327254502738828,52.538033136919346,13.325061791732226", + "point": "52.53856700185067,13.327254502738828", + "startLcPosition": "0", + "impact": { + "lower": "Jakob-Kaiser-Platz", + "upper": "Seestra\u00dfe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wedding -> Wilmersdorf", + "title": "A100 | Seestra\u00dfe - Jakob-Kaiser-Platz", + "coordinate": { + "lat": 52.53856700185067, + "long": 13.327254502738828 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A100: Wedding -> Wilmersdorf, zwischen 0.1 km hinter AS Seestra\u00dfe und 2.2 km vor AS Jakob-Kaiser-Platz", + "", + "L\u00e4nge: 0.16 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A100 von Seestra\u00dfe (AS) Arbeiten an Br\u00fcckengel\u00e4nder" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.327254503, + 52.538567002 + ], + [ + 13.3270932, + 52.538520401 + ], + [ + 13.3266145, + 52.538396301 + ], + [ + 13.3263953, + 52.538341001 + ], + [ + 13.3258716, + 52.538219301 + ], + [ + 13.3255413, + 52.538141301 + ], + [ + 13.325061792, + 52.538033137 + ] + ] + } + }, + { + "identifier": "2025-010744--vi-bs.2025-11-14_16-30-00-000.devi-zus.2025-03-10_00-00-00-000_004.de43", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.524196161733954,13.281076524603144,52.49912533706318,13.28092043085712", + "point": "52.524196161733954,13.281076524603144", + "startLcPosition": "4", + "impact": { + "lower": "Halenseestra\u00dfe", + "upper": "Siemensdamm", + "symbols": [ + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wedding -> Wilmersdorf", + "title": "A100 | Siemensdamm - Halenseestra\u00dfe", + "startTimestamp": "2025-11-14T16:30:00+01:00", + "coordinate": { + "lat": 52.524196161733954, + "long": 13.281076524603144 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.11.25 um 16:30 Uhr", + "Ende: 31.12.26 um 16:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A100: Wedding -> Wilmersdorf, zwischen 1.1 km hinter AS Siemensdamm und 0.6 km vor AS Halenseestra\u00dfe", + "", + "L\u00e4nge: 2.92 km | Maximale Durchfahrtsbreite: 6.4 m", + "", + "A100 Kompensation Ringbahnbr\u00fccke und Westendbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.281076525, + 52.524196162 + ], + [ + 13.281096, + 52.523814101 + ], + [ + 13.2811607, + 52.523381901 + ], + [ + 13.2812158, + 52.523112601 + ], + [ + 13.2813426, + 52.522646401 + ], + [ + 13.2815435, + 52.522014901 + ], + [ + 13.2817958, + 52.521374101 + ], + [ + 13.2819983, + 52.520929901 + ], + [ + 13.2822145, + 52.520417701 + ], + [ + 13.2824467, + 52.519895701 + ], + [ + 13.2833145, + 52.517968701 + ], + [ + 13.2835529, + 52.517447201 + ], + [ + 13.283711, + 52.517186101 + ], + [ + 13.283807, + 52.517032601 + ], + [ + 13.2840114, + 52.516765201 + ], + [ + 13.284204, + 52.516530201 + ], + [ + 13.2843384, + 52.516347601 + ], + [ + 13.284491, + 52.516122001 + ], + [ + 13.2846075, + 52.515889401 + ], + [ + 13.2848081, + 52.515409501 + ], + [ + 13.2849958, + 52.514915301 + ], + [ + 13.285113, + 52.514565501 + ], + [ + 13.285211, + 52.514281201 + ], + [ + 13.2853249, + 52.513842301 + ], + [ + 13.2853982, + 52.513548201 + ], + [ + 13.2854286, + 52.513314501 + ], + [ + 13.2854761, + 52.513002801 + ], + [ + 13.285493, + 52.512528701 + ], + [ + 13.2854735, + 52.512077601 + ], + [ + 13.2854049, + 52.511573701 + ], + [ + 13.2853493, + 52.511335801 + ], + [ + 13.2852652, + 52.511107601 + ], + [ + 13.2851902, + 52.510940001 + ], + [ + 13.2850754, + 52.510721101 + ], + [ + 13.2845667, + 52.509921101 + ], + [ + 13.2842015, + 52.509422501 + ], + [ + 13.2836466, + 52.508692001 + ], + [ + 13.2833035, + 52.508287001 + ], + [ + 13.2829921, + 52.507910101 + ], + [ + 13.2828157, + 52.507687101 + ], + [ + 13.2826076, + 52.507386601 + ], + [ + 13.2823821, + 52.507055401 + ], + [ + 13.2821139, + 52.506567401 + ], + [ + 13.2818736, + 52.506065701 + ], + [ + 13.2817523, + 52.505742801 + ], + [ + 13.2817043, + 52.505599201 + ], + [ + 13.2815377, + 52.505020501 + ], + [ + 13.2814528, + 52.504564401 + ], + [ + 13.2813713, + 52.504199401 + ], + [ + 13.2812873, + 52.503896701 + ], + [ + 13.2812492, + 52.503763901 + ], + [ + 13.2810599, + 52.503363601 + ], + [ + 13.2808433, + 52.502966401 + ], + [ + 13.2806493, + 52.502676201 + ], + [ + 13.2802795, + 52.502146801 + ], + [ + 13.2801753, + 52.501978401 + ], + [ + 13.2800717, + 52.501780401 + ], + [ + 13.2799905, + 52.501594501 + ], + [ + 13.2799574, + 52.501502201 + ], + [ + 13.2799382, + 52.501444501 + ], + [ + 13.2799035, + 52.501300201 + ], + [ + 13.2798857, + 52.501180201 + ], + [ + 13.2798728, + 52.500983601 + ], + [ + 13.2798776, + 52.500836101 + ], + [ + 13.2799139, + 52.500697801 + ], + [ + 13.2799464, + 52.500550001 + ], + [ + 13.2800188, + 52.500378201 + ], + [ + 13.2801099, + 52.500229901 + ], + [ + 13.2802373, + 52.500011401 + ], + [ + 13.2802831, + 52.499934901 + ], + [ + 13.280631, + 52.499477301 + ], + [ + 13.2808589, + 52.499199701 + ], + [ + 13.2809023, + 52.499144301 + ], + [ + 13.280920431, + 52.499125337 + ] + ] + } + }, + { + "identifier": "2024-006314--vi-bs.2015-07-17_00-00-00-000.f.devi-zus.2015-07-17_00-00-00-000_005.f.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.5133637836822,13.28654309994488,52.51668316767382,13.284358135372074", + "point": "52.5133637836822,13.28654309994488", + "startLcPosition": "6", + "impact": { + "lower": "Spandauer Damm", + "upper": "Kaiserdamm", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wilmersdorf -> Wedding", + "title": "A100 | Kaiserdamm - Spandauer Damm", + "startTimestamp": "2015-07-17T00:00:00+02:00", + "coordinate": { + "lat": 52.5133637836822, + "long": 13.28654309994488 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.07.15 um 00:00 Uhr", + "Ende: 01.01.30 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.30)", + "", + "A100: Wilmersdorf -> Wedding, zwischen 0.1 km hinter AS Kaiserdamm und 0.2 km vor AS Spandauer Damm", + "", + "L\u00e4nge: 0.41 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 8.75 m", + "", + "A100 Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.2865431, + 52.513363784 + ], + [ + 13.2865211, + 52.514010401 + ], + [ + 13.2864666, + 52.514264601 + ], + [ + 13.2863496, + 52.514664901 + ], + [ + 13.2861825, + 52.515029401 + ], + [ + 13.2859155, + 52.515407401 + ], + [ + 13.2857117, + 52.515624601 + ], + [ + 13.2854264, + 52.515878801 + ], + [ + 13.284847, + 52.516284801 + ], + [ + 13.2845489, + 52.516516201 + ], + [ + 13.284358135, + 52.516683168 + ] + ] + } + }, + { + "identifier": "2024-006314--vi-bs.2015-07-17_00-00-00-000.f.devi-zus.2015-07-17_00-00-00-000_005.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.50224791254473,13.280705033743088,52.505165742376334,13.28281698044952", + "point": "52.50224791254473,13.280705033743088", + "startLcPosition": "8", + "impact": { + "lower": "Kaiserdamm-S\u00fcd", + "upper": "Messedamm", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wilmersdorf -> Wedding", + "title": "A100 | Messedamm - Kaiserdamm-S\u00fcd", + "startTimestamp": "2015-07-17T00:00:00+02:00", + "coordinate": { + "lat": 52.50224791254473, + "long": 13.280705033743088 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.07.15 um 00:00 Uhr", + "Ende: 01.01.30 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.01.30)", + "", + "A100: Wilmersdorf -> Wedding, zwischen AS Messedamm und 0.6 km vor AS Kaiserdamm-S\u00fcd", + "", + "L\u00e4nge: 0.37 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 10.25 m", + "", + "A100 Bauwerksarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.280705034, + 52.502247913 + ], + [ + 13.2807682, + 52.502310501 + ], + [ + 13.2808765, + 52.502406601 + ], + [ + 13.281896, + 52.503241401 + ], + [ + 13.282027, + 52.503363601 + ], + [ + 13.2821997, + 52.503537601 + ], + [ + 13.2823718, + 52.503727201 + ], + [ + 13.2825118, + 52.503904601 + ], + [ + 13.2825898, + 52.504032201 + ], + [ + 13.2826576, + 52.504170501 + ], + [ + 13.2827047, + 52.504293001 + ], + [ + 13.2827492, + 52.504432101 + ], + [ + 13.2827726, + 52.504558701 + ], + [ + 13.2828089, + 52.504737801 + ], + [ + 13.2828139, + 52.505120201 + ], + [ + 13.28281698, + 52.505165742 + ] + ] + } + }, + { + "identifier": "2025-010744--vi-bs.2025-11-14_16-30-00-000.devi-zus.2025-03-10_00-00-00-000_004.de48", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.498682656941746,13.281588098480723,52.49949279720485,13.280720810776286", + "point": "52.498682656941746,13.281588098480723", + "startLcPosition": "10", + "impact": { + "lower": "Funkturm", + "upper": "Halenseestra\u00dfe", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Wilmersdorf -> Wedding", + "title": "A100 | Halenseestra\u00dfe - Funkturm", + "startTimestamp": "2025-11-14T16:30:00+01:00", + "coordinate": { + "lat": 52.498682656941746, + "long": 13.281588098480723 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.11.25 um 16:30 Uhr", + "Ende: 31.12.26 um 16:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A100: Wilmersdorf -> Wedding, zwischen 0.5 km hinter AS Halenseestra\u00dfe und 0.2 km vor AD Funkturm", + "", + "L\u00e4nge: 0.11 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A100 Kompensation Ringbahnbr\u00fccke und Westendbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.281588098, + 52.498682657 + ], + [ + 13.2815021, + 52.498787201 + ], + [ + 13.2813865, + 52.498875301 + ], + [ + 13.281196, + 52.499015701 + ], + [ + 13.2810444, + 52.499130801 + ], + [ + 13.2809841, + 52.499188001 + ], + [ + 13.280783, + 52.499412501 + ], + [ + 13.280720811, + 52.499492797 + ] + ] + } + }, + { + "identifier": "2025-010744--vi-bs.2025-11-14_16-30-00-000.devi-zus.2025-03-10_00-00-00-000_004.de40", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.486889789321545,13.301624991530895,52.49875485318974,13.281528709546722", + "point": "52.486889789321545,13.301624991530895", + "startLcPosition": "13", + "impact": { + "lower": "Funkturm", + "upper": "Schmargendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neuk\u00f6lln -> Wedding", + "title": "A100 | Schmargendorf - Funkturm", + "startTimestamp": "2025-11-14T16:30:00+01:00", + "coordinate": { + "lat": 52.486889789321545, + "long": 13.301624991530895 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.11.25 um 16:30 Uhr", + "Ende: 31.12.26 um 16:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "A100: Neuk\u00f6lln -> Wedding, zwischen 0.6 km hinter AS Schmargendorf und 0.3 km vor AD Funkturm", + "", + "L\u00e4nge: 1.97 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A100 Kompensation Ringbahnbr\u00fccke und Westendbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.301624992, + 52.486889789 + ], + [ + 13.3011707, + 52.487221101 + ], + [ + 13.3001406, + 52.487985901 + ], + [ + 13.2978496, + 52.489658801 + ], + [ + 13.2970838, + 52.490218401 + ], + [ + 13.2963901, + 52.490707701 + ], + [ + 13.295719, + 52.491127401 + ], + [ + 13.2947226, + 52.491730101 + ], + [ + 13.292993, + 52.492717401 + ], + [ + 13.2918301, + 52.493398801 + ], + [ + 13.2912309, + 52.493698001 + ], + [ + 13.2909118, + 52.493823301 + ], + [ + 13.2905817, + 52.493944701 + ], + [ + 13.2901268, + 52.494059901 + ], + [ + 13.2898785, + 52.494101801 + ], + [ + 13.289631, + 52.494136301 + ], + [ + 13.2893881, + 52.494160901 + ], + [ + 13.2891442, + 52.494179401 + ], + [ + 13.2885899, + 52.494201601 + ], + [ + 13.2882897, + 52.494207401 + ], + [ + 13.2879743, + 52.494223001 + ], + [ + 13.2876367, + 52.494244901 + ], + [ + 13.2872604, + 52.494287501 + ], + [ + 13.2869333, + 52.494344801 + ], + [ + 13.2865814, + 52.494430801 + ], + [ + 13.2861334, + 52.494565401 + ], + [ + 13.2859105, + 52.494653101 + ], + [ + 13.2856227, + 52.494780401 + ], + [ + 13.285171, + 52.495035401 + ], + [ + 13.2849256, + 52.495216501 + ], + [ + 13.2847001, + 52.495407601 + ], + [ + 13.2843775, + 52.495718001 + ], + [ + 13.2840889, + 52.496117301 + ], + [ + 13.2838702, + 52.496395901 + ], + [ + 13.2836491, + 52.496705501 + ], + [ + 13.2834635, + 52.496910201 + ], + [ + 13.2832826, + 52.497107301 + ], + [ + 13.2831161, + 52.497267301 + ], + [ + 13.2828464, + 52.497500001 + ], + [ + 13.2827603, + 52.497573001 + ], + [ + 13.2823175, + 52.497921201 + ], + [ + 13.2819142, + 52.498311701 + ], + [ + 13.2816848, + 52.498565101 + ], + [ + 13.28152871, + 52.498754853 + ] + ] + } + }, + { + "identifier": "2025-054375--vi-bs.2025-10-09_00-00-00-000.devi-zus.2025-10-09_00-00-00-000_004.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.47948599818419,13.314205569680968,52.481159980729885,13.31110888608626", + "point": "52.47948599818419,13.314205569680968", + "startLcPosition": "15", + "impact": { + "lower": "Schmargendorf", + "upper": "Wexstra\u00dfe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neuk\u00f6lln -> Wilmersdorf", + "title": "A100 | Wexstra\u00dfe - Schmargendorf", + "startTimestamp": "2025-10-09T00:00:00+02:00", + "coordinate": { + "lat": 52.47948599818419, + "long": 13.314205569680968 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.10.25 um 00:00 Uhr", + "Ende: 01.12.30 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.30)", + "", + "A100: Neuk\u00f6lln -> Wilmersdorf, zwischen 1.6 km hinter AS Wexstra\u00dfe und 0.4 km vor AS Schmargendorf", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A100 von Wexstra\u00dfe (AS) nach Schmargendorf (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.31420557, + 52.479485998 + ], + [ + 13.3141138, + 52.479522101 + ], + [ + 13.3139388, + 52.479594101 + ], + [ + 13.3131051, + 52.479974901 + ], + [ + 13.3123526, + 52.480367101 + ], + [ + 13.3119652, + 52.480587801 + ], + [ + 13.3114222, + 52.480952801 + ], + [ + 13.311108886, + 52.481159981 + ] + ] + } + }, + { + "identifier": "2025-054375--vi-bs.2025-10-09_00-00-00-000.devi-zus.2025-10-09_00-00-00-000_004.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.47948599818419,13.314205569680968,52.481159980729885,13.31110888608626", + "point": "52.47948599818419,13.314205569680968", + "startLcPosition": "15", + "impact": { + "lower": "Schmargendorf", + "upper": "Wexstra\u00dfe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Neuk\u00f6lln -> Wilmersdorf", + "title": "A100 | Wexstra\u00dfe - Schmargendorf", + "startTimestamp": "2025-10-09T00:00:00+02:00", + "coordinate": { + "lat": 52.47948599818419, + "long": 13.314205569680968 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 09.10.25 um 00:00 Uhr", + "Ende: 01.12.30 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.30)", + "", + "A100: Neuk\u00f6lln -> Wilmersdorf, zwischen 1.6 km hinter AS Wexstra\u00dfe und 0.4 km vor AS Schmargendorf", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A100 von Wexstra\u00dfe (AS) nach Schmargendorf (AS) Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.31420557, + 52.479485998 + ], + [ + 13.3141138, + 52.479522101 + ], + [ + 13.3139388, + 52.479594101 + ], + [ + 13.3131051, + 52.479974901 + ], + [ + 13.3123526, + 52.480367101 + ], + [ + 13.3119652, + 52.480587801 + ], + [ + 13.3114222, + 52.480952801 + ], + [ + 13.311108886, + 52.481159981 + ] + ] + } + }, + { + "identifier": "2025-010744--vi-bs.2025-11-14_16-30-00-000.devi-zus.2025-03-10_00-00-00-000_004.de45", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.49920372806469,13.281151919153567,52.52420000442625,13.281261016395934", + "point": "52.49920372806469,13.281151919153567", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Spandauer Damm (aus Richtung Kaiserdamm)", + "title": "A100 Kompensation Ringbahnbr\u00fccke und Westendbr\u00fccke", + "startTimestamp": "2025-11-14T16:30:00+01:00", + "coordinate": { + "lat": 52.49920372806469, + "long": 13.281151919153567 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.11.25 um 16:30 Uhr", + "Ende: 31.12.26 um 16:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Auffahrt auf die A100: AS Spandauer Damm (aus Richtung Kaiserdamm)", + "", + "L\u00e4nge: 2.92 km | Maximale Durchfahrtsbreite: 2.75 m | zul\u00e4ssiges Gesamtgewicht: 3.49 t", + "", + "A100 Kompensation Ringbahnbr\u00fccke und Westendbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.281151919, + 52.499203728 + ], + [ + 13.2808617, + 52.499540301 + ], + [ + 13.2807024, + 52.499733701 + ], + [ + 13.2804862, + 52.499998301 + ], + [ + 13.2803879, + 52.500151301 + ], + [ + 13.2802366, + 52.500452701 + ], + [ + 13.2801641, + 52.500622701 + ], + [ + 13.2801309, + 52.500774801 + ], + [ + 13.280104, + 52.500931401 + ], + [ + 13.2801014, + 52.501110301 + ], + [ + 13.2801239, + 52.501303301 + ], + [ + 13.2801689, + 52.501488801 + ], + [ + 13.2802289, + 52.501641501 + ], + [ + 13.2803144, + 52.501786401 + ], + [ + 13.2804482, + 52.501980701 + ], + [ + 13.2804948, + 52.502039601 + ], + [ + 13.2807682, + 52.502310501 + ], + [ + 13.2808765, + 52.502406601 + ], + [ + 13.281896, + 52.503241401 + ], + [ + 13.282027, + 52.503363601 + ], + [ + 13.2821997, + 52.503537601 + ], + [ + 13.2823718, + 52.503727201 + ], + [ + 13.2825118, + 52.503904601 + ], + [ + 13.2825898, + 52.504032201 + ], + [ + 13.2826576, + 52.504170501 + ], + [ + 13.2827047, + 52.504293001 + ], + [ + 13.2827492, + 52.504432101 + ], + [ + 13.2827726, + 52.504558701 + ], + [ + 13.2828089, + 52.504737801 + ], + [ + 13.2828139, + 52.505120201 + ], + [ + 13.2828394, + 52.505497201 + ], + [ + 13.2828773, + 52.505756701 + ], + [ + 13.282947, + 52.506034401 + ], + [ + 13.283015, + 52.506220601 + ], + [ + 13.2831319, + 52.506434001 + ], + [ + 13.283313, + 52.506721501 + ], + [ + 13.2846003, + 52.508616901 + ], + [ + 13.2851618, + 52.509487001 + ], + [ + 13.2852656, + 52.509643701 + ], + [ + 13.2858225, + 52.510484701 + ], + [ + 13.2859316, + 52.510697801 + ], + [ + 13.2860515, + 52.510944801 + ], + [ + 13.2861346, + 52.511245001 + ], + [ + 13.2862166, + 52.511556901 + ], + [ + 13.2863692, + 52.512159501 + ], + [ + 13.2864659, + 52.512673401 + ], + [ + 13.2865433, + 52.513357901 + ], + [ + 13.2865211, + 52.514010401 + ], + [ + 13.2864666, + 52.514264601 + ], + [ + 13.2863496, + 52.514664901 + ], + [ + 13.2861825, + 52.515029401 + ], + [ + 13.2859155, + 52.515407401 + ], + [ + 13.2857117, + 52.515624601 + ], + [ + 13.2854264, + 52.515878801 + ], + [ + 13.284847, + 52.516284801 + ], + [ + 13.2845489, + 52.516516201 + ], + [ + 13.2842972, + 52.516736501 + ], + [ + 13.2841804, + 52.516852301 + ], + [ + 13.2840335, + 52.517036501 + ], + [ + 13.2838655, + 52.517275801 + ], + [ + 13.2837683, + 52.517464201 + ], + [ + 13.2834974, + 52.518011601 + ], + [ + 13.2826159, + 52.519930901 + ], + [ + 13.2820593, + 52.521239901 + ], + [ + 13.2817029, + 52.522091601 + ], + [ + 13.2815193, + 52.522654401 + ], + [ + 13.281415, + 52.523057101 + ], + [ + 13.2813632, + 52.523304701 + ], + [ + 13.2813152, + 52.523579801 + ], + [ + 13.2812803, + 52.523890501 + ], + [ + 13.281261016, + 52.524200004 + ] + ] + } + }, + { + "identifier": "2026-017776--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_007.de7", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.47010088820114,13.3723738836446,52.469966412468985,13.372157886032305", + "point": "52.47010088820114,13.3723738836446", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Alboinstra\u00dfe (aus Richtung Tempelhofer Damm)", + "title": "A100 Umbau einer Anschlussstelle", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.47010088820114, + "long": 13.3723738836446 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 20.08.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.08.26)", + "", + "Abfahrt von der A100: AS Alboinstra\u00dfe (aus Richtung Tempelhofer Damm)", + "", + "L\u00e4nge: 0.02 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A100 Umbau einer Anschlussstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.372373884, + 52.470100888 + ], + [ + 13.3721943, + 52.469990901 + ], + [ + 13.372157886, + 52.469966412 + ] + ] + } + }, + { + "identifier": "2026-017776--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_007.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.470442845766854,13.372974508349134,52.46997306066647,13.372167771822818", + "point": "52.470442845766854,13.372974508349134", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Alboinstra\u00dfe (aus Richtung Tempelhofer Damm)", + "title": "A100 Umbau einer Anschlussstelle", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.470442845766854, + "long": 13.372974508349134 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 20.08.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.08.26)", + "", + "Abfahrt von der A100: AS Alboinstra\u00dfe (aus Richtung Tempelhofer Damm)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 7 m", + "", + "A100 Umbau einer Anschlussstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.372974508, + 52.470442846 + ], + [ + 13.3729621, + 52.470438101 + ], + [ + 13.3728707, + 52.470394701 + ], + [ + 13.372795, + 52.470356301 + ], + [ + 13.3727243, + 52.470315501 + ], + [ + 13.3721943, + 52.469990901 + ], + [ + 13.372167772, + 52.469973061 + ] + ] + } + }, + { + "identifier": "2026-017776--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_007.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.47045712502131,13.37301185013259,52.46995977022576,13.372147981755402", + "point": "52.47045712502131,13.37301185013259", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Alboinstra\u00dfe (aus Richtung Tempelhofer Damm)", + "title": "A100 Umbau einer Anschlussstelle", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.47045712502131, + "long": 13.37301185013259 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 20.08.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.08.26)", + "", + "Abfahrt von der A100: AS Alboinstra\u00dfe (aus Richtung Tempelhofer Damm)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A100 Umbau einer Anschlussstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.37301185, + 52.470457125 + ], + [ + 13.3729621, + 52.470438101 + ], + [ + 13.3728707, + 52.470394701 + ], + [ + 13.372795, + 52.470356301 + ], + [ + 13.3727243, + 52.470315501 + ], + [ + 13.3721943, + 52.469990901 + ], + [ + 13.3721543, + 52.469964001 + ], + [ + 13.372147982, + 52.46995977 + ] + ] + } + }, + { + "identifier": "2026-017330--vi-bs.2026-04-08_07-30-00-000.devi-zus.2026-04-08_07-30-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.464673751088746,13.45556722762139,52.4612034251799,13.45590269926464", + "point": "52.464673751088746,13.45556722762139", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Grenzallee (in Richtung Neuk\u00f6lln) nach A113", + "title": "A113 von Sp\u00e4thstra\u00dfe (AS) Reinigungsarbeiten", + "coordinate": { + "lat": 52.464673751088746, + "long": 13.45556722762139 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 14:00 Uhr", + "11.04.26 von 07:30 bis 14:00 Uhr", + "", + "Von Abfahrt von der A100: AS Grenzallee (in Richtung Neuk\u00f6lln) nach A113: Neuk\u00f6lln -> Sch\u00f6nefeld, zwischen AD Neuk\u00f6lln und 0.9 km vor AS Sp\u00e4thstra\u00dfe", + "", + "L\u00e4nge: 0.53 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A113 von Sp\u00e4thstra\u00dfe (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.455567228, + 52.464673751 + ], + [ + 13.4554529, + 52.464653201 + ], + [ + 13.4552849, + 52.464618801 + ], + [ + 13.4550687, + 52.464579701 + ], + [ + 13.4548209, + 52.464532901 + ], + [ + 13.4545866, + 52.464479501 + ], + [ + 13.4543311, + 52.464399601 + ], + [ + 13.454081, + 52.464293001 + ], + [ + 13.4538701, + 52.464165401 + ], + [ + 13.453709, + 52.464029701 + ], + [ + 13.4535337, + 52.463767001 + ], + [ + 13.4534739, + 52.463616901 + ], + [ + 13.4534427, + 52.463525901 + ], + [ + 13.4534384, + 52.463461601 + ], + [ + 13.4534299, + 52.463344301 + ], + [ + 13.4534492, + 52.463220201 + ], + [ + 13.4534869, + 52.463105001 + ], + [ + 13.4535391, + 52.463001801 + ], + [ + 13.453648, + 52.462861401 + ], + [ + 13.4537693, + 52.462735701 + ], + [ + 13.453903, + 52.462632001 + ], + [ + 13.4541056, + 52.462509001 + ], + [ + 13.4543446, + 52.462395501 + ], + [ + 13.4545456, + 52.462296401 + ], + [ + 13.4547621, + 52.462180301 + ], + [ + 13.4549487, + 52.462065101 + ], + [ + 13.4551484, + 52.461928201 + ], + [ + 13.4553317, + 52.461873001 + ], + [ + 13.4556563, + 52.461496901 + ], + [ + 13.455902699, + 52.461203425 + ] + ] + } + }, + { + "identifier": "2026-017173--vi-bs.2026-04-20_20-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.484690352501744,13.30693567433625,52.482526102176394,13.306612444541022", + "point": "52.484690352501744,13.30693567433625", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "CLOSED", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": "", + "title": "A100 Bauwerkspr\u00fcfung", + "coordinate": { + "lat": 52.484690352501744, + "long": 13.30693567433625 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 20:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 20:00 bis zum 22.04.26 05:00 Uhr.", + "", + "Autobahnzubringer Schmargendorf", + "", + "L\u00e4nge: 0.24 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A100 Bauwerkspr\u00fcfung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.306935674, + 52.484690353 + ], + [ + 13.3069119, + 52.484612901 + ], + [ + 13.306841, + 52.484290301 + ], + [ + 13.3067652, + 52.483859501 + ], + [ + 13.3067164, + 52.483511201 + ], + [ + 13.3066817, + 52.483173401 + ], + [ + 13.306612445, + 52.482526102 + ] + ] + } + }, + { + "identifier": "2026-017776--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_007.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.470442845766854,13.372974508349134,52.46995977022576,13.372147981755402", + "point": "52.470442845766854,13.372974508349134", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Alboinstra\u00dfe (aus Richtung Tempelhofer Damm)", + "title": "A100 Umbau einer Anschlussstelle", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.470442845766854, + "long": 13.372974508349134 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 20.08.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.08.26)", + "", + "Abfahrt von der A100: AS Alboinstra\u00dfe (aus Richtung Tempelhofer Damm)", + "", + "L\u00e4nge: 0.08 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "A100 Umbau einer Anschlussstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.372974508, + 52.470442846 + ], + [ + 13.3729621, + 52.470438101 + ], + [ + 13.3728707, + 52.470394701 + ], + [ + 13.372795, + 52.470356301 + ], + [ + 13.3727243, + 52.470315501 + ], + [ + 13.3721943, + 52.469990901 + ], + [ + 13.3721543, + 52.469964001 + ], + [ + 13.372147982, + 52.46995977 + ] + ] + } + }, + { + "identifier": "2025-048987--vi-bs.2026-03-03_05-00-00-000.devi-zus.2025-10-30_21-00-00-000_002.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.49521672109308,13.268438729353317,52.50034704273727,13.280477473943165", + "point": "52.49521672109308,13.268438729353317", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Avus (aus Richtung H\u00fcttenweg)", + "title": "A100 RiFa Hamburg Neubau Ringbahnbr\u00fccke und Westendbr\u00fccke", + "startTimestamp": "2026-03-03T05:00:00+01:00", + "coordinate": { + "lat": 52.49521672109308, + "long": 13.268438729353317 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.03.26 um 05:00 Uhr", + "Ende: 24.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Abfahrt von der A115: Avus (aus Richtung H\u00fcttenweg)", + "", + "L\u00e4nge: 1.05 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A100 RiFa Hamburg Neubau Ringbahnbr\u00fccke und Westendbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.268438729, + 52.495216721 + ], + [ + 13.2692832, + 52.495851401 + ], + [ + 13.271298, + 52.497348701 + ], + [ + 13.272013, + 52.497899201 + ], + [ + 13.2725229, + 52.498304501 + ], + [ + 13.2728545, + 52.498557001 + ], + [ + 13.2730575, + 52.498706101 + ], + [ + 13.2731962, + 52.498797001 + ], + [ + 13.2733793, + 52.498904001 + ], + [ + 13.2735176, + 52.498980701 + ], + [ + 13.2736405, + 52.499037301 + ], + [ + 13.2737985, + 52.499107401 + ], + [ + 13.2739509, + 52.499163601 + ], + [ + 13.2741201, + 52.499218301 + ], + [ + 13.2742832, + 52.499263501 + ], + [ + 13.2744697, + 52.499308001 + ], + [ + 13.2746371, + 52.499346001 + ], + [ + 13.2748259, + 52.499377301 + ], + [ + 13.2750405, + 52.499408701 + ], + [ + 13.2752498, + 52.499434601 + ], + [ + 13.275668, + 52.499468501 + ], + [ + 13.2758494, + 52.499479901 + ], + [ + 13.2762182, + 52.499496701 + ], + [ + 13.2765651, + 52.499505801 + ], + [ + 13.2773563, + 52.499538401 + ], + [ + 13.277733, + 52.499563901 + ], + [ + 13.2780992, + 52.499596901 + ], + [ + 13.2786268, + 52.499655201 + ], + [ + 13.2788985, + 52.499707601 + ], + [ + 13.279189, + 52.499774401 + ], + [ + 13.2794839, + 52.499862701 + ], + [ + 13.2797587, + 52.499959301 + ], + [ + 13.2799384, + 52.500030301 + ], + [ + 13.2801249, + 52.500117501 + ], + [ + 13.2803717, + 52.500253601 + ], + [ + 13.280477474, + 52.500347043 + ] + ] + } + }, + { + "identifier": "2025-048987--vi-bs.2026-02-05_11-00-00-000.devi-zus.2025-10-30_21-00-00-000_002.de24", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.49521672109308,13.268438729353317,52.50034704273727,13.280477473943165", + "point": "52.49521672109308,13.268438729353317", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Avus (aus Richtung H\u00fcttenweg)", + "title": "A100 RiFa Hamburg Neubau Ringbahnbr\u00fccke und Westendbr\u00fccke", + "startTimestamp": "2026-02-05T11:00:00+01:00", + "coordinate": { + "lat": 52.49521672109308, + "long": 13.268438729353317 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 05.02.26 um 11:00 Uhr", + "Ende: 24.04.26 um 18:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Abfahrt von der A115: Avus (aus Richtung H\u00fcttenweg)", + "", + "L\u00e4nge: 1.05 km | Maximale Durchfahrtsbreite: 3 m | zul\u00e4ssiges Gesamtgewicht: 3.5 t", + "", + "A100 RiFa Hamburg Neubau Ringbahnbr\u00fccke und Westendbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.268438729, + 52.495216721 + ], + [ + 13.2692832, + 52.495851401 + ], + [ + 13.271298, + 52.497348701 + ], + [ + 13.272013, + 52.497899201 + ], + [ + 13.2725229, + 52.498304501 + ], + [ + 13.2728545, + 52.498557001 + ], + [ + 13.2730575, + 52.498706101 + ], + [ + 13.2731962, + 52.498797001 + ], + [ + 13.2733793, + 52.498904001 + ], + [ + 13.2735176, + 52.498980701 + ], + [ + 13.2736405, + 52.499037301 + ], + [ + 13.2737985, + 52.499107401 + ], + [ + 13.2739509, + 52.499163601 + ], + [ + 13.2741201, + 52.499218301 + ], + [ + 13.2742832, + 52.499263501 + ], + [ + 13.2744697, + 52.499308001 + ], + [ + 13.2746371, + 52.499346001 + ], + [ + 13.2748259, + 52.499377301 + ], + [ + 13.2750405, + 52.499408701 + ], + [ + 13.2752498, + 52.499434601 + ], + [ + 13.275668, + 52.499468501 + ], + [ + 13.2758494, + 52.499479901 + ], + [ + 13.2762182, + 52.499496701 + ], + [ + 13.2765651, + 52.499505801 + ], + [ + 13.2773563, + 52.499538401 + ], + [ + 13.277733, + 52.499563901 + ], + [ + 13.2780992, + 52.499596901 + ], + [ + 13.2786268, + 52.499655201 + ], + [ + 13.2788985, + 52.499707601 + ], + [ + 13.279189, + 52.499774401 + ], + [ + 13.2794839, + 52.499862701 + ], + [ + 13.2797587, + 52.499959301 + ], + [ + 13.2799384, + 52.500030301 + ], + [ + 13.2801249, + 52.500117501 + ], + [ + 13.2803717, + 52.500253601 + ], + [ + 13.280477474, + 52.500347043 + ] + ] + } + }, + { + "identifier": "2025-010744--vi-bs.2025-11-14_16-30-00-000.devi-zus.2025-03-10_00-00-00-000_004.de53", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.518805805731304,13.283347932295209,52.52232690069387,13.281626139721388", + "point": "52.518805805731304,13.283347932295209", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Spandauer Damm (aus Richtung Kaiserdamm) nach A100", + "title": "A100 Kompensation Ringbahnbr\u00fccke und Westendbr\u00fccke", + "startTimestamp": "2025-11-14T16:30:00+01:00", + "coordinate": { + "lat": 52.518805805731304, + "long": 13.283347932295209 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.11.25 um 16:30 Uhr", + "Ende: 31.12.26 um 16:30 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.26)", + "", + "Von Auffahrt auf die A100: AS Spandauer Damm (aus Richtung Kaiserdamm) nach A100: Wilmersdorf -> Wedding, zwischen AS Spandauer Damm und 1.3 km vor AS Siemensdamm", + "", + "L\u00e4nge: 0.41 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A100 Kompensation Ringbahnbr\u00fccke und Westendbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.283347932, + 52.518805806 + ], + [ + 13.2833214, + 52.518873901 + ], + [ + 13.282805, + 52.520001101 + ], + [ + 13.2826219, + 52.520407701 + ], + [ + 13.282548, + 52.520578801 + ], + [ + 13.2824924, + 52.520685001 + ], + [ + 13.2823955, + 52.520847401 + ], + [ + 13.2823097, + 52.520951001 + ], + [ + 13.2820593, + 52.521239901 + ], + [ + 13.2817029, + 52.522091601 + ], + [ + 13.28162614, + 52.522326901 + ] + ] + } + } + ] + }, + "A103": { + "roadworks": [ + { + "identifier": "2026-016587--vi-bs.2026-04-16_20-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.467575128285084,13.338291014134425,52.46660064051035,13.337098874627163", + "point": "52.467575128285084,13.338291014134425", + "startLcPosition": "4", + "impact": { + "lower": "Feuerbachstra\u00dfe", + "upper": "Sch\u00f6neberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6neberg -> Steglitz", + "title": "A103 | Sch\u00f6neberg - Feuerbachstra\u00dfe", + "coordinate": { + "lat": 52.467575128285084, + "long": 13.338291014134425 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 20:00 bis zum 17.04.26 05:00 Uhr.", + "17.04.26 20:00 bis zum 18.04.26 05:00 Uhr.", + "", + "A103: Sch\u00f6neberg -> Steglitz, zwischen 1.2 km hinter AK Sch\u00f6neberg und 0.5 km vor Feuerbachstra\u00dfe", + "", + "L\u00e4nge: 0.14 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A103 von Saarstra\u00dfe (AS) Arbeiten an Br\u00fcckengel\u00e4nder" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.338291014, + 52.467575128 + ], + [ + 13.3378729, + 52.467234301 + ], + [ + 13.3374196, + 52.466864801 + ], + [ + 13.337098875, + 52.466600641 + ] + ] + } + }, + { + "identifier": "2025-034623--vi-fbm.2025-08-26_07-00-00-000.devi-zus.2025-07-23_03-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.45655147616528,13.32316953413694,52.454726479212916,13.320195557455149", + "point": "52.45655147616528,13.32316953413694", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Wolfensteindamm/Schlo\u00dfstra\u00dfe (aus Richtung Filandastra\u00dfe)", + "title": "A103 Baustellensicherung Wolfensteindamm", + "startTimestamp": "2025-08-26T07:00:00+02:00", + "coordinate": { + "lat": 52.45655147616528, + "long": 13.32316953413694 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.08.25 um 07:00 Uhr", + "Ende: 30.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "Von Abfahrt von der A103 S nach Auffahrt auf die A103: AS Wolfensteindamm/Schlo\u00dfstra\u00dfe (aus Richtung Filandastra\u00dfe)", + "", + "L\u00e4nge: 0.29 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "A103 Baustellensicherung Wolfensteindamm" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.323169534, + 52.456551476 + ], + [ + 13.3228721, + 52.456280301 + ], + [ + 13.3226829, + 52.456140101 + ], + [ + 13.322385, + 52.455906801 + ], + [ + 13.3221419, + 52.455731601 + ], + [ + 13.321877, + 52.455551701 + ], + [ + 13.321512, + 52.455328101 + ], + [ + 13.3211282, + 52.455105901 + ], + [ + 13.3208631, + 52.454974001 + ], + [ + 13.3207314, + 52.454914101 + ], + [ + 13.3204872, + 52.454818401 + ], + [ + 13.3203476, + 52.454772101 + ], + [ + 13.3201957, + 52.454726501 + ], + [ + 13.320195557, + 52.454726479 + ] + ] + } + } + ] + }, + "A111": { + "roadworks": [ + { + "identifier": "2026-016076--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.53868518533009,13.294691456916032,52.540401985227874,13.29562244594604", + "point": "52.53868518533009,13.294691456916032", + "startLcPosition": "0", + "impact": { + "lower": "Flughafen Tegel", + "upper": "Charlottenburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Charlottenburg -> Dreieck Oranienburg", + "title": "A111 | Charlottenburg - Flughafen Tegel", + "coordinate": { + "lat": 52.53868518533009, + "long": 13.294691456916032 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "15.04.26 20:00 bis zum 16.04.26 05:00 Uhr.", + "", + "A111: Charlottenburg -> Dreieck Oranienburg, zwischen 0.7 km hinter AD Charlottenburg und 0.6 km vor AS Flughafen Tegel", + "", + "L\u00e4nge: 0.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A111 von Flughafen Tegel (AS) Arbeiten an Br\u00fcckengel\u00e4nder" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.294691457, + 52.538685185 + ], + [ + 13.295101, + 52.539436701 + ], + [ + 13.2952994, + 52.539809101 + ], + [ + 13.295622446, + 52.540401985 + ] + ] + } + }, + { + "identifier": "2026-016076--vi-bs.2026-04-13_20-00-00-000.devi-zus.2026-04-13_20-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.541298609409175,13.295956005857649,52.538677343373614,13.294543253800436", + "point": "52.541298609409175,13.295956005857649", + "startLcPosition": "2", + "impact": { + "lower": "Charlottenburg", + "upper": "Flughafen Tegel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Oranienburg -> Charlottenburg", + "title": "A111 | Flughafen Tegel - Charlottenburg", + "coordinate": { + "lat": 52.541298609409175, + "long": 13.295956005857649 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:00 bis zum 14.04.26 05:00 Uhr.", + "14.04.26 20:00 bis zum 15.04.26 05:00 Uhr.", + "", + "A111: Dreieck Oranienburg -> Charlottenburg, zwischen 0.5 km hinter AS Flughafen Tegel und 0.7 km vor AD Charlottenburg", + "", + "L\u00e4nge: 0.31 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A111 von Flughafen Tegel (AS) Arbeiten an Br\u00fcckengel\u00e4nder" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.295956006, + 52.541298609 + ], + [ + 13.2959116, + 52.541210301 + ], + [ + 13.295162, + 52.539854201 + ], + [ + 13.2949617, + 52.539446001 + ], + [ + 13.294543254, + 52.538677343 + ] + ] + } + }, + { + "identifier": "2023-005138--vi-bs.2024-06-14_05-00-00-000.devi-zus.2023-03-20_00-00-00-000_009.f.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.56744400079467,13.306701767343355,52.56817873951964,13.306114328078998", + "point": "52.56744400079467,13.306701767343355", + "startLcPosition": "7", + "impact": { + "lower": "Holzhauser Stra\u00dfe", + "upper": "Kurt-Schumacher-Platz", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Charlottenburg -> Dreieck Oranienburg", + "title": "A111 | Kurt-Schumacher-Platz - Holzhauser Stra\u00dfe", + "startTimestamp": "2024-06-14T05:00:00+02:00", + "coordinate": { + "lat": 52.56744400079467, + "long": 13.306701767343355 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.06.24 um 05:00 Uhr", + "Ende: 30.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A111: Charlottenburg -> Dreieck Oranienburg, zwischen AS Kurt-Schumacher-Platz und 1.3 km vor AS Holzhauser Stra\u00dfe", + "", + "L\u00e4nge: 0.09 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A111 BVG Bauarbeiten U6-Nord" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.306701767, + 52.567444001 + ], + [ + 13.3065944, + 52.567551801 + ], + [ + 13.3064191, + 52.567741901 + ], + [ + 13.3062622, + 52.567939401 + ], + [ + 13.3061317, + 52.568145801 + ], + [ + 13.306114328, + 52.56817874 + ] + ] + } + }, + { + "identifier": "2023-005138--vi-bs.2024-06-14_05-00-00-000.devi-zus.2023-03-20_00-00-00-000_009.f.de20", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.572757714844265,13.30527304435121,52.568309742757876,13.30581952284735", + "point": "52.572757714844265,13.30527304435121", + "startLcPosition": "9", + "impact": { + "lower": "Seidelstra\u00dfe", + "upper": "Holzhauser Stra\u00dfe", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Oranienburg -> Charlottenburg", + "title": "A111 | Holzhauser Stra\u00dfe - Seidelstra\u00dfe", + "startTimestamp": "2024-06-14T05:00:00+02:00", + "coordinate": { + "lat": 52.572757714844265, + "long": 13.30527304435121 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.06.24 um 05:00 Uhr", + "Ende: 30.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "A111: Dreieck Oranienburg -> Charlottenburg, zwischen 0.8 km hinter AS Holzhauser Stra\u00dfe und AS Seidelstra\u00dfe", + "", + "L\u00e4nge: 0.5 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A111 BVG Bauarbeiten U6-Nord" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.305273044, + 52.572757715 + ], + [ + 13.305317, + 52.572644501 + ], + [ + 13.3053629, + 52.572501501 + ], + [ + 13.3054182, + 52.572293101 + ], + [ + 13.3054645, + 52.572060601 + ], + [ + 13.3055017, + 52.571820101 + ], + [ + 13.3055171, + 52.571633401 + ], + [ + 13.3055249, + 52.571494701 + ], + [ + 13.3055008, + 52.570004701 + ], + [ + 13.3055098, + 52.569686401 + ], + [ + 13.3055182, + 52.569382701 + ], + [ + 13.3055527, + 52.569148701 + ], + [ + 13.3055997, + 52.568944001 + ], + [ + 13.3056475, + 52.568753201 + ], + [ + 13.3057235, + 52.568527801 + ], + [ + 13.3058064, + 52.568334801 + ], + [ + 13.305819523, + 52.568309743 + ] + ] + } + }, + { + "identifier": "2026-017728--vi-bs.2026-04-09_21-00-00-000.devi-bs.2026-04-09_21-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.58103205344911,13.294989558943442,52.580140649867964,13.295579422853876", + "point": "52.58103205344911,13.294989558943442", + "startLcPosition": "10", + "impact": { + "lower": "Holzhauser Stra\u00dfe", + "upper": "Ortskern Tegel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Oranienburg -> Charlottenburg", + "title": "A111 | Ortskern Tegel - Holzhauser Stra\u00dfe", + "coordinate": { + "lat": 52.58103205344911, + "long": 13.294989558943442 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 21:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A111: Dreieck Oranienburg -> Charlottenburg, zwischen 1.1 km hinter Ortskern Tegel und 0.3 km vor AS Holzhauser Stra\u00dfe", + "", + "L\u00e4nge: 0.11 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A111 von Ortskern Tegel (Tunnel) Fahrbahninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.294989559, + 52.581032053 + ], + [ + 13.2955222, + 52.580228301 + ], + [ + 13.2955519, + 52.580181801 + ], + [ + 13.295579423, + 52.58014065 + ] + ] + } + }, + { + "identifier": "2026-015799--vi-bs.2026-04-08_08-00-00-000_006.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.67595168408997,13.229318241987546,52.67216412563119,13.234590361828024", + "point": "52.67595168408997,13.229318241987546", + "startLcPosition": "17", + "impact": { + "lower": "Stolpe", + "upper": "Hennigsdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Oranienburg -> Charlottenburg", + "title": "A111 | Hennigsdorf - Stolpe", + "coordinate": { + "lat": 52.67595168408997, + "long": 13.229318241987546 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "20.04.26 von 10:00 bis 15:00 Uhr", + "21.04.26 von 08:00 bis 15:00 Uhr", + "22.04.26 von 08:00 bis 15:00 Uhr", + "23.04.26 von 08:00 bis 15:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "", + "A111: Dreieck Oranienburg -> Charlottenburg, zwischen AS Hennigsdorf und 2.3 km vor AS Stolpe", + "", + "L\u00e4nge: 0.55 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A111 von Kreuz Oranienburg (AD) nach Stolpe (AS), Verlegung Kommunikationsanlage" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.229318242, + 52.675951684 + ], + [ + 13.2302961, + 52.675368601 + ], + [ + 13.2307919, + 52.675032901 + ], + [ + 13.2313462, + 52.674648701 + ], + [ + 13.2322525, + 52.674017801 + ], + [ + 13.2334606, + 52.673080901 + ], + [ + 13.2341278, + 52.672549101 + ], + [ + 13.234590362, + 52.672164126 + ] + ] + } + } + ] + }, + "A113": { + "roadworks": [ + { + "identifier": "2026-017507--vi-bs.2026-04-15_10-00-00-000.devi-bs.2026-04-15_10-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.445424414929754,13.474176487618283,52.45557553030463,13.460555526049909", + "point": "52.445424414929754,13.474176487618283", + "startLcPosition": "2", + "impact": { + "lower": "Neuk\u00f6lln", + "upper": "Johannisthaler Chaussee", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Johannisthaler Chaussee - Neuk\u00f6lln", + "coordinate": { + "lat": 52.445424414929754, + "long": 13.474176487618283 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "29.04.26 von 10:00 bis 20:00 Uhr", + "30.04.26 von 10:00 bis 20:00 Uhr", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 0.4 km hinter AS Johannisthaler Chaussee und 1.1 km vor AD Neuk\u00f6lln", + "", + "L\u00e4nge: 1.51 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A113 von Rudower H\u00f6he (Tunnel) nach Stubenrauchstra\u00dfe (AS) Anbindung BK-Kabel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.474176488, + 52.445424415 + ], + [ + 13.4739143, + 52.445551801 + ], + [ + 13.4723356, + 52.446318801 + ], + [ + 13.4688787, + 52.447998301 + ], + [ + 13.4677241, + 52.448559201 + ], + [ + 13.4658427, + 52.449499901 + ], + [ + 13.4651046, + 52.449940601 + ], + [ + 13.4643714, + 52.450459501 + ], + [ + 13.4636788, + 52.451040101 + ], + [ + 13.4634892, + 52.451237501 + ], + [ + 13.4627189, + 52.452094901 + ], + [ + 13.4624157, + 52.452509901 + ], + [ + 13.4613836, + 52.454177501 + ], + [ + 13.4612059, + 52.454469401 + ], + [ + 13.460555526, + 52.45557553 + ] + ] + } + }, + { + "identifier": "2026-017507--vi-bs.2026-04-15_10-00-00-000.devi-bs.2026-04-15_10-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.43984802188654,13.485720207756927,52.44317233432512,13.478775593346274", + "point": "52.43984802188654,13.485720207756927", + "startLcPosition": "3", + "impact": { + "lower": "Sp\u00e4thstra\u00dfe", + "upper": "Stubenrauchstra\u00dfe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Stubenrauchstra\u00dfe - Sp\u00e4thstra\u00dfe", + "coordinate": { + "lat": 52.43984802188654, + "long": 13.485720207756927 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 27.04.26 und dem 30.04.26 von 10:00 bis 20:00 Uhr.", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 1.1 km hinter AS Stubenrauchstra\u00dfe und 1.7 km vor AS Sp\u00e4thstra\u00dfe", + "", + "L\u00e4nge: 0.6 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A113 von Rudower H\u00f6he (Tunnel) nach Stubenrauchstra\u00dfe (AS) Anbindung BK-Kabel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.485720208, + 52.439848022 + ], + [ + 13.4843095, + 52.440522501 + ], + [ + 13.4792496, + 52.442939301 + ], + [ + 13.478775593, + 52.443172334 + ] + ] + } + }, + { + "identifier": "2026-017507--vi-bs.2026-04-15_10-00-00-000.devi-bs.2026-04-15_10-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.43652776524254,13.492663574080904,52.442066007274946,13.48107807354843", + "point": "52.43652776524254,13.492663574080904", + "startLcPosition": "3", + "impact": { + "lower": "Johannisthaler Chaussee", + "upper": "Stubenrauchstra\u00dfe", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Stubenrauchstra\u00dfe - Johannisthaler Chaussee", + "coordinate": { + "lat": 52.43652776524254, + "long": 13.492663574080904 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 22.04.26 und dem 28.04.26 von 10:00 bis 20:00 Uhr.", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 0.5 km hinter AS Stubenrauchstra\u00dfe und 0.2 km vor AS Johannisthaler Chaussee", + "", + "L\u00e4nge: 1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A113 von Rudower H\u00f6he (Tunnel) nach Stubenrauchstra\u00dfe (AS) Anbindung BK-Kabel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.492663574, + 52.436527765 + ], + [ + 13.4843095, + 52.440522501 + ], + [ + 13.481078074, + 52.442066007 + ] + ] + } + }, + { + "identifier": "2026-017507--vi-bs.2026-04-15_10-00-00-000.devi-bs.2026-04-15_10-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.42935565389487,13.507633983473314,52.43378259030521,13.498248947676931", + "point": "52.42935565389487,13.507633983473314", + "startLcPosition": "4", + "impact": { + "lower": "Stubenrauchstra\u00dfe", + "upper": "Adlershof", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Adlershof - Stubenrauchstra\u00dfe", + "coordinate": { + "lat": 52.42935565389487, + "long": 13.507633983473314 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 20.04.26 und dem 23.04.26 von 10:00 bis 20:00 Uhr.", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 0.4 km hinter AS Adlershof und AS Stubenrauchstra\u00dfe", + "", + "L\u00e4nge: 0.81 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A113 von Rudower H\u00f6he (Tunnel) nach Stubenrauchstra\u00dfe (AS) Anbindung BK-Kabel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.507633983, + 52.429355654 + ], + [ + 13.5074843, + 52.429397101 + ], + [ + 13.5069584, + 52.429580301 + ], + [ + 13.5064032, + 52.429791201 + ], + [ + 13.5055281, + 52.430157501 + ], + [ + 13.5022671, + 52.431780201 + ], + [ + 13.5021255, + 52.431849201 + ], + [ + 13.500954, + 52.432448901 + ], + [ + 13.5000905, + 52.432863501 + ], + [ + 13.498248948, + 52.43378259 + ] + ] + } + }, + { + "identifier": "2026-017507--vi-bs.2026-04-15_10-00-00-000.devi-bs.2026-04-15_10-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.42346734379752,13.522008320328093,52.42860849026185,13.510902263138462", + "point": "52.42346734379752,13.522008320328093", + "startLcPosition": "5", + "impact": { + "lower": "Stubenrauchstra\u00dfe", + "upper": "Rudower H\u00f6he", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Rudower H\u00f6he - Stubenrauchstra\u00dfe", + "coordinate": { + "lat": 52.42346734379752, + "long": 13.522008320328093 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 10:00 bis 20:00 Uhr", + "16.04.26 von 10:00 bis 20:00 Uhr", + "17.04.26 von 10:00 bis 20:00 Uhr", + "20.04.26 von 10:00 bis 20:00 Uhr", + "21.04.26 von 10:00 bis 20:00 Uhr", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 0.4 km hinter Rudower H\u00f6he und 1.0 km vor AS Stubenrauchstra\u00dfe", + "", + "L\u00e4nge: 1.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A113 von Rudower H\u00f6he (Tunnel) nach Stubenrauchstra\u00dfe (AS) Anbindung BK-Kabel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.52200832, + 52.423467344 + ], + [ + 13.5219791, + 52.423668701 + ], + [ + 13.5218667, + 52.424248901 + ], + [ + 13.52176, + 52.424594201 + ], + [ + 13.5216028, + 52.424941601 + ], + [ + 13.5214307, + 52.425252201 + ], + [ + 13.5211438, + 52.425673401 + ], + [ + 13.520751, + 52.426108601 + ], + [ + 13.5205617, + 52.426282601 + ], + [ + 13.5204979, + 52.426337601 + ], + [ + 13.5203352, + 52.426473201 + ], + [ + 13.5198333, + 52.426805601 + ], + [ + 13.5192478, + 52.427127601 + ], + [ + 13.5190004, + 52.427252101 + ], + [ + 13.5185815, + 52.427435801 + ], + [ + 13.5181146, + 52.427589501 + ], + [ + 13.5175455, + 52.427754801 + ], + [ + 13.5171711, + 52.427846301 + ], + [ + 13.516743, + 52.427937701 + ], + [ + 13.5164272, + 52.427995101 + ], + [ + 13.5161062, + 52.428048501 + ], + [ + 13.5158067, + 52.428093201 + ], + [ + 13.5154732, + 52.428138001 + ], + [ + 13.5148186, + 52.428212101 + ], + [ + 13.5141813, + 52.428274201 + ], + [ + 13.5135399, + 52.428328201 + ], + [ + 13.5131658, + 52.428361101 + ], + [ + 13.512707, + 52.428400701 + ], + [ + 13.5122903, + 52.428441101 + ], + [ + 13.5118639, + 52.428484101 + ], + [ + 13.5114613, + 52.428537701 + ], + [ + 13.510902263, + 52.42860849 + ] + ] + } + }, + { + "identifier": "2026-016615--vi-bs.2026-04-13_10-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.41183152654199,13.523765338225978,52.42671089124522,13.519976305982619", + "point": "52.41183152654199,13.523765338225978", + "startLcPosition": "6", + "impact": { + "lower": "Adlershof", + "upper": "Alt-Glienicke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Alt-Glienicke - Adlershof", + "coordinate": { + "lat": 52.41183152654199, + "long": 13.523765338225978 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 16.04.26 von 10:00 bis 20:00 Uhr.", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 0.7 km hinter Alt-Glienicke und 0.5 km vor AS Adlershof", + "", + "L\u00e4nge: 1.69 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A113 von Alt-Glienicke (Tunnel) Anbindung BK-Kabel" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.523765338, + 52.411831527 + ], + [ + 13.5237767, + 52.411892501 + ], + [ + 13.5238459, + 52.412553101 + ], + [ + 13.5235528, + 52.415769901 + ], + [ + 13.5223559, + 52.419281401 + ], + [ + 13.5221597, + 52.419926101 + ], + [ + 13.5220831, + 52.420577201 + ], + [ + 13.5220504, + 52.421434501 + ], + [ + 13.5220609, + 52.422005801 + ], + [ + 13.5220103, + 52.423453701 + ], + [ + 13.5219791, + 52.423668701 + ], + [ + 13.5218667, + 52.424248901 + ], + [ + 13.52176, + 52.424594201 + ], + [ + 13.5216028, + 52.424941601 + ], + [ + 13.5214307, + 52.425252201 + ], + [ + 13.5211438, + 52.425673401 + ], + [ + 13.520751, + 52.426108601 + ], + [ + 13.5205617, + 52.426282601 + ], + [ + 13.5204979, + 52.426337601 + ], + [ + 13.5203352, + 52.426473201 + ], + [ + 13.519976306, + 52.426710891 + ] + ] + } + }, + { + "identifier": "2026-016811--vi-bs.2026-04-20_21-00-00-000.devi-zus.2026-04-20_21-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.372180156781866,13.547387590130915,52.397834420549415,13.518845103178334", + "point": "52.372180156781866,13.547387590130915", + "startLcPosition": "10", + "impact": { + "lower": "Alt-Glienicke", + "upper": "Waltersdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Waltersdorf - Alt-Glienicke", + "coordinate": { + "lat": 52.372180156781866, + "long": 13.547387590130915 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 21:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 21:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 21:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 21:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 0.9 km hinter AD Waltersdorf und 0.9 km vor Alt-Glienicke", + "", + "L\u00e4nge: 3.5 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A113 von Sch\u00f6nefelder Kreuz (AK) nach Alt-Glienicke (Tunnel) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.54738759, + 52.372180157 + ], + [ + 13.5470367, + 52.372867001 + ], + [ + 13.5466569, + 52.373557801 + ], + [ + 13.5459942, + 52.374608801 + ], + [ + 13.5456396, + 52.375121601 + ], + [ + 13.5453821, + 52.375477001 + ], + [ + 13.5448232, + 52.376218401 + ], + [ + 13.5447077, + 52.376361401 + ], + [ + 13.5438855, + 52.377334401 + ], + [ + 13.5437473, + 52.377482501 + ], + [ + 13.5429189, + 52.378365001 + ], + [ + 13.5428889, + 52.378395501 + ], + [ + 13.5424262, + 52.378861401 + ], + [ + 13.5420041, + 52.379261001 + ], + [ + 13.5414059, + 52.379803601 + ], + [ + 13.5409369, + 52.380211901 + ], + [ + 13.5402919, + 52.380748601 + ], + [ + 13.5399083, + 52.381056601 + ], + [ + 13.5393551, + 52.381478101 + ], + [ + 13.5387221, + 52.381943601 + ], + [ + 13.5383779, + 52.382188401 + ], + [ + 13.5379485, + 52.382487801 + ], + [ + 13.5375348, + 52.382765401 + ], + [ + 13.5369383, + 52.383150001 + ], + [ + 13.5360293, + 52.383741601 + ], + [ + 13.5354261, + 52.384097701 + ], + [ + 13.5343269, + 52.384727401 + ], + [ + 13.5337573, + 52.385055901 + ], + [ + 13.5327306, + 52.385649901 + ], + [ + 13.5311183, + 52.386604901 + ], + [ + 13.5308443, + 52.386777101 + ], + [ + 13.5298857, + 52.387379501 + ], + [ + 13.5286605, + 52.388243001 + ], + [ + 13.5280389, + 52.388682601 + ], + [ + 13.5273114, + 52.389267701 + ], + [ + 13.5263341, + 52.390093701 + ], + [ + 13.5261883, + 52.390223201 + ], + [ + 13.5253734, + 52.390947301 + ], + [ + 13.5245362, + 52.391687601 + ], + [ + 13.5236435, + 52.392552401 + ], + [ + 13.5235502, + 52.392630101 + ], + [ + 13.5230302, + 52.393117201 + ], + [ + 13.5221478, + 52.393951801 + ], + [ + 13.5220225, + 52.394067301 + ], + [ + 13.5211963, + 52.394831801 + ], + [ + 13.5206743, + 52.395348001 + ], + [ + 13.5204033, + 52.395588901 + ], + [ + 13.5198525, + 52.396125601 + ], + [ + 13.5195245, + 52.396476801 + ], + [ + 13.5192593, + 52.396816501 + ], + [ + 13.5191279, + 52.396993201 + ], + [ + 13.5190243, + 52.397188101 + ], + [ + 13.5189137, + 52.397493401 + ], + [ + 13.518845103, + 52.397834421 + ] + ] + } + }, + { + "identifier": "2026-016811--vi-bs.2026-04-20_21-00-00-000.devi-zus.2026-04-20_21-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.372180156781866,13.547387590130915,52.397834420549415,13.518845103178334", + "point": "52.372180156781866,13.547387590130915", + "startLcPosition": "10", + "impact": { + "lower": "Alt-Glienicke", + "upper": "Waltersdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Waltersdorf - Alt-Glienicke", + "coordinate": { + "lat": 52.372180156781866, + "long": 13.547387590130915 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 21:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 21:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 21:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 21:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 0.9 km hinter AD Waltersdorf und 0.9 km vor Alt-Glienicke", + "", + "L\u00e4nge: 3.5 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A113 von Sch\u00f6nefelder Kreuz (AK) nach Alt-Glienicke (Tunnel) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.54738759, + 52.372180157 + ], + [ + 13.5470367, + 52.372867001 + ], + [ + 13.5466569, + 52.373557801 + ], + [ + 13.5459942, + 52.374608801 + ], + [ + 13.5456396, + 52.375121601 + ], + [ + 13.5453821, + 52.375477001 + ], + [ + 13.5448232, + 52.376218401 + ], + [ + 13.5447077, + 52.376361401 + ], + [ + 13.5438855, + 52.377334401 + ], + [ + 13.5437473, + 52.377482501 + ], + [ + 13.5429189, + 52.378365001 + ], + [ + 13.5428889, + 52.378395501 + ], + [ + 13.5424262, + 52.378861401 + ], + [ + 13.5420041, + 52.379261001 + ], + [ + 13.5414059, + 52.379803601 + ], + [ + 13.5409369, + 52.380211901 + ], + [ + 13.5402919, + 52.380748601 + ], + [ + 13.5399083, + 52.381056601 + ], + [ + 13.5393551, + 52.381478101 + ], + [ + 13.5387221, + 52.381943601 + ], + [ + 13.5383779, + 52.382188401 + ], + [ + 13.5379485, + 52.382487801 + ], + [ + 13.5375348, + 52.382765401 + ], + [ + 13.5369383, + 52.383150001 + ], + [ + 13.5360293, + 52.383741601 + ], + [ + 13.5354261, + 52.384097701 + ], + [ + 13.5343269, + 52.384727401 + ], + [ + 13.5337573, + 52.385055901 + ], + [ + 13.5327306, + 52.385649901 + ], + [ + 13.5311183, + 52.386604901 + ], + [ + 13.5308443, + 52.386777101 + ], + [ + 13.5298857, + 52.387379501 + ], + [ + 13.5286605, + 52.388243001 + ], + [ + 13.5280389, + 52.388682601 + ], + [ + 13.5273114, + 52.389267701 + ], + [ + 13.5263341, + 52.390093701 + ], + [ + 13.5261883, + 52.390223201 + ], + [ + 13.5253734, + 52.390947301 + ], + [ + 13.5245362, + 52.391687601 + ], + [ + 13.5236435, + 52.392552401 + ], + [ + 13.5235502, + 52.392630101 + ], + [ + 13.5230302, + 52.393117201 + ], + [ + 13.5221478, + 52.393951801 + ], + [ + 13.5220225, + 52.394067301 + ], + [ + 13.5211963, + 52.394831801 + ], + [ + 13.5206743, + 52.395348001 + ], + [ + 13.5204033, + 52.395588901 + ], + [ + 13.5198525, + 52.396125601 + ], + [ + 13.5195245, + 52.396476801 + ], + [ + 13.5192593, + 52.396816501 + ], + [ + 13.5191279, + 52.396993201 + ], + [ + 13.5190243, + 52.397188101 + ], + [ + 13.5189137, + 52.397493401 + ], + [ + 13.518845103, + 52.397834421 + ] + ] + } + }, + { + "identifier": "2026-016170--vi-bs.2026-04-20_08-00-00-000.devi-bs.2026-04-20_08-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.33247379015146,13.553676172069839,52.31990772760467,13.554446904269396", + "point": "52.33247379015146,13.553676172069839", + "startLcPosition": "10", + "impact": { + "lower": "Sch\u00f6nefelder Kreuz", + "upper": "Waltersdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Neuk\u00f6lln -> Sch\u00f6nefeld", + "title": "A113 | Waltersdorf - Sch\u00f6nefelder Kreuz", + "coordinate": { + "lat": 52.33247379015146, + "long": 13.553676172069839 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 15:00 Uhr", + "21.04.26 von 08:00 bis 15:00 Uhr", + "22.04.26 von 08:00 bis 15:00 Uhr", + "23.04.26 von 08:00 bis 15:00 Uhr", + "24.04.26 von 08:00 bis 12:00 Uhr", + "", + "A113: Neuk\u00f6lln -> Sch\u00f6nefeld, zwischen 3.6 km hinter AD Waltersdorf und 0.1 km vor AK Sch\u00f6nefelder Kreuz", + "", + "L\u00e4nge: 1.4 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A113 A13 km 1,30 - 0,0 - 1,5 (AK) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.553676172, + 52.33247379 + ], + [ + 13.5536692, + 52.332355501 + ], + [ + 13.5536549, + 52.330909801 + ], + [ + 13.5536837, + 52.329560101 + ], + [ + 13.5537199, + 52.328899301 + ], + [ + 13.5538295, + 52.327094401 + ], + [ + 13.5539124, + 52.326027201 + ], + [ + 13.5542136, + 52.322855301 + ], + [ + 13.5543281, + 52.321435401 + ], + [ + 13.5544189, + 52.320308401 + ], + [ + 13.5544251, + 52.320177001 + ], + [ + 13.5544426, + 52.319962101 + ], + [ + 13.554446904, + 52.319907728 + ] + ] + } + }, + { + "identifier": "2026-016811--vi-bs.2026-04-20_21-00-00-000.devi-zus.2026-04-20_21-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.336942140969164,13.554397126839234,52.36321700287435,13.548251251338769", + "point": "52.336942140969164,13.554397126839234", + "startLcPosition": "11", + "impact": { + "lower": "Waltersdorf", + "upper": "Sch\u00f6nefelder Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Sch\u00f6nefelder Kreuz - Waltersdorf", + "coordinate": { + "lat": 52.336942140969164, + "long": 13.554397126839234 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 21:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 21:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 21:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 21:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 2.0 km hinter AK Sch\u00f6nefelder Kreuz und 0.1 km vor AD Waltersdorf", + "", + "L\u00e4nge: 3 km | Maximale Durchfahrtsbreite: 8 m", + "", + "A113 von Sch\u00f6nefelder Kreuz (AK) nach Alt-Glienicke (Tunnel) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.554397127, + 52.336942141 + ], + [ + 13.5544014, + 52.336968901 + ], + [ + 13.5548741, + 52.339450801 + ], + [ + 13.5550927, + 52.340692901 + ], + [ + 13.5551877, + 52.341265801 + ], + [ + 13.5553806, + 52.343141201 + ], + [ + 13.555394, + 52.343855501 + ], + [ + 13.5553872, + 52.344443901 + ], + [ + 13.5553312, + 52.345127401 + ], + [ + 13.5552729, + 52.345618901 + ], + [ + 13.5552181, + 52.345989101 + ], + [ + 13.5551569, + 52.346268901 + ], + [ + 13.555045, + 52.346751101 + ], + [ + 13.5549462, + 52.347141901 + ], + [ + 13.5548472, + 52.347466101 + ], + [ + 13.5547116, + 52.347855401 + ], + [ + 13.5545586, + 52.348255401 + ], + [ + 13.5544082, + 52.348629901 + ], + [ + 13.5542649, + 52.348943801 + ], + [ + 13.5541147, + 52.349255001 + ], + [ + 13.5539608, + 52.349560201 + ], + [ + 13.5537976, + 52.349865701 + ], + [ + 13.5536419, + 52.350167801 + ], + [ + 13.5535686, + 52.350302601 + ], + [ + 13.553551, + 52.350332501 + ], + [ + 13.5534372, + 52.350525801 + ], + [ + 13.5531086, + 52.351125601 + ], + [ + 13.5514141, + 52.354114301 + ], + [ + 13.5511593, + 52.354563601 + ], + [ + 13.5500831, + 52.356460901 + ], + [ + 13.5494217, + 52.357635301 + ], + [ + 13.5491615, + 52.358124301 + ], + [ + 13.5488604, + 52.358840201 + ], + [ + 13.5485428, + 52.359683801 + ], + [ + 13.5483431, + 52.360432601 + ], + [ + 13.5483034, + 52.360655701 + ], + [ + 13.5482744, + 52.360874901 + ], + [ + 13.5482384, + 52.361225301 + ], + [ + 13.5482105, + 52.361538901 + ], + [ + 13.5482018, + 52.361836701 + ], + [ + 13.5482089, + 52.362740401 + ], + [ + 13.5482142, + 52.362943901 + ], + [ + 13.548251251, + 52.363217003 + ] + ] + } + }, + { + "identifier": "2026-016811--vi-bs.2026-04-20_21-00-00-000.devi-zus.2026-04-20_21-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.336942140969164,13.554397126839234,52.36321700287435,13.548251251338769", + "point": "52.336942140969164,13.554397126839234", + "startLcPosition": "11", + "impact": { + "lower": "Waltersdorf", + "upper": "Sch\u00f6nefelder Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A113 | Sch\u00f6nefelder Kreuz - Waltersdorf", + "coordinate": { + "lat": 52.336942140969164, + "long": 13.554397126839234 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 21:00 bis zum 21.04.26 05:00 Uhr.", + "21.04.26 21:00 bis zum 22.04.26 05:00 Uhr.", + "22.04.26 21:00 bis zum 23.04.26 05:00 Uhr.", + "23.04.26 21:00 bis zum 24.04.26 05:00 Uhr.", + "", + "A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 2.0 km hinter AK Sch\u00f6nefelder Kreuz und 0.1 km vor AD Waltersdorf", + "", + "L\u00e4nge: 3 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A113 von Sch\u00f6nefelder Kreuz (AK) nach Alt-Glienicke (Tunnel) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.554397127, + 52.336942141 + ], + [ + 13.5544014, + 52.336968901 + ], + [ + 13.5548741, + 52.339450801 + ], + [ + 13.5550927, + 52.340692901 + ], + [ + 13.5551877, + 52.341265801 + ], + [ + 13.5553806, + 52.343141201 + ], + [ + 13.555394, + 52.343855501 + ], + [ + 13.5553872, + 52.344443901 + ], + [ + 13.5553312, + 52.345127401 + ], + [ + 13.5552729, + 52.345618901 + ], + [ + 13.5552181, + 52.345989101 + ], + [ + 13.5551569, + 52.346268901 + ], + [ + 13.555045, + 52.346751101 + ], + [ + 13.5549462, + 52.347141901 + ], + [ + 13.5548472, + 52.347466101 + ], + [ + 13.5547116, + 52.347855401 + ], + [ + 13.5545586, + 52.348255401 + ], + [ + 13.5544082, + 52.348629901 + ], + [ + 13.5542649, + 52.348943801 + ], + [ + 13.5541147, + 52.349255001 + ], + [ + 13.5539608, + 52.349560201 + ], + [ + 13.5537976, + 52.349865701 + ], + [ + 13.5536419, + 52.350167801 + ], + [ + 13.5535686, + 52.350302601 + ], + [ + 13.553551, + 52.350332501 + ], + [ + 13.5534372, + 52.350525801 + ], + [ + 13.5531086, + 52.351125601 + ], + [ + 13.5514141, + 52.354114301 + ], + [ + 13.5511593, + 52.354563601 + ], + [ + 13.5500831, + 52.356460901 + ], + [ + 13.5494217, + 52.357635301 + ], + [ + 13.5491615, + 52.358124301 + ], + [ + 13.5488604, + 52.358840201 + ], + [ + 13.5485428, + 52.359683801 + ], + [ + 13.5483431, + 52.360432601 + ], + [ + 13.5483034, + 52.360655701 + ], + [ + 13.5482744, + 52.360874901 + ], + [ + 13.5482384, + 52.361225301 + ], + [ + 13.5482105, + 52.361538901 + ], + [ + 13.5482018, + 52.361836701 + ], + [ + 13.5482089, + 52.362740401 + ], + [ + 13.5482142, + 52.362943901 + ], + [ + 13.548251251, + 52.363217003 + ] + ] + } + }, + { + "identifier": "2026-016141--vi-bs.2026-04-13_10-00-00-000.devi-bs.2026-04-13_09-00-00-000_005.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.35838707959573,13.549050979275599,52.36467995531119,13.550456361124526", + "point": "52.35838707959573,13.549050979275599", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Sch\u00f6nefeld -> Neuk\u00f6lln", + "title": "A117 A113 (AD Waltersdorf) Markierungsarbeiten", + "coordinate": { + "lat": 52.35838707959573, + "long": 13.549050979275599 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 18:00 Uhr", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:15 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "Von A113: Sch\u00f6nefeld -> Neuk\u00f6lln, zwischen 4.4 km hinter AK Sch\u00f6nefelder Kreuz und AD Waltersdorf nach Abfahrt von der A113: AD Waltersdorf (aus Richtung Sch\u00f6nefelder Kreuz)", + "", + "L\u00e4nge: 0.76 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A117 A113 (AD Waltersdorf) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.549050979, + 52.35838708 + ], + [ + 13.5488604, + 52.358840201 + ], + [ + 13.5485428, + 52.359683801 + ], + [ + 13.5483431, + 52.360432601 + ], + [ + 13.5483034, + 52.360655701 + ], + [ + 13.5482744, + 52.360874901 + ], + [ + 13.5482384, + 52.361225301 + ], + [ + 13.5482105, + 52.361538901 + ], + [ + 13.5482018, + 52.361836701 + ], + [ + 13.5483574, + 52.362727601 + ], + [ + 13.5484001, + 52.362945701 + ], + [ + 13.5484698, + 52.363135201 + ], + [ + 13.548566, + 52.363312101 + ], + [ + 13.5486428, + 52.363431901 + ], + [ + 13.5487615, + 52.363593401 + ], + [ + 13.5487876, + 52.363628901 + ], + [ + 13.5489397, + 52.363806201 + ], + [ + 13.5491657, + 52.364007901 + ], + [ + 13.5493327, + 52.364124401 + ], + [ + 13.5494953, + 52.364230401 + ], + [ + 13.5496276, + 52.364311601 + ], + [ + 13.5497791, + 52.364394001 + ], + [ + 13.5499179, + 52.364464101 + ], + [ + 13.5500482, + 52.364519701 + ], + [ + 13.5503177, + 52.364625901 + ], + [ + 13.550456361, + 52.364679955 + ] + ] + } + }, + { + "identifier": "2026-016141--vi-bs.2026-04-13_09-00-00-000.devi-bs.2026-04-13_09-00-00-000_005.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.36501857915081,13.551077111928404,52.36012893970638,13.5481408788599", + "point": "52.36501857915081,13.551077111928404", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Treptow -> Waltersdorfer Dreieck", + "title": "A117 A113 (AD Waltersdorf) Markierungsarbeiten", + "coordinate": { + "lat": 52.36501857915081, + "long": 13.551077111928404 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 18:00 Uhr", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "Von A117: Treptow -> Waltersdorfer Dreieck, 0.2 km vor AD Waltersdorf, aus Richtung Waltersdorf; in A117: AD Waltersdorf auf die A113 in Richtung Sch\u00f6nefeld; nach A113: Neuk\u00f6lln -> Sch\u00f6nefeld, 4.6 km vor AK Sch\u00f6nefelder Kreuz, aus Richtung Waltersdorf", + "", + "L\u00e4nge: 0.71 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A117 A113 (AD Waltersdorf) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.551077112, + 52.365018579 + ], + [ + 13.5509673, + 52.364981701 + ], + [ + 13.5506889, + 52.364905601 + ], + [ + 13.5504803, + 52.364860201 + ], + [ + 13.5501911, + 52.364805401 + ], + [ + 13.5497766, + 52.364748301 + ], + [ + 13.5494758, + 52.364713801 + ], + [ + 13.5492467, + 52.364689201 + ], + [ + 13.5490291, + 52.364655701 + ], + [ + 13.5488733, + 52.364622401 + ], + [ + 13.5487368, + 52.364589201 + ], + [ + 13.5486256, + 52.364559601 + ], + [ + 13.5485209, + 52.364528101 + ], + [ + 13.5484282, + 52.364493101 + ], + [ + 13.5483366, + 52.364458201 + ], + [ + 13.5482006, + 52.364396101 + ], + [ + 13.5480919, + 52.364340201 + ], + [ + 13.547979, + 52.364273901 + ], + [ + 13.5478486, + 52.364185901 + ], + [ + 13.547715, + 52.364086101 + ], + [ + 13.5475262, + 52.363899701 + ], + [ + 13.5473757, + 52.363677401 + ], + [ + 13.5472657, + 52.363419401 + ], + [ + 13.5472424, + 52.363225301 + ], + [ + 13.5472485, + 52.363029801 + ], + [ + 13.5473393, + 52.362764301 + ], + [ + 13.5475454, + 52.362393101 + ], + [ + 13.5476551, + 52.362181401 + ], + [ + 13.547708, + 52.362027101 + ], + [ + 13.5477521, + 52.361856101 + ], + [ + 13.5477815, + 52.361619201 + ], + [ + 13.5478019, + 52.361382201 + ], + [ + 13.5478489, + 52.360926401 + ], + [ + 13.5480692, + 52.360423101 + ], + [ + 13.548140879, + 52.36012894 + ] + ] + } + } + ] + }, + "A115": { + "roadworks": [ + { + "identifier": "2026-017606--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_013.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.304741793165796,13.08678633184056,52.413545414544906,13.197574737543883", + "point": "52.304741793165796,13.08678633184056", + "startLcPosition": "0", + "impact": { + "lower": "Dreilinden", + "upper": "Nuthetal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Nuthetal -> Dreieck Funkturm", + "title": "A115 | Nuthetal - Dreilinden", + "coordinate": { + "lat": 52.304741793165796, + "long": 13.08678633184056 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A115: Dreieck Nuthetal -> Dreieck Funkturm, zwischen 0.6 km hinter AD Nuthetal und 0.2 km vor Dreilinden", + "", + "L\u00e4nge: 15.42 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 10.75 m", + "", + "Reinigung Sch\u00e4chte A115" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.086786332, + 52.304741793 + ], + [ + 13.0873772, + 52.305642701 + ], + [ + 13.0886224, + 52.307547001 + ], + [ + 13.0895432, + 52.308973401 + ], + [ + 13.0902131, + 52.310022401 + ], + [ + 13.0920756, + 52.312861301 + ], + [ + 13.0923393, + 52.313222801 + ], + [ + 13.0926362, + 52.313677501 + ], + [ + 13.0937579, + 52.315416601 + ], + [ + 13.0939639, + 52.315715701 + ], + [ + 13.0941871, + 52.316004301 + ], + [ + 13.0944274, + 52.316303401 + ], + [ + 13.0946849, + 52.316570901 + ], + [ + 13.0949681, + 52.316854301 + ], + [ + 13.0957621, + 52.317619001 + ], + [ + 13.0962651, + 52.318103501 + ], + [ + 13.0975368, + 52.319299701 + ], + [ + 13.0979031, + 52.319649901 + ], + [ + 13.1006072, + 52.322247601 + ], + [ + 13.1020285, + 52.323587801 + ], + [ + 13.1024693, + 52.324011201 + ], + [ + 13.1046086, + 52.326044201 + ], + [ + 13.1055425, + 52.326932201 + ], + [ + 13.1059716, + 52.327325601 + ], + [ + 13.1062806, + 52.327577401 + ], + [ + 13.1066239, + 52.327839701 + ], + [ + 13.1069672, + 52.328081001 + ], + [ + 13.1073106, + 52.328306501 + ], + [ + 13.1076968, + 52.328542601 + ], + [ + 13.1080745, + 52.328762901 + ], + [ + 13.1084659, + 52.328965401 + ], + [ + 13.1088753, + 52.329164701 + ], + [ + 13.1093459, + 52.329375901 + ], + [ + 13.1097627, + 52.329550601 + ], + [ + 13.1102015, + 52.329723201 + ], + [ + 13.1106449, + 52.329877801 + ], + [ + 13.1111374, + 52.330037001 + ], + [ + 13.1116341, + 52.330185901 + ], + [ + 13.1121862, + 52.330345401 + ], + [ + 13.1130291, + 52.330593201 + ], + [ + 13.1142756, + 52.330950201 + ], + [ + 13.1151026, + 52.331187101 + ], + [ + 13.1156364, + 52.331340001 + ], + [ + 13.1183374, + 52.332124101 + ], + [ + 13.1205204, + 52.332737601 + ], + [ + 13.1225496, + 52.333317201 + ], + [ + 13.1229177, + 52.333423701 + ], + [ + 13.1262448, + 52.334388001 + ], + [ + 13.1271819, + 52.334653801 + ], + [ + 13.1313448, + 52.335853901 + ], + [ + 13.1328253, + 52.336314301 + ], + [ + 13.1336639, + 52.336631201 + ], + [ + 13.1347632, + 52.337115501 + ], + [ + 13.1356081, + 52.337542801 + ], + [ + 13.1364087, + 52.338016501 + ], + [ + 13.1370789, + 52.338472001 + ], + [ + 13.137718, + 52.338965201 + ], + [ + 13.1382589, + 52.339431501 + ], + [ + 13.1387332, + 52.339902601 + ], + [ + 13.1394027, + 52.340668201 + ], + [ + 13.1400418, + 52.341610601 + ], + [ + 13.1403695, + 52.342218701 + ], + [ + 13.1406386, + 52.342917801 + ], + [ + 13.1408182, + 52.343442201 + ], + [ + 13.1409532, + 52.344066001 + ], + [ + 13.1410154, + 52.344768701 + ], + [ + 13.1409256, + 52.348355401 + ], + [ + 13.140917, + 52.350131701 + ], + [ + 13.1408417, + 52.351778601 + ], + [ + 13.1408078, + 52.353375401 + ], + [ + 13.1406682, + 52.359940101 + ], + [ + 13.1407157, + 52.360441801 + ], + [ + 13.1408535, + 52.360976301 + ], + [ + 13.1410371, + 52.361426201 + ], + [ + 13.1412408, + 52.361891101 + ], + [ + 13.1416144, + 52.362437901 + ], + [ + 13.1417321, + 52.362598501 + ], + [ + 13.142012, + 52.362918101 + ], + [ + 13.1424153, + 52.363342501 + ], + [ + 13.142916, + 52.363778701 + ], + [ + 13.1434024, + 52.364118201 + ], + [ + 13.145325, + 52.365269501 + ], + [ + 13.1468226, + 52.366182201 + ], + [ + 13.1475181, + 52.366633101 + ], + [ + 13.1480309, + 52.367036901 + ], + [ + 13.1483492, + 52.367277201 + ], + [ + 13.1485836, + 52.367504101 + ], + [ + 13.1487954, + 52.367723701 + ], + [ + 13.1488864, + 52.367845701 + ], + [ + 13.149044, + 52.368035601 + ], + [ + 13.1494169, + 52.368518101 + ], + [ + 13.1495903, + 52.368885101 + ], + [ + 13.1497365, + 52.369205801 + ], + [ + 13.1498549, + 52.369485401 + ], + [ + 13.150056, + 52.370180101 + ], + [ + 13.1501535, + 52.370653101 + ], + [ + 13.1502005, + 52.371041901 + ], + [ + 13.1500558, + 52.375563501 + ], + [ + 13.1500303, + 52.376149801 + ], + [ + 13.1499933, + 52.378076701 + ], + [ + 13.1499873, + 52.378391101 + ], + [ + 13.1499959, + 52.378674101 + ], + [ + 13.150013, + 52.379030401 + ], + [ + 13.1500422, + 52.379266001 + ], + [ + 13.1500731, + 52.379501901 + ], + [ + 13.1500926, + 52.379633601 + ], + [ + 13.1502019, + 52.380099201 + ], + [ + 13.1502877, + 52.380345401 + ], + [ + 13.1503818, + 52.380560601 + ], + [ + 13.1504402, + 52.380681501 + ], + [ + 13.1507244, + 52.381240901 + ], + [ + 13.1509299, + 52.381601401 + ], + [ + 13.1514118, + 52.382353901 + ], + [ + 13.1518737, + 52.383070501 + ], + [ + 13.1522828, + 52.383696701 + ], + [ + 13.1538236, + 52.386095901 + ], + [ + 13.1541646, + 52.386567001 + ], + [ + 13.1545479, + 52.387173001 + ], + [ + 13.1545983, + 52.387247901 + ], + [ + 13.1548928, + 52.387624401 + ], + [ + 13.1551575, + 52.387910301 + ], + [ + 13.1554352, + 52.388176501 + ], + [ + 13.1557285, + 52.388435001 + ], + [ + 13.1560687, + 52.388709601 + ], + [ + 13.156408, + 52.388957201 + ], + [ + 13.1567811, + 52.389207201 + ], + [ + 13.1571587, + 52.389427201 + ], + [ + 13.1575621, + 52.389642001 + ], + [ + 13.1579999, + 52.389872501 + ], + [ + 13.1583947, + 52.390050501 + ], + [ + 13.1587466, + 52.390192001 + ], + [ + 13.1591156, + 52.390333401 + ], + [ + 13.1595448, + 52.390474801 + ], + [ + 13.1599825, + 52.390611001 + ], + [ + 13.1604374, + 52.390736701 + ], + [ + 13.1610554, + 52.390899101 + ], + [ + 13.1686942, + 52.392754301 + ], + [ + 13.1745137, + 52.394146601 + ], + [ + 13.1752604, + 52.394340301 + ], + [ + 13.1757668, + 52.394487001 + ], + [ + 13.176256, + 52.394638901 + ], + [ + 13.1766852, + 52.394785501 + ], + [ + 13.1771315, + 52.394942701 + ], + [ + 13.1775692, + 52.395099801 + ], + [ + 13.1779727, + 52.395267401 + ], + [ + 13.178419, + 52.395461201 + ], + [ + 13.1788481, + 52.395649701 + ], + [ + 13.1793116, + 52.395864501 + ], + [ + 13.1797665, + 52.396094901 + ], + [ + 13.1801613, + 52.396309601 + ], + [ + 13.1805476, + 52.396540101 + ], + [ + 13.1809153, + 52.396781601 + ], + [ + 13.1813771, + 52.397084401 + ], + [ + 13.1817707, + 52.397341401 + ], + [ + 13.1821264, + 52.397626801 + ], + [ + 13.182453, + 52.397880801 + ], + [ + 13.1827963, + 52.398163601 + ], + [ + 13.1836004, + 52.398861501 + ], + [ + 13.1844602, + 52.399650901 + ], + [ + 13.1856848, + 52.400729501 + ], + [ + 13.1871962, + 52.402072401 + ], + [ + 13.1874853, + 52.402333701 + ], + [ + 13.1889956, + 52.403677301 + ], + [ + 13.1921529, + 52.406466901 + ], + [ + 13.1952248, + 52.409161601 + ], + [ + 13.1957664, + 52.409645101 + ], + [ + 13.1960582, + 52.409938301 + ], + [ + 13.1962708, + 52.410154701 + ], + [ + 13.196453, + 52.410376401 + ], + [ + 13.1966333, + 52.410639901 + ], + [ + 13.1968221, + 52.410933101 + ], + [ + 13.1970023, + 52.411231501 + ], + [ + 13.1971654, + 52.411550901 + ], + [ + 13.1973028, + 52.411870301 + ], + [ + 13.1973972, + 52.412210601 + ], + [ + 13.197483, + 52.412519501 + ], + [ + 13.1975345, + 52.412781301 + ], + [ + 13.1975517, + 52.412990701 + ], + [ + 13.1975688, + 52.413252401 + ], + [ + 13.197574738, + 52.413545415 + ] + ] + } + }, + { + "identifier": "2026-017001--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_012.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.304741793165796,13.08678633184056,52.413545414544906,13.197574737543883", + "point": "52.304741793165796,13.08678633184056", + "startLcPosition": "0", + "impact": { + "lower": "Dreilinden", + "upper": "Nuthetal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Nuthetal -> Dreieck Funkturm", + "title": "A115 | Nuthetal - Dreilinden", + "coordinate": { + "lat": 52.304741793165796, + "long": 13.08678633184056 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A115: Dreieck Nuthetal -> Dreieck Funkturm, zwischen 0.6 km hinter AD Nuthetal und 0.2 km vor Dreilinden", + "", + "L\u00e4nge: 15.42 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "Streckenreinigung A115" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.086786332, + 52.304741793 + ], + [ + 13.0873772, + 52.305642701 + ], + [ + 13.0886224, + 52.307547001 + ], + [ + 13.0895432, + 52.308973401 + ], + [ + 13.0902131, + 52.310022401 + ], + [ + 13.0920756, + 52.312861301 + ], + [ + 13.0923393, + 52.313222801 + ], + [ + 13.0926362, + 52.313677501 + ], + [ + 13.0937579, + 52.315416601 + ], + [ + 13.0939639, + 52.315715701 + ], + [ + 13.0941871, + 52.316004301 + ], + [ + 13.0944274, + 52.316303401 + ], + [ + 13.0946849, + 52.316570901 + ], + [ + 13.0949681, + 52.316854301 + ], + [ + 13.0957621, + 52.317619001 + ], + [ + 13.0962651, + 52.318103501 + ], + [ + 13.0975368, + 52.319299701 + ], + [ + 13.0979031, + 52.319649901 + ], + [ + 13.1006072, + 52.322247601 + ], + [ + 13.1020285, + 52.323587801 + ], + [ + 13.1024693, + 52.324011201 + ], + [ + 13.1046086, + 52.326044201 + ], + [ + 13.1055425, + 52.326932201 + ], + [ + 13.1059716, + 52.327325601 + ], + [ + 13.1062806, + 52.327577401 + ], + [ + 13.1066239, + 52.327839701 + ], + [ + 13.1069672, + 52.328081001 + ], + [ + 13.1073106, + 52.328306501 + ], + [ + 13.1076968, + 52.328542601 + ], + [ + 13.1080745, + 52.328762901 + ], + [ + 13.1084659, + 52.328965401 + ], + [ + 13.1088753, + 52.329164701 + ], + [ + 13.1093459, + 52.329375901 + ], + [ + 13.1097627, + 52.329550601 + ], + [ + 13.1102015, + 52.329723201 + ], + [ + 13.1106449, + 52.329877801 + ], + [ + 13.1111374, + 52.330037001 + ], + [ + 13.1116341, + 52.330185901 + ], + [ + 13.1121862, + 52.330345401 + ], + [ + 13.1130291, + 52.330593201 + ], + [ + 13.1142756, + 52.330950201 + ], + [ + 13.1151026, + 52.331187101 + ], + [ + 13.1156364, + 52.331340001 + ], + [ + 13.1183374, + 52.332124101 + ], + [ + 13.1205204, + 52.332737601 + ], + [ + 13.1225496, + 52.333317201 + ], + [ + 13.1229177, + 52.333423701 + ], + [ + 13.1262448, + 52.334388001 + ], + [ + 13.1271819, + 52.334653801 + ], + [ + 13.1313448, + 52.335853901 + ], + [ + 13.1328253, + 52.336314301 + ], + [ + 13.1336639, + 52.336631201 + ], + [ + 13.1347632, + 52.337115501 + ], + [ + 13.1356081, + 52.337542801 + ], + [ + 13.1364087, + 52.338016501 + ], + [ + 13.1370789, + 52.338472001 + ], + [ + 13.137718, + 52.338965201 + ], + [ + 13.1382589, + 52.339431501 + ], + [ + 13.1387332, + 52.339902601 + ], + [ + 13.1394027, + 52.340668201 + ], + [ + 13.1400418, + 52.341610601 + ], + [ + 13.1403695, + 52.342218701 + ], + [ + 13.1406386, + 52.342917801 + ], + [ + 13.1408182, + 52.343442201 + ], + [ + 13.1409532, + 52.344066001 + ], + [ + 13.1410154, + 52.344768701 + ], + [ + 13.1409256, + 52.348355401 + ], + [ + 13.140917, + 52.350131701 + ], + [ + 13.1408417, + 52.351778601 + ], + [ + 13.1408078, + 52.353375401 + ], + [ + 13.1406682, + 52.359940101 + ], + [ + 13.1407157, + 52.360441801 + ], + [ + 13.1408535, + 52.360976301 + ], + [ + 13.1410371, + 52.361426201 + ], + [ + 13.1412408, + 52.361891101 + ], + [ + 13.1416144, + 52.362437901 + ], + [ + 13.1417321, + 52.362598501 + ], + [ + 13.142012, + 52.362918101 + ], + [ + 13.1424153, + 52.363342501 + ], + [ + 13.142916, + 52.363778701 + ], + [ + 13.1434024, + 52.364118201 + ], + [ + 13.145325, + 52.365269501 + ], + [ + 13.1468226, + 52.366182201 + ], + [ + 13.1475181, + 52.366633101 + ], + [ + 13.1480309, + 52.367036901 + ], + [ + 13.1483492, + 52.367277201 + ], + [ + 13.1485836, + 52.367504101 + ], + [ + 13.1487954, + 52.367723701 + ], + [ + 13.1488864, + 52.367845701 + ], + [ + 13.149044, + 52.368035601 + ], + [ + 13.1494169, + 52.368518101 + ], + [ + 13.1495903, + 52.368885101 + ], + [ + 13.1497365, + 52.369205801 + ], + [ + 13.1498549, + 52.369485401 + ], + [ + 13.150056, + 52.370180101 + ], + [ + 13.1501535, + 52.370653101 + ], + [ + 13.1502005, + 52.371041901 + ], + [ + 13.1500558, + 52.375563501 + ], + [ + 13.1500303, + 52.376149801 + ], + [ + 13.1499933, + 52.378076701 + ], + [ + 13.1499873, + 52.378391101 + ], + [ + 13.1499959, + 52.378674101 + ], + [ + 13.150013, + 52.379030401 + ], + [ + 13.1500422, + 52.379266001 + ], + [ + 13.1500731, + 52.379501901 + ], + [ + 13.1500926, + 52.379633601 + ], + [ + 13.1502019, + 52.380099201 + ], + [ + 13.1502877, + 52.380345401 + ], + [ + 13.1503818, + 52.380560601 + ], + [ + 13.1504402, + 52.380681501 + ], + [ + 13.1507244, + 52.381240901 + ], + [ + 13.1509299, + 52.381601401 + ], + [ + 13.1514118, + 52.382353901 + ], + [ + 13.1518737, + 52.383070501 + ], + [ + 13.1522828, + 52.383696701 + ], + [ + 13.1538236, + 52.386095901 + ], + [ + 13.1541646, + 52.386567001 + ], + [ + 13.1545479, + 52.387173001 + ], + [ + 13.1545983, + 52.387247901 + ], + [ + 13.1548928, + 52.387624401 + ], + [ + 13.1551575, + 52.387910301 + ], + [ + 13.1554352, + 52.388176501 + ], + [ + 13.1557285, + 52.388435001 + ], + [ + 13.1560687, + 52.388709601 + ], + [ + 13.156408, + 52.388957201 + ], + [ + 13.1567811, + 52.389207201 + ], + [ + 13.1571587, + 52.389427201 + ], + [ + 13.1575621, + 52.389642001 + ], + [ + 13.1579999, + 52.389872501 + ], + [ + 13.1583947, + 52.390050501 + ], + [ + 13.1587466, + 52.390192001 + ], + [ + 13.1591156, + 52.390333401 + ], + [ + 13.1595448, + 52.390474801 + ], + [ + 13.1599825, + 52.390611001 + ], + [ + 13.1604374, + 52.390736701 + ], + [ + 13.1610554, + 52.390899101 + ], + [ + 13.1686942, + 52.392754301 + ], + [ + 13.1745137, + 52.394146601 + ], + [ + 13.1752604, + 52.394340301 + ], + [ + 13.1757668, + 52.394487001 + ], + [ + 13.176256, + 52.394638901 + ], + [ + 13.1766852, + 52.394785501 + ], + [ + 13.1771315, + 52.394942701 + ], + [ + 13.1775692, + 52.395099801 + ], + [ + 13.1779727, + 52.395267401 + ], + [ + 13.178419, + 52.395461201 + ], + [ + 13.1788481, + 52.395649701 + ], + [ + 13.1793116, + 52.395864501 + ], + [ + 13.1797665, + 52.396094901 + ], + [ + 13.1801613, + 52.396309601 + ], + [ + 13.1805476, + 52.396540101 + ], + [ + 13.1809153, + 52.396781601 + ], + [ + 13.1813771, + 52.397084401 + ], + [ + 13.1817707, + 52.397341401 + ], + [ + 13.1821264, + 52.397626801 + ], + [ + 13.182453, + 52.397880801 + ], + [ + 13.1827963, + 52.398163601 + ], + [ + 13.1836004, + 52.398861501 + ], + [ + 13.1844602, + 52.399650901 + ], + [ + 13.1856848, + 52.400729501 + ], + [ + 13.1871962, + 52.402072401 + ], + [ + 13.1874853, + 52.402333701 + ], + [ + 13.1889956, + 52.403677301 + ], + [ + 13.1921529, + 52.406466901 + ], + [ + 13.1952248, + 52.409161601 + ], + [ + 13.1957664, + 52.409645101 + ], + [ + 13.1960582, + 52.409938301 + ], + [ + 13.1962708, + 52.410154701 + ], + [ + 13.196453, + 52.410376401 + ], + [ + 13.1966333, + 52.410639901 + ], + [ + 13.1968221, + 52.410933101 + ], + [ + 13.1970023, + 52.411231501 + ], + [ + 13.1971654, + 52.411550901 + ], + [ + 13.1973028, + 52.411870301 + ], + [ + 13.1973972, + 52.412210601 + ], + [ + 13.197483, + 52.412519501 + ], + [ + 13.1975345, + 52.412781301 + ], + [ + 13.1975517, + 52.412990701 + ], + [ + 13.1975688, + 52.413252401 + ], + [ + 13.197574738, + 52.413545415 + ] + ] + } + }, + { + "identifier": "2023-001175--vi-bs.2025-03-17_07-00-00-000.devi-zus.2024-08-26_06-00-00-000.f_001.de33", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.39136940546527,13.162991625972207,52.45868662574057,13.223452552605918", + "point": "52.39136940546527,13.162991625972207", + "startLcPosition": "5", + "impact": { + "lower": "H\u00fcttenweg", + "upper": "Am Stern", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Nuthetal -> Dreieck Funkturm", + "title": "A115 | Am Stern - H\u00fcttenweg", + "startTimestamp": "2025-03-17T07:00:00+01:00", + "coordinate": { + "lat": 52.39136940546527, + "long": 13.162991625972207 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.03.25 um 07:00 Uhr", + "Ende: 30.07.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.08.26)", + "", + "A115: Dreieck Nuthetal -> Dreieck Funkturm, zwischen 1.0 km hinter Am Stern und 1.5 km vor AS H\u00fcttenweg", + "", + "L\u00e4nge: 9.42 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A115 Erneuerung zw. Landesgrenze BB, BER und AS Spanische Allee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.162991626, + 52.391369405 + ], + [ + 13.1686942, + 52.392754301 + ], + [ + 13.1745137, + 52.394146601 + ], + [ + 13.1752604, + 52.394340301 + ], + [ + 13.1757668, + 52.394487001 + ], + [ + 13.176256, + 52.394638901 + ], + [ + 13.1766852, + 52.394785501 + ], + [ + 13.1771315, + 52.394942701 + ], + [ + 13.1775692, + 52.395099801 + ], + [ + 13.1779727, + 52.395267401 + ], + [ + 13.178419, + 52.395461201 + ], + [ + 13.1788481, + 52.395649701 + ], + [ + 13.1793116, + 52.395864501 + ], + [ + 13.1797665, + 52.396094901 + ], + [ + 13.1801613, + 52.396309601 + ], + [ + 13.1805476, + 52.396540101 + ], + [ + 13.1809153, + 52.396781601 + ], + [ + 13.1813771, + 52.397084401 + ], + [ + 13.1817707, + 52.397341401 + ], + [ + 13.1821264, + 52.397626801 + ], + [ + 13.182453, + 52.397880801 + ], + [ + 13.1827963, + 52.398163601 + ], + [ + 13.1836004, + 52.398861501 + ], + [ + 13.1844602, + 52.399650901 + ], + [ + 13.1856848, + 52.400729501 + ], + [ + 13.1871962, + 52.402072401 + ], + [ + 13.1874853, + 52.402333701 + ], + [ + 13.1889956, + 52.403677301 + ], + [ + 13.1921529, + 52.406466901 + ], + [ + 13.1952248, + 52.409161601 + ], + [ + 13.1957664, + 52.409645101 + ], + [ + 13.1960582, + 52.409938301 + ], + [ + 13.1962708, + 52.410154701 + ], + [ + 13.196453, + 52.410376401 + ], + [ + 13.1966333, + 52.410639901 + ], + [ + 13.1968221, + 52.410933101 + ], + [ + 13.1970023, + 52.411231501 + ], + [ + 13.1971654, + 52.411550901 + ], + [ + 13.1973028, + 52.411870301 + ], + [ + 13.1973972, + 52.412210601 + ], + [ + 13.197483, + 52.412519501 + ], + [ + 13.1975345, + 52.412781301 + ], + [ + 13.1975517, + 52.412990701 + ], + [ + 13.1975688, + 52.413252401 + ], + [ + 13.1975748, + 52.413548501 + ], + [ + 13.1975637, + 52.413761801 + ], + [ + 13.1975407, + 52.414043501 + ], + [ + 13.1972965, + 52.415149601 + ], + [ + 13.1972491, + 52.415394801 + ], + [ + 13.1972225, + 52.415531301 + ], + [ + 13.1972188, + 52.415550801 + ], + [ + 13.1971125, + 52.416042801 + ], + [ + 13.1970544, + 52.416306301 + ], + [ + 13.1970279, + 52.416434901 + ], + [ + 13.1969687, + 52.416721801 + ], + [ + 13.1968251, + 52.417210201 + ], + [ + 13.1966927, + 52.417785301 + ], + [ + 13.1964733, + 52.418783801 + ], + [ + 13.195789, + 52.421872501 + ], + [ + 13.1957131, + 52.422221201 + ], + [ + 13.1956002, + 52.422702501 + ], + [ + 13.1955571, + 52.422825501 + ], + [ + 13.1954625, + 52.423022001 + ], + [ + 13.1952522, + 52.423396201 + ], + [ + 13.1950462, + 52.423662301 + ], + [ + 13.1948615, + 52.423858401 + ], + [ + 13.1946567, + 52.424054001 + ], + [ + 13.1943206, + 52.424303401 + ], + [ + 13.1938633, + 52.424598601 + ], + [ + 13.1935582, + 52.424777101 + ], + [ + 13.1931941, + 52.424999501 + ], + [ + 13.1929555, + 52.425141101 + ], + [ + 13.1927323, + 52.425282701 + ], + [ + 13.1924022, + 52.425513601 + ], + [ + 13.1921103, + 52.425755701 + ], + [ + 13.1918429, + 52.426029801 + ], + [ + 13.1917232, + 52.426177301 + ], + [ + 13.191614, + 52.426325201 + ], + [ + 13.1915107, + 52.426490701 + ], + [ + 13.1914378, + 52.426633601 + ], + [ + 13.1913442, + 52.426844001 + ], + [ + 13.1912683, + 52.427081601 + ], + [ + 13.1912231, + 52.427309301 + ], + [ + 13.1912002, + 52.427516401 + ], + [ + 13.1912029, + 52.427685201 + ], + [ + 13.1912298, + 52.427921901 + ], + [ + 13.1913582, + 52.428525701 + ], + [ + 13.1915853, + 52.429404701 + ], + [ + 13.1918505, + 52.430481201 + ], + [ + 13.1920488, + 52.431286101 + ], + [ + 13.1920694, + 52.431379901 + ], + [ + 13.1921876, + 52.431879301 + ], + [ + 13.1923052, + 52.432331401 + ], + [ + 13.1923256, + 52.432409801 + ], + [ + 13.1923663, + 52.432566201 + ], + [ + 13.1924756, + 52.433010901 + ], + [ + 13.1926103, + 52.433460201 + ], + [ + 13.192727, + 52.433786101 + ], + [ + 13.1928825, + 52.434071001 + ], + [ + 13.1931412, + 52.434473101 + ], + [ + 13.1933773, + 52.434767801 + ], + [ + 13.1935998, + 52.435003901 + ], + [ + 13.1937807, + 52.435179301 + ], + [ + 13.194033, + 52.435400301 + ], + [ + 13.1941907, + 52.435532401 + ], + [ + 13.1943468, + 52.435659301 + ], + [ + 13.1954145, + 52.436501701 + ], + [ + 13.1959083, + 52.436892701 + ], + [ + 13.1964308, + 52.437308501 + ], + [ + 13.1969358, + 52.437705201 + ], + [ + 13.197435, + 52.438097301 + ], + [ + 13.1979927, + 52.438535301 + ], + [ + 13.1984916, + 52.438927101 + ], + [ + 13.1995306, + 52.439743101 + ], + [ + 13.2003583, + 52.440394601 + ], + [ + 13.2008027, + 52.440763301 + ], + [ + 13.2010319, + 52.440943501 + ], + [ + 13.2030433, + 52.442538601 + ], + [ + 13.2060239, + 52.444898101 + ], + [ + 13.2090359, + 52.447281301 + ], + [ + 13.2120335, + 52.449655701 + ], + [ + 13.2146075, + 52.451691901 + ], + [ + 13.216907, + 52.453512601 + ], + [ + 13.2172741, + 52.453797601 + ], + [ + 13.2205656, + 52.456405701 + ], + [ + 13.222963, + 52.458299901 + ], + [ + 13.223452553, + 52.458686626 + ] + ] + } + }, + { + "identifier": "2023-001175--vi-bs.2025-03-17_07-00-00-000.devi-zus.2024-08-26_06-00-00-000.f_001.de43", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.40782308013058,13.193698855054858,52.43927562232604,13.198935360602537", + "point": "52.40782308013058,13.193698855054858", + "startLcPosition": "6", + "impact": { + "lower": "H\u00fcttenweg", + "upper": "Kleinmachnow", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Nuthetal -> Dreieck Funkturm", + "title": "A115 | Kleinmachnow - H\u00fcttenweg", + "startTimestamp": "2025-03-17T07:00:00+01:00", + "coordinate": { + "lat": 52.40782308013058, + "long": 13.193698855054858 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.03.25 um 07:00 Uhr", + "Ende: 30.07.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.08.26)", + "", + "A115: Dreieck Nuthetal -> Dreieck Funkturm, zwischen 0.8 km hinter AS Kleinmachnow und 4.2 km vor AS H\u00fcttenweg", + "", + "L\u00e4nge: 3.82 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A115 Erneuerung zw. Landesgrenze BB, BER und AS Spanische Allee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.193698855, + 52.40782308 + ], + [ + 13.1952248, + 52.409161601 + ], + [ + 13.1957664, + 52.409645101 + ], + [ + 13.1960582, + 52.409938301 + ], + [ + 13.1962708, + 52.410154701 + ], + [ + 13.196453, + 52.410376401 + ], + [ + 13.1966333, + 52.410639901 + ], + [ + 13.1968221, + 52.410933101 + ], + [ + 13.1970023, + 52.411231501 + ], + [ + 13.1971654, + 52.411550901 + ], + [ + 13.1973028, + 52.411870301 + ], + [ + 13.1973972, + 52.412210601 + ], + [ + 13.197483, + 52.412519501 + ], + [ + 13.1975345, + 52.412781301 + ], + [ + 13.1975517, + 52.412990701 + ], + [ + 13.1975688, + 52.413252401 + ], + [ + 13.1975748, + 52.413548501 + ], + [ + 13.1975637, + 52.413761801 + ], + [ + 13.1975407, + 52.414043501 + ], + [ + 13.1972965, + 52.415149601 + ], + [ + 13.1972491, + 52.415394801 + ], + [ + 13.1972225, + 52.415531301 + ], + [ + 13.1972188, + 52.415550801 + ], + [ + 13.1971125, + 52.416042801 + ], + [ + 13.1970544, + 52.416306301 + ], + [ + 13.1970279, + 52.416434901 + ], + [ + 13.1969687, + 52.416721801 + ], + [ + 13.1968251, + 52.417210201 + ], + [ + 13.1966927, + 52.417785301 + ], + [ + 13.1964733, + 52.418783801 + ], + [ + 13.195789, + 52.421872501 + ], + [ + 13.1957131, + 52.422221201 + ], + [ + 13.1956002, + 52.422702501 + ], + [ + 13.1955571, + 52.422825501 + ], + [ + 13.1954625, + 52.423022001 + ], + [ + 13.1952522, + 52.423396201 + ], + [ + 13.1950462, + 52.423662301 + ], + [ + 13.1948615, + 52.423858401 + ], + [ + 13.1946567, + 52.424054001 + ], + [ + 13.1943206, + 52.424303401 + ], + [ + 13.1938633, + 52.424598601 + ], + [ + 13.1935582, + 52.424777101 + ], + [ + 13.1931941, + 52.424999501 + ], + [ + 13.1929555, + 52.425141101 + ], + [ + 13.1927323, + 52.425282701 + ], + [ + 13.1924022, + 52.425513601 + ], + [ + 13.1921103, + 52.425755701 + ], + [ + 13.1918429, + 52.426029801 + ], + [ + 13.1917232, + 52.426177301 + ], + [ + 13.191614, + 52.426325201 + ], + [ + 13.1915107, + 52.426490701 + ], + [ + 13.1914378, + 52.426633601 + ], + [ + 13.1913442, + 52.426844001 + ], + [ + 13.1912683, + 52.427081601 + ], + [ + 13.1912231, + 52.427309301 + ], + [ + 13.1912002, + 52.427516401 + ], + [ + 13.1912029, + 52.427685201 + ], + [ + 13.1912298, + 52.427921901 + ], + [ + 13.1913582, + 52.428525701 + ], + [ + 13.1915853, + 52.429404701 + ], + [ + 13.1918505, + 52.430481201 + ], + [ + 13.1920488, + 52.431286101 + ], + [ + 13.1920694, + 52.431379901 + ], + [ + 13.1921876, + 52.431879301 + ], + [ + 13.1923052, + 52.432331401 + ], + [ + 13.1923256, + 52.432409801 + ], + [ + 13.1923663, + 52.432566201 + ], + [ + 13.1924756, + 52.433010901 + ], + [ + 13.1926103, + 52.433460201 + ], + [ + 13.192727, + 52.433786101 + ], + [ + 13.1928825, + 52.434071001 + ], + [ + 13.1931412, + 52.434473101 + ], + [ + 13.1933773, + 52.434767801 + ], + [ + 13.1935998, + 52.435003901 + ], + [ + 13.1937807, + 52.435179301 + ], + [ + 13.194033, + 52.435400301 + ], + [ + 13.1941907, + 52.435532401 + ], + [ + 13.1943468, + 52.435659301 + ], + [ + 13.1954145, + 52.436501701 + ], + [ + 13.1959083, + 52.436892701 + ], + [ + 13.1964308, + 52.437308501 + ], + [ + 13.1969358, + 52.437705201 + ], + [ + 13.197435, + 52.438097301 + ], + [ + 13.1979927, + 52.438535301 + ], + [ + 13.1984916, + 52.438927101 + ], + [ + 13.198935361, + 52.439275622 + ] + ] + } + }, + { + "identifier": "2026-017606--vi-bs.2026-04-13_08-00-00-000.devi-zus.2026-04-13_08-00-00-000_013.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.41359801121212,13.197341628588205,52.30480402343816,13.086577099316015", + "point": "52.41359801121212,13.197341628588205", + "startLcPosition": "7", + "impact": { + "lower": "Nuthetal", + "upper": "Dreilinden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "A115 | Dreilinden - Nuthetal", + "coordinate": { + "lat": 52.41359801121212, + "long": 13.197341628588205 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch und Donnerstag zwischen dem 13.04.26 und dem 16.04.26 von 08:00 bis 15:00 Uhr.", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A115: Dreieck Funkturm -> Dreieck Nuthetal, zwischen 0.2 km hinter Dreilinden und 0.5 km vor AD Nuthetal", + "", + "L\u00e4nge: 15.43 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "Reinigung Sch\u00e4chte A115" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.197341629, + 52.413598011 + ], + [ + 13.1973441, + 52.413552901 + ], + [ + 13.1973445, + 52.413304701 + ], + [ + 13.1973112, + 52.412859401 + ], + [ + 13.1972083, + 52.412336201 + ], + [ + 13.1971225, + 52.412027301 + ], + [ + 13.196957, + 52.411619001 + ], + [ + 13.196762, + 52.411231501 + ], + [ + 13.1964359, + 52.410718501 + ], + [ + 13.196247, + 52.410467101 + ], + [ + 13.1960582, + 52.410226301 + ], + [ + 13.1957578, + 52.409933101 + ], + [ + 13.1954746, + 52.409650401 + ], + [ + 13.1949983, + 52.409231501 + ], + [ + 13.1918868, + 52.406466901 + ], + [ + 13.1886736, + 52.403658301 + ], + [ + 13.1872834, + 52.402416801 + ], + [ + 13.1869906, + 52.402163401 + ], + [ + 13.1868249, + 52.402016901 + ], + [ + 13.1854649, + 52.400816001 + ], + [ + 13.184236, + 52.399741801 + ], + [ + 13.1833763, + 52.398952401 + ], + [ + 13.182966, + 52.398601701 + ], + [ + 13.1825474, + 52.398247401 + ], + [ + 13.1821097, + 52.397891301 + ], + [ + 13.1817835, + 52.397629401 + ], + [ + 13.1814917, + 52.397399001 + ], + [ + 13.1811904, + 52.397195201 + ], + [ + 13.1808091, + 52.396942201 + ], + [ + 13.1803723, + 52.396671401 + ], + [ + 13.1799188, + 52.396402501 + ], + [ + 13.1795605, + 52.396183901 + ], + [ + 13.1790885, + 52.395943001 + ], + [ + 13.1787194, + 52.395775401 + ], + [ + 13.178316, + 52.395597301 + ], + [ + 13.1779126, + 52.395429701 + ], + [ + 13.1775607, + 52.395288301 + ], + [ + 13.1771487, + 52.395126001 + ], + [ + 13.1767195, + 52.394968801 + ], + [ + 13.176256, + 52.394801201 + ], + [ + 13.1758183, + 52.394675501 + ], + [ + 13.1753806, + 52.394539401 + ], + [ + 13.1744278, + 52.394288001 + ], + [ + 13.168526, + 52.392860301 + ], + [ + 13.16065, + 52.390963201 + ], + [ + 13.1600169, + 52.390778601 + ], + [ + 13.1595791, + 52.390652901 + ], + [ + 13.1591671, + 52.390516701 + ], + [ + 13.1586436, + 52.390328201 + ], + [ + 13.1582488, + 52.390160501 + ], + [ + 13.1578196, + 52.389972001 + ], + [ + 13.1574248, + 52.389788601 + ], + [ + 13.1570557, + 52.389579101 + ], + [ + 13.1567639, + 52.389411501 + ], + [ + 13.1564892, + 52.389243901 + ], + [ + 13.1561888, + 52.389039601 + ], + [ + 13.155897, + 52.388824801 + ], + [ + 13.1556653, + 52.388636201 + ], + [ + 13.1554078, + 52.388437201 + ], + [ + 13.1551074, + 52.388164801 + ], + [ + 13.1549271, + 52.387960501 + ], + [ + 13.1547211, + 52.387745701 + ], + [ + 13.154475, + 52.387407301 + ], + [ + 13.1542719, + 52.387135201 + ], + [ + 13.1539892, + 52.386703801 + ], + [ + 13.1535756, + 52.386065701 + ], + [ + 13.153125, + 52.385382901 + ], + [ + 13.1510905, + 52.382266001 + ], + [ + 13.1508681, + 52.381941701 + ], + [ + 13.1507005, + 52.381643401 + ], + [ + 13.1505004, + 52.381292601 + ], + [ + 13.1503438, + 52.381008701 + ], + [ + 13.1502236, + 52.380757201 + ], + [ + 13.1501206, + 52.380510901 + ], + [ + 13.1500348, + 52.380311801 + ], + [ + 13.1499575, + 52.380018501 + ], + [ + 13.149867, + 52.379685801 + ], + [ + 13.1498328, + 52.379501901 + ], + [ + 13.14981, + 52.379312201 + ], + [ + 13.149747, + 52.378752701 + ], + [ + 13.149747, + 52.378438301 + ], + [ + 13.1498021, + 52.376776101 + ], + [ + 13.1498228, + 52.376150801 + ], + [ + 13.1498247, + 52.375553901 + ], + [ + 13.1498321, + 52.375028301 + ], + [ + 13.1498333, + 52.374944401 + ], + [ + 13.1498633, + 52.374048701 + ], + [ + 13.1498889, + 52.373215901 + ], + [ + 13.1499101, + 52.372038601 + ], + [ + 13.1499191, + 52.371421601 + ], + [ + 13.1499138, + 52.370646401 + ], + [ + 13.149874, + 52.370344301 + ], + [ + 13.1498225, + 52.370040401 + ], + [ + 13.1497538, + 52.369809801 + ], + [ + 13.1496337, + 52.369495401 + ], + [ + 13.1495307, + 52.369238601 + ], + [ + 13.1493762, + 52.368929401 + ], + [ + 13.1492337, + 52.368692101 + ], + [ + 13.1491252, + 52.368518701 + ], + [ + 13.1490844, + 52.368452501 + ], + [ + 13.1488976, + 52.368193501 + ], + [ + 13.1485697, + 52.367816101 + ], + [ + 13.1483668, + 52.367593401 + ], + [ + 13.1478489, + 52.367127701 + ], + [ + 13.147339, + 52.366740801 + ], + [ + 13.1469953, + 52.366498801 + ], + [ + 13.1466011, + 52.366246601 + ], + [ + 13.143165, + 52.364189101 + ], + [ + 13.1427033, + 52.363851801 + ], + [ + 13.1422127, + 52.363427601 + ], + [ + 13.1418391, + 52.363039901 + ], + [ + 13.1415031, + 52.362649901 + ], + [ + 13.1413922, + 52.362502201 + ], + [ + 13.1410082, + 52.361931701 + ], + [ + 13.1407943, + 52.361472701 + ], + [ + 13.1405827, + 52.360896501 + ], + [ + 13.1404641, + 52.360373601 + ], + [ + 13.1404284, + 52.359925301 + ], + [ + 13.1404958, + 52.356941201 + ], + [ + 13.1405413, + 52.354926301 + ], + [ + 13.140578, + 52.353385701 + ], + [ + 13.1406194, + 52.351645001 + ], + [ + 13.1407834, + 52.344743101 + ], + [ + 13.140714, + 52.344028401 + ], + [ + 13.1406022, + 52.343477701 + ], + [ + 13.1403983, + 52.342881101 + ], + [ + 13.1401535, + 52.342264401 + ], + [ + 13.1398244, + 52.341686101 + ], + [ + 13.139188, + 52.340732701 + ], + [ + 13.1384951, + 52.339935301 + ], + [ + 13.1379847, + 52.339456901 + ], + [ + 13.1374013, + 52.338959201 + ], + [ + 13.1368296, + 52.338527801 + ], + [ + 13.136214, + 52.338100201 + ], + [ + 13.1354419, + 52.337664701 + ], + [ + 13.1345545, + 52.337205301 + ], + [ + 13.1335418, + 52.336762601 + ], + [ + 13.1327081, + 52.336446201 + ], + [ + 13.131242, + 52.335995101 + ], + [ + 13.1270709, + 52.334777601 + ], + [ + 13.1261492, + 52.334515501 + ], + [ + 13.1228273, + 52.333566001 + ], + [ + 13.122464, + 52.333463401 + ], + [ + 13.1198868, + 52.332713601 + ], + [ + 13.1175759, + 52.332045801 + ], + [ + 13.1150301, + 52.331318101 + ], + [ + 13.1141781, + 52.331074501 + ], + [ + 13.1129227, + 52.330715601 + ], + [ + 13.1120751, + 52.330468601 + ], + [ + 13.1111173, + 52.330186701 + ], + [ + 13.1110207, + 52.330155001 + ], + [ + 13.1105379, + 52.330001501 + ], + [ + 13.1100616, + 52.329831001 + ], + [ + 13.1096263, + 52.329662101 + ], + [ + 13.1090162, + 52.329411001 + ], + [ + 13.1087335, + 52.329270301 + ], + [ + 13.108301, + 52.329058701 + ], + [ + 13.1079028, + 52.328846801 + ], + [ + 13.1075251, + 52.328637001 + ], + [ + 13.1071732, + 52.328421901 + ], + [ + 13.106787, + 52.328180601 + ], + [ + 13.1064523, + 52.327939301 + ], + [ + 13.1061347, + 52.327682301 + ], + [ + 13.1057999, + 52.327414801 + ], + [ + 13.1052335, + 52.326895501 + ], + [ + 13.1035154, + 52.325262401 + ], + [ + 13.102157, + 52.323971401 + ], + [ + 13.1017074, + 52.323547201 + ], + [ + 13.1003411, + 52.322242401 + ], + [ + 13.0977075, + 52.319725601 + ], + [ + 13.0973426, + 52.319374901 + ], + [ + 13.0960906, + 52.318178101 + ], + [ + 13.0955797, + 52.317683301 + ], + [ + 13.094599, + 52.316733601 + ], + [ + 13.09429, + 52.316403001 + ], + [ + 13.0940497, + 52.316135501 + ], + [ + 13.0938266, + 52.315841601 + ], + [ + 13.0926031, + 52.314007001 + ], + [ + 13.0922866, + 52.313535901 + ], + [ + 13.0920456, + 52.313150801 + ], + [ + 13.0918696, + 52.312885101 + ], + [ + 13.0900328, + 52.310111601 + ], + [ + 13.0893203, + 52.309026901 + ], + [ + 13.0880993, + 52.307126501 + ], + [ + 13.0867109, + 52.305000701 + ], + [ + 13.086577099, + 52.304804023 + ] + ] + } + }, + { + "identifier": "2026-017556--vi-bs.2026-04-13_08-00-00-000.devi-bs.2026-04-13_08-00-00-000_017.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.41359801121212,13.197341628588205,52.30480402343816,13.086577099316015", + "point": "52.41359801121212,13.197341628588205", + "startLcPosition": "7", + "impact": { + "lower": "Nuthetal", + "upper": "Dreilinden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "A115 | Dreilinden - Nuthetal", + "coordinate": { + "lat": 52.41359801121212, + "long": 13.197341628588205 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag und Mittwoch zwischen dem 13.04.26 und dem 15.04.26 von 08:00 bis 15:00 Uhr.", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A115: Dreieck Funkturm -> Dreieck Nuthetal, zwischen 0.2 km hinter Dreilinden und 0.5 km vor AD Nuthetal", + "", + "L\u00e4nge: 15.43 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "Streckenreinigung KW 16" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.197341629, + 52.413598011 + ], + [ + 13.1973441, + 52.413552901 + ], + [ + 13.1973445, + 52.413304701 + ], + [ + 13.1973112, + 52.412859401 + ], + [ + 13.1972083, + 52.412336201 + ], + [ + 13.1971225, + 52.412027301 + ], + [ + 13.196957, + 52.411619001 + ], + [ + 13.196762, + 52.411231501 + ], + [ + 13.1964359, + 52.410718501 + ], + [ + 13.196247, + 52.410467101 + ], + [ + 13.1960582, + 52.410226301 + ], + [ + 13.1957578, + 52.409933101 + ], + [ + 13.1954746, + 52.409650401 + ], + [ + 13.1949983, + 52.409231501 + ], + [ + 13.1918868, + 52.406466901 + ], + [ + 13.1886736, + 52.403658301 + ], + [ + 13.1872834, + 52.402416801 + ], + [ + 13.1869906, + 52.402163401 + ], + [ + 13.1868249, + 52.402016901 + ], + [ + 13.1854649, + 52.400816001 + ], + [ + 13.184236, + 52.399741801 + ], + [ + 13.1833763, + 52.398952401 + ], + [ + 13.182966, + 52.398601701 + ], + [ + 13.1825474, + 52.398247401 + ], + [ + 13.1821097, + 52.397891301 + ], + [ + 13.1817835, + 52.397629401 + ], + [ + 13.1814917, + 52.397399001 + ], + [ + 13.1811904, + 52.397195201 + ], + [ + 13.1808091, + 52.396942201 + ], + [ + 13.1803723, + 52.396671401 + ], + [ + 13.1799188, + 52.396402501 + ], + [ + 13.1795605, + 52.396183901 + ], + [ + 13.1790885, + 52.395943001 + ], + [ + 13.1787194, + 52.395775401 + ], + [ + 13.178316, + 52.395597301 + ], + [ + 13.1779126, + 52.395429701 + ], + [ + 13.1775607, + 52.395288301 + ], + [ + 13.1771487, + 52.395126001 + ], + [ + 13.1767195, + 52.394968801 + ], + [ + 13.176256, + 52.394801201 + ], + [ + 13.1758183, + 52.394675501 + ], + [ + 13.1753806, + 52.394539401 + ], + [ + 13.1744278, + 52.394288001 + ], + [ + 13.168526, + 52.392860301 + ], + [ + 13.16065, + 52.390963201 + ], + [ + 13.1600169, + 52.390778601 + ], + [ + 13.1595791, + 52.390652901 + ], + [ + 13.1591671, + 52.390516701 + ], + [ + 13.1586436, + 52.390328201 + ], + [ + 13.1582488, + 52.390160501 + ], + [ + 13.1578196, + 52.389972001 + ], + [ + 13.1574248, + 52.389788601 + ], + [ + 13.1570557, + 52.389579101 + ], + [ + 13.1567639, + 52.389411501 + ], + [ + 13.1564892, + 52.389243901 + ], + [ + 13.1561888, + 52.389039601 + ], + [ + 13.155897, + 52.388824801 + ], + [ + 13.1556653, + 52.388636201 + ], + [ + 13.1554078, + 52.388437201 + ], + [ + 13.1551074, + 52.388164801 + ], + [ + 13.1549271, + 52.387960501 + ], + [ + 13.1547211, + 52.387745701 + ], + [ + 13.154475, + 52.387407301 + ], + [ + 13.1542719, + 52.387135201 + ], + [ + 13.1539892, + 52.386703801 + ], + [ + 13.1535756, + 52.386065701 + ], + [ + 13.153125, + 52.385382901 + ], + [ + 13.1510905, + 52.382266001 + ], + [ + 13.1508681, + 52.381941701 + ], + [ + 13.1507005, + 52.381643401 + ], + [ + 13.1505004, + 52.381292601 + ], + [ + 13.1503438, + 52.381008701 + ], + [ + 13.1502236, + 52.380757201 + ], + [ + 13.1501206, + 52.380510901 + ], + [ + 13.1500348, + 52.380311801 + ], + [ + 13.1499575, + 52.380018501 + ], + [ + 13.149867, + 52.379685801 + ], + [ + 13.1498328, + 52.379501901 + ], + [ + 13.14981, + 52.379312201 + ], + [ + 13.149747, + 52.378752701 + ], + [ + 13.149747, + 52.378438301 + ], + [ + 13.1498021, + 52.376776101 + ], + [ + 13.1498228, + 52.376150801 + ], + [ + 13.1498247, + 52.375553901 + ], + [ + 13.1498321, + 52.375028301 + ], + [ + 13.1498333, + 52.374944401 + ], + [ + 13.1498633, + 52.374048701 + ], + [ + 13.1498889, + 52.373215901 + ], + [ + 13.1499101, + 52.372038601 + ], + [ + 13.1499191, + 52.371421601 + ], + [ + 13.1499138, + 52.370646401 + ], + [ + 13.149874, + 52.370344301 + ], + [ + 13.1498225, + 52.370040401 + ], + [ + 13.1497538, + 52.369809801 + ], + [ + 13.1496337, + 52.369495401 + ], + [ + 13.1495307, + 52.369238601 + ], + [ + 13.1493762, + 52.368929401 + ], + [ + 13.1492337, + 52.368692101 + ], + [ + 13.1491252, + 52.368518701 + ], + [ + 13.1490844, + 52.368452501 + ], + [ + 13.1488976, + 52.368193501 + ], + [ + 13.1485697, + 52.367816101 + ], + [ + 13.1483668, + 52.367593401 + ], + [ + 13.1478489, + 52.367127701 + ], + [ + 13.147339, + 52.366740801 + ], + [ + 13.1469953, + 52.366498801 + ], + [ + 13.1466011, + 52.366246601 + ], + [ + 13.143165, + 52.364189101 + ], + [ + 13.1427033, + 52.363851801 + ], + [ + 13.1422127, + 52.363427601 + ], + [ + 13.1418391, + 52.363039901 + ], + [ + 13.1415031, + 52.362649901 + ], + [ + 13.1413922, + 52.362502201 + ], + [ + 13.1410082, + 52.361931701 + ], + [ + 13.1407943, + 52.361472701 + ], + [ + 13.1405827, + 52.360896501 + ], + [ + 13.1404641, + 52.360373601 + ], + [ + 13.1404284, + 52.359925301 + ], + [ + 13.1404958, + 52.356941201 + ], + [ + 13.1405413, + 52.354926301 + ], + [ + 13.140578, + 52.353385701 + ], + [ + 13.1406194, + 52.351645001 + ], + [ + 13.1407834, + 52.344743101 + ], + [ + 13.140714, + 52.344028401 + ], + [ + 13.1406022, + 52.343477701 + ], + [ + 13.1403983, + 52.342881101 + ], + [ + 13.1401535, + 52.342264401 + ], + [ + 13.1398244, + 52.341686101 + ], + [ + 13.139188, + 52.340732701 + ], + [ + 13.1384951, + 52.339935301 + ], + [ + 13.1379847, + 52.339456901 + ], + [ + 13.1374013, + 52.338959201 + ], + [ + 13.1368296, + 52.338527801 + ], + [ + 13.136214, + 52.338100201 + ], + [ + 13.1354419, + 52.337664701 + ], + [ + 13.1345545, + 52.337205301 + ], + [ + 13.1335418, + 52.336762601 + ], + [ + 13.1327081, + 52.336446201 + ], + [ + 13.131242, + 52.335995101 + ], + [ + 13.1270709, + 52.334777601 + ], + [ + 13.1261492, + 52.334515501 + ], + [ + 13.1228273, + 52.333566001 + ], + [ + 13.122464, + 52.333463401 + ], + [ + 13.1198868, + 52.332713601 + ], + [ + 13.1175759, + 52.332045801 + ], + [ + 13.1150301, + 52.331318101 + ], + [ + 13.1141781, + 52.331074501 + ], + [ + 13.1129227, + 52.330715601 + ], + [ + 13.1120751, + 52.330468601 + ], + [ + 13.1111173, + 52.330186701 + ], + [ + 13.1110207, + 52.330155001 + ], + [ + 13.1105379, + 52.330001501 + ], + [ + 13.1100616, + 52.329831001 + ], + [ + 13.1096263, + 52.329662101 + ], + [ + 13.1090162, + 52.329411001 + ], + [ + 13.1087335, + 52.329270301 + ], + [ + 13.108301, + 52.329058701 + ], + [ + 13.1079028, + 52.328846801 + ], + [ + 13.1075251, + 52.328637001 + ], + [ + 13.1071732, + 52.328421901 + ], + [ + 13.106787, + 52.328180601 + ], + [ + 13.1064523, + 52.327939301 + ], + [ + 13.1061347, + 52.327682301 + ], + [ + 13.1057999, + 52.327414801 + ], + [ + 13.1052335, + 52.326895501 + ], + [ + 13.1035154, + 52.325262401 + ], + [ + 13.102157, + 52.323971401 + ], + [ + 13.1017074, + 52.323547201 + ], + [ + 13.1003411, + 52.322242401 + ], + [ + 13.0977075, + 52.319725601 + ], + [ + 13.0973426, + 52.319374901 + ], + [ + 13.0960906, + 52.318178101 + ], + [ + 13.0955797, + 52.317683301 + ], + [ + 13.094599, + 52.316733601 + ], + [ + 13.09429, + 52.316403001 + ], + [ + 13.0940497, + 52.316135501 + ], + [ + 13.0938266, + 52.315841601 + ], + [ + 13.0926031, + 52.314007001 + ], + [ + 13.0922866, + 52.313535901 + ], + [ + 13.0920456, + 52.313150801 + ], + [ + 13.0918696, + 52.312885101 + ], + [ + 13.0900328, + 52.310111601 + ], + [ + 13.0893203, + 52.309026901 + ], + [ + 13.0880993, + 52.307126501 + ], + [ + 13.0867109, + 52.305000701 + ], + [ + 13.086577099, + 52.304804023 + ] + ] + } + }, + { + "identifier": "2026-017001--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_08-00-00-000_012.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.41359801121212,13.197341628588205,52.30480402343816,13.086577099316015", + "point": "52.41359801121212,13.197341628588205", + "startLcPosition": "7", + "impact": { + "lower": "Nuthetal", + "upper": "Dreilinden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "A115 | Dreilinden - Nuthetal", + "coordinate": { + "lat": 52.41359801121212, + "long": 13.197341628588205 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:15 Uhr", + "", + "A115: Dreieck Funkturm -> Dreieck Nuthetal, zwischen 0.2 km hinter Dreilinden und 0.5 km vor AD Nuthetal", + "", + "L\u00e4nge: 15.43 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "Streckenreinigung A115" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.197341629, + 52.413598011 + ], + [ + 13.1973441, + 52.413552901 + ], + [ + 13.1973445, + 52.413304701 + ], + [ + 13.1973112, + 52.412859401 + ], + [ + 13.1972083, + 52.412336201 + ], + [ + 13.1971225, + 52.412027301 + ], + [ + 13.196957, + 52.411619001 + ], + [ + 13.196762, + 52.411231501 + ], + [ + 13.1964359, + 52.410718501 + ], + [ + 13.196247, + 52.410467101 + ], + [ + 13.1960582, + 52.410226301 + ], + [ + 13.1957578, + 52.409933101 + ], + [ + 13.1954746, + 52.409650401 + ], + [ + 13.1949983, + 52.409231501 + ], + [ + 13.1918868, + 52.406466901 + ], + [ + 13.1886736, + 52.403658301 + ], + [ + 13.1872834, + 52.402416801 + ], + [ + 13.1869906, + 52.402163401 + ], + [ + 13.1868249, + 52.402016901 + ], + [ + 13.1854649, + 52.400816001 + ], + [ + 13.184236, + 52.399741801 + ], + [ + 13.1833763, + 52.398952401 + ], + [ + 13.182966, + 52.398601701 + ], + [ + 13.1825474, + 52.398247401 + ], + [ + 13.1821097, + 52.397891301 + ], + [ + 13.1817835, + 52.397629401 + ], + [ + 13.1814917, + 52.397399001 + ], + [ + 13.1811904, + 52.397195201 + ], + [ + 13.1808091, + 52.396942201 + ], + [ + 13.1803723, + 52.396671401 + ], + [ + 13.1799188, + 52.396402501 + ], + [ + 13.1795605, + 52.396183901 + ], + [ + 13.1790885, + 52.395943001 + ], + [ + 13.1787194, + 52.395775401 + ], + [ + 13.178316, + 52.395597301 + ], + [ + 13.1779126, + 52.395429701 + ], + [ + 13.1775607, + 52.395288301 + ], + [ + 13.1771487, + 52.395126001 + ], + [ + 13.1767195, + 52.394968801 + ], + [ + 13.176256, + 52.394801201 + ], + [ + 13.1758183, + 52.394675501 + ], + [ + 13.1753806, + 52.394539401 + ], + [ + 13.1744278, + 52.394288001 + ], + [ + 13.168526, + 52.392860301 + ], + [ + 13.16065, + 52.390963201 + ], + [ + 13.1600169, + 52.390778601 + ], + [ + 13.1595791, + 52.390652901 + ], + [ + 13.1591671, + 52.390516701 + ], + [ + 13.1586436, + 52.390328201 + ], + [ + 13.1582488, + 52.390160501 + ], + [ + 13.1578196, + 52.389972001 + ], + [ + 13.1574248, + 52.389788601 + ], + [ + 13.1570557, + 52.389579101 + ], + [ + 13.1567639, + 52.389411501 + ], + [ + 13.1564892, + 52.389243901 + ], + [ + 13.1561888, + 52.389039601 + ], + [ + 13.155897, + 52.388824801 + ], + [ + 13.1556653, + 52.388636201 + ], + [ + 13.1554078, + 52.388437201 + ], + [ + 13.1551074, + 52.388164801 + ], + [ + 13.1549271, + 52.387960501 + ], + [ + 13.1547211, + 52.387745701 + ], + [ + 13.154475, + 52.387407301 + ], + [ + 13.1542719, + 52.387135201 + ], + [ + 13.1539892, + 52.386703801 + ], + [ + 13.1535756, + 52.386065701 + ], + [ + 13.153125, + 52.385382901 + ], + [ + 13.1510905, + 52.382266001 + ], + [ + 13.1508681, + 52.381941701 + ], + [ + 13.1507005, + 52.381643401 + ], + [ + 13.1505004, + 52.381292601 + ], + [ + 13.1503438, + 52.381008701 + ], + [ + 13.1502236, + 52.380757201 + ], + [ + 13.1501206, + 52.380510901 + ], + [ + 13.1500348, + 52.380311801 + ], + [ + 13.1499575, + 52.380018501 + ], + [ + 13.149867, + 52.379685801 + ], + [ + 13.1498328, + 52.379501901 + ], + [ + 13.14981, + 52.379312201 + ], + [ + 13.149747, + 52.378752701 + ], + [ + 13.149747, + 52.378438301 + ], + [ + 13.1498021, + 52.376776101 + ], + [ + 13.1498228, + 52.376150801 + ], + [ + 13.1498247, + 52.375553901 + ], + [ + 13.1498321, + 52.375028301 + ], + [ + 13.1498333, + 52.374944401 + ], + [ + 13.1498633, + 52.374048701 + ], + [ + 13.1498889, + 52.373215901 + ], + [ + 13.1499101, + 52.372038601 + ], + [ + 13.1499191, + 52.371421601 + ], + [ + 13.1499138, + 52.370646401 + ], + [ + 13.149874, + 52.370344301 + ], + [ + 13.1498225, + 52.370040401 + ], + [ + 13.1497538, + 52.369809801 + ], + [ + 13.1496337, + 52.369495401 + ], + [ + 13.1495307, + 52.369238601 + ], + [ + 13.1493762, + 52.368929401 + ], + [ + 13.1492337, + 52.368692101 + ], + [ + 13.1491252, + 52.368518701 + ], + [ + 13.1490844, + 52.368452501 + ], + [ + 13.1488976, + 52.368193501 + ], + [ + 13.1485697, + 52.367816101 + ], + [ + 13.1483668, + 52.367593401 + ], + [ + 13.1478489, + 52.367127701 + ], + [ + 13.147339, + 52.366740801 + ], + [ + 13.1469953, + 52.366498801 + ], + [ + 13.1466011, + 52.366246601 + ], + [ + 13.143165, + 52.364189101 + ], + [ + 13.1427033, + 52.363851801 + ], + [ + 13.1422127, + 52.363427601 + ], + [ + 13.1418391, + 52.363039901 + ], + [ + 13.1415031, + 52.362649901 + ], + [ + 13.1413922, + 52.362502201 + ], + [ + 13.1410082, + 52.361931701 + ], + [ + 13.1407943, + 52.361472701 + ], + [ + 13.1405827, + 52.360896501 + ], + [ + 13.1404641, + 52.360373601 + ], + [ + 13.1404284, + 52.359925301 + ], + [ + 13.1404958, + 52.356941201 + ], + [ + 13.1405413, + 52.354926301 + ], + [ + 13.140578, + 52.353385701 + ], + [ + 13.1406194, + 52.351645001 + ], + [ + 13.1407834, + 52.344743101 + ], + [ + 13.140714, + 52.344028401 + ], + [ + 13.1406022, + 52.343477701 + ], + [ + 13.1403983, + 52.342881101 + ], + [ + 13.1401535, + 52.342264401 + ], + [ + 13.1398244, + 52.341686101 + ], + [ + 13.139188, + 52.340732701 + ], + [ + 13.1384951, + 52.339935301 + ], + [ + 13.1379847, + 52.339456901 + ], + [ + 13.1374013, + 52.338959201 + ], + [ + 13.1368296, + 52.338527801 + ], + [ + 13.136214, + 52.338100201 + ], + [ + 13.1354419, + 52.337664701 + ], + [ + 13.1345545, + 52.337205301 + ], + [ + 13.1335418, + 52.336762601 + ], + [ + 13.1327081, + 52.336446201 + ], + [ + 13.131242, + 52.335995101 + ], + [ + 13.1270709, + 52.334777601 + ], + [ + 13.1261492, + 52.334515501 + ], + [ + 13.1228273, + 52.333566001 + ], + [ + 13.122464, + 52.333463401 + ], + [ + 13.1198868, + 52.332713601 + ], + [ + 13.1175759, + 52.332045801 + ], + [ + 13.1150301, + 52.331318101 + ], + [ + 13.1141781, + 52.331074501 + ], + [ + 13.1129227, + 52.330715601 + ], + [ + 13.1120751, + 52.330468601 + ], + [ + 13.1111173, + 52.330186701 + ], + [ + 13.1110207, + 52.330155001 + ], + [ + 13.1105379, + 52.330001501 + ], + [ + 13.1100616, + 52.329831001 + ], + [ + 13.1096263, + 52.329662101 + ], + [ + 13.1090162, + 52.329411001 + ], + [ + 13.1087335, + 52.329270301 + ], + [ + 13.108301, + 52.329058701 + ], + [ + 13.1079028, + 52.328846801 + ], + [ + 13.1075251, + 52.328637001 + ], + [ + 13.1071732, + 52.328421901 + ], + [ + 13.106787, + 52.328180601 + ], + [ + 13.1064523, + 52.327939301 + ], + [ + 13.1061347, + 52.327682301 + ], + [ + 13.1057999, + 52.327414801 + ], + [ + 13.1052335, + 52.326895501 + ], + [ + 13.1035154, + 52.325262401 + ], + [ + 13.102157, + 52.323971401 + ], + [ + 13.1017074, + 52.323547201 + ], + [ + 13.1003411, + 52.322242401 + ], + [ + 13.0977075, + 52.319725601 + ], + [ + 13.0973426, + 52.319374901 + ], + [ + 13.0960906, + 52.318178101 + ], + [ + 13.0955797, + 52.317683301 + ], + [ + 13.094599, + 52.316733601 + ], + [ + 13.09429, + 52.316403001 + ], + [ + 13.0940497, + 52.316135501 + ], + [ + 13.0938266, + 52.315841601 + ], + [ + 13.0926031, + 52.314007001 + ], + [ + 13.0922866, + 52.313535901 + ], + [ + 13.0920456, + 52.313150801 + ], + [ + 13.0918696, + 52.312885101 + ], + [ + 13.0900328, + 52.310111601 + ], + [ + 13.0893203, + 52.309026901 + ], + [ + 13.0880993, + 52.307126501 + ], + [ + 13.0867109, + 52.305000701 + ], + [ + 13.086577099, + 52.304804023 + ] + ] + } + }, + { + "identifier": "2026-017555--vi-bs.2026-04-13_08-00-00-000_018.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.40250995168817,13.187387704468438,52.308891342195,13.089233200168414", + "point": "52.40250995168817,13.187387704468438", + "startLcPosition": "7", + "impact": { + "lower": "Nuthetal", + "upper": "Dreilinden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "A115 | Dreilinden - Nuthetal", + "coordinate": { + "lat": 52.40250995168817, + "long": 13.187387704468438 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 15:00 Uhr", + "14.04.26 von 08:00 bis 15:00 Uhr", + "15.04.26 von 08:00 bis 15:00 Uhr", + "16.04.26 von 08:00 bis 15:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "20.04.26 von 08:00 bis 15:00 Uhr", + "21.04.26 von 08:00 bis 15:00 Uhr", + "22.04.26 von 08:00 bis 15:00 Uhr", + "23.04.26 von 08:00 bis 12:00 Uhr", + "", + "A115: Dreieck Funkturm -> Dreieck Nuthetal, zwischen 1.7 km hinter Dreilinden und 1.0 km vor AD Nuthetal", + "", + "L\u00e4nge: 13.5 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A115 Stubben fr\u00e4sen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.187387704, + 52.402509952 + ], + [ + 13.1872834, + 52.402416801 + ], + [ + 13.1869906, + 52.402163401 + ], + [ + 13.1868249, + 52.402016901 + ], + [ + 13.1854649, + 52.400816001 + ], + [ + 13.184236, + 52.399741801 + ], + [ + 13.1833763, + 52.398952401 + ], + [ + 13.182966, + 52.398601701 + ], + [ + 13.1825474, + 52.398247401 + ], + [ + 13.1821097, + 52.397891301 + ], + [ + 13.1817835, + 52.397629401 + ], + [ + 13.1814917, + 52.397399001 + ], + [ + 13.1811904, + 52.397195201 + ], + [ + 13.1808091, + 52.396942201 + ], + [ + 13.1803723, + 52.396671401 + ], + [ + 13.1799188, + 52.396402501 + ], + [ + 13.1795605, + 52.396183901 + ], + [ + 13.1790885, + 52.395943001 + ], + [ + 13.1787194, + 52.395775401 + ], + [ + 13.178316, + 52.395597301 + ], + [ + 13.1779126, + 52.395429701 + ], + [ + 13.1775607, + 52.395288301 + ], + [ + 13.1771487, + 52.395126001 + ], + [ + 13.1767195, + 52.394968801 + ], + [ + 13.176256, + 52.394801201 + ], + [ + 13.1758183, + 52.394675501 + ], + [ + 13.1753806, + 52.394539401 + ], + [ + 13.1744278, + 52.394288001 + ], + [ + 13.168526, + 52.392860301 + ], + [ + 13.16065, + 52.390963201 + ], + [ + 13.1600169, + 52.390778601 + ], + [ + 13.1595791, + 52.390652901 + ], + [ + 13.1591671, + 52.390516701 + ], + [ + 13.1586436, + 52.390328201 + ], + [ + 13.1582488, + 52.390160501 + ], + [ + 13.1578196, + 52.389972001 + ], + [ + 13.1574248, + 52.389788601 + ], + [ + 13.1570557, + 52.389579101 + ], + [ + 13.1567639, + 52.389411501 + ], + [ + 13.1564892, + 52.389243901 + ], + [ + 13.1561888, + 52.389039601 + ], + [ + 13.155897, + 52.388824801 + ], + [ + 13.1556653, + 52.388636201 + ], + [ + 13.1554078, + 52.388437201 + ], + [ + 13.1551074, + 52.388164801 + ], + [ + 13.1549271, + 52.387960501 + ], + [ + 13.1547211, + 52.387745701 + ], + [ + 13.154475, + 52.387407301 + ], + [ + 13.1542719, + 52.387135201 + ], + [ + 13.1539892, + 52.386703801 + ], + [ + 13.1535756, + 52.386065701 + ], + [ + 13.153125, + 52.385382901 + ], + [ + 13.1510905, + 52.382266001 + ], + [ + 13.1508681, + 52.381941701 + ], + [ + 13.1507005, + 52.381643401 + ], + [ + 13.1505004, + 52.381292601 + ], + [ + 13.1503438, + 52.381008701 + ], + [ + 13.1502236, + 52.380757201 + ], + [ + 13.1501206, + 52.380510901 + ], + [ + 13.1500348, + 52.380311801 + ], + [ + 13.1499575, + 52.380018501 + ], + [ + 13.149867, + 52.379685801 + ], + [ + 13.1498328, + 52.379501901 + ], + [ + 13.14981, + 52.379312201 + ], + [ + 13.149747, + 52.378752701 + ], + [ + 13.149747, + 52.378438301 + ], + [ + 13.1498021, + 52.376776101 + ], + [ + 13.1498228, + 52.376150801 + ], + [ + 13.1498247, + 52.375553901 + ], + [ + 13.1498321, + 52.375028301 + ], + [ + 13.1498333, + 52.374944401 + ], + [ + 13.1498633, + 52.374048701 + ], + [ + 13.1498889, + 52.373215901 + ], + [ + 13.1499101, + 52.372038601 + ], + [ + 13.1499191, + 52.371421601 + ], + [ + 13.1499138, + 52.370646401 + ], + [ + 13.149874, + 52.370344301 + ], + [ + 13.1498225, + 52.370040401 + ], + [ + 13.1497538, + 52.369809801 + ], + [ + 13.1496337, + 52.369495401 + ], + [ + 13.1495307, + 52.369238601 + ], + [ + 13.1493762, + 52.368929401 + ], + [ + 13.1492337, + 52.368692101 + ], + [ + 13.1491252, + 52.368518701 + ], + [ + 13.1490844, + 52.368452501 + ], + [ + 13.1488976, + 52.368193501 + ], + [ + 13.1485697, + 52.367816101 + ], + [ + 13.1483668, + 52.367593401 + ], + [ + 13.1478489, + 52.367127701 + ], + [ + 13.147339, + 52.366740801 + ], + [ + 13.1469953, + 52.366498801 + ], + [ + 13.1466011, + 52.366246601 + ], + [ + 13.143165, + 52.364189101 + ], + [ + 13.1427033, + 52.363851801 + ], + [ + 13.1422127, + 52.363427601 + ], + [ + 13.1418391, + 52.363039901 + ], + [ + 13.1415031, + 52.362649901 + ], + [ + 13.1413922, + 52.362502201 + ], + [ + 13.1410082, + 52.361931701 + ], + [ + 13.1407943, + 52.361472701 + ], + [ + 13.1405827, + 52.360896501 + ], + [ + 13.1404641, + 52.360373601 + ], + [ + 13.1404284, + 52.359925301 + ], + [ + 13.1404958, + 52.356941201 + ], + [ + 13.1405413, + 52.354926301 + ], + [ + 13.140578, + 52.353385701 + ], + [ + 13.1406194, + 52.351645001 + ], + [ + 13.1407834, + 52.344743101 + ], + [ + 13.140714, + 52.344028401 + ], + [ + 13.1406022, + 52.343477701 + ], + [ + 13.1403983, + 52.342881101 + ], + [ + 13.1401535, + 52.342264401 + ], + [ + 13.1398244, + 52.341686101 + ], + [ + 13.139188, + 52.340732701 + ], + [ + 13.1384951, + 52.339935301 + ], + [ + 13.1379847, + 52.339456901 + ], + [ + 13.1374013, + 52.338959201 + ], + [ + 13.1368296, + 52.338527801 + ], + [ + 13.136214, + 52.338100201 + ], + [ + 13.1354419, + 52.337664701 + ], + [ + 13.1345545, + 52.337205301 + ], + [ + 13.1335418, + 52.336762601 + ], + [ + 13.1327081, + 52.336446201 + ], + [ + 13.131242, + 52.335995101 + ], + [ + 13.1270709, + 52.334777601 + ], + [ + 13.1261492, + 52.334515501 + ], + [ + 13.1228273, + 52.333566001 + ], + [ + 13.122464, + 52.333463401 + ], + [ + 13.1198868, + 52.332713601 + ], + [ + 13.1175759, + 52.332045801 + ], + [ + 13.1150301, + 52.331318101 + ], + [ + 13.1141781, + 52.331074501 + ], + [ + 13.1129227, + 52.330715601 + ], + [ + 13.1120751, + 52.330468601 + ], + [ + 13.1111173, + 52.330186701 + ], + [ + 13.1110207, + 52.330155001 + ], + [ + 13.1105379, + 52.330001501 + ], + [ + 13.1100616, + 52.329831001 + ], + [ + 13.1096263, + 52.329662101 + ], + [ + 13.1090162, + 52.329411001 + ], + [ + 13.1087335, + 52.329270301 + ], + [ + 13.108301, + 52.329058701 + ], + [ + 13.1079028, + 52.328846801 + ], + [ + 13.1075251, + 52.328637001 + ], + [ + 13.1071732, + 52.328421901 + ], + [ + 13.106787, + 52.328180601 + ], + [ + 13.1064523, + 52.327939301 + ], + [ + 13.1061347, + 52.327682301 + ], + [ + 13.1057999, + 52.327414801 + ], + [ + 13.1052335, + 52.326895501 + ], + [ + 13.1035154, + 52.325262401 + ], + [ + 13.102157, + 52.323971401 + ], + [ + 13.1017074, + 52.323547201 + ], + [ + 13.1003411, + 52.322242401 + ], + [ + 13.0977075, + 52.319725601 + ], + [ + 13.0973426, + 52.319374901 + ], + [ + 13.0960906, + 52.318178101 + ], + [ + 13.0955797, + 52.317683301 + ], + [ + 13.094599, + 52.316733601 + ], + [ + 13.09429, + 52.316403001 + ], + [ + 13.0940497, + 52.316135501 + ], + [ + 13.0938266, + 52.315841601 + ], + [ + 13.0926031, + 52.314007001 + ], + [ + 13.0922866, + 52.313535901 + ], + [ + 13.0920456, + 52.313150801 + ], + [ + 13.0918696, + 52.312885101 + ], + [ + 13.0900328, + 52.310111601 + ], + [ + 13.0893203, + 52.309026901 + ], + [ + 13.0892332, + 52.308891342 + ] + ] + } + }, + { + "identifier": "2026-016217--vi-bs.2026-03-31_08-00-00-000_021.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.40250995168817,13.187387704468438,52.308891342195,13.089233200168414", + "point": "52.40250995168817,13.187387704468438", + "startLcPosition": "7", + "impact": { + "lower": "Nuthetal", + "upper": "Dreilinden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "A115 | Dreilinden - Nuthetal", + "coordinate": { + "lat": 52.40250995168817, + "long": 13.187387704468438 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A115: Dreieck Funkturm -> Dreieck Nuthetal, zwischen 1.7 km hinter Dreilinden und 1.0 km vor AD Nuthetal", + "", + "L\u00e4nge: 13.5 km | Maximale Durchfahrtsbreite: 10.75 m", + "", + "A115 Stubben fr\u00e4sen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.187387704, + 52.402509952 + ], + [ + 13.1872834, + 52.402416801 + ], + [ + 13.1869906, + 52.402163401 + ], + [ + 13.1868249, + 52.402016901 + ], + [ + 13.1854649, + 52.400816001 + ], + [ + 13.184236, + 52.399741801 + ], + [ + 13.1833763, + 52.398952401 + ], + [ + 13.182966, + 52.398601701 + ], + [ + 13.1825474, + 52.398247401 + ], + [ + 13.1821097, + 52.397891301 + ], + [ + 13.1817835, + 52.397629401 + ], + [ + 13.1814917, + 52.397399001 + ], + [ + 13.1811904, + 52.397195201 + ], + [ + 13.1808091, + 52.396942201 + ], + [ + 13.1803723, + 52.396671401 + ], + [ + 13.1799188, + 52.396402501 + ], + [ + 13.1795605, + 52.396183901 + ], + [ + 13.1790885, + 52.395943001 + ], + [ + 13.1787194, + 52.395775401 + ], + [ + 13.178316, + 52.395597301 + ], + [ + 13.1779126, + 52.395429701 + ], + [ + 13.1775607, + 52.395288301 + ], + [ + 13.1771487, + 52.395126001 + ], + [ + 13.1767195, + 52.394968801 + ], + [ + 13.176256, + 52.394801201 + ], + [ + 13.1758183, + 52.394675501 + ], + [ + 13.1753806, + 52.394539401 + ], + [ + 13.1744278, + 52.394288001 + ], + [ + 13.168526, + 52.392860301 + ], + [ + 13.16065, + 52.390963201 + ], + [ + 13.1600169, + 52.390778601 + ], + [ + 13.1595791, + 52.390652901 + ], + [ + 13.1591671, + 52.390516701 + ], + [ + 13.1586436, + 52.390328201 + ], + [ + 13.1582488, + 52.390160501 + ], + [ + 13.1578196, + 52.389972001 + ], + [ + 13.1574248, + 52.389788601 + ], + [ + 13.1570557, + 52.389579101 + ], + [ + 13.1567639, + 52.389411501 + ], + [ + 13.1564892, + 52.389243901 + ], + [ + 13.1561888, + 52.389039601 + ], + [ + 13.155897, + 52.388824801 + ], + [ + 13.1556653, + 52.388636201 + ], + [ + 13.1554078, + 52.388437201 + ], + [ + 13.1551074, + 52.388164801 + ], + [ + 13.1549271, + 52.387960501 + ], + [ + 13.1547211, + 52.387745701 + ], + [ + 13.154475, + 52.387407301 + ], + [ + 13.1542719, + 52.387135201 + ], + [ + 13.1539892, + 52.386703801 + ], + [ + 13.1535756, + 52.386065701 + ], + [ + 13.153125, + 52.385382901 + ], + [ + 13.1510905, + 52.382266001 + ], + [ + 13.1508681, + 52.381941701 + ], + [ + 13.1507005, + 52.381643401 + ], + [ + 13.1505004, + 52.381292601 + ], + [ + 13.1503438, + 52.381008701 + ], + [ + 13.1502236, + 52.380757201 + ], + [ + 13.1501206, + 52.380510901 + ], + [ + 13.1500348, + 52.380311801 + ], + [ + 13.1499575, + 52.380018501 + ], + [ + 13.149867, + 52.379685801 + ], + [ + 13.1498328, + 52.379501901 + ], + [ + 13.14981, + 52.379312201 + ], + [ + 13.149747, + 52.378752701 + ], + [ + 13.149747, + 52.378438301 + ], + [ + 13.1498021, + 52.376776101 + ], + [ + 13.1498228, + 52.376150801 + ], + [ + 13.1498247, + 52.375553901 + ], + [ + 13.1498321, + 52.375028301 + ], + [ + 13.1498333, + 52.374944401 + ], + [ + 13.1498633, + 52.374048701 + ], + [ + 13.1498889, + 52.373215901 + ], + [ + 13.1499101, + 52.372038601 + ], + [ + 13.1499191, + 52.371421601 + ], + [ + 13.1499138, + 52.370646401 + ], + [ + 13.149874, + 52.370344301 + ], + [ + 13.1498225, + 52.370040401 + ], + [ + 13.1497538, + 52.369809801 + ], + [ + 13.1496337, + 52.369495401 + ], + [ + 13.1495307, + 52.369238601 + ], + [ + 13.1493762, + 52.368929401 + ], + [ + 13.1492337, + 52.368692101 + ], + [ + 13.1491252, + 52.368518701 + ], + [ + 13.1490844, + 52.368452501 + ], + [ + 13.1488976, + 52.368193501 + ], + [ + 13.1485697, + 52.367816101 + ], + [ + 13.1483668, + 52.367593401 + ], + [ + 13.1478489, + 52.367127701 + ], + [ + 13.147339, + 52.366740801 + ], + [ + 13.1469953, + 52.366498801 + ], + [ + 13.1466011, + 52.366246601 + ], + [ + 13.143165, + 52.364189101 + ], + [ + 13.1427033, + 52.363851801 + ], + [ + 13.1422127, + 52.363427601 + ], + [ + 13.1418391, + 52.363039901 + ], + [ + 13.1415031, + 52.362649901 + ], + [ + 13.1413922, + 52.362502201 + ], + [ + 13.1410082, + 52.361931701 + ], + [ + 13.1407943, + 52.361472701 + ], + [ + 13.1405827, + 52.360896501 + ], + [ + 13.1404641, + 52.360373601 + ], + [ + 13.1404284, + 52.359925301 + ], + [ + 13.1404958, + 52.356941201 + ], + [ + 13.1405413, + 52.354926301 + ], + [ + 13.140578, + 52.353385701 + ], + [ + 13.1406194, + 52.351645001 + ], + [ + 13.1407834, + 52.344743101 + ], + [ + 13.140714, + 52.344028401 + ], + [ + 13.1406022, + 52.343477701 + ], + [ + 13.1403983, + 52.342881101 + ], + [ + 13.1401535, + 52.342264401 + ], + [ + 13.1398244, + 52.341686101 + ], + [ + 13.139188, + 52.340732701 + ], + [ + 13.1384951, + 52.339935301 + ], + [ + 13.1379847, + 52.339456901 + ], + [ + 13.1374013, + 52.338959201 + ], + [ + 13.1368296, + 52.338527801 + ], + [ + 13.136214, + 52.338100201 + ], + [ + 13.1354419, + 52.337664701 + ], + [ + 13.1345545, + 52.337205301 + ], + [ + 13.1335418, + 52.336762601 + ], + [ + 13.1327081, + 52.336446201 + ], + [ + 13.131242, + 52.335995101 + ], + [ + 13.1270709, + 52.334777601 + ], + [ + 13.1261492, + 52.334515501 + ], + [ + 13.1228273, + 52.333566001 + ], + [ + 13.122464, + 52.333463401 + ], + [ + 13.1198868, + 52.332713601 + ], + [ + 13.1175759, + 52.332045801 + ], + [ + 13.1150301, + 52.331318101 + ], + [ + 13.1141781, + 52.331074501 + ], + [ + 13.1129227, + 52.330715601 + ], + [ + 13.1120751, + 52.330468601 + ], + [ + 13.1111173, + 52.330186701 + ], + [ + 13.1110207, + 52.330155001 + ], + [ + 13.1105379, + 52.330001501 + ], + [ + 13.1100616, + 52.329831001 + ], + [ + 13.1096263, + 52.329662101 + ], + [ + 13.1090162, + 52.329411001 + ], + [ + 13.1087335, + 52.329270301 + ], + [ + 13.108301, + 52.329058701 + ], + [ + 13.1079028, + 52.328846801 + ], + [ + 13.1075251, + 52.328637001 + ], + [ + 13.1071732, + 52.328421901 + ], + [ + 13.106787, + 52.328180601 + ], + [ + 13.1064523, + 52.327939301 + ], + [ + 13.1061347, + 52.327682301 + ], + [ + 13.1057999, + 52.327414801 + ], + [ + 13.1052335, + 52.326895501 + ], + [ + 13.1035154, + 52.325262401 + ], + [ + 13.102157, + 52.323971401 + ], + [ + 13.1017074, + 52.323547201 + ], + [ + 13.1003411, + 52.322242401 + ], + [ + 13.0977075, + 52.319725601 + ], + [ + 13.0973426, + 52.319374901 + ], + [ + 13.0960906, + 52.318178101 + ], + [ + 13.0955797, + 52.317683301 + ], + [ + 13.094599, + 52.316733601 + ], + [ + 13.09429, + 52.316403001 + ], + [ + 13.0940497, + 52.316135501 + ], + [ + 13.0938266, + 52.315841601 + ], + [ + 13.0926031, + 52.314007001 + ], + [ + 13.0922866, + 52.313535901 + ], + [ + 13.0920456, + 52.313150801 + ], + [ + 13.0918696, + 52.312885101 + ], + [ + 13.0900328, + 52.310111601 + ], + [ + 13.0893203, + 52.309026901 + ], + [ + 13.0892332, + 52.308891342 + ] + ] + } + }, + { + "identifier": "2023-001175--vi-bs.2025-03-17_07-00-00-000.devi-zus.2024-08-26_06-00-00-000.f_001.de37", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.412921257495775,13.197315825728863,52.40841554069265,13.19407990199382", + "point": "52.412921257495775,13.197315825728863", + "startLcPosition": "7", + "impact": { + "lower": "Kleinmachnow", + "upper": "Dreilinden", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "A115 | Dreilinden - Kleinmachnow", + "startTimestamp": "2025-03-17T07:00:00+01:00", + "coordinate": { + "lat": 52.412921257495775, + "long": 13.197315825728863 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.03.25 um 07:00 Uhr", + "Ende: 30.07.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.08.26)", + "", + "A115: Dreieck Funkturm -> Dreieck Nuthetal, zwischen 0.3 km hinter Dreilinden und 0.8 km vor AS Kleinmachnow", + "", + "L\u00e4nge: 0.56 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A115 Erneuerung zw. Landesgrenze BB, BER und AS Spanische Allee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.197315826, + 52.412921257 + ], + [ + 13.1973112, + 52.412859401 + ], + [ + 13.1972083, + 52.412336201 + ], + [ + 13.1971225, + 52.412027301 + ], + [ + 13.196957, + 52.411619001 + ], + [ + 13.196762, + 52.411231501 + ], + [ + 13.1964359, + 52.410718501 + ], + [ + 13.196247, + 52.410467101 + ], + [ + 13.1960582, + 52.410226301 + ], + [ + 13.1957578, + 52.409933101 + ], + [ + 13.1954746, + 52.409650401 + ], + [ + 13.1949983, + 52.409231501 + ], + [ + 13.194079902, + 52.408415541 + ] + ] + } + }, + { + "identifier": "2023-001175--vi-bs.2025-03-17_07-00-00-000.devi-zus.2024-08-26_06-00-00-000.f_001.de41", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.42989640221609,13.191706430810592,52.44297689197215,13.20359693187113", + "point": "52.42989640221609,13.191706430810592", + "startLcPosition": "8", + "impact": { + "lower": "H\u00fcttenweg", + "upper": "Kreuz Zehlendorf", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Nuthetal -> Dreieck Funkturm", + "title": "A115 | Kreuz Zehlendorf - H\u00fcttenweg", + "startTimestamp": "2025-03-17T07:00:00+01:00", + "coordinate": { + "lat": 52.42989640221609, + "long": 13.191706430810592 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.03.25 um 07:00 Uhr", + "Ende: 30.07.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.08.26)", + "", + "A115: Dreieck Nuthetal -> Dreieck Funkturm, zwischen 1.1 km hinter AS Kreuz Zehlendorf und 3.7 km vor AS H\u00fcttenweg", + "", + "L\u00e4nge: 1.71 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A115 Erneuerung zw. Landesgrenze BB, BER und AS Spanische Allee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.191706431, + 52.429896402 + ], + [ + 13.1918505, + 52.430481201 + ], + [ + 13.1920488, + 52.431286101 + ], + [ + 13.1920694, + 52.431379901 + ], + [ + 13.1921876, + 52.431879301 + ], + [ + 13.1923052, + 52.432331401 + ], + [ + 13.1923256, + 52.432409801 + ], + [ + 13.1923663, + 52.432566201 + ], + [ + 13.1924756, + 52.433010901 + ], + [ + 13.1926103, + 52.433460201 + ], + [ + 13.192727, + 52.433786101 + ], + [ + 13.1928825, + 52.434071001 + ], + [ + 13.1931412, + 52.434473101 + ], + [ + 13.1933773, + 52.434767801 + ], + [ + 13.1935998, + 52.435003901 + ], + [ + 13.1937807, + 52.435179301 + ], + [ + 13.194033, + 52.435400301 + ], + [ + 13.1941907, + 52.435532401 + ], + [ + 13.1943468, + 52.435659301 + ], + [ + 13.1954145, + 52.436501701 + ], + [ + 13.1959083, + 52.436892701 + ], + [ + 13.1964308, + 52.437308501 + ], + [ + 13.1969358, + 52.437705201 + ], + [ + 13.197435, + 52.438097301 + ], + [ + 13.1979927, + 52.438535301 + ], + [ + 13.1984916, + 52.438927101 + ], + [ + 13.1995306, + 52.439743101 + ], + [ + 13.2003583, + 52.440394601 + ], + [ + 13.2008027, + 52.440763301 + ], + [ + 13.2010319, + 52.440943501 + ], + [ + 13.2030433, + 52.442538601 + ], + [ + 13.203596932, + 52.442976892 + ] + ] + } + }, + { + "identifier": "2023-001175--vi-fbm.2026-04-13_07-00-00-000.devi-zus.2024-08-26_06-00-00-000.f_001.de110", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.41786302271143,13.196374006240653,52.41630553709069,13.196820711765103", + "point": "52.41786302271143,13.196374006240653", + "startLcPosition": "8", + "impact": { + "lower": "Dreilinden", + "upper": "Kreuz Zehlendorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "A115 | Kreuz Zehlendorf - Dreilinden", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.41786302271143, + "long": 13.196374006240653 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 21.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.08.26)", + "", + "A115: Dreieck Funkturm -> Dreieck Nuthetal, zwischen 0.3 km hinter AS Kreuz Zehlendorf und 0.1 km vor Dreilinden", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A115 Erneuerung zw. Landesgrenze BB, BER und AS Spanische Allee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.196374006, + 52.417863023 + ], + [ + 13.1964078, + 52.417750601 + ], + [ + 13.196603, + 52.417323101 + ], + [ + 13.1967189, + 52.416772601 + ], + [ + 13.196794, + 52.416416101 + ], + [ + 13.196820712, + 52.416305537 + ] + ] + } + }, + { + "identifier": "2026-017273--vi-bs.2026-04-16_22-00-00-000.devi-bs.2026-04-16_22-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.467139634888284,13.234157803100922,52.467853004862675,13.235053084207866", + "point": "52.467139634888284,13.234157803100922", + "startLcPosition": "10", + "impact": { + "lower": "H\u00fcttenweg", + "upper": "Grunewald", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Nuthetal -> Dreieck Funkturm", + "title": "A115 | Grunewald - H\u00fcttenweg", + "coordinate": { + "lat": 52.467139634888284, + "long": 13.234157803100922 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 22:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A115: Dreieck Nuthetal -> Dreieck Funkturm, zwischen 4.6 km hinter Grunewald und 0.2 km vor AS H\u00fcttenweg", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A115 von Grunewald nach H\u00fcttenweg (AS) Arbeiten an Schutzplanken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.234157803, + 52.467139635 + ], + [ + 13.23465, + 52.467523101 + ], + [ + 13.234857, + 52.467697801 + ], + [ + 13.235053084, + 52.467853005 + ] + ] + } + }, + { + "identifier": "2023-001175--vi-bs.2025-03-17_07-00-00-000.devi-zus.2024-08-26_06-00-00-000.f_001.de39", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.44306595669879,13.203408238711331,52.429913683961864,13.19151991632356", + "point": "52.44306595669879,13.203408238711331", + "startLcPosition": "11", + "impact": { + "lower": "Kreuz Zehlendorf", + "upper": "H\u00fcttenweg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreieck Funkturm -> Dreieck Nuthetal", + "title": "A115 | H\u00fcttenweg - Kreuz Zehlendorf", + "startTimestamp": "2025-03-17T07:00:00+01:00", + "coordinate": { + "lat": 52.44306595669879, + "long": 13.203408238711331 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.03.25 um 07:00 Uhr", + "Ende: 30.07.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.08.26)", + "", + "A115: Dreieck Funkturm -> Dreieck Nuthetal, zwischen 3.7 km hinter AS H\u00fcttenweg und 1.1 km vor AS Kreuz Zehlendorf", + "", + "L\u00e4nge: 1.71 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A115 Erneuerung zw. Landesgrenze BB, BER und AS Spanische Allee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.203408239, + 52.443065957 + ], + [ + 13.2029026, + 52.442666201 + ], + [ + 13.2008404, + 52.441029401 + ], + [ + 13.2006137, + 52.440848101 + ], + [ + 13.199285, + 52.439800601 + ], + [ + 13.1966157, + 52.437683601 + ], + [ + 13.1957549, + 52.436995101 + ], + [ + 13.1953936, + 52.436717401 + ], + [ + 13.1943862, + 52.435923801 + ], + [ + 13.1941008, + 52.435688401 + ], + [ + 13.1937749, + 52.435411301 + ], + [ + 13.1935552, + 52.435202901 + ], + [ + 13.1933972, + 52.435055401 + ], + [ + 13.1932723, + 52.434910001 + ], + [ + 13.1930296, + 52.434621001 + ], + [ + 13.1928618, + 52.434373001 + ], + [ + 13.1926955, + 52.434084701 + ], + [ + 13.1926068, + 52.433938901 + ], + [ + 13.1925253, + 52.433764201 + ], + [ + 13.1923956, + 52.433393901 + ], + [ + 13.1923399, + 52.433216801 + ], + [ + 13.1922864, + 52.433021201 + ], + [ + 13.1921572, + 52.432485201 + ], + [ + 13.1921312, + 52.432399701 + ], + [ + 13.1919966, + 52.431867101 + ], + [ + 13.1916808, + 52.430557101 + ], + [ + 13.191519916, + 52.429913684 + ] + ] + } + }, + { + "identifier": "2026-017273--vi-bs.2026-04-16_22-00-00-000.devi-bs.2026-04-16_22-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.47068220762942,13.238636976438338,52.471345203928976,13.239470883202985", + "point": "52.47068220762942,13.238636976438338", + "startLcPosition": "11", + "impact": { + "lower": "Avus", + "upper": "H\u00fcttenweg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Nuthetal -> Dreieck Funkturm", + "title": "A115 | H\u00fcttenweg - Avus", + "coordinate": { + "lat": 52.47068220762942, + "long": 13.238636976438338 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 22:00 bis zum 17.04.26 05:00 Uhr.", + "", + "A115: Dreieck Nuthetal -> Dreieck Funkturm, zwischen 0.2 km hinter AS H\u00fcttenweg und 4.0 km vor Avus", + "", + "L\u00e4nge: 0.09 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A115 von Grunewald nach H\u00fcttenweg (AS) Arbeiten an Schutzplanken" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.238636976, + 52.470682208 + ], + [ + 13.2393194, + 52.471222901 + ], + [ + 13.239470883, + 52.471345204 + ] + ] + } + }, + { + "identifier": "2026-015375--vi-bs.2026-04-08_21-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "52.47488408256637,13.243635345495388,52.48829569184452,13.259623260036282", + "point": "52.47488408256637,13.243635345495388", + "startLcPosition": "11", + "impact": { + "lower": "Avus", + "upper": "H\u00fcttenweg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Nuthetal -> Dreieck Funkturm", + "title": "A115 | H\u00fcttenweg - Avus", + "coordinate": { + "lat": 52.47488408256637, + "long": 13.243635345495388 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 21:00 bis zum 10.04.26 05:00 Uhr.", + "", + "A115: Dreieck Nuthetal -> Dreieck Funkturm, zwischen 0.8 km hinter AS H\u00fcttenweg und 1.7 km vor Avus", + "", + "L\u00e4nge: 1.85 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A115 von H\u00fcttenweg (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.243635345, + 52.474884083 + ], + [ + 13.244918, + 52.476018201 + ], + [ + 13.2496964, + 52.480260301 + ], + [ + 13.2508014, + 52.481239001 + ], + [ + 13.251708, + 52.482016901 + ], + [ + 13.252597, + 52.482751401 + ], + [ + 13.2566423, + 52.485941401 + ], + [ + 13.2568748, + 52.486134201 + ], + [ + 13.2594048, + 52.488124401 + ], + [ + 13.25962326, + 52.488295692 + ] + ] + } + }, + { + "identifier": "2026-013807--vi-bs.2026-03-23_07-00-00-000_014.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.41783071025981,13.196914381631135,52.41846971529671,13.197145949156274", + "point": "52.41783071025981,13.196914381631135", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreilinden (aus Richtung Kleinmachnow)", + "title": "A115 Unterhaltungsarbeiten - Sp\u00fclbohrungen", + "startTimestamp": "2026-03-23T07:00:00+01:00", + "coordinate": { + "lat": 52.41783071025981, + "long": 13.196914381631135 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 07:00 Uhr", + "Ende: 24.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.04.26)", + "", + "Abfahrt von der A115: Dreilinden (aus Richtung Kleinmachnow)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3 m", + "", + "A115 Unterhaltungsarbeiten - Sp\u00fclbohrungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.196914382, + 52.41783071 + ], + [ + 13.1969249, + 52.417868201 + ], + [ + 13.1969685, + 52.418018801 + ], + [ + 13.1970266, + 52.418199401 + ], + [ + 13.1970955, + 52.418381401 + ], + [ + 13.197145949, + 52.418469715 + ] + ] + } + }, + { + "identifier": "2023-001175--vi-fbm.2026-04-13_07-00-00-000.devi-zus.2024-08-26_06-00-00-000.f_001.de108", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.41845757807929,13.195762773782022,52.417971961645385,13.19626424575255", + "point": "52.41845757807929,13.195762773782022", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dreilinden (aus Richtung Kreuz Zehlendorf)", + "title": "A115 Erneuerung zw. Landesgrenze BB, BER und AS Spanische Allee", + "startTimestamp": "2026-04-13T07:00:00+02:00", + "coordinate": { + "lat": 52.41845757807929, + "long": 13.195762773782022 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 07:00 Uhr", + "Ende: 21.05.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.08.26)", + "", + "Auffahrt auf die A115: Dreilinden (aus Richtung Kreuz Zehlendorf)", + "", + "L\u00e4nge: 0.07 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A115 Erneuerung zw. Landesgrenze BB, BER und AS Spanische Allee" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.195762774, + 52.418457578 + ], + [ + 13.1960134, + 52.418286601 + ], + [ + 13.1961207, + 52.418156701 + ], + [ + 13.1962316, + 52.418022301 + ], + [ + 13.196264246, + 52.417971962 + ] + ] + } + }, + { + "identifier": "2025-047464--vi-fbm.2025-11-26_07-00-00-000_001.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.43459406236645,13.192632792959287,52.43380953085592,13.19203090479515", + "point": "52.43459406236645,13.192632792959287", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Spanische Allee (aus Richtung Grunewald)", + "title": "A115 \u00c4nderung Verkehrsf\u00fchrung", + "startTimestamp": "2025-11-26T07:00:00+01:00", + "coordinate": { + "lat": 52.43459406236645, + "long": 13.192632792959287 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.11.25 um 07:00 Uhr", + "Ende: 30.04.26 um 16:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.04.26)", + "", + "Auffahrt auf die A115: AS Spanische Allee (aus Richtung Grunewald)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 7.15 m", + "", + "A115 \u00c4nderung Verkehrsf\u00fchrung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.192632793, + 52.434594062 + ], + [ + 13.1925821, + 52.434549401 + ], + [ + 13.1923101, + 52.434235901 + ], + [ + 13.1921021, + 52.433925701 + ], + [ + 13.1920439, + 52.433830301 + ], + [ + 13.1920343, + 52.433814501 + ], + [ + 13.192030905, + 52.433809531 + ] + ] + } + } + ] + }, + "A117": { + "roadworks": [ + { + "identifier": "2026-016141--vi-bs.2026-04-13_10-00-00-000.devi-bs.2026-04-13_09-00-00-000_005.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "52.36573792356388,13.552676567949883,52.37647779660451,13.561704754114722", + "point": "52.36573792356388,13.552676567949883", + "startLcPosition": "0", + "impact": { + "lower": "Waldeck-West", + "upper": "Waltersdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Waltersdorfer Dreieck -> Treptow", + "title": "A117 | Waltersdorf - Waldeck-West", + "coordinate": { + "lat": 52.36573792356388, + "long": 13.552676567949883 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 10:00 bis 18:15 Uhr", + "14.04.26 von 08:00 bis 18:00 Uhr", + "15.04.26 von 08:00 bis 18:00 Uhr", + "16.04.26 von 08:00 bis 18:00 Uhr", + "17.04.26 von 08:00 bis 12:00 Uhr", + "", + "A117: Waltersdorfer Dreieck -> Treptow, zwischen 0.3 km hinter AD Waltersdorf und 0.1 km vor Waldeck-West", + "", + "L\u00e4nge: 1.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A117 A113 (AD Waltersdorf) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.552676568, + 52.365737924 + ], + [ + 13.5527385, + 52.365790101 + ], + [ + 13.5529128, + 52.365957901 + ], + [ + 13.5532242, + 52.366331201 + ], + [ + 13.5538976, + 52.367106601 + ], + [ + 13.5543228, + 52.367595601 + ], + [ + 13.554415, + 52.367689701 + ], + [ + 13.5550486, + 52.368336301 + ], + [ + 13.5560567, + 52.369317301 + ], + [ + 13.5583634, + 52.371549401 + ], + [ + 13.5584476, + 52.371633401 + ], + [ + 13.5588694, + 52.372086001 + ], + [ + 13.5592686, + 52.372540801 + ], + [ + 13.5596456, + 52.373002701 + ], + [ + 13.5600017, + 52.373469301 + ], + [ + 13.5603828, + 52.374010501 + ], + [ + 13.5607414, + 52.374573701 + ], + [ + 13.5609165, + 52.374885001 + ], + [ + 13.5613033, + 52.375573001 + ], + [ + 13.5615194, + 52.376023301 + ], + [ + 13.561596, + 52.376210801 + ], + [ + 13.5616916, + 52.376444801 + ], + [ + 13.561704754, + 52.376477797 + ] + ] + } + }, + { + "identifier": "2023-004722--vi-bs.2025-07-25_17-00-00-000.devi-zus.2023-11-13_08-00-00-000_064.f.de70", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.37665227043227,13.561774309846488,52.39035987342868,13.56490215960344", + "point": "52.37665227043227,13.561774309846488", + "startLcPosition": "1", + "impact": { + "lower": "Treptow", + "upper": "Waltersdorf", + "symbols": [ + "ARROW_UP", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Waltersdorfer Dreieck -> Treptow", + "title": "A117 | Waltersdorf - Treptow", + "startTimestamp": "2025-07-25T17:00:00+02:00", + "coordinate": { + "lat": 52.37665227043227, + "long": 13.561774309846488 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.07.25 um 17:00 Uhr", + "Ende: 12.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.26)", + "", + "A117: Waltersdorfer Dreieck -> Treptow, zwischen 1.3 km hinter AS Waltersdorf und 1.4 km vor AD Treptow", + "", + "L\u00e4nge: 1.54 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A117 Neubau einer Anschlussstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.56177431, + 52.37665227 + ], + [ + 13.5618405, + 52.376818301 + ], + [ + 13.561981, + 52.377201501 + ], + [ + 13.5620657, + 52.377477901 + ], + [ + 13.5621465, + 52.377759201 + ], + [ + 13.5623022, + 52.378336201 + ], + [ + 13.5624352, + 52.378896501 + ], + [ + 13.5626576, + 52.379846701 + ], + [ + 13.562754, + 52.380449501 + ], + [ + 13.5630979, + 52.382186501 + ], + [ + 13.5631681, + 52.382541301 + ], + [ + 13.5634177, + 52.383830201 + ], + [ + 13.5635192, + 52.384354501 + ], + [ + 13.5635818, + 52.384654801 + ], + [ + 13.563926, + 52.386411001 + ], + [ + 13.564127, + 52.387515701 + ], + [ + 13.5641867, + 52.387786701 + ], + [ + 13.564265, + 52.388114801 + ], + [ + 13.5642711, + 52.388140501 + ], + [ + 13.5644655, + 52.388968801 + ], + [ + 13.5645801, + 52.389386201 + ], + [ + 13.5647455, + 52.389887101 + ], + [ + 13.5648727, + 52.390255901 + ], + [ + 13.56490216, + 52.390359873 + ] + ] + } + }, + { + "identifier": "2023-004722--vi-bs.2025-07-25_17-00-00-000.devi-zus.2023-11-13_08-00-00-000_064.f.de68", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.37269005011024,13.55939041539819,52.37665227043227,13.56177430984649", + "point": "52.37269005011024,13.55939041539819", + "startLcPosition": "1", + "impact": { + "lower": "Waldeck-West", + "upper": "Waltersdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Waltersdorfer Dreieck -> Treptow", + "title": "A117 | Waltersdorf - Waldeck-West", + "startTimestamp": "2025-07-25T17:00:00+02:00", + "coordinate": { + "lat": 52.37269005011024, + "long": 13.55939041539819 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.07.25 um 17:00 Uhr", + "Ende: 12.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.26)", + "", + "A117: Waltersdorfer Dreieck -> Treptow, zwischen 0.8 km hinter AS Waltersdorf und 0.1 km vor Waldeck-West", + "", + "L\u00e4nge: 0.47 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A117 Neubau einer Anschlussstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.559390415, + 52.37269005 + ], + [ + 13.5596456, + 52.373002701 + ], + [ + 13.5600017, + 52.373469301 + ], + [ + 13.5603828, + 52.374010501 + ], + [ + 13.5607414, + 52.374573701 + ], + [ + 13.5609165, + 52.374885001 + ], + [ + 13.5613033, + 52.375573001 + ], + [ + 13.5615194, + 52.376023301 + ], + [ + 13.561596, + 52.376210801 + ], + [ + 13.5616916, + 52.376444801 + ], + [ + 13.56177431, + 52.37665227 + ] + ] + } + }, + { + "identifier": "2023-004722--vi-bs.2025-07-25_17-00-00-000.devi-zus.2023-11-13_08-00-00-000_064.f.de73", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.39035987342868,13.56490215960344,52.39160566532893,13.5651049000862", + "point": "52.39035987342868,13.56490215960344", + "startLcPosition": "3", + "impact": { + "lower": "Treptow", + "upper": "Waldeck-Ost", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Waltersdorfer Dreieck -> Treptow", + "title": "A117 | Waldeck-Ost - Treptow", + "startTimestamp": "2025-07-25T17:00:00+02:00", + "coordinate": { + "lat": 52.39035987342868, + "long": 13.56490215960344 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 25.07.25 um 17:00 Uhr", + "Ende: 12.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.06.26)", + "", + "A117: Waltersdorfer Dreieck -> Treptow, zwischen 1.4 km hinter Waldeck-Ost und 1.3 km vor AD Treptow", + "", + "L\u00e4nge: 0.14 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 5 m", + "", + "A117 Neubau einer Anschlussstelle" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 13.56490216, + 52.390359873 + ], + [ + 13.5649904, + 52.390671301 + ], + [ + 13.5650384, + 52.390878801 + ], + [ + 13.5650714, + 52.391021601 + ], + [ + 13.5651049, + 52.391368201 + ], + [ + 13.5651049, + 52.391605665 + ] + ] + } + } + ] + }, + "A143": { + "roadworks": [ + { + "identifier": "2026-017735--vi-bs.2026-04-16_08-00-00-000.devi-zus.2026-05-13_08-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.430438421636275,11.864646869219527,51.431337198503776,11.864711012181237", + "point": "51.430438421636275,11.864646869219527", + "startLcPosition": "1", + "impact": { + "lower": "Teutschenthal", + "upper": "Holleben", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle-S\u00fcd -> Halle Nord", + "title": "A143 | Holleben - Teutschenthal", + "coordinate": { + "lat": 51.430438421636275, + "long": 11.864646869219527 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.05.26 von 08:00 bis 17:00 Uhr", + "14.05.26 von 08:00 bis 17:00 Uhr", + "15.05.26 von 08:00 bis 12:00 Uhr", + "", + "A143: Halle-S\u00fcd -> Halle Nord, zwischen 0.4 km hinter AS Holleben und 2.3 km vor AS Teutschenthal", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A143 von Holleben (AS) nach Teutschenthal (AS) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.864646869, + 51.430438422 + ], + [ + 11.8646759, + 51.430780501 + ], + [ + 11.864711012, + 51.431337199 + ] + ] + } + }, + { + "identifier": "2026-017735--vi-bs.2026-04-16_08-00-00-000.devi-zus.2026-05-13_08-00-00-000_001.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.431341175548575,11.86454130290726,51.4304440028882,11.864480651191274", + "point": "51.431341175548575,11.86454130290726", + "startLcPosition": "2", + "impact": { + "lower": "Holleben", + "upper": "Teutschenthal", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Halle Nord -> Halle-S\u00fcd", + "title": "A143 | Teutschenthal - Holleben", + "coordinate": { + "lat": 51.431341175548575, + "long": 11.86454130290726 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.05.26 von 08:00 bis 17:00 Uhr", + "14.05.26 von 08:00 bis 17:00 Uhr", + "15.05.26 von 08:00 bis 12:00 Uhr", + "", + "A143: Halle Nord -> Halle-S\u00fcd, zwischen 2.3 km hinter AS Teutschenthal und 0.4 km vor AS Holleben", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4 m", + "", + "A143 von Holleben (AS) nach Teutschenthal (AS) Beschilderungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.864541303, + 51.431341176 + ], + [ + 11.8645122, + 51.430802901 + ], + [ + 11.864480651, + 51.430444003 + ] + ] + } + } + ] + }, + "A210": { + "roadworks": [] + }, + "A215": { + "roadworks": [ + { + "identifier": "2025-017334--vi-fbm.2026-04-16_07-00-00-000.devi-bs.2026-04-13_00-00-00-000.de54", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "54.31074067624497,10.071938798941273,54.30807866961708,10.059653527076227", + "point": "54.31074067624497,10.071938798941273", + "startLcPosition": "6", + "impact": { + "lower": "Kiel-West", + "upper": "Kiel-Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Kiel -> Neum\u00fcnster", + "title": "A215 | Kiel-Mitte - Kiel-West", + "coordinate": { + "lat": 54.31074067624497, + "long": 10.071938798941273 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 07:00 bis 18:00 Uhr", + "20.04.26 von 06:00 bis 18:00 Uhr", + "", + "A215: Kiel -> Neum\u00fcnster, zwischen 2.1 km hinter AS Kiel-Mitte und 0.3 km vor AK Kiel-West", + "", + "L\u00e4nge: 0.87 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A210_A215, Bereich AK Kiel West, von AS Melsdorf und AS Blumenthal Rifa Kiel und zur\u00fcck, Deckenerneuerung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.071938799, + 54.310740676 + ], + [ + 10.071314, + 54.310687901 + ], + [ + 10.0705933, + 54.310629101 + ], + [ + 10.0694167, + 54.310541801 + ], + [ + 10.0686394, + 54.310477001 + ], + [ + 10.0681052, + 54.310432201 + ], + [ + 10.0678071, + 54.310400201 + ], + [ + 10.0675902, + 54.310376901 + ], + [ + 10.0669491, + 54.310301801 + ], + [ + 10.066486, + 54.310236401 + ], + [ + 10.0659767, + 54.310154201 + ], + [ + 10.0651429, + 54.309999601 + ], + [ + 10.0646934, + 54.309911801 + ], + [ + 10.0641863, + 54.309788901 + ], + [ + 10.063854, + 54.309710601 + ], + [ + 10.0636094, + 54.309648601 + ], + [ + 10.063067, + 54.309501701 + ], + [ + 10.0626027, + 54.309355901 + ], + [ + 10.0624176, + 54.309294801 + ], + [ + 10.0619493, + 54.309126801 + ], + [ + 10.0617145, + 54.309038301 + ], + [ + 10.0614297, + 54.308926401 + ], + [ + 10.060983, + 54.308737201 + ], + [ + 10.0608559, + 54.308679001 + ], + [ + 10.0604399, + 54.308488501 + ], + [ + 10.0601311, + 54.308333501 + ], + [ + 10.0598138, + 54.308166701 + ], + [ + 10.059653527, + 54.30807867 + ] + ] + } + }, + { + "identifier": "2025-017334--vi-bs.2026-04-17_00-00-00-000.devi-bs.2026-04-13_00-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "54.310979686150525,10.073912739080422,54.3061610117923,10.05687432761592", + "point": "54.310979686150525,10.073912739080422", + "startLcPosition": "6", + "impact": { + "lower": "Kiel-West", + "upper": "Kiel-Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Kiel -> Neum\u00fcnster", + "title": "A215 | Kiel-Mitte - Kiel-West", + "startTimestamp": "2026-04-17T00:00:00+02:00", + "coordinate": { + "lat": 54.310979686150525, + "long": 10.073912739080422 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 17.04.26 um 00:00 Uhr", + "Ende: 16.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.26)", + "", + "A215: Kiel -> Neum\u00fcnster, zwischen 2.0 km hinter AS Kiel-Mitte und AK Kiel-West", + "", + "L\u00e4nge: 1.28 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A210_A215, Bereich AK Kiel West, von AS Melsdorf und AS Blumenthal Rifa Kiel und zur\u00fcck, Deckenerneuerung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.073912739, + 54.310979686 + ], + [ + 10.0738721, + 54.310973301 + ], + [ + 10.0725978, + 54.310804801 + ], + [ + 10.0720563, + 54.310750601 + ], + [ + 10.071314, + 54.310687901 + ], + [ + 10.0705933, + 54.310629101 + ], + [ + 10.0694167, + 54.310541801 + ], + [ + 10.0686394, + 54.310477001 + ], + [ + 10.0681052, + 54.310432201 + ], + [ + 10.0678071, + 54.310400201 + ], + [ + 10.0675902, + 54.310376901 + ], + [ + 10.0669491, + 54.310301801 + ], + [ + 10.066486, + 54.310236401 + ], + [ + 10.0659767, + 54.310154201 + ], + [ + 10.0651429, + 54.309999601 + ], + [ + 10.0646934, + 54.309911801 + ], + [ + 10.0641863, + 54.309788901 + ], + [ + 10.063854, + 54.309710601 + ], + [ + 10.0636094, + 54.309648601 + ], + [ + 10.063067, + 54.309501701 + ], + [ + 10.0626027, + 54.309355901 + ], + [ + 10.0624176, + 54.309294801 + ], + [ + 10.0619493, + 54.309126801 + ], + [ + 10.0617145, + 54.309038301 + ], + [ + 10.0614297, + 54.308926401 + ], + [ + 10.060983, + 54.308737201 + ], + [ + 10.0608559, + 54.308679001 + ], + [ + 10.0604399, + 54.308488501 + ], + [ + 10.0601311, + 54.308333501 + ], + [ + 10.0598138, + 54.308166701 + ], + [ + 10.059353, + 54.307913601 + ], + [ + 10.0588267, + 54.307597301 + ], + [ + 10.0583816, + 54.307303901 + ], + [ + 10.0578352, + 54.306926201 + ], + [ + 10.0575843, + 54.306738601 + ], + [ + 10.0573606, + 54.306561901 + ], + [ + 10.0570696, + 54.306323301 + ], + [ + 10.056874328, + 54.306161012 + ] + ] + } + } + ] + }, + "A226": { + "roadworks": [ + { + "identifier": "2026-005461--vi-bs.2026-02-10_00-00-00-000.devi-zus.2026-02-10_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.91222551093981,10.75939956976685,53.91180257760322,10.76074072073773", + "point": "53.91222551093981,10.75939956976685", + "startLcPosition": "1", + "impact": { + "lower": "L\u00fcbeck-Siems", + "upper": "L\u00fcbeck-D\u00e4nischburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bad Schwartau -> Travem\u00fcnde", + "title": "A226 | L\u00fcbeck-D\u00e4nischburg - L\u00fcbeck-Siems", + "startTimestamp": "2026-02-10T00:00:00+01:00", + "coordinate": { + "lat": 53.91222551093981, + "long": 10.75939956976685 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.02.26 um 00:00 Uhr", + "Ende: 08.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.06.26)", + "", + "A226: Bad Schwartau -> Travem\u00fcnde, zwischen 1.7 km hinter AS L\u00fcbeck-D\u00e4nischburg und 1.4 km vor AS L\u00fcbeck-Siems", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A226, AS L\u00fcbeck-D\u00e4nischburg nach As L\u00fcbeck-Siems, Br\u00fcckeninstandsetzung der Deutschen Bahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.75939957, + 53.912225511 + ], + [ + 10.7597006, + 53.912133701 + ], + [ + 10.7601749, + 53.911982901 + ], + [ + 10.760740721, + 53.911802578 + ] + ] + } + }, + { + "identifier": "2026-005461--vi-bs.2026-02-10_00-00-00-000.devi-zus.2026-02-10_00-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.91191340631789,10.760809673896674,53.91234439557561,10.759433004752372", + "point": "53.91191340631789,10.760809673896674", + "startLcPosition": "2", + "impact": { + "lower": "L\u00fcbeck-D\u00e4nischburg", + "upper": "L\u00fcbeck-Siems", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Travem\u00fcnde -> Bad Schwartau", + "title": "A226 | L\u00fcbeck-Siems - L\u00fcbeck-D\u00e4nischburg", + "startTimestamp": "2026-02-10T00:00:00+01:00", + "coordinate": { + "lat": 53.91191340631789, + "long": 10.760809673896674 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.02.26 um 00:00 Uhr", + "Ende: 21.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.06.26)", + "", + "A226: Travem\u00fcnde -> Bad Schwartau, zwischen 1.4 km hinter AS L\u00fcbeck-Siems und 1.6 km vor AS L\u00fcbeck-D\u00e4nischburg", + "", + "L\u00e4nge: 0.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.5 m", + "", + "A226, AS L\u00fcbeck-D\u00e4nischburg nach As L\u00fcbeck-Siems, Br\u00fcckeninstandsetzung der Deutschen Bahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.760809674, + 53.911913406 + ], + [ + 10.7605831, + 53.911988601 + ], + [ + 10.7600792, + 53.912139001 + ], + [ + 10.7594484, + 53.912339901 + ], + [ + 10.759433005, + 53.912344396 + ] + ] + } + }, + { + "identifier": "2026-005461--vi-bs.2026-04-21_00-00-00-000.devi-zus.2026-02-10_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.911825338294,10.761075034914366,53.91234041412147,10.759446642154924", + "point": "53.911825338294,10.761075034914366", + "startLcPosition": "2", + "impact": { + "lower": "L\u00fcbeck-D\u00e4nischburg", + "upper": "L\u00fcbeck-Siems", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Travem\u00fcnde -> Bad Schwartau", + "title": "A226 | L\u00fcbeck-Siems - L\u00fcbeck-D\u00e4nischburg", + "startTimestamp": "2026-04-21T00:00:00+02:00", + "coordinate": { + "lat": 53.911825338294, + "long": 10.761075034914366 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.04.26 um 00:00 Uhr", + "Ende: 16.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 03.06.26)", + "", + "A226: Travem\u00fcnde -> Bad Schwartau, zwischen 1.4 km hinter AS L\u00fcbeck-Siems und 1.7 km vor AS L\u00fcbeck-D\u00e4nischburg", + "", + "L\u00e4nge: 0.12 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A226, AS L\u00fcbeck-D\u00e4nischburg nach As L\u00fcbeck-Siems, Br\u00fcckeninstandsetzung der Deutschen Bahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.761075035, + 53.911825338 + ], + [ + 10.7605831, + 53.911988601 + ], + [ + 10.7600792, + 53.912139001 + ], + [ + 10.7594484, + 53.912339901 + ], + [ + 10.759446642, + 53.912340414 + ] + ] + } + } + ] + }, + "A255": { + "roadworks": [ + { + "identifier": "2026-016718--vi-bs.2026-04-12_20-00-00-000.devi-zus.2026-04-12_20-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.52031802013958,10.026458654228374,53.521102735736115,10.025723060420324", + "point": "53.52031802013958,10.026458654228374", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Hamburg-Veddel (aus Richtung Hamburg-Elbinsel)", + "title": "A255 Kreuz Norderelbe RiFa Nord Bodenuntersuchungen", + "startTimestamp": "2026-04-12T20:00:00+02:00", + "coordinate": { + "lat": 53.52031802013958, + "long": 10.026458654228374 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.04.26 um 20:00 Uhr", + "Ende: 24.04.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.04.26)", + "", + "Auffahrt auf die A255: AS Hamburg-Veddel (aus Richtung Hamburg-Elbinsel)", + "", + "L\u00e4nge: 0.1 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A255 Kreuz Norderelbe RiFa Nord Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.026458654, + 53.52031802 + ], + [ + 10.0263416, + 53.520389201 + ], + [ + 10.0260481, + 53.520727801 + ], + [ + 10.02572306, + 53.521102736 + ] + ] + } + }, + { + "identifier": "2026-016718--vi-bs.2026-04-12_20-00-00-000.devi-zus.2026-04-12_20-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.5184732664318,10.028323838611822,53.52031802013958,10.026458654228374", + "point": "53.5184732664318,10.028323838611822", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A255 Kreuz Norderelbe RiFa Nord Bodenuntersuchungen", + "startTimestamp": "2026-04-12T20:00:00+02:00", + "coordinate": { + "lat": 53.5184732664318, + "long": 10.028323838611822 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.04.26 um 20:00 Uhr", + "Ende: 24.04.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.04.26)", + "", + "Abfahrt von der A255 N", + "", + "L\u00e4nge: 0.24 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A255 Kreuz Norderelbe RiFa Nord Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.028323839, + 53.518473266 + ], + [ + 10.0281315, + 53.518841201 + ], + [ + 10.0279222, + 53.519169701 + ], + [ + 10.0277241, + 53.519411801 + ], + [ + 10.0275519, + 53.519588001 + ], + [ + 10.0271505, + 53.519897301 + ], + [ + 10.026458654, + 53.52031802 + ] + ] + } + }, + { + "identifier": "2026-016718--vi-bs.2026-04-12_20-00-00-000.devi-zus.2026-04-12_20-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.518400301026674,10.028095892669638,53.52030722770429,10.026406841586114", + "point": "53.518400301026674,10.028095892669638", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A255 Kreuz Norderelbe RiFa Nord Bodenuntersuchungen", + "startTimestamp": "2026-04-12T20:00:00+02:00", + "coordinate": { + "lat": 53.518400301026674, + "long": 10.028095892669638 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.04.26 um 20:00 Uhr", + "Ende: 24.04.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 24.04.26)", + "", + "Abfahrt von der B75", + "", + "L\u00e4nge: 0.24 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A255 Kreuz Norderelbe RiFa Nord Bodenuntersuchungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.028095893, + 53.518400301 + ], + [ + 10.0280882, + 53.518429501 + ], + [ + 10.0280654, + 53.518498901 + ], + [ + 10.0280308, + 53.518585001 + ], + [ + 10.0279909, + 53.518669601 + ], + [ + 10.0279487, + 53.518748901 + ], + [ + 10.0279018, + 53.518825001 + ], + [ + 10.0278491, + 53.518905001 + ], + [ + 10.0277697, + 53.519012001 + ], + [ + 10.0276754, + 53.519124901 + ], + [ + 10.027598, + 53.519210401 + ], + [ + 10.0275212, + 53.519290101 + ], + [ + 10.0274277, + 53.519379001 + ], + [ + 10.0273636, + 53.519439201 + ], + [ + 10.0273331, + 53.519465501 + ], + [ + 10.0270808, + 53.519687701 + ], + [ + 10.026703, + 53.520010601 + ], + [ + 10.0265345, + 53.520157001 + ], + [ + 10.026406842, + 53.520307228 + ] + ] + } + } + ] + }, + "A261": { + "roadworks": [ + { + "identifier": "2026-015436--vi-fbm.2026-04-17_15-00-00-000.devi-zus.2026-04-14_08-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.38203145060643,9.871140943406806,53.38693616438885,9.877740819256045", + "point": "53.38203145060643,9.871140943406806", + "startLcPosition": "0", + "impact": { + "lower": "Rosengarten-West", + "upper": "Buchholzer Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Buchholzer Dreieck -> Hamburg-S\u00fcdwest", + "title": "A261 | Buchholzer Dreieck - Rosengarten-West", + "coordinate": { + "lat": 53.38203145060643, + "long": 9.871140943406806 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "17.04.26 von 15:00 bis 18:00 Uhr", + "", + "A261: Buchholzer Dreieck -> Hamburg-S\u00fcdwest, zwischen 1.5 km hinter AD Buchholzer Dreieck und 0.4 km vor Rosengarten-West", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A261, PWC-Anlage Rosengarten Ost, Sperrung, Teildeckenerneuerung (Gew\u00e4hrleistung)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.871140943, + 53.382031451 + ], + [ + 9.8712453, + 53.382098601 + ], + [ + 9.8719989, + 53.382599701 + ], + [ + 9.8723715, + 53.382853801 + ], + [ + 9.8727931, + 53.383148801 + ], + [ + 9.8738398, + 53.383905301 + ], + [ + 9.8750401, + 53.384804801 + ], + [ + 9.8763501, + 53.385823901 + ], + [ + 9.8775842, + 53.386809501 + ], + [ + 9.877740819, + 53.386936164 + ] + ] + } + }, + { + "identifier": "2026-015436--vi-fbm.2026-04-14_08-00-00-000.devi-zus.2026-04-14_08-00-00-000_001.de4", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "53.38203145060643,9.871140943406806,53.38693616438885,9.877740819256045", + "point": "53.38203145060643,9.871140943406806", + "startLcPosition": "0", + "impact": { + "lower": "Rosengarten-West", + "upper": "Buchholzer Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Buchholzer Dreieck -> Hamburg-S\u00fcdwest", + "title": "A261 | Buchholzer Dreieck - Rosengarten-West", + "coordinate": { + "lat": 53.38203145060643, + "long": 9.871140943406806 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:00 bis 12:00 Uhr", + "", + "A261: Buchholzer Dreieck -> Hamburg-S\u00fcdwest, zwischen 1.5 km hinter AD Buchholzer Dreieck und 0.4 km vor Rosengarten-West", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A261, PWC-Anlage Rosengarten Ost, Sperrung, Teildeckenerneuerung (Gew\u00e4hrleistung)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.871140943, + 53.382031451 + ], + [ + 9.8712453, + 53.382098601 + ], + [ + 9.8719989, + 53.382599701 + ], + [ + 9.8723715, + 53.382853801 + ], + [ + 9.8727931, + 53.383148801 + ], + [ + 9.8738398, + 53.383905301 + ], + [ + 9.8750401, + 53.384804801 + ], + [ + 9.8763501, + 53.385823901 + ], + [ + 9.8775842, + 53.386809501 + ], + [ + 9.877740819, + 53.386936164 + ] + ] + } + }, + { + "identifier": "2026-015436--vi-bs.2026-04-14_12-00-00-000.devi-zus.2026-04-14_08-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "53.38203145060643,9.871140943406806,53.38693616438885,9.877740819256045", + "point": "53.38203145060643,9.871140943406806", + "startLcPosition": "0", + "impact": { + "lower": "Rosengarten-West", + "upper": "Buchholzer Dreieck", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Buchholzer Dreieck -> Hamburg-S\u00fcdwest", + "title": "A261 | Buchholzer Dreieck - Rosengarten-West", + "startTimestamp": "2026-04-14T12:00:00+02:00", + "coordinate": { + "lat": 53.38203145060643, + "long": 9.871140943406806 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.04.26 um 12:00 Uhr", + "Ende: 17.04.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.04.26)", + "", + "A261: Buchholzer Dreieck -> Hamburg-S\u00fcdwest, zwischen 1.5 km hinter AD Buchholzer Dreieck und 0.4 km vor Rosengarten-West", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A261, PWC-Anlage Rosengarten Ost, Sperrung, Teildeckenerneuerung (Gew\u00e4hrleistung)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.871140943, + 53.382031451 + ], + [ + 9.8712453, + 53.382098601 + ], + [ + 9.8719989, + 53.382599701 + ], + [ + 9.8723715, + 53.382853801 + ], + [ + 9.8727931, + 53.383148801 + ], + [ + 9.8738398, + 53.383905301 + ], + [ + 9.8750401, + 53.384804801 + ], + [ + 9.8763501, + 53.385823901 + ], + [ + 9.8775842, + 53.386809501 + ], + [ + 9.877740819, + 53.386936164 + ] + ] + } + } + ] + }, + "A270": { + "roadworks": [ + { + "identifier": "2026-003478--vi-bs.2026-04-03_05-00-00-000.devi-zus.2026-03-09_00-00-00-000_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.19046180668134,8.568697638325167,53.1789011218671,8.709257304433235", + "point": "53.19046180668134,8.568697638325167", + "startLcPosition": "0", + "impact": { + "lower": "Bremen-Ihlpohl", + "upper": "Bremen-Farge", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Blumenthal -> Ihlpohl", + "title": "A270 | Bremen-Farge - Bremen-Ihlpohl", + "startTimestamp": "2026-04-03T05:00:00+02:00", + "coordinate": { + "lat": 53.19046180668134, + "long": 8.568697638325167 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.04.26 um 05:00 Uhr", + "Ende: 04.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.12.26)", + "", + "A270: Blumenthal -> Ihlpohl, zwischen 0.4 km hinter AS Bremen-Farge und AS Bremen-Ihlpohl", + "", + "L\u00e4nge: 10.19 km | Maximale Durchfahrtsbreite: 2.75 m", + "", + "A270 - Fahrbahnerneuerung FR Ihlpohl" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.568697638, + 53.190461807 + ], + [ + 8.5691283, + 53.190261101 + ], + [ + 8.5696548, + 53.190046001 + ], + [ + 8.5700525, + 53.189904701 + ], + [ + 8.5707237, + 53.189686201 + ], + [ + 8.5711764, + 53.189559901 + ], + [ + 8.5715972, + 53.189453401 + ], + [ + 8.5720866, + 53.189351401 + ], + [ + 8.5725502, + 53.189253901 + ], + [ + 8.5746637, + 53.188866801 + ], + [ + 8.5752373, + 53.188740201 + ], + [ + 8.5758068, + 53.188597401 + ], + [ + 8.5766118, + 53.188359101 + ], + [ + 8.5769979, + 53.188227701 + ], + [ + 8.5775241, + 53.188020001 + ], + [ + 8.5780335, + 53.187795601 + ], + [ + 8.5785139, + 53.187549501 + ], + [ + 8.5789241, + 53.187320001 + ], + [ + 8.5793757, + 53.187034201 + ], + [ + 8.579948, + 53.186618601 + ], + [ + 8.580501, + 53.186157701 + ], + [ + 8.5811296, + 53.185657601 + ], + [ + 8.5815835, + 53.185335001 + ], + [ + 8.5820897, + 53.185028401 + ], + [ + 8.5826539, + 53.184732101 + ], + [ + 8.583207, + 53.184471501 + ], + [ + 8.5835795, + 53.184321901 + ], + [ + 8.5840969, + 53.184130801 + ], + [ + 8.5845785, + 53.183974801 + ], + [ + 8.5850994, + 53.183803501 + ], + [ + 8.5877086, + 53.182971001 + ], + [ + 8.5884026, + 53.182759201 + ], + [ + 8.589776, + 53.182373501 + ], + [ + 8.5910516, + 53.182034801 + ], + [ + 8.5921475, + 53.181772701 + ], + [ + 8.5932894, + 53.181532301 + ], + [ + 8.593996, + 53.181393601 + ], + [ + 8.5945886, + 53.181293201 + ], + [ + 8.595104, + 53.181225101 + ], + [ + 8.5956176, + 53.181160401 + ], + [ + 8.5960592, + 53.181118601 + ], + [ + 8.596688, + 53.181079001 + ], + [ + 8.5971966, + 53.181059801 + ], + [ + 8.597753, + 53.181053501 + ], + [ + 8.5985641, + 53.181061101 + ], + [ + 8.5991054, + 53.181069501 + ], + [ + 8.5999257, + 53.181077801 + ], + [ + 8.6008888, + 53.181049601 + ], + [ + 8.6013033, + 53.181024801 + ], + [ + 8.6023474, + 53.180939801 + ], + [ + 8.6032573, + 53.180850701 + ], + [ + 8.6038039, + 53.180827101 + ], + [ + 8.60436, + 53.180821301 + ], + [ + 8.6048981, + 53.180841201 + ], + [ + 8.6056297, + 53.180888401 + ], + [ + 8.6068433, + 53.180998601 + ], + [ + 8.6074595, + 53.181041801 + ], + [ + 8.607987, + 53.181054101 + ], + [ + 8.6087915, + 53.181041601 + ], + [ + 8.6102658, + 53.180984201 + ], + [ + 8.6126631, + 53.180885601 + ], + [ + 8.6141506, + 53.180825701 + ], + [ + 8.6157403, + 53.180758601 + ], + [ + 8.6178005, + 53.180662801 + ], + [ + 8.6194672, + 53.180592001 + ], + [ + 8.6212019, + 53.180521301 + ], + [ + 8.6223782, + 53.180474801 + ], + [ + 8.6237321, + 53.180381901 + ], + [ + 8.6246603, + 53.180281501 + ], + [ + 8.6250347, + 53.180223101 + ], + [ + 8.6255842, + 53.180125701 + ], + [ + 8.6264998, + 53.179923401 + ], + [ + 8.6272584, + 53.179721801 + ], + [ + 8.6278633, + 53.179530501 + ], + [ + 8.6285898, + 53.179263201 + ], + [ + 8.6293038, + 53.178964601 + ], + [ + 8.6299361, + 53.178667501 + ], + [ + 8.6316052, + 53.177866401 + ], + [ + 8.6336761, + 53.176863101 + ], + [ + 8.6347126, + 53.176362101 + ], + [ + 8.6355996, + 53.175937601 + ], + [ + 8.6358612, + 53.175815001 + ], + [ + 8.6362942, + 53.175630001 + ], + [ + 8.6368139, + 53.175427001 + ], + [ + 8.6371504, + 53.175314801 + ], + [ + 8.6376349, + 53.175170701 + ], + [ + 8.6380431, + 53.175070601 + ], + [ + 8.6387111, + 53.174942801 + ], + [ + 8.639023, + 53.174896901 + ], + [ + 8.6393638, + 53.174855501 + ], + [ + 8.6396345, + 53.174828101 + ], + [ + 8.6401512, + 53.174799601 + ], + [ + 8.6404831, + 53.174786901 + ], + [ + 8.640978, + 53.174778201 + ], + [ + 8.6415231, + 53.174781601 + ], + [ + 8.6422312, + 53.174775601 + ], + [ + 8.6430479, + 53.174771001 + ], + [ + 8.6435928, + 53.174762601 + ], + [ + 8.6443734, + 53.174732401 + ], + [ + 8.6448998, + 53.174693501 + ], + [ + 8.6454295, + 53.174645601 + ], + [ + 8.6462258, + 53.174554801 + ], + [ + 8.6469845, + 53.174438901 + ], + [ + 8.6476391, + 53.174314401 + ], + [ + 8.6489449, + 53.174033501 + ], + [ + 8.6507499, + 53.173646601 + ], + [ + 8.6537193, + 53.173014301 + ], + [ + 8.6544376, + 53.172879101 + ], + [ + 8.6551729, + 53.172751801 + ], + [ + 8.6554476, + 53.172711601 + ], + [ + 8.6559715, + 53.172637201 + ], + [ + 8.6562634, + 53.172604401 + ], + [ + 8.6570331, + 53.172520201 + ], + [ + 8.6576301, + 53.172471201 + ], + [ + 8.6598453, + 53.172322701 + ], + [ + 8.6653018, + 53.171982101 + ], + [ + 8.6672166, + 53.171858201 + ], + [ + 8.6678998, + 53.171824101 + ], + [ + 8.6683382, + 53.171815901 + ], + [ + 8.6689832, + 53.171813201 + ], + [ + 8.6694827, + 53.171832201 + ], + [ + 8.6700681, + 53.171882301 + ], + [ + 8.6705025, + 53.171936801 + ], + [ + 8.6709283, + 53.172006501 + ], + [ + 8.6713854, + 53.172098301 + ], + [ + 8.6720184, + 53.172250801 + ], + [ + 8.6727904, + 53.172464001 + ], + [ + 8.6733241, + 53.172618301 + ], + [ + 8.6737433, + 53.172733501 + ], + [ + 8.6740733, + 53.172816301 + ], + [ + 8.674432, + 53.172894701 + ], + [ + 8.6749556, + 53.172985701 + ], + [ + 8.6754574, + 53.173051901 + ], + [ + 8.6759894, + 53.173095001 + ], + [ + 8.676531, + 53.173116401 + ], + [ + 8.6768492, + 53.173119501 + ], + [ + 8.6771722, + 53.173112001 + ], + [ + 8.678934, + 53.173035801 + ], + [ + 8.6795251, + 53.173009701 + ], + [ + 8.6810685, + 53.172988901 + ], + [ + 8.6813626, + 53.172996701 + ], + [ + 8.68236, + 53.173026901 + ], + [ + 8.6834587, + 53.173062001 + ], + [ + 8.6842367, + 53.173081001 + ], + [ + 8.6853608, + 53.173116901 + ], + [ + 8.6866568, + 53.173173701 + ], + [ + 8.6875212, + 53.173225701 + ], + [ + 8.6883137, + 53.173289601 + ], + [ + 8.689514, + 53.173379001 + ], + [ + 8.6911983, + 53.173503801 + ], + [ + 8.6915634, + 53.173530901 + ], + [ + 8.6924473, + 53.173590801 + ], + [ + 8.6971941, + 53.173883401 + ], + [ + 8.6976622, + 53.173923501 + ], + [ + 8.6980682, + 53.173956901 + ], + [ + 8.6989264, + 53.174038601 + ], + [ + 8.6999733, + 53.174172301 + ], + [ + 8.7006655, + 53.174295701 + ], + [ + 8.7011061, + 53.174386201 + ], + [ + 8.7016104, + 53.174502601 + ], + [ + 8.702188, + 53.174668801 + ], + [ + 8.7026642, + 53.174826001 + ], + [ + 8.703102, + 53.174993301 + ], + [ + 8.7036087, + 53.175213801 + ], + [ + 8.7039914, + 53.175397401 + ], + [ + 8.704388, + 53.175610301 + ], + [ + 8.7047084, + 53.175793601 + ], + [ + 8.7048296, + 53.175862201 + ], + [ + 8.7052594, + 53.176131101 + ], + [ + 8.705789, + 53.176489001 + ], + [ + 8.7066313, + 53.177092501 + ], + [ + 8.7067895, + 53.177216401 + ], + [ + 8.7069037, + 53.177305901 + ], + [ + 8.7071935, + 53.177526901 + ], + [ + 8.7082314, + 53.178327901 + ], + [ + 8.7086535, + 53.178655601 + ], + [ + 8.7088096, + 53.178758301 + ], + [ + 8.708927, + 53.178817101 + ], + [ + 8.7091324, + 53.178876001 + ], + [ + 8.709257304, + 53.178901122 + ] + ] + } + }, + { + "identifier": "2026-003478--vi-bs.2026-04-03_05-00-00-000.devi-zus.2026-03-09_00-00-00-000_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.17899924056924,8.709189957947293,53.19052649278441,8.568780581941079", + "point": "53.17899924056924,8.709189957947293", + "startLcPosition": "9", + "impact": { + "lower": "Bremen-Farge", + "upper": "Bremen-Ihlpohl", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Ihlpohl -> Blumenthal", + "title": "A270 | Bremen-Ihlpohl - Bremen-Farge", + "startTimestamp": "2026-04-03T05:00:00+02:00", + "coordinate": { + "lat": 53.17899924056924, + "long": 8.709189957947293 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 03.04.26 um 05:00 Uhr", + "Ende: 04.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.12.26)", + "", + "A270: Ihlpohl -> Blumenthal, zwischen AS Bremen-Ihlpohl und 0.4 km vor AS Bremen-Farge", + "", + "L\u00e4nge: 10.19 km | Maximale Durchfahrtsbreite: 2.75 m", + "", + "A270 - Fahrbahnerneuerung FR Ihlpohl" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.709189958, + 53.178999241 + ], + [ + 8.7088995, + 53.178910101 + ], + [ + 8.7087215, + 53.178832001 + ], + [ + 8.7085918, + 53.178747601 + ], + [ + 8.7081421, + 53.178397601 + ], + [ + 8.707788, + 53.178139501 + ], + [ + 8.706992, + 53.177619601 + ], + [ + 8.7067448, + 53.177450001 + ], + [ + 8.7066003, + 53.177350901 + ], + [ + 8.7064585, + 53.177253601 + ], + [ + 8.7059888, + 53.176940301 + ], + [ + 8.7055059, + 53.176591501 + ], + [ + 8.7049772, + 53.176224001 + ], + [ + 8.704548, + 53.175943801 + ], + [ + 8.7039085, + 53.175533101 + ], + [ + 8.7035514, + 53.175328201 + ], + [ + 8.70308, + 53.175101201 + ], + [ + 8.7026425, + 53.174917901 + ], + [ + 8.7020073, + 53.174709101 + ], + [ + 8.7015389, + 53.174574501 + ], + [ + 8.7010525, + 53.174463401 + ], + [ + 8.7006307, + 53.174376101 + ], + [ + 8.699897, + 53.174243901 + ], + [ + 8.698905, + 53.174116601 + ], + [ + 8.6980586, + 53.174039001 + ], + [ + 8.6976421, + 53.174006301 + ], + [ + 8.6971947, + 53.173970801 + ], + [ + 8.6961213, + 53.173905301 + ], + [ + 8.695041, + 53.173839401 + ], + [ + 8.6934701, + 53.173747701 + ], + [ + 8.6929966, + 53.173714601 + ], + [ + 8.6921653, + 53.173657201 + ], + [ + 8.6916351, + 53.173621301 + ], + [ + 8.6899772, + 53.173499001 + ], + [ + 8.6893302, + 53.173447401 + ], + [ + 8.6879387, + 53.173341601 + ], + [ + 8.6866541, + 53.173255301 + ], + [ + 8.6844727, + 53.173172001 + ], + [ + 8.6833836, + 53.173140901 + ], + [ + 8.6825733, + 53.173115801 + ], + [ + 8.6819952, + 53.173100701 + ], + [ + 8.6814881, + 53.173084801 + ], + [ + 8.6812232, + 53.173075501 + ], + [ + 8.6811178, + 53.173074601 + ], + [ + 8.6806447, + 53.173075401 + ], + [ + 8.6796263, + 53.173090901 + ], + [ + 8.6793137, + 53.173102301 + ], + [ + 8.6789249, + 53.173117401 + ], + [ + 8.6771791, + 53.173195501 + ], + [ + 8.6768562, + 53.173203401 + ], + [ + 8.6765298, + 53.173201201 + ], + [ + 8.6759707, + 53.173179001 + ], + [ + 8.6754432, + 53.173134401 + ], + [ + 8.6749222, + 53.173067001 + ], + [ + 8.6743665, + 53.172970701 + ], + [ + 8.6740429, + 53.172899401 + ], + [ + 8.6736961, + 53.172814301 + ], + [ + 8.6732599, + 53.172693901 + ], + [ + 8.6727358, + 53.172541301 + ], + [ + 8.671997, + 53.172335901 + ], + [ + 8.6713327, + 53.172176901 + ], + [ + 8.6708986, + 53.172087301 + ], + [ + 8.6704826, + 53.172021401 + ], + [ + 8.6700423, + 53.171965801 + ], + [ + 8.6694797, + 53.171918801 + ], + [ + 8.6689529, + 53.171899401 + ], + [ + 8.6683372, + 53.171900301 + ], + [ + 8.6679013, + 53.171908501 + ], + [ + 8.6672366, + 53.171941901 + ], + [ + 8.665315, + 53.172063601 + ], + [ + 8.6578682, + 53.172539701 + ], + [ + 8.6569997, + 53.172607901 + ], + [ + 8.6558114, + 53.172744401 + ], + [ + 8.6552004, + 53.172835501 + ], + [ + 8.6544641, + 53.172964301 + ], + [ + 8.6537525, + 53.173101701 + ], + [ + 8.6522429, + 53.173424001 + ], + [ + 8.6508025, + 53.173736001 + ], + [ + 8.6490042, + 53.174119901 + ], + [ + 8.6476733, + 53.174397501 + ], + [ + 8.6470344, + 53.174514801 + ], + [ + 8.6462494, + 53.174634201 + ], + [ + 8.6454407, + 53.174726801 + ], + [ + 8.6446274, + 53.174796001 + ], + [ + 8.6440127, + 53.174828201 + ], + [ + 8.6432971, + 53.174849701 + ], + [ + 8.6421845, + 53.174855301 + ], + [ + 8.6413483, + 53.174860301 + ], + [ + 8.6405753, + 53.174866901 + ], + [ + 8.640258, + 53.174880101 + ], + [ + 8.6398175, + 53.174900501 + ], + [ + 8.6393743, + 53.174934801 + ], + [ + 8.6389433, + 53.174990601 + ], + [ + 8.6386284, + 53.175039901 + ], + [ + 8.6380805, + 53.175149201 + ], + [ + 8.6380301, + 53.175161501 + ], + [ + 8.6376955, + 53.175243301 + ], + [ + 8.6372125, + 53.175387201 + ], + [ + 8.6368771, + 53.175499701 + ], + [ + 8.6365712, + 53.175615501 + ], + [ + 8.6363139, + 53.175720701 + ], + [ + 8.6358854, + 53.175906001 + ], + [ + 8.6356453, + 53.176020001 + ], + [ + 8.634807, + 53.176421601 + ], + [ + 8.6337663, + 53.176924001 + ], + [ + 8.6316818, + 53.177928601 + ], + [ + 8.6300092, + 53.178733801 + ], + [ + 8.6292242, + 53.179103801 + ], + [ + 8.6287218, + 53.179307101 + ], + [ + 8.6283517, + 53.179455401 + ], + [ + 8.6279, + 53.179613201 + ], + [ + 8.627315, + 53.179795001 + ], + [ + 8.6265835, + 53.179990901 + ], + [ + 8.6261168, + 53.180098301 + ], + [ + 8.6256096, + 53.180204501 + ], + [ + 8.6251001, + 53.180300801 + ], + [ + 8.6246818, + 53.180363001 + ], + [ + 8.6237489, + 53.180469001 + ], + [ + 8.6230217, + 53.180524601 + ], + [ + 8.6221507, + 53.180570701 + ], + [ + 8.6210477, + 53.180608501 + ], + [ + 8.6194732, + 53.180670801 + ], + [ + 8.6178212, + 53.180743401 + ], + [ + 8.6157525, + 53.180841601 + ], + [ + 8.6135995, + 53.180924901 + ], + [ + 8.6126643, + 53.180963401 + ], + [ + 8.6102804, + 53.181063101 + ], + [ + 8.6087794, + 53.181122301 + ], + [ + 8.6079887, + 53.181135301 + ], + [ + 8.6074548, + 53.181123801 + ], + [ + 8.6068264, + 53.181077401 + ], + [ + 8.6056056, + 53.180966601 + ], + [ + 8.6048889, + 53.180922601 + ], + [ + 8.6043541, + 53.180903601 + ], + [ + 8.6038227, + 53.180909901 + ], + [ + 8.603097, + 53.180952701 + ], + [ + 8.6016078, + 53.181078001 + ], + [ + 8.6009025, + 53.181126701 + ], + [ + 8.6003996, + 53.181146901 + ], + [ + 8.5999295, + 53.181157801 + ], + [ + 8.5990969, + 53.181152801 + ], + [ + 8.5985093, + 53.181143601 + ], + [ + 8.597757, + 53.181137201 + ], + [ + 8.5971872, + 53.181143901 + ], + [ + 8.5966986, + 53.181162801 + ], + [ + 8.596081, + 53.181202801 + ], + [ + 8.5956229, + 53.181241801 + ], + [ + 8.5951219, + 53.181305001 + ], + [ + 8.594577, + 53.181379701 + ], + [ + 8.5940323, + 53.181472601 + ], + [ + 8.593548, + 53.181562601 + ], + [ + 8.5923486, + 53.181812901 + ], + [ + 8.5917293, + 53.181958101 + ], + [ + 8.5911999, + 53.182083901 + ], + [ + 8.5898346, + 53.182442501 + ], + [ + 8.5885374, + 53.182805201 + ], + [ + 8.5878756, + 53.183010601 + ], + [ + 8.585289, + 53.183838501 + ], + [ + 8.5847373, + 53.184015901 + ], + [ + 8.5840424, + 53.184248701 + ], + [ + 8.5836118, + 53.184408201 + ], + [ + 8.5831958, + 53.184584701 + ], + [ + 8.5827438, + 53.184798201 + ], + [ + 8.5821927, + 53.185085101 + ], + [ + 8.5817184, + 53.185374201 + ], + [ + 8.5813904, + 53.185592501 + ], + [ + 8.5808517, + 53.186006601 + ], + [ + 8.5802388, + 53.186527301 + ], + [ + 8.5799927, + 53.186718401 + ], + [ + 8.5797498, + 53.186900701 + ], + [ + 8.5794182, + 53.187138301 + ], + [ + 8.5790354, + 53.187373201 + ], + [ + 8.5786287, + 53.187605801 + ], + [ + 8.57814, + 53.187854601 + ], + [ + 8.5776168, + 53.188085501 + ], + [ + 8.5770242, + 53.188314301 + ], + [ + 8.5766776, + 53.188430901 + ], + [ + 8.5758853, + 53.188670801 + ], + [ + 8.5752966, + 53.188816401 + ], + [ + 8.5747084, + 53.188939701 + ], + [ + 8.5725917, + 53.189333701 + ], + [ + 8.5721157, + 53.189427401 + ], + [ + 8.5716185, + 53.189539001 + ], + [ + 8.5712504, + 53.189632901 + ], + [ + 8.5708207, + 53.189748301 + ], + [ + 8.5701768, + 53.189956201 + ], + [ + 8.5697224, + 53.190119801 + ], + [ + 8.5692063, + 53.190330901 + ], + [ + 8.568780582, + 53.190526493 + ] + ] + } + } + ] + }, + "A281": { + "roadworks": [ + { + "identifier": "2025-006684--vi-bs.2025-02-26_00-00-00-000.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "53.09372244733194,8.691109849248026,53.094798843089734,8.690303840836581", + "point": "53.09372244733194,8.691109849248026", + "startLcPosition": "4", + "impact": { + "lower": "HB-Seehausen", + "upper": "Bremen-Strom", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Airport-Stadt -> Neust\u00e4dter Hafen", + "title": "A281 | Bremen-Strom - HB-Seehausen", + "startTimestamp": "2025-02-26T00:00:00+01:00", + "coordinate": { + "lat": 53.09372244733194, + "long": 8.691109849248026 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 26.02.25 um 00:00 Uhr", + "Ende: 02.01.29 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 02.01.29)", + "", + "A281: Airport-Stadt -> Neust\u00e4dter Hafen, zwischen 3.5 km hinter AS Bremen-Strom und 0.2 km vor AS HB-Seehausen", + "", + "L\u00e4nge: 0.13 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Herstellen einer Baustellenzufahrt" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.691109849, + 53.093722447 + ], + [ + 8.6910757, + 53.093757501 + ], + [ + 8.6907383, + 53.094171301 + ], + [ + 8.6905883, + 53.094385101 + ], + [ + 8.690303841, + 53.094798843 + ] + ] + } + } + ] + }, + "A320": { + "roadworks": [] + }, + "A352": { + "roadworks": [ + { + "identifier": "2026-007864--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-03-16_00-00-00-000_004.de1", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.53797496549411,9.795805280752772,52.51773096269341,9.775839018202037", + "point": "52.53797496549411,9.795805280752772", + "startLcPosition": "0", + "impact": { + "lower": "Bissendorf", + "upper": "Hannover-Nord", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover-Nord -> Hannover-West", + "title": "A352 | Hannover-Nord - Bissendorf", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 52.53797496549411, + "long": 9.795805280752772 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 26.02.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.03.28)", + "", + "A352: Hannover-Nord -> Hannover-West, zwischen 0.5 km hinter AD Hannover-Nord und 1.3 km vor Bissendorf", + "", + "L\u00e4nge: 2.63 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "A352 von Hannover-Nord (AD) Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.795805281, + 52.537974965 + ], + [ + 9.79335, + 52.535479801 + ], + [ + 9.7925337, + 52.534650201 + ], + [ + 9.7923564, + 52.534470001 + ], + [ + 9.7912337, + 52.533332501 + ], + [ + 9.7906996, + 52.532786601 + ], + [ + 9.7887783, + 52.530838001 + ], + [ + 9.7850299, + 52.527036401 + ], + [ + 9.7825669, + 52.524538101 + ], + [ + 9.7812028, + 52.523152301 + ], + [ + 9.778091, + 52.519991101 + ], + [ + 9.7773805, + 52.519273801 + ], + [ + 9.7768074, + 52.518695201 + ], + [ + 9.775839018, + 52.517730963 + ] + ] + } + }, + { + "identifier": "2026-007864--vi-fbm.2026-03-21_00-00-00-000.devi-zus.2026-03-16_00-00-00-000_004.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.53805975922742,9.795888724931308,52.51774629247341,9.775854413460278", + "point": "52.53805975922742,9.795888724931308", + "startLcPosition": "0", + "impact": { + "lower": "Bissendorf", + "upper": "Hannover-Nord", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover-Nord -> Hannover-West", + "title": "A352 | Hannover-Nord - Bissendorf", + "startTimestamp": "2026-03-21T00:00:00+01:00", + "coordinate": { + "lat": 52.53805975922742, + "long": 9.795888724931308 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.03.26 um 00:00 Uhr", + "Ende: 13.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.03.28)", + "", + "A352: Hannover-Nord -> Hannover-West, zwischen 0.5 km hinter AD Hannover-Nord und 1.3 km vor Bissendorf", + "", + "L\u00e4nge: 2.64 km | Maximale Durchfahrtsbreite: 5.65 m", + "", + "A352 von Hannover-Nord (AD) Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.795888725, + 52.538059759 + ], + [ + 9.79335, + 52.535479801 + ], + [ + 9.7925337, + 52.534650201 + ], + [ + 9.7923564, + 52.534470001 + ], + [ + 9.7912337, + 52.533332501 + ], + [ + 9.7906996, + 52.532786601 + ], + [ + 9.7887783, + 52.530838001 + ], + [ + 9.7850299, + 52.527036401 + ], + [ + 9.7825669, + 52.524538101 + ], + [ + 9.7812028, + 52.523152301 + ], + [ + 9.778091, + 52.519991101 + ], + [ + 9.7773805, + 52.519273801 + ], + [ + 9.7768074, + 52.518695201 + ], + [ + 9.775854413, + 52.517746292 + ] + ] + } + }, + { + "identifier": "2026-007864--vi-bs.2026-04-13_00-00-00-000.devi-zus.2026-03-16_00-00-00-000_004.de3", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "52.51766721000131,9.77600933197561,52.53791327092161,9.795973327223363", + "point": "52.51766721000131,9.77600933197561", + "startLcPosition": "1", + "impact": { + "lower": "Hannover-Nord", + "upper": "Bissendorf", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover-West -> Hannover-Nord", + "title": "A352 | Bissendorf - Hannover-Nord", + "startTimestamp": "2026-04-13T00:00:00+02:00", + "coordinate": { + "lat": 52.51766721000131, + "long": 9.77600933197561 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 00:00 Uhr", + "Ende: 26.02.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.03.28)", + "", + "A352: Hannover-West -> Hannover-Nord, zwischen 1.3 km hinter Bissendorf und 0.6 km vor AD Hannover-Nord", + "", + "L\u00e4nge: 2.63 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A352 von Hannover-Nord (AD) Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.776009332, + 52.51766721 + ], + [ + 9.7769871, + 52.518638101 + ], + [ + 9.7775541, + 52.519213701 + ], + [ + 9.7782822, + 52.519953001 + ], + [ + 9.7813897, + 52.523108401 + ], + [ + 9.7827424, + 52.524481901 + ], + [ + 9.7852057, + 52.526983001 + ], + [ + 9.7889562, + 52.530790901 + ], + [ + 9.7906877, + 52.532548701 + ], + [ + 9.7912722, + 52.533144201 + ], + [ + 9.7927042, + 52.534596901 + ], + [ + 9.7941297, + 52.536042901 + ], + [ + 9.7956978, + 52.537634901 + ], + [ + 9.795973327, + 52.537913271 + ] + ] + } + }, + { + "identifier": "2026-007864--vi-fbm.2026-03-21_00-00-00-000.devi-zus.2026-03-16_00-00-00-000_004.de21", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "52.517682528424345,9.776024758501933,52.53799793344101,9.79605712597641", + "point": "52.517682528424345,9.776024758501933", + "startLcPosition": "1", + "impact": { + "lower": "Hannover-Nord", + "upper": "Bissendorf", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hannover-West -> Hannover-Nord", + "title": "A352 | Bissendorf - Hannover-Nord", + "startTimestamp": "2026-03-21T00:00:00+01:00", + "coordinate": { + "lat": 52.517682528424345, + "long": 9.776024758501933 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.03.26 um 00:00 Uhr", + "Ende: 13.04.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.03.28)", + "", + "A352: Hannover-West -> Hannover-Nord, zwischen 1.3 km hinter Bissendorf und 0.6 km vor AD Hannover-Nord", + "", + "L\u00e4nge: 2.64 km | Maximale Durchfahrtsbreite: 5.75 m", + "", + "A352 von Hannover-Nord (AD) Br\u00fcckenneubau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.776024759, + 52.517682528 + ], + [ + 9.7769871, + 52.518638101 + ], + [ + 9.7775541, + 52.519213701 + ], + [ + 9.7782822, + 52.519953001 + ], + [ + 9.7813897, + 52.523108401 + ], + [ + 9.7827424, + 52.524481901 + ], + [ + 9.7852057, + 52.526983001 + ], + [ + 9.7889562, + 52.530790901 + ], + [ + 9.7906877, + 52.532548701 + ], + [ + 9.7912722, + 52.533144201 + ], + [ + 9.7927042, + 52.534596901 + ], + [ + 9.7941297, + 52.536042901 + ], + [ + 9.7956978, + 52.537634901 + ], + [ + 9.796057126, + 52.537997933 + ] + ] + } + } + ] + }, + "A369": { + "roadworks": [ + { + "identifier": "2024-053526--vi-bs.2025-06-07_00-00-00-000.devi-zus.2024-11-06_00-00-00-000.f_002.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.914440913307196,10.554156506150004,51.93736964814356,10.583363595248368", + "point": "51.914440913307196,10.554156506150004", + "startLcPosition": "0", + "impact": { + "lower": "Nordharz", + "upper": "Bad Harzburg", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bad Harzburg -> Vienenburg", + "title": "A369 | Bad Harzburg - Nordharz", + "startTimestamp": "2025-06-07T00:00:00+02:00", + "coordinate": { + "lat": 51.914440913307196, + "long": 10.554156506150004 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.06.25 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A369: Bad Harzburg -> Vienenburg, zwischen 0.8 km hinter AD Bad Harzburg und AD Nordharz", + "", + "L\u00e4nge: 3.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A369, BW RA 1 - Ersatzneubau, Unterf\u00fchrung der K 46" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.554156506, + 51.914440913 + ], + [ + 10.554186, + 51.914560401 + ], + [ + 10.5543819, + 51.915213501 + ], + [ + 10.5545019, + 51.915645401 + ], + [ + 10.5545469, + 51.915783701 + ], + [ + 10.5547211, + 51.916284701 + ], + [ + 10.5548461, + 51.916608301 + ], + [ + 10.5550213, + 51.917068201 + ], + [ + 10.5554319, + 51.918013001 + ], + [ + 10.5559156, + 51.919214101 + ], + [ + 10.5561655, + 51.919776901 + ], + [ + 10.5564844, + 51.920443401 + ], + [ + 10.5567934, + 51.921033101 + ], + [ + 10.5572713, + 51.921880601 + ], + [ + 10.5577675, + 51.922698801 + ], + [ + 10.5580043, + 51.923073701 + ], + [ + 10.5585677, + 51.923907201 + ], + [ + 10.5592459, + 51.924821501 + ], + [ + 10.5598721, + 51.925603101 + ], + [ + 10.5603353, + 51.926150701 + ], + [ + 10.5613288, + 51.927277501 + ], + [ + 10.562287, + 51.928313001 + ], + [ + 10.5624817, + 51.928530401 + ], + [ + 10.5642578, + 51.930484101 + ], + [ + 10.5644689, + 51.930694901 + ], + [ + 10.5648293, + 51.931019501 + ], + [ + 10.5650904, + 51.931219201 + ], + [ + 10.5655638, + 51.931542401 + ], + [ + 10.5659895, + 51.931807401 + ], + [ + 10.5662583, + 51.931960401 + ], + [ + 10.5664328, + 51.932059401 + ], + [ + 10.5670053, + 51.932359601 + ], + [ + 10.5675033, + 51.932579601 + ], + [ + 10.5679466, + 51.932762601 + ], + [ + 10.5683498, + 51.932916701 + ], + [ + 10.5687778, + 51.933068601 + ], + [ + 10.5693143, + 51.933230601 + ], + [ + 10.5698061, + 51.933373901 + ], + [ + 10.5703036, + 51.933499701 + ], + [ + 10.5707484, + 51.933600401 + ], + [ + 10.5713511, + 51.933730701 + ], + [ + 10.5737571, + 51.934201001 + ], + [ + 10.574218, + 51.934299801 + ], + [ + 10.5747052, + 51.934420201 + ], + [ + 10.5752552, + 51.934570601 + ], + [ + 10.5757817, + 51.934725801 + ], + [ + 10.5763427, + 51.934917001 + ], + [ + 10.5769704, + 51.935141401 + ], + [ + 10.5779065, + 51.935508401 + ], + [ + 10.5781126, + 51.935588701 + ], + [ + 10.5802035, + 51.936376801 + ], + [ + 10.5810376, + 51.936666001 + ], + [ + 10.5818054, + 51.936917001 + ], + [ + 10.5825439, + 51.937139801 + ], + [ + 10.5833164, + 51.937357201 + ], + [ + 10.583363595, + 51.937369648 + ] + ] + } + }, + { + "identifier": "2024-053526--vi-bs.2025-06-07_00-00-00-000.devi-zus.2024-11-06_00-00-00-000.f_002.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.937456417704354,10.583303295072005,51.91445576182187,10.553993547047309", + "point": "51.937456417704354,10.583303295072005", + "startLcPosition": "3", + "impact": { + "lower": "Bad Harzburg", + "upper": "Nordharz", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Vienenburg -> Bad Harzburg", + "title": "A369 | Nordharz - Bad Harzburg", + "startTimestamp": "2025-06-07T00:00:00+02:00", + "coordinate": { + "lat": 51.937456417704354, + "long": 10.583303295072005 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.06.25 um 00:00 Uhr", + "Ende: 01.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.06.26)", + "", + "A369: Vienenburg -> Bad Harzburg, zwischen AD Nordharz und 0.6 km vor AD Bad Harzburg", + "", + "L\u00e4nge: 3.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A369, BW RA 1 - Ersatzneubau, Unterf\u00fchrung der K 46" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 10.583303295, + 51.937456418 + ], + [ + 10.5832399, + 51.937439501 + ], + [ + 10.5829798, + 51.937367101 + ], + [ + 10.5824897, + 51.937232301 + ], + [ + 10.5817309, + 51.936998501 + ], + [ + 10.5809513, + 51.936748101 + ], + [ + 10.5801388, + 51.936468301 + ], + [ + 10.5777243, + 51.935556801 + ], + [ + 10.5768545, + 51.935227201 + ], + [ + 10.5762641, + 51.935004501 + ], + [ + 10.5757172, + 51.934821801 + ], + [ + 10.5752006, + 51.934660801 + ], + [ + 10.5746537, + 51.934507101 + ], + [ + 10.5741873, + 51.934390701 + ], + [ + 10.573694, + 51.934283301 + ], + [ + 10.5713154, + 51.933819501 + ], + [ + 10.5709284, + 51.933735401 + ], + [ + 10.5702711, + 51.933587501 + ], + [ + 10.5697392, + 51.933450601 + ], + [ + 10.5692705, + 51.933323001 + ], + [ + 10.5687197, + 51.933147401 + ], + [ + 10.5682898, + 51.933001401 + ], + [ + 10.5678593, + 51.932839301 + ], + [ + 10.5674163, + 51.932656301 + ], + [ + 10.5668942, + 51.932425801 + ], + [ + 10.5663512, + 51.932139901 + ], + [ + 10.5658874, + 51.931873401 + ], + [ + 10.5654457, + 51.931602101 + ], + [ + 10.5649741, + 51.931275201 + ], + [ + 10.5647398, + 51.931099901 + ], + [ + 10.5643377, + 51.930741601 + ], + [ + 10.5641189, + 51.930523701 + ], + [ + 10.5634365, + 51.929769101 + ], + [ + 10.5625997, + 51.928851801 + ], + [ + 10.5623433, + 51.928568201 + ], + [ + 10.5611752, + 51.927289001 + ], + [ + 10.5601902, + 51.926188201 + ], + [ + 10.5597588, + 51.925677501 + ], + [ + 10.55907, + 51.924794401 + ], + [ + 10.5584156, + 51.923898401 + ], + [ + 10.5581404, + 51.923500401 + ], + [ + 10.5575437, + 51.922586701 + ], + [ + 10.5570861, + 51.921822501 + ], + [ + 10.556651, + 51.921044001 + ], + [ + 10.5562605, + 51.920288301 + ], + [ + 10.5557717, + 51.919237201 + ], + [ + 10.5553629, + 51.918289201 + ], + [ + 10.555172, + 51.917827901 + ], + [ + 10.5549992, + 51.917424901 + ], + [ + 10.5548363, + 51.917021701 + ], + [ + 10.5546753, + 51.916605801 + ], + [ + 10.5544663, + 51.916023801 + ], + [ + 10.554325, + 51.915654201 + ], + [ + 10.5541808, + 51.915200501 + ], + [ + 10.554163, + 51.915139201 + ], + [ + 10.5541176, + 51.914967501 + ], + [ + 10.5540376, + 51.914646101 + ], + [ + 10.553993547, + 51.914455762 + ] + ] + } + } + ] + }, + "A445": { + "roadworks": [ + { + "identifier": "2026-015643--vi-bs.2026-04-09_08-30-00-000.devi-bs.2026-04-08_08-30-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.48430351923043,7.928102232275779,51.55119873614938,7.891335763068017", + "point": "51.48430351923043,7.928102232275779", + "startLcPosition": "0", + "impact": { + "lower": "Werl-Nord", + "upper": "Neheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnsberg -> Hamm", + "title": "A445 | Neheim - Werl-Nord", + "coordinate": { + "lat": 51.48430351923043, + "long": 7.928102232275779 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 08:30 bis 16:00 Uhr", + "", + "A445: Arnsberg -> Hamm, zwischen 4.0 km hinter AS Neheim und 1.8 km vor AS Werl-Nord", + "", + "L\u00e4nge: 8.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A445 - Br\u00fcckenwartung - Wanderbaustelle - AkD 15643" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.928102232, + 51.484303519 + ], + [ + 7.9278473, + 51.485856201 + ], + [ + 7.9277679, + 51.486154601 + ], + [ + 7.9276708, + 51.486579701 + ], + [ + 7.9274191, + 51.487584201 + ], + [ + 7.9270236, + 51.488870201 + ], + [ + 7.9268712, + 51.489457801 + ], + [ + 7.9266951, + 51.489949901 + ], + [ + 7.9262259, + 51.491050401 + ], + [ + 7.9258765, + 51.491679801 + ], + [ + 7.9253243, + 51.492802901 + ], + [ + 7.9247335, + 51.493856301 + ], + [ + 7.9234353, + 51.495876401 + ], + [ + 7.9227104, + 51.496868301 + ], + [ + 7.9224713, + 51.497184301 + ], + [ + 7.9215976, + 51.498258701 + ], + [ + 7.9204848, + 51.499518801 + ], + [ + 7.9192474, + 51.500792501 + ], + [ + 7.9179997, + 51.501983201 + ], + [ + 7.9170969, + 51.502803901 + ], + [ + 7.9146997, + 51.504868701 + ], + [ + 7.9128106, + 51.506434701 + ], + [ + 7.9097389, + 51.508969301 + ], + [ + 7.907666, + 51.510747801 + ], + [ + 7.9056214, + 51.512638801 + ], + [ + 7.9044498, + 51.513800301 + ], + [ + 7.9033295, + 51.514977001 + ], + [ + 7.9017107, + 51.516809301 + ], + [ + 7.9016041, + 51.516955201 + ], + [ + 7.9003794, + 51.518459001 + ], + [ + 7.8999774, + 51.519008601 + ], + [ + 7.8988221, + 51.520588801 + ], + [ + 7.8982843, + 51.521380901 + ], + [ + 7.8975323, + 51.522561101 + ], + [ + 7.8963461, + 51.524602701 + ], + [ + 7.8959182, + 51.525416901 + ], + [ + 7.895281, + 51.526700801 + ], + [ + 7.8946466, + 51.528095401 + ], + [ + 7.8943633, + 51.528760001 + ], + [ + 7.8941076, + 51.529419601 + ], + [ + 7.8936418, + 51.530731301 + ], + [ + 7.8932221, + 51.532030401 + ], + [ + 7.8928498, + 51.533372201 + ], + [ + 7.8926766, + 51.534042901 + ], + [ + 7.8925321, + 51.534726101 + ], + [ + 7.892384, + 51.535486201 + ], + [ + 7.8922471, + 51.536245701 + ], + [ + 7.8921139, + 51.537048901 + ], + [ + 7.8919416, + 51.538441701 + ], + [ + 7.8918288, + 51.539850201 + ], + [ + 7.8917956, + 51.540432401 + ], + [ + 7.891772, + 51.540964401 + ], + [ + 7.8917185, + 51.542482101 + ], + [ + 7.8916877, + 51.543759601 + ], + [ + 7.8916844, + 51.545079301 + ], + [ + 7.891665, + 51.545611701 + ], + [ + 7.8916, + 51.547844901 + ], + [ + 7.8916001, + 51.547908201 + ], + [ + 7.8915913, + 51.548056201 + ], + [ + 7.8914845, + 51.549588701 + ], + [ + 7.8913899, + 51.550759301 + ], + [ + 7.8913767, + 51.550889101 + ], + [ + 7.891335763, + 51.551198736 + ] + ] + } + }, + { + "identifier": "2026-015643--vi-bs.2026-04-15_08-30-00-000.devi-bs.2026-04-08_08-30-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.49008293935503,7.926638380118205,51.53861639789345,7.891927609775676", + "point": "51.49008293935503,7.926638380118205", + "startLcPosition": "2", + "impact": { + "lower": "Werl-Zentrum", + "upper": "Haus F\u00fcchten", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Arnsberg -> Hamm", + "title": "A445 | Haus F\u00fcchten - Werl-Zentrum", + "coordinate": { + "lat": 51.49008293935503, + "long": 7.926638380118205 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:30 bis 16:00 Uhr", + "", + "A445: Arnsberg -> Hamm, zwischen 0.2 km hinter Haus F\u00fcchten und 1.0 km vor AS Werl-Zentrum", + "", + "L\u00e4nge: 6 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A445 - Br\u00fcckenwartung - Wanderbaustelle - AkD 15643" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.92663838, + 51.490082939 + ], + [ + 7.9262259, + 51.491050401 + ], + [ + 7.9258765, + 51.491679801 + ], + [ + 7.9253243, + 51.492802901 + ], + [ + 7.9247335, + 51.493856301 + ], + [ + 7.9234353, + 51.495876401 + ], + [ + 7.9227104, + 51.496868301 + ], + [ + 7.9224713, + 51.497184301 + ], + [ + 7.9215976, + 51.498258701 + ], + [ + 7.9204848, + 51.499518801 + ], + [ + 7.9192474, + 51.500792501 + ], + [ + 7.9179997, + 51.501983201 + ], + [ + 7.9170969, + 51.502803901 + ], + [ + 7.9146997, + 51.504868701 + ], + [ + 7.9128106, + 51.506434701 + ], + [ + 7.9097389, + 51.508969301 + ], + [ + 7.907666, + 51.510747801 + ], + [ + 7.9056214, + 51.512638801 + ], + [ + 7.9044498, + 51.513800301 + ], + [ + 7.9033295, + 51.514977001 + ], + [ + 7.9017107, + 51.516809301 + ], + [ + 7.9016041, + 51.516955201 + ], + [ + 7.9003794, + 51.518459001 + ], + [ + 7.8999774, + 51.519008601 + ], + [ + 7.8988221, + 51.520588801 + ], + [ + 7.8982843, + 51.521380901 + ], + [ + 7.8975323, + 51.522561101 + ], + [ + 7.8963461, + 51.524602701 + ], + [ + 7.8959182, + 51.525416901 + ], + [ + 7.895281, + 51.526700801 + ], + [ + 7.8946466, + 51.528095401 + ], + [ + 7.8943633, + 51.528760001 + ], + [ + 7.8941076, + 51.529419601 + ], + [ + 7.8936418, + 51.530731301 + ], + [ + 7.8932221, + 51.532030401 + ], + [ + 7.8928498, + 51.533372201 + ], + [ + 7.8926766, + 51.534042901 + ], + [ + 7.8925321, + 51.534726101 + ], + [ + 7.892384, + 51.535486201 + ], + [ + 7.8922471, + 51.536245701 + ], + [ + 7.8921139, + 51.537048901 + ], + [ + 7.8919416, + 51.538441701 + ], + [ + 7.89192761, + 51.538616398 + ] + ] + } + }, + { + "identifier": "2026-014919--vi-bs.2026-04-16_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.49597616830775,7.923165893044306,51.49432057246556,7.924240875964771", + "point": "51.49597616830775,7.923165893044306", + "startLcPosition": "3", + "impact": { + "lower": "Haus F\u00fcchten", + "upper": "Wickede (Ruhr)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamm -> Arnsberg", + "title": "A445 | Wickede (Ruhr) - Haus F\u00fcchten", + "coordinate": { + "lat": 51.49597616830775, + "long": 7.923165893044306 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 08:00 bis 18:00 Uhr", + "", + "A445: Hamm -> Arnsberg, zwischen 3.1 km hinter AS Wickede (Ruhr) und 0.7 km vor Haus F\u00fcchten", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A445 - Arbeiten an Verkehrszeichenbr\u00fccke - AkD 14919" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.923165893, + 51.495976168 + ], + [ + 7.9232706, + 51.495832801 + ], + [ + 7.9240041, + 51.494689501 + ], + [ + 7.924240876, + 51.494320572 + ] + ] + } + }, + { + "identifier": "2026-015643--vi-bs.2026-04-14_08-30-00-000.devi-bs.2026-04-08_08-30-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.541307099340976,7.891570957325672,51.490913460055424,7.926044080179856", + "point": "51.541307099340976,7.891570957325672", + "startLcPosition": "5", + "impact": { + "lower": "Haus F\u00fcchten", + "upper": "Werl-Zentrum", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Hamm -> Arnsberg", + "title": "A445 | Werl-Zentrum - Haus F\u00fcchten", + "coordinate": { + "lat": 51.541307099340976, + "long": 7.891570957325672 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 08:30 bis 16:00 Uhr", + "", + "A445: Hamm -> Arnsberg, zwischen 0.7 km hinter AS Werl-Zentrum und 0.3 km vor Haus F\u00fcchten", + "", + "L\u00e4nge: 6.2 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A445 - Br\u00fcckenwartung - Wanderbaustelle - AkD 15643" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.891570957, + 51.541307099 + ], + [ + 7.8915916, + 51.540744201 + ], + [ + 7.8916155, + 51.540209901 + ], + [ + 7.8916605, + 51.539627701 + ], + [ + 7.8917319, + 51.538751101 + ], + [ + 7.8917951, + 51.538187301 + ], + [ + 7.8919363, + 51.537047001 + ], + [ + 7.8920693, + 51.536236901 + ], + [ + 7.89221, + 51.535473301 + ], + [ + 7.8923599, + 51.534707901 + ], + [ + 7.8925104, + 51.534026901 + ], + [ + 7.8926821, + 51.533355001 + ], + [ + 7.8930537, + 51.532011501 + ], + [ + 7.8936168, + 51.530239701 + ], + [ + 7.8939373, + 51.529394501 + ], + [ + 7.894202, + 51.528699401 + ], + [ + 7.8944041, + 51.528227801 + ], + [ + 7.8944724, + 51.528068601 + ], + [ + 7.8951017, + 51.526668301 + ], + [ + 7.8957447, + 51.525380301 + ], + [ + 7.8965111, + 51.523909901 + ], + [ + 7.8973887, + 51.522479801 + ], + [ + 7.8981161, + 51.521330401 + ], + [ + 7.898659, + 51.520526401 + ], + [ + 7.8990401, + 51.519961101 + ], + [ + 7.9002221, + 51.518405801 + ], + [ + 7.9013795, + 51.516954301 + ], + [ + 7.9030819, + 51.515010701 + ], + [ + 7.9043029, + 51.513735901 + ], + [ + 7.9054642, + 51.512582901 + ], + [ + 7.9075189, + 51.510682701 + ], + [ + 7.9095875, + 51.508907901 + ], + [ + 7.9126574, + 51.506374501 + ], + [ + 7.9145492, + 51.504808001 + ], + [ + 7.9169529, + 51.502739601 + ], + [ + 7.9178507, + 51.501923501 + ], + [ + 7.9190896, + 51.500739301 + ], + [ + 7.9203166, + 51.499476501 + ], + [ + 7.9214384, + 51.498207701 + ], + [ + 7.9223798, + 51.497041701 + ], + [ + 7.9226219, + 51.496721001 + ], + [ + 7.9232706, + 51.495832801 + ], + [ + 7.9240041, + 51.494689501 + ], + [ + 7.9245647, + 51.493816001 + ], + [ + 7.9251527, + 51.492766001 + ], + [ + 7.9257049, + 51.491654501 + ], + [ + 7.92604408, + 51.49091346 + ] + ] + } + } + ] + }, + "A448": { + "roadworks": [ + { + "identifier": "2026-015806--vi-fbm.2026-04-13_09-00-00-000.devi-zus.2026-04-08_09-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.455873821535434,7.228313765392368,51.45823018480788,7.233650843301968", + "point": "51.455873821535434,7.228313765392368", + "startLcPosition": "6", + "impact": { + "lower": "Bochum-Wiemelhausen", + "upper": "Bochum-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bochum-West -> Dortmund/Witten", + "title": "A448 | Bochum-S\u00fcd - Bochum-Wiemelhausen", + "coordinate": { + "lat": 51.455873821535434, + "long": 7.228313765392368 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 15:00 Uhr", + "", + "A448: Bochum-West -> Dortmund/Witten, zwischen 0.2 km hinter AS Bochum-S\u00fcd und 0.2 km vor AS Bochum-Wiemelhausen", + "", + "L\u00e4nge: 0.45 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A448 - Auf-oder Abbau Verkehrsf\u00fchrung - Wanderbaustelle - AkD 15806" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.228313765, + 51.455873822 + ], + [ + 7.2285291, + 51.455963801 + ], + [ + 7.2286616, + 51.456019201 + ], + [ + 7.2298236, + 51.456531001 + ], + [ + 7.2304541, + 51.456811901 + ], + [ + 7.2325529, + 51.457741401 + ], + [ + 7.2329352, + 51.457909601 + ], + [ + 7.233650843, + 51.458230185 + ] + ] + } + }, + { + "identifier": "2026-017689--vi-fbm.2026-04-10_08-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.4585821068205,7.234185291338333,51.45473253724519,7.224412480942395", + "point": "51.4585821068205,7.234185291338333", + "startLcPosition": "7", + "impact": { + "lower": "Bochum-Weitmar", + "upper": "Bochum-Wiemelhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dortmund/Witten -> Bochum-West", + "title": "A448 | Bochum-Wiemelhausen - Bochum-Weitmar", + "coordinate": { + "lat": 51.4585821068205, + "long": 7.234185291338333 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 12:00 Uhr", + "", + "A448: Dortmund/Witten -> Bochum-West, zwischen 0.2 km hinter AS Bochum-Wiemelhausen und 1.0 km vor AS Bochum-Weitmar", + "", + "L\u00e4nge: 0.81 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A448 - Auf- oder Abbau Verkehrsf\u00fchrung - Wanderbaustelle - AkD 17689" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.234185291, + 51.458582107 + ], + [ + 7.2333553, + 51.458209301 + ], + [ + 7.2327204, + 51.457933201 + ], + [ + 7.2290952, + 51.456323701 + ], + [ + 7.2287473, + 51.456175101 + ], + [ + 7.2285479, + 51.456091601 + ], + [ + 7.2282152, + 51.455952401 + ], + [ + 7.2277372, + 51.455755401 + ], + [ + 7.2272535, + 51.455560201 + ], + [ + 7.226531, + 51.455308101 + ], + [ + 7.2259012, + 51.455102201 + ], + [ + 7.2253987, + 51.454961801 + ], + [ + 7.2252324, + 51.454917401 + ], + [ + 7.2248689, + 51.454828701 + ], + [ + 7.2244584, + 51.454741101 + ], + [ + 7.224412481, + 51.454732537 + ] + ] + } + }, + { + "identifier": "2026-014318--vi-fbm.2026-03-24_08-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.4594013011759,7.3130361656830045,51.45762667004654,7.322768262301953", + "point": "51.4594013011759,7.3130361656830045", + "startLcPosition": "9", + "impact": { + "lower": "Witten-Stockum", + "upper": "Bochum/Witten", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bochum-West -> Dortmund/Witten", + "title": "A448 | Bochum/Witten - Witten-Stockum", + "coordinate": { + "lat": 51.4594013011759, + "long": 7.3130361656830045 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Dienstag, Mittwoch, Donnerstag, Freitag und Samstag zwischen dem 21.04.26 und dem 25.04.26 von 08:00 bis 15:00 Uhr.", + "", + "A448: Bochum-West -> Dortmund/Witten, zwischen 1.7 km hinter AK Bochum/Witten und 2.3 km vor AS Witten-Stockum", + "", + "L\u00e4nge: 0.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A448 - Baustelleneinrichtung - Wanderbaustelle - AkD 14318" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.313036166, + 51.459401301 + ], + [ + 7.3149533, + 51.459010701 + ], + [ + 7.3174179, + 51.458524701 + ], + [ + 7.3184077, + 51.458328101 + ], + [ + 7.3188439, + 51.458246601 + ], + [ + 7.3201446, + 51.458014501 + ], + [ + 7.3213314, + 51.457826201 + ], + [ + 7.3221125, + 51.457712701 + ], + [ + 7.322768262, + 51.45762667 + ] + ] + } + }, + { + "identifier": "2023-004397--vi-bs.2026-03-12_19-00-00-000.devi-zus.2024-09-02_19-00-00-000_005.f.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.458232798420234,7.351124331925438,51.458976226155976,7.363763849698914", + "point": "51.458232798420234,7.351124331925438", + "startLcPosition": "10", + "impact": { + "lower": "Witten-Annen", + "upper": "Witten-Zentrum", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bochum-West -> Dortmund/Witten", + "title": "A448 | Witten-Zentrum - Witten-Annen", + "startTimestamp": "2026-03-12T19:00:00+01:00", + "coordinate": { + "lat": 51.458232798420234, + "long": 7.351124331925438 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 19:00 Uhr", + "Ende: 24.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 06.07.27)", + "", + "A448: Bochum-West -> Dortmund/Witten, zwischen 2.3 km hinter AS Witten-Zentrum und 1.5 km vor AS Witten-Annen", + "", + "L\u00e4nge: 0.88 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7 m", + "", + "A448 - Bergbauerkundungen und Sicherung - AlD 4397" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.351124332, + 51.458232798 + ], + [ + 7.3528354, + 51.458191401 + ], + [ + 7.354401, + 51.458176401 + ], + [ + 7.3550992, + 51.458184701 + ], + [ + 7.3555583, + 51.458189901 + ], + [ + 7.3563718, + 51.458213801 + ], + [ + 7.3569009, + 51.458239701 + ], + [ + 7.3580971, + 51.458307101 + ], + [ + 7.3590279, + 51.458380201 + ], + [ + 7.3597931, + 51.458449001 + ], + [ + 7.3605448, + 51.458527101 + ], + [ + 7.3619508, + 51.458703901 + ], + [ + 7.3635388, + 51.458940201 + ], + [ + 7.36376385, + 51.458976226 + ] + ] + } + }, + { + "identifier": "2023-004397--vi-bs.2026-03-12_19-00-00-000.devi-zus.2024-09-02_19-00-00-000_005.f.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.458976226155976,7.363763849698914,51.46117337687856,7.40193873604347", + "point": "51.458976226155976,7.363763849698914", + "startLcPosition": "11", + "impact": { + "lower": "Dortmund/Witten", + "upper": "Witten-Stockum", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bochum-West -> Dortmund/Witten", + "title": "A448 | Witten-Stockum - Dortmund/Witten", + "startTimestamp": "2026-03-12T19:00:00+01:00", + "coordinate": { + "lat": 51.458976226155976, + "long": 7.363763849698914 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 19:00 Uhr", + "Ende: 24.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 06.07.27)", + "", + "A448: Bochum-West -> Dortmund/Witten, zwischen 0.6 km hinter AS Witten-Stockum und 0.8 km vor AK Dortmund/Witten", + "", + "L\u00e4nge: 2.7 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A448 - Bergbauerkundungen und Sicherung - AlD 4397" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.36376385, + 51.458976226 + ], + [ + 7.3651356, + 51.459195801 + ], + [ + 7.3673566, + 51.459546801 + ], + [ + 7.3687335, + 51.459739601 + ], + [ + 7.3701131, + 51.459902701 + ], + [ + 7.3721597, + 51.460062701 + ], + [ + 7.3728334, + 51.460095401 + ], + [ + 7.3735429, + 51.460124001 + ], + [ + 7.3742625, + 51.460132201 + ], + [ + 7.375036, + 51.460140501 + ], + [ + 7.3756713, + 51.460130601 + ], + [ + 7.3764439, + 51.460110701 + ], + [ + 7.3772067, + 51.460075101 + ], + [ + 7.3783141, + 51.460004001 + ], + [ + 7.3792276, + 51.459928301 + ], + [ + 7.3801941, + 51.459840001 + ], + [ + 7.380872, + 51.459773901 + ], + [ + 7.3811877, + 51.459743101 + ], + [ + 7.3826327, + 51.459593601 + ], + [ + 7.3838998, + 51.459472301 + ], + [ + 7.384157, + 51.459456201 + ], + [ + 7.3844397, + 51.459431901 + ], + [ + 7.3853538, + 51.459369301 + ], + [ + 7.3860383, + 51.459334201 + ], + [ + 7.3872097, + 51.459290301 + ], + [ + 7.388343, + 51.459276901 + ], + [ + 7.3891153, + 51.459286201 + ], + [ + 7.3899167, + 51.459302701 + ], + [ + 7.3902751, + 51.459310101 + ], + [ + 7.390521, + 51.459323101 + ], + [ + 7.3913867, + 51.459367401 + ], + [ + 7.3915854, + 51.459377601 + ], + [ + 7.3922466, + 51.459425001 + ], + [ + 7.3929377, + 51.459481001 + ], + [ + 7.3937364, + 51.459559301 + ], + [ + 7.3941132, + 51.459602101 + ], + [ + 7.394417, + 51.459637501 + ], + [ + 7.3952221, + 51.459741801 + ], + [ + 7.3961202, + 51.459872301 + ], + [ + 7.3969971, + 51.460019101 + ], + [ + 7.3972259, + 51.460062701 + ], + [ + 7.3981857, + 51.460245601 + ], + [ + 7.3987891, + 51.460368701 + ], + [ + 7.3993458, + 51.460494901 + ], + [ + 7.3996679, + 51.460571301 + ], + [ + 7.3999347, + 51.460633901 + ], + [ + 7.4008461, + 51.460869001 + ], + [ + 7.4013911, + 51.461017501 + ], + [ + 7.401652, + 51.461089701 + ], + [ + 7.401938736, + 51.461173377 + ] + ] + } + }, + { + "identifier": "2023-004397--vi-bs.2026-03-12_19-00-00-000.devi-zus.2024-09-02_19-00-00-000_005.f.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.46410980260945,7.412700298713377,51.4613119612207,7.40183677704759", + "point": "51.46410980260945,7.412700298713377", + "startLcPosition": "13", + "impact": { + "lower": "Witten-Annen", + "upper": "Dortmund/Witten", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Dortmund/Witten -> Bochum-West", + "title": "A448 | Dortmund/Witten - Witten-Annen", + "startTimestamp": "2026-03-12T19:00:00+01:00", + "coordinate": { + "lat": 51.46410980260945, + "long": 7.412700298713377 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.03.26 um 19:00 Uhr", + "Ende: 24.07.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 06.07.27)", + "", + "A448: Dortmund/Witten -> Bochum-West, zwischen AK Dortmund/Witten und 1.2 km vor AS Witten-Annen", + "", + "L\u00e4nge: 0.82 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 6.9 m", + "", + "A448 - Bergbauerkundungen und Sicherung - AlD 4397" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.412700299, + 51.464109803 + ], + [ + 7.412182, + 51.464032201 + ], + [ + 7.4115581, + 51.463928301 + ], + [ + 7.4108554, + 51.463793301 + ], + [ + 7.410087, + 51.463638901 + ], + [ + 7.4096728, + 51.463543201 + ], + [ + 7.409392, + 51.463475701 + ], + [ + 7.4091814, + 51.463426901 + ], + [ + 7.4083126, + 51.463211301 + ], + [ + 7.4076079, + 51.463021201 + ], + [ + 7.4060723, + 51.462580801 + ], + [ + 7.4057816, + 51.462493301 + ], + [ + 7.4046834, + 51.462204101 + ], + [ + 7.4039727, + 51.461981101 + ], + [ + 7.4034786, + 51.461820101 + ], + [ + 7.4028504, + 51.461623201 + ], + [ + 7.4020112, + 51.461361301 + ], + [ + 7.401836777, + 51.461311961 + ] + ] + } + } + ] + }, + "A480": { + "roadworks": [ + { + "identifier": "2026-017247--vi-bs.2026-04-08_07-00-00-000.devi-zus.2026-04-08_07-00-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.58708019928954,8.48235757464593,50.59477968305579,8.486574214283388", + "point": "50.58708019928954,8.48235757464593", + "startLcPosition": "0", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "A\u00dflar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wetzlar -> Wetzlar-Blasbach", + "title": "A480 | A\u00dflar - Wetzlarer Kreuz", + "coordinate": { + "lat": 50.58708019928954, + "long": 8.48235757464593 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 08:00 bis 18:00 Uhr", + "14.04.26 von 07:00 bis 18:00 Uhr", + "", + "A480: Wetzlar -> Wetzlar-Blasbach, zwischen 1.4 km hinter AS A\u00dflar und 0.2 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 0.92 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A480 - Fahrbahninstandhaltung - AkD 17247" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.482357575, + 50.587080199 + ], + [ + 8.4823715, + 50.587209601 + ], + [ + 8.4824368, + 50.587651401 + ], + [ + 8.4825086, + 50.588032001 + ], + [ + 8.4826332, + 50.588500401 + ], + [ + 8.4827754, + 50.588978701 + ], + [ + 8.4829373, + 50.589442301 + ], + [ + 8.4831808, + 50.590023001 + ], + [ + 8.4834191, + 50.590480501 + ], + [ + 8.4836843, + 50.590953901 + ], + [ + 8.4840148, + 50.591419801 + ], + [ + 8.4844112, + 50.591959501 + ], + [ + 8.4846399, + 50.592270201 + ], + [ + 8.4846947, + 50.592363101 + ], + [ + 8.4848799, + 50.592683301 + ], + [ + 8.4850523, + 50.593022501 + ], + [ + 8.4852544, + 50.593346101 + ], + [ + 8.4853955, + 50.593531901 + ], + [ + 8.485558, + 50.593720401 + ], + [ + 8.4862374, + 50.594445701 + ], + [ + 8.486574214, + 50.594779683 + ] + ] + } + }, + { + "identifier": "2026-017247--vi-bs.2026-04-08_07-00-00-000.devi-zus.2026-04-08_07-00-00-000_001.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.58716991873376,8.482367229654233,50.59485534944323,8.486650523119314", + "point": "50.58716991873376,8.482367229654233", + "startLcPosition": "0", + "impact": { + "lower": "Wetzlarer Kreuz", + "upper": "A\u00dflar", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wetzlar -> Wetzlar-Blasbach", + "title": "A480 | A\u00dflar - Wetzlarer Kreuz", + "coordinate": { + "lat": 50.58716991873376, + "long": 8.482367229654233 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 18:00 bis zum 14.04.26 07:00 Uhr.", + "14.04.26 18:00 bis zum 15.04.26 07:00 Uhr.", + "", + "A480: Wetzlar -> Wetzlar-Blasbach, zwischen 1.4 km hinter AS A\u00dflar und 0.2 km vor AK Wetzlarer Kreuz", + "", + "L\u00e4nge: 0.92 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A480 - Fahrbahninstandhaltung - AkD 17247" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.48236723, + 50.587169919 + ], + [ + 8.4823715, + 50.587209601 + ], + [ + 8.4824368, + 50.587651401 + ], + [ + 8.4825086, + 50.588032001 + ], + [ + 8.4826332, + 50.588500401 + ], + [ + 8.4827754, + 50.588978701 + ], + [ + 8.4829373, + 50.589442301 + ], + [ + 8.4831808, + 50.590023001 + ], + [ + 8.4834191, + 50.590480501 + ], + [ + 8.4836843, + 50.590953901 + ], + [ + 8.4840148, + 50.591419801 + ], + [ + 8.4844112, + 50.591959501 + ], + [ + 8.4846399, + 50.592270201 + ], + [ + 8.4846947, + 50.592363101 + ], + [ + 8.4848799, + 50.592683301 + ], + [ + 8.4850523, + 50.593022501 + ], + [ + 8.4852544, + 50.593346101 + ], + [ + 8.4853955, + 50.593531901 + ], + [ + 8.485558, + 50.593720401 + ], + [ + 8.4862374, + 50.594445701 + ], + [ + 8.486650523, + 50.594855349 + ] + ] + } + }, + { + "identifier": "2026-017247--vi-bs.2026-04-08_07-00-00-000.devi-zus.2026-04-08_07-00-00-000_001.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.59475419958126,8.486426937935356,50.58727278478655,8.482078763189424", + "point": "50.59475419958126,8.486426937935356", + "startLcPosition": "1", + "impact": { + "lower": "A\u00dflar", + "upper": "Wetzlarer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wetzlar-Blasbach -> Wetzlar", + "title": "A480 | Wetzlarer Kreuz - A\u00dflar", + "coordinate": { + "lat": 50.59475419958126, + "long": 8.486426937935356 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 07:00 bis 18:00 Uhr", + "16.04.26 von 07:00 bis 18:00 Uhr", + "", + "A480: Wetzlar-Blasbach -> Wetzlar, zwischen 0.2 km hinter AK Wetzlarer Kreuz und 1.4 km vor AS A\u00dflar", + "", + "L\u00e4nge: 0.89 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A480 - Fahrbahninstandhaltung - AkD 17247" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.486426938, + 50.5947542 + ], + [ + 8.4861667, + 50.594493601 + ], + [ + 8.485542, + 50.593833301 + ], + [ + 8.4852379, + 50.593498101 + ], + [ + 8.4849522, + 50.593139601 + ], + [ + 8.484531, + 50.592567901 + ], + [ + 8.4840605, + 50.591966101 + ], + [ + 8.4837189, + 50.591511301 + ], + [ + 8.4833809, + 50.590994601 + ], + [ + 8.4831308, + 50.590543101 + ], + [ + 8.4828954, + 50.590066601 + ], + [ + 8.4825936, + 50.589349501 + ], + [ + 8.4825105, + 50.589156801 + ], + [ + 8.4823165, + 50.588550101 + ], + [ + 8.4822061, + 50.588063901 + ], + [ + 8.482159, + 50.587809801 + ], + [ + 8.4820842, + 50.587322201 + ], + [ + 8.482078763, + 50.587272785 + ] + ] + } + }, + { + "identifier": "2026-017247--vi-bs.2026-04-08_07-00-00-000.devi-zus.2026-04-08_07-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.59483008458999,8.486502718556677,50.587102337099424,8.482060010463229", + "point": "50.59483008458999,8.486502718556677", + "startLcPosition": "1", + "impact": { + "lower": "A\u00dflar", + "upper": "Wetzlarer Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Wetzlar-Blasbach -> Wetzlar", + "title": "A480 | Wetzlarer Kreuz - A\u00dflar", + "coordinate": { + "lat": 50.59483008458999, + "long": 8.486502718556677 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 18:00 bis zum 15.04.26 07:00 Uhr.", + "15.04.26 18:00 bis zum 16.04.26 07:00 Uhr.", + "16.04.26 18:00 bis zum 17.04.26 07:00 Uhr.", + "", + "A480: Wetzlar-Blasbach -> Wetzlar, zwischen 0.2 km hinter AK Wetzlarer Kreuz und 1.4 km vor AS A\u00dflar", + "", + "L\u00e4nge: 0.92 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A480 - Fahrbahninstandhaltung - AkD 17247" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.486502719, + 50.594830085 + ], + [ + 8.4861667, + 50.594493601 + ], + [ + 8.485542, + 50.593833301 + ], + [ + 8.4852379, + 50.593498101 + ], + [ + 8.4849522, + 50.593139601 + ], + [ + 8.484531, + 50.592567901 + ], + [ + 8.4840605, + 50.591966101 + ], + [ + 8.4837189, + 50.591511301 + ], + [ + 8.4833809, + 50.590994601 + ], + [ + 8.4831308, + 50.590543101 + ], + [ + 8.4828954, + 50.590066601 + ], + [ + 8.4825936, + 50.589349501 + ], + [ + 8.4825105, + 50.589156801 + ], + [ + 8.4823165, + 50.588550101 + ], + [ + 8.4822061, + 50.588063901 + ], + [ + 8.482159, + 50.587809801 + ], + [ + 8.4820842, + 50.587322201 + ], + [ + 8.48206001, + 50.587102337 + ] + ] + } + }, + { + "identifier": "2025-057562--vi-bs.2026-03-18_08-00-00-000.devi-zus.2026-03-18_00-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.60479213048741,8.641226357736677,50.63433749518818,8.722141380704937", + "point": "50.60479213048741,8.641226357736677", + "startLcPosition": "3", + "impact": { + "lower": "Reiskirchener Dreieck", + "upper": "Anschluss L3047", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfen -> Reiskirchen", + "title": "A480 | Anschluss L3047 - Reiskirchener Dreieck", + "startTimestamp": "2026-03-18T08:00:00+01:00", + "coordinate": { + "lat": 50.60479213048741, + "long": 8.641226357736677 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 08:00 Uhr", + "Ende: 26.05.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.10.26)", + "", + "A480: Gie\u00dfen -> Reiskirchen, zwischen 1.0 km hinter AS Anschluss L3047 und 8.0 km vor AD Reiskirchener Dreieck", + "", + "L\u00e4nge: 6.91 km | Maximale Durchfahrtsbreite: 3.3 m", + "", + "A480 GE FR Wetzlar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.641226358, + 50.60479213 + ], + [ + 8.6420165, + 50.604824501 + ], + [ + 8.643149, + 50.604915101 + ], + [ + 8.6439844, + 50.605008301 + ], + [ + 8.644407, + 50.605059001 + ], + [ + 8.645383, + 50.605177601 + ], + [ + 8.6470174, + 50.605417601 + ], + [ + 8.6486719, + 50.605710101 + ], + [ + 8.6498004, + 50.605940001 + ], + [ + 8.6512587, + 50.606262601 + ], + [ + 8.6523549, + 50.606534601 + ], + [ + 8.6530442, + 50.606721901 + ], + [ + 8.6538562, + 50.606955001 + ], + [ + 8.6545366, + 50.607181401 + ], + [ + 8.6552476, + 50.607435501 + ], + [ + 8.6560052, + 50.607732701 + ], + [ + 8.6566767, + 50.608020201 + ], + [ + 8.6571128, + 50.608222601 + ], + [ + 8.6582659, + 50.608797801 + ], + [ + 8.6589902, + 50.609210101 + ], + [ + 8.6602693, + 50.610020201 + ], + [ + 8.6613065, + 50.610821401 + ], + [ + 8.6619881, + 50.611399601 + ], + [ + 8.6623779, + 50.611736301 + ], + [ + 8.6630912, + 50.612449601 + ], + [ + 8.6637167, + 50.613070701 + ], + [ + 8.6662692, + 50.615739701 + ], + [ + 8.6672238, + 50.616685501 + ], + [ + 8.6677363, + 50.617141701 + ], + [ + 8.6681133, + 50.617462401 + ], + [ + 8.6689146, + 50.618098201 + ], + [ + 8.6693728, + 50.618422701 + ], + [ + 8.6703912, + 50.619109501 + ], + [ + 8.6711998, + 50.619593801 + ], + [ + 8.6720901, + 50.620077901 + ], + [ + 8.6733089, + 50.620674601 + ], + [ + 8.6741383, + 50.621051601 + ], + [ + 8.6749508, + 50.621374701 + ], + [ + 8.6759432, + 50.621737101 + ], + [ + 8.6769864, + 50.622090901 + ], + [ + 8.6776421, + 50.622278201 + ], + [ + 8.6791013, + 50.622675001 + ], + [ + 8.6798514, + 50.622865201 + ], + [ + 8.6806015, + 50.623026801 + ], + [ + 8.68149, + 50.623192701 + ], + [ + 8.6823353, + 50.623327401 + ], + [ + 8.6833533, + 50.623469801 + ], + [ + 8.6843692, + 50.623586201 + ], + [ + 8.6855511, + 50.623684301 + ], + [ + 8.6864003, + 50.623731001 + ], + [ + 8.6871468, + 50.623754301 + ], + [ + 8.6883244, + 50.623769601 + ], + [ + 8.6895107, + 50.623766901 + ], + [ + 8.6911172, + 50.623759901 + ], + [ + 8.6922299, + 50.623752801 + ], + [ + 8.6934691, + 50.623781501 + ], + [ + 8.6946426, + 50.623859201 + ], + [ + 8.6958835, + 50.623961001 + ], + [ + 8.6969988, + 50.624107901 + ], + [ + 8.6977923, + 50.624225701 + ], + [ + 8.6987689, + 50.624390001 + ], + [ + 8.6992514, + 50.624487701 + ], + [ + 8.6998257, + 50.624593901 + ], + [ + 8.7010584, + 50.624876401 + ], + [ + 8.7021589, + 50.625178601 + ], + [ + 8.702947, + 50.625415401 + ], + [ + 8.7038273, + 50.625706001 + ], + [ + 8.704471, + 50.625927201 + ], + [ + 8.7051812, + 50.626190001 + ], + [ + 8.7059598, + 50.626509701 + ], + [ + 8.7065743, + 50.626780601 + ], + [ + 8.7070777, + 50.627027701 + ], + [ + 8.7075427, + 50.627255201 + ], + [ + 8.7084701, + 50.627745501 + ], + [ + 8.7092135, + 50.628166701 + ], + [ + 8.7100691, + 50.628678301 + ], + [ + 8.7121117, + 50.630054501 + ], + [ + 8.7136425, + 50.631028201 + ], + [ + 8.7142052, + 50.631363501 + ], + [ + 8.7147809, + 50.631674001 + ], + [ + 8.71532, + 50.631958201 + ], + [ + 8.7158748, + 50.632232401 + ], + [ + 8.7165301, + 50.632538501 + ], + [ + 8.7171088, + 50.632785201 + ], + [ + 8.717531, + 50.632952501 + ], + [ + 8.7180001, + 50.633131001 + ], + [ + 8.7185217, + 50.633325601 + ], + [ + 8.7192929, + 50.633580201 + ], + [ + 8.7201217, + 50.633835301 + ], + [ + 8.7208776, + 50.634040301 + ], + [ + 8.7217015, + 50.634241901 + ], + [ + 8.722141381, + 50.634337495 + ] + ] + } + }, + { + "identifier": "2025-057562--vi-bs.2026-03-18_08-00-00-000.devi-zus.2026-03-18_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.634444138423355,8.722084351416491,50.60479738640413,8.641228405424188", + "point": "50.634444138423355,8.722084351416491", + "startLcPosition": "8", + "impact": { + "lower": "Anschluss L3047", + "upper": "Reiskirchener Dreieck", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Reiskirchen -> Gie\u00dfen", + "title": "A480 | Reiskirchener Dreieck - Anschluss L3047", + "startTimestamp": "2026-03-18T08:00:00+01:00", + "coordinate": { + "lat": 50.634444138423355, + "long": 8.722084351416491 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 08:00 Uhr", + "Ende: 26.05.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.10.26)", + "", + "A480: Reiskirchen -> Gie\u00dfen, zwischen 7.9 km hinter AD Reiskirchener Dreieck und 1.0 km vor AS Anschluss L3047", + "", + "L\u00e4nge: 6.91 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A480 GE FR Wetzlar" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.722084351, + 50.634444138 + ], + [ + 8.7216344, + 50.634347401 + ], + [ + 8.7207971, + 50.634142201 + ], + [ + 8.7200627, + 50.633940801 + ], + [ + 8.7192241, + 50.633696301 + ], + [ + 8.7189185, + 50.633597901 + ], + [ + 8.7184545, + 50.633444301 + ], + [ + 8.7178048, + 50.633209501 + ], + [ + 8.7172094, + 50.632979001 + ], + [ + 8.716636, + 50.632743601 + ], + [ + 8.7161267, + 50.632518401 + ], + [ + 8.7151459, + 50.632021701 + ], + [ + 8.7145462, + 50.631707001 + ], + [ + 8.7135371, + 50.631114401 + ], + [ + 8.712414, + 50.630406901 + ], + [ + 8.7122148, + 50.630274401 + ], + [ + 8.7098834, + 50.628749801 + ], + [ + 8.7090978, + 50.628254801 + ], + [ + 8.7083525, + 50.627828901 + ], + [ + 8.707546, + 50.627396501 + ], + [ + 8.7070755, + 50.627168101 + ], + [ + 8.7055709, + 50.626474701 + ], + [ + 8.7043506, + 50.626009301 + ], + [ + 8.7037253, + 50.625797901 + ], + [ + 8.7028699, + 50.625513201 + ], + [ + 8.7020624, + 50.625273901 + ], + [ + 8.7009741, + 50.624980501 + ], + [ + 8.6997313, + 50.624690801 + ], + [ + 8.6992232, + 50.624579301 + ], + [ + 8.6987485, + 50.624492201 + ], + [ + 8.6977572, + 50.624320001 + ], + [ + 8.6960197, + 50.624092701 + ], + [ + 8.6951055, + 50.624000401 + ], + [ + 8.6942697, + 50.623941201 + ], + [ + 8.693238, + 50.623881401 + ], + [ + 8.6923257, + 50.623868601 + ], + [ + 8.6899134, + 50.623877901 + ], + [ + 8.6895704, + 50.623879201 + ], + [ + 8.6884586, + 50.623883701 + ], + [ + 8.6872878, + 50.623873801 + ], + [ + 8.6864003, + 50.623841401 + ], + [ + 8.6855375, + 50.623796001 + ], + [ + 8.6843411, + 50.623696901 + ], + [ + 8.6833242, + 50.623579501 + ], + [ + 8.6823238, + 50.623442601 + ], + [ + 8.681451, + 50.623298901 + ], + [ + 8.6805824, + 50.623136901 + ], + [ + 8.6797551, + 50.622961001 + ], + [ + 8.6790509, + 50.622795601 + ], + [ + 8.6774863, + 50.622370801 + ], + [ + 8.6760636, + 50.621910801 + ], + [ + 8.6748411, + 50.621472701 + ], + [ + 8.6738687, + 50.621074201 + ], + [ + 8.6729077, + 50.620636501 + ], + [ + 8.6718897, + 50.620120901 + ], + [ + 8.6710486, + 50.619663501 + ], + [ + 8.6702342, + 50.619163301 + ], + [ + 8.6692217, + 50.618490201 + ], + [ + 8.6685543, + 50.617999301 + ], + [ + 8.6678893, + 50.617455201 + ], + [ + 8.6671752, + 50.616839601 + ], + [ + 8.6657681, + 50.615463401 + ], + [ + 8.6656324, + 50.615331801 + ], + [ + 8.6639248, + 50.613553401 + ], + [ + 8.6635452, + 50.613143901 + ], + [ + 8.6629382, + 50.612512901 + ], + [ + 8.6622043, + 50.611816501 + ], + [ + 8.6616822, + 50.611352901 + ], + [ + 8.6611997, + 50.610947501 + ], + [ + 8.6606286, + 50.610491801 + ], + [ + 8.6599582, + 50.610014201 + ], + [ + 8.6587972, + 50.609257201 + ], + [ + 8.6577023, + 50.608660801 + ], + [ + 8.6572896, + 50.608450601 + ], + [ + 8.6563133, + 50.607978001 + ], + [ + 8.6550648, + 50.607488601 + ], + [ + 8.6541097, + 50.607167901 + ], + [ + 8.6535059, + 50.606979701 + ], + [ + 8.6529652, + 50.606829201 + ], + [ + 8.6523005, + 50.606650601 + ], + [ + 8.6515652, + 50.606462401 + ], + [ + 8.6497244, + 50.606050201 + ], + [ + 8.6480114, + 50.605708801 + ], + [ + 8.6467547, + 50.605500101 + ], + [ + 8.6453855, + 50.605296901 + ], + [ + 8.6448383, + 50.605224201 + ], + [ + 8.6439742, + 50.605121801 + ], + [ + 8.6430419, + 50.605030901 + ], + [ + 8.641228405, + 50.604797386 + ] + ] + } + }, + { + "identifier": "2026-000687--vi-bs.2026-03-18_08-00-00-000.devi-zus.2026-03-21_05-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.624990775356736,8.71319317901745,50.623527427522234,8.704900066376801", + "point": "50.624990775356736,8.71319317901745", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_UP", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_DOWN" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A480 BRI in GI-Nordkreuz", + "startTimestamp": "2026-03-18T08:00:00+01:00", + "coordinate": { + "lat": 50.624990775356736, + "long": 8.71319317901745 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 08:00 Uhr", + "Ende: 25.07.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.10.26)", + "", + "Abfahrt von der A485 N", + "", + "L\u00e4nge: 0.61 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A480 BRI in GI-Nordkreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.713193179, + 50.624990775 + ], + [ + 8.7131495, + 50.624978101 + ], + [ + 8.7127976, + 50.624898501 + ], + [ + 8.7123958, + 50.624832201 + ], + [ + 8.7109512, + 50.624583401 + ], + [ + 8.7090627, + 50.624253801 + ], + [ + 8.7073197, + 50.623949701 + ], + [ + 8.7066041, + 50.623824801 + ], + [ + 8.704900066, + 50.623527428 + ] + ] + } + }, + { + "identifier": "2026-000687--vi-bs.2026-03-18_08-00-00-000.devi-zus.2026-03-21_05-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.62341697876715,8.704947835103201,50.62488346579982,8.713260801463726", + "point": "50.62341697876715,8.704947835103201", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_UP", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_DOWN" + ] + }, + "display_type": "ROADWORKS", + "subtitle": "", + "title": "A480 BRI in GI-Nordkreuz", + "startTimestamp": "2026-03-18T08:00:00+01:00", + "coordinate": { + "lat": 50.62341697876715, + "long": 8.704947835103201 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 18.03.26 um 08:00 Uhr", + "Ende: 25.07.26 um 08:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 17.10.26)", + "", + "Auffahrt auf die B3(TMC)", + "", + "L\u00e4nge: 0.61 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A480 BRI in GI-Nordkreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.704947835, + 50.623416979 + ], + [ + 8.705238, + 50.623467901 + ], + [ + 8.7065685, + 50.623701501 + ], + [ + 8.7072983, + 50.623829601 + ], + [ + 8.7075731, + 50.623877801 + ], + [ + 8.7096073, + 50.624234901 + ], + [ + 8.7099283, + 50.624291301 + ], + [ + 8.7118829, + 50.624634401 + ], + [ + 8.7128982, + 50.624802801 + ], + [ + 8.7131292, + 50.624851001 + ], + [ + 8.713260801, + 50.624883466 + ] + ] + } + } + ] + }, + "A485": { + "roadworks": [ + { + "identifier": "2025-053669--vi-bs.2026-04-02_05-00-00-000.devi-zus.2025-11-10_19-00-00-000_001.de18", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.51587723788171,8.644486895138034,50.52318189155608,8.64046598412885", + "point": "50.51587723788171,8.644486895138034", + "startLcPosition": "0", + "impact": { + "lower": "Gie\u00dfener S\u00fcdkreuz", + "upper": "Langg\u00f6ns", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Langg\u00f6ns -> Gie\u00dfener Nordkreuz", + "title": "A485 | Langg\u00f6ns - Gie\u00dfener S\u00fcdkreuz", + "startTimestamp": "2026-04-02T05:00:00+02:00", + "coordinate": { + "lat": 50.51587723788171, + "long": 8.644486895138034 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 05:00 Uhr", + "Ende: 18.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.05.26)", + "", + "A485: Langg\u00f6ns -> Gie\u00dfener Nordkreuz, zwischen 2.6 km hinter AS Langg\u00f6ns und AK Gie\u00dfener S\u00fcdkreuz", + "", + "L\u00e4nge: 0.86 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A485 - Bau eines Provisorium - AK Gie\u00dfener S\u00fcdkreuz - AlD 53669" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.644486895, + 50.515877238 + ], + [ + 8.6443612, + 50.516185001 + ], + [ + 8.6439158, + 50.517077901 + ], + [ + 8.6425676, + 50.519244501 + ], + [ + 8.6419742, + 50.520193901 + ], + [ + 8.6416443, + 50.520706901 + ], + [ + 8.6412466, + 50.521423201 + ], + [ + 8.6408657, + 50.522163801 + ], + [ + 8.6407294, + 50.522480601 + ], + [ + 8.640465984, + 50.523181892 + ] + ] + } + }, + { + "identifier": "2026-017501--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_004.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.53087286885047,8.640904137085435,50.530654715105484,8.640818869352989", + "point": "50.53087286885047,8.640904137085435", + "startLcPosition": "2", + "impact": { + "lower": "Gie\u00dfener S\u00fcdkreuz", + "upper": "Linden", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfener Nordkreuz -> Langg\u00f6ns", + "title": "A485 | Linden - Gie\u00dfener S\u00fcdkreuz", + "coordinate": { + "lat": 50.53087286885047, + "long": 8.640904137085435 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 17:00 Uhr", + "14.04.26 von 07:00 bis 17:00 Uhr", + "15.04.26 von 07:00 bis 17:00 Uhr", + "16.04.26 von 07:00 bis 17:00 Uhr", + "17.04.26 von 07:00 bis 17:00 Uhr", + "", + "A485: Gie\u00dfener Nordkreuz -> Langg\u00f6ns, zwischen 1.0 km hinter AS Linden und 0.8 km vor AK Gie\u00dfener S\u00fcdkreuz", + "", + "L\u00e4nge: 0.03 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "A485 - Br\u00fcckenwartung - AkD 17501" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.640904137, + 50.530872869 + ], + [ + 8.640818869, + 50.530654715 + ] + ] + } + }, + { + "identifier": "2026-017501--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_004.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.53087286885047,8.640904137085435,50.530654715105484,8.640818869352989", + "point": "50.53087286885047,8.640904137085435", + "startLcPosition": "2", + "impact": { + "lower": "Gie\u00dfener S\u00fcdkreuz", + "upper": "Linden", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Gie\u00dfener Nordkreuz -> Langg\u00f6ns", + "title": "A485 | Linden - Gie\u00dfener S\u00fcdkreuz", + "coordinate": { + "lat": 50.53087286885047, + "long": 8.640904137085435 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 13:00 Uhr", + "14.04.26 von 09:00 bis 13:00 Uhr", + "15.04.26 von 09:00 bis 13:00 Uhr", + "16.04.26 von 09:00 bis 13:00 Uhr", + "17.04.26 von 09:00 bis 13:00 Uhr", + "", + "A485: Gie\u00dfener Nordkreuz -> Langg\u00f6ns, zwischen 1.0 km hinter AS Linden und 0.8 km vor AK Gie\u00dfener S\u00fcdkreuz", + "", + "L\u00e4nge: 0.03 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A485 - Br\u00fcckenwartung - AkD 17501" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.640904137, + 50.530872869 + ], + [ + 8.640818869, + 50.530654715 + ] + ] + } + }, + { + "identifier": "2025-053669--vi-bs.2026-04-02_05-00-00-000.devi-zus.2025-11-10_19-00-00-000_001.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.5265026287982,8.639887753083965,50.523165007869856,8.640294085525984", + "point": "50.5265026287982,8.639887753083965", + "startLcPosition": "2", + "impact": { + "lower": "Langg\u00f6ns", + "upper": "Linden", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Gie\u00dfener Nordkreuz -> Langg\u00f6ns", + "title": "A485 | Linden - Langg\u00f6ns", + "startTimestamp": "2026-04-02T05:00:00+02:00", + "coordinate": { + "lat": 50.5265026287982, + "long": 8.639887753083965 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 05:00 Uhr", + "Ende: 18.05.26 um 19:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.05.26)", + "", + "A485: Gie\u00dfener Nordkreuz -> Langg\u00f6ns, zwischen 1.4 km hinter AS Linden und 3.6 km vor AS Langg\u00f6ns", + "", + "L\u00e4nge: 0.37 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A485 - Bau eines Provisorium - AK Gie\u00dfener S\u00fcdkreuz - AlD 53669" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.639887753, + 50.526502629 + ], + [ + 8.6398643, + 50.526159501 + ], + [ + 8.6398832, + 50.525386601 + ], + [ + 8.6399066, + 50.525027601 + ], + [ + 8.6399675, + 50.524507701 + ], + [ + 8.6400289, + 50.524184401 + ], + [ + 8.6400969, + 50.523837301 + ], + [ + 8.6402721, + 50.523224001 + ], + [ + 8.640294086, + 50.523165008 + ] + ] + } + } + ] + }, + "A516": { + "roadworks": [ + { + "identifier": "2025-014604--vi-bs.2026-03-30_05-00-00-000.devi-zus.2025-09-19_00-00-00-000.de212", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.5037003279875,6.8607625328633794,51.512021449188246,6.85661266638174", + "point": "51.5037003279875,6.8607625328633794", + "startLcPosition": "0", + "impact": { + "lower": "Oberhausen-Sterkrade", + "upper": "Oberhausen-Eisenheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen-Eisenheim -> Oberhausen", + "title": "A516 | Oberhausen-Eisenheim - Oberhausen-Sterkrade", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 51.5037003279875, + "long": 6.8607625328633794 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 26.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.08.26)", + "", + "A516: Oberhausen-Eisenheim -> Oberhausen, zwischen 0.6 km hinter AS Oberhausen-Eisenheim und 0.8 km vor AS Oberhausen-Sterkrade", + "", + "L\u00e4nge: 1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A516 - Br\u00fcckenneubau Teutoburger Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.860762533, + 51.503700328 + ], + [ + 6.8603868, + 51.503946401 + ], + [ + 6.8599266, + 51.504256401 + ], + [ + 6.8594802, + 51.504577101 + ], + [ + 6.8592616, + 51.504754001 + ], + [ + 6.8590457, + 51.504936201 + ], + [ + 6.8588463, + 51.505125101 + ], + [ + 6.858653, + 51.505318001 + ], + [ + 6.8585046, + 51.505489201 + ], + [ + 6.8583594, + 51.505668201 + ], + [ + 6.8581725, + 51.505928001 + ], + [ + 6.8579998, + 51.506204501 + ], + [ + 6.857703, + 51.506756101 + ], + [ + 6.8575835, + 51.507010801 + ], + [ + 6.8574673, + 51.507269601 + ], + [ + 6.8573267, + 51.507598001 + ], + [ + 6.857197, + 51.507937301 + ], + [ + 6.8570069, + 51.508510801 + ], + [ + 6.8568505, + 51.509064301 + ], + [ + 6.8567865, + 51.509341701 + ], + [ + 6.8567301, + 51.509624101 + ], + [ + 6.8566849, + 51.509884101 + ], + [ + 6.856648, + 51.510147301 + ], + [ + 6.8566199, + 51.510379901 + ], + [ + 6.8565953, + 51.510662501 + ], + [ + 6.8565807, + 51.510945501 + ], + [ + 6.8565774, + 51.511347601 + ], + [ + 6.8565809, + 51.511562401 + ], + [ + 6.8565935, + 51.511778901 + ], + [ + 6.856612666, + 51.512021449 + ] + ] + } + }, + { + "identifier": "2025-014604--vi-bs.2026-03-30_05-00-00-000.devi-zus.2025-09-19_00-00-00-000.de210", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.49997604178976,6.864596775745154,51.5037003279875,6.8607625328633794", + "point": "51.49997604178976,6.864596775745154", + "startLcPosition": "0", + "impact": { + "lower": "Oberhausen-Sterkrade", + "upper": "Oberhausen-Eisenheim", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen-Eisenheim -> Oberhausen", + "title": "A516 | Oberhausen-Eisenheim - Oberhausen-Sterkrade", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 51.49997604178976, + "long": 6.864596775745154 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 26.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.08.26)", + "", + "A516: Oberhausen-Eisenheim -> Oberhausen, zwischen 0.1 km hinter AS Oberhausen-Eisenheim und 1.8 km vor AS Oberhausen-Sterkrade", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A516 - Br\u00fcckenneubau Teutoburger Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.864596776, + 51.499976042 + ], + [ + 6.864449, + 51.500291401 + ], + [ + 6.864274, + 51.500598001 + ], + [ + 6.8641099, + 51.500880001 + ], + [ + 6.8640141, + 51.501021601 + ], + [ + 6.8639112, + 51.501166601 + ], + [ + 6.863806, + 51.501297101 + ], + [ + 6.8637032, + 51.501423701 + ], + [ + 6.8635493, + 51.501594601 + ], + [ + 6.8633635, + 51.501788301 + ], + [ + 6.8631599, + 51.501977101 + ], + [ + 6.8629778, + 51.502136901 + ], + [ + 6.8627897, + 51.502290401 + ], + [ + 6.862391, + 51.502598301 + ], + [ + 6.8620206, + 51.502863601 + ], + [ + 6.861556, + 51.503177201 + ], + [ + 6.8609684, + 51.503565501 + ], + [ + 6.860762533, + 51.503700328 + ] + ] + } + }, + { + "identifier": "2025-015377--vi-fbm.2026-03-31_09-00-00-000.devi-zus.2025-09-05_00-00-00-000.de94", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "51.52878243502314,6.845862566684715,51.53032517160779,6.8444084609080065", + "point": "51.52878243502314,6.845862566684715", + "startLcPosition": "1", + "impact": { + "lower": "Oberhausen", + "upper": "Oberhausen-Sterkrade", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen-Eisenheim -> Oberhausen", + "title": "A516 | Oberhausen-Sterkrade - Oberhausen", + "coordinate": { + "lat": 51.52878243502314, + "long": 6.845862566684715 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.04.26 von 09:00 bis 12:00 Uhr", + "22.04.26 von 09:00 bis 12:00 Uhr", + "23.04.26 von 09:00 bis 12:00 Uhr", + "", + "A516: Oberhausen-Eisenheim -> Oberhausen, zwischen 1.4 km hinter AS Oberhausen-Sterkrade und 1.1 km vor AK Oberhausen", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "A3 - 5 Br\u00fcckenneubauten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.845862567, + 51.528782435 + ], + [ + 6.8454125, + 51.529263301 + ], + [ + 6.8449856, + 51.529739301 + ], + [ + 6.844408461, + 51.530325172 + ] + ] + } + }, + { + "identifier": "2025-014604--vi-bs.2026-03-30_05-00-00-000.devi-zus.2025-09-19_00-00-00-000.de216", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.522148544694865,6.856767446607414,51.52572596112443,6.850034138690735", + "point": "51.522148544694865,6.856767446607414", + "startLcPosition": "1", + "impact": { + "lower": "Oberhausen", + "upper": "Oberhausen-Sterkrade", + "symbols": [ + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen-Eisenheim -> Oberhausen", + "title": "A516 | Oberhausen-Sterkrade - Oberhausen", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 51.522148544694865, + "long": 6.856767446607414 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 26.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.08.26)", + "", + "A516: Oberhausen-Eisenheim -> Oberhausen, zwischen 0.4 km hinter AS Oberhausen-Sterkrade und 1.7 km vor AK Oberhausen", + "", + "L\u00e4nge: 0.61 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A516 - Br\u00fcckenneubau Teutoburger Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.856767447, + 51.522148545 + ], + [ + 6.8567293, + 51.522180001 + ], + [ + 6.85644, + 51.522404901 + ], + [ + 6.8559859, + 51.522724701 + ], + [ + 6.8555563, + 51.522993401 + ], + [ + 6.8551771, + 51.523215101 + ], + [ + 6.8544158, + 51.523611501 + ], + [ + 6.853467, + 51.524066301 + ], + [ + 6.8527833, + 51.524394001 + ], + [ + 6.8506816, + 51.525408301 + ], + [ + 6.850034139, + 51.525725961 + ] + ] + } + }, + { + "identifier": "2025-014297--vi-fbm.2026-04-16_09-00-00-000.devi-zus.2025-04-06_00-00-00-000.de152", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.536642019705674,6.835280586060654,51.526882662056764,6.84781076198958", + "point": "51.536642019705674,6.835280586060654", + "startLcPosition": "2", + "impact": { + "lower": "Oberhausen-Sterkrade", + "upper": "Oberhausen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Oberhausen -> Oberhausen-Eisenheim", + "title": "A516 | Oberhausen - Oberhausen-Sterkrade", + "coordinate": { + "lat": 51.536642019705674, + "long": 6.835280586060654 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "16.04.26 von 09:00 bis 12:00 Uhr", + "17.04.26 von 09:00 bis 12:00 Uhr", + "", + "A516: Oberhausen -> Oberhausen-Eisenheim, zwischen 0.1 km hinter AK Oberhausen und 1.2 km vor AS Oberhausen-Sterkrade", + "", + "L\u00e4nge: 1.4 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A3 Ersatzneubau DB-Bauwerk (Betuwe)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.835280586, + 51.53664202 + ], + [ + 6.8356146, + 51.536441501 + ], + [ + 6.8359664, + 51.536234101 + ], + [ + 6.8372784, + 51.535448101 + ], + [ + 6.8385903, + 51.534662001 + ], + [ + 6.8389504, + 51.534438801 + ], + [ + 6.8395117, + 51.534089201 + ], + [ + 6.8400801, + 51.533710101 + ], + [ + 6.8403165, + 51.533547101 + ], + [ + 6.8407284, + 51.533259601 + ], + [ + 6.8410152, + 51.533053301 + ], + [ + 6.8413259, + 51.532823501 + ], + [ + 6.8418972, + 51.532386001 + ], + [ + 6.842833, + 51.531611001 + ], + [ + 6.8430611, + 51.531417901 + ], + [ + 6.8438207, + 51.530729601 + ], + [ + 6.8446073, + 51.529923401 + ], + [ + 6.8453619, + 51.529107901 + ], + [ + 6.8461457, + 51.528269001 + ], + [ + 6.8469796, + 51.527502301 + ], + [ + 6.8477423, + 51.526929701 + ], + [ + 6.847810762, + 51.526882662 + ] + ] + } + }, + { + "identifier": "2025-014604--vi-bs.2026-03-30_05-00-00-000.devi-zus.2025-09-19_00-00-00-000.de202", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.526882662056764,6.84781076198958,51.503663995351076,6.860574556862989", + "point": "51.526882662056764,6.84781076198958", + "startLcPosition": "2", + "impact": { + "lower": "Oberhausen-Eisenheim", + "upper": "Oberhausen", + "symbols": [ + "SEPARATE", + "ARROW_DOWN", + null, + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Oberhausen -> Oberhausen-Eisenheim", + "title": "A516 | Oberhausen - Oberhausen-Eisenheim", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 51.526882662056764, + "long": 6.84781076198958 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 26.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.08.26)", + "", + "A516: Oberhausen -> Oberhausen-Eisenheim, zwischen 1.5 km hinter AK Oberhausen und 0.6 km vor AS Oberhausen-Eisenheim", + "", + "L\u00e4nge: 3 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A516 - Br\u00fcckenneubau Teutoburger Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.847810762, + 51.526882662 + ], + [ + 6.8484115, + 51.526469901 + ], + [ + 6.8490941, + 51.526079501 + ], + [ + 6.8500168, + 51.525591301 + ], + [ + 6.8506624, + 51.525285501 + ], + [ + 6.8527077, + 51.524306701 + ], + [ + 6.8543189, + 51.523524301 + ], + [ + 6.8550572, + 51.523140301 + ], + [ + 6.8554451, + 51.522918801 + ], + [ + 6.8558571, + 51.522659601 + ], + [ + 6.856303, + 51.522347901 + ], + [ + 6.8564914, + 51.522199801 + ], + [ + 6.8568314, + 51.521927901 + ], + [ + 6.8570787, + 51.521705101 + ], + [ + 6.8573114, + 51.521480801 + ], + [ + 6.8573747, + 51.521412201 + ], + [ + 6.8574415, + 51.521347301 + ], + [ + 6.8575052, + 51.521279201 + ], + [ + 6.8578787, + 51.520846401 + ], + [ + 6.858052, + 51.520622001 + ], + [ + 6.8584463, + 51.519990201 + ], + [ + 6.8585587, + 51.519760701 + ], + [ + 6.8586531, + 51.519531401 + ], + [ + 6.8587332, + 51.519301501 + ], + [ + 6.8587916, + 51.519067301 + ], + [ + 6.8588443, + 51.518679901 + ], + [ + 6.8588526, + 51.518337801 + ], + [ + 6.8588239, + 51.518013901 + ], + [ + 6.8587936, + 51.517847601 + ], + [ + 6.8587594, + 51.517685801 + ], + [ + 6.8587098, + 51.517510301 + ], + [ + 6.8586501, + 51.517336201 + ], + [ + 6.8585911, + 51.517187801 + ], + [ + 6.8585251, + 51.517041901 + ], + [ + 6.858431, + 51.516863801 + ], + [ + 6.858331, + 51.516688101 + ], + [ + 6.858254, + 51.516559101 + ], + [ + 6.8581687, + 51.516426601 + ], + [ + 6.8580814, + 51.516295301 + ], + [ + 6.8579988, + 51.516172401 + ], + [ + 6.85784, + 51.515934701 + ], + [ + 6.8576814, + 51.515695501 + ], + [ + 6.8575079, + 51.515422001 + ], + [ + 6.8574271, + 51.515283601 + ], + [ + 6.857348, + 51.515153301 + ], + [ + 6.8572192, + 51.514912401 + ], + [ + 6.8571528, + 51.514791701 + ], + [ + 6.8570994, + 51.514669201 + ], + [ + 6.8570376, + 51.514546201 + ], + [ + 6.8569845, + 51.514426901 + ], + [ + 6.8568908, + 51.514188601 + ], + [ + 6.8568406, + 51.514050001 + ], + [ + 6.8567969, + 51.513914301 + ], + [ + 6.8567354, + 51.513716901 + ], + [ + 6.8566824, + 51.513518801 + ], + [ + 6.8566402, + 51.513342701 + ], + [ + 6.8566032, + 51.513167601 + ], + [ + 6.8565723, + 51.512991901 + ], + [ + 6.8565465, + 51.512825301 + ], + [ + 6.8564596, + 51.512153701 + ], + [ + 6.8564318, + 51.511780901 + ], + [ + 6.8564132, + 51.511351301 + ], + [ + 6.8564197, + 51.510940101 + ], + [ + 6.8564304, + 51.510704401 + ], + [ + 6.8564485, + 51.510472501 + ], + [ + 6.8564843, + 51.510142501 + ], + [ + 6.856524, + 51.509877601 + ], + [ + 6.8565677, + 51.509617501 + ], + [ + 6.8566753, + 51.509120101 + ], + [ + 6.8568039, + 51.508626801 + ], + [ + 6.8568609, + 51.508448701 + ], + [ + 6.856913, + 51.508263401 + ], + [ + 6.8570354, + 51.507921301 + ], + [ + 6.8571674, + 51.507578101 + ], + [ + 6.8573053, + 51.507243901 + ], + [ + 6.8575195, + 51.506779201 + ], + [ + 6.8575851, + 51.506685101 + ], + [ + 6.8576484, + 51.506563601 + ], + [ + 6.8577546, + 51.506331201 + ], + [ + 6.8578612, + 51.506145201 + ], + [ + 6.8579724, + 51.505964901 + ], + [ + 6.8581977, + 51.505632801 + ], + [ + 6.8584875, + 51.505296401 + ], + [ + 6.8586486, + 51.505126601 + ], + [ + 6.8588176, + 51.504964501 + ], + [ + 6.8589583, + 51.504834201 + ], + [ + 6.8590943, + 51.504720101 + ], + [ + 6.8592368, + 51.504605601 + ], + [ + 6.8593766, + 51.504496701 + ], + [ + 6.8598409, + 51.504156401 + ], + [ + 6.860574557, + 51.503663995 + ] + ] + } + }, + { + "identifier": "2025-014604--vi-bs.2026-03-30_05-00-00-000.devi-zus.2025-09-19_00-00-00-000.de214", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.519894822567764,6.859370782448285,51.5221410211545,6.856776570306383", + "point": "51.519894822567764,6.859370782448285", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Oberhausen-Sterkrade (aus Richtung Oberhausen-Eisenheim) nach A516", + "title": "A516 - Br\u00fcckenneubau Teutoburger Str.", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 51.519894822567764, + "long": 6.859370782448285 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 26.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.08.26)", + "", + "Von Auffahrt auf die A516: AS Oberhausen-Sterkrade (aus Richtung Oberhausen-Eisenheim) nach A516: Oberhausen-Eisenheim -> Oberhausen, zwischen AS Oberhausen-Sterkrade und 2.3 km vor AK Oberhausen", + "", + "L\u00e4nge: 0.31 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A516 - Br\u00fcckenneubau Teutoburger Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.859370782, + 51.519894823 + ], + [ + 6.8592664, + 51.519934001 + ], + [ + 6.8591057, + 51.520004001 + ], + [ + 6.8589087, + 51.520194601 + ], + [ + 6.8579458, + 51.521124801 + ], + [ + 6.8576461, + 51.521330201 + ], + [ + 6.8574588, + 51.521527801 + ], + [ + 6.8572229, + 51.521755101 + ], + [ + 6.8568268, + 51.522099601 + ], + [ + 6.85677657, + 51.522141021 + ] + ] + } + }, + { + "identifier": "2025-014604--vi-bs.2026-03-30_05-00-00-000.devi-zus.2025-09-19_00-00-00-000.de208", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50014692959515,6.866605437907648,51.502352115204715,6.862709786709314", + "point": "51.50014692959515,6.866605437907648", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Oberhausen-Eisenheim (in Richtung Oberhausen-Sterkrade) nach A516", + "title": "A516 - Br\u00fcckenneubau Teutoburger Str.", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 51.50014692959515, + "long": 6.866605437907648 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 26.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.08.26)", + "", + "Von Auffahrt auf die A516: AS Oberhausen-Eisenheim (in Richtung Oberhausen-Sterkrade) nach A516: Oberhausen-Eisenheim -> Oberhausen, zwischen AS Oberhausen-Eisenheim und 2.0 km vor AS Oberhausen-Sterkrade", + "", + "L\u00e4nge: 0.41 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A516 - Br\u00fcckenneubau Teutoburger Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.866605438, + 51.50014693 + ], + [ + 6.8666215, + 51.500290601 + ], + [ + 6.8666263, + 51.500446001 + ], + [ + 6.8666188, + 51.500548901 + ], + [ + 6.86661, + 51.500600201 + ], + [ + 6.8665944, + 51.500647301 + ], + [ + 6.8665588, + 51.500726701 + ], + [ + 6.8665315, + 51.500764101 + ], + [ + 6.8665016, + 51.500799701 + ], + [ + 6.8664499, + 51.500852801 + ], + [ + 6.8663945, + 51.500896001 + ], + [ + 6.8663395, + 51.500931501 + ], + [ + 6.8662801, + 51.500962401 + ], + [ + 6.8661915, + 51.501005701 + ], + [ + 6.8660893, + 51.501044901 + ], + [ + 6.8659898, + 51.501074901 + ], + [ + 6.8658812, + 51.501102301 + ], + [ + 6.8657905, + 51.501120301 + ], + [ + 6.8656903, + 51.501132401 + ], + [ + 6.8656265, + 51.501137201 + ], + [ + 6.8655609, + 51.501141001 + ], + [ + 6.8654225, + 51.501142701 + ], + [ + 6.8652849, + 51.501137901 + ], + [ + 6.8651256, + 51.501124301 + ], + [ + 6.8649621, + 51.501114401 + ], + [ + 6.8648287, + 51.501110801 + ], + [ + 6.8646932, + 51.501116101 + ], + [ + 6.8645806, + 51.501126201 + ], + [ + 6.8644628, + 51.501143101 + ], + [ + 6.8643502, + 51.501169101 + ], + [ + 6.8642925, + 51.501185001 + ], + [ + 6.8642341, + 51.501203701 + ], + [ + 6.8641501, + 51.501234301 + ], + [ + 6.8640704, + 51.501270601 + ], + [ + 6.8639685, + 51.501325001 + ], + [ + 6.863873, + 51.501385601 + ], + [ + 6.8636954, + 51.501556501 + ], + [ + 6.8634803, + 51.501769801 + ], + [ + 6.8633632, + 51.501875701 + ], + [ + 6.8631599, + 51.501977101 + ], + [ + 6.8629778, + 51.502136901 + ], + [ + 6.8627897, + 51.502290401 + ], + [ + 6.862709787, + 51.502352115 + ] + ] + } + }, + { + "identifier": "2025-014604--vi-bs.2026-03-30_05-00-00-000.devi-zus.2025-09-19_00-00-00-000.de206", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.50531055494028,6.858103331974292,51.50365772787438,6.860583894905509", + "point": "51.50531055494028,6.858103331974292", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Oberhausen-Eisenheim (aus Richtung Oberhausen-Sterkrade) nach A516", + "title": "A516 - Br\u00fcckenneubau Teutoburger Str.", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 51.50531055494028, + "long": 6.858103331974292 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 26.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.08.26)", + "", + "Von Auffahrt auf die A516: AS Oberhausen-Eisenheim (aus Richtung Oberhausen-Sterkrade) nach A516: Oberhausen -> Oberhausen-Eisenheim, zwischen AS Oberhausen-Sterkrade und 0.6 km vor AS Oberhausen-Eisenheim", + "", + "L\u00e4nge: 0.25 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A516 - Br\u00fcckenneubau Teutoburger Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.858103332, + 51.505310555 + ], + [ + 6.8582144, + 51.505235601 + ], + [ + 6.8583862, + 51.505121101 + ], + [ + 6.8585817, + 51.504987501 + ], + [ + 6.8588375, + 51.504812301 + ], + [ + 6.8591244, + 51.504603801 + ], + [ + 6.8598409, + 51.504156401 + ], + [ + 6.860583895, + 51.503657728 + ] + ] + } + }, + { + "identifier": "2025-014604--vi-bs.2026-03-30_05-00-00-000.devi-zus.2025-09-19_00-00-00-000.de204", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.51341971837379,6.85610011152407,51.510207375936744,6.8564772620879095", + "point": "51.51341971837379,6.85610011152407", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Oberhausen-Sterkrade (aus Richtung Oberhausen) nach A516", + "title": "A516 - Br\u00fcckenneubau Teutoburger Str.", + "startTimestamp": "2026-03-30T05:00:00+02:00", + "coordinate": { + "lat": 51.51341971837379, + "long": 6.85610011152407 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 05:00 Uhr", + "Ende: 26.08.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.08.26)", + "", + "Von Auffahrt auf die A516: AS Oberhausen-Sterkrade (aus Richtung Oberhausen) nach A516: Oberhausen -> Oberhausen-Eisenheim, zwischen AS Oberhausen-Sterkrade und 1.4 km vor AS Oberhausen-Eisenheim", + "", + "L\u00e4nge: 0.36 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A516 - Br\u00fcckenneubau Teutoburger Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.856100112, + 51.513419718 + ], + [ + 6.8561633, + 51.513254701 + ], + [ + 6.8562979, + 51.513028701 + ], + [ + 6.8563557, + 51.512878201 + ], + [ + 6.8564031, + 51.512694501 + ], + [ + 6.8564596, + 51.512153701 + ], + [ + 6.8564318, + 51.511780901 + ], + [ + 6.8564132, + 51.511351301 + ], + [ + 6.8564197, + 51.510940101 + ], + [ + 6.8564304, + 51.510704401 + ], + [ + 6.8564485, + 51.510472501 + ], + [ + 6.856477262, + 51.510207376 + ] + ] + } + } + ] + }, + "A524": { + "roadworks": [ + { + "identifier": "2026-011741--vi-fbm.2026-04-20_08-00-00-000.devi-zus.2026-04-15_08-00-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35278730138156,6.7508640575532874,51.351905962757336,6.795103796389335", + "point": "51.35278730138156,6.7508640575532874", + "startLcPosition": "0", + "impact": { + "lower": "Lintorf", + "upper": "Duisburg-Huckingen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Duisburg-S\u00fcd -> Breitscheid", + "title": "A524 | Duisburg-Huckingen - Lintorf", + "coordinate": { + "lat": 51.35278730138156, + "long": 6.7508640575532874 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 16:00 Uhr", + "21.04.26 von 08:00 bis 16:00 Uhr", + "", + "A524: Duisburg-S\u00fcd -> Breitscheid, zwischen 0.5 km hinter Duisburg-Huckingen und 1.8 km vor AS Lintorf", + "", + "L\u00e4nge: 3.14 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.750864058, + 51.352787301 + ], + [ + 6.7520825, + 51.352903801 + ], + [ + 6.7539185, + 51.353061301 + ], + [ + 6.7556661, + 51.353202701 + ], + [ + 6.7568084, + 51.353264101 + ], + [ + 6.7578135, + 51.353284301 + ], + [ + 6.758617, + 51.353277001 + ], + [ + 6.7594913, + 51.353259301 + ], + [ + 6.7603242, + 51.353214001 + ], + [ + 6.7611006, + 51.353155501 + ], + [ + 6.7620157, + 51.353029801 + ], + [ + 6.7627865, + 51.352923901 + ], + [ + 6.7637891, + 51.352749901 + ], + [ + 6.7649058, + 51.352546001 + ], + [ + 6.7665885, + 51.352215701 + ], + [ + 6.768615, + 51.351834001 + ], + [ + 6.7693996, + 51.351716101 + ], + [ + 6.7705307, + 51.351561001 + ], + [ + 6.7715121, + 51.351468601 + ], + [ + 6.7725167, + 51.351416801 + ], + [ + 6.7736155, + 51.351405301 + ], + [ + 6.774494, + 51.351428201 + ], + [ + 6.7752781, + 51.351476801 + ], + [ + 6.7757219, + 51.351518301 + ], + [ + 6.7763123, + 51.351590401 + ], + [ + 6.7765894, + 51.351624201 + ], + [ + 6.7780095, + 51.351811101 + ], + [ + 6.7786551, + 51.351900501 + ], + [ + 6.7789614, + 51.351942901 + ], + [ + 6.7795246, + 51.352026101 + ], + [ + 6.7816624, + 51.352331601 + ], + [ + 6.782555, + 51.352459501 + ], + [ + 6.7842112, + 51.352657601 + ], + [ + 6.7846915, + 51.352704101 + ], + [ + 6.7857644, + 51.352778101 + ], + [ + 6.7864719, + 51.352791701 + ], + [ + 6.7873496, + 51.352800001 + ], + [ + 6.7881275, + 51.352782801 + ], + [ + 6.7887584, + 51.352750301 + ], + [ + 6.7896516, + 51.352678401 + ], + [ + 6.7904089, + 51.352600201 + ], + [ + 6.7911515, + 51.352504701 + ], + [ + 6.7941235, + 51.352049901 + ], + [ + 6.795103796, + 51.351905963 + ] + ] + } + }, + { + "identifier": "2026-011741--vi-fbm.2026-04-15_08-00-00-000.devi-zus.2026-04-15_08-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35278730138156,6.7508640575532874,51.351905962757336,6.795103796389335", + "point": "51.35278730138156,6.7508640575532874", + "startLcPosition": "0", + "impact": { + "lower": "Lintorf", + "upper": "Duisburg-Huckingen", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Duisburg-S\u00fcd -> Breitscheid", + "title": "A524 | Duisburg-Huckingen - Lintorf", + "coordinate": { + "lat": 51.35278730138156, + "long": 6.7508640575532874 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 16:00 Uhr", + "16.04.26 von 08:00 bis 16:00 Uhr", + "", + "A524: Duisburg-S\u00fcd -> Breitscheid, zwischen 0.5 km hinter Duisburg-Huckingen und 1.8 km vor AS Lintorf", + "", + "L\u00e4nge: 3.14 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.750864058, + 51.352787301 + ], + [ + 6.7520825, + 51.352903801 + ], + [ + 6.7539185, + 51.353061301 + ], + [ + 6.7556661, + 51.353202701 + ], + [ + 6.7568084, + 51.353264101 + ], + [ + 6.7578135, + 51.353284301 + ], + [ + 6.758617, + 51.353277001 + ], + [ + 6.7594913, + 51.353259301 + ], + [ + 6.7603242, + 51.353214001 + ], + [ + 6.7611006, + 51.353155501 + ], + [ + 6.7620157, + 51.353029801 + ], + [ + 6.7627865, + 51.352923901 + ], + [ + 6.7637891, + 51.352749901 + ], + [ + 6.7649058, + 51.352546001 + ], + [ + 6.7665885, + 51.352215701 + ], + [ + 6.768615, + 51.351834001 + ], + [ + 6.7693996, + 51.351716101 + ], + [ + 6.7705307, + 51.351561001 + ], + [ + 6.7715121, + 51.351468601 + ], + [ + 6.7725167, + 51.351416801 + ], + [ + 6.7736155, + 51.351405301 + ], + [ + 6.774494, + 51.351428201 + ], + [ + 6.7752781, + 51.351476801 + ], + [ + 6.7757219, + 51.351518301 + ], + [ + 6.7763123, + 51.351590401 + ], + [ + 6.7765894, + 51.351624201 + ], + [ + 6.7780095, + 51.351811101 + ], + [ + 6.7786551, + 51.351900501 + ], + [ + 6.7789614, + 51.351942901 + ], + [ + 6.7795246, + 51.352026101 + ], + [ + 6.7816624, + 51.352331601 + ], + [ + 6.782555, + 51.352459501 + ], + [ + 6.7842112, + 51.352657601 + ], + [ + 6.7846915, + 51.352704101 + ], + [ + 6.7857644, + 51.352778101 + ], + [ + 6.7864719, + 51.352791701 + ], + [ + 6.7873496, + 51.352800001 + ], + [ + 6.7881275, + 51.352782801 + ], + [ + 6.7887584, + 51.352750301 + ], + [ + 6.7896516, + 51.352678401 + ], + [ + 6.7904089, + 51.352600201 + ], + [ + 6.7911515, + 51.352504701 + ], + [ + 6.7941235, + 51.352049901 + ], + [ + 6.795103796, + 51.351905963 + ] + ] + } + }, + { + "identifier": "2026-011741--vi-fbm.2026-04-20_08-00-00-000.devi-zus.2026-04-15_08-00-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35201803372511,6.795146514408653,51.352923847127784,6.750831143378802", + "point": "51.35201803372511,6.795146514408653", + "startLcPosition": "3", + "impact": { + "lower": "Duisburg-Huckingen", + "upper": "Lintorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Breitscheid -> Duisburg-S\u00fcd", + "title": "A524 | Lintorf - Duisburg-Huckingen", + "coordinate": { + "lat": 51.35201803372511, + "long": 6.795146514408653 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "20.04.26 von 08:00 bis 16:00 Uhr", + "21.04.26 von 08:00 bis 16:00 Uhr", + "", + "A524: Breitscheid -> Duisburg-S\u00fcd, zwischen 1.8 km hinter AS Lintorf und 0.5 km vor Duisburg-Huckingen", + "", + "L\u00e4nge: 3.14 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.795146514, + 51.352018034 + ], + [ + 6.7941477, + 51.352170701 + ], + [ + 6.7913025, + 51.352593301 + ], + [ + 6.7904531, + 51.352699401 + ], + [ + 6.7896637, + 51.352778401 + ], + [ + 6.7887606, + 51.352849401 + ], + [ + 6.7881303, + 51.352893001 + ], + [ + 6.787355, + 51.352902401 + ], + [ + 6.7864709, + 51.352898901 + ], + [ + 6.78609, + 51.352891601 + ], + [ + 6.7855933, + 51.352869301 + ], + [ + 6.7845563, + 51.352799801 + ], + [ + 6.7841545, + 51.352757101 + ], + [ + 6.7824949, + 51.352561101 + ], + [ + 6.780778, + 51.352310701 + ], + [ + 6.7794908, + 51.352128501 + ], + [ + 6.7789532, + 51.352050701 + ], + [ + 6.7765562, + 51.351724801 + ], + [ + 6.7762564, + 51.351690401 + ], + [ + 6.7752694, + 51.351599401 + ], + [ + 6.7745076, + 51.351551901 + ], + [ + 6.7736197, + 51.351536801 + ], + [ + 6.7725328, + 51.351546501 + ], + [ + 6.7717865, + 51.351577501 + ], + [ + 6.7710865, + 51.351636201 + ], + [ + 6.7701298, + 51.351750901 + ], + [ + 6.7693569, + 51.351850201 + ], + [ + 6.7683771, + 51.352012401 + ], + [ + 6.7675574, + 51.352164801 + ], + [ + 6.7658629, + 51.352490101 + ], + [ + 6.7641957, + 51.352813801 + ], + [ + 6.7633036, + 51.352965001 + ], + [ + 6.7621901, + 51.353129501 + ], + [ + 6.7612227, + 51.353244701 + ], + [ + 6.7603493, + 51.353327801 + ], + [ + 6.7590716, + 51.353401901 + ], + [ + 6.7579771, + 51.353415301 + ], + [ + 6.7567682, + 51.353398301 + ], + [ + 6.7556677, + 51.353334001 + ], + [ + 6.7538083, + 51.353193801 + ], + [ + 6.7520025, + 51.353033101 + ], + [ + 6.750831143, + 51.352923847 + ] + ] + } + }, + { + "identifier": "2026-011741--vi-fbm.2026-04-15_08-00-00-000.devi-zus.2026-04-15_08-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.35201803372511,6.795146514408653,51.352923847127784,6.750831143378802", + "point": "51.35201803372511,6.795146514408653", + "startLcPosition": "3", + "impact": { + "lower": "Duisburg-Huckingen", + "upper": "Lintorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Breitscheid -> Duisburg-S\u00fcd", + "title": "A524 | Lintorf - Duisburg-Huckingen", + "coordinate": { + "lat": 51.35201803372511, + "long": 6.795146514408653 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 08:00 bis 16:00 Uhr", + "16.04.26 von 08:00 bis 16:00 Uhr", + "", + "A524: Breitscheid -> Duisburg-S\u00fcd, zwischen 1.8 km hinter AS Lintorf und 0.5 km vor Duisburg-Huckingen", + "", + "L\u00e4nge: 3.14 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A59 Arbeiten an Verkehrszeichenbr\u00fccken im AK DU-S\u00fcd" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.795146514, + 51.352018034 + ], + [ + 6.7941477, + 51.352170701 + ], + [ + 6.7913025, + 51.352593301 + ], + [ + 6.7904531, + 51.352699401 + ], + [ + 6.7896637, + 51.352778401 + ], + [ + 6.7887606, + 51.352849401 + ], + [ + 6.7881303, + 51.352893001 + ], + [ + 6.787355, + 51.352902401 + ], + [ + 6.7864709, + 51.352898901 + ], + [ + 6.78609, + 51.352891601 + ], + [ + 6.7855933, + 51.352869301 + ], + [ + 6.7845563, + 51.352799801 + ], + [ + 6.7841545, + 51.352757101 + ], + [ + 6.7824949, + 51.352561101 + ], + [ + 6.780778, + 51.352310701 + ], + [ + 6.7794908, + 51.352128501 + ], + [ + 6.7789532, + 51.352050701 + ], + [ + 6.7765562, + 51.351724801 + ], + [ + 6.7762564, + 51.351690401 + ], + [ + 6.7752694, + 51.351599401 + ], + [ + 6.7745076, + 51.351551901 + ], + [ + 6.7736197, + 51.351536801 + ], + [ + 6.7725328, + 51.351546501 + ], + [ + 6.7717865, + 51.351577501 + ], + [ + 6.7710865, + 51.351636201 + ], + [ + 6.7701298, + 51.351750901 + ], + [ + 6.7693569, + 51.351850201 + ], + [ + 6.7683771, + 51.352012401 + ], + [ + 6.7675574, + 51.352164801 + ], + [ + 6.7658629, + 51.352490101 + ], + [ + 6.7641957, + 51.352813801 + ], + [ + 6.7633036, + 51.352965001 + ], + [ + 6.7621901, + 51.353129501 + ], + [ + 6.7612227, + 51.353244701 + ], + [ + 6.7603493, + 51.353327801 + ], + [ + 6.7590716, + 51.353401901 + ], + [ + 6.7579771, + 51.353415301 + ], + [ + 6.7567682, + 51.353398301 + ], + [ + 6.7556677, + 51.353334001 + ], + [ + 6.7538083, + 51.353193801 + ], + [ + 6.7520025, + 51.353033101 + ], + [ + 6.750831143, + 51.352923847 + ] + ] + } + }, + { + "identifier": "2026-017720--vi-bs.2026-04-23_08-00-00-000.devi-bs.2026-04-27_20-00-00-000_001.de4", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.34577543293433,6.852975931511478,51.34621437217488,6.851640714051615", + "point": "51.34577543293433,6.852975931511478", + "startLcPosition": "4", + "impact": { + "lower": "Lintorf", + "upper": "Breitscheid", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Breitscheid -> Duisburg-S\u00fcd", + "title": "A524 | Breitscheid - Lintorf", + "coordinate": { + "lat": 51.34577543293433, + "long": 6.852975931511478 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 17:00 Uhr", + "24.04.26 von 08:00 bis 17:00 Uhr", + "", + "A524: Breitscheid -> Duisburg-S\u00fcd, zwischen AD Breitscheid und 2.2 km vor AS Lintorf", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A524 Bauwerkspr\u00fcfung u. Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.852975932, + 51.345775433 + ], + [ + 6.8527247, + 51.345860901 + ], + [ + 6.851640714, + 51.346214372 + ] + ] + } + }, + { + "identifier": "2026-017720--vi-bs.2026-04-23_08-00-00-000.devi-bs.2026-04-27_20-00-00-000_001.de2", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "51.34560661317195,6.853449495793518,51.34574532200877,6.853063671050366", + "point": "51.34560661317195,6.853449495793518", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AD Breitscheid (aus Richtung Tiefenbroich)", + "title": "A524 Bauwerkspr\u00fcfung u. Vermessungsarbeiten", + "coordinate": { + "lat": 51.34560661317195, + "long": 6.853449495793518 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "23.04.26 von 08:00 bis 17:00 Uhr", + "24.04.26 von 08:00 bis 17:00 Uhr", + "", + "Abfahrt von der A52: AD Breitscheid (aus Richtung Tiefenbroich)", + "", + "L\u00e4nge: 0.03 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A524 Bauwerkspr\u00fcfung u. Vermessungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.853449496, + 51.345606613 + ], + [ + 6.853063671, + 51.345745322 + ] + ] + } + } + ] + }, + "A542": { + "roadworks": [ + { + "identifier": "2023-001532--vi-bs.2023-08-02_09-00-00-000.f.devi-zus.2021-07-21_09-00-00-000.f_001.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.08869456069481,6.9445967355643035,51.09081459486688,6.947810093947744", + "point": "51.08869456069481,6.9445967355643035", + "startLcPosition": "1", + "impact": { + "lower": "Reusrath", + "upper": "Monheim-S\u00fcd", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Monheim -> Langenfeld", + "title": "A542 | Monheim-S\u00fcd - Reusrath", + "startTimestamp": "2023-08-02T09:00:00+02:00", + "coordinate": { + "lat": 51.08869456069481, + "long": 6.9445967355643035 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.08.23 um 09:00 Uhr", + "Ende: 12.11.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.11.26)", + "", + "A542: Monheim -> Langenfeld, zwischen 1.1 km hinter AD Monheim-S\u00fcd und 0.7 km vor AS Reusrath", + "", + "L\u00e4nge: 0.33 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.3 m", + "", + "DB-BW Rhein-Ruhr-Express" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.944596736, + 51.088694561 + ], + [ + 6.9459567, + 51.089574301 + ], + [ + 6.947129, + 51.090371301 + ], + [ + 6.947810094, + 51.090814595 + ] + ] + } + }, + { + "identifier": "2023-001532--vi-bs.2023-08-02_09-00-00-000.f.devi-zus.2021-07-21_09-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.09105834280191,6.947922978602352,51.08877596157833,6.944482370813764", + "point": "51.09105834280191,6.947922978602352", + "startLcPosition": "2", + "impact": { + "lower": "Monheim-S\u00fcd", + "upper": "Reusrath", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Langenfeld -> Monheim", + "title": "A542 | Reusrath - Monheim-S\u00fcd", + "startTimestamp": "2023-08-02T09:00:00+02:00", + "coordinate": { + "lat": 51.09105834280191, + "long": 6.947922978602352 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.08.23 um 09:00 Uhr", + "Ende: 12.11.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 12.11.26)", + "", + "A542: Langenfeld -> Monheim, zwischen 0.7 km hinter AS Reusrath und 1.2 km vor AD Monheim-S\u00fcd", + "", + "L\u00e4nge: 0.35 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.3 m", + "", + "DB-BW Rhein-Ruhr-Express" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.947922979, + 51.091058343 + ], + [ + 6.947001, + 51.090455701 + ], + [ + 6.9457973, + 51.089651801 + ], + [ + 6.9445195, + 51.088800701 + ], + [ + 6.944482371, + 51.088775962 + ] + ] + } + }, + { + "identifier": "2023-001678--vi-bs.2025-09-29_09-00-00-000.devi-zus.2027-09-25_05-00-00-000.f_001.de24", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "51.1137491461001,6.9864971827875415,51.11307409097558,6.984129433582879", + "point": "51.1137491461001,6.9864971827875415", + "startLcPosition": "4", + "impact": { + "lower": "Immigrath", + "upper": "Langenfeld", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Langenfeld -> Monheim", + "title": "A542 | Langenfeld - Immigrath", + "startTimestamp": "2025-09-29T09:00:00+02:00", + "coordinate": { + "lat": 51.1137491461001, + "long": 6.9864971827875415 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 29.09.25 um 09:00 Uhr", + "Ende: 30.09.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.08.35)", + "", + "A542: Langenfeld -> Monheim, zwischen AD Langenfeld und 0.6 km vor AS Immigrath", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Grundhafte Sanierung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.986497183, + 51.113749146 + ], + [ + 6.986215, + 51.113672101 + ], + [ + 6.984867, + 51.113295101 + ], + [ + 6.984129434, + 51.113074091 + ] + ] + } + } + ] + }, + "A553": { + "roadworks": [ + { + "identifier": "2026-017827--vi-bs.2026-04-14_09-00-00-000_005.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.84188006183138,6.92405207699826,50.82766899842246,6.932448088347721", + "point": "50.84188006183138,6.92405207699826", + "startLcPosition": "0", + "impact": { + "lower": "Br\u00fchl", + "upper": "Br\u00fchl-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Br\u00fchl -> Bliesheim", + "title": "A553 | Br\u00fchl-Nord - Br\u00fchl", + "coordinate": { + "lat": 50.84188006183138, + "long": 6.92405207699826 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A553: Br\u00fchl -> Bliesheim, zwischen 0.6 km hinter AS Br\u00fchl-Nord und 3.6 km vor AS Br\u00fchl", + "", + "L\u00e4nge: 1.7 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A553 von Br\u00fchl-Nord (AS) nach Br\u00fchl (AS) Markierungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.924052077, + 50.841880062 + ], + [ + 6.9241698, + 50.841420701 + ], + [ + 6.9242755, + 50.840992601 + ], + [ + 6.9243639, + 50.840628501 + ], + [ + 6.9244418, + 50.840311801 + ], + [ + 6.9245195, + 50.840014401 + ], + [ + 6.9245987, + 50.839733001 + ], + [ + 6.9246938, + 50.839416801 + ], + [ + 6.9247593, + 50.839212601 + ], + [ + 6.9248649, + 50.838914401 + ], + [ + 6.9249812, + 50.838613901 + ], + [ + 6.9251019, + 50.838333201 + ], + [ + 6.9252434, + 50.838024001 + ], + [ + 6.9253899, + 50.837734401 + ], + [ + 6.9255796, + 50.837386501 + ], + [ + 6.9256384, + 50.837287101 + ], + [ + 6.9257151, + 50.837159901 + ], + [ + 6.9258057, + 50.837010201 + ], + [ + 6.9259322, + 50.836813501 + ], + [ + 6.926029, + 50.836668201 + ], + [ + 6.9261265, + 50.836524001 + ], + [ + 6.9262292, + 50.836375801 + ], + [ + 6.9264169, + 50.836118601 + ], + [ + 6.9266254, + 50.835843301 + ], + [ + 6.9267724, + 50.835654401 + ], + [ + 6.9268628, + 50.835541101 + ], + [ + 6.9269839, + 50.835392801 + ], + [ + 6.9272368, + 50.835084301 + ], + [ + 6.927674, + 50.834564701 + ], + [ + 6.9285622, + 50.833502301 + ], + [ + 6.9296277, + 50.832210701 + ], + [ + 6.9300476, + 50.831660601 + ], + [ + 6.9307945, + 50.830553901 + ], + [ + 6.9311507, + 50.830020101 + ], + [ + 6.9313596, + 50.829668101 + ], + [ + 6.9315614, + 50.829324201 + ], + [ + 6.9320533, + 50.828468501 + ], + [ + 6.932448088, + 50.827668998 + ] + ] + } + } + ] + }, + "A555": { + "roadworks": [ + { + "identifier": "2026-004238--vi-bs.2026-04-09_08-00-00-000.devi-zus.2026-02-09_15-00-00-000.de65", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.75925717090135,7.037967630926644,50.750481561746675,7.057272928904593", + "point": "50.75925717090135,7.037967630926644", + "startLcPosition": "2", + "impact": { + "lower": "Bonn-Nord", + "upper": "Bornheim (Rhld.)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A555 | Bornheim (Rhld.) - Bonn-Nord", + "coordinate": { + "lat": 50.75925717090135, + "long": 7.037967630926644 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 09.04.26 und dem 17.04.26 von 08:00 bis 16:00 Uhr.", + "", + "A555: K\u00f6ln -> Bonn, zwischen 0.7 km hinter AS Bornheim (Rhld.) und 1.3 km vor AK Bonn-Nord", + "", + "L\u00e4nge: 1.68 km | Maximale Durchfahrtsbreite: 11.25 m", + "", + "Rheinbr\u00fccke Bonn-Nord (2026 - 20xx)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.037967631, + 50.759257171 + ], + [ + 7.0386389, + 50.758836901 + ], + [ + 7.0394929, + 50.758301101 + ], + [ + 7.0405773, + 50.757674901 + ], + [ + 7.0419812, + 50.756909601 + ], + [ + 7.0439976, + 50.755874501 + ], + [ + 7.0462659, + 50.754817501 + ], + [ + 7.0469416, + 50.754519201 + ], + [ + 7.0515305, + 50.752481101 + ], + [ + 7.0517699, + 50.752378201 + ], + [ + 7.0528579, + 50.751917201 + ], + [ + 7.0534573, + 50.751672801 + ], + [ + 7.0540731, + 50.751437301 + ], + [ + 7.0546346, + 50.751240801 + ], + [ + 7.0549962, + 50.751123101 + ], + [ + 7.0560135, + 50.750817201 + ], + [ + 7.0566237, + 50.750649501 + ], + [ + 7.0572427, + 50.750488701 + ], + [ + 7.057272929, + 50.750481562 + ] + ] + } + }, + { + "identifier": "2023-000224--vi-bs.2026-03-23_05-00-00-000.devi-zus.2022-04-29_09-00-00-000.f_001.de110", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.80655879517172,6.994024618036274,50.81195857039962,6.984481578805501", + "point": "50.80655879517172,6.994024618036274", + "startLcPosition": "2", + "impact": { + "lower": "K\u00f6ln-Godorf", + "upper": "Bornheim (Rhld.)", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A555 | Bornheim (Rhld.) - K\u00f6ln-Godorf", + "startTimestamp": "2026-03-23T05:00:00+01:00", + "coordinate": { + "lat": 50.80655879517172, + "long": 6.994024618036274 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 05:00 Uhr", + "Ende: 30.06.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.27)", + "", + "A555: Bonn -> K\u00f6ln, zwischen 5.4 km hinter AS Bornheim (Rhld.) und 4.6 km vor AS K\u00f6ln-Godorf", + "", + "L\u00e4nge: 0.9 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "Erhaltung K-Godorf - Wesseling (Abs. 1 Wesseling - L184)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.994024618, + 50.806558795 + ], + [ + 6.989043, + 50.809397901 + ], + [ + 6.9870287, + 50.810517101 + ], + [ + 6.9851699, + 50.811567101 + ], + [ + 6.9846171, + 50.811881801 + ], + [ + 6.984481579, + 50.81195857 + ] + ] + } + }, + { + "identifier": "2023-000224--vi-bs.2026-03-23_05-00-00-000.devi-zus.2022-04-29_09-00-00-000.f_001.de108", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.81195857039962,6.984481578805501,50.83529442582657,6.965731693487511", + "point": "50.81195857039962,6.984481578805501", + "startLcPosition": "3", + "impact": { + "lower": "K\u00f6ln-Godorf", + "upper": "Wesseling", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> K\u00f6ln", + "title": "A555 | Wesseling - K\u00f6ln-Godorf", + "startTimestamp": "2026-03-23T05:00:00+01:00", + "coordinate": { + "lat": 50.81195857039962, + "long": 6.984481578805501 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 05:00 Uhr", + "Ende: 30.06.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.27)", + "", + "A555: Bonn -> K\u00f6ln, zwischen 0.6 km hinter AS Wesseling und 1.4 km vor AS K\u00f6ln-Godorf", + "", + "L\u00e4nge: 3.19 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Erhaltung K-Godorf - Wesseling (Abs. 1 Wesseling - L184)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.984481579, + 50.81195857 + ], + [ + 6.9813352, + 50.813740801 + ], + [ + 6.9808445, + 50.814014601 + ], + [ + 6.9747541, + 50.817418401 + ], + [ + 6.9713457, + 50.819354101 + ], + [ + 6.9697248, + 50.820318201 + ], + [ + 6.9685758, + 50.821065201 + ], + [ + 6.9676136, + 50.821788501 + ], + [ + 6.9667439, + 50.822549501 + ], + [ + 6.9660515, + 50.823300501 + ], + [ + 6.9656463, + 50.823812801 + ], + [ + 6.9653077, + 50.824327901 + ], + [ + 6.9651077, + 50.824682801 + ], + [ + 6.9647718, + 50.825337501 + ], + [ + 6.9645354, + 50.826000001 + ], + [ + 6.9643649, + 50.826613401 + ], + [ + 6.9642646, + 50.827267101 + ], + [ + 6.9642349, + 50.827801701 + ], + [ + 6.9642342, + 50.828480501 + ], + [ + 6.9642613, + 50.828969601 + ], + [ + 6.9643172, + 50.829480801 + ], + [ + 6.9644517, + 50.830251501 + ], + [ + 6.964615, + 50.830923601 + ], + [ + 6.9647538, + 50.831501901 + ], + [ + 6.965731693, + 50.835294426 + ] + ] + } + }, + { + "identifier": "2023-000224--vi-bs.2026-03-23_05-00-00-000.devi-zus.2022-04-29_09-00-00-000.f_001.de106", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.83532407010099,6.9654427278362645,50.811826019012656,6.9842954444597325", + "point": "50.83532407010099,6.9654427278362645", + "startLcPosition": "4", + "impact": { + "lower": "Wesseling", + "upper": "K\u00f6ln-Godorf", + "symbols": [ + "BREAKDOWN_LANE", + "BORDER_LEFT", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A555 | K\u00f6ln-Godorf - Wesseling", + "startTimestamp": "2026-03-23T05:00:00+01:00", + "coordinate": { + "lat": 50.83532407010099, + "long": 6.9654427278362645 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 05:00 Uhr", + "Ende: 30.06.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.27)", + "", + "A555: K\u00f6ln -> Bonn, zwischen 1.4 km hinter AS K\u00f6ln-Godorf und 0.6 km vor AS Wesseling", + "", + "L\u00e4nge: 3.19 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Erhaltung K-Godorf - Wesseling (Abs. 1 Wesseling - L184)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.965442728, + 50.83532407 + ], + [ + 6.964473, + 50.831500101 + ], + [ + 6.9643416, + 50.830902301 + ], + [ + 6.9641912, + 50.830281501 + ], + [ + 6.9640448, + 50.829472801 + ], + [ + 6.9639463, + 50.828496401 + ], + [ + 6.9639432, + 50.827797001 + ], + [ + 6.9639682, + 50.827263101 + ], + [ + 6.9640827, + 50.826566101 + ], + [ + 6.9642405, + 50.825971701 + ], + [ + 6.9645096, + 50.825271401 + ], + [ + 6.9648384, + 50.824625301 + ], + [ + 6.9650453, + 50.824251601 + ], + [ + 6.9653841, + 50.823723501 + ], + [ + 6.9657948, + 50.823203401 + ], + [ + 6.9665263, + 50.822431701 + ], + [ + 6.9673886, + 50.821664201 + ], + [ + 6.9684049, + 50.820903701 + ], + [ + 6.96955, + 50.820154101 + ], + [ + 6.9711445, + 50.819218101 + ], + [ + 6.9792874, + 50.814640601 + ], + [ + 6.9806731, + 50.813857501 + ], + [ + 6.9811721, + 50.813577001 + ], + [ + 6.984295444, + 50.811826019 + ] + ] + } + }, + { + "identifier": "2023-000224--vi-bs.2026-03-23_05-00-00-000.devi-zus.2022-04-29_09-00-00-000.f_001.de104", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.84891695964927,6.967849725362659,50.83532407010099,6.9654427278362645", + "point": "50.84891695964927,6.967849725362659", + "startLcPosition": "5", + "impact": { + "lower": "Wesseling", + "upper": "K\u00f6ln-Rodenkirchen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " K\u00f6ln -> Bonn", + "title": "A555 | K\u00f6ln-Rodenkirchen - Wesseling", + "startTimestamp": "2026-03-23T05:00:00+01:00", + "coordinate": { + "lat": 50.84891695964927, + "long": 6.967849725362659 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 23.03.26 um 05:00 Uhr", + "Ende: 30.06.27 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.06.27)", + "", + "A555: K\u00f6ln -> Bonn, zwischen 1.7 km hinter AS K\u00f6ln-Rodenkirchen und 3.8 km vor AS Wesseling", + "", + "L\u00e4nge: 1.52 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "Erhaltung K-Godorf - Wesseling (Abs. 1 Wesseling - L184)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.967849725, + 50.84891696 + ], + [ + 6.9678472, + 50.848892901 + ], + [ + 6.9678368, + 50.848793601 + ], + [ + 6.9678244, + 50.848675401 + ], + [ + 6.9677589, + 50.847812101 + ], + [ + 6.9676249, + 50.845955201 + ], + [ + 6.9675662, + 50.845498101 + ], + [ + 6.9675556, + 50.845415401 + ], + [ + 6.9675256, + 50.845182201 + ], + [ + 6.9673373, + 50.843394601 + ], + [ + 6.9671724, + 50.842407101 + ], + [ + 6.9669289, + 50.841198401 + ], + [ + 6.9664246, + 50.839185701 + ], + [ + 6.9662911, + 50.838669001 + ], + [ + 6.965442728, + 50.83532407 + ] + ] + } + } + ] + }, + "A559": { + "roadworks": [ + { + "identifier": "2026-015328--vi-bs.2026-04-15_09-00-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.90765504752196,7.052141570991222,50.90911368369576,7.042604635196262", + "point": "50.90765504752196,7.052141570991222", + "startLcPosition": "1", + "impact": { + "lower": "K\u00f6ln-Gremberg", + "upper": "K\u00f6ln-Gremberghoven", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " K\u00f6ln-Porz -> K\u00f6ln-Gremberg", + "title": "A559 | K\u00f6ln-Gremberghoven - K\u00f6ln-Gremberg", + "coordinate": { + "lat": 50.90765504752196, + "long": 7.052141570991222 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A559: K\u00f6ln-Porz -> K\u00f6ln-Gremberg, zwischen 0.5 km hinter AS K\u00f6ln-Gremberghoven und 1.4 km vor AK K\u00f6ln-Gremberg", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "A559 von K\u00f6ln-Gremberghoven (AS) nach K\u00f6ln-Gremberg (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.052141571, + 50.907655048 + ], + [ + 7.0508732, + 50.907689901 + ], + [ + 7.0498425, + 50.907720301 + ], + [ + 7.0488926, + 50.907771101 + ], + [ + 7.0483806, + 50.907814501 + ], + [ + 7.0479459, + 50.907852601 + ], + [ + 7.0473762, + 50.907922201 + ], + [ + 7.0469718, + 50.907976301 + ], + [ + 7.0465754, + 50.908042201 + ], + [ + 7.04592, + 50.908162301 + ], + [ + 7.0455059, + 50.908249401 + ], + [ + 7.0450499, + 50.908356301 + ], + [ + 7.0444555, + 50.908509401 + ], + [ + 7.0437892, + 50.908707001 + ], + [ + 7.0431451, + 50.908922201 + ], + [ + 7.042604635, + 50.909113684 + ] + ] + } + } + ] + }, + "A560": { + "roadworks": [ + { + "identifier": "2023-000126--vi-bs.2026-03-16_05-00-00-000.devi-zus.2023-06-14_09-00-00-000_002.f.de371", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.79629328068232,7.164117081924874,50.79463317559657,7.177212200181893", + "point": "50.79629328068232,7.164117081924874", + "startLcPosition": "0", + "impact": { + "lower": "Sankt Augustin", + "upper": "Sankt Augustin-West", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sankt Augustin -> Hennef", + "title": "A560 | Sankt Augustin-West - Sankt Augustin", + "startTimestamp": "2026-03-16T05:00:00+01:00", + "coordinate": { + "lat": 50.79629328068232, + "long": 7.164117081924874 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 05:00 Uhr", + "Ende: 30.11.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A560: Sankt Augustin -> Hennef, zwischen 1.8 km hinter AD Sankt Augustin-West und 1.7 km vor AS Sankt Augustin", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Neubau DB-Bauwerk S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.164117082, + 50.796293281 + ], + [ + 7.1650286, + 50.796364001 + ], + [ + 7.1660826, + 50.796434201 + ], + [ + 7.1666666, + 50.796456801 + ], + [ + 7.1679456, + 50.796474101 + ], + [ + 7.1684392, + 50.796460701 + ], + [ + 7.1694897, + 50.796401501 + ], + [ + 7.1699991, + 50.796360601 + ], + [ + 7.1705093, + 50.796307301 + ], + [ + 7.1712916, + 50.796214601 + ], + [ + 7.1717343, + 50.796144301 + ], + [ + 7.172121, + 50.796077301 + ], + [ + 7.1727805, + 50.795950901 + ], + [ + 7.1731867, + 50.795864401 + ], + [ + 7.1739122, + 50.795685901 + ], + [ + 7.1744841, + 50.795535001 + ], + [ + 7.17525, + 50.795310401 + ], + [ + 7.1762044, + 50.795002901 + ], + [ + 7.1771819, + 50.794645001 + ], + [ + 7.1772122, + 50.794633176 + ] + ] + } + }, + { + "identifier": "2023-000126--vi-bs.2026-03-16_05-00-00-000.devi-zus.2023-06-14_09-00-00-000_002.f.de361", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.794386120464495,7.15337830458146,50.79629328068232,7.164117081924874", + "point": "50.794386120464495,7.15337830458146", + "startLcPosition": "0", + "impact": { + "lower": "Siegburg", + "upper": "Sankt Augustin-West", + "symbols": [ + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sankt Augustin -> Hennef", + "title": "A560 | Sankt Augustin-West - Siegburg", + "startTimestamp": "2026-03-16T05:00:00+01:00", + "coordinate": { + "lat": 50.794386120464495, + "long": 7.15337830458146 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 05:00 Uhr", + "Ende: 30.11.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A560: Sankt Augustin -> Hennef, zwischen 1.0 km hinter AD Sankt Augustin-West und 0.7 km vor AS Siegburg", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Neubau DB-Bauwerk S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.153378305, + 50.79438612 + ], + [ + 7.1536935, + 50.794532101 + ], + [ + 7.1541915, + 50.794749301 + ], + [ + 7.1547071, + 50.794949501 + ], + [ + 7.1552388, + 50.795132101 + ], + [ + 7.1557852, + 50.795296401 + ], + [ + 7.1563446, + 50.795442201 + ], + [ + 7.1566602, + 50.795513401 + ], + [ + 7.1570153, + 50.795590301 + ], + [ + 7.1577058, + 50.795712601 + ], + [ + 7.1582079, + 50.795789501 + ], + [ + 7.1589798, + 50.795873801 + ], + [ + 7.1596695, + 50.795936101 + ], + [ + 7.1612053, + 50.796055701 + ], + [ + 7.1631469, + 50.796218001 + ], + [ + 7.164117082, + 50.796293281 + ] + ] + } + }, + { + "identifier": "2023-000126--vi-bs.2026-03-16_05-00-00-000.devi-zus.2023-06-14_09-00-00-000_002.f.de365", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.78965750617571,7.147815188243631,50.79115703396749,7.148775130278151", + "point": "50.78965750617571,7.147815188243631", + "startLcPosition": "0", + "impact": { + "lower": "Siegburg", + "upper": "Sankt Augustin-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sankt Augustin -> Hennef", + "title": "A560 | Sankt Augustin-West - Siegburg", + "startTimestamp": "2026-03-16T05:00:00+01:00", + "coordinate": { + "lat": 50.78965750617571, + "long": 7.147815188243631 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 05:00 Uhr", + "Ende: 30.11.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A560: Sankt Augustin -> Hennef, zwischen 0.4 km hinter AD Sankt Augustin-West und 2.0 km vor AS Siegburg", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Neubau DB-Bauwerk S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.147815188, + 50.789657506 + ], + [ + 7.1478117, + 50.789728801 + ], + [ + 7.1478295, + 50.789838601 + ], + [ + 7.1478632, + 50.789943501 + ], + [ + 7.1479087, + 50.790053101 + ], + [ + 7.1479771, + 50.790166701 + ], + [ + 7.148074, + 50.790311801 + ], + [ + 7.1483137, + 50.790619401 + ], + [ + 7.1485266, + 50.790875901 + ], + [ + 7.1486845, + 50.791057101 + ], + [ + 7.14877513, + 50.791157034 + ] + ] + } + }, + { + "identifier": "2025-057111--vi-bs.2026-03-14_09-00-00-000.devi-zus.2026-03-09_09-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.784040734506526,7.279216200878934,50.77558160649737,7.300688470119155", + "point": "50.784040734506526,7.279216200878934", + "startLcPosition": "5", + "impact": { + "lower": "Hennef(Sieg)-Ost", + "upper": "Hennef(Sieg)-West", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Sankt Augustin -> Hennef", + "title": "A560 | Hennef(Sieg)-West - Hennef(Sieg)-Ost", + "startTimestamp": "2026-03-14T09:00:00+01:00", + "coordinate": { + "lat": 50.784040734506526, + "long": 7.279216200878934 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.03.26 um 09:00 Uhr", + "Ende: 13.06.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.06.26)", + "", + "A560: Sankt Augustin -> Hennef, zwischen 0.8 km hinter AS Hennef(Sieg)-West und 0.2 km vor AS Hennef(Sieg)-Ost", + "", + "L\u00e4nge: 1.8 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "Erneuerung LSW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.279216201, + 50.784040735 + ], + [ + 7.2798975, + 50.783999301 + ], + [ + 7.2804368, + 50.783933001 + ], + [ + 7.2809826, + 50.783845501 + ], + [ + 7.281494, + 50.783745901 + ], + [ + 7.2819156, + 50.783651501 + ], + [ + 7.2825792, + 50.783446401 + ], + [ + 7.2832835, + 50.783195801 + ], + [ + 7.2846039, + 50.782623901 + ], + [ + 7.2859729, + 50.782019901 + ], + [ + 7.2861309, + 50.781951001 + ], + [ + 7.2897019, + 50.780393501 + ], + [ + 7.2902978, + 50.780135201 + ], + [ + 7.2909359, + 50.779858701 + ], + [ + 7.2961624, + 50.777565501 + ], + [ + 7.2964022, + 50.777459201 + ], + [ + 7.2986027, + 50.776500301 + ], + [ + 7.2988489, + 50.776393001 + ], + [ + 7.30068847, + 50.775581606 + ] + ] + } + }, + { + "identifier": "2025-057111--vi-bs.2026-03-14_09-00-00-000.devi-zus.2026-03-09_09-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.77273888220671,7.306145725818717,50.78181222069666,7.2867945726384615", + "point": "50.77273888220671,7.306145725818717", + "startLcPosition": "7", + "impact": { + "lower": "Hennef(Sieg)-West", + "upper": "Hennef (Sieg)-Ost (\u00dcbergang A560/B8)", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Hennef -> Sankt Augustin", + "title": "A560 | Hennef (Sieg)-Ost (\u00dcbergang A560/B8) - Hennef(Sieg)-West", + "startTimestamp": "2026-03-14T09:00:00+01:00", + "coordinate": { + "lat": 50.77273888220671, + "long": 7.306145725818717 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.03.26 um 09:00 Uhr", + "Ende: 13.06.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.06.26)", + "", + "A560: Hennef -> Sankt Augustin, zwischen 0.7 km hinter Hennef (Sieg)-Ost (\u00dcbergang A560/B8) und 1.4 km vor AS Hennef(Sieg)-West", + "", + "L\u00e4nge: 1.7 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "Erneuerung LSW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.306145726, + 50.772738882 + ], + [ + 7.3060415, + 50.772817701 + ], + [ + 7.3054071, + 50.773239901 + ], + [ + 7.3044132, + 50.773844101 + ], + [ + 7.3035258, + 50.774356601 + ], + [ + 7.3031626, + 50.774545201 + ], + [ + 7.3029701, + 50.774646801 + ], + [ + 7.3027825, + 50.774741701 + ], + [ + 7.3023004, + 50.774987001 + ], + [ + 7.2997424, + 50.776141401 + ], + [ + 7.2987727, + 50.776581501 + ], + [ + 7.2965654, + 50.777539801 + ], + [ + 7.2963125, + 50.777651401 + ], + [ + 7.2902923, + 50.780276001 + ], + [ + 7.2898324, + 50.780476501 + ], + [ + 7.286794573, + 50.781812221 + ] + ] + } + }, + { + "identifier": "2023-000126--vi-bs.2026-03-16_05-00-00-000.devi-zus.2023-06-14_09-00-00-000_002.f.de373", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.79472281133159,7.177298530857023,50.79641249806513,7.164092974006753", + "point": "50.79472281133159,7.177298530857023", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 2.25 --> km 1.30", + "title": "Neubau DB-Bauwerk S13", + "startTimestamp": "2026-03-16T05:00:00+01:00", + "coordinate": { + "lat": 50.79472281133159, + "long": 7.177298530857023 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 05:00 Uhr", + "Ende: 30.11.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "A560: km 2.25 --> km 1.30", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Neubau DB-Bauwerk S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.177298531, + 50.794722811 + ], + [ + 7.1772722, + 50.794732901 + ], + [ + 7.1763048, + 50.795089801 + ], + [ + 7.1750946, + 50.795474801 + ], + [ + 7.1739631, + 50.795785701 + ], + [ + 7.1732333, + 50.795961301 + ], + [ + 7.1728059, + 50.796051701 + ], + [ + 7.1721701, + 50.796171301 + ], + [ + 7.171441, + 50.796292901 + ], + [ + 7.170527, + 50.796407001 + ], + [ + 7.1700314, + 50.796460201 + ], + [ + 7.1694966, + 50.796506701 + ], + [ + 7.1684383, + 50.796565101 + ], + [ + 7.1678975, + 50.796585501 + ], + [ + 7.1673489, + 50.796594301 + ], + [ + 7.1666755, + 50.796575901 + ], + [ + 7.1660924, + 50.796555101 + ], + [ + 7.1654727, + 50.796523801 + ], + [ + 7.164858, + 50.796476801 + ], + [ + 7.164092974, + 50.796412498 + ] + ] + } + }, + { + "identifier": "2023-000126--vi-bs.2026-03-16_05-00-00-000.devi-zus.2023-06-14_09-00-00-000_002.f.de375", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.78991563757736,7.149791929690067,50.794243941204996,7.15307132022947", + "point": "50.78991563757736,7.149791929690067", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Sankt Augustin-West (aus Richtung Bonn-Nordost) nach A560", + "title": "Neubau DB-Bauwerk S13", + "startTimestamp": "2026-03-16T05:00:00+01:00", + "coordinate": { + "lat": 50.78991563757736, + "long": 7.149791929690067 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.03.26 um 05:00 Uhr", + "Ende: 30.11.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.11.26)", + "", + "Von Abfahrt von der A59: AD Sankt Augustin-West (aus Richtung Bonn-Nordost) nach A560: Sankt Augustin -> Hennef, zwischen AD Sankt Augustin-West und 1.5 km vor AS Siegburg", + "", + "L\u00e4nge: 0.57 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Neubau DB-Bauwerk S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.14979193, + 50.789915638 + ], + [ + 7.1497782, + 50.789963401 + ], + [ + 7.1497093, + 50.790233801 + ], + [ + 7.1496677, + 50.790513201 + ], + [ + 7.149676, + 50.790828901 + ], + [ + 7.1497058, + 50.791040901 + ], + [ + 7.1497425, + 50.791210701 + ], + [ + 7.1498123, + 50.791438701 + ], + [ + 7.1499326, + 50.791749601 + ], + [ + 7.1501013, + 50.792033901 + ], + [ + 7.1503991, + 50.792422501 + ], + [ + 7.150715, + 50.792727001 + ], + [ + 7.1508908, + 50.792870401 + ], + [ + 7.151076, + 50.793010801 + ], + [ + 7.1515592, + 50.793354301 + ], + [ + 7.1522389, + 50.793817901 + ], + [ + 7.1529568, + 50.794190901 + ], + [ + 7.15307132, + 50.794243941 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-04-13_05-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1322", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.77534148133246,7.2394924296812215,50.77513518698158,7.2401471538084445", + "point": "50.77534148133246,7.2394924296812215", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Bonn/Siegburg (aus Richtung Siebengebirge)", + "title": "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg", + "startTimestamp": "2026-04-13T05:00:00+02:00", + "coordinate": { + "lat": 50.77534148133246, + "long": 7.2394924296812215 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 13.04.26 um 05:00 Uhr", + "Ende: 05.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "Auffahrt auf die A3: AK Bonn/Siegburg (aus Richtung Siebengebirge)", + "", + "L\u00e4nge: 0.37 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.23949243, + 50.775341481 + ], + [ + 7.2404981, + 50.775363301 + ], + [ + 7.2407288, + 50.775358701 + ], + [ + 7.24091, + 50.775343901 + ], + [ + 7.2410996, + 50.775302801 + ], + [ + 7.2412537, + 50.775246801 + ], + [ + 7.2413826, + 50.775169501 + ], + [ + 7.2414792, + 50.775075201 + ], + [ + 7.2415379, + 50.774969201 + ], + [ + 7.2415556, + 50.774857401 + ], + [ + 7.2415312, + 50.774746101 + ], + [ + 7.241466, + 50.774641501 + ], + [ + 7.2413638, + 50.774549601 + ], + [ + 7.2412303, + 50.774475501 + ], + [ + 7.2410729, + 50.774423301 + ], + [ + 7.2409006, + 50.774395901 + ], + [ + 7.2407229, + 50.774395001 + ], + [ + 7.2405499, + 50.774420601 + ], + [ + 7.2403912, + 50.774471101 + ], + [ + 7.2402558, + 50.774543901 + ], + [ + 7.2401512, + 50.774634701 + ], + [ + 7.2400834, + 50.774738601 + ], + [ + 7.2400561, + 50.774849601 + ], + [ + 7.2400709, + 50.774961601 + ], + [ + 7.240147154, + 50.775135187 + ] + ] + } + }, + { + "identifier": "2023-000185--vi-bs.2026-02-24_05-00-00-000.devi-zus.2022-02-12_05-00-00-000_002.f.de1270", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.77534148133246,7.2394924296812215,50.77513518698158,7.2401471538084445", + "point": "50.77534148133246,7.2394924296812215", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Bonn/Siegburg (aus Richtung Siebengebirge)", + "title": "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg", + "startTimestamp": "2026-02-24T05:00:00+01:00", + "coordinate": { + "lat": 50.77534148133246, + "long": 7.2394924296812215 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 05:00 Uhr", + "Ende: 13.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.12.27)", + "", + "Auffahrt auf die A3: AK Bonn/Siegburg (aus Richtung Siebengebirge)", + "", + "L\u00e4nge: 0.37 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Erhaltungsentwurf Abs. III Lohmar - AK Bonn_Siegburg" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.23949243, + 50.775341481 + ], + [ + 7.2404981, + 50.775363301 + ], + [ + 7.2407288, + 50.775358701 + ], + [ + 7.24091, + 50.775343901 + ], + [ + 7.2410996, + 50.775302801 + ], + [ + 7.2412537, + 50.775246801 + ], + [ + 7.2413826, + 50.775169501 + ], + [ + 7.2414792, + 50.775075201 + ], + [ + 7.2415379, + 50.774969201 + ], + [ + 7.2415556, + 50.774857401 + ], + [ + 7.2415312, + 50.774746101 + ], + [ + 7.241466, + 50.774641501 + ], + [ + 7.2413638, + 50.774549601 + ], + [ + 7.2412303, + 50.774475501 + ], + [ + 7.2410729, + 50.774423301 + ], + [ + 7.2409006, + 50.774395901 + ], + [ + 7.2407229, + 50.774395001 + ], + [ + 7.2405499, + 50.774420601 + ], + [ + 7.2403912, + 50.774471101 + ], + [ + 7.2402558, + 50.774543901 + ], + [ + 7.2401512, + 50.774634701 + ], + [ + 7.2400834, + 50.774738601 + ], + [ + 7.2400561, + 50.774849601 + ], + [ + 7.2400709, + 50.774961601 + ], + [ + 7.240147154, + 50.775135187 + ] + ] + } + }, + { + "identifier": "2025-057111--vi-bs.2026-03-14_09-00-00-000.devi-zus.2026-03-09_09-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.7760139008532,7.301756997552188,50.77767878433039,7.296249696323778", + "point": "50.7760139008532,7.301756997552188", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Hennef(Sieg)-Ost (aus Richtung Hennef (Sieg)-Ost (\u00dcbergang A560/B8)) nach A560", + "title": "Erneuerung LSW", + "startTimestamp": "2026-03-14T09:00:00+01:00", + "coordinate": { + "lat": 50.7760139008532, + "long": 7.301756997552188 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 14.03.26 um 09:00 Uhr", + "Ende: 13.06.26 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.06.26)", + "", + "Von Auffahrt auf die A560: AS Hennef(Sieg)-Ost (aus Richtung Hennef (Sieg)-Ost (\u00dcbergang A560/B8)) nach A560: Hennef -> Sankt Augustin, zwischen AS Hennef(Sieg)-Ost und 2.3 km vor AS Hennef(Sieg)-West", + "", + "L\u00e4nge: 0.45 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "Erneuerung LSW" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.301756998, + 50.776013901 + ], + [ + 7.3014371, + 50.775906901 + ], + [ + 7.3012304, + 50.775867301 + ], + [ + 7.3010601, + 50.775843501 + ], + [ + 7.3008966, + 50.775844301 + ], + [ + 7.3007178, + 50.775862001 + ], + [ + 7.3005116, + 50.775897801 + ], + [ + 7.3002547, + 50.775961401 + ], + [ + 7.2997424, + 50.776141401 + ], + [ + 7.2987727, + 50.776581501 + ], + [ + 7.2965654, + 50.777539801 + ], + [ + 7.2963125, + 50.777651401 + ], + [ + 7.296249696, + 50.777678784 + ] + ] + } + } + ] + }, + "A562": { + "roadworks": [ + { + "identifier": "2023-000235--vi-bs.2026-03-30_13-00-00-000.devi-zus.2019-07-15_09-00-00-000.f_001.de163", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.71996863287329,7.145193682481681,50.72200178582337,7.148486898043281", + "point": "50.71996863287329,7.145193682481681", + "startLcPosition": "2", + "impact": { + "lower": "Bonn-Ost", + "upper": "Konrad-Adenauer-Br\u00fccke", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn-Rheinaue -> Bonn-Ost", + "title": "A562 | Konrad-Adenauer-Br\u00fccke - Bonn-Ost", + "startTimestamp": "2026-03-30T13:00:00+02:00", + "coordinate": { + "lat": 50.71996863287329, + "long": 7.145193682481681 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 13:00 Uhr", + "Ende: 05.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.07.26)", + "", + "A562: Bonn-Rheinaue -> Bonn-Ost, zwischen 0.3 km hinter Konrad-Adenauer-Br\u00fccke und 1.1 km vor AK Bonn-Ost", + "", + "L\u00e4nge: 0.34 km | Maximale Durchfahrtsbreite: 6 m", + "", + "A 562 Ersatzneubau DB-BW S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.145193682, + 50.719968633 + ], + [ + 7.1453446, + 50.720152501 + ], + [ + 7.1454962, + 50.720323901 + ], + [ + 7.1456065, + 50.720433901 + ], + [ + 7.1458735, + 50.720684701 + ], + [ + 7.1460687, + 50.720842801 + ], + [ + 7.1463383, + 50.721048301 + ], + [ + 7.1465779, + 50.721205101 + ], + [ + 7.1467943, + 50.721321401 + ], + [ + 7.1470477, + 50.721454801 + ], + [ + 7.147324, + 50.721586801 + ], + [ + 7.1477615, + 50.721772001 + ], + [ + 7.1483583, + 50.721966701 + ], + [ + 7.148486898, + 50.722001786 + ] + ] + } + }, + { + "identifier": "2023-000235--vi-bs.2026-03-30_13-00-00-000.devi-zus.2019-07-15_09-00-00-000.f_001.de165", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.72200178582337,7.148486898043281,50.7228092706354,7.155439200228787", + "point": "50.72200178582337,7.148486898043281", + "startLcPosition": "3", + "impact": { + "lower": "Bonn-Ost", + "upper": "Bonn-Ramersdorf", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn-Rheinaue -> Bonn-Ost", + "title": "A562 | Bonn-Ramersdorf - Bonn-Ost", + "startTimestamp": "2026-03-30T13:00:00+02:00", + "coordinate": { + "lat": 50.72200178582337, + "long": 7.148486898043281 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 13:00 Uhr", + "Ende: 05.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.07.26)", + "", + "A562: Bonn-Rheinaue -> Bonn-Ost, zwischen 0.1 km hinter AS Bonn-Ramersdorf und 0.6 km vor AK Bonn-Ost", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A 562 Ersatzneubau DB-BW S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.148486898, + 50.722001786 + ], + [ + 7.1490243, + 50.722148401 + ], + [ + 7.1494194, + 50.722245601 + ], + [ + 7.1498327, + 50.722326001 + ], + [ + 7.1504504, + 50.722416301 + ], + [ + 7.1509377, + 50.722476701 + ], + [ + 7.1516367, + 50.722529001 + ], + [ + 7.1538484, + 50.722683501 + ], + [ + 7.1548982, + 50.722760701 + ], + [ + 7.1554392, + 50.722809271 + ] + ] + } + }, + { + "identifier": "2023-000235--vi-bs.2026-03-30_13-00-00-000.devi-zus.2019-07-15_09-00-00-000.f_001.de157", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.72308765740051,7.156746281119605,50.722662853559136,7.151176725551038", + "point": "50.72308765740051,7.156746281119605", + "startLcPosition": "4", + "impact": { + "lower": "Bonn-Ramersdorf", + "upper": "Bonn-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn-Ost -> Bonn-Rheinaue", + "title": "A562 | Bonn-Ost - Bonn-Ramersdorf", + "startTimestamp": "2026-03-30T13:00:00+02:00", + "coordinate": { + "lat": 50.72308765740051, + "long": 7.156746281119605 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 13:00 Uhr", + "Ende: 05.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.07.26)", + "", + "A562: Bonn-Ost -> Bonn-Rheinaue, zwischen 0.5 km hinter AK Bonn-Ost und 0.3 km vor AS Bonn-Ramersdorf", + "", + "L\u00e4nge: 0.4 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 8.75 m", + "", + "A 562 Ersatzneubau DB-BW S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.156746281, + 50.723087657 + ], + [ + 7.1562948, + 50.723038501 + ], + [ + 7.155782, + 50.722991901 + ], + [ + 7.1546771, + 50.722902401 + ], + [ + 7.1537524, + 50.722849401 + ], + [ + 7.1530311, + 50.722802701 + ], + [ + 7.1513581, + 50.722684201 + ], + [ + 7.151176726, + 50.722662854 + ] + ] + } + }, + { + "identifier": "2023-000235--vi-bs.2026-03-30_13-00-00-000.devi-zus.2019-07-15_09-00-00-000.f_001.de159", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.722662853559136,7.151176725551038,50.721118340487344,7.146007704696384", + "point": "50.722662853559136,7.151176725551038", + "startLcPosition": "4", + "impact": { + "lower": "Konrad-Adenauer-Br\u00fccke", + "upper": "Bonn-Ost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn-Ost -> Bonn-Rheinaue", + "title": "A562 | Bonn-Ost - Konrad-Adenauer-Br\u00fccke", + "startTimestamp": "2026-03-30T13:00:00+02:00", + "coordinate": { + "lat": 50.722662853559136, + "long": 7.151176725551038 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 13:00 Uhr", + "Ende: 05.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.07.26)", + "", + "A562: Bonn-Ost -> Bonn-Rheinaue, zwischen 0.9 km hinter AK Bonn-Ost und 0.4 km vor Konrad-Adenauer-Br\u00fccke", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 8.75 m", + "", + "A 562 Ersatzneubau DB-BW S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.151176726, + 50.722662854 + ], + [ + 7.150692, + 50.722605801 + ], + [ + 7.1497297, + 50.722478801 + ], + [ + 7.1489728, + 50.722336901 + ], + [ + 7.1482306, + 50.722155101 + ], + [ + 7.1476573, + 50.721962601 + ], + [ + 7.1470121, + 50.721683601 + ], + [ + 7.1467195, + 50.721542901 + ], + [ + 7.1464569, + 50.721402401 + ], + [ + 7.1460283, + 50.721135201 + ], + [ + 7.146007705, + 50.72111834 + ] + ] + } + }, + { + "identifier": "2023-000235--vi-bs.2026-03-30_13-00-00-000.devi-zus.2019-07-15_09-00-00-000.f_001.de169", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.72182077600443,7.149731225338078,50.722548198898075,7.1519114894194695", + "point": "50.72182077600443,7.149731225338078", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bonn-Ramersdorf (aus Richtung Konrad-Adenauer-Br\u00fccke) nach A562", + "title": "A 562 Ersatzneubau DB-BW S13", + "startTimestamp": "2026-03-30T13:00:00+02:00", + "coordinate": { + "lat": 50.72182077600443, + "long": 7.149731225338078 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 13:00 Uhr", + "Ende: 05.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.07.26)", + "", + "Von Auffahrt auf die A562: AS Bonn-Ramersdorf (aus Richtung Konrad-Adenauer-Br\u00fccke) nach A562: Bonn-Rheinaue -> Bonn-Ost, zwischen AS Bonn-Ramersdorf und 0.9 km vor AK Bonn-Ost", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A 562 Ersatzneubau DB-BW S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.149731225, + 50.721820776 + ], + [ + 7.149774, + 50.721893801 + ], + [ + 7.1498622, + 50.722006401 + ], + [ + 7.1499231, + 50.722060801 + ], + [ + 7.1500269, + 50.722137101 + ], + [ + 7.1501251, + 50.722200901 + ], + [ + 7.1502334, + 50.722247201 + ], + [ + 7.1503704, + 50.722299401 + ], + [ + 7.1506673, + 50.722361601 + ], + [ + 7.1516367, + 50.722529001 + ], + [ + 7.151911489, + 50.722548199 + ] + ] + } + }, + { + "identifier": "2024-050470--vi-bs.2026-03-21_09-00-00-000.devi-zus.2025-08-16_09-00-00-000.f.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.72479278813287,7.1649163228661585,50.72821006758863,7.157929387342277", + "point": "50.72479278813287,7.1649163228661585", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Bonn-Ost (in Richtung Bonn-P\u00fctzchen)", + "title": "BW Ankerbachtalbr\u00fccke", + "startTimestamp": "2026-03-21T09:00:00+01:00", + "coordinate": { + "lat": 50.72479278813287, + "long": 7.1649163228661585 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 21.03.26 um 09:00 Uhr", + "Ende: 13.03.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 13.03.27)", + "", + "Auffahrt auf die A59: AK Bonn-Ost (in Richtung Bonn-P\u00fctzchen)", + "", + "L\u00e4nge: 0.66 km | Max. 60 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "BW Ankerbachtalbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.164916323, + 50.724792788 + ], + [ + 7.1649177, + 50.724893001 + ], + [ + 7.1648949, + 50.725067401 + ], + [ + 7.1648456, + 50.725223501 + ], + [ + 7.1647851, + 50.725366001 + ], + [ + 7.1647246, + 50.725484201 + ], + [ + 7.164637, + 50.725616801 + ], + [ + 7.1645648, + 50.725701801 + ], + [ + 7.1644628, + 50.725805401 + ], + [ + 7.1642871, + 50.725948301 + ], + [ + 7.1641268, + 50.726065601 + ], + [ + 7.1639375, + 50.726184401 + ], + [ + 7.1636703, + 50.726330501 + ], + [ + 7.1633065, + 50.726480901 + ], + [ + 7.1629621, + 50.726596701 + ], + [ + 7.1625915, + 50.726709001 + ], + [ + 7.1618456, + 50.726914001 + ], + [ + 7.1606258, + 50.727262201 + ], + [ + 7.1599039, + 50.727474901 + ], + [ + 7.1591312, + 50.727727901 + ], + [ + 7.1588544, + 50.727829601 + ], + [ + 7.157929387, + 50.728210068 + ] + ] + } + }, + { + "identifier": "2023-000235--vi-bs.2026-03-30_13-00-00-000.devi-zus.2019-07-15_09-00-00-000.f_001.de167", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.721625084651876,7.147598929548581,50.72154244587465,7.149347379960854", + "point": "50.721625084651876,7.147598929548581", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bonn-Ramersdorf (aus Richtung Konrad-Adenauer-Br\u00fccke)", + "title": "A 562 Ersatzneubau DB-BW S13", + "startTimestamp": "2026-03-30T13:00:00+02:00", + "coordinate": { + "lat": 50.721625084651876, + "long": 7.147598929548581 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 13:00 Uhr", + "Ende: 05.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.07.26)", + "", + "Abfahrt von der A562: AS Bonn-Ramersdorf (aus Richtung Konrad-Adenauer-Br\u00fccke)", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A 562 Ersatzneubau DB-BW S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.14759893, + 50.721625085 + ], + [ + 7.1478072, + 50.721711201 + ], + [ + 7.1481462, + 50.721819801 + ], + [ + 7.1484286, + 50.721880801 + ], + [ + 7.1486564, + 50.721913001 + ], + [ + 7.1488731, + 50.721907601 + ], + [ + 7.1489982, + 50.721878501 + ], + [ + 7.1491425, + 50.721827701 + ], + [ + 7.1492272, + 50.721772301 + ], + [ + 7.1492712, + 50.721720901 + ], + [ + 7.1493241, + 50.721641201 + ], + [ + 7.14934738, + 50.721542446 + ] + ] + } + }, + { + "identifier": "2023-000235--vi-bs.2026-03-30_13-00-00-000.devi-zus.2019-07-15_09-00-00-000.f_001.de161", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.722761351070254,7.152447277234495,50.722928037142744,7.1483274392099", + "point": "50.722761351070254,7.152447277234495", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn-Ost -> Bonn-Rheinaue", + "title": "A 562 Ersatzneubau DB-BW S13", + "startTimestamp": "2026-03-30T13:00:00+02:00", + "coordinate": { + "lat": 50.722761351070254, + "long": 7.152447277234495 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 30.03.26 um 13:00 Uhr", + "Ende: 05.07.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.07.26)", + "", + "Von A562: Bonn-Ost -> Bonn-Rheinaue, zwischen 0.8 km hinter AK Bonn-Ost und AS Bonn-Ramersdorf nach Abfahrt von der A562: AS Bonn-Ramersdorf (aus Richtung Bonn-Ost)", + "", + "L\u00e4nge: 0.3 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A 562 Ersatzneubau DB-BW S13" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.152447277, + 50.722761351 + ], + [ + 7.1513581, + 50.722684201 + ], + [ + 7.1504282, + 50.722652201 + ], + [ + 7.150049, + 50.722637601 + ], + [ + 7.1498246, + 50.722635101 + ], + [ + 7.1495771, + 50.722652501 + ], + [ + 7.1493479, + 50.722675701 + ], + [ + 7.1491224, + 50.722708201 + ], + [ + 7.1487191, + 50.722812601 + ], + [ + 7.148327439, + 50.722928037 + ] + ] + } + } + ] + }, + "A565": { + "roadworks": [ + { + "identifier": "2023-000240--vi-bs.2025-10-16_05-00-00-000.devi-zus.2024-12-14_09-00-00-000.f.de66", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.70192818915608,7.065070099781347,50.7086694846357,7.061258487521229", + "point": "50.70192818915608,7.065070099781347", + "startLcPosition": "4", + "impact": { + "lower": "Bonn-Lengsdorf", + "upper": "Meckenheim-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Meckenheim -> Bonn", + "title": "A565 | Meckenheim-Nord - Bonn-Lengsdorf", + "startTimestamp": "2025-10-16T05:00:00+02:00", + "coordinate": { + "lat": 50.70192818915608, + "long": 7.065070099781347 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.10.25 um 05:00 Uhr", + "Ende: 18.09.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.09.27)", + "", + "A565: Meckenheim -> Bonn, zwischen 6.3 km hinter AS Meckenheim-Nord und 1.0 km vor AS Bonn-Lengsdorf", + "", + "L\u00e4nge: 0.8 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "BW Villemombler Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.0650701, + 50.701928189 + ], + [ + 7.064902, + 50.702354001 + ], + [ + 7.064609, + 50.702934801 + ], + [ + 7.0641762, + 50.703631501 + ], + [ + 7.0638746, + 50.704057001 + ], + [ + 7.0626658, + 50.705641201 + ], + [ + 7.0623629, + 50.706067601 + ], + [ + 7.0621442, + 50.706418301 + ], + [ + 7.0618634, + 50.706880101 + ], + [ + 7.0617399, + 50.707108701 + ], + [ + 7.0615992, + 50.707387701 + ], + [ + 7.0614566, + 50.707792401 + ], + [ + 7.0613306, + 50.708188101 + ], + [ + 7.0612586, + 50.708666701 + ], + [ + 7.061258488, + 50.708669485 + ] + ] + } + }, + { + "identifier": "2023-000240--vi-bs.2025-10-16_05-00-00-000.devi-zus.2024-12-14_09-00-00-000.f.de64", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.7086964041854,7.061257399828373,50.713846398421026,7.0639041497337445", + "point": "50.7086964041854,7.061257399828373", + "startLcPosition": "5", + "impact": { + "lower": "Bonn-Lengsdorf", + "upper": "Bonn-Hardtberg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Meckenheim -> Bonn", + "title": "A565 | Bonn-Hardtberg - Bonn-Lengsdorf", + "startTimestamp": "2025-10-16T05:00:00+02:00", + "coordinate": { + "lat": 50.7086964041854, + "long": 7.061257399828373 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.10.25 um 05:00 Uhr", + "Ende: 18.09.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.09.27)", + "", + "A565: Meckenheim -> Bonn, zwischen 0.5 km hinter AS Bonn-Hardtberg und 0.4 km vor AS Bonn-Lengsdorf", + "", + "L\u00e4nge: 0.62 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "BW Villemombler Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.0612574, + 50.708696404 + ], + [ + 7.0612367, + 50.709208701 + ], + [ + 7.0612664, + 50.709638701 + ], + [ + 7.0613339, + 50.710000701 + ], + [ + 7.0614238, + 50.710365001 + ], + [ + 7.0615408, + 50.710687701 + ], + [ + 7.0617986, + 50.711266701 + ], + [ + 7.0619708, + 50.711556701 + ], + [ + 7.0622979, + 50.712063101 + ], + [ + 7.0627325, + 50.712606701 + ], + [ + 7.0631761, + 50.713130001 + ], + [ + 7.0636786, + 50.713636501 + ], + [ + 7.06390415, + 50.713846398 + ] + ] + } + }, + { + "identifier": "2023-000240--vi-bs.2025-10-16_05-00-00-000.devi-zus.2024-12-14_09-00-00-000.f.de62", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.71392923854679,7.063711904755968,50.708693219100205,7.061041791414813", + "point": "50.71392923854679,7.063711904755968", + "startLcPosition": "6", + "impact": { + "lower": "Bonn-Hardtberg", + "upper": "Bonn-Lengsdorf", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> Meckenheim", + "title": "A565 | Bonn-Lengsdorf - Bonn-Hardtberg", + "startTimestamp": "2025-10-16T05:00:00+02:00", + "coordinate": { + "lat": 50.71392923854679, + "long": 7.063711904755968 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.10.25 um 05:00 Uhr", + "Ende: 18.09.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.09.27)", + "", + "A565: Bonn -> Meckenheim, zwischen 0.4 km hinter AS Bonn-Lengsdorf und 0.5 km vor AS Bonn-Hardtberg", + "", + "L\u00e4nge: 0.62 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "BW Villemombler Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.063711905, + 50.713929239 + ], + [ + 7.0634622, + 50.713694501 + ], + [ + 7.0629858, + 50.713194501 + ], + [ + 7.062621, + 50.712760501 + ], + [ + 7.0621157, + 50.712121101 + ], + [ + 7.061794, + 50.711600401 + ], + [ + 7.0616218, + 50.711300001 + ], + [ + 7.0614059, + 50.710831801 + ], + [ + 7.0611862, + 50.710201901 + ], + [ + 7.0610749, + 50.709727901 + ], + [ + 7.0610232, + 50.709243701 + ], + [ + 7.061041791, + 50.708693219 + ] + ] + } + }, + { + "identifier": "2023-000027--vi-bs.2026-04-20_05-00-00-000.devi-zus.2023-09-07_09-00-00-000_004.f.de623", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.72328933863577,7.081989993915481,50.73316985893381,7.074319894158474", + "point": "50.72328933863577,7.081989993915481", + "startLcPosition": "6", + "impact": { + "lower": "Bonn-Tannenbusch", + "upper": "Bonn-Lengsdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Meckenheim -> Bonn", + "title": "A565 | Bonn-Lengsdorf - Bonn-Tannenbusch", + "startTimestamp": "2026-04-20T05:00:00+02:00", + "coordinate": { + "lat": 50.72328933863577, + "long": 7.081989993915481 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 05:00 Uhr", + "Ende: 30.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.27)", + "", + "A565: Meckenheim -> Bonn, zwischen 1.3 km hinter AS Bonn-Lengsdorf und 1.1 km vor AS Bonn-Tannenbusch", + "", + "L\u00e4nge: 1.34 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "BW Endenicher Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.081989994, + 50.723289339 + ], + [ + 7.0821437, + 50.723485301 + ], + [ + 7.082419, + 50.723932501 + ], + [ + 7.0825899, + 50.724320001 + ], + [ + 7.0827, + 50.724714501 + ], + [ + 7.0827291, + 50.724971601 + ], + [ + 7.0827341, + 50.725162201 + ], + [ + 7.0827051, + 50.725481301 + ], + [ + 7.0826414, + 50.725769301 + ], + [ + 7.0825739, + 50.726013601 + ], + [ + 7.0824546, + 50.726267901 + ], + [ + 7.0823718, + 50.726456801 + ], + [ + 7.0821763, + 50.726748201 + ], + [ + 7.0819359, + 50.727027801 + ], + [ + 7.0817657, + 50.727203001 + ], + [ + 7.0815596, + 50.727405101 + ], + [ + 7.081244, + 50.727637701 + ], + [ + 7.0806976, + 50.727978301 + ], + [ + 7.0802968, + 50.728199501 + ], + [ + 7.077931, + 50.729241101 + ], + [ + 7.0774161, + 50.729456101 + ], + [ + 7.0765854, + 50.729897401 + ], + [ + 7.0761922, + 50.730158601 + ], + [ + 7.075772, + 50.730476501 + ], + [ + 7.0754785, + 50.730755201 + ], + [ + 7.0751814, + 50.731080801 + ], + [ + 7.0749593, + 50.731376401 + ], + [ + 7.0747173, + 50.731792801 + ], + [ + 7.0745455, + 50.732206601 + ], + [ + 7.0744818, + 50.732396101 + ], + [ + 7.0744239, + 50.732601901 + ], + [ + 7.0743417, + 50.733030501 + ], + [ + 7.074319894, + 50.733169859 + ] + ] + } + }, + { + "identifier": "2023-000027--vi-bs.2026-02-06_21-00-00-000.devi-zus.2023-09-07_09-00-00-000_004.f.de585", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.72328933863577,7.081989993915481,50.72814257022801,7.080399955344463", + "point": "50.72328933863577,7.081989993915481", + "startLcPosition": "6", + "impact": { + "lower": "Bonn-Endenich", + "upper": "Bonn-Lengsdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Meckenheim -> Bonn", + "title": "A565 | Bonn-Lengsdorf - Bonn-Endenich", + "startTimestamp": "2026-02-06T21:00:00+01:00", + "coordinate": { + "lat": 50.72328933863577, + "long": 7.081989993915481 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.02.26 um 21:00 Uhr", + "Ende: 10.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.27)", + "", + "A565: Meckenheim -> Bonn, zwischen 1.3 km hinter AS Bonn-Lengsdorf und 0.3 km vor AS Bonn-Endenich", + "", + "L\u00e4nge: 0.59 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "BW Endenicher Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.081989994, + 50.723289339 + ], + [ + 7.0821437, + 50.723485301 + ], + [ + 7.082419, + 50.723932501 + ], + [ + 7.0825899, + 50.724320001 + ], + [ + 7.0827, + 50.724714501 + ], + [ + 7.0827291, + 50.724971601 + ], + [ + 7.0827341, + 50.725162201 + ], + [ + 7.0827051, + 50.725481301 + ], + [ + 7.0826414, + 50.725769301 + ], + [ + 7.0825739, + 50.726013601 + ], + [ + 7.0824546, + 50.726267901 + ], + [ + 7.0823718, + 50.726456801 + ], + [ + 7.0821763, + 50.726748201 + ], + [ + 7.0819359, + 50.727027801 + ], + [ + 7.0817657, + 50.727203001 + ], + [ + 7.0815596, + 50.727405101 + ], + [ + 7.081244, + 50.727637701 + ], + [ + 7.0806976, + 50.727978301 + ], + [ + 7.080399955, + 50.72814257 + ] + ] + } + }, + { + "identifier": "2023-000027--vi-bs.2026-02-06_21-00-00-000.devi-zus.2023-09-07_09-00-00-000_004.f.de581", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.72819562013609,7.0803038318120235,50.73313407178992,7.074325493913106", + "point": "50.72819562013609,7.0803038318120235", + "startLcPosition": "7", + "impact": { + "lower": "Bonn-Tannenbusch", + "upper": "Bonn-Poppelsdorf", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Meckenheim -> Bonn", + "title": "A565 | Bonn-Poppelsdorf - Bonn-Tannenbusch", + "startTimestamp": "2026-02-06T21:00:00+01:00", + "coordinate": { + "lat": 50.72819562013609, + "long": 7.0803038318120235 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.02.26 um 21:00 Uhr", + "Ende: 10.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.27)", + "", + "A565: Meckenheim -> Bonn, zwischen 0.5 km hinter AS Bonn-Poppelsdorf und 1.1 km vor AS Bonn-Tannenbusch", + "", + "L\u00e4nge: 0.73 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6.1 m", + "", + "BW Endenicher Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.080303832, + 50.72819562 + ], + [ + 7.0802968, + 50.728199501 + ], + [ + 7.077931, + 50.729241101 + ], + [ + 7.0774161, + 50.729456101 + ], + [ + 7.0765854, + 50.729897401 + ], + [ + 7.0761922, + 50.730158601 + ], + [ + 7.075772, + 50.730476501 + ], + [ + 7.0754785, + 50.730755201 + ], + [ + 7.0751814, + 50.731080801 + ], + [ + 7.0749593, + 50.731376401 + ], + [ + 7.0747173, + 50.731792801 + ], + [ + 7.0745455, + 50.732206601 + ], + [ + 7.0744818, + 50.732396101 + ], + [ + 7.0744239, + 50.732601901 + ], + [ + 7.0743417, + 50.733030501 + ], + [ + 7.074325494, + 50.733134072 + ] + ] + } + }, + { + "identifier": "2023-000240--vi-bs.2025-10-16_05-00-00-000.devi-zus.2024-12-14_09-00-00-000.f.de60", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.717915469460905,7.071191725436891,50.71392923854679,7.063711904755968", + "point": "50.717915469460905,7.071191725436891", + "startLcPosition": "7", + "impact": { + "lower": "Bonn-Hardtberg", + "upper": "Bonn-Poppelsdorf", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> Meckenheim", + "title": "A565 | Bonn-Poppelsdorf - Bonn-Hardtberg", + "startTimestamp": "2025-10-16T05:00:00+02:00", + "coordinate": { + "lat": 50.717915469460905, + "long": 7.071191725436891 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.10.25 um 05:00 Uhr", + "Ende: 18.09.27 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.09.27)", + "", + "A565: Bonn -> Meckenheim, zwischen 1.1 km hinter AS Bonn-Poppelsdorf und 1.1 km vor AS Bonn-Hardtberg", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "BW Villemombler Str." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.071191725, + 50.717915469 + ], + [ + 7.0708631, + 50.717813001 + ], + [ + 7.0704371, + 50.717677001 + ], + [ + 7.0692879, + 50.717292301 + ], + [ + 7.0685733, + 50.717016101 + ], + [ + 7.0680706, + 50.716819001 + ], + [ + 7.0675398, + 50.716574101 + ], + [ + 7.0670332, + 50.716314501 + ], + [ + 7.0662913, + 50.715898601 + ], + [ + 7.0655793, + 50.715453001 + ], + [ + 7.0648878, + 50.714958401 + ], + [ + 7.0640227, + 50.714221401 + ], + [ + 7.063711905, + 50.713929239 + ] + ] + } + }, + { + "identifier": "2023-000027--vi-bs.2026-02-06_21-00-00-000.devi-zus.2023-09-07_09-00-00-000_004.f.de579", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.733126799960715,7.074200849290012,50.7281078953667,7.08019720152587", + "point": "50.733126799960715,7.074200849290012", + "startLcPosition": "9", + "impact": { + "lower": "Bonn-Poppelsdorf", + "upper": "Bonn-Tannenbusch", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> Meckenheim", + "title": "A565 | Bonn-Tannenbusch - Bonn-Poppelsdorf", + "startTimestamp": "2026-02-06T21:00:00+01:00", + "coordinate": { + "lat": 50.733126799960715, + "long": 7.074200849290012 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.02.26 um 21:00 Uhr", + "Ende: 10.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.27)", + "", + "A565: Bonn -> Meckenheim, zwischen 1.1 km hinter AS Bonn-Tannenbusch und 0.5 km vor AS Bonn-Poppelsdorf", + "", + "L\u00e4nge: 0.73 km | Maximale Durchfahrtsbreite: 6.1 m", + "", + "BW Endenicher Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.074200849, + 50.7331268 + ], + [ + 7.0742235, + 50.732957901 + ], + [ + 7.0743326, + 50.732423501 + ], + [ + 7.0744188, + 50.732132201 + ], + [ + 7.0745401, + 50.731840201 + ], + [ + 7.0747893, + 50.731404701 + ], + [ + 7.0750421, + 50.731046501 + ], + [ + 7.0753652, + 50.730690801 + ], + [ + 7.0756698, + 50.730408101 + ], + [ + 7.0760762, + 50.730099201 + ], + [ + 7.0766172, + 50.729752801 + ], + [ + 7.0771152, + 50.729478801 + ], + [ + 7.0796995, + 50.728321301 + ], + [ + 7.080197202, + 50.728107895 + ] + ] + } + }, + { + "identifier": "2023-000027--vi-bs.2026-04-10_21-00-00-000.devi-zus.2023-09-07_09-00-00-000_004.f.de615", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.739079284788566,7.072302549183232,50.7281078953667,7.08019720152587", + "point": "50.739079284788566,7.072302549183232", + "startLcPosition": "9", + "impact": { + "lower": "Bonn-Poppelsdorf", + "upper": "Bonn-Tannenbusch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> Meckenheim", + "title": "A565 | Bonn-Tannenbusch - Bonn-Poppelsdorf", + "startTimestamp": "2026-04-10T21:00:00+02:00", + "coordinate": { + "lat": 50.739079284788566, + "long": 7.072302549183232 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 21:00 Uhr", + "Ende: 24.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.27)", + "", + "A565: Bonn -> Meckenheim, zwischen 0.4 km hinter AS Bonn-Tannenbusch und 0.5 km vor AS Bonn-Poppelsdorf", + "", + "L\u00e4nge: 1.41 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "BW Endenicher Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.072302549, + 50.739079285 + ], + [ + 7.0723221, + 50.739031601 + ], + [ + 7.0727528, + 50.737915001 + ], + [ + 7.073084, + 50.736970201 + ], + [ + 7.0733628, + 50.736183101 + ], + [ + 7.0736433, + 50.735432101 + ], + [ + 7.0739749, + 50.734363401 + ], + [ + 7.0740601, + 50.734009301 + ], + [ + 7.0741352, + 50.733612701 + ], + [ + 7.0741578, + 50.733447801 + ], + [ + 7.0742235, + 50.732957901 + ], + [ + 7.0743326, + 50.732423501 + ], + [ + 7.0744188, + 50.732132201 + ], + [ + 7.0745401, + 50.731840201 + ], + [ + 7.0747893, + 50.731404701 + ], + [ + 7.0750421, + 50.731046501 + ], + [ + 7.0753652, + 50.730690801 + ], + [ + 7.0756698, + 50.730408101 + ], + [ + 7.0760762, + 50.730099201 + ], + [ + 7.0766172, + 50.729752801 + ], + [ + 7.0771152, + 50.729478801 + ], + [ + 7.0796995, + 50.728321301 + ], + [ + 7.080197202, + 50.728107895 + ] + ] + } + }, + { + "identifier": "2023-000027--vi-bs.2026-02-06_21-00-00-000.devi-zus.2023-09-07_09-00-00-000_004.f.de577", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.739079284788566,7.072302549183232,50.733126799960715,7.074200849290012", + "point": "50.739079284788566,7.072302549183232", + "startLcPosition": "9", + "impact": { + "lower": "Bonn-Endenich", + "upper": "Bonn-Tannenbusch", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> Meckenheim", + "title": "A565 | Bonn-Tannenbusch - Bonn-Endenich", + "startTimestamp": "2026-02-06T21:00:00+01:00", + "coordinate": { + "lat": 50.739079284788566, + "long": 7.072302549183232 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 06.02.26 um 21:00 Uhr", + "Ende: 10.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.27)", + "", + "A565: Bonn -> Meckenheim, zwischen 0.4 km hinter AS Bonn-Tannenbusch und 0.5 km vor AS Bonn-Endenich", + "", + "L\u00e4nge: 0.68 km | Maximale Durchfahrtsbreite: 6.75 m", + "", + "BW Endenicher Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.072302549, + 50.739079285 + ], + [ + 7.0723221, + 50.739031601 + ], + [ + 7.0727528, + 50.737915001 + ], + [ + 7.073084, + 50.736970201 + ], + [ + 7.0733628, + 50.736183101 + ], + [ + 7.0736433, + 50.735432101 + ], + [ + 7.0739749, + 50.734363401 + ], + [ + 7.0740601, + 50.734009301 + ], + [ + 7.0741352, + 50.733612701 + ], + [ + 7.0741578, + 50.733447801 + ], + [ + 7.074200849, + 50.7331268 + ] + ] + } + }, + { + "identifier": "2026-004238--vi-bs.2026-04-10_09-00-00-000.devi-zus.2026-02-09_15-00-00-000.de63", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.75253276013314,7.087430782544745,50.75436232619668,7.094979513717088", + "point": "50.75253276013314,7.087430782544745", + "startLcPosition": "10", + "impact": { + "lower": "Friedrich-Ebert-Br\u00fccke", + "upper": "Bonn-Nord", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Meckenheim -> Bonn", + "title": "A565 | Bonn-Nord - Friedrich-Ebert-Br\u00fccke", + "coordinate": { + "lat": 50.75253276013314, + "long": 7.087430782544745 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 13:00 Uhr", + "23.04.26 von 09:00 bis 15:00 Uhr", + "24.04.26 von 09:00 bis 15:00 Uhr", + "", + "A565: Meckenheim -> Bonn, zwischen 1.2 km hinter AK Bonn-Nord und 0.4 km vor Friedrich-Ebert-Br\u00fccke", + "", + "L\u00e4nge: 0.57 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "Rheinbr\u00fccke Bonn-Nord (2026 - 20xx)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.087430783, + 50.75253276 + ], + [ + 7.0882315, + 50.752767001 + ], + [ + 7.0894735, + 50.753111901 + ], + [ + 7.0907441, + 50.753438401 + ], + [ + 7.0921219, + 50.753755701 + ], + [ + 7.0933447, + 50.754011201 + ], + [ + 7.0939699, + 50.754133501 + ], + [ + 7.0947008, + 50.754293001 + ], + [ + 7.094979514, + 50.754362326 + ] + ] + } + }, + { + "identifier": "2026-004238--vi-bs.2026-02-12_05-00-00-000.devi-zus.2026-02-09_15-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.752971824927684,7.088969072247973,50.76116377769558,7.114225272912064", + "point": "50.752971824927684,7.088969072247973", + "startLcPosition": "11", + "impact": { + "lower": "Bonn-Beuel", + "upper": "Bonn-Auerberg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Meckenheim -> Bonn", + "title": "A565 | Bonn-Auerberg - Bonn-Beuel", + "startTimestamp": "2026-02-12T05:00:00+01:00", + "coordinate": { + "lat": 50.752971824927684, + "long": 7.088969072247973 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.02.26 um 05:00 Uhr", + "Ende: 31.12.30 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.30)", + "", + "A565: Meckenheim -> Bonn, zwischen AS Bonn-Auerberg und AS Bonn-Beuel", + "", + "L\u00e4nge: 2.03 km | Maximale Durchfahrtsbreite: 7.5 m | zul\u00e4ssiges Gesamtgewicht: 7.5 t", + "", + "Rheinbr\u00fccke Bonn-Nord (2026 - 20xx)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.088969072, + 50.752971825 + ], + [ + 7.0894735, + 50.753111901 + ], + [ + 7.0907441, + 50.753438401 + ], + [ + 7.0921219, + 50.753755701 + ], + [ + 7.0933447, + 50.754011201 + ], + [ + 7.0939699, + 50.754133501 + ], + [ + 7.0947008, + 50.754293001 + ], + [ + 7.0950755, + 50.754386201 + ], + [ + 7.0957022, + 50.754581301 + ], + [ + 7.096464, + 50.754849701 + ], + [ + 7.0965509, + 50.754889201 + ], + [ + 7.0968844, + 50.755047901 + ], + [ + 7.0971738, + 50.755185701 + ], + [ + 7.0997444, + 50.756540001 + ], + [ + 7.1033398, + 50.758450501 + ], + [ + 7.103794, + 50.758673601 + ], + [ + 7.103913, + 50.758732001 + ], + [ + 7.1046313, + 50.759047401 + ], + [ + 7.1052618, + 50.759284201 + ], + [ + 7.1063248, + 50.759625101 + ], + [ + 7.1074262, + 50.759908601 + ], + [ + 7.1085192, + 50.760128901 + ], + [ + 7.1125984, + 50.760824201 + ], + [ + 7.1138576, + 50.761084301 + ], + [ + 7.1141859, + 50.761154801 + ], + [ + 7.114225273, + 50.761163778 + ] + ] + } + }, + { + "identifier": "2026-004238--vi-bs.2026-02-12_05-00-00-000.devi-zus.2026-02-09_15-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.761298611593894,7.114133047493517,50.753067640664625,7.088887345490721", + "point": "50.761298611593894,7.114133047493517", + "startLcPosition": "14", + "impact": { + "lower": "Bonn-Nord", + "upper": "Bonn-Nordost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bonn -> Meckenheim", + "title": "A565 | Bonn-Nordost - Bonn-Nord", + "startTimestamp": "2026-02-12T05:00:00+01:00", + "coordinate": { + "lat": 50.761298611593894, + "long": 7.114133047493517 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.02.26 um 05:00 Uhr", + "Ende: 31.12.30 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.30)", + "", + "A565: Bonn -> Meckenheim, zwischen 2.0 km hinter AD Bonn-Nordost und 1.3 km vor AK Bonn-Nord", + "", + "L\u00e4nge: 2.03 km | Maximale Durchfahrtsbreite: 10.5 m | zul\u00e4ssiges Gesamtgewicht: 7.5 t", + "", + "Rheinbr\u00fccke Bonn-Nord (2026 - 20xx)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.114133047, + 50.761298612 + ], + [ + 7.1140498, + 50.761279301 + ], + [ + 7.1137289, + 50.761208601 + ], + [ + 7.112821, + 50.761020001 + ], + [ + 7.1110786, + 50.760705601 + ], + [ + 7.1096547, + 50.760470801 + ], + [ + 7.1083294, + 50.760251801 + ], + [ + 7.1068609, + 50.759930301 + ], + [ + 7.106478, + 50.759828301 + ], + [ + 7.1056808, + 50.759592901 + ], + [ + 7.1048922, + 50.759307901 + ], + [ + 7.1043938, + 50.759117001 + ], + [ + 7.1037625, + 50.758855901 + ], + [ + 7.1036432, + 50.758799501 + ], + [ + 7.1030767, + 50.758531701 + ], + [ + 7.098735, + 50.756169201 + ], + [ + 7.0975012, + 50.755536301 + ], + [ + 7.0967508, + 50.755154701 + ], + [ + 7.0966187, + 50.755087501 + ], + [ + 7.0961118, + 50.754867701 + ], + [ + 7.0955073, + 50.754655601 + ], + [ + 7.0946371, + 50.754387701 + ], + [ + 7.0939396, + 50.754227201 + ], + [ + 7.093299, + 50.754101801 + ], + [ + 7.0921145, + 50.753865401 + ], + [ + 7.0906202, + 50.753520801 + ], + [ + 7.0893782, + 50.753204601 + ], + [ + 7.088887345, + 50.753067641 + ] + ] + } + }, + { + "identifier": "2026-004238--vi-bs.2026-04-09_09-00-00-000.devi-zus.2026-02-09_15-00-00-000.de67", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "50.76489915788065,7.129922574964386,50.762067187621255,7.117244062595512", + "point": "50.76489915788065,7.129922574964386", + "startLcPosition": "14", + "impact": { + "lower": "Bonn-Beuel", + "upper": "Bonn-Nordost", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bonn -> Meckenheim", + "title": "A565 | Bonn-Nordost - Bonn-Beuel", + "coordinate": { + "lat": 50.76489915788065, + "long": 7.129922574964386 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 09:00 bis 13:00 Uhr", + "", + "A565: Bonn -> Meckenheim, zwischen 0.8 km hinter AD Bonn-Nordost und 0.2 km vor AS Bonn-Beuel", + "", + "L\u00e4nge: 0.95 km | Maximale Durchfahrtsbreite: 7 m", + "", + "Rheinbr\u00fccke Bonn-Nord (2026 - 20xx)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.129922575, + 50.764899158 + ], + [ + 7.1292655, + 50.764860101 + ], + [ + 7.1288605, + 50.764825301 + ], + [ + 7.127756, + 50.764718001 + ], + [ + 7.1267936, + 50.764586301 + ], + [ + 7.1258354, + 50.764436801 + ], + [ + 7.1244661, + 50.764173201 + ], + [ + 7.1235669, + 50.763966201 + ], + [ + 7.1226972, + 50.763747901 + ], + [ + 7.1215856, + 50.763416101 + ], + [ + 7.1197758, + 50.762819801 + ], + [ + 7.1176562, + 50.762177701 + ], + [ + 7.117244063, + 50.762067188 + ] + ] + } + }, + { + "identifier": "2026-004238--vi-bs.2026-02-12_05-00-00-000.devi-zus.2026-02-09_15-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.75303677868899,7.0897188346819275,50.75553811398239,7.0978426915756065", + "point": "50.75303677868899,7.0897188346819275", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Friedrich-Ebert-Br\u00fccke (aus Richtung Bonn-Auerberg) nach A565", + "title": "Rheinbr\u00fccke Bonn-Nord (2026 - 20xx)", + "startTimestamp": "2026-02-12T05:00:00+01:00", + "coordinate": { + "lat": 50.75303677868899, + "long": 7.0897188346819275 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.02.26 um 05:00 Uhr", + "Ende: 31.12.30 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.30)", + "", + "Von Auffahrt auf die A565: Friedrich-Ebert-Br\u00fccke (aus Richtung Bonn-Auerberg) nach A565: Meckenheim -> Bonn, zwischen AS Bonn-Auerberg und 0.2 km vor Friedrich-Ebert-Br\u00fccke", + "", + "L\u00e4nge: 0.64 km | Maximale Durchfahrtsbreite: 3.75 m | zul\u00e4ssiges Gesamtgewicht: 7.5 t", + "", + "Rheinbr\u00fccke Bonn-Nord (2026 - 20xx)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.089718835, + 50.753036779 + ], + [ + 7.0898124, + 50.753054001 + ], + [ + 7.0908676, + 50.753323701 + ], + [ + 7.0921884, + 50.753635801 + ], + [ + 7.0938833, + 50.754021801 + ], + [ + 7.094794, + 50.754247901 + ], + [ + 7.0953614, + 50.754414101 + ], + [ + 7.0959411, + 50.754618701 + ], + [ + 7.0963096, + 50.754764201 + ], + [ + 7.096464, + 50.754849701 + ], + [ + 7.0965509, + 50.754889201 + ], + [ + 7.0968844, + 50.755047901 + ], + [ + 7.0971738, + 50.755185701 + ], + [ + 7.097842692, + 50.755538114 + ] + ] + } + }, + { + "identifier": "2026-004238--vi-bs.2026-02-12_05-00-00-000.devi-zus.2026-02-09_15-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.76246974690743,7.112468192984456,50.75993524364352,7.106883475768521", + "point": "50.76246974690743,7.112468192984456", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bonn-Beuel (aus Richtung Bonn-Nordost) nach A565", + "title": "Rheinbr\u00fccke Bonn-Nord (2026 - 20xx)", + "startTimestamp": "2026-02-12T05:00:00+01:00", + "coordinate": { + "lat": 50.76246974690743, + "long": 7.112468192984456 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.02.26 um 05:00 Uhr", + "Ende: 31.12.30 um 15:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.12.30)", + "", + "Von Auffahrt auf die A565: AS Bonn-Beuel (aus Richtung Bonn-Nordost) nach A565: Bonn -> Meckenheim, zwischen AS Bonn-Beuel und 0.6 km vor Friedrich-Ebert-Br\u00fccke", + "", + "L\u00e4nge: 0.52 km | Maximale Durchfahrtsbreite: 5 m | zul\u00e4ssiges Gesamtgewicht: 7.5 t", + "", + "Rheinbr\u00fccke Bonn-Nord (2026 - 20xx)" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.112468193, + 50.762469747 + ], + [ + 7.112198, + 50.762342301 + ], + [ + 7.1118506, + 50.762173101 + ], + [ + 7.1112596, + 50.761899001 + ], + [ + 7.1110456, + 50.761785701 + ], + [ + 7.1108636, + 50.761637801 + ], + [ + 7.1107841, + 50.761522101 + ], + [ + 7.1107171, + 50.761268801 + ], + [ + 7.1106735, + 50.761005301 + ], + [ + 7.1106079, + 50.760890601 + ], + [ + 7.1105549, + 50.760810301 + ], + [ + 7.11041, + 50.760698101 + ], + [ + 7.1102608, + 50.760625601 + ], + [ + 7.1096547, + 50.760470801 + ], + [ + 7.1083294, + 50.760251801 + ], + [ + 7.106883476, + 50.759935244 + ] + ] + } + }, + { + "identifier": "2023-000245--vi-bs.2026-03-24_05-00-00-000.devi-zus.2026-02-07_09-00-00-000.f_001.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.74605625419555,7.073826884011959,50.74522111650526,7.073262798621975", + "point": "50.74605625419555,7.073826884011959", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Bonn-Nord (aus Richtung Bonn-Auerberg)", + "title": "BW Tausendf\u00fc\u00dfler, 6-str. Ausbau", + "startTimestamp": "2026-03-24T05:00:00+01:00", + "coordinate": { + "lat": 50.74605625419555, + "long": 7.073826884011959 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.03.26 um 05:00 Uhr", + "Ende: 26.06.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 18.06.33)", + "", + "Abfahrt von der A565: AK Bonn-Nord (aus Richtung Bonn-Auerberg)", + "", + "L\u00e4nge: 0.36 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "BW Tausendf\u00fc\u00dfler, 6-str. Ausbau" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.073826884, + 50.746056254 + ], + [ + 7.073926, + 50.746003201 + ], + [ + 7.0742124, + 50.745834101 + ], + [ + 7.0742746, + 50.745767801 + ], + [ + 7.0745191, + 50.745605101 + ], + [ + 7.0746563, + 50.745481401 + ], + [ + 7.0747664, + 50.745340201 + ], + [ + 7.0748464, + 50.745223201 + ], + [ + 7.0748766, + 50.745165701 + ], + [ + 7.0749003, + 50.745100201 + ], + [ + 7.0749159, + 50.745008901 + ], + [ + 7.0749194, + 50.744947101 + ], + [ + 7.0749125, + 50.744871801 + ], + [ + 7.0748755, + 50.744777701 + ], + [ + 7.0748077, + 50.744701101 + ], + [ + 7.0747472, + 50.744646001 + ], + [ + 7.0746507, + 50.744574701 + ], + [ + 7.0745123, + 50.744523801 + ], + [ + 7.074312, + 50.744471701 + ], + [ + 7.0741784, + 50.744459001 + ], + [ + 7.0740399, + 50.744462301 + ], + [ + 7.0738724, + 50.744485701 + ], + [ + 7.0737229, + 50.744527301 + ], + [ + 7.0735478, + 50.744616001 + ], + [ + 7.0734118, + 50.744710601 + ], + [ + 7.0733499, + 50.744781101 + ], + [ + 7.0732984, + 50.744868401 + ], + [ + 7.0732538, + 50.745012301 + ], + [ + 7.0732608, + 50.745215601 + ], + [ + 7.073262799, + 50.745221117 + ] + ] + } + }, + { + "identifier": "2023-000027--vi-bs.2026-04-20_05-00-00-000.devi-zus.2023-09-07_09-00-00-000_004.f.de625", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.724111404373865,7.08571982040949,50.726628724755095,7.0824312064904476", + "point": "50.724111404373865,7.08571982040949", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bonn-Endenich (aus Richtung Bonn-Poppelsdorf)", + "title": "BW Endenicher Ei", + "startTimestamp": "2026-04-20T05:00:00+02:00", + "coordinate": { + "lat": 50.724111404373865, + "long": 7.08571982040949 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.04.26 um 05:00 Uhr", + "Ende: 30.04.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.27)", + "", + "Auffahrt auf die A565: AS Bonn-Endenich (aus Richtung Bonn-Poppelsdorf)", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "BW Endenicher Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.08571982, + 50.724111404 + ], + [ + 7.0850723, + 50.724299001 + ], + [ + 7.0845339, + 50.724461201 + ], + [ + 7.0842285, + 50.724594501 + ], + [ + 7.0840059, + 50.724708401 + ], + [ + 7.0837523, + 50.724886901 + ], + [ + 7.0835448, + 50.725065601 + ], + [ + 7.0833487, + 50.725296801 + ], + [ + 7.0827896, + 50.726163201 + ], + [ + 7.0825615, + 50.726468401 + ], + [ + 7.082431206, + 50.726628725 + ] + ] + } + }, + { + "identifier": "2023-000027--vi-bs.2026-04-10_21-00-00-000.devi-zus.2023-09-07_09-00-00-000_004.f.de618", + "icon": "123", + "isBlocked": "false", + "future": true, + "extent": "50.73179389126061,7.0745522581410984,50.72954457928097,7.076494265086547", + "point": "50.73179389126061,7.0745522581410984", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Bonn-Endenich (aus Richtung Bonn-Tannenbusch)", + "title": "BW Endenicher Ei", + "startTimestamp": "2026-04-10T21:00:00+02:00", + "coordinate": { + "lat": 50.73179389126061, + "long": 7.0745522581410984 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 10.04.26 um 21:00 Uhr", + "Ende: 24.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 31.10.27)", + "", + "Abfahrt von der A565: AS Bonn-Endenich (aus Richtung Bonn-Tannenbusch)", + "", + "L\u00e4nge: 0.29 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "BW Endenicher Ei" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.074552258, + 50.731793891 + ], + [ + 7.0746626, + 50.731373601 + ], + [ + 7.0748847, + 50.731000501 + ], + [ + 7.0751656, + 50.730638201 + ], + [ + 7.0754388, + 50.730336501 + ], + [ + 7.0757413, + 50.730082501 + ], + [ + 7.0762258, + 50.729723101 + ], + [ + 7.076494265, + 50.729544579 + ] + ] + } + } + ] + }, + "A620": { + "roadworks": [ + { + "identifier": "2024-023912--vi-bs.2026-02-28_00-00-00-000.devi-zus.2024-05-31_00-00-00-000.f_032.de60", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.244928674800796,6.834788166058916,49.241293437408366,6.855430134441051", + "point": "49.244928674800796,6.834788166058916", + "startLcPosition": "7", + "impact": { + "lower": "V\u00f6lklingen", + "upper": "V\u00f6lklingen-Wehrden", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | V\u00f6lklingen-Wehrden - V\u00f6lklingen", + "startTimestamp": "2026-02-28T00:00:00+01:00", + "coordinate": { + "lat": 49.244928674800796, + "long": 6.834788166058916 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.02.26 um 00:00 Uhr", + "Ende: 01.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.26)", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.9 km hinter AS V\u00f6lklingen-Wehrden und 0.7 km vor AS V\u00f6lklingen", + "", + "L\u00e4nge: 1.65 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 Rosseltalbr\u00fccke Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.834788166, + 49.244928675 + ], + [ + 6.8349795, + 49.244666901 + ], + [ + 6.8352504, + 49.244353401 + ], + [ + 6.8354865, + 49.244111801 + ], + [ + 6.8357091, + 49.243908701 + ], + [ + 6.836047, + 49.243627601 + ], + [ + 6.8364601, + 49.243329901 + ], + [ + 6.8369657, + 49.243018301 + ], + [ + 6.8373694, + 49.242809901 + ], + [ + 6.8376322, + 49.242695201 + ], + [ + 6.8382436, + 49.242461401 + ], + [ + 6.838843, + 49.242247801 + ], + [ + 6.8393594, + 49.242094501 + ], + [ + 6.8398328, + 49.241964101 + ], + [ + 6.8402311, + 49.241877001 + ], + [ + 6.8408971, + 49.241767801 + ], + [ + 6.8414166, + 49.241705801 + ], + [ + 6.8420161, + 49.241655001 + ], + [ + 6.8425592, + 49.241632201 + ], + [ + 6.8432298, + 49.241629601 + ], + [ + 6.8437971, + 49.241642701 + ], + [ + 6.8445722, + 49.241676001 + ], + [ + 6.8457396, + 49.241724301 + ], + [ + 6.8460592, + 49.241733901 + ], + [ + 6.8465053, + 49.241735901 + ], + [ + 6.8470456, + 49.241728101 + ], + [ + 6.8473543, + 49.241722801 + ], + [ + 6.8485601, + 49.241663501 + ], + [ + 6.8501901, + 49.241547301 + ], + [ + 6.8525672, + 49.241398501 + ], + [ + 6.8533609, + 49.241346001 + ], + [ + 6.853955, + 49.241310901 + ], + [ + 6.8546239, + 49.241284201 + ], + [ + 6.8552033, + 49.241284501 + ], + [ + 6.855430134, + 49.241293437 + ] + ] + } + }, + { + "identifier": "2025-038281--vi-fbm.2026-04-13_20-30-00-000.devi-zus.2026-04-07_19-30-00-000.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.245965449559584,6.862953479279728,49.243173767079185,6.916033555412569", + "point": "49.245965449559584,6.862953479279728", + "startLcPosition": "9", + "impact": { + "lower": "Saarbr\u00fccken-Gersweiler", + "upper": "V\u00f6lklingen", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | V\u00f6lklingen - Saarbr\u00fccken-Gersweiler", + "coordinate": { + "lat": 49.245965449559584, + "long": 6.862953479279728 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "15.04.26 19:30 bis zum 16.04.26 05:30 Uhr.", + "16.04.26 19:30 bis zum 17.04.26 05:30 Uhr.", + "17.04.26 19:30 bis zum 18.04.26 05:30 Uhr.", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.1 km hinter AS V\u00f6lklingen und 2.1 km vor AS Saarbr\u00fccken-Gersweiler", + "", + "L\u00e4nge: 4.21 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Erneuerung AS SB-Gersweiler - AS VK - Ost, km 8,0 bis km 13,8" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.862953479, + 49.24596545 + ], + [ + 6.8631318, + 49.246157001 + ], + [ + 6.86334, + 49.246355501 + ], + [ + 6.8635881, + 49.246591401 + ], + [ + 6.8638148, + 49.246786201 + ], + [ + 6.8640773, + 49.246999201 + ], + [ + 6.8643254, + 49.247190001 + ], + [ + 6.8649383, + 49.247598001 + ], + [ + 6.8651327, + 49.247723201 + ], + [ + 6.8655216, + 49.247937701 + ], + [ + 6.8659307, + 49.248146001 + ], + [ + 6.8663062, + 49.248314101 + ], + [ + 6.8667917, + 49.248506701 + ], + [ + 6.866935, + 49.248559601 + ], + [ + 6.867247, + 49.248674601 + ], + [ + 6.8675806, + 49.248784901 + ], + [ + 6.8680969, + 49.248944201 + ], + [ + 6.8687928, + 49.249139901 + ], + [ + 6.8713026, + 49.249836701 + ], + [ + 6.8720617, + 49.250045601 + ], + [ + 6.8730987, + 49.250329901 + ], + [ + 6.8733157, + 49.250392801 + ], + [ + 6.873927, + 49.250553701 + ], + [ + 6.8743803, + 49.250671001 + ], + [ + 6.8748497, + 49.250772501 + ], + [ + 6.8752896, + 49.250858301 + ], + [ + 6.8758274, + 49.250942401 + ], + [ + 6.8762927, + 49.251003601 + ], + [ + 6.8766146, + 49.251038701 + ], + [ + 6.8770236, + 49.251076301 + ], + [ + 6.8775158, + 49.251099901 + ], + [ + 6.8779651, + 49.251116601 + ], + [ + 6.8783191, + 49.251114801 + ], + [ + 6.878751, + 49.251101701 + ], + [ + 6.8791587, + 49.251083301 + ], + [ + 6.8795516, + 49.251048301 + ], + [ + 6.8799982, + 49.250997501 + ], + [ + 6.8804059, + 49.250944101 + ], + [ + 6.8807023, + 49.250896001 + ], + [ + 6.881085, + 49.250826301 + ], + [ + 6.8815996, + 49.250711501 + ], + [ + 6.8820288, + 49.250599501 + ], + [ + 6.8823279, + 49.250514601 + ], + [ + 6.8824888, + 49.250466401 + ], + [ + 6.8831406, + 49.250260701 + ], + [ + 6.885116, + 49.249596201 + ], + [ + 6.8856511, + 49.249423801 + ], + [ + 6.8862774, + 49.249226801 + ], + [ + 6.8869386, + 49.249026301 + ], + [ + 6.887931, + 49.248746201 + ], + [ + 6.8888993, + 49.248492301 + ], + [ + 6.8894827, + 49.248350701 + ], + [ + 6.8900499, + 49.248219201 + ], + [ + 6.8907782, + 49.248054601 + ], + [ + 6.8915359, + 49.247893301 + ], + [ + 6.892476, + 49.247712101 + ], + [ + 6.8931854, + 49.247586001 + ], + [ + 6.8940625, + 49.247448601 + ], + [ + 6.8948055, + 49.247339101 + ], + [ + 6.895303, + 49.247267301 + ], + [ + 6.895814, + 49.247204301 + ], + [ + 6.8972731, + 49.247032701 + ], + [ + 6.8982588, + 49.246925901 + ], + [ + 6.898857, + 49.246861101 + ], + [ + 6.89949, + 49.246792001 + ], + [ + 6.9000117, + 49.246726301 + ], + [ + 6.9005588, + 49.246642301 + ], + [ + 6.9012133, + 49.246525801 + ], + [ + 6.9019549, + 49.246380501 + ], + [ + 6.9026764, + 49.246247401 + ], + [ + 6.903634, + 49.246092501 + ], + [ + 6.9041869, + 49.246007001 + ], + [ + 6.9060525, + 49.245718701 + ], + [ + 6.9066042, + 49.245634701 + ], + [ + 6.9070401, + 49.245568501 + ], + [ + 6.9075822, + 49.245482801 + ], + [ + 6.9080516, + 49.245399101 + ], + [ + 6.908521, + 49.245306301 + ], + [ + 6.9089364, + 49.245217401 + ], + [ + 6.9094396, + 49.245097001 + ], + [ + 6.9098876, + 49.244970101 + ], + [ + 6.9102604, + 49.244858901 + ], + [ + 6.9106855, + 49.244723201 + ], + [ + 6.9112032, + 49.244541101 + ], + [ + 6.9117088, + 49.244351101 + ], + [ + 6.9121285, + 49.244193501 + ], + [ + 6.9125671, + 49.244037601 + ], + [ + 6.9130123, + 49.243887001 + ], + [ + 6.9133704, + 49.243778501 + ], + [ + 6.914068, + 49.243593101 + ], + [ + 6.9143521, + 49.243525501 + ], + [ + 6.914844, + 49.243412301 + ], + [ + 6.9157786, + 49.243221201 + ], + [ + 6.916033555, + 49.243173767 + ] + ] + } + }, + { + "identifier": "2024-023912--vi-bs.2026-02-28_00-00-00-000.devi-zus.2024-05-31_00-00-00-000.f_032.de62", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.24137074652492,6.855422960372307,49.24496389046044,6.834900228193637", + "point": "49.24137074652492,6.855422960372307", + "startLcPosition": "9", + "impact": { + "lower": "V\u00f6lklingen-Wehrden", + "upper": "V\u00f6lklingen", + "symbols": [ + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 | V\u00f6lklingen - V\u00f6lklingen-Wehrden", + "startTimestamp": "2026-02-28T00:00:00+01:00", + "coordinate": { + "lat": 49.24137074652492, + "long": 6.855422960372307 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.02.26 um 00:00 Uhr", + "Ende: 01.12.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.12.26)", + "", + "A620: Saarbr\u00fccken -> Saarlouis, zwischen 0.7 km hinter AS V\u00f6lklingen und 0.9 km vor AS V\u00f6lklingen-Wehrden", + "", + "L\u00e4nge: 1.65 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 Rosseltalbr\u00fccke Br\u00fcckeninstandsetzung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.85542296, + 49.241370747 + ], + [ + 6.8552203, + 49.241362601 + ], + [ + 6.8546475, + 49.241368401 + ], + [ + 6.8539577, + 49.241392401 + ], + [ + 6.853375, + 49.241428401 + ], + [ + 6.8525736, + 49.241478301 + ], + [ + 6.8502301, + 49.241633201 + ], + [ + 6.8485765, + 49.241743901 + ], + [ + 6.8474506, + 49.241798201 + ], + [ + 6.8471296, + 49.241808601 + ], + [ + 6.8465887, + 49.241811301 + ], + [ + 6.8460371, + 49.241808601 + ], + [ + 6.8457037, + 49.241800001 + ], + [ + 6.8445706, + 49.241756101 + ], + [ + 6.8437981, + 49.241724601 + ], + [ + 6.8432228, + 49.241713201 + ], + [ + 6.8425831, + 49.241713201 + ], + [ + 6.8420091, + 49.241736901 + ], + [ + 6.8414566, + 49.241782401 + ], + [ + 6.8409338, + 49.241841501 + ], + [ + 6.8402981, + 49.241949601 + ], + [ + 6.8398633, + 49.242041601 + ], + [ + 6.8393725, + 49.242173801 + ], + [ + 6.8389232, + 49.242313001 + ], + [ + 6.8382889, + 49.242537101 + ], + [ + 6.8376859, + 49.242762601 + ], + [ + 6.8374257, + 49.242881701 + ], + [ + 6.8370314, + 49.243090001 + ], + [ + 6.8365593, + 49.243378101 + ], + [ + 6.8361369, + 49.243687201 + ], + [ + 6.8358043, + 49.243959501 + ], + [ + 6.8355763, + 49.244170501 + ], + [ + 6.8353403, + 49.244412101 + ], + [ + 6.8350908, + 49.244704501 + ], + [ + 6.834900228, + 49.24496389 + ] + ] + } + }, + { + "identifier": "2025-038281--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_19-30-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.24910453586954,6.868667041951389,49.237250405233375,6.943691205226125", + "point": "49.24910453586954,6.868667041951389", + "startLcPosition": "10", + "impact": { + "lower": "Saarbr\u00fccken-Gersweiler", + "upper": "V\u00f6lklingen-Ost", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | V\u00f6lklingen-Ost - Saarbr\u00fccken-Gersweiler", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 49.24910453586954, + "long": 6.868667041951389 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 12.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.10.28)", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.1 km hinter AS V\u00f6lklingen-Ost und AS Saarbr\u00fccken-Gersweiler", + "", + "L\u00e4nge: 5.79 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Erneuerung AS SB-Gersweiler - AS VK - Ost, km 8,0 bis km 13,8" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.868667042, + 49.249104536 + ], + [ + 6.8687928, + 49.249139901 + ], + [ + 6.8713026, + 49.249836701 + ], + [ + 6.8720617, + 49.250045601 + ], + [ + 6.8730987, + 49.250329901 + ], + [ + 6.8733157, + 49.250392801 + ], + [ + 6.873927, + 49.250553701 + ], + [ + 6.8743803, + 49.250671001 + ], + [ + 6.8748497, + 49.250772501 + ], + [ + 6.8752896, + 49.250858301 + ], + [ + 6.8758274, + 49.250942401 + ], + [ + 6.8762927, + 49.251003601 + ], + [ + 6.8766146, + 49.251038701 + ], + [ + 6.8770236, + 49.251076301 + ], + [ + 6.8775158, + 49.251099901 + ], + [ + 6.8779651, + 49.251116601 + ], + [ + 6.8783191, + 49.251114801 + ], + [ + 6.878751, + 49.251101701 + ], + [ + 6.8791587, + 49.251083301 + ], + [ + 6.8795516, + 49.251048301 + ], + [ + 6.8799982, + 49.250997501 + ], + [ + 6.8804059, + 49.250944101 + ], + [ + 6.8807023, + 49.250896001 + ], + [ + 6.881085, + 49.250826301 + ], + [ + 6.8815996, + 49.250711501 + ], + [ + 6.8820288, + 49.250599501 + ], + [ + 6.8823279, + 49.250514601 + ], + [ + 6.8824888, + 49.250466401 + ], + [ + 6.8831406, + 49.250260701 + ], + [ + 6.885116, + 49.249596201 + ], + [ + 6.8856511, + 49.249423801 + ], + [ + 6.8862774, + 49.249226801 + ], + [ + 6.8869386, + 49.249026301 + ], + [ + 6.887931, + 49.248746201 + ], + [ + 6.8888993, + 49.248492301 + ], + [ + 6.8894827, + 49.248350701 + ], + [ + 6.8900499, + 49.248219201 + ], + [ + 6.8907782, + 49.248054601 + ], + [ + 6.8915359, + 49.247893301 + ], + [ + 6.892476, + 49.247712101 + ], + [ + 6.8931854, + 49.247586001 + ], + [ + 6.8940625, + 49.247448601 + ], + [ + 6.8948055, + 49.247339101 + ], + [ + 6.895303, + 49.247267301 + ], + [ + 6.895814, + 49.247204301 + ], + [ + 6.8972731, + 49.247032701 + ], + [ + 6.8982588, + 49.246925901 + ], + [ + 6.898857, + 49.246861101 + ], + [ + 6.89949, + 49.246792001 + ], + [ + 6.9000117, + 49.246726301 + ], + [ + 6.9005588, + 49.246642301 + ], + [ + 6.9012133, + 49.246525801 + ], + [ + 6.9019549, + 49.246380501 + ], + [ + 6.9026764, + 49.246247401 + ], + [ + 6.903634, + 49.246092501 + ], + [ + 6.9041869, + 49.246007001 + ], + [ + 6.9060525, + 49.245718701 + ], + [ + 6.9066042, + 49.245634701 + ], + [ + 6.9070401, + 49.245568501 + ], + [ + 6.9075822, + 49.245482801 + ], + [ + 6.9080516, + 49.245399101 + ], + [ + 6.908521, + 49.245306301 + ], + [ + 6.9089364, + 49.245217401 + ], + [ + 6.9094396, + 49.245097001 + ], + [ + 6.9098876, + 49.244970101 + ], + [ + 6.9102604, + 49.244858901 + ], + [ + 6.9106855, + 49.244723201 + ], + [ + 6.9112032, + 49.244541101 + ], + [ + 6.9117088, + 49.244351101 + ], + [ + 6.9121285, + 49.244193501 + ], + [ + 6.9125671, + 49.244037601 + ], + [ + 6.9130123, + 49.243887001 + ], + [ + 6.9133704, + 49.243778501 + ], + [ + 6.914068, + 49.243593101 + ], + [ + 6.9143521, + 49.243525501 + ], + [ + 6.914844, + 49.243412301 + ], + [ + 6.9157786, + 49.243221201 + ], + [ + 6.9164682, + 49.243092901 + ], + [ + 6.9171601, + 49.242957701 + ], + [ + 6.9179932, + 49.242793901 + ], + [ + 6.9185927, + 49.242667001 + ], + [ + 6.9191291, + 49.242538301 + ], + [ + 6.9197527, + 49.242381601 + ], + [ + 6.9205064, + 49.242165301 + ], + [ + 6.9213232, + 49.241923601 + ], + [ + 6.922616, + 49.241533101 + ], + [ + 6.9248449, + 49.240862101 + ], + [ + 6.926583, + 49.240337301 + ], + [ + 6.9283711, + 49.239798201 + ], + [ + 6.9291852, + 49.239562201 + ], + [ + 6.929849, + 49.239390901 + ], + [ + 6.9304365, + 49.239272801 + ], + [ + 6.9310294, + 49.239167901 + ], + [ + 6.9315818, + 49.239095901 + ], + [ + 6.9321432, + 49.239037701 + ], + [ + 6.9326828, + 49.239004901 + ], + [ + 6.9332371, + 49.238985501 + ], + [ + 6.934036, + 49.238974201 + ], + [ + 6.9346038, + 49.238980401 + ], + [ + 6.9353494, + 49.238971301 + ], + [ + 6.9357699, + 49.238960801 + ], + [ + 6.9361719, + 49.238938401 + ], + [ + 6.9366343, + 49.238902501 + ], + [ + 6.9369871, + 49.238871401 + ], + [ + 6.9373601, + 49.238823701 + ], + [ + 6.9377355, + 49.238771101 + ], + [ + 6.9381191, + 49.238708201 + ], + [ + 6.9383741, + 49.238658801 + ], + [ + 6.938631, + 49.238607101 + ], + [ + 6.9388372, + 49.238558701 + ], + [ + 6.9392395, + 49.238469401 + ], + [ + 6.9402243, + 49.238234801 + ], + [ + 6.9408947, + 49.238063601 + ], + [ + 6.9415589, + 49.237890901 + ], + [ + 6.9424298, + 49.237641701 + ], + [ + 6.9432696, + 49.237385201 + ], + [ + 6.943691205, + 49.237250405 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.24323131966368,6.9157291141664,49.208051691181595,7.025462088905666", + "point": "49.24323131966368,6.9157291141664", + "startLcPosition": "11", + "impact": { + "lower": "Saarbr\u00fccken-G\u00fcdingen", + "upper": "Saarbr\u00fccken-Klarenthal", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | Saarbr\u00fccken-Klarenthal - Saarbr\u00fccken-G\u00fcdingen", + "coordinate": { + "lat": 49.24323131966368, + "long": 6.9157291141664 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.3 km hinter AS Saarbr\u00fccken-Klarenthal und AS Saarbr\u00fccken-G\u00fcdingen", + "", + "L\u00e4nge: 10.02 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.915729114, + 49.24323132 + ], + [ + 6.9157786, + 49.243221201 + ], + [ + 6.9164682, + 49.243092901 + ], + [ + 6.9171601, + 49.242957701 + ], + [ + 6.9179932, + 49.242793901 + ], + [ + 6.9185927, + 49.242667001 + ], + [ + 6.9191291, + 49.242538301 + ], + [ + 6.9197527, + 49.242381601 + ], + [ + 6.9205064, + 49.242165301 + ], + [ + 6.9213232, + 49.241923601 + ], + [ + 6.922616, + 49.241533101 + ], + [ + 6.9248449, + 49.240862101 + ], + [ + 6.926583, + 49.240337301 + ], + [ + 6.9283711, + 49.239798201 + ], + [ + 6.9291852, + 49.239562201 + ], + [ + 6.929849, + 49.239390901 + ], + [ + 6.9304365, + 49.239272801 + ], + [ + 6.9310294, + 49.239167901 + ], + [ + 6.9315818, + 49.239095901 + ], + [ + 6.9321432, + 49.239037701 + ], + [ + 6.9326828, + 49.239004901 + ], + [ + 6.9332371, + 49.238985501 + ], + [ + 6.934036, + 49.238974201 + ], + [ + 6.9346038, + 49.238980401 + ], + [ + 6.9353494, + 49.238971301 + ], + [ + 6.9357699, + 49.238960801 + ], + [ + 6.9361719, + 49.238938401 + ], + [ + 6.9366343, + 49.238902501 + ], + [ + 6.9369871, + 49.238871401 + ], + [ + 6.9373601, + 49.238823701 + ], + [ + 6.9377355, + 49.238771101 + ], + [ + 6.9381191, + 49.238708201 + ], + [ + 6.9383741, + 49.238658801 + ], + [ + 6.938631, + 49.238607101 + ], + [ + 6.9388372, + 49.238558701 + ], + [ + 6.9392395, + 49.238469401 + ], + [ + 6.9402243, + 49.238234801 + ], + [ + 6.9408947, + 49.238063601 + ], + [ + 6.9415589, + 49.237890901 + ], + [ + 6.9424298, + 49.237641701 + ], + [ + 6.9432696, + 49.237385201 + ], + [ + 6.9445532, + 49.236974801 + ], + [ + 6.9453381, + 49.236697601 + ], + [ + 6.9459728, + 49.236469901 + ], + [ + 6.9464503, + 49.236299801 + ], + [ + 6.9468726, + 49.236142701 + ], + [ + 6.9473872, + 49.235953001 + ], + [ + 6.9480246, + 49.235707001 + ], + [ + 6.9486174, + 49.235465501 + ], + [ + 6.9492044, + 49.235197601 + ], + [ + 6.9497333, + 49.234934601 + ], + [ + 6.9502535, + 49.234655201 + ], + [ + 6.9505306, + 49.234490801 + ], + [ + 6.9515903, + 49.233874101 + ], + [ + 6.9519662, + 49.233675401 + ], + [ + 6.9522776, + 49.233540801 + ], + [ + 6.9524726, + 49.233471801 + ], + [ + 6.9527475, + 49.233390201 + ], + [ + 6.953004, + 49.233325501 + ], + [ + 6.9532394, + 49.233285901 + ], + [ + 6.9534878, + 49.233254301 + ], + [ + 6.9536717, + 49.233245401 + ], + [ + 6.9539862, + 49.233244001 + ], + [ + 6.9544344, + 49.233255001 + ], + [ + 6.955428, + 49.233322201 + ], + [ + 6.9565773, + 49.233389201 + ], + [ + 6.9576354, + 49.233440901 + ], + [ + 6.9590715, + 49.233492701 + ], + [ + 6.9601114, + 49.233530901 + ], + [ + 6.9612152, + 49.233569301 + ], + [ + 6.9650276, + 49.233652301 + ], + [ + 6.9654883, + 49.233661901 + ], + [ + 6.9658671, + 49.233678201 + ], + [ + 6.9662208, + 49.233701501 + ], + [ + 6.9664947, + 49.233732501 + ], + [ + 6.9667873, + 49.233788901 + ], + [ + 6.9671946, + 49.233890601 + ], + [ + 6.9674602, + 49.233975401 + ], + [ + 6.9676946, + 49.234063501 + ], + [ + 6.9694867, + 49.234739901 + ], + [ + 6.969987, + 49.234925601 + ], + [ + 6.9704027, + 49.235077101 + ], + [ + 6.9708324, + 49.235230001 + ], + [ + 6.9712863, + 49.235377501 + ], + [ + 6.9713715, + 49.235403001 + ], + [ + 6.9717665, + 49.235516701 + ], + [ + 6.9720559, + 49.235596501 + ], + [ + 6.972178, + 49.235630101 + ], + [ + 6.9725369, + 49.235717801 + ], + [ + 6.9729051, + 49.235795101 + ], + [ + 6.9733447, + 49.235873601 + ], + [ + 6.973784, + 49.235936301 + ], + [ + 6.9741496, + 49.235981501 + ], + [ + 6.9746176, + 49.236026701 + ], + [ + 6.9750441, + 49.236053701 + ], + [ + 6.9755149, + 49.236073601 + ], + [ + 6.9760888, + 49.236085601 + ], + [ + 6.976335, + 49.236091001 + ], + [ + 6.9767526, + 49.236093601 + ], + [ + 6.9771987, + 49.236091401 + ], + [ + 6.9773964, + 49.236089801 + ], + [ + 6.9781505, + 49.236079201 + ], + [ + 6.9796146, + 49.236070101 + ], + [ + 6.9802284, + 49.236077201 + ], + [ + 6.9805479, + 49.236096501 + ], + [ + 6.9807895, + 49.236120101 + ], + [ + 6.9814287, + 49.236204601 + ], + [ + 6.9816458, + 49.236227001 + ], + [ + 6.9818939, + 49.236248101 + ], + [ + 6.9822269, + 49.236263501 + ], + [ + 6.9824233, + 49.236264501 + ], + [ + 6.9826825, + 49.236258001 + ], + [ + 6.9831802, + 49.236240601 + ], + [ + 6.9837316, + 49.236228501 + ], + [ + 6.984535, + 49.236206701 + ], + [ + 6.9847162, + 49.236205501 + ], + [ + 6.9851373, + 49.236203401 + ], + [ + 6.9854591, + 49.236210201 + ], + [ + 6.9856372, + 49.236216001 + ], + [ + 6.9864918, + 49.236279301 + ], + [ + 6.9870751, + 49.236328301 + ], + [ + 6.9872952, + 49.236334901 + ], + [ + 6.9875756, + 49.236339401 + ], + [ + 6.9882393, + 49.236329301 + ], + [ + 6.9887035, + 49.236309201 + ], + [ + 6.9891421, + 49.236267801 + ], + [ + 6.9894291, + 49.236220001 + ], + [ + 6.9897024, + 49.236163501 + ], + [ + 6.9899687, + 49.236090301 + ], + [ + 6.9901495, + 49.236023801 + ], + [ + 6.990336, + 49.235935701 + ], + [ + 6.990503, + 49.235841901 + ], + [ + 6.9906377, + 49.235746501 + ], + [ + 6.9907731, + 49.235623001 + ], + [ + 6.9908812, + 49.235516101 + ], + [ + 6.990934, + 49.235447101 + ], + [ + 6.9909927, + 49.235323201 + ], + [ + 6.991037, + 49.235188301 + ], + [ + 6.9910625, + 49.235075401 + ], + [ + 6.9910692, + 49.234993101 + ], + [ + 6.9910746, + 49.234905501 + ], + [ + 6.9910674, + 49.234757201 + ], + [ + 6.9910418, + 49.234561001 + ], + [ + 6.9909853, + 49.234195301 + ], + [ + 6.9909548, + 49.233913001 + ], + [ + 6.9909612, + 49.233774201 + ], + [ + 6.9909699, + 49.233668901 + ], + [ + 6.990988, + 49.233544501 + ], + [ + 6.9910303, + 49.233381801 + ], + [ + 6.9910829, + 49.233244301 + ], + [ + 6.991148, + 49.233091601 + ], + [ + 6.9912214, + 49.232934201 + ], + [ + 6.99131, + 49.232793201 + ], + [ + 6.9914581, + 49.232575201 + ], + [ + 6.9916335, + 49.232338001 + ], + [ + 6.9919533, + 49.231942501 + ], + [ + 6.9923132, + 49.231525301 + ], + [ + 6.9924283, + 49.231394001 + ], + [ + 6.9925792, + 49.231234001 + ], + [ + 6.9929239, + 49.230899501 + ], + [ + 6.9930786, + 49.230761501 + ], + [ + 6.9932816, + 49.230590101 + ], + [ + 6.9935189, + 49.230411401 + ], + [ + 6.993824, + 49.230194601 + ], + [ + 6.9941015, + 49.230028501 + ], + [ + 6.9944715, + 49.229820201 + ], + [ + 6.9948412, + 49.229641101 + ], + [ + 6.9952213, + 49.229482201 + ], + [ + 6.9957033, + 49.229302301 + ], + [ + 6.9962531, + 49.229122901 + ], + [ + 6.9966779, + 49.228993801 + ], + [ + 6.9968271, + 49.228946301 + ], + [ + 6.9972183, + 49.228841401 + ], + [ + 6.9976043, + 49.228732201 + ], + [ + 6.9980639, + 49.228587801 + ], + [ + 6.9984707, + 49.228450101 + ], + [ + 6.9990135, + 49.228256001 + ], + [ + 6.9998793, + 49.227899801 + ], + [ + 7.0002348, + 49.227747201 + ], + [ + 7.0005433, + 49.227607701 + ], + [ + 7.0009779, + 49.227414201 + ], + [ + 7.0013151, + 49.227258101 + ], + [ + 7.0016783, + 49.227075601 + ], + [ + 7.0018754, + 49.226977901 + ], + [ + 7.0024522, + 49.226666901 + ], + [ + 7.0029138, + 49.226400301 + ], + [ + 7.0033413, + 49.226156101 + ], + [ + 7.0039883, + 49.225808601 + ], + [ + 7.0045541, + 49.225530601 + ], + [ + 7.0049674, + 49.225345001 + ], + [ + 7.0052776, + 49.225216201 + ], + [ + 7.0061908, + 49.224858301 + ], + [ + 7.0065981, + 49.224710201 + ], + [ + 7.0072526, + 49.224480801 + ], + [ + 7.0079817, + 49.224228801 + ], + [ + 7.008658, + 49.223982501 + ], + [ + 7.0091185, + 49.223810901 + ], + [ + 7.0096812, + 49.223585501 + ], + [ + 7.0102763, + 49.223341101 + ], + [ + 7.0109675, + 49.223041001 + ], + [ + 7.0112758, + 49.222895301 + ], + [ + 7.0118234, + 49.222645301 + ], + [ + 7.0120332, + 49.222549201 + ], + [ + 7.0123184, + 49.222406001 + ], + [ + 7.0126263, + 49.222251501 + ], + [ + 7.0131112, + 49.222003701 + ], + [ + 7.0135104, + 49.221784001 + ], + [ + 7.0141599, + 49.221423001 + ], + [ + 7.014656, + 49.221136401 + ], + [ + 7.0152302, + 49.220787701 + ], + [ + 7.0154641, + 49.220632301 + ], + [ + 7.0157433, + 49.220456701 + ], + [ + 7.0165417, + 49.219920001 + ], + [ + 7.0170457, + 49.219561901 + ], + [ + 7.017545, + 49.219199801 + ], + [ + 7.0182854, + 49.218607501 + ], + [ + 7.0185553, + 49.218373001 + ], + [ + 7.0189074, + 49.218061201 + ], + [ + 7.0191623, + 49.217807001 + ], + [ + 7.0193735, + 49.217581201 + ], + [ + 7.0195584, + 49.217344101 + ], + [ + 7.0198257, + 49.217024201 + ], + [ + 7.0200058, + 49.216777001 + ], + [ + 7.0201312, + 49.216605301 + ], + [ + 7.0202465, + 49.216437301 + ], + [ + 7.0203758, + 49.216211601 + ], + [ + 7.0204865, + 49.216007301 + ], + [ + 7.0205857, + 49.215804901 + ], + [ + 7.0206969, + 49.215534401 + ], + [ + 7.0208094, + 49.215207801 + ], + [ + 7.0208898, + 49.214912401 + ], + [ + 7.0209667, + 49.214568801 + ], + [ + 7.0210361, + 49.214189401 + ], + [ + 7.021087, + 49.213857201 + ], + [ + 7.021143, + 49.213480501 + ], + [ + 7.0212412, + 49.212867301 + ], + [ + 7.0213073, + 49.212617901 + ], + [ + 7.0213817, + 49.212312801 + ], + [ + 7.0214406, + 49.212100801 + ], + [ + 7.0215126, + 49.211903001 + ], + [ + 7.0215911, + 49.211711901 + ], + [ + 7.0216723, + 49.211526601 + ], + [ + 7.0218161, + 49.211260701 + ], + [ + 7.0219495, + 49.211048101 + ], + [ + 7.0221027, + 49.210821601 + ], + [ + 7.0222463, + 49.210621101 + ], + [ + 7.0224238, + 49.210399901 + ], + [ + 7.0226428, + 49.210137001 + ], + [ + 7.0228982, + 49.209861801 + ], + [ + 7.0231449, + 49.209606601 + ], + [ + 7.0233381, + 49.209433101 + ], + [ + 7.0235405, + 49.209262401 + ], + [ + 7.0238059, + 49.209041601 + ], + [ + 7.0239633, + 49.208921901 + ], + [ + 7.0242528, + 49.208728401 + ], + [ + 7.0245411, + 49.208543701 + ], + [ + 7.0246166, + 49.208496401 + ], + [ + 7.024865, + 49.208352801 + ], + [ + 7.0250968, + 49.208228601 + ], + [ + 7.025462089, + 49.208051691 + ] + ] + } + }, + { + "identifier": "2025-038281--vi-fbm.2026-04-13_20-30-00-000.devi-zus.2026-04-07_19-30-00-000.de16", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.24333584369784,6.915217929682315,49.23667167266279,6.945410374308345", + "point": "49.24333584369784,6.915217929682315", + "startLcPosition": "11", + "impact": { + "lower": "Saarbr\u00fccken-Messegel\u00e4nde", + "upper": "Saarbr\u00fccken-Klarenthal", + "symbols": [ + "CLOSED", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | Saarbr\u00fccken-Klarenthal - Saarbr\u00fccken-Messegel\u00e4nde", + "coordinate": { + "lat": 49.24333584369784, + "long": 6.915217929682315 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 20:30 bis zum 14.04.26 05:30 Uhr.", + "14.04.26 20:30 bis zum 15.04.26 05:30 Uhr.", + "16.04.26 20:30 bis zum 17.04.26 05:30 Uhr.", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.3 km hinter AS Saarbr\u00fccken-Klarenthal und 1.3 km vor AS Saarbr\u00fccken-Messegel\u00e4nde", + "", + "L\u00e4nge: 2.34 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Erneuerung AS SB-Gersweiler - AS VK - Ost, km 8,0 bis km 13,8" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.91521793, + 49.243335844 + ], + [ + 6.9157786, + 49.243221201 + ], + [ + 6.9164682, + 49.243092901 + ], + [ + 6.9171601, + 49.242957701 + ], + [ + 6.9179932, + 49.242793901 + ], + [ + 6.9185927, + 49.242667001 + ], + [ + 6.9191291, + 49.242538301 + ], + [ + 6.9197527, + 49.242381601 + ], + [ + 6.9205064, + 49.242165301 + ], + [ + 6.9213232, + 49.241923601 + ], + [ + 6.922616, + 49.241533101 + ], + [ + 6.9248449, + 49.240862101 + ], + [ + 6.926583, + 49.240337301 + ], + [ + 6.9283711, + 49.239798201 + ], + [ + 6.9291852, + 49.239562201 + ], + [ + 6.929849, + 49.239390901 + ], + [ + 6.9304365, + 49.239272801 + ], + [ + 6.9310294, + 49.239167901 + ], + [ + 6.9315818, + 49.239095901 + ], + [ + 6.9321432, + 49.239037701 + ], + [ + 6.9326828, + 49.239004901 + ], + [ + 6.9332371, + 49.238985501 + ], + [ + 6.934036, + 49.238974201 + ], + [ + 6.9346038, + 49.238980401 + ], + [ + 6.9353494, + 49.238971301 + ], + [ + 6.9357699, + 49.238960801 + ], + [ + 6.9361719, + 49.238938401 + ], + [ + 6.9366343, + 49.238902501 + ], + [ + 6.9369871, + 49.238871401 + ], + [ + 6.9373601, + 49.238823701 + ], + [ + 6.9377355, + 49.238771101 + ], + [ + 6.9381191, + 49.238708201 + ], + [ + 6.9383741, + 49.238658801 + ], + [ + 6.938631, + 49.238607101 + ], + [ + 6.9388372, + 49.238558701 + ], + [ + 6.9392395, + 49.238469401 + ], + [ + 6.9402243, + 49.238234801 + ], + [ + 6.9408947, + 49.238063601 + ], + [ + 6.9415589, + 49.237890901 + ], + [ + 6.9424298, + 49.237641701 + ], + [ + 6.9432696, + 49.237385201 + ], + [ + 6.9445532, + 49.236974801 + ], + [ + 6.9453381, + 49.236697601 + ], + [ + 6.945410374, + 49.236671673 + ] + ] + } + }, + { + "identifier": "2026-006575--vi-bs.2026-04-11_07-00-00-000_001.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23724251416266,6.943715886179817,49.20771896342211,7.026237323443504", + "point": "49.23724251416266,6.943715886179817", + "startLcPosition": "11", + "impact": { + "lower": "Saarbr\u00fccken", + "upper": "Saarbr\u00fccken-Klarenthal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | Saarbr\u00fccken-Klarenthal - Saarbr\u00fccken", + "coordinate": { + "lat": 49.23724251416266, + "long": 6.943715886179817 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 2.5 km hinter AS Saarbr\u00fccken-Klarenthal und 0.2 km vor AD Saarbr\u00fccken", + "", + "L\u00e4nge: 7.93 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Gersweiler (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.943715886, + 49.237242514 + ], + [ + 6.9445532, + 49.236974801 + ], + [ + 6.9453381, + 49.236697601 + ], + [ + 6.9459728, + 49.236469901 + ], + [ + 6.9464503, + 49.236299801 + ], + [ + 6.9468726, + 49.236142701 + ], + [ + 6.9473872, + 49.235953001 + ], + [ + 6.9480246, + 49.235707001 + ], + [ + 6.9486174, + 49.235465501 + ], + [ + 6.9492044, + 49.235197601 + ], + [ + 6.9497333, + 49.234934601 + ], + [ + 6.9502535, + 49.234655201 + ], + [ + 6.9505306, + 49.234490801 + ], + [ + 6.9515903, + 49.233874101 + ], + [ + 6.9519662, + 49.233675401 + ], + [ + 6.9522776, + 49.233540801 + ], + [ + 6.9524726, + 49.233471801 + ], + [ + 6.9527475, + 49.233390201 + ], + [ + 6.953004, + 49.233325501 + ], + [ + 6.9532394, + 49.233285901 + ], + [ + 6.9534878, + 49.233254301 + ], + [ + 6.9536717, + 49.233245401 + ], + [ + 6.9539862, + 49.233244001 + ], + [ + 6.9544344, + 49.233255001 + ], + [ + 6.955428, + 49.233322201 + ], + [ + 6.9565773, + 49.233389201 + ], + [ + 6.9576354, + 49.233440901 + ], + [ + 6.9590715, + 49.233492701 + ], + [ + 6.9601114, + 49.233530901 + ], + [ + 6.9612152, + 49.233569301 + ], + [ + 6.9650276, + 49.233652301 + ], + [ + 6.9654883, + 49.233661901 + ], + [ + 6.9658671, + 49.233678201 + ], + [ + 6.9662208, + 49.233701501 + ], + [ + 6.9664947, + 49.233732501 + ], + [ + 6.9667873, + 49.233788901 + ], + [ + 6.9671946, + 49.233890601 + ], + [ + 6.9674602, + 49.233975401 + ], + [ + 6.9676946, + 49.234063501 + ], + [ + 6.9694867, + 49.234739901 + ], + [ + 6.969987, + 49.234925601 + ], + [ + 6.9704027, + 49.235077101 + ], + [ + 6.9708324, + 49.235230001 + ], + [ + 6.9712863, + 49.235377501 + ], + [ + 6.9713715, + 49.235403001 + ], + [ + 6.9717665, + 49.235516701 + ], + [ + 6.9720559, + 49.235596501 + ], + [ + 6.972178, + 49.235630101 + ], + [ + 6.9725369, + 49.235717801 + ], + [ + 6.9729051, + 49.235795101 + ], + [ + 6.9733447, + 49.235873601 + ], + [ + 6.973784, + 49.235936301 + ], + [ + 6.9741496, + 49.235981501 + ], + [ + 6.9746176, + 49.236026701 + ], + [ + 6.9750441, + 49.236053701 + ], + [ + 6.9755149, + 49.236073601 + ], + [ + 6.9760888, + 49.236085601 + ], + [ + 6.976335, + 49.236091001 + ], + [ + 6.9767526, + 49.236093601 + ], + [ + 6.9771987, + 49.236091401 + ], + [ + 6.9773964, + 49.236089801 + ], + [ + 6.9781505, + 49.236079201 + ], + [ + 6.9796146, + 49.236070101 + ], + [ + 6.9802284, + 49.236077201 + ], + [ + 6.9805479, + 49.236096501 + ], + [ + 6.9807895, + 49.236120101 + ], + [ + 6.9814287, + 49.236204601 + ], + [ + 6.9816458, + 49.236227001 + ], + [ + 6.9818939, + 49.236248101 + ], + [ + 6.9822269, + 49.236263501 + ], + [ + 6.9824233, + 49.236264501 + ], + [ + 6.9826825, + 49.236258001 + ], + [ + 6.9831802, + 49.236240601 + ], + [ + 6.9837316, + 49.236228501 + ], + [ + 6.984535, + 49.236206701 + ], + [ + 6.9847162, + 49.236205501 + ], + [ + 6.9851373, + 49.236203401 + ], + [ + 6.9854591, + 49.236210201 + ], + [ + 6.9856372, + 49.236216001 + ], + [ + 6.9864918, + 49.236279301 + ], + [ + 6.9870751, + 49.236328301 + ], + [ + 6.9872952, + 49.236334901 + ], + [ + 6.9875756, + 49.236339401 + ], + [ + 6.9882393, + 49.236329301 + ], + [ + 6.9887035, + 49.236309201 + ], + [ + 6.9891421, + 49.236267801 + ], + [ + 6.9894291, + 49.236220001 + ], + [ + 6.9897024, + 49.236163501 + ], + [ + 6.9899687, + 49.236090301 + ], + [ + 6.9901495, + 49.236023801 + ], + [ + 6.990336, + 49.235935701 + ], + [ + 6.990503, + 49.235841901 + ], + [ + 6.9906377, + 49.235746501 + ], + [ + 6.9907731, + 49.235623001 + ], + [ + 6.9908812, + 49.235516101 + ], + [ + 6.990934, + 49.235447101 + ], + [ + 6.9909927, + 49.235323201 + ], + [ + 6.991037, + 49.235188301 + ], + [ + 6.9910625, + 49.235075401 + ], + [ + 6.9910692, + 49.234993101 + ], + [ + 6.9910746, + 49.234905501 + ], + [ + 6.9910674, + 49.234757201 + ], + [ + 6.9910418, + 49.234561001 + ], + [ + 6.9909853, + 49.234195301 + ], + [ + 6.9909548, + 49.233913001 + ], + [ + 6.9909612, + 49.233774201 + ], + [ + 6.9909699, + 49.233668901 + ], + [ + 6.990988, + 49.233544501 + ], + [ + 6.9910303, + 49.233381801 + ], + [ + 6.9910829, + 49.233244301 + ], + [ + 6.991148, + 49.233091601 + ], + [ + 6.9912214, + 49.232934201 + ], + [ + 6.99131, + 49.232793201 + ], + [ + 6.9914581, + 49.232575201 + ], + [ + 6.9916335, + 49.232338001 + ], + [ + 6.9919533, + 49.231942501 + ], + [ + 6.9923132, + 49.231525301 + ], + [ + 6.9924283, + 49.231394001 + ], + [ + 6.9925792, + 49.231234001 + ], + [ + 6.9929239, + 49.230899501 + ], + [ + 6.9930786, + 49.230761501 + ], + [ + 6.9932816, + 49.230590101 + ], + [ + 6.9935189, + 49.230411401 + ], + [ + 6.993824, + 49.230194601 + ], + [ + 6.9941015, + 49.230028501 + ], + [ + 6.9944715, + 49.229820201 + ], + [ + 6.9948412, + 49.229641101 + ], + [ + 6.9952213, + 49.229482201 + ], + [ + 6.9957033, + 49.229302301 + ], + [ + 6.9962531, + 49.229122901 + ], + [ + 6.9966779, + 49.228993801 + ], + [ + 6.9968271, + 49.228946301 + ], + [ + 6.9972183, + 49.228841401 + ], + [ + 6.9976043, + 49.228732201 + ], + [ + 6.9980639, + 49.228587801 + ], + [ + 6.9984707, + 49.228450101 + ], + [ + 6.9990135, + 49.228256001 + ], + [ + 6.9998793, + 49.227899801 + ], + [ + 7.0002348, + 49.227747201 + ], + [ + 7.0005433, + 49.227607701 + ], + [ + 7.0009779, + 49.227414201 + ], + [ + 7.0013151, + 49.227258101 + ], + [ + 7.0016783, + 49.227075601 + ], + [ + 7.0018754, + 49.226977901 + ], + [ + 7.0024522, + 49.226666901 + ], + [ + 7.0029138, + 49.226400301 + ], + [ + 7.0033413, + 49.226156101 + ], + [ + 7.0039883, + 49.225808601 + ], + [ + 7.0045541, + 49.225530601 + ], + [ + 7.0049674, + 49.225345001 + ], + [ + 7.0052776, + 49.225216201 + ], + [ + 7.0061908, + 49.224858301 + ], + [ + 7.0065981, + 49.224710201 + ], + [ + 7.0072526, + 49.224480801 + ], + [ + 7.0079817, + 49.224228801 + ], + [ + 7.008658, + 49.223982501 + ], + [ + 7.0091185, + 49.223810901 + ], + [ + 7.0096812, + 49.223585501 + ], + [ + 7.0102763, + 49.223341101 + ], + [ + 7.0109675, + 49.223041001 + ], + [ + 7.0112758, + 49.222895301 + ], + [ + 7.0118234, + 49.222645301 + ], + [ + 7.0120332, + 49.222549201 + ], + [ + 7.0123184, + 49.222406001 + ], + [ + 7.0126263, + 49.222251501 + ], + [ + 7.0131112, + 49.222003701 + ], + [ + 7.0135104, + 49.221784001 + ], + [ + 7.0141599, + 49.221423001 + ], + [ + 7.014656, + 49.221136401 + ], + [ + 7.0152302, + 49.220787701 + ], + [ + 7.0154641, + 49.220632301 + ], + [ + 7.0157433, + 49.220456701 + ], + [ + 7.0165417, + 49.219920001 + ], + [ + 7.0170457, + 49.219561901 + ], + [ + 7.017545, + 49.219199801 + ], + [ + 7.0182854, + 49.218607501 + ], + [ + 7.0185553, + 49.218373001 + ], + [ + 7.0189074, + 49.218061201 + ], + [ + 7.0191623, + 49.217807001 + ], + [ + 7.0193735, + 49.217581201 + ], + [ + 7.0195584, + 49.217344101 + ], + [ + 7.0198257, + 49.217024201 + ], + [ + 7.0200058, + 49.216777001 + ], + [ + 7.0201312, + 49.216605301 + ], + [ + 7.0202465, + 49.216437301 + ], + [ + 7.0203758, + 49.216211601 + ], + [ + 7.0204865, + 49.216007301 + ], + [ + 7.0205857, + 49.215804901 + ], + [ + 7.0206969, + 49.215534401 + ], + [ + 7.0208094, + 49.215207801 + ], + [ + 7.0208898, + 49.214912401 + ], + [ + 7.0209667, + 49.214568801 + ], + [ + 7.0210361, + 49.214189401 + ], + [ + 7.021087, + 49.213857201 + ], + [ + 7.021143, + 49.213480501 + ], + [ + 7.0212412, + 49.212867301 + ], + [ + 7.0213073, + 49.212617901 + ], + [ + 7.0213817, + 49.212312801 + ], + [ + 7.0214406, + 49.212100801 + ], + [ + 7.0215126, + 49.211903001 + ], + [ + 7.0215911, + 49.211711901 + ], + [ + 7.0216723, + 49.211526601 + ], + [ + 7.0218161, + 49.211260701 + ], + [ + 7.0219495, + 49.211048101 + ], + [ + 7.0221027, + 49.210821601 + ], + [ + 7.0222463, + 49.210621101 + ], + [ + 7.0224238, + 49.210399901 + ], + [ + 7.0226428, + 49.210137001 + ], + [ + 7.0228982, + 49.209861801 + ], + [ + 7.0231449, + 49.209606601 + ], + [ + 7.0233381, + 49.209433101 + ], + [ + 7.0235405, + 49.209262401 + ], + [ + 7.0238059, + 49.209041601 + ], + [ + 7.0239633, + 49.208921901 + ], + [ + 7.0242528, + 49.208728401 + ], + [ + 7.0245411, + 49.208543701 + ], + [ + 7.0246166, + 49.208496401 + ], + [ + 7.024865, + 49.208352801 + ], + [ + 7.0250968, + 49.208228601 + ], + [ + 7.0256128, + 49.207978701 + ], + [ + 7.0259655, + 49.207825001 + ], + [ + 7.0261215, + 49.207763601 + ], + [ + 7.026237323, + 49.207718963 + ] + ] + } + }, + { + "identifier": "2026-006571--vi-bs.2026-04-11_07-00-00-000_002.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23724251416266,6.943715886179817,49.20771896342211,7.026237323443504", + "point": "49.23724251416266,6.943715886179817", + "startLcPosition": "11", + "impact": { + "lower": "Saarbr\u00fccken", + "upper": "Saarbr\u00fccken-Klarenthal", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | Saarbr\u00fccken-Klarenthal - Saarbr\u00fccken", + "coordinate": { + "lat": 49.23724251416266, + "long": 6.943715886179817 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 2.5 km hinter AS Saarbr\u00fccken-Klarenthal und 0.2 km vor AD Saarbr\u00fccken", + "", + "L\u00e4nge: 7.93 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Gersweiler (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.943715886, + 49.237242514 + ], + [ + 6.9445532, + 49.236974801 + ], + [ + 6.9453381, + 49.236697601 + ], + [ + 6.9459728, + 49.236469901 + ], + [ + 6.9464503, + 49.236299801 + ], + [ + 6.9468726, + 49.236142701 + ], + [ + 6.9473872, + 49.235953001 + ], + [ + 6.9480246, + 49.235707001 + ], + [ + 6.9486174, + 49.235465501 + ], + [ + 6.9492044, + 49.235197601 + ], + [ + 6.9497333, + 49.234934601 + ], + [ + 6.9502535, + 49.234655201 + ], + [ + 6.9505306, + 49.234490801 + ], + [ + 6.9515903, + 49.233874101 + ], + [ + 6.9519662, + 49.233675401 + ], + [ + 6.9522776, + 49.233540801 + ], + [ + 6.9524726, + 49.233471801 + ], + [ + 6.9527475, + 49.233390201 + ], + [ + 6.953004, + 49.233325501 + ], + [ + 6.9532394, + 49.233285901 + ], + [ + 6.9534878, + 49.233254301 + ], + [ + 6.9536717, + 49.233245401 + ], + [ + 6.9539862, + 49.233244001 + ], + [ + 6.9544344, + 49.233255001 + ], + [ + 6.955428, + 49.233322201 + ], + [ + 6.9565773, + 49.233389201 + ], + [ + 6.9576354, + 49.233440901 + ], + [ + 6.9590715, + 49.233492701 + ], + [ + 6.9601114, + 49.233530901 + ], + [ + 6.9612152, + 49.233569301 + ], + [ + 6.9650276, + 49.233652301 + ], + [ + 6.9654883, + 49.233661901 + ], + [ + 6.9658671, + 49.233678201 + ], + [ + 6.9662208, + 49.233701501 + ], + [ + 6.9664947, + 49.233732501 + ], + [ + 6.9667873, + 49.233788901 + ], + [ + 6.9671946, + 49.233890601 + ], + [ + 6.9674602, + 49.233975401 + ], + [ + 6.9676946, + 49.234063501 + ], + [ + 6.9694867, + 49.234739901 + ], + [ + 6.969987, + 49.234925601 + ], + [ + 6.9704027, + 49.235077101 + ], + [ + 6.9708324, + 49.235230001 + ], + [ + 6.9712863, + 49.235377501 + ], + [ + 6.9713715, + 49.235403001 + ], + [ + 6.9717665, + 49.235516701 + ], + [ + 6.9720559, + 49.235596501 + ], + [ + 6.972178, + 49.235630101 + ], + [ + 6.9725369, + 49.235717801 + ], + [ + 6.9729051, + 49.235795101 + ], + [ + 6.9733447, + 49.235873601 + ], + [ + 6.973784, + 49.235936301 + ], + [ + 6.9741496, + 49.235981501 + ], + [ + 6.9746176, + 49.236026701 + ], + [ + 6.9750441, + 49.236053701 + ], + [ + 6.9755149, + 49.236073601 + ], + [ + 6.9760888, + 49.236085601 + ], + [ + 6.976335, + 49.236091001 + ], + [ + 6.9767526, + 49.236093601 + ], + [ + 6.9771987, + 49.236091401 + ], + [ + 6.9773964, + 49.236089801 + ], + [ + 6.9781505, + 49.236079201 + ], + [ + 6.9796146, + 49.236070101 + ], + [ + 6.9802284, + 49.236077201 + ], + [ + 6.9805479, + 49.236096501 + ], + [ + 6.9807895, + 49.236120101 + ], + [ + 6.9814287, + 49.236204601 + ], + [ + 6.9816458, + 49.236227001 + ], + [ + 6.9818939, + 49.236248101 + ], + [ + 6.9822269, + 49.236263501 + ], + [ + 6.9824233, + 49.236264501 + ], + [ + 6.9826825, + 49.236258001 + ], + [ + 6.9831802, + 49.236240601 + ], + [ + 6.9837316, + 49.236228501 + ], + [ + 6.984535, + 49.236206701 + ], + [ + 6.9847162, + 49.236205501 + ], + [ + 6.9851373, + 49.236203401 + ], + [ + 6.9854591, + 49.236210201 + ], + [ + 6.9856372, + 49.236216001 + ], + [ + 6.9864918, + 49.236279301 + ], + [ + 6.9870751, + 49.236328301 + ], + [ + 6.9872952, + 49.236334901 + ], + [ + 6.9875756, + 49.236339401 + ], + [ + 6.9882393, + 49.236329301 + ], + [ + 6.9887035, + 49.236309201 + ], + [ + 6.9891421, + 49.236267801 + ], + [ + 6.9894291, + 49.236220001 + ], + [ + 6.9897024, + 49.236163501 + ], + [ + 6.9899687, + 49.236090301 + ], + [ + 6.9901495, + 49.236023801 + ], + [ + 6.990336, + 49.235935701 + ], + [ + 6.990503, + 49.235841901 + ], + [ + 6.9906377, + 49.235746501 + ], + [ + 6.9907731, + 49.235623001 + ], + [ + 6.9908812, + 49.235516101 + ], + [ + 6.990934, + 49.235447101 + ], + [ + 6.9909927, + 49.235323201 + ], + [ + 6.991037, + 49.235188301 + ], + [ + 6.9910625, + 49.235075401 + ], + [ + 6.9910692, + 49.234993101 + ], + [ + 6.9910746, + 49.234905501 + ], + [ + 6.9910674, + 49.234757201 + ], + [ + 6.9910418, + 49.234561001 + ], + [ + 6.9909853, + 49.234195301 + ], + [ + 6.9909548, + 49.233913001 + ], + [ + 6.9909612, + 49.233774201 + ], + [ + 6.9909699, + 49.233668901 + ], + [ + 6.990988, + 49.233544501 + ], + [ + 6.9910303, + 49.233381801 + ], + [ + 6.9910829, + 49.233244301 + ], + [ + 6.991148, + 49.233091601 + ], + [ + 6.9912214, + 49.232934201 + ], + [ + 6.99131, + 49.232793201 + ], + [ + 6.9914581, + 49.232575201 + ], + [ + 6.9916335, + 49.232338001 + ], + [ + 6.9919533, + 49.231942501 + ], + [ + 6.9923132, + 49.231525301 + ], + [ + 6.9924283, + 49.231394001 + ], + [ + 6.9925792, + 49.231234001 + ], + [ + 6.9929239, + 49.230899501 + ], + [ + 6.9930786, + 49.230761501 + ], + [ + 6.9932816, + 49.230590101 + ], + [ + 6.9935189, + 49.230411401 + ], + [ + 6.993824, + 49.230194601 + ], + [ + 6.9941015, + 49.230028501 + ], + [ + 6.9944715, + 49.229820201 + ], + [ + 6.9948412, + 49.229641101 + ], + [ + 6.9952213, + 49.229482201 + ], + [ + 6.9957033, + 49.229302301 + ], + [ + 6.9962531, + 49.229122901 + ], + [ + 6.9966779, + 49.228993801 + ], + [ + 6.9968271, + 49.228946301 + ], + [ + 6.9972183, + 49.228841401 + ], + [ + 6.9976043, + 49.228732201 + ], + [ + 6.9980639, + 49.228587801 + ], + [ + 6.9984707, + 49.228450101 + ], + [ + 6.9990135, + 49.228256001 + ], + [ + 6.9998793, + 49.227899801 + ], + [ + 7.0002348, + 49.227747201 + ], + [ + 7.0005433, + 49.227607701 + ], + [ + 7.0009779, + 49.227414201 + ], + [ + 7.0013151, + 49.227258101 + ], + [ + 7.0016783, + 49.227075601 + ], + [ + 7.0018754, + 49.226977901 + ], + [ + 7.0024522, + 49.226666901 + ], + [ + 7.0029138, + 49.226400301 + ], + [ + 7.0033413, + 49.226156101 + ], + [ + 7.0039883, + 49.225808601 + ], + [ + 7.0045541, + 49.225530601 + ], + [ + 7.0049674, + 49.225345001 + ], + [ + 7.0052776, + 49.225216201 + ], + [ + 7.0061908, + 49.224858301 + ], + [ + 7.0065981, + 49.224710201 + ], + [ + 7.0072526, + 49.224480801 + ], + [ + 7.0079817, + 49.224228801 + ], + [ + 7.008658, + 49.223982501 + ], + [ + 7.0091185, + 49.223810901 + ], + [ + 7.0096812, + 49.223585501 + ], + [ + 7.0102763, + 49.223341101 + ], + [ + 7.0109675, + 49.223041001 + ], + [ + 7.0112758, + 49.222895301 + ], + [ + 7.0118234, + 49.222645301 + ], + [ + 7.0120332, + 49.222549201 + ], + [ + 7.0123184, + 49.222406001 + ], + [ + 7.0126263, + 49.222251501 + ], + [ + 7.0131112, + 49.222003701 + ], + [ + 7.0135104, + 49.221784001 + ], + [ + 7.0141599, + 49.221423001 + ], + [ + 7.014656, + 49.221136401 + ], + [ + 7.0152302, + 49.220787701 + ], + [ + 7.0154641, + 49.220632301 + ], + [ + 7.0157433, + 49.220456701 + ], + [ + 7.0165417, + 49.219920001 + ], + [ + 7.0170457, + 49.219561901 + ], + [ + 7.017545, + 49.219199801 + ], + [ + 7.0182854, + 49.218607501 + ], + [ + 7.0185553, + 49.218373001 + ], + [ + 7.0189074, + 49.218061201 + ], + [ + 7.0191623, + 49.217807001 + ], + [ + 7.0193735, + 49.217581201 + ], + [ + 7.0195584, + 49.217344101 + ], + [ + 7.0198257, + 49.217024201 + ], + [ + 7.0200058, + 49.216777001 + ], + [ + 7.0201312, + 49.216605301 + ], + [ + 7.0202465, + 49.216437301 + ], + [ + 7.0203758, + 49.216211601 + ], + [ + 7.0204865, + 49.216007301 + ], + [ + 7.0205857, + 49.215804901 + ], + [ + 7.0206969, + 49.215534401 + ], + [ + 7.0208094, + 49.215207801 + ], + [ + 7.0208898, + 49.214912401 + ], + [ + 7.0209667, + 49.214568801 + ], + [ + 7.0210361, + 49.214189401 + ], + [ + 7.021087, + 49.213857201 + ], + [ + 7.021143, + 49.213480501 + ], + [ + 7.0212412, + 49.212867301 + ], + [ + 7.0213073, + 49.212617901 + ], + [ + 7.0213817, + 49.212312801 + ], + [ + 7.0214406, + 49.212100801 + ], + [ + 7.0215126, + 49.211903001 + ], + [ + 7.0215911, + 49.211711901 + ], + [ + 7.0216723, + 49.211526601 + ], + [ + 7.0218161, + 49.211260701 + ], + [ + 7.0219495, + 49.211048101 + ], + [ + 7.0221027, + 49.210821601 + ], + [ + 7.0222463, + 49.210621101 + ], + [ + 7.0224238, + 49.210399901 + ], + [ + 7.0226428, + 49.210137001 + ], + [ + 7.0228982, + 49.209861801 + ], + [ + 7.0231449, + 49.209606601 + ], + [ + 7.0233381, + 49.209433101 + ], + [ + 7.0235405, + 49.209262401 + ], + [ + 7.0238059, + 49.209041601 + ], + [ + 7.0239633, + 49.208921901 + ], + [ + 7.0242528, + 49.208728401 + ], + [ + 7.0245411, + 49.208543701 + ], + [ + 7.0246166, + 49.208496401 + ], + [ + 7.024865, + 49.208352801 + ], + [ + 7.0250968, + 49.208228601 + ], + [ + 7.0256128, + 49.207978701 + ], + [ + 7.0259655, + 49.207825001 + ], + [ + 7.0261215, + 49.207763601 + ], + [ + 7.026237323, + 49.207718963 + ] + ] + } + }, + { + "identifier": "2026-004362--vi-bs.2026-04-11_07-00-00-000.devi-zus.2026-04-11_07-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23716754872209,6.943950354853686,49.2080463456864,7.0254731263755446", + "point": "49.23716754872209,6.943950354853686", + "startLcPosition": "12", + "impact": { + "lower": "Saarbr\u00fccken-G\u00fcdingen", + "upper": "Saarbr\u00fccken-Gersweiler", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | Saarbr\u00fccken-Gersweiler - Saarbr\u00fccken-G\u00fcdingen", + "coordinate": { + "lat": 49.23716754872209, + "long": 6.943950354853686 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen AS Saarbr\u00fccken-Gersweiler und AS Saarbr\u00fccken-G\u00fcdingen", + "", + "L\u00e4nge: 7.84 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.943950355, + 49.237167549 + ], + [ + 6.9445532, + 49.236974801 + ], + [ + 6.9453381, + 49.236697601 + ], + [ + 6.9459728, + 49.236469901 + ], + [ + 6.9464503, + 49.236299801 + ], + [ + 6.9468726, + 49.236142701 + ], + [ + 6.9473872, + 49.235953001 + ], + [ + 6.9480246, + 49.235707001 + ], + [ + 6.9486174, + 49.235465501 + ], + [ + 6.9492044, + 49.235197601 + ], + [ + 6.9497333, + 49.234934601 + ], + [ + 6.9502535, + 49.234655201 + ], + [ + 6.9505306, + 49.234490801 + ], + [ + 6.9515903, + 49.233874101 + ], + [ + 6.9519662, + 49.233675401 + ], + [ + 6.9522776, + 49.233540801 + ], + [ + 6.9524726, + 49.233471801 + ], + [ + 6.9527475, + 49.233390201 + ], + [ + 6.953004, + 49.233325501 + ], + [ + 6.9532394, + 49.233285901 + ], + [ + 6.9534878, + 49.233254301 + ], + [ + 6.9536717, + 49.233245401 + ], + [ + 6.9539862, + 49.233244001 + ], + [ + 6.9544344, + 49.233255001 + ], + [ + 6.955428, + 49.233322201 + ], + [ + 6.9565773, + 49.233389201 + ], + [ + 6.9576354, + 49.233440901 + ], + [ + 6.9590715, + 49.233492701 + ], + [ + 6.9601114, + 49.233530901 + ], + [ + 6.9612152, + 49.233569301 + ], + [ + 6.9650276, + 49.233652301 + ], + [ + 6.9654883, + 49.233661901 + ], + [ + 6.9658671, + 49.233678201 + ], + [ + 6.9662208, + 49.233701501 + ], + [ + 6.9664947, + 49.233732501 + ], + [ + 6.9667873, + 49.233788901 + ], + [ + 6.9671946, + 49.233890601 + ], + [ + 6.9674602, + 49.233975401 + ], + [ + 6.9676946, + 49.234063501 + ], + [ + 6.9694867, + 49.234739901 + ], + [ + 6.969987, + 49.234925601 + ], + [ + 6.9704027, + 49.235077101 + ], + [ + 6.9708324, + 49.235230001 + ], + [ + 6.9712863, + 49.235377501 + ], + [ + 6.9713715, + 49.235403001 + ], + [ + 6.9717665, + 49.235516701 + ], + [ + 6.9720559, + 49.235596501 + ], + [ + 6.972178, + 49.235630101 + ], + [ + 6.9725369, + 49.235717801 + ], + [ + 6.9729051, + 49.235795101 + ], + [ + 6.9733447, + 49.235873601 + ], + [ + 6.973784, + 49.235936301 + ], + [ + 6.9741496, + 49.235981501 + ], + [ + 6.9746176, + 49.236026701 + ], + [ + 6.9750441, + 49.236053701 + ], + [ + 6.9755149, + 49.236073601 + ], + [ + 6.9760888, + 49.236085601 + ], + [ + 6.976335, + 49.236091001 + ], + [ + 6.9767526, + 49.236093601 + ], + [ + 6.9771987, + 49.236091401 + ], + [ + 6.9773964, + 49.236089801 + ], + [ + 6.9781505, + 49.236079201 + ], + [ + 6.9796146, + 49.236070101 + ], + [ + 6.9802284, + 49.236077201 + ], + [ + 6.9805479, + 49.236096501 + ], + [ + 6.9807895, + 49.236120101 + ], + [ + 6.9814287, + 49.236204601 + ], + [ + 6.9816458, + 49.236227001 + ], + [ + 6.9818939, + 49.236248101 + ], + [ + 6.9822269, + 49.236263501 + ], + [ + 6.9824233, + 49.236264501 + ], + [ + 6.9826825, + 49.236258001 + ], + [ + 6.9831802, + 49.236240601 + ], + [ + 6.9837316, + 49.236228501 + ], + [ + 6.984535, + 49.236206701 + ], + [ + 6.9847162, + 49.236205501 + ], + [ + 6.9851373, + 49.236203401 + ], + [ + 6.9854591, + 49.236210201 + ], + [ + 6.9856372, + 49.236216001 + ], + [ + 6.9864918, + 49.236279301 + ], + [ + 6.9870751, + 49.236328301 + ], + [ + 6.9872952, + 49.236334901 + ], + [ + 6.9875756, + 49.236339401 + ], + [ + 6.9882393, + 49.236329301 + ], + [ + 6.9887035, + 49.236309201 + ], + [ + 6.9891421, + 49.236267801 + ], + [ + 6.9894291, + 49.236220001 + ], + [ + 6.9897024, + 49.236163501 + ], + [ + 6.9899687, + 49.236090301 + ], + [ + 6.9901495, + 49.236023801 + ], + [ + 6.990336, + 49.235935701 + ], + [ + 6.990503, + 49.235841901 + ], + [ + 6.9906377, + 49.235746501 + ], + [ + 6.9907731, + 49.235623001 + ], + [ + 6.9908812, + 49.235516101 + ], + [ + 6.990934, + 49.235447101 + ], + [ + 6.9909927, + 49.235323201 + ], + [ + 6.991037, + 49.235188301 + ], + [ + 6.9910625, + 49.235075401 + ], + [ + 6.9910692, + 49.234993101 + ], + [ + 6.9910746, + 49.234905501 + ], + [ + 6.9910674, + 49.234757201 + ], + [ + 6.9910418, + 49.234561001 + ], + [ + 6.9909853, + 49.234195301 + ], + [ + 6.9909548, + 49.233913001 + ], + [ + 6.9909612, + 49.233774201 + ], + [ + 6.9909699, + 49.233668901 + ], + [ + 6.990988, + 49.233544501 + ], + [ + 6.9910303, + 49.233381801 + ], + [ + 6.9910829, + 49.233244301 + ], + [ + 6.991148, + 49.233091601 + ], + [ + 6.9912214, + 49.232934201 + ], + [ + 6.99131, + 49.232793201 + ], + [ + 6.9914581, + 49.232575201 + ], + [ + 6.9916335, + 49.232338001 + ], + [ + 6.9919533, + 49.231942501 + ], + [ + 6.9923132, + 49.231525301 + ], + [ + 6.9924283, + 49.231394001 + ], + [ + 6.9925792, + 49.231234001 + ], + [ + 6.9929239, + 49.230899501 + ], + [ + 6.9930786, + 49.230761501 + ], + [ + 6.9932816, + 49.230590101 + ], + [ + 6.9935189, + 49.230411401 + ], + [ + 6.993824, + 49.230194601 + ], + [ + 6.9941015, + 49.230028501 + ], + [ + 6.9944715, + 49.229820201 + ], + [ + 6.9948412, + 49.229641101 + ], + [ + 6.9952213, + 49.229482201 + ], + [ + 6.9957033, + 49.229302301 + ], + [ + 6.9962531, + 49.229122901 + ], + [ + 6.9966779, + 49.228993801 + ], + [ + 6.9968271, + 49.228946301 + ], + [ + 6.9972183, + 49.228841401 + ], + [ + 6.9976043, + 49.228732201 + ], + [ + 6.9980639, + 49.228587801 + ], + [ + 6.9984707, + 49.228450101 + ], + [ + 6.9990135, + 49.228256001 + ], + [ + 6.9998793, + 49.227899801 + ], + [ + 7.0002348, + 49.227747201 + ], + [ + 7.0005433, + 49.227607701 + ], + [ + 7.0009779, + 49.227414201 + ], + [ + 7.0013151, + 49.227258101 + ], + [ + 7.0016783, + 49.227075601 + ], + [ + 7.0018754, + 49.226977901 + ], + [ + 7.0024522, + 49.226666901 + ], + [ + 7.0029138, + 49.226400301 + ], + [ + 7.0033413, + 49.226156101 + ], + [ + 7.0039883, + 49.225808601 + ], + [ + 7.0045541, + 49.225530601 + ], + [ + 7.0049674, + 49.225345001 + ], + [ + 7.0052776, + 49.225216201 + ], + [ + 7.0061908, + 49.224858301 + ], + [ + 7.0065981, + 49.224710201 + ], + [ + 7.0072526, + 49.224480801 + ], + [ + 7.0079817, + 49.224228801 + ], + [ + 7.008658, + 49.223982501 + ], + [ + 7.0091185, + 49.223810901 + ], + [ + 7.0096812, + 49.223585501 + ], + [ + 7.0102763, + 49.223341101 + ], + [ + 7.0109675, + 49.223041001 + ], + [ + 7.0112758, + 49.222895301 + ], + [ + 7.0118234, + 49.222645301 + ], + [ + 7.0120332, + 49.222549201 + ], + [ + 7.0123184, + 49.222406001 + ], + [ + 7.0126263, + 49.222251501 + ], + [ + 7.0131112, + 49.222003701 + ], + [ + 7.0135104, + 49.221784001 + ], + [ + 7.0141599, + 49.221423001 + ], + [ + 7.014656, + 49.221136401 + ], + [ + 7.0152302, + 49.220787701 + ], + [ + 7.0154641, + 49.220632301 + ], + [ + 7.0157433, + 49.220456701 + ], + [ + 7.0165417, + 49.219920001 + ], + [ + 7.0170457, + 49.219561901 + ], + [ + 7.017545, + 49.219199801 + ], + [ + 7.0182854, + 49.218607501 + ], + [ + 7.0185553, + 49.218373001 + ], + [ + 7.0189074, + 49.218061201 + ], + [ + 7.0191623, + 49.217807001 + ], + [ + 7.0193735, + 49.217581201 + ], + [ + 7.0195584, + 49.217344101 + ], + [ + 7.0198257, + 49.217024201 + ], + [ + 7.0200058, + 49.216777001 + ], + [ + 7.0201312, + 49.216605301 + ], + [ + 7.0202465, + 49.216437301 + ], + [ + 7.0203758, + 49.216211601 + ], + [ + 7.0204865, + 49.216007301 + ], + [ + 7.0205857, + 49.215804901 + ], + [ + 7.0206969, + 49.215534401 + ], + [ + 7.0208094, + 49.215207801 + ], + [ + 7.0208898, + 49.214912401 + ], + [ + 7.0209667, + 49.214568801 + ], + [ + 7.0210361, + 49.214189401 + ], + [ + 7.021087, + 49.213857201 + ], + [ + 7.021143, + 49.213480501 + ], + [ + 7.0212412, + 49.212867301 + ], + [ + 7.0213073, + 49.212617901 + ], + [ + 7.0213817, + 49.212312801 + ], + [ + 7.0214406, + 49.212100801 + ], + [ + 7.0215126, + 49.211903001 + ], + [ + 7.0215911, + 49.211711901 + ], + [ + 7.0216723, + 49.211526601 + ], + [ + 7.0218161, + 49.211260701 + ], + [ + 7.0219495, + 49.211048101 + ], + [ + 7.0221027, + 49.210821601 + ], + [ + 7.0222463, + 49.210621101 + ], + [ + 7.0224238, + 49.210399901 + ], + [ + 7.0226428, + 49.210137001 + ], + [ + 7.0228982, + 49.209861801 + ], + [ + 7.0231449, + 49.209606601 + ], + [ + 7.0233381, + 49.209433101 + ], + [ + 7.0235405, + 49.209262401 + ], + [ + 7.0238059, + 49.209041601 + ], + [ + 7.0239633, + 49.208921901 + ], + [ + 7.0242528, + 49.208728401 + ], + [ + 7.0245411, + 49.208543701 + ], + [ + 7.0246166, + 49.208496401 + ], + [ + 7.024865, + 49.208352801 + ], + [ + 7.0250968, + 49.208228601 + ], + [ + 7.025473126, + 49.208046346 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de31", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.237497318791355,6.9432131208720795,49.23833349455226,6.940166998063878", + "point": "49.237497318791355,6.9432131208720795", + "startLcPosition": "12", + "impact": { + "lower": "Saarbr\u00fccken-Klarenthal", + "upper": "Saarbr\u00fccken-Gersweiler", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 | Saarbr\u00fccken-Gersweiler - Saarbr\u00fccken-Klarenthal", + "coordinate": { + "lat": 49.237497318791355, + "long": 6.9432131208720795 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarbr\u00fccken -> Saarlouis, zwischen 0.1 km hinter AS Saarbr\u00fccken-Gersweiler und 2.2 km vor AS Saarbr\u00fccken-Klarenthal", + "", + "L\u00e4nge: 0.24 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.943213121, + 49.237497319 + ], + [ + 6.9424747, + 49.237717101 + ], + [ + 6.9416019, + 49.237966401 + ], + [ + 6.9409385, + 49.238141401 + ], + [ + 6.940166998, + 49.238333495 + ] + ] + } + }, + { + "identifier": "2025-038281--vi-bs.2026-04-07_08-00-00-000.devi-zus.2026-04-07_19-30-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.237325853980124,6.943748044749475,49.249181125557655,6.868616096985093", + "point": "49.237325853980124,6.943748044749475", + "startLcPosition": "12", + "impact": { + "lower": "V\u00f6lklingen-Ost", + "upper": "Saarbr\u00fccken-Gersweiler", + "symbols": [ + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 | Saarbr\u00fccken-Gersweiler - V\u00f6lklingen-Ost", + "startTimestamp": "2026-04-07T08:00:00+02:00", + "coordinate": { + "lat": 49.237325853980124, + "long": 6.943748044749475 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 08:00 Uhr", + "Ende: 12.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.10.28)", + "", + "A620: Saarbr\u00fccken -> Saarlouis, zwischen AS Saarbr\u00fccken-Gersweiler und 0.1 km vor AS V\u00f6lklingen-Ost", + "", + "L\u00e4nge: 5.79 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Erneuerung AS SB-Gersweiler - AS VK - Ost, km 8,0 bis km 13,8" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.943748045, + 49.237325854 + ], + [ + 6.9433217, + 49.237465001 + ], + [ + 6.9424747, + 49.237717101 + ], + [ + 6.9416019, + 49.237966401 + ], + [ + 6.9409385, + 49.238141401 + ], + [ + 6.9395617, + 49.238484201 + ], + [ + 6.9391979, + 49.238569601 + ], + [ + 6.9387997, + 49.238658301 + ], + [ + 6.9384225, + 49.238738201 + ], + [ + 6.9381548, + 49.238791701 + ], + [ + 6.9377594, + 49.238855801 + ], + [ + 6.9373873, + 49.238909601 + ], + [ + 6.9370109, + 49.238955901 + ], + [ + 6.9366439, + 49.238991901 + ], + [ + 6.9361761, + 49.239026601 + ], + [ + 6.9357862, + 49.239047201 + ], + [ + 6.9353546, + 49.239056101 + ], + [ + 6.9345996, + 49.239058401 + ], + [ + 6.9340239, + 49.239058301 + ], + [ + 6.9332129, + 49.239065101 + ], + [ + 6.9326479, + 49.239084501 + ], + [ + 6.9321112, + 49.239123501 + ], + [ + 6.9315912, + 49.239177301 + ], + [ + 6.9310346, + 49.239249801 + ], + [ + 6.93047, + 49.239348101 + ], + [ + 6.9298775, + 49.239471501 + ], + [ + 6.9292228, + 49.239637501 + ], + [ + 6.9284128, + 49.239875501 + ], + [ + 6.9266157, + 49.240416801 + ], + [ + 6.9248897, + 49.240932901 + ], + [ + 6.9226629, + 49.241609701 + ], + [ + 6.9213822, + 49.241992401 + ], + [ + 6.9205748, + 49.242231401 + ], + [ + 6.9198386, + 49.242444201 + ], + [ + 6.9192216, + 49.242600901 + ], + [ + 6.9186329, + 49.242740101 + ], + [ + 6.9180468, + 49.242865301 + ], + [ + 6.9178685, + 49.242903801 + ], + [ + 6.9171827, + 49.243036701 + ], + [ + 6.9164949, + 49.243169501 + ], + [ + 6.9158105, + 49.243297901 + ], + [ + 6.9148717, + 49.243491301 + ], + [ + 6.9144165, + 49.243597201 + ], + [ + 6.9139824, + 49.243704901 + ], + [ + 6.9134261, + 49.243848301 + ], + [ + 6.9130732, + 49.243957001 + ], + [ + 6.9126187, + 49.244111401 + ], + [ + 6.9122633, + 49.244240101 + ], + [ + 6.9117949, + 49.244412901 + ], + [ + 6.9112642, + 49.244607801 + ], + [ + 6.910717, + 49.244802201 + ], + [ + 6.9102078, + 49.244972801 + ], + [ + 6.9099285, + 49.245052601 + ], + [ + 6.9094711, + 49.245176901 + ], + [ + 6.908979, + 49.245295101 + ], + [ + 6.9085351, + 49.245388801 + ], + [ + 6.9081005, + 49.245477201 + ], + [ + 6.9075998, + 49.245563101 + ], + [ + 6.9070746, + 49.245648801 + ], + [ + 6.9066222, + 49.245715701 + ], + [ + 6.905967, + 49.245818501 + ], + [ + 6.905164, + 49.245941001 + ], + [ + 6.9036508, + 49.246171901 + ], + [ + 6.9026999, + 49.246325101 + ], + [ + 6.9018738, + 49.246480101 + ], + [ + 6.9012569, + 49.246602601 + ], + [ + 6.9005783, + 49.246722601 + ], + [ + 6.9000405, + 49.246802201 + ], + [ + 6.8995336, + 49.246866201 + ], + [ + 6.8991044, + 49.246916101 + ], + [ + 6.8982729, + 49.247007101 + ], + [ + 6.8972845, + 49.247114801 + ], + [ + 6.8958509, + 49.247284601 + ], + [ + 6.8953171, + 49.247348501 + ], + [ + 6.8948249, + 49.247418601 + ], + [ + 6.89409, + 49.247527101 + ], + [ + 6.8932304, + 49.247660201 + ], + [ + 6.8925142, + 49.247787101 + ], + [ + 6.8915674, + 49.247971901 + ], + [ + 6.8908231, + 49.248129501 + ], + [ + 6.8900908, + 49.248292301 + ], + [ + 6.8895289, + 49.248423601 + ], + [ + 6.8889335, + 49.248569401 + ], + [ + 6.8879893, + 49.248818901 + ], + [ + 6.8870144, + 49.249091101 + ], + [ + 6.8869158, + 49.249121101 + ], + [ + 6.886317, + 49.249303001 + ], + [ + 6.885747, + 49.249482401 + ], + [ + 6.8851449, + 49.249678501 + ], + [ + 6.8832029, + 49.250329001 + ], + [ + 6.882527, + 49.250541701 + ], + [ + 6.8823621, + 49.250588501 + ], + [ + 6.8820845, + 49.250669501 + ], + [ + 6.8816191, + 49.250791201 + ], + [ + 6.8811296, + 49.250899301 + ], + [ + 6.880738, + 49.250970201 + ], + [ + 6.8804349, + 49.251018801 + ], + [ + 6.8800312, + 49.251074801 + ], + [ + 6.8795862, + 49.251125801 + ], + [ + 6.8792053, + 49.251156801 + ], + [ + 6.8787305, + 49.251181401 + ], + [ + 6.8783249, + 49.251194001 + ], + [ + 6.8779621, + 49.251196701 + ], + [ + 6.8775115, + 49.251190501 + ], + [ + 6.8769925, + 49.251168201 + ], + [ + 6.8765962, + 49.251138501 + ], + [ + 6.8762428, + 49.251103401 + ], + [ + 6.8757902, + 49.251041301 + ], + [ + 6.8752692, + 49.250952001 + ], + [ + 6.8748152, + 49.250857001 + ], + [ + 6.8743538, + 49.250748501 + ], + [ + 6.8738784, + 49.250628501 + ], + [ + 6.8732655, + 49.250466101 + ], + [ + 6.8730439, + 49.250403601 + ], + [ + 6.8720218, + 49.250120301 + ], + [ + 6.8712478, + 49.249907401 + ], + [ + 6.869176, + 49.249330101 + ], + [ + 6.8687336, + 49.249215001 + ], + [ + 6.868616097, + 49.249181126 + ] + ] + } + }, + { + "identifier": "2026-017332--vi-bs.2026-04-10_07-30-00-000.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23366641695043,6.965593245743563,49.227690897721196,7.000359313292873", + "point": "49.23366641695043,6.965593245743563", + "startLcPosition": "14", + "impact": { + "lower": "Saarbr\u00fccken-Bismarckbr\u00fccke", + "upper": "Messegel\u00e4nde", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | Messegel\u00e4nde - Saarbr\u00fccken-Bismarckbr\u00fccke", + "coordinate": { + "lat": 49.23366641695043, + "long": 6.965593245743563 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 07:30 bis 17:00 Uhr", + "11.04.26 von 07:30 bis 17:00 Uhr", + "13.04.26 von 07:30 bis 17:00 Uhr", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.2 km hinter Messegel\u00e4nde und 0.1 km vor AS Saarbr\u00fccken-Bismarckbr\u00fccke", + "", + "L\u00e4nge: 3.14 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Messegel\u00e4nde (Parkplatz) Gr\u00fcnpflege" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.965593246, + 49.233666417 + ], + [ + 6.9658671, + 49.233678201 + ], + [ + 6.9662208, + 49.233701501 + ], + [ + 6.9664947, + 49.233732501 + ], + [ + 6.9667873, + 49.233788901 + ], + [ + 6.9671946, + 49.233890601 + ], + [ + 6.9674602, + 49.233975401 + ], + [ + 6.9676946, + 49.234063501 + ], + [ + 6.9694867, + 49.234739901 + ], + [ + 6.969987, + 49.234925601 + ], + [ + 6.9704027, + 49.235077101 + ], + [ + 6.9708324, + 49.235230001 + ], + [ + 6.9712863, + 49.235377501 + ], + [ + 6.9713715, + 49.235403001 + ], + [ + 6.9717665, + 49.235516701 + ], + [ + 6.9720559, + 49.235596501 + ], + [ + 6.972178, + 49.235630101 + ], + [ + 6.9725369, + 49.235717801 + ], + [ + 6.9729051, + 49.235795101 + ], + [ + 6.9733447, + 49.235873601 + ], + [ + 6.973784, + 49.235936301 + ], + [ + 6.9741496, + 49.235981501 + ], + [ + 6.9746176, + 49.236026701 + ], + [ + 6.9750441, + 49.236053701 + ], + [ + 6.9755149, + 49.236073601 + ], + [ + 6.9760888, + 49.236085601 + ], + [ + 6.976335, + 49.236091001 + ], + [ + 6.9767526, + 49.236093601 + ], + [ + 6.9771987, + 49.236091401 + ], + [ + 6.9773964, + 49.236089801 + ], + [ + 6.9781505, + 49.236079201 + ], + [ + 6.9796146, + 49.236070101 + ], + [ + 6.9802284, + 49.236077201 + ], + [ + 6.9805479, + 49.236096501 + ], + [ + 6.9807895, + 49.236120101 + ], + [ + 6.9814287, + 49.236204601 + ], + [ + 6.9816458, + 49.236227001 + ], + [ + 6.9818939, + 49.236248101 + ], + [ + 6.9822269, + 49.236263501 + ], + [ + 6.9824233, + 49.236264501 + ], + [ + 6.9826825, + 49.236258001 + ], + [ + 6.9831802, + 49.236240601 + ], + [ + 6.9837316, + 49.236228501 + ], + [ + 6.984535, + 49.236206701 + ], + [ + 6.9847162, + 49.236205501 + ], + [ + 6.9851373, + 49.236203401 + ], + [ + 6.9854591, + 49.236210201 + ], + [ + 6.9856372, + 49.236216001 + ], + [ + 6.9864918, + 49.236279301 + ], + [ + 6.9870751, + 49.236328301 + ], + [ + 6.9872952, + 49.236334901 + ], + [ + 6.9875756, + 49.236339401 + ], + [ + 6.9882393, + 49.236329301 + ], + [ + 6.9887035, + 49.236309201 + ], + [ + 6.9891421, + 49.236267801 + ], + [ + 6.9894291, + 49.236220001 + ], + [ + 6.9897024, + 49.236163501 + ], + [ + 6.9899687, + 49.236090301 + ], + [ + 6.9901495, + 49.236023801 + ], + [ + 6.990336, + 49.235935701 + ], + [ + 6.990503, + 49.235841901 + ], + [ + 6.9906377, + 49.235746501 + ], + [ + 6.9907731, + 49.235623001 + ], + [ + 6.9908812, + 49.235516101 + ], + [ + 6.990934, + 49.235447101 + ], + [ + 6.9909927, + 49.235323201 + ], + [ + 6.991037, + 49.235188301 + ], + [ + 6.9910625, + 49.235075401 + ], + [ + 6.9910692, + 49.234993101 + ], + [ + 6.9910746, + 49.234905501 + ], + [ + 6.9910674, + 49.234757201 + ], + [ + 6.9910418, + 49.234561001 + ], + [ + 6.9909853, + 49.234195301 + ], + [ + 6.9909548, + 49.233913001 + ], + [ + 6.9909612, + 49.233774201 + ], + [ + 6.9909699, + 49.233668901 + ], + [ + 6.990988, + 49.233544501 + ], + [ + 6.9910303, + 49.233381801 + ], + [ + 6.9910829, + 49.233244301 + ], + [ + 6.991148, + 49.233091601 + ], + [ + 6.9912214, + 49.232934201 + ], + [ + 6.99131, + 49.232793201 + ], + [ + 6.9914581, + 49.232575201 + ], + [ + 6.9916335, + 49.232338001 + ], + [ + 6.9919533, + 49.231942501 + ], + [ + 6.9923132, + 49.231525301 + ], + [ + 6.9924283, + 49.231394001 + ], + [ + 6.9925792, + 49.231234001 + ], + [ + 6.9929239, + 49.230899501 + ], + [ + 6.9930786, + 49.230761501 + ], + [ + 6.9932816, + 49.230590101 + ], + [ + 6.9935189, + 49.230411401 + ], + [ + 6.993824, + 49.230194601 + ], + [ + 6.9941015, + 49.230028501 + ], + [ + 6.9944715, + 49.229820201 + ], + [ + 6.9948412, + 49.229641101 + ], + [ + 6.9952213, + 49.229482201 + ], + [ + 6.9957033, + 49.229302301 + ], + [ + 6.9962531, + 49.229122901 + ], + [ + 6.9966779, + 49.228993801 + ], + [ + 6.9968271, + 49.228946301 + ], + [ + 6.9972183, + 49.228841401 + ], + [ + 6.9976043, + 49.228732201 + ], + [ + 6.9980639, + 49.228587801 + ], + [ + 6.9984707, + 49.228450101 + ], + [ + 6.9990135, + 49.228256001 + ], + [ + 6.9998793, + 49.227899801 + ], + [ + 7.0002348, + 49.227747201 + ], + [ + 7.000359313, + 49.227690898 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de47", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.2363324086404,6.9872120837919445,49.23623091706338,6.9893635580357", + "point": "49.2363324086404,6.9872120837919445", + "startLcPosition": "16", + "impact": { + "lower": "Saarbr\u00fccken-Luisenbr\u00fccke", + "upper": "Saarbr\u00fccken-Westspangenbr\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | Saarbr\u00fccken-Westspangenbr\u00fccke - Saarbr\u00fccken-Luisenbr\u00fccke", + "coordinate": { + "lat": 49.2363324086404, + "long": 6.9872120837919445 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.3 km hinter AS Saarbr\u00fccken-Westspangenbr\u00fccke und 0.1 km vor AS Saarbr\u00fccken-Luisenbr\u00fccke", + "", + "L\u00e4nge: 0.16 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.987212084, + 49.236332409 + ], + [ + 6.9872952, + 49.236334901 + ], + [ + 6.9875756, + 49.236339401 + ], + [ + 6.9882393, + 49.236329301 + ], + [ + 6.9887035, + 49.236309201 + ], + [ + 6.9891421, + 49.236267801 + ], + [ + 6.989363558, + 49.236230917 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de43", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23607625392335,6.990006891100232,49.235815036634506,6.990540931126406", + "point": "49.23607625392335,6.990006891100232", + "startLcPosition": "16", + "impact": { + "lower": "Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke", + "upper": "Saarbr\u00fccken-Westspangenbr\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | Saarbr\u00fccken-Westspangenbr\u00fccke - Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke", + "coordinate": { + "lat": 49.23607625392335, + "long": 6.990006891100232 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.5 km hinter AS Saarbr\u00fccken-Westspangenbr\u00fccke und 0.2 km vor AS Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke", + "", + "L\u00e4nge: 0.05 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.990006891, + 49.236076254 + ], + [ + 6.9901495, + 49.236023801 + ], + [ + 6.990336, + 49.235935701 + ], + [ + 6.990503, + 49.235841901 + ], + [ + 6.990540931, + 49.235815037 + ] + ] + } + }, + { + "identifier": "2024-042429--vi-bs.2025-11-20_00-00-00-000.devi-zus.2024-09-10_00-00-00-000.f.de10", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.236343479648546,6.982792481235259,49.23618190036716,6.977746870426324", + "point": "49.236343479648546,6.982792481235259", + "startLcPosition": "16", + "impact": { + "lower": "Saarbr\u00fccken-Malstatter Br\u00fccke", + "upper": "Saarbr\u00fccken-Westspangenbr\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 | Saarbr\u00fccken-Westspangenbr\u00fccke - Saarbr\u00fccken-Malstatter Br\u00fccke", + "startTimestamp": "2025-11-20T00:00:00+01:00", + "coordinate": { + "lat": 49.236343479648546, + "long": 6.982792481235259 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.11.25 um 00:00 Uhr", + "Ende: 04.04.27 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.04.27)", + "", + "A620: Saarbr\u00fccken -> Saarlouis, zwischen AS Saarbr\u00fccken-Westspangenbr\u00fccke und 0.4 km vor AS Saarbr\u00fccken-Malstatter Br\u00fccke", + "", + "L\u00e4nge: 0.37 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "A620 Kleingartenanlage, Umbau AS Westpange" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.982792481, + 49.23634348 + ], + [ + 6.9826831, + 49.236345601 + ], + [ + 6.9824314, + 49.236346101 + ], + [ + 6.9822176, + 49.236343301 + ], + [ + 6.9818793, + 49.236327101 + ], + [ + 6.9816204, + 49.236307801 + ], + [ + 6.9814072, + 49.236285201 + ], + [ + 6.98076, + 49.236201901 + ], + [ + 6.9805075, + 49.236176001 + ], + [ + 6.9802029, + 49.236157701 + ], + [ + 6.9799145, + 49.236153401 + ], + [ + 6.9790504, + 49.236165401 + ], + [ + 6.9785872, + 49.236174801 + ], + [ + 6.9781498, + 49.236179401 + ], + [ + 6.9779869, + 49.236179801 + ], + [ + 6.97774687, + 49.2361819 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de19", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23629512070669,6.989651254708563,49.23644016051686,6.988349690260248", + "point": "49.23629512070669,6.989651254708563", + "startLcPosition": "17", + "impact": { + "lower": "Saarbr\u00fccken-Westspangenbr\u00fccke", + "upper": "Saarbr\u00fccken-Luisenbr\u00fccke", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 | Saarbr\u00fccken-Luisenbr\u00fccke - Saarbr\u00fccken-Westspangenbr\u00fccke", + "coordinate": { + "lat": 49.23629512070669, + "long": 6.989651254708563 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarbr\u00fccken -> Saarlouis, zwischen 0.1 km hinter AS Saarbr\u00fccken-Luisenbr\u00fccke und 0.4 km vor AS Saarbr\u00fccken-Westspangenbr\u00fccke", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.989651255, + 49.236295121 + ], + [ + 6.9894856, + 49.236331601 + ], + [ + 6.9891945, + 49.236377101 + ], + [ + 6.9887106, + 49.236421801 + ], + [ + 6.98834969, + 49.236440161 + ] + ] + } + }, + { + "identifier": "2025-014511--vi-bs.2026-03-19_05-30-00-000.devi-zus.2026-03-16_00-00-00-000_002.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.21952976079774,7.017090018494933,49.20974070754302,7.023015260503184", + "point": "49.21952976079774,7.017090018494933", + "startLcPosition": "19", + "impact": { + "lower": "Saarbr\u00fccken-Unner", + "upper": "Saarbr\u00fccken-Bismarckbr\u00fccke", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 | Saarbr\u00fccken-Bismarckbr\u00fccke - Saarbr\u00fccken-Unner", + "startTimestamp": "2026-03-19T05:30:00+01:00", + "coordinate": { + "lat": 49.21952976079774, + "long": 7.017090018494933 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.03.26 um 05:30 Uhr", + "Ende: 13.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.08.27)", + "", + "A620: Saarlouis -> Saarbr\u00fccken, zwischen 1.4 km hinter AS Saarbr\u00fccken-Bismarckbr\u00fccke und 0.1 km vor AS Saarbr\u00fccken-Unner", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "L\u00e4rmsanierung zwischen AS SB-Sch\u00f6nbach und AS SB Gersweiler (km 0,400 bis 8,000), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.017090018, + 49.219529761 + ], + [ + 7.017545, + 49.219199801 + ], + [ + 7.0182854, + 49.218607501 + ], + [ + 7.0185553, + 49.218373001 + ], + [ + 7.0189074, + 49.218061201 + ], + [ + 7.0191623, + 49.217807001 + ], + [ + 7.0193735, + 49.217581201 + ], + [ + 7.0195584, + 49.217344101 + ], + [ + 7.0198257, + 49.217024201 + ], + [ + 7.0200058, + 49.216777001 + ], + [ + 7.0201312, + 49.216605301 + ], + [ + 7.0202465, + 49.216437301 + ], + [ + 7.0203758, + 49.216211601 + ], + [ + 7.0204865, + 49.216007301 + ], + [ + 7.0205857, + 49.215804901 + ], + [ + 7.0206969, + 49.215534401 + ], + [ + 7.0208094, + 49.215207801 + ], + [ + 7.0208898, + 49.214912401 + ], + [ + 7.0209667, + 49.214568801 + ], + [ + 7.0210361, + 49.214189401 + ], + [ + 7.021087, + 49.213857201 + ], + [ + 7.021143, + 49.213480501 + ], + [ + 7.0212412, + 49.212867301 + ], + [ + 7.0213073, + 49.212617901 + ], + [ + 7.0213817, + 49.212312801 + ], + [ + 7.0214406, + 49.212100801 + ], + [ + 7.0215126, + 49.211903001 + ], + [ + 7.0215911, + 49.211711901 + ], + [ + 7.0216723, + 49.211526601 + ], + [ + 7.0218161, + 49.211260701 + ], + [ + 7.0219495, + 49.211048101 + ], + [ + 7.0221027, + 49.210821601 + ], + [ + 7.0222463, + 49.210621101 + ], + [ + 7.0224238, + 49.210399901 + ], + [ + 7.0226428, + 49.210137001 + ], + [ + 7.0228982, + 49.209861801 + ], + [ + 7.023015261, + 49.209740708 + ] + ] + } + }, + { + "identifier": "2025-014511--vi-bs.2026-03-19_05-30-00-000.devi-zus.2026-03-16_00-00-00-000_002.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.20980128474885,7.023161764868893,49.21960130963798,7.017212898597233", + "point": "49.20980128474885,7.023161764868893", + "startLcPosition": "21", + "impact": { + "lower": "Saarbr\u00fccken-Bismarckbr\u00fccke", + "upper": "Saarbr\u00fccken-Unner", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "CLOSED", + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 | Saarbr\u00fccken-Unner - Saarbr\u00fccken-Bismarckbr\u00fccke", + "startTimestamp": "2026-03-19T05:30:00+01:00", + "coordinate": { + "lat": 49.20980128474885, + "long": 7.023161764868893 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 19.03.26 um 05:30 Uhr", + "Ende: 13.06.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.08.27)", + "", + "A620: Saarbr\u00fccken -> Saarlouis, zwischen 0.1 km hinter AS Saarbr\u00fccken-Unner und 1.4 km vor AS Saarbr\u00fccken-Bismarckbr\u00fccke", + "", + "L\u00e4nge: 1.2 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "L\u00e4rmsanierung zwischen AS SB-Sch\u00f6nbach und AS SB Gersweiler (km 0,400 bis 8,000), beide FR" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.023161765, + 49.209801285 + ], + [ + 7.0227714, + 49.210206801 + ], + [ + 7.0226467, + 49.210356201 + ], + [ + 7.0225788, + 49.210442001 + ], + [ + 7.0224185, + 49.210648301 + ], + [ + 7.022264, + 49.210849701 + ], + [ + 7.0221204, + 49.211075501 + ], + [ + 7.0219781, + 49.211305601 + ], + [ + 7.0218511, + 49.211551601 + ], + [ + 7.0217535, + 49.211765001 + ], + [ + 7.0216733, + 49.211959201 + ], + [ + 7.0216171, + 49.212113601 + ], + [ + 7.0215538, + 49.212332101 + ], + [ + 7.0214633, + 49.212658201 + ], + [ + 7.0214202, + 49.212884901 + ], + [ + 7.0213172, + 49.213486601 + ], + [ + 7.0212556, + 49.213890501 + ], + [ + 7.0212052, + 49.214210501 + ], + [ + 7.0211343, + 49.214620501 + ], + [ + 7.0210686, + 49.214963401 + ], + [ + 7.0210064, + 49.215170701 + ], + [ + 7.0209502, + 49.215336701 + ], + [ + 7.0208624, + 49.215582701 + ], + [ + 7.0207743, + 49.215805301 + ], + [ + 7.0206745, + 49.216028901 + ], + [ + 7.0205759, + 49.216232301 + ], + [ + 7.0204344, + 49.216496201 + ], + [ + 7.0203119, + 49.216689301 + ], + [ + 7.0201866, + 49.216881701 + ], + [ + 7.0199738, + 49.217168601 + ], + [ + 7.0198125, + 49.217379601 + ], + [ + 7.0196391, + 49.217532201 + ], + [ + 7.0194907, + 49.217684201 + ], + [ + 7.0192178, + 49.217956101 + ], + [ + 7.0190004, + 49.218159601 + ], + [ + 7.018792, + 49.218358401 + ], + [ + 7.0185815, + 49.218539301 + ], + [ + 7.0183198, + 49.218759601 + ], + [ + 7.0180998, + 49.218939201 + ], + [ + 7.017212899, + 49.21960131 + ] + ] + } + }, + { + "identifier": "2026-004362--vi-bs.2026-04-11_07-00-00-000.devi-zus.2026-04-11_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.20800970603288,7.025887824939954,49.23731381921534,6.9437849187926615", + "point": "49.20800970603288,7.025887824939954", + "startLcPosition": "22", + "impact": { + "lower": "Saarbr\u00fccken-Klarenthal", + "upper": "Saarbr\u00fccken-G\u00fcdingen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 | Saarbr\u00fccken-G\u00fcdingen - Saarbr\u00fccken-Klarenthal", + "coordinate": { + "lat": 49.20800970603288, + "long": 7.025887824939954 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarbr\u00fccken -> Saarlouis, zwischen AS Saarbr\u00fccken-G\u00fcdingen und 2.5 km vor AS Saarbr\u00fccken-Klarenthal", + "", + "L\u00e4nge: 7.89 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Reinigungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.025887825, + 49.208009706 + ], + [ + 7.0254549, + 49.208207001 + ], + [ + 7.0252024, + 49.208333301 + ], + [ + 7.0249572, + 49.208460601 + ], + [ + 7.0247145, + 49.208612401 + ], + [ + 7.024362, + 49.208827601 + ], + [ + 7.024061, + 49.209023901 + ], + [ + 7.0238909, + 49.209155601 + ], + [ + 7.0237455, + 49.209269801 + ], + [ + 7.0236089, + 49.209392601 + ], + [ + 7.0234631, + 49.209516801 + ], + [ + 7.0233247, + 49.209642701 + ], + [ + 7.0231862, + 49.209775901 + ], + [ + 7.0227714, + 49.210206801 + ], + [ + 7.0226467, + 49.210356201 + ], + [ + 7.0225788, + 49.210442001 + ], + [ + 7.0224185, + 49.210648301 + ], + [ + 7.022264, + 49.210849701 + ], + [ + 7.0221204, + 49.211075501 + ], + [ + 7.0219781, + 49.211305601 + ], + [ + 7.0218511, + 49.211551601 + ], + [ + 7.0217535, + 49.211765001 + ], + [ + 7.0216733, + 49.211959201 + ], + [ + 7.0216171, + 49.212113601 + ], + [ + 7.0215538, + 49.212332101 + ], + [ + 7.0214633, + 49.212658201 + ], + [ + 7.0214202, + 49.212884901 + ], + [ + 7.0213172, + 49.213486601 + ], + [ + 7.0212556, + 49.213890501 + ], + [ + 7.0212052, + 49.214210501 + ], + [ + 7.0211343, + 49.214620501 + ], + [ + 7.0210686, + 49.214963401 + ], + [ + 7.0210064, + 49.215170701 + ], + [ + 7.0209502, + 49.215336701 + ], + [ + 7.0208624, + 49.215582701 + ], + [ + 7.0207743, + 49.215805301 + ], + [ + 7.0206745, + 49.216028901 + ], + [ + 7.0205759, + 49.216232301 + ], + [ + 7.0204344, + 49.216496201 + ], + [ + 7.0203119, + 49.216689301 + ], + [ + 7.0201866, + 49.216881701 + ], + [ + 7.0199738, + 49.217168601 + ], + [ + 7.0198125, + 49.217379601 + ], + [ + 7.0196391, + 49.217532201 + ], + [ + 7.0194907, + 49.217684201 + ], + [ + 7.0192178, + 49.217956101 + ], + [ + 7.0190004, + 49.218159601 + ], + [ + 7.018792, + 49.218358401 + ], + [ + 7.0185815, + 49.218539301 + ], + [ + 7.0183198, + 49.218759601 + ], + [ + 7.0180998, + 49.218939201 + ], + [ + 7.0171963, + 49.219613701 + ], + [ + 7.016653, + 49.220003101 + ], + [ + 7.0158558, + 49.220540101 + ], + [ + 7.0155573, + 49.220729701 + ], + [ + 7.0153168, + 49.220880101 + ], + [ + 7.0147791, + 49.221210501 + ], + [ + 7.0142645, + 49.221508701 + ], + [ + 7.0136142, + 49.221876101 + ], + [ + 7.0132185, + 49.222080701 + ], + [ + 7.0126644, + 49.222370301 + ], + [ + 7.0121341, + 49.222638301 + ], + [ + 7.0119241, + 49.222739701 + ], + [ + 7.0113879, + 49.222994501 + ], + [ + 7.0103967, + 49.223431001 + ], + [ + 7.0098388, + 49.223662101 + ], + [ + 7.0092092, + 49.223917001 + ], + [ + 7.0087564, + 49.224090401 + ], + [ + 7.0080633, + 49.224339001 + ], + [ + 7.0073296, + 49.224590301 + ], + [ + 7.0066691, + 49.224819701 + ], + [ + 7.0063082, + 49.224944901 + ], + [ + 7.0059482, + 49.225083101 + ], + [ + 7.0053421, + 49.225317701 + ], + [ + 7.005043, + 49.225442601 + ], + [ + 7.0046317, + 49.225624601 + ], + [ + 7.0040372, + 49.225922401 + ], + [ + 7.0035093, + 49.226212201 + ], + [ + 7.0019606, + 49.227087601 + ], + [ + 7.0013931, + 49.227374301 + ], + [ + 7.001052, + 49.227536801 + ], + [ + 7.0006607, + 49.227708501 + ], + [ + 7.000329, + 49.227849001 + ], + [ + 6.9999897, + 49.227992801 + ], + [ + 6.9991471, + 49.228324801 + ], + [ + 6.9985545, + 49.228536701 + ], + [ + 6.9981768, + 49.228658801 + ], + [ + 6.997796, + 49.228775001 + ], + [ + 6.9966462, + 49.229114001 + ], + [ + 6.996307, + 49.229215401 + ], + [ + 6.9957742, + 49.229386101 + ], + [ + 6.9952861, + 49.229568401 + ], + [ + 6.9949266, + 49.229722301 + ], + [ + 6.9945894, + 49.229882901 + ], + [ + 6.9942374, + 49.230072101 + ], + [ + 6.9939745, + 49.230240901 + ], + [ + 6.9936234, + 49.230473401 + ], + [ + 6.9933936, + 49.230647601 + ], + [ + 6.9931984, + 49.230806701 + ], + [ + 6.993071, + 49.230919501 + ], + [ + 6.9926896, + 49.231291301 + ], + [ + 6.9924869, + 49.231519701 + ], + [ + 6.9922782, + 49.231762401 + ], + [ + 6.9917565, + 49.232402501 + ], + [ + 6.9916006, + 49.232615501 + ], + [ + 6.9914385, + 49.232850401 + ], + [ + 6.99135, + 49.232996401 + ], + [ + 6.9912827, + 49.233141101 + ], + [ + 6.9912252, + 49.233274601 + ], + [ + 6.9911783, + 49.233424401 + ], + [ + 6.9911486, + 49.233535101 + ], + [ + 6.9911207, + 49.233652201 + ], + [ + 6.9911069, + 49.233785201 + ], + [ + 6.9911069, + 49.233909901 + ], + [ + 6.9911369, + 49.234192601 + ], + [ + 6.9911735, + 49.234412601 + ], + [ + 6.9912242, + 49.234775401 + ], + [ + 6.9912338, + 49.234905201 + ], + [ + 6.9912283, + 49.235007301 + ], + [ + 6.9912195, + 49.235097901 + ], + [ + 6.9912006, + 49.235206201 + ], + [ + 6.9911511, + 49.235352501 + ], + [ + 6.9910759, + 49.235483401 + ], + [ + 6.9910023, + 49.235591101 + ], + [ + 6.9909143, + 49.235691501 + ], + [ + 6.9907701, + 49.235814401 + ], + [ + 6.9906119, + 49.235930001 + ], + [ + 6.990451, + 49.236021901 + ], + [ + 6.9901182, + 49.236171801 + ], + [ + 6.9900215, + 49.236203901 + ], + [ + 6.9897685, + 49.236269301 + ], + [ + 6.9894856, + 49.236331601 + ], + [ + 6.9891945, + 49.236377101 + ], + [ + 6.9887106, + 49.236421801 + ], + [ + 6.9882565, + 49.236444901 + ], + [ + 6.987543, + 49.236457701 + ], + [ + 6.9872534, + 49.236450101 + ], + [ + 6.9870648, + 49.236442501 + ], + [ + 6.9864563, + 49.236381101 + ], + [ + 6.9859312, + 49.236335001 + ], + [ + 6.985448, + 49.236308401 + ], + [ + 6.9851385, + 49.236301501 + ], + [ + 6.9847141, + 49.236296801 + ], + [ + 6.9845758, + 49.236299201 + ], + [ + 6.984504, + 49.236300401 + ], + [ + 6.9837278, + 49.236321601 + ], + [ + 6.9831626, + 49.236336301 + ], + [ + 6.9826831, + 49.236345601 + ], + [ + 6.9824314, + 49.236346101 + ], + [ + 6.9822176, + 49.236343301 + ], + [ + 6.9818793, + 49.236327101 + ], + [ + 6.9816204, + 49.236307801 + ], + [ + 6.9814072, + 49.236285201 + ], + [ + 6.98076, + 49.236201901 + ], + [ + 6.9805075, + 49.236176001 + ], + [ + 6.9802029, + 49.236157701 + ], + [ + 6.9799145, + 49.236153401 + ], + [ + 6.9790504, + 49.236165401 + ], + [ + 6.9785872, + 49.236174801 + ], + [ + 6.9781498, + 49.236179401 + ], + [ + 6.9779869, + 49.236179801 + ], + [ + 6.9771978, + 49.236186701 + ], + [ + 6.9767483, + 49.236189701 + ], + [ + 6.9762872, + 49.236189001 + ], + [ + 6.9759205, + 49.236180001 + ], + [ + 6.975511, + 49.236168501 + ], + [ + 6.9750337, + 49.236137501 + ], + [ + 6.9745932, + 49.236106801 + ], + [ + 6.9741297, + 49.236065501 + ], + [ + 6.9737631, + 49.236019901 + ], + [ + 6.9733144, + 49.235953801 + ], + [ + 6.9728707, + 49.235875601 + ], + [ + 6.9724878, + 49.235796601 + ], + [ + 6.9721287, + 49.235710001 + ], + [ + 6.9717258, + 49.235597001 + ], + [ + 6.9713171, + 49.235476201 + ], + [ + 6.9707857, + 49.235306301 + ], + [ + 6.9703378, + 49.235152001 + ], + [ + 6.9699253, + 49.234994801 + ], + [ + 6.9694314, + 49.234813601 + ], + [ + 6.9683728, + 49.234412201 + ], + [ + 6.9677929, + 49.234190501 + ], + [ + 6.9674718, + 49.234068801 + ], + [ + 6.9671445, + 49.233963401 + ], + [ + 6.9667208, + 49.233860801 + ], + [ + 6.9664814, + 49.233814001 + ], + [ + 6.9662169, + 49.233778801 + ], + [ + 6.9658523, + 49.233752601 + ], + [ + 6.9654705, + 49.233739801 + ], + [ + 6.9630066, + 49.233690501 + ], + [ + 6.9613245, + 49.233650901 + ], + [ + 6.9601151, + 49.233614301 + ], + [ + 6.9590784, + 49.233575701 + ], + [ + 6.9576229, + 49.233522601 + ], + [ + 6.9565478, + 49.233472501 + ], + [ + 6.9554128, + 49.233406001 + ], + [ + 6.9544254, + 49.233336301 + ], + [ + 6.9539822, + 49.233323601 + ], + [ + 6.9536784, + 49.233329601 + ], + [ + 6.9535, + 49.233336701 + ], + [ + 6.953262, + 49.233367301 + ], + [ + 6.953038, + 49.233401801 + ], + [ + 6.9527945, + 49.233462201 + ], + [ + 6.952639, + 49.233506901 + ], + [ + 6.9525215, + 49.233541001 + ], + [ + 6.9523351, + 49.233607401 + ], + [ + 6.9520375, + 49.233735801 + ], + [ + 6.9516686, + 49.233934501 + ], + [ + 6.9506115, + 49.234551601 + ], + [ + 6.9503306, + 49.234715801 + ], + [ + 6.9498087, + 49.234997901 + ], + [ + 6.9492709, + 49.235263301 + ], + [ + 6.9486808, + 49.235527201 + ], + [ + 6.9480809, + 49.235775301 + ], + [ + 6.9474428, + 49.236018201 + ], + [ + 6.9469317, + 49.236208001 + ], + [ + 6.9466949, + 49.236299701 + ], + [ + 6.9465111, + 49.236372101 + ], + [ + 6.9454, + 49.236767001 + ], + [ + 6.9446156, + 49.237042701 + ], + [ + 6.943784919, + 49.237313819 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.20813281419021,7.025617689094038,49.24335304604451,6.915542819853753", + "point": "49.20813281419021,7.025617689094038", + "startLcPosition": "22", + "impact": { + "lower": "Saarbr\u00fccken-Klarenthal", + "upper": "Saarbr\u00fccken-G\u00fcdingen", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 | Saarbr\u00fccken-G\u00fcdingen - Saarbr\u00fccken-Klarenthal", + "coordinate": { + "lat": 49.20813281419021, + "long": 7.025617689094038 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "A620: Saarbr\u00fccken -> Saarlouis, zwischen AS Saarbr\u00fccken-G\u00fcdingen und 0.3 km vor AS Saarbr\u00fccken-Klarenthal", + "", + "L\u00e4nge: 10.04 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.025617689, + 49.208132814 + ], + [ + 7.0254549, + 49.208207001 + ], + [ + 7.0252024, + 49.208333301 + ], + [ + 7.0249572, + 49.208460601 + ], + [ + 7.0247145, + 49.208612401 + ], + [ + 7.024362, + 49.208827601 + ], + [ + 7.024061, + 49.209023901 + ], + [ + 7.0238909, + 49.209155601 + ], + [ + 7.0237455, + 49.209269801 + ], + [ + 7.0236089, + 49.209392601 + ], + [ + 7.0234631, + 49.209516801 + ], + [ + 7.0233247, + 49.209642701 + ], + [ + 7.0231862, + 49.209775901 + ], + [ + 7.0227714, + 49.210206801 + ], + [ + 7.0226467, + 49.210356201 + ], + [ + 7.0225788, + 49.210442001 + ], + [ + 7.0224185, + 49.210648301 + ], + [ + 7.022264, + 49.210849701 + ], + [ + 7.0221204, + 49.211075501 + ], + [ + 7.0219781, + 49.211305601 + ], + [ + 7.0218511, + 49.211551601 + ], + [ + 7.0217535, + 49.211765001 + ], + [ + 7.0216733, + 49.211959201 + ], + [ + 7.0216171, + 49.212113601 + ], + [ + 7.0215538, + 49.212332101 + ], + [ + 7.0214633, + 49.212658201 + ], + [ + 7.0214202, + 49.212884901 + ], + [ + 7.0213172, + 49.213486601 + ], + [ + 7.0212556, + 49.213890501 + ], + [ + 7.0212052, + 49.214210501 + ], + [ + 7.0211343, + 49.214620501 + ], + [ + 7.0210686, + 49.214963401 + ], + [ + 7.0210064, + 49.215170701 + ], + [ + 7.0209502, + 49.215336701 + ], + [ + 7.0208624, + 49.215582701 + ], + [ + 7.0207743, + 49.215805301 + ], + [ + 7.0206745, + 49.216028901 + ], + [ + 7.0205759, + 49.216232301 + ], + [ + 7.0204344, + 49.216496201 + ], + [ + 7.0203119, + 49.216689301 + ], + [ + 7.0201866, + 49.216881701 + ], + [ + 7.0199738, + 49.217168601 + ], + [ + 7.0198125, + 49.217379601 + ], + [ + 7.0196391, + 49.217532201 + ], + [ + 7.0194907, + 49.217684201 + ], + [ + 7.0192178, + 49.217956101 + ], + [ + 7.0190004, + 49.218159601 + ], + [ + 7.018792, + 49.218358401 + ], + [ + 7.0185815, + 49.218539301 + ], + [ + 7.0183198, + 49.218759601 + ], + [ + 7.0180998, + 49.218939201 + ], + [ + 7.0171963, + 49.219613701 + ], + [ + 7.016653, + 49.220003101 + ], + [ + 7.0158558, + 49.220540101 + ], + [ + 7.0155573, + 49.220729701 + ], + [ + 7.0153168, + 49.220880101 + ], + [ + 7.0147791, + 49.221210501 + ], + [ + 7.0142645, + 49.221508701 + ], + [ + 7.0136142, + 49.221876101 + ], + [ + 7.0132185, + 49.222080701 + ], + [ + 7.0126644, + 49.222370301 + ], + [ + 7.0121341, + 49.222638301 + ], + [ + 7.0119241, + 49.222739701 + ], + [ + 7.0113879, + 49.222994501 + ], + [ + 7.0103967, + 49.223431001 + ], + [ + 7.0098388, + 49.223662101 + ], + [ + 7.0092092, + 49.223917001 + ], + [ + 7.0087564, + 49.224090401 + ], + [ + 7.0080633, + 49.224339001 + ], + [ + 7.0073296, + 49.224590301 + ], + [ + 7.0066691, + 49.224819701 + ], + [ + 7.0063082, + 49.224944901 + ], + [ + 7.0059482, + 49.225083101 + ], + [ + 7.0053421, + 49.225317701 + ], + [ + 7.005043, + 49.225442601 + ], + [ + 7.0046317, + 49.225624601 + ], + [ + 7.0040372, + 49.225922401 + ], + [ + 7.0035093, + 49.226212201 + ], + [ + 7.0019606, + 49.227087601 + ], + [ + 7.0013931, + 49.227374301 + ], + [ + 7.001052, + 49.227536801 + ], + [ + 7.0006607, + 49.227708501 + ], + [ + 7.000329, + 49.227849001 + ], + [ + 6.9999897, + 49.227992801 + ], + [ + 6.9991471, + 49.228324801 + ], + [ + 6.9985545, + 49.228536701 + ], + [ + 6.9981768, + 49.228658801 + ], + [ + 6.997796, + 49.228775001 + ], + [ + 6.9966462, + 49.229114001 + ], + [ + 6.996307, + 49.229215401 + ], + [ + 6.9957742, + 49.229386101 + ], + [ + 6.9952861, + 49.229568401 + ], + [ + 6.9949266, + 49.229722301 + ], + [ + 6.9945894, + 49.229882901 + ], + [ + 6.9942374, + 49.230072101 + ], + [ + 6.9939745, + 49.230240901 + ], + [ + 6.9936234, + 49.230473401 + ], + [ + 6.9933936, + 49.230647601 + ], + [ + 6.9931984, + 49.230806701 + ], + [ + 6.993071, + 49.230919501 + ], + [ + 6.9926896, + 49.231291301 + ], + [ + 6.9924869, + 49.231519701 + ], + [ + 6.9922782, + 49.231762401 + ], + [ + 6.9917565, + 49.232402501 + ], + [ + 6.9916006, + 49.232615501 + ], + [ + 6.9914385, + 49.232850401 + ], + [ + 6.99135, + 49.232996401 + ], + [ + 6.9912827, + 49.233141101 + ], + [ + 6.9912252, + 49.233274601 + ], + [ + 6.9911783, + 49.233424401 + ], + [ + 6.9911486, + 49.233535101 + ], + [ + 6.9911207, + 49.233652201 + ], + [ + 6.9911069, + 49.233785201 + ], + [ + 6.9911069, + 49.233909901 + ], + [ + 6.9911369, + 49.234192601 + ], + [ + 6.9911735, + 49.234412601 + ], + [ + 6.9912242, + 49.234775401 + ], + [ + 6.9912338, + 49.234905201 + ], + [ + 6.9912283, + 49.235007301 + ], + [ + 6.9912195, + 49.235097901 + ], + [ + 6.9912006, + 49.235206201 + ], + [ + 6.9911511, + 49.235352501 + ], + [ + 6.9910759, + 49.235483401 + ], + [ + 6.9910023, + 49.235591101 + ], + [ + 6.9909143, + 49.235691501 + ], + [ + 6.9907701, + 49.235814401 + ], + [ + 6.9906119, + 49.235930001 + ], + [ + 6.990451, + 49.236021901 + ], + [ + 6.9901182, + 49.236171801 + ], + [ + 6.9900215, + 49.236203901 + ], + [ + 6.9897685, + 49.236269301 + ], + [ + 6.9894856, + 49.236331601 + ], + [ + 6.9891945, + 49.236377101 + ], + [ + 6.9887106, + 49.236421801 + ], + [ + 6.9882565, + 49.236444901 + ], + [ + 6.987543, + 49.236457701 + ], + [ + 6.9872534, + 49.236450101 + ], + [ + 6.9870648, + 49.236442501 + ], + [ + 6.9864563, + 49.236381101 + ], + [ + 6.9859312, + 49.236335001 + ], + [ + 6.985448, + 49.236308401 + ], + [ + 6.9851385, + 49.236301501 + ], + [ + 6.9847141, + 49.236296801 + ], + [ + 6.9845758, + 49.236299201 + ], + [ + 6.984504, + 49.236300401 + ], + [ + 6.9837278, + 49.236321601 + ], + [ + 6.9831626, + 49.236336301 + ], + [ + 6.9826831, + 49.236345601 + ], + [ + 6.9824314, + 49.236346101 + ], + [ + 6.9822176, + 49.236343301 + ], + [ + 6.9818793, + 49.236327101 + ], + [ + 6.9816204, + 49.236307801 + ], + [ + 6.9814072, + 49.236285201 + ], + [ + 6.98076, + 49.236201901 + ], + [ + 6.9805075, + 49.236176001 + ], + [ + 6.9802029, + 49.236157701 + ], + [ + 6.9799145, + 49.236153401 + ], + [ + 6.9790504, + 49.236165401 + ], + [ + 6.9785872, + 49.236174801 + ], + [ + 6.9781498, + 49.236179401 + ], + [ + 6.9779869, + 49.236179801 + ], + [ + 6.9771978, + 49.236186701 + ], + [ + 6.9767483, + 49.236189701 + ], + [ + 6.9762872, + 49.236189001 + ], + [ + 6.9759205, + 49.236180001 + ], + [ + 6.975511, + 49.236168501 + ], + [ + 6.9750337, + 49.236137501 + ], + [ + 6.9745932, + 49.236106801 + ], + [ + 6.9741297, + 49.236065501 + ], + [ + 6.9737631, + 49.236019901 + ], + [ + 6.9733144, + 49.235953801 + ], + [ + 6.9728707, + 49.235875601 + ], + [ + 6.9724878, + 49.235796601 + ], + [ + 6.9721287, + 49.235710001 + ], + [ + 6.9717258, + 49.235597001 + ], + [ + 6.9713171, + 49.235476201 + ], + [ + 6.9707857, + 49.235306301 + ], + [ + 6.9703378, + 49.235152001 + ], + [ + 6.9699253, + 49.234994801 + ], + [ + 6.9694314, + 49.234813601 + ], + [ + 6.9683728, + 49.234412201 + ], + [ + 6.9677929, + 49.234190501 + ], + [ + 6.9674718, + 49.234068801 + ], + [ + 6.9671445, + 49.233963401 + ], + [ + 6.9667208, + 49.233860801 + ], + [ + 6.9664814, + 49.233814001 + ], + [ + 6.9662169, + 49.233778801 + ], + [ + 6.9658523, + 49.233752601 + ], + [ + 6.9654705, + 49.233739801 + ], + [ + 6.9630066, + 49.233690501 + ], + [ + 6.9613245, + 49.233650901 + ], + [ + 6.9601151, + 49.233614301 + ], + [ + 6.9590784, + 49.233575701 + ], + [ + 6.9576229, + 49.233522601 + ], + [ + 6.9565478, + 49.233472501 + ], + [ + 6.9554128, + 49.233406001 + ], + [ + 6.9544254, + 49.233336301 + ], + [ + 6.9539822, + 49.233323601 + ], + [ + 6.9536784, + 49.233329601 + ], + [ + 6.9535, + 49.233336701 + ], + [ + 6.953262, + 49.233367301 + ], + [ + 6.953038, + 49.233401801 + ], + [ + 6.9527945, + 49.233462201 + ], + [ + 6.952639, + 49.233506901 + ], + [ + 6.9525215, + 49.233541001 + ], + [ + 6.9523351, + 49.233607401 + ], + [ + 6.9520375, + 49.233735801 + ], + [ + 6.9516686, + 49.233934501 + ], + [ + 6.9506115, + 49.234551601 + ], + [ + 6.9503306, + 49.234715801 + ], + [ + 6.9498087, + 49.234997901 + ], + [ + 6.9492709, + 49.235263301 + ], + [ + 6.9486808, + 49.235527201 + ], + [ + 6.9480809, + 49.235775301 + ], + [ + 6.9474428, + 49.236018201 + ], + [ + 6.9469317, + 49.236208001 + ], + [ + 6.9466949, + 49.236299701 + ], + [ + 6.9465111, + 49.236372101 + ], + [ + 6.9454, + 49.236767001 + ], + [ + 6.9446156, + 49.237042701 + ], + [ + 6.9433217, + 49.237465001 + ], + [ + 6.9424747, + 49.237717101 + ], + [ + 6.9416019, + 49.237966401 + ], + [ + 6.9409385, + 49.238141401 + ], + [ + 6.9395617, + 49.238484201 + ], + [ + 6.9391979, + 49.238569601 + ], + [ + 6.9387997, + 49.238658301 + ], + [ + 6.9384225, + 49.238738201 + ], + [ + 6.9381548, + 49.238791701 + ], + [ + 6.9377594, + 49.238855801 + ], + [ + 6.9373873, + 49.238909601 + ], + [ + 6.9370109, + 49.238955901 + ], + [ + 6.9366439, + 49.238991901 + ], + [ + 6.9361761, + 49.239026601 + ], + [ + 6.9357862, + 49.239047201 + ], + [ + 6.9353546, + 49.239056101 + ], + [ + 6.9345996, + 49.239058401 + ], + [ + 6.9340239, + 49.239058301 + ], + [ + 6.9332129, + 49.239065101 + ], + [ + 6.9326479, + 49.239084501 + ], + [ + 6.9321112, + 49.239123501 + ], + [ + 6.9315912, + 49.239177301 + ], + [ + 6.9310346, + 49.239249801 + ], + [ + 6.93047, + 49.239348101 + ], + [ + 6.9298775, + 49.239471501 + ], + [ + 6.9292228, + 49.239637501 + ], + [ + 6.9284128, + 49.239875501 + ], + [ + 6.9266157, + 49.240416801 + ], + [ + 6.9248897, + 49.240932901 + ], + [ + 6.9226629, + 49.241609701 + ], + [ + 6.9213822, + 49.241992401 + ], + [ + 6.9205748, + 49.242231401 + ], + [ + 6.9198386, + 49.242444201 + ], + [ + 6.9192216, + 49.242600901 + ], + [ + 6.9186329, + 49.242740101 + ], + [ + 6.9180468, + 49.242865301 + ], + [ + 6.9178685, + 49.242903801 + ], + [ + 6.9171827, + 49.243036701 + ], + [ + 6.9164949, + 49.243169501 + ], + [ + 6.9158105, + 49.243297901 + ], + [ + 6.91554282, + 49.243353046 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de63", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.20949816668875,7.023265646588584,49.207827911387845,7.024720904106581", + "point": "49.20949816668875,7.023265646588584", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.20949816668875, + "long": 7.023265646588584 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarlouis -> Saarbr\u00fccken, zwischen 1.2 km hinter AS Saarbr\u00fccken-Sankt Arnual und AS Saarbr\u00fccken-G\u00fcdingen nach Abfahrt von der A620: AS Saarbr\u00fccken-Unner (aus Richtung Saarbr\u00fccken-Sankt Arnual)", + "", + "L\u00e4nge: 0.24 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.023265647, + 49.209498167 + ], + [ + 7.0233381, + 49.209433101 + ], + [ + 7.0235405, + 49.209262401 + ], + [ + 7.0238059, + 49.209041601 + ], + [ + 7.0239633, + 49.208921901 + ], + [ + 7.0242528, + 49.208728401 + ], + [ + 7.0245411, + 49.208543701 + ], + [ + 7.0246166, + 49.208496401 + ], + [ + 7.0247679, + 49.208361301 + ], + [ + 7.0248532, + 49.208295601 + ], + [ + 7.0249572, + 49.208209701 + ], + [ + 7.0249981, + 49.208158601 + ], + [ + 7.0250299, + 49.208101801 + ], + [ + 7.0250285, + 49.208040501 + ], + [ + 7.0250105, + 49.207983001 + ], + [ + 7.0249748, + 49.207931701 + ], + [ + 7.024926, + 49.207895001 + ], + [ + 7.0248521, + 49.207854201 + ], + [ + 7.0247637, + 49.207832201 + ], + [ + 7.024720904, + 49.207827911 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de61", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.21383837137817,7.021089799211461,49.20922253863763,7.02064366261759", + "point": "49.21383837137817,7.021089799211461", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.21383837137817, + "long": 7.021089799211461 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.7 km hinter AS Saarbr\u00fccken-Sankt Arnual und AS Saarbr\u00fccken-Unner nach Abfahrt von der A620: AS Saarbr\u00fccken-Unner (aus Richtung Saarbr\u00fccken-Sankt Arnual)", + "", + "L\u00e4nge: 0.52 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.021089799, + 49.213838371 + ], + [ + 7.021143, + 49.213480501 + ], + [ + 7.0212412, + 49.212867301 + ], + [ + 7.0212347, + 49.212665801 + ], + [ + 7.0212509, + 49.212453901 + ], + [ + 7.0212667, + 49.212100001 + ], + [ + 7.0212867, + 49.211885001 + ], + [ + 7.0213017, + 49.211675001 + ], + [ + 7.0213117, + 49.211470001 + ], + [ + 7.0213109, + 49.211289901 + ], + [ + 7.0212945, + 49.210980401 + ], + [ + 7.0212776, + 49.210830201 + ], + [ + 7.0212457, + 49.210648201 + ], + [ + 7.0211999, + 49.210454401 + ], + [ + 7.0210746, + 49.210072101 + ], + [ + 7.020983, + 49.209842001 + ], + [ + 7.0208841, + 49.209632901 + ], + [ + 7.020643663, + 49.209222539 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de59", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.219484142853744,7.016542723476626,49.21415405922262,7.021041515124953", + "point": "49.219484142853744,7.016542723476626", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Sankt Arnual (aus Richtung Saarbr\u00fccken-Bismarckbr\u00fccke) nach A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.219484142853744, + "long": 7.016542723476626 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Auffahrt auf die A620: AS Saarbr\u00fccken-Sankt Arnual (aus Richtung Saarbr\u00fccken-Bismarckbr\u00fccke) nach A620: Saarlouis -> Saarbr\u00fccken, zwischen AS Saarbr\u00fccken-Sankt Arnual und 0.6 km vor AS Saarbr\u00fccken-Unner", + "", + "L\u00e4nge: 0.7 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.016542723, + 49.219484143 + ], + [ + 7.0166041, + 49.219461401 + ], + [ + 7.0167175, + 49.219414801 + ], + [ + 7.0168339, + 49.219358801 + ], + [ + 7.0169767, + 49.219279801 + ], + [ + 7.0170902, + 49.219206901 + ], + [ + 7.0172059, + 49.219133401 + ], + [ + 7.0187661, + 49.218026501 + ], + [ + 7.0190253, + 49.217815101 + ], + [ + 7.0193436, + 49.217537901 + ], + [ + 7.0195584, + 49.217344101 + ], + [ + 7.0198257, + 49.217024201 + ], + [ + 7.0200058, + 49.216777001 + ], + [ + 7.0201312, + 49.216605301 + ], + [ + 7.0202465, + 49.216437301 + ], + [ + 7.0203758, + 49.216211601 + ], + [ + 7.0204865, + 49.216007301 + ], + [ + 7.0205857, + 49.215804901 + ], + [ + 7.0206969, + 49.215534401 + ], + [ + 7.0208094, + 49.215207801 + ], + [ + 7.0208898, + 49.214912401 + ], + [ + 7.0209667, + 49.214568801 + ], + [ + 7.0210361, + 49.214189401 + ], + [ + 7.021041515, + 49.214154059 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de57", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.223161625795065,7.0106896751271135,49.22055303316894,7.01505703559624", + "point": "49.223161625795065,7.0106896751271135", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.223161625795065, + "long": 7.0106896751271135 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.8 km hinter AS Saarbr\u00fccken-Bismarckbr\u00fccke und AS Saarbr\u00fccken-Sankt Arnual nach Abfahrt von der A620: AS Saarbr\u00fccken-Sankt Arnual (aus Richtung Saarbr\u00fccken-Bismarckbr\u00fccke)", + "", + "L\u00e4nge: 0.43 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.010689675, + 49.223161626 + ], + [ + 7.0109675, + 49.223041001 + ], + [ + 7.0112758, + 49.222895301 + ], + [ + 7.0117862, + 49.222607501 + ], + [ + 7.0119799, + 49.222505501 + ], + [ + 7.0122489, + 49.222353501 + ], + [ + 7.0127328, + 49.222067301 + ], + [ + 7.0134, + 49.221634001 + ], + [ + 7.0138073, + 49.221364501 + ], + [ + 7.0149314, + 49.220627101 + ], + [ + 7.0150121, + 49.220575501 + ], + [ + 7.015057036, + 49.220553033 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de55", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.22637715570269,7.00252281431068,49.2234168876768,7.010091765087544", + "point": "49.22637715570269,7.00252281431068", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Bismarckbr\u00fccke (aus Richtung Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke) nach A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.22637715570269, + "long": 7.00252281431068 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Auffahrt auf die A620: AS Saarbr\u00fccken-Bismarckbr\u00fccke (aus Richtung Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke) nach A620: Saarlouis -> Saarbr\u00fccken, zwischen AS Saarbr\u00fccken-Bismarckbr\u00fccke und 0.7 km vor AS Saarbr\u00fccken-Sankt Arnual", + "", + "L\u00e4nge: 0.64 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.002522814, + 49.226377156 + ], + [ + 7.0026302, + 49.226326901 + ], + [ + 7.0036046, + 49.225871901 + ], + [ + 7.0040764, + 49.225649901 + ], + [ + 7.0044797, + 49.225479301 + ], + [ + 7.0049207, + 49.225298101 + ], + [ + 7.005135, + 49.225216401 + ], + [ + 7.0055549, + 49.225051901 + ], + [ + 7.0058398, + 49.224950501 + ], + [ + 7.0061908, + 49.224858301 + ], + [ + 7.0065981, + 49.224710201 + ], + [ + 7.0072526, + 49.224480801 + ], + [ + 7.0079817, + 49.224228801 + ], + [ + 7.008658, + 49.223982501 + ], + [ + 7.0091185, + 49.223810901 + ], + [ + 7.0096812, + 49.223585501 + ], + [ + 7.010091765, + 49.223416888 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de53", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.22896606515294,6.996765019686182,49.22807295643455,6.999042057184502", + "point": "49.22896606515294,6.996765019686182", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.22896606515294, + "long": 6.996765019686182 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.7 km hinter AS Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke und AS Saarbr\u00fccken-Bismarckbr\u00fccke nach Abfahrt von der A620: AS Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke (aus Richtung Saarbr\u00fccken-Luisenbr\u00fccke)", + "", + "L\u00e4nge: 0.19 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.99676502, + 49.228966065 + ], + [ + 6.9968271, + 49.228946301 + ], + [ + 6.9973795, + 49.228739601 + ], + [ + 6.9977613, + 49.228588801 + ], + [ + 6.9980055, + 49.228503901 + ], + [ + 6.9982713, + 49.228399401 + ], + [ + 6.9985226, + 49.228294801 + ], + [ + 6.9987532, + 49.228196301 + ], + [ + 6.9990343, + 49.228076701 + ], + [ + 6.999042057, + 49.228072956 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de49", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23617122849854,6.981571428622293,49.236208908404805,6.985397929199525", + "point": "49.23617122849854,6.981571428622293", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Westspangenbr\u00fccke (aus Richtung Saarbr\u00fccken-Malstatter Br\u00fccke) nach A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23617122849854, + "long": 6.981571428622293 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Auffahrt auf die A620: AS Saarbr\u00fccken-Westspangenbr\u00fccke (aus Richtung Saarbr\u00fccken-Malstatter Br\u00fccke) nach A620: Saarlouis -> Saarbr\u00fccken, zwischen AS Saarbr\u00fccken-Malstatter Br\u00fccke und 0.4 km vor AS Saarbr\u00fccken-Luisenbr\u00fccke", + "", + "L\u00e4nge: 0.28 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.981571429, + 49.236171228 + ], + [ + 6.9816543, + 49.236180001 + ], + [ + 6.9820085, + 49.236203901 + ], + [ + 6.9822819, + 49.236213601 + ], + [ + 6.9824246, + 49.236216901 + ], + [ + 6.98254, + 49.236226401 + ], + [ + 6.9826825, + 49.236258001 + ], + [ + 6.9831802, + 49.236240601 + ], + [ + 6.9837316, + 49.236228501 + ], + [ + 6.984535, + 49.236206701 + ], + [ + 6.9847162, + 49.236205501 + ], + [ + 6.9851373, + 49.236203401 + ], + [ + 6.985397929, + 49.236208908 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de45", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23465939345606,6.970034083669065,49.235436734157574,6.9714886903445", + "point": "49.23465939345606,6.970034083669065", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Malstatter Br\u00fccke (aus Richtung Messegel\u00e4nde) nach A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23465939345606, + "long": 6.970034083669065 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Auffahrt auf die A620: AS Saarbr\u00fccken-Malstatter Br\u00fccke (aus Richtung Messegel\u00e4nde) nach A620: Saarlouis -> Saarbr\u00fccken, zwischen Messegel\u00e4nde und 0.1 km vor AS Saarbr\u00fccken-Malstatter Br\u00fccke", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.970034084, + 49.234659393 + ], + [ + 6.9700222, + 49.234667101 + ], + [ + 6.9699985, + 49.234715901 + ], + [ + 6.9699916, + 49.234760701 + ], + [ + 6.9700011, + 49.234805301 + ], + [ + 6.9700273, + 49.234847701 + ], + [ + 6.9700874, + 49.234892601 + ], + [ + 6.9701716, + 49.234934301 + ], + [ + 6.9703078, + 49.234984501 + ], + [ + 6.9709647, + 49.235216301 + ], + [ + 6.9711524, + 49.235289901 + ], + [ + 6.9712863, + 49.235377501 + ], + [ + 6.9713715, + 49.235403001 + ], + [ + 6.97148869, + 49.235436734 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de41", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23366435613084,6.965545354865601,49.23447693959988,6.969511142456123", + "point": "49.23366435613084,6.965545354865601", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23366435613084, + "long": 6.965545354865601 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarlouis -> Saarbr\u00fccken, zwischen 0.2 km hinter Messegel\u00e4nde und AS Saarbr\u00fccken-Malstatter Br\u00fccke nach Abfahrt von der A620: Messegel\u00e4nde (aus Richtung Saarbr\u00fccken-Messegel\u00e4nde)", + "", + "L\u00e4nge: 0.31 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.965545355, + 49.233664356 + ], + [ + 6.9658671, + 49.233678201 + ], + [ + 6.9662208, + 49.233701501 + ], + [ + 6.9664947, + 49.233732501 + ], + [ + 6.9667873, + 49.233788901 + ], + [ + 6.9671946, + 49.233890601 + ], + [ + 6.9674602, + 49.233975401 + ], + [ + 6.9676946, + 49.234063501 + ], + [ + 6.9683507, + 49.234250901 + ], + [ + 6.968682, + 49.234334701 + ], + [ + 6.9690195, + 49.234409801 + ], + [ + 6.9693685, + 49.234463401 + ], + [ + 6.969511142, + 49.23447694 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de39", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.2335023040317,6.9624728311520165,49.233645142207365,6.964965044646423", + "point": "49.2335023040317,6.9624728311520165", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Messegel\u00e4nde (aus Richtung Saarbr\u00fccken-Messegel\u00e4nde)", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.2335023040317, + "long": 6.9624728311520165 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Auffahrt auf die A620: Messegel\u00e4nde (aus Richtung Saarbr\u00fccken-Messegel\u00e4nde)", + "", + "L\u00e4nge: 0.18 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.962472831, + 49.233502304 + ], + [ + 6.9625731, + 49.233533901 + ], + [ + 6.962812, + 49.233551201 + ], + [ + 6.9639643, + 49.233582201 + ], + [ + 6.9645837, + 49.233601501 + ], + [ + 6.964965045, + 49.233645142 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de37", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23348311374119,6.958805667436711,49.23354070798783,6.961966058961668", + "point": "49.23348311374119,6.958805667436711", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23348311374119, + "long": 6.958805667436711 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarlouis -> Saarbr\u00fccken, zwischen 1.2 km hinter AS Saarbr\u00fccken-Gersweiler und AS Saarbr\u00fccken-Messegel\u00e4nde nach Abfahrt von der A620: AS Saarbr\u00fccken-Messegel\u00e4nde (aus Richtung Saarbr\u00fccken-Gersweiler)", + "", + "L\u00e4nge: 0.23 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.958805667, + 49.233483114 + ], + [ + 6.9590715, + 49.233492701 + ], + [ + 6.9601114, + 49.233530901 + ], + [ + 6.9612152, + 49.233569301 + ], + [ + 6.9615262, + 49.233531501 + ], + [ + 6.9619503, + 49.233541401 + ], + [ + 6.961966059, + 49.233540708 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de35", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23712875255349,6.943506920541637,49.23625891049177,6.946560218153455", + "point": "49.23712875255349,6.943506920541637", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Gersweiler (aus Richtung Saarbr\u00fccken-Klarenthal) nach A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23712875255349, + "long": 6.943506920541637 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Auffahrt auf die A620: AS Saarbr\u00fccken-Gersweiler (aus Richtung Saarbr\u00fccken-Klarenthal) nach A620: Saarlouis -> Saarbr\u00fccken, zwischen AS Saarbr\u00fccken-Gersweiler und 1.2 km vor AS Saarbr\u00fccken-Messegel\u00e4nde", + "", + "L\u00e4nge: 0.24 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.943506921, + 49.237128753 + ], + [ + 6.9435209, + 49.237123501 + ], + [ + 6.9437255, + 49.237053501 + ], + [ + 6.9438029, + 49.237031001 + ], + [ + 6.944204, + 49.236907701 + ], + [ + 6.9448887, + 49.236710101 + ], + [ + 6.9459356, + 49.236418001 + ], + [ + 6.9464503, + 49.236299801 + ], + [ + 6.946560218, + 49.23625891 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de33", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23886399968773,6.937044976316718,49.23727876313643,6.943119642288283", + "point": "49.23886399968773,6.937044976316718", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarlouis -> Saarbr\u00fccken", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23886399968773, + "long": 6.937044976316718 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarlouis -> Saarbr\u00fccken, zwischen 1.9 km hinter AS Saarbr\u00fccken-Klarenthal und AS Saarbr\u00fccken-Gersweiler nach Abfahrt von der A620: AS Saarbr\u00fccken-Gersweiler (aus Richtung Saarbr\u00fccken-Klarenthal)", + "", + "L\u00e4nge: 0.48 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.937044976, + 49.238864 + ], + [ + 6.9373601, + 49.238823701 + ], + [ + 6.9377355, + 49.238771101 + ], + [ + 6.9381191, + 49.238708201 + ], + [ + 6.9383741, + 49.238658801 + ], + [ + 6.938631, + 49.238607101 + ], + [ + 6.9388372, + 49.238558701 + ], + [ + 6.9391215, + 49.238446601 + ], + [ + 6.9394742, + 49.238357601 + ], + [ + 6.940036, + 49.238208701 + ], + [ + 6.9410726, + 49.237938001 + ], + [ + 6.941542, + 49.237810901 + ], + [ + 6.942082, + 49.237648901 + ], + [ + 6.9425386, + 49.237495701 + ], + [ + 6.943119642, + 49.237278763 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de29", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23631934590781,6.946645027965183,49.237418614714684,6.943782067413655", + "point": "49.23631934590781,6.946645027965183", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23631934590781, + "long": 6.946645027965183 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarbr\u00fccken -> Saarlouis, zwischen 1.2 km hinter AS Saarbr\u00fccken-Messegel\u00e4nde und AS Saarbr\u00fccken-Gersweiler nach Abfahrt von der A620: AS Saarbr\u00fccken-Gersweiler (aus Richtung Saarbr\u00fccken-Messegel\u00e4nde)", + "", + "L\u00e4nge: 0.24 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.946645028, + 49.236319346 + ], + [ + 6.9465111, + 49.236372101 + ], + [ + 6.9462134, + 49.236530201 + ], + [ + 6.9459783, + 49.236640501 + ], + [ + 6.9456284, + 49.236785201 + ], + [ + 6.9452933, + 49.236909001 + ], + [ + 6.9450266, + 49.237000701 + ], + [ + 6.9443282, + 49.237243801 + ], + [ + 6.9441212, + 49.237311501 + ], + [ + 6.9438548, + 49.237396801 + ], + [ + 6.943782067, + 49.237418615 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de27", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23577447445659,6.971597800123175,49.23381052450696,6.966455277117419", + "point": "49.23577447445659,6.971597800123175", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Malstatter Br\u00fccke (aus Richtung Saarbr\u00fccken-Westspangenbr\u00fccke) nach A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23577447445659, + "long": 6.971597800123175 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Auffahrt auf die A620: AS Saarbr\u00fccken-Malstatter Br\u00fccke (aus Richtung Saarbr\u00fccken-Westspangenbr\u00fccke) nach A620: Saarbr\u00fccken -> Saarlouis, zwischen AS Saarbr\u00fccken-Malstatter Br\u00fccke und 0.3 km vor Messegel\u00e4nde", + "", + "L\u00e4nge: 0.43 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.9715978, + 49.235774474 + ], + [ + 6.9715328, + 49.235754701 + ], + [ + 6.9715116, + 49.235748001 + ], + [ + 6.9705341, + 49.235424501 + ], + [ + 6.9702958, + 49.235347501 + ], + [ + 6.9700704, + 49.235264301 + ], + [ + 6.9698019, + 49.235137601 + ], + [ + 6.969236, + 49.234824501 + ], + [ + 6.9690249, + 49.234726201 + ], + [ + 6.9683728, + 49.234412201 + ], + [ + 6.9677929, + 49.234190501 + ], + [ + 6.9674718, + 49.234068801 + ], + [ + 6.9671445, + 49.233963401 + ], + [ + 6.9667208, + 49.233860801 + ], + [ + 6.9664814, + 49.233814001 + ], + [ + 6.966455277, + 49.233810525 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de25", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.236189077971744,6.976841663615781,49.235882102485675,6.972060331277061", + "point": "49.236189077971744,6.976841663615781", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.236189077971744, + "long": 6.976841663615781 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarbr\u00fccken -> Saarlouis, zwischen 0.5 km hinter AS Saarbr\u00fccken-Westspangenbr\u00fccke und AS Saarbr\u00fccken-Malstatter Br\u00fccke nach Abfahrt von der A620: AS Saarbr\u00fccken-Westspangenbr\u00fccke (aus Richtung Saarbr\u00fccken-Luisenbr\u00fccke)", + "", + "L\u00e4nge: 0.35 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.976841664, + 49.236189078 + ], + [ + 6.9767483, + 49.236189701 + ], + [ + 6.9762872, + 49.236189001 + ], + [ + 6.9759205, + 49.236180001 + ], + [ + 6.975511, + 49.236168501 + ], + [ + 6.9751161, + 49.236189901 + ], + [ + 6.9748532, + 49.236195101 + ], + [ + 6.9746481, + 49.236208301 + ], + [ + 6.9743826, + 49.236225401 + ], + [ + 6.9741659, + 49.236225801 + ], + [ + 6.9739483, + 49.236214301 + ], + [ + 6.9737417, + 49.236192101 + ], + [ + 6.9735444, + 49.236163901 + ], + [ + 6.9729944, + 49.236069901 + ], + [ + 6.972256, + 49.235923501 + ], + [ + 6.972060331, + 49.235882102 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de23", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.2362054974017,6.979173007012558,49.236185755453576,6.977305964992946", + "point": "49.2362054974017,6.979173007012558", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Westspangenbr\u00fccke (aus Richtung Saarbr\u00fccken-Luisenbr\u00fccke) nach A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.2362054974017, + "long": 6.979173007012558 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Auffahrt auf die A620: AS Saarbr\u00fccken-Westspangenbr\u00fccke (aus Richtung Saarbr\u00fccken-Luisenbr\u00fccke) nach A620: Saarbr\u00fccken -> Saarlouis, zwischen AS Saarbr\u00fccken-Westspangenbr\u00fccke und 0.4 km vor AS Saarbr\u00fccken-Malstatter Br\u00fccke", + "", + "L\u00e4nge: 0.14 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.979173007, + 49.236205497 + ], + [ + 6.9790352, + 49.236202001 + ], + [ + 6.9785872, + 49.236174801 + ], + [ + 6.9781498, + 49.236179401 + ], + [ + 6.9779869, + 49.236179801 + ], + [ + 6.977305965, + 49.236185755 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de21", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23644911776758,6.988021472236426,49.236433378770904,6.986425831257363", + "point": "49.23644911776758,6.988021472236426", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23644911776758, + "long": 6.988021472236426 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarbr\u00fccken -> Saarlouis, zwischen 0.2 km hinter AS Saarbr\u00fccken-Luisenbr\u00fccke und AS Saarbr\u00fccken-Westspangenbr\u00fccke nach Abfahrt von der A620: AS Saarbr\u00fccken-Luisenbr\u00fccke (aus Richtung Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke)", + "", + "L\u00e4nge: 0.12 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.988021472, + 49.236449118 + ], + [ + 6.987543, + 49.236457701 + ], + [ + 6.9872534, + 49.236450101 + ], + [ + 6.9870648, + 49.236442501 + ], + [ + 6.9864788, + 49.236434601 + ], + [ + 6.986425831, + 49.236433379 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de17", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23525999551155,6.991347546073423,49.23619214776368,6.990056906038437", + "point": "49.23525999551155,6.991347546073423", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Luisenbr\u00fccke (aus Richtung Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke)", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23525999551155, + "long": 6.991347546073423 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Auffahrt auf die A620: AS Saarbr\u00fccken-Luisenbr\u00fccke (aus Richtung Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke)", + "", + "L\u00e4nge: 0.15 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.991347546, + 49.235259996 + ], + [ + 6.9913379, + 49.235284601 + ], + [ + 6.9913106, + 49.235348901 + ], + [ + 6.99122, + 49.235494701 + ], + [ + 6.9911349, + 49.235597301 + ], + [ + 6.9910131, + 49.235717501 + ], + [ + 6.9909096, + 49.235800501 + ], + [ + 6.9907951, + 49.235886801 + ], + [ + 6.9906098, + 49.236001801 + ], + [ + 6.9903884, + 49.236095701 + ], + [ + 6.9901182, + 49.236171801 + ], + [ + 6.990056906, + 49.236192148 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de15", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23106179882183,6.992979925744647,49.23188881392878,6.9923738446078785", + "point": "49.23106179882183,6.992979925744647", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Bismarckbr\u00fccke (aus Richtung Saarbr\u00fccken-Sankt Arnual)", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23106179882183, + "long": 6.992979925744647 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Abfahrt von der A620: AS Saarbr\u00fccken-Bismarckbr\u00fccke (aus Richtung Saarbr\u00fccken-Sankt Arnual)", + "", + "L\u00e4nge: 0.1 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.992979926, + 49.231061799 + ], + [ + 6.9929709, + 49.231075901 + ], + [ + 6.9928454, + 49.231235201 + ], + [ + 6.9927031, + 49.231415001 + ], + [ + 6.9925737, + 49.231599801 + ], + [ + 6.9924554, + 49.231767201 + ], + [ + 6.992373845, + 49.231888814 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.22826443329691,6.999824116338779,49.23052528421377,6.993554957205595", + "point": "49.22826443329691,6.999824116338779", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Bismarckbr\u00fccke (aus Richtung Saarbr\u00fccken-Sankt Arnual) nach A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.22826443329691, + "long": 6.999824116338779 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Auffahrt auf die A620: AS Saarbr\u00fccken-Bismarckbr\u00fccke (aus Richtung Saarbr\u00fccken-Sankt Arnual) nach A620: Saarbr\u00fccken -> Saarlouis, zwischen AS Saarbr\u00fccken-Bismarckbr\u00fccke und 0.4 km vor AS Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke", + "", + "L\u00e4nge: 0.53 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.999824116, + 49.228264433 + ], + [ + 6.9992352, + 49.228453501 + ], + [ + 6.9983583, + 49.228699801 + ], + [ + 6.9980628, + 49.228776801 + ], + [ + 6.9976635, + 49.228885201 + ], + [ + 6.9973049, + 49.228974101 + ], + [ + 6.9969602, + 49.229059101 + ], + [ + 6.9966462, + 49.229114001 + ], + [ + 6.996307, + 49.229215401 + ], + [ + 6.9957742, + 49.229386101 + ], + [ + 6.9952861, + 49.229568401 + ], + [ + 6.9949266, + 49.229722301 + ], + [ + 6.9945894, + 49.229882901 + ], + [ + 6.9942374, + 49.230072101 + ], + [ + 6.9939745, + 49.230240901 + ], + [ + 6.9936234, + 49.230473401 + ], + [ + 6.993554957, + 49.230525284 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.224640183097875,7.0071859782555785,49.227054497402825,7.0024971371844815", + "point": "49.224640183097875,7.0071859782555785", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Bismarckbr\u00fccke (aus Richtung Saarbr\u00fccken-Sankt Arnual) nach Abfahrt von der A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.224640183097875, + "long": 7.0071859782555785 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Abfahrt von der A620: AS Saarbr\u00fccken-Bismarckbr\u00fccke (aus Richtung Saarbr\u00fccken-Sankt Arnual) nach Abfahrt von der A620: AS Saarbr\u00fccken-Bismarckbr\u00fccke (aus Richtung Saarbr\u00fccken-Sankt Arnual)", + "", + "L\u00e4nge: 0.44 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.007185978, + 49.224640183 + ], + [ + 7.0066691, + 49.224819701 + ], + [ + 7.0063082, + 49.224944901 + ], + [ + 7.0059482, + 49.225083101 + ], + [ + 7.0053421, + 49.225317701 + ], + [ + 7.0050834, + 49.225474901 + ], + [ + 7.0047316, + 49.225662001 + ], + [ + 7.0043078, + 49.225897401 + ], + [ + 7.0035475, + 49.226353201 + ], + [ + 7.0032651, + 49.226528801 + ], + [ + 7.0029979, + 49.226706901 + ], + [ + 7.0025189, + 49.227038901 + ], + [ + 7.002497137, + 49.227054497 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.221169379400095,7.016010316351488,49.22438754346673,7.007921576032052", + "point": "49.221169379400095,7.016010316351488", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Sankt Arnual (aus Richtung Saarbr\u00fccken-Unner)", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.221169379400095, + "long": 7.016010316351488 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Auffahrt auf die A620: AS Saarbr\u00fccken-Sankt Arnual (aus Richtung Saarbr\u00fccken-Unner)", + "", + "L\u00e4nge: 0.69 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.016010316, + 49.221169379 + ], + [ + 7.015754, + 49.221258201 + ], + [ + 7.0155391, + 49.221338001 + ], + [ + 7.0153769, + 49.221401501 + ], + [ + 7.0143555, + 49.221808801 + ], + [ + 7.0128998, + 49.222378101 + ], + [ + 7.0126848, + 49.222464701 + ], + [ + 7.0124722, + 49.222557701 + ], + [ + 7.0121769, + 49.222685901 + ], + [ + 7.0119703, + 49.222782301 + ], + [ + 7.0116934, + 49.222903301 + ], + [ + 7.0113879, + 49.222994501 + ], + [ + 7.0103967, + 49.223431001 + ], + [ + 7.0098388, + 49.223662101 + ], + [ + 7.0092092, + 49.223917001 + ], + [ + 7.0087564, + 49.224090401 + ], + [ + 7.0080633, + 49.224339001 + ], + [ + 7.007921576, + 49.224387543 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.216904786582965,7.0201694769786345,49.21980911163922,7.017453313627709", + "point": "49.216904786582965,7.0201694769786345", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Saarbr\u00fccken -> Saarlouis", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.216904786582965, + "long": 7.0201694769786345 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von A620: Saarbr\u00fccken -> Saarlouis, zwischen 0.9 km hinter AS Saarbr\u00fccken-Unner und AS Saarbr\u00fccken-Sankt Arnual nach Abfahrt von der A620: AS Saarbr\u00fccken-Sankt Arnual (aus Richtung Saarbr\u00fccken-Unner)", + "", + "L\u00e4nge: 0.38 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.020169477, + 49.216904787 + ], + [ + 7.0199738, + 49.217168601 + ], + [ + 7.0198125, + 49.217379601 + ], + [ + 7.019784, + 49.217441201 + ], + [ + 7.0197068, + 49.217561801 + ], + [ + 7.0196585, + 49.217618101 + ], + [ + 7.0194808, + 49.217834801 + ], + [ + 7.0192907, + 49.218041401 + ], + [ + 7.0191825, + 49.218158101 + ], + [ + 7.019041, + 49.218306501 + ], + [ + 7.0188128, + 49.218546101 + ], + [ + 7.0185011, + 49.218857401 + ], + [ + 7.0179435, + 49.219352101 + ], + [ + 7.0177718, + 49.219499901 + ], + [ + 7.0175475, + 49.219688501 + ], + [ + 7.0175, + 49.219745001 + ], + [ + 7.0174564, + 49.219801101 + ], + [ + 7.017453314, + 49.219809112 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.20963271278757,7.024768106051277,49.21018850406675,7.022789013415665", + "point": "49.20963271278757,7.024768106051277", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Unner (aus Richtung Saarbr\u00fccken-G\u00fcdingen) nach A620", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.20963271278757, + "long": 7.024768106051277 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Von Auffahrt auf die A620: AS Saarbr\u00fccken-Unner (aus Richtung Saarbr\u00fccken-G\u00fcdingen) nach A620: Saarbr\u00fccken -> Saarlouis, zwischen AS Saarbr\u00fccken-G\u00fcdingen und 1.1 km vor AS Saarbr\u00fccken-Sankt Arnual", + "", + "L\u00e4nge: 0.47 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.024768106, + 49.209632713 + ], + [ + 7.0247936, + 49.209621601 + ], + [ + 7.0251863, + 49.209327401 + ], + [ + 7.0254767, + 49.209088301 + ], + [ + 7.0257903, + 49.208838501 + ], + [ + 7.025848, + 49.208782101 + ], + [ + 7.025888, + 49.208720601 + ], + [ + 7.0258984, + 49.208658001 + ], + [ + 7.025899, + 49.208596301 + ], + [ + 7.0258748, + 49.208542001 + ], + [ + 7.025809, + 49.208472601 + ], + [ + 7.025748, + 49.208429001 + ], + [ + 7.025682, + 49.208398001 + ], + [ + 7.0256104, + 49.208378301 + ], + [ + 7.0255174, + 49.208364601 + ], + [ + 7.0254193, + 49.208367701 + ], + [ + 7.025311, + 49.208386401 + ], + [ + 7.0251734, + 49.208435501 + ], + [ + 7.0247145, + 49.208612401 + ], + [ + 7.024362, + 49.208827601 + ], + [ + 7.024061, + 49.209023901 + ], + [ + 7.0238909, + 49.209155601 + ], + [ + 7.0237455, + 49.209269801 + ], + [ + 7.0236089, + 49.209392601 + ], + [ + 7.0234631, + 49.209516801 + ], + [ + 7.0233247, + 49.209642701 + ], + [ + 7.0231862, + 49.209775901 + ], + [ + 7.022789013, + 49.210188504 + ] + ] + } + }, + { + "identifier": "2026-003047--vi-bs.2026-04-11_07-00-00-000.devi-bs.2026-04-11_07-00-00-000.de51", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "49.23308466856566,6.990812856213498,49.23159197249725,6.99221869535132", + "point": "49.23308466856566,6.990812856213498", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " AS Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke (aus Richtung Saarbr\u00fccken-Luisenbr\u00fccke)", + "title": "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende", + "coordinate": { + "lat": 49.23308466856566, + "long": 6.990812856213498 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "11.04.26 von 07:00 bis 15:30 Uhr", + "12.04.26 von 07:00 bis 15:30 Uhr", + "", + "Auffahrt auf die A620: AS Saarbr\u00fccken-Wilhelm-Heinrich-Br\u00fccke (aus Richtung Saarbr\u00fccken-Luisenbr\u00fccke)", + "", + "L\u00e4nge: 0.2 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A620 von Saarbr\u00fccken-Unner (AS) Kehrarbeiten Wochenende" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.990812856, + 49.233084669 + ], + [ + 6.9909558, + 49.232925801 + ], + [ + 6.9910921, + 49.232744901 + ], + [ + 6.9911933, + 49.232608901 + ], + [ + 6.9912578, + 49.232531001 + ], + [ + 6.991363, + 49.232435201 + ], + [ + 6.9915999, + 49.232185601 + ], + [ + 6.9920925, + 49.231681001 + ], + [ + 6.992218695, + 49.231591972 + ] + ] + } + } + ] + }, + "A623": { + "roadworks": [ + { + "identifier": "2024-008920--vi-bs.2026-04-07_09-00-00-000.devi-zus.2025-09-10_00-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.29478154043253,7.030701647180338,49.290281320051115,7.024836639153043", + "point": "49.29478154043253,7.030701647180338", + "startLcPosition": "7", + "impact": { + "lower": "Saarbr\u00fccken-Herrensohr", + "upper": "Sulzbach", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Friedrichsthal -> Saarbr\u00fccken", + "title": "A623 | Sulzbach - Saarbr\u00fccken-Herrensohr", + "startTimestamp": "2026-04-07T09:00:00+02:00", + "coordinate": { + "lat": 49.29478154043253, + "long": 7.030701647180338 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 07.04.26 um 09:00 Uhr", + "Ende: 09.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.28)", + "", + "A623: Friedrichsthal -> Saarbr\u00fccken, zwischen 1.3 km hinter AS Sulzbach und 1.1 km vor AS Saarbr\u00fccken-Herrensohr", + "", + "L\u00e4nge: 0.66 km | Maximale Durchfahrtsbreite: 5.95 m", + "", + "A623 Erneuerung AS Dudweiler - AD Friedrichsthal, beide FR, km 4,6 bis km 9,6" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.030701647, + 49.29478154 + ], + [ + 7.0303751, + 49.294503401 + ], + [ + 7.0292858, + 49.293570501 + ], + [ + 7.0280353, + 49.292504501 + ], + [ + 7.0279358, + 49.292419601 + ], + [ + 7.0274514, + 49.292006601 + ], + [ + 7.0270727, + 49.291682001 + ], + [ + 7.0266584, + 49.291362501 + ], + [ + 7.026247, + 49.291079101 + ], + [ + 7.0258192, + 49.290807901 + ], + [ + 7.0253504, + 49.290555501 + ], + [ + 7.024836639, + 49.29028132 + ] + ] + } + } + ] + }, + "A640": { + "roadworks": [] + }, + "A643": { + "roadworks": [ + { + "identifier": "2025-011586--vi-bs.2026-01-12_05-00-00-000.devi-zus.2025-06-03_09-30-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.04547637111499,8.213269621180823,50.05059204912662,8.213047845885942", + "point": "50.04547637111499,8.213269621180823", + "startLcPosition": "3", + "impact": { + "lower": "Schiersteiner Kreuz", + "upper": "Wiesbaden-\u00c4ppelallee", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Mainz -> Wiesbaden", + "title": "A643 | Wiesbaden-\u00c4ppelallee - Schiersteiner Kreuz", + "startTimestamp": "2026-01-12T05:00:00+01:00", + "coordinate": { + "lat": 50.04547637111499, + "long": 8.213269621180823 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.01.26 um 05:00 Uhr", + "Ende: 30.06.26 um 21:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.04.29)", + "", + "A643: Mainz -> Wiesbaden, zwischen 0.2 km hinter AS Wiesbaden-\u00c4ppelallee und 0.2 km vor AK Schiersteiner Kreuz", + "", + "L\u00e4nge: 0.57 km | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A643 Br\u00fcckenneubau BW8" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.213269621, + 50.045476371 + ], + [ + 8.2133184, + 50.046344901 + ], + [ + 8.2132916, + 50.047205701 + ], + [ + 8.2132772, + 50.047624901 + ], + [ + 8.2132243, + 50.048295301 + ], + [ + 8.2132, + 50.048601701 + ], + [ + 8.2131302, + 50.049443301 + ], + [ + 8.2130801, + 50.050045101 + ], + [ + 8.2130618, + 50.050414501 + ], + [ + 8.213047846, + 50.050592049 + ] + ] + } + }, + { + "identifier": "2025-040354--vi-bs.2025-08-20_00-00-00-000.devi-zus.2025-08-20_00-00-00-000_002.de2", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.02946152223463,8.217930517743714,50.027951199394906,8.211317271682578", + "point": "50.02946152223463,8.217930517743714", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AS Mainz-Mombach (aus Richtung Wiesbaden-\u00c4ppelallee)", + "title": "AS MZ-Mombach-Rampen Sperrung der Auffahrtsrampe", + "startTimestamp": "2025-08-20T00:00:00+02:00", + "coordinate": { + "lat": 50.02946152223463, + "long": 8.217930517743714 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 20.08.25 um 00:00 Uhr", + "Ende: 21.08.35 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 21.08.35)", + "", + "Auffahrt auf die A643: AS Mainz-Mombach (aus Richtung Wiesbaden-\u00c4ppelallee)", + "", + "L\u00e4nge: 0.97 km | Maximale Durchfahrtsbreite: 3.25 m | zul\u00e4ssiges Gesamtgewicht: 3.5 t", + "", + "AS MZ-Mombach-Rampen Sperrung der Auffahrtsrampe" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.217930518, + 50.029461522 + ], + [ + 8.2179196, + 50.029466101 + ], + [ + 8.2176786, + 50.029563301 + ], + [ + 8.2168918, + 50.029858301 + ], + [ + 8.2167368, + 50.029913401 + ], + [ + 8.2165686, + 50.029967901 + ], + [ + 8.2163912, + 50.030015701 + ], + [ + 8.2159297, + 50.030126001 + ], + [ + 8.2154626, + 50.030226101 + ], + [ + 8.2149892, + 50.030310801 + ], + [ + 8.2144995, + 50.030388401 + ], + [ + 8.2140227, + 50.030457101 + ], + [ + 8.2133849, + 50.030531901 + ], + [ + 8.2127782, + 50.030591001 + ], + [ + 8.2120382, + 50.030649401 + ], + [ + 8.2116759, + 50.030668501 + ], + [ + 8.211463, + 50.030676001 + ], + [ + 8.2112497, + 50.030678701 + ], + [ + 8.211114, + 50.030677701 + ], + [ + 8.2108783, + 50.030671201 + ], + [ + 8.21061, + 50.030659301 + ], + [ + 8.2104466, + 50.030647001 + ], + [ + 8.2102472, + 50.030626701 + ], + [ + 8.2100803, + 50.030601201 + ], + [ + 8.2099744, + 50.030580401 + ], + [ + 8.2098725, + 50.030552601 + ], + [ + 8.2097758, + 50.030518101 + ], + [ + 8.2096852, + 50.030477201 + ], + [ + 8.2096017, + 50.030430501 + ], + [ + 8.2095264, + 50.030378301 + ], + [ + 8.2094601, + 50.030321401 + ], + [ + 8.2094053, + 50.030259701 + ], + [ + 8.20936, + 50.030195001 + ], + [ + 8.2093248, + 50.030127801 + ], + [ + 8.2092997, + 50.030058701 + ], + [ + 8.2092851, + 50.029988301 + ], + [ + 8.2092812, + 50.029917201 + ], + [ + 8.2092881, + 50.029846101 + ], + [ + 8.2093077, + 50.029769501 + ], + [ + 8.2093393, + 50.029695601 + ], + [ + 8.2093808, + 50.029627001 + ], + [ + 8.209431, + 50.029554501 + ], + [ + 8.2094798, + 50.029497501 + ], + [ + 8.2095314, + 50.029446001 + ], + [ + 8.2095915, + 50.029394001 + ], + [ + 8.2096621, + 50.029341401 + ], + [ + 8.2097463, + 50.029287701 + ], + [ + 8.2098359, + 50.029239301 + ], + [ + 8.2099564, + 50.029185301 + ], + [ + 8.2106252, + 50.028891601 + ], + [ + 8.2107308, + 50.028842801 + ], + [ + 8.2108292, + 50.028788201 + ], + [ + 8.2109197, + 50.028728201 + ], + [ + 8.2110016, + 50.028663301 + ], + [ + 8.2110743, + 50.028593901 + ], + [ + 8.2111371, + 50.028520801 + ], + [ + 8.2111895, + 50.028444301 + ], + [ + 8.2112312, + 50.028365201 + ], + [ + 8.2112618, + 50.028284001 + ], + [ + 8.2112812, + 50.028201301 + ], + [ + 8.211317272, + 50.027951199 + ] + ] + } + } + ] + }, + "A64a": { + "roadworks": [ + { + "identifier": "2026-016745--vi-bs.2026-03-02_16-00-00-000_002.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.799153277864384,6.655910465000491,49.79890932845504,6.655388833863449", + "point": "49.799153277864384,6.655910465000491", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " km 13.85 --> km 13.81", + "title": "A64a Arbeiten an Parkpl\u00e4tzen", + "startTimestamp": "2026-03-02T16:00:00+01:00", + "coordinate": { + "lat": 49.799153277864384, + "long": 6.655910465000491 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.03.26 um 16:00 Uhr", + "Ende: 01.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.05.26)", + "", + "A64: km 13.85 --> km 13.81", + "", + "L\u00e4nge: 0.05 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 5.85 m", + "", + "A64a Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 6.655910465, + 49.799153278 + ], + [ + 6.6558469, + 49.799126901 + ], + [ + 6.6556176, + 49.799022801 + ], + [ + 6.6555395, + 49.798987301 + ], + [ + 6.655388834, + 49.798909328 + ] + ] + } + } + ] + }, + "A650": { + "roadworks": [ + { + "identifier": "2026-009038--vi-bs.2026-04-07_09-00-00-000.devi-bs.2026-03-24_09-00-00-000.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.476174168108756,8.419879406440321,49.46986030922611,8.231971101786373", + "point": "49.476174168108756,8.419879406440321", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 0.06 --> km 13.80", + "title": "BAB A650 Bauwerkspr\u00fcfung", + "coordinate": { + "lat": 49.476174168108756, + "long": 8.419879406440321 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 13:00 Uhr", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A650: km 0.06 --> km 13.80", + "", + "L\u00e4nge: 13.92 km | Maximale Durchfahrtsbreite: 7 m", + "", + "BAB A650 Bauwerkspr\u00fcfung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.419879406, + 49.476174168 + ], + [ + 8.4196783, + 49.476179001 + ], + [ + 8.4193836, + 49.476189001 + ], + [ + 8.4190989, + 49.476205301 + ], + [ + 8.4187588, + 49.476227401 + ], + [ + 8.418187, + 49.476278201 + ], + [ + 8.4173948, + 49.476373901 + ], + [ + 8.4167811, + 49.476459201 + ], + [ + 8.4151828, + 49.476712601 + ], + [ + 8.4141845, + 49.476860601 + ], + [ + 8.4134476, + 49.476956301 + ], + [ + 8.4127204, + 49.477034801 + ], + [ + 8.4125232, + 49.477054701 + ], + [ + 8.4114716, + 49.477140201 + ], + [ + 8.41015, + 49.477202301 + ], + [ + 8.4091088, + 49.477234201 + ], + [ + 8.4081744, + 49.477261501 + ], + [ + 8.4062576, + 49.477312301 + ], + [ + 8.4043627, + 49.477366901 + ], + [ + 8.4024777, + 49.477413301 + ], + [ + 8.3981483, + 49.477529801 + ], + [ + 8.3957434, + 49.477583701 + ], + [ + 8.3937447, + 49.477635901 + ], + [ + 8.3910041, + 49.477713201 + ], + [ + 8.3878766, + 49.477807001 + ], + [ + 8.3847913, + 49.477908001 + ], + [ + 8.3824275, + 49.478026801 + ], + [ + 8.3815461, + 49.478085401 + ], + [ + 8.3799029, + 49.478204701 + ], + [ + 8.3774173, + 49.478433201 + ], + [ + 8.3759067, + 49.478600101 + ], + [ + 8.3745351, + 49.478767901 + ], + [ + 8.3737682, + 49.478871801 + ], + [ + 8.3731175, + 49.478962601 + ], + [ + 8.3727468, + 49.479016001 + ], + [ + 8.3708544, + 49.479291501 + ], + [ + 8.3704929, + 49.479348401 + ], + [ + 8.3686698, + 49.479627701 + ], + [ + 8.3684687, + 49.479659801 + ], + [ + 8.3665253, + 49.479966301 + ], + [ + 8.3662782, + 49.480006201 + ], + [ + 8.3653351, + 49.480155201 + ], + [ + 8.3635785, + 49.480444401 + ], + [ + 8.3626161, + 49.480597001 + ], + [ + 8.3618852, + 49.480705401 + ], + [ + 8.3609766, + 49.480823301 + ], + [ + 8.3601827, + 49.480931001 + ], + [ + 8.3595536, + 49.481025001 + ], + [ + 8.359067, + 49.481094601 + ], + [ + 8.3586131, + 49.481158801 + ], + [ + 8.3580219, + 49.481241101 + ], + [ + 8.3568432, + 49.481395901 + ], + [ + 8.3552582, + 49.481588201 + ], + [ + 8.3545237, + 49.481667501 + ], + [ + 8.3542509, + 49.481697001 + ], + [ + 8.3540664, + 49.481715601 + ], + [ + 8.353526, + 49.481771301 + ], + [ + 8.3526007, + 49.481857101 + ], + [ + 8.3511687, + 49.481964001 + ], + [ + 8.3501792, + 49.482032301 + ], + [ + 8.3486412, + 49.482115801 + ], + [ + 8.3478028, + 49.482153101 + ], + [ + 8.3451067, + 49.482231901 + ], + [ + 8.3429593, + 49.482236901 + ], + [ + 8.3403609, + 49.482181401 + ], + [ + 8.3384596, + 49.482094901 + ], + [ + 8.3366469, + 49.481984701 + ], + [ + 8.3349209, + 49.481837801 + ], + [ + 8.333146, + 49.481668901 + ], + [ + 8.3313137, + 49.481439301 + ], + [ + 8.3303149, + 49.481304501 + ], + [ + 8.3277178, + 49.480905901 + ], + [ + 8.3271536, + 49.480812001 + ], + [ + 8.32614, + 49.480631801 + ], + [ + 8.3258924, + 49.480587901 + ], + [ + 8.32462, + 49.480343901 + ], + [ + 8.3228262, + 49.479967701 + ], + [ + 8.3210402, + 49.479555701 + ], + [ + 8.3206164, + 49.479452401 + ], + [ + 8.3195495, + 49.479188601 + ], + [ + 8.3176558, + 49.478686201 + ], + [ + 8.3170646, + 49.478524401 + ], + [ + 8.316129, + 49.478266301 + ], + [ + 8.3159267, + 49.478209301 + ], + [ + 8.3144933, + 49.477810201 + ], + [ + 8.3136235, + 49.477554501 + ], + [ + 8.3128725, + 49.477355101 + ], + [ + 8.3120293, + 49.477111501 + ], + [ + 8.3095231, + 49.476394601 + ], + [ + 8.3071456, + 49.475712701 + ], + [ + 8.3056045, + 49.475281301 + ], + [ + 8.3036031, + 49.474753401 + ], + [ + 8.3021741, + 49.474394401 + ], + [ + 8.3010578, + 49.474124101 + ], + [ + 8.2999559, + 49.473873401 + ], + [ + 8.2996601, + 49.473806601 + ], + [ + 8.2984237, + 49.473537901 + ], + [ + 8.2963323, + 49.473147501 + ], + [ + 8.2953319, + 49.472973001 + ], + [ + 8.2943374, + 49.472813901 + ], + [ + 8.2936061, + 49.472712101 + ], + [ + 8.2929302, + 49.472623801 + ], + [ + 8.2919747, + 49.472517501 + ], + [ + 8.2903708, + 49.472352301 + ], + [ + 8.2890403, + 49.472240001 + ], + [ + 8.288346, + 49.472192001 + ], + [ + 8.2876899, + 49.472151401 + ], + [ + 8.2856979, + 49.472064301 + ], + [ + 8.2850579, + 49.472047801 + ], + [ + 8.2842711, + 49.472034801 + ], + [ + 8.2836201, + 49.472023701 + ], + [ + 8.2823504, + 49.472009701 + ], + [ + 8.2814087, + 49.472014701 + ], + [ + 8.2805621, + 49.472016501 + ], + [ + 8.2788612, + 49.472042201 + ], + [ + 8.2768888, + 49.472092701 + ], + [ + 8.2756722, + 49.472118301 + ], + [ + 8.2736644, + 49.472180301 + ], + [ + 8.2716997, + 49.472240901 + ], + [ + 8.2670565, + 49.472387501 + ], + [ + 8.2633874, + 49.472500101 + ], + [ + 8.2546374, + 49.472772701 + ], + [ + 8.2498557, + 49.472911301 + ], + [ + 8.2478355, + 49.472924901 + ], + [ + 8.2469728, + 49.472913001 + ], + [ + 8.2458386, + 49.472876201 + ], + [ + 8.2455687, + 49.472860001 + ], + [ + 8.2452473, + 49.472841801 + ], + [ + 8.2443808, + 49.472776801 + ], + [ + 8.2436658, + 49.472711701 + ], + [ + 8.2431215, + 49.472661901 + ], + [ + 8.2429154, + 49.472635401 + ], + [ + 8.2422731, + 49.472556101 + ], + [ + 8.2414678, + 49.472442201 + ], + [ + 8.2410822, + 49.472378401 + ], + [ + 8.2405338, + 49.472286201 + ], + [ + 8.2400153, + 49.472193701 + ], + [ + 8.2396732, + 49.472133801 + ], + [ + 8.2389836, + 49.471996501 + ], + [ + 8.2384043, + 49.471863701 + ], + [ + 8.2378228, + 49.471722801 + ], + [ + 8.2375679, + 49.471657601 + ], + [ + 8.2369545, + 49.471493901 + ], + [ + 8.2360263, + 49.471222001 + ], + [ + 8.2356825, + 49.471113601 + ], + [ + 8.2351836, + 49.470958501 + ], + [ + 8.2343232, + 49.470681201 + ], + [ + 8.2332699, + 49.470324501 + ], + [ + 8.2329588, + 49.470212501 + ], + [ + 8.232727, + 49.470125301 + ], + [ + 8.232121, + 49.469913901 + ], + [ + 8.231971102, + 49.469860309 + ] + ] + } + }, + { + "identifier": "2026-009038--vi-bs.2026-04-07_09-00-00-000.devi-bs.2026-03-24_09-00-00-000.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "49.46978875698008,8.23218852048013,49.47605500367725,8.419718154035191", + "point": "49.46978875698008,8.23218852048013", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 13.79 --> km 0.07", + "title": "BAB A650 Bauwerkspr\u00fcfung", + "coordinate": { + "lat": 49.46978875698008, + "long": 8.23218852048013 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 von 08:00 bis 13:00 Uhr", + "13.04.26 von 09:00 bis 15:00 Uhr", + "14.04.26 von 09:00 bis 15:00 Uhr", + "15.04.26 von 09:00 bis 15:00 Uhr", + "16.04.26 von 09:00 bis 15:00 Uhr", + "", + "A650: km 13.79 --> km 0.07", + "", + "L\u00e4nge: 13.9 km | Maximale Durchfahrtsbreite: 3.5 m", + "", + "BAB A650 Bauwerkspr\u00fcfung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.23218852, + 49.469788757 + ], + [ + 8.2327024, + 49.469971501 + ], + [ + 8.2331115, + 49.470128601 + ], + [ + 8.2341664, + 49.470497001 + ], + [ + 8.2354046, + 49.470901301 + ], + [ + 8.2363305, + 49.471184301 + ], + [ + 8.2366698, + 49.471280901 + ], + [ + 8.237068, + 49.471394401 + ], + [ + 8.2375986, + 49.471538701 + ], + [ + 8.2381703, + 49.471682101 + ], + [ + 8.2390756, + 49.471893801 + ], + [ + 8.2406486, + 49.472208501 + ], + [ + 8.2411478, + 49.472295601 + ], + [ + 8.2416491, + 49.472377301 + ], + [ + 8.242306, + 49.472467001 + ], + [ + 8.2429795, + 49.472550201 + ], + [ + 8.2436837, + 49.472623501 + ], + [ + 8.2443948, + 49.472688601 + ], + [ + 8.2452813, + 49.472754701 + ], + [ + 8.2461633, + 49.472799201 + ], + [ + 8.2469938, + 49.472823301 + ], + [ + 8.2478514, + 49.472837201 + ], + [ + 8.2498515, + 49.472823601 + ], + [ + 8.2546322, + 49.472685101 + ], + [ + 8.2633701, + 49.472411801 + ], + [ + 8.2670491, + 49.472301901 + ], + [ + 8.2716965, + 49.472153801 + ], + [ + 8.2736823, + 49.472094901 + ], + [ + 8.2756618, + 49.472031701 + ], + [ + 8.2768796, + 49.471997101 + ], + [ + 8.2781309, + 49.471962701 + ], + [ + 8.280002, + 49.471935101 + ], + [ + 8.2814177, + 49.471924901 + ], + [ + 8.2823535, + 49.471922001 + ], + [ + 8.2836775, + 49.471930701 + ], + [ + 8.2842752, + 49.471944301 + ], + [ + 8.2850622, + 49.471955701 + ], + [ + 8.2853405, + 49.471964401 + ], + [ + 8.2857052, + 49.471976501 + ], + [ + 8.2858978, + 49.471981501 + ], + [ + 8.2861804, + 49.471988801 + ], + [ + 8.287705, + 49.472064401 + ], + [ + 8.2884745, + 49.472110001 + ], + [ + 8.2890513, + 49.472148301 + ], + [ + 8.290395, + 49.472264101 + ], + [ + 8.2920197, + 49.472430601 + ], + [ + 8.292964, + 49.472533101 + ], + [ + 8.2936319, + 49.472620301 + ], + [ + 8.2943726, + 49.472729001 + ], + [ + 8.2953557, + 49.472883901 + ], + [ + 8.2963545, + 49.473050001 + ], + [ + 8.298511, + 49.473461101 + ], + [ + 8.2997061, + 49.473723401 + ], + [ + 8.3000022, + 49.473788901 + ], + [ + 8.3010843, + 49.474041301 + ], + [ + 8.3022006, + 49.474311701 + ], + [ + 8.3036486, + 49.474675301 + ], + [ + 8.3049927, + 49.475022201 + ], + [ + 8.3069482, + 49.475558501 + ], + [ + 8.3095965, + 49.476318301 + ], + [ + 8.3114407, + 49.476842001 + ], + [ + 8.3120361, + 49.477010301 + ], + [ + 8.3128764, + 49.477253401 + ], + [ + 8.3129509, + 49.477275601 + ], + [ + 8.313955, + 49.477567501 + ], + [ + 8.3142723, + 49.477650501 + ], + [ + 8.3159599, + 49.478121201 + ], + [ + 8.3161673, + 49.478180201 + ], + [ + 8.3170106, + 49.478412501 + ], + [ + 8.3174346, + 49.478528101 + ], + [ + 8.319465, + 49.479077101 + ], + [ + 8.3207928, + 49.479403501 + ], + [ + 8.3212143, + 49.479508301 + ], + [ + 8.3220009, + 49.479682001 + ], + [ + 8.3228685, + 49.479886101 + ], + [ + 8.3246561, + 49.480260401 + ], + [ + 8.3259214, + 49.480502901 + ], + [ + 8.3261686, + 49.480547801 + ], + [ + 8.3277931, + 49.480828301 + ], + [ + 8.3295798, + 49.481095401 + ], + [ + 8.3303469, + 49.481218701 + ], + [ + 8.3313375, + 49.481359301 + ], + [ + 8.3331501, + 49.481570401 + ], + [ + 8.3349232, + 49.481746701 + ], + [ + 8.3366322, + 49.481887501 + ], + [ + 8.3384675, + 49.482001301 + ], + [ + 8.3403563, + 49.482072101 + ], + [ + 8.3429469, + 49.482126701 + ], + [ + 8.3451112, + 49.482131401 + ], + [ + 8.347432, + 49.482081201 + ], + [ + 8.3482788, + 49.482045501 + ], + [ + 8.3501794, + 49.481944301 + ], + [ + 8.3511407, + 49.481875701 + ], + [ + 8.3525969, + 49.481769601 + ], + [ + 8.3535519, + 49.481681301 + ], + [ + 8.3536826, + 49.481667001 + ], + [ + 8.3541334, + 49.481621301 + ], + [ + 8.354397, + 49.481591501 + ], + [ + 8.3555096, + 49.481469201 + ], + [ + 8.3581181, + 49.481134501 + ], + [ + 8.3586226, + 49.481062801 + ], + [ + 8.3590771, + 49.480998401 + ], + [ + 8.3596644, + 49.480915201 + ], + [ + 8.3615665, + 49.480613801 + ], + [ + 8.3658312, + 49.479945901 + ], + [ + 8.3662291, + 49.479878401 + ], + [ + 8.3664735, + 49.479831501 + ], + [ + 8.3669119, + 49.479753301 + ], + [ + 8.3683994, + 49.479519001 + ], + [ + 8.3685969, + 49.479487001 + ], + [ + 8.3704068, + 49.479208901 + ], + [ + 8.3707864, + 49.479150801 + ], + [ + 8.3716986, + 49.479015301 + ], + [ + 8.375154, + 49.478543901 + ], + [ + 8.3779556, + 49.478248601 + ], + [ + 8.3798865, + 49.478075201 + ], + [ + 8.3808565, + 49.478006501 + ], + [ + 8.382402, + 49.477902501 + ], + [ + 8.3847707, + 49.477781201 + ], + [ + 8.3878982, + 49.477675701 + ], + [ + 8.3910005, + 49.477582001 + ], + [ + 8.3935222, + 49.477516501 + ], + [ + 8.3981458, + 49.477398801 + ], + [ + 8.4024828, + 49.477280801 + ], + [ + 8.404355, + 49.477234301 + ], + [ + 8.4062261, + 49.477185001 + ], + [ + 8.4082916, + 49.477132101 + ], + [ + 8.4092212, + 49.477111001 + ], + [ + 8.4101423, + 49.477079701 + ], + [ + 8.4114569, + 49.477015901 + ], + [ + 8.4124636, + 49.476930801 + ], + [ + 8.4126596, + 49.476911701 + ], + [ + 8.4133971, + 49.476829801 + ], + [ + 8.4140959, + 49.476736401 + ], + [ + 8.4151611, + 49.476576601 + ], + [ + 8.4165685, + 49.476364901 + ], + [ + 8.417175, + 49.476275201 + ], + [ + 8.4181438, + 49.476157301 + ], + [ + 8.4187177, + 49.476106401 + ], + [ + 8.419164, + 49.476080001 + ], + [ + 8.4195642, + 49.476061501 + ], + [ + 8.419718154, + 49.476055004 + ] + ] + } + } + ] + }, + "A659": { + "roadworks": [ + { + "identifier": "2025-062696--vi-bs.2026-01-28_22-00-00-000.devi-bs.2026-01-27_22-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.546084453132465,8.618108192923073,49.54863287320921,8.623562083194274", + "point": "49.546084453132465,8.618108192923073", + "startLcPosition": "5", + "impact": { + "lower": "Weinheim", + "upper": "Viernheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Viernheim -> Weinheim", + "title": "A659 | Viernheim - Weinheim", + "startTimestamp": "2026-01-28T22:00:00+01:00", + "coordinate": { + "lat": 49.546084453132465, + "long": 8.618108192923073 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 28.01.26 um 22:00 Uhr", + "Ende: 04.05.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 04.05.26)", + "", + "A659: Viernheim -> Weinheim, zwischen 0.8 km hinter Viernheim und 0.3 km vor AK Weinheim", + "", + "L\u00e4nge: 0.5 km | Maximale Durchfahrtsbreite: 7.25 m", + "", + "BAB A659 Aufbau der TSE bzgl. der Schutzplankenverl\u00e4ngerung f\u00fcr Sicherung des Ger\u00fcstes " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.618108193, + 49.546084453 + ], + [ + 8.6183849, + 49.546313701 + ], + [ + 8.6189541, + 49.546735601 + ], + [ + 8.6190335, + 49.546789301 + ], + [ + 8.6195771, + 49.547136001 + ], + [ + 8.6200238, + 49.547383801 + ], + [ + 8.6204978, + 49.547618601 + ], + [ + 8.6211688, + 49.547918301 + ], + [ + 8.6218335, + 49.548163501 + ], + [ + 8.6225544, + 49.548388201 + ], + [ + 8.6231221, + 49.548534701 + ], + [ + 8.623562083, + 49.548632873 + ] + ] + } + }, + { + "identifier": "2026-016490--vi-bs.2026-04-08_08-00-00-000.devi-bs.2026-03-31_15-00-00-000_001.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.549123575098285,8.627057354054877,49.54915394335224,8.626812944598514", + "point": "49.549123575098285,8.627057354054877", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Weinheim (aus Richtung Weinheim B38)", + "title": "A5 FBE AK Weinheim, FR Heidelberg - Wurzelrodungsarbeiten", + "startTimestamp": "2026-04-08T08:00:00+02:00", + "coordinate": { + "lat": 49.549123575098285, + "long": 8.627057354054877 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 08.04.26 um 08:00 Uhr", + "Ende: 15.04.26 um 22:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "Abfahrt von der A659: AK Weinheim (aus Richtung Weinheim B38)", + "", + "L\u00e4nge: 0.02 km | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A5 FBE AK Weinheim, FR Heidelberg - Wurzelrodungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.627057354, + 49.549123575 + ], + [ + 8.626812945, + 49.549153943 + ] + ] + } + }, + { + "identifier": "2026-016490--vi-bs.2026-03-31_15-00-00-000.devi-bs.2026-03-31_15-00-00-000_001.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "49.548600147903,8.627258032811179,49.54889713580868,8.626327989888178", + "point": "49.548600147903,8.627258032811179", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Weinheim (aus Richtung Viernheim)", + "title": "A5 FBE AK Weinheim, FR Heidelberg - Wurzelrodungsarbeiten", + "startTimestamp": "2026-03-31T15:00:00+02:00", + "coordinate": { + "lat": 49.548600147903, + "long": 8.627258032811179 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 31.03.26 um 15:00 Uhr", + "Ende: 20.04.26 um 05:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 20.04.26)", + "", + "Auffahrt auf die A659: AK Weinheim (aus Richtung Viernheim)", + "", + "L\u00e4nge: 0.26 km | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 FBE AK Weinheim, FR Heidelberg - Wurzelrodungsarbeiten" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.627258033, + 49.548600148 + ], + [ + 8.6271379, + 49.548281601 + ], + [ + 8.6270886, + 49.548209101 + ], + [ + 8.6270343, + 49.548152501 + ], + [ + 8.6269684, + 49.548101401 + ], + [ + 8.6268921, + 49.548056701 + ], + [ + 8.626807, + 49.548019401 + ], + [ + 8.6267159, + 49.547990401 + ], + [ + 8.6266196, + 49.547969801 + ], + [ + 8.6265198, + 49.547958001 + ], + [ + 8.6264185, + 49.547955201 + ], + [ + 8.6263175, + 49.547961501 + ], + [ + 8.6262188, + 49.547976701 + ], + [ + 8.6261228, + 49.548004301 + ], + [ + 8.6260338, + 49.548040601 + ], + [ + 8.6259536, + 49.548084601 + ], + [ + 8.6258839, + 49.548135601 + ], + [ + 8.6258261, + 49.548192501 + ], + [ + 8.6257814, + 49.548254201 + ], + [ + 8.6257551, + 49.548307601 + ], + [ + 8.6257385, + 49.548362501 + ], + [ + 8.625732, + 49.548418401 + ], + [ + 8.6257356, + 49.548474401 + ], + [ + 8.6257493, + 49.548529701 + ], + [ + 8.6257757, + 49.548585001 + ], + [ + 8.6258118, + 49.548638001 + ], + [ + 8.6258572, + 49.548687801 + ], + [ + 8.6259112, + 49.548733901 + ], + [ + 8.6259731, + 49.548775601 + ], + [ + 8.6260404, + 49.548811501 + ], + [ + 8.6261136, + 49.548842301 + ], + [ + 8.6261916, + 49.548867401 + ], + [ + 8.6262736, + 49.548886601 + ], + [ + 8.62632799, + 49.548897136 + ] + ] + } + } + ] + }, + "A661": { + "roadworks": [ + { + "identifier": "2024-019990--vi-bs.2025-12-16_05-00-00-000.devi-zus.2025-08-20_00-00-00-000.de13", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.05442616954658,8.723803177384164,50.074469344379914,8.734305975096968", + "point": "50.05442616954658,8.723803177384164", + "startLcPosition": "3", + "impact": { + "lower": "Buchrain", + "upper": "Neu-Isenburg", + "symbols": [ + "ARROW_DOWN", + "BORDER_LEFT", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "SEPARATE", + "CLOSED", + "CLOSED", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Bad Homburg", + "title": "A661 | Neu-Isenburg - Buchrain", + "startTimestamp": "2025-12-16T05:00:00+01:00", + "coordinate": { + "lat": 50.05442616954658, + "long": 8.723803177384164 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.12.25 um 05:00 Uhr", + "Ende: 30.04.27 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "A661: Darmstadt -> Bad Homburg, zwischen 0.5 km hinter AS Neu-Isenburg und 0.5 km vor Buchrain", + "", + "L\u00e4nge: 2.38 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.723803177, + 50.05442617 + ], + [ + 8.7238514, + 50.054680701 + ], + [ + 8.7241529, + 50.056333801 + ], + [ + 8.7241885, + 50.056528801 + ], + [ + 8.7243781, + 50.057387601 + ], + [ + 8.7245601, + 50.058149901 + ], + [ + 8.7247425, + 50.058750901 + ], + [ + 8.7248824, + 50.059243901 + ], + [ + 8.7252012, + 50.060207801 + ], + [ + 8.7254264, + 50.060851401 + ], + [ + 8.7257049, + 50.061560001 + ], + [ + 8.7259945, + 50.062277301 + ], + [ + 8.7262176, + 50.062780201 + ], + [ + 8.7265033, + 50.063384301 + ], + [ + 8.7268148, + 50.063971001 + ], + [ + 8.7269999, + 50.064336301 + ], + [ + 8.7273392, + 50.064952101 + ], + [ + 8.7276012, + 50.065510801 + ], + [ + 8.7279266, + 50.066058501 + ], + [ + 8.7280951, + 50.066334801 + ], + [ + 8.7282693, + 50.066609301 + ], + [ + 8.7286343, + 50.067178401 + ], + [ + 8.7290165, + 50.067745401 + ], + [ + 8.7293681, + 50.068245301 + ], + [ + 8.7299513, + 50.069039001 + ], + [ + 8.730356, + 50.069574601 + ], + [ + 8.7307652, + 50.070088901 + ], + [ + 8.7309801, + 50.070355901 + ], + [ + 8.7311376, + 50.070538401 + ], + [ + 8.7318033, + 50.071299401 + ], + [ + 8.7324886, + 50.072120301 + ], + [ + 8.7327451, + 50.072426101 + ], + [ + 8.7335086, + 50.073389101 + ], + [ + 8.7342145, + 50.074331501 + ], + [ + 8.734305975, + 50.074469344 + ] + ] + } + }, + { + "identifier": "2026-013809--vi-bs.2026-03-27_12-00-00-000.devi-zus.2026-03-27_08-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.07569384401445,8.735089466743712,50.080977425452765,8.736808034325124", + "point": "50.07569384401445,8.735089466743712", + "startLcPosition": "4", + "impact": { + "lower": "Offenbach-Taunusring", + "upper": "Offenbacher Kreuz", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Bad Homburg", + "title": "A661 | Offenbacher Kreuz - Offenbach-Taunusring", + "startTimestamp": "2026-03-27T12:00:00+01:00", + "coordinate": { + "lat": 50.07569384401445, + "long": 8.735089466743712 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 12:00 Uhr", + "Ende: 30.09.26 um 14:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 30.09.26)", + "", + "A661: Darmstadt -> Bad Homburg, zwischen 1.4 km hinter AK Offenbacher Kreuz und 1.7 km vor AS Offenbach-Taunusring", + "", + "L\u00e4nge: 0.6 km | Maximale Durchfahrtsbreite: 10.5 m", + "", + "A661 Rastplatz Buchrain Ost_Fa. ENACO Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.735089467, + 50.075693844 + ], + [ + 8.7352302, + 50.075927001 + ], + [ + 8.7356003, + 50.076663801 + ], + [ + 8.7361043, + 50.077858101 + ], + [ + 8.7362154, + 50.078162601 + ], + [ + 8.7363655, + 50.078669101 + ], + [ + 8.7364923, + 50.079218601 + ], + [ + 8.7366301, + 50.079810801 + ], + [ + 8.7367433, + 50.080459901 + ], + [ + 8.736808034, + 50.080977425 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-12-16_05-00-00-000.devi-zus.2025-08-20_00-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.074538077659504,8.734068042538455,50.054444688810065,8.723566183429211", + "point": "50.074538077659504,8.734068042538455", + "startLcPosition": "5", + "impact": { + "lower": "Neu-Isenburg", + "upper": "Buchrain", + "symbols": [ + "CLOSED", + "BORDER_LEFT", + "CLOSED", + "CLOSED", + "CLOSED", + "SEPARATE", + "ARROW_DOWN", + "ARROW_DOWN", + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bad Homburg -> Darmstadt", + "title": "A661 | Buchrain - Neu-Isenburg", + "startTimestamp": "2025-12-16T05:00:00+01:00", + "coordinate": { + "lat": 50.074538077659504, + "long": 8.734068042538455 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.12.25 um 05:00 Uhr", + "Ende: 30.04.27 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "A661: Bad Homburg -> Darmstadt, zwischen 0.5 km hinter Buchrain und 0.5 km vor AS Neu-Isenburg", + "", + "L\u00e4nge: 2.38 km | Maximale Durchfahrtsbreite: 6.25 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.734068043, + 50.074538078 + ], + [ + 8.7336216, + 50.073922001 + ], + [ + 8.7329407, + 50.072989301 + ], + [ + 8.7325789, + 50.072544701 + ], + [ + 8.7316586, + 50.071420301 + ], + [ + 8.7308252, + 50.070407701 + ], + [ + 8.7306099, + 50.070142201 + ], + [ + 8.7301965, + 50.069622101 + ], + [ + 8.7298066, + 50.069115001 + ], + [ + 8.7295089, + 50.068712401 + ], + [ + 8.7292098, + 50.068302001 + ], + [ + 8.7288675, + 50.067815801 + ], + [ + 8.7284234, + 50.067250901 + ], + [ + 8.728054, + 50.066633301 + ], + [ + 8.7277481, + 50.066135401 + ], + [ + 8.7274018, + 50.065542401 + ], + [ + 8.7272304, + 50.065239101 + ], + [ + 8.7270736, + 50.064966101 + ], + [ + 8.726743, + 50.064349001 + ], + [ + 8.7265298, + 50.063956101 + ], + [ + 8.7261299, + 50.063113301 + ], + [ + 8.7256594, + 50.062062801 + ], + [ + 8.7253145, + 50.061212801 + ], + [ + 8.7250724, + 50.060523101 + ], + [ + 8.7249177, + 50.060125401 + ], + [ + 8.7247749, + 50.059716601 + ], + [ + 8.7244172, + 50.058485101 + ], + [ + 8.7243398, + 50.058173901 + ], + [ + 8.7241476, + 50.057416701 + ], + [ + 8.7239637, + 50.056534901 + ], + [ + 8.7236203, + 50.054733401 + ], + [ + 8.723566183, + 50.054444689 + ] + ] + } + }, + { + "identifier": "2026-014916--vi-bs.2026-03-27_16-00-00-000.devi-zus.2026-03-27_16-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.08047314385048,8.736523617703513,50.076414502649115,8.735228614181825", + "point": "50.08047314385048,8.736523617703513", + "startLcPosition": "6", + "impact": { + "lower": "Offenbacher Kreuz", + "upper": "Offenbach-Taunusring", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bad Homburg -> Darmstadt", + "title": "A661 | Offenbach-Taunusring - Offenbacher Kreuz", + "startTimestamp": "2026-03-27T16:00:00+01:00", + "coordinate": { + "lat": 50.08047314385048, + "long": 8.736523617703513 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 27.03.26 um 16:00 Uhr", + "Ende: 05.06.26 um 10:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 05.06.26)", + "", + "A661: Bad Homburg -> Darmstadt, zwischen 1.8 km hinter AS Offenbach-Taunusring und 1.4 km vor AK Offenbacher Kreuz", + "", + "L\u00e4nge: 0.46 km | Maximale Durchfahrtsbreite: 10.25 m", + "", + "A661 Rastplatz Buchrain West (W. Kressmann Rohrleitungsbau GmbH) Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.736523618, + 50.080473144 + ], + [ + 8.7364134, + 50.079804101 + ], + [ + 8.7363048, + 50.079239101 + ], + [ + 8.7361549, + 50.078708501 + ], + [ + 8.7359454, + 50.078064401 + ], + [ + 8.7356523, + 50.077288701 + ], + [ + 8.735228614, + 50.076414503 + ] + ] + } + }, + { + "identifier": "2026-017666--vi-fbm.2026-04-10_20-00-00-000.devi-zus.2026-04-10_20-00-00-000_001.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.1828556023819,8.6549113177848,50.19177931533503,8.655249998105454", + "point": "50.1828556023819,8.6549113177848", + "startLcPosition": "13", + "impact": { + "lower": "Frankfurt am Main-Nieder-Eschbach", + "upper": "Frankfurt am Main-Heddernheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Darmstadt -> Bad Homburg", + "title": "A661 | Frankfurt am Main-Heddernheim - Frankfurt am Main-Nieder-Eschbach", + "coordinate": { + "lat": 50.1828556023819, + "long": 8.6549113177848 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "10.04.26 20:00 bis zum 11.04.26 06:00 Uhr.", + "14.04.26 von 20:00 bis 24:00 Uhr", + "15.04.26 von 00:15 bis 06:00 Uhr", + "", + "A661: Darmstadt -> Bad Homburg, zwischen 0.8 km hinter AS Frankfurt am Main-Heddernheim und 0.5 km vor AS Frankfurt am Main-Nieder-Eschbach", + "", + "L\u00e4nge: 1.1 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3 m", + "", + "Von A661 Darmstadt - Bad Homburg, zwischen 1.4 km hinter AD Preungesheimer Dreieck und AS Frankfurt am Main-Heddernheim nach Abfahrt von der A661 AS Frankfurt am Main-Eckenheim (aus Richtung Preungesheimer Dreieck) Baustelleneinrichtung" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.654911318, + 50.182855602 + ], + [ + 8.6552156, + 50.183032001 + ], + [ + 8.6553883, + 50.183135801 + ], + [ + 8.655625, + 50.183296901 + ], + [ + 8.655855, + 50.183456801 + ], + [ + 8.6560056, + 50.183571001 + ], + [ + 8.6561431, + 50.183681301 + ], + [ + 8.6564653, + 50.183942201 + ], + [ + 8.6566335, + 50.184102301 + ], + [ + 8.6567568, + 50.184222901 + ], + [ + 8.6570456, + 50.184540001 + ], + [ + 8.6572958, + 50.184875201 + ], + [ + 8.6574293, + 50.185074601 + ], + [ + 8.6575423, + 50.185260201 + ], + [ + 8.6576799, + 50.185521701 + ], + [ + 8.6578585, + 50.185979601 + ], + [ + 8.6579562, + 50.186307201 + ], + [ + 8.6579998, + 50.186529501 + ], + [ + 8.6580326, + 50.186741801 + ], + [ + 8.6580494, + 50.187035001 + ], + [ + 8.6580442, + 50.187355801 + ], + [ + 8.6580313, + 50.187504801 + ], + [ + 8.6580117, + 50.187647501 + ], + [ + 8.6579413, + 50.187968201 + ], + [ + 8.6578531, + 50.188274201 + ], + [ + 8.657803, + 50.188407901 + ], + [ + 8.6576641, + 50.188758601 + ], + [ + 8.657439, + 50.189147701 + ], + [ + 8.657235, + 50.189462001 + ], + [ + 8.6570522, + 50.189725701 + ], + [ + 8.6568699, + 50.189971801 + ], + [ + 8.6562686, + 50.190680601 + ], + [ + 8.6561006, + 50.190878601 + ], + [ + 8.6557354, + 50.191273801 + ], + [ + 8.655249998, + 50.191779315 + ] + ] + } + }, + { + "identifier": "2024-010225--vi-bs.2026-04-02_04-00-00-000.devi-zus.2026-03-01_09-30-00-000_020.f.de26", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.183496698478216,8.655907614330342,50.19177931533503,8.655249998105454", + "point": "50.183496698478216,8.655907614330342", + "startLcPosition": "13", + "impact": { + "lower": "Frankfurt am Main-Nieder-Eschbach", + "upper": "Frankfurt am Main-Heddernheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Bad Homburg", + "title": "A661 | Frankfurt am Main-Heddernheim - Frankfurt am Main-Nieder-Eschbach", + "startTimestamp": "2026-04-02T04:00:00+02:00", + "coordinate": { + "lat": 50.183496698478216, + "long": 8.655907614330342 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 02.04.26 um 04:00 Uhr", + "Ende: 10.04.26 um 20:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 15.05.27)", + "", + "A661: Darmstadt -> Bad Homburg, zwischen 0.9 km hinter AS Frankfurt am Main-Heddernheim und 0.5 km vor AS Frankfurt am Main-Nieder-Eschbach", + "", + "L\u00e4nge: 1 km | Max. 100 km/h | Maximale Durchfahrtsbreite: 7.5 m", + "", + "A661 GE Nieder Eschbach bis Eckenheim" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.655907614, + 50.183496698 + ], + [ + 8.6560056, + 50.183571001 + ], + [ + 8.6561431, + 50.183681301 + ], + [ + 8.6564653, + 50.183942201 + ], + [ + 8.6566335, + 50.184102301 + ], + [ + 8.6567568, + 50.184222901 + ], + [ + 8.6570456, + 50.184540001 + ], + [ + 8.6572958, + 50.184875201 + ], + [ + 8.6574293, + 50.185074601 + ], + [ + 8.6575423, + 50.185260201 + ], + [ + 8.6576799, + 50.185521701 + ], + [ + 8.6578585, + 50.185979601 + ], + [ + 8.6579562, + 50.186307201 + ], + [ + 8.6579998, + 50.186529501 + ], + [ + 8.6580326, + 50.186741801 + ], + [ + 8.6580494, + 50.187035001 + ], + [ + 8.6580442, + 50.187355801 + ], + [ + 8.6580313, + 50.187504801 + ], + [ + 8.6580117, + 50.187647501 + ], + [ + 8.6579413, + 50.187968201 + ], + [ + 8.6578531, + 50.188274201 + ], + [ + 8.657803, + 50.188407901 + ], + [ + 8.6576641, + 50.188758601 + ], + [ + 8.657439, + 50.189147701 + ], + [ + 8.657235, + 50.189462001 + ], + [ + 8.6570522, + 50.189725701 + ], + [ + 8.6568699, + 50.189971801 + ], + [ + 8.6562686, + 50.190680601 + ], + [ + 8.6561006, + 50.190878601 + ], + [ + 8.6557354, + 50.191273801 + ], + [ + 8.655249998, + 50.191779315 + ] + ] + } + }, + { + "identifier": "2026-016685--vi-bs.2026-04-13_09-00-00-000_010.de0", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "50.203038517290516,8.637352127153838,50.2027298284813,8.640815333228181", + "point": "50.203038517290516,8.637352127153838", + "startLcPosition": "16", + "impact": { + "lower": "Bad Homburger Kreuz", + "upper": "Bad Homburg", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Bad Homburg -> Darmstadt", + "title": "A661 | Bad Homburg - Bad Homburger Kreuz", + "coordinate": { + "lat": 50.203038517290516, + "long": 8.637352127153838 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag, Mittwoch, Donnerstag und Freitag zwischen dem 13.04.26 und dem 17.04.26 von 09:00 bis 19:00 Uhr.", + "", + "A661: Bad Homburg -> Darmstadt, zwischen 0.9 km hinter AS Bad Homburg und 0.4 km vor AK Bad Homburger Kreuz", + "", + "L\u00e4nge: 0.25 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 6 m", + "", + "A661 von Bad Homburg (AS) nach Bad Homburger Kreuz (AK) Tiefbauarbeiten neben der Fahrbahn" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.637352127, + 50.203038517 + ], + [ + 8.6387591, + 50.202959001 + ], + [ + 8.6393326, + 50.202919801 + ], + [ + 8.6397593, + 50.202878901 + ], + [ + 8.6402773, + 50.202818601 + ], + [ + 8.6406025, + 50.202768901 + ], + [ + 8.640815333, + 50.202729828 + ] + ] + } + }, + { + "identifier": "2025-044490--vi-bs.2025-09-12_00-00-00-000_002.de0", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.20975599469676,8.6097283845682,50.206580812802294,8.622986038977123", + "point": "50.20975599469676,8.6097283845682", + "startLcPosition": "18", + "impact": { + "lower": "Bad Homburg", + "upper": "Oberursel", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bad Homburg -> Darmstadt", + "title": "A661 | Oberursel - Bad Homburg", + "startTimestamp": "2025-09-12T00:00:00+02:00", + "coordinate": { + "lat": 50.20975599469676, + "long": 8.6097283845682 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 12.09.25 um 00:00 Uhr", + "Ende: 01.11.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 01.11.26)", + "", + "A661: Bad Homburg -> Darmstadt, zwischen 0.4 km hinter AS Oberursel und 0.2 km vor AS Bad Homburg", + "", + "L\u00e4nge: 1.01 km | Maximale Durchfahrtsbreite: 8.5 m", + "", + "A661 Arbeiten an Parkpl\u00e4tzen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.609728385, + 50.209755995 + ], + [ + 8.6108752, + 50.209563801 + ], + [ + 8.61144, + 50.209462701 + ], + [ + 8.6125896, + 50.209251301 + ], + [ + 8.6138004, + 50.209009701 + ], + [ + 8.615399, + 50.208666401 + ], + [ + 8.6160936, + 50.208500901 + ], + [ + 8.6168907, + 50.208314001 + ], + [ + 8.6182071, + 50.207980301 + ], + [ + 8.619013, + 50.207768701 + ], + [ + 8.619543, + 50.207617201 + ], + [ + 8.6204178, + 50.207370901 + ], + [ + 8.6213006, + 50.207107701 + ], + [ + 8.6223191, + 50.206794701 + ], + [ + 8.622986039, + 50.206580813 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-12-16_05-00-00-000.devi-zus.2025-08-20_00-00-00-000.de23", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.06309116512813,8.726364664893245,50.067741509740905,8.729596637585061", + "point": "50.06309116512813,8.726364664893245", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Darmstadt -> Bad Homburg", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-12-16T05:00:00+01:00", + "coordinate": { + "lat": 50.06309116512813, + "long": 8.726364664893245 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.12.25 um 05:00 Uhr", + "Ende: 30.04.27 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Von A661: Darmstadt -> Bad Homburg, zwischen 1.4 km hinter AS Neu-Isenburg und Buchrain nach Abfahrt von der A661: AK Offenbacher Kreuz (aus Richtung Neu-Isenburg)", + "", + "L\u00e4nge: 0.57 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.726364665, + 50.063091165 + ], + [ + 8.7265033, + 50.063384301 + ], + [ + 8.7268148, + 50.063971001 + ], + [ + 8.7269999, + 50.064336301 + ], + [ + 8.7273392, + 50.064952101 + ], + [ + 8.7274666, + 50.065134901 + ], + [ + 8.7276128, + 50.065303401 + ], + [ + 8.7278809, + 50.065687701 + ], + [ + 8.7281038, + 50.065958501 + ], + [ + 8.7283068, + 50.066178701 + ], + [ + 8.7285433, + 50.066410701 + ], + [ + 8.7287798, + 50.066627601 + ], + [ + 8.7289317, + 50.066772101 + ], + [ + 8.7290689, + 50.066917301 + ], + [ + 8.7291945, + 50.067057901 + ], + [ + 8.7293342, + 50.067251001 + ], + [ + 8.7294584, + 50.067448501 + ], + [ + 8.7295846, + 50.067708101 + ], + [ + 8.729596638, + 50.06774151 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-12-16_05-00-00-000.devi-zus.2025-08-20_00-00-00-000.de27", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.065589602983025,8.728017785774353,50.067150712568235,8.729708175297125", + "point": "50.065589602983025,8.728017785774353", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Offenbacher Kreuz (aus Richtung Neu-Isenburg)", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-12-16T05:00:00+01:00", + "coordinate": { + "lat": 50.065589602983025, + "long": 8.728017785774353 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.12.25 um 05:00 Uhr", + "Ende: 30.04.27 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Auffahrt auf die A661: AK Offenbacher Kreuz (aus Richtung Neu-Isenburg)", + "", + "L\u00e4nge: 0.21 km | Maximale Durchfahrtsbreite: 4 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.728017786, + 50.065589603 + ], + [ + 8.7281413, + 50.065751901 + ], + [ + 8.7283305, + 50.065939201 + ], + [ + 8.7287161, + 50.066259201 + ], + [ + 8.7291192, + 50.066578601 + ], + [ + 8.7293469, + 50.066775001 + ], + [ + 8.7294622, + 50.066885601 + ], + [ + 8.7295766, + 50.067001801 + ], + [ + 8.729708175, + 50.067150713 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-12-16_05-00-00-000.devi-zus.2025-08-20_00-00-00-000.de15", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.06029397533515,8.725246554660863,50.063739884862905,8.726972920021439", + "point": "50.06029397533515,8.725246554660863", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Offenbacher Kreuz (aus Richtung Neu-Isenburg)", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-12-16T05:00:00+01:00", + "coordinate": { + "lat": 50.06029397533515, + "long": 8.725246554660863 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.12.25 um 05:00 Uhr", + "Ende: 30.04.27 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Abfahrt von der A661: AK Offenbacher Kreuz (aus Richtung Neu-Isenburg)", + "", + "L\u00e4nge: 0.4 km | Maximale Durchfahrtsbreite: 4 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.725246555, + 50.060293975 + ], + [ + 8.7253962, + 50.060578301 + ], + [ + 8.7255346, + 50.060863301 + ], + [ + 8.7256569, + 50.061118201 + ], + [ + 8.7258558, + 50.061533401 + ], + [ + 8.7262091, + 50.062212901 + ], + [ + 8.7262652, + 50.062339101 + ], + [ + 8.7266455, + 50.063071201 + ], + [ + 8.72697292, + 50.063739885 + ] + ] + } + }, + { + "identifier": "2024-019990--vi-bs.2025-12-16_05-00-00-000.devi-zus.2025-08-20_00-00-00-000.de25", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "50.06378277421469,8.726993921050491,50.065654130755526,8.728066893475983", + "point": "50.06378277421469,8.726993921050491", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AK Offenbacher Kreuz (aus Richtung Neu-Isenburg)", + "title": "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz", + "startTimestamp": "2025-12-16T05:00:00+01:00", + "coordinate": { + "lat": 50.06378277421469, + "long": 8.726993921050491 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 16.12.25 um 05:00 Uhr", + "Ende: 30.04.27 um 23:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 27.12.28)", + "", + "Abfahrt von der A661: AK Offenbacher Kreuz (aus Richtung Neu-Isenburg)", + "", + "L\u00e4nge: 0.22 km | Maximale Durchfahrtsbreite: 6.5 m", + "", + "Ersatzneubau Hauptkreuzungsbauwerk Offenbacher Kreuz" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.726993921, + 50.063782774 + ], + [ + 8.7270571, + 50.063911801 + ], + [ + 8.7271851, + 50.064118101 + ], + [ + 8.7272878, + 50.064318601 + ], + [ + 8.7276254, + 50.064941001 + ], + [ + 8.7277875, + 50.065237901 + ], + [ + 8.7279646, + 50.065523201 + ], + [ + 8.7279792, + 50.065538901 + ], + [ + 8.728066893, + 50.065654131 + ] + ] + } + } + ] + }, + "A671": { + "roadworks": [] + }, + "A831": { + "roadworks": [ + { + "identifier": "2026-016405--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_002.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72638839315,9.068720918538602,48.73546410094583,9.093836200000021", + "point": "48.72638839315,9.068720918538602", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 10.92 --> km 8.69", + "title": "A831 von Stuttgart (AK) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 48.72638839315, + "long": 9.068720918538602 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A831: km 10.92 --> km 8.69", + "", + "L\u00e4nge: 2.23 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A831 von Stuttgart (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.068720919, + 48.726388393 + ], + [ + 9.068955, + 48.726487801 + ], + [ + 9.0693401, + 48.726648901 + ], + [ + 9.0696517, + 48.726777501 + ], + [ + 9.0699526, + 48.726900801 + ], + [ + 9.0701745, + 48.726990901 + ], + [ + 9.0703961, + 48.727079201 + ], + [ + 9.0706192, + 48.727168201 + ], + [ + 9.0710492, + 48.727335001 + ], + [ + 9.0714651, + 48.727492601 + ], + [ + 9.0719011, + 48.727651601 + ], + [ + 9.0723474, + 48.727808501 + ], + [ + 9.072774, + 48.727951201 + ], + [ + 9.0732128, + 48.728089501 + ], + [ + 9.0736683, + 48.728228501 + ], + [ + 9.0739511, + 48.728309501 + ], + [ + 9.0745778, + 48.728471801 + ], + [ + 9.0750422, + 48.728583001 + ], + [ + 9.075501, + 48.728681901 + ], + [ + 9.0759857, + 48.728775501 + ], + [ + 9.076452, + 48.728857701 + ], + [ + 9.0769424, + 48.728933701 + ], + [ + 9.0774393, + 48.728999401 + ], + [ + 9.0779142, + 48.729055001 + ], + [ + 9.0783949, + 48.729101001 + ], + [ + 9.0788836, + 48.729138401 + ], + [ + 9.0793764, + 48.729165701 + ], + [ + 9.0798676, + 48.729185001 + ], + [ + 9.0803621, + 48.729201501 + ], + [ + 9.0806295, + 48.729207901 + ], + [ + 9.0810899, + 48.729220801 + ], + [ + 9.0816014, + 48.729233101 + ], + [ + 9.0820958, + 48.729251201 + ], + [ + 9.0825854, + 48.729271001 + ], + [ + 9.0830766, + 48.729299901 + ], + [ + 9.0835702, + 48.729333601 + ], + [ + 9.0840703, + 48.729380601 + ], + [ + 9.0845453, + 48.729437301 + ], + [ + 9.0850373, + 48.729508901 + ], + [ + 9.0853477, + 48.729565101 + ], + [ + 9.0857384, + 48.729643101 + ], + [ + 9.0859961, + 48.729700301 + ], + [ + 9.0861748, + 48.729742801 + ], + [ + 9.0869104, + 48.729942101 + ], + [ + 9.0873466, + 48.730080001 + ], + [ + 9.0875674, + 48.730158501 + ], + [ + 9.0877927, + 48.730241701 + ], + [ + 9.0881541, + 48.730379501 + ], + [ + 9.0883542, + 48.730465801 + ], + [ + 9.0889775, + 48.730755301 + ], + [ + 9.0892175, + 48.730881901 + ], + [ + 9.0897871, + 48.731201701 + ], + [ + 9.090143, + 48.731427001 + ], + [ + 9.0905049, + 48.731679401 + ], + [ + 9.0906905, + 48.731813601 + ], + [ + 9.0907846, + 48.731893601 + ], + [ + 9.0911184, + 48.732167101 + ], + [ + 9.091382, + 48.732406401 + ], + [ + 9.0916076, + 48.732627001 + ], + [ + 9.0918328, + 48.732875501 + ], + [ + 9.0919778, + 48.733041901 + ], + [ + 9.0922759, + 48.733425201 + ], + [ + 9.0923908, + 48.733585901 + ], + [ + 9.0925344, + 48.733787401 + ], + [ + 9.0926712, + 48.733981301 + ], + [ + 9.0929306, + 48.734363901 + ], + [ + 9.0932158, + 48.734757701 + ], + [ + 9.0933292, + 48.734899601 + ], + [ + 9.0934481, + 48.735044501 + ], + [ + 9.0937022, + 48.735330501 + ], + [ + 9.0938362, + 48.735464101 + ] + ] + } + }, + { + "identifier": "2026-016405--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_002.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72638839315,9.068720918538602,48.73546410094583,9.093836200000021", + "point": "48.72638839315,9.068720918538602", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 10.92 --> km 8.69", + "title": "A831 von Stuttgart (AK) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 48.72638839315, + "long": 9.068720918538602 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A831: km 10.92 --> km 8.69", + "", + "L\u00e4nge: 2.23 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A831 von Stuttgart (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.068720919, + 48.726388393 + ], + [ + 9.068955, + 48.726487801 + ], + [ + 9.0693401, + 48.726648901 + ], + [ + 9.0696517, + 48.726777501 + ], + [ + 9.0699526, + 48.726900801 + ], + [ + 9.0701745, + 48.726990901 + ], + [ + 9.0703961, + 48.727079201 + ], + [ + 9.0706192, + 48.727168201 + ], + [ + 9.0710492, + 48.727335001 + ], + [ + 9.0714651, + 48.727492601 + ], + [ + 9.0719011, + 48.727651601 + ], + [ + 9.0723474, + 48.727808501 + ], + [ + 9.072774, + 48.727951201 + ], + [ + 9.0732128, + 48.728089501 + ], + [ + 9.0736683, + 48.728228501 + ], + [ + 9.0739511, + 48.728309501 + ], + [ + 9.0745778, + 48.728471801 + ], + [ + 9.0750422, + 48.728583001 + ], + [ + 9.075501, + 48.728681901 + ], + [ + 9.0759857, + 48.728775501 + ], + [ + 9.076452, + 48.728857701 + ], + [ + 9.0769424, + 48.728933701 + ], + [ + 9.0774393, + 48.728999401 + ], + [ + 9.0779142, + 48.729055001 + ], + [ + 9.0783949, + 48.729101001 + ], + [ + 9.0788836, + 48.729138401 + ], + [ + 9.0793764, + 48.729165701 + ], + [ + 9.0798676, + 48.729185001 + ], + [ + 9.0803621, + 48.729201501 + ], + [ + 9.0806295, + 48.729207901 + ], + [ + 9.0810899, + 48.729220801 + ], + [ + 9.0816014, + 48.729233101 + ], + [ + 9.0820958, + 48.729251201 + ], + [ + 9.0825854, + 48.729271001 + ], + [ + 9.0830766, + 48.729299901 + ], + [ + 9.0835702, + 48.729333601 + ], + [ + 9.0840703, + 48.729380601 + ], + [ + 9.0845453, + 48.729437301 + ], + [ + 9.0850373, + 48.729508901 + ], + [ + 9.0853477, + 48.729565101 + ], + [ + 9.0857384, + 48.729643101 + ], + [ + 9.0859961, + 48.729700301 + ], + [ + 9.0861748, + 48.729742801 + ], + [ + 9.0869104, + 48.729942101 + ], + [ + 9.0873466, + 48.730080001 + ], + [ + 9.0875674, + 48.730158501 + ], + [ + 9.0877927, + 48.730241701 + ], + [ + 9.0881541, + 48.730379501 + ], + [ + 9.0883542, + 48.730465801 + ], + [ + 9.0889775, + 48.730755301 + ], + [ + 9.0892175, + 48.730881901 + ], + [ + 9.0897871, + 48.731201701 + ], + [ + 9.090143, + 48.731427001 + ], + [ + 9.0905049, + 48.731679401 + ], + [ + 9.0906905, + 48.731813601 + ], + [ + 9.0907846, + 48.731893601 + ], + [ + 9.0911184, + 48.732167101 + ], + [ + 9.091382, + 48.732406401 + ], + [ + 9.0916076, + 48.732627001 + ], + [ + 9.0918328, + 48.732875501 + ], + [ + 9.0919778, + 48.733041901 + ], + [ + 9.0922759, + 48.733425201 + ], + [ + 9.0923908, + 48.733585901 + ], + [ + 9.0925344, + 48.733787401 + ], + [ + 9.0926712, + 48.733981301 + ], + [ + 9.0929306, + 48.734363901 + ], + [ + 9.0932158, + 48.734757701 + ], + [ + 9.0933292, + 48.734899601 + ], + [ + 9.0934481, + 48.735044501 + ], + [ + 9.0937022, + 48.735330501 + ], + [ + 9.0938362, + 48.735464101 + ] + ] + } + }, + { + "identifier": "2026-016405--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_002.de3", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72633530094587,9.068595900000014,48.735449408182355,9.093821463203648", + "point": "48.72633530094587,9.068595900000014", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 10.93 --> km 8.69", + "title": "A831 von Stuttgart (AK) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 48.72633530094587, + "long": 9.068595900000014 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A831: km 10.93 --> km 8.69", + "", + "L\u00e4nge: 2.24 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A831 von Stuttgart (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.0685959, + 48.726335301 + ], + [ + 9.068955, + 48.726487801 + ], + [ + 9.0693401, + 48.726648901 + ], + [ + 9.0696517, + 48.726777501 + ], + [ + 9.0699526, + 48.726900801 + ], + [ + 9.0701745, + 48.726990901 + ], + [ + 9.0703961, + 48.727079201 + ], + [ + 9.0706192, + 48.727168201 + ], + [ + 9.0710492, + 48.727335001 + ], + [ + 9.0714651, + 48.727492601 + ], + [ + 9.0719011, + 48.727651601 + ], + [ + 9.0723474, + 48.727808501 + ], + [ + 9.072774, + 48.727951201 + ], + [ + 9.0732128, + 48.728089501 + ], + [ + 9.0736683, + 48.728228501 + ], + [ + 9.0739511, + 48.728309501 + ], + [ + 9.0745778, + 48.728471801 + ], + [ + 9.0750422, + 48.728583001 + ], + [ + 9.075501, + 48.728681901 + ], + [ + 9.0759857, + 48.728775501 + ], + [ + 9.076452, + 48.728857701 + ], + [ + 9.0769424, + 48.728933701 + ], + [ + 9.0774393, + 48.728999401 + ], + [ + 9.0779142, + 48.729055001 + ], + [ + 9.0783949, + 48.729101001 + ], + [ + 9.0788836, + 48.729138401 + ], + [ + 9.0793764, + 48.729165701 + ], + [ + 9.0798676, + 48.729185001 + ], + [ + 9.0803621, + 48.729201501 + ], + [ + 9.0806295, + 48.729207901 + ], + [ + 9.0810899, + 48.729220801 + ], + [ + 9.0816014, + 48.729233101 + ], + [ + 9.0820958, + 48.729251201 + ], + [ + 9.0825854, + 48.729271001 + ], + [ + 9.0830766, + 48.729299901 + ], + [ + 9.0835702, + 48.729333601 + ], + [ + 9.0840703, + 48.729380601 + ], + [ + 9.0845453, + 48.729437301 + ], + [ + 9.0850373, + 48.729508901 + ], + [ + 9.0853477, + 48.729565101 + ], + [ + 9.0857384, + 48.729643101 + ], + [ + 9.0859961, + 48.729700301 + ], + [ + 9.0861748, + 48.729742801 + ], + [ + 9.0869104, + 48.729942101 + ], + [ + 9.0873466, + 48.730080001 + ], + [ + 9.0875674, + 48.730158501 + ], + [ + 9.0877927, + 48.730241701 + ], + [ + 9.0881541, + 48.730379501 + ], + [ + 9.0883542, + 48.730465801 + ], + [ + 9.0889775, + 48.730755301 + ], + [ + 9.0892175, + 48.730881901 + ], + [ + 9.0897871, + 48.731201701 + ], + [ + 9.090143, + 48.731427001 + ], + [ + 9.0905049, + 48.731679401 + ], + [ + 9.0906905, + 48.731813601 + ], + [ + 9.0907846, + 48.731893601 + ], + [ + 9.0911184, + 48.732167101 + ], + [ + 9.091382, + 48.732406401 + ], + [ + 9.0916076, + 48.732627001 + ], + [ + 9.0918328, + 48.732875501 + ], + [ + 9.0919778, + 48.733041901 + ], + [ + 9.0922759, + 48.733425201 + ], + [ + 9.0923908, + 48.733585901 + ], + [ + 9.0925344, + 48.733787401 + ], + [ + 9.0926712, + 48.733981301 + ], + [ + 9.0929306, + 48.734363901 + ], + [ + 9.0932158, + 48.734757701 + ], + [ + 9.0933292, + 48.734899601 + ], + [ + 9.0934481, + 48.735044501 + ], + [ + 9.0937022, + 48.735330501 + ], + [ + 9.093821463, + 48.735449408 + ] + ] + } + }, + { + "identifier": "2026-016405--vi-bs.2026-04-14_09-00-00-000.devi-zus.2026-04-14_09-00-00-000_002.de1", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.72633530094587,9.068595900000014,48.735449408182355,9.093821463203648", + "point": "48.72633530094587,9.068595900000014", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 10.93 --> km 8.69", + "title": "A831 von Stuttgart (AK) Arbeiten an Schutzeinrichtungen", + "coordinate": { + "lat": 48.72633530094587, + "long": 9.068595900000014 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "14.04.26 von 09:00 bis 16:00 Uhr", + "", + "A831: km 10.93 --> km 8.69", + "", + "L\u00e4nge: 2.24 km | Maximale Durchfahrtsbreite: 3.25 m", + "", + "A831 von Stuttgart (AK) Arbeiten an Schutzeinrichtungen" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 9.0685959, + 48.726335301 + ], + [ + 9.068955, + 48.726487801 + ], + [ + 9.0693401, + 48.726648901 + ], + [ + 9.0696517, + 48.726777501 + ], + [ + 9.0699526, + 48.726900801 + ], + [ + 9.0701745, + 48.726990901 + ], + [ + 9.0703961, + 48.727079201 + ], + [ + 9.0706192, + 48.727168201 + ], + [ + 9.0710492, + 48.727335001 + ], + [ + 9.0714651, + 48.727492601 + ], + [ + 9.0719011, + 48.727651601 + ], + [ + 9.0723474, + 48.727808501 + ], + [ + 9.072774, + 48.727951201 + ], + [ + 9.0732128, + 48.728089501 + ], + [ + 9.0736683, + 48.728228501 + ], + [ + 9.0739511, + 48.728309501 + ], + [ + 9.0745778, + 48.728471801 + ], + [ + 9.0750422, + 48.728583001 + ], + [ + 9.075501, + 48.728681901 + ], + [ + 9.0759857, + 48.728775501 + ], + [ + 9.076452, + 48.728857701 + ], + [ + 9.0769424, + 48.728933701 + ], + [ + 9.0774393, + 48.728999401 + ], + [ + 9.0779142, + 48.729055001 + ], + [ + 9.0783949, + 48.729101001 + ], + [ + 9.0788836, + 48.729138401 + ], + [ + 9.0793764, + 48.729165701 + ], + [ + 9.0798676, + 48.729185001 + ], + [ + 9.0803621, + 48.729201501 + ], + [ + 9.0806295, + 48.729207901 + ], + [ + 9.0810899, + 48.729220801 + ], + [ + 9.0816014, + 48.729233101 + ], + [ + 9.0820958, + 48.729251201 + ], + [ + 9.0825854, + 48.729271001 + ], + [ + 9.0830766, + 48.729299901 + ], + [ + 9.0835702, + 48.729333601 + ], + [ + 9.0840703, + 48.729380601 + ], + [ + 9.0845453, + 48.729437301 + ], + [ + 9.0850373, + 48.729508901 + ], + [ + 9.0853477, + 48.729565101 + ], + [ + 9.0857384, + 48.729643101 + ], + [ + 9.0859961, + 48.729700301 + ], + [ + 9.0861748, + 48.729742801 + ], + [ + 9.0869104, + 48.729942101 + ], + [ + 9.0873466, + 48.730080001 + ], + [ + 9.0875674, + 48.730158501 + ], + [ + 9.0877927, + 48.730241701 + ], + [ + 9.0881541, + 48.730379501 + ], + [ + 9.0883542, + 48.730465801 + ], + [ + 9.0889775, + 48.730755301 + ], + [ + 9.0892175, + 48.730881901 + ], + [ + 9.0897871, + 48.731201701 + ], + [ + 9.090143, + 48.731427001 + ], + [ + 9.0905049, + 48.731679401 + ], + [ + 9.0906905, + 48.731813601 + ], + [ + 9.0907846, + 48.731893601 + ], + [ + 9.0911184, + 48.732167101 + ], + [ + 9.091382, + 48.732406401 + ], + [ + 9.0916076, + 48.732627001 + ], + [ + 9.0918328, + 48.732875501 + ], + [ + 9.0919778, + 48.733041901 + ], + [ + 9.0922759, + 48.733425201 + ], + [ + 9.0923908, + 48.733585901 + ], + [ + 9.0925344, + 48.733787401 + ], + [ + 9.0926712, + 48.733981301 + ], + [ + 9.0929306, + 48.734363901 + ], + [ + 9.0932158, + 48.734757701 + ], + [ + 9.0933292, + 48.734899601 + ], + [ + 9.0934481, + 48.735044501 + ], + [ + 9.0937022, + 48.735330501 + ], + [ + 9.093821463, + 48.735449408 + ] + ] + } + } + ] + }, + "A861": { + "roadworks": [ + { + "identifier": "2026-016267--vi-bs.2026-04-22_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.566312814288956,7.759633808736111,47.55109154626102,7.75758322044524", + "point": "47.566312814288956,7.759633808736111", + "startLcPosition": "2", + "impact": { + "lower": "Rheinfelden-S\u00fcd", + "upper": "Rheinfelden-Mitte", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Hochrhein -> Grenz\u00fcbergang Rheinfelden", + "title": "A861 | Rheinfelden-Mitte - Rheinfelden-S\u00fcd", + "coordinate": { + "lat": 47.566312814288956, + "long": 7.759633808736111 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 09:00 bis 15:00 Uhr", + "", + "A861: Dreieck Hochrhein -> Grenz\u00fcbergang Rheinfelden, zwischen 0.3 km hinter AS Rheinfelden-Mitte und 0.1 km vor AS Rheinfelden-S\u00fcd", + "", + "L\u00e4nge: 1.7 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Weil am Rhein (AD) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.759633809, + 47.566312814 + ], + [ + 7.7592977, + 47.564981001 + ], + [ + 7.7591376, + 47.564331901 + ], + [ + 7.7590769, + 47.564100701 + ], + [ + 7.7584358, + 47.561562501 + ], + [ + 7.7580105, + 47.559613401 + ], + [ + 7.757453, + 47.556748101 + ], + [ + 7.7573577, + 47.555926501 + ], + [ + 7.7572984, + 47.555093301 + ], + [ + 7.7572806, + 47.554172401 + ], + [ + 7.7572901, + 47.553754701 + ], + [ + 7.7573801, + 47.552595701 + ], + [ + 7.7574019, + 47.552316301 + ], + [ + 7.7574608, + 47.551850401 + ], + [ + 7.75758322, + 47.551091546 + ] + ] + } + }, + { + "identifier": "2026-016314--vi-bs.2026-04-13_09-00-00-000.devi-zus.2026-04-13_09-00-00-000_004.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.5670754924375,7.759826266764719,47.55232128918689,7.757401510797803", + "point": "47.5670754924375,7.759826266764719", + "startLcPosition": "2", + "impact": { + "lower": "Rheinfelden-S\u00fcd", + "upper": "Rheinfelden-Mitte", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Hochrhein -> Grenz\u00fcbergang Rheinfelden", + "title": "A861 | Rheinfelden-Mitte - Rheinfelden-S\u00fcd", + "coordinate": { + "lat": 47.5670754924375, + "long": 7.759826266764719 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 09:00 bis 16:00 Uhr", + "14.04.26 von 09:00 bis 16:00 Uhr", + "15.04.26 von 09:00 bis 16:00 Uhr", + "16.04.26 von 08:45 bis 16:00 Uhr", + "17.04.26 von 09:00 bis 16:00 Uhr", + "20.04.26 von 09:00 bis 16:00 Uhr", + "21.04.26 von 09:00 bis 16:00 Uhr", + "22.04.26 von 09:00 bis 16:00 Uhr", + "23.04.26 von 09:00 bis 16:00 Uhr", + "24.04.26 von 09:00 bis 16:00 Uhr", + "27.04.26 von 09:00 bis 16:00 Uhr", + "28.04.26 von 09:00 bis 16:00 Uhr", + "29.04.26 von 09:00 bis 16:00 Uhr", + "30.04.26 von 09:00 bis 16:00 Uhr", + "01.05.26 von 09:00 bis 16:00 Uhr", + "", + "A861: Dreieck Hochrhein -> Grenz\u00fcbergang Rheinfelden, zwischen 0.2 km hinter AS Rheinfelden-Mitte und 0.2 km vor AS Rheinfelden-S\u00fcd", + "", + "L\u00e4nge: 1.65 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Efringen-Kirchen (AS) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.759826267, + 47.567075492 + ], + [ + 7.7597924, + 47.566941201 + ], + [ + 7.7592977, + 47.564981001 + ], + [ + 7.7591376, + 47.564331901 + ], + [ + 7.7590769, + 47.564100701 + ], + [ + 7.7584358, + 47.561562501 + ], + [ + 7.7580105, + 47.559613401 + ], + [ + 7.757453, + 47.556748101 + ], + [ + 7.7573577, + 47.555926501 + ], + [ + 7.7572984, + 47.555093301 + ], + [ + 7.7572806, + 47.554172401 + ], + [ + 7.7572901, + 47.553754701 + ], + [ + 7.7573801, + 47.552595701 + ], + [ + 7.757401511, + 47.552321289 + ] + ] + } + }, + { + "identifier": "2026-016267--vi-bs.2026-04-22_09-00-00-000.devi-zus.2026-04-21_09-00-00-000_001.de9", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "47.570554116332886,7.760642959537809,47.56677397407103,7.759750195173413", + "point": "47.570554116332886,7.760642959537809", + "startLcPosition": "3", + "impact": { + "lower": "Rheinfelden-S\u00fcd", + "upper": "Nollinger Berg", + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " Dreieck Hochrhein -> Grenz\u00fcbergang Rheinfelden", + "title": "A861 | Nollinger Berg - Rheinfelden-S\u00fcd", + "coordinate": { + "lat": 47.570554116332886, + "long": 7.760642959537809 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "22.04.26 von 09:00 bis 15:00 Uhr", + "", + "A861: Dreieck Hochrhein -> Grenz\u00fcbergang Rheinfelden, zwischen 1.0 km hinter Nollinger Berg und 1.9 km vor AS Rheinfelden-S\u00fcd", + "", + "L\u00e4nge: 0.43 km | Max. 80 km/h | Maximale Durchfahrtsbreite: 3.75 m", + "", + "A5 von Weil am Rhein (AD) Arbeiten an Verkehrszeichenbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 7.76064296, + 47.570554116 + ], + [ + 7.7604906, + 47.569956001 + ], + [ + 7.7603762, + 47.569526801 + ], + [ + 7.7601752, + 47.568704501 + ], + [ + 7.7600684, + 47.568035601 + ], + [ + 7.7597924, + 47.566941201 + ], + [ + 7.759750195, + 47.566773974 + ] + ] + } + } + ] + }, + "A864": { + "roadworks": [ + { + "identifier": "2026-007229--vi-bs.2026-02-24_07-00-00-000.devi-zus.2026-02-20_06-00-00-000.de9", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.99391891125303,8.590227443396511,47.99412618152708,8.594401410060538", + "point": "47.99391891125303,8.590227443396511", + "startLcPosition": "0", + "impact": { + "lower": "Bad D\u00fcrrheim", + "upper": "Donaueschingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Donaueschingen -> Bad D\u00fcrrheim", + "title": "A864 | Donaueschingen - Bad D\u00fcrrheim", + "startTimestamp": "2026-02-24T07:00:00+01:00", + "coordinate": { + "lat": 47.99391891125303, + "long": 8.590227443396511 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 07:00 Uhr", + "Ende: 26.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.09.26)", + "", + "A864: Donaueschingen -> Bad D\u00fcrrheim, zwischen 4.8 km hinter AS Donaueschingen und 1.1 km vor AD Bad D\u00fcrrheim", + "", + "L\u00e4nge: 0.31 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A864 Br\u00fcckeninstandsetzung K\u00f6tachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.590227443, + 47.993918911 + ], + [ + 8.5907352, + 47.993951601 + ], + [ + 8.5916439, + 47.994019801 + ], + [ + 8.5922725, + 47.994070601 + ], + [ + 8.5930362, + 47.994122701 + ], + [ + 8.5937153, + 47.994109901 + ], + [ + 8.5943032, + 47.994124501 + ], + [ + 8.59440141, + 47.994126182 + ] + ] + } + }, + { + "identifier": "2026-007229--vi-bs.2026-02-24_07-00-00-000.devi-zus.2026-02-20_06-00-00-000.de1", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.996384503177715,8.559281023970723,47.99390550996824,8.5900192965905", + "point": "47.996384503177715,8.559281023970723", + "startLcPosition": "0", + "impact": { + "lower": "Bad D\u00fcrrheim", + "upper": "Donaueschingen", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Donaueschingen -> Bad D\u00fcrrheim", + "title": "A864 | Donaueschingen - Bad D\u00fcrrheim", + "startTimestamp": "2026-02-24T07:00:00+01:00", + "coordinate": { + "lat": 47.996384503177715, + "long": 8.559281023970723 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 07:00 Uhr", + "Ende: 26.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.09.26)", + "", + "A864: Donaueschingen -> Bad D\u00fcrrheim, zwischen 2.5 km hinter AS Donaueschingen und 1.4 km vor AD Bad D\u00fcrrheim", + "", + "L\u00e4nge: 2.32 km | Maximale Durchfahrtsbreite: 4.5 m | zul\u00e4ssiges Gesamtgewicht: 40 t", + "", + "A864 Br\u00fcckeninstandsetzung K\u00f6tachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.559281024, + 47.996384503 + ], + [ + 8.5594682, + 47.996372601 + ], + [ + 8.5608619, + 47.996234401 + ], + [ + 8.5619021, + 47.996107001 + ], + [ + 8.5636641, + 47.995850801 + ], + [ + 8.5660253, + 47.995454201 + ], + [ + 8.5678694, + 47.995149801 + ], + [ + 8.5696992, + 47.994851301 + ], + [ + 8.5716583, + 47.994568201 + ], + [ + 8.5727979, + 47.994407801 + ], + [ + 8.5739065, + 47.994274001 + ], + [ + 8.5750518, + 47.994152301 + ], + [ + 8.5762567, + 47.994041501 + ], + [ + 8.5772739, + 47.993959401 + ], + [ + 8.5786069, + 47.993869401 + ], + [ + 8.5803209, + 47.993777201 + ], + [ + 8.5819021, + 47.993725801 + ], + [ + 8.5836475, + 47.993703601 + ], + [ + 8.5852239, + 47.993710401 + ], + [ + 8.5862124, + 47.993729601 + ], + [ + 8.5865824, + 47.993739001 + ], + [ + 8.5869678, + 47.993751001 + ], + [ + 8.5878492, + 47.993781601 + ], + [ + 8.588946, + 47.993836401 + ], + [ + 8.590019297, + 47.99390551 + ] + ] + } + }, + { + "identifier": "2026-007229--vi-bs.2026-02-24_07-00-00-000.devi-zus.2026-02-20_06-00-00-000.de3", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.994459833601574,8.595597502990184,47.99410887116327,8.59119132261625", + "point": "47.994459833601574,8.595597502990184", + "startLcPosition": "1", + "impact": { + "lower": "Donaueschingen", + "upper": "Bad D\u00fcrrheim", + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Bad D\u00fcrrheim -> Donaueschingen", + "title": "A864 | Bad D\u00fcrrheim - Donaueschingen", + "startTimestamp": "2026-02-24T07:00:00+01:00", + "coordinate": { + "lat": 47.994459833601574, + "long": 8.595597502990184 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 07:00 Uhr", + "Ende: 26.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.09.26)", + "", + "A864: Bad D\u00fcrrheim -> Donaueschingen, zwischen 0.9 km hinter AD Bad D\u00fcrrheim und 4.9 km vor AS Donaueschingen", + "", + "L\u00e4nge: 0.33 km | Maximale Durchfahrtsbreite: 4.5 m | zul\u00e4ssiges Gesamtgewicht: 40 t", + "", + "A864 Br\u00fcckeninstandsetzung K\u00f6tachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.595597503, + 47.994459834 + ], + [ + 8.5946477, + 47.994383601 + ], + [ + 8.5936822, + 47.994305901 + ], + [ + 8.593069, + 47.994254201 + ], + [ + 8.5918848, + 47.994160201 + ], + [ + 8.591191323, + 47.994108871 + ] + ] + } + }, + { + "identifier": "2026-007229--vi-bs.2026-02-24_07-00-00-000.devi-zus.2026-02-20_06-00-00-000.de11", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.993932421959386,8.59043729575975,47.9942538571434,8.594537279783848", + "point": "47.993932421959386,8.59043729575975", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "CLOSED", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " AD Bad D\u00fcrrheim (aus Richtung Donaueschingen)", + "title": "A864 Br\u00fcckeninstandsetzung K\u00f6tachbr\u00fccke", + "startTimestamp": "2026-02-24T07:00:00+01:00", + "coordinate": { + "lat": 47.993932421959386, + "long": 8.59043729575975 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 07:00 Uhr", + "Ende: 26.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.09.26)", + "", + "Abfahrt von der A864: AD Bad D\u00fcrrheim (aus Richtung Donaueschingen)", + "", + "L\u00e4nge: 0.31 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A864 Br\u00fcckeninstandsetzung K\u00f6tachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.590437296, + 47.993932422 + ], + [ + 8.5907352, + 47.993951601 + ], + [ + 8.5916439, + 47.994019801 + ], + [ + 8.5922725, + 47.994070601 + ], + [ + 8.5930362, + 47.994122701 + ], + [ + 8.5937066, + 47.994186901 + ], + [ + 8.59453728, + 47.994253857 + ] + ] + } + }, + { + "identifier": "2026-007229--vi-bs.2026-02-24_07-00-00-000.devi-zus.2026-02-20_06-00-00-000.de7", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "47.985666899624746,8.611616036491473,47.994527265863304,8.596449667617785", + "point": "47.985666899624746,8.611616036491473", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Singen -> Stuttgart", + "title": "A864 Br\u00fcckeninstandsetzung K\u00f6tachbr\u00fccke", + "startTimestamp": "2026-02-24T07:00:00+01:00", + "coordinate": { + "lat": 47.985666899624746, + "long": 8.611616036491473 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 07:00 Uhr", + "Ende: 26.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.09.26)", + "", + "Von A81: Singen -> Stuttgart, 1.5 km vor AD Bad D\u00fcrrheim, aus Richtung R\u00e4thisgraben; Abfahrt von der A81 in AD Bad D\u00fcrrheim; nach Auffahrt auf die A864: AD Bad D\u00fcrrheim (in Richtung Donaueschingen)", + "", + "L\u00e4nge: 1.76 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A864 Br\u00fcckeninstandsetzung K\u00f6tachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.611616036, + 47.9856669 + ], + [ + 8.6115559, + 47.985748701 + ], + [ + 8.6110721, + 47.986416301 + ], + [ + 8.6103733, + 47.987434601 + ], + [ + 8.6103526, + 47.987643201 + ], + [ + 8.6101503, + 47.988040801 + ], + [ + 8.6099625, + 47.988482301 + ], + [ + 8.6098869, + 47.988620801 + ], + [ + 8.6097988, + 47.988854901 + ], + [ + 8.6097004, + 47.989095501 + ], + [ + 8.6095294, + 47.989577801 + ], + [ + 8.6092113, + 47.990554301 + ], + [ + 8.6090623, + 47.990917001 + ], + [ + 8.6088827, + 47.991294201 + ], + [ + 8.6087583, + 47.991518601 + ], + [ + 8.60862, + 47.991737601 + ], + [ + 8.6083892, + 47.992028501 + ], + [ + 8.6081369, + 47.992321001 + ], + [ + 8.6078622, + 47.992602101 + ], + [ + 8.6075753, + 47.992844601 + ], + [ + 8.6072734, + 47.993081401 + ], + [ + 8.6068398, + 47.993360801 + ], + [ + 8.6064937, + 47.993578001 + ], + [ + 8.6062487, + 47.993711001 + ], + [ + 8.6059984, + 47.993840101 + ], + [ + 8.6057666, + 47.993946701 + ], + [ + 8.6055281, + 47.994052401 + ], + [ + 8.6052729, + 47.994152701 + ], + [ + 8.605009, + 47.994248001 + ], + [ + 8.6048078, + 47.994315201 + ], + [ + 8.6046026, + 47.994379101 + ], + [ + 8.6043614, + 47.994449601 + ], + [ + 8.6041082, + 47.994514301 + ], + [ + 8.6037899, + 47.994586201 + ], + [ + 8.603469, + 47.994653301 + ], + [ + 8.6032354, + 47.994696801 + ], + [ + 8.6029957, + 47.994733801 + ], + [ + 8.602768, + 47.994763601 + ], + [ + 8.6025358, + 47.994789901 + ], + [ + 8.6023043, + 47.994813001 + ], + [ + 8.6020723, + 47.994831201 + ], + [ + 8.6018173, + 47.994845101 + ], + [ + 8.6015685, + 47.994853001 + ], + [ + 8.6013203, + 47.994856701 + ], + [ + 8.6010727, + 47.994855201 + ], + [ + 8.6007731, + 47.994849901 + ], + [ + 8.6004622, + 47.994839601 + ], + [ + 8.6001401, + 47.994825001 + ], + [ + 8.5996216, + 47.994790301 + ], + [ + 8.5991848, + 47.994757001 + ], + [ + 8.5986961, + 47.994716801 + ], + [ + 8.597926, + 47.994652401 + ], + [ + 8.596449668, + 47.994527266 + ] + ] + } + }, + { + "identifier": "2026-007229--vi-bs.2026-02-24_07-00-00-000.devi-zus.2026-02-20_06-00-00-000.de5", + "icon": "123", + "isBlocked": "false", + "future": false, + "extent": "48.00160010503049,8.605050752453433,47.994248699253696,8.592999686005452", + "point": "48.00160010503049,8.605050752453433", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "ROADWORKS", + "subtitle": " Stuttgart -> Singen", + "title": "A864 Br\u00fcckeninstandsetzung K\u00f6tachbr\u00fccke", + "startTimestamp": "2026-02-24T07:00:00+01:00", + "coordinate": { + "lat": 48.00160010503049, + "long": 8.605050752453433 + }, + "description": [ + "Zeitraum dieser Bauphase:", + "Beginn: 24.02.26 um 07:00 Uhr", + "Ende: 26.09.26 um 00:00 Uhr", + "(Ende der Gesamtma\u00dfnahme: 26.09.26)", + "", + "Von A81: Stuttgart -> Singen, 0.4 km vor AD Bad D\u00fcrrheim, aus Richtung Tuningen; in A81: AD Bad D\u00fcrrheim auf die A864 in Richtung Donaueschingen; nach A864: Bad D\u00fcrrheim -> Donaueschingen, 5.0 km vor AS Donaueschingen, aus Richtung Bad D\u00fcrrheim", + "", + "L\u00e4nge: 1.45 km | Maximale Durchfahrtsbreite: 4.5 m", + "", + "A864 Br\u00fcckeninstandsetzung K\u00f6tachbr\u00fccke" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 8.605050752, + 48.001600105 + ], + [ + 8.6050764, + 48.001325901 + ], + [ + 8.6051121, + 48.000951901 + ], + [ + 8.6051499, + 48.000597201 + ], + [ + 8.6052749, + 47.999811701 + ], + [ + 8.6053145, + 47.999566901 + ], + [ + 8.6052387, + 47.999337701 + ], + [ + 8.6052397, + 47.999130201 + ], + [ + 8.6052444, + 47.998941901 + ], + [ + 8.6052255, + 47.998740101 + ], + [ + 8.6051968, + 47.998552301 + ], + [ + 8.6051682, + 47.998398601 + ], + [ + 8.6051233, + 47.998239101 + ], + [ + 8.6050737, + 47.998081501 + ], + [ + 8.6050092, + 47.997924301 + ], + [ + 8.6049356, + 47.997768901 + ], + [ + 8.6048542, + 47.997619601 + ], + [ + 8.6047604, + 47.997470701 + ], + [ + 8.6046613, + 47.997328401 + ], + [ + 8.6045441, + 47.997182201 + ], + [ + 8.6044223, + 47.997042601 + ], + [ + 8.6042914, + 47.996906401 + ], + [ + 8.6041542, + 47.996776401 + ], + [ + 8.6040099, + 47.996648901 + ], + [ + 8.6038511, + 47.996528801 + ], + [ + 8.6036893, + 47.996412201 + ], + [ + 8.6035127, + 47.996298901 + ], + [ + 8.6033351, + 47.996193201 + ], + [ + 8.6031512, + 47.996092301 + ], + [ + 8.6029555, + 47.995994401 + ], + [ + 8.60276, + 47.995905001 + ], + [ + 8.6025535, + 47.995820501 + ], + [ + 8.6023467, + 47.995741001 + ], + [ + 8.6021368, + 47.995667001 + ], + [ + 8.6019165, + 47.995595001 + ], + [ + 8.6016953, + 47.995528401 + ], + [ + 8.6014719, + 47.995467401 + ], + [ + 8.6012488, + 47.995410801 + ], + [ + 8.6010209, + 47.995356201 + ], + [ + 8.6007917, + 47.995305301 + ], + [ + 8.6003951, + 47.995224801 + ], + [ + 8.59986, + 47.995122901 + ], + [ + 8.5992175, + 47.995007601 + ], + [ + 8.5986971, + 47.994921901 + ], + [ + 8.5982107, + 47.994844101 + ], + [ + 8.5972611, + 47.994721101 + ], + [ + 8.5965938, + 47.994638101 + ], + [ + 8.595627, + 47.994462201 + ], + [ + 8.5946477, + 47.994383601 + ], + [ + 8.5936822, + 47.994305901 + ], + [ + 8.593069, + 47.994254201 + ], + [ + 8.592999686, + 47.994248699 + ] + ] + } + } + ] + }, + "A995": { + "roadworks": [] + }, + "A99a": { + "roadworks": [ + { + "identifier": "2026-017766--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_008.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.20995802977141,11.38780537311004,48.20423709159407,11.447651666030872", + "point": "48.20995802977141,11.38780537311004", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 100.00 --> km 104.60", + "title": "Aplus A8 West - KW 16 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst.", + "coordinate": { + "lat": 48.20995802977141, + "long": 11.38780537311004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag und Mittwoch zwischen dem 13.04.26 und dem 15.04.26 von 07:00 bis 16:00 Uhr.", + "16.04.26 von 07:00 bis 16:00 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A99: km 100.00 --> km 104.60", + "", + "L\u00e4nge: 4.62 km | Maximale Durchfahrtsbreite: 10 m", + "", + "Aplus A8 West - KW 16 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.387805373, + 48.20995803 + ], + [ + 11.3878228, + 48.209946101 + ], + [ + 11.3881238, + 48.209715601 + ], + [ + 11.3898027, + 48.208354501 + ], + [ + 11.3903907, + 48.207930401 + ], + [ + 11.3907802, + 48.207672601 + ], + [ + 11.3911858, + 48.207456901 + ], + [ + 11.3916289, + 48.207255001 + ], + [ + 11.3921372, + 48.207044301 + ], + [ + 11.3926658, + 48.206856801 + ], + [ + 11.3932306, + 48.206694801 + ], + [ + 11.3939869, + 48.206557001 + ], + [ + 11.3947188, + 48.206450301 + ], + [ + 11.3955419, + 48.206392601 + ], + [ + 11.3977178, + 48.206262001 + ], + [ + 11.3998672, + 48.206133601 + ], + [ + 11.4000756, + 48.206122501 + ], + [ + 11.4035146, + 48.205936301 + ], + [ + 11.4039669, + 48.205911401 + ], + [ + 11.4073303, + 48.205716601 + ], + [ + 11.4261374, + 48.204640801 + ], + [ + 11.4262707, + 48.204635001 + ], + [ + 11.4306603, + 48.204385701 + ], + [ + 11.4367492, + 48.204039901 + ], + [ + 11.4392903, + 48.203930701 + ], + [ + 11.4416694, + 48.203889301 + ], + [ + 11.443632, + 48.203885301 + ], + [ + 11.4446858, + 48.203899001 + ], + [ + 11.4451594, + 48.203919701 + ], + [ + 11.4456622, + 48.203962301 + ], + [ + 11.4461852, + 48.204021301 + ], + [ + 11.4461998, + 48.204023601 + ], + [ + 11.4464827, + 48.204067401 + ], + [ + 11.4472652, + 48.204189201 + ], + [ + 11.447651666, + 48.204237092 + ] + ] + } + }, + { + "identifier": "2026-017766--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_07-00-00-000_008.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.20995802977141,11.38780537311004,48.20423709159407,11.447651666030872", + "point": "48.20995802977141,11.38780537311004", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 100.00 --> km 104.60", + "title": "Aplus A8 West - KW 16 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst.", + "coordinate": { + "lat": 48.20995802977141, + "long": 11.38780537311004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "Jeden Montag, Dienstag und Mittwoch zwischen dem 13.04.26 und dem 15.04.26 von 07:00 bis 16:00 Uhr.", + "16.04.26 von 07:00 bis 16:00 Uhr", + "17.04.26 von 07:00 bis 13:00 Uhr", + "", + "A99: km 100.00 --> km 104.60", + "", + "L\u00e4nge: 4.62 km | Maximale Durchfahrtsbreite: 10 m", + "", + "Aplus A8 West - KW 16 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.387805373, + 48.20995803 + ], + [ + 11.3878228, + 48.209946101 + ], + [ + 11.3881238, + 48.209715601 + ], + [ + 11.3898027, + 48.208354501 + ], + [ + 11.3903907, + 48.207930401 + ], + [ + 11.3907802, + 48.207672601 + ], + [ + 11.3911858, + 48.207456901 + ], + [ + 11.3916289, + 48.207255001 + ], + [ + 11.3921372, + 48.207044301 + ], + [ + 11.3926658, + 48.206856801 + ], + [ + 11.3932306, + 48.206694801 + ], + [ + 11.3939869, + 48.206557001 + ], + [ + 11.3947188, + 48.206450301 + ], + [ + 11.3955419, + 48.206392601 + ], + [ + 11.3977178, + 48.206262001 + ], + [ + 11.3998672, + 48.206133601 + ], + [ + 11.4000756, + 48.206122501 + ], + [ + 11.4035146, + 48.205936301 + ], + [ + 11.4039669, + 48.205911401 + ], + [ + 11.4073303, + 48.205716601 + ], + [ + 11.4261374, + 48.204640801 + ], + [ + 11.4262707, + 48.204635001 + ], + [ + 11.4306603, + 48.204385701 + ], + [ + 11.4367492, + 48.204039901 + ], + [ + 11.4392903, + 48.203930701 + ], + [ + 11.4416694, + 48.203889301 + ], + [ + 11.443632, + 48.203885301 + ], + [ + 11.4446858, + 48.203899001 + ], + [ + 11.4451594, + 48.203919701 + ], + [ + 11.4456622, + 48.203962301 + ], + [ + 11.4461852, + 48.204021301 + ], + [ + 11.4461998, + 48.204023601 + ], + [ + 11.4464827, + 48.204067401 + ], + [ + 11.4472652, + 48.204189201 + ], + [ + 11.447651666, + 48.204237092 + ] + ] + } + }, + { + "identifier": "2026-012339--vi-bs.2026-03-20_06-00-00-000.devi-zus.2026-03-19_19-00-00-000_001.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.20995802977141,11.38780537311004,48.206849963761485,11.392689637573602", + "point": "48.20995802977141,11.38780537311004", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 100.00 --> km 100.50", + "title": "Aplus A8 West - KW 12 - Betriebliche Notma\u00dfnahmen Fahrbahnreparatur", + "coordinate": { + "lat": 48.20995802977141, + "long": 11.38780537311004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "21.03.26 00:00 Uhr bis zum 10.04.26 24:00 Uhr.", + "", + "A99: km 100.00 --> km 100.50", + "", + "L\u00e4nge: 0.51 km | Maximale Durchfahrtsbreite: 10 m", + "", + "Aplus A8 West - KW 12 - Betriebliche Notma\u00dfnahmen Fahrbahnreparatur" + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.387805373, + 48.20995803 + ], + [ + 11.3878228, + 48.209946101 + ], + [ + 11.3881238, + 48.209715601 + ], + [ + 11.3898027, + 48.208354501 + ], + [ + 11.3903907, + 48.207930401 + ], + [ + 11.3907802, + 48.207672601 + ], + [ + 11.3911858, + 48.207456901 + ], + [ + 11.3916289, + 48.207255001 + ], + [ + 11.3921372, + 48.207044301 + ], + [ + 11.3926658, + 48.206856801 + ], + [ + 11.392689638, + 48.206849964 + ] + ] + } + }, + { + "identifier": "2026-016743--vi-bs.2026-04-06_07-00-00-000.devi-zus.2026-04-06_07-00-00-000.de7", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.20995802977141,11.38780537311004,48.20423709159407,11.447651666030872", + "point": "48.20995802977141,11.38780537311004", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 100.00 --> km 104.60", + "title": "Aplus A8 West - KW 15 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst.", + "coordinate": { + "lat": 48.20995802977141, + "long": 11.38780537311004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "10.04.26 von 07:00 bis 13:00 Uhr", + "", + "A99: km 100.00 --> km 104.60", + "", + "L\u00e4nge: 4.62 km | Maximale Durchfahrtsbreite: 10 m", + "", + "Aplus A8 West - KW 15 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.387805373, + 48.20995803 + ], + [ + 11.3878228, + 48.209946101 + ], + [ + 11.3881238, + 48.209715601 + ], + [ + 11.3898027, + 48.208354501 + ], + [ + 11.3903907, + 48.207930401 + ], + [ + 11.3907802, + 48.207672601 + ], + [ + 11.3911858, + 48.207456901 + ], + [ + 11.3916289, + 48.207255001 + ], + [ + 11.3921372, + 48.207044301 + ], + [ + 11.3926658, + 48.206856801 + ], + [ + 11.3932306, + 48.206694801 + ], + [ + 11.3939869, + 48.206557001 + ], + [ + 11.3947188, + 48.206450301 + ], + [ + 11.3955419, + 48.206392601 + ], + [ + 11.3977178, + 48.206262001 + ], + [ + 11.3998672, + 48.206133601 + ], + [ + 11.4000756, + 48.206122501 + ], + [ + 11.4035146, + 48.205936301 + ], + [ + 11.4039669, + 48.205911401 + ], + [ + 11.4073303, + 48.205716601 + ], + [ + 11.4261374, + 48.204640801 + ], + [ + 11.4262707, + 48.204635001 + ], + [ + 11.4306603, + 48.204385701 + ], + [ + 11.4367492, + 48.204039901 + ], + [ + 11.4392903, + 48.203930701 + ], + [ + 11.4416694, + 48.203889301 + ], + [ + 11.443632, + 48.203885301 + ], + [ + 11.4446858, + 48.203899001 + ], + [ + 11.4451594, + 48.203919701 + ], + [ + 11.4456622, + 48.203962301 + ], + [ + 11.4461852, + 48.204021301 + ], + [ + 11.4461998, + 48.204023601 + ], + [ + 11.4464827, + 48.204067401 + ], + [ + 11.4472652, + 48.204189201 + ], + [ + 11.447651666, + 48.204237092 + ] + ] + } + }, + { + "identifier": "2026-016743--vi-bs.2026-04-06_07-00-00-000.devi-zus.2026-04-06_07-00-00-000.de5", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.20995802977141,11.38780537311004,48.20423709159407,11.447651666030872", + "point": "48.20995802977141,11.38780537311004", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "ARROW_UP", + "ARROW_UP", + "BORDER_RIGHT", + "CLOSED" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 100.00 --> km 104.60", + "title": "Aplus A8 West - KW 15 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst.", + "coordinate": { + "lat": 48.20995802977141, + "long": 11.38780537311004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 07:00 bis 16:00 Uhr", + "10.04.26 von 07:00 bis 13:00 Uhr", + "", + "A99: km 100.00 --> km 104.60", + "", + "L\u00e4nge: 4.62 km | Maximale Durchfahrtsbreite: 10 m", + "", + "Aplus A8 West - KW 15 - Allgemeine Befahrung Standspur zur Abnahme und Schadensaufnahme - Sperre Sst." + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.387805373, + 48.20995803 + ], + [ + 11.3878228, + 48.209946101 + ], + [ + 11.3881238, + 48.209715601 + ], + [ + 11.3898027, + 48.208354501 + ], + [ + 11.3903907, + 48.207930401 + ], + [ + 11.3907802, + 48.207672601 + ], + [ + 11.3911858, + 48.207456901 + ], + [ + 11.3916289, + 48.207255001 + ], + [ + 11.3921372, + 48.207044301 + ], + [ + 11.3926658, + 48.206856801 + ], + [ + 11.3932306, + 48.206694801 + ], + [ + 11.3939869, + 48.206557001 + ], + [ + 11.3947188, + 48.206450301 + ], + [ + 11.3955419, + 48.206392601 + ], + [ + 11.3977178, + 48.206262001 + ], + [ + 11.3998672, + 48.206133601 + ], + [ + 11.4000756, + 48.206122501 + ], + [ + 11.4035146, + 48.205936301 + ], + [ + 11.4039669, + 48.205911401 + ], + [ + 11.4073303, + 48.205716601 + ], + [ + 11.4261374, + 48.204640801 + ], + [ + 11.4262707, + 48.204635001 + ], + [ + 11.4306603, + 48.204385701 + ], + [ + 11.4367492, + 48.204039901 + ], + [ + 11.4392903, + 48.203930701 + ], + [ + 11.4416694, + 48.203889301 + ], + [ + 11.443632, + 48.203885301 + ], + [ + 11.4446858, + 48.203899001 + ], + [ + 11.4451594, + 48.203919701 + ], + [ + 11.4456622, + 48.203962301 + ], + [ + 11.4461852, + 48.204021301 + ], + [ + 11.4461998, + 48.204023601 + ], + [ + 11.4464827, + 48.204067401 + ], + [ + 11.4472652, + 48.204189201 + ], + [ + 11.447651666, + 48.204237092 + ] + ] + } + }, + { + "identifier": "2026-017540--vi-bs.2026-04-09_11-00-00-000.devi-zus.2026-04-09_05-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": false, + "extent": "48.20995802977141,11.38780537311004,48.20423709159407,11.447651666030872", + "point": "48.20995802977141,11.38780537311004", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 100.00 --> km 104.60", + "title": "Aplus A8 West - KW 15 - Schadensaufnahme 3. Fahrspur ", + "coordinate": { + "lat": 48.20995802977141, + "long": 11.38780537311004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "09.04.26 von 11:00 bis 18:00 Uhr", + "", + "A99: km 100.00 --> km 104.60", + "", + "L\u00e4nge: 4.62 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "Aplus A8 West - KW 15 - Schadensaufnahme 3. Fahrspur " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.387805373, + 48.20995803 + ], + [ + 11.3878228, + 48.209946101 + ], + [ + 11.3881238, + 48.209715601 + ], + [ + 11.3898027, + 48.208354501 + ], + [ + 11.3903907, + 48.207930401 + ], + [ + 11.3907802, + 48.207672601 + ], + [ + 11.3911858, + 48.207456901 + ], + [ + 11.3916289, + 48.207255001 + ], + [ + 11.3921372, + 48.207044301 + ], + [ + 11.3926658, + 48.206856801 + ], + [ + 11.3932306, + 48.206694801 + ], + [ + 11.3939869, + 48.206557001 + ], + [ + 11.3947188, + 48.206450301 + ], + [ + 11.3955419, + 48.206392601 + ], + [ + 11.3977178, + 48.206262001 + ], + [ + 11.3998672, + 48.206133601 + ], + [ + 11.4000756, + 48.206122501 + ], + [ + 11.4035146, + 48.205936301 + ], + [ + 11.4039669, + 48.205911401 + ], + [ + 11.4073303, + 48.205716601 + ], + [ + 11.4261374, + 48.204640801 + ], + [ + 11.4262707, + 48.204635001 + ], + [ + 11.4306603, + 48.204385701 + ], + [ + 11.4367492, + 48.204039901 + ], + [ + 11.4392903, + 48.203930701 + ], + [ + 11.4416694, + 48.203889301 + ], + [ + 11.443632, + 48.203885301 + ], + [ + 11.4446858, + 48.203899001 + ], + [ + 11.4451594, + 48.203919701 + ], + [ + 11.4456622, + 48.203962301 + ], + [ + 11.4461852, + 48.204021301 + ], + [ + 11.4461998, + 48.204023601 + ], + [ + 11.4464827, + 48.204067401 + ], + [ + 11.4472652, + 48.204189201 + ], + [ + 11.447651666, + 48.204237092 + ] + ] + } + }, + { + "identifier": "2026-017838--vi-bs.2026-04-13_07-00-00-000.devi-zus.2026-04-13_05-00-00-000.de13", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.20995802977141,11.38780537311004,48.20423709159407,11.447651666030872", + "point": "48.20995802977141,11.38780537311004", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 100.00 --> km 104.60", + "title": "Aplus A8 West - KW 16 - Schadensaufnahme 3. Fahrspur ", + "coordinate": { + "lat": 48.20995802977141, + "long": 11.38780537311004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 07:00 bis 12:00 Uhr", + "", + "A99: km 100.00 --> km 104.60", + "", + "L\u00e4nge: 4.62 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "Aplus A8 West - KW 16 - Schadensaufnahme 3. Fahrspur " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.387805373, + 48.20995803 + ], + [ + 11.3878228, + 48.209946101 + ], + [ + 11.3881238, + 48.209715601 + ], + [ + 11.3898027, + 48.208354501 + ], + [ + 11.3903907, + 48.207930401 + ], + [ + 11.3907802, + 48.207672601 + ], + [ + 11.3911858, + 48.207456901 + ], + [ + 11.3916289, + 48.207255001 + ], + [ + 11.3921372, + 48.207044301 + ], + [ + 11.3926658, + 48.206856801 + ], + [ + 11.3932306, + 48.206694801 + ], + [ + 11.3939869, + 48.206557001 + ], + [ + 11.3947188, + 48.206450301 + ], + [ + 11.3955419, + 48.206392601 + ], + [ + 11.3977178, + 48.206262001 + ], + [ + 11.3998672, + 48.206133601 + ], + [ + 11.4000756, + 48.206122501 + ], + [ + 11.4035146, + 48.205936301 + ], + [ + 11.4039669, + 48.205911401 + ], + [ + 11.4073303, + 48.205716601 + ], + [ + 11.4261374, + 48.204640801 + ], + [ + 11.4262707, + 48.204635001 + ], + [ + 11.4306603, + 48.204385701 + ], + [ + 11.4367492, + 48.204039901 + ], + [ + 11.4392903, + 48.203930701 + ], + [ + 11.4416694, + 48.203889301 + ], + [ + 11.443632, + 48.203885301 + ], + [ + 11.4446858, + 48.203899001 + ], + [ + 11.4451594, + 48.203919701 + ], + [ + 11.4456622, + 48.203962301 + ], + [ + 11.4461852, + 48.204021301 + ], + [ + 11.4461998, + 48.204023601 + ], + [ + 11.4464827, + 48.204067401 + ], + [ + 11.4472652, + 48.204189201 + ], + [ + 11.447651666, + 48.204237092 + ] + ] + } + }, + { + "identifier": "2026-017838--vi-bs.2026-04-13_11-00-00-000.devi-zus.2026-04-13_05-00-00-000.de11", + "icon": "warnkegel", + "isBlocked": "false", + "future": true, + "extent": "48.20995802977141,11.38780537311004,48.20423709159407,11.447651666030872", + "point": "48.20995802977141,11.38780537311004", + "startLcPosition": "1000", + "impact": { + "symbols": [ + "SEPARATE", + "CLOSED", + "ARROW_UP", + "BORDER_RIGHT", + "BREAKDOWN_LANE" + ] + }, + "display_type": "SHORT_TERM_ROADWORKS", + "subtitle": " km 100.00 --> km 104.60", + "title": "Aplus A8 West - KW 16 - Schadensaufnahme 3. Fahrspur ", + "coordinate": { + "lat": 48.20995802977141, + "long": 11.38780537311004 + }, + "description": [ + "Die Baustelle ist zu folgenden Zeitr\u00e4umen g\u00fcltig:", + "13.04.26 von 11:00 bis 18:00 Uhr", + "", + "A99: km 100.00 --> km 104.60", + "", + "L\u00e4nge: 4.62 km | Maximale Durchfahrtsbreite: 4.25 m", + "", + "Aplus A8 West - KW 16 - Schadensaufnahme 3. Fahrspur " + ], + "routeRecommendation": [], + "footer": [], + "lorryParkingFeatureIcons": [], + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 11.387805373, + 48.20995803 + ], + [ + 11.3878228, + 48.209946101 + ], + [ + 11.3881238, + 48.209715601 + ], + [ + 11.3898027, + 48.208354501 + ], + [ + 11.3903907, + 48.207930401 + ], + [ + 11.3907802, + 48.207672601 + ], + [ + 11.3911858, + 48.207456901 + ], + [ + 11.3916289, + 48.207255001 + ], + [ + 11.3921372, + 48.207044301 + ], + [ + 11.3926658, + 48.206856801 + ], + [ + 11.3932306, + 48.206694801 + ], + [ + 11.3939869, + 48.206557001 + ], + [ + 11.3947188, + 48.206450301 + ], + [ + 11.3955419, + 48.206392601 + ], + [ + 11.3977178, + 48.206262001 + ], + [ + 11.3998672, + 48.206133601 + ], + [ + 11.4000756, + 48.206122501 + ], + [ + 11.4035146, + 48.205936301 + ], + [ + 11.4039669, + 48.205911401 + ], + [ + 11.4073303, + 48.205716601 + ], + [ + 11.4261374, + 48.204640801 + ], + [ + 11.4262707, + 48.204635001 + ], + [ + 11.4306603, + 48.204385701 + ], + [ + 11.4367492, + 48.204039901 + ], + [ + 11.4392903, + 48.203930701 + ], + [ + 11.4416694, + 48.203889301 + ], + [ + 11.443632, + 48.203885301 + ], + [ + 11.4446858, + 48.203899001 + ], + [ + 11.4451594, + 48.203919701 + ], + [ + 11.4456622, + 48.203962301 + ], + [ + 11.4461852, + 48.204021301 + ], + [ + 11.4461998, + 48.204023601 + ], + [ + 11.4464827, + 48.204067401 + ], + [ + 11.4472652, + 48.204189201 + ], + [ + 11.447651666, + 48.204237092 + ] + ] + } + } + ] + } +} \ No newline at end of file diff --git a/autobahn/data/webcams.json b/autobahn/data/webcams.json new file mode 100644 index 0000000..b8ceee5 --- /dev/null +++ b/autobahn/data/webcams.json @@ -0,0 +1,329 @@ +{ + "A1": { + "webcam": [] + }, + "A2": { + "webcam": [] + }, + "A3": { + "webcam": [] + }, + "A4": { + "webcam": [] + }, + "A5": { + "webcam": [] + }, + "A6": { + "webcam": [] + }, + "A7": { + "webcam": [] + }, + "A8": { + "webcam": [] + }, + "A9": { + "webcam": [] + }, + "A10": { + "webcam": [] + }, + "A11": { + "webcam": [] + }, + "A12": { + "webcam": [] + }, + "A13": { + "webcam": [] + }, + "A14": { + "webcam": [] + }, + "A15": { + "webcam": [] + }, + "A17": { + "webcam": [] + }, + "A19": { + "webcam": [] + }, + "A20": { + "webcam": [] + }, + "A21": { + "webcam": [] + }, + "A23": { + "webcam": [] + }, + "A24": { + "webcam": [] + }, + "A25": { + "webcam": [] + }, + "A26": { + "webcam": [] + }, + "A27": { + "webcam": [] + }, + "A28": { + "webcam": [] + }, + "A29": { + "webcam": [] + }, + "A30": { + "webcam": [] + }, + "A31": { + "webcam": [] + }, + "A33": { + "webcam": [] + }, + "A36": { + "webcam": [] + }, + "A37": { + "webcam": [] + }, + "A38": { + "webcam": [] + }, + "A39": { + "webcam": [] + }, + "A40": { + "webcam": [] + }, + "A42": { + "webcam": [] + }, + "A43": { + "webcam": [] + }, + "A44": { + "webcam": [] + }, + "A45": { + "webcam": [] + }, + "A46": { + "webcam": [] + }, + "A48": { + "webcam": [] + }, + "A49": { + "webcam": [] + }, + "A52": { + "webcam": [] + }, + "A57": { + "webcam": [] + }, + "A59": { + "webcam": [] + }, + "A60": { + "webcam": [] + }, + "A60 ": { + "webcam": [] + }, + "A61": { + "webcam": [] + }, + "A62": { + "webcam": [] + }, + "A63": { + "webcam": [] + }, + "A64": { + "webcam": [] + }, + "A65": { + "webcam": [] + }, + "A66": { + "webcam": [] + }, + "A67": { + "webcam": [] + }, + "A70": { + "webcam": [] + }, + "A71": { + "webcam": [] + }, + "A72": { + "webcam": [] + }, + "A73": { + "webcam": [] + }, + "A81": { + "webcam": [] + }, + "A92": { + "webcam": [] + }, + "A93": { + "webcam": [] + }, + "A94": { + "webcam": [] + }, + "A95": { + "webcam": [] + }, + "A96": { + "webcam": [] + }, + "A98": { + "webcam": [] + }, + "A99": { + "webcam": [] + }, + "A100": { + "webcam": [] + }, + "A103": { + "webcam": [] + }, + "A111": { + "webcam": [] + }, + "A113": { + "webcam": [] + }, + "A115": { + "webcam": [] + }, + "A117": { + "webcam": [] + }, + "A143": { + "webcam": [] + }, + "A210": { + "webcam": [] + }, + "A215": { + "webcam": [] + }, + "A226": { + "webcam": [] + }, + "A255": { + "webcam": [] + }, + "A261": { + "webcam": [] + }, + "A270": { + "webcam": [] + }, + "A281": { + "webcam": [] + }, + "A320": { + "webcam": [] + }, + "A352": { + "webcam": [] + }, + "A369": { + "webcam": [] + }, + "A445": { + "webcam": [] + }, + "A448": { + "webcam": [] + }, + "A480": { + "webcam": [] + }, + "A485": { + "webcam": [] + }, + "A516": { + "webcam": [] + }, + "A524": { + "webcam": [] + }, + "A542": { + "webcam": [] + }, + "A553": { + "webcam": [] + }, + "A555": { + "webcam": [] + }, + "A559": { + "webcam": [] + }, + "A560": { + "webcam": [] + }, + "A562": { + "webcam": [] + }, + "A565": { + "webcam": [] + }, + "A620": { + "webcam": [] + }, + "A623": { + "webcam": [] + }, + "A640": { + "webcam": [] + }, + "A643": { + "webcam": [] + }, + "A64a": { + "webcam": [] + }, + "A650": { + "webcam": [] + }, + "A659": { + "webcam": [] + }, + "A661": { + "webcam": [] + }, + "A671": { + "webcam": [] + }, + "A831": { + "webcam": [] + }, + "A861": { + "webcam": [] + }, + "A864": { + "webcam": [] + }, + "A995": { + "webcam": [] + }, + "A99a": { + "webcam": [] + } +} \ No newline at end of file